-
Notifications
You must be signed in to change notification settings - Fork 1
/
castle.json
1422 lines (1422 loc) · 142 KB
/
castle.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
{
"textures": [],
"images": [],
"object": {
"type": "Scene",
"matrix": [1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1],
"uuid": "47C6EA64-9213-40E8-8A99-0DE023F9D4D4",
"children": [{
"name": "Box",
"uuid": "DDA9AE26-14F9-3E6A-9BDD-AF02F6D2F286",
"matrix": [-37.2186,0,0,0,0,0,11.5437,0,0,18.8259,0,0,0,7.4702,0,1],
"visible": true,
"type": "Mesh",
"material": "03A99801-89ED-3205-9CCE-582517865AEC",
"castShadow": true,
"receiveShadow": true,
"geometry": "15641190-4052-3871-BF5E-F046F6B1B496"
},{
"name": "Box1",
"uuid": "13AB8362-B9AF-310A-8509-00DC96972EBC",
"matrix": [-6.1089,0,0,0,0,0,8.3838,0,0,24.7328,0,0,-13.6253,17.6331,0.185,1],
"visible": true,
"type": "Mesh",
"material": "333297A3-DCB2-3D1C-B50E-0121AAB87031",
"castShadow": true,
"receiveShadow": true,
"geometry": "0813763B-3A95-3717-A405-7EEF112B324A"
},{
"name": "Box2",
"uuid": "66A008AC-44C6-3B23-9275-5237B57058C0",
"matrix": [-10.0737,0,0,0,0,0,11.2692,0,0,36.6671,0,0,0,19.6978,1.8799,1],
"visible": true,
"type": "Mesh",
"material": "D3EF799E-3C88-3EF5-A660-515F0547CF6F",
"castShadow": true,
"receiveShadow": true,
"geometry": "A3266DF7-EF8B-3835-B919-F2D9B9D10D07"
},{
"name": "Box3",
"uuid": "BF7F5BAE-ECAB-32A6-B7E6-0F0B02A66F3D",
"matrix": [-7.2117,0,0,0,0,0,9.4309,0,0,14.9717,0,0,14.4591,20.3434,0.152,1],
"visible": true,
"type": "Mesh",
"material": "4D7FC0AC-7742-3153-906E-4312C7F60598",
"castShadow": true,
"receiveShadow": true,
"geometry": "DAF26EED-E8A1-3597-94D1-E65246622C91"
},{
"name": "Box4",
"uuid": "21E1EE28-720A-3F5F-A701-169B87D161B6",
"matrix": [-7.5125,0,0,0,0,0,14.383,0,0,1.8038,0,0,0,0.405,-14.1447,1],
"visible": true,
"type": "Mesh",
"material": "1EE26ABA-937F-3A36-B239-DE515A50222F",
"castShadow": true,
"receiveShadow": true,
"geometry": "21064AED-2F9E-349A-8048-33069A9BEACE"
},{
"name": "Capsule",
"uuid": "8BAF5882-416D-3E04-9A9F-699BBBA3EBB3",
"matrix": [-1,0,0,0,0,0,1,0,0,7.4085,0,0,-13.6226,38.9545,0.2564,1],
"visible": true,
"type": "Mesh",
"material": "A1AB8444-0997-36C7-9AA2-7C193DF163E3",
"castShadow": true,
"receiveShadow": true,
"geometry": "2DCC7C8A-ED09-3BD6-86A5-A27316A3860A"
},{
"name": "Capsule1",
"uuid": "C86D5377-99E5-3ED3-96D3-C6B9EF46EA97",
"matrix": [-1,0,0,0,0,0,1,0,0,11.293,0,0,0.1906,45.5859,4.9064,1],
"visible": true,
"type": "Mesh",
"material": "3FEA0E85-02AE-3DBA-A738-67B522773F1D",
"castShadow": true,
"receiveShadow": true,
"geometry": "2E4574C4-0D61-3E62-9CF8-2DD0E36F0C93"
},{
"name": "Capsule2",
"uuid": "CE293A97-3ACB-3B0F-88F4-A874BF5ED3A4",
"matrix": [-1,0,0,0,0,0,1.5053,0,0,9.4802,0,0,14.4296,34.7678,1.5756,1],
"visible": true,
"type": "Mesh",
"material": "32650900-1DE2-3351-BA10-D3C6DE073DD6",
"castShadow": true,
"receiveShadow": true,
"geometry": "7B49AA9D-A523-33A6-BC6F-701146974879"
},{
"name": "Cone",
"uuid": "02BF8491-5563-3FC5-A223-35058E8B5663",
"matrix": [-7.8885,0,0,0,0,0,-5.8782,0,0,5.5024,0,0,14.0094,30.4705,2.331,1],
"visible": true,
"type": "Mesh",
"material": "770F8617-80C1-35A6-AC95-C28465D7A597",
"castShadow": true,
"receiveShadow": true,
"geometry": "6F819075-5DAE-3263-8E03-B58B1580326C"
},{
"name": "Cone1",
"uuid": "DB587E3E-D56C-36F7-B43D-9B391022056B",
"matrix": [-10.2117,0,0,0,0,0,14.4162,0,0,8.4903,0,0,-0.1296,40.5614,3.8439,1],
"visible": true,
"type": "Mesh",
"material": "00A3FF74-3BB4-3A38-953E-E2AABB11C5CD",
"castShadow": true,
"receiveShadow": true,
"geometry": "F1E8EF2D-6DD7-3144-9E90-9F95164FFC64"
},{
"name": "Cone2",
"uuid": "F742C2DB-E1FC-38D6-B9F6-1807925F347A",
"matrix": [-8.4245,0,0,0,0,0,5.3735,0,0,9.122,0,0,-14.2169,32.3663,0.6188,1],
"visible": true,
"type": "Mesh",
"material": "80135FB4-5E1B-31C3-A6D2-C84A937F7703",
"castShadow": true,
"receiveShadow": true,
"geometry": "111F1117-2F45-377F-85E4-06ED7992276B"
},{
"name": "Plane",
"uuid": "631279BD-3DB0-34E6-BE17-B19991DEF360",
"matrix": [-1,0,0,0,0,0.882883,0.469593,0,0,0.469593,-0.882883,0,-15.9853,42.8839,0.7309,1],
"visible": true,
"type": "Mesh",
"material": "3070F8ED-68CE-333B-92BD-338D10760C82",
"castShadow": true,
"receiveShadow": true,
"geometry": "FDA35051-77AC-3FCF-B642-34C990EA7344"
},{
"name": "Plane1",
"uuid": "D5211B8C-258D-3868-A8EA-36AE03B6C111",
"matrix": [-1,0,0,0,0,-0.990779,0.135489,0,0,0.135489,0.990779,0,-2.0405,52.4939,5.0395,1],
"visible": true,
"type": "Mesh",
"material": "0EDB279C-60CE-3FEA-962D-23267935FAFC",
"castShadow": true,
"receiveShadow": true,
"geometry": "F379AE98-C06B-3C1B-9C01-43C9DBB0E829"
},{
"name": "Plane2",
"uuid": "BCC16648-8BB9-3BC7-9AC8-777F45157BBB",
"matrix": [-1,0,0,0,0,-0.962727,0.270474,0,0,0.270474,0.962727,0,13.0595,41.5735,0.4177,1],
"visible": true,
"type": "Mesh",
"material": "86A91A79-35BF-3818-AFA8-68A621DF2B53",
"castShadow": true,
"receiveShadow": true,
"geometry": "937D31D3-3635-3D8F-9F86-EF3B1E634FEB"
},{
"name": "Plane3",
"uuid": "939D2F01-93F0-319A-A81D-012F85895B6D",
"matrix": [-10.459,0,0,0,0,0,3.7596,0,0,1,0,0,0,0,-12.5062,1],
"visible": true,
"type": "Mesh",
"material": "E692147D-6D15-3114-B17E-A1363A63C9E6",
"castShadow": true,
"receiveShadow": true,
"geometry": "43B04513-B864-3977-9955-07140A87005C"
},{
"name": "Plane4",
"uuid": "709E251B-B336-31F6-ACA7-A63F0CECCF0D",
"matrix": [-11.594,0,0,0,0,0,8.1078,0,0,1,0,0,-1.8712,-2.2575,13.5091,1],
"visible": true,
"type": "Mesh",
"material": "D3022D02-29A9-347E-8C99-5B1042C83B57",
"castShadow": true,
"receiveShadow": true,
"geometry": "54B24D47-DC08-3D28-B37E-A456904229BB"
},{
"name": "Plane5",
"uuid": "DFD20B69-4296-35D9-B317-7D1510402057",
"matrix": [-2.0835,0,0,0,0,4.08319,-0.008438,0,0,-0.002066,-0.999998,0,0,5.1425,-6.8061,1],
"visible": true,
"type": "Mesh",
"material": "FF10FA6C-7EA1-3488-8FC2-36C0AA9008B3",
"castShadow": true,
"receiveShadow": true,
"geometry": "06FEF161-D94D-3DC5-86D1-45FDE58B8297"
},{
"name": "Plane6",
"uuid": "5CA33070-75A3-3AAC-B696-78624C92AFAB",
"matrix": [-1,0,0,0,0,-0.99078,0.135478,0,0,0.135478,0.99078,0,15.6535,23.014,-8.0378,1],
"visible": true,
"type": "Mesh",
"material": "ABC84CB5-4131-352A-ACAE-20F563835057",
"castShadow": true,
"receiveShadow": true,
"geometry": "B3514261-42B0-34C9-A691-B1738EF7138B"
},{
"name": "Plane7",
"uuid": "17B2AD33-0778-3871-90D3-F5283831D1E3",
"matrix": [-1,0,0,0,0,-3.7379,-0.317941,0,0,-0.084753,0.996402,0,1.6806,28.3192,-6.1461,1],
"visible": true,
"type": "Mesh",
"material": "CC0B8C9E-B4B6-3A41-8B9B-F0695A0D9082",
"castShadow": true,
"receiveShadow": true,
"geometry": "9B0C8C19-1C02-3EB1-80D4-D11DB7C015B3"
},{
"name": "Plane8",
"uuid": "26615A79-4D48-3334-A01E-2566DEB3FF8F",
"matrix": [-1,0,0,0,0,-0.975511,0.21995,0,0,0.21995,0.975511,0,-13.2219,21.4657,-4.4332,1],
"visible": true,
"type": "Mesh",
"material": "CEF1B944-4CC9-3AAB-9310-E53FA152756A",
"castShadow": true,
"receiveShadow": true,
"geometry": "0AD25B59-5595-3BA4-AEA6-E0FDBE8BF0C6"
}]
},
"animations": [{
"tracks": [],
"name": "default",
"fps": 29
}],
"geometries": [{
"type": "Geometry",
"data": {
"skinWeights": [],
"uvs": [[0,1,0,0,1,0,1,1]],
"name": "Plane2Geometry",
"influencesPerVertex": 2,
"faces": [43,0,2,3,1,0,0,1,2,3,0,0,0,0],
"normals": [0,0,1],
"vertices": [-2,2,0,2,2,0,-2,-2,-0,2,-2,-0],
"bones": [],
"skinIndices": [],
"animations": [],
"morphTargets": [],
"metadata": {
"normals": 1,
"generator": "io_three",
"uvs": 1,
"vertices": 4,
"bones": 0,
"faces": 1,
"version": 3,
"morphTargets": 0,
"materials": 1
}
},
"uuid": "937D31D3-3635-3D8F-9F86-EF3B1E634FEB",
"materials": [{
"blending": "NormalBlending",
"colorEmissive": [0,0,0],
"transparent": false,
"DbgIndex": 0,
"colorDiffuse": [0.690196,0.690196,0.690196],
"doubleSided": true,
"shading": "phong",
"depthWrite": true,
"specularCoef": 5,
"DbgColor": 15658734,
"wireframe": false,
"colorAmbient": [0.690196,0.690196,0.690196],
"opacity": 1,
"DbgName": "Plane2Default",
"visible": true,
"depthTest": true,
"colorSpecular": [0.5,0.5,0.5]
}]
},{
"type": "Geometry",
"data": {
"skinWeights": [],
"uvs": [[0,1,0,0,1,0,1,1]],
"name": "Box2Geometry",
"influencesPerVertex": 2,
"faces": [43,0,2,3,1,0,0,1,2,3,0,1,2,3,43,4,6,7,5,0,0,1,2,3,4,5,6,7,43,0,1,4,5,0,2,3,0,1,0,3,4,7,43,7,6,3,2,0,0,1,2,3,6,5,2,1,43,2,0,5,7,0,2,3,0,1,1,0,7,6,43,1,3,6,4,0,0,1,2,3,3,2,5,4],
"normals": [0.577349,-0.577349,0.577349,0.577349,-0.577349,-0.577349,0.577349,0.577349,-0.577349,0.577349,0.577349,0.577349,-0.577349,0.577349,0.577349,-0.577349,0.577349,-0.577349,-0.577349,-0.577349,-0.577349,-0.577349,-0.577349,0.577349],
"vertices": [0.5,-0.5,0.5,0.5,0.5,0.5,0.5,-0.5,-0.5,0.5,0.5,-0.5,-0.5,0.5,0.5,-0.5,-0.5,0.5,-0.5,0.5,-0.5,-0.5,-0.5,-0.5],
"bones": [],
"skinIndices": [],
"animations": [],
"morphTargets": [],
"metadata": {
"normals": 8,
"generator": "io_three",
"uvs": 1,
"vertices": 8,
"bones": 0,
"faces": 6,
"version": 3,
"morphTargets": 0,
"materials": 1
}
},
"uuid": "A3266DF7-EF8B-3835-B919-F2D9B9D10D07",
"materials": [{
"blending": "NormalBlending",
"colorEmissive": [0,0,0],
"transparent": false,
"DbgIndex": 0,
"colorDiffuse": [0.8,0.145098,0.145098],
"doubleSided": true,
"shading": "phong",
"depthWrite": true,
"specularCoef": 5,
"DbgColor": 15658734,
"wireframe": false,
"colorAmbient": [0.8,0.145098,0.145098],
"opacity": 1,
"DbgName": "Box2Default",
"visible": true,
"depthTest": true,
"colorSpecular": [0.5,0.5,0.5]
}]
},{
"type": "Geometry",
"data": {
"skinWeights": [],
"uvs": [[0,1,0,0,1,0,1,1]],
"name": "BoxGeometry",
"influencesPerVertex": 2,
"faces": [43,0,2,3,1,0,0,1,2,3,0,1,2,3,43,4,6,7,5,0,0,1,2,3,4,5,6,7,43,0,1,4,5,0,2,3,0,1,0,3,4,7,43,7,6,3,2,0,0,1,2,3,6,5,2,1,43,2,0,5,7,0,2,3,0,1,1,0,7,6,43,1,3,6,4,0,0,1,2,3,3,2,5,4],
"normals": [0.577349,-0.577349,0.577349,0.577349,-0.577349,-0.577349,0.577349,0.577349,-0.577349,0.577349,0.577349,0.577349,-0.577349,0.577349,0.577349,-0.577349,0.577349,-0.577349,-0.577349,-0.577349,-0.577349,-0.577349,-0.577349,0.577349],
"vertices": [0.5,-0.5,0.5,0.5,0.5,0.5,0.5,-0.5,-0.5,0.5,0.5,-0.5,-0.5,0.5,0.5,-0.5,-0.5,0.5,-0.5,0.5,-0.5,-0.5,-0.5,-0.5],
"bones": [],
"skinIndices": [],
"animations": [],
"morphTargets": [],
"metadata": {
"normals": 8,
"generator": "io_three",
"uvs": 1,
"vertices": 8,
"bones": 0,
"faces": 6,
"version": 3,
"morphTargets": 0,
"materials": 1
}
},
"uuid": "15641190-4052-3871-BF5E-F046F6B1B496",
"materials": [{
"blending": "NormalBlending",
"colorEmissive": [0,0,0],
"transparent": false,
"DbgIndex": 0,
"colorDiffuse": [0.717647,0.113725,0.113725],
"doubleSided": true,
"shading": "phong",
"depthWrite": true,
"specularCoef": 5,
"DbgColor": 15658734,
"wireframe": false,
"colorAmbient": [0.717647,0.113725,0.113725],
"opacity": 1,
"DbgName": "BoxDefault",
"visible": true,
"depthTest": true,
"colorSpecular": [0.5,0.5,0.5]
}]
},{
"type": "Geometry",
"data": {
"skinWeights": [],
"uvs": [[0,1,0,0,0.083333,0,0.083333,1,0.166667,0,0.166667,1,0.25,0,0.25,1,0.333333,0,0.333333,1,0.416667,0,0.416667,1,0.5,0,0.5,1,0.583333,0,0.583333,1,0.666667,0,0.666667,1,0.75,0,0.75,1,0.833333,0,0.833333,1,0.916667,0,0.916667,1,1,0]],
"name": "ConeGeometry",
"influencesPerVertex": 2,
"faces": [42,0,1,2,0,0,1,2,0,1,2,42,0,2,3,0,3,2,4,0,2,3,42,0,3,4,0,5,4,6,0,3,4,42,0,4,5,0,7,6,8,0,4,5,42,0,5,6,0,9,8,10,0,5,6,42,0,6,7,0,11,10,12,0,6,7,42,0,7,8,0,13,12,14,0,7,8,42,0,8,9,0,15,14,16,0,8,9,42,0,9,10,0,17,16,18,0,9,10,42,0,10,11,0,19,18,20,0,10,11,42,0,11,12,0,21,20,22,0,11,12,42,0,12,1,0,23,22,24,0,12,1,42,2,1,13,0,2,1,0,2,1,13,42,3,2,13,0,4,2,0,3,2,13,42,4,3,13,0,6,4,0,4,3,13,42,5,4,13,0,8,6,0,5,4,13,42,6,5,13,0,10,8,0,6,5,13,42,7,6,13,0,12,10,0,7,6,13,42,8,7,13,0,14,12,0,8,7,13,42,9,8,13,0,16,14,0,9,8,13,42,10,9,13,0,18,16,0,10,9,13,42,11,10,13,0,20,18,0,11,10,13,42,12,11,13,0,22,20,0,12,11,13,42,1,12,13,0,24,22,0,1,12,13],
"normals": [0,0,1,0,-0.881924,-0.471358,0.440962,-0.763756,-0.471358,0.763756,-0.440962,-0.471358,0.881924,0,-0.471358,0.763756,0.440962,-0.471358,0.440962,0.763756,-0.471358,0,0.881924,-0.471358,-0.440962,0.763756,-0.471358,-0.763756,0.440962,-0.471358,-0.881924,0,-0.471358,-0.763756,-0.440962,-0.471358,-0.440962,-0.763756,-0.471358,0,0,-1],
"vertices": [0,0,0.5,0,-0.5,-0.5,0.25,-0.433,-0.5,0.433,-0.25,-0.5,0.5,0,-0.5,0.433,0.25,-0.5,0.25,0.433,-0.5,0,0.5,-0.5,-0.25,0.433,-0.5,-0.433,0.25,-0.5,-0.5,0,-0.5,-0.433,-0.25,-0.5,-0.25,-0.433,-0.5,0,0,-0.5],
"bones": [],
"skinIndices": [],
"animations": [],
"morphTargets": [],
"metadata": {
"normals": 14,
"generator": "io_three",
"uvs": 1,
"vertices": 14,
"bones": 0,
"faces": 24,
"version": 3,
"morphTargets": 0,
"materials": 1
}
},
"uuid": "6F819075-5DAE-3263-8E03-B58B1580326C",
"materials": [{
"blending": "NormalBlending",
"colorEmissive": [0,0,0],
"transparent": false,
"DbgIndex": 0,
"colorDiffuse": [0.937255,0.160784,0.160784],
"doubleSided": true,
"shading": "phong",
"depthWrite": true,
"specularCoef": 5,
"DbgColor": 15658734,
"wireframe": false,
"colorAmbient": [0.937255,0.160784,0.160784],
"opacity": 1,
"DbgName": "ConeDefault",
"visible": true,
"depthTest": true,
"colorSpecular": [0.5,0.5,0.5]
}]
},{
"type": "Geometry",
"data": {
"skinWeights": [],
"uvs": [[0,1,0,0,1,0,1,1]],
"name": "Box1Geometry",
"influencesPerVertex": 2,
"faces": [43,0,2,3,1,0,0,1,2,3,0,1,2,3,43,4,6,7,5,0,0,1,2,3,4,5,6,7,43,0,1,4,5,0,2,3,0,1,0,3,4,7,43,7,6,3,2,0,0,1,2,3,6,5,2,1,43,2,0,5,7,0,2,3,0,1,1,0,7,6,43,1,3,6,4,0,0,1,2,3,3,2,5,4],
"normals": [0.577349,-0.577349,0.577349,0.577349,-0.577349,-0.577349,0.577349,0.577349,-0.577349,0.577349,0.577349,0.577349,-0.577349,0.577349,0.577349,-0.577349,0.577349,-0.577349,-0.577349,-0.577349,-0.577349,-0.577349,-0.577349,0.577349],
"vertices": [0.5,-0.5,0.5,0.5,0.5,0.5,0.5,-0.5,-0.5,0.5,0.5,-0.5,-0.5,0.5,0.5,-0.5,-0.5,0.5,-0.5,0.5,-0.5,-0.5,-0.5,-0.5],
"bones": [],
"skinIndices": [],
"animations": [],
"morphTargets": [],
"metadata": {
"normals": 8,
"generator": "io_three",
"uvs": 1,
"vertices": 8,
"bones": 0,
"faces": 6,
"version": 3,
"morphTargets": 0,
"materials": 1
}
},
"uuid": "0813763B-3A95-3717-A405-7EEF112B324A",
"materials": [{
"blending": "NormalBlending",
"colorEmissive": [0,0,0],
"transparent": false,
"DbgIndex": 0,
"colorDiffuse": [0.768627,0.090196,0.090196],
"doubleSided": true,
"shading": "phong",
"depthWrite": true,
"specularCoef": 5,
"DbgColor": 15658734,
"wireframe": false,
"colorAmbient": [0.768627,0.090196,0.090196],
"opacity": 1,
"DbgName": "Box1Default",
"visible": true,
"depthTest": true,
"colorSpecular": [0.5,0.5,0.5]
}]
},{
"type": "Geometry",
"data": {
"skinWeights": [],
"uvs": [[0,1,0,0,1,0,1,1]],
"name": "Plane6Geometry",
"influencesPerVertex": 2,
"faces": [43,0,2,3,1,0,0,1,2,3,0,0,0,0],
"normals": [0,0,1],
"vertices": [-2,2,0,2,2,0,-2,-2,-0,2,-2,-0],
"bones": [],
"skinIndices": [],
"animations": [],
"morphTargets": [],
"metadata": {
"normals": 1,
"generator": "io_three",
"uvs": 1,
"vertices": 4,
"bones": 0,
"faces": 1,
"version": 3,
"morphTargets": 0,
"materials": 1
}
},
"uuid": "B3514261-42B0-34C9-A691-B1738EF7138B",
"materials": [{
"blending": "NormalBlending",
"colorEmissive": [0,0,0],
"transparent": false,
"DbgIndex": 0,
"colorDiffuse": [0.886275,0.854902,0.101961],
"doubleSided": true,
"shading": "phong",
"depthWrite": true,
"specularCoef": 5,
"DbgColor": 15658734,
"wireframe": false,
"colorAmbient": [0.886275,0.854902,0.101961],
"opacity": 1,
"DbgName": "Plane6Default",
"visible": true,
"depthTest": true,
"colorSpecular": [0.5,0.5,0.5]
}]
},{
"type": "Geometry",
"data": {
"skinWeights": [],
"uvs": [[0,1,0,0,1,0,1,1]],
"name": "Plane3Geometry",
"influencesPerVertex": 2,
"faces": [43,0,2,3,1,0,0,1,2,3,0,0,0,0],
"normals": [0,0,1],
"vertices": [-2,2,0,2,2,0,-2,-2,-0,2,-2,-0],
"bones": [],
"skinIndices": [],
"animations": [],
"morphTargets": [],
"metadata": {
"normals": 1,
"generator": "io_three",
"uvs": 1,
"vertices": 4,
"bones": 0,
"faces": 1,
"version": 3,
"morphTargets": 0,
"materials": 1
}
},
"uuid": "43B04513-B864-3977-9955-07140A87005C",
"materials": [{
"blending": "NormalBlending",
"colorEmissive": [0,0,0],
"transparent": false,
"DbgIndex": 0,
"colorDiffuse": [0.098039,0.129412,0.858824],
"doubleSided": true,
"shading": "phong",
"depthWrite": true,
"specularCoef": 5,
"DbgColor": 15658734,
"wireframe": false,
"colorAmbient": [0.098039,0.129412,0.858824],
"opacity": 1,
"DbgName": "Plane3Default",
"visible": true,
"depthTest": true,
"colorSpecular": [0.5,0.5,0.5]
}]
},{
"type": "Geometry",
"data": {
"skinWeights": [],
"uvs": [[0,1,0,0,1,0,1,1]],
"name": "PlaneGeometry",
"influencesPerVertex": 2,
"faces": [43,0,2,3,1,0,0,1,2,3,0,0,0,0],
"normals": [0,0,1],
"vertices": [-2,2,0,2,2,0,-2,-2,-0,2,-2,-0],
"bones": [],
"skinIndices": [],
"animations": [],
"morphTargets": [],
"metadata": {
"normals": 1,
"generator": "io_three",
"uvs": 1,
"vertices": 4,
"bones": 0,
"faces": 1,
"version": 3,
"morphTargets": 0,
"materials": 1
}
},
"uuid": "FDA35051-77AC-3FCF-B642-34C990EA7344",
"materials": [{
"blending": "NormalBlending",
"colorEmissive": [0,0,0],
"transparent": false,
"DbgIndex": 0,
"colorDiffuse": [0.690196,0.690196,0.690196],
"doubleSided": true,
"shading": "phong",
"depthWrite": true,
"specularCoef": 5,
"DbgColor": 15658734,
"wireframe": false,
"colorAmbient": [0.690196,0.690196,0.690196],
"opacity": 1,
"DbgName": "PlaneDefault",
"visible": true,
"depthTest": true,
"colorSpecular": [0.5,0.5,0.5]
}]
},{
"type": "Geometry",
"data": {
"skinWeights": [],
"uvs": [[0,1,0,0,1,0,1,1]],
"name": "Plane4Geometry",
"influencesPerVertex": 2,
"faces": [43,0,2,3,1,0,0,1,2,3,0,0,0,0],
"normals": [0,0,1],
"vertices": [-2,2,0,2,2,0,-2,-2,-0,2,-2,-0],
"bones": [],
"skinIndices": [],
"animations": [],
"morphTargets": [],
"metadata": {
"normals": 1,
"generator": "io_three",
"uvs": 1,
"vertices": 4,
"bones": 0,
"faces": 1,
"version": 3,
"morphTargets": 0,
"materials": 1
}
},
"uuid": "54B24D47-DC08-3D28-B37E-A456904229BB",
"materials": [{
"blending": "NormalBlending",
"colorEmissive": [0,0,0],
"transparent": false,
"DbgIndex": 0,
"colorDiffuse": [0.227451,0.878431,0.211765],
"doubleSided": true,
"shading": "phong",
"depthWrite": true,
"specularCoef": 5,
"DbgColor": 15658734,
"wireframe": false,
"colorAmbient": [0.227451,0.878431,0.211765],
"opacity": 1,
"DbgName": "Plane4Default",
"visible": true,
"depthTest": true,
"colorSpecular": [0.5,0.5,0.5]
}]
},{
"type": "Geometry",
"data": {
"skinWeights": [],
"uvs": [[0,1,0,0,1,0,1,1]],
"name": "Box4Geometry",
"influencesPerVertex": 2,
"faces": [43,0,2,3,1,0,0,1,2,3,0,1,2,3,43,4,6,7,5,0,0,1,2,3,4,5,6,7,43,0,1,4,5,0,2,3,0,1,0,3,4,7,43,7,6,3,2,0,0,1,2,3,6,5,2,1,43,2,0,5,7,0,2,3,0,1,1,0,7,6,43,1,3,6,4,0,0,1,2,3,3,2,5,4],
"normals": [0.577349,-0.577349,0.577349,0.577349,-0.577349,-0.577349,0.577349,0.577349,-0.577349,0.577349,0.577349,0.577349,-0.577349,0.577349,0.577349,-0.577349,0.577349,-0.577349,-0.577349,-0.577349,-0.577349,-0.577349,-0.577349,0.577349],
"vertices": [0.5,-0.5,0.5,0.5,0.5,0.5,0.5,-0.5,-0.5,0.5,0.5,-0.5,-0.5,0.5,0.5,-0.5,-0.5,0.5,-0.5,0.5,-0.5,-0.5,-0.5,-0.5],
"bones": [],
"skinIndices": [],
"animations": [],
"morphTargets": [],
"metadata": {
"normals": 8,
"generator": "io_three",
"uvs": 1,
"vertices": 8,
"bones": 0,
"faces": 6,
"version": 3,
"morphTargets": 0,
"materials": 1
}
},
"uuid": "21064AED-2F9E-349A-8048-33069A9BEACE",
"materials": [{
"blending": "NormalBlending",
"colorEmissive": [0,0,0],
"transparent": false,
"DbgIndex": 0,
"colorDiffuse": [0.4,0.247059,0.247059],
"doubleSided": true,
"shading": "phong",
"depthWrite": true,
"specularCoef": 5,
"DbgColor": 15658734,
"wireframe": false,
"colorAmbient": [0.4,0.247059,0.247059],
"opacity": 1,
"DbgName": "Box4Default",
"visible": true,
"depthTest": true,
"colorSpecular": [0.5,0.5,0.5]
}]
},{
"type": "Geometry",
"data": {
"skinWeights": [],
"uvs": [[0,1,0,0,0.083333,0,0.083333,1,0.166667,0,0.166667,1,0.25,0,0.25,1,0.333333,0,0.333333,1,0.416667,0,0.416667,1,0.5,0,0.5,1,0.583333,0,0.583333,1,0.666667,0,0.666667,1,0.75,0,0.75,1,0.833333,0,0.833333,1,0.916667,0,0.916667,1,1,0]],
"name": "Cone2Geometry",
"influencesPerVertex": 2,
"faces": [42,0,1,2,0,0,1,2,0,1,2,42,0,2,3,0,3,2,4,0,2,3,42,0,3,4,0,5,4,6,0,3,4,42,0,4,5,0,7,6,8,0,4,5,42,0,5,6,0,9,8,10,0,5,6,42,0,6,7,0,11,10,12,0,6,7,42,0,7,8,0,13,12,14,0,7,8,42,0,8,9,0,15,14,16,0,8,9,42,0,9,10,0,17,16,18,0,9,10,42,0,10,11,0,19,18,20,0,10,11,42,0,11,12,0,21,20,22,0,11,12,42,0,12,1,0,23,22,24,0,12,1,42,2,1,13,0,2,1,0,2,1,13,42,3,2,13,0,4,2,0,3,2,13,42,4,3,13,0,6,4,0,4,3,13,42,5,4,13,0,8,6,0,5,4,13,42,6,5,13,0,10,8,0,6,5,13,42,7,6,13,0,12,10,0,7,6,13,42,8,7,13,0,14,12,0,8,7,13,42,9,8,13,0,16,14,0,9,8,13,42,10,9,13,0,18,16,0,10,9,13,42,11,10,13,0,20,18,0,11,10,13,42,12,11,13,0,22,20,0,12,11,13,42,1,12,13,0,24,22,0,1,12,13],
"normals": [0,0,1,0,-0.881924,-0.471358,0.440962,-0.763756,-0.471358,0.763756,-0.440962,-0.471358,0.881924,0,-0.471358,0.763756,0.440962,-0.471358,0.440962,0.763756,-0.471358,0,0.881924,-0.471358,-0.440962,0.763756,-0.471358,-0.763756,0.440962,-0.471358,-0.881924,0,-0.471358,-0.763756,-0.440962,-0.471358,-0.440962,-0.763756,-0.471358,0,0,-1],
"vertices": [0,0,0.5,0,-0.5,-0.5,0.25,-0.433,-0.5,0.433,-0.25,-0.5,0.5,0,-0.5,0.433,0.25,-0.5,0.25,0.433,-0.5,0,0.5,-0.5,-0.25,0.433,-0.5,-0.433,0.25,-0.5,-0.5,0,-0.5,-0.433,-0.25,-0.5,-0.25,-0.433,-0.5,0,0,-0.5],
"bones": [],
"skinIndices": [],
"animations": [],
"morphTargets": [],
"metadata": {
"normals": 14,
"generator": "io_three",
"uvs": 1,
"vertices": 14,
"bones": 0,
"faces": 24,
"version": 3,
"morphTargets": 0,
"materials": 1
}
},
"uuid": "111F1117-2F45-377F-85E4-06ED7992276B",
"materials": [{
"blending": "NormalBlending",
"colorEmissive": [0,0,0],
"transparent": false,
"DbgIndex": 0,
"colorDiffuse": [0.74902,0.086275,0.086275],
"doubleSided": true,
"shading": "phong",
"depthWrite": true,
"specularCoef": 5,
"DbgColor": 15658734,
"wireframe": false,
"colorAmbient": [0.74902,0.086275,0.086275],
"opacity": 1,
"DbgName": "Cone2Default",
"visible": true,
"depthTest": true,
"colorSpecular": [0.5,0.5,0.5]
}]
},{
"type": "Geometry",
"data": {
"skinWeights": [],
"uvs": [[0,1,0,0,1,0,1,1]],
"name": "Plane7Geometry",
"influencesPerVertex": 2,
"faces": [43,0,2,3,1,0,0,1,2,3,0,0,0,0],
"normals": [0,0,1],
"vertices": [-2,2,0,2,2,0,-2,-2,-0,2,-2,-0],
"bones": [],
"skinIndices": [],
"animations": [],
"morphTargets": [],
"metadata": {
"normals": 1,
"generator": "io_three",
"uvs": 1,
"vertices": 4,
"bones": 0,
"faces": 1,
"version": 3,
"morphTargets": 0,
"materials": 1
}
},
"uuid": "9B0C8C19-1C02-3EB1-80D4-D11DB7C015B3",
"materials": [{
"blending": "NormalBlending",
"colorEmissive": [0,0,0],
"transparent": false,
"DbgIndex": 0,
"colorDiffuse": [0.698039,0.74902,0.12549],
"doubleSided": true,
"shading": "phong",
"depthWrite": true,
"specularCoef": 5,
"DbgColor": 15658734,
"wireframe": false,
"colorAmbient": [0.698039,0.74902,0.12549],
"opacity": 1,
"DbgName": "Plane7Default",
"visible": true,
"depthTest": true,
"colorSpecular": [0.5,0.5,0.5]
}]
},{
"type": "Geometry",
"data": {
"skinWeights": [],
"uvs": [[0,1,0,0,1,0,1,1]],
"name": "Plane8Geometry",
"influencesPerVertex": 2,
"faces": [43,0,2,3,1,0,0,1,2,3,0,0,0,0],
"normals": [0,0,1],
"vertices": [-2,2,0,2,2,0,-2,-2,-0,2,-2,-0],
"bones": [],
"skinIndices": [],
"animations": [],
"morphTargets": [],
"metadata": {
"normals": 1,
"generator": "io_three",
"uvs": 1,
"vertices": 4,
"bones": 0,
"faces": 1,
"version": 3,
"morphTargets": 0,
"materials": 1
}
},
"uuid": "0AD25B59-5595-3BA4-AEA6-E0FDBE8BF0C6",
"materials": [{
"blending": "NormalBlending",
"colorEmissive": [0,0,0],
"transparent": false,
"DbgIndex": 0,
"colorDiffuse": [0.670588,0.819608,0.086275],
"doubleSided": true,
"shading": "phong",
"depthWrite": true,
"specularCoef": 5,
"DbgColor": 15658734,
"wireframe": false,
"colorAmbient": [0.670588,0.819608,0.086275],
"opacity": 1,
"DbgName": "Plane8Default",
"visible": true,
"depthTest": true,
"colorSpecular": [0.5,0.5,0.5]
}]
},{
"type": "Geometry",
"data": {
"skinWeights": [],
"uvs": [[0,1,0,0,1,0,1,1]],
"name": "Box3Geometry",
"influencesPerVertex": 2,
"faces": [43,0,2,3,1,0,0,1,2,3,0,1,2,3,43,4,6,7,5,0,0,1,2,3,4,5,6,7,43,0,1,4,5,0,2,3,0,1,0,3,4,7,43,7,6,3,2,0,0,1,2,3,6,5,2,1,43,2,0,5,7,0,2,3,0,1,1,0,7,6,43,1,3,6,4,0,0,1,2,3,3,2,5,4],
"normals": [0.577349,-0.577349,0.577349,0.577349,-0.577349,-0.577349,0.577349,0.577349,-0.577349,0.577349,0.577349,0.577349,-0.577349,0.577349,0.577349,-0.577349,0.577349,-0.577349,-0.577349,-0.577349,-0.577349,-0.577349,-0.577349,0.577349],
"vertices": [0.5,-0.5,0.5,0.5,0.5,0.5,0.5,-0.5,-0.5,0.5,0.5,-0.5,-0.5,0.5,0.5,-0.5,-0.5,0.5,-0.5,0.5,-0.5,-0.5,-0.5,-0.5],
"bones": [],
"skinIndices": [],
"animations": [],
"morphTargets": [],
"metadata": {
"normals": 8,
"generator": "io_three",
"uvs": 1,
"vertices": 8,
"bones": 0,
"faces": 6,
"version": 3,
"morphTargets": 0,
"materials": 1
}
},
"uuid": "DAF26EED-E8A1-3597-94D1-E65246622C91",
"materials": [{
"blending": "NormalBlending",
"colorEmissive": [0,0,0],
"transparent": false,
"DbgIndex": 0,
"colorDiffuse": [0.74902,0.164706,0.164706],
"doubleSided": true,
"shading": "phong",
"depthWrite": true,
"specularCoef": 5,
"DbgColor": 15658734,
"wireframe": false,
"colorAmbient": [0.74902,0.164706,0.164706],
"opacity": 1,
"DbgName": "Box3Default",
"visible": true,
"depthTest": true,
"colorSpecular": [0.5,0.5,0.5]
}]
},{
"type": "Geometry",
"data": {
"skinWeights": [],
"uvs": [[0,1,0,0,1,0,1,1]],
"name": "Plane1Geometry",
"influencesPerVertex": 2,
"faces": [43,0,2,3,1,0,0,1,2,3,0,0,0,0],
"normals": [0,0,1],
"vertices": [-2,2,0,2,2,0,-2,-2,-0,2,-2,-0],
"bones": [],
"skinIndices": [],
"animations": [],
"morphTargets": [],
"metadata": {
"normals": 1,
"generator": "io_three",
"uvs": 1,
"vertices": 4,
"bones": 0,
"faces": 1,
"version": 3,
"morphTargets": 0,
"materials": 1
}
},
"uuid": "F379AE98-C06B-3C1B-9C01-43C9DBB0E829",
"materials": [{
"blending": "NormalBlending",
"colorEmissive": [0,0,0],
"transparent": false,
"DbgIndex": 0,
"colorDiffuse": [0.690196,0.690196,0.690196],
"doubleSided": true,
"shading": "phong",
"depthWrite": true,
"specularCoef": 5,
"DbgColor": 15658734,
"wireframe": false,
"colorAmbient": [0.690196,0.690196,0.690196],
"opacity": 1,
"DbgName": "Plane1Default",
"visible": true,
"depthTest": true,
"colorSpecular": [0.5,0.5,0.5]
}]
},{
"type": "Geometry",
"data": {
"skinWeights": [],
"uvs": [[0,1,0,0.9,0.083333,0.9,0.083333,1,0,0.8,0.083333,0.8,0,0.7,0.083333,0.7,0,0.6,0.083333,0.6,0,0.5,0.083333,0.5,0,0.4,0.083333,0.4,0,0.3,0.083333,0.3,0,0.2,0.083333,0.2,0,0.1,0.083333,0.1,0,0,0.083333,0,0.166667,0.9,0.166667,1,0.166667,0.8,0.166667,0.7,0.166667,0.6,0.166667,0.5,0.166667,0.4,0.166667,0.3,0.166667,0.2,0.166667,0.1,0.166667,0,0.25,0.9,0.25,1,0.25,0.8,0.25,0.7,0.25,0.6,0.25,0.5,0.25,0.4,0.25,0.3,0.25,0.2,0.25,0.1,0.25,0,0.333333,0.9,0.333333,1,0.333333,0.8,0.333333,0.7,0.333333,0.6,0.333333,0.5,0.333333,0.4,0.333333,0.3,0.333333,0.2,0.333333,0.1,0.333333,0,0.416667,0.9,0.416667,1,0.416667,0.8,0.416667,0.7,0.416667,0.6,0.416667,0.5,0.416667,0.4,0.416667,0.3,0.416667,0.2,0.416667,0.1,0.416667,0,0.5,0.9,0.5,1,0.5,0.8,0.5,0.7,0.5,0.6,0.5,0.5,0.5,0.4,0.5,0.3,0.5,0.2,0.5,0.1,0.5,0,0.583333,0.9,0.583333,1,0.583333,0.8,0.583333,0.7,0.583333,0.6,0.583333,0.5,0.583333,0.4,0.583333,0.3,0.583333,0.2,0.583333,0.1,0.583333,0,0.666667,0.9,0.666667,1,0.666667,0.8,0.666667,0.7,0.666667,0.6,0.666667,0.5,0.666667,0.4,0.666667,0.3,0.666667,0.2,0.666667,0.1,0.666667,0,0.75,0.9,0.75,1,0.75,0.8,0.75,0.7,0.75,0.6,0.75,0.5,0.75,0.4,0.75,0.3,0.75,0.2,0.75,0.1,0.75,0,0.833333,0.9,0.833333,1,0.833333,0.8,0.833333,0.7,0.833333,0.6,0.833333,0.5,0.833333,0.4,0.833333,0.3,0.833333,0.2,0.833333,0.1,0.833333,0,0.916667,0.9,0.916667,1,0.916667,0.8,0.916667,0.7,0.916667,0.6,0.916667,0.5,0.916667,0.4,0.916667,0.3,0.916667,0.2,0.916667,0.1,0.916667,0,1,0.9,1,1,1,0.8,1,0.7,1,0.6,1,0.5,1,0.4,1,0.3,1,0.2,1,0.1,1,0]],
"name": "Capsule2Geometry",
"influencesPerVertex": 2,
"faces": [43,0,12,13,1,0,0,1,2,3,0,1,2,3,43,12,24,25,13,0,1,4,5,2,1,1,2,2,43,24,36,37,25,0,4,6,7,5,1,1,2,2,43,36,48,49,37,0,6,8,9,7,1,1,2,2,43,48,60,61,49,0,8,10,11,9,1,1,2,2,43,60,72,73,61,0,10,12,13,11,1,1,2,2,43,72,84,85,73,0,12,14,15,13,1,1,2,2,43,84,96,97,85,0,14,16,17,15,1,1,2,2,43,96,108,109,97,0,16,18,19,17,1,1,2,2,43,108,120,121,109,0,18,20,21,19,1,4,5,2,43,1,13,14,2,0,3,2,22,23,3,2,6,7,43,13,25,26,14,0,2,5,24,22,2,2,6,6,43,25,37,38,26,0,5,7,25,24,2,2,6,6,43,37,49,50,38,0,7,9,26,25,2,2,6,6,43,49,61,62,50,0,9,11,27,26,2,2,6,6,43,61,73,74,62,0,11,13,28,27,2,2,6,6,43,73,85,86,74,0,13,15,29,28,2,2,6,6,43,85,97,98,86,0,15,17,30,29,2,2,6,6,43,97,109,110,98,0,17,19,31,30,2,2,6,6,43,109,121,122,110,0,19,21,32,31,2,5,8,6,43,2,14,15,3,0,23,22,33,34,7,6,9,9,43,14,26,27,15,0,22,24,35,33,6,6,9,9,43,26,38,39,27,0,24,25,36,35,6,6,9,9,43,38,50,51,39,0,25,26,37,36,6,6,9,9,43,50,62,63,51,0,26,27,38,37,6,6,9,9,43,62,74,75,63,0,27,28,39,38,6,6,9,9,43,74,86,87,75,0,28,29,40,39,6,6,9,9,43,86,98,99,87,0,29,30,41,40,6,6,9,9,43,98,110,111,99,0,30,31,42,41,6,6,9,9,43,110,122,123,111,0,31,32,43,42,6,8,9,9,43,3,15,16,4,0,34,33,44,45,9,9,10,11,43,15,27,28,16,0,33,35,46,44,9,9,10,10,43,27,39,40,28,0,35,36,47,46,9,9,10,10,43,39,51,52,40,0,36,37,48,47,9,9,10,10,43,51,63,64,52,0,37,38,49,48,9,9,10,10,43,63,75,76,64,0,38,39,50,49,9,9,10,10,43,75,87,88,76,0,39,40,51,50,9,9,10,10,43,87,99,100,88,0,40,41,52,51,9,9,10,10,43,99,111,112,100,0,41,42,53,52,9,9,10,10,43,111,123,124,112,0,42,43,54,53,9,9,12,10,43,4,16,17,5,0,45,44,55,56,11,10,13,14,43,16,28,29,17,0,44,46,57,55,10,10,13,13,43,28,40,41,29,0,46,47,58,57,10,10,13,13,43,40,52,53,41,0,47,48,59,58,10,10,13,13,43,52,64,65,53,0,48,49,60,59,10,10,13,13,43,64,76,77,65,0,49,50,61,60,10,10,13,13,43,76,88,89,77,0,50,51,62,61,10,10,13,13,43,88,100,101,89,0,51,52,63,62,10,10,13,13,43,100,112,113,101,0,52,53,64,63,10,10,13,13,43,112,124,125,113,0,53,54,65,64,10,12,15,13,43,5,17,18,6,0,56,55,66,67,14,13,16,16,43,17,29,30,18,0,55,57,68,66,13,13,16,16,43,29,41,42,30,0,57,58,69,68,13,13,16,16,43,41,53,54,42,0,58,59,70,69,13,13,16,16,43,53,65,66,54,0,59,60,71,70,13,13,16,16,43,65,77,78,66,0,60,61,72,71,13,13,16,16,43,77,89,90,78,0,61,62,73,72,13,13,16,16,43,89,101,102,90,0,62,63,74,73,13,13,16,16,43,101,113,114,102,0,63,64,75,74,13,13,16,16,43,113,125,126,114,0,64,65,76,75,13,15,16,16,43,6,18,19,7,0,67,66,77,78,16,16,17,18,43,18,30,31,19,0,66,68,79,77,16,16,17,17,43,30,42,43,31,0,68,69,80,79,16,16,17,17,43,42,54,55,43,0,69,70,81,80,16,16,17,17,43,54,66,67,55,0,70,71,82,81,16,16,17,17,43,66,78,79,67,0,71,72,83,82,16,16,17,17,43,78,90,91,79,0,72,73,84,83,16,16,17,17,43,90,102,103,91,0,73,74,85,84,16,16,17,17,43,102,114,115,103,0,74,75,86,85,16,16,17,17,43,114,126,127,115,0,75,76,87,86,16,16,19,17,43,7,19,20,8,0,78,77,88,89,18,17,20,21,43,19,31,32,20,0,77,79,90,88,17,17,20,20,43,31,43,44,32,0,79,80,91,90,17,17,20,20,43,43,55,56,44,0,80,81,92,91,17,17,20,20,43,55,67,68,56,0,81,82,93,92,17,17,20,20,43,67,79,80,68,0,82,83,94,93,17,17,20,20,43,79,91,92,80,0,83,84,95,94,17,17,20,20,43,91,103,104,92,0,84,85,96,95,17,17,20,20,43,103,115,116,104,0,85,86,97,96,17,17,20,20,43,115,127,128,116,0,86,87,98,97,17,19,22,20,43,8,20,21,9,0,89,88,99,100,21,20,23,24,43,20,32,33,21,0,88,90,101,99,20,20,23,23,43,32,44,45,33,0,90,91,102,101,20,20,23,23,43,44,56,57,45,0,91,92,103,102,20,20,23,23,43,56,68,69,57,0,92,93,104,103,20,20,23,23,43,68,80,81,69,0,93,94,105,104,20,20,23,23,43,80,92,93,81,0,94,95,106,105,20,20,23,23,43,92,104,105,93,0,95,96,107,106,20,20,23,23,43,104,116,117,105,0,96,97,108,107,20,20,23,23,43,116,128,129,117,0,97,98,109,108,20,22,25,23,43,9,21,22,10,0,100,99,110,111,24,23,26,27,43,21,33,34,22,0,99,101,112,110,23,23,26,26,43,33,45,46,34,0,101,102,113,112,23,23,26,26,43,45,57,58,46,0,102,103,114,113,23,23,26,26,43,57,69,70,58,0,103,104,115,114,23,23,26,26,43,69,81,82,70,0,104,105,116,115,23,23,26,26,43,81,93,94,82,0,105,106,117,116,23,23,26,26,43,93,105,106,94,0,106,107,118,117,23,23,26,26,43,105,117,118,106,0,107,108,119,118,23,23,26,26,43,117,129,130,118,0,108,109,120,119,23,25,28,26,43,10,22,23,11,0,111,110,121,122,27,26,29,30,43,22,34,35,23,0,110,112,123,121,26,26,29,29,43,34,46,47,35,0,112,113,124,123,26,26,29,29,43,46,58,59,47,0,113,114,125,124,26,26,29,29,43,58,70,71,59,0,114,115,126,125,26,26,29,29,43,70,82,83,71,0,115,116,127,126,26,26,29,29,43,82,94,95,83,0,116,117,128,127,26,26,29,29,43,94,106,107,95,0,117,118,129,128,26,26,29,29,43,106,118,119,107,0,118,119,130,129,26,26,29,29,43,118,130,131,119,0,119,120,131,130,26,28,31,29,43,12,0,11,23,0,132,133,122,121,1,0,30,29,43,23,35,24,12,0,121,123,134,132,29,29,1,1,43,35,47,36,24,0,123,124,135,134,29,29,1,1,43,47,59,48,36,0,124,125,136,135,29,29,1,1,43,59,71,60,48,0,125,126,137,136,29,29,1,1,43,71,83,72,60,0,126,127,138,137,29,29,1,1,43,83,95,84,72,0,127,128,139,138,29,29,1,1,43,95,107,96,84,0,128,129,140,139,29,29,1,1,43,107,119,108,96,0,129,130,141,140,29,29,1,1,43,119,131,120,108,0,130,131,142,141,29,31,4,1,42,132,142,133,0,20,19,18,32,33,34,43,133,142,143,134,0,18,19,17,16,34,33,35,36,43,134,143,144,135,0,16,17,15,14,36,35,37,38,43,135,144,145,136,0,14,15,13,12,38,37,39,40,43,136,145,146,137,0,12,13,11,10,40,39,41,42,43,137,146,147,138,0,10,11,9,8,42,41,43,44,43,138,147,148,139,0,8,9,7,6,44,43,45,46,43,139,148,149,140,0,6,7,5,4,46,45,47,48,43,140,149,150,141,0,4,5,2,1,48,47,49,50,43,11,0,141,150,0,3,0,1,2,30,0,50,49,42,132,151,142,0,21,31,19,32,51,33,43,142,151,152,143,0,19,31,30,17,33,51,52,35,43,143,152,153,144,0,17,30,29,15,35,52,53,37,43,144,153,154,145,0,15,29,28,13,37,53,54,39,43,145,154,155,146,0,13,28,27,11,39,54,55,41,43,146,155,156,147,0,11,27,26,9,41,55,56,43,43,147,156,157,148,0,9,26,25,7,43,56,57,45,43,148,157,158,149,0,7,25,24,5,45,57,58,47,43,149,158,159,150,0,5,24,22,2,47,58,59,49,43,150,159,10,11,0,2,22,23,3,49,59,27,30,42,132,160,151,0,32,42,31,32,60,51,43,151,160,161,152,0,31,42,41,30,51,60,61,52,43,152,161,162,153,0,30,41,40,29,52,61,62,53,43,153,162,163,154,0,29,40,39,28,53,62,63,54,43,154,163,164,155,0,28,39,38,27,54,63,64,55,43,155,164,165,156,0,27,38,37,26,55,64,65,56,43,156,165,166,157,0,26,37,36,25,56,65,66,57,43,157,166,167,158,0,25,36,35,24,57,66,67,58,43,158,167,168,159,0,24,35,33,22,58,67,68,59,43,159,168,9,10,0,22,33,34,23,59,68,24,27,42,132,169,160,0,43,53,42,32,69,60,43,160,169,170,161,0,42,53,52,41,60,69,70,61,43,161,170,171,162,0,41,52,51,40,61,70,71,62,43,162,171,172,163,0,40,51,50,39,62,71,72,63,43,163,172,173,164,0,39,50,49,38,63,72,73,64,43,164,173,174,165,0,38,49,48,37,64,73,74,65,43,165,174,175,166,0,37,48,47,36,65,74,75,66,43,166,175,176,167,0,36,47,46,35,66,75,76,67,43,167,176,177,168,0,35,46,44,33,67,76,77,68,43,168,177,8,9,0,33,44,45,34,68,77,21,24,42,132,178,169,0,54,64,53,32,78,69,43,169,178,179,170,0,53,64,63,52,69,78,79,70,43,170,179,180,171,0,52,63,62,51,70,79,80,71,43,171,180,181,172,0,51,62,61,50,71,80,81,72,43,172,181,182,173,0,50,61,60,49,72,81,82,73,43,173,182,183,174,0,49,60,59,48,73,82,83,74,43,174,183,184,175,0,48,59,58,47,74,83,84,75,43,175,184,185,176,0,47,58,57,46,75,84,85,76,43,176,185,186,177,0,46,57,55,44,76,85,86,77,43,177,186,7,8,0,44,55,56,45,77,86,18,21,42,132,187,178,0,65,75,64,32,87,78,43,178,187,188,179,0,64,75,74,63,78,87,88,79,43,179,188,189,180,0,63,74,73,62,79,88,89,80,43,180,189,190,181,0,62,73,72,61,80,89,90,81,43,181,190,191,182,0,61,72,71,60,81,90,91,82,43,182,191,192,183,0,60,71,70,59,82,91,92,83,43,183,192,193,184,0,59,70,69,58,83,92,93,84,43,184,193,194,185,0,58,69,68,57,84,93,94,85,43,185,194,195,186,0,57,68,66,55,85,94,95,86,43,186,195,196,7,0,55,66,67,56,86,95,96,18,42,132,197,187,0,76,86,75,32,97,87,43,187,197,198,188,0,75,86,85,74,87,97,98,88,43,188,198,199,189,0,74,85,84,73,88,98,99,89,43,189,199,200,190,0,73,84,83,72,89,99,100,90,43,190,200,201,191,0,72,83,82,71,90,100,101,91,43,191,201,202,192,0,71,82,81,70,91,101,102,92,43,192,202,203,193,0,70,81,80,69,92,102,103,93,43,193,203,204,194,0,69,80,79,68,93,103,104,94,43,194,204,205,195,0,68,79,77,66,94,104,105,95,43,195,205,5,196,0,66,77,78,67,95,105,14,96,42,132,206,197,0,87,97,86,32,106,97,43,197,206,207,198,0,86,97,96,85,97,106,107,98,43,198,207,208,199,0,85,96,95,84,98,107,108,99,43,199,208,209,200,0,84,95,94,83,99,108,109,100,43,200,209,210,201,0,83,94,93,82,100,109,110,101,43,201,210,211,202,0,82,93,92,81,101,110,111,102,43,202,211,212,203,0,81,92,91,80,102,111,112,103,43,203,212,213,204,0,80,91,90,79,103,112,113,104,43,204,213,214,205,0,79,90,88,77,104,113,114,105,43,205,214,4,5,0,77,88,89,78,105,114,11,14,42,132,215,206,0,98,108,97,32,115,106,43,206,215,216,207,0,97,108,107,96,106,115,116,107,43,207,216,217,208,0,96,107,106,95,107,116,117,108,43,208,217,218,209,0,95,106,105,94,108,117,118,109,43,209,218,219,210,0,94,105,104,93,109,118,119,110,43,210,219,220,211,0,93,104,103,92,110,119,120,111,43,211,220,221,212,0,92,103,102,91,111,120,121,112,43,212,221,222,213,0,91,102,101,90,112,121,122,113,43,213,222,223,214,0,90,101,99,88,113,122,123,114,43,214,223,224,4,0,88,99,100,89,114,123,124,11,42,132,225,215,0,109,119,108,32,125,115,43,215,225,226,216,0,108,119,118,107,115,125,126,116,43,216,226,227,217,0,107,118,117,106,116,126,127,117,43,217,227,228,218,0,106,117,116,105,117,127,128,118,43,218,228,229,219,0,105,116,115,104,118,128,129,119,43,219,229,230,220,0,104,115,114,103,119,129,130,120,43,220,230,231,221,0,103,114,113,102,120,130,131,121,43,221,231,232,222,0,102,113,112,101,121,131,132,122,43,222,232,233,223,0,101,112,110,99,122,132,133,123,43,223,233,2,224,0,99,110,111,100,123,133,7,124,42,132,234,225,0,120,130,119,32,134,125,43,225,234,235,226,0,119,130,129,118,125,134,135,126,43,226,235,236,227,0,118,129,128,117,126,135,136,127,43,227,236,237,228,0,117,128,127,116,127,136,137,128,43,228,237,238,229,0,116,127,126,115,128,137,138,129,43,229,238,239,230,0,115,126,125,114,129,138,139,130,43,230,239,240,231,0,114,125,124,113,130,139,140,131,43,231,240,241,232,0,113,124,123,112,131,140,141,132,43,232,241,242,233,0,112,123,121,110,132,141,142,133,43,233,242,1,2,0,110,121,122,111,133,142,3,7,42,132,133,234,0,131,141,130,32,34,134,43,234,133,134,235,0,130,141,140,129,134,34,36,135,43,235,134,135,236,0,129,140,139,128,135,36,38,136,43,236,135,136,237,0,128,139,138,127,136,38,40,137,43,237,136,137,238,0,127,138,137,126,137,40,42,138,43,238,137,138,239,0,126,137,136,125,138,42,44,139,43,239,138,139,240,0,125,136,135,124,139,44,46,140,43,240,139,140,241,0,124,135,134,123,140,46,48,141,43,241,140,141,242,0,123,134,132,121,141,48,50,142,43,0,1,242,141,0,133,122,121,132,0,3,142,50,43,120,131,253,243,0,20,21,19,18,4,31,143,144,43,243,253,254,244,0,18,19,17,16,144,143,145,146,43,244,254,255,245,0,16,17,15,14,146,145,147,148,43,245,255,256,246,0,14,15,13,12,148,147,149,150,43,246,256,257,247,0,12,13,11,10,150,149,151,152,43,247,257,258,248,0,10,11,9,8,152,151,153,154,43,248,258,259,249,0,8,9,7,6,154,153,155,156,43,249,259,260,250,0,6,7,5,4,156,155,157,158,43,250,260,261,251,0,4,5,2,1,158,157,159,160,42,251,261,252,0,1,2,3,160,159,161,43,131,130,262,253,0,21,32,31,19,31,28,162,143,43,253,262,263,254,0,19,31,30,17,143,162,163,145,43,254,263,264,255,0,17,30,29,15,145,163,164,147,43,255,264,265,256,0,15,29,28,13,147,164,165,149,43,256,265,266,257,0,13,28,27,11,149,165,166,151,43,257,266,267,258,0,11,27,26,9,151,166,167,153,43,258,267,268,259,0,9,26,25,7,153,167,168,155,43,259,268,269,260,0,7,25,24,5,155,168,169,157,43,260,269,270,261,0,5,24,22,2,157,169,170,159,42,261,270,252,0,2,22,23,159,170,161,43,130,129,271,262,0,32,43,42,31,28,25,171,162,43,262,271,272,263,0,31,42,41,30,162,171,172,163,43,263,272,273,264,0,30,41,40,29,163,172,173,164,43,264,273,274,265,0,29,40,39,28,164,173,174,165,43,265,274,275,266,0,28,39,38,27,165,174,175,166,43,266,275,276,267,0,27,38,37,26,166,175,176,167,43,267,276,277,268,0,26,37,36,25,167,176,177,168,43,268,277,278,269,0,25,36,35,24,168,177,178,169,43,269,278,279,270,0,24,35,33,22,169,178,179,170,42,270,279,252,0,22,33,34,170,179,161,43,129,128,280,271,0,43,54,53,42,25,22,180,171,43,271,280,281,272,0,42,53,52,41,171,180,181,172,43,272,281,282,273,0,41,52,51,40,172,181,182,173,43,273,282,283,274,0,40,51,50,39,173,182,183,174,43,274,283,284,275,0,39,50,49,38,174,183,184,175,43,275,284,285,276,0,38,49,48,37,175,184,185,176,43,276,285,286,277,0,37,48,47,36,176,185,186,177,43,277,286,287,278,0,36,47,46,35,177,186,187,178,43,278,287,288,279,0,35,46,44,33,178,187,188,179,42,279,288,252,0,33,44,45,179,188,161,43,128,127,289,280,0,54,65,64,53,22,19,189,180,43,280,289,290,281,0,53,64,63,52,180,189,190,181,43,281,290,291,282,0,52,63,62,51,181,190,191,182,43,282,291,292,283,0,51,62,61,50,182,191,192,183,43,283,292,293,284,0,50,61,60,49,183,192,193,184,43,284,293,294,285,0,49,60,59,48,184,193,194,185,43,285,294,295,286,0,48,59,58,47,185,194,195,186,43,286,295,296,287,0,47,58,57,46,186,195,196,187,43,287,296,297,288,0,46,57,55,44,187,196,197,188,42,288,297,252,0,44,55,56,188,197,161,43,127,298,299,289,0,65,76,75,64,19,198,199,189,43,289,299,300,290,0,64,75,74,63,189,199,200,190,43,290,300,301,291,0,63,74,73,62,190,200,201,191,43,291,301,302,292,0,62,73,72,61,191,201,202,192,43,292,302,303,293,0,61,72,71,60,192,202,203,193,43,293,303,304,294,0,60,71,70,59,193,203,204,194,43,294,304,305,295,0,59,70,69,58,194,204,205,195,43,295,305,306,296,0,58,69,68,57,195,205,206,196,43,296,306,307,297,0,57,68,66,55,196,206,207,197,42,297,307,252,0,55,66,67,197,207,161,43,298,125,308,299,0,76,87,86,75,198,15,208,199,43,299,308,309,300,0,75,86,85,74,199,208,209,200,43,300,309,310,301,0,74,85,84,73,200,209,210,201,43,301,310,311,302,0,73,84,83,72,201,210,211,202,43,302,311,312,303,0,72,83,82,71,202,211,212,203,43,303,312,313,304,0,71,82,81,70,203,212,213,204,43,304,313,314,305,0,70,81,80,69,204,213,214,205,43,305,314,315,306,0,69,80,79,68,205,214,215,206,43,306,315,316,307,0,68,79,77,66,206,215,216,207,42,307,316,252,0,66,77,78,207,216,161,43,125,124,317,308,0,87,98,97,86,15,12,217,208,43,308,317,318,309,0,86,97,96,85,208,217,218,209,43,309,318,319,310,0,85,96,95,84,209,218,219,210,43,310,319,320,311,0,84,95,94,83,210,219,220,211,43,311,320,321,312,0,83,94,93,82,211,220,221,212,43,312,321,322,313,0,82,93,92,81,212,221,222,213,43,313,322,323,314,0,81,92,91,80,213,222,223,214,43,314,323,324,315,0,80,91,90,79,214,223,224,215,43,315,324,325,316,0,79,90,88,77,215,224,225,216,42,316,325,252,0,77,88,89,216,225,161,43,124,326,327,317,0,98,109,108,97,12,226,227,217,43,317,327,328,318,0,97,108,107,96,217,227,228,218,43,318,328,329,319,0,96,107,106,95,218,228,229,219,43,319,329,330,320,0,95,106,105,94,219,229,230,220,43,320,330,331,321,0,94,105,104,93,220,230,231,221,43,321,331,332,322,0,93,104,103,92,221,231,232,222,43,322,332,333,323,0,92,103,102,91,222,232,233,223,43,323,333,334,324,0,91,102,101,90,223,233,234,224,43,324,334,335,325,0,90,101,99,88,224,234,235,225,42,325,335,252,0,88,99,100,225,235,161,43,326,122,336,327,0,109,120,119,108,226,8,236,227,43,327,336,337,328,0,108,119,118,107,227,236,237,228,43,328,337,338,329,0,107,118,117,106,228,237,238,229,43,329,338,339,330,0,106,117,116,105,229,238,239,230,43,330,339,340,331,0,105,116,115,104,230,239,240,231,43,331,340,341,332,0,104,115,114,103,231,240,241,232,43,332,341,342,333,0,103,114,113,102,232,241,242,233,43,333,342,343,334,0,102,113,112,101,233,242,243,234,43,334,343,344,335,0,101,112,110,99,234,243,244,235,42,335,344,252,0,99,110,111,235,244,161,43,122,121,345,336,0,120,131,130,119,8,5,245,236,43,336,345,346,337,0,119,130,129,118,236,245,246,237,43,337,346,347,338,0,118,129,128,117,237,246,247,238,43,338,347,348,339,0,117,128,127,116,238,247,248,239,43,339,348,349,340,0,116,127,126,115,239,248,249,240,43,340,349,350,341,0,115,126,125,114,240,249,250,241,43,341,350,351,342,0,114,125,124,113,241,250,251,242,43,342,351,352,343,0,113,124,123,112,242,251,252,243,43,343,352,353,344,0,112,123,121,110,243,252,253,244,42,344,353,252,0,110,121,122,244,253,161,43,121,120,243,345,0,131,142,141,130,5,4,144,245,43,345,243,244,346,0,130,141,140,129,245,144,146,246,43,346,244,245,347,0,129,140,139,128,246,146,148,247,43,347,245,246,348,0,128,139,138,127,247,148,150,248,43,348,246,247,349,0,127,138,137,126,248,150,152,249,43,349,247,248,350,0,126,137,136,125,249,152,154,250,43,350,248,249,351,0,125,136,135,124,250,154,156,251,43,351,249,250,352,0,124,135,134,123,251,156,158,252,43,352,250,251,353,0,123,134,132,121,252,158,160,253,42,353,251,252,0,121,132,133,253,160,161],
"normals": [0,-0.999207,0.039064,0,-1,0,0.500015,-0.865993,0,0.499619,-0.865322,0.039003,0,-0.999207,-0.039064,0.499619,-0.865322,-0.039003,0.865993,-0.500015,0,0.865322,-0.499619,0.039003,0.865322,-0.499619,-0.039003,1,0,0,0.865993,0.500015,0,0.865322,0.499619,0.039003,0.865322,0.499619,-0.039003,0.500015,0.865993,0,0.499619,0.865322,0.039003,0.499619,0.865322,-0.039003,0,1,0,-0.500015,0.865993,0,-0.499619,0.865322,0.039003,-0.499619,0.865322,-0.039003,-0.865993,0.500015,0,-0.865322,0.499619,0.039003,-0.865322,0.499619,-0.039003,-1,0,0,-0.999207,0,0.039064,-0.999207,0,-0.039064,-0.865993,-0.500015,0,-0.865322,-0.499619,0.039003,-0.865322,-0.499619,-0.039003,-0.500015,-0.865993,0,-0.499619,-0.865322,0.039003,-0.499619,-0.865322,-0.039003,0,0,1,-0.084567,-0.146489,0.985565,0,-0.169225,0.985565,-0.160222,-0.277474,0.947264,0,-0.320414,0.947264,-0.232154,-0.402051,0.885678,0,-0.464187,0.885708,-0.297891,-0.516007,0.803095,0,-0.595813,0.803095,-0.3567,-0.617786,0.700766,0,-0.713462,0.700674,-0.406781,-0.70452,0.581469,0,-0.813562,0.581439,-0.446822,-0.773919,0.448714,0,-0.893674,0.448683,-0.47615,-0.824702,0.305124,0,-0.952269,0.305155,-0.493851,-0.855708,0.154424,0,-0.987976,0.154515,-0.146489,-0.084567,0.985565,-0.277474,-0.160222,0.947264,-0.402051,-0.232154,0.885678,-0.516007,-0.297891,0.803095,-0.617786,-0.3567,0.700766,-0.70452,-0.406781,0.581469,-0.773919,-0.446822,0.448714,-0.824702,-0.47615,0.305124,-0.855708,-0.493851,0.154424,-0.169225,0,0.985565,-0.320414,0,0.947264,-0.464187,0,0.885708,-0.595813,0,0.803095,-0.713462,0,0.700674,-0.813562,0,0.581439,-0.893674,0,0.448683,-0.952269,0,0.305155,-0.987976,0,0.154515,-0.146489,0.084567,0.985565,-0.277474,0.160222,0.947264,-0.402051,0.232154,0.885678,-0.516007,0.297891,0.803095,-0.617786,0.3567,0.700766,-0.70452,0.406781,0.581469,-0.773919,0.446822,0.448714,-0.824702,0.47615,0.305124,-0.855708,0.493851,0.154424,-0.084567,0.146489,0.985565,-0.160222,0.277474,0.947264,-0.232154,0.402051,0.885678,-0.297891,0.516007,0.803095,-0.3567,0.617786,0.700766,-0.406781,0.70452,0.581469,-0.446822,0.773919,0.448714,-0.47615,0.824702,0.305124,-0.493851,0.855708,0.154424,0,0.169225,0.985565,0,0.320414,0.947264,0,0.464187,0.885708,0,0.595813,0.803095,0,0.713462,0.700674,0,0.813562,0.581439,0,0.893674,0.448683,0,0.952269,0.305155,0,0.987976,0.154515,0,0.996887,0.078585,0.084567,0.146489,0.985565,0.160222,0.277474,0.947264,0.232154,0.402051,0.885678,0.297891,0.516007,0.803095,0.3567,0.617786,0.700766,0.406781,0.70452,0.581469,0.446822,0.773919,0.448714,0.47615,0.824702,0.305124,0.493851,0.855708,0.154424,0.146489,0.084567,0.985565,0.277474,0.160222,0.947264,0.402051,0.232154,0.885678,0.516007,0.297891,0.803095,0.617786,0.3567,0.700766,0.70452,0.406781,0.581469,0.773919,0.446822,0.448714,0.824702,0.47615,0.305124,0.855708,0.493851,0.154424,0.169225,0,0.985565,0.320414,0,0.947264,0.464187,0,0.885708,0.595813,0,0.803095,0.713462,0,0.700674,0.813562,0,0.581439,0.893674,0,0.448683,0.952269,0,0.305155,0.987976,0,0.154515,0.996887,0,0.078585,0.146489,-0.084567,0.985565,0.277474,-0.160222,0.947264,0.402051,-0.232154,0.885678,0.516007,-0.297891,0.803095,0.617786,-0.3567,0.700766,0.70452,-0.406781,0.581469,0.773919,-0.446822,0.448714,0.824702,-0.47615,0.305124,0.855708,-0.493851,0.154424,0.084567,-0.146489,0.985565,0.160222,-0.277474,0.947264,0.232154,-0.402051,0.885678,0.297891,-0.516007,0.803095,0.3567,-0.617786,0.700766,0.406781,-0.70452,0.581469,0.446822,-0.773919,0.448714,0.47615,-0.824702,0.305124,0.493851,-0.855708,0.154424,-0.493851,-0.855708,-0.154424,0,-0.987976,-0.154515,-0.47615,-0.824702,-0.305124,0,-0.952269,-0.305155,-0.446822,-0.773919,-0.448714,0,-0.893674,-0.448683,-0.406781,-0.70452,-0.581469,0,-0.813562,-0.581439,-0.3567,-0.617786,-0.700766,0,-0.713462,-0.700674,-0.297891,-0.516007,-0.803095,0,-0.595813,-0.803095,-0.232154,-0.402051,-0.885678,0,-0.464187,-0.885708,-0.160222,-0.277474,-0.947264,0,-0.320414,-0.947264,-0.084567,-0.146489,-0.985565,0,-0.169225,-0.985565,0,0,-1,-0.855708,-0.493851,-0.154424,-0.824702,-0.47615,-0.305124,-0.773919,-0.446822,-0.448714,-0.70452,-0.406781,-0.581469,-0.617786,-0.3567,-0.700766,-0.516007,-0.297891,-0.803095,-0.402051,-0.232154,-0.885678,-0.277474,-0.160222,-0.947264,-0.146489,-0.084567,-0.985565,-0.987976,0,-0.154515,-0.952269,0,-0.305155,-0.893674,0,-0.448683,-0.813562,0,-0.581439,-0.713462,0,-0.700674,-0.595813,0,-0.803095,-0.464187,0,-0.885708,-0.320414,0,-0.947264,-0.169225,0,-0.985565,-0.855708,0.493851,-0.154424,-0.824702,0.47615,-0.305124,-0.773919,0.446822,-0.448714,-0.70452,0.406781,-0.581469,-0.617786,0.3567,-0.700766,-0.516007,0.297891,-0.803095,-0.402051,0.232154,-0.885678,-0.277474,0.160222,-0.947264,-0.146489,0.084567,-0.985565,-0.493851,0.855708,-0.154424,-0.47615,0.824702,-0.305124,-0.446822,0.773919,-0.448714,-0.406781,0.70452,-0.581469,-0.3567,0.617786,-0.700766,-0.297891,0.516007,-0.803095,-0.232154,0.402051,-0.885678,-0.160222,0.277474,-0.947264,-0.084567,0.146489,-0.985565,0,0.996887,-0.078585,0,0.987976,-0.154515,0,0.952269,-0.305155,0,0.893674,-0.448683,0,0.813562,-0.581439,0,0.713462,-0.700674,0,0.595813,-0.803095,0,0.464187,-0.885708,0,0.320414,-0.947264,0,0.169225,-0.985565,0.493851,0.855708,-0.154424,0.47615,0.824702,-0.305124,0.446822,0.773919,-0.448714,0.406781,0.70452,-0.581469,0.3567,0.617786,-0.700766,0.297891,0.516007,-0.803095,0.232154,0.402051,-0.885678,0.160222,0.277474,-0.947264,0.084567,0.146489,-0.985565,0.855708,0.493851,-0.154424,0.824702,0.47615,-0.305124,0.773919,0.446822,-0.448714,0.70452,0.406781,-0.581469,0.617786,0.3567,-0.700766,0.516007,0.297891,-0.803095,0.402051,0.232154,-0.885678,0.277474,0.160222,-0.947264,0.146489,0.084567,-0.985565,0.996887,0,-0.078585,0.987976,0,-0.154515,0.952269,0,-0.305155,0.893674,0,-0.448683,0.813562,0,-0.581439,0.713462,0,-0.700674,0.595813,0,-0.803095,0.464187,0,-0.885708,0.320414,0,-0.947264,0.169225,0,-0.985565,0.855708,-0.493851,-0.154424,0.824702,-0.47615,-0.305124,0.773919,-0.446822,-0.448714,0.70452,-0.406781,-0.581469,0.617786,-0.3567,-0.700766,0.516007,-0.297891,-0.803095,0.402051,-0.232154,-0.885678,0.277474,-0.160222,-0.947264,0.146489,-0.084567,-0.985565,0.493851,-0.855708,-0.154424,0.47615,-0.824702,-0.305124,0.446822,-0.773919,-0.448714,0.406781,-0.70452,-0.581469,0.3567,-0.617786,-0.700766,0.297891,-0.516007,-0.803095,0.232154,-0.402051,-0.885678,0.160222,-0.277474,-0.947264,0.084567,-0.146489,-0.985565],
"vertices": [0,-0.5,0.5,0.25,-0.433,0.5,0.433,-0.25,0.5,0.5,0,0.5,0.433,0.25,0.5,0.25,0.433,0.5,0,0.5,0.5,-0.25,0.433,0.5,-0.433,0.25,0.5,-0.5,0,0.5,-0.433,-0.25,0.5,-0.25,-0.433,0.5,0,-0.5,0.4,0.25,-0.433,0.4,0.433,-0.25,0.4,0.5,0,0.4,0.433,0.25,0.4,0.25,0.433,0.4,0,0.5,0.4,-0.25,0.433,0.4,-0.433,0.25,0.4,-0.5,0,0.4,-0.433,-0.25,0.4,-0.25,-0.433,0.4,0,-0.5,0.3,0.25,-0.433,0.3,0.433,-0.25,0.3,0.5,0,0.3,0.433,0.25,0.3,0.25,0.433,0.3,0,0.5,0.3,-0.25,0.433,0.3,-0.433,0.25,0.3,-0.5,0,0.3,-0.433,-0.25,0.3,-0.25,-0.433,0.3,0,-0.5,0.2,0.25,-0.433,0.2,0.433,-0.25,0.2,0.5,0,0.2,0.433,0.25,0.2,0.25,0.433,0.2,0,0.5,0.2,-0.25,0.433,0.2,-0.433,0.25,0.2,-0.5,0,0.2,-0.433,-0.25,0.2,-0.25,-0.433,0.2,0,-0.5,0.1,0.25,-0.433,0.1,0.433,-0.25,0.1,0.5,0,0.1,0.433,0.25,0.1,0.25,0.433,0.1,0,0.5,0.1,-0.25,0.433,0.1,-0.433,0.25,0.1,-0.5,0,0.1,-0.433,-0.25,0.1,-0.25,-0.433,0.1,0,-0.5,0,0.25,-0.433,0,0.433,-0.25,0,0.5,0,0,0.433,0.25,0,0.25,0.433,0,0,0.5,0,-0.25,0.433,0,-0.433,0.25,0,-0.5,0,0,-0.433,-0.25,0,-0.25,-0.433,0,0,-0.5,-0.1,0.25,-0.433,-0.1,0.433,-0.25,-0.1,0.5,0,-0.1,0.433,0.25,-0.1,0.25,0.433,-0.1,0,0.5,-0.1,-0.25,0.433,-0.1,-0.433,0.25,-0.1,-0.5,0,-0.1,-0.433,-0.25,-0.1,-0.25,-0.433,-0.1,0,-0.5,-0.2,0.25,-0.433,-0.2,0.433,-0.25,-0.2,0.5,0,-0.2,0.433,0.25,-0.2,0.25,0.433,-0.2,0,0.5,-0.2,-0.25,0.433,-0.2,-0.433,0.25,-0.2,-0.5,0,-0.2,-0.433,-0.25,-0.2,-0.25,-0.433,-0.2,0,-0.5,-0.3,0.25,-0.433,-0.3,0.433,-0.25,-0.3,0.5,0,-0.3,0.433,0.25,-0.3,0.25,0.433,-0.3,0,0.5,-0.3,-0.25,0.433,-0.3,-0.433,0.25,-0.3,-0.5,0,-0.3,-0.433,-0.25,-0.3,-0.25,-0.433,-0.3,0,-0.5,-0.4,0.25,-0.433,-0.4,0.433,-0.25,-0.4,0.5,0,-0.4,0.433,0.25,-0.4,0.25,0.433,-0.4,0,0.5,-0.4,-0.25,0.433,-0.4,-0.433,0.25,-0.4,-0.5,0,-0.4,-0.433,-0.25,-0.4,-0.25,-0.433,-0.4,0,-0.5,-0.5,0.25,-0.433,-0.5,0.433,-0.25,-0.5,0.5,0,-0.5,0.433,0.25,-0.5,0.25,0.433,-0.5,0,0.5,-0.5,-0.25,0.433,-0.5,-0.433,0.25,-0.5,-0.5,0,-0.5,-0.433,-0.25,-0.5,-0.25,-0.433,-0.5,0,0,1,0,-0.0782,0.9938,0,-0.1545,0.9755,0,-0.227,0.9455,0,-0.2939,0.9045,0,-0.3536,0.8536,0,-0.4045,0.7939,0,-0.4455,0.727,0,-0.4755,0.6545,0,-0.4938,0.5782,-0.0391,-0.0677,0.9938,-0.0773,-0.1338,0.9755,-0.1135,-0.1966,0.9455,-0.1469,-0.2545,0.9045,-0.1768,-0.3062,0.8536,-0.2023,-0.3503,0.7939,-0.2228,-0.3858,0.727,-0.2378,-0.4118,0.6545,-0.2469,-0.4277,0.5782,-0.0677,-0.0391,0.9938,-0.1338,-0.0773,0.9755,-0.1966,-0.1135,0.9455,-0.2545,-0.1469,0.9045,-0.3062,-0.1768,0.8536,-0.3503,-0.2023,0.7939,-0.3858,-0.2228,0.727,-0.4118,-0.2378,0.6545,-0.4277,-0.2469,0.5782,-0.0782,0,0.9938,-0.1545,0,0.9755,-0.227,0,0.9455,-0.2939,0,0.9045,-0.3536,0,0.8536,-0.4045,-0,0.7939,-0.4455,-0,0.727,-0.4755,-0,0.6545,-0.4938,-0,0.5782,-0.0677,0.0391,0.9938,-0.1338,0.0773,0.9755,-0.1966,0.1135,0.9455,-0.2545,0.1469,0.9045,-0.3062,0.1768,0.8536,-0.3503,0.2023,0.7939,-0.3858,0.2228,0.727,-0.4118,0.2378,0.6545,-0.4277,0.2469,0.5782,-0.0391,0.0677,0.9938,-0.0773,0.1338,0.9755,-0.1135,0.1966,0.9455,-0.1469,0.2545,0.9045,-0.1768,0.3062,0.8536,-0.2023,0.3503,0.7939,-0.2228,0.3858,0.727,-0.2378,0.4118,0.6545,-0.2469,0.4277,0.5782,-0,0.0782,0.9938,-0,0.1545,0.9755,-0,0.227,0.9455,-0,0.2939,0.9045,-0,0.3536,0.8536,-0,0.4045,0.7939,-0,0.4455,0.727,-0,0.4755,0.6545,-0,0.4938,0.5782,-0,0.5,0.5,0.0391,0.0677,0.9938,0.0773,0.1338,0.9755,0.1135,0.1966,0.9455,0.1469,0.2545,0.9045,0.1768,0.3062,0.8536,0.2023,0.3503,0.7939,0.2228,0.3858,0.727,0.2378,0.4118,0.6545,0.2469,0.4277,0.5782,0.0677,0.0391,0.9938,0.1338,0.0773,0.9755,0.1966,0.1135,0.9455,0.2545,0.1469,0.9045,0.3062,0.1768,0.8536,0.3503,0.2023,0.7939,0.3858,0.2228,0.727,0.4118,0.2378,0.6545,0.4277,0.2469,0.5782,0.0782,0,0.9938,0.1545,0,0.9755,0.227,0,0.9455,0.2939,0,0.9045,0.3536,0,0.8536,0.4045,0,0.7939,0.4455,0,0.727,0.4755,0,0.6545,0.4938,0,0.5782,0.5,0,0.5,0.0677,-0.0391,0.9938,0.1338,-0.0773,0.9755,0.1966,-0.1135,0.9455,0.2545,-0.1469,0.9045,0.3062,-0.1768,0.8536,0.3503,-0.2023,0.7939,0.3858,-0.2228,0.727,0.4118,-0.2378,0.6545,0.4277,-0.2469,0.5782,0.0391,-0.0677,0.9938,0.0773,-0.1338,0.9755,0.1135,-0.1966,0.9455,0.1469,-0.2545,0.9045,0.1768,-0.3062,0.8536,0.2023,-0.3503,0.7939,0.2228,-0.3858,0.727,0.2378,-0.4118,0.6545,0.2469,-0.4277,0.5782,0,-0.4938,-0.5782,0,-0.4755,-0.6545,0,-0.4455,-0.727,0,-0.4045,-0.7939,0,-0.3536,-0.8536,0,-0.2939,-0.9045,0,-0.227,-0.9455,0,-0.1545,-0.9755,0,-0.0782,-0.9938,0,-0,-1,-0.2469,-0.4277,-0.5782,-0.2378,-0.4118,-0.6545,-0.2228,-0.3858,-0.727,-0.2023,-0.3503,-0.7939,-0.1768,-0.3062,-0.8536,-0.1469,-0.2545,-0.9045,-0.1135,-0.1966,-0.9455,-0.0773,-0.1338,-0.9755,-0.0391,-0.0677,-0.9938,-0.4277,-0.2469,-0.5782,-0.4118,-0.2378,-0.6545,-0.3858,-0.2228,-0.727,-0.3503,-0.2023,-0.7939,-0.3062,-0.1768,-0.8536,-0.2545,-0.1469,-0.9045,-0.1966,-0.1135,-0.9455,-0.1338,-0.0773,-0.9755,-0.0677,-0.0391,-0.9938,-0.4938,-0,-0.5782,-0.4755,-0,-0.6545,-0.4455,-0,-0.727,-0.4045,-0,-0.7939,-0.3536,-0,-0.8536,-0.2939,-0,-0.9045,-0.227,-0,-0.9455,-0.1545,-0,-0.9755,-0.0782,-0,-0.9938,-0.4277,0.2469,-0.5782,-0.4118,0.2378,-0.6545,-0.3858,0.2228,-0.727,-0.3503,0.2023,-0.7939,-0.3062,0.1768,-0.8536,-0.2545,0.1469,-0.9045,-0.1966,0.1135,-0.9455,-0.1338,0.0773,-0.9755,-0.0677,0.0391,-0.9938,-0.2469,0.4277,-0.5782,-0.2378,0.4118,-0.6545,-0.2228,0.3858,-0.727,-0.2023,0.3503,-0.7939,-0.1768,0.3062,-0.8536,-0.1469,0.2545,-0.9045,-0.1135,0.1966,-0.9455,-0.0773,0.1338,-0.9755,-0.0391,0.0677,-0.9938,-0,0.5,-0.5,-0,0.4938,-0.5782,-0,0.4755,-0.6545,-0,0.4455,-0.727,-0,0.4045,-0.7939,-0,0.3536,-0.8536,-0,0.2939,-0.9045,-0,0.227,-0.9455,-0,0.1545,-0.9755,-0,0.0782,-0.9938,0.2469,0.4277,-0.5782,0.2378,0.4118,-0.6545,0.2228,0.3858,-0.727,0.2023,0.3503,-0.7939,0.1768,0.3062,-0.8536,0.1469,0.2545,-0.9045,0.1135,0.1966,-0.9455,0.0773,0.1338,-0.9755,0.0391,0.0677,-0.9938,0.4277,0.2469,-0.5782,0.4118,0.2378,-0.6545,0.3858,0.2228,-0.727,0.3503,0.2023,-0.7939,0.3062,0.1768,-0.8536,0.2545,0.1469,-0.9045,0.1966,0.1135,-0.9455,0.1338,0.0773,-0.9755,0.0677,0.0391,-0.9938,0.5,0,-0.5,0.4938,0,-0.5782,0.4755,0,-0.6545,0.4455,0,-0.727,0.4045,0,-0.7939,0.3536,0,-0.8536,0.2939,-0,-0.9045,0.227,-0,-0.9455,0.1545,-0,-0.9755,0.0782,-0,-0.9938,0.4277,-0.2469,-0.5782,0.4118,-0.2378,-0.6545,0.3858,-0.2228,-0.727,0.3503,-0.2023,-0.7939,0.3062,-0.1768,-0.8536,0.2545,-0.1469,-0.9045,0.1966,-0.1135,-0.9455,0.1338,-0.0773,-0.9755,0.0677,-0.0391,-0.9938,0.2469,-0.4277,-0.5782,0.2378,-0.4118,-0.6545,0.2228,-0.3858,-0.727,0.2023,-0.3503,-0.7939,0.1768,-0.3062,-0.8536,0.1469,-0.2545,-0.9045,0.1135,-0.1966,-0.9455,0.0773,-0.1338,-0.9755,0.0391,-0.0677,-0.9938],
"bones": [],
"skinIndices": [],
"animations": [],
"morphTargets": [],
"metadata": {
"normals": 254,
"generator": "io_three",
"uvs": 1,
"vertices": 354,
"bones": 0,
"faces": 360,
"version": 3,
"morphTargets": 0,
"materials": 1
}
},
"uuid": "7B49AA9D-A523-33A6-BC6F-701146974879",
"materials": [{
"blending": "NormalBlending",
"colorEmissive": [0,0,0],
"transparent": false,
"DbgIndex": 0,
"colorDiffuse": [0.239216,0.129412,0.129412],
"doubleSided": true,
"shading": "phong",
"depthWrite": true,
"specularCoef": 5,
"DbgColor": 15658734,
"wireframe": false,
"colorAmbient": [0.239216,0.129412,0.129412],
"opacity": 1,
"DbgName": "Capsule2Default",
"visible": true,
"depthTest": true,
"colorSpecular": [0.5,0.5,0.5]
}]
},{
"type": "Geometry",
"data": {
"skinWeights": [],
"uvs": [[0,1,0,0,1,0,1,1]],
"name": "Plane5Geometry",
"influencesPerVertex": 2,
"faces": [43,0,2,3,1,0,0,1,2,3,0,0,0,0],
"normals": [0,0,1],
"vertices": [-2,2,0,2,2,0,-2,-2,-0,2,-2,-0],
"bones": [],
"skinIndices": [],
"animations": [],
"morphTargets": [],
"metadata": {
"normals": 1,
"generator": "io_three",
"uvs": 1,
"vertices": 4,
"bones": 0,
"faces": 1,
"version": 3,
"morphTargets": 0,
"materials": 1
}
},
"uuid": "06FEF161-D94D-3DC5-86D1-45FDE58B8297",
"materials": [{
"blending": "NormalBlending",
"colorEmissive": [0,0,0],
"transparent": false,
"DbgIndex": 0,
"colorDiffuse": [0.929412,0.764706,0.188235],
"doubleSided": true,
"shading": "phong",
"depthWrite": true,
"specularCoef": 5,
"DbgColor": 15658734,
"wireframe": false,
"colorAmbient": [0.929412,0.764706,0.188235],
"opacity": 1,
"DbgName": "Plane5Default",
"visible": true,
"depthTest": true,
"colorSpecular": [0.5,0.5,0.5]
}]
},{
"type": "Geometry",
"data": {
"skinWeights": [],