-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlittle_kid.json
2438 lines (2438 loc) · 706 KB
/
little_kid.json
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
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"vertices": [-0.6966245770454407,2.0880753993988037,-1.5513840913772583,-0.7574676871299744,2.1179683208465576,-1.6082056760787964,-0.7796439528465271,2.181648015975952,-1.5509589910507202,-0.718800961971283,2.1517550945281982,-1.4941374063491821,-0.7976009249687195,2.043328046798706,-1.5315824747085571,-0.8271493315696716,2.06955885887146,-1.5716103315353394,-0.8633460402488708,2.088083505630493,-1.5327510833740234,-0.8337976336479187,2.0618526935577393,-1.492722988128662,-0.932284414768219,1.8659565448760986,-1.596428632736206,-0.9403678774833679,1.876715898513794,-1.6085329055786133,-0.950050413608551,1.8843495845794678,-1.595281720161438,-0.9419669508934021,1.8735902309417725,-1.5831773281097412,-0.7864288687705994,2.12817120552063,-1.5554958581924438,-0.8116576075553894,2.1433889865875244,-1.6153587102890015,-0.841581404209137,2.196946382522583,-1.5891326665878296,-0.8163526654243469,2.1817281246185303,-1.529269814491272,-0.8708884119987488,2.027315855026245,-1.548848032951355,-0.8942051529884338,2.0310680866241455,-1.593719482421875,-0.9383787512779236,2.0389606952667236,-1.5701055526733398,-0.915061891078949,2.0352084636688232,-1.5252338647842407,-0.8350440859794617,1.839475393295288,-1.5680806636810303,-0.8462310433387756,1.837998628616333,-1.5900012254714966,-0.8672404885292053,1.8315229415893555,-1.5788427591323853,-0.8560535311698914,1.8329994678497314,-1.5569225549697876,-0.7989497780799866,2.172340154647827,-1.618984341621399,-0.7639397978782654,2.125058889389038,-1.608768105506897,-0.7620044350624084,2.1390292644500732,-1.5507452487945557,-0.7970141768455505,2.1863105297088623,-1.560961127281189,-0.9364327788352966,2.038269281387329,-1.6244271993637085,-0.8746054768562317,1.9916036128997803,-1.6120595932006836,-0.8999887108802795,1.977273941040039,-1.5392342805862427,-0.9618157744407654,2.023939847946167,-1.5516011714935303,-0.9868362545967102,1.884225845336914,-1.732674479484558,-0.9399252533912659,1.8653252124786377,-1.717315435409546,-0.9576850533485413,1.8615868091583252,-1.6676727533340454,-1.0045959949493408,1.8804874420166016,-1.6830319166183472,-1.0090632438659668,1.7612273693084717,-1.669567346572876,-0.9891688227653503,1.7581796646118164,-1.6639068126678467,-0.9932032227516174,1.7665936946868896,-1.6451970338821411,-1.0130977630615234,1.769641637802124,-1.6508575677871704,-0.6248729825019836,2.1062824726104736,-1.5920227766036987,-0.6748253703117371,2.110639810562134,-1.5861060619354248,-0.6675176024436951,2.144348382949829,-1.5492335557937622,-0.6175649762153625,2.139991044998169,-1.5551502704620361,-0.649192750453949,2.044424295425415,-1.5361241102218628,-0.660133421421051,2.045969247817993,-1.5352331399917603,-0.6586411595344543,2.0508668422698975,-1.5254013538360596,-0.6477004885673523,2.0493218898773193,-1.5262922048568726,-0.6178484559059143,2.092806100845337,-1.6802113056182861,-0.6385414004325867,2.0758373737335205,-1.6205799579620361,-0.5815866589546204,2.0954716205596924,-1.5952283143997192,-0.5608934760093689,2.112440824508667,-1.6548596620559692,-0.6117592453956604,2.0522825717926025,-1.690775990486145,-0.6293993592262268,2.024388074874878,-1.639693260192871,-0.5712600350379944,2.013456106185913,-1.6255855560302734,-0.5536198019981384,2.0413501262664795,-1.6766685247421265,-0.6425800919532776,1.8968408107757568,-1.7978562116622925,-0.6512539982795715,1.8809804916381836,-1.7760558128356934,-0.6242977976799011,1.87552809715271,-1.7692972421646118,-0.6156237721443176,1.8913886547088623,-1.791097640991211,-0.6154316067695618,1.7929623126983643,-1.8497594594955444,-0.6185967326164246,1.7872533798217773,-1.8417766094207764,-0.6089674830436707,1.7870676517486572,-1.838091492652893,-0.6058023571968079,1.792776346206665,-1.8460743427276611,-0.6511133313179016,2.1216065883636475,-1.7103321552276611,-0.6163436770439148,2.1162283420562744,-1.6743460893630981,-0.5869472622871399,2.149712324142456,-1.6977448463439941,-0.6217169165611267,2.1550910472869873,-1.733730673789978,-0.6084224581718445,2.0594394207000732,-1.7230867147445679,-0.5956191420555115,2.0625860691070557,-1.7053989171981812,-0.5806462168693542,2.072720766067505,-1.718040108680725,-0.5934495329856873,2.0695736408233643,-1.735728144645691,-0.5559051632881165,1.999039649963379,-1.7309188842773438,-0.5509986281394958,2.001337766647339,-1.723189353942871,-0.5449667572975159,2.0062968730926514,-1.728492259979248,-0.5498730540275574,2.0039994716644287,-1.7362221479415894,-0.7185923457145691,2.125882387161255,-1.6997681856155396,-0.6312652230262756,2.1386520862579346,-1.6913901567459106,-0.6325021386146545,2.193037271499634,-1.7613905668258667,-0.719829261302948,2.180267572402954,-1.7697681188583374,-0.6747514605522156,2.0540072917938232,-1.683381199836731,-0.603280246257782,2.084996461868286,-1.669016718864441,-0.594111979007721,2.0996816158294678,-1.7463154792785645,-0.6655833125114441,2.068692445755005,-1.7606799602508545,-0.6176742911338806,1.9348318576812744,-1.7446954250335693,-0.5495105385780334,1.9429676532745361,-1.7425806522369385,-0.5530480742454529,1.9864025115966797,-1.7956641912460327,-0.6212117075920105,1.978266954421997,-1.7977787256240845,-0.6201791167259216,1.8684022426605225,-1.8648724555969238,-0.5875503420829773,1.8696744441986084,-1.8649896383285522,-0.5887337327003479,1.8986425399780273,-1.8800137042999268,-0.6213625073432922,1.8973705768585205,-1.8798964023590088,-0.598102867603302,1.850914478302002,-1.9459736347198486,-0.5818302035331726,1.8526277542114258,-1.9434638023376465,-0.5826855301856995,1.8683295249938965,-1.9486373662948608,-0.5989581942558289,1.8666160106658936,-1.9511470794677734,-0.8347557187080383,1.941727876663208,-1.5804322957992554,-0.8534254431724548,1.9612319469451904,-1.6059824228286743,-0.8799113631248474,1.9686391353607178,-1.5809742212295532,-0.8612415194511414,1.9491350650787354,-1.5554240942001343,-0.6712595820426941,2.137425661087036,-1.5909210443496704,-0.8672567009925842,1.9150376319885254,-1.5862773656845093,-0.8812834620475769,1.9337074756622314,-1.6072814464569092,-0.8980845808982849,1.9469537734985352,-1.584287166595459,-0.8840580582618713,1.928283929824829,-1.5632834434509277,-0.716261088848114,2.1477558612823486,-1.5699461698532104,-0.7449066042900085,2.2210772037506104,-1.6191046237945557,-0.7222519516944885,2.2047388553619385,-1.5585122108459473,-0.8546741604804993,1.9480876922607422,-1.557495355606079,-0.872222363948822,1.9457709789276123,-1.591880440711975,-0.9051784873008728,1.9356129169464111,-1.5743772983551025,-0.88763028383255,1.937929391860962,-1.539992332458496,-0.7533841729164124,2.191115617752075,-1.6344479322433472,-0.8402575850486755,2.1291592121124268,-1.6188265085220337,-0.7917235493659973,2.087050676345825,-1.6092289686203003,-0.7967806458473206,2.095848321914673,-1.5450588464736938,-0.8453144431114197,2.137956380844116,-1.5546565055847168,-0.6414869427680969,2.2067620754241943,-1.6007542610168457,-0.6835445761680603,2.222224473953247,-1.65067458152771,-0.6605729460716248,2.1404097080230713,-1.6049813032150269,-0.63091641664505,2.200655221939087,-1.611306071281433,-0.6260537505149841,2.1207268238067627,-1.6378802061080933,-0.6735362410545349,2.115452527999878,-1.6189042329788208,-0.6759083867073059,2.172462224960327,-1.5838541984558105,-0.6169432997703552,2.1574490070343018,-1.595330834388733,-0.6266502737998962,1.9783382415771484,-1.7415485382080078,-0.6402313113212585,1.95330810546875,-1.7077277898788452,-0.5992162823677063,1.9375035762786865,-1.7029545307159424,-0.5856354832649231,1.962533950805664,-1.7367751598358154,-0.6710329651832581,2.1330840587615967,-1.6870841979980469,-0.7004181742668152,2.099904775619507,-1.6893389225006104,-0.6278290152549744,2.1388919353485107,-1.6743117570877075,-0.608015239238739,2.133293867111206,-1.755497694015503,-0.6806046366691589,2.094306707382202,-1.7705247402191162,-0.7226248383522034,2.1524736881256104,-1.6356035470962524,-0.745976984500885,2.2068288326263428,-1.5787363052368164,-0.6849512457847595,2.18867564201355,-1.5428732633590698,-0.6732030510902405,2.2162020206451416,-1.661497950553894,-0.6337341666221619,2.1235344409942627,-1.6849689483642578,-0.6364595293998718,2.1933557987213135,-1.699187994003296,-0.5963209271430969,2.1643569469451904,-1.6622709035873413,-0.7026340365409851,2.2058746814727783,-1.6803516149520874,-0.7028612494468689,2.1427299976348877,-1.6621869802474976,-0.7078987956047058,1.993150234222412,-1.6596579551696777,-0.7156203985214233,1.9985257387161255,-1.676559567451477,-0.7087484002113342,2.0074262619018555,-1.7119632959365845,-0.6958203315734863,2.0098326206207275,-1.7255791425704956,-0.6707273125648499,1.993899941444397,-1.6395460367202759,-0.7086931467056274,2.0256872177124023,-1.6908293962478638,-0.6724254488945007,2.017519474029541,-1.643783450126648,-0.687394917011261,2.0396783351898193,-1.6714425086975098,-0.6904868483543396,2.0407660007476807,-1.6902458667755127,-0.6896036267280579,2.0357751846313477,-1.7088910341262817,-0.6546027064323425,2.021422863006592,-1.6473664045333862,-0.6672322154045105,2.046525716781616,-1.6950687170028687,-0.6443670392036438,1.999946117401123,-1.644738793373108,-0.6383662223815918,2.03808331489563,-1.6849874258041382,-0.6555963754653931,2.0360255241394043,-1.7195236682891846,-0.6675363779067993,2.025364875793457,-1.7304962873458862,-0.6544995307922363,1.9830756187438965,-1.6431423425674438,-0.6381636261940002,1.992940068244934,-1.648485779762268,-0.6207613945007324,2.0130741596221924,-1.6766979694366455,-0.6225128769874573,2.0199856758117676,-1.6947803497314453,-0.6614596843719482,2.018505334854126,-1.734073281288147,-0.6367157101631165,1.9835819005966187,-1.6518144607543945,-0.6234130263328552,1.9861799478530884,-1.666399359703064,-0.6176877617835999,1.995903491973877,-1.7040387392044067,-0.6262127757072449,2.0015664100646973,-1.7213715314865112,-0.6599326133728027,2.009256601333618,-1.7367726564407349,-0.6400824189186096,1.9742710590362549,-1.6536287069320679,-0.6252315640449524,1.9681456089019775,-1.6892517805099487,-0.6350515484809875,1.979221224784851,-1.725110650062561,-0.6479155421257019,1.989324927330017,-1.7353997230529785,-0.6477330923080444,1.9677340984344482,-1.6536617279052734,-0.6616588234901428,1.9774689674377441,-1.7344833612442017,-0.6798021793365479,1.9916919469833374,-1.7358888387680054,-0.6971961855888367,1.9653892517089844,-1.7110546827316284,-0.6947224736213684,1.97858464717865,-1.7241102457046509,-0.7119819521903992,1.981568455696106,-1.702551007270813,-0.6741802096366882,1.9846746921539307,-1.6414834260940552,-0.6928133368492126,1.9882272481918335,-1.6473227739334106,-0.7158452272415161,2.003509998321533,-1.694921851158142,-0.6862077713012695,2.005201578140259,-1.643985629081726,-0.6991803050041199,2.015352725982666,-1.6550933122634888,-0.7073697447776794,2.0227229595184326,-1.6716715097427368,-0.7031846642494202,2.0240910053253174,-1.7090729475021362,-0.6928014755249023,2.0188143253326416,-1.7242408990859985,-0.6631587743759155,2.0005548000335693,-1.6394158601760864,-0.6808384656906128,2.031106948852539,-1.655045747756958,-0.6857501268386841,2.0254390239715576,-1.7247469425201416,-0.6534735560417175,2.0027453899383545,-1.6413942575454712,-0.6576369404792786,2.0354385375976562,-1.6597434282302856,-0.6620131134986877,2.0446722507476807,-1.6762803792953491,-0.672393798828125,2.0403244495391846,-1.7128485441207886,-0.6764822602272034,2.0278658866882324,-1.727030634880066,-0.6375700831413269,2.0166046619415283,-1.6532825231552124,-0.6357128024101257,2.0297162532806396,-1.6675388813018799,-0.6452286839485168,2.040640354156494,-1.7034646272659302,-0.625972330570221,2.0036327838897705,-1.6603084802627563,-0.6305535435676575,2.0237536430358887,-1.7124135494232178,-0.6443365812301636,2.0231847763061523,-1.7262619733810425,-0.6165616512298584,1.9904990196228027,-1.6848102807998657,-0.6414251923561096,2.0062153339385986,-1.7325886487960815,-0.6295657753944397,1.9688568115234375,-1.6699305772781372,-0.6273342370986938,1.9718886613845825,-1.7083476781845093,-0.6632964611053467,2.000274181365967,-1.7383127212524414,-0.643852949142456,1.95675790309906,-1.6698678731918335,-0.6437156796455383,1.9524619579315186,-1.6890186071395874,-0.6472446322441101,1.9554920196533203,-1.707457184791565,-0.6534252166748047,1.9639356136322021,-1.7237082719802856,-0.670597493648529,1.9938616752624512,-1.738094687461853,-0.6573521494865417,1.965320348739624,-1.6516748666763306,-0.6617313623428345,1.9528933763504028,-1.6663384437561035,-0.6667197942733765,1.9480911493301392,-1.684036374092102,-0.671610414981842,1.9503962993621826,-1.702102541923523,-0.6758958697319031,1.9590928554534912,-1.718532681465149,-0.6787775158882141,1.9736175537109375,-1.7304195165634155,-0.6665666103363037,1.9680026769638062,-1.6483116149902344,-0.6786928176879883,1.9577523469924927,-1.6602823734283447,-0.6883863806724548,1.9543342590332031,-1.6764591932296753,-0.6949822306632996,1.9568425416946411,-1.6942914724349976,-0.6727548241615295,1.9751498699188232,-1.6445614099502563,-0.6899780631065369,1.970896601676941,-1.653340220451355,-0.7032784223556519,1.970803141593933,-1.6675492525100708,-0.711154043674469,1.9744728803634644,-1.684883713722229,-0.7058578133583069,1.9908684492111206,-1.7177131175994873,-0.6941229104995728,2.0008866786956787,-1.728372573852539,-0.6470159888267517,2.2630274295806885,-1.6734665632247925,-0.5816513299942017,2.1662850379943848,-1.7320929765701294,-0.5765717029571533,2.126584053039551,-1.667033314704895,-0.616646409034729,2.184896469116211,-1.6016184091567993,-0.6482684016227722,1.8779548406600952,-1.9262884855270386,-0.6216585636138916,1.8246725797653198,-1.8806811571121216,-0.6337491273880005,1.7953068017959595,-1.839173674583435,-0.5996460914611816,1.9419724941253662,-1.9149070978164673,-0.5770008563995361,2.018799304962158,-1.8988534212112427,-0.6716970205307007,2.0973398685455322,-1.9394384622573853,-0.5913103818893433,1.8771400451660156,-1.8503235578536987,-0.5559270977973938,1.9589266777038574,-1.8228265047073364,-0.6812545657157898,2.206780433654785,-1.87582528591156,-0.5875204205513,2.126512050628662,-1.8689920902252197,-0.5867794156074524,2.177795171737671,-1.809679388999939,-0.6707676649093628,2.2880539894104004,-1.798270583152771,-0.5496367812156677,2.0465219020843506,-1.7869235277175903,-0.5631975531578064,2.0050625801086426,-1.7347266674041748,-0.5981075763702393,1.8566398620605469,-1.8202629089355469,-0.5605550408363342,1.9265540838241577,-1.7656089067459106,-0.7053826451301575,1.9933384656906128,-1.938984990119934,-0.7227022647857666,1.920264482498169,-1.9415303468704224,-0.6852378845214844,1.1363872289657593,-2.1745450496673584,-0.672012448310852,1.295080542564392,-1.5986517667770386,-0.6995484828948975,1.2779418230056763,-1.6086050271987915,-0.7275583148002625,1.2848399877548218,-1.6093801259994507,-0.7373325824737549,1.3104485273361206,-1.6026909351348877,-0.7266790270805359,1.3342586755752563,-1.5918598175048828,-0.7061645984649658,1.3472299575805664,-1.5847655534744263,-0.6817154884338379,1.3445976972579956,-1.5830888748168945,-0.6644338369369507,1.325302004814148,-1.5873719453811646,-0.6772821545600891,1.6383178234100342,-2.158773183822632,-0.6892169713973999,1.7243858575820923,-1.8784717321395874,-0.6174721717834473,1.7779432535171509,-2.027498245239258,-0.6989699006080627,1.597176194190979,-2.1966676712036133,-0.6775324940681458,1.5300812721252441,-2.003239631652832,-0.6699537038803101,1.5464977025985718,-2.1149775981903076,-0.6681154370307922,1.7584344148635864,-2.117114782333374,-0.7102978825569153,1.7490460872650146,-1.8602238893508911,-0.761271059513092,1.6900160312652588,-1.8683687448501587,-0.6311150193214417,1.754518747329712,-1.9379898309707642,-0.5333649516105652,1.5415329933166504,-1.98158597946167,-0.5789036154747009,1.5100055932998657,-2.0313987731933594,-0.5619667768478394,1.5626517534255981,-2.0703814029693604,-0.5093504786491394,1.6003057956695557,-2.0096004009246826,-0.6407107710838318,1.531546711921692,-2.046373128890991,-0.6382593512535095,1.559349536895752,-2.0829901695251465,-0.5938805937767029,1.615096092224121,-1.9042484760284424,-0.543663501739502,1.5850849151611328,-1.9259765148162842,-0.5344436168670654,1.647550344467163,-1.9425462484359741,-0.591177761554718,1.6366093158721924,-1.9027329683303833,-0.678854763507843,1.5943063497543335,-1.9576886892318726,-0.6483367085456848,1.6108757257461548,-1.911782145500183,-0.6464737057685852,1.600391149520874,-1.897025465965271,-0.6904504299163818,1.5811841487884521,-1.967910885810852,-0.672821581363678,1.5624932050704956,-2.010327100753784,-0.668838381767273,1.5682072639465332,-2.0346710681915283,-0.5843738913536072,1.4600474834442139,-1.9359583854675293,-0.6233929991722107,1.4432862997055054,-1.9617081880569458,-0.6748518347740173,1.455180287361145,-1.9555548429489136,-0.6128697991371155,1.5178381204605103,-1.8640908002853394,-0.5788750052452087,1.4891399145126343,-1.8943918943405151,-0.6966342329978943,1.521952509880066,-1.888085961341858,-0.6593480706214905,1.5317360162734985,-1.8625415563583374,-0.7002964019775391,1.4910510778427124,-1.9215298891067505,-0.7049712538719177,1.3323009014129639,-1.7980477809906006,-0.7196170091629028,1.3639260530471802,-1.7949553728103638,-0.6695941686630249,1.3697696924209595,-1.8829234838485718,-0.6302863955497742,1.3705742359161377,-1.8812958002090454,-0.6685951352119446,1.324741005897522,-1.8040646314620972,-0.6163027882575989,1.3794209957122803,-1.8532130718231201,-0.7138484716415405,1.309484601020813,-1.7066081762313843,-0.7284111976623535,1.3408979177474976,-1.698057770729065,-0.7130827903747559,1.3770936727523804,-1.6945346593856812,-0.6441850662231445,1.3224600553512573,-1.7087204456329346,-0.6795008182525635,1.3011459112167358,-1.7090575695037842,-0.6511728763580322,1.3846744298934937,-1.681970238685608,-0.6325807571411133,1.3582526445388794,-1.6913013458251953,-0.6809368133544922,1.3926199674606323,-1.6823631525039673,-0.6807347536087036,1.3823400735855103,-2.0548555850982666,-0.7077671885490417,1.4170972108840942,-2.2166504859924316,-0.6624844670295715,1.400146722793579,-2.1446356773376465,-0.6323169469833374,1.3085899353027344,-2.0758140087127686,-0.7069199085235596,1.5934590101242065,-1.9279066324234009,-0.7344823479652405,1.329251766204834,-1.976574420928955,-0.7555863261222839,1.1163288354873657,-2.1819822788238525,-0.6116573810577393,1.2286545038223267,-2.151625394821167,-0.7676669955253601,1.4240975379943848,-2.2308621406555176,-0.7391504645347595,1.7116672992706299,-2.1763432025909424,-0.7775633931159973,1.6482287645339966,-2.2105965614318848,-0.7462947368621826,1.3779613971710205,-1.9798887968063354,-0.7349172830581665,1.5105878114700317,-1.9421873092651367,-0.7312554717063904,1.6019847393035889,-1.9070895910263062,-0.7175140976905823,1.6755801439285278,-1.8805429935455322,-0.6784654855728149,1.6210826635360718,-1.8797781467437744,-0.6394545435905457,1.6552339792251587,-1.8837910890579224,-0.5792096853256226,1.6965082883834839,-1.9428685903549194,-0.5680192112922668,1.7236266136169434,-2.030352830886841,-0.591580867767334,1.6698360443115234,-2.1154866218566895,-0.6233823895454407,1.3559589385986328,-1.820556640625,-0.6626566052436829,1.3346233367919922,-1.8408421277999878,-0.6881402134895325,1.3409082889556885,-1.8450236320495605,-0.7060869336128235,1.35808265209198,-1.8421173095703125,-0.7054395079612732,1.4105603694915771,-1.8119912147521973,-0.6654765009880066,1.4375535249710083,-1.788530707359314,-0.6296313405036926,1.4290319681167603,-1.7852991819381714,-0.6080538630485535,1.397405743598938,-1.796998381614685,-0.6665502190589905,1.8495100736618042,-1.9593656063079834,-0.6401121020317078,1.7884864807128906,-1.908126711845398,-0.7746865749359131,1.591058611869812,-1.8822829723358154,-0.7825128436088562,1.532442331314087,-1.9135371446609497,-0.7017021179199219,1.5495063066482544,-1.9577497243881226,-0.7356857657432556,1.5375078916549683,-1.9334609508514404,-0.6857566237449646,1.9080809354782104,-1.617098331451416,-0.685960054397583,1.8916077613830566,-1.6206259727478027,-0.6994270086288452,1.89166259765625,-1.6010760068893433,-0.6889200806617737,1.8962934017181396,-1.5823707580566406,-0.695066511631012,1.9103387594223022,-1.5901679992675781,-0.6782439947128296,1.892823338508606,-1.600371241569519,-0.6828357577323914,1.9069069623947144,-1.6069649457931519,-0.7005565166473389,1.9196339845657349,-1.6151562929153442,-0.6857280135154724,2.2473018169403076,-1.7332274913787842,-0.6398321986198425,2.1920392513275146,-1.78831946849823,-0.6163700222969055,2.15881609916687,-1.7229686975479126,-0.6417898535728455,2.191077947616577,-1.6480200290679932,-0.7627495527267456,1.9089887142181396,-1.9110350608825684,-0.7097771763801575,1.8518439531326294,-1.8753174543380737,-0.6976900100708008,1.88640296459198,-1.8520334959030151,-0.7314242720603943,1.817086935043335,-1.8304530382156372,-0.7099693417549133,1.8473292589187622,-1.802262783050537,-0.6780771613121033,1.9218989610671997,-1.8425196409225464,-0.6674208045005798,1.8621162176132202,-1.8036284446716309,-0.6505979895591736,1.9681299924850464,-1.8484641313552856,-0.6540105938911438,2.0341875553131104,-1.8570805788040161,-0.6410760879516602,1.9770491123199463,-1.854382872581482,-0.6368295550346375,1.9708672761917114,-1.8227500915527344,-0.642469048500061,2.022092580795288,-1.8241149187088013,-0.6443597674369812,2.0388715267181396,-1.8620749711990356,-0.6443230509757996,2.0938189029693604,-1.8388301134109497,-0.6236055493354797,2.0705764293670654,-1.7826656103134155,-0.656394898891449,2.0243594646453857,-1.6286287307739258,-0.6867144107818604,1.9934898614883423,-1.6220413446426392,-0.6794819235801697,2.0190317630767822,-1.5926963090896606,-0.6349348425865173,2.041036367416382,-1.6174782514572144,-0.7483163475990295,1.807395100593567,-1.782509207725525,-0.6824431419372559,1.7974900007247925,-1.715767741203308,-0.6731505990028381,1.819707989692688,-1.7548866271972656,-0.6391133069992065,1.8724758625030518,-1.7228511571884155,-0.6330158710479736,1.9394242763519287,-1.7930262088775635,-0.6127724051475525,1.9533700942993164,-1.720707893371582,-0.6258754730224609,1.9267375469207764,-1.6837929487228394,-0.6295735836029053,1.9501845836639404,-1.6853028535842896,-0.6094875335693359,1.9747003316879272,-1.701762318611145,-0.6126224398612976,2.101987600326538,-1.6846312284469604,-0.618632972240448,2.068342924118042,-1.7354708909988403,-0.6249048113822937,2.1331989765167236,-1.616467833518982,-0.6189146637916565,1.953861117362976,-1.7456282377243042,-0.6245676875114441,1.9048027992248535,-1.6901878118515015,-0.6023988127708435,2.0435783863067627,-1.660338282585144,-0.6030587553977966,2.0262768268585205,-1.6937059164047241,-0.610346257686615,2.0056536197662354,-1.6968501806259155,-0.6216362118721008,2.029015302658081,-1.6600842475891113,-0.6076583862304688,1.9953274726867676,-1.720434308052063,-0.6100149750709534,1.9845256805419922,-1.7051383256912231,-0.6210245490074158,2.0212252140045166,-1.7557326555252075,-0.6587799191474915,1.9224848747253418,-1.6462448835372925,-0.7015901207923889,1.940056324005127,-1.6202205419540405,-0.688713014125824,1.9618725776672363,-1.6239242553710938,-0.6665823459625244,1.937974214553833,-1.6503102779388428,-0.7030659317970276,1.9749410152435303,-1.6144179105758667,-0.6943467259407043,1.9739829301834106,-1.6276661157608032,-0.6587264537811279,1.9097297191619873,-1.6344544887542725,-0.6266757845878601,2.006904363632202,-1.7931019067764282,-0.6656832098960876,1.8404847383499146,-1.6985834836959839,-0.650309145450592,1.8697028160095215,-1.672744870185852,-0.6745730638504028,1.8180407285690308,-1.6883846521377563,-0.678774893283844,1.8539543151855469,-1.6538313627243042,-0.6828271746635437,1.8488245010375977,-1.6387686729431152,-0.6749725341796875,1.8567428588867188,-1.6500436067581177,-0.6614659428596497,1.8890990018844604,-1.6447330713272095,-0.6789069771766663,1.8549628257751465,-1.632003664970398,-0.6935848593711853,1.8489967584609985,-1.6150747537612915,-0.7246020436286926,1.7770429849624634,-1.7075458765029907,-0.7037542462348938,1.7701139450073242,-1.681917428970337,-0.6964326500892639,1.7903149127960205,-1.6555062532424927,-0.6995512843132019,1.8387168645858765,-1.6216185092926025,-0.7009562253952026,1.8420047760009766,-1.6293829679489136,-0.6869590878486633,1.8495925664901733,-1.6440978050231934,-0.6798756122589111,1.8568137884140015,-1.6556488275527954,-0.6851516366004944,1.8523812294006348,-1.6400189399719238,-0.6644724607467651,1.89805269241333,-1.638579249382019,-0.6328417658805847,2.0658929347991943,-1.8114393949508667,-0.6320098042488098,2.082932233810425,-1.849265694618225,-0.6972835063934326,1.8478162288665771,-1.6230705976486206,-0.6802759170532227,1.8551744222640991,-1.6565974950790405,-0.6870604753494263,1.8692641258239746,-1.6133466958999634,-0.6700907945632935,1.8711280822753906,-1.6342829465866089,-0.6645804047584534,1.8638352155685425,-1.6588313579559326,-0.6704328656196594,1.8538918495178223,-1.66755211353302,-0.6775875091552734,1.8357486724853516,-1.6545213460922241,-0.6986302137374878,1.8189352750778198,-1.6354690790176392,-0.7016831636428833,1.8861867189407349,-1.602523922920227,-0.670134961605072,2.0664713382720947,-1.5795303583145142,-0.7047382593154907,1.8134045600891113,-1.7734357118606567,-0.7185776829719543,1.789307951927185,-1.7327473163604736,-0.6557179093360901,2.0148589611053467,-1.6322170495986938,-0.6222236752510071,2.014188051223755,-1.6617928743362427,-0.6304413676261902,1.9549734592437744,-1.679681658744812,-0.6654427647590637,1.9424504041671753,-1.6489068269729614,-0.6986673474311829,1.9756619930267334,-1.6342469453811646,-0.6603156924247742,2.011124849319458,-1.639581322669983,-0.6268138289451599,2.010671854019165,-1.6690220832824707,-0.6142321825027466,1.986791968345642,-1.7117217779159546,-0.6343668103218079,1.9593520164489746,-1.6859084367752075,-0.6695110201835632,1.945995807647705,-1.6550101041793823,-0.7132960557937622,1.981717824935913,-1.6528536081314087,-0.696358859539032,2.02287220954895,-1.6788891553878784,-0.6628374457359314,2.0229923725128174,-1.7084499597549438,-0.6289492249488831,1.9937220811843872,-1.7304022312164307,-0.6582819223403931,1.9859479665756226,-1.7092205286026,-0.6844907402992249,1.9797358512878418,-1.6854257583618164,-0.6838878989219666,1.9947694540023804,-1.68723464012146,-0.6575085520744324,2.000994920730591,-1.7124382257461548,-0.692990243434906,1.8418859243392944,-1.6595990657806396,-0.703510582447052,1.8326606750488281,-1.641850471496582,-0.6956029534339905,1.8676414489746094,-1.649442434310913,-0.687736988067627,1.8738895654678345,-1.675307273864746,-0.7027458548545837,1.8631170988082886,-1.6297210454940796,-0.6866846084594727,1.8471179008483887,-1.6847633123397827,-0.7206987738609314,1.8528904914855957,-1.7144826650619507,-0.7379932999610901,1.852037787437439,-1.716040015220642,-0.7220724821090698,1.8968408107757568,-1.70315682888031,-0.7044808864593506,1.8865989446640015,-1.7014225721359253,-0.7385115027427673,1.9019933938980103,-1.7024344205856323,-0.7026255130767822,1.8522136211395264,-1.7101805210113525,-0.6898128986358643,1.8579407930374146,-1.6100929975509644,-0.6738302707672119,1.8577549457550049,-1.6311920881271362,-0.6728532314300537,1.8599458932876587,-1.6518559455871582,-0.6775416731834412,1.8569715023040771,-1.6618551015853882,-0.6811876893043518,1.8438467979431152,-1.6503764390945435,-0.6952974200248718,1.8303688764572144,-1.6244584321975708,-0.4897339642047882,0.8428269028663635,-1.3301869630813599,-0.44473421573638916,0.8453277349472046,-1.3353102207183838,-0.4423367977142334,0.8789511919021606,-1.3850213289260864,-0.49054455757141113,0.8642353415489197,-1.385373592376709,-0.49688106775283813,0.8179187774658203,-1.2669705152511597,-0.5088512897491455,0.7423613667488098,-1.3146222829818726,-0.44298452138900757,0.7254127264022827,-1.221926212310791,-0.4911643862724304,0.7404809594154358,-1.2139605283737183,-0.5257025361061096,0.7618573904037476,-1.187978744506836,-0.5025808215141296,0.8011904954910278,-1.1862199306488037,-0.44510596990585327,0.7710522413253784,-1.1853997707366943,-0.46886593103408813,0.7879878282546997,-1.18601655960083,-0.5030732750892639,0.80498206615448,-1.2197742462158203,-0.5089209675788879,0.7703620791435242,-1.146409034729004,-0.4689987301826477,0.7532044649124146,-1.1485671997070312,-0.4792974591255188,0.7547084093093872,-1.182856559753418,-0.4944794774055481,0.8023806214332581,-1.1534560918807983,-0.4552834630012512,0.7449724674224854,-1.186293363571167,-0.4463518261909485,0.7551833987236023,-1.1536492109298706,-0.4377598166465759,0.7753044366836548,-1.1523489952087402,-0.44714051485061646,0.7525266408920288,-1.1283245086669922,-0.4442816376686096,0.7678000330924988,-1.1285901069641113,-0.44687753915786743,0.7533423900604248,-1.162658452987671,-0.4261012673377991,0.7443121671676636,-1.1670241355895996,-0.4441545605659485,0.7479400038719177,-1.1380064487457275,-0.4258727431297302,0.7408534288406372,-1.1420774459838867,-0.42971092462539673,0.7358721494674683,-1.196857213973999,-0.4139100909233093,0.7269607782363892,-1.2015955448150635,-0.40100663900375366,0.7094408273696899,-1.2368642091751099,-0.4748663604259491,0.7265411615371704,-1.3244755268096924,-0.4348851442337036,0.7098443508148193,-1.3349276781082153,-0.4591856598854065,0.7047872543334961,-1.3979284763336182,-0.42387068271636963,0.8072277307510376,-1.342856526374817,-0.42693251371383667,0.8386671543121338,-1.3993897438049316,-0.5039408802986145,0.7237446904182434,-1.3809574842453003,-0.5160388350486755,0.7183467745780945,-1.416416049003601,-0.46613049507141113,0.6993517875671387,-1.4315521717071533,-0.4142553210258484,0.7730662226676941,-1.276333212852478,-0.44661760330200195,0.8040623068809509,-1.2723233699798584,-0.4447210133075714,0.7836357355117798,-1.2292687892913818,-0.40832680463790894,0.7548593878746033,-1.2397667169570923,-0.5442668795585632,0.7408995032310486,-1.3727905750274658,-0.5638414621353149,0.7351235151290894,-1.4101474285125732,-0.5719527006149292,0.7315385341644287,-1.445826530456543,-0.520328938961029,0.8579517602920532,-1.4097117185592651,-0.5201499462127686,0.8312603235244751,-1.4736835956573486,-0.4941643476486206,0.8226040005683899,-1.4936143159866333,-0.46354570984840393,0.810754120349884,-1.4838225841522217,-0.5240311622619629,0.7529913783073425,-1.5118815898895264,-0.551411509513855,0.7639324069023132,-1.4949754476547241,-0.49256086349487305,0.7430751919746399,-1.5094352960586548,-0.4214751124382019,0.8040619492530823,-1.4449915885925293,-0.4780254364013672,0.6978412866592407,-1.4642497301101685,-0.5258433222770691,0.7136350870132446,-1.4486098289489746,-0.5339536666870117,0.7116217017173767,-1.4937676191329956,-0.5067853927612305,0.7036717534065247,-1.4916737079620361,-0.5570822954177856,0.7225747108459473,-1.4775769710540771,-0.42362576723098755,0.7591603398323059,-1.1973360776901245,-0.406623899936676,0.7473136186599731,-1.200988531112671,-0.4061056971549988,0.750527560710907,-1.1894419193267822,-0.4134623408317566,0.7329046130180359,-1.1929835081100464,-0.41215306520462036,0.7310720086097717,-1.1733112335205078,-0.400102436542511,0.7200225591659546,-1.175386667251587,-0.39141613245010376,0.7381787896156311,-1.1916390657424927,-0.3970760703086853,0.7218142151832581,-1.1934839487075806,-0.39652806520462036,0.730349063873291,-1.1747974157333374,-0.40508168935775757,0.7418547868728638,-1.1745529174804688,-0.39824455976486206,0.7175329923629761,-1.2118263244628906,-0.39677900075912476,0.7368738651275635,-1.2106616497039795,-0.41904062032699585,0.7633758783340454,-1.173949956893921,-0.42755478620529175,0.7413039207458496,-1.1788573265075684,-0.4268795847892761,0.7369974851608276,-1.1569831371307373,-0.4191743731498718,0.751917839050293,-1.1531870365142822,-0.4052034020423889,0.744238555431366,-1.1554243564605713,-0.410836398601532,0.7319602370262146,-1.159314513206482,-0.4091699719429016,0.7335563898086548,-1.1793174743652344,-0.39856308698654175,0.7526328563690186,-1.1754595041275024,-0.41507488489151,0.7643052339553833,-1.1650238037109375,-0.43918293714523315,0.7750906348228455,-1.1593964099884033,-0.46557849645614624,0.7833625078201294,-1.1504812240600586,-0.471365749835968,0.7636072039604187,-1.1519213914871216,-0.4655771851539612,0.7590011358261108,-1.1278858184814453,-0.45967620611190796,0.7730572819709778,-1.1281476020812988,-0.46044307947158813,0.7891749143600464,-1.1556332111358643,-0.46755021810531616,0.7603423595428467,-1.1196479797363281,-0.4883214831352234,0.7694857120513916,-1.1130809783935547,-0.4820426106452942,0.7858991026878357,-1.1170766353607178,-0.4621695876121521,0.7770237326622009,-1.1228325366973877,-0.4357761740684509,0.7633122801780701,-1.136378526687622,-0.4198543429374695,0.7559027671813965,-1.1401489973068237,-0.44865697622299194,0.9154316186904907,-1.5204318761825562,-0.4658086895942688,0.9351692199707031,-1.501983642578125,-0.49012064933776855,0.9353437423706055,-1.4913606643676758,-0.5228429436683655,0.9123136401176453,-1.4905203580856323,-0.533933699131012,0.8765655755996704,-1.5180623531341553,-0.5142853260040283,0.8601149320602417,-1.5425602197647095,-0.4830426573753357,0.8633613586425781,-1.5487139225006104,-0.45660680532455444,0.8856111764907837,-1.536481261253357,-0.5312770009040833,0.7553273439407349,-1.2187750339508057,-0.4959508776664734,0.7397356033325195,-1.256892442703247,-0.4530786871910095,0.7245705723762512,-1.2611310482025146,-0.41109997034072876,0.7093969583511353,-1.270585060119629,-0.397420734167099,0.7390017509460449,-1.2414833307266235,-0.4085192084312439,0.7433954477310181,-1.2782487869262695,-0.43042194843292236,0.7507158517837524,-1.3415130376815796,-0.4467514753341675,0.7483876347541809,-1.3983821868896484,-0.45550471544265747,0.7452704906463623,-1.4419597387313843,-0.473941445350647,0.7376289367675781,-1.484244704246521,-0.5564873218536377,0.7745423913002014,-1.4565225839614868,-0.5429746508598328,0.7755661010742188,-1.4175370931625366,-0.5312479734420776,0.7829034924507141,-1.375062346458435,-0.5255228281021118,0.7725754976272583,-1.3151787519454956,-0.5308380722999573,0.7575205564498901,-1.2562057971954346,-0.49709582328796387,0.7827856540679932,-1.5030016899108887,-0.5097384452819824,0.7897409796714783,-1.5092377662658691,-0.5221400260925293,0.7915080785751343,-1.500536322593689,-0.6824465990066528,1.2996476888656616,-1.5970017910003662,-0.7053130865097046,1.288080096244812,-1.6050043106079102,-0.7243735790252686,1.292152762413025,-1.6051833629608154,-0.7283374071121216,1.3106831312179565,-1.6017963886260986,-0.7185559272766113,1.3261991739273071,-1.594343662261963,-0.7069130539894104,1.3367241621017456,-1.5875517129898071,-0.6895765662193298,1.3328490257263184,-1.5863569974899292,-0.6740602850914001,1.3237292766571045,-1.5871851444244385,-0.6997994184494019,1.6852363348007202,-1.8829041719436646,-0.7403630614280701,1.8726915121078491,-2.0038223266601562,-0.6931995749473572,1.7956396341323853,-1.951310157775879,-0.47676581144332886,1.0219758749008179,-1.5934144258499146,-0.509507954120636,1.0238109827041626,-1.5839874744415283,-0.45847171545028687,1.00518000125885,-1.6204758882522583,-0.5536037683486938,1.0080419778823853,-1.598267912864685,-0.5692674517631531,0.965016782283783,-1.6321606636047363,-0.5413009524345398,0.9382083415985107,-1.666585087776184,-0.49366578459739685,0.9473717212677002,-1.6764549016952515,-0.4623945951461792,0.9808714389801025,-1.6572109460830688,-0.4681773781776428,1.0266939401626587,-1.7022302150726318,-0.49340948462486267,0.9877974987030029,-1.7125091552734375,-0.7540321946144104,1.878068447113037,-1.9553998708724976,-0.717478334903717,1.818890929222107,-1.9282056093215942,-0.7270039916038513,1.7345149517059326,-1.8902767896652222,-0.7241190075874329,1.2783297300338745,-1.5793888568878174,-0.7305505275726318,1.2982836961746216,-1.5655518770217896,-0.7213433980941772,1.3186297416687012,-1.5614882707595825,-0.6838472485542297,1.288627028465271,-1.562158465385437,-0.6977088451385498,1.2720540761947632,-1.567795753479004,-0.6941549777984619,1.3233076333999634,-1.562242031097412,-0.6758246421813965,1.3117088079452515,-1.5580195188522339,-0.7108244895935059,1.3312101364135742,-1.5559226274490356,-0.7116661071777344,1.3002309799194336,-1.4620139598846436,-0.6792804002761841,1.317414402961731,-1.460790753364563,-0.6966485977172852,1.2863612174987793,-1.4595991373062134,-0.664885938167572,1.2998987436294556,-1.4667468070983887,-0.7393686771392822,1.2750674486160278,-1.5392358303070068,-0.7289904356002808,1.2844973802566528,-1.4721672534942627,-0.7172403335571289,1.259914517402649,-1.5376540422439575,-0.7216496467590332,1.2741239070892334,-1.4623342752456665,-0.7440342903137207,1.2710803747177124,-1.4770904779434204,-0.7350018620491028,1.2861915826797485,-1.4654567241668701,-0.7375665903091431,1.2643474340438843,-1.4643181562423706,-0.7327269315719604,1.2793910503387451,-1.4545387029647827,-0.7573996186256409,1.2814775705337524,-1.4704928398132324,-0.7517584562301636,1.3002439737319946,-1.4656591415405273,-0.7640970945358276,1.2836514711380005,-1.4556533098220825,-0.7608387470245361,1.3004491329193115,-1.4517868757247925,-0.7690138220787048,1.2928439378738403,-1.4764175415039062,-0.7606366276741028,1.309134602546692,-1.4763214588165283,-0.7782848477363586,1.3021799325942993,-1.4654102325439453,-0.7724705934524536,1.315207839012146,-1.4657891988754272,-0.7772740125656128,1.3053010702133179,-1.4879885911941528,-0.7698571085929871,1.3174067735671997,-1.488241195678711,-0.7849971055984497,1.3112993240356445,-1.4790568351745605,-0.7787304520606995,1.3229241371154785,-1.4795889854431152,-0.7318872213363647,1.2868692874908447,-1.4614222049713135,-0.7196807265281677,1.3055191040039062,-1.4558428525924683,-0.7245866060256958,1.2795313596725464,-1.4483882188796997,-0.7131254076957703,1.2943264245986938,-1.4410566091537476,-0.7465381622314453,1.2998429536819458,-1.455572247505188,-0.7365270853042603,1.3167483806610107,-1.4485301971435547,-0.7513995170593262,1.2991150617599487,-1.438146948814392,-0.7436606884002686,1.3132656812667847,-1.4320815801620483,-0.7629749178886414,1.3161331415176392,-1.4602121114730835,-0.7528871297836304,1.332451581954956,-1.452798843383789,-0.7718477249145508,1.31844961643219,-1.4435654878616333,-0.7654458284378052,1.3324891328811646,-1.4400393962860107,-0.7685713768005371,1.3295457363128662,-1.4693620204925537,-0.7634373307228088,1.34171462059021,-1.4635292291641235,-0.7789714932441711,1.333540678024292,-1.463281273841858,-0.7732709050178528,1.3444201946258545,-1.459457278251648,-0.6759986281394958,1.3344475030899048,-1.5514105558395386,-0.6710302233695984,1.3346863985061646,-1.464206337928772,-0.6530911326408386,1.32996666431427,-1.4843171834945679,-0.6929165124893188,1.3677268028259277,-1.50444757938385,-0.6875025033950806,1.380387783050537,-1.5331379175186157,-0.6590009927749634,1.3526875972747803,-1.4945909976959229,-0.6688850522041321,1.3755381107330322,-1.5283961296081543,-0.6823866963386536,1.4002636671066284,-1.4609193801879883,-0.6774465441703796,1.415290117263794,-1.4693140983581543,-0.6701542139053345,1.3955155611038208,-1.459530234336853,-0.6651244759559631,1.410056233406067,-1.4681373834609985,-0.6782593131065369,1.318222999572754,-1.455193281173706,-0.664392352104187,1.3308948278427124,-1.459844946861267,-0.6687496304512024,1.3062108755111694,-1.4499425888061523,-0.6540524363517761,1.31841242313385,-1.4564807415008545,-0.6871469616889954,1.3230609893798828,-1.4313923120498657,-0.6734448075294495,1.338668704032898,-1.4313695430755615,-0.6777689456939697,1.315642237663269,-1.4205000400543213,-0.6687482595443726,1.3291376829147339,-1.422031283378601,-0.702547550201416,1.329121708869934,-1.4139087200164795,-0.6925163865089417,1.3423998355865479,-1.4127973318099976,-0.6974780559539795,1.3245913982391357,-1.4019641876220703,-0.6886265277862549,1.334592342376709,-1.402854323387146,-0.7204509377479553,1.3423808813095093,-1.3990637063980103,-0.7119518518447876,1.351258635520935,-1.3978279829025269,-0.7164775729179382,1.3366483449935913,-1.38954496383667,-0.7087170481681824,1.3451216220855713,-1.3892403841018677,-0.7009096145629883,1.2966411113739014,-1.450740933418274,-0.6816517114639282,1.3112338781356812,-1.4490432739257812,-0.6892033219337463,1.283103346824646,-1.4442843198776245,-0.6719430088996887,1.297959804534912,-1.4435479640960693,-0.7119954824447632,1.3061778545379639,-1.4316145181655884,-0.695307195186615,1.3189890384674072,-1.4259302616119385,-0.7092695832252502,1.2953392267227173,-1.4146308898925781,-0.694447934627533,1.3057466745376587,-1.410239577293396,-0.7284485697746277,1.3159303665161133,-1.4231593608856201,-0.719419538974762,1.3324806690216064,-1.4179366827011108,-0.7285038232803345,1.3094052076339722,-1.4034128189086914,-0.7200893759727478,1.3240841627120972,-1.400473713874817,-0.7466958165168762,1.3283182382583618,-1.416239857673645,-0.7391951084136963,1.3397518396377563,-1.4113343954086304,-0.7483780980110168,1.3224962949752808,-1.4035228490829468,-0.7406729459762573,1.3329323530197144,-1.399617075920105,-0.7439347505569458,1.2738667726516724,-1.486912488937378,-0.7310147881507874,1.2619277238845825,-1.4781166315078735,-0.7263211607933044,1.2930567264556885,-1.5412501096725464,-0.7159260511398315,1.318297028541565,-1.5389078855514526,-0.7011153697967529,1.3465726375579834,-1.5499858856201172,-0.7025256156921387,1.3434951305389404,-1.5130547285079956,-0.7073341608047485,1.3318321704864502,-1.5310531854629517,-0.7040039896965027,1.3119772672653198,-1.5190154314041138,-0.6984001398086548,1.2967381477355957,-1.4697136878967285,-0.6824653744697571,1.3188682794570923,-1.477020025253296,-0.7269481420516968,1.289297103881836,-1.5128718614578247,-0.7226578593254089,1.2870409488677979,-1.4823020696640015,-0.6788762211799622,1.3347653150558472,-1.4821983575820923,-0.6947715878486633,1.3619903326034546,-1.5077146291732788,-0.6663530468940735,1.3973332643508911,-1.5004198551177979,-0.6718525290489197,1.3837324380874634,-1.486090898513794,-0.6872085332870483,1.3871370553970337,-1.4871554374694824,-0.6830117106437683,1.4024749994277954,-1.5026463270187378,-0.5409272313117981,0.9850326776504517,-1.703534722328186,-0.5673128366470337,1.0060592889785767,-1.684497594833374,-0.5618816018104553,1.055057406425476,-1.6598292589187622,-0.46953269839286804,1.0593470335006714,-1.6777291297912598,-0.5227408409118652,1.0797048807144165,-1.6468243598937988,-0.49014705419540405,1.0781114101409912,-1.6561927795410156,-0.43889564275741577,1.117819905281067,-1.6676535606384277,-0.4181552529335022,1.049932837486267,-1.703894019126892,-0.4582712650299072,0.9648471474647522,-1.7193784713745117,-0.5343284010887146,0.9212353229522705,-1.714906930923462,-0.5575131773948669,1.1773828268051147,-1.6381244659423828,-0.4923610985279083,1.199058175086975,-1.8047670125961304,-0.5540655255317688,1.2614582777023315,-1.92844820022583,-0.618148922920227,1.2968825101852417,-2.0340373516082764,-0.47037452459335327,1.1181613206863403,-1.8403637409210205,-0.5326170325279236,1.1711357831954956,-1.9706149101257324,-0.5984116196632385,1.2127200365066528,-2.078303575515747,-0.509783923625946,1.0224055051803589,-1.845886468887329,-0.5834658741950989,1.0820902585983276,-1.9765336513519287,-0.6481615900993347,1.1204873323440552,-2.088838815689087,-0.584852397441864,0.9731875658035278,-1.8373310565948486,-0.6588188409805298,1.0212395191192627,-1.984778881072998,-0.7233868837356567,1.0747590065002441,-2.1035492420196533,-0.4767441153526306,1.1496096849441528,-1.6326377391815186,-0.5489564538002014,1.2267824411392212,-1.7811365127563477,-0.6460630893707275,1.2885586023330688,-1.8956212997436523,-0.6933541893959045,1.3186513185501099,-1.9869766235351562,-0.4702008366584778,0.9795940518379211,-1.7162870168685913,-0.4421205520629883,1.0378068685531616,-1.7020232677459717,-0.44924017786979675,1.0984463691711426,-1.6681551933288574,-0.5352611541748047,0.9542516469955444,-1.7165639400482178,-0.5862228274345398,0.9780863523483276,-1.6908460855484009,-0.5671965479850769,1.1329983472824097,-1.6435554027557373,-0.604852020740509,1.060417890548706,-1.6689199209213257,-0.4894777834415436,1.1218260526657104,-1.631803035736084,-0.6323403120040894,0.9683539867401123,-1.7019215822219849,-0.7818379402160645,1.511033058166504,-1.9264849424362183,-0.6519414782524109,0.9174931049346924,-1.7059966325759888,-0.8217936754226685,1.0708978176116943,-2.1675851345062256,-0.8035557270050049,0.9908447265625,-2.0563225746154785,-0.7247379422187805,0.9491782188415527,-1.8480032682418823,-0.690067708492279,1.1453241109848022,-2.1624836921691895,-0.6418470740318298,1.3088977336883545,-2.079840898513794,-0.721137285232544,1.3309853076934814,-2.0087389945983887,-0.752393364906311,1.1249947547912598,-2.1653597354888916,-0.6241468787193298,1.2303279638290405,-2.1436376571655273,-0.8617528080940247,1.1160132884979248,-2.223445177078247,-0.8286446332931519,1.657676339149475,-2.198514461517334,-0.8039532899856567,1.736627459526062,-2.162989377975464,-0.7721927165985107,1.8098053932189941,-2.101832628250122,-0.7484536170959473,1.8509513139724731,-2.023395299911499,-0.7416362166404724,1.8905181884765625,-1.963847279548645,-0.8403002619743347,1.441611647605896,-2.2340452671051025,-0.8532010316848755,1.1233961582183838,-2.204965591430664,-0.5730752348899841,1.052109956741333,-1.6563587188720703,-0.5329116582870483,1.1078075170516968,-1.6391030550003052,-0.7932478785514832,1.3230173587799072,-1.9593104124069214,-0.7981633543968201,1.3770593404769897,-1.9606455564498901,-0.6179386377334595,1.2350155115127563,-1.7717361450195312,-0.7110322713851929,1.2804820537567139,-1.8884565830230713,-0.7714136838912964,1.2998241186141968,-1.9557459354400635,-0.7880795001983643,1.3220279216766357,-1.979475498199463,-0.7590519785881042,1.9896224737167358,-1.6453450918197632,-0.7848817110061646,1.9984753131866455,-1.6705182790756226,-0.8032209277153015,2.001199960708618,-1.6743260622024536,-0.7747484445571899,1.9867223501205444,-1.5894837379455566,-0.7726948857307434,2.0166800022125244,-1.653622031211853,-0.7876365184783936,2.0152692794799805,-1.665392518043518,-0.7807664275169373,1.9935874938964844,-1.5852234363555908,-0.7753627896308899,2.0101430416107178,-1.5944660902023315,-0.7788497805595398,2.031623125076294,-1.6261143684387207,-0.7986558079719543,2.027454376220703,-1.6578618288040161,-0.7919801473617554,2.0145668983459473,-1.5873275995254517,-0.7963780760765076,2.028313398361206,-1.5994778871536255,-0.808910071849823,2.0385336875915527,-1.6339002847671509,-0.8150578737258911,2.0325281620025635,-1.651435136795044,-0.819701075553894,2.019786834716797,-1.6649566888809204,-0.7992346286773682,1.9935462474822998,-1.578843355178833,-0.8094030022621155,2.010291576385498,-1.5823391675949097,-0.8188610076904297,2.023338556289673,-1.5932369232177734,-0.8323503136634827,2.0285894870758057,-1.6471198797225952,-0.8289690613746643,2.0175275802612305,-1.6626092195510864,-0.7903129458427429,1.9764457941055298,-1.5829137563705444,-0.8231468796730042,1.997691035270691,-1.5811456441879272,-0.8366156816482544,2.007136106491089,-1.5917667150497437,-0.8453907370567322,2.013815402984619,-1.6076706647872925,-0.836029589176178,2.0108482837677,-1.6618832349777222,-0.809843122959137,1.9774545431137085,-1.5798622369766235,-0.8450770974159241,1.9847508668899536,-1.5954431295394897,-0.8389330506324768,2.001664876937866,-1.662981390953064,-0.8263033628463745,1.9629560708999634,-1.590211272239685,-0.840886652469635,1.9622743129730225,-1.6034760475158691,-0.8530486226081848,1.9727689027786255,-1.6385771036148071,-0.8482473492622375,1.9822715520858765,-1.6545355319976807,-0.8021385073661804,1.961369514465332,-1.5872747898101807,-0.8147610425949097,1.9505022764205933,-1.5980149507522583,-0.8374632000923157,1.9570109844207764,-1.6475406885147095,-0.8042274117469788,1.9411041736602783,-1.6223936080932617,-0.8104626536369324,1.9431374073028564,-1.6399658918380737,-0.8204275965690613,1.9656851291656494,-1.6676892042160034,-0.8224471211433411,1.9835643768310547,-1.6731609106063843,-0.8221693634986877,2.002426862716675,-1.672174096107483,-0.7836276888847351,1.9610791206359863,-1.5936533212661743,-0.7806825041770935,1.950461983680725,-1.6100841760635376,-0.8037060499191284,1.970130205154419,-1.671744704246521,-0.7644093036651611,1.9626038074493408,-1.6303352117538452,-0.7771862745285034,1.9726967811584473,-1.6640700101852417,-0.7907510995864868,1.9820483922958374,-1.6731678247451782,-0.7731897234916687,1.9774202108383179,-1.5928127765655518,-0.7611722946166992,1.9803167581558228,-1.6082741022109985,-0.7557604908943176,1.9846388101577759,-1.6270402669906616,-0.7693523168563843,1.9944438934326172,-1.6605592966079712,-0.7643722891807556,1.9974358081817627,-1.6021883487701416,-0.7599592208862305,2.0070431232452393,-1.6188730001449585,-0.7627197504043579,2.0139877796173096,-1.6372193098068237,-0.8048346042633057,2.0102579593658447,-1.6717383861541748,-0.774764895439148,2.0233407020568848,-1.608773112297058,-0.7874417304992676,2.0326929092407227,-1.6433501243591309,-0.8108406662940979,2.0170936584472656,-1.6683098077774048,-0.7898054718971252,1.9960626363754272,-1.5813707113265991,-0.8022515177726746,2.037180185317993,-1.615652322769165,-0.8265677690505981,2.0314207077026367,-1.6091715097427368,-0.831521213054657,2.033540964126587,-1.6281821727752686,-0.806586503982544,1.9867448806762695,-1.5781967639923096,-0.8487958908081055,2.0171682834625244,-1.6267119646072388,-0.8454717397689819,2.0160858631134033,-1.6458581686019897,-0.8290320634841919,1.9803601503372192,-1.5842339992523193,-0.8550184369087219,1.9899652004241943,-1.6118899583816528,-0.8577844500541687,1.9952346086502075,-1.6310182809829712,-0.8516935706138611,1.9992403984069824,-1.6489349603652954,-0.8082807660102844,1.968096375465393,-1.5830415487289429,-0.8499716520309448,1.9658187627792358,-1.6203328371047974,-0.8371922969818115,1.9926056861877441,-1.665934443473816,-0.8258616328239441,1.9461369514465332,-1.6134454011917114,-0.8333919048309326,1.9489529132843018,-1.6305609941482544,-0.8366788029670715,1.970058798789978,-1.6613408327102661,-0.8311979174613953,1.9859963655471802,-1.669763445854187,-0.79315584897995,1.9586849212646484,-1.5910803079605103,-0.7981481552124023,1.9461281299591064,-1.6052368879318237,-0.8162052035331726,1.951488971710205,-1.656015157699585,-0.7819904088973999,1.9466919898986816,-1.6287202835083008,-0.7867419123649597,1.9488235712051392,-1.6470788717269897,-0.7944023013114929,1.957068681716919,-1.6622058153152466,-0.8133446574211121,1.985909342765808,-1.6752238273620605,-0.7762833833694458,1.9679988622665405,-1.5942894220352173,-0.7672306299209595,1.9631881713867188,-1.6111661195755005,-0.767835795879364,1.9658221006393433,-1.6490336656570435,-0.806315541267395,1.992323398590088,-1.6754186153411865,-0.8132277727127075,1.9567276239395142,-1.9344767332077026,-0.8047962188720703,2.255406379699707,-1.849444031715393,-0.8184362053871155,2.149472236633301,-1.9122824668884277,-0.7802901864051819,2.3124704360961914,-1.7604824304580688,-0.7235686182975769,2.2670109272003174,-1.6195849180221558,-0.6996964812278748,2.20493483543396,-1.567069172859192,-0.8148528337478638,2.033863067626953,-1.9261054992675781,-0.8148705959320068,2.2592458724975586,-1.599767804145813,-0.8883534073829651,2.1703102588653564,-1.6017705202102661,-0.8481831550598145,2.12998104095459,-1.5525263547897339,-0.7798841595649719,2.1868674755096436,-1.5338295698165894,-0.9547962546348572,1.9163156747817993,-1.82616126537323,-0.9575170278549194,1.8671672344207764,-1.768413782119751,-0.9260910153388977,1.8315671682357788,-1.7399818897247314,-0.9921684265136719,1.9810758829116821,-1.7765618562698364,-1.0023775100708008,2.0531675815582275,-1.7442415952682495,-0.9495475888252258,2.1185998916625977,-1.8377059698104858,-0.9632785320281982,1.9162474870681763,-1.7198867797851562,-0.9728583693504333,1.991750955581665,-1.6689685583114624,-0.9120733737945557,2.215601682662964,-1.782969355583191,-0.9764429926872253,2.146871566772461,-1.7181918621063232,-0.9378226399421692,2.185386896133423,-1.662335753440857,-0.8695650100708008,2.281975746154785,-1.698562502861023,-0.9518154263496399,2.067613124847412,-1.6308163404464722,-0.9071517586708069,2.0227956771850586,-1.6013094186782837,-0.9401811957359314,1.8922500610351562,-1.6994805335998535,-0.9327619075775146,1.953471302986145,-1.6258798837661743,-0.9119267463684082,2.015092372894287,-1.8678549528121948,-0.89365553855896,1.9417191743850708,-1.886701226234436,-0.8783558011054993,1.7432013750076294,-2.1414787769317627,-0.886371374130249,1.6611992120742798,-2.181692361831665,-0.8360742926597595,1.8718708753585815,-2.0104920864105225,-0.8602514266967773,1.8249164819717407,-2.0781311988830566,-0.8510168790817261,1.3752731084823608,-1.9454129934310913,-0.8805412650108337,1.4511878490447998,-2.2295150756835938,-1.1152536869049072,1.1635524034500122,-2.087409019470215,-0.8191196918487549,1.9184726476669312,-1.9571588039398193,-0.8099464178085327,1.6929653882980347,-1.8547261953353882,-0.823348343372345,1.5322134494781494,-1.8998693227767944,-0.8157961964607239,1.5897244215011597,-1.8679242134094238,-0.9691824316978455,1.456223964691162,-1.3973050117492676,-0.9848411083221436,1.4261980056762695,-1.3979535102844238,-0.9799196720123291,1.4019896984100342,-1.4131373167037964,-0.9598116278648376,1.4000272750854492,-1.4330708980560303,-0.9395955801010132,1.4174797534942627,-1.4437227249145508,-0.9284059405326843,1.4392586946487427,-1.4433764219284058,-0.9301551580429077,1.461046814918518,-1.432363510131836,-0.9448118805885315,1.4715510606765747,-1.413377285003662,-1.0745244026184082,1.6558232307434082,-2.0166361331939697,-0.9153487682342529,1.7526737451553345,-1.802473545074463,-1.0423893928527832,1.8367068767547607,-1.9016929864883423,-1.070120096206665,1.5923000574111938,-2.090503215789795,-1.0095996856689453,1.5272454023361206,-1.9325653314590454,-1.0651624202728271,1.5408974885940552,-2.0071754455566406,-1.047008991241455,1.7905189990997314,-2.0071189403533936,-0.8835837841033936,1.7681235074996948,-1.8042936325073242,-0.8589404225349426,1.6937404870986938,-1.83743417263031,-0.9859196543693542,1.807887077331543,-1.8229745626449585,-1.1651804447174072,1.6645293235778809,-1.7841829061508179,-1.14229416847229,1.602325201034546,-1.8148587942123413,-1.1484949588775635,1.6425480842590332,-1.8693923950195312,-1.1650915145874023,1.716828465461731,-1.8266812562942505,-1.0850307941436768,1.5875519514083862,-1.830466628074646,-1.0884802341461182,1.602575659751892,-1.8793729543685913,-1.0670368671417236,1.7208842039108276,-1.7277827262878418,-1.132523536682129,1.714516282081604,-1.7438029050827026,-1.1095752716064453,1.762346625328064,-1.7761471271514893,-1.029628038406372,1.7194104194641113,-1.7457507848739624,-1.0051116943359375,1.643423080444336,-1.7748643159866333,-1.0148186683654785,1.68669855594635,-1.7359727621078491,-0.9938431978225708,1.6603440046310425,-1.7548905611038208,-0.9966915845870972,1.6011079549789429,-1.8437488079071045,-1.0373623371124268,1.6073434352874756,-1.8114649057388306,-1.0505518913269043,1.6039119958877563,-1.8652263879776,-1.1538357734680176,1.590030312538147,-1.7100342512130737,-1.1276307106018066,1.5502358675003052,-1.7240403890609741,-1.0778396129608154,1.5398191213607788,-1.7161165475845337,-1.099409818649292,1.650902271270752,-1.6578667163848877,-1.143902063369751,1.6309815645217896,-1.6812469959259033,-1.0240755081176758,1.6094753742218018,-1.671878695487976,-1.0507981777191162,1.6443687677383423,-1.6539913415908813,-1.0390725135803223,1.5696723461151123,-1.6935662031173706,-1.1188766956329346,1.463969349861145,-1.5384827852249146,-1.097205400466919,1.4594115018844604,-1.5675933361053467,-1.1350064277648926,1.4927459955215454,-1.6239275932312012,-1.1621603965759277,1.517690658569336,-1.621240496635437,-1.1305947303771973,1.4969079494476318,-1.5225344896316528,-1.1654958724975586,1.5460128784179688,-1.5947165489196777,-1.0517299175262451,1.4367871284484863,-1.476744294166565,-1.0275132656097412,1.4319870471954346,-1.5024832487106323,-1.0065879821777344,1.457431674003601,-1.5242139101028442,-1.0502407550811768,1.506521463394165,-1.4640673398971558,-1.0597963333129883,1.4666563272476196,-1.4594796895980835,-0.9949458241462708,1.5161317586898804,-1.5026050806045532,-1.0174534320831299,1.5264121294021606,-1.4798328876495361,-0.9897368550300598,1.4908286333084106,-1.519392490386963,-1.0458366870880127,1.3909159898757935,-2.017058849334717,-1.0694551467895508,1.425020694732666,-2.1726291179656982,-1.0901381969451904,1.4112745523452759,-2.0910351276397705,-1.0437309741973877,1.3291188478469849,-2.035398483276367,-0.9530231952667236,1.594933271408081,-1.8485897779464722,-0.9071877598762512,1.1140577793121338,-2.222111940383911,-0.9513516426086426,1.33121657371521,-1.9814784526824951,-1.0674614906311035,1.1253982782363892,-2.142106056213379,-1.1113908290863037,1.2701847553253174,-2.0439624786376953,-1.0105674266815186,1.4274648427963257,-2.206983804702759,-1.0189988613128662,1.7139918804168701,-2.0893332958221436,-0.9954413771629333,1.6417909860610962,-2.149259328842163,-0.9632561206817627,1.3811012506484985,-1.9634056091308594,-0.8487648367881775,1.3213735818862915,-1.95247483253479,-0.9311049580574036,1.5086201429367065,-1.9068669080734253,-0.9111425876617432,1.5979710817337036,-1.8558484315872192,-0.9069269299507141,1.6906235218048096,-1.8180798292160034,-0.9519000053405762,1.6585546731948853,-1.7785570621490479,-0.9712106585502625,1.713269829750061,-1.7658101320266724,-1.040006160736084,1.7779815196990967,-1.7933897972106934,-1.0917284488677979,1.8019075393676758,-1.8762892484664917,-1.1124072074890137,1.7214182615280151,-1.9557150602340698,-1.1337361335754395,1.5527763366699219,-1.5388754606246948,-1.1621148586273193,1.5020581483840942,-1.5546578168869019,-1.1544592380523682,1.4790146350860596,-1.5720982551574707,-1.1348633766174316,1.4678491353988647,-1.5899358987808228,-1.0826811790466309,1.4915353059768677,-1.6068159341812134,-1.0546116828918457,1.5373988151550293,-1.6000202894210815,-1.0605299472808838,1.5686076879501343,-1.5785564184188843,-1.0905838012695312,1.5795828104019165,-1.5525157451629639,-0.9561662077903748,1.8885287046432495,-1.8702064752578735,-0.9587326049804688,1.8331708908081055,-1.8048948049545288,-0.8030577301979065,1.7411342859268188,-1.848454475402832,-0.8600367903709412,1.5892829895019531,-1.8614834547042847,-0.867904782295227,1.5291943550109863,-1.896663784980774,-0.9672008752822876,1.5440187454223633,-1.8922725915908813,-0.9226464033126831,1.5332906246185303,-1.8943945169448853,-0.7005953788757324,1.9173948764801025,-1.5755301713943481,-0.6976462602615356,1.9014986753463745,-1.5690799951553345,-0.7079535126686096,1.8888298273086548,-1.5934418439865112,-0.7081333994865417,1.9292532205581665,-1.59345281124115,-0.7119941115379333,1.9540237188339233,-1.6031640768051147,-0.7048426270484924,2.015319585800171,-1.5865885019302368,-0.7117138504981995,1.8458251953125,-1.6030789613723755,-0.7095818519592285,1.9819494485855103,-1.5984290838241577,-0.696586549282074,2.1310770511627197,-1.562883973121643,-0.7194729447364807,1.8368861675262451,-1.619903564453125,-0.7363186478614807,1.7639145851135254,-1.665363073348999,-0.7253305315971375,1.7839175462722778,-1.6383551359176636,-0.7520220875740051,1.7728984355926514,-1.7009817361831665,-0.8471116423606873,1.9252585172653198,-1.9275034666061401,-0.7521205544471741,2.25657057762146,-1.6858158111572266,-0.7111442685127258,2.187690019607544,-1.5941516160964966,-0.7156420946121216,1.8437494039535522,-1.6121703386306763,-0.7163689732551575,1.83453369140625,-1.6128755807876587,-0.7100284695625305,1.870208740234375,-1.5986055135726929,-0.7198529243469238,1.8122692108154297,-1.6231871843338013,-0.7103424668312073,1.8849786520004272,-1.5990395545959473,-0.6972119212150574,2.06412672996521,-1.567029356956482,-0.7780352830886841,1.788684606552124,-1.763616681098938,-0.7244449257850647,1.8263458013534546,-1.6319581270217896,-0.7193610072135925,1.8615875244140625,-1.6191402673721313,-0.7608855962753296,1.850490927696228,-1.712560772895813,-0.7545796036720276,1.9064651727676392,-1.6979364156723022,-0.7166998982429504,1.8248785734176636,-1.614548683166504,-0.709367036819458,1.8552368879318237,-1.5973674058914185,-0.7945663332939148,1.770909070968628,-1.8078919649124146,-0.8518726229667664,1.8892238140106201,-1.9803460836410522,-0.8453426361083984,1.9008986949920654,-1.9467763900756836,-0.8126515746116638,1.7409825325012207,-1.8674710988998413,-0.7407769560813904,1.9069901704788208,-1.5937687158584595,-0.742936909198761,1.8904696702957153,-1.59652841091156,-0.719506561756134,1.891258716583252,-1.592584252357483,-0.7131702303886414,1.8958230018615723,-1.5720921754837036,-0.7147964239120483,1.9099394083023071,-1.5817941427230835,-0.7334975600242615,1.891742467880249,-1.576964259147644,-0.7354599833488464,1.905875325202942,-1.5846513509750366,-0.7288730144500732,1.9190616607666016,-1.6030999422073364,-0.8317896723747253,2.2447421550750732,-1.669857382774353,-0.9017159342765808,2.187450647354126,-1.6746987104415894,-0.8690441250801086,2.154388666152954,-1.613343596458435,-0.797922670841217,2.188342332839966,-1.5802804231643677,-0.8968656063079834,1.9057799577713013,-1.8695584535598755,-0.9118074774742126,1.8507649898529053,-1.8097163438796997,-0.9047186374664307,1.8842298984527588,-1.7725262641906738,-0.857944905757904,1.819643259048462,-1.7827187776565552,-0.856158435344696,1.847299337387085,-1.7439810037612915,-0.9112837910652161,1.917181372642517,-1.7460893392562866,-0.8874441981315613,1.8595141172409058,-1.7123898267745972,-0.9344525337219238,1.962935447692871,-1.7283557653427124,-0.9381201267242432,2.029440402984619,-1.7345889806747437,-0.9451627731323242,1.9716746807098389,-1.7252289056777954,-0.9243208765983582,1.9659336805343628,-1.6999586820602417,-0.9211234450340271,2.017289876937866,-1.7033463716506958,-0.9481809735298157,2.033693552017212,-1.7306386232376099,-0.9326302409172058,2.0887672901153564,-1.7137454748153687,-0.9050851464271545,2.0656445026397705,-1.6605430841445923,-0.7688786387443542,2.0223886966705322,-1.5798265933990479,-0.742464005947113,1.9925251007080078,-1.5978566408157349,-0.7267259955406189,2.0182039737701416,-1.5721991062164307,-0.7758809924125671,2.038566827774048,-1.55632746219635,-0.813555896282196,1.8073093891143799,-1.7575160264968872,-0.8116515278816223,1.795160174369812,-1.6618610620498657,-0.8471112847328186,1.8171660900115967,-1.6825400590896606,-0.848253071308136,1.8685871362686157,-1.6342971324920654,-0.9046598076820374,1.9347394704818726,-1.6772266626358032,-0.8650751709938049,1.9491022825241089,-1.612052321434021,-0.829681396484375,1.9231101274490356,-1.596649408340454,-0.8284672498703003,1.9466845989227295,-1.5999979972839355,-0.8536032438278198,1.9706040620803833,-1.5962998867034912,-0.8419381976127625,2.0979692935943604,-1.585140585899353,-0.8739591240882874,2.0638692378997803,-1.6246951818466187,-0.7847086787223816,2.130398988723755,-1.5471354722976685,-0.8790313601493835,1.9494937658309937,-1.6336430311203003,-0.8349508047103882,1.9010173082351685,-1.6004987955093384,-0.8294605612754822,2.039599657058716,-1.5618253946304321,-0.8528606295585632,2.021899938583374,-1.5853272676467896,-0.8495723605155945,2.0014617443084717,-1.5930596590042114,-0.8157115578651428,2.0256145000457764,-1.5758827924728394,-0.8683492541313171,1.9908082485198975,-1.607358694076538,-0.8555721044540405,1.9804515838623047,-1.598831057548523,-0.8857297301292419,2.016587018966675,-1.6408880949020386,-0.780825138092041,1.920169711112976,-1.5944162607192993,-0.7317129373550415,1.939486026763916,-1.6073275804519653,-0.7433145642280579,1.9608937501907349,-1.6004639863967896,-0.778867781162262,1.9358617067337036,-1.6026054620742798,-0.7259361147880554,1.9745519161224365,-1.6045379638671875,-0.7416635155677795,1.9731662273406982,-1.60723876953125,-0.7721881866455078,1.907547116279602,-1.586361050605774,-0.9087311625480652,2.0019619464874268,-1.6707295179367065,-0.8118476271629333,1.8376649618148804,-1.6371023654937744,-0.8047562837600708,1.8667086362838745,-1.6075791120529175,-0.797774612903595,1.8156191110610962,-1.636745810508728,-0.7725163102149963,1.8517698049545288,-1.6148830652236938,-0.7588728070259094,1.847052812576294,-1.6072155237197876,-0.7721483111381531,1.854565143585205,-1.6095141172409058,-0.7773199081420898,1.8868225812911987,-1.595760703086853,-0.7559310793876648,1.8532849550247192,-1.5997647047042847,-0.7331636548042297,1.8481401205062866,-1.598495602607727,-0.776017427444458,1.7760512828826904,-1.6862813234329224,-0.7712127566337585,1.7687634229660034,-1.6538182497024536,-0.7580702304840088,1.789076805114746,-1.629757046699524,-0.7345975041389465,1.8378918170928955,-1.6071017980575562,-0.7394344806671143,1.8410590887069702,-1.6134735345840454,-0.7599970102310181,1.8478156328201294,-1.6138571500778198,-0.7733738422393799,1.854566216468811,-1.6168721914291382,-0.7576693892478943,1.8507179021835327,-1.60979163646698,-0.7709457874298096,1.8959770202636719,-1.5935121774673462,-0.9196483492851257,2.0608675479888916,-1.687005639076233,-0.9483345150947571,2.0773894786834717,-1.7120252847671509,-0.7365489602088928,1.8469334840774536,-1.6066666841506958,-0.7737910151481628,1.852901577949524,-1.6178500652313232,-0.7366807460784912,1.8682351112365723,-1.5924557447433472,-0.7636933326721191,1.8692052364349365,-1.5948877334594727,-0.7852262854576111,1.8613523244857788,-1.608181118965149,-0.7872464060783386,1.8514878749847412,-1.6186093091964722,-0.7726595997810364,1.8337279558181763,-1.6148689985275269,-0.7437863349914551,1.8179665803909302,-1.6166777610778809,-0.7189090847969055,1.8858363628387451,-1.5952463150024414,-0.7248942255973816,2.065511465072632,-1.5557725429534912,-0.8388465046882629,1.8121757507324219,-1.719382643699646,-0.7992479801177979,1.787919282913208,-1.6998364925384521,-0.7716801762580872,2.012827157974243,-1.581905722618103,-0.8161206841468811,2.0107905864715576,-1.5776689052581787,-0.8239231109619141,1.9515548944473267,-1.5966843366622925,-0.7788904309272766,1.9403156042099,-1.60072922706604,-0.7435163259506226,1.97489333152771,-1.6148829460144043,-0.7738077044487,2.0091359615325928,-1.5903418064117432,-0.8181610703468323,2.0073187351226807,-1.586004376411438,-0.8575397729873657,1.9827162027359009,-1.6063750982284546,-0.8256527185440063,1.9559725522994995,-1.6037485599517822,-0.7808513045310974,1.943892478942871,-1.6077924966812134,-0.7468768954277039,1.981153964996338,-1.638326644897461,-0.7782434821128845,2.021437406539917,-1.6433626413345337,-0.8227147459983826,2.020190954208374,-1.6390856504440308,-0.8611799478530884,1.9897578954696655,-1.6297687292099,-0.8256715536117554,1.9829357862472534,-1.6367398500442505,-0.7906152009963989,1.9778634309768677,-1.6395961046218872,-0.7922765016555786,1.9929008483886719,-1.6402891874313354,-0.8286538124084473,1.998024344444275,-1.6382101774215698,-0.7673333883285522,1.8397680521011353,-1.6291470527648926,-0.7465311288833618,1.8315036296844482,-1.624172568321228,-0.7585534453392029,1.866029143333435,-1.623376727104187,-0.783726692199707,1.8712797164916992,-1.635839819908142,-0.7387542128562927,1.8622292280197144,-1.614754319190979,-0.7905656099319458,1.844056487083435,-1.642451286315918,-0.7897951006889343,1.8496967554092407,-1.687265157699585,-0.7794068455696106,1.8490062952041626,-1.7002774477005005,-0.7809590697288513,1.8950893878936768,-1.6790287494659424,-0.7918020486831665,1.8840266466140747,-1.6657239198684692,-0.7689815759658813,1.9010899066925049,-1.6899304389953613,-0.798728883266449,1.8488348722457886,-1.6716338396072388,-0.7322723865509033,1.8570442199707031,-1.5922592878341675,-0.7588317394256592,1.8559350967407227,-1.5955604314804077,-0.7748152613639832,1.8577238321304321,-1.6092369556427002,-0.7787083983421326,1.8547718524932861,-1.619613766670227,-0.7677717804908752,1.8419170379638672,-1.6143513917922974,-0.7390459775924683,1.8293851613998413,-1.606300950050354,-0.6112707257270813,0.7745345234870911,-1.508792757987976,-0.6517260670661926,0.7793897986412048,-1.4888607263565063,-0.6722719073295593,0.8202501535415649,-1.5231224298477173,-0.6359519362449646,0.8046104907989502,-1.5531703233718872,-0.5754103064537048,0.7389001250267029,-1.462836503982544,-0.5990179181098938,0.6723042726516724,-1.5187879800796509,-0.6087314486503601,0.6418898105621338,-1.408339500427246,-0.5620104670524597,0.6537362337112427,-1.4253277778625488,-0.5167412161827087,0.6691532135009766,-1.419172763824463,-0.5307042002677917,0.7083521485328674,-1.4003769159317017,-0.5825385451316833,0.68047034740448,-1.3730247020721436,-0.5607196688652039,0.6964516639709473,-1.3839912414550781,-0.5472366213798523,0.7178390622138977,-1.428255558013916,-0.5083732008934021,0.6709412336349487,-1.3743534088134766,-0.5453410744667053,0.6557616591453552,-1.3571549654006958,-0.5542256236076355,0.6627931594848633,-1.391150712966919,-0.520428478717804,0.7041614651679993,-1.368480920791626,-0.5775019526481628,0.6546058058738708,-1.382521390914917,-0.5669135451316833,0.6593449115753174,-1.3491288423538208,-0.5711087584495544,0.6792197227478027,-1.3408969640731812,-0.5534289479255676,0.6523475646972656,-1.328678011894226,-0.5541622042655945,0.6675264835357666,-1.3254245519638062,-0.5713606476783752,0.6590640544891357,-1.3571895360946655,-0.5922930836677551,0.651622474193573,-1.350967526435852,-0.561526358127594,0.6495972275733948,-1.3357887268066406,-0.5799618363380432,0.6439347267150879,-1.330396056175232,-0.6057179570198059,0.6483222246170044,-1.3789526224136353,-0.6226171851158142,0.6408946514129639,-1.3756709098815918,-0.6539260745048523,0.630144476890564,-1.4006009101867676,-0.6347901225090027,0.6595653295516968,-1.5110167264938354,-0.6760545372962952,0.6462676525115967,-1.500674843788147,-0.6887601017951965,0.6513071060180664,-1.5669955015182495,-0.6778553128242493,0.7438780069351196,-1.4889830350875854,-0.6999728679656982,0.7842932939529419,-1.5332362651824951,-0.6398032307624817,0.6655488014221191,-1.5741242170333862,-0.6485957503318787,0.6659258604049683,-1.6109395027160645,-0.7009678483009338,0.6515047550201416,-1.599541425704956,-0.6555770635604858,0.6991279721260071,-1.432539463043213,-0.6223956942558289,0.7278674840927124,-1.4423977136611938,-0.604112446308136,0.7004163861274719,-1.4079488515853882,-0.6438072323799133,0.6751136779785156,-1.4010988473892212,-0.5993775725364685,0.679678738117218,-1.5865050554275513,-0.6028697490692139,0.6797587275505066,-1.6289293766021729,-0.6149351000785828,0.6820926666259766,-1.6635788679122925,-0.6248126029968262,0.801705002784729,-1.5908527374267578,-0.6619415879249573,0.786916971206665,-1.6471128463745117,-0.6963550448417664,0.7831916809082031,-1.651023030281067,-0.717275083065033,0.7704267501831055,-1.62759530544281,-0.6872003674507141,0.716183602809906,-1.6906983852386475,-0.6539449095726013,0.7231277823448181,-1.6896796226501465,-0.71375972032547,0.7070574760437012,-1.673204779624939,-0.733071506023407,0.7585171461105347,-1.5730961561203003,-0.7080360054969788,0.655241072177887,-1.633438229560852,-0.657554566860199,0.6664941310882568,-1.6437137126922607,-0.6743488907814026,0.6720053553581238,-1.6861004829406738,-0.6972137093544006,0.6647312045097351,-1.670935034751892,-0.645062267780304,0.679227352142334,-1.6834214925765991,-0.6083353161811829,0.6715369820594788,-1.3731365203857422,-0.6260389685630798,0.6610730290412903,-1.3686836957931519,-0.6201054453849792,0.662268877029419,-1.3583258390426636,-0.6178193688392639,0.6452803611755371,-1.3674578666687012,-0.6089443564414978,0.6401370167732239,-1.3505218029022217,-0.6215431094169617,0.6300203204154968,-1.3472754955291748,-0.6351566910743713,0.6509824991226196,-1.3539462089538574,-0.6332768797874451,0.6349982619285583,-1.3605953454971313,-0.623029887676239,0.640205979347229,-1.343559980392456,-0.6142866015434265,0.6512041687965393,-1.3464235067367554,-0.6423121094703674,0.6338984370231628,-1.3771265745162964,-0.6406378149986267,0.6527891159057617,-1.3728939294815063,-0.5995848774909973,0.6718194484710693,-1.3505748510360718,-0.5975592732429504,0.6506468653678894,-1.362036108970642,-0.587300717830658,0.6426680088043213,-1.3439091444015503,-0.5900723338127136,0.6569636464118958,-1.3347246646881104,-0.6039782166481018,0.6502571702003479,-1.3301619291305542,-0.6026940941810608,0.6386487483978271,-1.3379861116409302,-0.6142880320549011,0.6437161564826965,-1.353649377822876,-0.6189876198768616,0.662190318107605,-1.342339038848877,-0.5982018113136292,0.6713327169418335,-1.34087336063385,-0.5735844969749451,0.680173397064209,-1.3475828170776367,-0.5456258654594421,0.685897171497345,-1.3530759811401367,-0.5438336730003357,0.6665008068084717,-1.3598880767822266,-0.5368193984031677,0.6580269932746887,-1.3372737169265747,-0.5402712225914001,0.6721089482307434,-1.3325570821762085,-0.551950991153717,0.6926782727241516,-1.3539183139801025,-0.5307161211967468,0.6578643918037415,-1.3312500715255737,-0.5086328387260437,0.6650390028953552,-1.3356109857559204,-0.5140596032142639,0.6820966601371765,-1.333518385887146,-0.5349298119544983,0.6750161647796631,-1.3289214372634888,-0.5659382939338684,0.6647332310676575,-1.3280047178268433,-0.5822587609291077,0.6586217880249023,-1.323655366897583,-0.7358514666557312,0.8938060998916626,-1.5946485996246338,-0.7057979702949524,0.9047814011573792,-1.59528648853302,-0.6841669678688049,0.9007980823516846,-1.6100986003875732,-0.6731787323951721,0.8793120384216309,-1.6420807838439941,-0.6996278166770935,0.8566733598709106,-1.674232840538025,-0.7346789836883545,0.8508979678153992,-1.6745245456695557,-0.7558556199073792,0.856616735458374,-1.6502701044082642,-0.7534576058387756,0.8726017475128174,-1.6158721446990967,-0.528773844242096,0.6678329706192017,-1.4487632513046265,-0.5803130269050598,0.6602247357368469,-1.4639225006103516,-0.6206191182136536,0.6474637985229492,-1.4466440677642822,-0.6628747582435608,0.6355612874031067,-1.4342098236083984,-0.6558254361152649,0.6601629853248596,-1.3987761735916138,-0.6649720072746277,0.6704384684562683,-1.4349002838134766,-0.6783648133277893,0.6877893209457397,-1.498580813407898,-0.6943124532699585,0.6947286128997803,-1.555182695388794,-0.70987468957901,0.6988599300384521,-1.5967286825180054,-0.7171092629432678,0.6979889869689941,-1.6429157257080078,-0.6284372210502625,0.7267902493476868,-1.6588109731674194,-0.6195358633995056,0.7215474843978882,-1.618850827217102,-0.6065582633018494,0.7218608260154724,-1.5761078596115112,-0.5815818905830383,0.7015864849090576,-1.5242365598678589,-0.5482961535453796,0.6764441728591919,-1.4795984029769897,-0.701839029788971,0.7448948621749878,-1.6651358604431152,-0.6935387253761292,0.7523901462554932,-1.6761823892593384,-0.6783154606819153,0.7522166967391968,-1.6752554178237915,-0.9652765989303589,1.4474561214447021,-1.4040473699569702,-0.9760851860046387,1.4231523275375366,-1.4062334299087524,-0.97220379114151,1.406369686126709,-1.4155410528182983,-0.9594606161117554,1.408296823501587,-1.4298139810562134,-0.9463358521461487,1.4227533340454102,-1.43576979637146,-0.936111569404602,1.4356682300567627,-1.4372637271881104,-0.9388039112091064,1.4506326913833618,-1.428343415260315,-0.9455093741416931,1.4620925188064575,-1.4161306619644165,-0.918154239654541,1.7198957204818726,-1.807664155960083,-0.9545281529426575,1.8728485107421875,-1.9436973333358765,-0.8129401803016663,1.708016037940979,-1.864741563796997,-0.9609322547912598,1.8080940246582031,-1.8708407878875732,-0.7416539788246155,1.0203648805618286,-1.6322965621948242,-0.715715229511261,1.0183671712875366,-1.6543753147125244,-0.7779902815818787,1.0154577493667603,-1.6344612836837769,-0.7072193622589111,1.0097240209579468,-1.7016475200653076,-0.7374653220176697,0.9847671985626221,-1.738228678703308,-0.7874216437339783,0.9743059873580933,-1.7361459732055664,-0.8177345395088196,0.9878724217414856,-1.69981849193573,-0.8105298280715942,1.00975501537323,-1.66037118434906,-0.8231192827224731,1.0756765604019165,-1.6722699403762817,-0.8276693820953369,1.0439467430114746,-1.6879758834838867,-0.9198747277259827,1.8772870302200317,-1.9083369970321655,-0.9297105073928833,1.8247756958007812,-1.8650373220443726,-0.8936150074005127,1.7530794143676758,-1.8350194692611694,-0.9528571963310242,1.3950215578079224,-1.3953919410705566,-0.9331197738647461,1.3966642618179321,-1.4063624143600464,-0.9216499924659729,1.4146357774734497,-1.4136172533035278,-0.9494514465332031,1.4444124698638916,-1.3829998970031738,-0.9552777409553528,1.4140573740005493,-1.3806489706039429,-0.9229098558425903,1.4489868879318237,-1.414994239807129,-0.9287976622581482,1.4609721899032593,-1.39678156375885,-0.9116029143333435,1.429276704788208,-1.415358066558838,-0.8638303875923157,1.4015696048736572,-1.3261370658874512,-0.8454204797744751,1.4357105493545532,-1.327071189880371,-0.874932587146759,1.4150773286819458,-1.3105312585830688,-0.868964672088623,1.4415470361709595,-1.320589303970337,-0.9191159009933472,1.373088002204895,-1.3757076263427734,-0.8797463178634644,1.3831160068511963,-1.3271368741989136,-0.936531662940979,1.386481761932373,-1.360305905342102,-0.879163384437561,1.3915449380874634,-1.3149932622909546,-0.8825019598007202,1.3641729354858398,-1.3196684122085571,-0.8728902339935303,1.380720853805542,-1.3285181522369385,-0.8770051598548889,1.3747633695602417,-1.3083665370941162,-0.8665382862091064,1.386008858680725,-1.3184620141983032,-0.8658878207206726,1.3599066734313965,-1.334246277809143,-0.865277111530304,1.3798097372055054,-1.339108943939209,-0.8496701121330261,1.3647421598434448,-1.3320398330688477,-0.8488468527793884,1.3812839984893799,-1.3369877338409424,-0.8632795810699463,1.365861415863037,-1.355226993560791,-0.8635342121124268,1.3841533660888672,-1.3568388223648071,-0.8465086221694946,1.3701667785644531,-1.355084776878357,-0.8462561964988708,1.384392499923706,-1.3571789264678955,-0.8601186275482178,1.3722097873687744,-1.3732069730758667,-0.8609372973442078,1.3863743543624878,-1.3737764358520508,-0.8470146656036377,1.373924970626831,-1.3723446130752563,-0.8473913073539734,1.3870800733566284,-1.3735617399215698,-0.8644834756851196,1.3815178871154785,-1.316606879234314,-0.8593211770057678,1.3985521793365479,-1.3288726806640625,-0.8585031628608704,1.3918344974517822,-1.304682970046997,-0.8527681827545166,1.4077340364456177,-1.3137723207473755,-0.8499826788902283,1.3757946491241455,-1.330596685409546,-0.8520910143852234,1.3958227634429932,-1.3361111879348755,-0.8326773643493652,1.3812681436538696,-1.3308405876159668,-0.8342176675796509,1.3978008031845093,-1.3355929851531982,-0.8501889109611511,1.3739131689071655,-1.3549541234970093,-0.8524156808853149,1.3938087224960327,-1.359541654586792,-0.8319091796875,1.378563642501831,-1.359025478363037,-0.8344644904136658,1.3937368392944336,-1.3627041578292847,-0.8480240702629089,1.374198317527771,-1.3785200119018555,-0.8508225679397583,1.3878403902053833,-1.3812223672866821,-0.8354317545890808,1.3762896060943604,-1.3804941177368164,-0.8373700976371765,1.3885821104049683,-1.3837579488754272,-0.9094676971435547,1.4626598358154297,-1.396705985069275,-0.8403197526931763,1.450407862663269,-1.3423428535461426,-0.8636004328727722,1.466435432434082,-1.343754768371582,-0.8507503867149353,1.453373908996582,-1.3945165872573853,-0.8644043803215027,1.4722827672958374,-1.4157987833023071,-0.8574810028076172,1.4726002216339111,-1.363242506980896,-0.8676137924194336,1.4831653833389282,-1.3995546102523804,-0.7949290871620178,1.4733011722564697,-1.3836017847061157,-0.7966669201850891,1.485924482345581,-1.3929756879806519,-0.7987012267112732,1.4795258045196533,-1.372631311416626,-0.8011071681976318,1.4919813871383667,-1.3818082809448242,-0.8430874347686768,1.436975359916687,-1.3214777708053589,-0.8405628800392151,1.4548105001449585,-1.3297879695892334,-0.8540300726890564,1.4400014877319336,-1.3100019693374634,-0.8528757691383362,1.4588892459869385,-1.3180588483810425,-0.8198258280754089,1.43308687210083,-1.3037973642349243,-0.8182340860366821,1.4516706466674805,-1.307708740234375,-0.827888011932373,1.4352799654006958,-1.2899292707443237,-0.8272559642791748,1.4510737657546997,-1.2944679260253906,-0.8030543327331543,1.4306261539459229,-1.290018916130066,-0.7994105219841003,1.4476087093353271,-1.2926732301712036,-0.7988800406455994,1.4334297180175781,-1.277759075164795,-0.8033530712127686,1.4458078145980835,-1.2805160284042358,-0.778045117855072,1.4280107021331787,-1.2979053258895874,-0.7778673768043518,1.4408549070358276,-1.2971843481063843,-0.7746374011039734,1.429044485092163,-1.2866548299789429,-0.7755185961723328,1.4404938220977783,-1.287768840789795,-0.8463779091835022,1.4120125770568848,-1.30950129032135,-0.8419699668884277,1.4346628189086914,-1.3145583868026733,-0.8570824861526489,1.418087363243103,-1.2954078912734985,-0.8543626666069031,1.4390294551849365,-1.3029241561889648,-0.8211591839790344,1.411163091659546,-1.29234778881073,-0.817283034324646,1.4324356317520142,-1.2957507371902466,-0.8267967104911804,1.4154942035675049,-1.2734581232070923,-0.8240933418273926,1.43374764919281,-1.2766858339309692,-0.8033166527748108,1.4046953916549683,-1.2863365411758423,-0.7973447442054749,1.4228265285491943,-1.2908622026443481,-0.7981646656990051,1.4077726602554321,-1.2665756940841675,-0.7940817475318909,1.4236056804656982,-1.2719289064407349,-0.780696451663971,1.4014232158660889,-1.2893329858779907,-0.7771255373954773,1.4153742790222168,-1.2912496328353882,-0.7769939303398132,1.4011385440826416,-1.2757443189620972,-0.7745862603187561,1.4142954349517822,-1.2778942584991455,-0.8862391710281372,1.3688898086547852,-1.3334190845489502,-0.8930874466896057,1.3766541481018066,-1.3175967931747437,-0.9135446548461914,1.3934335708618164,-1.384799599647522,-0.9037294983863831,1.4155066013336182,-1.3982386589050293,-0.8955315947532654,1.4487570524215698,-1.4164620637893677,-0.8712762594223022,1.4350682497024536,-1.3924381732940674,-0.891664445400238,1.4293636083602905,-1.4000746011734009,-0.8937212824821472,1.4197416305541992,-1.3760366439819336,-0.8660067319869995,1.4101052284240723,-1.3330875635147095,-0.8584704995155334,1.4347947835922241,-1.3461943864822388,-0.8969740271568298,1.3907146453857422,-1.3607397079467773,-0.8827081322669983,1.3907897472381592,-1.3343228101730347,-0.8542256951332092,1.445814609527588,-1.357014775276184,-0.8565753102302551,1.4497778415679932,-1.394637107849121,-0.8332899212837219,1.4889470338821411,-1.3923004865646362,-0.8304979205131531,1.4734162092208862,-1.379358172416687,-0.8263632655143738,1.4631210565567017,-1.390546202659607,-0.8285000920295715,1.4790035486221313,-1.4059785604476929,-0.7978234887123108,1.030634880065918,-1.7242540121078491,-0.7581343054771423,1.0382784605026245,-1.72314453125,-0.7290686368942261,1.076490044593811,-1.7174873352050781,-0.7954588532447815,1.0928634405136108,-1.6611459255218506,-0.7376083731651306,1.0961772203445435,-1.6867527961730957,-0.7629694938659668,1.0990724563598633,-1.6646448373794556,-0.6117321848869324,1.1908537149429321,-1.6734890937805176,-0.7767537832260132,1.1632747650146484,-1.635035514831543,-0.8333830833435059,1.1182982921600342,-1.6227307319641113,-0.852712869644165,1.0350834131240845,-1.646855354309082,-0.8218619227409363,0.974409282207489,-1.6860657930374146,-0.6534362435340881,1.1822839975357056,-1.6798374652862549,-0.696304440498352,0.9273287057876587,-1.7178107500076294,-0.8346906304359436,1.2925814390182495,-1.9490180015563965,-0.7783368229866028,1.2631915807724,-1.8983547687530518,-0.6825994253158569,1.2340654134750366,-1.7975987195968628,-0.851658046245575,1.248611330986023,-1.763410210609436,-0.9232361912727356,1.2994686365127563,-1.8881659507751465,-0.9949648976325989,1.3206630945205688,-2.0002968311309814,-0.9133184552192688,1.187296986579895,-1.737778902053833,-0.9931328892707825,1.2299628257751465,-1.8620976209640503,-1.053889513015747,1.2573744058609009,-1.9781898260116577,-0.9301398396492004,1.0855783224105835,-1.7467260360717773,-1.0044991970062256,1.1300073862075806,-1.882820963859558,-1.0708401203155518,1.155293583869934,-1.9994196891784668,-0.9005030393600464,1.0151125192642212,-1.7819538116455078,-0.9902503490447998,1.045664668083191,-1.9398940801620483,-1.043123722076416,1.0859384536743164,-2.0681698322296143,-0.7740008234977722,0.9442355632781982,-1.8508591651916504,-0.8568222522735596,0.9854468703269958,-2.060293197631836,-0.8853650689125061,1.0651416778564453,-2.1749112606048584,-0.7219234108924866,1.164732575416565,-1.638242244720459,-0.7949431538581848,1.2522162199020386,-1.7965342998504639,-0.8534266352653503,1.2944507598876953,-1.9291048049926758,-0.9310121536254883,1.3204561471939087,-2.0072665214538574,-0.8420858383178711,1.0436726808547974,-1.6631720066070557,-0.8281882405281067,1.0958536863327026,-1.6448038816452026,-0.7806376814842224,1.1384787559509277,-1.640300989151001,-0.8164933323860168,1.0057551860809326,-1.7055341005325317,-0.7557899951934814,1.008834719657898,-1.7202562093734741,-0.6704891920089722,1.1401511430740356,-1.6876051425933838,-0.6900002360343933,1.0702030658721924,-1.7089687585830688,-0.7249966263771057,1.139811396598816,-1.6539843082427979,-0.6895889639854431,0.9720070362091064,-1.7235862016677856,-0.6216285824775696,1.1511157751083374,-1.6751030683517456,-0.6546769142150879,1.0615925788879395,-1.6985312700271606,-0.7316914200782776,0.9851109981536865,-1.7271820306777954,-0.8283613920211792,1.50553297996521,-1.9109197854995728,-0.8775308728218079,1.5101498365402222,-1.909324288368225,-0.7380359768867493,0.9313763380050659,-1.7240849733352661,-0.9524895548820496,1.0704429149627686,-2.165520191192627,-0.9086632132530212,0.9919124245643616,-2.0570292472839355,-0.8216038942337036,0.9542524814605713,-1.85591721534729,-1.1031489372253418,1.1693774461746216,-2.085346221923828,-1.0366835594177246,1.3277616500854492,-2.0439982414245605,-0.9004527926445007,1.122766137123108,-2.208371162414551,-0.9570996165275574,1.3321079015731812,-2.018857717514038,-1.0618832111358643,1.1318150758743286,-2.132326126098633,-1.098074197769165,1.2682160139083862,-2.045863389968872,-0.8495582938194275,1.3151663541793823,-1.9725995063781738,-0.9557895660400391,1.1163702011108398,-2.217825412750244,-0.9435461759567261,1.6528832912445068,-2.1666862964630127,-0.9553929567337036,1.7351353168487549,-2.1176931858062744,-0.948153018951416,1.8203521966934204,-2.0522959232330322,-0.9176645278930664,1.870904803276062,-1.9736748933792114,-0.8885698914527893,1.9095340967178345,-1.9186866283416748,-0.927798330783844,1.4412821531295776,-2.229098081588745,-0.9537256360054016,1.12226140499115,-2.203007936477661,-0.7153711318969727,1.070622205734253,-1.7121750116348267,-0.7061786651611328,1.1224335432052612,-1.678585410118103,-0.902880847454071,1.3228195905685425,-1.9648489952087402,-0.9075189232826233,1.3776720762252808,-1.9550517797470093,-0.7354395985603333,1.2402516603469849,-1.8167333602905273,-0.8155620098114014,1.2767014503479004,-1.9291367530822754,-0.8918566703796387,1.2974038124084473,-1.973555564880371,-0.908592939376831,1.3204352855682373,-1.9898877143859863,-0.6884706616401672,1.9939228296279907,-1.7336914539337158,-0.6778917908668518,2.00984787940979,-1.7313570976257324,-0.4163726270198822,0.1469854861497879,1.0252083539962769,-0.4005015194416046,0.16287782788276672,1.0261512994766235,-0.3846827745437622,0.1469854861497879,1.0277472734451294,-0.4005538821220398,0.13109314441680908,1.0268044471740723,-0.28058645129203796,0.04305463284254074,0.5533886551856995,-0.2647153437137604,0.058946963399648666,0.5543314814567566,-0.2488965541124344,0.04305463656783104,0.555927574634552,-0.26476767659187317,0.027162285521626472,0.5549846291542053,-0.35342395305633545,0.10253889113664627,-0.43897753953933716,-0.33941465616226196,0.1181088462471962,-0.44714242219924927,-0.3252684772014618,0.10192685574293137,-0.4537286162376404,-0.33927780389785767,0.08635691553354263,-0.4455638527870178,-0.6724597811698914,0.054075807332992554,-0.7657960057258606,-0.6599318385124207,0.06975839287042618,-0.7759183049201965,-0.6506377458572388,0.0539453960955143,-0.7889149785041809,-0.6631657481193542,0.03826281055808067,-0.7787929177284241,-1.1681506633758545,0.27718400955200195,-1.2282376289367676,-1.1478936672210693,0.28660571575164795,-1.2307333946228027,-1.1456561088562012,0.276508629322052,-1.2506929636001587,-1.1659131050109863,0.26708686351776123,-1.248197078704834,-1.207216739654541,0.6268182396888733,-1.2717711925506592,-1.1851356029510498,0.6226382851600647,-1.271228313446045,-1.184389591217041,0.6236627697944641,-1.2936725616455078,-1.2064707279205322,0.6278427243232727,-1.2942156791687012,-1.006300687789917,1.0369925498962402,-1.1861135959625244,-0.9873959422111511,1.0240998268127441,-1.1861735582351685,-0.9869682192802429,1.025207281112671,-1.2085953950881958,-1.0053491592407227,1.0375949144363403,-1.2085989713668823,-0.7383669018745422,1.309479832649231,-1.2156656980514526,-0.71876460313797,1.2982622385025024,-1.2165539264678955,-0.725747287273407,1.2869243621826172,-1.2348341941833496,-0.7456313371658325,1.2984565496444702,-1.2336552143096924,-0.7508304119110107,1.4053059816360474,-1.3988428115844727,-0.7356262803077698,1.4048484563827515,-1.4153469800949097,-0.7367592453956604,1.3824284076690674,-1.4157230854034424,-0.7514758706092834,1.382003903388977,-1.399548888206482,-0.7971040606498718,1.4032299518585205,-1.3939871788024902,-0.7819598913192749,1.4342272281646729,-1.3951663970947266,-0.7510585188865662,1.380953073501587,-1.333087682723999,-0.7354834079742432,1.410107970237732,-1.3336611986160278,-0.7802917957305908,1.4380383491516113,-1.2939338684082031,-0.7961063385009766,1.4090418815612793,-1.2931265830993652,-0.8348187804222107,1.468796730041504,-1.343972086906433,-0.8497301936149597,1.4385850429534912,-1.3401503562927246,-0.8560372591018677,1.4193016290664673,-1.4128293991088867,-0.850470244884491,1.3953237533569336,-1.3904982805252075,-0.8883031010627747,1.4390403032302856,-1.3830657005310059,-0.8819341063499451,1.4159886837005615,-1.3609414100646973,-0.75640469789505,1.4221692085266113,-1.3507884740829468,-0.7712306976318359,1.4294182062149048,-1.3699136972427368,-0.7714611887931824,1.4302090406417847,-1.3369208574295044,-0.788370668888092,1.439605712890625,-1.3536720275878906,-0.7571219205856323,1.423255205154419,-1.350826621055603,-0.7710585594177246,1.4302252531051636,-1.3687876462936401,-0.7712691426277161,1.430906057357788,-1.337604284286499,-0.7878349423408508,1.4396904706954956,-1.353568434715271,-0.7417513728141785,1.4161471128463745,-1.3496334552764893,-0.7693002820014954,1.4299390316009521,-1.384095549583435,-0.7695978879928589,1.4317251443862915,-1.3248229026794434,-0.8018948435783386,1.4487097263336182,-1.3545680046081543,-0.7297230362892151,1.4378247261047363,-1.3501980304718018,-0.7571130990982056,1.4517812728881836,-1.3851571083068848,-0.7576397657394409,1.4538121223449707,-1.3249809741973877,-0.7904274463653564,1.470574975013733,-1.3551697731018066,-0.7578087449073792,1.3810701370239258,-1.4285050630569458,-0.7412955164909363,1.4111974239349365,-1.4310189485549927,-0.7163108587265015,1.361181378364563,-1.3637044429779053,-0.7003651261329651,1.3901731967926025,-1.3646160364151,-0.6540021300315857,1.3663438558578491,-1.405250072479248,-0.6696957945823669,1.3371073007583618,-1.4045089483261108,-0.6820644736289978,1.3822777271270752,-1.4786492586135864,-0.6959275603294373,1.3515119552612305,-1.4758617877960205,-0.7675817012786865,1.3691495656967163,-1.4908020496368408,-0.7615798711776733,1.3451645374298096,-1.4687435626983643,-0.7334131002426147,1.351211428642273,-1.5195969343185425,-0.7270657420158386,1.3282216787338257,-1.4975734949111938,-0.7092503309249878,1.39542555809021,-1.3923566341400146,-0.7221298813819885,1.4015899896621704,-1.413201093673706,-0.6939577460289001,1.3862485885620117,-1.4052420854568481,-0.7037788033485413,1.3916597366333008,-1.4282480478286743,-0.7168946862220764,1.402146577835083,-1.3492512702941895,-0.7330734729766846,1.3720959424972534,-1.3483606576919556,-0.76079922914505,1.4248862266540527,-1.4135359525680542,-0.7775863409042358,1.3947292566299438,-1.4127981662750244,-0.7089647650718689,1.3959919214248657,-1.3932204246520996,-0.720946192741394,1.401612401008606,-1.4129890203475952,-0.6943454146385193,1.3867456912994385,-1.405388355255127,-0.7037957906723022,1.3915082216262817,-1.4276469945907593,-0.7108398079872131,1.3986122608184814,-1.3768829107284546,-0.7338727116584778,1.409960389137268,-1.4152135848999023,-0.6828810572624207,1.3825287818908691,-1.4012643098831177,-0.7004525065422058,1.3913636207580566,-1.4441332817077637,-0.6991211175918579,1.42048978805542,-1.377179503440857,-0.7223175168037415,1.4320924282073975,-1.4158391952514648,-0.6705952882766724,1.4045006036758423,-1.4017261266708374,-0.6885093450546265,1.4128994941711426,-1.4450381994247437,-0.981864869594574,0.2064477801322937,-1.0919005870819092,-1.0001893043518066,0.19546081125736237,-1.0874981880187988,-1.0041911602020264,0.2069869190454483,-1.0692791938781738,-0.9858664870262146,0.21797384321689606,-1.073681354522705,-0.2677789628505707,0.1455497443675995,-0.031015878543257713,-0.2827191650867462,0.1298186033964157,-0.027404909953475,-0.2527965009212494,0.12951257824897766,-0.033510930836200714,-0.2677367031574249,0.11378144472837448,-0.02989996038377285],
"metadata": {
"vertices": 1591,
"generator": "io_three",
"normals": 1591,
"morphTargets": 4,
"bones": 79,
"materials": 3,
"faces": 3161,
"uvs": 2,
"version": 3,
"type": "Geometry"
},
"influencesPerVertex": 2,
"morphTargets": [{
"vertices": [-0.696625,2.088075,-1.551384,-0.757468,2.117968,-1.608206,-0.779644,2.181648,-1.550959,-0.718801,2.151755,-1.494137,-0.797601,2.043328,-1.531582,-0.827149,2.069559,-1.57161,-0.863346,2.088084,-1.532751,-0.833798,2.061853,-1.492723,-0.932284,1.865957,-1.596429,-0.940368,1.876716,-1.608533,-0.95005,1.88435,-1.595282,-0.941967,1.87359,-1.583177,-0.786429,2.128171,-1.555496,-0.811658,2.143389,-1.615359,-0.841581,2.196946,-1.589133,-0.816353,2.181728,-1.52927,-0.870888,2.027316,-1.548848,-0.894205,2.031068,-1.593719,-0.938379,2.038961,-1.570106,-0.915062,2.035208,-1.525234,-0.835044,1.839475,-1.568081,-0.846231,1.837999,-1.590001,-0.86724,1.831523,-1.578843,-0.856054,1.832999,-1.556923,-0.79895,2.17234,-1.618984,-0.76394,2.125059,-1.608768,-0.762004,2.139029,-1.550745,-0.797014,2.186311,-1.560961,-0.936433,2.038269,-1.624427,-0.874605,1.991604,-1.61206,-0.899989,1.977274,-1.539234,-0.961816,2.02394,-1.551601,-0.986836,1.884226,-1.732674,-0.939925,1.865325,-1.717315,-0.957685,1.861587,-1.667673,-1.004596,1.880487,-1.683032,-1.009063,1.761227,-1.669567,-0.989169,1.75818,-1.663907,-0.993203,1.766594,-1.645197,-1.013098,1.769642,-1.650858,-0.624873,2.106282,-1.592023,-0.674825,2.11064,-1.586106,-0.667518,2.144348,-1.549234,-0.617565,2.139991,-1.55515,-0.649193,2.044424,-1.536124,-0.660133,2.045969,-1.535233,-0.658641,2.050867,-1.525401,-0.6477,2.049322,-1.526292,-0.617848,2.092806,-1.680211,-0.638541,2.075837,-1.62058,-0.581587,2.095472,-1.595228,-0.560893,2.112441,-1.65486,-0.611759,2.052283,-1.690776,-0.629399,2.024388,-1.639693,-0.57126,2.013456,-1.625586,-0.55362,2.04135,-1.676669,-0.64258,1.896841,-1.797856,-0.651254,1.88098,-1.776056,-0.624298,1.875528,-1.769297,-0.615624,1.891389,-1.791098,-0.615432,1.792962,-1.849759,-0.618597,1.787253,-1.841777,-0.608967,1.787068,-1.838091,-0.605802,1.792776,-1.846074,-0.651113,2.121607,-1.710332,-0.616344,2.116228,-1.674346,-0.586947,2.149712,-1.697745,-0.621717,2.155091,-1.733731,-0.608422,2.059439,-1.723087,-0.595619,2.062586,-1.705399,-0.580646,2.072721,-1.71804,-0.59345,2.069574,-1.735728,-0.555905,1.99904,-1.730919,-0.550999,2.001338,-1.723189,-0.544967,2.006297,-1.728492,-0.549873,2.003999,-1.736222,-0.718592,2.125882,-1.699768,-0.631265,2.138652,-1.69139,-0.632502,2.193037,-1.761391,-0.719829,2.180268,-1.769768,-0.674751,2.054007,-1.683381,-0.60328,2.084996,-1.669017,-0.594112,2.099682,-1.746315,-0.665583,2.068692,-1.76068,-0.617674,1.934832,-1.744695,-0.549511,1.942968,-1.742581,-0.553048,1.986403,-1.795664,-0.621212,1.978267,-1.797779,-0.620179,1.868402,-1.864872,-0.58755,1.869674,-1.86499,-0.588734,1.898643,-1.880014,-0.621363,1.897371,-1.879896,-0.598103,1.850914,-1.945974,-0.58183,1.852628,-1.943464,-0.582686,1.86833,-1.948637,-0.598958,1.866616,-1.951147,-0.834756,1.941728,-1.580432,-0.853425,1.961232,-1.605982,-0.879911,1.968639,-1.580974,-0.861242,1.949135,-1.555424,-0.67126,2.137426,-1.590921,-0.867257,1.915038,-1.586277,-0.881283,1.933707,-1.607281,-0.898085,1.946954,-1.584287,-0.884058,1.928284,-1.563283,-0.716261,2.147756,-1.569946,-0.744907,2.221077,-1.619105,-0.722252,2.204739,-1.558512,-0.854674,1.948088,-1.557495,-0.872222,1.945771,-1.59188,-0.905178,1.935613,-1.574377,-0.88763,1.937929,-1.539992,-0.753384,2.191116,-1.634448,-0.840258,2.129159,-1.618827,-0.791724,2.087051,-1.609229,-0.796781,2.095848,-1.545059,-0.845314,2.137956,-1.554657,-0.641487,2.206762,-1.600754,-0.683545,2.222224,-1.650675,-0.660573,2.14041,-1.604981,-0.630916,2.200655,-1.611306,-0.626054,2.120727,-1.63788,-0.673536,2.115453,-1.618904,-0.675908,2.172462,-1.583854,-0.616943,2.157449,-1.595331,-0.62665,1.978338,-1.741549,-0.640231,1.953308,-1.707728,-0.599216,1.937504,-1.702955,-0.585635,1.962534,-1.736775,-0.671033,2.133084,-1.687084,-0.700418,2.099905,-1.689339,-0.627829,2.138892,-1.674312,-0.608015,2.133294,-1.755498,-0.680605,2.094307,-1.770525,-0.722625,2.152474,-1.635604,-0.745977,2.206829,-1.578736,-0.684951,2.188676,-1.542873,-0.673203,2.216202,-1.661498,-0.633734,2.123534,-1.684969,-0.63646,2.193356,-1.699188,-0.596321,2.164357,-1.662271,-0.702634,2.205875,-1.680352,-0.702861,2.14273,-1.662187,-0.707899,1.99315,-1.659658,-0.71562,1.998526,-1.67656,-0.708748,2.007426,-1.711963,-0.69582,2.009833,-1.725579,-0.670727,1.9939,-1.639546,-0.708693,2.025687,-1.690829,-0.672425,2.017519,-1.643783,-0.687395,2.039678,-1.671443,-0.690487,2.040766,-1.690246,-0.689604,2.035775,-1.708891,-0.654603,2.021423,-1.647366,-0.667232,2.046526,-1.695069,-0.644367,1.999946,-1.644739,-0.638366,2.038083,-1.684987,-0.655596,2.036026,-1.719524,-0.667536,2.025365,-1.730496,-0.6545,1.983076,-1.643142,-0.638164,1.99294,-1.648486,-0.620761,2.013074,-1.676698,-0.622513,2.019986,-1.69478,-0.66146,2.018505,-1.734073,-0.636716,1.983582,-1.651814,-0.623413,1.98618,-1.666399,-0.617688,1.995903,-1.704039,-0.626213,2.001566,-1.721372,-0.659933,2.009257,-1.736773,-0.640082,1.974271,-1.653629,-0.625232,1.968146,-1.689252,-0.635052,1.979221,-1.725111,-0.647916,1.989325,-1.7354,-0.647733,1.967734,-1.653662,-0.661659,1.977469,-1.734483,-0.679802,1.991692,-1.735889,-0.697196,1.965389,-1.711055,-0.694722,1.978585,-1.72411,-0.711982,1.981568,-1.702551,-0.67418,1.984675,-1.641483,-0.692813,1.988227,-1.647323,-0.715845,2.00351,-1.694922,-0.686208,2.005202,-1.643986,-0.69918,2.015353,-1.655093,-0.70737,2.022723,-1.671672,-0.703185,2.024091,-1.709073,-0.692801,2.018814,-1.724241,-0.663159,2.000555,-1.639416,-0.680838,2.031107,-1.655046,-0.68575,2.025439,-1.724747,-0.653474,2.002745,-1.641394,-0.657637,2.035439,-1.659743,-0.662013,2.044672,-1.67628,-0.672394,2.040324,-1.712849,-0.676482,2.027866,-1.727031,-0.63757,2.016605,-1.653283,-0.635713,2.029716,-1.667539,-0.645229,2.04064,-1.703465,-0.625972,2.003633,-1.660308,-0.630554,2.023754,-1.712414,-0.644337,2.023185,-1.726262,-0.616562,1.990499,-1.68481,-0.641425,2.006215,-1.732589,-0.629566,1.968857,-1.669931,-0.627334,1.971889,-1.708348,-0.663296,2.000274,-1.738313,-0.643853,1.956758,-1.669868,-0.643716,1.952462,-1.689019,-0.647245,1.955492,-1.707457,-0.653425,1.963936,-1.723708,-0.670597,1.993862,-1.738095,-0.657352,1.96532,-1.651675,-0.661731,1.952893,-1.666338,-0.66672,1.948091,-1.684036,-0.67161,1.950396,-1.702103,-0.675896,1.959093,-1.718533,-0.678778,1.973618,-1.73042,-0.666567,1.968003,-1.648312,-0.678693,1.957752,-1.660282,-0.688386,1.954334,-1.676459,-0.694982,1.956843,-1.694291,-0.672755,1.97515,-1.644561,-0.689978,1.970897,-1.65334,-0.703278,1.970803,-1.667549,-0.711154,1.974473,-1.684884,-0.705858,1.990868,-1.717713,-0.694123,2.000887,-1.728373,-0.647016,2.263027,-1.673467,-0.581651,2.166285,-1.732093,-0.576572,2.126584,-1.667033,-0.616646,2.184896,-1.601618,-0.648268,1.877955,-1.926288,-0.621659,1.824673,-1.880681,-0.633749,1.795307,-1.839174,-0.599646,1.941972,-1.914907,-0.577001,2.018799,-1.898853,-0.671697,2.09734,-1.939438,-0.59131,1.87714,-1.850324,-0.555927,1.958927,-1.822827,-0.681255,2.20678,-1.875825,-0.58752,2.126512,-1.868992,-0.586779,2.177795,-1.809679,-0.670768,2.288054,-1.798271,-0.549637,2.046522,-1.786924,-0.563198,2.005063,-1.734727,-0.598108,1.85664,-1.820263,-0.560555,1.926554,-1.765609,-0.705383,1.993338,-1.938985,-0.722702,1.920264,-1.94153,-0.685238,1.136387,-2.174545,-0.672012,1.295081,-1.598652,-0.699548,1.277942,-1.608605,-0.727558,1.28484,-1.60938,-0.737333,1.310449,-1.602691,-0.726679,1.334259,-1.59186,-0.706165,1.34723,-1.584766,-0.681715,1.344598,-1.583089,-0.664434,1.325302,-1.587372,-0.677282,1.638318,-2.158773,-0.689217,1.724386,-1.878472,-0.617472,1.777943,-2.027498,-0.69897,1.597176,-2.196668,-0.677532,1.530081,-2.00324,-0.669954,1.546498,-2.114978,-0.668115,1.758434,-2.117115,-0.710298,1.749046,-1.860224,-0.761271,1.690016,-1.868369,-0.631115,1.754519,-1.93799,-0.533365,1.541533,-1.981586,-0.578904,1.510006,-2.031399,-0.561967,1.562652,-2.070381,-0.50935,1.600306,-2.0096,-0.640711,1.531547,-2.046373,-0.638259,1.55935,-2.08299,-0.593881,1.615096,-1.904248,-0.543664,1.585085,-1.925977,-0.534444,1.64755,-1.942546,-0.591178,1.636609,-1.902733,-0.678855,1.594306,-1.957689,-0.648337,1.610876,-1.911782,-0.646474,1.600391,-1.897025,-0.69045,1.581184,-1.967911,-0.672822,1.562493,-2.010327,-0.668838,1.568207,-2.034671,-0.584374,1.460047,-1.935958,-0.623393,1.443286,-1.961708,-0.674852,1.45518,-1.955555,-0.61287,1.517838,-1.864091,-0.578875,1.48914,-1.894392,-0.696634,1.521953,-1.888086,-0.659348,1.531736,-1.862542,-0.700296,1.491051,-1.92153,-0.704971,1.332301,-1.798048,-0.719617,1.363926,-1.794955,-0.669594,1.36977,-1.882923,-0.630286,1.370574,-1.881296,-0.668595,1.324741,-1.804065,-0.616303,1.379421,-1.853213,-0.713848,1.309485,-1.706608,-0.728411,1.340898,-1.698058,-0.713083,1.377094,-1.694535,-0.644185,1.32246,-1.70872,-0.679501,1.301146,-1.709058,-0.651173,1.384674,-1.68197,-0.632581,1.358253,-1.691301,-0.680937,1.39262,-1.682363,-0.680735,1.38234,-2.054856,-0.707767,1.417097,-2.21665,-0.662484,1.400147,-2.144636,-0.632317,1.30859,-2.075814,-0.70692,1.593459,-1.927907,-0.734482,1.329252,-1.976574,-0.755586,1.116329,-2.181982,-0.611657,1.228655,-2.151625,-0.767667,1.424098,-2.230862,-0.73915,1.711667,-2.176343,-0.777563,1.648229,-2.210597,-0.746295,1.377961,-1.979889,-0.734917,1.510588,-1.942187,-0.731255,1.601985,-1.90709,-0.717514,1.67558,-1.880543,-0.678465,1.621083,-1.879778,-0.639455,1.655234,-1.883791,-0.57921,1.696508,-1.942869,-0.568019,1.723627,-2.030353,-0.591581,1.669836,-2.115487,-0.623382,1.355959,-1.820557,-0.662657,1.334623,-1.840842,-0.68814,1.340908,-1.845024,-0.706087,1.358083,-1.842117,-0.70544,1.41056,-1.811991,-0.665477,1.437554,-1.788531,-0.629631,1.429032,-1.785299,-0.608054,1.397406,-1.796998,-0.66655,1.84951,-1.959366,-0.640112,1.788486,-1.908127,-0.774687,1.591059,-1.882283,-0.782513,1.532442,-1.913537,-0.701702,1.549506,-1.95775,-0.735686,1.537508,-1.933461,-0.685757,1.908081,-1.617098,-0.68596,1.891608,-1.620626,-0.699427,1.891663,-1.601076,-0.68892,1.896293,-1.582371,-0.695067,1.910339,-1.590168,-0.678244,1.892823,-1.600371,-0.682836,1.906907,-1.606965,-0.700557,1.919634,-1.615156,-0.685728,2.247302,-1.733227,-0.639832,2.192039,-1.788319,-0.61637,2.158816,-1.722969,-0.64179,2.191078,-1.64802,-0.76275,1.908989,-1.911035,-0.709777,1.851844,-1.875317,-0.69769,1.886403,-1.852033,-0.731424,1.817087,-1.830453,-0.709969,1.847329,-1.802263,-0.678077,1.921899,-1.84252,-0.667421,1.862116,-1.803628,-0.650598,1.96813,-1.848464,-0.654011,2.034188,-1.857081,-0.641076,1.977049,-1.854383,-0.63683,1.970867,-1.82275,-0.642469,2.022093,-1.824115,-0.64436,2.038872,-1.862075,-0.644323,2.093819,-1.83883,-0.623606,2.070576,-1.782666,-0.656395,2.024359,-1.628629,-0.686714,1.99349,-1.622041,-0.679482,2.019032,-1.592696,-0.634935,2.041036,-1.617478,-0.748316,1.807395,-1.782509,-0.682443,1.79749,-1.715768,-0.673151,1.819708,-1.754887,-0.639113,1.872476,-1.722851,-0.633016,1.939424,-1.793026,-0.612772,1.95337,-1.720708,-0.625875,1.926738,-1.683793,-0.629574,1.950185,-1.685303,-0.609488,1.9747,-1.701762,-0.612622,2.101988,-1.684631,-0.618633,2.068343,-1.735471,-0.624905,2.133199,-1.616468,-0.618915,1.953861,-1.745628,-0.624568,1.904803,-1.690188,-0.602399,2.043578,-1.660338,-0.603059,2.026277,-1.693706,-0.610346,2.005654,-1.69685,-0.621636,2.029015,-1.660084,-0.607658,1.995327,-1.720434,-0.610015,1.984526,-1.705138,-0.621025,2.021225,-1.755733,-0.65878,1.922485,-1.646245,-0.70159,1.940056,-1.620221,-0.688713,1.961873,-1.623924,-0.666582,1.937974,-1.65031,-0.703066,1.974941,-1.614418,-0.694347,1.973983,-1.627666,-0.658726,1.90973,-1.634454,-0.626676,2.006904,-1.793102,-0.665683,1.840485,-1.698583,-0.650309,1.869703,-1.672745,-0.674573,1.818041,-1.688385,-0.678775,1.853954,-1.653831,-0.682827,1.848825,-1.638769,-0.674973,1.856743,-1.650044,-0.661466,1.889099,-1.644733,-0.678907,1.854963,-1.632004,-0.693585,1.848997,-1.615075,-0.724602,1.777043,-1.707546,-0.703754,1.770114,-1.681917,-0.696433,1.790315,-1.655506,-0.699551,1.838717,-1.621619,-0.700956,1.842005,-1.629383,-0.686959,1.849593,-1.644098,-0.679876,1.856814,-1.655649,-0.685152,1.852381,-1.640019,-0.664472,1.898053,-1.638579,-0.632842,2.065893,-1.811439,-0.63201,2.082932,-1.849266,-0.697284,1.847816,-1.623071,-0.680276,1.855174,-1.656597,-0.68706,1.869264,-1.613347,-0.670091,1.871128,-1.634283,-0.66458,1.863835,-1.658831,-0.670433,1.853892,-1.667552,-0.677588,1.835749,-1.654521,-0.69863,1.818935,-1.635469,-0.701683,1.886187,-1.602524,-0.670135,2.066471,-1.57953,-0.704738,1.813405,-1.773436,-0.718578,1.789308,-1.732747,-0.655718,2.014859,-1.632217,-0.622224,2.014188,-1.661793,-0.630441,1.954973,-1.679682,-0.665443,1.94245,-1.648907,-0.698667,1.975662,-1.634247,-0.660316,2.011125,-1.639581,-0.626814,2.010672,-1.669022,-0.614232,1.986792,-1.711722,-0.634367,1.959352,-1.685908,-0.669511,1.945996,-1.65501,-0.713296,1.981718,-1.652854,-0.696359,2.022872,-1.678889,-0.662837,2.022992,-1.70845,-0.628949,1.993722,-1.730402,-0.658282,1.985948,-1.709221,-0.684491,1.979736,-1.685426,-0.683888,1.994769,-1.687235,-0.657509,2.000995,-1.712438,-0.69299,1.841886,-1.659599,-0.703511,1.832661,-1.64185,-0.695603,1.867641,-1.649442,-0.687737,1.87389,-1.675307,-0.702746,1.863117,-1.629721,-0.686685,1.847118,-1.684763,-0.720699,1.85289,-1.714483,-0.737993,1.852038,-1.71604,-0.722072,1.896841,-1.703157,-0.704481,1.886599,-1.701423,-0.738512,1.901993,-1.702434,-0.702626,1.852214,-1.710181,-0.689813,1.857941,-1.610093,-0.67383,1.857755,-1.631192,-0.672853,1.859946,-1.651856,-0.677542,1.856972,-1.661855,-0.681188,1.843847,-1.650376,-0.695297,1.830369,-1.624458,-0.489734,0.842827,-1.330187,-0.444734,0.845328,-1.33531,-0.442337,0.878951,-1.385021,-0.490545,0.864235,-1.385374,-0.496881,0.817919,-1.266971,-0.508851,0.742361,-1.314622,-0.442985,0.725413,-1.221926,-0.491164,0.740481,-1.213961,-0.525703,0.761857,-1.187979,-0.502581,0.80119,-1.18622,-0.445106,0.771052,-1.1854,-0.468866,0.787988,-1.186017,-0.503073,0.804982,-1.219774,-0.508921,0.770362,-1.146409,-0.468999,0.753204,-1.148567,-0.479297,0.754708,-1.182857,-0.494479,0.802381,-1.153456,-0.455283,0.744972,-1.186293,-0.446352,0.755183,-1.153649,-0.43776,0.775304,-1.152349,-0.447141,0.752527,-1.128325,-0.444282,0.7678,-1.12859,-0.446878,0.753342,-1.162658,-0.426101,0.744312,-1.167024,-0.444155,0.74794,-1.138006,-0.425873,0.740853,-1.142077,-0.429711,0.735872,-1.196857,-0.41391,0.726961,-1.201596,-0.401007,0.709441,-1.236864,-0.474866,0.726541,-1.324476,-0.434885,0.709844,-1.334928,-0.459186,0.704787,-1.397928,-0.423871,0.807228,-1.342857,-0.426933,0.838667,-1.39939,-0.503941,0.723745,-1.380957,-0.516039,0.718347,-1.416416,-0.46613,0.699352,-1.431552,-0.414255,0.773066,-1.276333,-0.446618,0.804062,-1.272323,-0.444721,0.783636,-1.229269,-0.408327,0.754859,-1.239767,-0.544267,0.7409,-1.372791,-0.563841,0.735124,-1.410147,-0.571953,0.731539,-1.445827,-0.520329,0.857952,-1.409712,-0.52015,0.83126,-1.473684,-0.494164,0.822604,-1.493614,-0.463546,0.810754,-1.483823,-0.524031,0.752991,-1.511882,-0.551412,0.763932,-1.494975,-0.492561,0.743075,-1.509435,-0.421475,0.804062,-1.444992,-0.478025,0.697841,-1.46425,-0.525843,0.713635,-1.44861,-0.533954,0.711622,-1.493768,-0.506785,0.703672,-1.491674,-0.557082,0.722575,-1.477577,-0.423626,0.75916,-1.197336,-0.406624,0.747314,-1.200989,-0.406106,0.750528,-1.189442,-0.413462,0.732905,-1.192984,-0.412153,0.731072,-1.173311,-0.400102,0.720023,-1.175387,-0.391416,0.738179,-1.191639,-0.397076,0.721814,-1.193484,-0.396528,0.730349,-1.174797,-0.405082,0.741855,-1.174553,-0.398245,0.717533,-1.211826,-0.396779,0.736874,-1.210662,-0.419041,0.763376,-1.17395,-0.427555,0.741304,-1.178857,-0.42688,0.736997,-1.156983,-0.419174,0.751918,-1.153187,-0.405203,0.744239,-1.155424,-0.410836,0.73196,-1.159315,-0.40917,0.733556,-1.179317,-0.398563,0.752633,-1.17546,-0.415075,0.764305,-1.165024,-0.439183,0.775091,-1.159396,-0.465578,0.783363,-1.150481,-0.471366,0.763607,-1.151921,-0.465577,0.759001,-1.127886,-0.459676,0.773057,-1.128148,-0.460443,0.789175,-1.155633,-0.46755,0.760342,-1.119648,-0.488321,0.769486,-1.113081,-0.482043,0.785899,-1.117077,-0.46217,0.777024,-1.122833,-0.435776,0.763312,-1.136379,-0.419854,0.755903,-1.140149,-0.448657,0.915432,-1.520432,-0.465809,0.935169,-1.501984,-0.490121,0.935344,-1.491361,-0.522843,0.912314,-1.49052,-0.533934,0.876566,-1.518062,-0.514285,0.860115,-1.54256,-0.483043,0.863361,-1.548714,-0.456607,0.885611,-1.536481,-0.531277,0.755327,-1.218775,-0.495951,0.739736,-1.256892,-0.453079,0.724571,-1.261131,-0.4111,0.709397,-1.270585,-0.397421,0.739002,-1.241483,-0.408519,0.743395,-1.278249,-0.430422,0.750716,-1.341513,-0.446751,0.748388,-1.398382,-0.455505,0.74527,-1.44196,-0.473941,0.737629,-1.484245,-0.556487,0.774542,-1.456523,-0.542975,0.775566,-1.417537,-0.531248,0.782903,-1.375062,-0.525523,0.772575,-1.315179,-0.530838,0.757521,-1.256206,-0.497096,0.782786,-1.503002,-0.509738,0.789741,-1.509238,-0.52214,0.791508,-1.500536,-0.682447,1.299648,-1.597002,-0.705313,1.28808,-1.605004,-0.724374,1.292153,-1.605183,-0.728337,1.310683,-1.601796,-0.718556,1.326199,-1.594344,-0.706913,1.336724,-1.587552,-0.689577,1.332849,-1.586357,-0.67406,1.323729,-1.587185,-0.699799,1.685236,-1.882904,-0.740363,1.872692,-2.003822,-0.6932,1.79564,-1.95131,-0.476766,1.021976,-1.593414,-0.509508,1.023811,-1.583987,-0.458472,1.00518,-1.620476,-0.553604,1.008042,-1.598268,-0.569267,0.965017,-1.632161,-0.541301,0.938208,-1.666585,-0.493666,0.947372,-1.676455,-0.462395,0.980871,-1.657211,-0.468177,1.026694,-1.70223,-0.493409,0.987797,-1.712509,-0.754032,1.878068,-1.9554,-0.717478,1.818891,-1.928206,-0.727004,1.734515,-1.890277,-0.724119,1.27833,-1.579389,-0.730551,1.298284,-1.565552,-0.721343,1.31863,-1.561488,-0.683847,1.288627,-1.562158,-0.697709,1.272054,-1.567796,-0.694155,1.323308,-1.562242,-0.675825,1.311709,-1.55802,-0.710824,1.33121,-1.555923,-0.711666,1.300231,-1.462014,-0.67928,1.317414,-1.460791,-0.696649,1.286361,-1.459599,-0.664886,1.299899,-1.466747,-0.739369,1.275067,-1.539236,-0.72899,1.284497,-1.472167,-0.71724,1.259915,-1.537654,-0.72165,1.274124,-1.462334,-0.744034,1.27108,-1.47709,-0.735002,1.286192,-1.465457,-0.737567,1.264347,-1.464318,-0.732727,1.279391,-1.454539,-0.7574,1.281478,-1.470493,-0.751758,1.300244,-1.465659,-0.764097,1.283651,-1.455653,-0.760839,1.300449,-1.451787,-0.769014,1.292844,-1.476418,-0.760637,1.309135,-1.476321,-0.778285,1.30218,-1.46541,-0.772471,1.315208,-1.465789,-0.777274,1.305301,-1.487989,-0.769857,1.317407,-1.488241,-0.784997,1.311299,-1.479057,-0.77873,1.322924,-1.479589,-0.731887,1.286869,-1.461422,-0.719681,1.305519,-1.455843,-0.724587,1.279531,-1.448388,-0.713125,1.294326,-1.441057,-0.746538,1.299843,-1.455572,-0.736527,1.316748,-1.44853,-0.7514,1.299115,-1.438147,-0.743661,1.313266,-1.432082,-0.762975,1.316133,-1.460212,-0.752887,1.332452,-1.452799,-0.771848,1.31845,-1.443565,-0.765446,1.332489,-1.440039,-0.768571,1.329546,-1.469362,-0.763437,1.341715,-1.463529,-0.778971,1.333541,-1.463281,-0.773271,1.34442,-1.459457,-0.675999,1.334448,-1.551411,-0.67103,1.334686,-1.464206,-0.653091,1.329967,-1.484317,-0.692917,1.367727,-1.504448,-0.687503,1.380388,-1.533138,-0.659001,1.352688,-1.494591,-0.668885,1.375538,-1.528396,-0.682387,1.400264,-1.460919,-0.677447,1.41529,-1.469314,-0.670154,1.395516,-1.45953,-0.665124,1.410056,-1.468137,-0.678259,1.318223,-1.455193,-0.664392,1.330895,-1.459845,-0.66875,1.306211,-1.449943,-0.654052,1.318412,-1.456481,-0.687147,1.323061,-1.431392,-0.673445,1.338669,-1.43137,-0.677769,1.315642,-1.4205,-0.668748,1.329138,-1.422031,-0.702548,1.329122,-1.413909,-0.692516,1.3424,-1.412797,-0.697478,1.324591,-1.401964,-0.688627,1.334592,-1.402854,-0.720451,1.342381,-1.399064,-0.711952,1.351259,-1.397828,-0.716478,1.336648,-1.389545,-0.708717,1.345122,-1.38924,-0.70091,1.296641,-1.450741,-0.681652,1.311234,-1.449043,-0.689203,1.283103,-1.444284,-0.671943,1.29796,-1.443548,-0.711995,1.306178,-1.431615,-0.695307,1.318989,-1.42593,-0.70927,1.295339,-1.414631,-0.694448,1.305747,-1.41024,-0.728449,1.31593,-1.423159,-0.71942,1.332481,-1.417937,-0.728504,1.309405,-1.403413,-0.720089,1.324084,-1.400474,-0.746696,1.328318,-1.41624,-0.739195,1.339752,-1.411334,-0.748378,1.322496,-1.403523,-0.740673,1.332932,-1.399617,-0.743935,1.273867,-1.486912,-0.731015,1.261928,-1.478117,-0.726321,1.293057,-1.54125,-0.715926,1.318297,-1.538908,-0.701115,1.346573,-1.549986,-0.702526,1.343495,-1.513055,-0.707334,1.331832,-1.531053,-0.704004,1.311977,-1.519015,-0.6984,1.296738,-1.469714,-0.682465,1.318868,-1.47702,-0.726948,1.289297,-1.512872,-0.722658,1.287041,-1.482302,-0.678876,1.334765,-1.482198,-0.694772,1.36199,-1.507715,-0.666353,1.397333,-1.50042,-0.671853,1.383732,-1.486091,-0.687209,1.387137,-1.487155,-0.683012,1.402475,-1.502646,-0.540927,0.985033,-1.703535,-0.567313,1.006059,-1.684498,-0.561882,1.055057,-1.659829,-0.469533,1.059347,-1.677729,-0.522741,1.079705,-1.646824,-0.490147,1.078111,-1.656193,-0.438896,1.11782,-1.667654,-0.418155,1.049933,-1.703894,-0.458271,0.964847,-1.719378,-0.534328,0.921235,-1.714907,-0.557513,1.177383,-1.638124,-0.492361,1.199058,-1.804767,-0.554066,1.261458,-1.928448,-0.618149,1.296883,-2.034037,-0.470375,1.118161,-1.840364,-0.532617,1.171136,-1.970615,-0.598412,1.21272,-2.078304,-0.509784,1.022406,-1.845886,-0.583466,1.08209,-1.976534,-0.648162,1.120487,-2.088839,-0.584852,0.973188,-1.837331,-0.658819,1.02124,-1.984779,-0.723387,1.074759,-2.103549,-0.476744,1.14961,-1.632638,-0.548956,1.226782,-1.781137,-0.646063,1.288559,-1.895621,-0.693354,1.318651,-1.986977,-0.470201,0.979594,-1.716287,-0.442121,1.037807,-1.702023,-0.44924,1.098446,-1.668155,-0.535261,0.954252,-1.716564,-0.586223,0.978086,-1.690846,-0.567197,1.132998,-1.643555,-0.604852,1.060418,-1.66892,-0.489478,1.121826,-1.631803,-0.63234,0.968354,-1.701922,-0.781838,1.511033,-1.926485,-0.651941,0.917493,-1.705997,-0.821794,1.070898,-2.167585,-0.803556,0.990845,-2.056323,-0.724738,0.949178,-1.848003,-0.690068,1.145324,-2.162484,-0.641847,1.308898,-2.079841,-0.721137,1.330985,-2.008739,-0.752393,1.124995,-2.16536,-0.624147,1.230328,-2.143638,-0.861753,1.116013,-2.223445,-0.828645,1.657676,-2.198514,-0.803953,1.736627,-2.162989,-0.772193,1.809805,-2.101833,-0.748454,1.850951,-2.023395,-0.741636,1.890518,-1.963847,-0.8403,1.441612,-2.234045,-0.853201,1.123396,-2.204966,-0.573075,1.05211,-1.656359,-0.532912,1.107808,-1.639103,-0.793248,1.323017,-1.95931,-0.798163,1.377059,-1.960646,-0.617939,1.235016,-1.771736,-0.711032,1.280482,-1.888457,-0.771414,1.299824,-1.955746,-0.78808,1.322028,-1.979475,-0.759052,1.989622,-1.645345,-0.784882,1.998475,-1.670518,-0.803221,2.0012,-1.674326,-0.774748,1.986722,-1.589484,-0.772695,2.01668,-1.653622,-0.787637,2.015269,-1.665393,-0.780766,1.993587,-1.585223,-0.775363,2.010143,-1.594466,-0.77885,2.031623,-1.626114,-0.798656,2.027454,-1.657862,-0.79198,2.014567,-1.587328,-0.796378,2.028313,-1.599478,-0.80891,2.038534,-1.6339,-0.815058,2.032528,-1.651435,-0.819701,2.019787,-1.664957,-0.799235,1.993546,-1.578843,-0.809403,2.010292,-1.582339,-0.818861,2.023339,-1.593237,-0.83235,2.028589,-1.64712,-0.828969,2.017528,-1.662609,-0.790313,1.976446,-1.582914,-0.823147,1.997691,-1.581146,-0.836616,2.007136,-1.591767,-0.845391,2.013815,-1.607671,-0.83603,2.010848,-1.661883,-0.809843,1.977455,-1.579862,-0.845077,1.984751,-1.595443,-0.838933,2.001665,-1.662981,-0.826303,1.962956,-1.590211,-0.840887,1.962274,-1.603476,-0.853049,1.972769,-1.638577,-0.848247,1.982272,-1.654536,-0.802139,1.96137,-1.587275,-0.814761,1.950502,-1.598015,-0.837463,1.957011,-1.647541,-0.804227,1.941104,-1.622394,-0.810463,1.943137,-1.639966,-0.820428,1.965685,-1.667689,-0.822447,1.983564,-1.673161,-0.822169,2.002427,-1.672174,-0.783628,1.961079,-1.593653,-0.780683,1.950462,-1.610084,-0.803706,1.97013,-1.671745,-0.764409,1.962604,-1.630335,-0.777186,1.972697,-1.66407,-0.790751,1.982048,-1.673168,-0.77319,1.97742,-1.592813,-0.761172,1.980317,-1.608274,-0.75576,1.984639,-1.62704,-0.769352,1.994444,-1.660559,-0.764372,1.997436,-1.602188,-0.759959,2.007043,-1.618873,-0.76272,2.013988,-1.637219,-0.804835,2.010258,-1.671738,-0.774765,2.023341,-1.608773,-0.787442,2.032693,-1.64335,-0.810841,2.017094,-1.66831,-0.789805,1.996063,-1.581371,-0.802252,2.03718,-1.615652,-0.826568,2.031421,-1.609172,-0.831521,2.033541,-1.628182,-0.806587,1.986745,-1.578197,-0.848796,2.017168,-1.626712,-0.845472,2.016086,-1.645858,-0.829032,1.98036,-1.584234,-0.855018,1.989965,-1.61189,-0.857784,1.995235,-1.631018,-0.851694,1.99924,-1.648935,-0.808281,1.968096,-1.583042,-0.849972,1.965819,-1.620333,-0.837192,1.992606,-1.665934,-0.825862,1.946137,-1.613445,-0.833392,1.948953,-1.630561,-0.836679,1.970059,-1.661341,-0.831198,1.985996,-1.669763,-0.793156,1.958685,-1.59108,-0.798148,1.946128,-1.605237,-0.816205,1.951489,-1.656015,-0.78199,1.946692,-1.62872,-0.786742,1.948824,-1.647079,-0.794402,1.957069,-1.662206,-0.813345,1.985909,-1.675224,-0.776283,1.967999,-1.594289,-0.767231,1.963188,-1.611166,-0.767836,1.965822,-1.649034,-0.806316,1.992323,-1.675419,-0.813228,1.956728,-1.934477,-0.804796,2.255406,-1.849444,-0.818436,2.149472,-1.912282,-0.78029,2.31247,-1.760482,-0.723569,2.267011,-1.619585,-0.699696,2.204935,-1.567069,-0.814853,2.033863,-1.926105,-0.814871,2.259246,-1.599768,-0.888353,2.17031,-1.601771,-0.848183,2.129981,-1.552526,-0.779884,2.186867,-1.53383,-0.954796,1.916316,-1.826161,-0.957517,1.867167,-1.768414,-0.926091,1.831567,-1.739982,-0.992168,1.981076,-1.776562,-1.002378,2.053168,-1.744242,-0.949548,2.1186,-1.837706,-0.963279,1.916247,-1.719887,-0.972858,1.991751,-1.668969,-0.912073,2.215602,-1.782969,-0.976443,2.146872,-1.718192,-0.937823,2.185387,-1.662336,-0.869565,2.281976,-1.698563,-0.951815,2.067613,-1.630816,-0.907152,2.022796,-1.601309,-0.940181,1.89225,-1.699481,-0.932762,1.953471,-1.62588,-0.911927,2.015092,-1.867855,-0.893656,1.941719,-1.886701,-0.878356,1.743201,-2.141479,-0.886371,1.661199,-2.181692,-0.836074,1.871871,-2.010492,-0.860251,1.824916,-2.078131,-0.851017,1.375273,-1.945413,-0.880541,1.451188,-2.229515,-1.115254,1.163552,-2.087409,-0.81912,1.918473,-1.957159,-0.809946,1.692965,-1.854726,-0.823348,1.532213,-1.899869,-0.815796,1.589724,-1.867924,-0.969182,1.456224,-1.397305,-0.984841,1.426198,-1.397954,-0.97992,1.40199,-1.413137,-0.959812,1.400027,-1.433071,-0.939596,1.41748,-1.443723,-0.928406,1.439259,-1.443376,-0.930155,1.461047,-1.432364,-0.944812,1.471551,-1.413377,-1.074524,1.655823,-2.016636,-0.915349,1.752674,-1.802474,-1.042389,1.836707,-1.901693,-1.07012,1.5923,-2.090503,-1.0096,1.527245,-1.932565,-1.065162,1.540897,-2.007175,-1.047009,1.790519,-2.007119,-0.883584,1.768124,-1.804294,-0.85894,1.69374,-1.837434,-0.98592,1.807887,-1.822975,-1.16518,1.664529,-1.784183,-1.142294,1.602325,-1.814859,-1.148495,1.642548,-1.869392,-1.165092,1.716828,-1.826681,-1.085031,1.587552,-1.830467,-1.08848,1.602576,-1.879373,-1.067037,1.720884,-1.727783,-1.132524,1.714516,-1.743803,-1.109575,1.762347,-1.776147,-1.029628,1.71941,-1.745751,-1.005112,1.643423,-1.774864,-1.014819,1.686699,-1.735973,-0.993843,1.660344,-1.754891,-0.996692,1.601108,-1.843749,-1.037362,1.607343,-1.811465,-1.050552,1.603912,-1.865226,-1.153836,1.59003,-1.710034,-1.127631,1.550236,-1.72404,-1.07784,1.539819,-1.716117,-1.09941,1.650902,-1.657867,-1.143902,1.630982,-1.681247,-1.024076,1.609475,-1.671879,-1.050798,1.644369,-1.653991,-1.039073,1.569672,-1.693566,-1.118877,1.463969,-1.538483,-1.097205,1.459412,-1.567593,-1.135006,1.492746,-1.623928,-1.16216,1.517691,-1.62124,-1.130595,1.496908,-1.522534,-1.165496,1.546013,-1.594717,-1.05173,1.436787,-1.476744,-1.027513,1.431987,-1.502483,-1.006588,1.457432,-1.524214,-1.050241,1.506521,-1.464067,-1.059796,1.466656,-1.45948,-0.994946,1.516132,-1.502605,-1.017453,1.526412,-1.479833,-0.989737,1.490829,-1.519392,-1.045837,1.390916,-2.017059,-1.069455,1.425021,-2.172629,-1.090138,1.411275,-2.091035,-1.043731,1.329119,-2.035398,-0.953023,1.594933,-1.84859,-0.907188,1.114058,-2.222112,-0.951352,1.331217,-1.981478,-1.067461,1.125398,-2.142106,-1.111391,1.270185,-2.043962,-1.010567,1.427465,-2.206984,-1.018999,1.713992,-2.089333,-0.995441,1.641791,-2.149259,-0.963256,1.381101,-1.963406,-0.848765,1.321374,-1.952475,-0.931105,1.50862,-1.906867,-0.911143,1.597971,-1.855848,-0.906927,1.690624,-1.81808,-0.9519,1.658555,-1.778557,-0.971211,1.71327,-1.76581,-1.040006,1.777982,-1.79339,-1.091728,1.801908,-1.876289,-1.112407,1.721418,-1.955715,-1.133736,1.552776,-1.538875,-1.162115,1.502058,-1.554658,-1.154459,1.479015,-1.572098,-1.134863,1.467849,-1.589936,-1.082681,1.491535,-1.606816,-1.054612,1.537399,-1.60002,-1.06053,1.568608,-1.578556,-1.090584,1.579583,-1.552516,-0.956166,1.888529,-1.870206,-0.958733,1.833171,-1.804895,-0.803058,1.741134,-1.848454,-0.860037,1.589283,-1.861483,-0.867905,1.529194,-1.896664,-0.967201,1.544019,-1.892273,-0.922646,1.533291,-1.894395,-0.700595,1.917395,-1.57553,-0.697646,1.901499,-1.56908,-0.707954,1.88883,-1.593442,-0.708133,1.929253,-1.593453,-0.711994,1.954024,-1.603164,-0.704843,2.01532,-1.586589,-0.711714,1.845825,-1.603079,-0.709582,1.981949,-1.598429,-0.696587,2.131077,-1.562884,-0.719473,1.836886,-1.619904,-0.736319,1.763915,-1.665363,-0.725331,1.783918,-1.638355,-0.752022,1.772898,-1.700982,-0.847112,1.925259,-1.927503,-0.752121,2.256571,-1.685816,-0.711144,2.18769,-1.594152,-0.715642,1.843749,-1.61217,-0.716369,1.834534,-1.612876,-0.710028,1.870209,-1.598606,-0.719853,1.812269,-1.623187,-0.710342,1.884979,-1.59904,-0.697212,2.064127,-1.567029,-0.778035,1.788685,-1.763617,-0.724445,1.826346,-1.631958,-0.719361,1.861588,-1.61914,-0.760886,1.850491,-1.712561,-0.75458,1.906465,-1.697936,-0.7167,1.824879,-1.614549,-0.709367,1.855237,-1.597367,-0.794566,1.770909,-1.807892,-0.851873,1.889224,-1.980346,-0.845343,1.900899,-1.946776,-0.812652,1.740983,-1.867471,-0.740777,1.90699,-1.593769,-0.742937,1.89047,-1.596528,-0.719507,1.891259,-1.592584,-0.71317,1.895823,-1.572092,-0.714796,1.909939,-1.581794,-0.733498,1.891742,-1.576964,-0.73546,1.905875,-1.584651,-0.728873,1.919062,-1.6031,-0.83179,2.244742,-1.669857,-0.901716,2.187451,-1.674699,-0.869044,2.154389,-1.613344,-0.797923,2.188342,-1.58028,-0.896866,1.90578,-1.869558,-0.911807,1.850765,-1.809716,-0.904719,1.88423,-1.772526,-0.857945,1.819643,-1.782719,-0.856158,1.847299,-1.743981,-0.911284,1.917181,-1.746089,-0.887444,1.859514,-1.71239,-0.934453,1.962935,-1.728356,-0.93812,2.02944,-1.734589,-0.945163,1.971675,-1.725229,-0.924321,1.965934,-1.699959,-0.921123,2.01729,-1.703346,-0.948181,2.033694,-1.730639,-0.93263,2.088767,-1.713745,-0.905085,2.065645,-1.660543,-0.768879,2.022389,-1.579827,-0.742464,1.992525,-1.597857,-0.726726,2.018204,-1.572199,-0.775881,2.038567,-1.556327,-0.813556,1.807309,-1.757516,-0.811652,1.79516,-1.661861,-0.847111,1.817166,-1.68254,-0.848253,1.868587,-1.634297,-0.90466,1.934739,-1.677227,-0.865075,1.949102,-1.612052,-0.829681,1.92311,-1.596649,-0.828467,1.946685,-1.599998,-0.853603,1.970604,-1.5963,-0.841938,2.097969,-1.585141,-0.873959,2.063869,-1.624695,-0.784709,2.130399,-1.547135,-0.879031,1.949494,-1.633643,-0.834951,1.901017,-1.600499,-0.829461,2.0396,-1.561825,-0.852861,2.0219,-1.585327,-0.849572,2.001462,-1.59306,-0.815712,2.025615,-1.575883,-0.868349,1.990808,-1.607359,-0.855572,1.980452,-1.598831,-0.88573,2.016587,-1.640888,-0.780825,1.92017,-1.594416,-0.731713,1.939486,-1.607328,-0.743315,1.960894,-1.600464,-0.778868,1.935862,-1.602605,-0.725936,1.974552,-1.604538,-0.741664,1.973166,-1.607239,-0.772188,1.907547,-1.586361,-0.908731,2.001962,-1.67073,-0.811848,1.837665,-1.637102,-0.804756,1.866709,-1.607579,-0.797775,1.815619,-1.636746,-0.772516,1.85177,-1.614883,-0.758873,1.847053,-1.607216,-0.772148,1.854565,-1.609514,-0.77732,1.886823,-1.595761,-0.755931,1.853285,-1.599765,-0.733164,1.84814,-1.598496,-0.776017,1.776051,-1.686281,-0.771213,1.768763,-1.653818,-0.75807,1.789077,-1.629757,-0.734598,1.837892,-1.607102,-0.739434,1.841059,-1.613474,-0.759997,1.847816,-1.613857,-0.773374,1.854566,-1.616872,-0.757669,1.850718,-1.609792,-0.770946,1.895977,-1.593512,-0.919648,2.060868,-1.687006,-0.948335,2.077389,-1.712025,-0.736549,1.846933,-1.606667,-0.773791,1.852902,-1.61785,-0.736681,1.868235,-1.592456,-0.763693,1.869205,-1.594888,-0.785226,1.861352,-1.608181,-0.787246,1.851488,-1.618609,-0.77266,1.833728,-1.614869,-0.743786,1.817967,-1.616678,-0.718909,1.885836,-1.595246,-0.724894,2.065511,-1.555773,-0.838847,1.812176,-1.719383,-0.799248,1.787919,-1.699836,-0.77168,2.012827,-1.581906,-0.816121,2.010791,-1.577669,-0.823923,1.951555,-1.596684,-0.77889,1.940316,-1.600729,-0.743516,1.974893,-1.614883,-0.773808,2.009136,-1.590342,-0.818161,2.007319,-1.586004,-0.85754,1.982716,-1.606375,-0.825653,1.955973,-1.603749,-0.780851,1.943892,-1.607792,-0.746877,1.981154,-1.638327,-0.778243,2.021437,-1.643363,-0.822715,2.020191,-1.639086,-0.86118,1.989758,-1.629769,-0.825672,1.982936,-1.63674,-0.790615,1.977863,-1.639596,-0.792277,1.992901,-1.640289,-0.828654,1.998024,-1.63821,-0.767333,1.839768,-1.629147,-0.746531,1.831504,-1.624173,-0.758553,1.866029,-1.623377,-0.783727,1.87128,-1.63584,-0.738754,1.862229,-1.614754,-0.790566,1.844056,-1.642451,-0.789795,1.849697,-1.687265,-0.779407,1.849006,-1.700277,-0.780959,1.895089,-1.679029,-0.791802,1.884027,-1.665724,-0.768982,1.90109,-1.68993,-0.798729,1.848835,-1.671634,-0.732272,1.857044,-1.592259,-0.758832,1.855935,-1.59556,-0.774815,1.857724,-1.609237,-0.778708,1.854772,-1.619614,-0.767772,1.841917,-1.614351,-0.739046,1.829385,-1.606301,-0.611271,0.774535,-1.508793,-0.651726,0.77939,-1.488861,-0.672272,0.82025,-1.523122,-0.635952,0.80461,-1.55317,-0.57541,0.7389,-1.462837,-0.599018,0.672304,-1.518788,-0.608731,0.64189,-1.40834,-0.56201,0.653736,-1.425328,-0.516741,0.669153,-1.419173,-0.530704,0.708352,-1.400377,-0.582539,0.68047,-1.373025,-0.56072,0.696452,-1.383991,-0.547237,0.717839,-1.428256,-0.508373,0.670941,-1.374353,-0.545341,0.655762,-1.357155,-0.554226,0.662793,-1.391151,-0.520428,0.704161,-1.368481,-0.577502,0.654606,-1.382521,-0.566914,0.659345,-1.349129,-0.571109,0.67922,-1.340897,-0.553429,0.652348,-1.328678,-0.554162,0.667526,-1.325425,-0.571361,0.659064,-1.35719,-0.592293,0.651622,-1.350968,-0.561526,0.649597,-1.335789,-0.579962,0.643935,-1.330396,-0.605718,0.648322,-1.378953,-0.622617,0.640895,-1.375671,-0.653926,0.630144,-1.400601,-0.63479,0.659565,-1.511017,-0.676055,0.646268,-1.500675,-0.68876,0.651307,-1.566996,-0.677855,0.743878,-1.488983,-0.699973,0.784293,-1.533236,-0.639803,0.665549,-1.574124,-0.648596,0.665926,-1.61094,-0.700968,0.651505,-1.599541,-0.655577,0.699128,-1.432539,-0.622396,0.727867,-1.442398,-0.604112,0.700416,-1.407949,-0.643807,0.675114,-1.401099,-0.599378,0.679679,-1.586505,-0.60287,0.679759,-1.628929,-0.614935,0.682093,-1.663579,-0.624813,0.801705,-1.590853,-0.661942,0.786917,-1.647113,-0.696355,0.783192,-1.651023,-0.717275,0.770427,-1.627595,-0.6872,0.716184,-1.690698,-0.653945,0.723128,-1.68968,-0.71376,0.707057,-1.673205,-0.733072,0.758517,-1.573096,-0.708036,0.655241,-1.633438,-0.657555,0.666494,-1.643714,-0.674349,0.672005,-1.6861,-0.697214,0.664731,-1.670935,-0.645062,0.679227,-1.683421,-0.608335,0.671537,-1.373137,-0.626039,0.661073,-1.368684,-0.620105,0.662269,-1.358326,-0.617819,0.64528,-1.367458,-0.608944,0.640137,-1.350522,-0.621543,0.63002,-1.347275,-0.635157,0.650982,-1.353946,-0.633277,0.634998,-1.360595,-0.62303,0.640206,-1.34356,-0.614287,0.651204,-1.346424,-0.642312,0.633898,-1.377127,-0.640638,0.652789,-1.372894,-0.599585,0.671819,-1.350575,-0.597559,0.650647,-1.362036,-0.587301,0.642668,-1.343909,-0.590072,0.656964,-1.334725,-0.603978,0.650257,-1.330162,-0.602694,0.638649,-1.337986,-0.614288,0.643716,-1.353649,-0.618988,0.66219,-1.342339,-0.598202,0.671333,-1.340873,-0.573584,0.680173,-1.347583,-0.545626,0.685897,-1.353076,-0.543834,0.666501,-1.359888,-0.536819,0.658027,-1.337274,-0.540271,0.672109,-1.332557,-0.551951,0.692678,-1.353918,-0.530716,0.657864,-1.33125,-0.508633,0.665039,-1.335611,-0.51406,0.682097,-1.333518,-0.53493,0.675016,-1.328921,-0.565938,0.664733,-1.328005,-0.582259,0.658622,-1.323655,-0.735851,0.893806,-1.594649,-0.705798,0.904781,-1.595286,-0.684167,0.900798,-1.610099,-0.673179,0.879312,-1.642081,-0.699628,0.856673,-1.674233,-0.734679,0.850898,-1.674525,-0.755856,0.856617,-1.65027,-0.753458,0.872602,-1.615872,-0.528774,0.667833,-1.448763,-0.580313,0.660225,-1.463923,-0.620619,0.647464,-1.446644,-0.662875,0.635561,-1.43421,-0.655825,0.660163,-1.398776,-0.664972,0.670438,-1.4349,-0.678365,0.687789,-1.498581,-0.694312,0.694729,-1.555183,-0.709875,0.69886,-1.596729,-0.717109,0.697989,-1.642916,-0.628437,0.72679,-1.658811,-0.619536,0.721547,-1.618851,-0.606558,0.721861,-1.576108,-0.581582,0.701586,-1.524237,-0.548296,0.676444,-1.479598,-0.701839,0.744895,-1.665136,-0.693539,0.75239,-1.676182,-0.678315,0.752217,-1.675255,-0.965277,1.447456,-1.404047,-0.976085,1.423152,-1.406233,-0.972204,1.40637,-1.415541,-0.959461,1.408297,-1.429814,-0.946336,1.422753,-1.43577,-0.936112,1.435668,-1.437264,-0.938804,1.450633,-1.428343,-0.945509,1.462093,-1.416131,-0.918154,1.719896,-1.807664,-0.954528,1.872849,-1.943697,-0.81294,1.708016,-1.864742,-0.960932,1.808094,-1.870841,-0.741654,1.020365,-1.632297,-0.715715,1.018367,-1.654375,-0.77799,1.015458,-1.634461,-0.707219,1.009724,-1.701648,-0.737465,0.984767,-1.738229,-0.787422,0.974306,-1.736146,-0.817735,0.987872,-1.699818,-0.81053,1.009755,-1.660371,-0.823119,1.075677,-1.67227,-0.827669,1.043947,-1.687976,-0.919875,1.877287,-1.908337,-0.929711,1.824776,-1.865037,-0.893615,1.753079,-1.835019,-0.952857,1.395022,-1.395392,-0.93312,1.396664,-1.406362,-0.92165,1.414636,-1.413617,-0.949451,1.444412,-1.383,-0.955278,1.414057,-1.380649,-0.92291,1.448987,-1.414994,-0.928798,1.460972,-1.396782,-0.911603,1.429277,-1.415358,-0.86383,1.40157,-1.326137,-0.84542,1.435711,-1.327071,-0.874933,1.415077,-1.310531,-0.868965,1.441547,-1.320589,-0.919116,1.373088,-1.375708,-0.879746,1.383116,-1.327137,-0.936532,1.386482,-1.360306,-0.879163,1.391545,-1.314993,-0.882502,1.364173,-1.319668,-0.87289,1.380721,-1.328518,-0.877005,1.374763,-1.308367,-0.866538,1.386009,-1.318462,-0.865888,1.359907,-1.334246,-0.865277,1.37981,-1.339109,-0.84967,1.364742,-1.33204,-0.848847,1.381284,-1.336988,-0.86328,1.365861,-1.355227,-0.863534,1.384153,-1.356839,-0.846509,1.370167,-1.355085,-0.846256,1.384392,-1.357179,-0.860119,1.37221,-1.373207,-0.860937,1.386374,-1.373776,-0.847015,1.373925,-1.372345,-0.847391,1.38708,-1.373562,-0.864483,1.381518,-1.316607,-0.859321,1.398552,-1.328873,-0.858503,1.391834,-1.304683,-0.852768,1.407734,-1.313772,-0.849983,1.375795,-1.330597,-0.852091,1.395823,-1.336111,-0.832677,1.381268,-1.330841,-0.834218,1.397801,-1.335593,-0.850189,1.373913,-1.354954,-0.852416,1.393809,-1.359542,-0.831909,1.378564,-1.359025,-0.834464,1.393737,-1.362704,-0.848024,1.374198,-1.37852,-0.850823,1.38784,-1.381222,-0.835432,1.37629,-1.380494,-0.83737,1.388582,-1.383758,-0.909468,1.46266,-1.396706,-0.84032,1.450408,-1.342343,-0.8636,1.466435,-1.343755,-0.85075,1.453374,-1.394517,-0.864404,1.472283,-1.415799,-0.857481,1.4726,-1.363243,-0.867614,1.483165,-1.399555,-0.794929,1.473301,-1.383602,-0.796667,1.485924,-1.392976,-0.798701,1.479526,-1.372631,-0.801107,1.491981,-1.381808,-0.843087,1.436975,-1.321478,-0.840563,1.454811,-1.329788,-0.85403,1.440001,-1.310002,-0.852876,1.458889,-1.318059,-0.819826,1.433087,-1.303797,-0.818234,1.451671,-1.307709,-0.827888,1.43528,-1.289929,-0.827256,1.451074,-1.294468,-0.803054,1.430626,-1.290019,-0.799411,1.447609,-1.292673,-0.79888,1.43343,-1.277759,-0.803353,1.445808,-1.280516,-0.778045,1.428011,-1.297905,-0.777867,1.440855,-1.297184,-0.774637,1.429044,-1.286655,-0.775519,1.440494,-1.287769,-0.846378,1.412013,-1.309501,-0.84197,1.434663,-1.314558,-0.857082,1.418087,-1.295408,-0.854363,1.439029,-1.302924,-0.821159,1.411163,-1.292348,-0.817283,1.432436,-1.295751,-0.826797,1.415494,-1.273458,-0.824093,1.433748,-1.276686,-0.803317,1.404695,-1.286337,-0.797345,1.422827,-1.290862,-0.798165,1.407773,-1.266576,-0.794082,1.423606,-1.271929,-0.780696,1.401423,-1.289333,-0.777126,1.415374,-1.29125,-0.776994,1.401139,-1.275744,-0.774586,1.414295,-1.277894,-0.886239,1.36889,-1.333419,-0.893087,1.376654,-1.317597,-0.913545,1.393434,-1.3848,-0.903729,1.415507,-1.398239,-0.895532,1.448757,-1.416462,-0.871276,1.435068,-1.392438,-0.891664,1.429364,-1.400075,-0.893721,1.419742,-1.376037,-0.866007,1.410105,-1.333088,-0.85847,1.434795,-1.346194,-0.896974,1.390715,-1.36074,-0.882708,1.39079,-1.334323,-0.854226,1.445815,-1.357015,-0.856575,1.449778,-1.394637,-0.83329,1.488947,-1.3923,-0.830498,1.473416,-1.379358,-0.826363,1.463121,-1.390546,-0.8285,1.479004,-1.405979,-0.797823,1.030635,-1.724254,-0.758134,1.038278,-1.723145,-0.729069,1.07649,-1.717487,-0.795459,1.092863,-1.661146,-0.737608,1.096177,-1.686753,-0.762969,1.099072,-1.664645,-0.611732,1.190854,-1.673489,-0.776754,1.163275,-1.635036,-0.833383,1.118298,-1.622731,-0.852713,1.035083,-1.646855,-0.821862,0.974409,-1.686066,-0.653436,1.182284,-1.679837,-0.696304,0.927329,-1.717811,-0.834691,1.292581,-1.949018,-0.778337,1.263192,-1.898355,-0.682599,1.234065,-1.797599,-0.851658,1.248611,-1.76341,-0.923236,1.299469,-1.888166,-0.994965,1.320663,-2.000297,-0.913318,1.187297,-1.737779,-0.993133,1.229963,-1.862098,-1.05389,1.257374,-1.97819,-0.93014,1.085578,-1.746726,-1.004499,1.130007,-1.882821,-1.07084,1.155294,-1.99942,-0.900503,1.015113,-1.781954,-0.99025,1.045665,-1.939894,-1.043124,1.085938,-2.06817,-0.774001,0.944236,-1.850859,-0.856822,0.985447,-2.060293,-0.885365,1.065142,-2.174911,-0.721923,1.164733,-1.638242,-0.794943,1.252216,-1.796534,-0.853427,1.294451,-1.929105,-0.931012,1.320456,-2.007267,-0.842086,1.043673,-1.663172,-0.828188,1.095854,-1.644804,-0.780638,1.138479,-1.640301,-0.816493,1.005755,-1.705534,-0.75579,1.008835,-1.720256,-0.670489,1.140151,-1.687605,-0.69,1.070203,-1.708969,-0.724997,1.139811,-1.653984,-0.689589,0.972007,-1.723586,-0.621629,1.151116,-1.675103,-0.654677,1.061593,-1.698531,-0.731691,0.985111,-1.727182,-0.828361,1.505533,-1.91092,-0.877531,1.51015,-1.909324,-0.738036,0.931376,-1.724085,-0.95249,1.070443,-2.16552,-0.908663,0.991912,-2.057029,-0.821604,0.954252,-1.855917,-1.103149,1.169377,-2.085346,-1.036684,1.327762,-2.043998,-0.900453,1.122766,-2.208371,-0.9571,1.332108,-2.018858,-1.061883,1.131815,-2.132326,-1.098074,1.268216,-2.045863,-0.849558,1.315166,-1.9726,-0.95579,1.11637,-2.217825,-0.943546,1.652883,-2.166686,-0.955393,1.735135,-2.117693,-0.948153,1.820352,-2.052296,-0.917665,1.870905,-1.973675,-0.88857,1.909534,-1.918687,-0.927798,1.441282,-2.229098,-0.953726,1.122261,-2.203008,-0.715371,1.070622,-1.712175,-0.706179,1.122434,-1.678585,-0.902881,1.32282,-1.964849,-0.907519,1.377672,-1.955052,-0.73544,1.240252,-1.816733,-0.815562,1.276701,-1.929137,-0.891857,1.297404,-1.973556,-0.908593,1.320435,-1.989888,-0.688471,1.993923,-1.733691,-0.677892,2.009848,-1.731357,-0.416373,0.146985,1.025208,-0.400502,0.162878,1.026151,-0.384683,0.146985,1.027747,-0.400554,0.131093,1.026804,-0.280586,0.043055,0.553389,-0.264715,0.058947,0.554331,-0.248897,0.043055,0.555928,-0.264768,0.027162,0.554985,-0.353424,0.102539,-0.438978,-0.339415,0.118109,-0.447142,-0.325268,0.101927,-0.453729,-0.339278,0.086357,-0.445564,-0.67246,0.054076,-0.765796,-0.659932,0.069758,-0.775918,-0.650638,0.053945,-0.788915,-0.663166,0.038263,-0.778793,-1.168151,0.277184,-1.228238,-1.147894,0.286606,-1.230733,-1.145656,0.276509,-1.250693,-1.165913,0.267087,-1.248197,-1.207217,0.626818,-1.271771,-1.185136,0.622638,-1.271228,-1.18439,0.623663,-1.293673,-1.206471,0.627843,-1.294216,-1.006301,1.036993,-1.186114,-0.987396,1.0241,-1.186174,-0.986968,1.025207,-1.208595,-1.005349,1.037595,-1.208599,-0.738367,1.30948,-1.215666,-0.718765,1.298262,-1.216554,-0.725747,1.286924,-1.234834,-0.745631,1.298457,-1.233655,-0.75083,1.405306,-1.398843,-0.735626,1.404848,-1.415347,-0.736759,1.382428,-1.415723,-0.751476,1.382004,-1.399549,-0.797104,1.40323,-1.393987,-0.78196,1.434227,-1.395166,-0.751059,1.380953,-1.333088,-0.735483,1.410108,-1.333661,-0.780292,1.438038,-1.293934,-0.796106,1.409042,-1.293127,-0.834819,1.468797,-1.343972,-0.84973,1.438585,-1.34015,-0.856037,1.419302,-1.412829,-0.85047,1.395324,-1.390498,-0.888303,1.43904,-1.383066,-0.881934,1.415989,-1.360941,-0.756405,1.422169,-1.350788,-0.771231,1.429418,-1.369914,-0.771461,1.430209,-1.336921,-0.788371,1.439606,-1.353672,-0.757122,1.423255,-1.350827,-0.771059,1.430225,-1.368788,-0.771269,1.430906,-1.337604,-0.787835,1.43969,-1.353568,-0.741751,1.416147,-1.349633,-0.7693,1.429939,-1.384096,-0.769598,1.431725,-1.324823,-0.801895,1.44871,-1.354568,-0.729723,1.437825,-1.350198,-0.757113,1.451781,-1.385157,-0.75764,1.453812,-1.324981,-0.790427,1.470575,-1.35517,-0.757809,1.38107,-1.428505,-0.741296,1.411197,-1.431019,-0.716311,1.361181,-1.363704,-0.700365,1.390173,-1.364616,-0.654002,1.366344,-1.40525,-0.669696,1.337107,-1.404509,-0.682064,1.382278,-1.478649,-0.695928,1.351512,-1.475862,-0.767582,1.36915,-1.490802,-0.76158,1.345165,-1.468744,-0.733413,1.351211,-1.519597,-0.727066,1.328222,-1.497573,-0.70925,1.395426,-1.392357,-0.72213,1.40159,-1.413201,-0.693958,1.386249,-1.405242,-0.703779,1.39166,-1.428248,-0.716895,1.402147,-1.349251,-0.733073,1.372096,-1.348361,-0.760799,1.424886,-1.413536,-0.777586,1.394729,-1.412798,-0.708965,1.395992,-1.39322,-0.720946,1.401612,-1.412989,-0.694345,1.386746,-1.405388,-0.703796,1.391508,-1.427647,-0.71084,1.398612,-1.376883,-0.733873,1.40996,-1.415214,-0.682881,1.382529,-1.401264,-0.700453,1.391364,-1.444133,-0.699121,1.42049,-1.37718,-0.722318,1.432092,-1.415839,-0.670595,1.404501,-1.401726,-0.688509,1.412899,-1.445038,-0.981865,0.206448,-1.091901,-1.000189,0.195461,-1.087498,-1.004191,0.206987,-1.069279,-0.985866,0.217974,-1.073681,-0.267779,0.14555,-0.031016,-0.282719,0.129819,-0.027405,-0.252797,0.129513,-0.033511,-0.267737,0.113781,-0.0299],
"name": "animation_000000"
},{
"vertices": [-0.776217,2.206313,-1.839272,-0.845141,2.224412,-1.891673,-0.865102,2.294311,-1.841276,-0.796177,2.276212,-1.788875,-0.870811,2.159406,-1.801296,-0.906544,2.177995,-1.840552,-0.939281,2.199877,-1.800392,-0.903549,2.181287,-1.761135,-0.999038,1.9675,-1.824433,-1.009201,1.975962,-1.836792,-1.017822,1.98487,-1.823603,-1.007659,1.976408,-1.811244,-0.86853,2.240444,-1.837663,-0.901468,2.245552,-1.895462,-0.931935,2.300592,-1.873235,-0.898998,2.295484,-1.815437,-0.944264,2.137112,-1.807063,-0.972773,2.133136,-1.848808,-1.014402,2.141896,-1.821213,-0.985893,2.145873,-1.779468,-0.897552,1.950692,-1.804975,-0.911041,1.94549,-1.824945,-0.930119,1.939537,-1.810508,-0.91663,1.944739,-1.790537,-0.891357,2.274338,-1.904511,-0.852125,2.230986,-1.892388,-0.84456,2.253187,-1.837475,-0.883791,2.29654,-1.849597,-1.018644,2.133559,-1.874763,-0.952637,2.092586,-1.863916,-0.968428,2.087444,-1.787251,-1.034435,2.128416,-1.798098,-1.069994,1.963109,-1.954119,-1.020405,1.949187,-1.942248,-1.032052,1.951615,-1.890749,-1.081641,1.965537,-1.902619,-1.07602,1.84936,-1.872694,-1.055442,1.848243,-1.86917,-1.057897,1.859011,-1.851418,-1.078475,1.860128,-1.854941,-0.711072,2.222419,-1.890537,-0.760202,2.224842,-1.879149,-0.751143,2.263821,-1.848362,-0.702013,2.261398,-1.859751,-0.724358,2.167947,-1.824214,-0.735206,2.169003,-1.822198,-0.732951,2.175329,-1.813379,-0.722103,2.174273,-1.815395,-0.713248,2.196885,-1.976278,-0.725714,2.187505,-1.912806,-0.667778,2.213641,-1.897565,-0.655312,2.223022,-1.961037,-0.705534,2.155661,-1.981932,-0.715175,2.13443,-1.925762,-0.655172,2.128818,-1.917585,-0.645531,2.150049,-1.973754,-0.737248,1.985066,-2.062367,-0.742215,1.972034,-2.037719,-0.714342,1.969083,-2.033662,-0.709375,1.982116,-2.05831,-0.708881,1.876477,-2.102685,-0.710696,1.871804,-2.093674,-0.70072,1.872672,-2.091214,-0.698905,1.877346,-2.100225,-0.751712,2.219226,-2.005684,-0.712756,2.220952,-1.973867,-0.688696,2.252304,-2.005027,-0.727651,2.250579,-2.036844,-0.706438,2.1583,-2.015076,-0.691951,2.164636,-1.999692,-0.679285,2.173663,-2.015338,-0.693772,2.167327,-2.030722,-0.650989,2.100361,-2.021081,-0.645407,2.104004,-2.014398,-0.640391,2.108476,-2.021026,-0.645974,2.104834,-2.027709,-0.81767,2.221275,-1.987554,-0.731092,2.239861,-1.991817,-0.744211,2.283538,-2.06784,-0.830789,2.264951,-2.063577,-0.767227,2.154982,-1.967126,-0.696974,2.191562,-1.966013,-0.697788,2.195532,-2.045123,-0.76804,2.158951,-2.046236,-0.709192,2.031566,-2.018317,-0.64199,2.043632,-2.025747,-0.65467,2.078778,-2.083374,-0.721873,2.066713,-2.075944,-0.720696,1.948611,-2.127165,-0.68847,1.951634,-2.131477,-0.693428,1.97805,-2.150021,-0.725655,1.975027,-2.145709,-0.70686,1.920948,-2.207252,-0.690571,1.923888,-2.207023,-0.693131,1.938619,-2.214128,-0.70942,1.935679,-2.214357,-0.905973,2.049992,-1.830989,-0.928789,2.064597,-1.856444,-0.952698,2.074043,-1.829594,-0.929882,2.059439,-1.804139,-0.75913,2.250819,-1.887947,-0.936943,2.021006,-1.829115,-0.954578,2.035689,-1.85056,-0.969538,2.051147,-1.827675,-0.951903,2.036464,-1.80623,-0.802055,2.261567,-1.863174,-0.841297,2.325437,-1.91789,-0.810746,2.319185,-1.858905,-0.923537,2.058466,-1.806844,-0.944697,2.050306,-1.83817,-0.974623,2.040968,-1.815523,-0.953463,2.049128,-1.784197,-0.849317,2.293173,-1.927874,-0.929189,2.229432,-1.893418,-0.876996,2.191841,-1.884271,-0.875287,2.209427,-1.821752,-0.92748,2.247018,-1.830899,-0.735701,2.319561,-1.910668,-0.784192,2.325412,-1.95665,-0.750364,2.252343,-1.903492,-0.725999,2.312596,-1.921519,-0.718523,2.230077,-1.937429,-0.763023,2.224983,-1.912203,-0.765426,2.286199,-1.885167,-0.707243,2.272944,-1.901691,-0.720829,2.07452,-2.020004,-0.728628,2.053875,-1.981693,-0.686314,2.041178,-1.97992,-0.678515,2.061824,-2.018231,-0.769606,2.232802,-1.981925,-0.796615,2.198086,-1.976028,-0.725749,2.242726,-1.975483,-0.715013,2.226677,-2.056983,-0.785878,2.182037,-2.057527,-0.816215,2.2565,-1.927575,-0.836719,2.317065,-1.876144,-0.77085,2.307583,-1.845958,-0.774755,2.318478,-1.967751,-0.731725,2.225704,-1.983154,-0.741033,2.292524,-2.006244,-0.694966,2.271333,-1.970978,-0.805339,2.303972,-1.981258,-0.798981,2.244153,-1.954828,-0.800954,2.099131,-1.943654,-0.805818,2.100983,-1.962334,-0.793296,2.103227,-1.997355,-0.778344,2.103351,-2.008972,-0.76753,2.104986,-1.918443,-0.796626,2.125496,-1.98064,-0.7685,2.127369,-1.927503,-0.778711,2.14381,-1.961372,-0.778687,2.141624,-1.98067,-0.774872,2.132717,-1.997328,-0.750324,2.131121,-1.928941,-0.755015,2.146626,-1.982525,-0.74067,2.110793,-1.920491,-0.728201,2.140803,-1.966176,-0.739626,2.131641,-2.002057,-0.749642,2.118582,-2.012382,-0.75094,2.094167,-1.917209,-0.733948,2.103366,-1.921741,-0.712197,2.118252,-1.95028,-0.710997,2.121477,-1.969431,-0.743069,2.111241,-2.01343,-0.731987,2.093554,-1.922877,-0.716497,2.093696,-1.935387,-0.704749,2.096091,-1.972796,-0.710351,2.097981,-1.99201,-0.741125,2.101614,-2.013907,-0.735021,2.083931,-1.923325,-0.714599,2.071437,-1.954207,-0.718469,2.074993,-1.992607,-0.729489,2.082562,-2.006633,-0.742569,2.077246,-1.923281,-0.743199,2.07066,-2.0056,-0.760873,2.083883,-2.012715,-0.782066,2.06222,-1.986218,-0.777503,2.072793,-2.001083,-0.798025,2.079367,-1.983553,-0.77063,2.095419,-1.919041,-0.788071,2.097167,-1.928349,-0.803055,2.102414,-1.981175,-0.782083,2.114724,-1.927424,-0.793062,2.122231,-1.942284,-0.798431,2.126176,-1.961185,-0.78826,2.120519,-1.99711,-0.775579,2.112608,-2.009043,-0.760076,2.111814,-1.918438,-0.774941,2.138443,-1.942531,-0.768539,2.119305,-2.009793,-0.750195,2.113905,-1.919254,-0.751295,2.142489,-1.944246,-0.75291,2.148417,-1.962947,-0.757251,2.137079,-1.999488,-0.759027,2.121536,-2.011028,-0.732566,2.125764,-1.931002,-0.728414,2.135991,-1.947145,-0.731986,2.139552,-1.985711,-0.719997,2.111982,-1.933369,-0.716078,2.12148,-1.988507,-0.727435,2.117851,-2.004039,-0.706754,2.094572,-1.952959,-0.723541,2.099941,-2.006244,-0.722006,2.075768,-1.936353,-0.713576,2.071316,-1.973738,-0.744194,2.092352,-2.014127,-0.73612,2.063417,-1.936175,-0.732882,2.055455,-1.953826,-0.733373,2.054696,-1.9728,-0.736827,2.05966,-1.991171,-0.751433,2.08586,-2.013804,-0.752385,2.074945,-1.92241,-0.754337,2.059722,-1.934842,-0.756392,2.051381,-1.951808,-0.758285,2.049959,-1.970509,-0.759839,2.055218,-1.988807,-0.760749,2.06715,-2.00365,-0.762021,2.077937,-1.921148,-0.772056,2.065117,-1.932634,-0.779004,2.058259,-1.949145,-0.782611,2.057082,-1.967948,-0.768731,2.085495,-1.919912,-0.78431,2.079031,-1.9303,-0.795135,2.075717,-1.946135,-0.800083,2.075766,-1.964899,-0.789523,2.085822,-1.999121,-0.776219,2.094007,-2.009587,-0.753517,2.364474,-1.989083,-0.705071,2.285807,-2.065555,-0.684648,2.25784,-1.991652,-0.712614,2.30773,-1.918649,-0.791497,1.955414,-2.185286,-0.742561,1.930077,-2.131047,-0.737692,1.91902,-2.075688,-0.744705,2.029581,-2.209402,-0.726446,2.112004,-2.219774,-0.842126,2.159719,-2.262662,-0.712671,1.9933,-2.128238,-0.681139,2.081409,-2.130126,-0.843589,2.285153,-2.21908,-0.740601,2.222291,-2.21062,-0.728811,2.284372,-2.1532,-0.806651,2.378179,-2.127917,-0.677218,2.172052,-2.114075,-0.676352,2.143137,-2.048541,-0.709325,1.983921,-2.08972,-0.669293,2.065689,-2.061376,-0.869008,2.050126,-2.224206,-0.87882,1.974384,-2.193835,-0.683082,1.139604,-2.106631,-0.534484,1.508259,-1.791813,-0.540269,1.475428,-1.78551,-0.563924,1.461027,-1.777401,-0.589229,1.473206,-1.774683,-0.599499,1.500576,-1.776758,-0.59546,1.523926,-1.780618,-0.577221,1.539002,-1.787731,-0.551587,1.53662,-1.792883,-0.785231,1.640439,-2.261655,-0.778147,1.83297,-2.056218,-0.765738,1.827455,-2.237973,-0.786397,1.564569,-2.234898,-0.742476,1.587739,-2.010344,-0.739565,1.557452,-2.135088,-0.81018,1.760525,-2.285977,-0.803813,1.856918,-2.039494,-0.837202,1.792034,-1.987448,-0.753423,1.843752,-2.147457,-0.600185,1.667487,-2.175289,-0.644376,1.621648,-2.213798,-0.65478,1.665316,-2.250265,-0.609337,1.726902,-2.202935,-0.706387,1.60901,-2.201868,-0.720304,1.624601,-2.228096,-0.655497,1.713804,-2.072767,-0.607206,1.701306,-2.11308,-0.628534,1.765499,-2.129559,-0.666031,1.769085,-2.081862,-0.735788,1.663928,-2.088402,-0.703741,1.697519,-2.057873,-0.695311,1.726804,-2.037287,-0.742666,1.660907,-2.045099,-0.733221,1.627397,-2.143017,-0.732338,1.628891,-2.134671,-0.601195,1.571121,-2.132149,-0.637665,1.541745,-2.148688,-0.685068,1.530529,-2.12715,-0.623886,1.608825,-2.046432,-0.593468,1.597745,-2.089302,-0.708845,1.577365,-2.048567,-0.670706,1.601073,-2.031841,-0.710992,1.548106,-2.084343,-0.595559,1.416031,-1.966571,-0.630018,1.42721,-1.967808,-0.622109,1.442603,-2.073376,-0.587368,1.463064,-2.081053,-0.5657,1.432173,-1.98325,-0.568844,1.477438,-2.055691,-0.578636,1.439716,-1.875269,-0.611352,1.453144,-1.87065,-0.628259,1.486545,-1.883143,-0.542649,1.491817,-1.907148,-0.549901,1.455874,-1.888251,-0.592534,1.537161,-1.897634,-0.560957,1.528996,-1.905825,-0.61811,1.522427,-1.888803,-0.703173,1.426785,-2.050745,-0.742991,1.434045,-2.204479,-0.693387,1.434027,-2.135991,-0.62442,1.320763,-2.1193,-0.763326,1.681791,-1.989453,-0.724718,1.349476,-2.020405,-0.752734,1.132608,-2.113341,-0.607328,1.228054,-2.141304,-0.801174,1.433463,-2.220551,-0.856317,1.665549,-2.277994,-0.875846,1.584719,-2.252107,-0.76441,1.419236,-1.974544,-0.797084,1.579977,-1.939757,-0.794982,1.694919,-1.966648,-0.787416,1.783546,-2.008118,-0.728501,1.75077,-2.013299,-0.712934,1.789923,-2.059649,-0.692357,1.806051,-2.143102,-0.707764,1.795166,-2.231976,-0.722392,1.727843,-2.284346,-0.558656,1.471987,-2.022306,-0.57236,1.422107,-2.022649,-0.597183,1.409601,-2.020316,-0.624408,1.412177,-2.017037,-0.65796,1.459266,-2.001154,-0.648072,1.511444,-2.000952,-0.616665,1.530325,-2.008606,-0.578523,1.518921,-2.018223,-0.813916,1.91136,-2.196555,-0.761518,1.883767,-2.134118,-0.837057,1.693818,-1.936179,-0.845144,1.613723,-1.922445,-0.764075,1.621789,-1.978558,-0.798055,1.615513,-1.946631,-0.760285,2.032056,-1.880691,-0.759757,2.014309,-1.881618,-0.770968,2.015262,-1.860902,-0.758685,2.024629,-1.84437,-0.766624,2.037599,-1.85343,-0.749903,2.018624,-1.862838,-0.756176,2.032339,-1.870922,-0.775444,2.043439,-1.87857,-0.797586,2.338549,-2.040908,-0.754472,2.278673,-2.093243,-0.721367,2.256587,-2.027385,-0.740277,2.297717,-1.954939,-0.870625,1.950562,-2.167053,-0.811005,1.924559,-2.117007,-0.798701,1.967609,-2.108648,-0.825356,1.906713,-2.063475,-0.802065,1.941001,-2.048864,-0.779619,2.003494,-2.107231,-0.760253,1.95412,-2.059108,-0.756364,2.049242,-2.12294,-0.765219,2.112335,-2.13838,-0.74821,2.057504,-2.130956,-0.739877,2.056649,-2.098874,-0.749066,2.105781,-2.105185,-0.756509,2.116729,-2.14473,-0.757695,2.174273,-2.129045,-0.729072,2.16062,-2.073226,-0.733871,2.113111,-1.900391,-0.766199,2.107166,-1.894464,-0.757868,2.144951,-1.870456,-0.716072,2.153056,-1.900005,-0.83455,1.906854,-2.011772,-0.759971,1.904357,-1.958887,-0.756742,1.920881,-2.002328,-0.723609,1.976971,-1.985045,-0.730436,2.030918,-2.065431,-0.702259,2.057294,-1.99692,-0.70638,2.046299,-1.950378,-0.707106,2.083574,-1.946355,-0.697096,2.086428,-1.979301,-0.709195,2.206527,-1.982432,-0.718579,2.165504,-2.027134,-0.715762,2.247057,-1.918077,-0.711977,2.052389,-2.022072,-0.707031,2.015952,-1.958447,-0.68903,2.150148,-1.946702,-0.694778,2.13146,-1.981292,-0.700128,2.109922,-1.979404,-0.703429,2.125397,-1.936158,-0.700409,2.097634,-2.003188,-0.698931,2.093835,-1.984213,-0.719905,2.115997,-2.040375,-0.732897,2.057405,-1.906048,-0.777933,2.064606,-1.885415,-0.765429,2.089807,-1.890674,-0.737938,2.083745,-1.903949,-0.780941,2.098607,-1.88372,-0.772696,2.096806,-1.895912,-0.733603,2.037642,-1.897793,-0.728765,2.096124,-2.074484,-0.744826,1.949006,-1.95239,-0.728837,1.983273,-1.933822,-0.750793,1.928682,-1.937204,-0.753837,1.972161,-1.90874,-0.755801,1.969633,-1.892486,-0.749823,1.975254,-1.906046,-0.737966,2.007984,-1.907787,-0.751522,1.975915,-1.887591,-0.763698,1.972071,-1.868153,-0.799142,1.885203,-1.940547,-0.775306,1.881796,-1.918206,-0.766645,1.906505,-1.897093,-0.769694,1.962086,-1.871718,-0.772218,1.964017,-1.879761,-0.76056,1.96949,-1.897333,-0.755369,1.974783,-1.910888,-0.75846,1.972004,-1.894202,-0.740309,2.019246,-1.901777,-0.741188,2.151297,-2.099747,-0.745913,2.162686,-2.13935,-0.768207,1.96946,-1.875323,-0.755751,1.973107,-1.911457,-0.758474,1.992827,-1.87072,-0.744178,1.991798,-1.893699,-0.740998,1.980227,-1.917305,-0.74706,1.968482,-1.923445,-0.751339,1.953086,-1.906422,-0.76878,1.939081,-1.882029,-0.772977,2.009583,-1.861169,-0.75134,2.190223,-1.866617,-0.789695,1.913384,-2.013381,-0.796762,1.894949,-1.967235,-0.734053,2.095258,-1.904766,-0.704171,2.100881,-1.937671,-0.70548,2.098447,-1.937502,-0.735423,2.095229,-1.900634,-0.777984,2.097195,-1.902313,-0.739878,2.0965,-1.911999,-0.71,2.10063,-1.944853,-0.704405,2.093424,-1.991145,-0.710599,2.098382,-1.944148,-0.740544,2.096974,-1.906987,-0.796047,2.096156,-1.921317,-0.78527,2.129642,-1.954649,-0.755622,2.124317,-1.988212,-0.722645,2.093371,-2.010399,-0.747905,2.090756,-1.983492,-0.770817,2.090487,-1.956286,-0.77224,2.101447,-1.961336,-0.749457,2.102772,-1.990211,-0.767728,1.95979,-1.910219,-0.775443,1.953001,-1.889836,-0.771129,1.985613,-1.904899,-0.766784,1.988578,-1.932413,-0.775607,1.983691,-1.883858,-0.764731,1.961178,-1.936585,-0.802316,1.961431,-1.962569,-0.819618,1.960497,-1.961744,-0.805792,2.004473,-1.96028,-0.787357,1.995908,-1.958631,-0.822412,2.008635,-1.95865,-0.783823,1.961632,-1.960471,-0.760032,1.981928,-1.865273,-0.746589,1.979052,-1.887903,-0.748149,1.977967,-1.908683,-0.753718,1.972782,-1.91744,-0.755069,1.962193,-1.903276,-0.765139,1.953191,-1.873551,-0.489734,0.981443,-1.434661,-0.444734,0.985683,-1.438472,-0.442337,1.035496,-1.471944,-0.490545,1.021987,-1.47779,-0.496881,0.934644,-1.385401,-0.508851,0.882474,-1.457912,-0.442985,0.831997,-1.37834,-0.491165,0.842977,-1.365304,-0.525703,0.853049,-1.333202,-0.502581,0.888851,-1.316819,-0.445106,0.860605,-1.327362,-0.468866,0.876536,-1.321582,-0.503074,0.904951,-1.346502,-0.508921,0.845342,-1.291477,-0.468999,0.830246,-1.299912,-0.479298,0.844501,-1.331134,-0.49448,0.877666,-1.286001,-0.455284,0.836765,-1.337972,-0.446352,0.833987,-1.303881,-0.43776,0.852152,-1.295129,-0.447141,0.822026,-1.281401,-0.444282,0.836284,-1.275919,-0.446878,0.835659,-1.312923,-0.426102,0.828925,-1.320357,-0.444155,0.821405,-1.292097,-0.425873,0.816363,-1.298528,-0.429711,0.83229,-1.351178,-0.41391,0.825807,-1.358912,-0.401007,0.822793,-1.398177,-0.474866,0.871504,-1.472979,-0.434885,0.859946,-1.488931,-0.459186,0.878887,-1.54923,-0.423871,0.953194,-1.459757,-0.426933,1.003542,-1.500372,-0.503941,0.890095,-1.526387,-0.516039,0.89839,-1.561282,-0.466131,0.886458,-1.582438,-0.414256,0.896577,-1.410902,-0.446618,0.923807,-1.39556,-0.444721,0.888723,-1.363309,-0.408327,0.865985,-1.383834,-0.544267,0.902935,-1.512383,-0.563842,0.911591,-1.549179,-0.571953,0.921649,-1.583598,-0.520329,1.02529,-1.502708,-0.52015,1.024539,-1.572021,-0.494164,1.02399,-1.593743,-0.463546,1.009333,-1.589111,-0.524031,0.96631,-1.636786,-0.551412,0.970112,-1.61701,-0.492561,0.9562,-1.638237,-0.421475,0.988565,-1.555624,-0.478025,0.897321,-1.613315,-0.525843,0.906097,-1.592893,-0.533954,0.921166,-1.63551,-0.506785,0.913012,-1.63655,-0.557082,0.925248,-1.616393,-0.423626,0.854058,-1.342887,-0.406624,0.844446,-1.350716,-0.406106,0.843095,-1.338807,-0.413463,0.828086,-1.348699,-0.412153,0.81901,-1.331151,-0.400103,0.809545,-1.337219,-0.391416,0.832472,-1.345475,-0.397076,0.817993,-1.353323,-0.396528,0.818897,-1.3328,-0.405082,0.829471,-1.328257,-0.398245,0.820904,-1.371932,-0.396779,0.838396,-1.363598,-0.419041,0.849195,-1.319627,-0.427555,0.830575,-1.332455,-0.42688,0.818379,-1.313792,-0.419175,0.830786,-1.304677,-0.405204,0.824507,-1.309631,-0.410837,0.814584,-1.317843,-0.40917,0.823565,-1.335787,-0.398563,0.839802,-1.325056,-0.415075,0.846709,-1.311004,-0.439183,0.854596,-1.301742,-0.465579,0.858921,-1.290376,-0.471366,0.841148,-1.29912,-0.465577,0.827863,-1.278566,-0.459677,0.840992,-1.273537,-0.460443,0.866241,-1.292972,-0.46755,0.826017,-1.270427,-0.488322,0.83203,-1.26091,-0.482043,0.848744,-1.258458,-0.46217,0.842675,-1.267123,-0.435777,0.835045,-1.284822,-0.419855,0.82959,-1.291096,-0.448657,1.1201,-1.583788,-0.465809,1.131478,-1.559284,-0.490121,1.127655,-1.549371,-0.522843,1.105991,-1.557229,-0.533934,1.083182,-1.596169,-0.514285,1.07712,-1.625048,-0.483043,1.082438,-1.629535,-0.456607,1.098476,-1.60985,-0.531277,0.858546,-1.364199,-0.495951,0.858388,-1.405382,-0.453079,0.84592,-1.414998,-0.4111,0.8354,-1.429453,-0.397421,0.851929,-1.391372,-0.40852,0.86979,-1.423806,-0.430422,0.900304,-1.479707,-0.446752,0.919474,-1.533298,-0.455505,0.932929,-1.574863,-0.473942,0.941704,-1.616928,-0.556487,0.965526,-1.577385,-0.542975,0.951853,-1.540861,-0.531248,0.942725,-1.498735,-0.525523,0.910691,-1.447096,-0.530838,0.874617,-1.398075,-0.497096,0.990599,-1.61738,-0.509739,0.999386,-1.620552,-0.52214,0.99776,-1.611823,-0.544692,1.504996,-1.787617,-0.551483,1.47946,-1.78287,-0.567095,1.469447,-1.776876,-0.583438,1.479606,-1.777377,-0.588119,1.499825,-1.779718,-0.588788,1.515683,-1.779949,-0.574629,1.525054,-1.784373,-0.557299,1.529207,-1.788544,-0.778894,1.799958,-2.050498,-0.855942,1.861067,-2.226907,-0.8005,1.839344,-2.155238,-0.476766,1.246239,-1.611483,-0.509508,1.244405,-1.602056,-0.458472,1.240819,-1.642869,-0.553604,1.236548,-1.620889,-0.569268,1.216752,-1.662378,-0.541301,1.204346,-1.700481,-0.493666,1.215398,-1.707007,-0.462395,1.235683,-1.683577,-0.468178,1.297994,-1.697284,-0.49341,1.27012,-1.685064,-0.865089,1.893952,-2.188802,-0.823569,1.867402,-2.142976,-0.821255,1.824267,-2.069759,-0.560225,1.46895,-1.751303,-0.58294,1.483416,-1.746921,-0.586775,1.505832,-1.748787,-0.53696,1.510232,-1.752168,-0.538863,1.481797,-1.744402,-0.57291,1.525484,-1.755456,-0.551731,1.527349,-1.751499,-0.586197,1.523421,-1.746574,-0.579877,1.518816,-1.649292,-0.546168,1.548536,-1.653582,-0.559223,1.515811,-1.64414,-0.524301,1.538816,-1.661008,-0.582385,1.465828,-1.716745,-0.585377,1.494472,-1.654573,-0.555908,1.465475,-1.712206,-0.57478,1.492128,-1.642723,-0.590682,1.47443,-1.655452,-0.59205,1.494233,-1.648291,-0.583017,1.475281,-1.641638,-0.587717,1.492389,-1.636107,-0.608098,1.477402,-1.651196,-0.613539,1.496837,-1.651409,-0.61644,1.479067,-1.637144,-0.622783,1.495413,-1.637717,-0.62324,1.479204,-1.659361,-0.624587,1.496966,-1.663636,-0.637085,1.484485,-1.650717,-0.638866,1.498117,-1.654546,-0.635519,1.482366,-1.67338,-0.635474,1.496119,-1.676912,-0.646105,1.485255,-1.665965,-0.646759,1.497944,-1.669607,-0.590173,1.49736,-1.644666,-0.590058,1.520335,-1.644361,-0.581515,1.498216,-1.630477,-0.580213,1.518049,-1.627486,-0.609939,1.501588,-1.641732,-0.610934,1.522316,-1.639498,-0.615484,1.502445,-1.624518,-0.616878,1.519496,-1.62246,-0.63186,1.505168,-1.649715,-0.632523,1.525542,-1.646977,-0.642308,1.50622,-1.633874,-0.644518,1.521889,-1.634198,-0.642623,1.511075,-1.661725,-0.645177,1.525078,-1.659304,-0.654149,1.510257,-1.656473,-0.655346,1.523042,-1.655694,-0.562937,1.546027,-1.743925,-0.54531,1.566162,-1.66078,-0.530786,1.566454,-1.683964,-0.586728,1.576193,-1.697846,-0.592902,1.583829,-1.728117,-0.548786,1.581149,-1.694769,-0.573884,1.589343,-1.727413,-0.587303,1.617895,-1.661447,-0.59192,1.631438,-1.672215,-0.574293,1.619826,-1.662499,-0.578623,1.632951,-1.673444,-0.541925,1.550448,-1.648727,-0.537082,1.566894,-1.657741,-0.5269,1.545623,-1.644694,-0.521505,1.561686,-1.655672,-0.54813,1.555233,-1.624116,-0.54427,1.575083,-1.628854,-0.534741,1.555448,-1.615044,-0.534052,1.570973,-1.619977,-0.561571,1.556754,-1.6042,-0.559503,1.573099,-1.606794,-0.553134,1.557645,-1.593387,-0.55074,1.570215,-1.597315,-0.581156,1.562759,-1.586965,-0.578171,1.574628,-1.588642,-0.573427,1.561613,-1.578121,-0.571012,1.572599,-1.580486,-0.570047,1.524153,-1.637867,-0.55888,1.546377,-1.640468,-0.553756,1.520747,-1.628647,-0.545189,1.541911,-1.6325,-0.586373,1.530512,-1.621353,-0.579436,1.551101,-1.619644,-0.580189,1.527002,-1.602306,-0.573457,1.544343,-1.601182,-0.606267,1.531756,-1.61503,-0.607723,1.551256,-1.614432,-0.604965,1.530943,-1.59429,-0.605737,1.548062,-1.595412,-0.628892,1.533855,-1.610788,-0.62896,1.548292,-1.609164,-0.628612,1.531138,-1.596968,-0.627885,1.544636,-1.59607,-0.59103,1.474497,-1.665655,-0.574779,1.473578,-1.654615,-0.580431,1.486956,-1.723651,-0.584227,1.513928,-1.72699,-0.590178,1.544967,-1.737865,-0.584918,1.548829,-1.702785,-0.584837,1.532514,-1.718841,-0.572697,1.519355,-1.707211,-0.564083,1.520979,-1.656307,-0.550654,1.544771,-1.668962,-0.581938,1.490092,-1.69523,-0.580277,1.497556,-1.665238,-0.555124,1.558943,-1.676386,-0.586158,1.569705,-1.700171,-0.578303,1.614919,-1.703113,-0.573957,1.603537,-1.686618,-0.588905,1.599051,-1.684387,-0.59541,1.611082,-1.701873,-0.540927,1.265719,-1.684488,-0.567313,1.278037,-1.662705,-0.561882,1.309507,-1.654703,-0.469533,1.318535,-1.675781,-0.522741,1.327507,-1.641647,-0.490147,1.327039,-1.651059,-0.438896,1.384156,-1.678591,-0.418156,1.320576,-1.685561,-0.458272,1.249047,-1.662763,-0.534329,1.206607,-1.64209,-0.557513,1.412852,-1.670308,-0.492361,1.385309,-1.838816,-0.554066,1.362092,-1.977665,-0.614816,1.328062,-2.085492,-0.470375,1.297641,-1.822298,-0.532617,1.264199,-1.958875,-0.597728,1.236744,-2.071226,-0.509784,1.217588,-1.770823,-0.583466,1.18859,-1.911468,-0.648089,1.154263,-2.026125,-0.584853,1.178784,-1.741986,-0.658819,1.130894,-1.900197,-0.722081,1.119226,-2.028025,-0.476744,1.395264,-1.639779,-0.548957,1.419797,-1.832404,-0.646063,1.389861,-1.968544,-0.688503,1.356694,-2.053122,-0.470201,1.262491,-1.675022,-0.442121,1.310034,-1.687827,-0.44924,1.362965,-1.670869,-0.535261,1.236642,-1.668119,-0.586223,1.247537,-1.653169,-0.567197,1.374441,-1.657772,-0.604852,1.298768,-1.657227,-0.489478,1.380619,-1.639495,-0.632341,1.214758,-1.653986,-0.845799,1.577865,-1.922614,-0.651942,1.164856,-1.634258,-0.819118,1.10113,-2.130692,-0.803556,1.051576,-2.016793,-0.724738,1.117051,-1.776584,-0.688149,1.149013,-2.1018,-0.635281,1.317969,-2.124218,-0.713587,1.34992,-2.061497,-0.749998,1.140972,-2.10206,-0.620614,1.228521,-2.135427,-0.857157,1.133988,-2.183296,-0.925174,1.586826,-2.235833,-0.917648,1.674451,-2.259978,-0.907162,1.78146,-2.265862,-0.900374,1.868682,-2.227176,-0.89626,1.933272,-2.19501,-0.872714,1.439825,-2.228564,-0.849442,1.14186,-2.169288,-0.573076,1.310069,-1.647614,-0.532912,1.361129,-1.642592,-0.782475,1.342103,-1.992738,-0.815024,1.410445,-1.952709,-0.617939,1.419143,-1.829647,-0.711032,1.370865,-1.955394,-0.765514,1.330425,-2.000496,-0.779807,1.340661,-2.015747,-0.837425,2.095801,-1.899869,-0.858875,2.098267,-1.930369,-0.876358,2.099378,-1.937527,-0.861933,2.104099,-1.847566,-0.849644,2.120606,-1.916331,-0.862485,2.115952,-1.929661,-0.868575,2.111534,-1.845892,-0.861796,2.126097,-1.857606,-0.860169,2.14083,-1.893839,-0.87461,2.129265,-1.9269,-0.879347,2.131344,-1.854304,-0.881752,2.142225,-1.869837,-0.888591,2.145185,-1.907938,-0.891838,2.135075,-1.924434,-0.894191,2.119108,-1.935198,-0.887821,2.112113,-1.842626,-0.897329,2.127461,-1.851273,-0.904933,2.137612,-1.86617,-0.909559,2.131032,-1.921809,-0.903694,2.116912,-1.933813,-0.878318,2.094757,-1.841431,-0.911045,2.114736,-1.849534,-0.922638,2.121233,-1.864004,-0.92874,2.124082,-1.882251,-0.910745,2.110112,-1.932694,-0.898076,2.095615,-1.841785,-0.930328,2.09803,-1.864016,-0.913396,2.100661,-1.932171,-0.912602,2.078405,-1.851241,-0.924836,2.074275,-1.866231,-0.931166,2.076532,-1.904368,-0.923873,2.082812,-1.921156,-0.889239,2.078456,-1.844231,-0.899922,2.064904,-1.854257,-0.914289,2.059733,-1.907162,-0.885555,2.050804,-1.874127,-0.888853,2.048759,-1.892545,-0.894257,2.06489,-1.925919,-0.895433,2.081347,-1.935479,-0.895391,2.100222,-1.938655,-0.86995,2.077547,-1.847409,-0.864358,2.063639,-1.860518,-0.877133,2.069168,-1.928213,-0.84506,2.07191,-1.880154,-0.852229,2.074406,-1.917157,-0.864173,2.081188,-1.930186,-0.859832,2.094289,-1.848515,-0.845487,2.094325,-1.862209,-0.837124,2.094816,-1.88047,-0.845147,2.097016,-1.917368,-0.849676,2.112346,-1.860553,-0.842647,2.118539,-1.878176,-0.842426,2.121573,-1.898056,-0.878403,2.108846,-1.937312,-0.858921,2.13623,-1.874355,-0.865888,2.138243,-1.912437,-0.884904,2.116107,-1.936469,-0.878119,2.114436,-1.844133,-0.884949,2.14757,-1.888577,-0.909977,2.141973,-1.884647,-0.911802,2.139949,-1.904395,-0.895158,2.105252,-1.841679,-0.929031,2.123189,-1.901957,-0.922657,2.118243,-1.919772,-0.916303,2.096763,-1.84968,-0.937487,2.099224,-1.88263,-0.937133,2.100152,-1.902698,-0.928239,2.100655,-1.920006,-0.895998,2.085757,-1.842573,-0.931074,2.073755,-1.884739,-0.91117,2.091161,-1.932765,-0.908358,2.056805,-1.869993,-0.913013,2.055528,-1.888334,-0.911321,2.069817,-1.923266,-0.904618,2.084088,-1.934088,-0.879757,2.075353,-1.845907,-0.882356,2.059711,-1.857662,-0.891933,2.053425,-1.910819,-0.862616,2.055802,-1.877907,-0.864322,2.053866,-1.896909,-0.869451,2.058595,-1.914608,-0.886134,2.083619,-1.936573,-0.862621,2.084541,-1.848372,-0.85095,2.076522,-1.862208,-0.845415,2.071089,-1.899555,-0.879197,2.090223,-1.937086,-0.973274,1.992962,-2.180652,-0.969362,2.323162,-2.185754,-0.993534,2.194211,-2.223743,-0.912825,2.398585,-2.078221,-0.823485,2.371927,-1.927209,-0.789391,2.319389,-1.870126,-0.983558,2.072877,-2.201797,-0.911935,2.362701,-1.895962,-1.001029,2.287173,-1.896389,-0.947118,2.258617,-1.840918,-0.86863,2.307165,-1.827983,-1.085928,1.966541,-2.038261,-1.070587,1.945339,-1.966431,-1.029349,1.935372,-1.930044,-1.125015,2.040728,-2.0121,-1.139092,2.120399,-2.001955,-1.110208,2.163567,-2.120361,-1.078046,2.007175,-1.940213,-1.089453,2.092248,-1.913768,-1.067212,2.28565,-2.095414,-1.117204,2.22635,-2.005336,-1.068495,2.285614,-1.960711,-1.004246,2.376676,-2.014324,-1.069255,2.178624,-1.900241,-1.013874,2.149734,-1.864745,-1.048431,1.99819,-1.915294,-1.036994,2.076554,-1.865399,-1.067534,2.055491,-2.122128,-1.041236,1.98011,-2.113201,-0.987335,1.681957,-2.234018,-0.97764,1.585517,-2.2148,-0.98346,1.874667,-2.205429,-0.987453,1.788978,-2.234428,-0.866546,1.399339,-1.93397,-0.913041,1.44046,-2.226067,-1.111395,1.171134,-2.075926,-0.974899,1.945315,-2.183382,-0.887754,1.795254,-1.967662,-0.885462,1.616435,-1.908244,-0.878008,1.69667,-1.919195,-0.846768,1.498025,-1.579497,-0.8528,1.465174,-1.585264,-0.843878,1.44708,-1.606126,-0.828012,1.455449,-1.628139,-0.815895,1.480159,-1.636571,-0.811575,1.503943,-1.632379,-0.817661,1.521584,-1.616556,-0.831162,1.523117,-1.594186,-1.139748,1.646423,-2.091529,-1.003366,1.84798,-1.947781,-1.155492,1.83793,-2.052503,-1.132863,1.561131,-2.113513,-1.062938,1.561305,-1.931103,-1.115224,1.551134,-2.015449,-1.150141,1.760983,-2.130228,-0.977936,1.867637,-1.958929,-0.936277,1.798336,-1.947128,-1.088731,1.862035,-1.980939,-1.193946,1.676516,-1.875523,-1.159769,1.632532,-1.922825,-1.191272,1.664888,-1.96937,-1.224982,1.726417,-1.910848,-1.106346,1.641674,-1.94936,-1.124086,1.648852,-1.987827,-1.114951,1.769053,-1.830653,-1.172252,1.732221,-1.834296,-1.181342,1.791644,-1.868469,-1.097096,1.804809,-1.8592,-1.044183,1.729407,-1.889085,-1.060253,1.764716,-1.846949,-1.043458,1.767019,-1.850681,-1.039814,1.684,-1.906546,-1.066849,1.680183,-1.92514,-1.086318,1.660326,-1.942988,-1.134351,1.605198,-1.824132,-1.100928,1.581726,-1.852389,-1.050626,1.592226,-1.858772,-1.092919,1.676712,-1.773471,-1.131916,1.642957,-1.789888,-1.014426,1.672652,-1.813461,-1.045758,1.690945,-1.782588,-1.019603,1.633114,-1.839669,-1.014594,1.481837,-1.697251,-0.997975,1.49004,-1.72895,-1.056072,1.516209,-1.769883,-1.088943,1.527062,-1.755605,-1.032501,1.505682,-1.672998,-1.094685,1.54825,-1.723555,-0.932769,1.46738,-1.651449,-0.913235,1.475468,-1.680171,-0.904993,1.509825,-1.697755,-0.949669,1.530287,-1.623469,-0.946057,1.48935,-1.627035,-0.907509,1.564191,-1.664798,-0.927587,1.562282,-1.637889,-0.898164,1.54544,-1.687387,-1.05667,1.362308,-2.010556,-1.093347,1.375665,-2.167271,-1.107404,1.366179,-2.08465,-1.032327,1.330251,-2.051235,-1.007164,1.691208,-1.898692,-0.902136,1.129291,-2.190192,-0.939977,1.339193,-2.001063,-1.063107,1.131077,-2.122892,-1.103997,1.276492,-2.051563,-1.036261,1.387475,-2.20247,-1.107885,1.668357,-2.169805,-1.077157,1.583364,-2.179724,-0.974406,1.376758,-1.953956,-0.836825,1.337409,-1.978904,-0.987117,1.560484,-1.897575,-0.972951,1.701391,-1.905136,-0.979762,1.79569,-1.924431,-1.007598,1.774462,-1.876024,-1.042884,1.81415,-1.890355,-1.130232,1.831818,-1.924506,-1.189556,1.806957,-2.002507,-1.19406,1.723525,-2.057462,-1.05493,1.55941,-1.675704,-1.068767,1.505019,-1.698073,-1.057933,1.489404,-1.721196,-1.03955,1.489036,-1.743653,-1.001174,1.531976,-1.761666,-0.987283,1.582546,-1.747964,-0.998211,1.60566,-1.719386,-1.024938,1.601146,-1.688075,-1.086858,1.921423,-2.064111,-1.068296,1.899704,-1.982419,-0.893638,1.839904,-1.991942,-0.921592,1.695147,-1.908905,-0.928577,1.609252,-1.901734,-1.022224,1.613042,-1.904601,-0.980388,1.606508,-1.899021,-0.770965,2.046499,-1.83948,-0.766209,2.031315,-1.831073,-0.778344,2.013134,-1.851904,-0.78125,2.054178,-1.857896,-0.787717,2.076941,-1.870074,-0.782795,2.139188,-1.862146,-0.780094,1.969385,-1.853678,-0.786586,2.102902,-1.869002,-0.780494,2.248907,-1.856252,-0.789121,1.959818,-1.867247,-0.805242,1.876893,-1.896817,-0.792869,1.901649,-1.875573,-0.825397,1.881589,-1.929345,-0.956852,1.964619,-2.177468,-0.858607,2.350773,-1.98737,-0.802593,2.298152,-1.892979,-0.784878,1.965785,-1.861735,-0.785064,1.958665,-1.860324,-0.779681,1.993737,-1.853708,-0.787926,1.933539,-1.866181,-0.78109,2.008142,-1.856526,-0.776593,2.187663,-1.850717,-0.860432,1.892845,-1.982666,-0.794601,1.947565,-1.87638,-0.790768,1.982878,-1.871207,-0.841913,1.960709,-1.955117,-0.838194,2.012945,-1.953219,-0.784819,1.948357,-1.86023,-0.777807,1.979502,-1.85001,-0.879694,1.872426,-2.004775,-0.959859,1.878241,-2.200316,-0.952836,1.912463,-2.18265,-0.89803,1.824403,-2.026579,-0.812126,2.030814,-1.850989,-0.813415,2.013943,-1.850851,-0.789876,2.015155,-1.850057,-0.781518,2.02449,-1.831249,-0.785204,2.037364,-1.842752,-0.801929,2.018302,-1.832957,-0.805749,2.031416,-1.842492,-0.802212,2.040475,-1.863422,-0.934874,2.337096,-1.960248,-1.000626,2.276067,-1.948621,-0.958864,2.254072,-1.887849,-0.887031,2.296163,-1.868717,-0.998976,1.956567,-2.111943,-1.004514,1.932695,-2.028741,-0.995126,1.970366,-2.005205,-0.946586,1.909369,-1.999785,-0.941566,1.94221,-1.972572,-0.99959,2.003171,-1.983768,-0.968326,1.954046,-1.941907,-1.023635,2.047625,-1.969401,-1.032314,2.109643,-1.981833,-1.03443,2.05551,-1.965775,-1.010377,2.054502,-1.942021,-1.010989,2.103023,-1.951343,-1.042098,2.113752,-1.977065,-1.028685,2.171404,-1.969831,-0.993644,2.157819,-1.917783,-0.839598,2.111992,-1.838273,-0.8186,2.106611,-1.863678,-0.802274,2.14448,-1.844366,-0.848552,2.151654,-1.822169,-0.897386,1.907881,-1.978772,-0.881967,1.904045,-1.890008,-0.921459,1.920682,-1.90954,-0.920547,1.975819,-1.872033,-0.986082,2.029033,-1.917615,-0.939531,2.055101,-1.85845,-0.898153,2.044809,-1.839268,-0.894196,2.082356,-1.837585,-0.926613,2.084162,-1.844937,-0.924736,2.204244,-1.855795,-0.958569,2.162963,-1.886133,-0.865967,2.245466,-1.829827,-0.9566,2.050133,-1.879327,-0.905039,2.014532,-1.844066,-0.902453,2.147888,-1.82131,-0.929575,2.128974,-1.843342,-0.924984,2.107542,-1.847295,-0.885847,2.123466,-1.828982,-0.945443,2.095043,-1.859236,-0.929764,2.091455,-1.848789,-0.96871,2.113363,-1.894196,-0.84773,2.058219,-1.839784,-0.8065,2.058927,-1.86944,-0.816789,2.08936,-1.860777,-0.843423,2.088351,-1.842637,-0.802557,2.095558,-1.871376,-0.817187,2.096376,-1.869892,-0.840434,2.036982,-1.836409,-0.993878,2.093318,-1.918723,-0.882528,1.948371,-1.873858,-0.874307,1.982513,-1.850598,-0.86689,1.928221,-1.871205,-0.842214,1.971925,-1.858804,-0.827501,1.969459,-1.852022,-0.841417,1.974952,-1.854134,-0.847071,2.007375,-1.845252,-0.824104,1.97563,-1.846325,-0.800992,1.971918,-1.846933,-0.847935,1.885164,-1.913322,-0.838903,1.881618,-1.882265,-0.824741,1.906307,-1.864158,-0.802741,1.962014,-1.85309,-0.808504,1.963946,-1.859328,-0.829432,1.969342,-1.858518,-0.843526,1.974574,-1.861146,-0.826813,1.971781,-1.855465,-0.84057,2.018662,-1.844241,-1.010767,2.148443,-1.941362,-1.043237,2.159539,-1.964664,-0.805211,1.969324,-1.85431,-0.843929,1.97291,-1.861736,-0.805215,1.992598,-1.844016,-0.832352,1.991372,-1.843346,-0.854668,1.979731,-1.852546,-0.857135,1.968042,-1.860851,-0.840953,1.952795,-1.855654,-0.811349,1.938959,-1.857956,-0.7892,2.009493,-1.851873,-0.80281,2.189678,-1.836377,-0.917818,1.91412,-1.943084,-0.873661,1.895119,-1.924799,-0.84305,2.094105,-1.840727,-0.886422,2.098952,-1.830593,-0.887463,2.097587,-1.831648,-0.842,2.099943,-1.838706,-0.820154,2.096786,-1.877645,-0.846553,2.095371,-1.849325,-0.889854,2.098727,-1.839184,-0.933123,2.091063,-1.856953,-0.890507,2.097318,-1.839392,-0.845208,2.100286,-1.846396,-0.827617,2.095836,-1.902812,-0.862237,2.128827,-1.909429,-0.905896,2.122726,-1.899921,-0.940939,2.091091,-1.882239,-0.905266,2.08916,-1.891235,-0.870601,2.089519,-1.897915,-0.874129,2.100396,-1.901554,-0.910324,2.101074,-1.895712,-0.837865,1.959739,-1.87095,-0.816023,1.952951,-1.867063,-0.830489,1.985489,-1.871447,-0.857344,1.988508,-1.881714,-0.809552,1.983596,-1.864662,-0.862773,1.961205,-1.881971,-0.867627,1.961733,-1.92691,-0.858796,1.960793,-1.940589,-0.861371,2.004491,-1.929336,-0.869778,1.995948,-1.912777,-0.85117,2.008641,-1.942629,-0.8746,1.961864,-1.910457,-0.800034,1.981748,-1.842464,-0.826681,1.978719,-1.842314,-0.844242,1.977617,-1.85413,-0.849068,1.972454,-1.863363,-0.836692,1.961958,-1.857113,-0.806387,1.953089,-1.850269,-0.611271,0.890568,-1.439376,-0.651726,0.898758,-1.420567,-0.672272,0.933162,-1.461307,-0.635952,0.912618,-1.48824,-0.57541,0.86331,-1.388006,-0.599018,0.788133,-1.431755,-0.608731,0.777039,-1.317733,-0.56201,0.785809,-1.336496,-0.516741,0.80205,-1.333066,-0.530704,0.843885,-1.321245,-0.582538,0.821087,-1.289531,-0.56072,0.834959,-1.303067,-0.547237,0.848468,-1.350335,-0.508373,0.811471,-1.289211,-0.545341,0.799453,-1.269672,-0.554226,0.800572,-1.304369,-0.520428,0.845206,-1.289102,-0.577502,0.79398,-1.294468,-0.566914,0.804356,-1.262376,-0.571109,0.825345,-1.257662,-0.553429,0.800956,-1.24103,-0.554162,0.816467,-1.240419,-0.571361,0.802701,-1.27027,-0.592293,0.796432,-1.262869,-0.561526,0.797031,-1.247566,-0.579962,0.792373,-1.241286,-0.605718,0.788399,-1.289878,-0.622617,0.781641,-1.285375,-0.653926,0.766789,-1.308101,-0.63479,0.776909,-1.421921,-0.676054,0.765575,-1.409459,-0.68876,0.759207,-1.475665,-0.677855,0.863747,-1.414619,-0.699973,0.896006,-1.465127,-0.639803,0.772021,-1.485123,-0.648596,0.766101,-1.521461,-0.700968,0.75384,-1.507767,-0.655577,0.8293,-1.351358,-0.622396,0.855933,-1.365983,-0.604112,0.834772,-1.32735,-0.643807,0.811012,-1.316277,-0.599377,0.783827,-1.499736,-0.60287,0.776657,-1.54155,-0.614935,0.773035,-1.576089,-0.624812,0.903316,-1.524872,-0.661941,0.879132,-1.577778,-0.696355,0.874793,-1.580993,-0.717275,0.866219,-1.555729,-0.6872,0.801991,-1.608635,-0.653945,0.809007,-1.608818,-0.713759,0.795988,-1.589839,-0.733071,0.863797,-1.499996,-0.708036,0.751729,-1.541803,-0.657554,0.761061,-1.553851,-0.674349,0.759248,-1.596555,-0.697214,0.754672,-1.58037,-0.645062,0.766822,-1.59515,-0.608335,0.812266,-1.288115,-0.626039,0.802717,-1.281939,-0.620105,0.805665,-1.271938,-0.617819,0.787366,-1.278032,-0.608944,0.785192,-1.260466,-0.621543,0.775779,-1.255539,-0.635157,0.795293,-1.265694,-0.633277,0.778408,-1.269513,-0.62303,0.78645,-1.253619,-0.614286,0.796797,-1.25832,-0.642312,0.774499,-1.285614,-0.640638,0.793835,-1.284671,-0.599585,0.816399,-1.265932,-0.597559,0.79358,-1.273607,-0.587301,0.788816,-1.254383,-0.590072,0.804471,-1.247777,-0.603978,0.798643,-1.242135,-0.602694,0.785868,-1.247861,-0.614288,0.788184,-1.264159,-0.618988,0.808319,-1.256173,-0.598202,0.817578,-1.256291,-0.573584,0.825142,-1.264412,-0.545626,0.829843,-1.270803,-0.543834,0.809568,-1.2742,-0.536819,0.805083,-1.25047,-0.540271,0.819764,-1.248229,-0.551951,0.83638,-1.272791,-0.530716,0.805952,-1.244507,-0.508633,0.812276,-1.25003,-0.514059,0.82944,-1.250883,-0.53493,0.823249,-1.245144,-0.565938,0.813274,-1.242483,-0.582259,0.807996,-1.237154,-0.735851,0.993414,-1.54435,-0.705798,1.004119,-1.546854,-0.684167,0.997663,-1.560768,-0.673179,0.971027,-1.588608,-0.699628,0.943228,-1.616419,-0.734679,0.937488,-1.615719,-0.755856,0.947267,-1.592799,-0.753457,0.968894,-1.561638,-0.528774,0.795693,-1.361996,-0.580313,0.785607,-1.375632,-0.620619,0.775986,-1.356427,-0.662875,0.766383,-1.342142,-0.655825,0.796678,-1.311433,-0.664972,0.800629,-1.348782,-0.678365,0.806843,-1.414491,-0.694312,0.804008,-1.471446,-0.709874,0.800979,-1.513087,-0.717109,0.792229,-1.558446,-0.628437,0.81789,-1.579029,-0.619536,0.819553,-1.538761,-0.606558,0.827166,-1.4967,-0.581582,0.816054,-1.442127,-0.548296,0.798909,-1.393849,-0.701839,0.834648,-1.588355,-0.693538,0.840145,-1.60052,-0.678315,0.840133,-1.599576,-0.841693,1.492429,-1.588433,-0.845237,1.466752,-1.59502,-0.838461,1.45414,-1.608418,-0.829522,1.46268,-1.623131,-0.82235,1.481451,-1.626917,-0.816681,1.497008,-1.62644,-0.821923,1.508406,-1.61401,-0.829421,1.514629,-1.598839,-0.994201,1.81458,-1.942352,-1.058663,1.873904,-2.145112,-0.890093,1.800399,-2.003258,-1.053783,1.85535,-2.044547,-0.741654,1.111678,-1.603071,-0.715715,1.105936,-1.624484,-0.77799,1.106473,-1.604365,-0.707219,1.089343,-1.669584,-0.737465,1.058502,-1.701362,-0.787421,1.04855,-1.697522,-0.817735,1.068125,-1.664047,-0.81053,1.096427,-1.62892,-0.823119,1.159345,-1.651908,-0.827669,1.125398,-1.661961,-1.022791,1.903466,-2.124622,-1.025063,1.879481,-2.056045,-0.979918,1.833844,-1.992004,-0.814727,1.445157,-1.594855,-0.798192,1.45478,-1.606893,-0.792927,1.476466,-1.61013,-0.821802,1.489181,-1.570114,-0.819522,1.458691,-1.575543,-0.803099,1.508596,-1.602286,-0.808479,1.513695,-1.580852,-0.787293,1.493348,-1.608853,-0.720223,1.459274,-1.535473,-0.711057,1.496369,-1.528742,-0.731565,1.465035,-1.51579,-0.733927,1.493726,-1.518723,-0.774283,1.42931,-1.58552,-0.731127,1.43793,-1.53999,-0.791668,1.433264,-1.565469,-0.730629,1.44303,-1.526112,-0.727944,1.417752,-1.537775,-0.724216,1.437931,-1.542614,-0.723409,1.426426,-1.524573,-0.717781,1.442207,-1.532138,-0.713405,1.421873,-1.55446,-0.718447,1.441727,-1.553716,-0.69871,1.430339,-1.552549,-0.702746,1.447144,-1.552829,-0.715787,1.433157,-1.573154,-0.720733,1.450494,-1.569659,-0.700772,1.441776,-1.573416,-0.704325,1.455586,-1.571545,-0.717246,1.444242,-1.58892,-0.721559,1.457333,-1.585505,-0.704991,1.449263,-1.588857,-0.708742,1.461692,-1.586381,-0.714423,1.438153,-1.531787,-0.715626,1.45837,-1.539343,-0.709258,1.446558,-1.518109,-0.709119,1.465117,-1.52299,-0.701456,1.440192,-1.548109,-0.709234,1.459565,-1.547699,-0.686276,1.450139,-1.548471,-0.692538,1.466235,-1.548343,-0.705179,1.444212,-1.571918,-0.712887,1.463207,-1.570646,-0.689494,1.454579,-1.57626,-0.696221,1.46887,-1.575382,-0.707032,1.450715,-1.594598,-0.713461,1.463281,-1.593182,-0.695821,1.456623,-1.597099,-0.701192,1.468306,-1.596672,-0.790227,1.520362,-1.581975,-0.712243,1.515113,-1.53981,-0.738625,1.523916,-1.534578,-0.731469,1.527466,-1.58795,-0.752594,1.546371,-1.601852,-0.737457,1.536011,-1.552115,-0.755648,1.551722,-1.58302,-0.681143,1.558866,-1.577296,-0.687401,1.572374,-1.582644,-0.684466,1.560989,-1.564735,-0.69129,1.574108,-1.569878,-0.708218,1.496854,-1.523262,-0.711492,1.516139,-1.526565,-0.71754,1.493893,-1.51042,-0.722337,1.513717,-1.513062,-0.68214,1.495452,-1.509595,-0.685768,1.514122,-1.508395,-0.688114,1.491941,-1.494962,-0.692084,1.507899,-1.495037,-0.663252,1.494512,-1.498661,-0.664323,1.511961,-1.49689,-0.657936,1.495345,-1.486552,-0.665668,1.506284,-1.485376,-0.639993,1.500895,-1.50928,-0.642822,1.512724,-1.505086,-0.635146,1.50011,-1.498549,-0.638949,1.510786,-1.496394,-0.703348,1.469848,-1.518332,-0.705457,1.493357,-1.517378,-0.712754,1.469163,-1.50217,-0.716464,1.491203,-1.50388,-0.676222,1.471941,-1.50452,-0.678235,1.493625,-1.502312,-0.679575,1.46989,-1.484724,-0.681948,1.488398,-1.483064,-0.656608,1.469428,-1.502219,-0.656038,1.489037,-1.502143,-0.649197,1.468991,-1.482948,-0.65001,1.486137,-1.484116,-0.634674,1.473367,-1.508113,-0.634958,1.487798,-1.50646,-0.628842,1.470877,-1.495534,-0.630084,1.484302,-1.494212,-0.734911,1.424396,-1.549291,-0.740756,1.425938,-1.531375,-0.775379,1.451963,-1.589169,-0.773534,1.478484,-1.596896,-0.776758,1.516012,-1.606005,-0.746314,1.504247,-1.589047,-0.765674,1.495116,-1.596,-0.761375,1.47984,-1.575438,-0.725512,1.468277,-1.539581,-0.72644,1.496477,-1.546067,-0.75494,1.448267,-1.568447,-0.736997,1.44597,-1.544486,-0.726825,1.510496,-1.553803,-0.736186,1.522535,-1.588503,-0.723044,1.564878,-1.577722,-0.714488,1.548102,-1.569855,-0.709866,1.542344,-1.583774,-0.718287,1.560224,-1.59399,-0.797823,1.109506,-1.695556,-0.758134,1.128309,-1.696392,-0.729069,1.16195,-1.69794,-0.795459,1.17818,-1.643885,-0.737608,1.177069,-1.669681,-0.762969,1.1837,-1.648393,-0.611732,1.370626,-1.702114,-0.776754,1.252017,-1.63019,-0.833383,1.209805,-1.610381,-0.852713,1.123692,-1.619931,-0.821862,1.072974,-1.64737,-0.653436,1.306733,-1.691846,-0.696305,1.124214,-1.656885,-0.827913,1.317314,-1.980914,-0.778337,1.325265,-1.943631,-0.682599,1.370023,-1.844636,-0.851658,1.314162,-1.771259,-0.923236,1.342953,-1.90287,-0.990737,1.339821,-2.017616,-0.913318,1.25813,-1.735528,-0.993133,1.278925,-1.865309,-1.052959,1.285254,-1.984519,-0.93014,1.156378,-1.726961,-1.004499,1.176898,-1.868647,-1.070746,1.181916,-1.988144,-0.900503,1.09235,-1.748786,-0.99025,1.087283,-1.914284,-1.041466,1.105334,-2.04669,-0.774001,1.082354,-1.790763,-0.856822,1.035128,-2.029874,-0.882506,1.089057,-2.149911,-0.721923,1.260028,-1.636259,-0.794943,1.319869,-1.808443,-0.853427,1.336276,-1.951333,-0.925437,1.337423,-2.029158,-0.842086,1.129367,-1.637475,-0.828188,1.183919,-1.628294,-0.780637,1.226686,-1.631141,-0.816493,1.094457,-1.672646,-0.75579,1.114381,-1.68766,-0.670489,1.259352,-1.687331,-0.69,1.196453,-1.692106,-0.724997,1.228515,-1.645738,-0.689589,1.161384,-1.677918,-0.621629,1.332273,-1.689147,-0.654677,1.245224,-1.683118,-0.731691,1.118125,-1.688564,-0.890268,1.570496,-1.903728,-0.938226,1.568776,-1.901829,-0.738036,1.077644,-1.670247,-0.949523,1.088777,-2.145039,-0.908663,1.032166,-2.031695,-0.821604,1.056583,-1.808578,-1.099886,1.178095,-2.074968,-1.027387,1.331078,-2.060589,-0.896437,1.137906,-2.182481,-0.948104,1.339755,-2.039015,-1.058329,1.138402,-2.115027,-1.092244,1.277075,-2.05305,-0.838214,1.331205,-1.999091,-0.950581,1.127156,-2.191308,-1.030873,1.586395,-2.198394,-1.054155,1.675702,-2.203145,-1.066709,1.783049,-2.19588,-1.055527,1.872993,-2.154529,-1.033743,1.938184,-2.12831,-0.95725,1.419325,-2.225855,-0.949466,1.133181,-2.180855,-0.715371,1.168266,-1.693037,-0.706179,1.22076,-1.670335,-0.891273,1.334427,-1.985779,-0.920802,1.387342,-1.943969,-0.73544,1.327685,-1.838723,-0.815562,1.324638,-1.959207,-0.885543,1.315714,-1.996428,-0.899583,1.331369,-2.009946,-0.769782,2.086271,-2.012434,-0.759721,2.102682,-2.011637,-0.416373,0.146985,1.025208,-0.400502,0.162878,1.026151,-0.384683,0.146985,1.027747,-0.400554,0.131093,1.026804,-0.280586,0.043055,0.553389,-0.264715,0.058947,0.554331,-0.248897,0.043055,0.555928,-0.264768,0.027162,0.554985,-0.473995,0.077052,-0.34244,-0.452182,0.08246,-0.342984,-0.446948,0.060953,-0.346912,-0.468761,0.055545,-0.346368,-0.626549,0.199275,-0.761444,-0.60574,0.205166,-0.764254,-0.617382,0.14555,-0.779565,-0.626514,0.166671,-0.773162,-0.635484,0.649522,-1.289687,-0.620204,0.637289,-1.279622,-0.612534,0.629654,-1.298874,-0.629184,0.641579,-1.30897,-0.436483,0.887671,-1.126996,-0.426784,0.882703,-1.118906,-0.386365,0.880219,-1.160721,-0.419544,0.881292,-1.145519,-0.461556,1.273906,-1.357679,-0.440636,1.282484,-1.352326,-0.436298,1.273888,-1.372298,-0.45531,1.267273,-1.375034,-0.579936,1.61798,-1.454371,-0.561991,1.630595,-1.457984,-0.548598,1.612526,-1.468415,-0.571101,1.602333,-1.467281,-0.660759,1.550935,-1.628514,-0.656038,1.556495,-1.650301,-0.637397,1.549515,-1.646772,-0.626313,1.536025,-1.609886,-0.678771,1.51453,-1.606636,-0.684535,1.532267,-1.611105,-0.616209,1.565886,-1.551164,-0.642808,1.588658,-1.56661,-0.680773,1.577628,-1.516217,-0.653568,1.55511,-1.500257,-0.732438,1.521958,-1.548832,-0.704345,1.502063,-1.530858,-0.69173,1.459279,-1.592399,-0.689915,1.468901,-1.579869,-0.719569,1.452363,-1.555595,-0.69125,1.460174,-1.531119,-0.662251,1.568324,-1.57703,-0.675118,1.550397,-1.590658,-0.673806,1.564386,-1.559346,-0.689498,1.546494,-1.57046,-0.685929,1.573646,-1.588846,-0.696366,1.555687,-1.60042,-0.698635,1.569947,-1.572772,-0.711779,1.551203,-1.581846,-0.65188,1.578918,-1.580745,-0.694727,1.550095,-1.614687,-0.673979,1.571475,-1.548977,-0.702865,1.537939,-1.567841,-0.671056,1.595879,-1.592223,-0.694868,1.562711,-1.616802,-0.693909,1.588591,-1.560249,-0.722383,1.554026,-1.578962,-0.624579,1.520931,-1.639489,-0.650575,1.543251,-1.6565,-0.588726,1.575378,-1.590662,-0.614505,1.598401,-1.606363,-0.578852,1.612558,-1.659068,-0.553502,1.589545,-1.643877,-0.604865,1.563185,-1.719341,-0.591343,1.547632,-1.710922,-0.617794,1.482338,-1.690778,-0.590817,1.489083,-1.666725,-0.590092,1.492672,-1.727828,-0.57915,1.504834,-1.712671,-0.623703,1.581246,-1.630106,-0.634543,1.563742,-1.645691,-0.610504,1.585616,-1.646603,-0.619629,1.569479,-1.665285,-0.630526,1.594991,-1.587593,-0.603467,1.571478,-1.571453,-0.669609,1.538905,-1.635123,-0.663138,1.519959,-1.629727,-0.632582,1.580112,-1.628426,-0.650071,1.569561,-1.654716,-0.625986,1.590113,-1.654094,-0.633959,1.574434,-1.672819,-0.626712,1.587434,-1.615601,-0.646565,1.555804,-1.644591,-0.603399,1.595331,-1.646756,-0.631847,1.56968,-1.688817,-0.645811,1.60438,-1.626616,-0.665667,1.572252,-1.655643,-0.62216,1.612758,-1.658097,-0.636923,1.581947,-1.692747,-0.677726,0.46364,-1.143274,-0.696976,0.469872,-1.147076,-0.699007,0.481189,-1.128747,-0.679538,0.474985,-1.124749,-0.267779,0.14555,-0.031016,-0.282719,0.129819,-0.027405,-0.252797,0.129513,-0.033511,-0.267737,0.113781,-0.0299],
"name": "animation_000001"
},{
"vertices": [-0.838356,2.051212,-1.6044,-0.906783,2.062913,-1.659218,-0.931886,2.133861,-1.612738,-0.863459,2.12216,-1.55792,-0.931174,2.000874,-1.566432,-0.966841,2.015554,-1.607368,-1.001776,2.037413,-1.569091,-0.966109,2.022733,-1.528155,-1.048003,1.801186,-1.583244,-1.058252,1.808453,-1.596254,-1.067682,1.817464,-1.583724,-1.057393,1.810179,-1.570737,-0.932425,2.080116,-1.606609,-0.964074,2.080638,-1.665343,-0.998106,2.134853,-1.646523,-0.966458,2.13433,-1.587788,-1.003106,1.974223,-1.572838,-1.030252,1.96669,-1.614999,-1.073008,1.974372,-1.588844,-1.045863,1.981906,-1.546682,-0.950467,1.8016,-1.557996,-0.963732,1.794785,-1.57766,-0.980095,1.782221,-1.565098,-0.967153,1.78908,-1.545252,-0.955335,2.109493,-1.675533,-0.914098,2.069041,-1.660412,-0.909209,2.094186,-1.606473,-0.950446,2.134639,-1.621594,-1.075382,1.963304,-1.642013,-1.007575,1.926896,-1.627616,-1.024998,1.924254,-1.551222,-1.092862,1.960881,-1.565581,-1.115143,1.786692,-1.714225,-1.065188,1.776164,-1.700535,-1.078293,1.780345,-1.649501,-1.128248,1.790873,-1.663191,-1.116999,1.676731,-1.627564,-1.09649,1.676944,-1.623509,-1.1,1.688377,-1.606359,-1.120509,1.688164,-1.610415,-0.772884,2.068546,-1.65484,-0.822353,2.068723,-1.644739,-0.81627,2.109553,-1.615667,-0.766801,2.109376,-1.625769,-0.784867,2.016583,-1.586293,-0.795807,2.017119,-1.584585,-0.794136,2.023969,-1.576032,-0.783197,2.023433,-1.577739,-0.771404,2.038934,-1.739275,-0.784987,2.031855,-1.675734,-0.729002,2.061906,-1.660418,-0.715419,2.068986,-1.723959,-0.761279,1.997992,-1.742748,-0.771196,1.97891,-1.68586,-0.711209,1.977083,-1.676015,-0.701292,1.996166,-1.732903,-0.780835,1.824893,-1.815814,-0.784963,1.815717,-1.791027,-0.756722,1.816031,-1.786341,-0.752799,1.824423,-1.811035,-0.746036,1.713706,-1.849918,-0.747825,1.709365,-1.840737,-0.73798,1.71091,-1.838088,-0.736191,1.715251,-1.847269,-0.810263,2.057664,-1.77062,-0.772306,2.063077,-1.738019,-0.749209,2.094241,-1.770084,-0.787166,2.088829,-1.802685,-0.761461,1.999017,-1.775993,-0.747753,2.006876,-1.760598,-0.735201,2.01586,-1.77636,-0.748908,2.008001,-1.791755,-0.70265,1.944576,-1.777935,-0.697493,1.948654,-1.771289,-0.692611,1.952856,-1.777985,-0.697787,1.948689,-1.784622,-0.876684,2.056836,-1.754163,-0.791184,2.080059,-1.757286,-0.804706,2.119309,-1.835618,-0.890206,2.096087,-1.832495,-0.823206,1.994527,-1.729378,-0.755135,2.035027,-1.728386,-0.754099,2.035227,-1.807592,-0.82217,1.994727,-1.808585,-0.753509,1.887141,-1.774774,-0.689998,1.890173,-1.77982,-0.70361,1.919433,-1.839136,-0.770001,1.904929,-1.832803,-0.761176,1.78383,-1.878124,-0.729064,1.788461,-1.88182,-0.734989,1.813656,-1.90173,-0.767101,1.809025,-1.898034,-0.743744,1.753264,-1.956434,-0.727654,1.757127,-1.955966,-0.730838,1.77134,-1.963833,-0.746928,1.767477,-1.964301,-0.963524,1.902479,-1.588956,-0.984264,1.906693,-1.617047,-1.007801,1.911064,-1.592256,-0.985707,1.901882,-1.565058,-0.822489,2.094278,-1.654754,-0.992382,1.868558,-1.586784,-1.008486,1.875613,-1.610452,-1.023395,1.887208,-1.589633,-1.006242,1.876817,-1.566643,-0.866575,2.103737,-1.631543,-0.907844,2.162652,-1.690186,-0.878546,2.160909,-1.630268,-0.979648,1.902523,-1.567303,-0.999643,1.89158,-1.598609,-1.028113,1.876974,-1.577199,-1.008232,1.887822,-1.545832,-0.913805,2.129553,-1.698785,-0.990905,2.063093,-1.663174,-0.936972,2.028979,-1.650999,-0.937871,2.049548,-1.589381,-0.991805,2.083662,-1.601555,-0.802309,2.163091,-1.680213,-0.849832,2.164031,-1.727549,-0.813417,2.095563,-1.670144,-0.791957,2.156183,-1.690485,-0.779519,2.073562,-1.702209,-0.824313,2.067153,-1.677818,-0.830801,2.129338,-1.653835,-0.771563,2.118627,-1.66833,-0.769768,1.920005,-1.777772,-0.775317,1.913915,-1.739505,-0.732131,1.904483,-1.736273,-0.72686,1.909946,-1.774402,-0.829495,2.071308,-1.747971,-0.854688,2.035439,-1.741039,-0.786436,2.083984,-1.740989,-0.772703,2.06476,-1.821344,-0.840955,2.016214,-1.821394,-0.878746,2.094863,-1.695938,-0.903903,2.15652,-1.647989,-0.838422,2.152198,-1.615842,-0.839739,2.157129,-1.738078,-0.79126,2.06631,-1.747967,-0.80364,2.131341,-1.77447,-0.75741,2.114462,-1.73715,-0.869111,2.140301,-1.751583,-0.860149,2.082242,-1.722151,-0.850296,1.93761,-1.696427,-0.858085,1.938467,-1.714183,-0.851031,1.94081,-1.750549,-0.837894,1.941846,-1.764164,-0.813921,1.946393,-1.676263,-0.853586,1.962901,-1.733505,-0.818028,1.967429,-1.685138,-0.834449,1.982532,-1.716965,-0.837477,1.979965,-1.735733,-0.835162,1.971228,-1.752949,-0.800569,1.972253,-1.689137,-0.814313,1.986588,-1.74118,-0.788152,1.953689,-1.682118,-0.784751,1.982779,-1.72908,-0.80066,1.972452,-1.762821,-0.811073,1.958769,-1.77163,-0.796158,1.938224,-1.67738,-0.780952,1.947487,-1.684297,-0.764886,1.962241,-1.71566,-0.766676,1.965147,-1.73479,-0.804087,1.952126,-1.773652,-0.778108,1.939153,-1.685683,-0.764593,1.940267,-1.700265,-0.758665,1.942357,-1.738979,-0.767218,1.942963,-1.757232,-0.801426,1.9431,-1.774419,-0.780013,1.930989,-1.68568,-0.762607,1.922448,-1.719118,-0.77292,1.922657,-1.7566,-0.786983,1.927041,-1.768898,-0.786607,1.925086,-1.684555,-0.799279,1.915443,-1.765871,-0.819433,1.924778,-1.770374,-0.834314,1.904737,-1.741113,-0.833239,1.913529,-1.756471,-0.851695,1.918085,-1.736223,-0.816135,1.937563,-1.676393,-0.83503,1.93737,-1.68312,-0.858271,1.939608,-1.733178,-0.830475,1.954246,-1.683108,-0.844094,1.960532,-1.69623,-0.852496,1.963787,-1.714095,-0.847322,1.958266,-1.750976,-0.83588,1.951109,-1.764607,-0.80716,1.953241,-1.677331,-0.827406,1.977774,-1.699036,-0.82954,1.958185,-1.766321,-0.797684,1.955888,-1.679546,-0.804534,1.983288,-1.704123,-0.809365,1.988803,-1.722274,-0.818471,1.976684,-1.757477,-0.820464,1.961022,-1.768893,-0.782913,1.968172,-1.693694,-0.781867,1.978262,-1.710256,-0.791239,1.981024,-1.747822,-0.769647,1.956081,-1.697804,-0.774426,1.964467,-1.752955,-0.78769,1.959857,-1.766646,-0.757594,1.941404,-1.719046,-0.782626,1.943227,-1.769403,-0.767918,1.925483,-1.700407,-0.764576,1.921567,-1.738597,-0.803732,1.934146,-1.774189,-0.780024,1.915306,-1.698213,-0.778193,1.909638,-1.716123,-0.781662,1.907709,-1.734831,-0.789078,1.9088,-1.752507,-0.81034,1.92748,-1.772816,-0.795935,1.922387,-1.682294,-0.797415,1.910795,-1.694302,-0.80084,1.903788,-1.710779,-0.805782,1.900622,-1.728994,-0.811362,1.902197,-1.746852,-0.816225,1.910458,-1.761407,-0.805771,1.923809,-1.679675,-0.815724,1.912638,-1.689589,-0.824404,1.905423,-1.704925,-0.831152,1.902041,-1.722984,-0.813246,1.929288,-1.677506,-0.829559,1.92217,-1.685546,-0.84248,1.917351,-1.699665,-0.850476,1.915554,-1.717498,-0.846157,1.924309,-1.752828,-0.835137,1.93297,-1.765081,-0.820525,2.203197,-1.761103,-0.759845,2.101918,-1.788883,-0.739973,2.073782,-1.724396,-0.777286,2.141451,-1.675976,-0.82017,1.827297,-1.918662,-0.767599,1.788125,-1.883126,-0.760014,1.750705,-1.846783,-0.784135,1.895332,-1.916505,-0.773516,1.9671,-1.910719,-0.889921,2.006311,-1.93909,-0.747625,1.838531,-1.858725,-0.725977,1.916776,-1.843192,-0.895278,2.105359,-1.899722,-0.792208,2.055953,-1.895788,-0.781336,2.102709,-1.855184,-0.867835,2.198851,-1.870728,-0.726582,1.994074,-1.820039,-0.723712,1.953828,-1.767208,-0.74287,1.814653,-1.831371,-0.712558,1.882931,-1.789997,-0.906953,1.901909,-1.923698,-0.906879,1.830886,-1.922243,-0.666688,1.076678,-2.045553,-0.524721,1.496628,-1.539204,-0.526268,1.46309,-1.544086,-0.548359,1.444547,-1.545048,-0.575351,1.452611,-1.543476,-0.589309,1.476756,-1.538472,-0.588254,1.501685,-1.535118,-0.571785,1.52,-1.534008,-0.54562,1.521979,-1.534895,-0.74917,1.621056,-2.167715,-0.783036,1.66963,-1.889759,-0.771981,1.779347,-2.026088,-0.783589,1.557087,-2.20896,-0.735556,1.490615,-2.037952,-0.730519,1.507048,-2.143956,-0.806456,1.740818,-2.11244,-0.810598,1.677369,-1.86674,-0.831488,1.599612,-1.884378,-0.759955,1.73752,-1.943715,-0.568501,1.665412,-1.990504,-0.562016,1.599515,-2.02378,-0.585762,1.639965,-2.073581,-0.592513,1.712256,-2.033852,-0.617051,1.560184,-2.041797,-0.637147,1.575859,-2.085157,-0.673895,1.670105,-1.938444,-0.618984,1.694107,-1.951497,-0.650961,1.728937,-1.981543,-0.66727,1.663351,-1.937764,-0.704992,1.574304,-1.984799,-0.703311,1.616456,-1.946757,-0.689339,1.594637,-1.940174,-0.721767,1.542251,-2.008857,-0.671793,1.55538,-2.023946,-0.688902,1.557995,-2.062511,-0.545502,1.59291,-1.916066,-0.550174,1.545813,-1.931118,-0.59146,1.513013,-1.924472,-0.622716,1.620592,-1.865072,-0.573714,1.624109,-1.887169,-0.670913,1.550169,-1.880451,-0.661743,1.591905,-1.863396,-0.64204,1.521754,-1.901414,-0.545356,1.459728,-1.740063,-0.579459,1.466787,-1.742738,-0.538415,1.491534,-1.829232,-0.515851,1.523509,-1.831793,-0.516797,1.48351,-1.746107,-0.520415,1.546908,-1.809844,-0.545699,1.454083,-1.645798,-0.580398,1.461972,-1.643419,-0.600262,1.495725,-1.648288,-0.513935,1.516968,-1.653699,-0.518219,1.476343,-1.647964,-0.570981,1.551655,-1.640375,-0.537693,1.549749,-1.644748,-0.595001,1.532376,-1.641106,-0.700027,1.318569,-2.068792,-0.741404,1.344557,-2.203856,-0.690636,1.335868,-2.145425,-0.630934,1.199697,-2.148544,-0.751247,1.533672,-1.970265,-0.734446,1.225703,-2.057993,-0.737419,1.068759,-2.055649,-0.600578,1.137078,-2.119085,-0.800594,1.343445,-2.219998,-0.860113,1.660276,-2.171466,-0.890827,1.583948,-2.210493,-0.7608,1.308208,-1.99701,-0.78482,1.453082,-1.973593,-0.781777,1.528701,-1.944202,-0.785028,1.609318,-1.904617,-0.722099,1.587793,-1.917247,-0.707564,1.645235,-1.909054,-0.69386,1.724291,-1.964241,-0.705533,1.763754,-2.043141,-0.685058,1.699144,-2.126455,-0.512111,1.535186,-1.771188,-0.515718,1.488006,-1.783949,-0.535044,1.470247,-1.78753,-0.559515,1.466029,-1.786941,-0.605105,1.50206,-1.769621,-0.606025,1.553641,-1.7548,-0.578421,1.578029,-1.751729,-0.538966,1.575189,-1.75762,-0.834991,1.800887,-1.948631,-0.777152,1.755103,-1.909901,-0.817079,1.505784,-1.910963,-0.825023,1.452843,-1.944131,-0.751833,1.495128,-1.997695,-0.783651,1.474375,-1.969321,-0.811984,1.887182,-1.635975,-0.809197,1.876658,-1.636509,-0.821384,1.875552,-1.616055,-0.810532,1.878427,-1.599714,-0.818801,1.888775,-1.609674,-0.800106,1.877207,-1.617918,-0.807983,1.887012,-1.62627,-0.826749,1.893254,-1.635569,-0.86172,2.172153,-1.812645,-0.814008,2.112316,-1.861004,-0.781463,2.09512,-1.793401,-0.804505,2.138544,-1.723488,-0.910935,1.803249,-1.911129,-0.844594,1.775504,-1.867426,-0.840415,1.805023,-1.857454,-0.855675,1.736701,-1.82181,-0.840544,1.774385,-1.801697,-0.826208,1.83998,-1.858982,-0.802504,1.792084,-1.810506,-0.804934,1.885276,-1.877056,-0.81495,1.943982,-1.897722,-0.796759,1.892859,-1.885559,-0.788781,1.896906,-1.85372,-0.798836,1.939422,-1.864368,-0.805992,1.9483,-1.904403,-0.810518,2.006209,-1.891791,-0.78265,1.996667,-1.834727,-0.797004,1.978216,-1.672271,-0.822422,1.947179,-1.657154,-0.816291,1.977615,-1.633798,-0.776915,1.9989,-1.66665,-0.866976,1.733546,-1.770072,-0.800492,1.764902,-1.709468,-0.797061,1.77921,-1.753224,-0.760837,1.878102,-1.739746,-0.778696,1.888502,-1.818446,-0.751144,1.91685,-1.754188,-0.760211,1.914889,-1.710038,-0.765719,1.922326,-1.716734,-0.749257,1.931419,-1.740036,-0.767714,2.047573,-1.745825,-0.773649,2.004216,-1.788694,-0.778179,2.090023,-1.683698,-0.760758,1.915831,-1.777082,-0.75659,1.908592,-1.711618,-0.748499,1.996421,-1.71235,-0.749669,1.973244,-1.741731,-0.754226,1.953678,-1.740412,-0.765724,1.980274,-1.707443,-0.752145,1.942971,-1.761785,-0.751473,1.936806,-1.744945,-0.771824,1.955293,-1.799561,-0.791179,1.903604,-1.668803,-0.830304,1.906322,-1.644594,-0.820801,1.923071,-1.653487,-0.799984,1.910519,-1.675991,-0.836127,1.930959,-1.644721,-0.828116,1.929899,-1.658585,-0.788966,1.894574,-1.654523,-0.778726,1.933349,-1.832843,-0.774714,1.831588,-1.710592,-0.763314,1.896062,-1.691037,-0.787708,1.794375,-1.691198,-0.78096,1.867977,-1.67029,-0.788533,1.848738,-1.651844,-0.781161,1.871854,-1.665613,-0.785601,1.885232,-1.661948,-0.786067,1.860835,-1.646426,-0.802162,1.852159,-1.62549,-0.838192,1.72606,-1.693623,-0.816223,1.72441,-1.668857,-0.80966,1.755064,-1.648095,-0.812168,1.837651,-1.626279,-0.812474,1.837431,-1.635586,-0.79157,1.849114,-1.657555,-0.783872,1.869537,-1.671866,-0.789139,1.856526,-1.654778,-0.790905,1.886482,-1.656865,-0.793536,1.98552,-1.861041,-0.797849,1.994844,-1.901245,-0.804577,1.850512,-1.633481,-0.782885,1.868391,-1.673,-0.803192,1.863994,-1.626401,-0.78738,1.871518,-1.649036,-0.774222,1.881877,-1.675796,-0.769678,1.872102,-1.686661,-0.777478,1.834986,-1.667784,-0.809798,1.805074,-1.635999,-0.822599,1.871846,-1.616298,-0.811782,2.027424,-1.630642,-0.827282,1.75945,-1.766657,-0.834939,1.742326,-1.720748,-0.795419,1.968467,-1.674115,-0.764469,1.96605,-1.706389,-0.766798,1.924967,-1.712131,-0.79939,1.913759,-1.675673,-0.833169,1.92942,-1.664864,-0.800015,1.963212,-1.680194,-0.769,1.961357,-1.712409,-0.756491,1.936156,-1.751369,-0.771117,1.92512,-1.719002,-0.804314,1.914736,-1.68208,-0.849979,1.927996,-1.682484,-0.840411,1.96278,-1.717026,-0.809573,1.960994,-1.749414,-0.773696,1.935088,-1.769249,-0.79953,1.931043,-1.744416,-0.823121,1.92707,-1.717361,-0.82488,1.937874,-1.7216,-0.801429,1.941599,-1.750043,-0.796303,1.83574,-1.670962,-0.81389,1.820854,-1.645923,-0.809242,1.859263,-1.662781,-0.803113,1.865063,-1.690455,-0.817472,1.857167,-1.640249,-0.79432,1.837079,-1.696137,-0.847919,1.804853,-1.715346,-0.866284,1.797312,-1.714643,-0.854332,1.850118,-1.714463,-0.832357,1.851097,-1.713277,-0.872722,1.847495,-1.712914,-0.826338,1.814437,-1.714087,-0.801935,1.857243,-1.621647,-0.784197,1.86429,-1.645221,-0.781638,1.875063,-1.667243,-0.77871,1.872336,-1.680001,-0.780597,1.848418,-1.665521,-0.806738,1.827175,-1.627915,-0.606914,1.069241,-1.677124,-0.561854,1.070047,-1.682262,-0.555032,1.12688,-1.700454,-0.604579,1.120306,-1.706981,-0.617656,1.011224,-1.642681,-0.637399,0.983369,-1.726091,-0.575095,0.906158,-1.667997,-0.62138,0.917532,-1.649554,-0.653642,0.921275,-1.613917,-0.626275,0.948502,-1.589534,-0.572565,0.919061,-1.610999,-0.594262,0.934882,-1.599568,-0.625891,0.972387,-1.613406,-0.636568,0.900383,-1.57712,-0.5988,0.884565,-1.591823,-0.608406,0.908073,-1.617105,-0.618529,0.928247,-1.563644,-0.585594,0.900343,-1.62726,-0.576008,0.887089,-1.595922,-0.565229,0.901078,-1.582942,-0.577428,0.869333,-1.577708,-0.572869,0.881085,-1.568618,-0.576617,0.891319,-1.60408,-0.55693,0.885027,-1.614331,-0.574847,0.871512,-1.588304,-0.557424,0.866786,-1.596971,-0.561066,0.897396,-1.64269,-0.546304,0.891907,-1.652863,-0.534981,0.89902,-1.692086,-0.605277,0.973951,-1.745631,-0.567288,0.963649,-1.766542,-0.59116,1.001286,-1.81752,-0.545302,1.043153,-1.713029,-0.544059,1.103063,-1.737587,-0.633725,1.009744,-1.789824,-0.645879,1.028793,-1.820192,-0.598222,1.018668,-1.846783,-0.540472,0.974279,-1.682733,-0.5692,0.998964,-1.658453,-0.570184,0.956111,-1.637544,-0.537115,0.936802,-1.665765,-0.671975,1.021858,-1.770398,-0.691574,1.042514,-1.80204,-0.69956,1.062725,-1.831694,-0.634553,1.133444,-1.728144,-0.636519,1.152531,-1.794753,-0.611406,1.15572,-1.817261,-0.582445,1.137478,-1.81877,-0.648655,1.115906,-1.872929,-0.674857,1.116509,-1.851289,-0.618533,1.103657,-1.879037,-0.541914,1.104058,-1.795043,-0.609774,1.038998,-1.872593,-0.65572,1.046122,-1.847717,-0.663402,1.073455,-1.883813,-0.637328,1.063366,-1.888722,-0.685368,1.074103,-1.862978,-0.552398,0.915193,-1.62899,-0.536787,0.906633,-1.640204,-0.536066,0.90189,-1.629209,-0.545307,0.891117,-1.642466,-0.544474,0.877319,-1.628289,-0.533714,0.868872,-1.637481,-0.522828,0.892256,-1.639458,-0.530264,0.881241,-1.650709,-0.529011,0.876181,-1.630831,-0.536221,0.885786,-1.622997,-0.531661,0.889449,-1.667645,-0.528049,0.903603,-1.65483,-0.547681,0.903465,-1.608352,-0.558554,0.890199,-1.625368,-0.558659,0.87317,-1.610964,-0.549378,0.881652,-1.599203,-0.536329,0.875738,-1.606546,-0.543253,0.869167,-1.616867,-0.541151,0.882701,-1.631626,-0.528522,0.894094,-1.617413,-0.543756,0.898248,-1.601029,-0.566573,0.905437,-1.588504,-0.591989,0.908848,-1.574828,-0.599939,0.894959,-1.587857,-0.595025,0.87586,-1.572253,-0.58758,0.886371,-1.564095,-0.586165,0.916076,-1.575562,-0.596945,0.871962,-1.564859,-0.616644,0.876971,-1.552815,-0.608509,0.891601,-1.54614,-0.589683,0.886382,-1.557329,-0.564818,0.881631,-1.578,-0.54978,0.876694,-1.586491,-0.555409,1.240131,-1.783405,-0.57048,1.245621,-1.755714,-0.594758,1.241479,-1.745847,-0.629868,1.226218,-1.757517,-0.644534,1.216672,-1.800567,-0.626533,1.217261,-1.831102,-0.595044,1.22061,-1.835765,-0.566442,1.227731,-1.813975,-0.659504,0.935915,-1.641728,-0.625646,0.944145,-1.68332,-0.584696,0.930885,-1.698591,-0.544564,0.920953,-1.717895,-0.528036,0.924508,-1.677588,-0.53808,0.951879,-1.702968,-0.558176,0.99906,-1.746622,-0.573903,1.034232,-1.791586,-0.582368,1.059786,-1.827092,-0.600981,1.081953,-1.863814,-0.679222,1.101294,-1.814324,-0.666201,1.076515,-1.783993,-0.654292,1.054639,-1.746911,-0.650563,1.008782,-1.706802,-0.658321,0.960882,-1.669679,-0.618665,1.130925,-1.849116,-0.630362,1.141425,-1.84893,-0.642602,1.138572,-1.840288,-0.534801,1.491188,-1.538091,-0.538224,1.46492,-1.542449,-0.552817,1.451999,-1.542633,-0.57028,1.460086,-1.543053,-0.577739,1.47824,-1.53955,-0.580028,1.494485,-1.53565,-0.566765,1.506297,-1.534419,-0.550166,1.513335,-1.533956,-0.770897,1.638856,-1.894189,-0.885181,1.781467,-1.98169,-0.814836,1.736242,-1.942119,-0.570398,1.371015,-1.772781,-0.60285,1.369718,-1.762317,-0.553746,1.373063,-1.805455,-0.648456,1.372954,-1.780498,-0.668648,1.375565,-1.824751,-0.642621,1.374686,-1.863197,-0.594151,1.382636,-1.868764,-0.560199,1.385317,-1.845587,-0.558977,1.462283,-1.833561,-0.582009,1.457844,-1.805061,-0.89052,1.774682,-1.939797,-0.841351,1.743199,-1.914253,-0.820461,1.665962,-1.88682,-0.545583,1.447301,-1.515658,-0.567226,1.454844,-1.506896,-0.578061,1.474819,-1.505833,-0.531858,1.488433,-1.501464,-0.526353,1.465297,-1.503692,-0.565291,1.499879,-1.508081,-0.545509,1.507466,-1.500869,-0.582242,1.491203,-1.502067,-0.571438,1.477328,-1.404551,-0.565205,1.513476,-1.404754,-0.551777,1.480908,-1.399612,-0.541937,1.513817,-1.407576,-0.558176,1.435234,-1.478146,-0.568371,1.453408,-1.412873,-0.533055,1.443603,-1.473598,-0.557145,1.453515,-1.401377,-0.566433,1.433032,-1.416286,-0.574285,1.450109,-1.406694,-0.558981,1.434852,-1.402449,-0.569089,1.448455,-1.394824,-0.583611,1.429211,-1.411748,-0.595453,1.445404,-1.409532,-0.591432,1.426175,-1.397628,-0.603064,1.439223,-1.39616,-0.598758,1.426576,-1.419673,-0.60635,1.443126,-1.421682,-0.61321,1.425624,-1.41048,-0.61976,1.438131,-1.412568,-0.611932,1.426901,-1.433224,-0.616801,1.440121,-1.434997,-0.622552,1.42501,-1.42554,-0.627711,1.43701,-1.427558,-0.573463,1.45324,-1.402698,-0.581304,1.474599,-1.399502,-0.565066,1.455365,-1.388485,-0.570598,1.473899,-1.383016,-0.593332,1.449923,-1.399322,-0.601355,1.468577,-1.3945,-0.598123,1.446734,-1.382156,-0.605254,1.461852,-1.377972,-0.615441,1.446554,-1.406865,-0.623011,1.464934,-1.401586,-0.624951,1.441997,-1.391053,-0.632465,1.455831,-1.389409,-0.628064,1.44972,-1.418072,-0.635211,1.461557,-1.413916,-0.638368,1.444312,-1.413004,-0.643888,1.455686,-1.410626,-0.564062,1.520733,-1.496726,-0.573158,1.530302,-1.410384,-0.555759,1.540346,-1.428956,-0.606778,1.53058,-1.455767,-0.609408,1.540763,-1.485802,-0.575675,1.54886,-1.442651,-0.594898,1.55283,-1.479764,-0.631668,1.561461,-1.417153,-0.639211,1.573989,-1.427488,-0.62068,1.56833,-1.414662,-0.627761,1.580619,-1.425133,-0.565978,1.515128,-1.399304,-0.566742,1.533516,-1.405288,-0.551521,1.515664,-1.392024,-0.551153,1.534303,-1.399774,-0.578442,1.512547,-1.376791,-0.582236,1.532887,-1.37859,-0.568419,1.516131,-1.364612,-0.573216,1.531385,-1.367798,-0.594975,1.505161,-1.360925,-0.599346,1.521249,-1.361432,-0.589981,1.507164,-1.348278,-0.592245,1.520197,-1.350323,-0.618287,1.500015,-1.348811,-0.620182,1.512218,-1.348602,-0.612694,1.500265,-1.338423,-0.614597,1.51158,-1.3391,-0.563609,1.484357,-1.392511,-0.563446,1.508578,-1.392314,-0.546785,1.485777,-1.383738,-0.547917,1.508518,-1.3846,-0.580439,1.482604,-1.375384,-0.581004,1.503959,-1.371073,-0.57265,1.479229,-1.356909,-0.572306,1.497563,-1.353588,-0.599256,1.476065,-1.369022,-0.607354,1.493612,-1.365979,-0.596909,1.473292,-1.348545,-0.60361,1.48907,-1.347506,-0.621013,1.469616,-1.364626,-0.626013,1.482819,-1.361198,-0.619246,1.465542,-1.351258,-0.623206,1.478236,-1.348665,-0.567199,1.434189,-1.426401,-0.5512,1.437689,-1.415509,-0.563947,1.456378,-1.482331,-0.57759,1.480184,-1.483348,-0.589061,1.508346,-1.49796,-0.592583,1.507684,-1.461047,-0.583965,1.495646,-1.477292,-0.568102,1.486947,-1.462363,-0.559551,1.485205,-1.411195,-0.566062,1.510821,-1.421121,-0.565288,1.455381,-1.453746,-0.565095,1.459326,-1.423048,-0.57555,1.523013,-1.428451,-0.602993,1.525414,-1.458218,-0.614172,1.569866,-1.455221,-0.608894,1.558139,-1.439248,-0.620788,1.548002,-1.441326,-0.628057,1.559685,-1.458749,-0.630506,1.449707,-1.808816,-0.654349,1.456556,-1.782389,-0.650197,1.462826,-1.788887,-0.559314,1.464828,-1.817075,-0.610844,1.465275,-1.782012,-0.578121,1.463806,-1.791502,-0.532999,1.530221,-1.831926,-0.506996,1.496607,-1.811314,-0.542442,1.457121,-1.761665,-0.613542,1.426178,-1.722293,-0.651212,1.535307,-1.82883,-0.562179,1.451213,-1.959921,-0.597718,1.341658,-2.064034,-0.633265,1.233824,-2.134329,-0.528624,1.395103,-1.897701,-0.562517,1.278547,-1.992103,-0.604097,1.179976,-2.070372,-0.560801,1.350952,-1.810618,-0.605902,1.232384,-1.911254,-0.645684,1.126616,-1.988351,-0.632025,1.323292,-1.766306,-0.675685,1.172594,-1.885503,-0.717464,1.090129,-1.984772,-0.566881,1.518335,-1.792158,-0.623131,1.471321,-1.971806,-0.692646,1.340281,-2.075695,-0.710474,1.245607,-2.119021,-0.556653,1.459628,-1.784988,-0.531749,1.481165,-1.817888,-0.541414,1.509988,-1.818455,-0.618546,1.438384,-1.76733,-0.668198,1.439565,-1.752986,-0.658335,1.510702,-1.802134,-0.690546,1.458447,-1.771006,-0.582803,1.515477,-1.795558,-0.707985,1.407783,-1.728629,-0.829492,1.437431,-1.953214,-0.721124,1.378181,-1.682956,-0.813901,1.035839,-2.101531,-0.808546,1.024961,-1.999008,-0.759888,1.227434,-1.782531,-0.673634,1.082605,-2.047432,-0.641639,1.195934,-2.151736,-0.724892,1.222448,-2.105051,-0.736571,1.074803,-2.050592,-0.614716,1.136729,-2.115916,-0.844252,1.055872,-2.138469,-0.947453,1.575915,-2.190408,-0.93697,1.657455,-2.146792,-0.921093,1.732366,-2.079666,-0.913726,1.7672,-2.00212,-0.917841,1.79777,-1.942598,-0.873865,1.349663,-2.231204,-0.83862,1.061185,-2.13133,-0.661081,1.471185,-1.777549,-0.623482,1.502965,-1.788005,-0.791138,1.222599,-2.025525,-0.811126,1.300886,-1.974432,-0.692057,1.464058,-1.97177,-0.753732,1.313108,-2.05537,-0.781339,1.220271,-2.049006,-0.788808,1.220058,-2.049947,-0.896874,1.932324,-1.666962,-0.922577,1.932939,-1.694121,-0.94089,1.932706,-1.698825,-0.914251,1.939026,-1.611851,-0.913418,1.95566,-1.681167,-0.9275,1.950098,-1.692718,-0.921136,1.945906,-1.609234,-0.917226,1.960792,-1.621648,-0.922138,1.975074,-1.657399,-0.940192,1.962281,-1.688171,-0.934485,1.964676,-1.615935,-0.939945,1.97514,-1.630856,-0.952739,1.976858,-1.667282,-0.957342,1.966654,-1.683319,-0.95972,1.950858,-1.693913,-0.939693,1.945062,-1.603366,-0.951465,1.959522,-1.610518,-0.96184,1.968946,-1.624148,-0.973886,1.961607,-1.678512,-0.968665,1.948047,-1.691306,-0.928891,1.928597,-1.603576,-0.963755,1.945908,-1.60701,-0.977716,1.951419,-1.6197,-0.986524,1.953695,-1.636899,-0.97488,1.940859,-1.68932,-0.948496,1.927985,-1.601211,-0.983542,1.927895,-1.6188,-0.976662,1.931345,-1.688523,-0.963157,1.910002,-1.608576,-0.977064,1.905005,-1.621739,-0.988498,1.906583,-1.658714,-0.984044,1.913098,-1.676327,-0.939126,1.91179,-1.604849,-0.950545,1.89778,-1.613216,-0.97146,1.891356,-1.663734,-0.938626,1.885248,-1.634758,-0.944203,1.882703,-1.652593,-0.954437,1.897526,-1.685109,-0.957967,1.913523,-1.694368,-0.959842,1.932151,-1.697367,-0.920378,1.912529,-1.610672,-0.915909,1.899811,-1.624399,-0.938105,1.902903,-1.689717,-0.899826,1.908851,-1.646604,-0.912322,1.909958,-1.682175,-0.926415,1.915675,-1.693385,-0.911591,1.929495,-1.613133,-0.899344,1.930562,-1.628659,-0.893718,1.931518,-1.647865,-0.907105,1.932806,-1.683154,-0.90462,1.948066,-1.626329,-0.900706,1.954592,-1.644636,-0.903642,1.957409,-1.664206,-0.943642,1.941895,-1.698237,-0.917623,1.970883,-1.638472,-0.93043,1.971743,-1.67485,-0.950518,1.948575,-1.696449,-0.930522,1.948077,-1.606167,-0.946331,1.979908,-1.648799,-0.969812,1.972726,-1.641674,-0.974318,1.970381,-1.660928,-0.946271,1.937724,-1.601469,-0.989515,1.952699,-1.656363,-0.985395,1.948137,-1.674874,-0.967645,1.927738,-1.606528,-0.993263,1.928485,-1.636248,-0.995763,1.929403,-1.656166,-0.989531,1.930372,-1.674482,-0.945954,1.918449,-1.602289,-0.985654,1.903953,-1.639243,-0.973814,1.922111,-1.689483,-0.960787,1.889259,-1.627566,-0.96768,1.887591,-1.645148,-0.971164,1.901196,-1.680151,-0.967015,1.915579,-1.691728,-0.929805,1.909551,-1.607814,-0.933404,1.894295,-1.618986,-0.94965,1.886731,-1.670397,-0.916221,1.892152,-1.641853,-0.920433,1.889434,-1.660448,-0.928085,1.893259,-1.677303,-0.949133,1.916431,-1.696698,-0.913658,1.919852,-1.612642,-0.903471,1.913131,-1.627984,-0.902897,1.907436,-1.665731,-0.942893,1.923459,-1.698091,-0.999028,1.821601,-1.90344,-1.018764,2.123098,-1.864019,-1.037483,2.006445,-1.898169,-0.974856,2.21102,-1.826293,-0.892391,2.209584,-1.70132,-0.856948,2.161791,-1.640981,-1.018309,1.894338,-1.899169,-0.980366,2.195143,-1.670418,-1.048032,2.063505,-1.626016,-0.995555,2.044937,-1.582374,-0.932023,2.135162,-1.593136,-1.092757,1.716988,-1.787176,-1.067455,1.668715,-1.735406,-1.022,1.648029,-1.715263,-1.139254,1.779275,-1.73953,-1.161953,1.856971,-1.713833,-1.14366,1.934602,-1.809811,-1.084065,1.725931,-1.689776,-1.108049,1.814087,-1.646768,-1.11014,2.057873,-1.780997,-1.151585,1.973315,-1.704434,-1.11009,2.043018,-1.669124,-1.05915,2.164735,-1.736966,-1.099012,1.913681,-1.622416,-1.042844,1.887935,-1.597855,-1.05301,1.712757,-1.674323,-1.055517,1.79788,-1.611502,-1.092812,1.837344,-1.832352,-1.058304,1.768122,-1.849857,-1.0045,1.632961,-2.114747,-1.006092,1.562353,-2.163916,-0.995264,1.741086,-1.977274,-1.00169,1.702929,-2.043572,-0.861939,1.29053,-1.954523,-0.91476,1.350892,-2.23011,-1.103868,1.088468,-2.047943,-0.994597,1.784853,-1.924638,-0.875941,1.583644,-1.862307,-0.860675,1.439421,-1.925652,-0.852403,1.489895,-1.890361,-0.86076,1.421352,-1.359396,-0.847061,1.390358,-1.357752,-0.824216,1.37841,-1.370877,-0.808963,1.39181,-1.390573,-0.80885,1.418184,-1.402144,-0.818484,1.440813,-1.403106,-0.837254,1.453687,-1.393797,-0.856098,1.449564,-1.376029,-1.093863,1.462159,-1.990169,-0.983928,1.580392,-1.788593,-1.139108,1.591719,-1.858778,-1.112454,1.429589,-2.065249,-1.037478,1.383721,-1.938357,-1.087215,1.382054,-1.998068,-1.12685,1.568973,-1.963817,-0.964759,1.611155,-1.78973,-0.918924,1.565033,-1.839503,-1.071819,1.589497,-1.792401,-1.116202,1.360015,-1.768075,-1.051963,1.340681,-1.792553,-1.087646,1.365496,-1.84482,-1.154218,1.390622,-1.812365,-1.01332,1.383516,-1.808359,-1.03333,1.3948,-1.856256,-1.105874,1.472178,-1.724698,-1.139633,1.41873,-1.73517,-1.155432,1.46068,-1.768974,-1.05907,1.474342,-1.743712,-1.014485,1.471862,-1.771849,-1.049103,1.486277,-1.737657,-1.005569,1.455664,-1.76749,-1.004264,1.440728,-1.85611,-1.008445,1.43074,-1.80036,-1.035914,1.42048,-1.864339,-1.05451,1.333333,-1.686318,-1.006004,1.330234,-1.696517,-0.969106,1.365619,-1.689526,-1.075833,1.417975,-1.644163,-1.083959,1.367947,-1.6631,-0.997116,1.454411,-1.656089,-1.042319,1.454522,-1.641487,-0.972128,1.417115,-1.672292,-0.94681,1.302143,-1.503866,-0.927324,1.3153,-1.531939,-0.971494,1.302,-1.590703,-1.00773,1.294435,-1.589872,-0.98122,1.313809,-1.491349,-1.034579,1.310735,-1.566879,-0.889591,1.340794,-1.438599,-0.868686,1.355834,-1.463272,-0.873833,1.387052,-1.486862,-0.944364,1.385386,-1.432496,-0.919438,1.353535,-1.424383,-0.914485,1.433225,-1.470625,-0.938372,1.422777,-1.449385,-0.890014,1.421063,-1.484852,-1.052145,1.2381,-2.033105,-1.089236,1.263315,-2.171208,-1.102671,1.242857,-2.101749,-1.052334,1.220317,-2.112942,-0.974906,1.453155,-1.861234,-0.888933,1.048557,-2.145681,-0.952644,1.225129,-2.042548,-1.046544,1.049442,-2.069488,-1.118265,1.181348,-2.089239,-1.033217,1.283755,-2.201977,-1.099091,1.547598,-2.050864,-1.080068,1.504696,-2.121495,-0.969165,1.257346,-1.976382,-0.845523,1.220706,-2.010569,-0.962064,1.387764,-1.92153,-0.942129,1.468185,-1.866506,-0.954575,1.537529,-1.819819,-0.967978,1.477157,-1.790227,-1.002216,1.501627,-1.7625,-1.098692,1.51941,-1.772746,-1.156964,1.524113,-1.841993,-1.125396,1.457807,-1.924466,-1.025535,1.344948,-1.512984,-1.001508,1.290563,-1.523734,-0.977189,1.28179,-1.538728,-0.954866,1.289794,-1.555163,-0.940243,1.344924,-1.573905,-0.959568,1.395474,-1.571055,-0.989533,1.410862,-1.55277,-1.018862,1.394949,-1.528407,-1.089025,1.684926,-1.829188,-1.058706,1.629572,-1.772583,-0.888924,1.628116,-1.847268,-0.89195,1.474987,-1.877861,-0.90094,1.423777,-1.917111,-0.991855,1.409563,-1.902817,-0.950597,1.410874,-1.909061,-0.825111,1.89342,-1.595814,-0.819533,1.88125,-1.586665,-0.828184,1.873004,-1.607573,-0.835077,1.900811,-1.614953,-0.842305,1.916184,-1.628784,-0.840431,1.972533,-1.624542,-0.827339,1.84993,-1.606795,-0.842171,1.938259,-1.629526,-0.844504,2.090908,-1.62358,-0.836852,1.831139,-1.619593,-0.845912,1.714766,-1.648645,-0.836473,1.745649,-1.627164,-0.8633,1.715311,-1.684263,-0.996523,1.794337,-1.923931,-0.924703,2.183496,-1.761204,-0.86835,2.138493,-1.663097,-0.831382,1.850313,-1.614784,-0.832938,1.832302,-1.612483,-0.828119,1.862419,-1.608377,-0.834342,1.792822,-1.617949,-0.830298,1.870827,-1.612037,-0.837272,2.024744,-1.615213,-0.889449,1.710271,-1.745812,-0.842128,1.808888,-1.628347,-0.838407,1.855278,-1.62515,-0.889827,1.791968,-1.708362,-0.890154,1.848109,-1.707563,-0.832474,1.81821,-1.611972,-0.825654,1.853596,-1.603786,-0.895926,1.682239,-1.782056,-0.988638,1.756146,-1.944245,-0.980932,1.761594,-1.929745,-0.895784,1.632602,-1.851748,-0.866338,1.8852,-1.606592,-0.865998,1.874874,-1.60589,-0.839346,1.874249,-1.606397,-0.834362,1.876639,-1.586871,-0.839306,1.887553,-1.598589,-0.855725,1.87402,-1.587927,-0.860134,1.884565,-1.598099,-0.856783,1.891958,-1.619252,-1.000778,2.16674,-1.735252,-1.063336,2.102609,-1.722241,-1.022024,2.085755,-1.659518,-0.953152,2.132756,-1.640759,-1.033664,1.765285,-1.86136,-1.030365,1.720843,-1.789924,-1.034663,1.776435,-1.76167,-0.973165,1.713963,-1.762524,-0.97801,1.75701,-1.730545,-1.04712,1.821804,-1.742886,-1.011466,1.774616,-1.700316,-1.07463,1.869191,-1.73168,-1.08503,1.932938,-1.748025,-1.085644,1.876885,-1.72886,-1.06201,1.882954,-1.704507,-1.064042,1.929051,-1.716852,-1.095016,1.936893,-1.743782,-1.085003,1.995522,-1.739027,-1.050634,1.986234,-1.685581,-0.904095,1.974047,-1.61267,-0.875981,1.945068,-1.627348,-0.86127,1.975864,-1.608765,-0.911103,1.993676,-1.591968,-0.928037,1.723602,-1.739438,-0.928151,1.754742,-1.642044,-0.96618,1.764328,-1.663964,-0.977931,1.842429,-1.623627,-1.037357,1.872267,-1.677819,-0.995434,1.899747,-1.619715,-0.961109,1.897402,-1.60063,-0.960825,1.907691,-1.609959,-0.984533,1.917755,-1.609888,-0.986036,2.039073,-1.624319,-1.016734,1.994752,-1.653406,-0.930322,2.084099,-1.599024,-1.010078,1.89967,-1.639831,-0.965405,1.886906,-1.598474,-0.964674,1.988005,-1.592038,-0.987555,1.963711,-1.609344,-0.982562,1.943391,-1.613371,-0.950499,1.973063,-1.604608,-1.001001,1.930991,-1.623373,-0.987079,1.924234,-1.614207,-1.023919,1.945113,-1.659269,-0.913676,1.899135,-1.602477,-0.862107,1.904418,-1.627223,-0.875584,1.920168,-1.623402,-0.913241,1.905049,-1.614679,-0.858591,1.929917,-1.63229,-0.874786,1.927722,-1.632784,-0.900491,1.891171,-1.594256,-1.047294,1.922731,-1.683376,-0.946559,1.814459,-1.619082,-0.940511,1.88672,-1.595975,-0.92315,1.783074,-1.619313,-0.913037,1.857804,-1.600707,-0.891986,1.840805,-1.597437,-0.91111,1.864643,-1.596769,-0.904183,1.881357,-1.598086,-0.89184,1.854368,-1.590181,-0.860331,1.84678,-1.59459,-0.887259,1.722253,-1.667814,-0.880496,1.719633,-1.634939,-0.870397,1.750164,-1.615976,-0.857769,1.831043,-1.602455,-0.865585,1.830607,-1.607843,-0.895622,1.840613,-1.602947,-0.912963,1.859128,-1.603997,-0.89475,1.849375,-1.598882,-0.89816,1.883889,-1.59898,-1.066592,1.97489,-1.709073,-1.099008,1.98312,-1.733636,-0.866525,1.844923,-1.600657,-0.914051,1.857083,-1.604128,-0.85923,1.860198,-1.596419,-0.889647,1.866409,-1.59429,-0.920113,1.874896,-1.597935,-0.926906,1.859124,-1.603161,-0.909512,1.825126,-1.597987,-0.866145,1.796888,-1.606436,-0.838338,1.8708,-1.607842,-0.863916,2.025394,-1.601627,-0.954673,1.745144,-1.700472,-0.912361,1.73531,-1.680336,-0.905913,1.964209,-1.612619,-0.949337,1.958612,-1.603508,-0.956404,1.911568,-1.608317,-0.913267,1.907758,-1.614076,-0.877387,1.927357,-1.640412,-0.908326,1.959049,-1.619913,-0.951696,1.953743,-1.610744,-0.989794,1.923558,-1.621895,-0.958717,1.911846,-1.616113,-0.916099,1.908215,-1.621744,-0.882739,1.926556,-1.664317,-0.91837,1.959745,-1.673638,-0.961863,1.954711,-1.664667,-0.995695,1.923467,-1.64592,-0.96129,1.921675,-1.654727,-0.926866,1.921209,-1.660015,-0.929204,1.932902,-1.663676,-0.965217,1.933552,-1.658959,-0.905637,1.825126,-1.614148,-0.874488,1.812939,-1.614423,-0.890126,1.853671,-1.620285,-0.919021,1.853801,-1.630211,-0.864533,1.853788,-1.615415,-0.928709,1.821976,-1.626862,-0.918781,1.79541,-1.679859,-0.908159,1.791515,-1.693969,-0.91624,1.842463,-1.682581,-0.926958,1.839651,-1.664608,-0.904303,1.843957,-1.696619,-0.929418,1.801148,-1.661823,-0.856128,1.85253,-1.592765,-0.891736,1.858268,-1.587926,-0.912086,1.868724,-1.597948,-0.918346,1.859107,-1.606164,-0.90679,1.83851,-1.598976,-0.862146,1.820082,-1.598883,-0.897999,1.000712,-1.524088,-0.929058,1.028076,-1.505539,-0.922842,1.072119,-1.541415,-0.901122,1.037745,-1.569934,-0.888735,0.952889,-1.476183,-0.944881,0.908771,-1.531176,-0.971239,0.893152,-1.420363,-0.925683,0.876242,-1.43619,-0.879607,0.863974,-1.429024,-0.869488,0.904964,-1.41164,-0.92837,0.911831,-1.38522,-0.901218,0.912479,-1.395899,-0.877561,0.921007,-1.440241,-0.872198,0.862472,-1.384026,-0.911535,0.871182,-1.367606,-0.914568,0.880689,-1.402022,-0.863688,0.896955,-1.379349,-0.938544,0.887226,-1.393916,-0.92751,0.8865,-1.36034,-0.919973,0.905623,-1.352734,-0.920484,0.873942,-1.339316,-0.912644,0.887053,-1.336462,-0.931259,0.888446,-1.368524,-0.952846,0.894202,-1.362769,-0.928651,0.875916,-1.346604,-0.947164,0.88172,-1.341644,-0.965491,0.897908,-1.391065,-0.983692,0.901312,-1.388124,-1.015364,0.908946,-1.413734,-0.98175,0.918481,-1.524199,-1.023516,0.930892,-1.51481,-1.03045,0.939663,-1.581595,-0.970573,1.013231,-1.505591,-0.965791,1.057406,-1.551488,-0.981817,0.923861,-1.58756,-0.988462,0.927695,-1.624627,-1.040076,0.945416,-1.614497,-0.977788,0.965833,-1.447401,-0.934096,0.970751,-1.456937,-0.934693,0.939091,-1.421274,-0.981827,0.940544,-1.415029,-0.940258,0.912531,-1.599033,-0.942608,0.912949,-1.641534,-0.950898,0.920314,-1.676587,-0.893068,1.027697,-1.607171,-0.931454,1.034053,-1.664168,-0.96202,1.050034,-1.669044,-0.986776,1.052019,-1.645965,-0.991427,0.987895,-1.706753,-0.959987,0.97512,-1.704882,-1.018754,0.995821,-1.689868,-1.007172,1.053024,-1.591702,-1.043448,0.951182,-1.648677,-0.995185,0.931933,-1.657666,-1.005527,0.94428,-1.700673,-1.028728,0.951591,-1.686046,-0.977242,0.934014,-1.697272,-0.95475,0.918827,-1.385907,-0.975329,0.920209,-1.381745,-0.969864,0.918277,-1.371242,-0.977359,0.902577,-1.379877,-0.973077,0.893998,-1.362554,-0.989216,0.892771,-1.359449,-0.988703,0.917493,-1.367051,-0.996003,0.902946,-1.373243,-0.984797,0.902182,-1.356033,-0.971366,0.906307,-1.358896,-1.003914,0.906456,-1.390013,-0.992014,0.921336,-1.386198,-0.947603,0.915026,-1.3631,-0.957627,0.895916,-1.373967,-0.953797,0.884259,-1.355341,-0.94821,0.898,-1.346602,-0.963542,0.900379,-1.342306,-0.968875,0.889747,-1.349799,-0.975469,0.89983,-1.365932,-0.969169,0.91819,-1.355231,-0.946843,0.914216,-1.353351,-0.921413,0.907544,-1.359514,-0.89497,0.896469,-1.364282,-0.904249,0.879137,-1.370556,-0.903438,0.86905,-1.347533,-0.898482,0.882826,-1.343274,-0.896412,0.905589,-1.365486,-0.89854,0.865735,-1.341322,-0.87617,0.859186,-1.345176,-0.871156,0.876431,-1.343673,-0.892471,0.88239,-1.339548,-0.923937,0.891217,-1.339335,-0.940936,0.895429,-1.335342,-0.933583,1.165882,-1.61666,-0.902524,1.158173,-1.616641,-0.886645,1.142236,-1.630677,-0.889171,1.117089,-1.661765,-0.923376,1.111884,-1.694149,-0.95566,1.126658,-1.695379,-0.970304,1.144136,-1.671937,-0.959784,1.157341,-1.637887,-0.889972,0.868483,-1.45893,-0.936774,0.890384,-1.475479,-0.977527,0.902966,-1.459142,-1.019358,0.917165,-1.447727,-1.000177,0.934952,-1.41271,-1.001589,0.947214,-1.449341,-1.002241,0.966671,-1.513813,-1.010915,0.979193,-1.571034,-1.021018,0.989741,-1.613129,-1.026958,0.991318,-1.659482,-0.937157,0.965075,-1.673341,-0.93318,0.957266,-1.633008,-0.92275,0.951891,-1.589906,-0.91399,0.923098,-1.536805,-0.900978,0.885358,-1.490555,-0.987812,1.020826,-1.682371,-0.97661,1.021987,-1.693338,-0.964097,1.013378,-1.691938,-0.850891,1.419088,-1.364908,-0.838875,1.395098,-1.365556,-0.82313,1.386921,-1.373784,-0.815543,1.397428,-1.388008,-0.817849,1.416647,-1.3947,-0.821099,1.432693,-1.396971,-0.834758,1.44075,-1.388895,-0.848644,1.443398,-1.377555,-0.96364,1.544827,-1.798952,-1.076143,1.707512,-1.889814,-0.882268,1.600811,-1.857025,-1.049941,1.634057,-1.828887,-0.867191,1.272587,-1.657579,-0.846544,1.255616,-1.678792,-0.900033,1.288728,-1.660742,-0.843238,1.243351,-1.725283,-0.876413,1.24544,-1.758118,-0.922924,1.264754,-1.756547,-0.943506,1.294046,-1.724072,-0.929528,1.305741,-1.68799,-0.903321,1.373066,-1.7034,-0.903478,1.352114,-1.697982,-1.040448,1.722601,-1.866127,-1.028459,1.666407,-1.825762,-0.967299,1.600246,-1.81401,-0.804117,1.390829,-1.356783,-0.791284,1.404897,-1.368952,-0.794972,1.426201,-1.375536,-0.832333,1.43023,-1.341344,-0.817084,1.403071,-1.341056,-0.819233,1.451667,-1.374567,-0.828843,1.456501,-1.355142,-0.797075,1.44383,-1.376917,-0.732654,1.449554,-1.294435,-0.739649,1.487657,-1.293979,-0.748134,1.452586,-1.276956,-0.76079,1.477164,-1.28531,-0.762843,1.393761,-1.342566,-0.733369,1.425216,-1.296159,-0.782959,1.39278,-1.324834,-0.736787,1.431827,-1.283454,-0.722733,1.408612,-1.290331,-0.726646,1.42772,-1.298339,-0.723845,1.420023,-1.278555,-0.723921,1.435589,-1.288335,-0.708864,1.416138,-1.306386,-0.721381,1.43207,-1.309489,-0.699115,1.430069,-1.304928,-0.709375,1.443532,-1.30843,-0.71292,1.422901,-1.326886,-0.724734,1.436961,-1.326841,-0.702643,1.43682,-1.327566,-0.711577,1.448059,-1.328398,-0.71646,1.430247,-1.34441,-0.726012,1.440727,-1.343656,-0.707315,1.439826,-1.344342,-0.715967,1.449817,-1.344352,-0.719688,1.43337,-1.286529,-0.727668,1.450143,-1.297569,-0.720304,1.444833,-1.27416,-0.726817,1.461005,-1.282171,-0.706379,1.43848,-1.301815,-0.721144,1.452791,-1.305446,-0.696482,1.45367,-1.3027,-0.708536,1.465616,-1.305909,-0.707889,1.437523,-1.326181,-0.722566,1.451633,-1.328893,-0.697122,1.452792,-1.331004,-0.708995,1.463015,-1.333197,-0.708847,1.439723,-1.349725,-0.719845,1.448582,-1.351063,-0.700646,1.449359,-1.352317,-0.710192,1.457732,-1.354385,-0.813758,1.469793,-1.356157,-0.746607,1.502635,-1.308208,-0.774767,1.500404,-1.306512,-0.762355,1.499597,-1.359026,-0.787105,1.506149,-1.377504,-0.776076,1.509511,-1.325762,-0.794571,1.512174,-1.360167,-0.730479,1.550017,-1.350419,-0.740762,1.558931,-1.358482,-0.736056,1.5522,-1.338695,-0.746729,1.560558,-1.34653,-0.738012,1.489977,-1.288477,-0.748143,1.505596,-1.295327,-0.747072,1.485143,-1.276022,-0.758891,1.500708,-1.282427,-0.715636,1.50122,-1.27293,-0.726463,1.516727,-1.275275,-0.721682,1.497502,-1.258378,-0.731577,1.510254,-1.261527,-0.699602,1.509568,-1.260665,-0.707703,1.525098,-1.262052,-0.696759,1.514084,-1.248537,-0.708262,1.520924,-1.249852,-0.679533,1.523512,-1.270529,-0.687346,1.533565,-1.268682,-0.676289,1.526195,-1.259506,-0.684252,1.534543,-1.25953,-0.723638,1.468263,-1.278511,-0.734929,1.488724,-1.281889,-0.734124,1.465875,-1.263231,-0.745929,1.484011,-1.269053,-0.701677,1.483107,-1.263412,-0.712364,1.502128,-1.265177,-0.706626,1.482457,-1.243855,-0.716312,1.498392,-1.245631,-0.68318,1.48921,-1.259297,-0.69041,1.507144,-1.262608,-0.678914,1.494376,-1.239762,-0.686258,1.509356,-1.243964,-0.663997,1.50102,-1.26419,-0.670176,1.514136,-1.265109,-0.65944,1.502811,-1.250982,-0.666047,1.514583,-1.252119,-0.730107,1.410239,-1.303303,-0.738481,1.41156,-1.286401,-0.772203,1.413297,-1.350151,-0.780053,1.437113,-1.362115,-0.796512,1.46828,-1.378022,-0.766531,1.472401,-1.357117,-0.779566,1.455293,-1.363747,-0.772448,1.445962,-1.340573,-0.74026,1.454954,-1.300703,-0.751295,1.479167,-1.312121,-0.755109,1.421046,-1.327681,-0.741309,1.429479,-1.302291,-0.756117,1.490649,-1.322194,-0.764619,1.493136,-1.359048,-0.770863,1.538145,-1.354911,-0.757548,1.527557,-1.343637,-0.749169,1.522451,-1.355965,-0.762477,1.533785,-1.369729,-0.878344,1.326583,-1.727601,-0.834398,1.329936,-1.726915,-0.814223,1.333866,-1.743141,-0.874104,1.370008,-1.69461,-0.820033,1.339005,-1.714457,-0.842005,1.354615,-1.695182,-0.696454,1.494405,-1.830163,-0.854164,1.444813,-1.709105,-0.911334,1.428478,-1.680314,-0.923409,1.363427,-1.651785,-0.885476,1.312141,-1.650755,-0.731918,1.451675,-1.785046,-0.757846,1.335842,-1.678018,-0.842094,1.211802,-2.022861,-0.812153,1.266401,-2.019542,-0.748391,1.418842,-1.962051,-0.916256,1.417613,-1.865386,-0.972961,1.351227,-1.993528,-1.020773,1.263856,-2.090519,-0.973863,1.377916,-1.80756,-1.035409,1.304508,-1.927849,-1.077069,1.230379,-2.031869,-0.973471,1.298047,-1.742732,-1.028033,1.218292,-1.872513,-1.075658,1.141514,-1.976143,-0.929825,1.239039,-1.724059,-0.996189,1.120533,-1.873071,-1.03105,1.060544,-1.994243,-0.801413,1.195032,-1.774329,-0.858956,1.003977,-2.00617,-0.876135,1.017886,-2.12012,-0.795057,1.415278,-1.703302,-0.853484,1.410412,-1.895151,-0.894336,1.316319,-2.029914,-0.948965,1.246172,-2.090729,-0.915173,1.362834,-1.673306,-0.905264,1.40112,-1.686695,-0.856216,1.4188,-1.697542,-0.885871,1.32254,-1.689823,-0.826353,1.323599,-1.708579,-0.746454,1.416154,-1.760455,-0.763508,1.370126,-1.742557,-0.801729,1.398558,-1.706004,-0.754747,1.353665,-1.71558,-0.704029,1.468356,-1.801136,-0.730653,1.408677,-1.759635,-0.794552,1.321104,-1.70401,-0.869999,1.416859,-1.933873,-0.915738,1.40549,-1.927398,-0.792919,1.297384,-1.663819,-0.9403,1.018586,-2.106939,-0.908164,1.003438,-1.99966,-0.842076,1.168261,-1.773399,-1.093192,1.094093,-2.049867,-1.046918,1.220872,-2.119363,-0.885475,1.053453,-2.145782,-0.962794,1.225145,-2.086328,-1.042829,1.055599,-2.065071,-1.105807,1.181785,-2.088841,-0.846754,1.214371,-2.030375,-0.935844,1.044164,-2.143542,-1.046519,1.533946,-2.143,-1.065392,1.596583,-2.081272,-1.069802,1.654851,-2.009192,-1.060021,1.695394,-1.934462,-1.046684,1.739683,-1.881959,-0.956882,1.324725,-2.226501,-0.935972,1.047597,-2.13765,-0.795795,1.346751,-1.737071,-0.784046,1.386291,-1.729109,-0.900719,1.219877,-2.018575,-0.915734,1.273792,-1.964606,-0.792957,1.40157,-1.926278,-0.851089,1.286868,-2.030667,-0.900472,1.215002,-2.038356,-0.908977,1.217064,-2.042492,-0.828516,1.926113,-1.768809,-0.819642,1.942671,-1.769526,-0.416373,0.146986,1.025208,-0.400502,0.162878,1.026151,-0.384683,0.146986,1.027747,-0.400554,0.131093,1.026804,-0.280586,0.043055,0.553389,-0.264715,0.058947,0.554332,-0.248897,0.043055,0.555928,-0.264768,0.027162,0.554985,-0.28571,0.191938,-0.42285,-0.264109,0.198024,-0.424156,-0.258317,0.176644,-0.427995,-0.279918,0.170558,-0.426688,-0.457774,0.292932,-0.836382,-0.436832,0.300174,-0.839988,-0.500126,0.213635,-0.832042,-0.470499,0.255722,-0.84222,-0.493005,0.748376,-1.36915,-0.481147,0.731588,-1.362549,-0.474127,0.725948,-1.382298,-0.487546,0.74238,-1.389437,-0.240777,0.792294,-1.109505,-0.237196,0.784421,-1.114736,-0.200813,0.801479,-1.133071,-0.231561,0.792109,-1.126315,-0.334686,1.240968,-1.062285,-0.31973,1.24843,-1.063573,-0.321803,1.24513,-1.086537,-0.343663,1.23931,-1.079425,-0.513788,1.557129,-1.145478,-0.494905,1.561588,-1.149305,-0.488367,1.542192,-1.160186,-0.511684,1.542832,-1.156061,-0.66083,1.497377,-1.357275,-0.665257,1.490936,-1.387562,-0.643123,1.480948,-1.372932,-0.628982,1.454198,-1.332087,-0.722125,1.473422,-1.380245,-0.707827,1.50727,-1.383146,-0.642711,1.48506,-1.31708,-0.654093,1.517392,-1.318464,-0.703103,1.515279,-1.283485,-0.690915,1.483415,-1.282303,-0.768339,1.505916,-1.337372,-0.755497,1.473829,-1.33299,-0.751162,1.451532,-1.403545,-0.760073,1.434976,-1.378125,-0.786905,1.449869,-1.377221,-0.762284,1.436801,-1.354292,-0.678635,1.514229,-1.337225,-0.695476,1.510652,-1.357333,-0.694318,1.512392,-1.324814,-0.714249,1.509375,-1.342785,-0.705304,1.514896,-1.337124,-0.719363,1.51145,-1.355989,-0.722068,1.512849,-1.324947,-0.739447,1.509322,-1.342033,-0.663837,1.518017,-1.334957,-0.716747,1.511802,-1.371173,-0.693358,1.515151,-1.312876,-0.730647,1.508692,-1.344909,-0.671152,1.542413,-1.336278,-0.702053,1.536251,-1.373146,-0.701435,1.539685,-1.313681,-0.73852,1.532698,-1.346188,-0.653427,1.477866,-1.411695,-0.663061,1.511662,-1.415367,-0.606256,1.488292,-1.344145,-0.616505,1.520988,-1.346097,-0.567754,1.528169,-1.38284,-0.558167,1.495139,-1.380757,-0.600114,1.522385,-1.458396,-0.604905,1.490843,-1.454884,-0.654195,1.460529,-1.473226,-0.63188,1.445569,-1.449506,-0.617077,1.465566,-1.499197,-0.614188,1.452795,-1.476088,-0.627596,1.519154,-1.374429,-0.641876,1.515863,-1.396154,-0.610496,1.520462,-1.385944,-0.621942,1.518338,-1.409656,-0.63612,1.521364,-1.332438,-0.624934,1.487813,-1.330568,-0.686469,1.511639,-1.399769,-0.700195,1.477862,-1.39775,-0.637215,1.506418,-1.366636,-0.659077,1.51059,-1.39426,-0.6279,1.510628,-1.38292,-0.638289,1.509005,-1.406744,-0.630478,1.521238,-1.359335,-0.656367,1.515562,-1.399238,-0.599802,1.524152,-1.381238,-0.634651,1.520828,-1.426049,-0.637689,1.545765,-1.360546,-0.663499,1.54015,-1.400824,-0.606314,1.549194,-1.382692,-0.625672,1.54408,-1.427232,-0.528059,0.561757,-1.222468,-0.546479,0.567135,-1.224532,-0.548695,0.578726,-1.206719,-0.529331,0.573184,-1.20369,-0.267779,0.14555,-0.031016,-0.282719,0.129819,-0.027405,-0.252797,0.129513,-0.033511,-0.267737,0.113781,-0.0299],
"name": "animation_000002"
},{
"vertices": [-0.913422,2.076355,-2.09993,-0.982116,2.08985,-2.153996,-1.006665,2.159566,-2.105403,-0.937971,2.14607,-2.051337,-1.006222,2.025332,-2.062841,-1.042065,2.04129,-2.10314,-1.07669,2.062204,-2.064062,-1.040847,2.046246,-2.023762,-1.123897,1.826623,-2.084577,-1.134231,1.834309,-2.097296,-1.143564,1.843007,-2.084456,-1.13323,1.835321,-2.071738,-1.007386,2.105672,-2.100777,-1.03937,2.107962,-2.159287,-1.073075,2.161759,-2.138757,-1.041091,2.159469,-2.080247,-1.078297,1.999149,-2.069567,-1.105715,1.992904,-2.111763,-1.148288,2.000016,-2.085152,-1.12087,2.006262,-2.042957,-1.02232,1.817111,-2.062822,-1.034957,1.810358,-2.08295,-1.053932,1.802912,-2.068755,-1.041146,1.809212,-2.048657,-1.030574,2.137057,-2.168716,-0.989413,2.096038,-2.154976,-0.984112,2.119644,-2.100384,-1.025273,2.160663,-2.114124,-1.151013,1.990451,-2.138595,-1.083216,1.953174,-2.125665,-1.100265,1.94868,-2.04923,-1.168062,1.985957,-2.06216,-1.191901,1.816085,-2.215486,-1.14191,1.804985,-2.202389,-1.154704,1.807786,-2.151182,-1.204694,1.818886,-2.164278,-1.1937,1.703748,-2.131925,-1.173167,1.703769,-2.127986,-1.176532,1.714731,-2.110504,-1.197065,1.71471,-2.114443,-0.848173,2.094841,-2.15025,-0.897582,2.094927,-2.139856,-0.891166,2.134903,-2.10969,-0.841758,2.134817,-2.120083,-0.85997,2.041026,-2.083113,-0.870897,2.041556,-2.081327,-0.86915,2.048158,-2.072595,-0.858222,2.047627,-2.074382,-0.847299,2.0676,-2.235487,-0.860544,2.058797,-2.17209,-0.80435,2.088191,-2.156268,-0.791106,2.096995,-2.219665,-0.837359,2.026733,-2.240163,-0.847025,2.006103,-2.183774,-0.786989,2.00377,-2.174337,-0.777324,2.0244,-2.230726,-0.85861,1.853221,-2.317753,-0.863403,1.840416,-2.292962,-0.835497,1.838999,-2.288301,-0.83071,1.851799,-2.313103,-0.823878,1.745502,-2.355333,-0.825632,1.740913,-2.346266,-0.815765,1.742345,-2.343633,-0.814012,1.746935,-2.3527,-0.886262,2.087351,-2.266067,-0.848097,2.091702,-2.23355,-0.825059,2.123662,-2.264865,-0.863224,2.119311,-2.297382,-0.837728,2.028689,-2.273365,-0.8239,2.036061,-2.257837,-0.811403,2.045433,-2.273415,-0.825231,2.038061,-2.288943,-0.779258,1.973602,-2.277142,-0.774006,1.977657,-2.270427,-0.769095,1.982257,-2.277047,-0.774347,1.978202,-2.283761,-0.95259,2.086318,-2.24925,-0.867016,2.109289,-2.252224,-0.880832,2.15077,-2.329346,-0.966405,2.127799,-2.326372,-0.899221,2.023134,-2.226532,-0.830983,2.063326,-2.224807,-0.830403,2.06574,-2.303982,-0.898641,2.025548,-2.305707,-0.833883,1.901944,-2.274115,-0.767255,1.917338,-2.280495,-0.780564,1.950675,-2.339049,-0.847192,1.935281,-2.332669,-0.838898,1.816446,-2.381477,-0.80679,1.821055,-2.38523,-0.812728,1.84682,-2.404392,-0.844836,1.842211,-2.400639,-0.822041,1.788018,-2.460713,-0.805933,1.791804,-2.460232,-0.809105,1.806244,-2.467678,-0.825213,1.802458,-2.46816,-1.035093,1.913695,-2.091002,-1.058112,1.926608,-2.117177,-1.083014,1.93531,-2.090985,-1.059994,1.922397,-2.06481,-0.897673,2.120753,-2.149152,-1.06456,1.883181,-2.089141,-1.082491,1.896518,-2.11121,-1.098686,1.911612,-2.088931,-1.080755,1.898275,-2.066861,-0.941586,2.129727,-2.125427,-0.982954,2.190421,-2.182155,-0.953319,2.186888,-2.122482,-1.053554,1.921704,-2.067372,-1.073628,1.911861,-2.098928,-1.103485,1.901415,-2.076677,-1.083411,1.911259,-2.045121,-0.989098,2.157599,-2.191642,-1.066259,2.090467,-2.157452,-1.012394,2.055817,-2.146553,-1.012856,2.074655,-2.084378,-1.06672,2.109305,-2.095277,-0.877362,2.190173,-2.172794,-0.925153,2.192622,-2.219805,-0.888684,2.122433,-2.164552,-0.867098,2.183515,-2.183315,-0.85506,2.101207,-2.197419,-0.899739,2.094291,-2.172955,-0.905838,2.155805,-2.147203,-0.846728,2.145275,-2.162339,-0.847681,1.944196,-2.276886,-0.855177,1.923907,-2.238325,-0.81231,1.913461,-2.235487,-0.804813,1.93375,-2.274048,-0.905307,2.100429,-2.242933,-0.930605,2.064477,-2.236859,-0.862159,2.112738,-2.235852,-0.848967,2.095718,-2.316792,-0.917413,2.047457,-2.3178,-0.954163,2.122708,-2.189973,-0.978795,2.183095,-2.14017,-0.913147,2.177621,-2.108542,-0.915149,2.185978,-2.230582,-0.867094,2.095285,-2.243292,-0.879365,2.16108,-2.267893,-0.832988,2.142985,-2.231332,-0.944666,2.169648,-2.244379,-0.935769,2.110754,-2.216637,-0.926723,1.965209,-2.195606,-0.934512,1.967054,-2.213467,-0.927663,1.970579,-2.250175,-0.914625,1.971763,-2.263863,-0.890411,1.972867,-2.17555,-0.930168,1.992533,-2.233167,-0.894158,1.995306,-2.184038,-0.91096,2.011815,-2.216639,-0.91436,2.010131,-2.236747,-0.911942,2.001399,-2.253222,-0.876722,2.000244,-2.188137,-0.890966,2.016358,-2.241147,-0.864604,1.980398,-2.181473,-0.861137,2.011794,-2.228235,-0.877319,2.002406,-2.262457,-0.887804,1.988812,-2.271275,-0.873182,1.963078,-2.176969,-0.857675,1.9734,-2.183814,-0.841378,1.989978,-2.215003,-0.843224,1.993492,-2.234061,-0.880866,1.981843,-2.273199,-0.855279,1.963717,-2.185382,-0.841841,1.964964,-2.200021,-0.835869,1.968485,-2.238628,-0.844299,1.97021,-2.256693,-0.878323,1.972313,-2.273992,-0.857728,1.953902,-2.185535,-0.841314,1.943006,-2.219249,-0.850947,1.946712,-2.256468,-0.864423,1.953819,-2.268638,-0.864746,1.946739,-2.184489,-0.877077,1.941074,-2.265825,-0.896518,1.953363,-2.270186,-0.912082,1.93002,-2.241127,-0.910499,1.941101,-2.256393,-0.928582,1.946188,-2.235935,-0.892947,1.96311,-2.175836,-0.911625,1.963867,-2.182412,-0.934789,1.968947,-2.232656,-0.906689,1.981778,-2.18209,-0.920312,1.988843,-2.195185,-0.928885,1.992787,-2.213325,-0.923989,1.988242,-2.250732,-0.912595,1.981215,-2.264339,-0.883502,1.980171,-2.176549,-0.903659,2.006267,-2.198044,-0.906271,1.988381,-2.266137,-0.874018,1.982899,-2.178795,-0.880781,2.011778,-2.203095,-0.885802,2.017945,-2.221634,-0.895328,2.00697,-2.258126,-0.897205,1.991219,-2.268721,-0.859144,1.996016,-2.192858,-0.858142,2.006716,-2.209344,-0.867751,2.010551,-2.247121,-0.846177,1.983026,-2.197232,-0.851031,1.993377,-2.252144,-0.864391,1.989273,-2.266003,-0.834856,1.966636,-2.21879,-0.859612,1.971572,-2.268874,-0.846282,1.946689,-2.200461,-0.843145,1.943147,-2.238662,-0.880767,1.962855,-2.27386,-0.859405,1.933445,-2.198413,-0.85829,1.925858,-2.216445,-0.861473,1.925237,-2.23507,-0.867917,1.930234,-2.252634,-0.887459,1.95592,-2.272585,-0.874155,1.943812,-2.182215,-0.876948,1.928592,-2.194466,-0.880937,1.920295,-2.21105,-0.885447,1.918951,-2.229237,-0.890044,1.92438,-2.247031,-0.893935,1.93649,-2.261426,-0.883661,1.946185,-2.179488,-0.89443,1.932847,-2.189554,-0.903246,1.925703,-2.204907,-0.909539,1.924564,-2.223007,-0.890574,1.953311,-2.177143,-0.907048,1.945977,-2.185191,-0.91982,1.942145,-2.19925,-0.927541,1.942169,-2.217138,-0.922969,1.953394,-2.252574,-0.911945,1.962538,-2.264815,-0.895883,2.232599,-2.252421,-0.848224,2.164622,-2.323472,-0.827505,2.139167,-2.249017,-0.85673,2.182517,-2.179087,-0.879338,1.842282,-2.409247,-0.827499,1.831144,-2.351651,-0.821847,1.826174,-2.294663,-0.849768,1.914818,-2.445983,-0.844435,1.993557,-2.465709,-0.964036,2.024778,-2.510284,-0.81294,1.890705,-2.360482,-0.796746,1.973812,-2.373841,-0.982581,2.149001,-2.476814,-0.87346,2.098304,-2.464646,-0.870467,2.16119,-2.410336,-0.950574,2.244263,-2.390805,-0.806908,2.059546,-2.365489,-0.804372,2.03334,-2.298992,-0.808753,1.884611,-2.321011,-0.784797,1.96223,-2.304585,-0.973644,1.918021,-2.458885,-0.968332,1.846758,-2.41656,-0.702317,1.031665,-2.142607,-0.518628,1.357936,-2.059887,-0.543624,1.338167,-2.048249,-0.568087,1.344004,-2.034097,-0.576784,1.370254,-2.028495,-0.567284,1.393466,-2.030839,-0.547804,1.411127,-2.040034,-0.526493,1.409597,-2.052299,-0.511434,1.390233,-2.061658,-0.829185,1.553363,-2.427197,-0.84076,1.74528,-2.261948,-0.818278,1.729898,-2.436679,-0.816135,1.451049,-2.39866,-0.767972,1.527183,-2.202915,-0.761512,1.474457,-2.304269,-0.868189,1.659122,-2.467776,-0.87146,1.762024,-2.253919,-0.88873,1.703294,-2.198554,-0.809752,1.755646,-2.34774,-0.661067,1.602496,-2.386421,-0.725636,1.573903,-2.400815,-0.735814,1.615639,-2.431928,-0.662025,1.663688,-2.404379,-0.771454,1.568693,-2.362104,-0.784578,1.581852,-2.383782,-0.655583,1.645498,-2.262092,-0.630764,1.626324,-2.325572,-0.646296,1.695739,-2.3271,-0.699292,1.714876,-2.260947,-0.744488,1.616439,-2.239785,-0.699975,1.64161,-2.222715,-0.720616,1.676525,-2.207235,-0.762379,1.60401,-2.219746,-0.764796,1.584913,-2.293153,-0.755883,1.574732,-2.294425,-0.668698,1.501914,-2.355077,-0.714962,1.48392,-2.353543,-0.747784,1.479144,-2.31296,-0.63866,1.526892,-2.267054,-0.635545,1.518182,-2.319855,-0.716219,1.513614,-2.232051,-0.670901,1.524706,-2.233489,-0.742616,1.493857,-2.264219,-0.662472,1.339412,-2.207145,-0.678466,1.370507,-2.203687,-0.695545,1.379489,-2.303519,-0.664301,1.388055,-2.32352,-0.634644,1.331071,-2.230977,-0.633305,1.389771,-2.307973,-0.614863,1.341822,-2.123852,-0.627439,1.374061,-2.11522,-0.61924,1.410185,-2.128834,-0.561455,1.355227,-2.168504,-0.586764,1.333864,-2.143913,-0.563118,1.422186,-2.156302,-0.548548,1.394628,-2.168919,-0.58898,1.429096,-2.141052,-0.717431,1.403815,-2.120476,-0.740918,1.306865,-2.274637,-0.699187,1.360446,-2.210414,-0.609752,1.238119,-2.069652,-0.792669,1.619307,-2.187555,-0.711819,1.276763,-1.970034,-0.771863,1.022066,-2.151672,-0.607861,1.125229,-2.130697,-0.794569,1.281972,-2.280122,-0.906847,1.544171,-2.451855,-0.908787,1.444354,-2.414841,-0.786682,1.427617,-2.04836,-0.824791,1.533187,-2.139057,-0.829304,1.624469,-2.175686,-0.838278,1.703158,-2.214878,-0.77066,1.689487,-2.199284,-0.764055,1.726953,-2.245897,-0.731231,1.738081,-2.33024,-0.751144,1.714797,-2.424016,-0.788659,1.660723,-2.458025,-0.61176,1.356844,-2.275767,-0.65412,1.334471,-2.269328,-0.67911,1.340493,-2.260191,-0.695298,1.357872,-2.25127,-0.684119,1.411332,-2.233976,-0.64215,1.442638,-2.242533,-0.609312,1.435421,-2.258452,-0.592803,1.402431,-2.273706,-0.889094,1.798438,-2.41093,-0.831851,1.788518,-2.344153,-0.873013,1.616847,-2.149559,-0.87146,1.552106,-2.127213,-0.790843,1.563952,-2.179678,-0.826348,1.555566,-2.153994,-0.891469,1.934846,-2.138983,-0.889745,1.926877,-2.138807,-0.900344,1.929764,-2.114923,-0.890691,1.933798,-2.10224,-0.899442,1.941442,-2.112958,-0.88145,1.92889,-2.121014,-0.887785,1.935671,-2.129185,-0.907089,1.94034,-2.137717,-0.937498,2.203169,-2.304569,-0.890308,2.144526,-2.354863,-0.857443,2.125318,-2.28796,-0.879907,2.166856,-2.216725,-0.980802,1.797471,-2.415376,-0.921794,1.810482,-2.363585,-0.919864,1.842098,-2.366482,-0.934924,1.786805,-2.309264,-0.920747,1.818115,-2.302809,-0.904905,1.872646,-2.368644,-0.882027,1.830028,-2.315696,-0.883035,1.916478,-2.384141,-0.892278,1.976906,-2.39783,-0.874751,1.924609,-2.391667,-0.866569,1.925012,-2.358766,-0.875885,1.971724,-2.363411,-0.88326,1.981589,-2.403537,-0.887422,2.03931,-2.388626,-0.859265,2.028066,-2.332017,-0.873213,2.006656,-2.170732,-0.899805,1.979755,-2.157285,-0.892672,2.006501,-2.132745,-0.852604,2.025844,-2.164047,-0.948419,1.789715,-2.26216,-0.8842,1.776173,-2.222093,-0.878211,1.799725,-2.259026,-0.849548,1.853508,-2.244065,-0.856841,1.901857,-2.324929,-0.831022,1.928173,-2.25644,-0.839277,1.914285,-2.2167,-0.845587,1.934313,-2.221042,-0.828015,1.951246,-2.240721,-0.843612,2.076404,-2.241814,-0.849968,2.034288,-2.285844,-0.853548,2.117138,-2.178464,-0.839236,1.923451,-2.280305,-0.835267,1.892261,-2.220229,-0.82441,2.024261,-2.209897,-0.825904,2.001647,-2.239889,-0.830923,1.980146,-2.238982,-0.841667,2.008093,-2.205321,-0.829146,1.966444,-2.260898,-0.829393,1.959075,-2.244699,-0.848473,1.984454,-2.298118,-0.869712,1.929875,-2.178863,-0.910854,1.947709,-2.14741,-0.901154,1.959931,-2.157416,-0.880366,1.937353,-2.184484,-0.914561,1.967952,-2.14685,-0.907117,1.965492,-2.160853,-0.866903,1.926694,-2.16489,-0.855608,1.963575,-2.33198,-0.86933,1.821537,-2.21406,-0.84954,1.869579,-2.201777,-0.87668,1.793311,-2.200235,-0.876513,1.842643,-2.177464,-0.883027,1.812681,-2.158314,-0.865156,1.871344,-2.177484,-0.865921,1.912134,-2.1738,-0.879559,1.904081,-2.151015,-0.891576,1.907798,-2.121638,-0.922725,1.757141,-2.206771,-0.906245,1.734783,-2.199851,-0.897055,1.743942,-2.175536,-0.895773,1.770551,-2.140371,-0.898576,1.783569,-2.146796,-0.88751,1.817175,-2.163159,-0.876061,1.859377,-2.182222,-0.883977,1.897973,-2.155918,-0.87099,1.921253,-2.166724,-0.870347,2.017703,-2.358568,-0.874854,2.028166,-2.398468,-0.895418,1.905309,-2.12872,-0.87808,1.849825,-2.181609,-0.88796,1.917071,-2.126951,-0.871906,1.907534,-2.158672,-0.858832,1.874285,-2.188655,-0.868144,1.843644,-2.191955,-0.878671,1.79864,-2.172334,-0.89608,1.759622,-2.153436,-0.901674,1.9263,-2.114161,-0.887109,2.053365,-2.126991,-0.907794,1.794906,-2.267145,-0.91768,1.774264,-2.227473,-0.871822,1.997277,-2.172978,-0.84064,1.9933,-2.204633,-0.8465,1.939087,-2.216225,-0.880009,1.94098,-2.18421,-0.911893,1.963274,-2.166888,-0.876632,1.992254,-2.179228,-0.845386,1.988158,-2.210693,-0.834354,1.959622,-2.251011,-0.851012,1.940273,-2.222156,-0.885286,1.941479,-2.190797,-0.927467,1.958425,-2.183106,-0.916639,1.991794,-2.21519,-0.885918,1.989765,-2.247554,-0.851105,1.961308,-2.268535,-0.87761,1.954687,-2.243808,-0.901569,1.952153,-2.217885,-0.902013,1.964549,-2.220804,-0.878431,1.968196,-2.248682,-0.894693,1.823391,-2.175981,-0.901744,1.791251,-2.155005,-0.900226,1.897564,-2.171379,-0.895637,1.879435,-2.205353,-0.904991,1.908727,-2.141336,-0.891759,1.84158,-2.204607,-0.931822,1.840625,-2.227135,-0.949482,1.839927,-2.226943,-0.938193,1.881456,-2.227208,-0.919276,1.87608,-2.226645,-0.954964,1.884563,-2.22568,-0.912928,1.841654,-2.225297,-0.888747,1.910313,-2.120002,-0.873978,1.903233,-2.151843,-0.864431,1.874007,-2.180151,-0.875014,1.849558,-2.187422,-0.882128,1.807795,-2.169226,-0.891961,1.7634,-2.143625,-0.489842,0.775989,-1.312981,-0.446738,0.789689,-1.316427,-0.451972,0.826987,-1.363213,-0.495152,0.801168,-1.366295,-0.491499,0.744828,-1.252202,-0.484169,0.672931,-1.306054,-0.4173,0.664569,-1.212905,-0.467791,0.666847,-1.205337,-0.506804,0.676986,-1.178878,-0.493954,0.720438,-1.173258,-0.430893,0.705087,-1.172964,-0.458046,0.715784,-1.173008,-0.494941,0.726829,-1.206405,-0.493102,0.685731,-1.136242,-0.450184,0.678951,-1.138457,-0.460119,0.680827,-1.172835,-0.486786,0.720766,-1.140257,-0.434418,0.677495,-1.176251,-0.428636,0.686754,-1.142629,-0.425206,0.708168,-1.13946,-0.429066,0.681849,-1.117633,-0.43,0.697327,-1.116595,-0.428588,0.685611,-1.151768,-0.406189,0.682259,-1.156159,-0.424937,0.678955,-1.127546,-0.405433,0.676856,-1.13157,-0.407274,0.675757,-1.186668,-0.389724,0.671352,-1.191583,-0.37252,0.660513,-1.227691,-0.447241,0.666664,-1.316022,-0.404276,0.661046,-1.326462,-0.425845,0.655637,-1.390421,-0.417153,0.758523,-1.326288,-0.427067,0.792972,-1.380222,-0.47407,0.661738,-1.373462,-0.484058,0.656608,-1.409611,-0.430849,0.651557,-1.424577,-0.400343,0.722177,-1.262404,-0.439313,0.744002,-1.257002,-0.433039,0.721063,-1.215663,-0.390618,0.702905,-1.227222,-0.517452,0.66791,-1.365274,-0.534578,0.660772,-1.403587,-0.541137,0.658374,-1.439681,-0.522217,0.789975,-1.392007,-0.514774,0.769634,-1.457853,-0.487222,0.769219,-1.477554,-0.454764,0.764314,-1.467743,-0.499056,0.696265,-1.502239,-0.528479,0.69881,-1.485416,-0.466152,0.694057,-1.499566,-0.412808,0.764695,-1.428221,-0.441618,0.65,-1.45766,-0.492029,0.652417,-1.442377,-0.498852,0.652342,-1.487792,-0.470594,0.651028,-1.485454,-0.524146,0.655983,-1.471543,-0.407023,0.699779,-1.185102,-0.387609,0.692734,-1.189129,-0.388029,0.694988,-1.177353,-0.39084,0.676477,-1.182516,-0.389366,0.673353,-1.163019,-0.374967,0.665752,-1.165572,-0.370753,0.686777,-1.180044,-0.372245,0.669747,-1.183362,-0.374016,0.676547,-1.164051,-0.385111,0.685588,-1.163173,-0.372113,0.666881,-1.202014,-0.375405,0.685834,-1.199274,-0.403886,0.702979,-1.161319,-0.406722,0.680003,-1.168234,-0.40529,0.674149,-1.14676,-0.401487,0.690109,-1.141545,-0.386043,0.686243,-1.143929,-0.388476,0.673344,-1.148961,-0.387002,0.676984,-1.16871,-0.381396,0.697657,-1.16301,-0.400375,0.704077,-1.152224,-0.426448,0.708215,-1.146545,-0.45417,0.709094,-1.137863,-0.454966,0.688721,-1.141051,-0.448527,0.683627,-1.117281,-0.446215,0.698661,-1.116237,-0.450537,0.716388,-1.142369,-0.450868,0.68375,-1.109031,-0.473317,0.687026,-1.102438,-0.471165,0.704747,-1.104914,-0.449663,0.701444,-1.110708,-0.420565,0.695699,-1.124434,-0.403275,0.692693,-1.128261,-0.465304,0.872208,-1.495441,-0.486962,0.885592,-1.476053,-0.510716,0.879,-1.466244,-0.536871,0.848774,-1.468293,-0.538606,0.813874,-1.498927,-0.515251,0.804782,-1.524001,-0.48566,0.815974,-1.528861,-0.465574,0.842821,-1.514052,-0.510247,0.671939,-1.210259,-0.471726,0.668611,-1.248326,-0.426406,0.664644,-1.252359,-0.381885,0.660895,-1.261619,-0.376166,0.690348,-1.229835,-0.387548,0.695036,-1.266477,-0.409795,0.702194,-1.32964,-0.424371,0.700826,-1.387015,-0.43157,0.699395,-1.430963,-0.447078,0.691146,-1.474296,-0.536452,0.704585,-1.446429,-0.524072,0.705529,-1.407067,-0.515001,0.71185,-1.363787,-0.507673,0.698171,-1.304756,-0.509895,0.677337,-1.247364,-0.480277,0.730811,-1.490157,-0.494153,0.735016,-1.496229,-0.506718,0.732997,-1.487822,-0.527015,1.362555,-2.053501,-0.548087,1.348776,-2.044184,-0.564434,1.352243,-2.03415,-0.568994,1.370912,-2.03304,-0.560349,1.385596,-2.03589,-0.54798,1.400184,-2.039658,-0.532429,1.397505,-2.04795,-0.518681,1.389107,-2.055666,-0.837193,1.717787,-2.248001,-0.936197,1.719287,-2.435361,-0.873834,1.732067,-2.366884,-0.517557,0.974623,-1.560625,-0.549877,0.967705,-1.55215,-0.4954,0.965088,-1.588324,-0.588911,0.943509,-1.568951,-0.596794,0.903529,-1.604837,-0.564583,0.88575,-1.639124,-0.519991,0.904661,-1.646737,-0.494339,0.942954,-1.626033,-0.516052,0.98316,-1.663573,-0.54908,0.940842,-1.667271,-0.950867,1.748324,-2.406843,-0.906594,1.753424,-2.362085,-0.888138,1.725101,-2.279417,-0.54059,1.348819,-2.012911,-0.545179,1.361637,-2.001684,-0.550757,1.382606,-2.004823,-0.507564,1.365982,-2.022659,-0.51101,1.357564,-2.017641,-0.525973,1.397668,-2.022932,-0.511734,1.399492,-2.026167,-0.54996,1.399145,-2.006714,-0.500866,1.414245,-1.923253,-0.492462,1.445772,-1.940017,-0.48083,1.414353,-1.927977,-0.472899,1.43955,-1.951332,-0.524972,1.34887,-1.973341,-0.503742,1.38893,-1.921968,-0.499844,1.351917,-1.982347,-0.488622,1.390003,-1.916636,-0.50517,1.368708,-1.917538,-0.50656,1.389323,-1.913253,-0.492247,1.373013,-1.90949,-0.496803,1.390362,-1.904629,-0.518817,1.370821,-1.905725,-0.527104,1.389224,-1.905756,-0.519804,1.374464,-1.889739,-0.528489,1.389697,-1.889239,-0.536065,1.369528,-1.905583,-0.542395,1.385873,-1.910905,-0.544986,1.375102,-1.892033,-0.550747,1.387468,-1.896224,-0.553799,1.368662,-1.912068,-0.557861,1.381376,-1.916913,-0.56004,1.371965,-1.900864,-0.564569,1.383554,-1.905324,-0.503804,1.393273,-1.91145,-0.507667,1.415754,-1.914212,-0.489847,1.397751,-1.903566,-0.49087,1.417815,-1.904186,-0.520328,1.396126,-1.899788,-0.523853,1.416696,-1.900053,-0.517275,1.399875,-1.88234,-0.520571,1.416787,-1.882086,-0.543686,1.395968,-1.8964,-0.546626,1.416324,-1.896347,-0.545556,1.399171,-1.87776,-0.550422,1.414183,-1.878982,-0.559661,1.398322,-1.902249,-0.563249,1.412224,-1.900721,-0.567061,1.39749,-1.891971,-0.57002,1.410003,-1.892365,-0.531526,1.422618,-2.020333,-0.500694,1.461296,-1.948342,-0.492553,1.460322,-1.974444,-0.550772,1.455114,-1.973719,-0.56558,1.455433,-2.001886,-0.51571,1.46854,-1.981719,-0.548972,1.464911,-2.007078,-0.553429,1.501808,-1.944106,-0.563724,1.511786,-1.954836,-0.541958,1.506239,-1.948889,-0.551919,1.515843,-1.959813,-0.490609,1.449222,-1.93581,-0.49245,1.464323,-1.947771,-0.474432,1.448552,-1.935402,-0.476023,1.463043,-1.949371,-0.491996,1.4571,-1.911215,-0.494534,1.476064,-1.919292,-0.477367,1.461866,-1.906225,-0.481826,1.475972,-1.913081,-0.500345,1.459429,-1.888755,-0.503172,1.475055,-1.893857,-0.490129,1.464114,-1.880844,-0.492001,1.47594,-1.88683,-0.516228,1.464244,-1.867749,-0.51684,1.475944,-1.871661,-0.506618,1.466455,-1.861268,-0.507702,1.477059,-1.865568,-0.487979,1.422653,-1.918904,-0.485786,1.444854,-1.928337,-0.468958,1.4227,-1.918491,-0.468509,1.44352,-1.927737,-0.495581,1.430616,-1.897492,-0.492451,1.451691,-1.902076,-0.480727,1.431573,-1.883643,-0.477466,1.449343,-1.88821,-0.510105,1.431223,-1.882459,-0.514572,1.450226,-1.883751,-0.499177,1.43469,-1.865108,-0.503427,1.451091,-1.867909,-0.528117,1.431992,-1.867994,-0.529999,1.446391,-1.868426,-0.520956,1.432125,-1.855864,-0.52232,1.445539,-1.857188,-0.510233,1.366705,-1.926175,-0.490842,1.369537,-1.924494,-0.530267,1.368283,-1.982984,-0.540791,1.393207,-1.988074,-0.555405,1.416926,-2.007016,-0.542281,1.429021,-1.974506,-0.542741,1.410698,-1.986638,-0.522673,1.403689,-1.976722,-0.492549,1.416451,-1.936423,-0.50068,1.438294,-1.952353,-0.518904,1.37687,-1.958144,-0.504837,1.39029,-1.93406,-0.511411,1.4494,-1.959697,-0.548893,1.448682,-1.975173,-0.553956,1.493051,-1.985927,-0.543127,1.486164,-1.969932,-0.555491,1.479092,-1.963176,-0.568743,1.485955,-1.979612,-0.592414,0.936018,-1.664234,-0.62447,0.952073,-1.649819,-0.613131,0.994639,-1.628073,-0.518981,1.016958,-1.640928,-0.575009,1.026622,-1.611335,-0.542625,1.031268,-1.619638,-0.488081,1.065993,-1.632795,-0.475358,0.992003,-1.657826,-0.52736,0.911956,-1.662734,-0.611518,0.871007,-1.663758,-0.606449,1.103963,-1.619559,-0.516891,1.120874,-1.786187,-0.556989,1.167217,-1.924815,-0.602416,1.20263,-2.034352,-0.512459,1.030554,-1.80383,-0.556218,1.067595,-1.946515,-0.605775,1.10134,-2.063711,-0.573202,0.947407,-1.793562,-0.626498,0.993087,-1.938828,-0.676141,1.021027,-2.061529,-0.65809,0.913716,-1.788182,-0.707846,0.949472,-1.948244,-0.753369,0.992943,-2.07435,-0.531004,1.097736,-1.600955,-0.568723,1.160377,-1.772352,-0.638749,1.21058,-1.904692,-0.670291,1.24324,-1.991832,-0.53253,0.92964,-1.665352,-0.496092,0.988444,-1.658919,-0.500708,1.050696,-1.631543,-0.6003,0.904414,-1.670596,-0.652485,0.92053,-1.658041,-0.621657,1.064525,-1.620691,-0.66685,0.989109,-1.642796,-0.541749,1.074203,-1.599458,-0.70584,0.901671,-1.676313,-0.872233,1.530561,-2.119119,-0.737641,0.851959,-1.682893,-0.834622,0.987966,-2.154597,-0.832049,0.916461,-2.051994,-0.793625,0.886452,-1.834362,-0.705816,1.043184,-2.134503,-0.620224,1.230627,-2.076826,-0.696695,1.267959,-2.008394,-0.768592,1.034167,-2.13868,-0.620954,1.125459,-2.126055,-0.866297,1.016786,-2.203794,-0.956761,1.435698,-2.397561,-0.969296,1.535292,-2.434208,-0.97567,1.651751,-2.448037,-0.971381,1.741392,-2.42698,-0.977008,1.805465,-2.408894,-0.86194,1.264528,-2.27859,-0.858795,1.031804,-2.189299,-0.628832,0.991156,-1.627286,-0.586775,1.050284,-1.610291,-0.772585,1.271617,-1.946497,-0.839749,1.421483,-2.028083,-0.636025,1.165089,-1.769897,-0.703299,1.201194,-1.896596,-0.752227,1.227684,-1.952001,-0.767928,1.261237,-1.971821,-0.975234,1.965329,-2.174264,-1.000833,1.965618,-2.201165,-1.01907,1.965239,-2.205545,-0.99275,1.972574,-2.119342,-0.991934,1.988663,-2.18958,-1.005851,1.982774,-2.200439,-0.999642,1.979431,-2.116808,-0.995715,1.99405,-2.129493,-1.000707,2.008143,-2.166093,-1.018618,1.995,-2.196364,-1.012979,1.997981,-2.123744,-1.018429,2.008243,-2.138894,-1.031388,2.010026,-2.176397,-1.035798,1.999442,-2.191626,-1.03794,1.98332,-2.201025,-1.018179,1.978629,-2.110736,-1.029917,1.992858,-2.117983,-1.040225,2.001988,-2.131571,-1.052132,1.994132,-2.185714,-1.046824,1.980464,-2.198055,-1.007314,1.962277,-2.110772,-1.042166,1.979345,-2.11404,-1.056047,1.984596,-2.126549,-1.064772,1.986601,-2.143556,-1.052981,1.973271,-2.195657,-1.026868,1.961644,-2.108164,-1.061783,1.961192,-2.125073,-1.054724,1.963794,-2.194529,-1.04106,1.943415,-2.114964,-1.054783,1.93815,-2.127699,-1.066284,1.939188,-2.163942,-1.06199,1.945646,-2.181698,-1.017137,1.945335,-2.11163,-1.027926,1.930982,-2.119629,-1.04878,1.92384,-2.169034,-1.015355,1.917745,-2.140998,-1.020914,1.915134,-2.15844,-1.032203,1.930151,-2.190715,-1.036018,1.9461,-2.200229,-1.037952,1.964599,-2.203717,-0.998514,1.945806,-2.117615,-0.993666,1.93223,-2.131054,-1.016077,1.935626,-2.195698,-0.977964,1.941432,-2.153224,-0.990483,1.942846,-2.188688,-1.004586,1.948402,-2.199816,-0.99005,1.963056,-2.120466,-0.977798,1.9639,-2.136016,-0.972112,1.964677,-2.155169,-0.985431,1.96567,-2.190425,-0.983087,1.981352,-2.133981,-0.979168,1.987701,-2.152507,-0.982123,1.990423,-2.17235,-1.021858,1.974398,-2.205259,-0.996131,2.003988,-2.146678,-1.009081,2.004877,-2.184032,-1.028752,1.981055,-2.203632,-1.009024,1.981612,-2.1137,-1.024871,2.01297,-2.157295,-1.048159,2.005569,-2.149126,-1.052634,2.003072,-2.168387,-1.024732,1.971348,-2.108617,-1.067674,1.985325,-2.162796,-1.06351,1.980609,-2.18123,-1.045955,1.961265,-2.113159,-1.071421,1.96148,-2.142185,-1.073808,1.962035,-2.161787,-1.067575,1.962898,-2.180247,-1.024144,1.952065,-2.109099,-1.063356,1.936823,-2.144798,-1.051859,1.954614,-2.19529,-1.037695,1.922061,-2.1336,-1.044596,1.920087,-2.150716,-1.048944,1.933757,-2.185515,-1.045053,1.948128,-2.197488,-1.007788,1.942944,-2.114647,-1.010694,1.927091,-2.125525,-1.026864,1.919241,-2.175995,-0.993636,1.924253,-2.14814,-0.997814,1.921932,-2.166518,-1.005751,1.925985,-2.183269,-1.027229,1.949016,-2.202777,-0.991991,1.953232,-2.119758,-0.981729,1.945912,-2.134905,-0.98101,1.940336,-2.17229,-1.021033,1.956028,-2.204475,-1.065271,1.852596,-2.400862,-1.111533,2.175953,-2.445567,-1.11658,2.04526,-2.470494,-1.057544,2.257734,-2.344087,-0.967377,2.237587,-2.192062,-0.93178,2.187986,-2.133293,-1.08849,1.928383,-2.433944,-1.055798,2.224512,-2.162308,-1.140772,2.147562,-2.160054,-1.085652,2.124415,-2.104413,-1.010463,2.173905,-2.092544,-1.168932,1.822446,-2.253528,-1.148615,1.808567,-2.184981,-1.104316,1.807033,-2.152799,-1.220232,1.893199,-2.241489,-1.246554,1.97144,-2.242301,-1.225417,2.009729,-2.361892,-1.167942,1.869896,-2.171962,-1.1938,1.953408,-2.158298,-1.202242,2.134768,-2.352212,-1.242242,2.076866,-2.258108,-1.204234,2.140055,-2.221388,-1.14969,2.232041,-2.280101,-1.189421,2.039175,-2.154671,-1.132765,2.016773,-2.120476,-1.137103,1.865988,-2.149608,-1.141404,1.945009,-2.114182,-1.167074,1.906854,-2.34988,-1.128515,1.836071,-2.328553,-1.042411,1.527482,-2.402976,-1.007849,1.422193,-2.375161,-1.058938,1.733797,-2.400043,-1.059787,1.642715,-2.411748,-0.893203,1.412809,-2.01022,-0.901413,1.258933,-2.274328,-1.123539,1.07234,-2.101888,-1.059014,1.805813,-2.394169,-0.938857,1.697832,-2.181613,-0.909938,1.551638,-2.109677,-0.911314,1.615929,-2.128541,-0.78724,1.431091,-1.778237,-0.799115,1.402752,-1.764371,-0.79876,1.375059,-1.773692,-0.788539,1.367653,-1.799471,-0.776716,1.381476,-1.821346,-0.768832,1.40216,-1.830823,-0.767679,1.425242,-1.825988,-0.773653,1.440531,-1.806112,-1.192518,1.474808,-2.23386,-1.060468,1.724865,-2.157277,-1.216327,1.685684,-2.225346,-1.159106,1.390259,-2.248925,-1.081429,1.46758,-2.099889,-1.132631,1.41197,-2.160601,-1.216936,1.597398,-2.279866,-1.041307,1.745851,-2.178194,-0.986123,1.691176,-2.164035,-1.148318,1.724209,-2.174473,-1.205798,1.565121,-2.001114,-1.19838,1.50322,-2.041608,-1.240501,1.526366,-2.083308,-1.246874,1.606241,-2.036854,-1.158695,1.492984,-2.093418,-1.183238,1.492635,-2.127245,-1.115481,1.649249,-2.024098,-1.166341,1.624449,-1.993647,-1.19077,1.67273,-2.035855,-1.124273,1.682856,-2.046755,-1.076443,1.584756,-2.090505,-1.075298,1.632767,-2.05606,-1.067115,1.648323,-2.046451,-1.067637,1.55734,-2.101341,-1.110335,1.529791,-2.101568,-1.12085,1.513761,-2.115211,-1.132453,1.501713,-1.95799,-1.116777,1.465253,-1.987846,-1.074241,1.463254,-2.018118,-1.069169,1.575138,-1.956907,-1.11289,1.546356,-1.942867,-1.016605,1.543371,-2.023924,-1.030064,1.576043,-1.990992,-1.034884,1.499664,-2.030127,-0.981921,1.407129,-1.838815,-0.974174,1.393689,-1.87286,-1.041337,1.417,-1.913714,-1.064809,1.439308,-1.89324,-0.988249,1.443712,-1.828619,-1.055185,1.470562,-1.872332,-0.893766,1.395087,-1.80659,-0.88244,1.382177,-1.837848,-0.874635,1.399571,-1.872403,-0.892232,1.465451,-1.815103,-0.895958,1.428921,-1.796306,-0.859333,1.461291,-1.874562,-0.870779,1.47856,-1.848074,-0.859858,1.432116,-1.884447,-1.06398,1.326431,-2.051932,-1.082955,1.238086,-2.208385,-1.103925,1.278059,-2.124762,-1.018308,1.232319,-1.990854,-1.035644,1.583998,-2.100655,-0.910141,1.013537,-2.208517,-0.928969,1.25804,-1.94802,-1.076797,1.03225,-2.156263,-1.100216,1.167208,-2.025877,-1.024124,1.230052,-2.242756,-1.163968,1.493152,-2.32094,-1.110128,1.406317,-2.324073,-0.992841,1.377098,-2.011241,-0.828267,1.268017,-1.932149,-1.007325,1.500001,-2.07713,-1.004135,1.602248,-2.109685,-1.024626,1.682519,-2.136931,-1.039502,1.663184,-2.074338,-1.082559,1.696693,-2.081749,-1.171203,1.6987,-2.103505,-1.238713,1.660209,-2.159126,-1.258012,1.567412,-2.184205,-1.002138,1.492839,-1.855598,-1.02866,1.439424,-1.841847,-1.027899,1.412802,-1.855745,-1.017749,1.39724,-1.878885,-0.981239,1.414179,-1.923151,-0.956564,1.458612,-1.940725,-0.955009,1.494556,-1.927398,-0.971577,1.513324,-1.894077,-1.162514,1.775853,-2.266538,-1.137001,1.763072,-2.188974,-0.954795,1.732519,-2.210823,-0.952603,1.608694,-2.114582,-0.950616,1.540923,-2.0968,-1.044458,1.521368,-2.091979,-1.000928,1.529797,-2.08813,-0.905791,1.948175,-2.101727,-0.899244,1.93604,-2.09038,-0.906955,1.926103,-2.104646,-0.915274,1.949115,-2.12011,-0.921425,1.957987,-2.132821,-0.91716,2.002719,-2.124037,-0.906765,1.911441,-2.102934,-0.920029,1.974811,-2.131178,-0.919521,2.116595,-2.117955,-0.914419,1.779424,-2.134573,-0.934886,1.730461,-2.176563,-0.920583,1.740409,-2.150351,-0.947267,1.755732,-2.193152,-1.068166,1.797645,-2.427375,-1.000138,2.21331,-2.252461,-0.943402,2.16536,-2.155985,-0.90739,1.907355,-2.103866,-0.909132,1.766936,-2.128739,-0.906678,1.916062,-2.103895,-0.913756,1.75373,-2.136939,-0.908855,1.923519,-2.10802,-0.9126,2.050606,-2.111614,-0.971985,1.777676,-2.231946,-0.91962,1.784226,-2.141599,-0.917904,1.908095,-2.122046,-0.973152,1.842515,-2.222133,-0.971169,1.888047,-2.220848,-0.909614,1.759306,-2.129339,-0.904981,1.911743,-2.100286,-0.977943,1.770694,-2.238575,-1.04475,1.713908,-2.404675,-1.042426,1.736738,-2.402722,-0.966087,1.71242,-2.237484,-0.943988,1.931564,-2.110031,-0.944766,1.923313,-2.108518,-0.919396,1.928543,-2.104412,-0.9137,1.932365,-2.089535,-0.91818,1.940316,-2.102632,-0.934074,1.925567,-2.091999,-0.937831,1.93255,-2.101579,-0.933989,1.938764,-2.122865,-1.07613,2.196128,-2.226542,-1.138869,2.1319,-2.214964,-1.097264,2.113137,-2.152981,-1.028097,2.159328,-2.133319,-1.106381,1.779016,-2.357054,-1.111656,1.784219,-2.273235,-1.115502,1.824417,-2.264479,-1.054353,1.776445,-2.246242,-1.058995,1.807368,-2.228331,-1.125695,1.856721,-2.248358,-1.090633,1.815321,-2.202199,-1.152085,1.899724,-2.235155,-1.161445,1.963111,-2.245712,-1.162843,1.907376,-2.231193,-1.138952,1.909221,-2.206415,-1.140243,1.958263,-2.214428,-1.171339,1.966976,-2.240946,-1.161063,2.02541,-2.234612,-1.126425,2.014496,-2.181649,-0.979974,2.001233,-2.110643,-0.952707,1.977057,-2.127489,-0.937513,2.004224,-2.107507,-0.98638,2.019049,-2.088753,-1.010066,1.784153,-2.229738,-1.006806,1.766017,-2.155548,-1.043236,1.787514,-2.169285,-1.048174,1.840786,-2.13442,-1.114241,1.886386,-2.181423,-1.070218,1.914944,-2.122164,-1.033058,1.902896,-2.108752,-1.034214,1.923554,-2.115677,-1.05947,1.938847,-2.110448,-1.061262,2.065349,-2.119313,-1.092305,2.021979,-2.149448,-1.005222,2.109434,-2.093096,-1.085798,1.909788,-2.141829,-1.037173,1.880054,-2.108048,-1.039921,2.013315,-2.0886,-1.062998,1.989604,-2.106444,-1.057979,1.968613,-2.111187,-1.025869,1.998737,-2.101645,-1.076524,1.953829,-2.121583,-1.062205,1.946862,-2.113384,-1.099712,1.971692,-2.156712,-0.988131,1.922487,-2.113384,-0.939454,1.946083,-2.131525,-0.95296,1.957044,-2.128475,-0.987696,1.93072,-2.125098,-0.936249,1.966792,-2.134654,-0.951998,1.963082,-2.135647,-0.978159,1.919623,-2.103493,-1.123314,1.949977,-2.181305,-1.011249,1.811261,-2.136213,-1.014986,1.858451,-2.110765,-0.993611,1.784045,-2.13634,-0.980845,1.834712,-2.12094,-0.957903,1.806943,-2.117773,-0.98904,1.862105,-2.110167,-0.985649,1.904311,-2.107883,-0.961186,1.898369,-2.106591,-0.930336,1.905101,-2.100528,-0.971579,1.752709,-2.180469,-0.970181,1.72866,-2.165149,-0.955465,1.738445,-2.143718,-0.929026,1.767849,-2.122326,-0.935133,1.780736,-2.127034,-0.960408,1.811751,-2.123782,-0.987129,1.851045,-2.122216,-0.963282,1.892326,-2.112973,-0.977424,1.914383,-2.108059,-1.142563,2.003876,-2.205355,-1.175086,2.012916,-2.229487,-0.934535,1.902557,-2.107509,-0.98475,1.841817,-2.124015,-0.936197,1.913841,-2.100515,-0.970635,1.900822,-2.104599,-1.000585,1.864236,-2.111068,-0.996116,1.834113,-2.121998,-0.969849,1.791267,-2.122716,-0.938858,1.755893,-2.130098,-0.918022,1.92523,-2.105141,-0.939082,2.050726,-2.097738,-1.034808,1.784901,-2.198747,-0.994275,1.767663,-2.18633,-0.981885,1.991686,-2.11103,-1.024673,1.983952,-2.101053,-1.030009,1.928652,-2.113729,-0.988064,1.934299,-2.124448,-0.954429,1.960991,-2.142987,-0.98435,1.986783,-2.118601,-1.026999,1.978933,-2.108475,-1.065069,1.947568,-2.120934,-1.032454,1.930086,-2.120727,-0.991157,1.934876,-2.132309,-0.959309,1.956745,-2.165168,-0.994358,1.987846,-2.171447,-1.037663,1.982057,-2.162147,-1.071397,1.949953,-2.144404,-1.036535,1.946484,-2.15463,-1.002271,1.946799,-2.161391,-1.004844,1.959224,-2.16292,-1.040837,1.959912,-2.157229,-0.969828,1.818235,-2.135876,-0.942665,1.788217,-2.133019,-0.968677,1.892743,-2.134671,-0.999246,1.872193,-2.150174,-0.941209,1.906183,-2.121832,-0.998693,1.834295,-2.14801,-0.998465,1.837393,-2.193617,-0.990059,1.839443,-2.2078,-0.994638,1.877684,-2.197588,-1.004513,1.870334,-2.181828,-0.984079,1.88262,-2.210413,-1.006045,1.835902,-2.177067,-0.930059,1.907489,-2.097427,-0.964478,1.896948,-2.102505,-0.991446,1.864623,-2.110976,-0.989803,1.840936,-2.124921,-0.966664,1.801124,-2.123326,-0.933434,1.759895,-2.121062,-0.667059,0.596647,-1.484666,-0.708608,0.579693,-1.491279,-0.72688,0.618681,-1.52885,-0.678294,0.62788,-1.533465,-0.645717,0.564172,-1.428473,-0.603977,0.514936,-1.491373,-0.649538,0.449856,-1.408264,-0.612871,0.48279,-1.394747,-0.59012,0.510996,-1.36294,-0.628287,0.534186,-1.353439,-0.665949,0.482073,-1.362282,-0.652406,0.507547,-1.357882,-0.631561,0.545204,-1.385195,-0.606409,0.501475,-1.321395,-0.634428,0.469152,-1.329334,-0.627975,0.482773,-1.361844,-0.634082,0.524225,-1.321695,-0.64522,0.464315,-1.368568,-0.655811,0.461804,-1.334935,-0.672427,0.475034,-1.329527,-0.652398,0.454188,-1.310865,-0.66182,0.466161,-1.307799,-0.655056,0.462468,-1.34409,-0.669786,0.446286,-1.351399,-0.653581,0.451048,-1.321468,-0.666942,0.437603,-1.327928,-0.664566,0.447301,-1.382156,-0.674936,0.433546,-1.389557,-0.680687,0.420496,-1.428466,-0.627763,0.488167,-1.506204,-0.656538,0.458074,-1.52211,-0.636377,0.478763,-1.583353,-0.710555,0.539059,-1.508278,-0.724958,0.580237,-1.554945,-0.60397,0.511499,-1.560361,-0.592885,0.520226,-1.595486,-0.629759,0.484727,-1.616953,-0.699805,0.490297,-1.451785,-0.684629,0.530762,-1.439276,-0.674569,0.502605,-1.40212,-0.694725,0.463698,-1.420634,-0.575231,0.542655,-1.546558,-0.557424,0.554848,-1.583249,-0.55072,0.563397,-1.618372,-0.650614,0.641353,-1.558058,-0.643612,0.632532,-1.626143,-0.665133,0.617836,-1.649259,-0.685561,0.591566,-1.642779,-0.607033,0.575161,-1.680101,-0.586521,0.593158,-1.659838,-0.630491,0.55187,-1.681507,-0.717593,0.558109,-1.607906,-0.620435,0.496104,-1.64852,-0.583957,0.527783,-1.627391,-0.578528,0.539814,-1.671377,-0.599055,0.52024,-1.67247,-0.561855,0.556067,-1.652015,-0.680475,0.464797,-1.377638,-0.690533,0.44772,-1.384707,-0.691746,0.447677,-1.372772,-0.677488,0.436552,-1.379853,-0.676654,0.42997,-1.361197,-0.682561,0.415459,-1.36631,-0.69943,0.430882,-1.378427,-0.687147,0.4197,-1.383655,-0.690349,0.422642,-1.36357,-0.687874,0.436384,-1.360306,-0.685282,0.420636,-1.402411,-0.695203,0.436431,-1.396964,-0.685055,0.461135,-1.354158,-0.667849,0.446992,-1.363521,-0.665207,0.438064,-1.343252,-0.678547,0.44664,-1.336552,-0.687689,0.434212,-1.341152,-0.677388,0.427009,-1.347446,-0.680788,0.43212,-1.366622,-0.698578,0.442967,-1.359062,-0.688473,0.458152,-1.345458,-0.671485,0.477069,-1.336361,-0.651132,0.494107,-1.324525,-0.637189,0.479961,-1.330122,-0.638842,0.467987,-1.30807,-0.650429,0.477538,-1.305425,-0.658628,0.497972,-1.328469,-0.637192,0.468189,-1.299656,-0.622385,0.483974,-1.290181,-0.635591,0.496228,-1.290652,-0.649669,0.480898,-1.299234,-0.667855,0.460197,-1.316808,-0.678949,0.447468,-1.322933,-0.77451,0.682185,-1.619776,-0.757491,0.703051,-1.602484,-0.732608,0.712217,-1.602421,-0.698819,0.707586,-1.623447,-0.691805,0.688214,-1.666125,-0.714545,0.670348,-1.686758,-0.744473,0.659882,-1.678745,-0.766968,0.66387,-1.648372,-0.584063,0.514763,-1.394105,-0.610841,0.493921,-1.436443,-0.642509,0.462458,-1.446098,-0.673688,0.432559,-1.460785,-0.697432,0.445466,-1.426432,-0.691712,0.462499,-1.460656,-0.679262,0.492865,-1.519466,-0.667064,0.510949,-1.574515,-0.660471,0.521962,-1.617183,-0.643137,0.533134,-1.659147,-0.584456,0.595997,-1.619781,-0.594627,0.582062,-1.582286,-0.605832,0.573605,-1.539878,-0.602712,0.548682,-1.484249,-0.587681,0.524849,-1.430039,-0.643891,0.586793,-1.666023,-0.636116,0.599895,-1.669894,-0.625332,0.605057,-1.660424,-0.786118,1.420196,-1.783077,-0.794247,1.396637,-1.774679,-0.792684,1.378036,-1.78077,-0.787521,1.376405,-1.798959,-0.779897,1.38872,-1.812912,-0.772778,1.400872,-1.821487,-0.773189,1.417083,-1.815832,-0.775167,1.430726,-1.805132,-1.043228,1.698276,-2.137543,-1.139125,1.706133,-2.338718,-0.949898,1.693663,-2.210082,-1.123485,1.709624,-2.239244,-0.82169,0.802602,-1.647015,-0.791115,0.817387,-1.65032,-0.844888,0.785614,-1.66987,-0.757955,0.827224,-1.685189,-0.753238,0.802987,-1.736904,-0.787046,0.776603,-1.762984,-0.831033,0.767542,-1.747908,-0.852481,0.77672,-1.709916,-0.886913,0.838841,-1.718245,-0.889712,0.818984,-1.735565,-1.110047,1.741014,-2.332794,-1.104104,1.734496,-2.262058,-1.043969,1.710553,-2.196143,-0.761041,1.370558,-1.774237,-0.748473,1.375247,-1.792644,-0.746438,1.393919,-1.804313,-0.766795,1.41942,-1.765655,-0.762015,1.389373,-1.760937,-0.75699,1.424816,-1.806525,-0.758962,1.438479,-1.787062,-0.742416,1.409992,-1.810456,-0.657255,1.40959,-1.749373,-0.652207,1.447208,-1.757419,-0.664846,1.4211,-1.730422,-0.671811,1.446807,-1.741738,-0.715935,1.360938,-1.77206,-0.665741,1.38738,-1.743935,-0.729034,1.370517,-1.750692,-0.663027,1.396984,-1.733015,-0.659338,1.369446,-1.736215,-0.659617,1.386894,-1.748048,-0.653371,1.382409,-1.728063,-0.651771,1.394911,-1.741445,-0.649417,1.368419,-1.756396,-0.65694,1.386959,-1.760846,-0.636,1.3779,-1.761017,-0.642338,1.393293,-1.765672,-0.657294,1.372375,-1.776514,-0.663784,1.389516,-1.777665,-0.644052,1.381268,-1.78325,-0.649042,1.394628,-1.785097,-0.663628,1.377213,-1.794122,-0.668922,1.390389,-1.794139,-0.652476,1.382681,-1.79872,-0.657333,1.394946,-1.799521,-0.647876,1.391442,-1.740655,-0.653507,1.407685,-1.753759,-0.64116,1.404355,-1.73214,-0.64469,1.420053,-1.7426,-0.639102,1.388495,-1.759446,-0.649274,1.406303,-1.763367,-0.62591,1.398606,-1.766741,-0.634214,1.41334,-1.770242,-0.648338,1.383798,-1.78157,-0.658205,1.401555,-1.7846,-0.635564,1.392957,-1.792763,-0.643902,1.406234,-1.794884,-0.655877,1.381931,-1.803927,-0.663567,1.393796,-1.805076,-0.646406,1.38728,-1.810894,-0.653159,1.39804,-1.812925,-0.743472,1.446448,-1.794126,-0.65836,1.460859,-1.773264,-0.683997,1.469305,-1.764763,-0.688941,1.454608,-1.816454,-0.714997,1.466216,-1.829991,-0.688311,1.474637,-1.784967,-0.714698,1.477554,-1.813743,-0.642458,1.490754,-1.829301,-0.651557,1.501172,-1.836976,-0.643298,1.496883,-1.81768,-0.652845,1.506974,-1.824902,-0.648365,1.44973,-1.753272,-0.654959,1.466446,-1.761675,-0.654225,1.450831,-1.73827,-0.662229,1.468188,-1.745866,-0.620045,1.454729,-1.746804,-0.625937,1.472405,-1.750807,-0.622209,1.456138,-1.730821,-0.628321,1.470813,-1.735032,-0.599325,1.45878,-1.741197,-0.60245,1.475664,-1.744921,-0.591725,1.46407,-1.731719,-0.600497,1.474248,-1.732242,-0.58,1.462499,-1.758726,-0.583515,1.474853,-1.757993,-0.572918,1.465769,-1.74987,-0.577647,1.47628,-1.750389,-0.638787,1.426444,-1.741295,-0.643948,1.448658,-1.747456,-0.644344,1.43082,-1.723972,-0.651412,1.45064,-1.731697,-0.609919,1.43483,-1.736079,-0.614461,1.455775,-1.740531,-0.608656,1.439552,-1.716497,-0.613214,1.457311,-1.72034,-0.590111,1.434466,-1.738037,-0.592316,1.452888,-1.744411,-0.578782,1.441173,-1.722125,-0.582242,1.456773,-1.728501,-0.570716,1.437451,-1.750132,-0.57268,1.451517,-1.753189,-0.562049,1.439824,-1.739284,-0.564867,1.452776,-1.742083,-0.669465,1.37126,-1.747145,-0.671521,1.378545,-1.729818,-0.720976,1.38082,-1.782403,-0.724683,1.40278,-1.798307,-0.73495,1.434885,-1.818032,-0.700243,1.431585,-1.806309,-0.719149,1.419453,-1.804924,-0.708456,1.412523,-1.78229,-0.664516,1.416277,-1.754708,-0.670782,1.440381,-1.769468,-0.696282,1.385769,-1.767352,-0.673509,1.392996,-1.74917,-0.674783,1.45081,-1.780947,-0.692922,1.449512,-1.814204,-0.683909,1.493687,-1.821223,-0.671591,1.48122,-1.810765,-0.66927,1.471297,-1.822781,-0.682114,1.483993,-1.835773,-0.848249,0.822894,-1.758694,-0.822494,0.844578,-1.743069,-0.799121,0.883448,-1.7154,-0.876307,0.855286,-1.696367,-0.826378,0.883067,-1.688697,-0.855702,0.871646,-1.682584,-0.670127,1.066173,-1.657731,-0.864782,0.914586,-1.652704,-0.915765,0.874676,-1.660476,-0.93366,0.806674,-1.702679,-0.903154,0.776351,-1.739693,-0.73257,0.994865,-1.665168,-0.78324,0.827089,-1.718735,-0.81709,1.21511,-1.935071,-0.773776,1.164206,-1.896492,-0.703465,1.121178,-1.794724,-0.898748,1.043529,-1.758354,-0.93973,1.137093,-1.870549,-0.983848,1.200489,-1.968313,-0.972337,0.994192,-1.753021,-1.024878,1.081042,-1.86853,-1.061886,1.145729,-1.976054,-1.007562,0.903335,-1.788951,-1.053047,0.993688,-1.914634,-1.096676,1.058471,-2.025277,-0.985279,0.851388,-1.834052,-1.043355,0.925074,-1.982315,-1.070482,0.99463,-2.097727,-0.846894,0.857625,-1.860194,-0.884519,0.90449,-2.066222,-0.895695,0.979003,-2.170858,-0.83304,0.93218,-1.639007,-0.839592,1.053876,-1.78612,-0.859423,1.14678,-1.907959,-0.91365,1.211794,-1.972726,-0.914603,0.815036,-1.715469,-0.904277,0.854146,-1.688333,-0.870992,0.892841,-1.664312,-0.883028,0.802427,-1.751708,-0.826488,0.829938,-1.744411,-0.752561,0.954417,-1.67811,-0.765908,0.905653,-1.706486,-0.824759,0.906161,-1.658473,-0.767395,0.868869,-1.72002,-0.686076,1.02971,-1.658883,-0.724322,0.949088,-1.685585,-0.80961,0.833865,-1.744643,-0.915166,1.524515,-2.095564,-0.961153,1.514701,-2.088558,-0.827469,0.790172,-1.749986,-0.964428,0.981109,-2.170896,-0.938398,0.902784,-2.072908,-0.896583,0.83805,-1.886003,-1.111329,1.080578,-2.09918,-1.013333,1.229358,-2.004229,-0.903972,1.029483,-2.199137,-0.93405,1.247212,-1.983967,-1.072032,1.043047,-2.147906,-1.088925,1.168136,-2.030885,-0.828912,1.258156,-1.95277,-0.958329,1.013655,-2.210785,-1.063521,1.415268,-2.350372,-1.109661,1.506152,-2.365713,-1.138329,1.625229,-2.362695,-1.129013,1.725418,-2.34229,-1.114581,1.794886,-2.334369,-0.944486,1.242385,-2.268937,-0.95755,1.027229,-2.200433,-0.789545,0.882998,-1.712821,-0.796586,0.915227,-1.676014,-0.882412,1.259891,-1.938445,-0.943598,1.394135,-2.010882,-0.772361,1.070575,-1.806457,-0.816836,1.148777,-1.914711,-0.875351,1.207589,-1.950487,-0.889199,1.247208,-1.965514,-0.905477,1.955225,-2.268636,-0.896419,1.972197,-2.269005,-0.416373,0.146985,1.025208,-0.400502,0.162878,1.026151,-0.384683,0.146985,1.027747,-0.400554,0.131093,1.026804,-0.280586,0.043055,0.553389,-0.264715,0.058947,0.554331,-0.248897,0.043055,0.555928,-0.264768,0.027162,0.554985,-0.513071,0.052776,-0.347591,-0.491855,0.060012,-0.349295,-0.484821,0.038804,-0.351764,-0.506036,0.031569,-0.35006,-0.689977,0.12003,-0.765792,-0.669767,0.128184,-0.770223,-0.659753,0.094052,-0.783292,-0.682541,0.0958,-0.776651,-0.69807,0.557298,-1.273646,-0.680772,0.545538,-1.267071,-0.67618,0.538465,-1.286852,-0.694843,0.549317,-1.294122,-0.460767,0.829964,-1.252344,-0.447961,0.821867,-1.251145,-0.412555,0.837805,-1.256808,-0.450862,0.826562,-1.270184,-0.490988,1.259645,-1.399613,-0.475352,1.26456,-1.398166,-0.467443,1.253968,-1.41583,-0.49034,1.249115,-1.418577,-0.549468,1.492476,-1.688762,-0.528472,1.495428,-1.687842,-0.518663,1.472349,-1.690602,-0.546846,1.476881,-1.691763,-0.587051,1.457448,-1.875053,-0.57704,1.458351,-1.89234,-0.569511,1.442137,-1.888053,-0.558687,1.423253,-1.856596,-0.631031,1.43767,-1.858669,-0.628138,1.467837,-1.846953,-0.550399,1.447976,-1.789406,-0.562309,1.480653,-1.792592,-0.600651,1.471718,-1.740264,-0.588382,1.439374,-1.73639,-0.674381,1.458525,-1.781567,-0.660136,1.426339,-1.775832,-0.671404,1.407252,-1.852297,-0.66289,1.395414,-1.847621,-0.698919,1.400905,-1.81408,-0.670327,1.388451,-1.792467,-0.589844,1.475867,-1.806027,-0.610406,1.471437,-1.822891,-0.601724,1.47181,-1.788058,-0.624677,1.467608,-1.80202,-0.607037,1.480285,-1.82032,-0.625387,1.47555,-1.834683,-0.619452,1.476367,-1.804072,-0.64047,1.471184,-1.815813,-0.575431,1.481146,-1.807989,-0.627156,1.476318,-1.849973,-0.598135,1.47416,-1.775563,-0.640657,1.465399,-1.79993,-0.58372,1.505674,-1.809974,-0.621732,1.49773,-1.840207,-0.606893,1.498828,-1.777256,-0.649524,1.489389,-1.801605,-0.582101,1.444204,-1.889282,-0.593794,1.478038,-1.893293,-0.522018,1.456472,-1.829948,-0.533264,1.489484,-1.833252,-0.496107,1.503396,-1.886337,-0.485075,1.470216,-1.883764,-0.545347,1.496808,-1.955583,-0.541591,1.468062,-1.962071,-0.596802,1.428768,-1.952955,-0.56929,1.414734,-1.932494,-0.568272,1.438513,-1.990284,-0.552611,1.429446,-1.981325,-0.550523,1.4877,-1.860269,-0.5692,1.483748,-1.879101,-0.537132,1.491242,-1.877239,-0.553709,1.488808,-1.898874,-0.54867,1.48726,-1.813186,-0.536629,1.453384,-1.809773,-0.612166,1.475091,-1.870613,-0.615402,1.444564,-1.881369,-0.551823,1.485392,-1.864457,-0.575171,1.480669,-1.890645,-0.541176,1.481637,-1.886079,-0.556926,1.478182,-1.906787,-0.549712,1.48892,-1.843615,-0.583692,1.482101,-1.878416,-0.526002,1.495933,-1.875503,-0.564929,1.49447,-1.925012,-0.558029,1.513483,-1.845056,-0.592222,1.506594,-1.879796,-0.533857,1.521024,-1.877065,-0.563138,1.515321,-1.917588,-0.771385,0.356847,-1.16708,-0.791408,0.362338,-1.172059,-0.794483,0.37288,-1.153148,-0.775165,0.367098,-1.148748,-0.267779,0.14555,-0.031016,-0.282719,0.129819,-0.027405,-0.252797,0.129513,-0.033511,-0.267737,0.113781,-0.0299],
"name": "animation_000003"
}],
"normals": [0.5174718499183655,-0.4289376437664032,0.7403790354728699,-0.47962889075279236,-0.29676198959350586,0.825739324092865,-0.634479820728302,-0.7688528299331665,-0.0791039764881134,0.38554033637046814,-0.9090548157691956,-0.1578722447156906,-0.556321918964386,-0.7025361061096191,-0.443769633769989,0.44782862067222595,-0.8840907216072083,-0.13330484926700592,0.2627643644809723,-0.44056519865989685,0.8583940863609314,-0.7771843671798706,-0.30603960156440735,0.5497909188270569,-0.269966721534729,0.49516281485557556,0.82576984167099,0.6674398183822632,0.5928831100463867,0.4505447447299957,-0.6733604073524475,0.6984771490097046,-0.24225592613220215,-0.14401684701442719,0.8892788290977478,-0.43403422832489014,-0.5228431224822998,0.269692063331604,-0.808618426322937,0.6863002181053162,0.47309792041778564,0.5523850321769714,0.6943265795707703,0.6448255777359009,0.3194372355937958,-0.6868190765380859,0.6874904632568359,0.23575548827648163,-0.0639667958021164,-0.7014984488487244,0.7097689509391785,-0.5721915364265442,-0.7685781717300415,-0.2860499918460846,0.3822443187236786,-0.4743797183036804,-0.7929929494857788,0.8904690742492676,-0.40730002522468567,0.20285652577877045,-0.4936063587665558,-0.5202184915542603,0.6968901753425598,-0.9891964197158813,0.13937802612781525,-0.04516739398241043,-0.395580917596817,-0.32859277725219727,-0.8576006293296814,0.09997864067554474,-0.9882503747940063,-0.11551255732774734,0.8004089593887329,-0.21741385757923126,-0.5586107969284058,0.45832696557044983,-0.8347422480583191,0.30512404441833496,-0.5812555551528931,-0.808313250541687,-0.09353923052549362,-0.24149297177791595,-0.19464705884456635,-0.9506515860557556,0.4138615131378174,-0.35139012336730957,-0.8397778272628784,0.9944151043891907,-0.0796533077955246,0.06881923973560333,0.28244879841804504,-0.6648151874542236,0.6914883852005005,-0.29639577865600586,-0.9301431179046631,-0.21665090322494507,-0.4620197117328644,0.26804405450820923,-0.8453627228736877,0.6219977140426636,0.3884701132774353,-0.6797997951507568,0.6729026436805725,-0.6586809754371643,-0.33658865094184875,-0.40739157795906067,-0.7689443826675415,-0.4926602840423584,-0.28257086873054504,-0.30704671144485474,-0.9087496399879456,-0.6505630612373352,0.7537766695022583,0.09247108548879623,-0.598956286907196,0.7082125544548035,0.3736381232738495,-0.31278419494628906,-0.4847559928894043,-0.8167668581008911,0.31443220376968384,0.22699667513370514,0.921720027923584,0.5491805672645569,0.47926267981529236,0.6845911741256714,-0.18875698745250702,0.055970944464206696,-0.9804071187973022,-0.8933072686195374,0.44077882170677185,0.0874050110578537,-0.2450331151485443,-0.12393566966056824,0.9615466594696045,0.6716513633728027,-0.7372356057167053,0.07272560894489288,0.6871242523193359,-0.7014679312705994,0.18906216323375702,0.6185491681098938,-0.7831659913063049,-0.063112273812294,-0.007477034814655781,0.04455702379345894,-0.9989623427391052,0.19479964673519135,0.09936826676130295,-0.9757683277130127,0.8212530612945557,-0.5671864748001099,-0.06161687150597572,-0.7694631814956665,0.6378673911094666,0.0318002849817276,-0.8975188732147217,0.4267708361148834,-0.110812708735466,-0.13986632227897644,-0.19614246487617493,0.9705191254615784,-0.09167760610580444,-0.3805963397026062,0.9201635718345642,-0.6100649833679199,0.7370525002479553,-0.29068881273269653,-0.051240578293800354,-0.3243507146835327,-0.9445173740386963,-0.1501510739326477,0.46421703696250916,0.8728598952293396,0.5233619213104248,-0.6967681050300598,0.4904324412345886,0.4533829689025879,-0.5059968829154968,0.7337260246276855,-0.04058961570262909,-0.42255929112434387,0.9053926467895508,0.9626758694648743,0.2555009722709656,0.08911404758691788,0.9611194133758545,0.2562333941459656,-0.10263374447822571,0.5059968829154968,-0.5059358477592468,0.6985381841659546,0.08130130916833878,-0.10159611701965332,-0.9914853572845459,0.8765526413917542,-0.24155400693416595,0.41627246141433716,-0.9672841429710388,0.11581774055957794,-0.22559282183647156,-0.4371776580810547,0.026337474584579468,0.8989531993865967,0.3013397753238678,0.0639362782239914,-0.9513534903526306,0.9420453310012817,0.14828944206237793,0.3008819818496704,-0.9024628400802612,-0.3021942675113678,-0.30695515871047974,-0.26740318536758423,-0.221472829580307,0.9377727508544922,-0.4922025203704834,0.4850306808948517,-0.7228003740310669,0.39991456270217896,-0.7017425894737244,-0.5895565748214722,0.6330759525299072,-0.5068514347076416,-0.5850398540496826,-0.4065065383911133,0.4343394339084625,-0.8037660121917725,0.4618366062641144,-0.24985504150390625,0.8510391712188721,0.49534592032432556,-0.33738210797309875,0.8004699945449829,-0.3495284914970398,0.7519150376319885,0.5589464902877808,-0.5336466431617737,0.5889462232589722,0.6068605780601501,0.21820734441280365,-0.5334025025367737,0.8171941041946411,0.7990661263465881,-0.3738212287425995,-0.47087007761001587,-0.773552656173706,0.24277473986148834,0.5853450298309326,-0.4512771964073181,0.5770744681358337,-0.6806542873382568,0.44773703813552856,-0.4464552700519562,0.7747123837471008,0.7419965267181396,-0.25717946887016296,-0.6190679669380188,-0.9670094847679138,0.1192358136177063,0.22507400810718536,-0.3727530837059021,0.17581713199615479,-0.9110995531082153,0.6904202103614807,-0.6642353534698486,-0.2864772379398346,-0.8501846194267273,-0.49650561809539795,-0.1749931275844574,-0.7152622938156128,-0.6976531147956848,0.040101319551467896,0.31421858072280884,-0.8631244897842407,-0.395275741815567,-0.5189977884292603,0.47810298204421997,0.7085177302360535,0.7534714937210083,0.3332621157169342,0.5667287111282349,-0.8242133855819702,-0.31388285756111145,0.47129735350608826,0.48924222588539124,-0.4979094862937927,0.7160252928733826,0.4672994017601013,0.0004272591322660446,0.8840602040290833,-0.7666860222816467,-0.43385112285614014,0.47318950295448303,0.9204992651939392,0.08813745528459549,-0.3806573748588562,0.8996856808662415,0.3331095278263092,-0.28202155232429504,-0.4459975063800812,0.3750724792480469,-0.8126163482666016,-0.3168431520462036,-0.05850398167967796,-0.9466536641120911,-0.4591509699821472,0.5631275177001953,-0.6870326995849609,-0.8895840048789978,-0.23416852951049805,0.39210182428359985,0.41608935594558716,-0.730277419090271,0.5417645573616028,0.8464918732643127,0.057496871799230576,-0.5292519927024841,0.383251428604126,-0.6445509195327759,0.6615497469902039,-0.9138462543487549,-0.30710774660110474,0.26554155349731445,0.8419141173362732,0.20181889832019806,-0.5004119873046875,-0.5075533390045166,0.4299142360687256,-0.7466658353805542,0.4456617832183838,0.40186774730682373,-0.7998901605606079,0.5766167044639587,0.8004089593887329,-0.16379283368587494,0.8419446349143982,0.5358134508132935,-0.0631427988409996,0.09302041679620743,0.05050813406705856,-0.9943540692329407,-0.7942137122154236,-0.5676442980766296,-0.21668142080307007,-0.8026673197746277,-0.461104154586792,-0.37821587920188904,-0.5342570543289185,-0.6596575975418091,0.5285500884056091,0.7452620267868042,-0.43116551637649536,0.5085299015045166,0.5443586707115173,0.07071138918399811,0.8358409404754639,-0.6309396624565125,-0.4511246085166931,0.6311532855033875,-0.6591082215309143,0.3972289264202118,-0.6385387778282166,-0.9507431387901306,-0.269386887550354,0.15314188599586487,-0.7880184054374695,-0.556077778339386,-0.2640766501426697,-0.7226783037185669,0.6904813051223755,-0.030671101063489914,-0.8296456933021545,-0.10995818674564362,0.5472884178161621,0.30497145652770996,0.4594256281852722,0.8341929316520691,0.826837956905365,0.2528763711452484,0.5023651719093323,0.7694021463394165,0.27469709515571594,-0.5766472220420837,0.504318356513977,0.6644184589385986,-0.5514999628067017,-0.4195989966392517,-0.37617114186286926,-0.826044499874115,0.8224738240242004,0.34372997283935547,-0.4531388282775879,-0.5728324055671692,-0.269478440284729,-0.774071455001831,0.7716605067253113,0.3813898265361786,-0.5089266896247864,-0.7105929851531982,0.24823755025863647,-0.6583452820777893,-0.6644794940948486,-0.7206030488014221,0.1978820115327835,0.6502578854560852,-0.7281411290168762,0.21658986806869507,0.6791589260101318,0.5529343485832214,-0.4826502203941345,-0.7897579669952393,0.43910032510757446,-0.4282967746257782,0.807702898979187,-0.5537278652191162,0.20233771204948425,0.07736442238092422,0.9520859122276306,-0.29581591486930847,-0.4936368763446808,-0.03817865625023842,-0.868800938129425,0.6923428773880005,-0.7214575409889221,0.011627552099525928,-0.3233436048030853,-0.7223426103591919,-0.6112247109413147,0.4531388282775879,0.07492294162511826,0.8882412314414978,0.24964140355587006,-0.2797936797142029,0.9270302653312683,0.5822931528091431,-0.07791375368833542,0.809198260307312,0.616290807723999,-0.26755577325820923,0.7406536936759949,0.5410931706428528,-0.4585101008415222,0.7049165368080139,0.38386180996894836,-0.6014893054962158,0.7005829215049744,0.36112552881240845,-0.8546708822250366,-0.3729056715965271,0.43272194266319275,-0.9012725949287415,-0.020935697481036186,-0.01730399578809738,-0.9976500868797302,0.06595049798488617,-0.10922574251890182,-0.9546189904212952,-0.2770470380783081,0.2374950349330902,-0.6965849995613098,-0.6769921183586121,-0.19595934450626373,-0.7846003770828247,-0.5881832242012024,0.4440138041973114,-0.8161259889602661,0.36976227164268494,0.08981597423553467,-0.8994720578193665,0.4275948405265808,0.19281594455242157,-0.6496780514717102,0.7353129386901855,-0.004791405983269215,-0.5911130309104919,0.8065431714057922,-0.25122836232185364,-0.7972655296325684,0.5488143563270569,-0.4379405975341797,-0.8705404996871948,0.22428052127361298,-0.557176411151886,-0.8217719197273254,-0.1190832257270813,-0.47871333360671997,-0.5285195708274841,0.7010406851768494,-0.7325968146324158,-0.5401166081428528,0.4141666889190674,-0.8818628787994385,-0.4664754271507263,0.06851405650377274,-0.14004944264888763,-0.4343699514865875,0.8897671699523926,-0.16959135234355927,-0.2388073354959488,0.9561144113540649,-0.5247047543525696,-0.1750541627407074,0.8330637812614441,0.9404889345169067,0.29908138513565063,0.16125980019569397,0.922086238861084,0.38346508145332336,0.051850948482751846,0.5873287320137024,0.7684560418128967,0.2539139986038208,0.7075716257095337,0.5951414704322815,0.3809015154838562,-0.03353984281420708,-0.8553117513656616,-0.5169835686683655,0.03796502575278282,-0.8130130767822266,-0.5809808373451233,0.05145420879125595,-0.9778130650520325,-0.20303964614868164,-0.00015259254723787308,-0.9720755815505981,-0.23456525802612305,0.7525253891944885,-0.6579180359840393,-0.027985472232103348,0.49476608633995056,-0.3816034495830536,0.7807550430297852,0.9684438705444336,-0.21127964556217194,0.13208410143852234,0.8560746908187866,-0.41801202297210693,-0.3039338290691376,0.9747306704521179,-0.1501815915107727,-0.16522720456123352,0.8841517567634583,-0.36060670018196106,-0.29691457748413086,0.6325876712799072,-0.15341654419898987,-0.7591174244880676,0.7525864243507385,0.05465865135192871,-0.6561784744262695,0.8341318964958191,0.47999513149261475,-0.2716452479362488,0.7719656825065613,0.36198005080223083,-0.5224769115447998,0.2931607961654663,0.5841853022575378,-0.7567979693412781,0.4349497854709625,0.8466139435768127,-0.30661946535110474,0.9941099286079407,0.10159611701965332,-0.03750724717974663,0.9913022518157959,0.008911404758691788,0.13126011192798615,0.19571520388126373,0.8497878909111023,0.48936429619789124,0.28031250834465027,0.69582200050354,0.6612140536308289,0.21741385757923126,0.25766777992248535,-0.9414349794387817,-0.3041474521160126,0.34421825408935547,-0.8882412314414978,-0.2603534162044525,0.6984161138534546,-0.6666157841682434,-0.10254219174385071,0.9802850484848022,-0.16870632767677307,0.6266670823097229,0.01501510664820671,-0.7791070342063904,0.8970915675163269,-0.4298837184906006,-0.10193182528018951,-0.3182470202445984,0.08075197786092758,-0.9445478916168213,0.0795617550611496,0.03726309910416603,-0.9961241483688354,0.9728690385818481,-0.23126927018165588,0.0025025177747011185,0.6902981400489807,0.5113681554794312,-0.5118259191513062,0.04272591322660446,-0.19541001319885254,0.9797662496566772,0.0020142216235399246,-0.6497085690498352,0.7601550221443176,0.24219489097595215,-0.6293526887893677,0.7383953332901001,0.2861110270023346,-0.13031403720378876,0.9492782354354858,0.18420971930027008,0.2784813940525055,-0.9425947070121765,-0.05743583291769028,0.5608386397361755,-0.82589191198349,-0.13205358386039734,0.317545086145401,-0.938993513584137,-0.22498245537281036,0.34406566619873047,-0.9115573763847351,-0.22794274985790253,0.5485091805458069,-0.8044373989105225,0.14477980136871338,-0.3731192946434021,0.9164097905158997,0.32224494218826294,-0.34684285521507263,0.8807947039604187,0.49644458293914795,-0.5347758531570435,0.6837671995162964,0.19302956759929657,-0.3041474521160126,0.9328287839889526,-0.09863582253456116,-0.3232215344905853,0.9411603212356567,0.24314096570014954,-0.6534318327903748,0.7168492674827576,0.7529832124710083,-0.28250983357429504,0.5942564010620117,0.9198583960533142,-0.15228736400604248,0.36146122217178345,0.5555894374847412,-0.713217556476593,0.4273201823234558,0.2713095545768738,-0.9289834499359131,-0.251625120639801,0.9908749461174011,0.014069032855331898,-0.13391521573066711,0.5967284440994263,0.03466902673244476,-0.8016601800918579,0.5134434103965759,0.0068666646257042885,-0.8580583930015564,0.6214483976364136,0.10992766916751862,-0.7756584286689758,0.9427778124809265,0.11624500155448914,-0.31247901916503906,0.12854395806789398,0.27555161714553833,-0.9526352882385254,0.1658681035041809,-0.006561479531228542,-0.9861140847206116,0.26645711064338684,0.8010498285293579,-0.5359660387039185,0.12829981744289398,0.7562181353569031,-0.6415905952453613,-0.13727225363254547,0.7584764957427979,-0.6370433568954468,-0.07193212956190109,0.8341624140739441,-0.5467696189880371,0.43156224489212036,0.5962706208229065,-0.6769005656242371,0.24060793220996857,0.4525589644908905,-0.8586382865905762,0.4514603018760681,-0.07443464547395706,0.8891567587852478,0.1597338765859604,-0.23126927018165588,0.9596545100212097,-0.024964140728116035,-0.46617022156715393,0.8843348622322083,0.3339640498161316,0.07449568063020706,0.939603865146637,0.26545000076293945,0.6494033336639404,-0.712576687335968,0.6941434741020203,0.6843470335006714,-0.2231513410806656,0.27491074800491333,-0.19949950277805328,0.9405194520950317,0.26514482498168945,-0.22882778942584991,0.9366436004638672,0.2794274687767029,-0.2311777025461197,0.9318826794624329,0.7977538108825684,0.3566087782382965,0.4861598610877991,0.6107669472694397,-0.3972594439983368,-0.6848964095115662,0.9915463924407959,-0.008239997550845146,-0.12930692732334137,0.8982512950897217,-0.43897825479507446,-0.02072206884622574,0.383129358291626,-0.7187719345092773,-0.5801263451576233,-0.22632527351379395,-0.6721091270446777,-0.7049775719642639,-0.4601580798625946,-0.6161686778068542,-0.6391491293907166,0.8215277791023254,0.538743257522583,-0.18649861216545105,0.6386913657188416,0.13058869540691376,-0.7582628726959229,0.8068178296089172,0.30539873242378235,0.5056611895561218,0.47932371497154236,0.049714650958776474,0.8761864304542542,0.4300973415374756,-0.09179967641830444,0.8980681896209717,0.7952513098716736,-0.05642872303724289,0.6036255955696106,0.6856593489646912,0.5189977884292603,0.5103610157966614,0.32935574650764465,-0.7350382804870605,0.5926083922386169,-0.616840124130249,-0.6936246752738953,-0.3719595968723297,0.40256965160369873,-0.1754203885793686,0.8984038829803467,-0.8219550251960754,-0.5501571893692017,-0.14728233218193054,-0.7755668759346008,-0.3868221044540405,-0.4988250434398651,0.06732383370399475,-0.7618945837020874,-0.6441847085952759,0.8848231434822083,-0.15247046947479248,0.44026002287864685,0.6274300217628479,0.2525406777858734,0.7365642189979553,0.7968382835388184,-0.5770744681358337,-0.17877742648124695,-0.03723258152604103,0.5803094506263733,0.8135013580322266,-0.7701956033706665,0.45561084151268005,0.4462721645832062,-0.9921872615814209,0.12155522406101227,-0.027222510427236557,-0.2837611138820648,-0.8373363614082336,-0.4672383666038513,-0.8279976844787598,-0.2297433316707611,-0.5114597082138062,-0.40717795491218567,-0.6125980615615845,-0.6773888468742371,0.5074923038482666,-0.7327799201011658,-0.4532608985900879,-0.9437848925590515,0.30628377199172974,-0.12408825755119324,-0.9776299595832825,-0.0238959938287735,-0.20889919996261597,0.8339487910270691,-0.5517135858535767,0.011200292967259884,0.8906521797180176,-0.44019898772239685,0.11358989030122757,0.29764702916145325,-0.8917203545570374,-0.3408917486667633,0.20749534666538239,0.7226172685623169,0.6593524217605591,0.8831751346588135,0.20960111916065216,0.4195379614830017,-0.6096682548522949,0.6794946193695068,0.40806299448013306,0.16513565182685852,-0.965422511100769,-0.20157475769519806,-0.6382946372032166,-0.7267982959747314,-0.2535783052444458,-0.6195867657661438,-0.7383953332901001,-0.26615193486213684,0.15994751453399658,-0.9557481408119202,-0.2468337118625641,-0.9962767362594604,0.01150547806173563,-0.08523819595575333,-0.773491621017456,0.617816686630249,0.14133121073246002,0.7722098231315613,-0.635334312915802,-0.005340739153325558,0.5355387926101685,0.7235327959060669,0.4354686141014099,0.9598070979118347,0.05328531563282013,0.27549058198928833,-0.1907101720571518,0.9137241840362549,0.3587450683116913,-0.5825067758560181,-0.7420270442962646,0.3317056894302368,-0.8505203127861023,-0.17267373204231262,0.49671927094459534,-0.6567583084106445,0.23908200860023499,0.7151707410812378,0.5290383696556091,-0.6543168425559998,0.5402997136116028,0.05313272401690483,-0.9302346706390381,0.3630176782608032,0.3030487895011902,0.4137089252471924,0.8584551811218262,0.6724753379821777,-0.08786278963088989,0.7348551750183105,-0.24188970029354095,0.4977874159812927,0.8328500986099243,0.9005096554756165,0.1113010048866272,0.4203009009361267,0.5499435663223267,-0.317392498254776,0.772515058517456,0.5468001365661621,-0.0473647266626358,0.8359019756317139,0.8035218119621277,-0.27231666445732117,0.5292825102806091,0.9423199892044067,-0.3328043520450592,-0.03503524884581566,0.6031983494758606,-0.7495651245117188,-0.27249976992607117,-0.02063051238656044,0.05078279972076416,-0.9984740614891052,0.1426740288734436,-0.9246497750282288,-0.35300758481025696,0.2599871754646301,-0.4193243086338043,0.869777500629425,-0.13141269981861115,0.11368145048618317,-0.9847712516784668,0.35233619809150696,-0.43348491191864014,0.8294015526771545,0.3569139540195465,-0.33548998832702637,0.8717917203903198,0.23905149102210999,-0.334910124540329,0.9114047884941101,0.19394512474536896,-0.48063600063323975,0.8551591634750366,0.5292519927024841,-0.3822443187236786,0.7574694156646729,0.7506942749023438,0.48786890506744385,0.4454176425933838,0.7998596429824829,0.5637989640235901,0.2056947499513626,0.8422192931175232,0.5380718111991882,0.03329569473862648,0.8458815217018127,0.2548295557498932,0.4684896469116211,0.2937101423740387,0.6368602514266968,0.712820827960968,0.2690206468105316,0.6987518072128296,0.6628314852714539,0.8317819833755493,-0.16135135293006897,0.5311136245727539,0.8633381128311157,-0.461409330368042,0.20416882634162903,0.7776421308517456,-0.43314921855926514,0.45564135909080505,0.42405468225479126,-0.7827692627906799,0.45539718866348267,0.3876766264438629,-0.16339610517024994,0.9071626663208008,0.21839044988155365,-0.8529618382453918,0.47404399514198303,0.9495223760604858,0.3087862730026245,-0.055177465081214905,0.9148838520050049,0.3740348517894745,-0.1517990678548813,0.6013977527618408,0.765404224395752,0.22901089489459991,0.6985076665878296,0.616687536239624,0.3629261255264282,0.7962584495544434,-0.5953245759010315,0.10730308294296265,0.9955748319625854,-0.07770012319087982,-0.05240027979016304,0.7348246574401855,-0.5497298836708069,-0.3972289264202118,0.6315194964408875,-0.6476027965545654,-0.4263435900211334,0.6856898665428162,-0.5140842795372009,-0.5153050422668457,0.6928922533988953,-0.42402416467666626,-0.5831477046012878,0.9775994420051575,-0.034394361078739166,-0.20758689939975739,0.9374980926513672,-0.17651906609535217,-0.299783319234848,0.5699942111968994,-0.20841090381145477,-0.7947630286216736,0.37781915068626404,0.08310189843177795,-0.922116756439209,0.9743949770927429,0.04998932033777237,-0.21915341913700104,0.8335520625114441,0.34467604756355286,-0.43168431520462036,0.5667592287063599,-0.48115482926368713,0.6687520742416382,0.6633808612823486,-0.5162205696105957,0.5416730046272278,0.6284066438674927,-0.5818353891372681,0.5162510871887207,0.7465742826461792,-0.40263068675994873,0.5295876860618591,0.20041504502296448,0.8448134064674377,0.49604785442352295,0.28046509623527527,0.6832789182662964,0.6740928292274475,0.26798301935195923,-0.8795739412307739,-0.39307838678359985,0.39280372858047485,-0.7860652208328247,-0.4772179424762726,0.6799829006195068,-0.6568498611450195,-0.3258156180381775,0.7150181531906128,-0.6802880764007568,-0.16101565957069397,0.8980376720428467,-0.4388256371021271,-0.03003021329641342,0.904507577419281,-0.2539750337600708,-0.3424787223339081,0.8005920648574829,-0.08078249543905258,0.5936765670776367,0.8969389796257019,0.016846217215061188,0.44178593158721924,0.9875484704971313,-0.15601062774658203,0.01977599412202835,0.9144871234893799,-0.08355967700481415,0.395825058221817,0.9906308054924011,0.11719107627868652,0.06997894495725632,0.9866634011268616,0.04055909812450409,-0.15744498372077942,0.6312143206596375,-0.42454299330711365,-0.6490676403045654,0.8024231791496277,0.2300485223531723,0.5506149530410767,0.3796502649784088,0.26654866337776184,0.885860800743103,0.9665822386741638,-0.1510971337556839,-0.2069460153579712,0.9406415224075317,-0.25922420620918274,0.21900081634521484,0.9244971871376038,-0.23227638006210327,0.3021942675113678,0.9838557243347168,-0.17069002985954285,0.05331583693623543,0.9355143904685974,-0.23517563939094543,0.2636188864707947,0.6981719136238098,-0.5102084279060364,0.5021820664405823,0.9875484704971313,-0.06256294250488281,-0.14423047006130219,0.7513962388038635,-0.15430158376693726,0.6414990425109863,0.9765617847442627,0.0010986663401126862,-0.2151554971933365,0.696035623550415,0.14804528653621674,0.7025666236877441,0.773277997970581,0.1676381677389145,0.6114688515663147,0.6886501908302307,0.22592853009700775,0.6889553666114807,0.7165135741233826,0.04611346870660782,0.696035623550415,0.7516708970069885,-0.26532793045043945,0.6037476658821106,0.9344767332077026,-0.11462752521038055,0.33701589703559875,0.39448225498199463,0.014526810497045517,0.9187597036361694,0.3736686408519745,-0.39439070224761963,0.8395336866378784,0.5596789717674255,-0.14502395689487457,0.8158818483352661,0.39393290877342224,-0.1836909055709839,0.9005706906318665,0.365123450756073,-0.4342173635959625,0.8234504461288452,0.6812036633491516,0.04531998559832573,0.730674147605896,0.9632251858711243,-0.02529984340071678,-0.26749473810195923,0.7881100177764893,-0.5195776224136353,0.32999664545059204,0.8717306852340698,-0.46592608094215393,0.1514938771724701,0.9102755784988403,-0.37577441334724426,0.17361980676651,0.7675710320472717,-0.47935423254966736,0.42545855045318604,0.8806726336479187,-0.21308022737503052,0.42304757237434387,0.7051301598548889,-0.5917539000511169,0.3906064033508301,0.8378551602363586,-0.1675160974264145,0.5194860696792603,0.7897579669952393,-0.28070923686027527,0.5453657507896423,0.69569993019104,0.031098362058401108,0.7176427245140076,0.6258430480957031,-0.2221442312002182,0.747611939907074,0.694448709487915,-0.5677968859672546,0.44190800189971924,0.4995269775390625,-0.8662679195404053,0.006012146361172199,-0.443311870098114,0.887539267539978,0.12537004053592682,-0.37000641226768494,0.9282509684562683,0.03790398687124252,0.41550949215888977,0.4776146709918976,0.774071455001831,0.5907162427902222,0.5501571893692017,0.5901974439620972,-0.8468886613845825,-0.5123752355575562,0.1420636624097824,0.5315103530883789,-0.8462172150611877,-0.03726309910416603,0.5321512222290039,-0.8364512920379639,0.13083285093307495,-0.1348002552986145,-0.9507126212120056,-0.2791528105735779,0.6859034895896912,-0.22745445370674133,0.6911832094192505,0.9798883199691772,0.06765953451395035,-0.18756675720214844,0.6099734306335449,0.3182165026664734,-0.7256691455841064,-0.44959867000579834,0.044007688760757446,-0.8921170830726624,0.6863307356834412,0.20484024286270142,0.6978362202644348,-0.8764916062355042,0.38520461320877075,0.28873562812805176,0.46449172496795654,-0.8243659734725952,0.3234351575374603,-0.0788598284125328,-0.9325235486030579,-0.35236671566963196,0.2301095575094223,-0.8315988779067993,0.5054170489311218,-0.13361003994941711,-0.921140193939209,-0.365520179271698,0.6938688158988953,-0.4604327380657196,0.5536362528800964,0.0954618975520134,-0.9789422154426575,0.18033386766910553,-0.08008056879043579,-0.9682302474975586,-0.23682363331317902,0.18460646271705627,-0.9186071157455444,-0.3493453860282898,0.299600213766098,-0.6651509404182434,0.6839197874069214,0.32877591252326965,-0.5602893233299255,0.7602160573005676,-0.08215582370758057,0.9865413308143616,-0.14117862284183502,0.33002716302871704,0.45661795139312744,0.826166570186615,0.3792535066604614,-0.2594378590583801,0.8881496787071228,0.65221107006073,-0.28318125009536743,0.7031159400939941,0.3878597319126129,0.022400585934519768,0.921414852142334,0.7962584495544434,-0.49485763907432556,0.347880482673645,0.7116305828094482,-0.6928922533988953,0.11600085347890854,0.7805109024047852,-0.4509415030479431,0.43287453055381775,0.8962065577507019,-0.1114841178059578,0.4293344020843506,0.7037568092346191,-0.3342997431755066,0.6268196702003479,0.35407575964927673,-0.4291512668132782,0.8309274315834045,0.3670156002044678,-0.37055572867393494,0.8531754612922668,0.47920164465904236,-0.8481093645095825,-0.22595904767513275,-0.020447401329874992,-0.9987487196922302,-0.04544205963611603,0.6017639636993408,-0.5540940761566162,0.575151801109314,0.6447645425796509,-0.539841890335083,0.5410931706428528,0.5193029642105103,0.3038727939128876,0.7986999154090881,0.773979902267456,0.3742484748363495,0.5107578039169312,0.9421674013137817,0.08352915942668915,-0.3244727849960327,0.3718985617160797,-0.9056673049926758,-0.20343638956546783,-0.27448347210884094,-0.9360637068748474,0.21994689106941223,-0.5803704857826233,-0.01818903163075447,0.8141117691993713,0.0008239997550845146,0.8036743998527527,0.5950194001197815,0.45475631952285767,0.8415173888206482,0.2916043698787689,0.9957579374313354,0.07058931142091751,-0.05862605571746826,0.6661275029182434,-0.7237464785575867,0.18005920946598053,0.19385357201099396,-0.7625354528427124,0.617175817489624,-0.2527543008327484,-0.07232886552810669,0.964812159538269,0.4342173635959625,0.46440017223358154,0.7718436121940613,0.6189764142036438,0.4765160083770752,0.6242866516113281,0.6971648335456848,0.08542130887508392,0.7117526531219482,0.6069521307945251,0.06122013181447983,0.7923520803451538,-0.48692283034324646,0.87005215883255,0.07647938281297684,-0.4301278591156006,0.9008758664131165,-0.05816827714443207,-0.491378515958786,-0.7874996066093445,-0.3719290792942047,-0.7939084768295288,-0.6058839559555054,0.05084383487701416,-0.4537492096424103,-0.7098605036735535,-0.538651704788208,-0.7181005477905273,0.5852839946746826,0.37647634744644165,-0.11462752521038055,0.9767143726348877,-0.18131045997142792,-0.26624348759651184,-0.6811731457710266,-0.6819360852241516,-0.18539994955062866,0.45817437767982483,0.869289219379425,-0.029969176277518272,0.4515213370323181,0.8917203545570374,-0.3244117498397827,-0.8225653767585754,0.4669942259788513,-0.5912045836448669,-0.6558732986450195,0.4693136513233185,-0.1346781849861145,-0.8587298393249512,0.4943998456001282,-0.48130741715431213,0.45820489525794983,0.747215211391449,0.3187963366508484,0.45838800072669983,0.8295846581459045,0.16318246722221375,-0.9198889136314392,0.3565477430820465,0.1427655816078186,-0.8386180996894836,0.5256507992744446,-0.4821924567222595,0.7979064583778381,0.36161381006240845,0.49598681926727295,0.765617847442627,0.40958890318870544,0.5020905137062073,0.7788934111595154,0.37574389576911926,-0.48896756768226624,0.7401348948478699,0.4615924656391144,-0.40208137035369873,0.869350254535675,0.287240207195282,-0.9841914176940918,0.08886989951133728,0.15301980078220367,-0.964568018913269,-0.2637104392051697,0.0037537766620516777,-0.269447922706604,-0.9243751168251038,0.269997239112854,-0.3023468852043152,-0.922360897064209,0.24042481184005737,-0.43348491191864014,-0.9008148312568665,0.024048585444688797,-0.33021026849746704,-0.939878523349762,0.0870082676410675,-0.9178136587142944,-0.36069825291633606,0.16571550071239471,-0.8919034600257874,-0.3098544180393219,0.32935574650764465,-0.38425853848457336,0.9175084829330444,0.10232856124639511,-0.37821587920188904,0.9118625521659851,0.1594286859035492,0.44026002287864685,0.8977630138397217,-0.0119022186845541,-0.28290659189224243,0.9262672662734985,0.24887844920158386,0.8836023807525635,0.4664754271507263,-0.0397961363196373,-0.861293375492096,-0.29825738072395325,0.4112674295902252,0.48060548305511475,-0.8758811950683594,0.042542800307273865,-0.23392437398433685,-0.9278542399406433,0.29041412472724915,0.45658743381500244,-0.6583757996559143,0.5983458757400513,-0.43998536467552185,-0.27283546328544617,0.8555253744125366,-0.0870387852191925,0.6506240963935852,0.7543565034866333,0.8987395763397217,0.43217262625694275,0.07400738447904587,0.5236976146697998,-0.8509476184844971,0.0396130234003067,-0.2382274866104126,-0.887539267539978,0.39429914951324463,0.47825556993484497,0.8778648972511292,0.024262215942144394,0.6688741445541382,0.27231666445732117,0.6916714906692505,0.35377055406570435,-0.7632984519004822,0.5405133366584778,-0.8976714611053467,-0.3559984266757965,0.2595904469490051,-0.6504409909248352,-0.4374217987060547,0.6208990812301636,-0.3010956048965454,0.9332865476608276,0.19568468630313873,-0.9174779653549194,-0.3258766531944275,0.22797326743602753,0.460951566696167,-0.886745810508728,0.03393658250570297,-0.26490065455436707,-0.8817712664604187,0.3902401924133301,0.3183385729789734,-0.8498184084892273,0.4199957251548767,-0.6770531535148621,-0.42497023940086365,0.6007874011993408,-0.20014038681983948,0.5414593815803528,0.8165227174758911,-0.29725027084350586,-0.8984649181365967,0.3230079114437103,0.5418866276741028,-0.8397778272628784,0.03268532454967499,0.5614489912986755,-0.8008362054824829,0.20834986865520477,0.44718772172927856,-0.8942838907241821,0.016357921063899994,-0.9367351531982422,-0.3184606432914734,0.14514602720737457,0.9773247241973877,0.17770928144454956,-0.11508529633283615,0.9557786583900452,0.28318125009536743,-0.0791039764881134,0.490798681974411,-0.8541825413703918,-0.17151401937007904,0.9675893187522888,0.01672414317727089,-0.251960813999176,0.9528489112854004,-0.13623462617397308,-0.2710654139518738,0.9808954000473022,0.19376201927661896,0.016235847026109695,0.9081087708473206,0.41624194383621216,0.04547257721424103,0.9573351144790649,-0.251838743686676,-0.14148381352424622,0.9896847605705261,0.14108707010746002,0.024384289979934692,0.45539718866348267,-0.8902554512023926,0.001037629321217537,-0.3195898234844208,-0.9182714223861694,0.23361918330192566,-0.3006378412246704,-0.9274269938468933,0.2224189043045044,0.4850001633167267,-0.8737754225730896,-0.03552354499697685,0.47953733801841736,-0.8665120601654053,-0.13843196630477905,-0.3430890738964081,-0.9269997477531433,0.1513107717037201,0.9154942631721497,-0.2953886389732361,-0.27301859855651855,0.9444868564605713,-0.221778005361557,-0.24228644371032715,0.5141147971153259,0.7807245254516602,0.3551439046859741,0.5227515697479248,0.8177129626274109,0.24091310799121857,0.7929013967514038,0.6043580174446106,0.07739493995904922,-0.6264229416847229,-0.765892505645752,0.14477980136871338,-0.8193303942680359,-0.44187748432159424,0.365245521068573,-0.8972746729850769,0.3092745840549469,0.31492048501968384,-0.8904995918273926,0.39362773299217224,0.22803430259227753,-0.8240913152694702,0.4424573481082916,0.35358744859695435,-0.9189428091049194,0.3739738166332245,-0.12506484985351562,-0.9638050198554993,0.11542100459337234,-0.24030274152755737,-0.8667867183685303,-0.3557542562484741,0.3494064211845398,-0.24265266954898834,-0.3232520520687103,-0.9146397113800049,-0.06717123836278915,0.3005768060684204,-0.9513534903526306,-0.5686513781547546,0.4426404535770416,-0.6932889819145203,0.5752434134483337,-0.35334330797195435,-0.7376934289932251,0.43949705362319946,0.09396649152040482,-0.8933072686195374,0.7426984310150146,-0.2717062830924988,-0.6119876503944397,0.39353618025779724,-0.20505386590957642,-0.8961150050163269,0.4219794273376465,-0.8715780973434448,-0.24948881566524506,-0.3115329444408417,-0.938596785068512,0.14810632169246674,-0.4035462439060211,-0.731284499168396,-0.5498214960098267,0.06466872245073318,-0.8447828888893127,-0.5311441421508789,-0.9304482936859131,-0.3574327826499939,0.08041626960039139,-0.7667165398597717,-0.5539720058441162,-0.3243507146835327,-0.24466688930988312,-0.06625568121671677,-0.9673146605491638,0.6205023527145386,0.7630237936973572,-0.18091371655464172,-0.17587816715240479,0.9773247241973877,0.11767937242984772,0.9458906650543213,0.32029175758361816,0.05163731798529625,-0.9871211647987366,-0.1501205414533615,0.05490279942750931,-0.730613112449646,-0.22064882516860962,0.6461073756217957,-0.10647907853126526,0.651448130607605,0.7511520981788635,0.1824701726436615,-0.8369701504707336,0.5159153938293457,0.4539933502674103,-0.886318564414978,0.09094515442848206,0.712057888507843,0.03866695240139961,0.7010406851768494,0.9344462156295776,0.35367900133132935,0.04141361638903618,0.5366680026054382,0.843165397644043,-0.031281471252441406,-0.2616046667098999,0.9551377892494202,0.13864558935165405,-0.7332071661949158,-0.4443494975566864,0.5146641731262207,-0.28009888529777527,0.5022125840187073,0.8180791735649109,0.27991577982902527,-0.8596148490905762,0.4274117350578308,0.6913052797317505,0.014038514345884323,0.7223731279373169,0.9146091938018799,0.4041261076927185,-0.012115848250687122,0.7693716287612915,0.10657063126564026,0.6298104524612427,-0.765648365020752,0.17862483859062195,-0.617908239364624,-0.4049195945262909,0.8791466951370239,0.25122836232185364,-0.28046509623527527,0.5912351012229919,0.7561265826225281,0.8176214098930359,0.27497178316116333,0.5058137774467468,0.9736624956130981,0.22742393612861633,0.014587847515940666,0.5695059299468994,0.695913553237915,0.4374217987060547,-0.2056642323732376,0.766472339630127,0.6084170341491699,-0.808496356010437,0.3902401924133301,0.44044312834739685,-0.9482100605964661,-0.317209392786026,-0.014770958572626114,-0.4360789954662323,-0.7798089385032654,-0.44907987117767334,0.334513396024704,-0.7276833653450012,-0.598773181438446,0.887508749961853,-0.26703694462776184,-0.3754692077636719,0.9183324575424194,-0.24820703268051147,-0.3082979917526245,0.3798944056034088,-0.6739402413368225,-0.6335642337799072,0.5024872422218323,-0.7339091300964355,0.45695364475250244,0.7174596190452576,-0.3723868429660797,0.5886715054512024,0.3028351664543152,-0.28159427642822266,0.9104586839675903,0.6157109141349792,0.017273476347327232,0.7877437472343445,-0.03659169375896454,0.9897457957267761,-0.13785210251808167,0.03744621202349663,0.9444258213043213,-0.3265175223350525,0.5713675618171692,0.7881710529327393,-0.22861415147781372,0.5482040047645569,0.8362071514129639,0.01422162540256977,0.9171727895736694,0.3554490804672241,0.17999817430973053,0.5265969038009644,0.6765953302383423,-0.5146335959434509,0.33008819818496704,0.20908230543136597,0.9204992651939392,0.42356640100479126,0.2539750337600708,0.8695028424263,0.7402874827384949,0.4458449184894562,0.503158688545227,-0.1185338944196701,0.7232886552810669,0.6802575588226318,0.5785698890686035,0.6436353921890259,0.5009613037109375,0.5226600170135498,0.06210516765713692,0.8502456545829773,-0.03396710008382797,0.12112796306610107,0.9920346736907959,-0.9732657670974731,-0.22705771028995514,-0.03408917412161827,-0.7854548692703247,0.3902401924133301,0.48033082485198975,-0.3168431520462036,-0.08496353030204773,0.9446394443511963,-0.40968048572540283,-0.539384126663208,0.7356486916542053,0.9676198363304138,0.23541978001594543,0.09082308411598206,-0.45728933811187744,-0.7032380104064941,-0.5443281531333923,-0.14700765907764435,-0.8980681896209717,0.4145023822784424,0.7713858485221863,-0.158696249127388,0.616229772567749,0.32264167070388794,-0.9193090796470642,-0.22528763115406036,0.7338480949401855,-0.6743674874305725,-0.08142338693141937,0.35901975631713867,-0.8902554512023926,0.28015992045402527,0.3790704011917114,-0.7968993186950684,0.47032076120376587,-0.9434797167778015,-0.26648762822151184,-0.19696645438671112,-0.885921835899353,0.4535050392150879,0.09707938134670258,-0.9745780825614929,0.22385326027870178,0.00436414685100317,-0.6555681228637695,-0.6721091270446777,-0.34415721893310547,0.09424115717411041,-0.9937132000923157,-0.06006042659282684,0.04663228243589401,-0.9917600154876709,0.1192968562245369,0.3568224012851715,0.9309671521186829,-0.07684560865163803,-0.5012970566749573,0.8496963381767273,-0.16333505511283875,-0.9917905330657959,0.05246131867170334,-0.11636707931756973,-0.8060548901557922,-0.34485915303230286,-0.48094117641448975,-0.16000854969024658,-0.8786889314651489,0.4497512876987457,0.47959837317466736,0.08990752696990967,0.8728598952293396,0.6996368169784546,0.6592303514480591,-0.27546006441116333,-0.3754386901855469,-0.5106051564216614,-0.773491621017456,-0.5872982144355774,-0.5780510902404785,0.5664845705032349,0.022675253450870514,0.4266487658023834,0.904110848903656,0.826288640499115,0.40992462635040283,-0.38621172308921814,-0.18735313415527344,-0.7058625817298889,-0.6830958127975464,-0.8730124831199646,-0.24304941296577454,0.42274239659309387,-0.10620441287755966,0.7587816715240479,0.6425977349281311,0.3555101156234741,0.5262611508369446,-0.7723929286003113,-0.31305888295173645,-0.4063844680786133,-0.8583635687828064,-0.9935606122016907,0.04104739427566528,-0.10534989833831787,-0.3570055365562439,0.9315775036811829,-0.06817834824323654,0.28174686431884766,0.9098483324050903,-0.30451369285583496,-0.8099307417869568,-0.2211066037416458,-0.5431989431381226,-0.4345530569553375,-0.39454329013824463,-0.8096255660057068,0.5713064670562744,0.7614978551864624,-0.30603960156440735,-0.24121829867362976,0.964781641960144,-0.10483107715845108,-0.17139194905757904,-0.8390148878097534,0.5163426399230957,-0.5112460851669312,-0.6607257127761841,0.5495772957801819,0.5953856110572815,0.039674062281847,0.8024231791496277,0.19458600878715515,0.26612138748168945,0.9440595507621765,-0.1658070683479309,-0.5496078133583069,-0.8187810778617859,0.7367168068885803,0.6470534205436707,-0.19626453518867493,-0.8317819833755493,-0.3806268572807312,0.4040040373802185,-0.21295815706253052,0.5731986165046692,0.791222870349884,-0.05319376289844513,-0.2142094224691391,-0.9753105044364929,0.4592425227165222,0.7234717607498169,-0.5153660774230957,-0.9340800046920776,0.06476027518510818,-0.3510544002056122,-0.43147069215774536,0.9014557600021362,-0.03393658250570297,0.6874294281005859,0.18079164624214172,-0.7033600807189941,0.9713431000709534,-0.13602100312709808,-0.19476912915706635,0.32242804765701294,0.922513484954834,-0.21210363507270813,-0.4680013358592987,0.5896481275558472,-0.6582232117652893,0.8015686273574829,-0.5975219011306763,0.020813623443245888,0.9753105044364929,0.20468764007091522,0.08255256712436676,-0.8978240489959717,0.13937802612781525,0.41764581203460693,-0.2942899763584137,0.7435224652290344,0.600451648235321,0.9019745588302612,0.3258461356163025,0.28321176767349243,0.7164830565452576,0.4269844591617584,-0.5515915155410767,-0.40897855162620544,0.669179379940033,-0.6204107999801636,-0.8922086358070374,-0.1989196389913559,0.4054383933544159,-0.44010743498802185,0.8148136734962463,-0.37726980447769165,0.556138813495636,-0.5829645395278931,0.5923032164573669,0.8040406703948975,0.5196996927261353,-0.28876614570617676,-0.6286202669143677,-0.0476393923163414,0.7762077450752258,-0.299722284078598,0.9205603003501892,0.25034332275390625,0.42268136143684387,-0.4109622538089752,0.807733416557312,0.772972822189331,0.5427411794662476,0.32844018936157227,0.14496292173862457,0.9770195484161377,-0.15607166290283203,0.2610248029232025,0.9332255125045776,0.2468031793832779,-0.9962157011032104,-0.056642353534698486,0.06588946282863617,-0.8784142732620239,-0.19437238574028015,-0.4365672767162323,-0.7069307565689087,0.5771660804748535,0.40876492857933044,0.05059968680143356,-0.9672841429710388,0.24854274094104767,0.13403728604316711,-0.8930631279945374,0.4294564723968506,0.9741508364677429,-0.02685628831386566,0.22421948611736298,0.8335215449333191,0.14185002446174622,0.5338907837867737,0.0796227902173996,0.9559007287025452,-0.28260138630867004,-0.7395855784416199,-0.32227545976638794,-0.5908688902854919,-0.056062500923871994,-0.8492385745048523,0.5249794125556946,0.6598407030105591,0.19501326978206635,0.7256081104278564,-0.23374126851558685,0.9718924760818481,-0.027222510427236557,-0.9782708287239075,0.10519730299711227,-0.17859432101249695,-0.5368205904960632,-0.3871883153915405,0.7495651245117188,0.16180913150310516,0.43910032510757446,0.8837244510650635,0.39136937260627747,0.9103060960769653,-0.1346171498298645,0.2766502797603607,0.9164097905158997,0.28916287422180176,-0.9929502010345459,-0.003723258152604103,0.11841181665658951,-0.7097689509391785,-0.08645893633365631,-0.6990569829940796,0.03640858083963394,-0.983184278011322,0.17886897921562195,-0.21860408782958984,-0.8783532381057739,0.42506179213523865,0.905056893825531,-0.23404644429683685,0.3550523519515991,0.6458327174186707,-0.040772728621959686,0.7623523473739624,0.3029877543449402,0.8884853720664978,-0.34461501240730286,-0.5088961720466614,-0.23960082232952118,-0.826776921749115,-0.3793450593948364,-0.7442854046821594,0.5496383309364319,0.3415021300315857,0.2951444983482361,0.8923001885414124,-0.2295602262020111,0.9576097726821899,-0.173894464969635,-0.8127689361572266,0.07211523503065109,-0.5780510902404785,-0.8481703996658325,-0.31369975209236145,0.4268013536930084,-0.287423312664032,0.5373088717460632,0.7928708791732788,-0.9013336300849915,0.29602953791618347,0.3160496950149536,-0.8291879296302795,0.43311870098114014,0.35325175523757935,-0.6634724140167236,0.7445905804634094,-0.07336649298667908,-0.8588824272155762,0.44056519865989685,0.2611163556575775,-0.5071566104888916,0.861812174320221,0.003021332435309887,-0.6900539994239807,0.7110507488250732,0.1348307728767395,-0.8541825413703918,0.503616452217102,0.12921537458896637,-0.8675191402435303,0.4263741075992584,0.2560808062553406,-0.6425366997718811,0.766167163848877,-0.008056886494159698,-0.9339274168014526,0.32819604873657227,0.14139226078987122,-0.8554643392562866,0.14935758709907532,0.49580371379852295,0.056031983345746994,-0.8743858337402344,0.48191776871681213,0.4865565896034241,-0.6445814371109009,0.5897091627120972,-0.5246132016181946,-0.6087832450866699,0.5950804352760315,-0.670094907283783,-0.1899777203798294,0.7175206542015076,-0.6605426073074341,0.11004974693059921,0.7426373958587646,-0.269295334815979,0.2948393225669861,0.9167760014533997,0.20929594337940216,0.38541826605796814,0.8986785411834717,0.4210638701915741,-0.06976531445980072,0.904324471950531,-0.9342325925827026,0.21955016255378723,0.28098392486572266,0.19614246487617493,0.7560350298881531,-0.6244087219238281,0.7692495584487915,0.6384167075157166,-0.025086214765906334,0.8490859866142273,0.23236793279647827,0.4743186831474304,0.9348735213279724,-0.21622364223003387,0.28144168853759766,0.9200415015220642,0.02151554822921753,-0.39115574955940247,0.6915494203567505,-0.6409802436828613,0.3329569399356842,0.6567888259887695,-0.5358744859695435,-0.5305032730102539,0.33704641461372375,-0.8301950097084045,0.4440138041973114,0.3252967894077301,-0.8351390361785889,-0.443494975566864,-0.06622516363859177,-0.7794122099876404,0.6229743361473083,0.11600085347890854,-0.9570604562759399,-0.26563310623168945,-0.20841090381145477,-0.7083041071891785,0.6743980050086975,-0.048677023500204086,-0.9885555505752563,-0.1425824761390686,0.5816828012466431,-0.8104495406150818,0.06900235265493393,0.7403485178947449,-0.5633106231689453,0.3667714595794678,0.8827478885650635,0.00991851557046175,-0.4697103798389435,0.6323435306549072,-0.5332804322242737,-0.5618457794189453,0.2851954698562622,-0.635273277759552,-0.7176427245140076,0.24005860090255737,-0.861476480960846,-0.44743186235427856,-0.02130191959440708,-0.9234595894813538,-0.383037805557251,-0.004821924492716789,-0.6873683929443359,-0.7262489795684814,0.43931394815444946,-0.6674398183822632,-0.6012146472930908,0.4206671416759491,-0.7698599100112915,-0.47990354895591736,0.6499832272529602,-0.5133213400840759,-0.5603198409080505,0.8791466951370239,0.014007995836436749,-0.4762718677520752,-0.16824854910373688,-0.3340556025505066,0.9273964762687683,-0.21027253568172455,0.6545609831809998,0.7261574268341064,-0.05807672441005707,0.843928337097168,0.5332499146461487,0.6560869216918945,0.7448957562446594,-0.12088381499052048,0.6907254457473755,0.7177037596702576,-0.08795434236526489,0.17227698862552643,0.9456770420074463,0.27561265230178833,0.18558305501937866,0.9483932256698608,0.25699636340141296,-0.13220618665218353,0.8905911445617676,0.4351024031639099,-0.004547257907688618,0.9160130620002747,0.40107426047325134,0.3431501090526581,0.9002349972724915,0.26786094903945923,0.8138371109962463,-0.47810298204421997,0.33021026849746704,0.08896145224571228,-0.1994384527206421,0.9758293628692627,0.23596911132335663,-0.35285499691963196,0.9053926467895508,0.4369334876537323,-0.37662893533706665,0.8168278932571411,0.11813715100288391,-0.18707846105098724,0.9751884341239929,-0.10531937330961227,-0.2060304582118988,0.9728385210037231,-0.05050813406705856,-0.317667156457901,0.9468367695808411,0.19562365114688873,-0.23950925469398499,0.9509567618370056,-0.3486434519290924,-0.03515732288360596,0.9365825653076172,-0.27457502484321594,0.616534948348999,0.7378765344619751,-0.37632372975349426,-0.041627246886491776,0.9255348443984985,-0.11838129907846451,0.555742084980011,0.8228705525398254,-0.39393290877342224,-0.14838099479675293,0.9070711135864258,-0.35309916734695435,-0.13357952237129211,0.9259926080703735,-0.24958036839962006,-0.010956144891679287,0.9682607650756836,-0.20975372195243835,-0.1497848480939865,0.9661855101585388,0.4364146888256073,0.43205052614212036,0.7891781330108643,0.3399761915206909,-0.9177831411361694,-0.20499283075332642,-0.1281777322292328,0.6932279467582703,-0.7091891169548035,-0.2611468732357025,0.3011871576309204,-0.9170812368392944,0.012726218439638615,-0.5122531652450562,0.8586993217468262,-0.1676686853170395,0.8794213533401489,0.4454786777496338,-0.060853905975818634,0.9195837378501892,0.3881343901157379,0.19745475053787231,0.8034607768058777,0.5616321563720703,-0.2381969690322876,0.6927091479301453,0.6807153820991516,-0.05645924061536789,0.4349803030490875,0.8986480236053467,0.28351694345474243,0.5295266509056091,0.7994933724403381,-0.2227545976638794,0.6114383339881897,-0.7592700123786926,-0.4342173635959625,0.5555284023284912,-0.7090670466423035,-0.4932706654071808,0.7845393419265747,-0.37568286061286926,-0.13043610751628876,0.8740195631980896,-0.4680013358592987,-0.5971556901931763,0.36246833205223083,0.7155064344406128,-0.335001677274704,0.1670278012752533,0.9272744059562683,0.6486709117889404,-0.04849391058087349,0.7594836354255676,0.5182042717933655,0.09720145165920258,0.8496963381767273,0.3191015422344208,-0.26456496119499207,0.9100314378738403,-0.28806421160697937,0.22879727184772491,-0.9298379421234131,-0.5900753736495972,0.4058046340942383,-0.6978972554206848,-0.6438490152359009,0.21912290155887604,-0.7330545783042908,0.9942930340766907,-0.10504470765590668,0.01748710498213768,0.9162877202033997,0.35392314195632935,0.18744468688964844,0.842860221862793,0.1673329919576645,0.5113986730575562,0.9027374982833862,-0.1828058660030365,0.3893551528453827,-0.7673879265785217,0.5316019058227539,-0.3584398925304413,-0.8784142732620239,0.18631550669670105,-0.44004639983177185,-0.9931333065032959,0.10602129995822906,-0.04925687611103058,-0.82686847448349,0.5605029463768005,0.045686207711696625,0.7814569473266602,-0.538285493850708,0.3154698312282562,0.6796777248382568,-0.23557236790657043,0.694631814956665,0.6132694482803345,-0.43189793825149536,0.6613056063652039,-0.5849482417106628,0.2616046667098999,0.7676931023597717,-0.23288674652576447,0.5780510902404785,0.7820367813110352,-0.27347636222839355,0.747642457485199,0.6051210165023804,-0.6511734127998352,0.35276344418525696,0.6719260215759277,-0.09625537693500519,-0.9899289011955261,-0.10367137938737869,-0.17117832601070404,-0.7966856956481934,-0.5796075463294983,-0.7462385892868042,-0.5670033693313599,0.3486739695072174,-0.9173253774642944,-0.36072877049446106,0.16843165457248688,-0.808954119682312,-0.07782220095396042,0.5826898813247681,-0.00119022186845541,-0.31211280822753906,0.9500106573104858,-0.8791466951370239,-0.16003906726837158,0.44886624813079834,-0.9957579374313354,0.06534013152122498,-0.06457716226577759,-0.9544358849525452,-0.1496932953596115,-0.25812554359436035,-0.903592050075531,-0.3575243353843689,0.23590807616710663,-0.7882626056671143,0.4830469787120819,0.3811456561088562,-0.5174413323402405,0.8452101349830627,0.13361003994941711,-0.6975310444831848,0.6207770109176636,-0.3577989935874939,-0.9136631488800049,0.395245224237442,0.0947904884815216,-0.7818536758422852,0.08795434236526489,0.617206335067749,-0.669362485408783,-0.009002960287034512,0.7428510189056396,-0.7421185970306396,0.27375102043151855,-0.6117740273475647,-0.9364604353904724,0.06183049827814102,-0.34525591135025024,-0.8162785768508911,-0.42356640100479126,0.39271217584609985,-0.6505630612373352,0.04837183654308319,-0.7578661441802979,-0.772972822189331,-0.24369029700756073,0.5857417583465576,-0.7394024729728699,0.6586199402809143,-0.13953062891960144,-0.1510971337556839,-0.27503281831741333,0.9494613409042358,-0.22522659599781036,-0.7175511717796326,0.6590471863746643,-0.6293526887893677,0.32816553115844727,-0.7043672204017639,-0.37726980447769165,0.5240638256072998,-0.7635425925254822,-0.3090914487838745,0.35435041785240173,-0.8825342655181885,-0.021179845556616783,-0.4064149856567383,0.9134190082550049,-0.3235267102718353,-0.7433393597602844,0.5854365825653076,-0.32151249051094055,-0.3115939795970917,0.8941313028335571,-0.48182621598243713,-0.6313974261283875,0.6075624823570251,0.14142277836799622,-0.6619159579277039,0.7360759377479553,-0.08017212152481079,-0.8275094032287598,0.5556504726409912,-0.5327616333961487,-0.5168920159339905,0.670033872127533,-0.17252112925052643,-0.6390575766563416,0.7495040893554688,-0.15387432277202606,-0.9806207418441772,0.12121951580047607,-0.9299905300140381,-0.010467848740518093,-0.3674123287200928,-0.9581896662712097,-0.1356547772884369,0.251899778842926,-0.8359935283660889,0.10797448456287384,-0.5379497408866882,-0.981719434261322,0.07397686690092087,0.1752678006887436,-0.9012115597724915,0.19989623129367828,-0.38450270891189575,-0.5347758531570435,0.3498947024345398,-0.7691274881362915,-0.5166172981262207,0.10193182528018951,-0.8501235842704773,-0.3486739695072174,0.8407238721847534,-0.4142277240753174,-0.35926389694213867,0.7333292365074158,-0.5771660804748535,-0.6416822075843811,0.41032135486602783,-0.6479384899139404,-0.6449476480484009,0.5833918452262878,-0.4935758411884308,0.1981566846370697,0.009552293457090855,0.9801019430160522,0.39246803522109985,0.23532822728157043,0.8891262412071228,0.443647563457489,-0.41645556688308716,0.7935422658920288,0.43964964151382446,-0.2609027326107025,0.8594317436218262,-0.5703299045562744,0.8213446736335754,0.0072634052485227585,-0.4678487479686737,0.7113254070281982,-0.5244911313056946,0.29096347093582153,-0.24170659482479095,0.9256569147109985,-0.287270724773407,0.5555284023284912,0.7802667021751404,-0.8829920291900635,-0.30558183789253235,-0.3562425673007965,-0.7099520564079285,-0.6375316381454468,-0.29911190271377563,-0.9965513944625854,0.021088290959596634,0.0798974558711052,-0.9257484674453735,0.37806329131126404,-0.0025025177747011185,-0.2528458535671234,-0.8846095204353333,-0.39173558354377747,0.03408917412161827,-0.9418622255325317,-0.3342081904411316,-0.6672872304916382,0.7445295453071594,0.018768884241580963,-0.8782616853713989,0.14886929094791412,-0.4543595612049103,-0.3802911341190338,0.7801751494407654,0.49662771821022034,-0.6328012943267822,0.574541449546814,0.5190588235855103,0.0473036915063858,0.7247535586357117,0.6873378753662109,0.3503524959087372,0.539323091506958,0.765739917755127,-0.08035523444414139,0.7626880407333374,0.6417432427406311,0.2611163556575775,-0.4851832687854767,0.8344675898551941,0.6788842678070068,0.39362773299217224,0.6197698712348938,0.5683462023735046,-0.6933194994926453,0.442976176738739,0.4615314304828644,-0.887020468711853,0.011413922533392906,0.3259987235069275,-0.8717612028121948,-0.365642249584198,-0.5142673850059509,-0.7568284869194031,-0.4033631384372711,-0.8180791735649109,0.45674002170562744,0.3494369387626648,-0.24048584699630737,0.7571642398834229,0.6073183417320251,-0.9844965934753418,-0.1496932953596115,-0.09125034511089325,0.5240638256072998,0.6053346395492554,0.599078357219696,0.963927149772644,-0.032135989516973495,0.2641071677207947,0.8353831768035889,-0.5419171452522278,-0.09183019399642944,-0.764915943145752,-0.6427198052406311,0.04217658191919327,-0.922757625579834,-0.29895931482315063,-0.24304941296577454,-0.3554185628890991,-0.7849971055984497,-0.5073397159576416,-0.28315073251724243,-0.8846400380134583,-0.37043365836143494,0.4118472933769226,-0.7289040684700012,-0.5468306541442871,-0.027558214962482452,-0.9353618025779724,-0.35254982113838196,-0.539994478225708,0.5449079871177673,0.6414380073547363,-0.9329203367233276,0.2796716094017029,0.22669148445129395,-0.9062776565551758,-0.1271401047706604,0.4030579626560211,0.860652506351471,0.47230446338653564,0.1902218759059906,0.1348918080329895,0.8229926228523254,0.5517746210098267,0.9308450818061829,-0.21704763174057007,-0.2939237654209137,-0.6758629083633423,-0.13370159268379211,0.7247535586357117,-0.7292397618293762,-0.13275551795959473,0.6712241172790527,-0.540024995803833,-0.7973875999450684,0.269173264503479,-0.556779682636261,-0.7972960472106934,0.23300881683826447,0.49598681926727295,-0.5356913805007935,-0.6833704710006714,-0.008819849230349064,-0.9192175269126892,-0.39362773299217224,-0.3709219694137573,0.5053560137748718,0.7791070342063904,0.21570482850074768,0.86870938539505,0.4458449184894562,0.7218848466873169,0.6745505928993225,-0.15433210134506226,0.7960448265075684,0.07779168337583542,-0.600146472454071,-0.08072146028280258,-0.825739324092865,0.5582140684127808,0.3894772231578827,-0.9164097905158997,0.09192174673080444,0.7815790176391602,-0.6205328702926636,-0.0636616125702858,0.11658070981502533,0.20273445546627045,0.9722586870193481,-0.173650324344635,-0.2925504446029663,0.940336287021637,0.9284340739250183,0.28977325558662415,0.23233741521835327,0.556443989276886,0.4835962951183319,0.6756187677383423,0.9834895133972168,-0.17712943255901337,-0.036988433450460434,-0.6535233855247498,-0.1509445458650589,0.7416913509368896,-0.34815514087677,-0.3270973861217499,0.8785058259963989,-0.20346690714359283,-0.4591204524040222,0.8647419810295105,-0.7421491146087646,-0.16974395513534546,0.6483657360076904,-0.2711874842643738,-0.4520096480846405,0.8497573733329773,-0.7235938310623169,-0.6631977558135986,0.1911374181509018,-0.382946252822876,-0.86846524477005,-0.31473737955093384,-0.2375560700893402,0.10635700821876526,-0.965514063835144,0.21900081634521484,-0.47889643907546997,0.8500930666923523,0.04342783987522125,-0.49519333243370056,0.8676717281341553,0.1419110745191574,-0.382915735244751,0.9127780795097351,-0.05261391028761864,-0.5539109706878662,0.8308969140052795,-0.21201208233833313,0.4853663742542267,0.8481703996658325,-0.2553789019584656,0.23911252617835999,0.9367961883544922,-0.5716422200202942,0.5193334817886353,0.635181725025177,-0.42280343174934387,0.5505844354629517,0.7197484970092773,-0.1896420121192932,-0.17328409850597382,0.9664296507835388,0.05880916863679886,-0.7899715900421143,0.6102786064147949,-0.19653919339179993,-0.44795069098472595,0.8721579909324646,-0.4344004690647125,-0.4842982292175293,0.7593920826911926,-0.6976531147956848,0.27991577982902527,0.6594439744949341,-0.2300790399312973,0.600421130657196,0.765831470489502,-0.26593828201293945,0.7502059936523438,0.6053346395492554,-0.7464827299118042,0.34492018818855286,0.5689870715141296,-0.557420551776886,-0.6540421843528748,0.5113071203231812,-0.7250892519950867,-0.6819360852241516,0.095797598361969,-0.7526779770851135,-0.6138492822647095,0.2378917783498764,-0.8289132118225098,-0.2152165323495865,0.5162510871887207,-0.82607501745224,-0.5475630760192871,0.13321329653263092,-0.8758506774902344,-0.4688863754272461,0.11395611613988876,-0.8176519274711609,-0.05899227783083916,0.5726187825202942,-0.9356669783592224,0.08014160394668579,-0.34357738494873047,-0.9703970551490784,-0.20322275161743164,-0.13037507236003876,-0.8511002063751221,-0.18494217097759247,0.491317480802536,-0.8935514092445374,0.31470686197280884,0.32016968727111816,-0.826654851436615,0.018463697284460068,0.5623645782470703,0.11569567024707794,-0.48802149295806885,0.8651081919670105,-0.1111789271235466,-0.41767632961273193,0.9017304182052612,-0.03469954431056976,-0.5933103561401367,0.8041932582855225,-0.049623094499111176,-0.5247657895088196,0.8497878909111023,-0.4453566074371338,-0.8901028633117676,-0.09640797227621078,-0.5960264801979065,-0.7009186148643494,0.39167454838752747,-0.6931363940238953,-0.6765953302383423,0.24839015305042267,-0.6052125692367554,-0.791039764881134,-0.08908353000879288,-0.634479820728302,-0.4616840183734894,0.6198614239692688,-0.8602557182312012,-0.27372050285339355,0.4300973415374756,-0.12210455536842346,-0.09646900743246078,0.9877926111221313,-0.3409222662448883,-0.09881893545389175,0.9348430037498474,-0.6620990633964539,-0.16983550786972046,0.729880690574646,-0.3034150302410126,0.00030518509447574615,0.9528489112854004,-0.7897884845733643,0.009491256438195705,0.6132694482803345,-0.6286813020706177,0.08880886435508728,0.772545576095581,-0.9018830060958862,-0.430768758058548,0.0316476933658123,-0.15262307226657867,0.2133243829011917,0.964964747428894,-0.48786890506744385,-0.2763145864009857,0.8279976844787598,-0.809076189994812,-0.1659291386604309,0.5637379288673401,-0.4040955901145935,-0.2542191743850708,0.8786584138870239,-0.0950346365571022,-0.5240027904510498,0.8463698029518127,-0.43928343057632446,-0.25925472378730774,0.8601031303405762,-0.6277657151222229,-0.1987670511007309,0.7525559067726135,-0.031403545290231705,-0.17035432159900665,0.9848628044128418,-0.7769402265548706,-0.08401745557785034,0.6238898634910583,-0.8236640691757202,-0.02465895563364029,0.5665150880813599,0.028046511113643646,0.14807580411434174,0.9885555505752563,0.006408886983990669,0.041627246886491776,0.99908447265625,0.01342814415693283,0.2135685235261917,0.9768059253692627,-0.09668263792991638,0.1674245446920395,0.9811090230941772,-0.3804437518119812,-0.12131107598543167,0.9168065190315247,-0.07348857074975967,-0.26664021611213684,0.9609668254852295,0.21778008341789246,-0.1510055810213089,0.964232325553894,0.05099643021821976,0.035462506115436554,0.9980468153953552,-0.8504592776298523,-0.045533616095781326,0.5240333080291748,-0.490951269865036,-0.48957791924476624,0.7205725312232971,-0.3010650873184204,-0.5352641344070435,0.7891781330108643,-0.5023041367530823,-0.4040650725364685,0.7644276022911072,-0.3154087960720062,-0.2462538480758667,0.9164403080940247,-0.22525711357593536,-0.49690237641334534,0.8380382657051086,-0.20026245713233948,-0.6010315418243408,0.773705244064331,-0.206732377409935,-0.1750541627407074,0.9625843167304993,0.02853480726480484,0.023407697677612305,0.999298095703125,-0.1512192189693451,-0.2926419973373413,0.9441816210746765,0.10821863263845444,-0.22565385699272156,0.9681692123413086,-0.31434065103530884,-0.8821070194244385,0.3507187068462372,-0.15219581127166748,-0.5867793560028076,0.7952818274497986,0.3674123287200928,0.8981292247772217,-0.24146243929862976,-0.021942809224128723,0.5403607487678528,0.8411206603050232,0.23218482732772827,0.4749290347099304,0.8488113284111023,0.2462538480758667,0.940244734287262,-0.23502303659915924,0.6989349126815796,-0.4513382315635681,-0.5547349452972412,-0.06674397736787796,-0.9512924551963806,-0.3009430170059204,-0.2467116266489029,-0.843531608581543,0.4770348072052002,-0.38532671332359314,-0.8484755754470825,0.36271247267723083,0.02621540054678917,-0.2383495569229126,0.9707937836647034,-0.808008074760437,0.03634754568338394,0.5880001187324524,-0.9555040001869202,0.2923367917537689,-0.03881954401731491,-0.3554185628890991,0.07092501223087311,-0.9320047497749329,0.7823420166969299,0.4065065383911133,-0.47187718749046326,-0.03021332435309887,0.24784082174301147,0.9683218002319336,-0.16199225187301636,-0.9350871443748474,-0.3151646554470062,-0.061586350202560425,-0.8314462900161743,0.5521408915519714,-0.08005005121231079,-0.4827722907066345,0.8720358610153198,-0.34815514087677,-0.9295938014984131,-0.12094485014677048,0.05813775956630707,-0.28995636105537415,0.9552598595619202,-0.29001739621162415,-0.5017243027687073,0.8149357438087463,-0.4066591262817383,-0.6902371048927307,0.5984679460525513,-0.23642688989639282,-0.4670247435569763,0.8520157337188721,-0.32886746525764465,-0.1498153656721115,0.9324014782905579,-0.04129154235124588,-0.3567308485507965,0.9332865476608276,-0.5120090246200562,-0.8482009172439575,0.1355021893978119,0.02545243687927723,-0.5618457794189453,0.82680743932724,-0.029786065220832825,-0.5522629618644714,0.8331248164176941,0.21955016255378723,0.2918790280818939,0.9309061169624329,-0.1670278012752533,0.3643604815006256,0.9161351323127747,-0.3822138011455536,-0.9161351323127747,0.12063966691493988,-0.8825342655181885,0.07245094329118729,0.46461379528045654,0.9907223582267761,-0.004608294926583767,0.1355937421321869,0.3712881803512573,-0.9265724420547485,-0.05954161286354065,0.42265084385871887,0.8031250834465027,0.4198736548423767,-0.09915463626384735,0.8357493877410889,0.540055513381958,-0.30603960156440735,-0.7390056848526001,0.600115954875946,-0.7288125157356262,0.053468428552150726,0.6826074719429016,0.8770714402198792,-0.06060975790023804,0.4765160083770752,0.33857235312461853,-0.7605822682380676,0.5539109706878662,0.2549211084842682,0.45628222823143005,0.8525040149688721,0.01474044006317854,0.4687948226928711,0.8831751346588135,0.039643544703722,0.07562486827373505,0.9963377714157104,0.16116824746131897,0.052827540785074234,0.9855037331581116,0.20777001976966858,0.9163792729377747,-0.3420819640159607,0.36130863428115845,0.8798180818557739,-0.3087557554244995,0.6102175712585449,-0.5646229386329651,-0.5556809902191162,0.11581774055957794,-0.7694936990737915,-0.6280404329299927,-0.03088473156094551,-0.6978667378425598,-0.7155369520187378,0.7394635081291199,0.6161686778068542,-0.2711264491081238,0.6224860548973083,0.4850306808948517,0.6141544580459595,0.7455977201461792,0.47309792041778564,0.4692831337451935,0.7744987607002258,-0.6222419142723083,-0.11365093290805817,0.5893734693527222,-0.8043458461761475,0.07489242404699326,0.47138890624046326,-0.8497878909111023,0.23578600585460663,0.8595538139343262,0.4833521544933319,0.16574601829051971,0.694998025894165,0.7030243873596191,0.1507309228181839,0.7988219857215881,0.5723136067390442,0.18509475886821747,0.003021332435309887,0.6559038162231445,0.7548142671585083,-0.11624500155448914,0.6992706060409546,0.7053132653236389,0.5932493209838867,0.7929929494857788,0.13843196630477905,0.7870723605155945,-0.2926725149154663,-0.5429853200912476,0.9235511422157288,0.027344584465026855,-0.382457971572876,0.25769829750061035,-0.965544581413269,-0.035431988537311554,0.21237830817699432,-0.9513840079307556,-0.2229682356119156,0.2718283534049988,-0.9055757522583008,-0.3255714476108551,0.2704550325870514,-0.9595934748649597,-0.07745597511529922,0.8198797702789307,-0.4144413471221924,-0.39490950107574463,0.5118564367294312,0.8576311469078064,0.049501024186611176,0.48802149295806885,0.8727988600730896,-0.00079348124563694,0.8888821005821228,-0.39167454838752747,-0.2375866025686264,-0.2716452479362488,0.9007232785224915,0.33893856406211853,-0.712973415851593,0.49580371379852295,0.49577319622039795,0.47929319739341736,0.8596148490905762,0.17688527703285217,0.9068574905395508,-0.39332255721092224,-0.1512497365474701,-0.48945584893226624,-0.8534806370735168,0.17865535616874695,0.2378002256155014,-0.9712820649147034,3.0518509447574615e-05,0.7836237549781799,-0.430524617433548,0.44782862067222595,-0.15491195023059845,-0.7357402443885803,0.6592608690261841,0.5426496267318726,0.5079195499420166,0.6689351797103882,-0.670827329158783,0.442945659160614,0.5947446823120117,-0.287423312664032,0.8761864304542542,0.3868526220321655,0.300149530172348,-0.9496139287948608,0.08993804454803467,-0.5244911313056946,-0.827021062374115,0.20227667689323425,-0.11038544774055481,-0.8325754404067993,0.5427716970443726,-0.1749931275844574,0.17163610458374023,0.9694814682006836,0.8520767688751221,-0.42530596256256104,-0.30500197410583496,0.8204290866851807,-0.5592821836471558,0.11847285181283951,0.4679097831249237,0.8750572204589844,0.12356944382190704,0.8560746908187866,-0.3908505439758301,-0.33814507722854614,-0.47859126329421997,-0.8633686304092407,0.1596118062734604,0.32129886746406555,-0.9441205859184265,0.07309182733297348,0.8340098261833191,-0.5444502234458923,0.08905301243066788,-0.15320292115211487,-0.8982207775115967,0.4119388461112976,0.6576128602027893,0.38593706488609314,0.6469313502311707,0.3118381202220917,-0.9501022100448608,-0.0025025177747011185,-0.46293526887893677,-0.8054139614105225,0.37006744742393494,-0.5421308279037476,-0.8142033219337463,0.20758689939975739,0.8302865624427795,-0.36997589468955994,-0.41679129004478455,-0.4769432544708252,-0.86822110414505,0.13660085201263428,-0.8163701295852661,0.3245338201522827,0.4777062237262726,-0.8658406138420105,0.22760704159736633,0.4454786777496338,-0.6065554022789001,-0.7949766516685486,0.00753807183355093,-0.9478438496589661,0.09231849014759064,0.30503249168395996,-0.695486307144165,0.43247780203819275,0.573778510093689,-0.7994933724403381,0.22452467679977417,0.557115375995636,-0.9638355374336243,-0.054322946816682816,0.2608111798763275,-0.7510910630226135,0.12842188775539398,0.6475722789764404,-0.9138157367706299,-0.1908017247915268,0.3584398925304413,-0.491378515958786,-0.861354410648346,0.12866604328155518,-0.5334330201148987,-0.8378551602363586,0.11581774055957794,0.25907161831855774,-0.9614245891571045,-0.09225745499134064,0.28202155232429504,-0.9549852013587952,-0.09176915884017944,-0.5813165903091431,-0.8131656646728516,0.02768028900027275,0.25818657875061035,-0.9502242803573608,-0.1743217259645462,-0.9286171793937683,-0.19354838132858276,0.3165074586868286,-0.9515976309776306,-0.2133854180574417,0.2211371213197708,-0.1577806919813156,0.7248145937919617,0.670583188533783,-0.21991637349128723,0.7811822891235352,0.5842463374137878,-0.5589159727096558,0.6083559393882751,0.5634632110595703,0.8302865624427795,-0.5253761410713196,-0.18588824570178986,0.5139011740684509,-0.8000122308731079,-0.3096102774143219,0.9599902629852295,0.21890926361083984,-0.1745658814907074,0.9187291860580444,0.3180333971977234,-0.23392437398433685,0.9229713082313538,0.33909115195274353,-0.1818903088569641,0.7573778629302979,0.3581652343273163,-0.5459151268005371,0.5871151089668274,0.2794885039329529,-0.7596972584724426,0.8725242018699646,-0.43946653604507446,-0.2133243829011917,0.17743460834026337,0.5313882827758789,-0.8283028602600098,-0.40165409445762634,0.4459059536457062,-0.7998596429824829,-0.40278327465057373,0.017090365290641785,-0.9150975346565247,-0.8287606239318848,0.2454298585653305,-0.5028839707374573,-0.9318216443061829,-0.16931669414043427,-0.32090213894844055,-0.9785454869270325,-0.13818781077861786,-0.15277566015720367,-0.8217719197273254,-0.03518784046173096,-0.5687124133110046,-0.5907772779464722,-0.8010193109512329,-0.09653004258871078,-0.43116551637649536,-0.7381817102432251,-0.5187841653823853,-0.03088473156094551,-0.6389660239219666,-0.7685781717300415,0.22843104600906372,-0.9600207805633545,-0.16168706119060516,0.41468551754951477,-0.5153965950012207,-0.7499008178710938,0.7867366671562195,-0.3969847559928894,-0.47267067432403564,-0.3024384379386902,0.09289833903312683,-0.9486068487167358,-0.7357402443885803,0.33823662996292114,0.5867183208465576,0.3267006576061249,0.9360637068748474,0.13040558993816376,-0.5279701948165894,0.8031861186027527,0.27585679292678833,0.8462477326393127,-0.1904049813747406,-0.49754324555397034,0.557542622089386,0.5086214542388916,0.6560564041137695,0.9272744059562683,-0.35288551449775696,0.12475966662168503,0.013061922043561935,-0.9066133499145508,0.4217352867126465,-0.443067729473114,-0.8730124831199646,0.20371104776859283,-0.23462629318237305,-0.05853450298309326,0.9703055024147034,-0.7273476123809814,0.3724783957004547,0.5763420462608337,0.40751364827156067,0.9077120423316956,0.09955137968063354,-0.36982330679893494,0.8535416722297668,0.3669240474700928,0.7214270234107971,0.34434035420417786,0.6007568836212158,0.8345896601676941,-0.5506149530410767,-0.015320291742682457,-0.11804559826850891,-0.9103976488113403,0.3964659571647644,-0.20892971754074097,-0.0871608629822731,0.9740287661552429,-0.7322916388511658,0.430707722902298,0.5274208784103394,-0.3119907081127167,0.022461622953414917,0.9497970342636108,0.3489791452884674,0.2560808062553406,-0.9014557600021362,0.5781426429748535,0.808709979057312,0.10800500214099884,0.7002472281455994,0.4426099359989166,0.5600757002830505,-0.3970153033733368,0.21118807792663574,0.8931546807289124,0.1990417242050171,0.4899746775627136,0.8486892580986023,-0.5377971529960632,0.18906216323375702,0.8215582966804504,0.921811580657959,0.24286629259586334,-0.3020416796207428,0.7937864065170288,0.48908963799476624,0.36143070459365845,-0.34427931904792786,-0.490798681974411,-0.8003174066543579,0.4678182303905487,-0.1900692731142044,-0.8631244897842407,-0.8659932017326355,-0.43955808877944946,-0.2383190393447876,-0.9024933576583862,-0.14740440249443054,0.4046754240989685,-0.8136540055274963,-0.1026947870850563,0.5721610188484192,0.19608142971992493,-0.3664662539958954,0.9095126390457153,-0.005615405738353729,-0.3720511496067047,0.9281594157218933,-0.939848005771637,-0.2594378590583801,-0.2220526784658432,-0.044068727642297745,-0.0037842951714992523,0.9989928603172302,-0.43281349539756775,0.8631550073623657,0.2599566578865051,-0.6138187646865845,0.7506027221679688,0.24451430141925812,-0.9087496399879456,0.37830743193626404,0.17606128752231598,-0.6685689687728882,0.3792840242385864,0.6396068930625916,0.18897061049938202,0.365184485912323,0.9115268588066101,-0.31284523010253906,0.5682851672172546,0.7610095739364624,0.8200628757476807,0.3905453681945801,0.41825616359710693,0.6161686778068542,-0.2593463063240051,0.7436750531196594,0.32789087295532227,-0.10675374418497086,0.938627302646637,0.28040406107902527,0.39451277256011963,0.8750267028808594,0.34690389037132263,-0.06006042659282684,-0.9359416365623474,0.19547104835510254,0.9794915318489075,0.04846339300274849,0.635395348072052,-0.06671345978975296,0.7692800760269165,0.8966032862663269,0.1987975686788559,-0.395672470331192,-0.3727530837059021,0.18073061108589172,0.9101229906082153,-0.5323343873023987,0.8340708613395691,-0.14459669589996338,-0.4212469756603241,-0.24039429426193237,-0.8744773864746094,0.03729362040758133,-0.2302316427230835,0.9724112749099731,-0.7825556397438049,-0.14487136900424957,0.6054567098617554,-0.4199346899986267,0.14105655252933502,0.8965117335319519,-0.5116122961044312,0.14716024696826935,0.8464918732643127,-0.5979186296463013,0.4833826720714569,0.6393322348594666,-0.007721182890236378,-0.9512619376182556,-0.3082064390182495,-0.5192419290542603,-0.8534196019172668,-0.044862210750579834,0.25885799527168274,-0.748710572719574,-0.6102175712585449,0.5612658858299255,-0.5855281352996826,-0.5848872065544128,-0.748008668422699,-0.38462477922439575,0.5408185124397278,-0.6362193822860718,-0.28107547760009766,0.7184362411499023,-0.143650621175766,0.5497604012489319,-0.8228400349617004,-0.3328348696231842,-0.9361552596092224,0.11297952383756638,0.2709738314151764,-0.9084444642066956,-0.3182165026664734,0.6183050274848938,-0.19953002035617828,-0.7601550221443176,0.03030487895011902,-0.2529068887233734,0.9669789671897888,0.4293344020843506,0.8096560835838318,0.40009766817092896,-0.6769616007804871,0.6716513633728027,-0.3009124994277954,-0.3659779727458954,-0.9266945123672485,-0.08517716079950333,0.7270424365997314,-0.573473334312439,0.37748345732688904,0.6940214037895203,0.6403088569641113,0.32908108830451965,-0.7284768223762512,0.6848964095115662,0.014984588138759136,-0.5870235562324524,-0.7573168277740479,-0.2860805094242096,0.8014465570449829,-0.5888851881027222,-0.10419019311666489,0.7139195203781128,0.6874599456787109,0.13281655311584473,-0.5305643081665039,0.5946531295776367,-0.6039918065071106,-0.45762506127357483,-0.5527512431144714,-0.6964018940925598,0.6407055854797363,-0.46528518199920654,-0.6107059121131897,0.5452131628990173,0.6240425109863281,-0.5596789717674255,-0.2153996378183365,0.35160374641418457,-0.9110080003738403,-0.6590777039527893,0.5937376022338867,-0.4615924656391144,-0.3488265573978424,-0.9288308620452881,0.12475966662168503,-0.2311471849679947,-0.9636219143867493,0.13400676846504211,0.556047260761261,-0.19483016431331635,-0.807947039604187,0.791955292224884,-0.46440017223358154,0.3963438868522644,0.17889949679374695,-0.269539475440979,0.9461958408355713,0.69515061378479,0.7105624675750732,0.10873744636774063,0.4213385283946991,0.8172856569290161,0.39304786920547485,-0.7581713199615479,0.635273277759552,-0.14679403603076935,-0.5641651749610901,-0.8247932195663452,0.037018951028585434,0.8388012051582336,-0.5441450476646423,-0.016144290566444397,0.6371043920516968,0.7469710111618042,-0.1899472028017044,-0.47172459959983826,-0.7436140179634094,-0.47379985451698303,-0.6551408171653748,0.3746757507324219,-0.6560258865356445,0.5915097594261169,-0.5636158585548401,-0.5765251517295837,0.4198736548423767,0.4531998634338379,-0.7863094210624695,-0.3500167727470398,0.9281288981437683,-0.1266518086194992,0.11517685651779175,0.0872524157166481,-0.9895016551017761,0.40070801973342896,0.6019165515899658,-0.6907254457473755,-0.23401592671871185,0.9621875882148743,0.13925595581531525,-0.5309610366821289,0.5959349274635315,0.6024048328399658,0.00079348124563694,0.9474166035652161,0.31995606422424316,0.5594042539596558,-0.7584764957427979,-0.3342387080192566,0.23209325969219208,0.8753929138183594,0.42402416467666626,0.9785760045051575,0.025971252471208572,-0.20413830876350403,-0.2464369684457779,0.9524216651916504,-0.17929624021053314,0.06686605513095856,0.20664082467556,-0.9761040210723877,0.28318125009536743,0.16864527761936188,-0.9441205859184265,0.3732108473777771,-0.9231849312782288,-0.09155552834272385,0.048860132694244385,-0.07751701772212982,0.9957884550094604,-0.06872768700122833,0.9974974989891052,0.016113772988319397,0.7992492318153381,-0.5985594987869263,0.053498946130275726,0.7255470156669617,0.286721408367157,-0.6255683898925781,0.4204535186290741,0.0,0.9072847962379456,0.3489486277103424,0.8942533731460571,0.28015992045402527,0.6022827625274658,0.5967894792556763,-0.5301675200462341,0.27338480949401855,-0.8472548723220825,-0.45539718866348267,0.3578905463218689,-0.9118015170097351,-0.20126956701278687,0.7817010879516602,0.5827814340591431,-0.2220221608877182,0.8550065755844116,-0.4219489097595215,-0.3014923632144928,-0.49555954337120056,-0.5261390805244446,0.6910306215286255,-0.6222419142723083,-0.45817437767982483,0.634693443775177,-0.2466505914926529,0.7624744176864624,0.5981322526931763,-0.24286629259586334,0.8600420951843262,0.44865259528160095,0.3092440664768219,0.7968688011169434,-0.5189367532730103,-0.011017181910574436,-0.9186986684799194,-0.39475691318511963,-0.026459548622369766,-0.4669331908226013,0.8838770985603333,-0.024842066690325737,0.6675313711166382,0.7441633343696594,0.4977874159812927,0.521073043346405,-0.6932584643363953,0.3744315803050995,-0.6589861512184143,-0.65227210521698,0.7267982959747314,-0.5104525685310364,0.4595172107219696,0.7439802289009094,0.5461592674255371,0.38486891984939575,0.4841151237487793,0.6261177659034729,-0.6111636757850647,0.061525315046310425,-0.87005215883255,-0.48905912041664124,0.40281379222869873,-0.8944364786148071,-0.19418928027153015,0.6765953302383423,0.5595263242721558,-0.47862178087234497,-0.4352549910545349,-0.4044618010520935,0.8043153285980225,-0.5531479716300964,-0.36875516176223755,0.7470015287399292,-0.09323404729366302,0.7931150197982788,0.6018555164337158,-0.2853785753250122,0.8489333987236023,0.4448072612285614,0.3192541301250458,0.5662099123001099,-0.7598803639411926,-0.18713949620723724,-0.8555864095687866,-0.4826197028160095,-0.056703388690948486,-0.4931180775165558,0.8680989742279053,0.3153172433376312,0.7059236168861389,0.634174644947052,0.616351842880249,0.34553056955337524,-0.7075716257095337,0.3325296640396118,-0.7444685101509094,-0.5789055824279785,0.6012451648712158,-0.65166175365448,0.46241647005081177,0.8646199107170105,0.3874630033969879,0.3197729289531708,0.5793328881263733,-0.6671956777572632,-0.4681539237499237,0.6714072227478027,-0.6301767230033875,-0.3899044692516327,0.6775414347648621,-0.5014801621437073,-0.5379802584648132,0.6767174005508423,-0.6220587491989136,-0.39374980330467224,0.7519455552101135,-0.4043092131614685,-0.520645797252655,0.7461165189743042,-0.34388256072998047,-0.5700857639312744,0.5020599961280823,-0.5436872243881226,-0.6725363731384277,0.6114993691444397,-0.5887325406074524,-0.5285806059837341,0.48814356327056885,-0.6245613098144531,-0.6096072196960449,0.5054475665092468,-0.29560229182243347,-0.8106326460838318,0.6290169954299927,-0.747215211391449,-0.2143925279378891,0.0953093022108078,0.11624500155448914,0.9886165857315063,-0.034577470272779465,-0.33896908164024353,0.940153181552887,0.1823175698518753,-0.7810602188110352,0.5972167253494263,0.5931577682495117,-0.7751091122627258,0.21756646037101746,0.7888424396514893,-0.6133304834365845,0.03878902643918991,0.939207136631012,-0.3231299817562103,0.11581774055957794,0.9659413695335388,0.2056337147951126,0.15698722004890442,0.6808374524116516,0.3409527838230133,0.6481826305389404,0.5428937673568726,-0.6996062994003296,-0.46452224254608154,-0.1502731442451477,0.8474379777908325,0.5091403126716614,-0.6656697392463684,0.40156254172325134,0.6289559602737427,-0.17279580235481262,0.02929776906967163,0.9844965934753418,0.04544205963611603,0.3797418177127838,0.9239478707313538,-0.8461561799049377,-0.2220221608877182,0.4844202995300293,-0.11481063067913055,-0.39362773299217224,0.9120456576347351,-0.6794641017913818,-0.6934110522270203,0.23975341022014618,-0.10025330632925034,-0.5957823395729065,0.7968382835388184,-0.3415631651878357,-0.939848005771637,-0.0001831110566854477,-0.16104617714881897,-0.7419965267181396,0.6507156491279602,-0.44773703813552856,-0.5862910747528076,0.6750999689102173,-0.9001434445381165,-0.2627338469028473,0.34736168384552,-0.7705007791519165,0.36838892102241516,0.5201574563980103,-0.2794885039329529,-0.17734305560588837,0.9436017870903015,-0.3640858232975006,-0.7402874827384949,-0.5651417374610901,-0.35285499691963196,-0.9030426740646362,-0.2448805272579193,-0.7216101288795471,-0.6852931380271912,-0.09799493104219437,-0.7151097059249878,-0.6813562512397766,0.15594957768917084,-0.8788415193557739,-0.20975372195243835,0.4284798800945282,-0.7390972375869751,0.3963133692741394,0.5446028113365173,0.21069979667663574,0.9307840466499329,0.29862362146377563,-0.2859889566898346,0.8565630316734314,0.4294869899749756,-0.19421979784965515,0.9029511213302612,0.383281946182251,0.3552659749984741,0.9332560300827026,-0.052766501903533936,-0.36030152440071106,0.6308786273002625,0.6870937347412109,0.001037629321217537,0.8773766160011292,0.47975096106529236,0.12375255674123764,0.9529709815979004,0.2765892446041107,0.1900997906923294,0.9341105222702026,0.3020721971988678,-0.2704245150089264,-0.29035308957099915,0.9178746938705444,0.8531449437141418,-0.17654958367347717,0.490829199552536,0.6234320998191833,-0.4600665271282196,0.6321604251861572,0.2947782874107361,-0.4531388282775879,0.8412732481956482,0.6312143206596375,0.1185949295759201,0.766472339630127,0.3274330794811249,-0.5519577860832214,0.7668691277503967,-0.004425183869898319,-0.31418806314468384,0.9493392705917358,0.3585619628429413,-0.4850917160511017,0.7975401878356934,0.11212500184774399,-0.3240455389022827,0.939359724521637,0.021027252078056335,0.5307168960571289,0.8472548723220825,-0.06411939114332199,-0.2536698579788208,0.965147852897644,0.0553910955786705,0.002929776906967163,0.9984435439109802,0.3404339849948883,0.27536851167678833,0.8990142345428467,-0.3154393136501312,-0.9276711344718933,0.19965209066867828,0.07589953392744064,0.031189916655421257,0.9966124296188354,-0.807672381401062,-0.08886989951133728,0.5828729867935181,-0.395214706659317,0.16898098587989807,0.9028900861740112,-0.6337778568267822,0.36204108595848083,0.6835230588912964,-0.8498489260673523,0.19174779951572418,-0.490859717130661,-0.982909619808197,0.11340677738189697,-0.14477980136871338,-0.8223822712898254,0.5655995607376099,-0.06128116697072983,-0.729941725730896,0.5355998277664185,-0.42460402846336365,-0.9714956879615784,0.012909329496324062,0.23664052784442902,-0.7926877737045288,0.504715085029602,0.3418683409690857,-0.10150456428527832,-0.05481124296784401,0.9933164715766907,-0.5616016387939453,0.23496200144290924,-0.7932981252670288,-0.5130466818809509,0.395367294549942,-0.7618335485458374,-0.45625171065330505,0.8889126181602478,-0.04049806296825409,-0.46308785676956177,0.7922910451889038,-0.3971984088420868,-0.2605060040950775,0.6870021820068359,0.6783043742179871,-0.382488489151001,0.8553117513656616,0.3494064211845398,0.06207464635372162,0.08624530583620071,0.9943235516548157,-0.11328470706939697,0.42484816908836365,0.8981292247772217,-0.3975035846233368,0.5233619213104248,-0.7536851167678833,-0.14096499979496002,0.8805505633354187,-0.4524674117565155,-0.24799340963363647,0.5669118165969849,-0.7855464220046997,0.09866634011268616,0.9591967463493347,0.26487013697624207,-0.02069154940545559,0.9941404461860657,-0.10583819448947906,0.24146243929862976,0.5152745246887207,0.8222907185554504,0.18521682918071747,0.7927182912826538,0.5807366967201233,0.269508957862854,0.1353495866060257,0.9534287452697754,0.5583361387252808,0.8232673406600952,0.10211493074893951,0.4212469756603241,0.8703573942184448,-0.2549211084842682,0.574816107749939,0.4121219515800476,0.7069002389907837,0.6073488593101501,0.670674741268158,0.42576372623443604,0.20764793455600739,0.7842341661453247,-0.5846430659294128,-0.08432263880968094,0.5161290168762207,-0.8523209095001221,0.7193822860717773,0.5447553992271423,-0.430890828371048,0.4375133514404297,0.5283669829368591,-0.7275612354278564,0.9098483324050903,0.3342081904411316,0.2458265870809555,0.8771935105323792,0.47138890624046326,-0.09112826734781265,0.8110598921775818,0.13861507177352905,0.5682546496391296,0.0238959938287735,0.3890499472618103,-0.9208959937095642,0.9880062341690063,-0.12436292320489883,0.09146397560834885,0.9632862210273743,-0.020996734499931335,-0.26761680841445923,0.8666646480560303,-0.21274453401565552,0.4512161612510681,0.47331157326698303,0.1836298704147339,-0.861506998538971,0.03677480295300484,0.2371288239955902,-0.9707632660865784,0.7895748615264893,0.09018219262361526,-0.6069826483726501,0.33561205863952637,-0.17651906609535217,-0.9252907037734985,-0.02142399363219738,0.09082308411598206,-0.9956053495407104,0.764732837677002,-0.5256507992744446,-0.3726004958152771,0.6039307713508606,-0.3890499472618103,-0.695608377456665,0.7357707619667053,-0.5613269209861755,0.3788567781448364,0.8121891021728516,-0.5833002924919128,-0.009155552834272385,0.06680501997470856,-0.4195684790611267,-0.905239999294281,-0.1423688530921936,-0.019592883065342903,-0.9895932078361511,-0.2600482106208801,-0.5004425048828125,-0.82576984167099,-0.26670125126838684,-0.07000946253538132,-0.9612109661102295,-0.6072267889976501,-0.6509292721748352,-0.45554977655410767,-0.5808282494544983,-0.39124730229377747,-0.713797390460968,-0.9016083478927612,-0.3183385729789734,-0.2928251028060913,-0.7954649329185486,-0.1272011399269104,-0.5924558043479919,-0.5594347715377808,0.12265388667583466,-0.8197271823883057,0.4191412031650543,0.1660206913948059,-0.8926053643226624,0.3675343990325928,0.5103915333747864,-0.7773979902267456,0.6482436656951904,0.5422223806381226,-0.5345011949539185,0.7228003740310669,0.08902249485254288,-0.6852626204490662,0.9307535290718079,-0.00827051606029272,-0.365489661693573,0.8514969348907471,0.48908963799476624,-0.18894009292125702,0.08920560032129288,0.20380260050296783,-0.9749137759208679,0.06524857133626938,0.39957883954048157,-0.9143650531768799,0.16840113699436188,0.7748039364814758,-0.6093325614929199,0.36158329248428345,0.8776512742042542,-0.31452375650405884,0.5253761410713196,0.8497268557548523,0.04364147037267685,0.6133610010147095,0.6877956390380859,0.3881649076938629,0.6140934228897095,0.430738240480423,0.6612750887870789,-0.044923245906829834,0.5540635585784912,-0.8312326669692993,-0.027161473408341408,0.9929196834564209,-0.11545152217149734,0.08850367367267609,0.964476466178894,0.24878689646720886,0.3269753158092499,0.1517075151205063,0.9327677488327026,-0.47315895557403564,0.8808252215385437,0.014007995836436749,-0.3808404803276062,0.8419751524925232,0.3821222484111786,0.13888972997665405,0.09622485935688019,0.9855952858924866,-0.7621387243270874,0.49571216106414795,0.41639453172683716,-0.015045625157654285,-0.053529463708400726,0.9984435439109802,-0.9436017870903015,0.0029908139258623123,0.33100375533103943,-0.7593615651130676,-0.09637745469808578,0.6434522271156311,-0.45512253046035767,-0.18466749787330627,0.8710592985153198,-0.08615375310182571,-0.24353770911693573,0.9660329222679138,-0.6063112020492554,0.03582873195409775,-0.7943968176841736,-0.807855486869812,-0.17792290449142456,-0.5618457794189453,-0.8994414806365967,-0.3796502649784088,-0.21640674769878387,-0.8492690920829773,-0.5085604190826416,0.14175847172737122,-0.6816309094429016,-0.5616931915283203,0.4688558578491211,-0.3966490626335144,-0.538102388381958,0.7436750531196594,-0.04916531965136528,-0.4376354217529297,0.8977630138397217,-0.38468581438064575,-0.8887295126914978,0.24921414256095886,-0.16901150345802307,-0.8005005121231079,0.574968695640564,-0.5813776254653931,-0.4276863932609558,-0.6921292543411255,-0.5951414704322815,-0.6964018940925598,-0.40095219016075134,-0.5255897641181946,-0.8469496965408325,-0.08014160394668579,0.07358012348413467,-0.5849177241325378,0.807733416557312,-0.4824365973472595,-0.10385448485612869,-0.869716465473175,-0.2641682028770447,-0.5081636905670166,-0.8197271823883057,-0.19351786375045776,-0.7962889671325684,-0.5731070637702942,-0.09015167504549026,-0.9597460627555847,-0.26596879959106445,0.029572434723377228,-0.9973143935203552,0.06692709028720856,0.1509140282869339,-0.8936430215835571,0.42258980870246887,0.24796289205551147,-0.6383251547813416,0.7287209630012512,-0.2927335500717163,-0.15588854253292084,-0.9433881640434265,0.5012360215187073,-0.8015686273574829,0.3258766531944275,0.4512466788291931,-0.5854365825653076,0.6734824776649475,-0.1032746359705925,-0.09851375222206116,-0.9897457957267761,0.05258339270949364,-0.40736106038093567,-0.9117099642753601,0.2210455685853958,-0.6738181710243225,-0.7050080895423889,0.36921292543411255,-0.8405712842941284,-0.3963438868522644,0.4672994017601013,-0.8829004764556885,-0.04547257721424103,0.02844325080513954,0.032929472625255585,-0.9990233778953552,0.29847103357315063,-0.15628528594970703,-0.9415265321731567,0.5630359649658203,-0.34623250365257263,-0.7503890991210938,0.7516098618507385,-0.4920499324798584,-0.43919187784194946,0.826288640499115,-0.5592821836471558,-0.06631672382354736,-0.43928343057632446,-0.00238044373691082,-0.8983123302459717,-0.28299814462661743,0.25751519203186035,-0.9238868355751038,-0.9545884728431702,0.06863612681627274,-0.28983429074287415,-0.9875179529190063,-0.08282723277807236,-0.13382366299629211,0.047242652624845505,-0.9979552626609802,0.042481765151023865,-0.11343730241060257,-0.9766228199005127,0.1824701726436615,-0.05804620683193207,0.9712820649147034,-0.2306588888168335,0.0797753855586052,0.9965819120407104,-0.020447401329874992,0.9618518352508545,0.09884945303201675,0.2550126612186432,0.9881588220596313,-0.07629626989364624,0.13303017616271973,-0.9946287274360657,0.05142368748784065,0.08951079100370407,-0.8939481973648071,0.02459791861474514,0.44743186235427856,0.14731284976005554,-0.9888607263565063,0.020966216921806335,0.03479110077023506,-0.9983519911766052,-0.044953763484954834,0.038636431097984314,0.9985045790672302,0.038453321903944016,0.0874965637922287,0.9870296120643616,-0.1345255970954895,0.9952086210250854,0.04376354068517685,-0.0874050110578537,0.8912625312805176,-0.0006714072078466415,-0.4534440040588379,-0.7020477652549744,-0.08523819595575333,0.7069917917251587,-0.08651997148990631,-0.9928586483001709,-0.08191168308258057,0.10110782086849213,0.9931638240814209,0.058259833604097366,0.6863917708396912,-0.10757774859666824,-0.7191991806030273,-0.6854762434959412,0.015381328761577606,0.7278969883918762,-0.8012024164199829,-0.15634632110595703,0.5775933265686035,-0.5410016179084778,-0.65257728099823,-0.5304727554321289,-0.2295907437801361,-0.9518417716026306,-0.20313119888305664,0.2223273366689682,0.9511703848838806,0.2140568196773529,0.5230567455291748,0.6760460138320923,0.5189672708511353,0.6838282346725464,0.009704886004328728,-0.729544997215271,0.5689870715141296,-0.17117832601070404,-0.8043153285980225,-0.8002563714981079,0.1189306303858757,0.5876949429512024,-0.6983550786972046,0.14123965799808502,-0.7016510367393494,0.6388744711875916,-0.1267738938331604,0.7587511539459229,0.6093630790710449,-0.08880886435508728,-0.7878658175468445,-0.6095767021179199,0.38373973965644836,0.6936246752738953,-0.5977050065994263,0.4693136513233185,-0.6499527096748352,0.4983977675437927,-0.40150150656700134,0.7683339715003967,0.5952330231666565,-0.36976227164268494,-0.713400661945343,-0.221716970205307,0.6660969853401184,0.712118923664093,-0.8805200457572937,0.06002990901470184,-0.4701376259326935,0.8156377077102661,0.07571642100811005,0.573534369468689,0.6292306184768677,-0.6388744711875916,-0.4425794184207916,-0.035248879343271255,0.887447714805603,0.4594866633415222,-0.8774376511573792,-0.442915141582489,-0.18405713140964508,0.9251381158828735,0.35956907272338867,0.12149418890476227,0.7925962209701538,-0.5124973058700562,-0.33027130365371704,0.7204199433326721,0.44758445024490356,0.5297402739524841,0.7074495553970337,0.41697439551353455,0.5706045627593994,0.04370250552892685,-0.8209478855133057,0.5692922472953796,0.06103701889514923,-0.8065126538276672,0.5880306363105774,-0.7228614091873169,-0.3960081934928894,-0.5662099123001099,-0.36964017152786255,-0.7900631427764893,-0.48899808526039124,0.3019806444644928,0.5451521277427673,0.7820367813110352,-0.20502334833145142,0.9538865089416504,0.21918393671512604,-0.6046632528305054,-0.16055788099765778,0.7801141142845154,-0.28064820170402527,-0.48051393032073975,0.8308358788490295,0.1419721096754074,0.7965636253356934,-0.5876339077949524,-0.29905086755752563,0.057496871799230576,-0.9524827003479004,-0.86968594789505,0.3965269923210144,-0.2938932478427887,0.37690359354019165,0.9249550104141235,-0.04837183654308319,0.521134078502655,0.8310189843177795,-0.19434186816215515,-0.16574601829051971,-0.9697867035865784,-0.17893001437187195,-0.7162694334983826,-0.491500586271286,0.49531540274620056,0.4919888973236084,0.8511612415313721,0.1828058660030365,0.616718053817749,0.7861262559890747,-0.040162358433008194,0.5190588235855103,-0.8382213711738586,0.1670888364315033,-0.3796807825565338,-0.4347971975803375,0.8165532350540161,-0.03521835803985596,0.8216193318367004,-0.5688955187797546,-0.24903103709220886,-0.4504226744174957,-0.8573564887046814,-0.21976378560066223,-0.5506454706192017,-0.8052613735198975,0.45808282494544983,-0.8843348622322083,0.08990752696990967,-0.9671010375022888,-0.20166631042957306,0.15488143265247345,-0.2714621424674988,-0.4824060797691345,0.8327890634536743,0.9920957088470459,0.10919522494077682,0.061433758586645126,0.28019043803215027,0.5364848971366882,0.7960143089294434,-0.9961851835250854,-0.0869777500629425,0.006714072078466415,0.3324686288833618,0.4511551260948181,-0.8281807899475098,-0.461195707321167,0.886989951133728,-0.022034363821148872,0.036072880029678345,-0.8171025514602661,0.5753044486045837,0.7376018762588501,0.40009766817092896,0.5439008474349976,-0.8552812337875366,-0.5139011740684509,-0.06601153314113617,0.9659413695335388,0.16818749904632568,0.19647815823554993,0.42445144057273865,-0.8814966082572937,0.2068239450454712,0.5404217839241028,-0.809411883354187,-0.2297128140926361,0.6892910599708557,0.44776755571365356,-0.5695059299468994,-0.07306130975484848,-0.05691701918840408,-0.9956969022750854,-0.7827387452125549,0.33060702681541443,-0.5272072553634644,-0.05719168484210968,0.9093295335769653,-0.4121219515800476,0.3403118848800659,0.939756453037262,0.031464584171772,0.43977171182632446,0.8974577784538269,-0.033692434430122375,0.11645863205194473,-0.964262843132019,-0.2379222959280014,-0.6829432249069214,-0.6755272150039673,0.2779320776462555,0.5280922651290894,0.8469191789627075,0.061433758586645126,0.6006653308868408,-0.616901159286499,0.5085299015045166,-0.4586626887321472,-0.35203099250793457,0.8158818483352661,0.4266182482242584,0.8926969170570374,0.14517654478549957,-0.3747367858886719,-0.40717795491218567,0.8328806161880493,-0.9855647683143616,-0.10968352109193802,-0.12884914875030518,-0.9919126033782959,0.06518753618001938,0.10885952413082123,0.09295938163995743,-0.22528763115406036,-0.9698172211647034,0.4348887503147125,-0.8751792907714844,0.21192052960395813,0.9719535112380981,0.14423047006130219,0.18564409017562866,0.1583910584449768,0.5824152231216431,0.7972960472106934,-0.0872829407453537,-0.5929136276245117,-0.8005005121231079,0.4387035667896271,0.37794122099876404,-0.8152714371681213,-0.4362621009349823,0.887295126914978,-0.14941862225532532],
"faces": [43,47,46,45,44,0,0,1,2,3,0,0,0,0,0,1,2,3,43,36,37,38,39,0,4,4,4,4,0,0,0,0,4,5,6,7,42,107,117,106,0,5,6,7,0,0,0,8,9,10,42,117,118,106,0,6,8,7,0,0,0,9,11,10,42,118,112,106,0,8,9,7,0,0,0,11,12,10,42,124,120,123,0,10,11,12,0,0,0,13,14,15,43,23,22,21,20,0,13,14,15,16,0,0,0,0,16,17,18,19,43,11,10,9,8,0,17,18,19,20,0,0,0,0,20,21,22,23,43,63,62,61,60,0,21,22,23,24,0,0,0,0,24,25,26,27,43,75,74,73,72,0,25,26,27,28,0,0,0,0,28,29,30,31,43,95,94,93,92,0,29,30,31,32,0,0,0,0,32,33,34,35,43,1,2,135,134,0,33,34,35,36,0,0,0,0,36,37,38,39,43,2,3,136,135,0,34,37,38,35,0,0,0,0,37,40,41,38,43,5,6,2,1,0,39,40,34,33,0,0,0,0,42,43,37,36,43,6,7,3,2,0,40,41,37,34,0,0,0,0,43,44,40,37,43,0,3,7,4,0,44,45,42,43,0,0,0,0,45,40,44,46,43,101,102,97,96,0,46,47,48,49,0,0,0,0,47,48,49,50,43,102,103,98,97,0,47,50,51,48,0,0,0,0,48,51,52,49,43,103,104,99,98,0,50,52,53,51,0,0,0,0,51,53,54,52,43,104,101,96,99,0,43,43,54,43,0,0,0,0,53,47,50,54,43,102,9,10,103,0,47,19,18,50,0,0,0,0,48,22,21,51,43,103,10,11,104,0,50,18,55,52,0,0,0,0,51,21,20,53,43,104,11,8,101,0,43,43,43,43,0,0,0,0,53,20,23,47,43,101,8,9,102,0,46,56,19,47,0,0,0,0,47,23,22,48,43,14,106,134,13,0,57,58,36,59,0,0,0,0,55,10,39,56,43,15,107,106,14,0,60,61,62,63,0,0,0,0,57,8,10,55,43,12,105,107,15,0,64,65,61,60,0,0,0,0,58,59,8,57,43,69,70,66,65,0,66,67,68,69,0,0,0,0,60,61,62,63,43,17,13,12,16,0,70,59,64,71,0,0,0,0,64,56,58,65,43,18,14,13,17,0,72,57,59,70,0,0,0,0,66,55,56,64,43,19,15,14,18,0,73,60,63,74,0,0,0,0,67,57,55,66,43,16,12,15,19,0,71,64,60,73,0,0,0,0,65,58,57,67,43,21,109,108,20,0,15,75,76,77,0,0,0,0,18,68,69,19,43,22,110,109,21,0,14,78,75,15,0,0,0,0,17,70,68,18,43,23,111,110,22,0,79,80,81,82,0,0,0,0,16,71,70,17,43,20,108,111,23,0,77,76,80,79,0,0,0,0,19,69,71,16,43,110,18,17,109,0,78,72,70,75,0,0,0,0,70,66,64,68,43,111,19,18,110,0,80,73,74,81,0,0,0,0,71,67,66,70,43,108,16,19,111,0,76,71,73,80,0,0,0,0,69,65,67,71,43,24,25,114,113,0,83,84,85,86,0,0,0,0,72,73,74,75,43,25,26,115,114,0,84,87,88,85,0,0,0,0,73,76,77,74,43,26,27,116,115,0,87,89,90,88,0,0,0,0,76,78,79,77,43,27,24,113,116,0,89,91,92,90,0,0,0,0,78,72,75,79,43,115,30,29,114,0,88,93,94,85,0,0,0,0,77,80,81,74,43,116,31,30,115,0,90,95,93,88,0,0,0,0,79,82,80,77,43,113,28,31,116,0,92,96,95,90,0,0,0,0,75,83,82,79,43,30,34,33,29,0,93,97,98,94,0,0,0,0,80,84,85,81,43,31,35,34,30,0,95,97,97,93,0,0,0,0,82,86,84,80,43,28,32,35,31,0,96,99,97,95,0,0,0,0,83,87,86,82,43,114,29,28,113,0,85,94,100,86,0,0,0,0,74,81,83,75,43,29,33,32,28,0,94,98,101,100,0,0,0,0,81,85,87,83,43,33,37,36,32,0,98,4,4,101,0,0,0,0,85,5,4,87,43,34,38,37,33,0,97,4,4,98,0,0,0,0,84,6,5,85,43,35,39,38,34,0,97,4,4,97,0,0,0,0,86,7,6,84,43,32,36,39,35,0,99,4,4,97,0,0,0,0,87,4,7,86,43,40,41,122,121,0,102,103,104,105,0,0,0,0,88,89,90,91,43,41,42,123,122,0,103,106,107,104,0,0,0,0,89,92,15,90,43,42,43,124,123,0,108,109,10,12,0,0,0,0,92,93,13,15,43,43,40,121,124,0,109,110,111,10,0,0,0,0,93,88,91,13,43,41,40,44,45,0,103,102,112,2,0,0,0,0,89,88,3,2,43,42,41,45,46,0,106,103,2,1,0,0,0,0,92,89,2,1,43,43,42,46,47,0,109,108,113,114,0,0,0,0,93,92,1,0,43,40,43,47,44,0,110,109,114,115,0,0,0,0,88,93,0,3,43,53,54,50,49,0,116,117,118,119,0,0,0,0,94,95,96,97,43,54,55,51,50,0,117,120,121,118,0,0,0,0,95,98,99,96,43,55,52,48,51,0,122,123,124,125,0,0,0,0,98,100,101,99,43,125,126,53,52,0,126,127,128,123,0,0,0,0,102,103,94,100,43,126,127,54,53,0,129,130,117,116,0,0,0,0,103,104,95,94,43,127,128,55,54,0,130,131,120,117,0,0,0,0,104,105,98,95,43,128,125,52,55,0,132,126,123,122,0,0,0,0,105,102,100,98,43,61,62,58,57,0,23,22,133,134,0,0,0,0,26,25,106,107,43,127,126,57,58,0,130,129,134,133,0,0,0,0,104,103,107,106,43,128,127,58,59,0,131,130,133,135,0,0,0,0,105,104,106,108,43,125,128,59,56,0,126,132,136,137,0,0,0,0,102,105,108,109,43,62,63,59,58,0,22,138,135,133,0,0,0,0,25,24,108,106,43,63,60,56,59,0,139,140,137,136,0,0,0,0,24,27,109,108,43,126,125,56,57,0,127,126,137,141,0,0,0,0,103,102,109,107,43,66,67,139,140,0,142,143,144,145,0,0,0,0,62,110,111,112,43,70,71,67,66,0,146,147,143,142,0,0,0,0,61,113,110,62,43,71,68,64,67,0,147,148,149,143,0,0,0,0,113,114,115,110,43,69,68,72,73,0,66,148,28,27,0,0,0,0,60,114,31,30,43,70,69,73,74,0,67,66,27,26,0,0,0,0,61,60,30,29,43,71,70,74,75,0,147,146,26,25,0,0,0,0,113,61,29,28,43,68,71,75,72,0,148,147,25,28,0,0,0,0,114,113,28,31,43,84,85,81,80,0,150,151,152,153,0,0,0,0,116,117,118,119,43,79,76,142,141,0,154,155,156,157,0,0,0,0,120,121,122,123,43,130,131,77,76,0,158,159,160,161,0,0,0,0,124,125,126,121,43,131,132,78,77,0,162,163,164,165,0,0,0,0,125,127,128,126,43,132,133,79,78,0,163,166,167,164,0,0,0,0,127,129,120,128,43,133,130,76,79,0,168,169,155,154,0,0,0,0,129,124,121,120,43,80,81,131,130,0,153,152,159,158,0,0,0,0,119,118,125,124,43,81,82,132,131,0,170,171,163,162,0,0,0,0,118,130,127,125,43,82,83,133,132,0,171,172,166,163,0,0,0,0,130,131,129,127,43,83,80,130,133,0,173,174,169,168,0,0,0,0,131,119,124,129,43,85,86,82,81,0,175,176,171,170,0,0,0,0,117,132,130,118,43,86,87,83,82,0,176,177,172,171,0,0,0,0,132,133,131,130,43,87,84,80,83,0,178,179,174,173,0,0,0,0,133,116,119,131,43,85,84,88,89,0,151,150,180,181,0,0,0,0,117,116,134,135,43,86,85,89,90,0,176,175,182,183,0,0,0,0,132,117,135,136,43,87,86,90,91,0,177,176,183,184,0,0,0,0,133,132,136,137,43,84,87,91,88,0,179,178,185,186,0,0,0,0,116,133,137,134,43,60,61,57,56,0,140,187,141,137,0,0,0,0,27,26,107,109,43,89,88,92,93,0,181,180,188,189,0,0,0,0,135,134,35,34,43,90,89,93,94,0,183,182,190,191,0,0,0,0,136,135,34,33,43,91,90,94,95,0,184,183,191,192,0,0,0,0,137,136,33,32,43,88,91,95,92,0,186,185,193,194,0,0,0,0,134,137,32,35,43,97,98,6,5,0,48,51,40,39,0,0,0,0,49,52,43,42,43,98,99,7,6,0,51,53,41,40,0,0,0,0,52,54,44,43,43,99,96,4,7,0,43,54,43,42,0,0,0,0,54,50,46,44,43,96,97,5,4,0,49,48,39,195,0,0,0,0,50,49,42,46,43,52,53,49,48,0,123,128,196,124,0,0,0,0,100,94,97,101,42,118,134,112,0,8,197,9,0,0,0,11,39,12,42,105,135,136,0,198,35,38,0,0,0,59,38,41,42,134,105,100,0,199,200,201,0,0,0,39,59,138,42,136,117,107,0,202,6,5,0,0,0,41,9,8,42,136,100,117,0,202,203,6,0,0,0,41,138,9,42,135,106,134,0,35,58,36,0,0,0,38,10,39,42,140,120,124,0,145,11,10,0,0,0,112,14,13,42,106,112,135,0,7,9,204,0,0,0,10,12,38,42,107,106,135,0,205,206,207,0,0,0,8,10,38,42,139,141,137,0,144,208,209,0,0,0,111,123,139,42,129,142,141,0,210,211,212,0,0,0,140,122,123,42,120,119,123,0,11,213,12,0,0,0,14,141,15,43,123,119,142,137,0,12,213,214,209,0,0,0,0,15,141,122,139,42,138,121,122,0,215,216,217,0,0,0,142,91,90,42,137,141,123,0,218,219,220,0,0,0,139,123,15,42,141,142,123,0,219,221,220,0,0,0,123,122,15,43,105,107,106,135,0,222,223,224,225,0,0,0,0,59,8,10,38,42,142,122,123,0,226,104,107,0,0,0,122,90,15,42,129,142,138,0,227,228,229,0,0,0,140,122,142,43,139,137,120,140,0,144,209,11,145,0,0,0,0,111,139,14,112,43,129,138,122,142,0,227,229,104,226,0,0,0,0,140,142,90,122,43,105,136,107,135,0,230,231,232,233,0,0,0,0,59,41,8,38,42,138,121,140,0,215,216,234,0,0,0,142,91,112,42,121,122,124,0,111,235,10,0,0,0,91,90,13,43,0,1,134,100,0,236,33,36,237,0,0,0,0,45,36,39,138,43,3,0,100,136,0,45,44,203,202,0,0,0,0,40,45,138,41,43,112,134,25,24,0,9,197,84,83,0,0,0,0,12,39,73,72,43,134,105,26,25,0,197,238,87,84,0,0,0,0,39,59,76,73,43,105,135,27,26,0,238,204,89,87,0,0,0,0,59,38,78,76,43,135,112,24,27,0,204,9,91,89,0,0,0,0,38,12,72,78,43,142,119,100,134,0,214,213,203,197,0,0,0,0,122,141,138,39,43,119,120,117,100,0,213,11,6,203,0,0,0,0,141,14,9,138,43,120,137,118,117,0,11,209,8,6,0,0,0,0,14,139,11,9,43,137,142,134,118,0,209,214,197,8,0,0,0,0,139,122,39,11,43,48,49,122,138,0,124,196,239,215,0,0,0,0,101,97,90,142,43,49,50,124,122,0,119,118,10,235,0,0,0,0,97,96,13,90,43,50,51,140,124,0,118,121,145,10,0,0,0,0,96,99,112,13,43,51,48,138,140,0,125,124,215,234,0,0,0,0,99,101,142,112,43,65,66,140,121,0,69,68,234,216,0,0,0,0,63,62,112,91,43,76,77,138,142,0,161,160,229,228,0,0,0,0,121,126,142,122,43,77,78,139,138,0,165,164,144,240,0,0,0,0,126,128,111,142,43,78,79,141,139,0,164,167,208,144,0,0,0,0,128,120,123,111,43,1,0,4,5,0,33,236,195,39,0,0,0,0,36,45,46,42,43,109,17,16,108,0,75,70,71,76,0,0,0,0,68,64,65,69,43,13,134,105,12,0,59,36,65,64,0,0,0,0,56,39,59,58,43,68,69,65,64,0,148,66,69,149,0,0,0,0,114,60,63,115,42,155,159,160,0,241,242,243,0,0,0,143,144,145,42,160,159,164,0,243,242,244,0,0,0,145,144,146,42,164,159,169,0,245,242,246,0,0,0,146,144,147,42,169,159,173,0,246,242,247,0,0,0,147,144,148,43,208,207,213,214,0,248,249,250,251,0,0,0,0,149,150,151,152,43,209,208,214,215,0,252,248,251,253,0,0,0,0,153,149,152,154,43,207,206,212,213,0,249,254,255,250,0,0,0,0,150,155,156,151,43,212,211,217,218,0,256,257,258,259,0,0,0,0,156,157,158,159,43,213,212,218,219,0,250,255,260,261,0,0,0,0,151,156,159,160,43,214,213,219,220,0,251,250,261,262,0,0,0,0,152,151,160,161,43,219,218,222,223,0,261,260,263,264,0,0,0,0,160,159,162,163,43,220,219,223,224,0,262,261,264,265,0,0,0,0,161,160,163,164,43,218,217,221,222,0,259,258,266,267,0,0,0,0,159,158,165,162,43,222,221,179,180,0,267,266,268,269,0,0,0,0,162,165,166,167,43,229,228,227,230,0,270,271,272,273,0,0,0,0,168,169,170,171,43,966,763,770,1464,0,274,275,276,277,0,0,0,0,172,173,174,175,43,233,265,335,232,0,278,279,280,281,0,0,0,0,176,177,178,179,43,238,237,234,235,0,282,283,284,285,0,0,0,0,180,181,182,183,43,241,240,239,242,0,286,287,288,289,0,0,0,0,184,185,186,187,43,243,240,241,228,0,290,287,286,291,0,0,0,0,188,185,184,169,43,229,244,243,228,0,270,292,293,271,0,0,0,0,168,189,188,169,43,241,242,227,228,0,286,289,294,291,0,0,0,0,184,187,170,169,43,230,227,869,870,0,273,272,295,296,0,0,0,0,171,170,190,191,43,239,236,867,866,0,288,297,298,299,0,0,0,0,186,192,193,194,43,242,239,866,868,0,289,288,299,300,0,0,0,0,187,186,194,195,43,237,232,231,234,0,283,301,302,284,0,0,0,0,181,179,196,182,43,245,233,232,237,0,303,278,281,304,0,0,0,0,197,176,179,181,43,227,242,868,869,0,294,289,300,305,0,0,0,0,170,187,195,190,43,240,235,236,239,0,287,285,297,288,0,0,0,0,185,183,192,186,43,243,238,235,240,0,290,282,285,287,0,0,0,0,188,180,183,185,43,871,867,236,247,0,306,298,297,307,0,0,0,0,198,193,192,199,43,246,238,243,244,0,308,309,293,292,0,0,0,0,200,180,188,189,43,238,246,245,237,0,309,308,303,304,0,0,0,0,180,200,197,181,43,232,335,334,231,0,301,310,311,302,0,0,0,0,179,178,201,196,43,247,236,235,234,0,307,297,285,284,0,0,0,0,199,192,183,182,43,898,974,773,774,0,312,313,314,315,0,0,0,0,202,203,204,205,43,248,247,234,231,0,316,307,284,302,0,0,0,0,206,199,182,196,43,765,764,895,894,0,317,318,319,320,0,0,0,0,207,208,209,210,43,1456,898,774,753,0,321,312,315,322,0,0,0,0,211,202,205,212,43,311,773,778,760,0,323,314,324,325,0,0,0,0,213,204,214,215,43,310,338,262,281,0,326,327,328,329,0,0,0,0,216,217,218,219,42,283,263,258,0,330,331,332,0,0,0,220,221,222,43,307,261,263,308,0,333,334,331,335,0,0,0,0,223,224,221,225,43,316,261,307,314,0,336,334,333,337,0,0,0,0,226,224,223,227,42,263,261,258,0,331,334,332,0,0,0,221,224,222,43,767,766,897,896,0,338,339,340,341,0,0,0,0,228,229,230,231,43,765,766,264,315,0,317,339,342,343,0,0,0,0,207,229,232,233,43,259,320,321,322,0,344,345,346,347,0,0,0,0,234,235,236,237,43,767,768,334,260,0,338,348,349,350,0,0,0,0,228,238,201,239,43,902,266,265,993,0,351,352,353,354,0,0,0,0,240,241,177,242,43,334,335,267,260,0,349,355,356,350,0,0,0,0,201,178,243,239,43,270,271,268,269,0,357,358,359,360,0,0,0,0,244,245,246,247,43,273,270,269,272,0,361,357,360,362,0,0,0,0,248,244,247,249,43,324,325,264,260,0,363,364,342,350,0,0,0,0,250,251,232,239,43,276,277,274,275,0,365,366,367,368,0,0,0,0,252,253,254,255,43,271,276,275,268,0,358,369,370,359,0,0,0,0,245,252,255,246,43,323,324,260,267,0,371,363,350,356,0,0,0,0,256,250,239,243,43,322,323,267,259,0,347,372,373,344,0,0,0,0,237,256,243,234,43,280,281,278,279,0,374,329,375,376,0,0,0,0,257,219,258,259,43,277,280,279,274,0,366,374,376,367,0,0,0,0,253,257,259,254,43,283,273,272,282,0,330,361,362,377,0,0,0,0,220,248,249,260,43,278,281,283,282,0,375,329,378,379,0,0,0,0,258,219,220,260,42,273,283,258,0,361,330,332,0,0,0,248,220,222,43,286,272,269,285,0,380,381,382,383,0,0,0,0,261,249,247,262,43,288,275,274,287,0,384,385,386,387,0,0,0,0,263,255,254,264,43,284,268,275,288,0,388,389,385,384,0,0,0,0,265,246,255,263,43,290,279,278,289,0,390,391,392,393,0,0,0,0,266,259,258,267,43,287,274,279,290,0,387,386,391,390,0,0,0,0,264,254,259,266,43,291,282,272,286,0,394,395,381,380,0,0,0,0,268,260,249,261,43,289,278,282,291,0,393,392,396,397,0,0,0,0,267,258,260,268,43,328,329,294,295,0,398,399,400,401,0,0,0,0,269,270,271,272,43,330,294,329,293,0,402,400,399,403,0,0,0,0,273,271,270,274,43,295,294,285,284,0,401,400,383,388,0,0,0,0,272,271,262,265,43,326,297,288,287,0,404,405,384,387,0,0,0,0,275,276,263,264,43,327,328,295,297,0,406,398,401,405,0,0,0,0,277,269,272,276,43,297,295,284,288,0,405,401,388,384,0,0,0,0,276,272,265,263,43,332,333,290,289,0,407,408,390,393,0,0,0,0,278,279,266,267,43,290,333,326,287,0,390,408,404,387,0,0,0,0,266,279,275,264,43,286,330,331,291,0,380,402,409,394,0,0,0,0,261,273,280,268,43,291,331,332,289,0,397,410,407,393,0,0,0,0,268,280,278,267,43,302,298,292,296,0,411,412,413,414,0,0,0,0,281,282,283,284,43,330,293,299,300,0,402,403,415,416,0,0,0,0,273,274,285,286,43,296,326,301,302,0,414,404,417,411,0,0,0,0,284,275,287,281,43,333,332,303,304,0,408,407,418,419,0,0,0,0,279,278,288,289,43,301,326,333,304,0,417,404,408,419,0,0,0,0,287,275,279,289,43,331,330,300,305,0,409,402,416,420,0,0,0,0,280,273,286,290,43,303,332,331,305,0,418,407,410,421,0,0,0,0,288,278,280,290,43,252,253,299,298,0,422,423,415,412,0,0,0,0,291,292,285,282,43,253,254,300,299,0,423,424,416,415,0,0,0,0,292,293,286,285,43,250,251,302,301,0,425,426,411,417,0,0,0,0,294,295,281,287,43,251,252,298,302,0,426,422,412,411,0,0,0,0,295,291,282,281,43,256,257,304,303,0,427,428,419,418,0,0,0,0,296,297,289,288,43,257,250,301,304,0,428,425,417,419,0,0,0,0,297,294,287,289,43,300,254,255,305,0,416,424,429,420,0,0,0,0,286,293,298,290,43,255,256,303,305,0,430,427,418,421,0,0,0,0,298,296,288,290,43,306,262,318,317,0,431,328,432,433,0,0,0,0,299,218,300,301,43,308,263,262,306,0,434,435,328,431,0,0,0,0,225,221,218,299,43,306,309,313,308,0,431,436,437,434,0,0,0,0,299,302,303,225,43,308,313,249,307,0,335,438,439,333,0,0,0,0,225,303,304,223,43,311,309,306,317,0,323,436,431,433,0,0,0,0,213,302,299,301,43,763,769,314,312,0,275,440,337,441,0,0,0,0,173,305,227,306,43,321,320,319,310,0,346,345,442,326,0,0,0,0,236,235,307,216,43,264,325,258,315,0,342,364,332,343,0,0,0,0,232,251,222,233,43,258,261,316,315,0,332,334,336,343,0,0,0,0,222,224,226,233,43,774,773,311,317,0,315,314,323,433,0,0,0,0,205,204,213,301,43,966,899,769,763,0,274,443,440,275,0,0,0,0,172,308,305,173,43,317,318,753,774,0,433,432,322,315,0,0,0,0,301,300,212,205,43,337,336,904,903,0,444,445,446,447,0,0,0,0,309,310,311,312,43,265,266,320,259,0,353,352,345,344,0,0,0,0,177,241,235,234,43,319,339,338,310,0,442,448,327,326,0,0,0,0,307,313,217,216,43,280,277,322,321,0,374,366,347,346,0,0,0,0,257,253,237,236,43,310,281,280,321,0,326,329,374,346,0,0,0,0,216,219,257,236,43,277,276,323,322,0,366,365,372,347,0,0,0,0,253,252,256,237,43,276,271,324,323,0,369,358,363,371,0,0,0,0,252,245,250,256,43,271,270,325,324,0,358,357,364,363,0,0,0,0,245,244,251,250,43,258,325,270,273,0,332,364,357,361,0,0,0,0,222,251,244,248,43,296,292,328,327,0,414,413,398,406,0,0,0,0,284,283,269,277,43,292,293,329,328,0,413,403,399,398,0,0,0,0,283,274,270,269,43,327,297,326,296,0,406,405,404,414,0,0,0,0,277,276,275,284,43,294,330,286,285,0,400,402,380,383,0,0,0,0,271,273,261,262,43,335,265,259,267,0,449,353,344,373,0,0,0,0,178,177,234,243,43,266,336,319,320,0,352,445,442,345,0,0,0,0,241,310,307,235,43,904,336,266,902,0,446,445,352,351,0,0,0,0,311,310,241,240,43,338,339,318,262,0,327,448,432,328,0,0,0,0,217,313,300,218,43,347,344,346,340,0,450,451,452,453,0,0,0,0,314,315,316,317,43,347,1001,998,344,0,450,454,455,451,0,0,0,0,314,318,319,315,43,341,345,343,342,0,456,457,458,459,0,0,0,0,320,321,322,323,43,346,344,343,345,0,452,451,458,457,0,0,0,0,316,315,322,321,43,343,344,998,999,0,458,451,455,460,0,0,0,0,322,315,319,324,43,1000,342,343,999,0,461,459,458,460,0,0,0,0,325,323,322,324,43,340,346,345,341,0,453,452,457,456,0,0,0,0,317,316,321,320,43,350,349,348,351,0,462,463,464,465,0,0,0,0,326,327,328,329,43,355,353,354,356,0,466,467,468,469,0,0,0,0,330,331,332,333,43,358,356,354,357,0,470,469,468,471,0,0,0,0,334,333,332,335,43,363,362,361,364,0,472,473,474,475,0,0,0,0,336,337,338,339,43,350,366,365,349,0,462,476,477,463,0,0,0,0,326,340,341,327,43,369,368,367,370,0,478,479,480,481,0,0,0,0,342,343,344,345,43,351,348,1012,1013,0,465,464,482,483,0,0,0,0,329,328,346,347,43,431,430,373,372,0,484,485,486,487,0,0,0,0,348,349,350,351,43,374,373,358,375,0,488,489,490,491,0,0,0,0,352,350,334,353,43,378,377,376,379,0,492,493,494,495,0,0,0,0,354,355,356,357,43,366,350,380,381,0,476,462,496,497,0,0,0,0,340,326,358,359,43,375,358,357,359,0,491,490,498,499,0,0,0,0,353,334,335,360,43,382,351,1013,1006,0,500,465,483,501,0,0,0,0,361,329,347,362,43,374,375,383,384,0,488,491,502,503,0,0,0,0,352,353,363,364,43,387,386,385,388,0,504,505,506,507,0,0,0,0,365,366,367,368,43,379,376,389,390,0,495,494,508,509,0,0,0,0,357,356,369,370,43,376,383,391,389,0,494,502,510,508,0,0,0,0,356,363,371,369,43,367,388,385,370,0,480,507,506,481,0,0,0,0,344,368,367,345,43,385,380,382,370,0,506,496,500,481,0,0,0,0,367,358,361,345,43,394,393,392,395,0,511,512,513,514,0,0,0,0,372,373,374,375,43,368,369,396,397,0,479,478,515,516,0,0,0,0,343,342,376,377,43,1002,393,396,1005,0,517,512,515,518,0,0,0,0,378,373,376,379,43,369,429,1019,1003,0,478,519,520,521,0,0,0,0,342,380,381,382,43,392,393,347,398,0,513,512,450,522,0,0,0,0,374,373,314,383,43,381,380,385,386,0,497,496,506,505,0,0,0,0,359,358,367,366,43,384,383,376,377,0,503,502,494,493,0,0,0,0,364,363,356,355,43,381,391,399,366,0,497,510,523,476,0,0,0,0,359,371,384,340,43,382,380,350,351,0,500,496,462,465,0,0,0,0,361,358,326,329,43,394,397,396,393,0,511,516,515,512,0,0,0,0,372,377,376,373,43,374,401,400,373,0,488,524,525,489,0,0,0,0,352,385,386,350,43,373,400,402,372,0,489,525,526,527,0,0,0,0,350,386,387,351,43,402,400,425,426,0,526,525,528,529,0,0,0,0,387,386,388,389,43,425,400,401,424,0,528,525,524,530,0,0,0,0,388,386,385,390,43,423,406,341,422,0,531,532,456,533,0,0,0,0,391,392,320,393,43,422,341,342,428,0,533,456,459,534,0,0,0,0,393,320,323,394,43,402,411,410,372,0,526,535,536,527,0,0,0,0,387,395,396,351,43,414,413,412,404,0,537,538,539,540,0,0,0,0,397,398,399,400,43,415,405,407,416,0,541,542,543,544,0,0,0,0,401,402,403,404,43,406,401,374,384,0,532,524,488,503,0,0,0,0,392,385,352,364,43,341,406,417,340,0,456,532,545,453,0,0,0,0,320,392,405,317,43,406,384,398,417,0,532,503,522,545,0,0,0,0,392,364,383,405,43,395,392,377,378,0,514,513,493,492,0,0,0,0,375,374,355,354,43,377,392,398,384,0,493,513,522,503,0,0,0,0,355,374,383,364,43,417,398,347,340,0,545,522,450,453,0,0,0,0,405,383,314,317,43,418,363,364,419,0,546,472,475,547,0,0,0,0,406,336,339,407,43,387,390,389,386,0,504,509,508,505,0,0,0,0,365,370,369,366,43,386,389,391,381,0,505,508,510,497,0,0,0,0,366,369,371,359,43,399,391,383,375,0,523,510,502,491,0,0,0,0,384,371,363,353,43,360,364,361,359,0,548,475,474,499,0,0,0,0,408,339,338,360,43,359,361,362,375,0,499,474,473,491,0,0,0,0,360,338,337,353,43,375,362,363,399,0,491,473,472,523,0,0,0,0,353,337,336,384,43,399,363,418,366,0,523,472,546,476,0,0,0,0,384,336,406,340,43,366,418,419,365,0,476,546,547,477,0,0,0,0,340,406,407,341,43,365,419,364,360,0,477,547,475,548,0,0,0,0,341,407,339,408,43,404,403,421,414,0,540,549,550,537,0,0,0,0,400,409,410,397,43,421,403,405,415,0,550,549,542,541,0,0,0,0,410,409,402,401,43,416,407,408,420,0,544,543,551,552,0,0,0,0,404,403,411,412,43,408,1004,1014,420,0,551,553,554,552,0,0,0,0,411,413,414,412,43,426,427,411,402,0,529,555,535,526,0,0,0,0,389,415,395,387,43,406,423,424,401,0,532,531,530,524,0,0,0,0,392,391,390,385,43,410,1008,1010,409,0,556,557,558,559,0,0,0,0,396,416,417,418,43,411,1009,1008,410,0,535,560,561,536,0,0,0,0,395,419,416,396,43,1002,1001,347,393,0,517,454,450,512,0,0,0,0,378,318,314,373,43,1003,1005,396,369,0,521,518,515,478,0,0,0,0,382,379,376,342,43,427,1017,1009,411,0,555,562,560,535,0,0,0,0,415,420,419,395,43,413,1007,1015,412,0,538,563,564,539,0,0,0,0,398,421,422,399,43,1026,462,422,1016,0,565,566,533,567,0,0,0,0,423,424,393,425,43,463,423,422,462,0,568,531,533,566,0,0,0,0,426,391,393,424,43,424,423,463,464,0,530,531,568,569,0,0,0,0,390,391,426,427,43,465,425,424,464,0,570,528,530,569,0,0,0,0,428,388,390,427,43,426,425,465,466,0,529,528,570,571,0,0,0,0,389,388,428,429,43,466,467,427,426,0,571,572,555,529,0,0,0,0,429,430,415,389,43,467,1025,1017,427,0,572,573,562,555,0,0,0,0,430,431,420,415,43,1018,428,342,1000,0,574,534,459,461,0,0,0,0,432,394,323,325,43,422,428,1018,1016,0,533,534,574,567,0,0,0,0,393,394,432,425,43,382,1006,1019,429,0,500,501,520,519,0,0,0,0,361,362,381,380,43,370,382,429,369,0,481,500,519,478,0,0,0,0,345,361,380,342,43,430,371,355,356,0,485,575,466,469,0,0,0,0,349,433,330,333,43,373,430,356,358,0,486,485,469,470,0,0,0,0,350,349,333,334,43,409,431,372,410,0,559,484,487,556,0,0,0,0,418,348,351,396,43,431,409,1010,1020,0,484,559,558,576,0,0,0,0,348,418,417,434,43,430,431,1020,371,0,485,484,576,575,0,0,0,0,349,348,434,433,43,367,368,397,432,0,480,479,516,577,0,0,0,0,344,343,377,435,43,387,388,433,390,0,504,507,578,509,0,0,0,0,365,368,436,370,43,388,367,432,433,0,507,480,577,578,0,0,0,0,368,344,435,436,43,378,379,390,434,0,492,495,509,579,0,0,0,0,354,357,370,437,43,394,395,435,397,0,511,514,580,516,0,0,0,0,372,375,438,377,43,395,378,434,435,0,514,492,579,580,0,0,0,0,375,354,437,438,43,432,397,436,437,0,577,516,581,582,0,0,0,0,435,377,439,440,43,390,433,438,439,0,509,578,583,584,0,0,0,0,370,436,441,442,43,433,432,437,438,0,578,577,582,583,0,0,0,0,436,435,440,441,43,434,390,439,440,0,579,509,584,585,0,0,0,0,437,370,442,443,43,397,435,441,436,0,516,580,586,581,0,0,0,0,377,438,444,439,43,435,434,440,441,0,580,579,585,586,0,0,0,0,438,437,443,444,43,437,436,442,443,0,587,588,589,590,0,0,0,0,440,439,445,446,43,439,438,444,445,0,591,592,593,594,0,0,0,0,442,441,447,448,43,438,437,443,444,0,592,587,590,593,0,0,0,0,441,440,446,447,43,440,439,445,446,0,595,591,594,596,0,0,0,0,443,442,448,449,43,436,441,447,442,0,588,597,598,589,0,0,0,0,439,444,450,445,43,441,440,446,447,0,597,595,596,598,0,0,0,0,444,443,449,450,43,443,442,447,448,0,590,589,598,599,0,0,0,0,446,445,450,451,43,445,444,449,446,0,594,593,600,596,0,0,0,0,448,447,452,449,43,444,443,448,449,0,593,590,599,600,0,0,0,0,447,446,451,452,43,449,448,447,446,0,600,599,598,596,0,0,0,0,452,451,450,449,43,413,414,450,451,0,601,602,603,604,0,0,0,0,398,397,453,454,43,415,416,452,453,0,605,606,607,608,0,0,0,0,401,404,455,456,43,416,420,454,452,0,606,609,610,607,0,0,0,0,404,412,457,455,43,421,415,453,455,0,611,605,608,612,0,0,0,0,410,401,456,458,43,414,421,455,450,0,602,611,612,603,0,0,0,0,397,410,458,453,43,1007,413,451,1021,0,613,601,604,614,0,0,0,0,421,398,454,459,43,420,1014,1022,454,0,609,615,616,610,0,0,0,0,412,414,460,457,43,451,450,456,457,0,604,603,617,618,0,0,0,0,454,453,461,462,43,453,452,458,459,0,608,607,619,620,0,0,0,0,456,455,463,464,43,452,454,460,458,0,607,610,621,619,0,0,0,0,455,457,465,463,43,455,453,459,461,0,612,608,620,622,0,0,0,0,458,456,464,466,43,450,455,461,456,0,603,612,622,617,0,0,0,0,453,458,466,461,43,1021,451,457,1023,0,614,604,618,623,0,0,0,0,459,454,462,467,43,454,1022,1024,460,0,610,616,624,621,0,0,0,0,457,460,468,465,43,459,458,456,461,0,620,619,617,622,0,0,0,0,464,463,461,466,43,458,460,457,456,0,619,621,618,617,0,0,0,0,463,465,462,461,43,460,1024,1023,457,0,621,624,623,618,0,0,0,0,465,468,467,462,43,407,463,462,408,0,543,568,566,551,0,0,0,0,403,426,424,411,43,464,463,407,405,0,569,568,543,542,0,0,0,0,427,426,403,402,43,403,465,464,405,0,549,570,569,542,0,0,0,0,409,428,427,402,43,466,465,403,404,0,571,570,549,540,0,0,0,0,429,428,409,400,43,404,412,467,466,0,540,539,572,571,0,0,0,0,400,399,430,429,43,412,1015,1025,467,0,539,564,573,572,0,0,0,0,399,422,431,430,43,408,462,1026,1004,0,551,566,565,553,0,0,0,0,411,424,423,413,43,371,1020,1027,355,0,575,576,625,466,0,0,0,0,433,434,469,330,43,468,469,470,471,0,626,627,628,629,0,0,0,0,470,471,472,473,43,472,468,579,580,0,630,626,631,632,0,0,0,0,474,470,475,476,43,474,475,567,568,0,633,634,635,636,0,0,0,0,477,478,479,480,43,566,476,477,480,0,637,638,639,640,0,0,0,0,481,482,483,484,43,479,477,484,551,0,641,642,643,644,0,0,0,0,485,483,486,487,43,477,476,481,484,0,642,645,646,643,0,0,0,0,483,482,488,486,43,482,481,476,483,0,647,648,649,650,0,0,0,0,489,488,482,490,43,481,482,552,553,0,648,647,651,652,0,0,0,0,488,489,491,492,43,484,481,553,554,0,643,646,653,654,0,0,0,0,486,488,492,493,43,487,486,485,478,0,655,656,657,658,0,0,0,0,494,495,496,497,43,486,487,489,488,0,656,655,659,660,0,0,0,0,495,494,498,499,43,548,486,488,549,0,661,656,660,662,0,0,0,0,500,495,499,501,43,485,486,548,483,0,657,656,661,650,0,0,0,0,496,495,500,490,43,546,478,485,490,0,663,658,657,664,0,0,0,0,502,497,496,503,43,491,490,485,494,0,665,664,657,666,0,0,0,0,504,503,496,505,43,490,491,493,492,0,664,665,667,668,0,0,0,0,503,504,506,507,43,546,490,492,556,0,663,664,668,669,0,0,0,0,502,503,507,508,43,495,474,496,535,0,670,633,671,672,0,0,0,0,509,477,510,511,43,494,495,543,538,0,666,673,674,675,0,0,0,0,505,509,512,513,43,535,496,570,536,0,676,677,678,679,0,0,0,0,511,510,514,515,43,496,474,568,569,0,671,633,636,680,0,0,0,0,510,477,480,516,43,571,572,500,505,0,681,682,683,684,0,0,0,0,517,518,519,520,43,572,573,501,500,0,682,685,686,683,0,0,0,0,518,521,522,519,43,499,502,503,504,0,687,688,689,690,0,0,0,0,523,524,525,526,43,498,497,502,499,0,691,692,688,687,0,0,0,0,527,528,524,523,43,501,573,574,519,0,686,685,693,694,0,0,0,0,522,521,529,530,43,506,505,500,469,0,695,684,683,627,0,0,0,0,531,520,519,471,43,472,506,469,468,0,630,695,627,626,0,0,0,0,474,531,471,470,43,507,508,505,506,0,696,697,684,695,0,0,0,0,532,533,520,531,43,480,507,506,472,0,640,696,695,630,0,0,0,0,484,532,531,474,43,497,473,509,502,0,692,698,699,688,0,0,0,0,528,534,535,524,43,578,579,468,471,0,700,631,626,629,0,0,0,0,536,475,470,473,43,577,578,471,512,0,701,700,629,702,0,0,0,0,537,536,473,538,43,576,577,512,513,0,703,704,705,706,0,0,0,0,539,537,538,540,43,502,509,510,503,0,688,699,707,689,0,0,0,0,524,535,541,525,43,469,500,501,470,0,627,683,686,628,0,0,0,0,471,519,522,472,43,513,514,582,583,0,706,708,709,710,0,0,0,0,540,542,543,544,43,514,515,581,582,0,708,711,712,709,0,0,0,0,542,545,546,543,43,515,519,574,575,0,711,713,714,715,0,0,0,0,545,530,529,547,43,518,581,515,575,0,716,712,711,715,0,0,0,0,548,546,545,547,43,520,521,522,523,0,717,718,719,720,0,0,0,0,549,550,551,552,43,521,511,524,522,0,718,721,722,719,0,0,0,0,550,553,554,551,43,504,503,521,520,0,723,724,718,717,0,0,0,0,526,525,550,549,43,516,518,523,522,0,725,726,727,728,0,0,0,0,555,548,552,551,43,536,526,527,531,0,729,730,731,732,0,0,0,0,515,556,557,558,43,528,527,526,495,0,733,731,730,673,0,0,0,0,559,557,556,509,43,527,528,529,534,0,731,733,734,735,0,0,0,0,557,559,560,561,43,530,529,528,532,0,736,734,733,737,0,0,0,0,562,560,559,563,43,529,530,533,534,0,734,736,738,735,0,0,0,0,560,562,564,561,43,533,530,532,531,0,738,736,739,740,0,0,0,0,564,562,563,558,43,527,534,533,531,0,731,735,738,732,0,0,0,0,557,561,564,558,43,532,528,495,535,0,737,733,673,741,0,0,0,0,563,559,509,511,43,532,535,536,531,0,739,742,743,740,0,0,0,0,563,511,515,558,43,495,526,544,543,0,673,730,744,674,0,0,0,0,509,556,565,512,43,526,525,537,544,0,730,745,746,744,0,0,0,0,556,566,567,565,43,494,538,537,525,0,666,675,746,745,0,0,0,0,505,513,567,566,43,537,538,539,540,0,746,675,747,748,0,0,0,0,567,513,568,569,43,542,539,538,543,0,749,747,675,674,0,0,0,0,570,568,513,512,43,541,540,539,542,0,750,748,747,749,0,0,0,0,571,569,568,570,43,544,537,540,541,0,744,746,748,750,0,0,0,0,565,567,569,571,43,542,543,544,541,0,749,674,744,750,0,0,0,0,570,512,565,571,43,525,478,546,545,0,745,658,663,751,0,0,0,0,566,497,502,572,43,525,545,491,494,0,745,751,665,666,0,0,0,0,566,572,504,505,43,493,491,545,557,0,667,665,751,752,0,0,0,0,506,504,572,573,43,517,576,513,583,0,753,703,706,710,0,0,0,0,574,539,540,544,43,516,522,524,517,0,725,728,754,755,0,0,0,0,555,551,554,574,43,503,510,511,521,0,724,756,721,718,0,0,0,0,525,541,553,550,43,487,478,479,547,0,655,658,641,757,0,0,0,0,494,497,485,575,43,548,547,479,483,0,661,757,641,650,0,0,0,0,500,575,485,490,43,547,548,549,550,0,757,661,662,758,0,0,0,0,575,500,501,576,43,488,489,550,549,0,660,659,758,662,0,0,0,0,499,498,576,501,43,489,487,547,550,0,659,655,757,758,0,0,0,0,498,494,575,576,43,482,483,479,551,0,647,650,641,644,0,0,0,0,489,490,485,487,43,551,484,554,555,0,644,643,654,759,0,0,0,0,487,486,493,577,43,482,551,555,552,0,647,644,759,651,0,0,0,0,489,487,577,491,43,553,552,555,554,0,653,651,759,654,0,0,0,0,492,491,577,493,43,545,546,556,557,0,751,663,669,752,0,0,0,0,572,502,508,573,43,492,493,557,556,0,668,667,752,669,0,0,0,0,507,506,573,508,43,470,501,558,559,0,628,686,760,761,0,0,0,0,472,522,578,579,43,512,471,560,561,0,702,629,762,763,0,0,0,0,538,473,580,581,43,514,513,562,563,0,708,706,764,765,0,0,0,0,542,540,582,583,43,515,514,563,564,0,711,708,765,766,0,0,0,0,545,542,583,584,43,513,512,561,562,0,706,705,767,764,0,0,0,0,540,538,581,582,43,471,470,559,560,0,629,628,761,762,0,0,0,0,473,472,579,580,43,519,515,564,565,0,713,711,766,768,0,0,0,0,530,545,584,585,43,501,519,565,558,0,686,694,769,760,0,0,0,0,522,530,585,578,43,508,507,525,526,0,697,696,770,771,0,0,0,0,533,532,566,556,43,479,507,480,477,0,772,696,640,639,0,0,0,0,485,532,484,483,43,480,472,580,566,0,640,630,632,637,0,0,0,0,484,474,476,481,43,568,567,473,497,0,636,635,698,692,0,0,0,0,480,479,534,528,43,569,568,497,498,0,680,636,692,691,0,0,0,0,516,480,528,527,43,570,571,505,508,0,773,681,684,697,0,0,0,0,514,517,520,533,43,478,525,507,479,0,774,770,696,772,0,0,0,0,497,566,532,485,43,508,526,536,570,0,697,771,775,773,0,0,0,0,533,556,515,514,43,570,496,569,571,0,678,677,776,777,0,0,0,0,514,510,516,517,43,569,498,572,571,0,776,778,779,777,0,0,0,0,516,527,518,517,43,498,499,573,572,0,778,780,781,779,0,0,0,0,527,523,521,518,43,574,573,499,504,0,782,781,780,783,0,0,0,0,529,521,523,526,43,575,574,504,520,0,784,785,786,787,0,0,0,0,547,529,526,549,43,575,520,523,518,0,784,787,727,726,0,0,0,0,547,549,552,548,43,524,511,576,517,0,754,788,789,755,0,0,0,0,554,553,539,574,43,511,510,577,576,0,788,790,791,789,0,0,0,0,553,541,537,539,43,510,509,578,577,0,792,793,794,795,0,0,0,0,541,535,536,537,43,509,473,579,578,0,793,796,797,794,0,0,0,0,535,534,475,536,43,580,579,473,567,0,798,797,796,799,0,0,0,0,476,475,534,479,43,567,475,566,580,0,799,800,801,798,0,0,0,0,479,478,481,476,43,582,581,518,516,0,709,712,716,802,0,0,0,0,543,546,548,555,43,583,582,516,517,0,710,709,802,753,0,0,0,0,544,543,555,574,43,474,485,483,475,0,633,803,804,634,0,0,0,0,477,496,490,478,43,494,485,474,495,0,805,803,633,670,0,0,0,0,505,496,477,509,43,475,483,476,566,0,800,806,807,801,0,0,0,0,478,490,482,481,43,602,601,604,603,0,808,809,810,811,0,0,0,0,586,587,588,589,43,1027,1030,607,355,0,625,812,813,466,0,0,0,0,469,590,591,330,43,1028,1029,605,593,0,814,815,816,817,0,0,0,0,592,593,594,595,43,353,606,605,352,0,467,818,816,819,0,0,0,0,331,596,594,597,43,607,1030,1285,592,0,813,812,820,821,0,0,0,0,591,590,598,599,43,355,607,606,353,0,466,813,818,467,0,0,0,0,330,591,596,331,43,606,607,592,594,0,818,813,821,822,0,0,0,0,596,591,599,600,43,605,606,594,593,0,816,818,822,817,0,0,0,0,594,596,600,595,43,596,595,722,721,0,823,824,825,826,0,0,0,0,601,602,603,604,43,599,598,719,718,0,827,828,829,830,0,0,0,0,605,606,607,608,43,559,558,597,595,0,761,760,831,824,0,0,0,0,579,578,609,602,43,562,561,598,599,0,764,767,828,827,0,0,0,0,582,581,606,605,43,601,600,717,604,0,809,832,833,810,0,0,0,0,587,610,611,588,43,597,602,603,720,0,831,834,835,836,0,0,0,0,609,586,589,612,43,561,560,596,598,0,763,762,823,837,0,0,0,0,581,580,601,606,43,564,563,600,601,0,766,765,832,809,0,0,0,0,584,583,610,587,43,563,562,599,600,0,765,764,827,832,0,0,0,0,583,582,605,610,43,558,565,602,597,0,760,769,834,831,0,0,0,0,578,585,586,609,43,565,564,601,602,0,768,766,809,808,0,0,0,0,585,584,587,586,43,595,597,720,722,0,824,831,836,825,0,0,0,0,602,609,612,603,43,600,599,718,717,0,832,827,830,833,0,0,0,0,610,605,608,611,43,598,596,721,719,0,837,823,826,838,0,0,0,0,606,601,604,607,43,612,611,618,623,0,839,840,841,842,0,0,0,0,613,614,615,616,43,620,701,609,608,0,843,844,845,846,0,0,0,0,617,618,619,620,43,622,612,623,700,0,847,839,842,848,0,0,0,0,621,613,616,622,43,625,621,699,624,0,849,850,851,852,0,0,0,0,623,624,625,626,43,624,699,700,626,0,852,851,848,853,0,0,0,0,626,625,622,627,43,626,700,623,627,0,853,848,842,854,0,0,0,0,627,622,616,628,43,627,623,621,625,0,854,842,850,849,0,0,0,0,628,616,624,623,43,629,625,624,628,0,855,849,852,856,0,0,0,0,629,623,626,630,43,628,624,626,630,0,856,852,853,857,0,0,0,0,630,626,627,631,43,630,626,627,631,0,857,853,854,858,0,0,0,0,631,627,628,632,43,631,627,625,629,0,858,854,849,855,0,0,0,0,632,628,623,629,43,633,629,628,632,0,859,855,856,860,0,0,0,0,633,629,630,634,43,632,628,630,634,0,860,856,857,861,0,0,0,0,634,630,631,635,43,634,630,631,635,0,861,857,858,862,0,0,0,0,635,631,632,636,43,635,631,629,633,0,862,858,855,859,0,0,0,0,636,632,629,633,43,637,633,632,636,0,863,859,860,864,0,0,0,0,637,633,634,638,43,636,632,634,638,0,864,860,861,865,0,0,0,0,638,634,635,639,43,638,634,635,639,0,865,861,862,866,0,0,0,0,639,635,636,640,43,639,635,633,637,0,866,862,859,863,0,0,0,0,640,636,633,637,43,636,638,639,637,0,864,865,866,863,0,0,0,0,638,639,640,637,43,641,640,644,645,0,867,868,869,870,0,0,0,0,641,642,643,644,43,640,641,616,621,0,868,867,871,850,0,0,0,0,642,641,645,624,43,644,640,642,646,0,869,868,872,873,0,0,0,0,643,642,646,647,43,640,621,623,642,0,868,850,842,872,0,0,0,0,642,624,616,646,43,642,643,647,646,0,872,874,875,873,0,0,0,0,646,648,649,647,43,643,642,623,618,0,874,872,842,841,0,0,0,0,648,646,616,615,43,647,643,641,645,0,875,874,867,870,0,0,0,0,649,648,641,644,43,643,618,616,641,0,874,841,871,867,0,0,0,0,648,615,645,641,43,645,644,648,649,0,870,869,876,877,0,0,0,0,644,643,650,651,43,648,644,646,650,0,876,869,873,878,0,0,0,0,650,643,647,652,43,646,647,651,650,0,873,875,879,878,0,0,0,0,647,649,653,652,43,651,647,645,649,0,879,875,870,877,0,0,0,0,653,649,644,651,43,652,653,649,648,0,880,881,877,876,0,0,0,0,654,655,651,650,43,652,648,650,654,0,880,876,878,882,0,0,0,0,654,650,652,656,43,655,654,650,651,0,883,882,878,879,0,0,0,0,657,656,652,653,43,655,651,649,653,0,883,879,877,881,0,0,0,0,657,653,651,655,43,652,654,655,653,0,880,882,883,881,0,0,0,0,654,656,657,655,43,656,614,613,703,0,884,885,886,887,0,0,0,0,658,659,660,661,43,619,614,656,658,0,888,885,884,889,0,0,0,0,662,659,658,663,43,659,657,658,661,0,890,891,889,892,0,0,0,0,664,665,663,666,43,661,658,656,662,0,892,889,884,893,0,0,0,0,666,663,658,667,43,662,656,703,660,0,893,884,887,894,0,0,0,0,667,658,661,668,43,659,715,716,660,0,890,895,896,894,0,0,0,0,664,669,670,668,43,661,714,715,659,0,892,897,895,890,0,0,0,0,666,671,669,664,43,662,713,714,661,0,893,898,897,892,0,0,0,0,667,672,671,666,43,660,716,713,662,0,894,896,898,893,0,0,0,0,668,670,672,667,43,663,664,716,715,0,899,900,896,895,0,0,0,0,673,674,670,669,43,665,663,715,714,0,901,899,895,897,0,0,0,0,675,673,669,671,43,666,665,714,713,0,902,901,897,898,0,0,0,0,676,675,671,672,43,716,664,666,713,0,896,900,902,898,0,0,0,0,670,674,676,672,43,663,665,666,664,0,899,901,902,900,0,0,0,0,673,675,676,674,43,672,668,667,671,0,903,904,905,906,0,0,0,0,677,678,679,680,43,668,657,617,667,0,904,891,907,905,0,0,0,0,678,665,681,679,43,671,667,669,673,0,906,905,908,909,0,0,0,0,680,679,682,683,43,667,617,619,669,0,905,907,888,908,0,0,0,0,679,681,662,682,43,673,669,670,674,0,909,908,910,911,0,0,0,0,683,682,684,685,43,669,619,658,670,0,908,888,889,910,0,0,0,0,682,662,663,684,43,674,670,668,672,0,911,910,904,903,0,0,0,0,685,684,678,677,43,670,658,657,668,0,910,889,891,904,0,0,0,0,684,663,665,678,43,676,672,671,675,0,912,903,906,913,0,0,0,0,686,677,680,687,43,675,671,673,677,0,913,906,909,914,0,0,0,0,687,680,683,688,43,677,673,674,678,0,914,909,911,915,0,0,0,0,688,683,685,689,43,678,674,672,676,0,915,911,903,912,0,0,0,0,689,685,677,686,43,680,676,675,679,0,916,912,913,917,0,0,0,0,690,686,687,691,43,679,675,677,681,0,917,913,914,918,0,0,0,0,691,687,688,692,43,681,677,678,682,0,918,914,915,919,0,0,0,0,692,688,689,693,43,682,678,676,680,0,919,915,912,916,0,0,0,0,693,689,686,690,43,679,681,682,680,0,917,918,919,916,0,0,0,0,691,692,693,690,43,688,684,683,687,0,920,921,922,923,0,0,0,0,694,695,696,697,43,684,617,616,683,0,921,907,871,922,0,0,0,0,695,681,645,696,43,687,683,685,689,0,923,922,924,925,0,0,0,0,697,696,698,699,43,683,616,618,685,0,922,871,841,924,0,0,0,0,696,645,615,698,43,689,685,686,690,0,925,924,926,927,0,0,0,0,699,698,700,701,43,685,618,619,686,0,924,841,888,926,0,0,0,0,698,615,662,700,43,690,686,684,688,0,927,926,921,920,0,0,0,0,701,700,695,694,43,686,619,617,684,0,926,888,907,921,0,0,0,0,700,662,681,695,43,692,688,687,691,0,928,920,923,929,0,0,0,0,702,694,697,703,43,691,687,689,693,0,929,923,925,930,0,0,0,0,703,697,699,704,43,693,689,690,694,0,930,925,927,931,0,0,0,0,704,699,701,705,43,694,690,688,692,0,931,927,920,928,0,0,0,0,705,701,694,702,43,696,692,691,695,0,932,928,929,933,0,0,0,0,706,702,703,707,43,695,691,693,697,0,933,929,930,934,0,0,0,0,707,703,704,708,43,697,693,694,698,0,934,930,931,935,0,0,0,0,708,704,705,709,43,698,694,692,696,0,935,931,928,932,0,0,0,0,709,705,702,706,43,695,697,698,696,0,933,934,935,932,0,0,0,0,707,708,709,706,43,700,699,620,622,0,848,851,843,847,0,0,0,0,622,625,617,621,43,618,611,614,619,0,841,840,885,888,0,0,0,0,615,614,659,662,43,704,706,707,708,0,936,937,938,939,0,0,0,0,710,711,712,713,43,608,612,622,620,0,846,839,847,843,0,0,0,0,620,613,621,617,43,621,710,709,699,0,850,940,941,851,0,0,0,0,624,714,715,625,43,610,609,701,702,0,942,845,844,943,0,0,0,0,716,619,618,717,43,621,616,707,710,0,850,871,938,940,0,0,0,0,624,645,712,714,43,703,613,615,705,0,887,886,944,945,0,0,0,0,661,660,718,719,43,704,660,703,705,0,936,894,887,945,0,0,0,0,710,668,661,719,43,705,615,610,702,0,946,947,942,943,0,0,0,0,719,718,716,717,43,705,702,706,704,0,946,943,937,936,0,0,0,0,719,717,711,710,43,617,708,707,616,0,907,939,938,871,0,0,0,0,681,713,712,645,43,657,711,708,617,0,891,948,939,907,0,0,0,0,665,720,713,681,43,709,706,702,701,0,941,937,943,844,0,0,0,0,715,711,717,618,43,699,709,701,620,0,851,941,844,843,0,0,0,0,625,715,618,617,43,710,707,706,709,0,940,938,937,941,0,0,0,0,714,712,711,715,43,611,612,585,584,0,840,839,949,950,0,0,0,0,614,613,721,722,43,612,608,586,585,0,839,846,951,949,0,0,0,0,613,620,723,721,43,608,609,587,586,0,846,845,952,951,0,0,0,0,620,619,724,723,43,609,610,588,587,0,845,942,953,952,0,0,0,0,619,716,725,724,43,589,588,610,615,0,954,953,942,947,0,0,0,0,726,725,716,718,43,615,613,590,589,0,944,886,955,956,0,0,0,0,718,660,727,726,43,613,614,591,590,0,886,885,957,955,0,0,0,0,660,659,728,727,43,614,611,584,591,0,885,840,950,957,0,0,0,0,659,614,722,728,43,660,704,712,659,0,894,936,958,890,0,0,0,0,668,710,729,664,43,704,708,711,712,0,936,939,948,958,0,0,0,0,710,713,720,729,43,712,711,657,659,0,958,948,891,890,0,0,0,0,729,720,665,664,43,560,559,595,596,0,762,761,824,823,0,0,0,0,580,579,602,601,43,1029,1011,352,605,0,815,959,819,816,0,0,0,0,593,730,597,594,43,728,723,724,731,0,960,961,962,963,0,0,0,0,731,732,733,734,43,731,724,725,734,0,964,965,966,967,0,0,0,0,734,733,735,736,43,734,725,726,737,0,967,966,968,969,0,0,0,0,736,735,737,738,43,737,726,754,757,0,969,968,970,971,0,0,0,0,738,737,739,740,43,757,754,1421,1437,0,971,970,972,973,0,0,0,0,740,739,741,742,43,758,762,733,736,0,974,975,976,977,0,0,0,0,743,744,745,746,43,755,756,1438,1439,0,978,979,980,981,0,0,0,0,747,748,749,750,43,756,757,1437,1438,0,979,971,973,980,0,0,0,0,748,740,742,749,43,739,738,756,755,0,982,983,979,978,0,0,0,0,751,752,748,747,43,738,737,757,756,0,983,969,971,979,0,0,0,0,752,738,740,748,43,736,735,738,739,0,977,984,983,982,0,0,0,0,746,753,752,751,43,735,734,737,738,0,984,967,969,983,0,0,0,0,753,736,738,752,43,733,732,735,736,0,976,985,984,977,0,0,0,0,745,754,753,746,43,732,731,734,735,0,985,964,967,984,0,0,0,0,754,734,736,753,43,778,1468,1422,777,0,986,987,988,989,0,0,0,0,214,755,756,757,43,730,729,732,733,0,990,991,992,993,0,0,0,0,758,759,754,745,43,729,728,731,732,0,991,960,963,992,0,0,0,0,759,731,734,754,43,742,729,730,743,0,994,991,990,995,0,0,0,0,760,759,758,761,43,776,742,743,777,0,996,994,995,989,0,0,0,0,762,760,761,757,43,775,741,742,776,0,997,998,994,996,0,0,0,0,763,764,760,762,43,762,759,730,733,0,999,1000,990,993,0,0,0,0,744,765,758,745,43,744,725,724,745,0,1001,1002,1003,1004,0,0,0,0,766,735,733,767,43,745,724,723,746,0,1005,1006,1007,1008,0,0,0,0,767,733,732,768,43,603,745,746,720,0,1009,1005,1008,1010,0,0,0,0,589,767,768,612,43,604,744,745,603,0,1011,1001,1004,1012,0,0,0,0,588,766,767,589,43,747,744,604,717,0,1013,1001,1011,1014,0,0,0,0,769,766,588,611,43,726,725,744,747,0,1015,1002,1001,1013,0,0,0,0,737,735,766,769,43,337,753,318,339,0,444,322,432,448,0,0,0,0,309,212,300,313,43,772,771,719,721,0,1016,1017,1018,1019,0,0,0,0,770,771,607,604,43,751,772,721,722,0,1020,1016,1019,1021,0,0,0,0,772,770,604,603,43,753,337,903,1456,0,322,444,447,321,0,0,0,0,212,309,312,211,43,722,720,746,751,0,1021,1010,1008,1020,0,0,0,0,603,612,768,772,42,749,772,751,0,1022,1016,1020,0,0,0,773,770,772,43,1415,1453,749,727,0,1023,1024,1022,1025,0,0,0,0,774,775,773,776,43,750,749,1453,1454,0,1026,1022,1024,1027,0,0,0,0,777,773,775,778,43,750,1454,1452,752,0,1028,1029,1030,1031,0,0,0,0,777,778,779,780,43,740,723,728,741,0,1032,961,960,998,0,0,0,0,781,732,731,764,43,758,736,739,761,0,974,977,982,1033,0,0,0,0,743,746,751,782,43,726,747,752,754,0,1015,1013,1031,1034,0,0,0,0,737,769,780,739,43,1421,754,752,1452,0,1035,1034,1031,1030,0,0,0,0,741,739,780,779,43,741,728,729,742,0,998,960,991,994,0,0,0,0,764,731,759,760,43,760,743,730,759,0,1036,995,990,1000,0,0,0,0,215,761,758,765,43,312,249,758,761,0,441,439,1037,1038,0,0,0,0,306,304,743,782,43,313,309,759,762,0,437,436,1039,1040,0,0,0,0,303,302,765,744,43,249,313,762,758,0,439,438,1041,1037,0,0,0,0,304,303,744,743,43,309,311,760,759,0,436,323,325,1039,0,0,0,0,302,213,215,765,43,773,974,1468,778,0,314,313,1042,324,0,0,0,0,204,203,755,214,43,763,312,761,770,0,275,441,1038,276,0,0,0,0,173,306,782,174,43,896,901,768,767,0,341,1043,348,338,0,0,0,0,231,783,238,228,43,894,897,766,765,0,320,340,339,317,0,0,0,0,210,230,229,207,43,260,264,766,767,0,350,342,339,338,0,0,0,0,239,232,229,228,43,315,316,764,765,0,343,336,318,317,0,0,0,0,233,226,208,207,43,865,871,247,248,0,1044,306,307,316,0,0,0,0,784,198,199,206,43,768,248,231,334,0,1045,316,302,311,0,0,0,0,238,206,196,201,43,248,768,901,865,0,316,1045,1046,1044,0,0,0,0,206,238,783,784,43,755,1439,1464,770,0,978,981,1047,1048,0,0,0,0,747,750,175,174,43,761,739,755,770,0,1033,982,978,1048,0,0,0,0,782,751,747,174,43,723,740,751,746,0,1007,1049,1020,1008,0,0,0,0,732,781,772,768,43,316,314,769,764,0,336,337,440,318,0,0,0,0,226,227,305,208,43,718,748,747,717,0,1050,1051,1013,1014,0,0,0,0,608,785,769,611,43,771,748,718,719,0,1052,1051,1050,1053,0,0,0,0,771,785,608,607,43,772,749,750,771,0,1016,1022,1026,1017,0,0,0,0,770,773,777,771,43,1424,775,776,1423,0,1054,997,996,1055,0,0,0,0,786,763,762,787,43,1423,776,777,1422,0,1055,996,989,988,0,0,0,0,787,762,757,756,43,760,778,777,743,0,1036,986,989,995,0,0,0,0,215,214,757,761,43,1415,727,775,1424,0,1056,1057,997,1054,0,0,0,0,774,776,763,786,43,727,740,741,775,0,1057,1032,998,997,0,0,0,0,776,781,764,763,43,771,750,752,748,0,1052,1028,1031,1051,0,0,0,0,771,777,780,785,42,752,747,748,0,1031,1013,1051,0,0,0,780,769,785,43,727,749,751,740,0,1025,1022,1020,1049,0,0,0,0,776,773,772,781,43,250,257,591,584,0,425,428,1058,1059,0,0,0,0,294,297,728,722,43,251,250,584,585,0,426,425,1059,1060,0,0,0,0,295,294,722,721,43,252,251,585,586,0,422,426,1060,1061,0,0,0,0,291,295,721,723,43,253,252,586,587,0,423,422,1061,1062,0,0,0,0,292,291,723,724,43,254,253,587,588,0,424,423,1062,1063,0,0,0,0,293,292,724,725,43,255,254,588,589,0,429,424,1063,1064,0,0,0,0,298,293,725,726,43,256,255,589,590,0,427,430,1065,1066,0,0,0,0,296,298,726,727,43,257,256,590,591,0,428,427,1066,1058,0,0,0,0,297,296,727,728,43,285,269,268,284,0,383,382,389,388,0,0,0,0,262,247,246,265,43,298,299,293,292,0,412,415,403,413,0,0,0,0,282,285,274,283,43,895,764,769,899,0,319,318,440,443,0,0,0,0,209,208,305,308,43,249,312,314,307,0,439,441,337,333,0,0,0,0,304,306,227,223,43,319,336,337,339,0,442,445,444,448,0,0,0,0,307,310,309,313,43,283,281,262,263,0,378,329,328,435,0,0,0,0,220,219,218,221,43,790,796,795,789,0,1067,1068,1069,1070,0,0,0,0,788,789,790,791,43,793,798,797,792,0,1071,1072,1073,1074,0,0,0,0,792,793,794,795,43,796,801,800,795,0,1068,1075,1076,1069,0,0,0,0,789,796,797,790,42,782,785,799,0,1077,1078,1079,0,0,0,798,799,800,42,818,798,793,0,1080,1072,1071,0,0,0,801,793,792,42,818,803,798,0,1080,1081,1072,0,0,0,801,802,793,42,818,806,803,0,1080,1082,1081,0,0,0,801,803,802,43,827,830,829,826,0,1083,1084,1085,1086,0,0,0,0,804,805,806,807,43,842,846,845,841,0,1087,1088,1089,1090,0,0,0,0,808,809,810,811,43,862,826,825,861,0,1091,1092,1093,1094,0,0,0,0,812,807,813,814,43,874,875,872,873,0,1095,1096,1097,1098,0,0,0,0,815,816,817,818,43,966,1464,1476,1469,0,1099,1100,1101,1102,0,0,0,0,172,175,819,820,43,878,877,992,920,0,1103,1104,1105,1106,0,0,0,0,821,822,823,824,43,883,880,879,882,0,1107,1108,1109,1110,0,0,0,0,825,826,827,828,43,886,887,884,885,0,1111,1112,1113,1114,0,0,0,0,829,830,831,832,43,888,873,886,885,0,1115,1116,1111,1114,0,0,0,0,833,818,829,832,43,874,873,888,889,0,1095,1098,1117,1118,0,0,0,0,815,818,833,834,43,886,873,872,887,0,1111,1116,1119,1112,0,0,0,0,829,818,817,830,43,875,870,869,872,0,1096,1120,1121,1097,0,0,0,0,816,191,190,817,43,884,866,867,881,0,1113,1122,1123,1124,0,0,0,0,831,194,193,835,43,887,868,866,884,0,1112,1125,1122,1113,0,0,0,0,830,195,194,831,43,882,879,876,877,0,1110,1109,1126,1127,0,0,0,0,828,827,836,822,43,890,882,877,878,0,1128,1129,1104,1103,0,0,0,0,837,828,822,821,43,872,869,868,887,0,1119,1130,1125,1112,0,0,0,0,817,190,195,830,43,885,884,881,880,0,1114,1113,1124,1108,0,0,0,0,832,831,835,826,43,888,885,880,883,0,1115,1114,1108,1107,0,0,0,0,833,832,826,825,43,871,892,881,867,0,1131,1132,1124,1123,0,0,0,0,198,838,835,193,43,891,889,888,883,0,1133,1118,1117,1134,0,0,0,0,839,834,833,825,43,883,882,890,891,0,1134,1129,1128,1133,0,0,0,0,825,828,837,839,43,877,876,991,992,0,1127,1126,1135,1136,0,0,0,0,822,836,840,823,43,892,879,880,881,0,1132,1109,1108,1124,0,0,0,0,838,827,826,835,43,898,1480,1479,974,0,1137,1138,1139,1140,0,0,0,0,202,841,842,203,43,893,876,879,892,0,1141,1126,1109,1132,0,0,0,0,843,836,827,838,43,1471,894,895,1470,0,1142,1143,1144,1145,0,0,0,0,844,210,209,845,43,1456,1457,1480,898,0,1146,1147,1138,1137,0,0,0,0,211,846,841,202,43,967,1465,1484,1479,0,1148,1149,1150,1139,0,0,0,0,847,848,849,842,43,965,936,917,996,0,1151,1152,1153,1154,0,0,0,0,850,851,852,853,42,938,913,918,0,1155,1156,1157,0,0,0,854,855,856,43,962,963,918,916,0,1158,1159,1157,1160,0,0,0,0,857,858,856,859,43,972,970,962,916,0,1161,1162,1158,1160,0,0,0,0,860,861,857,859,42,918,913,916,0,1157,1156,1160,0,0,0,856,855,859,43,1473,896,897,1472,0,1163,1164,1165,1166,0,0,0,0,862,231,230,863,43,1471,971,919,1472,0,1142,1167,1168,1166,0,0,0,0,844,864,865,863,43,914,979,978,977,0,1169,1170,1171,1172,0,0,0,0,866,867,868,869,43,1473,915,991,1474,0,1163,1173,1174,1175,0,0,0,0,862,870,840,871,43,902,993,920,921,0,1176,1177,1178,1179,0,0,0,0,240,242,824,872,43,991,915,922,992,0,1174,1173,1180,1181,0,0,0,0,840,870,873,823,43,925,924,923,926,0,1182,1183,1184,1185,0,0,0,0,874,875,876,877,43,928,927,924,925,0,1186,1187,1183,1182,0,0,0,0,878,879,875,874,43,981,915,919,982,0,1188,1173,1168,1189,0,0,0,0,880,870,865,881,43,931,930,929,932,0,1190,1191,1192,1193,0,0,0,0,882,883,884,885,43,926,923,930,931,0,1185,1184,1194,1195,0,0,0,0,877,876,883,882,43,980,922,915,981,0,1196,1180,1173,1188,0,0,0,0,886,873,870,880,43,979,914,922,980,0,1170,1169,1197,1198,0,0,0,0,867,866,873,886,43,935,934,933,936,0,1199,1200,1201,1152,0,0,0,0,887,888,889,851,43,932,929,934,935,0,1193,1192,1200,1199,0,0,0,0,885,884,888,887,43,938,937,927,928,0,1155,1202,1187,1186,0,0,0,0,854,890,879,878,43,933,937,938,936,0,1201,1203,1204,1152,0,0,0,0,889,890,854,851,42,928,913,938,0,1186,1156,1155,0,0,0,878,855,854,43,941,940,924,927,0,1205,1206,1207,1208,0,0,0,0,891,892,875,879,43,943,942,929,930,0,1209,1210,1211,1212,0,0,0,0,893,894,884,883,43,939,943,930,923,0,1213,1209,1212,1214,0,0,0,0,895,893,883,876,43,945,944,933,934,0,1215,1216,1217,1218,0,0,0,0,896,897,889,888,43,942,945,934,929,0,1210,1215,1218,1211,0,0,0,0,894,896,888,884,43,946,941,927,937,0,1219,1205,1208,1220,0,0,0,0,898,891,879,890,43,944,946,937,933,0,1216,1221,1222,1217,0,0,0,0,897,898,890,889,43,985,950,949,986,0,1223,1224,1225,1226,0,0,0,0,899,900,901,902,43,987,948,986,949,0,1227,1228,1226,1225,0,0,0,0,903,904,902,901,43,950,939,940,949,0,1224,1213,1206,1225,0,0,0,0,900,895,892,901,43,983,942,943,952,0,1229,1210,1209,1230,0,0,0,0,905,894,893,906,43,984,952,950,985,0,1231,1230,1224,1223,0,0,0,0,907,906,900,899,43,952,943,939,950,0,1230,1209,1213,1224,0,0,0,0,906,893,895,900,43,989,944,945,990,0,1232,1216,1215,1233,0,0,0,0,908,897,896,909,43,945,942,983,990,0,1215,1210,1229,1233,0,0,0,0,896,894,905,909,43,941,946,988,987,0,1205,1219,1234,1227,0,0,0,0,891,898,910,903,43,946,944,989,988,0,1221,1216,1232,1235,0,0,0,0,898,897,908,910,43,957,951,947,953,0,1236,1237,1238,1239,0,0,0,0,911,912,913,914,43,987,955,954,948,0,1227,1240,1241,1228,0,0,0,0,903,915,916,904,43,951,957,956,983,0,1237,1236,1242,1229,0,0,0,0,912,911,917,905,43,990,959,958,989,0,1233,1243,1244,1232,0,0,0,0,909,918,919,908,43,956,959,990,983,0,1242,1243,1233,1229,0,0,0,0,917,918,909,905,43,988,960,955,987,0,1234,1245,1240,1227,0,0,0,0,910,920,915,903,43,958,960,988,989,0,1244,1246,1235,1232,0,0,0,0,919,920,910,908,43,907,953,954,908,0,1247,1239,1241,1248,0,0,0,0,921,914,916,922,43,908,954,955,909,0,1248,1241,1240,1249,0,0,0,0,922,916,915,923,43,905,956,957,906,0,1250,1242,1236,1251,0,0,0,0,924,917,911,925,43,906,957,953,907,0,1251,1236,1239,1247,0,0,0,0,925,911,914,921,43,911,958,959,912,0,1252,1244,1243,1253,0,0,0,0,926,919,918,927,43,912,959,956,905,0,1253,1243,1242,1250,0,0,0,0,927,918,917,924,43,955,960,910,909,0,1240,1245,1254,1249,0,0,0,0,915,920,928,923,43,910,960,958,911,0,1255,1246,1244,1252,0,0,0,0,928,920,919,926,43,961,973,975,917,0,1256,1257,1258,1153,0,0,0,0,929,930,931,852,43,963,961,917,918,0,1259,1256,1153,1260,0,0,0,0,858,929,852,856,43,961,963,969,964,0,1256,1259,1261,1262,0,0,0,0,929,858,932,933,43,963,962,900,969,0,1159,1158,1263,1264,0,0,0,0,858,857,934,932,43,967,973,961,964,0,1148,1257,1256,1262,0,0,0,0,847,930,929,933,43,1469,968,970,1475,0,1102,1265,1162,1266,0,0,0,0,820,935,861,936,43,978,965,976,977,0,1171,1151,1267,1172,0,0,0,0,868,850,937,869,43,919,971,913,982,0,1168,1167,1156,1189,0,0,0,0,865,864,855,881,43,913,971,972,916,0,1156,1167,1161,1160,0,0,0,0,855,864,860,859,43,1480,973,967,1479,0,1138,1257,1148,1139,0,0,0,0,841,930,847,842,43,966,1469,1475,899,0,1099,1102,1266,1268,0,0,0,0,172,820,936,308,43,973,1480,1457,975,0,1257,1138,1147,1258,0,0,0,0,930,841,846,931,43,995,903,904,994,0,1269,1270,1271,1272,0,0,0,0,938,312,311,939,43,920,914,977,921,0,1178,1169,1172,1179,0,0,0,0,824,866,869,872,43,976,965,996,997,0,1267,1151,1154,1273,0,0,0,0,937,850,853,940,43,935,978,979,932,0,1199,1171,1170,1193,0,0,0,0,887,868,867,885,43,965,978,935,936,0,1151,1171,1199,1152,0,0,0,0,850,868,887,851,43,932,979,980,931,0,1193,1170,1198,1190,0,0,0,0,885,867,886,882,43,931,980,981,926,0,1195,1196,1188,1185,0,0,0,0,882,886,880,877,43,926,981,982,925,0,1185,1188,1189,1182,0,0,0,0,877,880,881,874,43,913,928,925,982,0,1156,1186,1182,1189,0,0,0,0,855,878,874,881,43,951,984,985,947,0,1237,1231,1223,1238,0,0,0,0,912,907,899,913,43,947,985,986,948,0,1238,1223,1226,1228,0,0,0,0,913,899,902,904,43,984,951,983,952,0,1231,1237,1229,1230,0,0,0,0,907,912,905,906,43,949,940,941,987,0,1225,1206,1205,1227,0,0,0,0,901,892,891,903,43,992,922,914,920,0,1274,1197,1169,1178,0,0,0,0,823,873,866,824,43,921,977,976,994,0,1179,1172,1267,1272,0,0,0,0,872,869,937,939,43,904,902,921,994,0,1271,1176,1179,1272,0,0,0,0,311,240,872,939,43,996,917,975,997,0,1154,1153,1258,1273,0,0,0,0,853,852,931,940,43,1038,1031,1037,1035,0,1275,1276,1277,1278,0,0,0,0,941,942,943,944,43,1038,1035,998,1001,0,1275,1278,455,454,0,0,0,0,941,944,319,318,43,1032,1033,1034,1036,0,1279,1280,1281,1282,0,0,0,0,945,946,947,948,43,1037,1036,1034,1035,0,1277,1282,1281,1278,0,0,0,0,943,948,947,944,43,1034,999,998,1035,0,1281,460,455,1278,0,0,0,0,947,324,319,944,43,1000,999,1034,1033,0,461,460,1281,1280,0,0,0,0,325,324,947,946,43,1031,1032,1036,1037,0,1276,1279,1282,1277,0,0,0,0,942,945,948,943,43,1041,1042,1039,1040,0,1283,1284,1285,1286,0,0,0,0,949,950,951,952,43,1046,1047,1045,1044,0,1287,1288,1289,1290,0,0,0,0,953,954,955,956,43,1049,1048,1045,1047,0,1291,1292,1289,1288,0,0,0,0,957,958,955,954,43,1054,1055,1052,1053,0,1293,1294,1295,1296,0,0,0,0,959,960,961,962,43,1041,1040,1056,1057,0,1283,1286,1297,1298,0,0,0,0,949,952,963,964,43,1060,1061,1058,1059,0,1299,1300,1301,1302,0,0,0,0,965,966,967,968,43,1042,1013,1012,1039,0,1284,483,482,1285,0,0,0,0,950,347,346,951,43,1122,1063,1064,1121,0,1303,1304,1305,1306,0,0,0,0,969,970,971,972,43,1065,1066,1049,1064,0,1307,1308,1309,1310,0,0,0,0,973,974,957,971,43,1069,1070,1067,1068,0,1311,1312,1313,1314,0,0,0,0,975,976,977,978,43,1057,1072,1071,1041,0,1298,1315,1316,1283,0,0,0,0,964,979,980,949,43,1066,1050,1048,1049,0,1308,1317,1318,1309,0,0,0,0,974,981,958,957,43,1073,1006,1013,1042,0,1319,501,483,1284,0,0,0,0,982,362,347,950,43,1065,1075,1074,1066,0,1307,1320,1321,1308,0,0,0,0,973,983,984,974,43,1078,1079,1076,1077,0,1322,1323,1324,1325,0,0,0,0,985,986,987,988,43,1070,1081,1080,1067,0,1312,1326,1327,1313,0,0,0,0,976,989,990,977,43,1067,1080,1082,1074,0,1313,1327,1328,1321,0,0,0,0,977,990,991,984,43,1058,1061,1076,1079,0,1301,1300,1324,1323,0,0,0,0,967,966,987,986,43,1076,1061,1073,1071,0,1324,1300,1319,1316,0,0,0,0,987,966,982,980,43,1085,1086,1083,1084,0,1329,1330,1331,1332,0,0,0,0,992,993,994,995,43,1059,1088,1087,1060,0,1302,1333,1334,1299,0,0,0,0,968,996,997,965,43,1002,1005,1087,1084,0,517,518,1334,1332,0,0,0,0,378,379,997,995,43,1060,1003,1019,1120,0,1299,521,520,1335,0,0,0,0,965,382,381,998,43,1083,1089,1038,1084,0,1331,1336,1275,1332,0,0,0,0,994,999,941,995,43,1072,1077,1076,1071,0,1315,1325,1324,1316,0,0,0,0,979,988,987,980,43,1075,1068,1067,1074,0,1320,1314,1313,1321,0,0,0,0,983,978,977,984,43,1072,1057,1090,1082,0,1315,1298,1337,1328,0,0,0,0,979,964,1000,991,43,1073,1042,1041,1071,0,1319,1284,1283,1316,0,0,0,0,982,950,949,980,43,1085,1084,1087,1088,0,1329,1332,1334,1333,0,0,0,0,992,995,997,996,43,1065,1064,1091,1092,0,1307,1310,1338,1339,0,0,0,0,973,971,1001,1002,43,1064,1063,1093,1091,0,1310,1340,1341,1338,0,0,0,0,971,970,1003,1001,43,1093,1117,1116,1091,0,1341,1342,1343,1338,0,0,0,0,1003,1004,1005,1001,43,1116,1115,1092,1091,0,1343,1344,1339,1338,0,0,0,0,1005,1006,1002,1001,43,1114,1113,1032,1097,0,1345,1346,1279,1347,0,0,0,0,1007,1008,945,1009,43,1113,1119,1033,1032,0,1346,1348,1280,1279,0,0,0,0,1008,1010,946,945,43,1093,1063,1101,1102,0,1341,1340,1349,1350,0,0,0,0,1003,970,1011,1012,43,1105,1095,1103,1104,0,1351,1352,1353,1354,0,0,0,0,1013,1014,1015,1016,43,1106,1107,1098,1096,0,1355,1356,1357,1358,0,0,0,0,1017,1018,1019,1020,43,1097,1075,1065,1092,0,1347,1320,1307,1339,0,0,0,0,1009,983,973,1002,43,1032,1031,1108,1097,0,1279,1276,1359,1347,0,0,0,0,945,942,1021,1009,43,1097,1108,1089,1075,0,1347,1359,1336,1320,0,0,0,0,1009,1021,999,983,43,1086,1069,1068,1083,0,1330,1311,1314,1331,0,0,0,0,993,975,978,994,43,1068,1075,1089,1083,0,1314,1320,1336,1331,0,0,0,0,978,983,999,994,43,1108,1031,1038,1089,0,1359,1276,1275,1336,0,0,0,0,1021,942,941,999,43,1109,1110,1055,1054,0,1360,1361,1294,1293,0,0,0,0,1022,1023,960,959,43,1078,1077,1080,1081,0,1322,1325,1327,1326,0,0,0,0,985,988,990,989,43,1077,1072,1082,1080,0,1325,1315,1328,1327,0,0,0,0,988,979,991,990,43,1090,1066,1074,1082,0,1337,1308,1321,1328,0,0,0,0,1000,974,984,991,43,1051,1050,1052,1055,0,1362,1317,1295,1294,0,0,0,0,1024,981,961,960,43,1050,1066,1053,1052,0,1317,1308,1296,1295,0,0,0,0,981,974,962,961,43,1066,1090,1054,1053,0,1308,1337,1293,1296,0,0,0,0,974,1000,959,962,43,1090,1057,1109,1054,0,1337,1298,1360,1293,0,0,0,0,1000,964,1022,959,43,1057,1056,1110,1109,0,1298,1297,1361,1360,0,0,0,0,964,963,1023,1022,43,1056,1051,1055,1110,0,1297,1362,1294,1361,0,0,0,0,963,1024,960,1023,43,1095,1105,1112,1094,0,1352,1351,1363,1364,0,0,0,0,1014,1013,1025,1026,43,1112,1106,1096,1094,0,1363,1355,1358,1364,0,0,0,0,1025,1017,1020,1026,43,1107,1111,1099,1098,0,1356,1365,1366,1357,0,0,0,0,1018,1027,1028,1019,43,1099,1111,1014,1004,0,1366,1365,554,553,0,0,0,0,1028,1027,414,413,43,1117,1093,1102,1118,0,1342,1341,1350,1367,0,0,0,0,1004,1003,1012,1029,43,1097,1092,1115,1114,0,1347,1339,1344,1345,0,0,0,0,1009,1002,1006,1007,43,1101,1100,1010,1008,0,1368,1369,558,557,0,0,0,0,1011,1030,417,416,43,1102,1101,1008,1009,0,1350,1349,561,560,0,0,0,0,1012,1011,416,419,43,1002,1084,1038,1001,0,517,1332,1275,454,0,0,0,0,378,995,941,318,43,1003,1060,1087,1005,0,521,1299,1334,518,0,0,0,0,382,965,997,379,43,1118,1102,1009,1017,0,1367,1350,560,562,0,0,0,0,1029,1012,419,420,43,1104,1103,1015,1007,0,1354,1353,564,563,0,0,0,0,1016,1015,422,421,43,1026,1016,1113,1153,0,565,567,1346,1370,0,0,0,0,423,425,1008,1031,43,1154,1153,1113,1114,0,1371,1370,1346,1345,0,0,0,0,1032,1031,1008,1007,43,1115,1155,1154,1114,0,1344,1372,1371,1345,0,0,0,0,1006,1033,1032,1007,43,1156,1155,1115,1116,0,1373,1372,1344,1343,0,0,0,0,1034,1033,1006,1005,43,1117,1157,1156,1116,0,1342,1374,1373,1343,0,0,0,0,1004,1035,1034,1005,43,1157,1117,1118,1158,0,1374,1342,1367,1375,0,0,0,0,1035,1004,1029,1036,43,1158,1118,1017,1025,0,1375,1367,562,573,0,0,0,0,1036,1029,420,431,43,1018,1000,1033,1119,0,574,461,1280,1348,0,0,0,0,432,325,946,1010,43,1113,1016,1018,1119,0,1346,567,574,1348,0,0,0,0,1008,425,432,1010,43,1073,1120,1019,1006,0,1319,1335,520,501,0,0,0,0,982,998,381,362,43,1061,1060,1120,1073,0,1300,1299,1335,1319,0,0,0,0,966,965,998,982,43,1121,1047,1046,1062,0,1306,1288,1287,1376,0,0,0,0,972,954,953,1037,43,1064,1049,1047,1121,0,1305,1291,1288,1306,0,0,0,0,971,957,954,972,43,1100,1101,1063,1122,0,1369,1368,1304,1303,0,0,0,0,1030,1011,970,969,43,1122,1020,1010,1100,0,1303,576,558,1369,0,0,0,0,969,434,417,1030,43,1121,1062,1020,1122,0,1306,1376,576,1303,0,0,0,0,972,1037,434,969,43,1058,1123,1088,1059,0,1301,1377,1333,1302,0,0,0,0,967,1038,996,968,43,1078,1081,1124,1079,0,1322,1326,1378,1323,0,0,0,0,985,989,1039,986,43,1079,1124,1123,1058,0,1323,1378,1377,1301,0,0,0,0,986,1039,1038,967,43,1069,1125,1081,1070,0,1311,1379,1326,1312,0,0,0,0,975,1040,989,976,43,1085,1088,1126,1086,0,1329,1333,1380,1330,0,0,0,0,992,996,1041,993,43,1086,1126,1125,1069,0,1330,1380,1379,1311,0,0,0,0,993,1041,1040,975,43,1123,1128,1127,1088,0,1377,1381,1382,1333,0,0,0,0,1038,1042,1043,996,43,1081,1130,1129,1124,0,1326,1383,1384,1378,0,0,0,0,989,1044,1045,1039,43,1124,1129,1128,1123,0,1378,1384,1381,1377,0,0,0,0,1039,1045,1042,1038,43,1125,1131,1130,1081,0,1379,1385,1383,1326,0,0,0,0,1040,1046,1044,989,43,1088,1127,1132,1126,0,1333,1382,1386,1380,0,0,0,0,996,1043,1047,1041,43,1126,1132,1131,1125,0,1380,1386,1385,1379,0,0,0,0,1041,1047,1046,1040,43,1128,1134,1133,1127,0,1387,1388,1389,1390,0,0,0,0,1042,1048,1049,1043,43,1130,1136,1135,1129,0,1391,1392,1393,1394,0,0,0,0,1044,1050,1051,1045,43,1129,1135,1134,1128,0,1394,1393,1388,1387,0,0,0,0,1045,1051,1048,1042,43,1131,1137,1136,1130,0,1395,1396,1392,1391,0,0,0,0,1046,1052,1050,1044,43,1127,1133,1138,1132,0,1390,1389,1397,1398,0,0,0,0,1043,1049,1053,1047,43,1132,1138,1137,1131,0,1398,1397,1396,1395,0,0,0,0,1047,1053,1052,1046,43,1134,1139,1138,1133,0,1388,1399,1397,1389,0,0,0,0,1048,1054,1053,1049,43,1136,1137,1140,1135,0,1392,1396,1400,1393,0,0,0,0,1050,1052,1055,1051,43,1135,1140,1139,1134,0,1393,1400,1399,1388,0,0,0,0,1051,1055,1054,1048,43,1140,1137,1138,1139,0,1400,1396,1397,1399,0,0,0,0,1055,1052,1053,1054,43,1104,1142,1141,1105,0,1401,1402,1403,1404,0,0,0,0,1016,1056,1057,1013,43,1106,1144,1143,1107,0,1405,1406,1407,1408,0,0,0,0,1017,1058,1059,1018,43,1107,1143,1145,1111,0,1408,1407,1409,1410,0,0,0,0,1018,1059,1060,1027,43,1112,1146,1144,1106,0,1411,1412,1406,1405,0,0,0,0,1025,1061,1058,1017,43,1105,1141,1146,1112,0,1404,1403,1412,1411,0,0,0,0,1013,1057,1061,1025,43,1007,1021,1142,1104,0,613,614,1402,1401,0,0,0,0,421,459,1056,1016,43,1111,1145,1022,1014,0,1410,1409,616,615,0,0,0,0,1027,1060,460,414,43,1142,1148,1147,1141,0,1402,1413,1414,1403,0,0,0,0,1056,1062,1063,1057,43,1144,1150,1149,1143,0,1406,1415,1416,1407,0,0,0,0,1058,1064,1065,1059,43,1143,1149,1151,1145,0,1407,1416,1417,1409,0,0,0,0,1059,1065,1066,1060,43,1146,1152,1150,1144,0,1412,1418,1415,1406,0,0,0,0,1061,1067,1064,1058,43,1141,1147,1152,1146,0,1403,1414,1418,1412,0,0,0,0,1057,1063,1067,1061,43,1021,1023,1148,1142,0,614,623,1413,1402,0,0,0,0,459,467,1062,1056,43,1145,1151,1024,1022,0,1409,1417,624,616,0,0,0,0,1060,1066,468,460,43,1150,1152,1147,1149,0,1415,1418,1414,1416,0,0,0,0,1064,1067,1063,1065,43,1149,1147,1148,1151,0,1416,1414,1413,1417,0,0,0,0,1065,1063,1062,1066,43,1151,1148,1023,1024,0,1417,1413,623,624,0,0,0,0,1066,1062,467,468,43,1098,1099,1153,1154,0,1357,1366,1370,1371,0,0,0,0,1019,1028,1031,1032,43,1155,1096,1098,1154,0,1372,1358,1357,1371,0,0,0,0,1033,1020,1019,1032,43,1094,1096,1155,1156,0,1364,1358,1372,1373,0,0,0,0,1026,1020,1033,1034,43,1157,1095,1094,1156,0,1374,1352,1364,1373,0,0,0,0,1035,1014,1026,1034,43,1095,1157,1158,1103,0,1352,1374,1375,1353,0,0,0,0,1014,1035,1036,1015,43,1103,1158,1025,1015,0,1353,1375,573,564,0,0,0,0,1015,1036,431,422,43,1099,1004,1026,1153,0,1366,553,565,1370,0,0,0,0,1028,413,423,1031,43,1062,1046,1027,1020,0,1376,1287,625,576,0,0,0,0,1037,953,469,434,43,1159,1162,1161,1160,0,1419,1420,1421,1422,0,0,0,0,1068,1069,1070,1071,43,1163,1271,1270,1159,0,1423,1424,1425,1419,0,0,0,0,1072,1073,1074,1068,43,1165,1259,1258,1166,0,1426,1427,1428,1429,0,0,0,0,1075,1076,1077,1078,43,1257,1171,1168,1167,0,1430,1431,1432,1433,0,0,0,0,1079,1080,1081,1082,43,1170,1242,1175,1168,0,1434,1435,1436,1437,0,0,0,0,1083,1084,1085,1081,43,1168,1175,1172,1167,0,1437,1436,1438,1439,0,0,0,0,1081,1085,1086,1082,43,1173,1174,1167,1172,0,1440,1441,1439,1438,0,0,0,0,1087,1088,1082,1086,43,1172,1244,1243,1173,0,1438,1442,1443,1440,0,0,0,0,1086,1089,1090,1087,43,1175,1245,1244,1172,0,1436,1444,1442,1438,0,0,0,0,1085,1091,1089,1086,43,1178,1169,1176,1177,0,1445,1446,1447,1448,0,0,0,0,1092,1093,1094,1095,43,1177,1179,1180,1178,0,1448,1449,1450,1445,0,0,0,0,1095,1096,1097,1092,43,1239,1240,1179,1177,0,1451,1452,1449,1448,0,0,0,0,1098,1099,1096,1095,43,1176,1174,1239,1177,0,1447,1441,1451,1448,0,0,0,0,1094,1088,1098,1095,43,1237,1181,1176,1169,0,1453,1454,1447,1446,0,0,0,0,1100,1101,1094,1093,43,1182,1185,1176,1181,0,1455,1456,1447,1454,0,0,0,0,1102,1103,1094,1101,43,1181,1183,1184,1182,0,1454,1457,1458,1455,0,0,0,0,1101,1104,1105,1102,43,1237,1247,1183,1181,0,1453,1459,1457,1454,0,0,0,0,1100,1106,1104,1101,43,1186,1226,1187,1165,0,1460,1461,1462,1426,0,0,0,0,1107,1108,1109,1075,43,1185,1229,1234,1186,0,1456,1463,1464,1465,0,0,0,0,1103,1110,1111,1107,43,1226,1227,1261,1187,0,1466,1467,1468,1469,0,0,0,0,1108,1112,1113,1109,43,1187,1260,1259,1165,0,1462,1470,1427,1426,0,0,0,0,1109,1114,1076,1075,43,1262,1196,1191,1263,0,1471,1472,1473,1474,0,0,0,0,1115,1116,1117,1118,43,1263,1191,1192,1264,0,1474,1473,1475,1476,0,0,0,0,1118,1117,1119,1120,43,1190,1195,1194,1193,0,1477,1478,1479,1480,0,0,0,0,1121,1122,1123,1124,43,1189,1190,1193,1188,0,1481,1477,1480,1482,0,0,0,0,1125,1121,1124,1126,43,1192,1210,1265,1264,0,1475,1483,1484,1476,0,0,0,0,1119,1127,1128,1120,43,1197,1160,1191,1196,0,1485,1422,1473,1472,0,0,0,0,1129,1071,1117,1116,43,1163,1159,1160,1197,0,1423,1419,1422,1485,0,0,0,0,1072,1068,1071,1129,43,1198,1197,1196,1199,0,1486,1485,1472,1487,0,0,0,0,1130,1129,1116,1131,43,1171,1163,1197,1198,0,1431,1423,1485,1486,0,0,0,0,1080,1072,1129,1130,43,1188,1193,1200,1164,0,1482,1480,1488,1489,0,0,0,0,1126,1124,1132,1133,43,1269,1162,1159,1270,0,1490,1420,1419,1425,0,0,0,0,1134,1069,1068,1074,43,1268,1203,1162,1269,0,1491,1492,1420,1490,0,0,0,0,1135,1136,1069,1134,43,1267,1204,1203,1268,0,1493,1494,1495,1496,0,0,0,0,1137,1138,1136,1135,43,1193,1194,1201,1200,0,1480,1479,1497,1488,0,0,0,0,1124,1123,1139,1132,43,1160,1161,1192,1191,0,1422,1421,1475,1473,0,0,0,0,1071,1070,1119,1117,43,1204,1274,1273,1205,0,1494,1498,1499,1500,0,0,0,0,1138,1140,1141,1142,43,1205,1273,1272,1206,0,1500,1499,1501,1502,0,0,0,0,1142,1141,1143,1144,43,1206,1266,1265,1210,0,1502,1503,1504,1505,0,0,0,0,1144,1145,1128,1127,43,1209,1266,1206,1272,0,1506,1503,1502,1501,0,0,0,0,1146,1145,1144,1143,43,1211,1214,1213,1212,0,1507,1508,1509,1510,0,0,0,0,1147,1148,1149,1150,43,1212,1213,1215,1202,0,1510,1509,1511,1512,0,0,0,0,1150,1149,1151,1152,43,1195,1211,1212,1194,0,1513,1507,1510,1514,0,0,0,0,1122,1147,1150,1123,43,1207,1213,1214,1209,0,1515,1516,1517,1506,0,0,0,0,1153,1149,1148,1146,43,1227,1222,1218,1217,0,1518,1519,1520,1521,0,0,0,0,1112,1154,1155,1156,43,1219,1186,1217,1218,0,1522,1465,1521,1520,0,0,0,0,1157,1107,1156,1155,43,1218,1225,1220,1219,0,1520,1523,1524,1522,0,0,0,0,1155,1158,1159,1157,43,1221,1223,1219,1220,0,1525,1526,1522,1524,0,0,0,0,1160,1161,1157,1159,43,1220,1225,1224,1221,0,1524,1523,1527,1525,0,0,0,0,1159,1158,1162,1160,43,1224,1222,1223,1221,0,1527,1519,1528,1525,0,0,0,0,1162,1154,1161,1160,43,1218,1222,1224,1225,0,1520,1519,1527,1523,0,0,0,0,1155,1154,1162,1158,43,1223,1226,1186,1219,0,1526,1529,1465,1522,0,0,0,0,1161,1108,1107,1157,43,1223,1222,1227,1226,0,1528,1519,1518,1530,0,0,0,0,1161,1154,1112,1108,43,1186,1234,1235,1217,0,1465,1464,1531,1521,0,0,0,0,1107,1111,1163,1156,43,1217,1235,1228,1216,0,1521,1531,1532,1533,0,0,0,0,1156,1163,1164,1165,43,1185,1216,1228,1229,0,1456,1533,1532,1463,0,0,0,0,1103,1165,1164,1110,43,1228,1231,1230,1229,0,1532,1534,1535,1463,0,0,0,0,1164,1166,1167,1110,43,1233,1234,1229,1230,0,1536,1464,1463,1535,0,0,0,0,1168,1111,1110,1167,43,1232,1233,1230,1231,0,1537,1536,1535,1534,0,0,0,0,1169,1168,1167,1166,43,1235,1232,1231,1228,0,1531,1537,1534,1532,0,0,0,0,1163,1169,1166,1164,43,1233,1232,1235,1234,0,1536,1537,1531,1464,0,0,0,0,1168,1169,1163,1111,43,1216,1236,1237,1169,0,1533,1538,1453,1446,0,0,0,0,1165,1170,1100,1093,43,1216,1185,1182,1236,0,1533,1456,1455,1538,0,0,0,0,1165,1103,1102,1170,43,1184,1248,1236,1182,0,1458,1539,1538,1455,0,0,0,0,1105,1171,1170,1102,43,1208,1274,1204,1267,0,1540,1498,1494,1493,0,0,0,0,1172,1140,1138,1137,43,1207,1208,1215,1213,0,1515,1540,1541,1516,0,0,0,0,1153,1172,1151,1149,43,1194,1212,1202,1201,0,1514,1510,1512,1542,0,0,0,0,1123,1150,1152,1139,43,1178,1238,1170,1169,0,1445,1543,1434,1446,0,0,0,0,1092,1173,1083,1093,43,1239,1174,1170,1238,0,1451,1441,1434,1543,0,0,0,0,1098,1088,1083,1173,43,1238,1241,1240,1239,0,1543,1544,1452,1451,0,0,0,0,1173,1174,1099,1098,43,1179,1240,1241,1180,0,1449,1452,1544,1450,0,0,0,0,1096,1099,1174,1097,43,1180,1241,1238,1178,0,1450,1544,1543,1445,0,0,0,0,1097,1174,1173,1092,43,1173,1242,1170,1174,0,1440,1435,1434,1441,0,0,0,0,1087,1084,1083,1088,43,1242,1246,1245,1175,0,1435,1545,1444,1436,0,0,0,0,1084,1175,1091,1085,43,1173,1243,1246,1242,0,1440,1443,1545,1435,0,0,0,0,1087,1090,1175,1084,43,1244,1245,1246,1243,0,1442,1444,1545,1443,0,0,0,0,1089,1091,1175,1090,43,1236,1248,1247,1237,0,1538,1539,1459,1453,0,0,0,0,1170,1171,1106,1100,43,1183,1247,1248,1184,0,1457,1459,1539,1458,0,0,0,0,1104,1106,1171,1105,43,1161,1250,1249,1192,0,1421,1546,1547,1475,0,0,0,0,1070,1176,1177,1119,43,1203,1252,1251,1162,0,1492,1548,1549,1420,0,0,0,0,1136,1178,1179,1069,43,1205,1254,1253,1204,0,1500,1550,1551,1494,0,0,0,0,1142,1180,1181,1138,43,1206,1255,1254,1205,0,1502,1552,1550,1500,0,0,0,0,1144,1182,1180,1142,43,1204,1253,1252,1203,0,1494,1551,1553,1495,0,0,0,0,1138,1181,1178,1136,43,1162,1251,1250,1161,0,1420,1549,1546,1421,0,0,0,0,1069,1179,1176,1070,43,1210,1256,1255,1206,0,1505,1554,1552,1502,0,0,0,0,1127,1183,1182,1144,43,1192,1249,1256,1210,0,1475,1547,1555,1483,0,0,0,0,1119,1177,1183,1127,43,1199,1217,1216,1198,0,1487,1556,1557,1486,0,0,0,0,1131,1156,1165,1130,43,1170,1168,1171,1198,0,1558,1432,1431,1486,0,0,0,0,1083,1081,1080,1130,43,1171,1257,1271,1163,0,1431,1430,1424,1423,0,0,0,0,1080,1079,1073,1072,43,1259,1188,1164,1258,0,1427,1482,1489,1428,0,0,0,0,1076,1126,1133,1077,43,1260,1189,1188,1259,0,1470,1481,1482,1427,0,0,0,0,1114,1125,1126,1076,43,1261,1199,1196,1262,0,1468,1487,1472,1471,0,0,0,0,1113,1131,1116,1115,43,1169,1170,1198,1216,0,1559,1558,1486,1557,0,0,0,0,1093,1083,1130,1165,43,1199,1261,1227,1217,0,1487,1468,1467,1556,0,0,0,0,1131,1113,1112,1156,43,1261,1262,1260,1187,0,1468,1471,1560,1469,0,0,0,0,1113,1115,1114,1109,43,1260,1262,1263,1189,0,1560,1471,1474,1561,0,0,0,0,1114,1115,1118,1125,43,1189,1263,1264,1190,0,1561,1474,1476,1562,0,0,0,0,1125,1118,1120,1121,43,1265,1195,1190,1264,0,1484,1563,1562,1476,0,0,0,0,1128,1122,1121,1120,43,1266,1211,1195,1265,0,1503,1564,1565,1504,0,0,0,0,1145,1147,1122,1128,43,1266,1209,1214,1211,0,1503,1506,1517,1564,0,0,0,0,1145,1146,1148,1147,43,1215,1208,1267,1202,0,1541,1540,1493,1566,0,0,0,0,1151,1172,1137,1152,43,1202,1267,1268,1201,0,1566,1493,1496,1567,0,0,0,0,1152,1137,1135,1139,43,1201,1268,1269,1200,0,1568,1491,1490,1569,0,0,0,0,1139,1135,1134,1132,43,1200,1269,1270,1164,0,1569,1490,1425,1570,0,0,0,0,1132,1134,1074,1133,43,1271,1258,1164,1270,0,1424,1571,1570,1425,0,0,0,0,1073,1077,1133,1074,43,1258,1271,1257,1166,0,1571,1424,1430,1572,0,0,0,0,1077,1073,1079,1078,43,1273,1207,1209,1272,0,1499,1515,1506,1501,0,0,0,0,1141,1153,1146,1143,43,1274,1208,1207,1273,0,1498,1540,1515,1499,0,0,0,0,1140,1172,1153,1141,43,1165,1166,1174,1176,0,1426,1429,1573,1574,0,0,0,0,1075,1078,1088,1094,43,1185,1186,1165,1176,0,1575,1460,1426,1574,0,0,0,0,1103,1107,1075,1094,43,1166,1257,1167,1174,0,1572,1430,1433,1576,0,0,0,0,1078,1079,1082,1088,43,1294,1295,1296,1293,0,1577,1578,1579,1580,0,0,0,0,1184,1185,1186,1187,43,1027,1046,1299,1030,0,625,1287,1581,812,0,0,0,0,469,953,1188,590,43,1028,1284,1297,1029,0,814,1582,1583,815,0,0,0,0,592,1189,1190,593,43,1044,1043,1297,1298,0,1290,1584,1583,1585,0,0,0,0,956,1191,1190,1192,43,1299,1283,1285,1030,0,1581,1586,820,812,0,0,0,0,1188,1193,598,590,43,1046,1044,1298,1299,0,1287,1290,1585,1581,0,0,0,0,953,956,1192,1188,43,1298,1286,1283,1299,0,1585,1587,1586,1581,0,0,0,0,1192,1194,1193,1188,43,1297,1284,1286,1298,0,1583,1582,1587,1585,0,0,0,0,1190,1189,1194,1192,43,1288,1413,1414,1287,0,1588,1589,1590,1591,0,0,0,0,1195,1196,1197,1198,43,1291,1410,1411,1290,0,1592,1593,1594,1595,0,0,0,0,1199,1200,1201,1202,43,1250,1287,1289,1249,0,1546,1591,1596,1547,0,0,0,0,1176,1198,1203,1177,43,1253,1291,1290,1252,0,1551,1592,1595,1553,0,0,0,0,1181,1199,1202,1178,43,1293,1296,1409,1292,0,1580,1579,1597,1598,0,0,0,0,1187,1186,1204,1205,43,1289,1412,1295,1294,0,1596,1599,1600,1601,0,0,0,0,1203,1206,1185,1184,43,1252,1290,1288,1251,0,1548,1602,1588,1549,0,0,0,0,1178,1202,1195,1179,43,1255,1293,1292,1254,0,1552,1580,1598,1550,0,0,0,0,1182,1187,1205,1180,43,1254,1292,1291,1253,0,1550,1598,1592,1551,0,0,0,0,1180,1205,1199,1181,43,1249,1289,1294,1256,0,1547,1596,1601,1555,0,0,0,0,1177,1203,1184,1183,43,1256,1294,1293,1255,0,1554,1577,1580,1552,0,0,0,0,1183,1184,1187,1182,43,1287,1414,1412,1289,0,1591,1590,1599,1596,0,0,0,0,1198,1197,1206,1203,43,1292,1409,1410,1291,0,1598,1597,1593,1592,0,0,0,0,1205,1204,1200,1199,43,1290,1411,1413,1288,0,1602,1603,1589,1588,0,0,0,0,1202,1201,1196,1195,43,1304,1315,1310,1303,0,1604,1605,1606,1607,0,0,0,0,1207,1208,1209,1210,43,1312,1300,1301,1393,0,1608,1609,1610,1611,0,0,0,0,1211,1212,1213,1214,43,1314,1392,1315,1304,0,1612,1613,1605,1604,0,0,0,0,1215,1216,1208,1207,43,1317,1316,1391,1313,0,1614,1615,1616,1617,0,0,0,0,1217,1218,1219,1220,43,1316,1318,1392,1391,0,1615,1618,1613,1616,0,0,0,0,1218,1221,1216,1219,43,1318,1319,1315,1392,0,1618,1619,1605,1613,0,0,0,0,1221,1222,1208,1216,43,1319,1317,1313,1315,0,1619,1614,1617,1605,0,0,0,0,1222,1217,1220,1208,43,1321,1320,1316,1317,0,1620,1621,1615,1614,0,0,0,0,1223,1224,1218,1217,43,1320,1322,1318,1316,0,1621,1622,1618,1615,0,0,0,0,1224,1225,1221,1218,43,1322,1323,1319,1318,0,1622,1623,1619,1618,0,0,0,0,1225,1226,1222,1221,43,1323,1321,1317,1319,0,1623,1620,1614,1619,0,0,0,0,1226,1223,1217,1222,43,1325,1324,1320,1321,0,1624,1625,1621,1620,0,0,0,0,1227,1228,1224,1223,43,1324,1326,1322,1320,0,1625,1626,1622,1621,0,0,0,0,1228,1229,1225,1224,43,1326,1327,1323,1322,0,1626,1627,1623,1622,0,0,0,0,1229,1230,1226,1225,43,1327,1325,1321,1323,0,1627,1624,1620,1623,0,0,0,0,1230,1227,1223,1226,43,1329,1328,1324,1325,0,1628,1629,1625,1624,0,0,0,0,1231,1232,1228,1227,43,1328,1330,1326,1324,0,1629,1630,1626,1625,0,0,0,0,1232,1233,1229,1228,43,1330,1331,1327,1326,0,1630,1631,1627,1626,0,0,0,0,1233,1234,1230,1229,43,1331,1329,1325,1327,0,1631,1628,1624,1627,0,0,0,0,1234,1231,1227,1230,43,1328,1329,1331,1330,0,1629,1628,1631,1630,0,0,0,0,1232,1231,1234,1233,43,1333,1337,1336,1332,0,1632,1633,1634,1635,0,0,0,0,1235,1236,1237,1238,43,1332,1313,1308,1333,0,1635,1617,1636,1632,0,0,0,0,1238,1220,1239,1235,43,1336,1338,1334,1332,0,1634,1637,1638,1635,0,0,0,0,1237,1240,1241,1238,43,1332,1334,1315,1313,0,1635,1638,1605,1617,0,0,0,0,1238,1241,1208,1220,43,1334,1338,1339,1335,0,1638,1637,1639,1640,0,0,0,0,1241,1240,1242,1243,43,1335,1310,1315,1334,0,1640,1606,1605,1638,0,0,0,0,1243,1209,1208,1241,43,1339,1337,1333,1335,0,1639,1633,1632,1640,0,0,0,0,1242,1236,1235,1243,43,1335,1333,1308,1310,0,1640,1632,1636,1606,0,0,0,0,1243,1235,1239,1209,43,1337,1341,1340,1336,0,1633,1641,1642,1634,0,0,0,0,1236,1244,1245,1237,43,1340,1342,1338,1336,0,1642,1643,1637,1634,0,0,0,0,1245,1246,1240,1237,43,1338,1342,1343,1339,0,1637,1643,1644,1639,0,0,0,0,1240,1246,1247,1242,43,1343,1341,1337,1339,0,1644,1641,1633,1639,0,0,0,0,1247,1244,1236,1242,43,1344,1340,1341,1345,0,1645,1642,1641,1646,0,0,0,0,1248,1245,1244,1249,43,1344,1346,1342,1340,0,1645,1647,1643,1642,0,0,0,0,1248,1250,1246,1245,43,1347,1343,1342,1346,0,1648,1644,1643,1647,0,0,0,0,1251,1247,1246,1250,43,1347,1345,1341,1343,0,1648,1646,1641,1644,0,0,0,0,1251,1249,1244,1247,43,1344,1345,1347,1346,0,1645,1646,1648,1647,0,0,0,0,1248,1249,1251,1250,43,1348,1395,1305,1306,0,1649,1650,1651,1652,0,0,0,0,1252,1253,1254,1255,43,1311,1350,1348,1306,0,1653,1654,1649,1652,0,0,0,0,1256,1257,1252,1255,43,1351,1353,1350,1349,0,1655,1656,1654,1657,0,0,0,0,1258,1259,1257,1260,43,1353,1354,1348,1350,0,1656,1658,1649,1654,0,0,0,0,1259,1261,1252,1257,43,1354,1352,1395,1348,0,1658,1659,1650,1649,0,0,0,0,1261,1262,1253,1252,43,1351,1352,1408,1407,0,1655,1659,1660,1661,0,0,0,0,1258,1262,1263,1264,43,1353,1351,1407,1406,0,1656,1655,1661,1662,0,0,0,0,1259,1258,1264,1265,43,1354,1353,1406,1405,0,1658,1656,1662,1663,0,0,0,0,1261,1259,1265,1266,43,1352,1354,1405,1408,0,1659,1658,1663,1660,0,0,0,0,1262,1261,1266,1263,43,1355,1407,1408,1356,0,1664,1661,1660,1665,0,0,0,0,1267,1264,1263,1268,43,1357,1406,1407,1355,0,1666,1662,1661,1664,0,0,0,0,1269,1265,1264,1267,43,1358,1405,1406,1357,0,1667,1663,1662,1666,0,0,0,0,1270,1266,1265,1269,43,1408,1405,1358,1356,0,1660,1663,1667,1665,0,0,0,0,1263,1266,1270,1268,43,1355,1356,1358,1357,0,1664,1665,1667,1666,0,0,0,0,1267,1268,1270,1269,43,1364,1363,1359,1360,0,1668,1669,1670,1671,0,0,0,0,1271,1272,1273,1274,43,1360,1359,1309,1349,0,1671,1670,1672,1657,0,0,0,0,1274,1273,1275,1260,43,1363,1365,1361,1359,0,1669,1673,1674,1670,0,0,0,0,1272,1276,1277,1273,43,1359,1361,1311,1309,0,1670,1674,1653,1672,0,0,0,0,1273,1277,1256,1275,43,1365,1366,1362,1361,0,1673,1675,1676,1674,0,0,0,0,1276,1278,1279,1277,43,1361,1362,1350,1311,0,1674,1676,1654,1653,0,0,0,0,1277,1279,1257,1256,43,1366,1364,1360,1362,0,1675,1668,1671,1676,0,0,0,0,1278,1271,1274,1279,43,1362,1360,1349,1350,0,1676,1671,1657,1654,0,0,0,0,1279,1274,1260,1257,43,1368,1367,1363,1364,0,1677,1678,1669,1668,0,0,0,0,1280,1281,1272,1271,43,1367,1369,1365,1363,0,1678,1679,1673,1669,0,0,0,0,1281,1282,1276,1272,43,1369,1370,1366,1365,0,1679,1680,1675,1673,0,0,0,0,1282,1283,1278,1276,43,1370,1368,1364,1366,0,1680,1677,1668,1675,0,0,0,0,1283,1280,1271,1278,43,1372,1371,1367,1368,0,1681,1682,1678,1677,0,0,0,0,1284,1285,1281,1280,43,1371,1373,1369,1367,0,1682,1683,1679,1678,0,0,0,0,1285,1286,1282,1281,43,1373,1374,1370,1369,0,1683,1684,1680,1679,0,0,0,0,1286,1287,1283,1282,43,1374,1372,1368,1370,0,1684,1681,1677,1680,0,0,0,0,1287,1284,1280,1283,43,1371,1372,1374,1373,0,1682,1681,1684,1683,0,0,0,0,1285,1284,1287,1286,43,1380,1379,1375,1376,0,1685,1686,1687,1688,0,0,0,0,1288,1289,1290,1291,43,1376,1375,1308,1309,0,1688,1687,1636,1672,0,0,0,0,1291,1290,1239,1275,43,1379,1381,1377,1375,0,1686,1689,1690,1687,0,0,0,0,1289,1292,1293,1290,43,1375,1377,1310,1308,0,1687,1690,1606,1636,0,0,0,0,1290,1293,1209,1239,43,1381,1382,1378,1377,0,1689,1691,1692,1690,0,0,0,0,1292,1294,1295,1293,43,1377,1378,1311,1310,0,1690,1692,1653,1606,0,0,0,0,1293,1295,1256,1209,43,1382,1380,1376,1378,0,1691,1685,1688,1692,0,0,0,0,1294,1288,1291,1295,43,1378,1376,1309,1311,0,1692,1688,1672,1653,0,0,0,0,1295,1291,1275,1256,43,1384,1383,1379,1380,0,1693,1694,1686,1685,0,0,0,0,1296,1297,1289,1288,43,1383,1385,1381,1379,0,1694,1695,1689,1686,0,0,0,0,1297,1298,1292,1289,43,1385,1386,1382,1381,0,1695,1696,1691,1689,0,0,0,0,1298,1299,1294,1292,43,1386,1384,1380,1382,0,1696,1693,1685,1691,0,0,0,0,1299,1296,1288,1294,43,1388,1387,1383,1384,0,1697,1698,1694,1693,0,0,0,0,1300,1301,1297,1296,43,1387,1389,1385,1383,0,1698,1699,1695,1694,0,0,0,0,1301,1302,1298,1297,43,1389,1390,1386,1385,0,1699,1700,1696,1695,0,0,0,0,1302,1303,1299,1298,43,1390,1388,1384,1386,0,1700,1697,1693,1696,0,0,0,0,1303,1300,1296,1299,43,1387,1388,1390,1389,0,1698,1697,1700,1699,0,0,0,0,1301,1300,1303,1302,43,1392,1314,1312,1391,0,1613,1612,1608,1616,0,0,0,0,1216,1215,1211,1219,43,1310,1311,1306,1303,0,1606,1653,1652,1607,0,0,0,0,1209,1256,1255,1210,43,1396,1400,1399,1398,0,1701,1702,1703,1704,0,0,0,0,1304,1305,1306,1307,43,1300,1312,1314,1304,0,1609,1608,1612,1604,0,0,0,0,1212,1211,1215,1207,43,1313,1391,1401,1402,0,1617,1616,1705,1706,0,0,0,0,1220,1219,1308,1309,43,1302,1394,1393,1301,0,1707,1708,1611,1610,0,0,0,0,1310,1311,1214,1213,43,1313,1402,1399,1308,0,1617,1706,1703,1636,0,0,0,0,1220,1309,1306,1239,43,1395,1397,1307,1305,0,1650,1709,1710,1651,0,0,0,0,1253,1312,1313,1254,43,1396,1397,1395,1352,0,1701,1709,1650,1659,0,0,0,0,1304,1312,1253,1262,43,1397,1394,1302,1307,0,1711,1708,1707,1712,0,0,0,0,1312,1311,1310,1313,43,1397,1396,1398,1394,0,1711,1701,1704,1708,0,0,0,0,1312,1304,1307,1311,43,1309,1308,1399,1400,0,1672,1636,1703,1702,0,0,0,0,1275,1239,1306,1305,43,1349,1309,1400,1403,0,1657,1672,1702,1713,0,0,0,0,1260,1275,1305,1314,43,1401,1393,1394,1398,0,1705,1611,1708,1704,0,0,0,0,1308,1214,1311,1307,43,1391,1312,1393,1401,0,1616,1608,1611,1705,0,0,0,0,1219,1211,1214,1308,43,1402,1401,1398,1399,0,1706,1705,1704,1703,0,0,0,0,1309,1308,1307,1306,43,1303,1275,1276,1304,0,1607,1714,1715,1604,0,0,0,0,1210,1315,1316,1207,43,1304,1276,1277,1300,0,1604,1715,1716,1609,0,0,0,0,1207,1316,1317,1212,43,1300,1277,1278,1301,0,1609,1716,1717,1610,0,0,0,0,1212,1317,1318,1213,43,1301,1278,1279,1302,0,1610,1717,1718,1707,0,0,0,0,1213,1318,1319,1310,43,1280,1307,1302,1279,0,1719,1712,1707,1718,0,0,0,0,1320,1313,1310,1319,43,1307,1280,1281,1305,0,1710,1720,1721,1651,0,0,0,0,1313,1320,1321,1254,43,1305,1281,1282,1306,0,1651,1721,1722,1652,0,0,0,0,1254,1321,1322,1255,43,1306,1282,1275,1303,0,1652,1722,1714,1607,0,0,0,0,1255,1322,1315,1210,43,1352,1351,1404,1396,0,1659,1655,1723,1701,0,0,0,0,1262,1258,1323,1304,43,1396,1404,1403,1400,0,1701,1723,1713,1702,0,0,0,0,1304,1323,1314,1305,43,1404,1351,1349,1403,0,1723,1655,1657,1713,0,0,0,0,1323,1258,1260,1314,43,1251,1288,1287,1250,0,1549,1588,1591,1546,0,0,0,0,1179,1195,1198,1176,43,1425,1428,1417,1416,0,1724,1725,1726,1727,0,0,0,0,1324,1325,1326,1327,43,1428,1431,1418,1417,0,1728,1729,1730,1731,0,0,0,0,1325,1328,1329,1326,43,1431,1434,1419,1418,0,1729,1732,1733,1730,0,0,0,0,1328,1330,1331,1329,43,1434,1461,1458,1419,0,1732,1734,1735,1733,0,0,0,0,1330,1332,1333,1331,43,1461,1437,1421,1458,0,1734,1736,1737,1735,0,0,0,0,1332,742,741,1333,43,1462,1433,1430,1467,0,1738,1739,1740,1741,0,0,0,0,1334,1335,1336,1337,43,1459,1439,1438,1460,0,1742,1743,1744,1745,0,0,0,0,1338,750,749,1339,43,1460,1438,1437,1461,0,1745,1744,1736,1734,0,0,0,0,1339,749,742,1332,43,1436,1459,1460,1435,0,1746,1742,1745,1747,0,0,0,0,1340,1338,1339,1341,43,1435,1460,1461,1434,0,1747,1745,1734,1732,0,0,0,0,1341,1339,1332,1330,43,1433,1436,1435,1432,0,1739,1746,1747,1748,0,0,0,0,1335,1340,1341,1342,43,1432,1435,1434,1431,0,1748,1747,1732,1729,0,0,0,0,1342,1341,1330,1328,43,1430,1433,1432,1429,0,1740,1739,1748,1749,0,0,0,0,1336,1335,1342,1343,43,1429,1432,1431,1428,0,1749,1748,1729,1728,0,0,0,0,1343,1342,1328,1325,43,1484,1483,1422,1468,0,1750,1751,1752,1753,0,0,0,0,849,1344,756,755,43,1427,1430,1429,1426,0,1754,1755,1756,1757,0,0,0,0,1345,1336,1343,1346,43,1426,1429,1428,1425,0,1757,1756,1725,1724,0,0,0,0,1346,1343,1325,1324,43,1442,1443,1427,1426,0,1758,1759,1754,1757,0,0,0,0,1347,1348,1345,1346,43,1482,1483,1443,1442,0,1760,1751,1759,1758,0,0,0,0,1349,1344,1348,1347,43,1481,1482,1442,1441,0,1761,1760,1758,1762,0,0,0,0,1350,1349,1347,1351,43,1467,1430,1427,1463,0,1763,1755,1754,1764,0,0,0,0,1337,1336,1345,1352,43,1444,1445,1417,1418,0,1765,1766,1767,1768,0,0,0,0,1353,1354,1326,1329,43,1445,1446,1416,1417,0,1769,1770,1771,1772,0,0,0,0,1354,1355,1327,1326,43,1295,1412,1446,1445,0,1773,1774,1770,1769,0,0,0,0,1185,1206,1355,1354,43,1296,1295,1445,1444,0,1775,1776,1766,1765,0,0,0,0,1186,1185,1354,1353,43,1447,1409,1296,1444,0,1777,1778,1775,1765,0,0,0,0,1356,1204,1186,1353,43,1419,1447,1444,1418,0,1779,1777,1765,1768,0,0,0,0,1331,1356,1353,1329,43,995,997,975,1457,0,1269,1273,1258,1147,0,0,0,0,938,940,931,846,43,1478,1413,1411,1477,0,1780,1781,1782,1783,0,0,0,0,1357,1196,1201,1358,43,1451,1414,1413,1478,0,1784,1785,1781,1780,0,0,0,0,1359,1197,1196,1357,43,1457,1456,903,995,0,1147,1146,1270,1269,0,0,0,0,846,211,312,938,43,1414,1451,1446,1412,0,1785,1784,1770,1774,0,0,0,0,1197,1359,1355,1206,42,1449,1451,1478,0,1786,1784,1780,0,0,0,1360,1359,1357,43,1415,1420,1449,1453,0,1787,1788,1786,1789,0,0,0,0,774,1361,1360,775,43,1450,1454,1453,1449,0,1790,1791,1789,1786,0,0,0,0,1362,778,775,1360,43,1450,1455,1452,1454,0,1792,1793,1794,1795,0,0,0,0,1362,1363,779,778,43,1440,1441,1425,1416,0,1796,1762,1724,1727,0,0,0,0,1364,1351,1324,1327,43,1462,1466,1436,1433,0,1738,1797,1746,1739,0,0,0,0,1334,1365,1340,1335,43,1419,1458,1455,1447,0,1779,1798,1793,1777,0,0,0,0,1331,1333,1363,1356,43,1421,1452,1455,1458,0,1799,1794,1793,1798,0,0,0,0,741,779,1363,1333,43,1441,1442,1426,1425,0,1762,1758,1757,1724,0,0,0,0,1351,1347,1346,1324,43,1465,1463,1427,1443,0,1800,1764,1754,1759,0,0,0,0,848,1352,1345,1348,43,968,1466,1462,900,0,1265,1801,1802,1263,0,0,0,0,935,1365,1334,934,43,969,1467,1463,964,0,1261,1803,1804,1262,0,0,0,0,932,1337,1352,933,43,900,1462,1467,969,0,1263,1802,1805,1264,0,0,0,0,934,1334,1337,932,43,964,1463,1465,967,0,1262,1804,1149,1148,0,0,0,0,933,1352,848,847,43,1479,1484,1468,974,0,1139,1150,1806,1140,0,0,0,0,842,849,755,203,43,1469,1476,1466,968,0,1102,1101,1801,1265,0,0,0,0,820,819,1365,935,43,896,1473,1474,901,0,1164,1163,1175,1807,0,0,0,0,231,862,871,783,43,894,1471,1472,897,0,1143,1142,1166,1165,0,0,0,0,210,844,863,230,43,915,1473,1472,919,0,1173,1163,1166,1168,0,0,0,0,870,862,863,865,43,971,1471,1470,972,0,1167,1142,1145,1161,0,0,0,0,864,844,845,860,43,865,893,892,871,0,1808,1141,1132,1131,0,0,0,0,784,843,838,198,43,1474,991,876,893,0,1809,1135,1126,1141,0,0,0,0,871,840,836,843,43,893,865,901,1474,0,1141,1808,1810,1809,0,0,0,0,843,784,783,871,43,1459,1476,1464,1439,0,1742,1811,1812,1743,0,0,0,0,1338,819,175,750,43,1466,1476,1459,1436,0,1797,1811,1742,1746,0,0,0,0,1365,819,1338,1340,43,1416,1446,1451,1440,0,1771,1770,1784,1813,0,0,0,0,1327,1355,1359,1364,43,972,1470,1475,970,0,1161,1145,1266,1162,0,0,0,0,860,845,936,861,43,1410,1409,1447,1448,0,1814,1778,1777,1815,0,0,0,0,1200,1204,1356,1366,43,1477,1411,1410,1448,0,1816,1817,1814,1815,0,0,0,0,1358,1201,1200,1366,43,1478,1477,1450,1449,0,1780,1783,1790,1786,0,0,0,0,1357,1358,1362,1360,43,1424,1423,1482,1481,0,1818,1819,1760,1761,0,0,0,0,786,787,1349,1350,43,1423,1422,1483,1482,0,1819,1752,1751,1760,0,0,0,0,787,756,1344,1349,43,1465,1443,1483,1484,0,1800,1759,1751,1750,0,0,0,0,848,1348,1344,849,43,1415,1424,1481,1420,0,1820,1818,1761,1821,0,0,0,0,774,786,1350,1361,43,1420,1481,1441,1440,0,1821,1761,1762,1796,0,0,0,0,1361,1350,1351,1364,43,1477,1448,1455,1450,0,1816,1815,1793,1792,0,0,0,0,1358,1366,1363,1362,42,1455,1448,1447,0,1793,1815,1777,0,0,0,1363,1366,1356,43,1420,1440,1451,1449,0,1788,1813,1784,1786,0,0,0,0,1361,1364,1359,1360,43,905,1275,1282,912,0,1250,1822,1823,1253,0,0,0,0,924,1315,1322,927,43,906,1276,1275,905,0,1251,1824,1822,1250,0,0,0,0,925,1316,1315,924,43,907,1277,1276,906,0,1247,1825,1824,1251,0,0,0,0,921,1317,1316,925,43,908,1278,1277,907,0,1248,1826,1825,1247,0,0,0,0,922,1318,1317,921,43,909,1279,1278,908,0,1249,1827,1826,1248,0,0,0,0,923,1319,1318,922,43,910,1280,1279,909,0,1254,1828,1827,1249,0,0,0,0,928,1320,1319,923,43,911,1281,1280,910,0,1252,1829,1830,1255,0,0,0,0,926,1321,1320,928,43,912,1282,1281,911,0,1253,1823,1829,1252,0,0,0,0,927,1322,1321,926,43,940,939,923,924,0,1206,1213,1214,1207,0,0,0,0,892,895,876,875,43,953,947,948,954,0,1239,1238,1228,1241,0,0,0,0,914,913,904,916,43,895,899,1475,1470,0,1144,1268,1266,1145,0,0,0,0,209,308,936,845,43,900,962,970,968,0,1263,1158,1162,1265,0,0,0,0,934,857,861,935,43,976,997,995,994,0,1267,1273,1269,1272,0,0,0,0,937,940,938,939,43,938,918,917,936,0,1204,1260,1153,1152,0,0,0,0,854,856,852,851,43,143,180,182,183,0,1831,1832,1833,1834,0,0,0,0,1367,167,1368,1369,43,145,181,148,185,0,1835,1836,1837,1838,0,0,0,0,1370,1371,1372,1373,43,144,143,183,184,0,1839,1831,1834,1840,0,0,0,0,1374,1367,1369,1375,43,180,179,147,182,0,269,268,1841,1842,0,0,0,0,167,166,1376,1368,43,146,145,185,186,0,1843,1835,1838,1844,0,0,0,0,1377,1370,1373,1378,43,181,144,184,148,0,1836,1839,1840,1837,0,0,0,0,1371,1374,1375,1372,43,185,148,151,152,0,1838,1837,1845,1846,0,0,0,0,1373,1372,1379,1380,43,184,183,188,150,0,1840,1834,1847,1848,0,0,0,0,1375,1369,1381,1382,43,182,147,187,149,0,1842,1841,1849,1850,0,0,0,0,1368,1376,1383,1384,43,186,185,152,189,0,1844,1838,1846,1851,0,0,0,0,1378,1373,1380,1385,43,148,184,150,151,0,1837,1840,1848,1845,0,0,0,0,1372,1375,1382,1379,43,183,182,149,188,0,1834,1833,1852,1847,0,0,0,0,1369,1368,1384,1381,43,189,152,193,194,0,1851,1846,1853,1854,0,0,0,0,1385,1380,1386,1387,43,151,150,192,154,0,1845,1848,1855,1856,0,0,0,0,1379,1382,1388,1389,43,188,149,153,191,0,1847,1852,1857,1858,0,0,0,0,1381,1384,1390,1391,43,152,151,154,193,0,1846,1845,1856,1853,0,0,0,0,1380,1379,1389,1386,43,150,188,191,192,0,1848,1847,1858,1855,0,0,0,0,1382,1381,1391,1388,43,149,187,190,153,0,1850,1849,1859,1860,0,0,0,0,1384,1383,1392,1390,43,154,192,156,197,0,1856,1855,1861,1862,0,0,0,0,1389,1388,1393,1394,43,191,153,195,196,0,1858,1857,1863,1864,0,0,0,0,1391,1390,1395,1396,43,193,154,197,157,0,1853,1856,1862,1865,0,0,0,0,1386,1389,1394,1397,43,192,191,196,156,0,1855,1858,1864,1861,0,0,0,0,1388,1391,1396,1393,43,153,190,155,195,0,1860,1859,241,1866,0,0,0,0,1390,1392,143,1395,43,194,193,157,158,0,1854,1853,1865,1867,0,0,0,0,1387,1386,1397,1398,43,157,197,199,200,0,1865,1862,1868,1869,0,0,0,0,1397,1394,1399,1400,43,156,196,161,162,0,1861,1864,1870,1871,0,0,0,0,1393,1396,1401,1402,43,195,155,160,198,0,1866,241,243,1872,0,0,0,0,1395,143,145,1403,43,158,157,200,163,0,1867,1865,1869,1873,0,0,0,0,1398,1397,1400,1404,43,197,156,162,199,0,1862,1861,1871,1868,0,0,0,0,1394,1393,1402,1399,43,196,195,198,161,0,1864,1863,1874,1870,0,0,0,0,1396,1395,1403,1401,43,162,161,201,166,0,1871,1870,1875,1876,0,0,0,0,1402,1401,1405,1406,43,198,160,164,165,0,1872,243,244,1877,0,0,0,0,1403,145,146,1407,43,163,200,202,168,0,1873,1869,1878,1879,0,0,0,0,1404,1400,1408,1409,43,199,162,166,167,0,1868,1871,1876,1880,0,0,0,0,1399,1402,1406,1410,43,161,198,165,201,0,1870,1874,1881,1875,0,0,0,0,1401,1403,1407,1405,43,200,199,167,202,0,1869,1868,1880,1878,0,0,0,0,1400,1399,1410,1408,43,168,202,172,205,0,1879,1882,1883,1884,0,0,0,0,1409,1408,1411,1412,43,167,166,204,171,0,1885,1886,1887,1888,0,0,0,0,1410,1406,1413,1414,43,201,165,203,170,0,1889,1890,1891,1892,0,0,0,0,1405,1407,1415,1416,43,202,167,171,172,0,1882,1885,1888,1883,0,0,0,0,1408,1410,1414,1411,43,166,201,170,204,0,1886,1889,1892,1887,0,0,0,0,1406,1405,1416,1413,43,165,164,169,203,0,1893,245,246,1894,0,0,0,0,1407,146,147,1415,43,170,203,206,207,0,1892,1891,254,249,0,0,0,0,1416,1415,155,150,43,172,171,209,174,0,1883,1888,252,1895,0,0,0,0,1411,1414,153,1417,43,204,170,207,208,0,1887,1892,249,248,0,0,0,0,1413,1416,150,149,43,203,169,173,206,0,1894,246,247,1896,0,0,0,0,1415,147,148,155,43,205,172,174,210,0,1884,1883,1895,1897,0,0,0,0,1412,1411,1417,1418,43,171,204,208,209,0,1888,1887,248,252,0,0,0,0,1414,1413,149,153,43,174,209,215,216,0,1895,252,253,1898,0,0,0,0,1417,153,154,1419,43,206,173,211,212,0,1896,247,257,256,0,0,0,0,155,148,157,156,43,210,174,216,175,0,1897,1895,1898,1899,0,0,0,0,1418,1417,1419,1420,43,215,214,220,176,0,253,251,262,1900,0,0,0,0,154,152,161,1421,43,216,215,176,177,0,1898,253,1900,1901,0,0,0,0,1419,154,1421,1422,43,176,220,224,178,0,1900,262,265,1902,0,0,0,0,1421,161,164,1423,43,177,176,178,225,0,1901,1900,1902,1903,0,0,0,0,1422,1421,1423,1424,42,179,159,147,0,268,242,1841,0,0,0,166,144,1376,42,147,159,187,0,1841,242,1849,0,0,0,1376,144,1383,42,187,159,190,0,1849,242,1859,0,0,0,1383,144,1392,42,190,159,155,0,1859,242,241,0,0,0,1392,144,143,42,173,159,211,0,247,242,257,0,0,0,148,144,157,42,211,159,217,0,257,242,258,0,0,0,157,144,158,42,217,159,221,0,258,242,266,0,0,0,158,144,165,42,221,159,179,0,266,242,268,0,0,0,165,144,166,43,225,178,181,145,0,1903,1902,1904,1905,0,0,0,0,1424,1423,1371,1370,43,224,223,143,144,0,265,264,1906,1907,0,0,0,0,164,163,1367,1374,43,226,225,145,146,0,1908,1903,1905,1909,0,0,0,0,1425,1424,1370,1377,43,178,224,144,181,0,1902,265,1907,1904,0,0,0,0,1423,164,1374,1371,43,223,222,180,143,0,264,263,1910,1906,0,0,0,0,163,162,167,1367,43,780,784,783,828,0,1911,1912,1913,1914,0,0,0,0,1426,1427,1428,1429,43,779,831,830,827,0,1915,1916,1084,1083,0,0,0,0,1430,1431,805,804,43,826,829,782,825,0,1917,1918,1077,1919,0,0,0,0,807,806,798,813,43,781,832,784,780,0,1920,1921,1912,1911,0,0,0,0,1432,1433,1427,1426,43,828,783,831,779,0,1914,1913,1916,1915,0,0,0,0,1429,1428,1431,1430,43,784,788,834,783,0,1912,1922,1923,1913,0,0,0,0,1427,1434,1435,1428,43,831,787,833,830,0,1916,1924,1925,1084,0,0,0,0,1431,1436,1437,805,43,829,786,785,782,0,1918,1926,1078,1077,0,0,0,0,806,1438,799,798,43,832,835,788,784,0,1921,1927,1922,1912,0,0,0,0,1433,1439,1434,1427,43,783,834,787,831,0,1913,1923,1924,1916,0,0,0,0,1428,1435,1436,1431,43,830,833,786,829,0,1084,1925,1928,1085,0,0,0,0,805,1437,1438,806,43,835,793,792,788,0,1927,1071,1074,1922,0,0,0,0,1439,792,795,1434,43,834,791,837,787,0,1923,1929,1930,1924,0,0,0,0,1435,1440,1441,1436,43,833,790,789,786,0,1925,1067,1070,1928,0,0,0,0,1437,788,791,1438,43,788,792,791,834,0,1922,1074,1929,1923,0,0,0,0,1434,795,1440,1435,43,787,837,790,833,0,1924,1930,1067,1925,0,0,0,0,1436,1441,788,1437,43,786,789,836,785,0,1926,1931,1932,1078,0,0,0,0,1438,791,1442,799,43,791,839,838,837,0,1929,1933,1934,1930,0,0,0,0,1440,1443,1444,1441,43,792,797,839,791,0,1074,1073,1933,1929,0,0,0,0,795,794,1443,1440,43,837,838,796,790,0,1930,1934,1068,1067,0,0,0,0,1441,1444,789,788,43,789,795,794,836,0,1931,1935,1936,1932,0,0,0,0,791,790,1445,1442,43,797,842,841,839,0,1073,1087,1090,1933,0,0,0,0,794,808,811,1443,43,838,802,801,796,0,1934,1937,1075,1068,0,0,0,0,1444,1446,796,789,43,795,800,840,794,0,1935,1938,1939,1936,0,0,0,0,790,797,1447,1445,43,798,803,842,797,0,1072,1081,1087,1073,0,0,0,0,793,802,808,794,43,839,841,802,838,0,1933,1090,1937,1934,0,0,0,0,1443,811,1446,1444,43,802,844,805,801,0,1937,1940,1941,1075,0,0,0,0,1446,1448,1449,796,43,800,843,804,840,0,1938,1942,1943,1939,0,0,0,0,797,1450,1451,1447,43,803,806,846,842,0,1081,1082,1088,1087,0,0,0,0,802,803,809,808,43,841,845,844,802,0,1090,1089,1940,1937,0,0,0,0,811,810,1448,1446,43,801,805,843,800,0,1075,1941,1944,1076,0,0,0,0,796,1449,1450,797,43,806,849,810,846,0,1082,1945,1946,1088,0,0,0,0,803,1452,1453,809,43,845,809,848,844,0,1089,1947,1948,1940,0,0,0,0,810,1454,1455,1448,43,805,808,807,843,0,1941,1949,1950,1944,0,0,0,0,1449,1456,1457,1450,43,846,810,809,845,0,1088,1946,1947,1089,0,0,0,0,809,1453,1454,810,43,844,848,808,805,0,1940,1948,1949,1941,0,0,0,0,1448,1455,1456,1449,43,843,807,847,804,0,1942,1951,1952,1943,0,0,0,0,1450,1457,1458,1451,43,808,850,812,807,0,1949,1953,1954,1950,0,0,0,0,1456,1459,1460,1457,43,810,852,813,809,0,1946,1955,1956,1947,0,0,0,0,1453,1461,1462,1454,43,848,851,850,808,0,1948,1957,1953,1949,0,0,0,0,1455,1463,1459,1456,43,807,812,811,847,0,1951,1958,1959,1952,0,0,0,0,1457,1460,1464,1458,43,849,853,852,810,0,1945,1960,1955,1946,0,0,0,0,1452,1465,1461,1453,43,809,813,851,848,0,1947,1956,1957,1948,0,0,0,0,1454,1462,1463,1455,43,852,816,856,813,0,1955,1961,1962,1956,0,0,0,0,1461,1466,1467,1462,43,851,815,814,850,0,1957,1963,1964,1953,0,0,0,0,1463,1468,1469,1459,43,812,855,854,811,0,1958,1965,1966,1959,0,0,0,0,1460,1470,1471,1464,43,853,817,816,852,0,1960,1967,1961,1955,0,0,0,0,1465,1472,1466,1461,43,813,856,815,851,0,1956,1962,1963,1957,0,0,0,0,1462,1467,1468,1463,43,850,814,855,812,0,1953,1964,1968,1954,0,0,0,0,1459,1469,1470,1460,43,855,820,819,854,0,1965,1969,1970,1966,0,0,0,0,1470,1473,1474,1471,43,817,860,821,816,0,1967,1971,1972,1961,0,0,0,0,1472,1475,1476,1466,43,856,859,858,815,0,1962,1973,1974,1963,0,0,0,0,1467,1477,1478,1468,43,814,857,820,855,0,1964,1975,1976,1968,0,0,0,0,1469,1479,1473,1470,43,816,821,859,856,0,1961,1972,1973,1962,0,0,0,0,1466,1476,1477,1467,43,815,858,857,814,0,1963,1974,1975,1964,0,0,0,0,1468,1478,1479,1469,43,860,864,824,821,0,1971,1977,1978,1972,0,0,0,0,1475,1480,1481,1476,43,859,823,863,858,0,1973,1979,1980,1974,0,0,0,0,1477,1482,1483,1478,43,857,822,862,820,0,1975,1981,1982,1976,0,0,0,0,1479,1484,812,1473,43,821,824,823,859,0,1972,1978,1979,1973,0,0,0,0,1476,1481,1482,1477,43,858,863,822,857,0,1974,1980,1981,1975,0,0,0,0,1478,1483,1484,1479,43,820,862,861,819,0,1969,1091,1094,1970,0,0,0,0,1473,812,814,1474,42,825,782,799,0,1919,1077,1079,0,0,0,813,798,800,42,818,832,781,0,1080,1921,1920,0,0,0,801,1433,1432,42,818,835,832,0,1080,1927,1921,0,0,0,801,1439,1433,42,785,836,799,0,1078,1932,1079,0,0,0,799,1442,800,42,818,793,835,0,1080,1071,1927,0,0,0,801,792,1439,42,836,794,799,0,1932,1936,1079,0,0,0,1442,1445,800,42,794,840,799,0,1936,1939,1079,0,0,0,1445,1447,800,42,840,804,799,0,1939,1943,1079,0,0,0,1447,1451,800,42,804,847,799,0,1943,1952,1079,0,0,0,1451,1458,800,42,818,849,806,0,1080,1945,1082,0,0,0,801,1452,803,42,847,811,799,0,1952,1959,1079,0,0,0,1458,1464,800,42,818,853,849,0,1080,1960,1945,0,0,0,801,1465,1452,42,818,817,853,0,1080,1967,1960,0,0,0,801,1472,1465,42,811,854,799,0,1959,1966,1079,0,0,0,1464,1471,800,42,854,819,799,0,1966,1970,1079,0,0,0,1471,1474,800,42,818,860,817,0,1080,1971,1967,0,0,0,801,1475,1472,42,819,861,799,0,1970,1094,1079,0,0,0,1474,814,800,42,818,864,860,0,1080,1977,1971,0,0,0,801,1480,1475,42,861,825,799,0,1094,1093,1079,0,0,0,814,813,800,42,818,781,864,0,1080,1983,1977,0,0,0,801,1432,1480,43,824,780,828,823,0,1978,1984,1985,1979,0,0,0,0,1481,1426,1429,1482,43,863,779,827,822,0,1980,1986,1987,1981,0,0,0,0,1483,1430,804,1484,43,864,781,780,824,0,1977,1983,1984,1978,0,0,0,0,1480,1432,1426,1481,43,823,828,779,863,0,1979,1985,1986,1980,0,0,0,0,1482,1429,1430,1483,43,822,827,826,862,0,1981,1987,1988,1982,0,0,0,0,1484,804,807,812,43,226,1485,177,225,0,1908,1989,1901,1903,0,0,0,0,1425,1485,1422,1424,43,175,216,177,1485,0,1899,1898,1901,1989,0,0,0,0,1420,1419,1422,1485,42,210,175,1486,0,1897,1899,1990,0,0,0,1418,1420,1486,42,158,163,1486,0,1867,1873,1990,0,0,0,1398,1404,1486,42,163,168,1486,0,1873,1879,1990,0,0,0,1404,1409,1486,42,146,186,1486,0,1843,1844,1990,0,0,0,1377,1378,1486,42,1485,226,1486,0,1989,1908,1990,0,0,0,1485,1425,1486,42,205,210,1486,0,1884,1897,1990,0,0,0,1412,1418,1486,42,226,146,1486,0,1908,1909,1990,0,0,0,1425,1377,1486,42,189,194,1486,0,1851,1854,1990,0,0,0,1385,1387,1486,42,175,1485,1486,0,1899,1989,1990,0,0,0,1420,1485,1486,42,186,189,1486,0,1844,1851,1990,0,0,0,1378,1385,1486,42,168,205,1486,0,1879,1884,1990,0,0,0,1409,1412,1486,42,194,158,1486,0,1854,1867,1990,0,0,0,1387,1398,1486,43,1487,1491,1494,1490,3,1991,1992,1993,1994,0,0,0,0,1487,1488,1489,1490,43,1488,1492,1491,1487,3,1995,1996,1992,1991,0,0,0,0,1491,1492,1488,1487,43,1489,1493,1492,1488,3,1997,1998,1996,1995,0,0,0,0,1493,1494,1492,1491,43,1490,1494,1493,1489,3,1994,1993,1999,2000,0,0,0,0,1490,1489,1494,1493,43,1588,1495,1498,1590,3,2001,2002,2003,2004,0,0,0,0,1495,1496,1497,1498,43,1587,1496,1495,1588,3,2005,2006,2002,2001,0,0,0,0,1499,1500,1496,1495,43,1589,1497,1496,1587,3,2007,2008,2006,2005,0,0,0,0,1501,1502,1500,1499,43,1590,1498,1497,1589,3,2004,2003,2009,2010,0,0,0,0,1498,1497,1502,1501,43,1495,1499,1502,1498,3,2002,2011,2012,2003,0,0,0,0,1496,1503,1504,1497,43,1496,1500,1499,1495,3,2006,2013,2011,2002,0,0,0,0,1500,1505,1503,1496,43,1497,1501,1500,1496,3,2008,2014,2013,2006,0,0,0,0,1502,1506,1505,1500,43,1498,1502,1501,1497,3,2003,2012,2015,2009,0,0,0,0,1497,1504,1506,1502,43,1585,1503,1506,1584,3,2016,2017,2018,2019,0,0,0,0,1507,1508,1509,1510,43,1586,1504,1503,1585,3,2020,2021,2017,2016,0,0,0,0,1511,1512,1508,1507,43,1583,1505,1504,1586,3,2022,2023,2021,2020,0,0,0,0,1513,1514,1512,1511,43,1584,1506,1505,1583,3,2019,2018,2024,2025,0,0,0,0,1510,1509,1514,1513,43,1503,1507,1510,1506,3,2017,2026,2027,2018,0,0,0,0,1508,1515,1516,1509,43,1504,1508,1507,1503,3,2021,2028,2026,2017,0,0,0,0,1512,1517,1515,1508,43,1505,1509,1508,1504,3,2023,2029,2028,2021,0,0,0,0,1514,1518,1517,1512,43,1506,1510,1509,1505,3,2018,2027,2030,2024,0,0,0,0,1509,1516,1518,1514,43,1507,1511,1514,1510,3,2026,2031,2032,2027,0,0,0,0,1515,1519,1520,1516,43,1508,1512,1511,1507,3,2028,2033,2031,2026,0,0,0,0,1517,1521,1519,1515,43,1509,1513,1512,1508,3,2029,2034,2033,2028,0,0,0,0,1518,1522,1521,1517,43,1510,1514,1513,1509,3,2027,2032,2035,2030,0,0,0,0,1516,1520,1522,1518,43,1511,1515,1518,1514,3,2031,2036,2037,2032,0,0,0,0,1519,1523,1524,1520,43,1512,1516,1515,1511,3,2033,2038,2036,2031,0,0,0,0,1521,1525,1523,1519,43,1513,1517,1516,1512,3,2034,2039,2038,2033,0,0,0,0,1522,1526,1525,1521,43,1514,1518,1517,1513,3,2032,2037,2040,2035,0,0,0,0,1520,1524,1526,1522,43,1515,1519,1522,1518,3,2036,2041,2042,2037,0,0,0,0,1523,1527,1528,1524,43,1516,1520,1519,1515,3,2038,2043,2041,2036,0,0,0,0,1525,1529,1527,1523,43,1517,1521,1520,1516,3,2039,2044,2043,2038,0,0,0,0,1526,1530,1529,1525,43,1518,1522,1521,1517,3,2037,2042,2045,2040,0,0,0,0,1524,1528,1530,1526,43,1567,1526,1525,1568,2,2046,2046,2046,2046,0,0,0,0,1531,1532,1533,1534,43,1570,1568,1525,1523,2,2046,2046,2046,2046,0,0,0,0,1535,1534,1533,1536,43,1527,1529,1530,1528,2,2046,2046,2046,2046,0,0,0,0,1537,1538,1539,1540,43,1529,1524,1531,1533,2,2046,2046,2046,2046,0,0,0,0,1538,1541,1542,1543,43,1523,1525,1528,1530,2,2046,2046,2046,2046,0,0,0,0,1536,1533,1540,1539,43,1524,1529,1538,1536,2,2046,2046,2046,2046,0,0,0,0,1541,1538,1544,1545,43,1525,1526,1527,1528,2,2046,2046,2046,2046,0,0,0,0,1533,1532,1537,1540,43,1531,1532,1534,1533,2,2046,2046,2046,2046,0,0,0,0,1542,1546,1547,1543,43,1524,1523,1532,1531,2,2046,2046,2046,2046,0,0,0,0,1541,1536,1546,1542,43,1523,1530,1534,1532,2,2046,2046,2046,2046,0,0,0,0,1536,1539,1547,1546,43,1530,1529,1533,1534,2,2046,2046,2046,2046,0,0,0,0,1539,1538,1543,1547,43,1537,1535,1539,1541,2,2046,2046,2046,2046,0,0,0,0,1548,1549,1550,1551,43,1529,1527,1537,1538,2,2046,2046,2046,2046,0,0,0,0,1538,1537,1548,1544,43,1526,1524,1536,1535,2,2046,2046,2046,2046,0,0,0,0,1532,1541,1545,1549,43,1527,1526,1535,1537,2,2046,2046,2046,2046,0,0,0,0,1537,1532,1549,1548,43,1524,1526,1567,1569,2,2046,2046,2046,2046,0,0,0,0,1541,1532,1531,1552,43,1524,1569,1570,1523,2,2046,2046,2046,2046,0,0,0,0,1541,1552,1535,1536,43,1539,1540,1544,1543,2,2046,2046,2046,2046,0,0,0,0,1550,1553,1554,1555,43,1538,1537,1541,1542,2,2046,2046,2046,2046,0,0,0,0,1544,1548,1551,1556,43,1536,1538,1542,1540,2,2046,2046,2046,2046,0,0,0,0,1545,1544,1556,1553,43,1535,1536,1540,1539,2,2046,2046,2046,2046,0,0,0,0,1549,1545,1553,1550,43,1545,1543,1547,1549,2,2046,2046,2046,2046,0,0,0,0,1557,1555,1558,1559,43,1541,1539,1543,1545,2,2046,2046,2046,2046,0,0,0,0,1551,1550,1555,1557,43,1542,1541,1545,1546,2,2046,2046,2046,2046,0,0,0,0,1556,1551,1557,1560,43,1540,1542,1546,1544,2,2046,2046,2046,2046,0,0,0,0,1553,1556,1560,1554,43,1547,1548,1550,1549,2,2046,2046,2046,2046,0,0,0,0,1558,1561,1562,1559,43,1546,1545,1549,1550,2,2046,2046,2046,2046,0,0,0,0,1560,1557,1559,1562,43,1544,1546,1550,1548,2,2046,2046,2046,2046,0,0,0,0,1554,1560,1562,1561,43,1543,1544,1548,1547,2,2046,2046,2046,2046,0,0,0,0,1555,1554,1561,1558,43,1567,1568,1553,1554,2,2046,2046,2046,2046,0,0,0,0,1531,1534,1563,1564,43,1570,1551,1553,1568,2,2046,2046,2046,2046,0,0,0,0,1535,1565,1563,1534,43,1555,1556,1558,1557,2,2046,2046,2046,2046,0,0,0,0,1566,1567,1568,1569,43,1557,1561,1559,1552,2,2046,2046,2046,2046,0,0,0,0,1569,1570,1571,1572,43,1551,1558,1556,1553,2,2046,2046,2046,2046,0,0,0,0,1565,1568,1567,1563,43,1552,1564,1566,1557,2,2046,2046,2046,2046,0,0,0,0,1572,1573,1574,1569,43,1553,1556,1555,1554,2,2046,2046,2046,2046,0,0,0,0,1563,1567,1566,1564,43,1559,1561,1562,1560,2,2046,2046,2046,2046,0,0,0,0,1571,1570,1575,1576,43,1552,1559,1560,1551,2,2046,2046,2046,2046,0,0,0,0,1572,1571,1576,1565,43,1551,1560,1562,1558,2,2046,2046,2046,2046,0,0,0,0,1565,1576,1575,1568,43,1558,1562,1561,1557,2,2046,2046,2046,2046,0,0,0,0,1568,1575,1570,1569,43,1565,1573,1571,1563,2,2046,2046,2046,2046,0,0,0,0,1577,1578,1579,1580,43,1557,1566,1565,1555,2,2046,2046,2046,2046,0,0,0,0,1569,1574,1577,1566,43,1554,1563,1564,1552,2,2046,2046,2046,2046,0,0,0,0,1564,1580,1573,1572,43,1555,1565,1563,1554,2,2046,2046,2046,2046,0,0,0,0,1566,1577,1580,1564,43,1552,1569,1567,1554,2,2046,2046,2046,2046,0,0,0,0,1572,1552,1531,1564,43,1552,1551,1570,1569,2,2046,2046,2046,2046,0,0,0,0,1572,1565,1535,1552,43,1571,1575,1576,1572,2,2046,2046,2046,2046,0,0,0,0,1579,1581,1582,1583,43,1566,1574,1573,1565,2,2046,2046,2046,2046,0,0,0,0,1574,1584,1578,1577,43,1564,1572,1574,1566,2,2046,2046,2046,2046,0,0,0,0,1573,1583,1584,1574,43,1563,1571,1572,1564,2,2046,2046,2046,2046,0,0,0,0,1580,1579,1583,1573,43,1577,1581,1579,1575,2,2046,2046,2046,2046,0,0,0,0,1585,1586,1587,1581,43,1573,1577,1575,1571,2,2046,2046,2046,2046,0,0,0,0,1578,1585,1581,1579,43,1574,1578,1577,1573,2,2046,2046,2046,2046,0,0,0,0,1584,1588,1585,1578,43,1572,1576,1578,1574,2,2046,2046,2046,2046,0,0,0,0,1583,1582,1588,1584,43,1579,1581,1582,1580,2,2046,2046,2046,2046,0,0,0,0,1587,1586,1589,1590,43,1578,1582,1581,1577,2,2046,2046,2046,2046,0,0,0,0,1588,1589,1586,1585,43,1576,1580,1582,1578,2,2046,2046,2046,2046,0,0,0,0,1582,1590,1589,1588,43,1575,1579,1580,1576,2,2046,2046,2046,2046,0,0,0,0,1581,1587,1590,1582,43,1502,1584,1583,1501,3,2012,2019,2025,2015,0,0,0,0,1504,1510,1513,1506,43,1501,1583,1586,1500,3,2014,2022,2020,2013,0,0,0,0,1506,1513,1511,1505,43,1500,1586,1585,1499,3,2013,2020,2016,2011,0,0,0,0,1505,1511,1507,1503,43,1499,1585,1584,1502,3,2011,2016,2019,2012,0,0,0,0,1503,1507,1510,1504,43,1494,1590,1589,1493,3,1993,2004,2010,1999,0,0,0,0,1489,1498,1501,1494,43,1493,1589,1587,1492,3,1998,2007,2005,1996,0,0,0,0,1494,1501,1499,1492,43,1492,1587,1588,1491,3,1996,2005,2001,1992,0,0,0,0,1492,1499,1495,1488,43,1491,1588,1590,1494,3,1992,2001,2004,1993,0,0,0,0,1488,1495,1498,1489],
"bones": [{
"pos": [-0.8115081191062927,0.9529162049293518,-2.6651408672332764],
"rotq": [0,0,0,1],
"name": "hips",
"parent": -1
},{
"pos": [-0.0017437934875488281,0.19991905987262726,0.03408956527709961],
"rotq": [0,0,0,1],
"name": "spine",
"parent": 0
},{
"pos": [0.0030628442764282227,0.23590584099292755,0.011751413345336914],
"rotq": [0,0,0,1],
"name": "chest",
"parent": 1
},{
"pos": [-0.0017437934875488281,0.2951475977897644,-0.05644869804382324],
"rotq": [0,0,0,1],
"name": "neck",
"parent": 2
},{
"pos": [-0.002801239490509033,0.07140906155109406,0.012778997421264648],
"rotq": [0,0,0,1],
"name": "head",
"parent": 3
},{
"pos": [-0.0005366206169128418,0.11130125820636749,0.4657256603240967],
"rotq": [0,0,0,1],
"name": "Bone.002",
"parent": 4
},{
"pos": [0.08453720808029175,-6.0364603996276855e-05,-2.6226043701171875e-06],
"rotq": [0,0,0,1],
"name": "Bone",
"parent": 5
},{
"pos": [-0.0699198842048645,-6.0364603996276855e-05,-2.6226043701171875e-06],
"rotq": [0,0,0,1],
"name": "Bone.001",
"parent": 5
},{
"pos": [0.07990360260009766,0.16932900249958038,0.16892433166503906],
"rotq": [0,0,0,1],
"name": "eye_l",
"parent": 4
},{
"pos": [-0.0710645318031311,0.16932900249958038,0.16892433166503906],
"rotq": [0,0,0,1],
"name": "eye_r",
"parent": 4
},{
"pos": [0.016078174114227295,0.23582430183887482,0.04069352149963379],
"rotq": [0,0,0,1],
"name": "shoulder.L",
"parent": 2
},{
"pos": [0.22437626123428345,-0.00970737636089325,-0.1276869773864746],
"rotq": [0,0,0,1],
"name": "upper_arm.L",
"parent": 10
},{
"pos": [0.2910064458847046,-0.029346629977226257,0.006039142608642578],
"rotq": [0,0,0,1],
"name": "forearm.L",
"parent": 11
},{
"pos": [0.25012874603271484,-0.010700985789299011,0.049269914627075195],
"rotq": [0,0,0,1],
"name": "hand.L",
"parent": 12
},{
"pos": [0.051685452461242676,-0.00026457011699676514,0.03942084312438965],
"rotq": [0,0,0,1],
"name": "palm.01.L",
"parent": 13
},{
"pos": [0.061905086040496826,-0.0007491558790206909,0.017199277877807617],
"rotq": [0,0,0,1],
"name": "f_index.01.L",
"parent": 14
},{
"pos": [0.04456627368927002,-0.012944027781486511,0.008443117141723633],
"rotq": [0,0,0,1],
"name": "f_index.02.L",
"parent": 15
},{
"pos": [0.02645421028137207,-0.010041162371635437,0.005717754364013672],
"rotq": [0,0,0,1],
"name": "f_index.03.L",
"parent": 16
},{
"pos": [-0.006516218185424805,-0.008402630686759949,0.0073986053466796875],
"rotq": [0,0,0,1],
"name": "thumb.01.L",
"parent": 14
},{
"pos": [0.0281069278717041,-0.016253158450126648,0.027788639068603516],
"rotq": [0,0,0,1],
"name": "thumb.02.L",
"parent": 18
},{
"pos": [0.03405487537384033,-0.014845892786979675,0.012521028518676758],
"rotq": [0,0,0,1],
"name": "thumb.03.L",
"parent": 19
},{
"pos": [0.058197975158691406,0.0016567260026931763,0.022619009017944336],
"rotq": [0,0,0,1],
"name": "palm.02.L",
"parent": 13
},{
"pos": [0.06521046161651611,-0.004284307360649109,0.00908970832824707],
"rotq": [0,0,0,1],
"name": "f_middle.01.L",
"parent": 21
},{
"pos": [0.04538625478744507,-0.010145828127861023,0.008533477783203125],
"rotq": [0,0,0,1],
"name": "f_middle.02.L",
"parent": 22
},{
"pos": [0.03420346975326538,-0.008290812373161316,0.007235527038574219],
"rotq": [0,0,0,1],
"name": "f_middle.03.L",
"parent": 23
},{
"pos": [0.058486342430114746,-0.007121726870536804,-0.00489497184753418],
"rotq": [0,0,0,1],
"name": "palm.03.L",
"parent": 13
},{
"pos": [0.07562583684921265,-0.0009505003690719604,0.013852596282958984],
"rotq": [0,0,0,1],
"name": "f_ring.01.L",
"parent": 25
},{
"pos": [0.0334513783454895,-0.008404180407524109,0.005757331848144531],
"rotq": [0,0,0,1],
"name": "f_ring.02.L",
"parent": 26
},{
"pos": [0.038927555084228516,-0.013984963297843933,0.007746219635009766],
"rotq": [0,0,0,1],
"name": "f_ring.03.L",
"parent": 27
},{
"pos": [0.06265687942504883,-0.009863778948783875,-0.02106022834777832],
"rotq": [0,0,0,1],
"name": "palm.04.L",
"parent": 13
},{
"pos": [0.06608456373214722,-0.0038867443799972534,0.00848698616027832],
"rotq": [0,0,0,1],
"name": "f_pinky.01.L",
"parent": 29
},{
"pos": [0.02872246503829956,-0.01104871928691864,0.004993915557861328],
"rotq": [0,0,0,1],
"name": "f_pinky.02.L",
"parent": 30
},{
"pos": [0.023545503616333008,-0.009729310870170593,0.003542661666870117],
"rotq": [0,0,0,1],
"name": "f_pinky.03.L",
"parent": 31
},{
"pos": [-0.01956576108932495,0.23582430183887482,0.04069352149963379],
"rotq": [0,0,0,1],
"name": "shoulder.R",
"parent": 2
},{
"pos": [-0.22305721044540405,-0.00970737636089325,-0.1276869773864746],
"rotq": [0,0,0,1],
"name": "upper_arm.R",
"parent": 33
},{
"pos": [-0.2896873354911804,-0.029346629977226257,0.006039142608642578],
"rotq": [0,0,0,1],
"name": "forearm.R",
"parent": 34
},{
"pos": [-0.24880975484848022,-0.010700985789299011,0.049269914627075195],
"rotq": [0,0,0,1],
"name": "hand.R",
"parent": 35
},{
"pos": [-0.050366342067718506,-0.00026457011699676514,0.03942084312438965],
"rotq": [0,0,0,1],
"name": "palm.01.R",
"parent": 36
},{
"pos": [-0.06058615446090698,-0.0007491558790206909,0.017199277877807617],
"rotq": [0,0,0,1],
"name": "f_index.01.R",
"parent": 37
},{
"pos": [-0.04324716329574585,-0.012944027781486511,0.008443117141723633],
"rotq": [0,0,0,1],
"name": "f_index.02.R",
"parent": 38
},{
"pos": [-0.02513521909713745,-0.010041162371635437,0.005717754364013672],
"rotq": [0,0,0,1],
"name": "f_index.03.R",
"parent": 39
},{
"pos": [0.007835209369659424,-0.008402630686759949,0.0073986053466796875],
"rotq": [0,0,0,1],
"name": "thumb.01.R",
"parent": 37
},{
"pos": [-0.026787936687469482,-0.016253158450126648,0.027788639068603516],
"rotq": [0,0,0,1],
"name": "thumb.02.R",
"parent": 41
},{
"pos": [-0.03273576498031616,-0.014845892786979675,0.012521028518676758],
"rotq": [0,0,0,1],
"name": "thumb.03.R",
"parent": 42
},{
"pos": [-0.05687898397445679,0.0016567260026931763,0.022619009017944336],
"rotq": [0,0,0,1],
"name": "palm.02.R",
"parent": 36
},{
"pos": [-0.06389135122299194,-0.004284307360649109,0.00908970832824707],
"rotq": [0,0,0,1],
"name": "f_middle.01.R",
"parent": 44
},{
"pos": [-0.044067203998565674,-0.010145828127861023,0.008533477783203125],
"rotq": [0,0,0,1],
"name": "f_middle.02.R",
"parent": 45
},{
"pos": [-0.032884418964385986,-0.008290812373161316,0.007235527038574219],
"rotq": [0,0,0,1],
"name": "f_middle.03.R",
"parent": 46
},{
"pos": [-0.057167232036590576,-0.007121726870536804,-0.00489497184753418],
"rotq": [0,0,0,1],
"name": "palm.03.R",
"parent": 36
},{
"pos": [-0.0743069052696228,-0.0009505003690719604,0.013852596282958984],
"rotq": [0,0,0,1],
"name": "f_ring.01.R",
"parent": 48
},{
"pos": [-0.03213232755661011,-0.008404180407524109,0.005757331848144531],
"rotq": [0,0,0,1],
"name": "f_ring.02.R",
"parent": 49
},{
"pos": [-0.037608444690704346,-0.013984963297843933,0.007746219635009766],
"rotq": [0,0,0,1],
"name": "f_ring.03.R",
"parent": 50
},{
"pos": [-0.06133788824081421,-0.009863778948783875,-0.02106022834777832],
"rotq": [0,0,0,1],
"name": "palm.04.R",
"parent": 36
},{
"pos": [-0.06476539373397827,-0.0038867443799972534,0.00848698616027832],
"rotq": [0,0,0,1],
"name": "f_pinky.01.R",
"parent": 52
},{
"pos": [-0.027403533458709717,-0.01104871928691864,0.004993915557861328],
"rotq": [0,0,0,1],
"name": "f_pinky.02.R",
"parent": 53
},{
"pos": [-0.022226393222808838,-0.009729310870170593,0.003542661666870117],
"rotq": [0,0,0,1],
"name": "f_pinky.03.R",
"parent": 54
},{
"pos": [0.1473957896232605,0.0759018212556839,0.011138200759887695],
"rotq": [0,0,0,1],
"name": "thigh.L",
"parent": 0
},{
"pos": [0.03555566072463989,-0.4604412913322449,-0.009120464324951172],
"rotq": [0,0,0,1],
"name": "shin.L",
"parent": 56
},{
"pos": [-0.012762248516082764,-0.37101030349731445,-0.013624906539916992],
"rotq": [0,0,0,1],
"name": "foot.L",
"parent": 57
},{
"pos": [0.0006595253944396973,-0.10615013539791107,0.13244247436523438],
"rotq": [0,0,0,1],
"name": "toe.L",
"parent": 58
},{
"pos": [-0.012762248516082764,-0.37101030349731445,-0.013624906539916992],
"rotq": [0,0,0,1],
"name": "heel.L",
"parent": 57
},{
"pos": [-0.05073732137680054,-0.1243000328540802,0.02616572380065918],
"rotq": [0,0,0,1],
"name": "heel.02.L",
"parent": 60
},{
"pos": [-0.15088337659835815,0.0759018212556839,0.011138200759887695],
"rotq": [0,0,0,1],
"name": "thigh.R",
"parent": 0
},{
"pos": [-0.0342366099357605,-0.4604412913322449,-0.009120464324951172],
"rotq": [0,0,0,1],
"name": "shin.R",
"parent": 62
},{
"pos": [0.014081299304962158,-0.37101030349731445,-0.013624906539916992],
"rotq": [0,0,0,1],
"name": "foot.R",
"parent": 63
},{
"pos": [0.0006595253944396973,-0.10615013539791107,0.13244247436523438],
"rotq": [0,0,0,1],
"name": "toe.R",
"parent": 64
},{
"pos": [0.014081299304962158,-0.37101030349731445,-0.013624906539916992],
"rotq": [0,0,0,1],
"name": "heel.R",
"parent": 63
},{
"pos": [0.05205637216567993,-0.1243000328540802,0.02616572380065918],
"rotq": [0,0,0,1],
"name": "heel.02.R",
"parent": 66
},{
"pos": [-0.4005277156829834,0.14698544144630432,1.0264778137207031],
"rotq": [0,0,0,1],
"name": "Bone.003",
"parent": -1
},{
"pos": [0.13644573092460632,-0.10399120301008224,-0.4718223214149475],
"rotq": [0,0,0,1],
"name": "Bone.004",
"parent": 68
},{
"pos": [-0.002356797456741333,0.08655063062906265,-0.5851185917854309],
"rotq": [0,0,0,1],
"name": "Bone.005",
"parent": 69
},{
"pos": [-0.07092881202697754,-0.018184497952461243,-0.4158977270126343],
"rotq": [0,0,0,1],
"name": "Bone.006",
"parent": 70
},{
"pos": [-0.3215430974960327,-0.04828259348869324,-0.3310050964355469],
"rotq": [0,0,0,1],
"name": "Bone.007",
"parent": 71
},{
"pos": [-0.33081984519958496,0.15264639258384705,-0.3032369613647461],
"rotq": [0,0,0,1],
"name": "Bone.008",
"parent": 72
},{
"pos": [-0.1632159948348999,0.07006864249706268,-0.15887808799743652],
"rotq": [0,0,0,1],
"name": "Bone.009",
"parent": 73
},{
"pos": [-0.038239896297454834,0.3483338952064514,-0.043259382247924805],
"rotq": [0,0,0,1],
"name": "Bone.010",
"parent": 74
},{
"pos": [0.19815295934677124,0.4073801040649414,0.08558106422424316],
"rotq": [0,0,0,1],
"name": "Bone.011",
"parent": 75
},{
"pos": [0.26665186882019043,0.26579004526138306,-0.027848005294799805],
"rotq": [0,0,0,1],
"name": "Bone.012",
"parent": 76
},{
"pos": [0.00799560546875,0.06894035637378693,-0.12578916549682617],
"rotq": [0,0,0,1],
"name": "Bone.013",
"parent": 77
}],
"materials": [{
"colorEmissive": [0.0,0.0,0.0],
"opacity": 0.0,
"depthWrite": true,
"colorAmbient": [0.800000011920929,0.800000011920929,0.800000011920929],
"colorDiffuse": [0.800000011920929,0.800000011920929,0.800000011920929],
"DbgIndex": 0,
"DbgName": "little_girl",
"transparent": false,
"wireframe": false,
"mapDiffuseWrap": ["RepeatWrapping","RepeatWrapping"],
"mapDiffuse": "kid_texture.png",
"DbgColor": 15658734,
"depthTest": true,
"mapDiffuseAnisotropy": 1.0,
"mapDiffuseRepeat": [1,1],
"blending": "NormalBlending",
"shading": "lambert",
"visible": true
},{
"colorEmissive": [0.0,0.0,0.0],
"opacity": 0.0,
"depthWrite": true,
"colorAmbient": [0.003393520465396649,0.003393520465396649,0.003393520465396649],
"colorDiffuse": [0.003393520465396649,0.003393520465396649,0.003393520465396649],
"DbgIndex": 2,
"DbgName": "Material.001",
"transparent": false,
"wireframe": false,
"DbgColor": 60928,
"depthTest": true,
"colorSpecular": [0.5,0.5,0.5],
"specularCoef": 50,
"blending": "NormalBlending",
"shading": "phong",
"visible": true
},{
"colorEmissive": [0.0,0.0,0.0],
"opacity": 0.0,
"depthWrite": true,
"colorAmbient": [0.6400000190734865,0.6400000190734865,0.6400000190734865],
"colorDiffuse": [0.6400000190734865,0.6400000190734865,0.6400000190734865],
"DbgIndex": 3,
"DbgName": "couch_zexture",
"transparent": false,
"wireframe": false,
"mapDiffuseWrap": ["RepeatWrapping","RepeatWrapping"],
"mapDiffuse": "couch_texture_2.jpg",
"DbgColor": 238,
"depthTest": true,
"mapDiffuseAnisotropy": 1.0,
"mapDiffuseRepeat": [1,1],
"blending": "NormalBlending",
"shading": "lambert",
"visible": true
}],
"skinWeights": [1.000000238418579,0,1.000000238418579,0,1.000000238418579,0,1.0000001192092896,0,1.0000003576278687,0,1.0000004768371582,0,1.0000003576278687,0,1.0000003576278687,0,1.0000014305114746,0,1.0000014305114746,0,1.000001311302185,0,1.0000014305114746,0,1.0000001192092896,0,1.0000001192092896,0,1.0000001192092896,0,1.0000001192092896,0,1.0000001192092896,0,1.000000238418579,0,1.0000001192092896,0,1.0000001192092896,0,1.0,0,0.9999999403953552,0,0.9999999403953552,0,1.0,0,1.000000238418579,0,1.000000238418579,0,1.000000238418579,0,1.000000238418579,0,1.0000003576278687,0,1.0000003576278687,0,1.0000003576278687,0,1.0000003576278687,0,1.0000005960464478,0,1.0000007152557373,0,1.0000005960464478,0,1.0000005960464478,0,1.0000004768371582,0,1.0000004768371582,0,1.0000004768371582,0,1.0000004768371582,0,1.000000238418579,0,1.0000001192092896,0,1.0000001192092896,0,1.000000238418579,0,0.999999463558197,0,0.999999463558197,0,0.9999994039535522,0,0.999999463558197,0,1.0000004768371582,0,1.0000004768371582,0,1.0000004768371582,0,1.0000004768371582,0,1.0000007152557373,0,1.0000007152557373,0,1.0000007152557373,0,1.0000007152557373,0,1.0000016689300537,0,1.0000016689300537,0,1.0000016689300537,0,1.0000015497207642,0,1.0000020265579224,0,1.0000019073486328,0,1.0000019073486328,0,1.0000020265579224,0,1.0000004768371582,0,1.0000004768371582,0,1.0000003576278687,0,1.0000003576278687,0,1.0000008344650269,0,1.0000008344650269,0,1.0000008344650269,0,1.0000008344650269,0,1.0000016689300537,0,1.0000016689300537,0,1.0000016689300537,0,1.0000016689300537,0,1.0000001192092896,0,1.0000004768371582,0,1.0000001192092896,0,1.0,0,1.0000001192092896,0,1.000000238418579,0,1.0000001192092896,0,1.0000001192092896,0,1.0,0,1.0000001192092896,0,1.0000001192092896,0,1.0,0,0.9999998807907104,0,0.9999998807907104,0,0.9999999403953552,0,0.9999999403953552,0,0.9999999403953552,0,0.9999999403953552,0,0.9999999403953552,0,0.9999999403953552,0,1.0000007152557373,0,1.0000007152557373,0,1.0000008344650269,0,1.0000008344650269,0,1.0000001192092896,0,1.0000009536743164,0,1.0000009536743164,0,1.0000009536743164,0,1.0000009536743164,0,1.0000001192092896,0,1.0000001192092896,0,1.0000001192092896,0,1.0,0,1.0,0,1.0000001192092896,0,1.0,0,1.0000001192092896,0,1.000000238418579,0,1.000000238418579,0,1.000000238418579,0,1.000000238418579,0,1.000000238418579,0,1.0000001192092896,0,1.0000001192092896,0,1.000000238418579,0,1.0000003576278687,0,1.000000238418579,0,1.0000001192092896,0,1.0000003576278687,0,1.000001072883606,0,1.000001072883606,0,1.000001072883606,0,1.0000009536743164,0,1.0000003576278687,0,1.000000238418579,0,1.0000004768371582,0,1.0000001192092896,0,1.0,0,1.0000001192092896,0,1.0000001192092896,0,1.0000001192092896,0,1.0000001192092896,0,1.0000004768371582,0,1.0000001192092896,0,1.0000003576278687,0,1.0000001192092896,0,1.0000001192092896,0,1.0,0.003008756786584854,1.0,0.004071872681379318,1.0,0.0062774792313575745,1.0,0.006425492465496063,1.0,0.0033544450998306274,1.0,0.008854124695062637,1.0,0.00417916476726532,1.0,0.009866449981927872,1.0,0.016116950660943985,1.0,0.012155037373304367,1.0,0.004647459834814072,1.0,0.011099599301815033,1.0,0.003759194165468216,1.0,0.006172250956296921,1.0,0.008116200566291809,1.0,0.007184486836194992,1.0,0.0031717754900455475,1.0,0.0035293474793434143,1.0,0.00412696972489357,1.0,0.00429997593164444,1.0,0.005659673362970352,1.0,0.0032263100147247314,1.0,0.003216572105884552,1.0,0.0029259994626045227,1.0,0.0024858564138412476,1.0,0.004529289901256561,1.0,0.002933397889137268,1.0,0.0023414865136146545,1.0,0.001606076955795288,1.0,0.0023944079875946045,1.0,0.0027117766439914703,1.0,0.0021928735077381134,1.0,0.0039388760924339294,1.0,0.0022473596036434174,1.0,0.00330902636051178,1.0,0.003474131226539612,1.0,0.003060135990381241,1.0,0.0029557012021541595,1.0,0.00542878732085228,1.0,0.0034138597548007965,1.0,0.004528269171714783,1.0,0.006601795554161072,1.0,0.00882251188158989,1.0,0.0076385438442230225,1.0,0.0036521852016448975,1.0,0.006098408252000809,1.0,0.008626282215118408,1.0,0.0038177892565727234,1.0,0.005842003971338272,1.0,0.008294787257909775,1.0,0.01380955707281828,1.0,0.008667081594467163,1.0,0.0044369325041770935,1.0,0.00522390753030777,1.0,0.006973844021558762,1.0,0.0038558505475521088,1.0,0.004199270159006119,1.0,0.004997480660676956,1.0,0.0031292662024497986,1.0,0.0032406412065029144,1.0,0.002656713128089905,1.0,0.001978673040866852,1.0,0.0038903802633285522,1.0,0.002241332083940506,1.0,0.001719653606414795,1.0,0.0010482221841812134,1.0,0.0012432225048542023,1.0,0.003714766353368759,1.0,0.002599462866783142,1.0,0.0020486153662204742,1.0,0.001522008329629898,1.0,0.0010692290961742401,1.0,0.0015224330127239227,1.0,0.002539612352848053,1.0,0.002618350088596344,1.0,0.0020254142582416534,1.0,0.0012977086007595062,1.0,0.0014635398983955383,1.0,0.0027873851358890533,1.0,0.002375040203332901,1.0,0.001881178468465805,1.0,0.0024324096739292145,1.0,0.0045265257358551025,1.0,0.0053378865122795105,0.9438422322273254,0,0.7841994762420654,0.10064639151096344,0.7988623380661011,0.09595459699630737,0.8965981602668762,0.04172975942492485,0.3755738139152527,0.2774634063243866,0.44822242856025696,0.2515256404876709,0.4605533182621002,0.21973930299282074,0.42272478342056274,0.2855665683746338,0.5216286778450012,0.22545075416564941,0.5406102538108826,0.1851654052734375,0.38059327006340027,0.34142035245895386,0.5203310251235962,0.24623125791549683,0.6746598482131958,0.12704451382160187,0.6323869824409485,0.1634221374988556,0.7251096367835999,0.12330511957406998,0.8619343042373657,0.055049508810043335,0.6297817230224609,0.18209175765514374,0.63203364610672,0.18565154075622559,0.37320995330810547,0.3504786789417267,0.5349051356315613,0.24365876615047455,0.4059205949306488,0.2412457913160324,0.3050800859928131,0.2779441177845001,0.8224593997001648,0.1001582220196724,0.9488728046417236,0.0,0.9478009343147278,0.0,0.9053529500961304,0.0,0.8462051749229431,0.0,0.8373297452926636,0.13191497325897217,0.8386027812957764,0.003808051347732544,0.8922988176345825,0.0,0.912390410900116,0.0,0.3067133128643036,0.30402952432632446,0.6014005541801453,0.14262093603610992,0.5391958355903625,0.20028220117092133,0.5087202191352844,0.2065507471561432,0.4446388781070709,0.3925694227218628,0.47598451375961304,0.25531595945358276,0.3225298523902893,0.30974656343460083,0.4990939497947693,0.1842859983444214,0.3493975102901459,0.32716020941734314,0.692098081111908,0.11194770783185959,0.9486086964607239,0.02031983807682991,0.9173586368560791,0.038553524762392044,0.8340819478034973,0.08559299260377884,0.8237846493721008,0.1312238723039627,0.8362260460853577,0.09146148711442947,0.7131983637809753,0.14904072880744934,0.842746913433075,0.1440727859735489,0.9443109631538391,0.047446269541978836,0.7550981044769287,0.223344087600708,0.7326042652130127,0.24367350339889526,0.7027283906936646,0.2112509310245514,0.7276455760002136,0.23219753801822662,0.6733494400978088,0.2534160912036896,0.4430493414402008,0.23870331048965454,0.7104042172431946,0.19051538407802582,0.4072217345237732,0.3964008688926697,0.9811343550682068,0,0.9660831093788147,0,0.9477288126945496,0.015267047099769115,0.9652717113494873,0.004530306905508041,0.9920698404312134,0,0.9136751294136047,0.055051252245903015,0.9292336702346802,0.045857023447752,0.912815511226654,0.059461869299411774,0.9606578350067139,0.02756587043404579,0.944961667060852,0.054029736667871475,0.739957869052887,0.25819098949432373,0.839465856552124,0.15939545631408691,0.9616245627403259,0.02628028765320778,0.7851057052612305,0.21444228291511536,0.9940441846847534,0.0,0.9917648434638977,0,0.9902787208557129,0,0.9961609840393066,0,0.995992124080658,0,0.9918216466903687,0.0,0.9935311675071716,0,0.9892883896827698,0,0.7176133990287781,0.10550995171070099,0.6861196756362915,0.13002683222293854,0.6804535388946533,0.1308450847864151,0.6240982413291931,0.19518215954303741,0.37245121598243713,0.3287314176559448,0.40994781255722046,0.3223377466201782,0.6852883100509644,0.13056698441505432,0.7713408470153809,0.14443077147006989,0.7425413131713867,0.10199718922376633,0.5589261651039124,0.16218948364257812,0.6350134611129761,0.1728733479976654,0.7442119717597961,0.098265141248703,0.48291656374931335,0.42204588651657104,0.5486728549003601,0.19914309680461884,0.49437472224235535,0.25184524059295654,0.7217085957527161,0.10289258509874344,0.8693471550941467,0.06284963339567184,0.7301526069641113,0.20523706078529358,0.5345240235328674,0.3087659776210785,0.5293460488319397,0.22386831045150757,0.9187254905700684,0.08112117648124695,0.7834087014198303,0.2163117676973343,0.7884761095046997,0.2110605537891388,0.7751954197883606,0.22407035529613495,0.8879159688949585,0.11135546118021011,0.9319940805435181,0.06630578637123108,0.9364858865737915,0.06171925738453865,0.938460648059845,0.06028987839818001,0.4335002899169922,0.1834518164396286,0.5673129558563232,0.14951418340206146,0.6341036558151245,0.13162563741207123,0.6092473864555359,0.27984920144081116,0.49188581109046936,0.2818759083747864,0.5625098347663879,0.2847687005996704,0.9317596554756165,0.049935441464185715,0.9248268604278564,0.055117540061473846,0.9251534342765808,0.055262982845306396,0.9307870864868164,0.05108623206615448,0.9338175654411316,0.04760767146945,0.9293243885040283,0.05197708308696747,0.9317570924758911,0.05011556297540665,0.9384564757347107,0.04086201265454292,0.9958732724189758,0,0.987560510635376,0,0.9869199395179749,0,0.9897310733795166,0,0.5499629378318787,0.31350570917129517,0.4026221036911011,0.3813371956348419,0.7224224805831909,0.17691193521022797,0.6429315209388733,0.1588577777147293,0.7742533683776855,0.10008800774812698,0.8481876254081726,0.09629839658737183,0.8495107293128967,0.07856148481369019,0.9178147912025452,0.053644582629203796,0.9568933248519897,0.008697457611560822,0.9274258017539978,0.04471524432301521,0.9342307448387146,0.03319947049021721,0.9609510898590088,0.0014118179678916931,0.9604610800743103,0.0035570114850997925,0.9785220623016357,0,0.9791858196258545,0,0.9763550162315369,0,0.9663405418395996,8.975714445114136e-05,0.9772748351097107,0,0.9804943203926086,0,0.6779987812042236,0.14349067211151123,0.848450779914856,0.07995843887329102,0.8450223207473755,0.07764730602502823,0.9070137739181519,0.05369345098733902,0.9259472489356995,0.039188820868730545,0.9482856392860413,0.016736362129449844,0.9378992319107056,0.032540302723646164,0.9450557827949524,0.02549692802131176,0.9560354351997375,0.009389940649271011,0.9851990938186646,0,0.9802967309951782,0,0.9866691827774048,0,0.9461079239845276,0.01736323907971382,0.9299734830856323,0.03928176686167717,0.9772305488586426,0,0.9716902375221252,0,0.9664828777313232,0,0.9745699167251587,0,0.962046205997467,0.0004584379494190216,0.959828794002533,0.004591193050146103,0.9684635400772095,0,0.933575451374054,0.04716450348496437,0.9462085366249084,0.029890570789575577,0.9525561928749084,0.021365705877542496,0.9362291097640991,0.04641154780983925,0.9605356454849243,0.008978717029094696,0.9596196413040161,0.010639484971761703,0.9295380115509033,0.05106072127819061,0.9611243009567261,0,0.8859874606132507,0.06650491058826447,0.907511293888092,0.06020595505833626,0.8736671805381775,0.07300785183906555,0.8808193206787109,0.08633829653263092,0.874266505241394,0.0890873521566391,0.8897646069526672,0.08010808378458023,0.9202820658683777,0.05634355917572975,0.9003170728683472,0.07390856742858887,0.9033634662628174,0.07260365784168243,0.8224362134933472,0.09081137180328369,0.8500949144363403,0.08171764016151428,0.8662785291671753,0.0788407251238823,0.8686890006065369,0.09202516078948975,0.8685216307640076,0.09410886466503143,0.8734090924263,0.091832734644413,0.8799579739570618,0.08932294696569443,0.8924843072891235,0.0806533470749855,0.9250358939170837,0.05379443243145943,0.975125253200531,0,0.9748197793960571,0,0.8983168601989746,0.07681501656770706,0.8779858946800232,0.09060505032539368,0.9140718579292297,0.06366351991891861,0.9110413193702698,0.06435728818178177,0.8997901678085327,0.06911921501159668,0.8900688886642456,0.07294154912233353,0.8776686787605286,0.08078934997320175,0.8700776100158691,0.08475256711244583,0.9226989150047302,0.05718464031815529,0.9843400120735168,0,0.7860625982284546,0.09865732491016388,0.8016486167907715,0.09766626358032227,0.9740126729011536,0,0.9721177816390991,0,0.9462973475456238,0.02506392076611519,0.9363568425178528,0.047422077506780624,0.9599394798278809,0.010253258049488068,0.9719917178153992,0,0.9703534841537476,0,0.9604524970054626,0.004233807325363159,0.9488340020179749,0.022186968475580215,0.9354531764984131,0.050561271607875824,0.962906539440155,0.005546744912862778,0.9709405303001404,0,0.968590497970581,0,0.9623833298683167,0.0023208744823932648,0.9617548584938049,0.0045555830001831055,0.9598692059516907,0.010073967278003693,0.9640265107154846,0.003319002687931061,0.9645007252693176,0.0005435310304164886,0.8630604147911072,0.10488700866699219,0.8643394708633423,0.10111313313245773,0.8812297582626343,0.09245636314153671,0.8683468699455261,0.10554241389036179,0.8884233236312866,0.08563324064016342,0.8571875691413879,0.11470901221036911,0.8235219717025757,0.15212813019752502,0.805325984954834,0.17125287652015686,0.8603845834732056,0.11821532249450684,0.858248233795166,0.11857888102531433,0.8613120317459106,0.11843432486057281,0.838978111743927,0.1356983333826065,0.9089170694351196,0.06799260526895523,0.9031621813774109,0.07135291397571564,0.8930333256721497,0.07656507939100266,0.8871034979820251,0.07855518907308578,0.8774274587631226,0.08442401140928268,0.86970055103302,0.0890861377120018,0.8791730403900146,0.08348940312862396,0.9153487086296082,0.03374933823943138,0.8229508996009827,0.13723869621753693,0.9054675102233887,0.04757136479020119,0.6925143599510193,0.29476943612098694,0.7847466468811035,0.11960633099079132,0.9786306619644165,0,0.980744481086731,0,0.9740041494369507,0,0.9737829566001892,0,0.9985853433609009,0,0.9903246164321899,0,0.9255916476249695,0.07070822268724442,0.9850889444351196,0,0.9930152297019958,0,0.9947863817214966,0,0.984199583530426,0,0.9983017444610596,0,0.9999100565910339,0,0.9999058246612549,0,0.9999423623085022,0,0.9999056458473206,0,0.997778594493866,0,0.9951415061950684,0,0.9993842840194702,0,0.9987397789955139,0,0.9878455400466919,0,0.9769227504730225,0,0.9358312487602234,0.05521300435066223,0.7729249000549316,0.11614247411489487,0.7085117101669312,0.14414823055267334,0.9946082830429077,0,0.8930872082710266,0.05973752588033676,0.8285869359970093,0.09543269127607346,0.9936509728431702,0,0.7573838233947754,0.23674288392066956,0.6871969103813171,0.3033555746078491,0.7324197292327881,0.2534547448158264,0.6542328000068665,0.3368546664714813,0.9348214268684387,0.06373520940542221,0.9157998561859131,0.07806432992219925,0.9840587973594666,0,0.6542795896530151,0.3193155825138092,0.7587478756904602,0.22293353080749512,0.7873037457466125,0.14342929422855377,0.864875078201294,0.09120532870292664,0.9119507670402527,0.058516718447208405,0.9344655871391296,0.017667163163423538,0.9904654622077942,0,0.971389651298523,0,0.9814711213111877,0,0.7531606554985046,0.17387893795967102,0.7256601452827454,0.26868128776550293,0.747743546962738,0.2480284422636032,0.9949121475219727,0,0.9408716559410095,0.05726039782166481,0.9317983388900757,0.06246008351445198,0.987144947052002,0,0.9725534915924072,0,0.9728390574455261,0,0.9738477468490601,0,0.971989631652832,0,0.9708548784255981,0.0018746033310890198,0.9693484902381897,0.004667062312364578,0.96955406665802,0.004023522138595581,0.9708131551742554,0.0019982382655143738,0.971930980682373,0.0001189596951007843,0.962500274181366,0.01571732386946678,0.9634089469909668,0.015307354740798473,0.9829722046852112,0,0.9839662313461304,0,0.9823997020721436,0,0.98213791847229,0,0.9812852740287781,0,0.981475293636322,0,0.9804805517196655,0,0.9796726703643799,0,0.9954125285148621,0,0.9982230067253113,0,0.9987094402313232,0,0.9990307688713074,0,0.9997329115867615,0,0.9996453523635864,0,0.9900453686714172,0,0.9937843084335327,0,0.9924063682556152,0,0.9917328357696533,0,0.9926128387451172,0,0.9996911287307739,0,0.9986894130706787,0,0.9751225709915161,0,0.9750139713287354,0,0.9725435376167297,0.0006431154906749725,0.9529011845588684,0.016817595809698105,0.9326875805854797,0.05202687159180641,0.9394489526748657,0.049029093235731125,0.9500660300254822,0.028534991666674614,0.9606581926345825,0,0.9426486492156982,0.052755601704120636,0.9144452810287476,0.07643704116344452,0.9141494035720825,0.07413226366043091,0.8569777011871338,0.1206880658864975,0.9261813759803772,0.06538388878107071,0.7950273752212524,0.18058103322982788,0.7816808223724365,0.10047882050275803,0.5965818166732788,0.20725436508655548,0.7284485697746277,0.2227977067232132,0.9409074783325195,0.04808888956904411,0.8930124640464783,0.05662861093878746,0.6226481199264526,0.2145596444606781,0.6272262334823608,0.20021913945674896,0.8052811622619629,0.12048869580030441,0.8387194275856018,0.14767006039619446,0.9756860733032227,0,0.9747273325920105,0,0.9642651677131653,0,0.8708727359771729,0.0,0.8654288649559021,0.0,0.8055233955383301,0.0,0.8083263635635376,0.0,0.809191107749939,0.1603013128042221,0.7816899418830872,0.027673769742250443,0.7851906418800354,0.04152415320277214,0.824080228805542,0.029215458780527115,0.930974543094635,0.024647075682878494,0.5497320890426636,0.2518181800842285,0.43953439593315125,0.3464919924736023,0.9930973052978516,0,0.9902034997940063,0,0.9851970672607422,0,0.9623752236366272,0.010379444807767868,0.9136817455291748,0.07278480380773544,0.9008297920227051,0.08762472867965698,0.8979142308235168,0.09473518282175064,0.9485661387443542,0.047366198152303696,0.6645653247833252,0.32945525646209717,0.5473237633705139,0.43302395939826965,0.5026021599769592,0.28457924723625183,0.42154550552368164,0.2392609715461731,0.735235869884491,0.10176088660955429,0.16432420909404755,0.12262286245822906,0.6893730163574219,0.12668663263320923,0.775176465511322,0.13220258057117462,0.06630492955446243,0.011385243386030197,0.11691249161958694,0.05876048654317856,0.21105049550533295,0.18372762203216553,0.2543233036994934,0.09398327022790909,0.6416172385215759,0.20890070497989655,0.6288654208183289,0.17189891636371613,0.6970071792602539,0.14577901363372803,0.7853823304176331,0.0650235265493393,0.8209225535392761,0.060349736362695694,0.831010103225708,0.1005931943655014,0.6823642253875732,0.12903344631195068,0.9218890070915222,0.0,0.8125454783439636,0.07962898164987564,0.7998144626617432,0.12543489038944244,0.9077761173248291,0.0489390604197979,0.9177407622337341,0.05313202738761902,0.9380599856376648,0.037689920514822006,0.8658372759819031,0.07045998424291611,0.8628214001655579,0.09502221643924713,0.9376276731491089,0.015789825469255447,0.8921424746513367,0.08272110670804977,0.9025644063949585,0.09034812450408936,0.892320990562439,0.10396479815244675,0.9587494730949402,0.029572082683444023,0.9324105978012085,0.06576286256313324,0.9871947765350342,0,0.9797613620758057,0,0.995913565158844,0,0.9864369034767151,0,0.8126192092895508,0.07872867584228516,0.8259778022766113,0.0830172523856163,0.896865963935852,0.054562512785196304,0.9070138335227966,0.03139202669262886,0.935981035232544,0.05284009873867035,0.9458776116371155,0.037130530923604965,0.9630230665206909,0.014164949767291546,0.953413188457489,0.005226869136095047,0.9360471963882446,0.05919171869754791,0.8969534039497375,0.0991038829088211,0.9040586352348328,0.09423917531967163,0.5395222306251526,0.4597315788269043,0.9232475161552429,0.076432965695858,0.7371017336845398,0.26181572675704956,0.9242557883262634,0.07557515054941177,0.9240582585334778,0.07576080411672592,0.8540681004524231,0.0,0.6590107083320618,0.25293806195259094,0.7198205590248108,0.11986542493104935,0.5953516364097595,0.29078540205955505,0.4987376034259796,0.49349454045295715,0.38686102628707886,0.33904018998146057,0.49633529782295227,0.4924343228340149,0.8905397653579712,0.10598403960466385,0.6609217524528503,0.32986879348754883,0.9041817784309387,0.09100629389286041,0.6576048731803894,0.3304705023765564,0.9025192260742188,0.021500226110219955,0.7938123941421509,0.16112665832042694,0.9471741318702698,0.040111321955919266,0.9210854768753052,0.04895460233092308,0.8914682269096375,0.07557719200849533,0.7583543062210083,0.22750550508499146,0.926591157913208,0.03006592206656933,0.9095491170883179,0.08943353593349457,0.8935387134552002,0.10197360813617706,0.8700069189071655,0.10005452483892441,0.8542004823684692,0.14497894048690796,0.8919382691383362,0.10751019418239594,0.9853825569152832,0,0.8531485795974731,0.1428336352109909,0.9767038822174072,0,0.92490154504776,0.07448388636112213,0.8079177737236023,0.09975374490022659,0.7878766059875488,0.11497753858566284,0.8974109292030334,0.0447789691388607,0.8701032996177673,0.07392485439777374,0.8966808319091797,0.061396561563014984,0.8805606365203857,0.05889549106359482,0.9274401068687439,0.038367997854948044,0.9191632866859436,0.02669650688767433,0.9162942171096802,0.07996504008769989,0.9200498461723328,0.07529766112565994,0.9534704685211182,0.04018888249993324,0.9620800614356995,0.02235547825694084,0.9909462332725525,0,0.9885812997817993,0,0.994446337223053,0,0.9860022664070129,0,0.8477383255958557,0.11318314075469971,0.9088435769081116,0.08081430941820145,0.5458751916885376,0.2656311094760895,0.6784471273422241,0.15780702233314514,0.8464580774307251,0.04517639800906181,0.6936355829238892,0.16008037328720093,0.6697731018066406,0.24915993213653564,0.7360867261886597,0.10964168608188629,0.6237043738365173,0.09164221584796906,0.6830511689186096,0.0982685461640358,0.7012795209884644,0.19707165658473969,0.4812695384025574,0.21797284483909607,0.6675220131874084,0.11609602719545364,0.5423985123634338,0.3251730501651764,0.9643983244895935,0.0,0.8807971477508545,0.04200415685772896,0.9331114888191223,0.03103226236999035,0.9704397320747375,0.0,0.5263367295265198,0.4321686029434204,0.4991105794906616,0.4299197196960449,0.6763076782226562,0.2663751542568207,0.8053203225135803,0.19053435325622559,0.8495089411735535,0.12952743470668793,0.8805453777313232,0.11220603436231613,0.6917016506195068,0.2956995666027069,0.7492483258247375,0.2447449117898941,0.7575374841690063,0.22163259983062744,0.7229931354522705,0.20416253805160522,0.5779806971549988,0.20324335992336273,0.946651041507721,0.017764199525117874,0.9463686347007751,0,0.8546379804611206,0.06318522244691849,0.9688092470169067,0,0.9792726635932922,0,0.9377585649490356,0.012760440818965435,0.950657069683075,0.0051512084901332855,0.9609946012496948,0,0.9265058040618896,0.014967779628932476,0.888797402381897,0.05046996474266052,0.8529095649719238,0.09703315049409866,0.7792625427246094,0.13802695274353027,0.5388283729553223,0.4115853011608124,0.8921396732330322,0.04078010097146034,0.8062342405319214,0.08950557559728622,0.653072714805603,0.20974208414554596,0.6709449887275696,0.3105175793170929,0.5731235146522522,0.4208217263221741,0.5528668165206909,0.4374717175960541,0.6242861151695251,0.31975337862968445,0.5706968903541565,0.2917756140232086,0.5577794313430786,0.24923542141914368,0.5138449668884277,0.2560811936855316,0.49353915452957153,0.4673331677913666,0.5677780508995056,0.20298241078853607,0.5077174305915833,0.42204514145851135,0.5900484919548035,0.24259930849075317,0.5014431476593018,0.32406818866729736,0.4821940064430237,0.34858399629592896,0.6202695369720459,0.24569284915924072,0.8433313369750977,0.08276353776454926,0.676322877407074,0.16200551390647888,0.46219947934150696,0.3119834065437317,0.7236670851707458,0.11621304601430893,0.8127793669700623,0.11483703553676605,0.32456621527671814,0.3116573989391327,0.6890783309936523,0.16466794908046722,0.6751490235328674,0.09722007811069489,0.5147621035575867,0.18540921807289124,0.3216303884983063,0.23660434782505035,0.3237169682979584,0.20470799505710602,0.8050040006637573,0.08200826495885849,0.3740652799606323,0.32487252354621887,0.4643212854862213,0.43105772137641907,0.4703543484210968,0.44734546542167664,0.4766123294830322,0.21621018648147583,0.7582566142082214,0.09784016758203506,0.7452467083930969,0.17096488177776337,0.6126723289489746,0.17909616231918335,0.4412022531032562,0.35361436009407043,0.46592727303504944,0.26834747195243835,1.0,0.05134447291493416,1.0,0.05339500680565834,1.0,0.05322980135679245,1.0,0.05026112124323845,1.0,0.057389456778764725,1.0,0.055881135165691376,1.0,0.05050723999738693,1.0,0.05102492868900299,1.0,0.056132350116968155,1.0,0.05788533762097359,1.0,0.05143723264336586,1.0,0.05276935175061226,1.0,0.0608498752117157,1.0,0.05906358361244202,1.0,0.05490162968635559,1.0,0.05051547288894653,1.0,0.05100207030773163,1.0,0.051363252103328705,1.0,0.05450596660375595,1.0,0.05361180379986763,1.0,0.05003057047724724,1.0,0.05050978809595108,1.0,0.05069851502776146,1.0,0.050953324884176254,1.0,0.0522516593337059,1.0,0.05002249404788017,1.0,0.04975229874253273,1.0,0.05123695358633995,1.0,0.048983607441186905,1.0,0.04838266596198082,1.0,0.04702621325850487,1.0,0.04853157326579094,1.0,0.04917309805750847,1.0,0.048279423266649246,1.0,0.04642220214009285,1.0,0.047006551176309586,1.0,0.04616193100810051,1.0,0.048996713012456894,1.0,0.050799500197172165,1.0,0.05247297137975693,1.0,0.04909637197852135,1.0,0.04802418872714043,1.0,0.050298891961574554,1.0,0.04792454466223717,1.0,0.05061304196715355,1.0,0.051567599177360535,1.0,0.04999065771698952,1.0,0.04996159300208092,1.0,0.05014432966709137,1.0,0.05286138132214546,1.0,0.05039902403950691,1.0,0.05163929611444473,1.0,0.05404499173164368,1.0,0.05428782105445862,1.0,0.052829012274742126,1.0,0.06056569516658783,1.0,0.0549735426902771,1.0,0.05062386766076088,1.0,0.05591146647930145,1.0,0.052576761692762375,1.0,0.054118432104587555,1.0,0.050291869789361954,1.0,0.0510065034031868,1.0,0.05166150629520416,1.0,0.049942854791879654,1.0,0.04941786453127861,1.0,0.04864445701241493,1.0,0.05003055930137634,1.0,0.04954002425074577,1.0,0.04771139845252037,1.0,0.05067552626132965,1.0,0.047295425087213516,1.0,0.046030085533857346,1.0,0.04823670908808708,1.0,0.05054861679673195,1.0,0.04901212826371193,1.0,0.047990504652261734,1.0,0.04705381765961647,1.0,0.046665024012327194,1.0,0.04703323170542717,1.0,0.04858214780688286,1.0,0.051363978534936905,1.0,0.049456749111413956,1.0,0.048779550939798355,1.0,0.04911176487803459,1.0,0.05219750106334686,0.2977543771266937,0.2209390252828598,0.6865919232368469,0.10621420294046402,0.5539810061454773,0.14852699637413025,0.8708412051200867,0.04031064733862877,0.9850324392318726,0,0.9410189390182495,0,0.4208173155784607,0.18882371485233307,0.9378252029418945,0.004677470773458481,0.7684381008148193,0.10785210132598877,0.792311429977417,0.09900100529193878,0.9072434306144714,0.03196785971522331,0.3783336579799652,0.2731567323207855,0.4509093463420868,0.246897891163826,0.46294403076171875,0.21564911305904388,0.41400185227394104,0.2904280126094818,0.5086139440536499,0.2322409749031067,0.5296525955200195,0.19164986908435822,0.3726969361305237,0.3456535041332245,0.5083350539207458,0.25225991010665894,0.6525876522064209,0.13833998143672943,0.6116076111793518,0.17353545129299164,0.6942183971405029,0.13729792833328247,0.793361246585846,0.08463717252016068,0.6137837171554565,0.18973229825496674,0.6197992563247681,0.1915585994720459,0.36557161808013916,0.35454225540161133,0.5238326787948608,0.24917596578598022,0.4007825553417206,0.24499334394931793,0.3072965443134308,0.2754738926887512,0.7159859538078308,0.05803075432777405,0.7129176259040833,0.1562255471944809,0.27052173018455505,0.21728697419166565,0.574316680431366,0.11353815346956253,0.7642682194709778,0.09842053055763245,0.8154188394546509,0.0829082727432251,0.8226836323738098,0.09994054585695267,0.2334936112165451,0.23238377273082733,0.38228026032447815,0.21504682302474976,0.624690055847168,0.26845359802246094,0.6541115641593933,0.1275654137134552,0.9488728046417236,0.038523685187101364,0.9478009343147278,0.03961298242211342,0.9053529500961304,0.07822133600711823,0.8462051749229431,0.12518095970153809,0.8373297452926636,0.13191497325897217,0.8386027812957764,0.12632174789905548,0.8922988176345825,0.08311767876148224,0.912390410900116,0.0674721971154213,0.3074120879173279,0.3014809787273407,0.6021936535835266,0.14237448573112488,0.5397472381591797,0.20045478641986847,0.5022697448730469,0.20867696404457092,0.44123485684394836,0.3912326395511627,0.4685150384902954,0.25765925645828247,0.3216698169708252,0.31023046374320984,0.5000563263893127,0.1840500831604004,0.3486476242542267,0.32795363664627075,0.692887544631958,0.11213315278291702,0.9486260414123535,0.020375940948724747,0.9174104332923889,0.038684215396642685,0.8341833353042603,0.08572287857532501,0.8238245248794556,0.13130886852741241,0.8363440632820129,0.09160548448562622,0.7134349942207336,0.14931583404541016,0.8427571654319763,0.1440972089767456,0.944317102432251,0.04747627303004265,0.7551169395446777,0.22340789437294006,0.7326650619506836,0.24369293451309204,0.7028458714485168,0.21145407855510712,0.7276870012283325,0.23227961361408234,0.6735134124755859,0.25348639488220215,0.44388318061828613,0.23911680281162262,0.7105762958526611,0.19074776768684387,0.4077304005622864,0.3967887759208679,0.9811378121376038,0,0.9660917520523071,0.0,0.9477420449256897,0.015267225913703442,0.9652724862098694,0.004530321806669235,0.9920706152915955,0,0.9136877059936523,0.05505136027932167,0.9292383193969727,0.04585709795355797,0.9128307700157166,0.05946199223399162,0.9606578350067139,0.02756597474217415,0.944961667060852,0.05402985215187073,0.7399590611457825,0.25819098949432373,0.8394665122032166,0.1593954712152481,0.9616245627403259,0.026280326768755913,0.7851059436798096,0.21444228291511536,0.9940441846847534,0,0.9917648434638977,0,0.9902787208557129,0,0.9961609840393066,0,0.995992124080658,0,0.9918216466903687,0,0.9935311675071716,0,0.9892883896827698,0,0.7159441113471985,0.10629306733608246,0.6842090487480164,0.13114431500434875,0.6787407398223877,0.13186323642730713,0.6244516372680664,0.19483070075511932,0.3696148693561554,0.33015456795692444,0.3466302752494812,0.22499193251132965,0.40922409296035767,0.32293444871902466,0.6856560707092285,0.130382239818573,0.7716042995452881,0.14410369098186493,0.7409376502037048,0.10286176949739456,0.5556798577308655,0.16329410672187805,0.6301367878913879,0.17473484575748444,0.7430818676948547,0.09824768453836441,0.4898098111152649,0.19595788419246674,0.4810403287410736,0.4211347997188568,0.5448364615440369,0.20101019740104675,0.49518465995788574,0.25085654854774475,0.7220842242240906,0.10279130935668945,0.8695178031921387,0.06289734691381454,0.730381965637207,0.20529504120349884,0.534841775894165,0.3088809847831726,0.5295993685722351,0.22420945763587952,0.9187254905700684,0.08112120628356934,0.7834086418151855,0.21631190180778503,0.7884761095046997,0.2110607624053955,0.7751954197883606,0.2240706980228424,0.8879159688949585,0.11135581880807877,0.9319940805435181,0.0663064494729042,0.9364859461784363,0.06171983480453491,0.938460648059845,0.060290172696113586,0.43513354659080505,0.18132811784744263,0.5688765645027161,0.1470152884721756,0.2953261733055115,0.25535374879837036,0.6320357918739319,0.13222859799861908,0.6072572469711304,0.2804020941257477,0.4877341389656067,0.2822358012199402,0.5587843656539917,0.2855722904205322,0.9344407916069031,0.04677233472466469,0.9322165250778198,0.05003872141242027,0.9255350232124329,0.05506821721792221,0.9398835301399231,0.03889487311244011,0.951885998249054,0.02158176526427269,0.9758340120315552,0,0.9041610956192017,0.07224211096763611,0.9640533328056335,0.0036066174507141113,0.9879967570304871,0,0.8659915924072266,0.09591355919837952,0.8488613963127136,0.08255743235349655,0.8650804162025452,0.07988332957029343,0.8128626942634583,0.09488457441329956,0.58961421251297,0.27528488636016846,0.9990060329437256,0,0.991399884223938,0,0.899573028087616,0.07608658820390701,0.8671087026596069,0.09292732179164886,0.9159945249557495,0.06258349120616913,0.8682166337966919,0.08552336692810059,0.9225683212280273,0.05739032104611397,0.9848406910896301,0,0.6543784141540527,0.16172558069229126,0.8619086742401123,0.10303381830453873,0.8895978331565857,0.08477422595024109,0.7733314633369446,0.20447473227977753,0.861414909362793,0.11883754283189774,0.8679523468017578,0.08970499038696289,0.9092702865600586,0.06804747134447098,0.3551122546195984,0.3125135004520416,0.6154323220252991,0.24112360179424286,0.4819623827934265,0.2918848991394043,0.4886605143547058,0.16828706860542297,0.931431233882904,0.050337448716163635,0.9244713187217712,0.055544860661029816,0.9250137209892273,0.055427245795726776,0.9307160377502441,0.05116672068834305,0.9337297081947327,0.04781268909573555,0.9291107058525085,0.05222693085670471,0.9315139651298523,0.05039353296160698,0.9383110404014587,0.041218843311071396,0.997506856918335,0,0.993494987487793,0,0.99335777759552,0,0.9942775964736938,0,0.5047253370285034,0.3009285032749176,0.4072970747947693,0.37088772654533386,0.7270233035087585,0.1717267483472824,0.6531186103820801,0.15248870849609375,0.7809813022613525,0.0963839516043663,0.853587806224823,0.09111803770065308,0.8544132113456726,0.07531215995550156,0.9218494892120361,0.0490109808743,0.959824800491333,0.0025444738566875458,0.9311914443969727,0.03713633492588997,0.9377536177635193,0.02683943323791027,0.9638859033584595,0,0.9633477330207825,0,0.9812437891960144,0,0.9820428490638733,0,0.9773800373077393,0,0.9667366743087769,0,0.9776936173439026,0,0.9822686314582825,0,0.68150794506073,0.1418369859457016,0.8495097756385803,0.07952231168746948,0.847750723361969,0.07616624236106873,0.9087318181991577,0.05273463577032089,0.9293894171714783,0.03372540697455406,0.9500946998596191,0.014179396443068981,0.9388748407363892,0.031429070979356766,0.9459453821182251,0.024414662271738052,0.9575350880622864,0.00730438157916069,0.9887902736663818,0,0.9831708073616028,0,0.9893175959587097,0,0.9483892917633057,0.013995933346450329,0.9310667514801025,0.03809883072972298,0.9813510775566101,0,0.9746281504631042,0,0.9687142372131348,0,0.9777591824531555,0,0.964139461517334,0,0.9614009857177734,0.0023794658482074738,0.9710355997085571,0,0.9337105751037598,0.04732752963900566,0.946190595626831,0.030029762536287308,0.9526945948600769,0.02128937467932701,0.9364144802093506,0.04643748328089714,0.9606565833091736,0.008850492537021637,0.9598245620727539,0.010439425706863403,0.9294475317001343,0.05134456604719162,0.9638749957084656,0,0.8867162466049194,0.06636828184127808,0.9076539874076843,0.06049490347504616,0.874012291431427,0.07311318069696426,0.8782006502151489,0.08920782804489136,0.8723111748695374,0.09124098718166351,0.8877031803131104,0.08240624517202377,0.9199538826942444,0.05690394341945648,0.8990247845649719,0.0753469318151474,0.9027403593063354,0.07328928261995316,0.8229432106018066,0.0905919075012207,0.8503624796867371,0.08167344331741333,0.8662431240081787,0.0790456011891365,0.8677698373794556,0.09303423017263412,0.8671612739562988,0.0955769270658493,0.8708648681640625,0.09457870572805405,0.8767553567886353,0.0927671268582344,0.8906234502792358,0.08267217129468918,0.924789547920227,0.05422816798090935,0.9778816103935242,0,0.9775280952453613,0,0.8974481821060181,0.07775698602199554,0.8745766282081604,0.09426367282867432,0.9135683178901672,0.06424003839492798,0.9102521538734436,0.06532327085733414,0.8988632559776306,0.07035919278860092,0.8892911076545715,0.07407856732606888,0.8766556978225708,0.08207357674837112,0.8695719242095947,0.08537916094064713,0.9225566983222961,0.05734968185424805,0.9850558042526245,0,0.7899595499038696,0.0966387540102005,0.8028807640075684,0.09706572443246841,0.9748746156692505,0,0.9745404720306396,0,0.9470490217208862,0.02417156472802162,0.9365494847297668,0.04742388799786568,0.9601759910583496,0.010017246007919312,0.9728844165802002,0,0.9724102020263672,0,0.9618111848831177,0.0023385025560855865,0.9494914412498474,0.02141069993376732,0.9356492161750793,0.05055483430624008,0.963153600692749,0.005294416099786758,0.9714837074279785,0,0.9693444967269897,0,0.9632309675216675,0.001167844980955124,0.9614396095275879,0.005103152245283127,0.9600638151168823,0.009918157011270523,0.9643549919128418,0.0029513128101825714,0.9647627472877502,0.0002514757215976715,0.8575749397277832,0.11062156409025192,0.8618823289871216,0.10369566082954407,0.8782277703285217,0.0956292599439621,0.8622183799743652,0.11195695400238037,0.8870320320129395,0.08711151033639908,0.8479467630386353,0.12431246042251587,0.8018171191215515,0.17452065646648407,0.7766868472099304,0.20075809955596924,0.8543429374694824,0.1245291605591774,0.8499218225479126,0.12725718319416046,0.858124852180481,0.12177527695894241,0.8230352997779846,0.15218061208724976,0.9084007740020752,0.06857080012559891,0.9019634127616882,0.07270560413599014,0.891343891620636,0.07851092517375946,0.8854846358299255,0.08047465234994888,0.875789225101471,0.08630543947219849,0.8688942790031433,0.08999727666378021,0.8791730403900146,0.08348939567804337,0.9153487086296082,0.033749330788850784,0.8229508996009827,0.13723869621753693,0.9054675102233887,0.04757136479020119,0.6925143599510193,0.2947694659233093,0.7847466468811035,0.11960633099079132,0.9786306619644165,0,0.980744481086731,0,0.9740041494369507,0,0.9737829566001892,0,0.9985853433609009,0,0.9903246164321899,0,0.9255916476249695,0.07070823013782501,0.9850889444351196,0,0.9930151700973511,0,0.9947863817214966,0,0.984199583530426,0,0.9983017444610596,0,0.9999100565910339,0,0.9999058246612549,0,0.9999423623085022,0,0.9999056458473206,0,0.997778594493866,0,0.9951415061950684,0,0.9993842840194702,0,0.9987397789955139,0,0.9878455400466919,0,0.9769227504730225,0,0.9358312487602234,0.05521300435066223,0.7729249000549316,0.11614246666431427,0.7085117101669312,0.14414823055267334,0.9946082830429077,0,0.8930872082710266,0.05973752215504646,0.8285869359970093,0.09543269872665405,0.9936509728431702,0,0.7573838233947754,0.23674288392066956,0.6871969103813171,0.3033555746078491,0.7324197292327881,0.2534547448158264,0.6542328000068665,0.3368546664714813,0.9348214268684387,0.06373520940542221,0.9157998561859131,0.07806432992219925,0.9840587377548218,0,0.6542795300483704,0.3193155825138092,0.7587478756904602,0.22293353080749512,0.7873037457466125,0.14342929422855377,0.864875078201294,0.09120532870292664,0.9119507670402527,0.058516718447208405,0.9344655871391296,0.017667163163423538,0.9904654622077942,0,0.971389651298523,0,0.9814711213111877,0,0.7531606554985046,0.17387893795967102,0.7256601452827454,0.26868128776550293,0.747743546962738,0.24802842736244202,0.9949121475219727,0,0.9408716559410095,0.05726039782166481,0.9317983388900757,0.06246007978916168,0.987144947052002,0,0.9725534915924072,0,0.9728389978408813,0,0.9738477468490601,0,0.971989631652832,0,0.9708548784255981,0.0018746033310890198,0.9693484902381897,0.004667062312364578,0.9695540070533752,0.004023518413305283,0.9708131551742554,0.0019982382655143738,0.971930980682373,0.0001189596951007843,0.962500274181366,0.01571732386946678,0.963408887386322,0.015307354740798473,0.9829721450805664,0,0.9839661717414856,0,0.9823996424674988,0,0.9821378588676453,0,0.9812852144241333,0,0.9814752340316772,0,0.9804804921150208,0,0.9796726703643799,0,0.9954125285148621,0,0.9982230067253113,0,0.9987094402313232,0,0.9990307688713074,0,0.9997329115867615,0,0.9996453523635864,0,0.9900453686714172,0,0.9937843084335327,0,0.9924063682556152,0,0.9917327761650085,0,0.9926127791404724,0,0.9996911287307739,0,0.9986894130706787,0,0.9751225709915161,0,0.9750139713287354,0,0.9725435376167297,0.0006431154906749725,0.9529011845588684,0.016817595809698105,0.9326875805854797,0.05202687159180641,0.9394489526748657,0.049029093235731125,0.9500660300254822,0.028534991666674614,0.9606581926345825,0,0.9426486492156982,0.052755605429410934,0.9144452810287476,0.07643704116344452,0.9141494035720825,0.0741322711110115,0.8569777011871338,0.1206880658864975,0.9261813759803772,0.06538388878107071,0.7950273752212524,0.18058103322982788,0.7816808223724365,0.10047882050275803,0.5965818166732788,0.20725436508655548,0.7284485697746277,0.2227977067232132,0.9409074783325195,0.04808888956904411,0.8930124640464783,0.05662861093878746,0.6226481199264526,0.2145596593618393,0.6272262334823608,0.20021913945674896,0.8052811622619629,0.12048869580030441,0.8387194275856018,0.14767007529735565,0.9756860733032227,0,0.9747273325920105,0,0.9642651677131653,0,0.8708727359771729,0.11828039586544037,0.8654288649559021,0.11676335334777832,0.8055233955383301,0.16029833257198334,0.8083263635635376,0.1553039699792862,0.809191107749939,0.1603013128042221,0.7816899418830872,0.17037761211395264,0.7851906418800354,0.16430991888046265,0.824080228805542,0.13336820900440216,0.9308991432189941,0.03085007146000862,0.6705585718154907,0.13237974047660828,0.40956753492355347,0.2384614646434784,0.4942275881767273,0.346598744392395,0.9930973052978516,0.0,0.9902034997940063,0.0,0.985197126865387,0,0.9623752236366272,0.010379903018474579,0.9136818051338196,0.07278550416231155,0.9008297920227051,0.08762558549642563,0.8979142904281616,0.09473585337400436,0.9485661387443542,0.04736665263772011,0.6645653247833252,0.3294563889503479,0.5473272204399109,0.43302401900291443,0.5817000269889832,0.2089502066373825,0.4902763068675995,0.2381819784641266,0.734443187713623,0.10804560780525208,0.685836672782898,0.16432422399520874,0.6893730163574219,0.12668663263320923,0.775176465511322,0.13220258057117462,0.8763082027435303,0.06630492955446243,0.824846625328064,0.11691249907016754,0.593356192111969,0.21105049550533295,0.6481384038925171,0.25432324409484863,0.6416172385215759,0.20890070497989655,0.6288654208183289,0.17189891636371613,0.6970071792602539,0.14577901363372803,0.7853823304176331,0.0650235265493393,0.8209225535392761,0.060349732637405396,0.831010103225708,0.1005931943655014,0.6823642253875732,0.12903344631195068,0.9218890070915222,0.05350399762392044,0.8125454783439636,0.07962898164987564,0.7998144626617432,0.12543487548828125,0.9077761173248291,0.0489390529692173,0.9177407622337341,0.05313202738761902,0.9380599856376648,0.03768990561366081,0.8658372759819031,0.07045998424291611,0.8628214001655579,0.09502223134040833,0.9376276731491089,0.015789832919836044,0.8921424746513367,0.08272110670804977,0.9025644063949585,0.09034813195466995,0.892320990562439,0.10396479815244675,0.9587494730949402,0.029572082683444023,0.9324105978012085,0.06576285511255264,0.9871947765350342,0,0.9797613620758057,0,0.995913565158844,0,0.9864369034767151,0,0.8126192688941956,0.07872866839170456,0.8259778022766113,0.0830172523856163,0.896865963935852,0.0545625165104866,0.9070137739181519,0.031392041593790054,0.935981035232544,0.05284009501338005,0.9458776116371155,0.037130530923604965,0.9630230665206909,0.014164942316710949,0.953413188457489,0.005226869136095047,0.9360471963882446,0.05919171869754791,0.8969534039497375,0.0991038978099823,0.9040586352348328,0.09423918277025223,0.5395222306251526,0.4597315788269043,0.9232475161552429,0.0764329731464386,0.7371017336845398,0.26181572675704956,0.9242557883262634,0.07557515054941177,0.9240582585334778,0.07576080411672592,0.8540681004524231,0.08648470044136047,0.6590107083320618,0.25293806195259094,0.7198205590248108,0.11986542493104935,0.5953516364097595,0.29078540205955505,0.4987376034259796,0.49349454045295715,0.38686102628707886,0.33904018998146057,0.49633529782295227,0.4924343228340149,0.8905397653579712,0.10598404705524445,0.6609217524528503,0.32986879348754883,0.9041817784309387,0.09100629389286041,0.6576048731803894,0.3304705023765564,0.9025192260742188,0.021500233560800552,0.7938123941421509,0.16112665832042694,0.9471741318702698,0.04011132940649986,0.9210854768753052,0.04895460233092308,0.8914682269096375,0.07557719945907593,0.7583543658256531,0.22750550508499146,0.926591157913208,0.03006592206656933,0.9095491170883179,0.08943353593349457,0.8935387134552002,0.10197360813617706,0.8700068593025208,0.100054532289505,0.8542004823684692,0.14497894048690796,0.8919382095336914,0.10751019418239594,0.9853825569152832,0,0.8531485795974731,0.1428336203098297,0.9767038822174072,0,0.92490154504776,0.07448388636112213,0.8079177737236023,0.09975375980138779,0.7878766059875488,0.11497753113508224,0.8974109292030334,0.0447789691388607,0.8701032996177673,0.07392485439777374,0.8966808915138245,0.061396561563014984,0.8805606365203857,0.05889548733830452,0.9274401068687439,0.038367997854948044,0.9191632866859436,0.02669650688767433,0.9162941575050354,0.07996504008769989,0.9200498461723328,0.07529766857624054,0.9534704685211182,0.04018888249993324,0.9620800614356995,0.02235548570752144,0.9909462332725525,0,0.9885812997817993,0,0.994446337223053,0,0.9860022664070129,0,0.8477382659912109,0.1131831556558609,0.9088435769081116,0.08081430941820145,0.5458751916885376,0.2656311094760895,0.6784471273422241,0.15780702233314514,0.8464580774307251,0.08089421689510345,0.6936356425285339,0.16008037328720093,0.6697731018066406,0.24915993213653564,0.7360867261886597,0.10964168608188629,0.6237043738365173,0.09164221584796906,0.6830511689186096,0.0982685461640358,0.7012795805931091,0.19707165658473969,0.4812695384025574,0.21797284483909607,0.6675220131874084,0.11609602719545364,0.5423985123634338,0.325173020362854,0.9643983244895935,0,0.8807971477508545,0.042004164308309555,0.9331114888191223,0.031032267957925797,0.9704397320747375,0,0.5263367891311646,0.4321736991405487,0.4991154670715332,0.4299197793006897,0.676307737827301,0.26637694239616394,0.8053203225135803,0.190534770488739,0.8495090007781982,0.1295279711484909,0.8805453777313232,0.11220631003379822,0.4066125750541687,0.40660783648490906,0.6917026042938232,0.2956995666027069,0.7492496371269226,0.2447449117898941,0.7575428485870361,0.22163264453411102,0.72300785779953,0.20416267216205597,0.5779849886894226,0.20324335992336273,0.4212574064731598,0.42122969031333923,0.49161288142204285,0.20322510600090027,0.33241263031959534,0.33232077956199646,0.4518009424209595,0.4517844021320343,0.9466564655303955,0.017764244228601456,0.9464026689529419,0,0.8547850847244263,0.063063845038414,0.9688138365745544,0,0.9792928695678711,0,0.9378318786621094,0.012635263614356518,0.9506736397743225,0.0051515065133571625,0.9610561728477478,0,0.9266296625137329,0.01474518608301878,0.888851523399353,0.05046483129262924,0.8531755805015564,0.09672733396291733,0.7797510623931885,0.13745394349098206,0.43264567852020264,0.43254461884498596,0.5102275013923645,0.23172543942928314,0.5609704852104187,0.18569375574588776,0.5388283729553223,0.4115872085094452,0.892150342464447,0.040775980800390244,0.8063353300094604,0.08939880132675171,0.6534616947174072,0.2092694789171219,0.6709491610527039,0.3105176091194153,0.5731247663497925,0.4208217263221741,0.5528675317764282,0.4374717175960541,0.6242958307266235,0.3197534680366516,0.5707076787948608,0.2917757034301758,0.5577823519706726,0.24923542141914368,0.5138494968414307,0.2560812532901764,0.49353912472724915,0.4673343896865845,0.40316396951675415,0.4031465947628021,0.3890681862831116,0.38906458020210266,0.37293198704719543,0.3729265332221985,0.5677964687347412,0.20297156274318695,0.5061432719230652,0.43039026856422424,0.5068454742431641,0.42153507471084595,0.5900839567184448,0.24258162081241608,0.49900388717651367,0.3259541690349579,0.48073074221611023,0.34984636306762695,0.620442807674408,0.2456522285938263,0.8435371518135071,0.08259130269289017,0.676630437374115,0.16172103583812714,0.4259461760520935,0.209625706076622,0.4626941680908203,0.3114199638366699,0.7240458130836487,0.11591045558452606,0.8129938840866089,0.11458198726177216,0.46730491518974304,0.19292476773262024,0.3241896331310272,0.31224337220191956,0.6860681176185608,0.16590838134288788,0.6729962229728699,0.09804932773113251,0.5138537883758545,0.1859985888004303,0.32242801785469055,0.23647834360599518,0.32518595457077026,0.20347245037555695,0.8042210936546326,0.08205823600292206,0.3733457326889038,0.325656533241272,0.4643213152885437,0.43106040358543396,0.4703558683395386,0.44734546542167664,0.4761332869529724,0.21667137742042542,0.7576146721839905,0.09787017852067947,0.7452665567398071,0.17095747590065002,0.6128218770027161,0.1789528876543045,0.43998581171035767,0.3545330762863159,0.4652431607246399,0.26892757415771484,1.0,0.00463838130235672,1.0,0.00463838130235672,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00012102782784495503,0.0,0.00026148828328587115,0.0,0.0018525843042880297,0,0.0014200399164110422,0.0,1.0,0.07749523967504501,1.0,0.07026200741529465,1.0,0.46944236755371094,0.757740318775177,0.07099807262420654,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.9506556391716003,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.9644222259521484,1.0,0.9518986344337463,1.0,0.859765350818634,1.0,0.8972492218017578,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.011236374266445637,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0,0,0,0,0,0,0,0],
"skinIndices": [4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,8,3,8,3,8,3,8,3,8,3,8,3,8,3,8,3,8,3,8,3,8,3,8,3,8,3,8,3,8,3,8,3,8,3,8,3,8,3,8,3,8,3,8,3,8,3,8,3,8,3,8,3,8,3,8,3,8,3,8,3,8,3,8,3,8,3,8,3,8,3,8,3,8,3,8,3,8,3,8,3,8,3,8,3,8,3,8,3,8,3,8,3,8,3,8,3,8,3,8,3,8,3,8,3,8,3,8,3,8,3,8,3,8,3,8,3,8,3,8,3,8,3,8,3,8,3,8,3,8,3,8,3,8,3,8,3,8,3,8,3,8,3,8,3,8,3,8,3,8,3,8,3,8,3,8,3,8,3,8,3,8,3,8,3,8,3,8,3,4,0,4,10,4,10,4,10,10,4,10,4,10,4,4,10,4,10,4,10,4,10,4,10,4,10,4,10,4,10,4,10,4,10,4,10,4,10,4,10,4,10,10,4,56,1,12,13,12,13,12,13,12,13,12,13,12,18,12,13,12,13,11,2,10,2,10,11,2,1,2,1,2,1,2,10,10,2,2,10,10,11,11,10,11,10,11,10,11,10,11,10,11,10,11,10,11,10,11,10,10,11,11,10,11,10,10,11,10,11,11,10,10,11,11,0,11,0,11,12,11,12,11,0,11,12,11,12,11,12,12,11,12,11,11,12,11,12,12,11,11,12,12,13,12,0,12,0,12,0,12,0,12,13,12,0,12,0,1,56,1,56,1,56,56,1,2,10,0,56,56,1,56,1,1,56,2,10,2,1,1,2,2,1,2,10,10,2,10,2,10,11,10,11,10,11,11,10,12,11,12,11,12,11,12,11,12,11,12,11,12,11,12,11,10,4,10,4,2,1,2,1,2,1,2,1,4,3,4,3,4,3,4,3,4,3,4,3,4,3,4,3,4,0,4,0,4,0,4,0,3,4,3,4,4,3,4,10,4,3,4,3,4,3,4,3,4,3,4,3,4,3,4,3,4,3,4,0,4,0,4,0,4,3,4,0,4,0,4,3,4,3,4,3,4,3,4,3,4,3,4,3,4,3,4,3,4,0,4,0,4,0,4,3,4,3,4,0,4,0,4,0,4,0,4,3,4,3,4,0,4,3,4,3,4,3,4,3,4,3,4,3,4,3,4,0,4,3,4,3,4,3,4,3,4,3,4,3,4,3,4,3,4,3,4,3,4,3,4,3,4,3,4,3,4,3,4,3,4,3,4,3,4,0,4,0,4,3,4,3,4,3,4,3,4,3,4,3,4,3,4,3,4,3,4,0,4,3,4,3,4,0,4,0,4,3,4,3,4,3,4,0,4,0,4,3,4,3,4,3,4,3,4,0,4,0,4,3,4,3,4,3,4,3,4,3,4,3,4,3,4,3,4,3,4,3,4,3,4,3,4,3,4,3,4,3,4,3,4,3,4,3,4,3,4,3,4,3,4,3,4,3,58,59,58,59,58,57,58,57,59,58,58,59,59,0,59,0,59,0,59,0,59,0,59,0,59,58,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,58,58,61,58,59,61,0,58,59,58,60,61,0,61,60,61,60,59,58,58,59,59,58,59,58,61,0,61,60,60,61,58,60,60,58,60,57,60,57,60,0,60,0,60,0,60,58,60,61,60,61,60,0,60,61,60,61,59,0,59,0,59,0,59,0,59,0,59,58,59,58,59,58,59,58,59,58,59,58,59,58,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,59,0,57,0,57,0,57,58,57,58,57,60,57,60,57,60,57,0,59,58,59,58,59,58,59,58,59,58,59,58,58,61,61,58,60,61,60,61,60,61,60,58,58,61,58,59,59,58,60,0,60,0,60,0,12,13,12,13,12,13,12,13,12,13,12,18,12,18,12,18,10,2,2,3,2,10,57,0,57,0,57,0,57,56,57,56,57,56,57,56,57,56,57,56,56,57,3,2,2,10,10,2,12,29,13,12,13,12,12,18,29,12,12,18,18,12,13,18,26,22,15,22,25,30,15,25,29,25,30,25,29,13,30,29,30,29,30,31,30,29,30,31,31,30,31,32,31,30,31,32,32,31,32,31,32,31,32,31,32,0,32,0,32,0,32,0,26,30,26,27,26,30,26,25,27,26,27,26,27,26,27,26,27,28,27,28,27,28,27,28,28,27,28,27,28,27,28,27,18,13,14,15,14,15,19,18,18,19,14,18,18,19,20,19,20,19,20,19,20,19,15,16,15,14,15,16,15,14,16,15,15,16,16,15,16,15,17,16,16,17,17,16,16,17,17,0,17,16,17,0,17,16,22,26,22,15,22,25,22,15,23,24,23,24,23,24,23,24,24,23,24,23,24,23,24,23,24,0,24,0,24,0,24,0,29,30,29,30,25,29,13,18,18,19,18,13,18,13,13,18,21,14,14,21,29,25,25,30,14,18,18,19,19,13,19,20,19,20,19,13,57,56,56,57,57,56,57,56,57,56,57,56,56,57,56,57,56,57,56,57,56,57,56,57,56,0,56,0,56,0,56,0,56,1,56,57,56,0,56,0,56,62,56,0,56,0,57,56,56,62,56,0,56,0,56,57,56,57,56,57,56,57,56,57,56,57,56,57,57,56,56,62,2,1,56,62,0,56,0,56,56,62,56,1,56,1,56,0,56,0,56,1,0,56,2,1,2,10,2,10,10,2,10,4,1,2,0,56,57,56,56,57,0,56,1,2,56,62,56,0,0,56,0,56,9,3,9,3,9,3,9,3,9,3,9,3,9,3,9,3,9,3,9,3,9,3,9,3,9,3,9,3,9,3,9,3,9,3,9,3,9,3,9,3,9,3,9,3,9,3,9,3,9,3,9,3,9,3,9,3,9,3,9,3,9,3,9,3,9,3,9,3,9,3,9,3,9,3,9,3,9,3,9,3,9,3,9,3,9,3,9,3,9,3,9,3,9,3,9,3,9,3,9,3,9,3,9,3,9,3,9,3,9,3,9,3,9,3,9,3,9,3,9,3,9,3,9,3,9,3,9,3,9,3,9,3,9,3,9,3,9,3,9,3,9,3,9,3,9,3,9,3,9,3,9,3,9,3,9,3,9,3,9,3,9,3,9,3,9,3,9,3,9,3,9,3,4,33,4,33,4,33,4,33,4,0,4,0,4,33,4,33,4,33,4,33,4,33,33,4,33,4,33,4,4,33,4,33,4,33,4,33,4,33,4,33,4,33,4,33,4,33,4,33,4,33,4,33,4,33,4,33,33,4,2,1,2,1,2,33,2,33,1,2,1,2,62,1,33,10,2,33,2,1,2,1,35,36,35,36,35,36,35,36,35,36,35,36,35,36,35,36,34,2,33,2,33,34,2,1,2,1,2,1,2,33,33,2,2,33,33,34,34,33,34,33,34,33,34,33,34,33,34,33,34,33,34,33,34,33,33,34,34,33,34,33,33,34,33,34,34,33,33,34,34,0,34,13,34,35,34,35,34,0,34,35,34,35,34,35,35,34,35,34,34,35,34,35,35,34,34,35,35,0,35,0,35,0,35,0,35,0,35,0,35,0,35,0,1,62,1,62,1,62,62,1,2,33,0,62,0,62,62,1,62,1,1,62,2,33,2,1,1,2,0,1,2,1,2,33,33,2,33,34,33,34,33,34,33,34,34,33,35,34,35,34,35,34,35,34,35,34,35,34,35,34,35,34,33,4,33,4,2,33,2,1,2,1,2,1,2,1,4,3,4,3,4,3,4,3,4,3,4,0,4,3,4,3,4,0,4,3,4,3,4,3,4,3,4,3,4,0,4,0,4,3,4,3,4,3,4,3,4,3,4,0,4,3,4,3,4,3,4,3,4,3,4,3,4,3,4,3,2,3,3,2,2,10,4,3,4,3,4,3,4,3,4,3,4,3,4,3,4,3,4,0,4,0,4,0,4,0,3,4,3,4,4,3,4,33,4,3,4,3,4,3,4,3,4,3,4,3,4,3,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,0,4,3,4,3,4,3,4,3,4,3,4,3,4,3,4,3,4,3,4,0,4,0,4,0,4,3,4,3,4,0,4,0,4,0,4,0,4,0,4,3,4,0,4,3,4,3,4,3,4,3,4,3,4,3,4,3,4,0,4,3,4,3,4,3,4,3,4,3,4,3,4,3,4,3,4,3,4,3,4,3,4,3,4,3,4,3,4,3,4,3,4,3,4,3,4,0,4,0,4,3,4,3,4,3,4,3,4,3,4,3,4,3,4,3,4,3,4,0,4,3,4,3,4,0,4,0,4,3,4,3,4,3,4,0,4,0,4,3,4,3,4,3,4,3,4,0,4,0,4,3,4,3,4,3,4,3,4,3,4,3,4,3,4,3,4,3,4,3,4,3,4,3,4,3,4,3,4,3,4,3,4,3,4,3,4,3,4,3,4,3,4,3,4,3,64,65,64,65,64,63,64,63,65,64,64,65,65,0,65,0,65,0,65,0,65,0,65,0,65,64,65,0,65,0,65,0,65,0,65,0,65,0,65,0,65,0,65,0,65,0,65,0,65,0,65,0,65,0,65,0,65,64,64,67,64,65,67,0,64,65,64,66,67,0,67,66,67,66,65,64,64,65,65,64,65,64,67,0,67,66,66,67,64,66,66,64,66,63,66,63,66,0,66,0,66,0,66,64,66,67,66,67,66,0,66,67,66,67,65,0,65,0,65,0,65,0,65,0,65,64,65,64,65,64,65,64,65,64,65,64,65,64,65,0,65,0,65,0,65,0,65,0,65,0,65,0,65,0,65,0,65,0,65,0,65,0,65,0,65,0,65,0,65,0,65,0,65,0,65,0,65,0,65,0,63,0,63,0,63,64,63,64,63,66,63,66,63,66,63,0,65,64,65,64,65,64,65,64,65,64,65,64,64,67,67,64,66,67,66,67,66,67,66,64,64,67,64,65,65,64,66,0,66,0,66,0,35,36,35,36,35,36,35,36,35,36,35,36,35,36,35,36,33,2,2,3,2,10,2,33,63,13,63,13,63,0,63,62,63,62,63,62,63,62,63,62,63,62,62,63,2,3,2,33,33,2,36,35,36,35,36,35,36,35,36,52,36,35,36,41,36,41,49,45,38,45,48,53,38,48,52,48,53,48,52,36,53,52,53,52,53,54,53,52,53,54,54,53,54,55,54,53,54,55,55,54,55,54,55,54,55,54,55,0,55,0,55,0,55,0,49,53,49,50,49,53,49,48,50,49,50,49,50,49,50,49,50,51,50,51,50,51,50,51,51,50,51,50,51,50,51,50,41,36,37,38,37,38,42,41,41,42,37,41,41,42,43,42,43,42,43,42,43,42,38,39,38,37,38,39,38,37,39,38,38,39,39,38,39,38,40,39,39,40,40,39,39,40,40,0,40,39,40,0,40,39,45,49,45,38,45,48,45,38,46,47,46,47,46,47,46,47,47,46,47,46,47,46,47,46,47,0,47,0,47,0,47,0,52,53,52,53,48,52,36,41,41,36,41,36,41,36,36,41,44,37,37,44,52,48,48,53,37,41,41,42,42,0,42,43,42,43,42,0,63,62,62,63,63,62,63,62,63,62,63,62,62,56,62,63,62,63,62,63,62,63,62,63,62,56,0,62,62,56,62,56,62,63,62,0,62,0,62,0,62,0,62,1,62,63,62,0,62,0,62,56,62,0,62,0,62,56,0,62,0,62,63,62,62,56,62,0,62,0,62,63,62,63,62,63,62,63,62,63,62,63,62,63,63,62,62,56,62,56,62,56,62,56,2,1,2,1,62,56,0,62,0,62,62,56,62,1,62,1,0,62,62,0,62,0,62,1,0,1,0,62,2,1,2,33,2,33,33,2,33,4,1,2,0,62,63,62,62,63,0,62,1,2,62,56,62,0,0,62,0,62,8,3,8,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,72,69,72,69,72,0,72,69,72,70,72,70,72,69,72,69,73,74,73,74,73,74,73,74,74,75,74,75,74,75,74,75,75,76,75,76,75,76,75,76,77,76,77,76,77,76,77,76,77,78,77,78,77,78,77,74,0,78,0,78,0,78,0,78,0,78,0,78,0,78,0,78,0,78,0,78,0,78,0,78,0,78,0,78,0,78,0,78,0,78,0,78,0,78,0,78,0,78,0,78,0,78,0,78,0,78,0,78,0,78,0,78,0,78,0,78,0,78,0,78,0,78,0,78,0,78,0,78,0,78,0,78,0,78,0,78,0,78,0,78,0,78,0,78,0,78,0,78,0,78,0,78,0,78,0,78,0,78,0,78,0,78,0,78,0,78,0,78,0,78,0,78,0,78,0,78,72,73,72,73,72,73,72,73,0,0,0,0,0,0,0,0],
"animation": {
"hierarchy": [{
"parent": -1,
"keys": [{
"pos": [-0.8682349920272827,1.069878339767456,-2.065814256668091],
"time": 0.0,
"rot": [-0.25815698504447937,8.412825991399586e-12,-7.048583938740194e-11,0.9661030173301697],
"scl": [1,1,1]
},{
"pos": [-0.8682349920272827,1.159743070602417,-2.065814256668091],
"time": 0.041666666666666664,
"rot": [-0.25815698504447937,8.412825991399586e-12,-7.048583938740194e-11,0.9661030173301697]
},{
"pos": [-0.8682349920272827,1.1690516471862793,-2.065814256668091],
"time": 0.08333333333333333,
"rot": [-0.25815698504447937,8.412825991399586e-12,-7.048583938740194e-11,0.9661030173301697]
},{
"pos": [-0.8682349920272827,1.069878339767456,-2.065814256668091],
"time": 0.125,
"rot": [-0.25815698504447937,8.412825991399586e-12,-7.048583938740194e-11,0.9661030173301697]
},{
"pos": [-0.8682349920272827,1.069878339767456,-2.065814256668091],
"time": 0.16666666666666666,
"rot": [-0.25815698504447937,8.412825991399586e-12,-7.048583938740194e-11,0.9661030173301697],
"scl": [1,1,1]
}]
},{
"parent": 0,
"keys": [{
"pos": [-0.0017437934875488281,0.19991905987262726,0.03408956527709961],
"time": 0.0,
"rot": [0.005851602181792259,-0.012762630358338356,0.16911187767982483,0.9854968786239624],
"scl": [1,1,1]
},{
"pos": [-0.0017437934875488281,0.19991905987262726,0.03408956527709961],
"time": 0.041666666666666664,
"rot": [0.4002685844898224,0.04912317171692848,-0.012922661378979683,0.9149891138076782]
},{
"pos": [-0.0017437934875488281,0.19991905987262726,0.03408956527709961],
"time": 0.08333333333333333,
"rot": [0.3758145570755005,0.016124697402119637,0.1453132927417755,0.9150888323783875]
},{
"pos": [-0.0017437934875488281,0.19991905987262726,0.03408956527709961],
"time": 0.125,
"rot": [0.3758145570755005,0.016124697402119637,0.1453132927417755,0.9150888323783875]
},{
"pos": [-0.0017437934875488281,0.19991905987262726,0.03408956527709961],
"time": 0.16666666666666666,
"rot": [0.005851602181792259,-0.012762630358338356,0.16911187767982483,0.9854968786239624],
"scl": [1,1,1]
}]
},{
"parent": 1,
"keys": [{
"pos": [0.0030628442764282227,0.23590584099292755,0.011751413345336914],
"time": 0.0,
"rot": [0.22609320282936096,0.1934536248445511,-0.07005737721920013,0.9521299004554749],
"scl": [1,1,1]
},{
"pos": [0.0030628442764282227,0.23590584099292755,0.011751413345336914],
"time": 0.041666666666666664,
"rot": [0.21059975028038025,0.08559208363294601,-0.0038053207099437714,0.9738113284111023]
},{
"pos": [0.0030628442764282227,0.23590584099292755,0.011751413345336914],
"time": 0.08333333333333333,
"rot": [-0.06936559081077576,0.10572506487369537,-0.19141197204589844,0.9733311533927917]
},{
"pos": [0.0030628442764282227,0.23590584099292755,0.011751413345336914],
"time": 0.125,
"rot": [0.31520015001296997,0.18976175785064697,-0.05367383360862732,0.9283105134963989]
},{
"pos": [0.0030628442764282227,0.23590584099292755,0.011751413345336914],
"time": 0.16666666666666666,
"rot": [0.22609320282936096,0.1934536248445511,-0.07005737721920013,0.9521299004554749],
"scl": [1,1,1]
}]
},{
"parent": 2,
"keys": [{
"pos": [-0.0017437934875488281,0.2951475977897644,-0.05644869804382324],
"time": 0.0,
"rot": [-0.3157210350036621,-0.09789316356182098,0.06038021296262741,0.9418554306030273],
"scl": [1,1,1]
},{
"pos": [-0.0017437934875488281,0.2951475977897644,-0.05644869804382324],
"time": 0.041666666666666664,
"rot": [0.0,0.0,-0.0,1.0]
},{
"pos": [-0.0017437934875488281,0.2951475977897644,-0.05644869804382324],
"time": 0.08333333333333333,
"rot": [0.0,0.0,-0.0,1.0]
},{
"pos": [-0.0017437934875488281,0.2951475977897644,-0.05644869804382324],
"time": 0.125,
"rot": [-0.3157210350036621,-0.09789316356182098,0.06038021296262741,0.9418554306030273]
},{
"pos": [-0.0017437934875488281,0.2951475977897644,-0.05644869804382324],
"time": 0.16666666666666666,
"rot": [-0.3157210350036621,-0.09789316356182098,0.06038021296262741,0.9418554306030273],
"scl": [1,1,1]
}]
},{
"parent": 3,
"keys": [{
"pos": [-0.002801239490509033,0.07140906155109406,0.012778997421264648],
"time": 0.0,
"rot": [0.39919036626815796,0.10860583186149597,-0.06303668022155762,0.9082284569740295],
"scl": [1,1,1]
},{
"pos": [-0.002801239490509033,0.07140906155109406,0.012778997421264648],
"time": 0.041666666666666664,
"rot": [-0.23604419827461243,0.06528210639953613,-0.049215566366910934,0.9682974815368652]
},{
"pos": [-0.002801239490509033,0.07140906155109406,0.012778997421264648],
"time": 0.08333333333333333,
"rot": [0.007164401467889547,0.09570363909006119,0.028774555772542953,0.9949684739112854]
},{
"pos": [-0.002801239490509033,0.07140906155109406,0.012778997421264648],
"time": 0.125,
"rot": [-0.06323730945587158,0.11203771084547043,-0.19070081412792206,0.9731816649436951]
},{
"pos": [-0.002801239490509033,0.07140906155109406,0.012778997421264648],
"time": 0.16666666666666666,
"rot": [0.39919036626815796,0.10860583186149597,-0.06303668022155762,0.9082284569740295],
"scl": [1,1,1]
}]
},{
"parent": 4,
"keys": [{
"pos": [-0.15190176665782928,0.0567811094224453,0.9898401498794556],
"time": 0.0,
"rot": [0.0,0.0,-0.0,1.0],
"scl": [1,1,1]
},{
"pos": [-0.050161492079496384,0.056963060051202774,0.990418016910553],
"time": 0.041666666666666664,
"rot": [0.0,0.0,-0.0,1.0]
},{
"pos": [-0.29373717308044434,0.08606936782598495,0.9601565599441528],
"time": 0.08333333333333333,
"rot": [0.0,0.0,-0.0,1.0]
},{
"pos": [-0.15190176665782928,0.0567811094224453,0.9898401498794556],
"time": 0.125,
"rot": [0.0,0.0,-0.0,1.0]
},{
"pos": [-0.15190176665782928,0.0567811094224453,0.9898401498794556],
"time": 0.16666666666666666,
"rot": [0.0,0.0,-0.0,1.0],
"scl": [1,1,1]
}]
},{
"parent": 5,
"keys": [{
"pos": [0.010428011417388916,0.051246821880340576,-0.013278099708259106],
"time": 0.0,
"rot": [0.0,0.0,-0.0,1.0],
"scl": [1,1,1]
},{
"pos": [0.010428011417388916,0.051246821880340576,-0.013278099708259106],
"time": 0.041666666666666664,
"rot": [0.0,0.0,-0.0,1.0]
},{
"pos": [0.010428011417388916,0.051246821880340576,-0.013278099708259106],
"time": 0.08333333333333333,
"rot": [0.0,0.0,-0.0,1.0]
},{
"pos": [0.010428011417388916,0.051246821880340576,-0.013278099708259106],
"time": 0.125,
"rot": [0.0,0.0,-0.0,1.0]
},{
"pos": [0.010428011417388916,0.051246821880340576,-0.013278099708259106],
"time": 0.16666666666666666,
"rot": [0.0,0.0,-0.0,1.0],
"scl": [1,1,1]
}]
},{
"parent": 6,
"keys": [{
"pos": [-0.07449276745319366,0.08188832551240921,-0.016667114570736885],
"time": 0.0,
"rot": [0.0,0.0,-0.0,1.0],
"scl": [1,1,1]
},{
"pos": [-0.07449276745319366,0.08188832551240921,-0.016667114570736885],
"time": 0.041666666666666664,
"rot": [0.0,0.0,-0.0,1.0]
},{
"pos": [-0.07449276745319366,0.08188832551240921,-0.016667114570736885],
"time": 0.08333333333333333,
"rot": [0.0,0.0,-0.0,1.0]
},{
"pos": [-0.07449276745319366,0.08188832551240921,-0.016667114570736885],
"time": 0.125,
"rot": [0.0,0.0,-0.0,1.0]
},{
"pos": [-0.07449276745319366,0.08188832551240921,-0.016667114570736885],
"time": 0.16666666666666666,
"rot": [0.0,0.0,-0.0,1.0],
"scl": [1,1,1]
}]
},{
"parent": 7,
"keys": [{
"pos": [0.07990361005067825,0.16932903230190277,0.16892431676387787],
"time": 0.0,
"rot": [0.0,0.0,-0.0,1.0],
"scl": [1,1,1]
},{
"pos": [0.07990361005067825,0.16932903230190277,0.16892431676387787],
"time": 0.041666666666666664,
"rot": [0.0,0.0,-0.0,1.0]
},{
"pos": [0.07990361005067825,0.16932903230190277,0.16892431676387787],
"time": 0.08333333333333333,
"rot": [0.0,0.0,-0.0,1.0]
},{
"pos": [0.07990361005067825,0.16932903230190277,0.16892431676387787],
"time": 0.125,
"rot": [0.0,0.0,-0.0,1.0]
},{
"pos": [0.07990361005067825,0.16932903230190277,0.16892431676387787],
"time": 0.16666666666666666,
"rot": [0.0,0.0,-0.0,1.0],
"scl": [1,1,1]
}]
},{
"parent": 8,
"keys": [{
"pos": [-0.0710645318031311,0.16932903230190277,0.16892431676387787],
"time": 0.0,
"rot": [0.0,0.0,-0.0,1.0],
"scl": [1,1,1]
},{
"pos": [-0.0710645318031311,0.16932903230190277,0.16892431676387787],
"time": 0.041666666666666664,
"rot": [0.0,0.0,-0.0,1.0]
},{
"pos": [-0.0710645318031311,0.16932903230190277,0.16892431676387787],
"time": 0.08333333333333333,
"rot": [0.0,0.0,-0.0,1.0]
},{
"pos": [-0.0710645318031311,0.16932903230190277,0.16892431676387787],
"time": 0.125,
"rot": [0.0,0.0,-0.0,1.0]
},{
"pos": [-0.0710645318031311,0.16932903230190277,0.16892431676387787],
"time": 0.16666666666666666,
"rot": [0.0,0.0,-0.0,1.0],
"scl": [1,1,1]
}]
},{
"parent": 9,
"keys": [{
"pos": [0.016078174114227295,0.235824316740036,0.04069351404905319],
"time": 0.0,
"rot": [0.0,0.0,-0.0,1.0],
"scl": [1,1,1]
},{
"pos": [0.016078174114227295,0.235824316740036,0.04069351404905319],
"time": 0.041666666666666664
},{
"pos": [0.016078174114227295,0.235824316740036,0.04069351404905319],
"time": 0.08333333333333333
},{
"pos": [0.016078174114227295,0.235824316740036,0.04069351404905319],
"time": 0.125
},{
"pos": [0.016078174114227295,0.235824316740036,0.04069351404905319],
"time": 0.16666666666666666,
"rot": [0.0,0.0,-0.0,1.0],
"scl": [1,1,1]
}]
},{
"parent": 10,
"keys": [{
"pos": [0.22437626123428345,-0.00970737636089325,-0.12768694758415222],
"time": 0.0,
"rot": [0.014787783846259117,-0.01002970989793539,-0.5687583088874817,0.8223106265068054],
"scl": [1,1,1]
},{
"pos": [0.22437626123428345,-0.00970737636089325,-0.12768694758415222],
"time": 0.041666666666666664,
"rot": [-0.027080358937382698,-0.5111023783683777,-0.1658352017402649,0.8429358005523682]
},{
"pos": [0.22437626123428345,-0.00970737636089325,-0.12768694758415222],
"time": 0.08333333333333333,
"rot": [0.18438443541526794,-0.3141101896762848,-0.33419644832611084,0.8692812919616699]
},{
"pos": [0.22437626123428345,-0.00970737636089325,-0.12768694758415222],
"time": 0.125,
"rot": [-0.0782356783747673,-0.5673902034759521,0.17673832178115845,0.8004444241523743]
},{
"pos": [0.22437626123428345,-0.00970737636089325,-0.12768694758415222],
"time": 0.16666666666666666,
"rot": [0.014787783846259117,-0.01002970989793539,-0.5687583088874817,0.8223106265068054],
"scl": [1,1,1]
}]
},{
"parent": 11,
"keys": [{
"pos": [0.2910064458847046,-0.029346629977226257,0.006039142608642578],
"time": 0.0,
"rot": [-0.5021275877952576,-0.5011000037193298,-0.12322988361120224,0.6939604878425598],
"scl": [1,1,1]
},{
"pos": [0.2910064458847046,-0.029346629977226257,0.006039142608642578],
"time": 0.041666666666666664,
"rot": [-0.5815300345420837,-0.21570131182670593,-0.0389772430062294,0.7834398150444031]
},{
"pos": [0.2910064458847046,-0.029346629977226257,0.006039142608642578],
"time": 0.08333333333333333,
"rot": [-0.39218834042549133,-0.4426742494106293,0.1360805630683899,0.7948017716407776]
},{
"pos": [0.2910064458847046,-0.029346629977226257,0.006039142608642578],
"time": 0.125,
"rot": [-0.591284990310669,-0.1554497480392456,-0.06759026646614075,0.7884473204612732]
},{
"pos": [0.2910064458847046,-0.029346629977226257,0.006039142608642578],
"time": 0.16666666666666666,
"rot": [-0.5021275877952576,-0.5011000037193298,-0.12322988361120224,0.6939604878425598],
"scl": [1,1,1]
}]
},{
"parent": 12,
"keys": [{
"pos": [0.25012874603271484,-0.010700985789299011,0.049269914627075195],
"time": 0.0,
"rot": [0.3201630413532257,-0.24525557458400726,0.10751824080944061,0.90872722864151],
"scl": [1,1,1]
},{
"pos": [0.25012874603271484,-0.010700985789299011,0.049269914627075195],
"time": 0.041666666666666664,
"rot": [0.016499798744916916,-0.15859995782375336,0.12872189283370972,0.978777289390564]
},{
"pos": [0.25012874603271484,-0.010700985789299011,0.049269914627075195],
"time": 0.08333333333333333,
"rot": [-0.06732036918401718,-0.021552903577685356,-0.009057636372745037,0.9974575042724609]
},{
"pos": [0.25012874603271484,-0.010700985789299011,0.049269914627075195],
"time": 0.125,
"rot": [0.016186123713850975,-0.10987138748168945,0.11354941129684448,0.9873058795928955]
},{
"pos": [0.25012874603271484,-0.010700985789299011,0.049269914627075195],
"time": 0.16666666666666666,
"rot": [0.3201630413532257,-0.24525557458400726,0.10751824080944061,0.90872722864151],
"scl": [1,1,1]
}]
},{
"parent": 13,
"keys": [{
"pos": [0.05168544501066208,-0.00026456540217623115,0.03942083194851875],
"time": 0.0,
"rot": [0.0,0.0,-0.0,1.0],
"scl": [1,1,1]
},{
"pos": [0.05168544501066208,-0.00026456540217623115,0.03942083194851875],
"time": 0.041666666666666664
},{
"pos": [0.05168544501066208,-0.00026456540217623115,0.03942083194851875],
"time": 0.08333333333333333
},{
"pos": [0.05168544501066208,-0.00026456540217623115,0.03942083194851875],
"time": 0.125
},{
"pos": [0.05168544501066208,-0.00026456540217623115,0.03942083194851875],
"time": 0.16666666666666666,
"rot": [0.0,0.0,-0.0,1.0],
"scl": [1,1,1]
}]
},{
"parent": 14,
"keys": [{
"pos": [0.061905086040496826,-0.0007491558790206909,0.017199277877807617],
"time": 0.0,
"rot": [-0.14045658707618713,0.031189659610390663,-0.24734054505825043,0.9581868648529053],
"scl": [1,1,1]
},{
"pos": [0.061905086040496826,-0.0007491558790206909,0.017199277877807617],
"time": 0.041666666666666664,
"rot": [-0.14045658707618713,0.031189659610390663,-0.24734054505825043,0.9581868648529053]
},{
"pos": [0.061905086040496826,-0.0007491558790206909,0.017199277877807617],
"time": 0.08333333333333333,
"rot": [-0.14045658707618713,0.031189659610390663,-0.24734054505825043,0.9581868648529053]
},{
"pos": [0.061905086040496826,-0.0007491558790206909,0.017199277877807617],
"time": 0.125,
"rot": [-0.14045658707618713,0.031189659610390663,-0.24734054505825043,0.9581868648529053]
},{
"pos": [0.061905086040496826,-0.0007491558790206909,0.017199277877807617],
"time": 0.16666666666666666,
"rot": [-0.14045658707618713,0.031189659610390663,-0.24734054505825043,0.9581868648529053],
"scl": [1,1,1]
}]
},{
"parent": 15,
"keys": [{
"pos": [0.04456627368927002,-0.012944027781486511,0.008443117141723633],
"time": 0.0,
"rot": [0.2155253142118454,0.08300906419754028,-0.08184071630239487,0.9695155620574951],
"scl": [1,1,1]
},{
"pos": [0.04456627368927002,-0.012944027781486511,0.008443117141723633],
"time": 0.041666666666666664,
"rot": [0.2155253142118454,0.08300906419754028,-0.08184071630239487,0.9695155620574951]
},{
"pos": [0.04456627368927002,-0.012944027781486511,0.008443117141723633],
"time": 0.08333333333333333,
"rot": [0.2155253142118454,0.08300906419754028,-0.08184071630239487,0.9695155620574951]
},{
"pos": [0.04456627368927002,-0.012944027781486511,0.008443117141723633],
"time": 0.125,
"rot": [0.2155253142118454,0.08300906419754028,-0.08184071630239487,0.9695155620574951]
},{
"pos": [0.04456627368927002,-0.012944027781486511,0.008443117141723633],
"time": 0.16666666666666666,
"rot": [0.2155253142118454,0.08300906419754028,-0.08184071630239487,0.9695155620574951],
"scl": [1,1,1]
}]
},{
"parent": 16,
"keys": [{
"pos": [0.02645421028137207,-0.010041162371635437,0.005717754364013672],
"time": 0.0,
"rot": [-0.012681031599640846,-0.04674265533685684,-0.09858334064483643,0.9939495325088501],
"scl": [1,1,1]
},{
"pos": [0.02645421028137207,-0.010041162371635437,0.005717754364013672],
"time": 0.041666666666666664,
"rot": [-0.012681031599640846,-0.04674265533685684,-0.09858334064483643,0.9939495325088501]
},{
"pos": [0.02645421028137207,-0.010041162371635437,0.005717754364013672],
"time": 0.08333333333333333,
"rot": [-0.012681031599640846,-0.04674265533685684,-0.09858334064483643,0.9939495325088501]
},{
"pos": [0.02645421028137207,-0.010041162371635437,0.005717754364013672],
"time": 0.125,
"rot": [-0.012681031599640846,-0.04674265533685684,-0.09858334064483643,0.9939495325088501]
},{
"pos": [0.02645421028137207,-0.010041162371635437,0.005717754364013672],
"time": 0.16666666666666666,
"rot": [-0.012681031599640846,-0.04674265533685684,-0.09858334064483643,0.9939495325088501],
"scl": [1,1,1]
}]
},{
"parent": 17,
"keys": [{
"pos": [-0.006516210734844208,-0.008402627892792225,0.007398596033453941],
"time": 0.0,
"rot": [0.004610054194927216,-0.40639692544937134,-0.057903897017240524,0.9118484258651733],
"scl": [1,1,1]
},{
"pos": [-0.006516210734844208,-0.008402627892792225,0.007398596033453941],
"time": 0.041666666666666664,
"rot": [0.004610054194927216,-0.40639692544937134,-0.057903897017240524,0.9118484258651733]
},{
"pos": [-0.006516210734844208,-0.008402627892792225,0.007398596033453941],
"time": 0.08333333333333333,
"rot": [0.004610054194927216,-0.40639692544937134,-0.057903897017240524,0.9118484258651733]
},{
"pos": [-0.006516210734844208,-0.008402627892792225,0.007398596033453941],
"time": 0.125,
"rot": [0.004610054194927216,-0.40639692544937134,-0.057903897017240524,0.9118484258651733]
},{
"pos": [-0.006516210734844208,-0.008402627892792225,0.007398596033453941],
"time": 0.16666666666666666,
"rot": [0.004610054194927216,-0.40639692544937134,-0.057903897017240524,0.9118484258651733],
"scl": [1,1,1]
}]
},{
"parent": 18,
"keys": [{
"pos": [0.0281069278717041,-0.016253158450126648,0.027788639068603516],
"time": 0.0,
"rot": [0.07141517847776413,0.11366473883390427,0.00791359692811966,0.9909176230430603],
"scl": [1,1,1]
},{
"pos": [0.0281069278717041,-0.016253158450126648,0.027788639068603516],
"time": 0.041666666666666664,
"rot": [0.07141517847776413,0.11366473883390427,0.00791359692811966,0.9909176230430603]
},{
"pos": [0.0281069278717041,-0.016253158450126648,0.027788639068603516],
"time": 0.08333333333333333,
"rot": [0.07141517847776413,0.11366473883390427,0.00791359692811966,0.9909176230430603]
},{
"pos": [0.0281069278717041,-0.016253158450126648,0.027788639068603516],
"time": 0.125,
"rot": [0.07141517847776413,0.11366473883390427,0.00791359692811966,0.9909176230430603]
},{
"pos": [0.0281069278717041,-0.016253158450126648,0.027788639068603516],
"time": 0.16666666666666666,
"rot": [0.07141517847776413,0.11366473883390427,0.00791359692811966,0.9909176230430603],
"scl": [1,1,1]
}]
},{
"parent": 19,
"keys": [{
"pos": [0.03405487537384033,-0.014845892786979675,0.012521028518676758],
"time": 0.0,
"rot": [0.0863349586725235,0.13741107285022736,0.009566901251673698,0.9866980314254761],
"scl": [1,1,1]
},{
"pos": [0.03405487537384033,-0.014845892786979675,0.012521028518676758],
"time": 0.041666666666666664,
"rot": [0.0863349586725235,0.13741107285022736,0.009566901251673698,0.9866980314254761]
},{
"pos": [0.03405487537384033,-0.014845892786979675,0.012521028518676758],
"time": 0.08333333333333333,
"rot": [0.0863349586725235,0.13741107285022736,0.009566901251673698,0.9866980314254761]
},{
"pos": [0.03405487537384033,-0.014845892786979675,0.012521028518676758],
"time": 0.125,
"rot": [0.0863349586725235,0.13741107285022736,0.009566901251673698,0.9866980314254761]
},{
"pos": [0.03405487537384033,-0.014845892786979675,0.012521028518676758],