-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathMainScene.tscn
3506 lines (2766 loc) · 244 KB
/
MainScene.tscn
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
[gd_scene load_steps=294 format=3 uid="uid://dcgtpj2gjbxgl"]
[ext_resource type="PackedScene" uid="uid://x65cq1udsqsf" path="res://Scenes/Section01/S1B1.tscn" id="1_17a2u"]
[ext_resource type="PackedScene" uid="uid://eo1atg6pdllw" path="res://Scenes/Section01/S1B2.tscn" id="2_8mtnr"]
[ext_resource type="Material" uid="uid://cbufshjju7lvd" path="res://Materials/Miscellaneous/Shopsign_Pharmacy_Emissive.tres" id="2_je3vt"]
[ext_resource type="Material" uid="uid://de2c14t65vd2i" path="res://Materials/Miscellaneous/Shopsign_Book_Store_Emissive.tres" id="3_414o6"]
[ext_resource type="PackedScene" uid="uid://bgt0h0f43llsf" path="res://Scenes/Section01/S1B3.tscn" id="3_bis43"]
[ext_resource type="PackedScene" uid="uid://bumtkl0ox2bxf" path="res://Scenes/Ground.tscn" id="3_e3k7r"]
[ext_resource type="PackedScene" uid="uid://du8nt2wqwtlkg" path="res://Scenes/Section01/S1B4.tscn" id="4_ll7ne"]
[ext_resource type="Material" uid="uid://t1kioepb34kc" path="res://Materials/Lights/StreetLight_Bulb.tres" id="4_m6wwl"]
[ext_resource type="PackedScene" uid="uid://1h46fckn3rr5" path="res://Scenes/Section01/S1Details.tscn" id="5_l1708"]
[ext_resource type="Material" uid="uid://blcwr4ltx5kto" path="res://Materials/Lights/Spotlight_Glass_Emissive.tres" id="5_piy6g"]
[ext_resource type="PackedScene" uid="uid://cbs4svf33bg3p" path="res://Scenes/Section01/S1Lamps.tscn" id="6_kx4kb"]
[ext_resource type="PackedScene" uid="uid://ccmnlkssgfvk7" path="res://Scenes/Section01/S1Walls.tscn" id="7_2kc2q"]
[ext_resource type="Material" uid="uid://b6dx1tpevicfc" path="res://Materials/Lights/StringLight_Blue.tres" id="7_8yd0a"]
[ext_resource type="PackedScene" uid="uid://dthil5porgf21" path="res://Scenes/Section02/S2B1.tscn" id="8_anouh"]
[ext_resource type="Material" uid="uid://pub4k2cqjy50" path="res://Materials/Lights/StringLight_Green.tres" id="8_vfdcb"]
[ext_resource type="Material" uid="uid://cnrxe37qqbo5e" path="res://Materials/Lights/StringLight_Orange.tres" id="9_ksbxv"]
[ext_resource type="PackedScene" uid="uid://cjnm1rusd0kcd" path="res://Scenes/Section02/S2B2.tscn" id="9_u4tpu"]
[ext_resource type="Material" uid="uid://bh3xso5831lxm" path="res://Materials/Lights/StringLight_Pink.tres" id="10_5yr8b"]
[ext_resource type="PackedScene" uid="uid://srx8s5o73xw0" path="res://Scenes/Section02/S2B3.tscn" id="10_ypp8l"]
[ext_resource type="Material" uid="uid://bi8tfpoad535y" path="res://Materials/Lights/StringLight_Red.tres" id="11_awwij"]
[ext_resource type="PackedScene" uid="uid://dpgfbsr7n2bm8" path="res://Scenes/Section02/BistroProps.tscn" id="11_e4jub"]
[ext_resource type="PackedScene" uid="uid://d4b75rgbhmhow" path="res://Scenes/Section02/S2Ivy.tscn" id="12_lc6cf"]
[ext_resource type="Script" path="res://Scripts/LightChangeUtil.gd" id="12_p7w1a"]
[ext_resource type="Material" uid="uid://uyoltu5ukmtw" path="res://Materials/Lights/HangingLight_Emissive.tres" id="12_qowfr"]
[ext_resource type="Material" uid="uid://ivcxxvgm585r" path="res://Materials/Lights/StringLight_White.tres" id="12_xvt36"]
[ext_resource type="Material" uid="uid://00b6xip7tpd8" path="res://Materials/Miscellaneous/Bistro_Sign_Letters.tres" id="13_blrrn"]
[ext_resource type="PackedScene" uid="uid://biak8e4cv0isu" path="res://Scenes/Section02/S2Lamps.tscn" id="13_v0ve4"]
[ext_resource type="PackedScene" uid="uid://u5uvyrtg8ns" path="res://Scenes/Section02/S2Walls.tscn" id="14_v6tgn"]
[ext_resource type="PackedScene" uid="uid://bij2ka0wuj53c" path="res://Scenes/Section02/S2Details.tscn" id="15_uu4ux"]
[ext_resource type="PackedScene" uid="uid://c7x2605gbo88t" path="res://Scenes/Section02/Bistro_Lanterns.tscn" id="16_1sf6e"]
[ext_resource type="PackedScene" uid="uid://b62ieebpxbuin" path="res://Scenes/Section03/S3B1.tscn" id="16_m1vvn"]
[ext_resource type="PackedScene" uid="uid://q5n4wbhxihjp" path="res://Scenes/Section03/S3B2.tscn" id="17_4e0xd"]
[ext_resource type="PackedScene" uid="uid://ncj04jk76gn0" path="res://Scenes/Section02/Bistro_StringLights.tscn" id="17_j1o0m"]
[ext_resource type="Resource" uid="uid://cslvcweyejh3c" path="res://addons/SphynxMotionBlurToolkit/PreBlurProcessing/default_camera_movement_component.tres" id="17_oyjvl"]
[ext_resource type="PackedScene" uid="uid://chlhxyb30n5bj" path="res://Scenes/Section03/S3B3.tscn" id="18_4ij38"]
[ext_resource type="Resource" uid="uid://iru8ynu04i00" path="res://addons/SphynxMotionBlurToolkit/PreBlurProcessing/default_camera_rotation_component.tres" id="18_kobmx"]
[ext_resource type="AudioStream" uid="uid://b6rc81y5wriln" path="res://Audio/day_bg.ogg" id="18_kwmnc"]
[ext_resource type="PackedScene" uid="uid://cou4bgmlcrc2" path="res://Scenes/Section03/S3B4.tscn" id="19_acyb5"]
[ext_resource type="AudioStream" uid="uid://cngxal8rdb5mj" path="res://Audio/night_bg.ogg" id="19_ida67"]
[ext_resource type="Resource" uid="uid://rp3mpjmisoyh" path="res://addons/SphynxMotionBlurToolkit/PreBlurProcessing/default_object_movement_component.tres" id="19_qnes5"]
[ext_resource type="Resource" uid="uid://c8ulad7utgrg7" path="res://addons/SphynxMotionBlurToolkit/PreBlurProcessing/pre_blur_processing_stage.tres" id="20_6om2k"]
[ext_resource type="AudioStream" uid="uid://ck4j2cl1itpcg" path="res://Audio/daymusic.ogg" id="20_mwu7t"]
[ext_resource type="PackedScene" uid="uid://8lyr6devevqc" path="res://Scenes/Section03/S3Lamps.tscn" id="20_w5tey"]
[ext_resource type="PackedScene" uid="uid://0rjacw3hrc2a" path="res://Scenes/Section04/S4B1.tscn" id="21_7egcs"]
[ext_resource type="Script" path="res://addons/SphynxMotionBlurToolkit/PreBlurProcessing/pre_blur_processor.gd" id="21_nfman"]
[ext_resource type="AudioStream" uid="uid://uie3maxhbtg1" path="res://Audio/nightmusic.ogg" id="21_nqn7s"]
[ext_resource type="PackedScene" uid="uid://d0oo6ukycpqtf" path="res://Scenes/Section01/S1Lamps_Props.tscn" id="21_yopo6"]
[ext_resource type="Resource" uid="uid://ca45noqewsyvp" path="res://addons/SphynxMotionBlurToolkit/Guertin/guertin_experimental_blur_stage.tres" id="22_0g56o"]
[ext_resource type="PackedScene" uid="uid://dg2ssh4rfvemk" path="res://Scenes/Section04/S4B2.tscn" id="22_k7idl"]
[ext_resource type="PackedScene" uid="uid://dhbajvc40q32m" path="res://Scenes/Section04/S4B3.tscn" id="23_256hy"]
[ext_resource type="PackedScene" uid="uid://7pvp17b3ediw" path="res://Scenes/Section02/BistroProps_Props.tscn" id="23_lunsi"]
[ext_resource type="Resource" uid="uid://cvb65hfs2lrxo" path="res://addons/SphynxMotionBlurToolkit/Guertin/guertin_neighbor_max_stage.tres" id="23_qbyug"]
[ext_resource type="PackedScene" uid="uid://c12tht4kio8pw" path="res://Scenes/Section05/S5B1.tscn" id="24_0u2lm"]
[ext_resource type="Resource" uid="uid://bidsfymvdyhek" path="res://addons/SphynxMotionBlurToolkit/Guertin/guertin_overlay_stage.tres" id="24_c0h83"]
[ext_resource type="Script" path="res://addons/SphynxMotionBlurToolkit/Guertin/new_guertin_motion_blur.gd" id="25_hmq7u"]
[ext_resource type="PackedScene" uid="uid://del44lwpj48x1" path="res://Scenes/Section05/S5B2.tscn" id="25_tcv6v"]
[ext_resource type="Resource" uid="uid://dipvwksvqb3dm" path="res://addons/SphynxMotionBlurToolkit/Guertin/guertin_tile_max_x_stage.tres" id="26_3krrd"]
[ext_resource type="PackedScene" uid="uid://ckb5gvf1swqgf" path="res://Scenes/Section05/S5Lamps.tscn" id="26_xvk4t"]
[ext_resource type="Resource" uid="uid://bxfg45ubc2pv7" path="res://addons/SphynxMotionBlurToolkit/Guertin/guertin_tile_max_y_stage.tres" id="27_o0ydy"]
[ext_resource type="Resource" uid="uid://bqehecsdgt70s" path="res://addons/SphynxMotionBlurToolkit/Guertin/guertin_tile_variance_stage.tres" id="28_lox3l"]
[ext_resource type="Script" path="res://addons/SphynxMotionBlurToolkit/BaseClasses/mb_compositor.gd" id="29_faasy"]
[ext_resource type="CameraAttributesPractical" uid="uid://c5r7ambhbw168" path="res://Resources/BistroCameraAttributesPractical.tres" id="30_pvdv2"]
[ext_resource type="PackedScene" uid="uid://b5i411e430syd" path="res://Godot-Human-For-Scale/Human-For-Scale.tscn" id="31_gaxn2"]
[ext_resource type="PackedScene" uid="uid://ckt8i0dx43ex0" path="res://Scenes/UI.tscn" id="32_q35xk"]
[ext_resource type="ArrayMesh" uid="uid://pw3fun5eaf0n" path="res://Meshes/rounded_cube.obj" id="33_6648h"]
[ext_resource type="PackedScene" uid="uid://djmap33l1n2u6" path="res://Scenes/Section02/S2Lamps_Props.tscn" id="33_k0qq7"]
[ext_resource type="Environment" uid="uid://bevtu3gehmb2j" path="res://Resources/WorldEnvironment.tres" id="33_vhloy"]
[ext_resource type="Material" uid="uid://elgkttuqw3r" path="res://Materials/FogMaterial.tres" id="35_hsy4k"]
[ext_resource type="PackedScene" uid="uid://bjgd3j6klx44v" path="res://Scenes/Section03/S3Lamps_Props.tscn" id="40_mmbd0"]
[ext_resource type="PackedScene" uid="uid://cos8ymay0y3os" path="res://Scenes/Section04/S4B3_Props.tscn" id="41_renwl"]
[ext_resource type="PackedScene" uid="uid://dfhhloubmolfj" path="res://Scenes/Section05/S5B1_Props.tscn" id="43_a2awi"]
[ext_resource type="PackedScene" uid="uid://doh36w0se2tbx" path="res://Scenes/Section05/S5B2_Props.tscn" id="45_v1415"]
[ext_resource type="PackedScene" uid="uid://gaq3qqqqv8xx" path="res://Scenes/Section05/S5Lamps_Props.tscn" id="50_tx67g"]
[ext_resource type="Material" uid="uid://bw1jumvewrd6k" path="res://Materials/Stone/Concrete_Smooth.tres" id="52_6bcdg"]
[ext_resource type="Material" uid="uid://bbgxykd37frx0" path="res://Materials/Stone/Brick_Small_Red_Blend.tres" id="53_ta26q"]
[ext_resource type="Material" uid="uid://tynp4gabi3x5" path="res://Materials/Blocker.tres" id="55_ad3hv"]
[ext_resource type="Material" uid="uid://cubayex8gukre" path="res://Materials/Glass/Windows_Glass.tres" id="55_nqv5d"]
[ext_resource type="PackedScene" uid="uid://bh4suu1710wbn" path="res://Scenes/FillOut/BushTree.tscn" id="56_y454e"]
[ext_resource type="PackedScene" uid="uid://1mxrxl0bqyot" path="res://Scenes/FillOut/Lamp.tscn" id="57_tqvip"]
[ext_resource type="PackedScene" uid="uid://cgkwgso15wixk" path="res://Scenes/FillOut/Lamp_Props.tscn" id="58_yuy0n"]
[ext_resource type="PackedScene" uid="uid://cwpykn2ipsb3b" path="res://Scenes/FillOut/Bollard.tscn" id="59_1o5tg"]
[ext_resource type="PackedScene" uid="uid://bvncoo1ii0yaq" path="res://Scenes/FillOut/Cobblestone.tscn" id="60_n6d5o"]
[ext_resource type="PackedScene" uid="uid://cxvf7w2qy63uv" path="res://Scenes/FillOut/PotPlants.tscn" id="61_77adx"]
[ext_resource type="Material" uid="uid://d0cd8fe6hpv6t" path="res://Materials/windowlight.tres" id="63_8uykn"]
[ext_resource type="ArrayMesh" uid="uid://npyvb0up4qr6" path="res://Meshes/Bent_Quad.obj" id="63_l4mn6"]
[ext_resource type="PackedScene" uid="uid://cb5wljw5j3qlt" path="res://Scenes/PropAudioPlayer.tscn" id="70_yq80p"]
[ext_resource type="Script" path="res://Scripts/FoliageArea.gd" id="75_mt554"]
[ext_resource type="PackedScene" uid="uid://dph2jwqw0jaw" path="res://Scenes/FoliageSound.tscn" id="76_oe8ap"]
[sub_resource type="CompositorEffect" id="CompositorEffect_jwkxf"]
resource_local_to_scene = false
resource_name = ""
enabled = true
effect_callback_type = 4
needs_motion_vectors = false
needs_normal_roughness = false
script = ExtResource("21_nfman")
pre_blur_processor_stage = ExtResource("20_6om2k")
camera_rotation_component = ExtResource("18_kobmx")
camera_movement_component = ExtResource("17_oyjvl")
object_movement_component = ExtResource("19_qnes5")
debug = false
[sub_resource type="CompositorEffect" id="CompositorEffect_jregd"]
resource_local_to_scene = false
resource_name = ""
enabled = true
effect_callback_type = 4
needs_motion_vectors = false
needs_normal_roughness = false
script = ExtResource("25_hmq7u")
blur_stage = ExtResource("22_0g56o")
overlay_stage = ExtResource("24_c0h83")
tile_max_x_stage = ExtResource("26_3krrd")
tile_max_y_stage = ExtResource("27_o0ydy")
neighbor_max_stage = ExtResource("23_qbyug")
tile_variance_stage = ExtResource("28_lox3l")
tile_size = 40
linear_falloff_slope = 1.0
importance_bias = 40.0
maximum_jitter_value = 0.95
minimum_user_threshold = 1.5
debug = false
[sub_resource type="Compositor" id="Compositor_0jy8e"]
compositor_effects = Array[CompositorEffect]([SubResource("CompositorEffect_jwkxf"), SubResource("CompositorEffect_jregd")])
script = ExtResource("29_faasy")
samples = 16
intensity = 1.0
center_fade = 0.0
framerate_independent = true
uncapped_independence = true
target_constant_framerate = 30.0
[sub_resource type="BoxMesh" id="BoxMesh_u4h6w"]
lightmap_size_hint = Vector2i(644, 462)
add_uv2 = true
size = Vector3(42.825, 3, 85.35)
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_5sixh"]
albedo_color = Color(0.0470588, 0.0196078, 0.00392157, 1)
[sub_resource type="ConcavePolygonShape3D" id="ConcavePolygonShape3D_4t7qv"]
data = PackedVector3Array(-21.4125, 1.5, 42.675, 21.4125, 1.5, 42.675, -21.4125, -1.5, 42.675, 21.4125, 1.5, 42.675, 21.4125, -1.5, 42.675, -21.4125, -1.5, 42.675, 21.4125, 1.5, -42.675, -21.4125, 1.5, -42.675, 21.4125, -1.5, -42.675, -21.4125, 1.5, -42.675, -21.4125, -1.5, -42.675, 21.4125, -1.5, -42.675, 21.4125, 1.5, 42.675, 21.4125, 1.5, -42.675, 21.4125, -1.5, 42.675, 21.4125, 1.5, -42.675, 21.4125, -1.5, -42.675, 21.4125, -1.5, 42.675, -21.4125, 1.5, -42.675, -21.4125, 1.5, 42.675, -21.4125, -1.5, -42.675, -21.4125, 1.5, 42.675, -21.4125, -1.5, 42.675, -21.4125, -1.5, -42.675, 21.4125, 1.5, 42.675, -21.4125, 1.5, 42.675, 21.4125, 1.5, -42.675, -21.4125, 1.5, 42.675, -21.4125, 1.5, -42.675, 21.4125, 1.5, -42.675, -21.4125, -1.5, 42.675, 21.4125, -1.5, 42.675, -21.4125, -1.5, -42.675, 21.4125, -1.5, 42.675, 21.4125, -1.5, -42.675, -21.4125, -1.5, -42.675)
[sub_resource type="ConcavePolygonShape3D" id="ConcavePolygonShape3D_67qw4"]
data = PackedVector3Array(-21.4125, 1.5, 42.675, 21.4125, 1.5, 42.675, -21.4125, -1.5, 42.675, 21.4125, 1.5, 42.675, 21.4125, -1.5, 42.675, -21.4125, -1.5, 42.675, 21.4125, 1.5, -42.675, -21.4125, 1.5, -42.675, 21.4125, -1.5, -42.675, -21.4125, 1.5, -42.675, -21.4125, -1.5, -42.675, 21.4125, -1.5, -42.675, 21.4125, 1.5, 42.675, 21.4125, 1.5, -42.675, 21.4125, -1.5, 42.675, 21.4125, 1.5, -42.675, 21.4125, -1.5, -42.675, 21.4125, -1.5, 42.675, -21.4125, 1.5, -42.675, -21.4125, 1.5, 42.675, -21.4125, -1.5, -42.675, -21.4125, 1.5, 42.675, -21.4125, -1.5, 42.675, -21.4125, -1.5, -42.675, 21.4125, 1.5, 42.675, -21.4125, 1.5, 42.675, 21.4125, 1.5, -42.675, -21.4125, 1.5, 42.675, -21.4125, 1.5, -42.675, 21.4125, 1.5, -42.675, -21.4125, -1.5, 42.675, 21.4125, -1.5, 42.675, -21.4125, -1.5, -42.675, 21.4125, -1.5, 42.675, 21.4125, -1.5, -42.675, -21.4125, -1.5, -42.675)
[sub_resource type="BoxMesh" id="BoxMesh_78hf1"]
lightmap_size_hint = Vector2i(618, 381)
add_uv2 = true
size = Vector3(53.73, 3, 69.155)
[sub_resource type="ConcavePolygonShape3D" id="ConcavePolygonShape3D_xtpi4"]
data = PackedVector3Array(-26.865, 1.5, 34.5775, 26.865, 1.5, 34.5775, -26.865, -1.5, 34.5775, 26.865, 1.5, 34.5775, 26.865, -1.5, 34.5775, -26.865, -1.5, 34.5775, 26.865, 1.5, -34.5775, -26.865, 1.5, -34.5775, 26.865, -1.5, -34.5775, -26.865, 1.5, -34.5775, -26.865, -1.5, -34.5775, 26.865, -1.5, -34.5775, 26.865, 1.5, 34.5775, 26.865, 1.5, -34.5775, 26.865, -1.5, 34.5775, 26.865, 1.5, -34.5775, 26.865, -1.5, -34.5775, 26.865, -1.5, 34.5775, -26.865, 1.5, -34.5775, -26.865, 1.5, 34.5775, -26.865, -1.5, -34.5775, -26.865, 1.5, 34.5775, -26.865, -1.5, 34.5775, -26.865, -1.5, -34.5775, 26.865, 1.5, 34.5775, -26.865, 1.5, 34.5775, 26.865, 1.5, -34.5775, -26.865, 1.5, 34.5775, -26.865, 1.5, -34.5775, 26.865, 1.5, -34.5775, -26.865, -1.5, 34.5775, 26.865, -1.5, 34.5775, -26.865, -1.5, -34.5775, 26.865, -1.5, 34.5775, 26.865, -1.5, -34.5775, -26.865, -1.5, -34.5775)
[sub_resource type="BoxMesh" id="BoxMesh_k30le"]
lightmap_size_hint = Vector2i(124, 296)
add_uv2 = true
size = Vector3(3, 18.5, 21)
[sub_resource type="BoxMesh" id="BoxMesh_v6q4x"]
lightmap_size_hint = Vector2i(26, 141)
add_uv2 = true
size = Vector3(3, 12, 1.5)
[sub_resource type="BoxMesh" id="BoxMesh_ob6v6"]
lightmap_size_hint = Vector2i(51, 158)
add_uv2 = true
size = Vector3(6.46, 12, 3)
[sub_resource type="BoxMesh" id="BoxMesh_4g2qu"]
lightmap_size_hint = Vector2i(100, 297)
add_uv2 = true
size = Vector3(3, 21, 16.295)
[sub_resource type="BoxMesh" id="BoxMesh_huwvf"]
lightmap_size_hint = Vector2i(36, 233)
add_uv2 = true
size = Vector3(3.505, 21, 3)
[sub_resource type="BoxMesh" id="BoxMesh_riqcp"]
lightmap_size_hint = Vector2i(71, 108)
add_uv2 = true
size = Vector3(3, 5, 10.5)
[sub_resource type="BoxMesh" id="BoxMesh_jlhyi"]
lightmap_size_hint = Vector2i(34, 206)
add_uv2 = true
size = Vector3(3, 18.5, 3)
[sub_resource type="BoxMesh" id="BoxMesh_a5vt8"]
lightmap_size_hint = Vector2i(34, 206)
add_uv2 = true
size = Vector3(3, 18.5, 3)
[sub_resource type="BoxMesh" id="BoxMesh_rrpqd"]
lightmap_size_hint = Vector2i(34, 206)
add_uv2 = true
size = Vector3(3, 18.5, 3)
[sub_resource type="BoxMesh" id="BoxMesh_wfs5p"]
lightmap_size_hint = Vector2i(34, 206)
add_uv2 = true
size = Vector3(3, 18.5, 3)
[sub_resource type="BoxMesh" id="BoxMesh_gy2lw"]
lightmap_size_hint = Vector2i(77, 219)
add_uv2 = true
size = Vector3(3, 15.5, 11.725)
[sub_resource type="BoxMesh" id="BoxMesh_25hkn"]
lightmap_size_hint = Vector2i(92, 284)
add_uv2 = true
size = Vector3(3, 20.5, 14.7)
[sub_resource type="ConcavePolygonShape3D" id="ConcavePolygonShape3D_1ciot"]
data = PackedVector3Array(-1.5, 10.25, 7.35, 1.5, 10.25, 7.35, -1.5, -10.25, 7.35, 1.5, 10.25, 7.35, 1.5, -10.25, 7.35, -1.5, -10.25, 7.35, 1.5, 10.25, -7.35, -1.5, 10.25, -7.35, 1.5, -10.25, -7.35, -1.5, 10.25, -7.35, -1.5, -10.25, -7.35, 1.5, -10.25, -7.35, 1.5, 10.25, 7.35, 1.5, 10.25, -7.35, 1.5, -10.25, 7.35, 1.5, 10.25, -7.35, 1.5, -10.25, -7.35, 1.5, -10.25, 7.35, -1.5, 10.25, -7.35, -1.5, 10.25, 7.35, -1.5, -10.25, -7.35, -1.5, 10.25, 7.35, -1.5, -10.25, 7.35, -1.5, -10.25, -7.35, 1.5, 10.25, 7.35, -1.5, 10.25, 7.35, 1.5, 10.25, -7.35, -1.5, 10.25, 7.35, -1.5, 10.25, -7.35, 1.5, 10.25, -7.35, -1.5, -10.25, 7.35, 1.5, -10.25, 7.35, -1.5, -10.25, -7.35, 1.5, -10.25, 7.35, 1.5, -10.25, -7.35, -1.5, -10.25, -7.35)
[sub_resource type="BoxMesh" id="BoxMesh_bw15w"]
lightmap_size_hint = Vector2i(12, 53)
add_uv2 = true
size = Vector3(0.75, 4.25, 1)
[sub_resource type="ConcavePolygonShape3D" id="ConcavePolygonShape3D_d4wt5"]
data = PackedVector3Array(-0.375, 2.125, 0.5, 0.375, 2.125, 0.5, -0.375, -2.125, 0.5, 0.375, 2.125, 0.5, 0.375, -2.125, 0.5, -0.375, -2.125, 0.5, 0.375, 2.125, -0.5, -0.375, 2.125, -0.5, 0.375, -2.125, -0.5, -0.375, 2.125, -0.5, -0.375, -2.125, -0.5, 0.375, -2.125, -0.5, 0.375, 2.125, 0.5, 0.375, 2.125, -0.5, 0.375, -2.125, 0.5, 0.375, 2.125, -0.5, 0.375, -2.125, -0.5, 0.375, -2.125, 0.5, -0.375, 2.125, -0.5, -0.375, 2.125, 0.5, -0.375, -2.125, -0.5, -0.375, 2.125, 0.5, -0.375, -2.125, 0.5, -0.375, -2.125, -0.5, 0.375, 2.125, 0.5, -0.375, 2.125, 0.5, 0.375, 2.125, -0.5, -0.375, 2.125, 0.5, -0.375, 2.125, -0.5, 0.375, 2.125, -0.5, -0.375, -2.125, 0.5, 0.375, -2.125, 0.5, -0.375, -2.125, -0.5, 0.375, -2.125, 0.5, 0.375, -2.125, -0.5, -0.375, -2.125, -0.5)
[sub_resource type="BoxMesh" id="BoxMesh_qa7ce"]
lightmap_size_hint = Vector2i(12, 53)
add_uv2 = true
size = Vector3(0.75, 4.25, 1)
[sub_resource type="BoxMesh" id="BoxMesh_e24dl"]
lightmap_size_hint = Vector2i(12, 53)
add_uv2 = true
size = Vector3(0.75, 4.25, 1)
[sub_resource type="BoxMesh" id="BoxMesh_1y0m7"]
lightmap_size_hint = Vector2i(19, 59)
add_uv2 = true
size = Vector3(0.75, 4.25, 2.27)
[sub_resource type="ConcavePolygonShape3D" id="ConcavePolygonShape3D_05ah1"]
data = PackedVector3Array(-0.375, 2.125, 1.135, 0.375, 2.125, 1.135, -0.375, -2.125, 1.135, 0.375, 2.125, 1.135, 0.375, -2.125, 1.135, -0.375, -2.125, 1.135, 0.375, 2.125, -1.135, -0.375, 2.125, -1.135, 0.375, -2.125, -1.135, -0.375, 2.125, -1.135, -0.375, -2.125, -1.135, 0.375, -2.125, -1.135, 0.375, 2.125, 1.135, 0.375, 2.125, -1.135, 0.375, -2.125, 1.135, 0.375, 2.125, -1.135, 0.375, -2.125, -1.135, 0.375, -2.125, 1.135, -0.375, 2.125, -1.135, -0.375, 2.125, 1.135, -0.375, -2.125, -1.135, -0.375, 2.125, 1.135, -0.375, -2.125, 1.135, -0.375, -2.125, -1.135, 0.375, 2.125, 1.135, -0.375, 2.125, 1.135, 0.375, 2.125, -1.135, -0.375, 2.125, 1.135, -0.375, 2.125, -1.135, 0.375, 2.125, -1.135, -0.375, -2.125, 1.135, 0.375, -2.125, 1.135, -0.375, -2.125, -1.135, 0.375, -2.125, 1.135, 0.375, -2.125, -1.135, -0.375, -2.125, -1.135)
[sub_resource type="PlaneMesh" id="PlaneMesh_yi46n"]
size = Vector2(11, 12)
[sub_resource type="ConcavePolygonShape3D" id="ConcavePolygonShape3D_n2o7p"]
data = PackedVector3Array(5.5, 0, 6, -5.5, 0, 6, 5.5, 0, -6, -5.5, 0, 6, -5.5, 0, -6, 5.5, 0, -6)
[sub_resource type="PlaneMesh" id="PlaneMesh_e8sj3"]
size = Vector2(11.765, 12)
[sub_resource type="ConcavePolygonShape3D" id="ConcavePolygonShape3D_44fte"]
data = PackedVector3Array(5.8825, 0, 6, -5.8825, 0, 6, 5.8825, 0, -6, -5.8825, 0, 6, -5.8825, 0, -6, 5.8825, 0, -6)
[sub_resource type="QuadMesh" id="QuadMesh_nkvwc"]
size = Vector2(23.11, 5.655)
[sub_resource type="QuadMesh" id="QuadMesh_gitgp"]
size = Vector2(23.11, 6.42)
[sub_resource type="QuadMesh" id="QuadMesh_ldmh3"]
size = Vector2(1.715, 6.42)
[sub_resource type="QuadMesh" id="QuadMesh_2cxk8"]
size = Vector2(7.485, 6.42)
[sub_resource type="QuadMesh" id="QuadMesh_ybh7c"]
size = Vector2(7.485, 6.42)
[sub_resource type="QuadMesh" id="QuadMesh_n8rhn"]
size = Vector2(4.46, 2.085)
[sub_resource type="QuadMesh" id="QuadMesh_il50q"]
size = Vector2(0.975, 1.08)
[sub_resource type="QuadMesh" id="QuadMesh_jfllq"]
size = Vector2(10.565, 5.02)
[sub_resource type="QuadMesh" id="QuadMesh_nojj2"]
size = Vector2(10.49, 2.2)
[sub_resource type="QuadMesh" id="QuadMesh_6nk8h"]
size = Vector2(1.56, 2.415)
[sub_resource type="QuadMesh" id="QuadMesh_gbpuh"]
size = Vector2(3.71, 1.715)
[sub_resource type="QuadMesh" id="QuadMesh_asobe"]
size = Vector2(2.105, 2.39)
[sub_resource type="QuadMesh" id="QuadMesh_aes6f"]
size = Vector2(1.07, 1.165)
[sub_resource type="QuadMesh" id="QuadMesh_402dd"]
size = Vector2(14.085, 9.075)
[sub_resource type="QuadMesh" id="QuadMesh_f8143"]
size = Vector2(1.25, 9.075)
[sub_resource type="QuadMesh" id="QuadMesh_eo8by"]
size = Vector2(0.985, 1.345)
[sub_resource type="QuadMesh" id="QuadMesh_kisol"]
size = Vector2(4.375, 1.775)
[sub_resource type="QuadMesh" id="QuadMesh_c01w6"]
size = Vector2(2.18, 2.065)
[sub_resource type="QuadMesh" id="QuadMesh_yjeol"]
size = Vector2(0.835, 2.065)
[sub_resource type="QuadMesh" id="QuadMesh_8rehp"]
size = Vector2(0.99, 2.435)
[sub_resource type="QuadMesh" id="QuadMesh_mnkhs"]
size = Vector2(8.045, 6.06)
[sub_resource type="QuadMesh" id="QuadMesh_a4pj0"]
size = Vector2(1.42, 2.435)
[sub_resource type="QuadMesh" id="QuadMesh_j21pw"]
size = Vector2(6.515, 5.47)
[sub_resource type="QuadMesh" id="QuadMesh_pajwb"]
size = Vector2(4.55, 5.31)
[sub_resource type="QuadMesh" id="QuadMesh_me1uc"]
size = Vector2(0.905, 5.31)
[sub_resource type="QuadMesh" id="QuadMesh_r5mst"]
size = Vector2(0.87, 1.585)
[sub_resource type="QuadMesh" id="QuadMesh_lr2gp"]
size = Vector2(1.375, 2.415)
[sub_resource type="QuadMesh" id="QuadMesh_k3l1i"]
size = Vector2(0.885, 1.035)
[sub_resource type="QuadMesh" id="QuadMesh_6q4eh"]
size = Vector2(7.24, 5.51)
[sub_resource type="QuadMesh" id="QuadMesh_gt6kv"]
size = Vector2(4.36, 2.11)
[sub_resource type="QuadMesh" id="QuadMesh_biu66"]
size = Vector2(22.78, 6.495)
[sub_resource type="QuadMesh" id="QuadMesh_x7msb"]
size = Vector2(1.385, 6.49)
[sub_resource type="QuadMesh" id="QuadMesh_mpo40"]
size = Vector2(23.075, 5.625)
[sub_resource type="QuadMesh" id="QuadMesh_lvcnf"]
size = Vector2(1.49, 6.49)
[sub_resource type="QuadMesh" id="QuadMesh_qywwv"]
size = Vector2(2.635, 2.025)
[sub_resource type="QuadMesh" id="QuadMesh_70d73"]
size = Vector2(2.68, 2.735)
[sub_resource type="QuadMesh" id="QuadMesh_ws2o1"]
size = Vector2(4.525, 6.65)
[sub_resource type="QuadMesh" id="QuadMesh_k7wmt"]
size = Vector2(4.725, 2.075)
[sub_resource type="QuadMesh" id="QuadMesh_72uoq"]
size = Vector2(0.77, 1.5)
[sub_resource type="QuadMesh" id="QuadMesh_qo44c"]
size = Vector2(7.205, 5.475)
[sub_resource type="QuadMesh" id="QuadMesh_d006h"]
size = Vector2(4.27, 1.97)
[sub_resource type="QuadMesh" id="QuadMesh_4b6f5"]
size = Vector2(7.42, 2.045)
[sub_resource type="QuadMesh" id="QuadMesh_c1iku"]
size = Vector2(10.09, 2.025)
[sub_resource type="QuadMesh" id="QuadMesh_nbe4u"]
size = Vector2(4.28, 2.035)
[sub_resource type="QuadMesh" id="QuadMesh_0bmvm"]
size = Vector2(0.985, 1.34)
[sub_resource type="QuadMesh" id="QuadMesh_qd0u7"]
size = Vector2(0.995, 1.095)
[sub_resource type="QuadMesh" id="QuadMesh_3kx6k"]
size = Vector2(1.415, 6.62)
[sub_resource type="QuadMesh" id="QuadMesh_58rsk"]
size = Vector2(2.725, 2.06)
[sub_resource type="QuadMesh" id="QuadMesh_oeb45"]
size = Vector2(2.685, 2.82)
[sub_resource type="QuadMesh" id="QuadMesh_qrxuj"]
size = Vector2(4.605, 6.79)
[sub_resource type="QuadMesh" id="QuadMesh_81chb"]
size = Vector2(4.74, 2.1)
[sub_resource type="QuadMesh" id="QuadMesh_uos8l"]
size = Vector2(0.795, 1.475)
[sub_resource type="QuadMesh" id="QuadMesh_lckqs"]
size = Vector2(1.46, 6.58)
[sub_resource type="QuadMesh" id="QuadMesh_7sxyj"]
size = Vector2(2.615, 2.08)
[sub_resource type="QuadMesh" id="QuadMesh_m2k76"]
size = Vector2(2.73, 2.81)
[sub_resource type="QuadMesh" id="QuadMesh_6qjuc"]
size = Vector2(4.525, 6.75)
[sub_resource type="QuadMesh" id="QuadMesh_2wwf4"]
size = Vector2(4.815, 2.07)
[sub_resource type="QuadMesh" id="QuadMesh_n2dut"]
size = Vector2(0.805, 1.52)
[sub_resource type="QuadMesh" id="QuadMesh_qfl8r"]
size = Vector2(13.91, 9.195)
[sub_resource type="QuadMesh" id="QuadMesh_ewb2h"]
size = Vector2(1.135, 9.395)
[sub_resource type="QuadMesh" id="QuadMesh_3aifm"]
size = Vector2(4.36, 1.87)
[sub_resource type="QuadMesh" id="QuadMesh_e0fna"]
size = Vector2(2.23, 2.125)
[sub_resource type="QuadMesh" id="QuadMesh_xvmn6"]
size = Vector2(0.825, 2.135)
[sub_resource type="QuadMesh" id="QuadMesh_xyc7b"]
size = Vector2(11.155, 12.25)
[sub_resource type="QuadMesh" id="QuadMesh_4gs6l"]
size = Vector2(10.875, 2.26)
[sub_resource type="QuadMesh" id="QuadMesh_joyqo"]
size = Vector2(2.59, 2.465)
[sub_resource type="QuadMesh" id="QuadMesh_ugf57"]
size = Vector2(0.675, 2.215)
[sub_resource type="QuadMesh" id="QuadMesh_wmsck"]
size = Vector2(1.085, 2.025)
[sub_resource type="QuadMesh" id="QuadMesh_2tgi0"]
size = Vector2(1, 1.305)
[sub_resource type="QuadMesh" id="QuadMesh_r5th0"]
size = Vector2(1.065, 1.4)
[sub_resource type="QuadMesh" id="QuadMesh_8mgbd"]
size = Vector2(1.485, 5.245)
[sub_resource type="QuadMesh" id="QuadMesh_k2vop"]
size = Vector2(12.11, 5.34)
[sub_resource type="QuadMesh" id="QuadMesh_ocuq2"]
size = Vector2(11.61, 2.015)
[sub_resource type="QuadMesh" id="QuadMesh_nijqf"]
size = Vector2(1.285, 1.915)
[sub_resource type="QuadMesh" id="QuadMesh_0b50b"]
size = Vector2(1.285, 1.915)
[sub_resource type="QuadMesh" id="QuadMesh_0wta0"]
size = Vector2(4.555, 1.93)
[sub_resource type="QuadMesh" id="QuadMesh_gnoe6"]
size = Vector2(1.275, 1.88)
[sub_resource type="QuadMesh" id="QuadMesh_g008u"]
size = Vector2(10.49, 2.3)
[sub_resource type="QuadMesh" id="QuadMesh_l6jn1"]
size = Vector2(10.575, 5.055)
[sub_resource type="QuadMesh" id="QuadMesh_4iwe4"]
size = Vector2(3.84, 1.8)
[sub_resource type="QuadMesh" id="QuadMesh_ftfwl"]
size = Vector2(2.14, 2.35)
[sub_resource type="QuadMesh" id="QuadMesh_dbpti"]
size = Vector2(1.6, 2.485)
[sub_resource type="QuadMesh" id="QuadMesh_be1ba"]
size = Vector2(1.425, 5.29)
[sub_resource type="QuadMesh" id="QuadMesh_dttb6"]
size = Vector2(1.315, 1.91)
[sub_resource type="QuadMesh" id="QuadMesh_5xyqu"]
size = Vector2(6.845, 2.03)
[sub_resource type="QuadMesh" id="QuadMesh_vng2c"]
size = Vector2(8.095, 1.945)
[sub_resource type="QuadMesh" id="QuadMesh_xlh4s"]
size = Vector2(1.105, 1.215)
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_n0oho"]
metallic = 1.0
roughness = 0.0
texture_filter = 5
[sub_resource type="BoxShape3D" id="BoxShape3D_gxu67"]
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_72mn7"]
texture_filter = 5
[sub_resource type="BoxShape3D" id="BoxShape3D_ra78n"]
[sub_resource type="BoxShape3D" id="BoxShape3D_86uke"]
[sub_resource type="ConvexPolygonShape3D" id="ConvexPolygonShape3D_ej0wg"]
points = PackedVector3Array(-2.28986, 3.00226, 1.15334, 1.81357, 6.13986, 1.87729, 1.81357, 6.13986, 1.39458, 1.57217, 3.00226, 2.60123, 1.81357, 4.20957, 0.6704, 0.123355, 4.69145, 3.08418, -2.28986, 4.69145, 1.39458, -0.841447, 3.24396, 2.84271, 0.364756, 3.00226, 0.6704, -1.80705, 3.96817, 0.6704, 1.57217, 3.00226, 3.08418, -2.28986, 4.69145, 1.87729, 1.57217, 5.89846, 0.911872, -2.04845, 3.00226, 2.11853, -2.04845, 3.00226, 0.6704, 1.33076, 6.13986, 1.39458, 0.606158, 4.69145, 3.08418, 1.81357, 4.93285, 2.36, 0.606158, 3.00226, 3.08418, 1.57217, 6.13986, 1.87729, 1.08936, 4.69145, 0.6704, 1.81357, 3.96817, 2.11853, 1.57217, 3.48537, 3.08418, -0.841447, 3.72677, 2.84271, -2.39148, 3.17823, 1.11749, -2.28986, 3.24396, 1.87729, 1.81357, 5.89846, 0.911872, 0.606158, 3.00226, 0.911872, -2.04845, 4.20957, 0.911872, -0.600046, 4.45097, 2.84271)
[sub_resource type="ConvexPolygonShape3D" id="ConvexPolygonShape3D_ynla4"]
points = PackedVector3Array(2.05473, 4.45052, -1.98487, 0.606551, 6.8643, -1.7439, 0.606551, 6.8643, -1.98487, -1.56572, 4.69223, -0.778103, -1.0827, 5.89841, -2.70851, 2.77882, 4.69223, -1.01932, 3.02034, 5.89841, -2.9502, -1.32421, 5.89841, -0.778103, -0.358605, 4.9337, -2.4673, 1.08913, 6.62259, -3.19164, -0.749897, 4.31461, -0.641937, -1.32421, 6.38112, -2.22585, 3.02034, 5.89841, -1.74366, 0.606551, 5.89841, -0.778103, 2.05473, 5.17494, -2.9502, 2.77882, 4.69223, -2.4673, 2.77882, 4.45052, -1.01932, 0.606551, 6.38112, -1.01955, 1.57171, 6.62259, -3.19164, -0.358605, 5.89841, -2.94996, 3.02034, 5.17494, -1.261, 0.123973, 6.8643, -1.7439, -1.0827, 4.9337, -1.98487, -0.600118, 4.45076, -1.261, 3.02034, 5.17494, -2.70851, -0.358605, 6.38112, -2.94996, -1.32421, 6.38112, -1.7439, -1.32421, 5.89841, -2.4673, 0.123973, 6.8643, -1.98487, -1.56572, 4.69223, -1.01955, 1.08913, 6.38112, -3.19164, 1.57171, 6.62259, -2.70851)
[sub_resource type="ConvexPolygonShape3D" id="ConvexPolygonShape3D_ik6fk"]
points = PackedVector3Array(3.26141, 4.20929, 3.56674, 2.53808, 3.00254, 0.912061, 1.81404, 4.20957, 0.912061, 4.22734, 4.20957, 0.912061, 2.53808, 5.89794, 2.35976, 1.81404, 3.48558, 3.08389, 3.74449, 3.24406, 3.80831, 1.81404, 5.89794, 0.912061, 3.98545, 3.00254, 1.39491, 3.02069, 5.89794, 2.35976, 1.81404, 3.00254, 2.35976, 2.05546, 5.41547, 2.84233, 4.22734, 4.20957, 1.87748, 2.29642, 3.96777, 3.56674, 3.74449, 3.72653, 3.80831, 3.26141, 5.6567, 1.63619, 1.81404, 5.89794, 1.87748, 2.29689, 5.89794, 0.912061, 3.98545, 4.69147, 2.11876, 3.26141, 3.00254, 2.84233, 3.26141, 3.24406, 3.80831, 3.74402, 3.24434, 0.912061, 1.81404, 3.00254, 1.87748, 4.22734, 3.7271, 1.63619, 3.02069, 5.41547, 2.84233, 2.29642, 3.48529, 3.56674, 3.98545, 3.00254, 1.87748, 2.53808, 4.20929, 3.56674)
[sub_resource type="ConvexPolygonShape3D" id="ConvexPolygonShape3D_4si5m"]
points = PackedVector3Array(1.81357, 4.45024, 0.670258, 0.123922, 3.48501, -2.46744, -0.11755, 3.00254, -1.74321, -1.08245, 5.6567, -0.536478, -1.32392, 3.24434, 0.670258, 1.33062, 3.00254, 0.187441, -1.56572, 3.72653, -1.0193, 0.123922, 5.89794, -0.0539677, 0.606536, 3.72653, -2.46744, 1.08915, 5.41547, -0.295069, -0.116889, 5.89794, -0.777887, -0.116889, 4.69147, 0.670258, -1.08278, 3.00254, -1.0193, 1.08915, 3.24406, -1.50181, 1.57209, 3.24434, 0.670258, -1.08245, 5.6567, -0.777887, -0.599833, 5.89794, -0.0539677, -1.56539, 4.93271, -0.536478, 1.57209, 4.93271, -0.0539677, -1.32392, 3.7271, 0.670258, 0.123922, 3.72653, -2.46744, -1.56572, 4.209, -1.0193, -0.840975, 3.00254, 0.187441, 0.606536, 3.00254, -1.74321, 0.606205, 5.6567, 0.187441, 1.81357, 4.20957, 0.42885, 1.33062, 3.00254, -0.536478, 0.847677, 3.00254, 0.42885, -0.599833, 5.89794, -0.777887, 1.57209, 4.69147, 0.670258, -1.32392, 5.17423, -0.295069, 0.606536, 3.48501, -2.46744)
[sub_resource type="ConvexPolygonShape3D" id="ConvexPolygonShape3D_ibaim"]
points = PackedVector3Array(-1.32293, 1.31247, -1.25977, 3.74388, 3.00141, 1.87701, 5.43282, 2.76031, 2.35962, -2.28816, -1.34169, 3.08333, 6.15737, -1.1006, -0.536063, -1.32293, 3.00141, 3.08333, 4.70911, 2.51879, -1.25977, 5.43282, -0.135372, 3.08333, -1.08226, -1.34169, -1.25977, -2.55821, 3.13643, 1.16786, 6.15737, -1.34169, 1.15287, -0.11618, 3.00141, -1.25977, 6.39804, 2.2777, 0.670684, 6.15737, 2.03618, 2.84223, -2.28816, -0.617986, 0.18807, 3.9854, -1.34169, 2.60071, 3.02017, -0.85908, -1.25977, -1.80597, 2.03618, -1.01868, -2.28816, 2.2777, 3.08333, 5.67434, 2.76031, -0.0534497, 1.81427, 3.00141, 3.08333, 5.19215, 1.79508, -1.25977, 5.91585, -0.85908, 2.60071, 5.43282, 2.2777, 3.08333, 6.39804, -0.617986, -0.294544, 0.849047, -1.34169, -1.25977, -1.08226, 3.00141, -1.01868, 3.02017, 3.00141, 0.18807, 6.39804, 2.2777, 1.63549, 3.02017, -0.85908, 3.08333, 0.607528, 3.00141, -1.25977, 3.74388, -0.376467, -1.25977)
[sub_resource type="ConvexPolygonShape3D" id="ConvexPolygonShape3D_eex4f"]
points = PackedVector3Array(0.365725, -1.1006, -2.95027, 0.60715, 3.00141, -1.26062, -1.082, -1.34169, -1.26062, 6.6403, -1.34169, -1.50209, 0.125127, 2.2777, -2.95027, 6.39887, -1.34169, -2.46732, -1.80627, 2.2777, -2.22585, 4.70889, 2.51879, -1.50209, 4.4683, -0.85908, -2.95027, -1.32342, 2.51879, -1.26062, -1.80627, -0.135372, -2.22585, 1.57285, 2.03618, -2.95027, 4.70889, 2.03618, -1.26062, -0.427994, 3.26859, -1.42786, -0.840574, 0.347242, -2.95027, 0.125127, -1.34169, -2.70879, 2.77832, -0.85908, -1.26062, -1.80627, 2.2777, -1.50209, 6.39887, -1.1006, -2.46732, 0.125127, 2.51879, -2.70879, -1.082, -1.1006, -2.22585, 6.6403, -1.1006, -2.22585, -1.082, 2.03618, -2.70879, -1.32342, -0.617986, -1.26062, -0.357723, 2.51879, -2.70879, 6.6403, -1.1006, -1.50209, 4.25596, -1.11691, -2.86282, 1.09, -1.34169, -1.26062, -0.599149, -0.135372, -2.95027, 3.74402, 0.106147, -1.26062, -1.082, -1.34169, -1.7434, -0.357723, 2.03618, -2.95027)
[sub_resource type="ConvexPolygonShape3D" id="ConvexPolygonShape3D_c7m8a"]
points = PackedVector3Array(7.1235, 0.829525, -3.91592, 5.19307, -1.34254, -5.36383, 5.19307, -0.376892, -5.36383, 5.19307, -1.34254, -3.43302, 6.39951, -1.34254, -5.36383, 6.1586, 0.588052, -6.08818, 5.91727, 0.829525, -4.64001, 7.36525, 0.346816, -3.91592, 6.88217, 0.346816, -5.84647, 6.39951, -0.8596, -3.67447, 5.91727, -0.376892, -6.08818, 5.43461, -0.376892, -3.67447, 5.67594, 0.588052, -6.08818, 6.64084, 1.07123, -4.88119, 5.19307, -0.135656, -4.64001, 6.64084, 0.588052, -3.67447, 7.36525, 0.588052, -4.64001, 6.88217, -0.376892, -3.67447, 6.39951, -1.34254, -4.88119, 7.36525, 0.346816, -4.64001, 6.88217, 0.105344, -5.84647, 7.1235, 0.588052, -3.67447, 6.39951, 1.07123, -4.64001, 5.43461, -1.34254, -3.43302, 6.1586, -0.376892, -6.08818, 5.19307, -1.10107, -3.43302, 5.43461, 0.346816, -5.60528, 6.64084, 0.829525, -3.91592)
[sub_resource type="ConvexPolygonShape3D" id="ConvexPolygonShape3D_pgij4"]
points = PackedVector3Array(-0.358408, -0.617986, -5.36388, 1.08995, 3.00141, -4.39908, 1.08995, 3.00141, -4.64008, 5.19285, -1.34169, -3.43307, 4.46867, -0.135372, -6.81229, -0.599408, -0.135372, -2.95027, 1.08995, -1.34169, -6.57089, 1.57254, 2.76031, -3.19167, 0.848362, 2.2777, -6.08768, 4.46867, 1.07095, -5.12248, 0.606772, -1.34169, -2.95027, -0.358408, 2.51879, -3.67447, 5.19285, -1.34169, -5.84668, 0.124773, -0.376467, -6.81229, 4.46867, -0.85908, -2.95027, 3.74449, 1.55356, -6.08768, 4.95067, 0.347242, -4.15727, 0.124773, 2.51879, -2.95027, 1.08995, 0.106147, -7.05369, 2.77872, -1.34169, -6.81229, -0.841589, -0.376467, -3.91627, 0.366363, -1.34169, -6.08768, 5.19285, -0.135372, -5.36388, 0.606772, 3.00141, -5.12248, 1.81472, 2.76031, -3.43307, 4.95067, -0.135372, -6.32908, 0.366363, 2.76031, -5.12248, 1.33154, 2.2777, -6.08768, 1.57254, 2.2777, -2.95027, 4.22708, -1.34169, -2.95027, -0.841589, -0.376467, -3.43307, 0.124773, -0.617986, -6.81229)
[sub_resource type="ConvexPolygonShape3D" id="ConvexPolygonShape3D_srmkl"]
points = PackedVector3Array(0.848055, -2.79081, -2.22613, 7.12388, -1.34254, -0.777914, 7.12388, -1.82539, -0.777914, 3.74577, -1.82539, -6.81231, 0.678277, -1.30336, -0.445917, 2.53864, -2.30782, 2.36004, 5.91675, -2.79081, -5.12167, 0.848055, -1.34254, -5.84534, 1.08948, -2.79081, -6.08775, 5.19248, -2.79081, 0.670305, 4.70963, -1.34254, 2.36004, 6.88245, -1.34254, -4.1556, 6.3996, -2.79081, -1.50247, 3.50434, -1.34254, -6.56989, 2.77946, -1.58411, 2.36004, 6.88245, -1.82539, -4.39712, 2.05518, -2.54924, -6.56989, 2.77946, -2.54924, 1.87701, 5.91675, -1.34254, -5.3623, 6.15818, -2.06668, 0.670305, 4.22678, -2.30782, 2.11853, 1.33091, -1.34254, -6.32927, 0.848055, -2.30782, -6.08775, 5.67471, -2.54924, -5.60471, 0.848055, -2.79081, -1.98551, 2.29722, -2.30782, 2.11853, 3.28579, -1.36604, 2.21122, 4.22678, -2.79081, 0.670305, 3.74577, -2.06668, -6.81231, 5.67471, -2.54924, 0.670305, 2.53864, -2.54924, -6.56989, 4.70963, -1.58411, 2.36004)
[sub_resource type="ConvexPolygonShape3D" id="ConvexPolygonShape3D_il5lk"]
points = PackedVector3Array(5.43404, -3.27376, -0.777866, 1.81394, -3.03228, -5.36404, 3.02064, -4.2387, -4.39842, 7.36516, -4.72164, -4.88101, 5.67552, -2.79081, -5.36404, 0.848056, -2.79081, -1.7435, 3.74572, -4.72164, -2.46761, 6.1578, -2.79081, -1.7435, 7.12369, -4.48017, -2.46761, 5.91699, -5.20459, -4.63904, 7.60663, -3.51523, -2.95109, 1.331, -3.51523, -1.50242, 5.91699, -4.96312, -5.12252, 1.331, -3.51523, -3.43279, 3.50359, -2.79081, -0.777866, 4.22734, -3.9977, -1.26091, 1.57247, -2.79081, -5.12252, 6.88222, -5.20459, -3.91493, 4.9511, -5.20459, -3.43279, 7.36516, -3.27376, -3.43279, 2.05542, -3.27376, -1.01939, 4.9511, -5.20459, -4.1569, 6.1578, -3.03228, -1.26091, 2.05542, -3.9977, -2.46761, 7.36516, -4.96312, -4.88101, 4.9511, -3.51523, -0.777866, 3.9872, -3.7567, -5.36404, 2.77917, -4.2387, -4.1569, 0.848056, -3.03228, -2.46761, 1.57247, -3.51523, -1.26091, 6.64074, -4.72164, -2.70912, 6.64074, -4.96312, -5.12252)
[sub_resource type="ConvexPolygonShape3D" id="ConvexPolygonShape3D_fsusv"]
points = PackedVector3Array(-1.08266, -1.34254, 6.70522, 0.124111, 2.27812, 6.94622, 0.124111, 2.27812, 6.46394, 2.05494, 1.071, 6.22237, -0.599952, -0.618128, 8.39449, -1.67634, 0.0838237, 5.40946, 1.08917, -0.376419, 5.49796, -1.08266, 2.03641, 5.49796, -1.32401, -0.376419, 8.39449, 0.606465, 1.071, 8.15292, -1.08266, 1.7947, 7.18751, 1.57188, 1.31235, 5.49796, 0.124111, -0.859482, 7.4285, -1.56572, -0.859482, 5.49796, -0.357889, 2.03641, 7.67007, -1.32401, -1.34254, 7.67007, 1.81324, 1.55335, 6.46394, -0.117243, 2.27812, 5.49796, -0.599952, -1.34254, 6.70522, -1.56572, -1.10084, 6.94622, 0.606465, 0.829288, 8.15292, -0.357889, 2.27812, 7.18751, 1.32982, -0.135419, 5.98109, -0.841306, -1.34254, 7.67007, -0.117243, 2.03641, 7.67007, -1.32401, 1.071, 6.94622, 2.05494, 1.31235, 5.98109, 0.124111, 1.071, 8.15292, -1.56572, 0.105935, 6.46394, -1.32401, -0.618128, 8.39449, 1.81324, 0.829288, 5.73952, 1.57188, 1.55335, 5.73952)
[sub_resource type="ConvexPolygonShape3D" id="ConvexPolygonShape3D_m5xn2"]
points = PackedVector3Array(-2.53142, 1.79537, 4.04948, -2.77299, 3.96755, 3.32579, -2.53142, 3.00202, 4.77366, -4.46226, 2.27845, 3.32579, -1.56572, 3.00202, 3.08451, -4.46226, 3.24335, 3.08451, -1.80729, 1.79537, 4.77366, -2.04886, 2.03712, 3.08451, -1.56572, 3.48468, 3.32579, -1.56572, 2.27845, 4.77366, -2.77299, 3.00202, 4.77366, -2.28986, 1.79537, 4.77366, -4.46226, 3.24335, 3.32579, -3.01399, 3.96755, 3.08451, -4.46226, 2.27845, 3.08451, -1.9205, 1.65093, 4.06549, -1.56572, 2.03712, 4.29093, -2.77299, 2.51978, 4.77366, -2.04886, 3.00202, 4.53221, -3.01399, 3.96755, 3.32579, -3.25499, 2.03712, 3.08451, -1.56572, 3.48468, 3.08451)
[sub_resource type="ConvexPolygonShape3D" id="ConvexPolygonShape3D_c58nc"]
points = PackedVector3Array(-4.46188, 4.45071, -0.0537331, -2.53123, 4.45071, 1.39444, -3.25549, 4.69204, 2.60142, -3.25549, 5.41591, 0.670613, -2.77278, 4.20926, -0.0537331, -4.46188, 4.20926, 1.63589, -4.46188, 5.41591, 0.187716, -3.25549, 4.20926, 2.60142, -3.97917, 4.93314, 2.11853, -3.25549, 5.17447, -0.0537331, -4.46188, 4.20926, -0.0537331, -3.738, 4.20926, 2.60142, -3.01413, 5.17447, 0.187716, -3.25549, 5.41591, 0.911802, -2.53123, 4.20926, 1.39444, -4.46188, 5.41591, 0.429164, -3.738, 4.69204, 2.60142, -4.46188, 4.45071, 1.63589)
[sub_resource type="ConvexPolygonShape3D" id="ConvexPolygonShape3D_q5rlt"]
points = PackedVector3Array(-2.53142, 2.03686, 6.9459, -2.77285, 0.830092, 4.77418, -3.97903, 1.31299, 4.77418, -2.29023, 2.76026, 5.0154, -3.49665, 3.2434, 6.70444, -3.73784, 1.5542, 6.9459, -1.80762, 0.830092, 5.25686, -1.56619, 2.2776, 5.73931, -2.53142, 0.830328, 6.70444, -1.56619, 2.2776, 4.77418, -3.49618, 3.00218, 5.49785, -3.73784, 2.27784, 7.1876, -3.25499, 0.830092, 5.49785, -2.04857, 1.5542, 6.70444, -3.0138, 3.2434, 6.46345, -3.9795, 2.03686, 6.70444, -1.56619, 1.31299, 4.77418, -3.97903, 1.5542, 4.77418, -2.53142, 1.07154, 6.9459, -2.04857, 2.03686, 6.70444, -3.49665, 3.2434, 5.98077, -2.04904, 2.76026, 5.25686, -3.25522, 2.27784, 7.1876, -2.77285, 0.830328, 6.70444, -3.25522, 3.2434, 6.70444, -2.04904, 0.830092, 4.77418, -2.53166, 2.76026, 5.0154, -1.56619, 2.03663, 5.73931, -2.29047, 0.830328, 6.46345)
[sub_resource type="ConvexPolygonShape3D" id="ConvexPolygonShape3D_03ec4"]
points = PackedVector3Array(0.123922, 2.51941, 5.49781, -1.69687, -0.777661, 4.74573, -1.08278, 3.48501, 4.77382, 1.81357, 0.829997, 4.77382, -1.56572, -0.618411, 5.49781, 0.606205, -0.37701, 5.49781, -1.32425, 2.76081, 5.49781, 1.81357, 1.3132, 5.49781, 0.364733, 3.48501, 4.77382, 0.364733, 3.48501, 5.25648, 0.606205, -0.37701, 4.77382, 1.81357, 1.7952, 4.77382, -1.56572, 2.51941, 5.25648, -1.08278, 3.48501, 5.25648, 1.81357, 0.829997, 5.49781, -1.35982, 2.38705, 4.81794, 1.81357, 1.7952, 5.0153)
[sub_resource type="ConvexPolygonShape3D" id="ConvexPolygonShape3D_3gd75"]
points = PackedVector3Array(-5.91014, 5.65716, -1.01906, -3.49722, 5.17513, -0.778055, -3.73874, 5.4154, -0.536489, -6.15166, 4.20957, 0.669928, -5.91014, 6.14004, 0.911494, -4.22092, 4.20914, -1.74319, -4.22092, 6.38117, -1.74319, -4.46244, 4.20957, 0.669928, -5.18615, 4.69224, -1.98447, -6.15166, 4.45091, -1.01906, -6.39262, 5.89849, -0.0539221, -5.18615, 6.38138, -1.74291, -4.46244, 5.65716, 0.428928, -3.49722, 4.45112, -1.26034, -3.73874, 6.13941, -1.26034, -5.42767, 6.14004, 0.911494, -4.70396, 4.45091, 0.911494, -3.73874, 5.4154, -1.74319, -5.91014, 4.20957, -0.777772, -6.39262, 4.93379, 0.187078, -4.22092, 6.38117, -1.26034, -3.49722, 4.45112, -0.778055, -3.97969, 4.20914, -1.74319, -4.70368, 5.17513, -1.98447, -5.91014, 5.17491, 0.911494, -6.39262, 5.65716, -0.295205, -5.18615, 5.17513, -1.98447, -6.39262, 5.89849, 0.187078, -3.73874, 6.13941, -1.50162, -6.15166, 4.69224, -1.01906, -4.46244, 4.69224, 0.669928)
[sub_resource type="ConvexPolygonShape3D" id="ConvexPolygonShape3D_ea3ue"]
points = PackedVector3Array(-4.94475, 3.72601, -3.6744, -2.28986, 3.4848, 3.08418, -2.28986, 2.03705, 3.08418, -4.70333, 2.2785, 3.08418, -3.97931, 2.03705, -2.94998, -2.53154, 3.96746, -1.50181, -4.94475, 4.20867, 0.670117, -4.94475, 1.79537, -3.19145, -3.01439, 4.20867, 3.08418, -3.01439, 1.79537, -0.777394, -3.97931, 1.79537, 2.35976, -3.25556, 4.20867, -2.22557, -2.28986, 4.20867, 1.39453, -4.4619, 3.24335, 3.08418, -2.28986, 2.76116, 0.911589, -4.70333, 3.96746, -3.6744, -4.94475, 1.79537, -1.26034, -2.53154, 1.79537, 3.08418, -4.22048, 2.76116, -3.43293, -2.53154, 3.4848, -1.50181, -4.94475, 4.20867, -1.01887, -4.4619, 3.96746, 2.11829, -4.70333, 2.03705, 2.60123, -2.53154, 4.20867, 3.08418, -4.22048, 3.72601, -3.43293, -4.94475, 3.4848, 0.911589, -3.01439, 2.51971, -1.74328, -2.28986, 2.03705, 2.60123, -3.25556, 1.79537, 3.08418, -4.4619, 4.20867, -1.98476, -4.94475, 3.96746, -3.6744, -4.70333, 1.79537, -3.19145)
[sub_resource type="ConvexPolygonShape3D" id="ConvexPolygonShape3D_p6adw"]
points = PackedVector3Array(-5.91081, 2.03705, -3.6744, -4.94501, 3.72601, 0.911329, -4.94501, 3.4848, 0.911329, -7.35855, 2.03705, 0.66981, -6.39299, 4.20867, -0.0543001, -4.94501, 3.96746, -3.43288, -4.94501, 1.79537, -1.01993, -6.39299, 2.2785, -3.43288, -4.94501, 1.79537, -3.6744, -6.87566, 3.96746, 0.911329, -5.42814, 2.2785, 0.911329, -5.1867, 4.20867, 0.911329, -6.87566, 3.96746, 0.42829, -5.1867, 3.96746, -3.43288, -5.09521, 4.32306, -0.985651, -5.91081, 1.79537, -2.70877, -7.35855, 2.2785, 0.18722, -7.1171, 2.03705, 0.911329, -6.39299, 2.03705, -3.43288, -4.94501, 2.2785, 0.18722, -5.66936, 3.00214, -3.6744, -5.91081, 1.79537, -1.26145, -4.94501, 4.20867, -0.537339, -6.63444, 3.00214, -1.74314, -7.35855, 2.03705, 0.18722, -5.42814, 3.96746, -2.94984, -6.39299, 4.20867, 0.42829, -5.42814, 1.79537, -3.6744, -5.1867, 3.00214, -3.6744)
[sub_resource type="ConvexPolygonShape3D" id="ConvexPolygonShape3D_b27jx"]
points = PackedVector3Array(-4.55896, 0.786782, 0.396894, -2.28986, 1.79527, 1.87719, -2.28986, 0.829855, 1.87719, -2.28986, 0.829855, -0.295016, -4.46204, 1.31256, -1.26062, -3.49651, 1.55382, 2.8428, -3.2556, 1.79527, -0.295016, -3.49651, 0.829855, 2.8428, -3.73784, 1.79527, 1.87719, -4.46204, 0.829855, -1.26062, -4.2205, 1.0713, 2.1186, -3.01427, 0.829855, 2.8428, -2.28986, 1.0713, -0.295016, -4.46204, 1.31256, 0.187786, -2.28986, 1.79527, 1.15299, -3.73784, 1.79527, -0.295016, -3.97917, 1.0713, -1.26062, -3.01427, 1.55382, 2.8428, -4.2205, 0.829855, 2.1186)
[sub_resource type="ConvexPolygonShape3D" id="ConvexPolygonShape3D_xkhfk"]
points = PackedVector3Array(-6.6343, 1.31256, -2.46737, -4.46251, 1.0713, 0.669927, -4.94536, 1.55382, 2.60133, -6.6343, 0.829855, 2.84275, -6.39288, 1.79527, 2.60133, -4.70394, 1.79527, -3.19164, -5.42796, 0.829855, -2.22594, -7.11741, 1.55382, -0.77678, -4.46251, 0.829855, -1.26024, -4.94536, 0.829855, 2.11848, -7.11741, 1.0713, -0.77678, -4.46251, 1.79527, -1.50105, -5.66938, 1.79527, -3.19164, -6.87573, 1.55382, 2.84275, -6.15171, 0.829855, -2.22594, -5.42796, 1.79527, 2.84275, -4.94536, 1.31256, -3.19164, -4.94536, 1.0713, 2.84275, -6.6343, 1.79527, 0.187077, -5.42796, 1.55382, 3.08418, -4.46251, 1.31256, -2.70879, -6.87573, 1.0713, 2.84275, -6.15171, 1.0713, -2.70879, -4.46251, 0.829855, 0.669927, -6.6343, 1.55382, -2.46737, -6.15171, 1.31256, 3.08418, -5.91029, 0.829855, 2.84275, -6.6343, 0.829855, 1.3942, -6.6343, 1.0713, -2.22594)
[sub_resource type="ConvexPolygonShape3D" id="ConvexPolygonShape3D_l3f5w"]
points = PackedVector3Array(2.5377, 1.55399, 3.08418, 4.95148, 2.27812, 3.32556, 4.95148, 2.27812, 3.08418, 4.95148, 1.79548, 3.32556, 2.5377, 1.79548, 3.32556, 4.95148, 1.79548, 3.08418, 3.02064, 1.55399, 3.32556, 2.5377, 1.79548, 3.08418)
[sub_resource type="ConvexPolygonShape3D" id="ConvexPolygonShape3D_t80tm"]
points = PackedVector3Array(2.29668, 3.7266, -0.295087, 4.22704, 5.41556, 0.670306, 4.46872, 5.17435, 0.428833, 3.2616, 3.00226, 0.911778, 1.81383, 4.45024, 0.911778, 3.2616, 4.9329, -0.777866, 3.50302, 3.00226, 0.187361, 2.5381, 3.00226, 0.911778, 2.77927, 4.9329, -0.777866, 3.98561, 3.48539, 0.911778, 3.98561, 4.45024, -0.295087, 3.02069, 3.00226, -0.053615, 3.98561, 5.17435, 0.911778, 3.74419, 5.41556, 0.670306, 2.05525, 3.96805, -0.295087, 3.2616, 3.96805, -0.536394, 2.29668, 3.24394, 0.187361, 4.46872, 4.9329, 0.187361, 4.22704, 5.41556, 0.187361, 1.81383, 4.20903, 0.911778, 3.98561, 5.17435, -0.295087, 2.05525, 4.20903, -0.295087, 2.29668, 4.20903, -0.536394, 2.77927, 3.00226, -0.053615)
[sub_resource type="ConvexPolygonShape3D" id="ConvexPolygonShape3D_kaqc2"]
points = PackedVector3Array(-1.56572, 1.79537, 3.08451, 1.81357, 3.72639, 3.80852, 0.847677, 2.03712, 4.77366, -1.08278, 3.24344, 4.77366, 1.33062, 1.79537, 3.08451, -1.32425, 3.00207, 3.08451, -1.14218, 1.74783, 4.81524, 1.81357, 3.48463, 3.08451, 0.364733, 3.72639, 4.77366, 0.123922, 3.72639, 3.80852, -1.56572, 2.76088, 4.77366, 1.08915, 1.79537, 4.53221, -1.56572, 3.00207, 3.56708, 1.33062, 3.72639, 3.32579, -1.56572, 2.03712, 4.77366, 1.81357, 3.24344, 3.56708, -0.117219, 3.72639, 4.77366, 1.33062, 1.79537, 3.56708)
[sub_resource type="ConvexPolygonShape3D" id="ConvexPolygonShape3D_bohgk"]
points = PackedVector3Array(-2.28967, -2.79048, -4.39823, 0.848055, -1.82582, -0.0537333, 0.848055, -2.54955, -6.08818, 0.606488, -3.75609, -1.50209, -2.28967, -1.82582, -1.02009, 0.606488, -1.34302, -6.08818, -2.0481, -1.34302, -3.91505, -0.841022, -3.75609, -1.02009, -1.80691, -3.51445, -4.63982, -3.01399, -2.54955, -2.95046, -0.117834, -1.34302, -0.295914, 0.364922, -3.75609, -2.95105, -2.0481, -3.27305, -1.50209, -2.77242, -1.82535, -3.91505, 0.793817, -1.37691, -0.373858, -1.32378, -2.30839, -0.536914, -0.600589, -3.51445, -4.88082, 0.848055, -1.34302, -6.08818, -2.0481, -1.58442, -1.26228, -2.28967, -3.27305, -2.22687, 0.848055, -2.54955, -1.74368, -1.08259, -3.75609, -2.46787, -1.56497, -1.82582, -4.88082, 0.606488, -2.54955, -6.08818, -3.01399, -2.54955, -3.43245, 0.364922, -1.82582, -0.0537333, -1.08259, -1.34302, -1.26228, 0.123733, -3.51445, -1.02009, -2.28967, -2.06698, -1.02009, -2.77242, -1.82535, -3.43245, -3.01399, -2.30815, -2.95046, -1.80691, -3.27305, -1.26228)
[sub_resource type="ConvexPolygonShape3D" id="ConvexPolygonShape3D_mqi4u"]
points = PackedVector3Array(-4.94458, -2.79062, -1.0192, -2.28996, -1.34254, 1.63584, -3.49719, -3.032, 2.35926, -5.18566, -1.34254, 2.35926, -4.46181, -1.34254, -1.50198, -2.77273, -2.54924, -1.74312, -4.70319, -3.27357, 1.3942, -2.53134, -3.032, -0.535922, -3.2558, -1.34254, 3.08418, -2.53134, -1.34254, -0.777559, -5.18566, -2.54943, 2.35926, -5.18566, -1.8253, -1.50198, -3.97965, -2.79062, -1.98476, -2.04857, -1.58411, 1.3942, -4.46181, -2.79062, 2.84254, -3.01411, -2.79062, 2.35926, -3.73827, -3.27357, -0.29478, -4.70319, -1.34254, 3.08418, -3.49719, -2.30806, 3.08418, -5.18566, -2.79062, 0.911423, -2.28996, -2.06706, -0.294284, -4.46181, -3.032, -1.26034, -3.73827, -1.8253, -1.74312, -4.94458, -1.34254, -0.777559, -2.53134, -3.032, -0.0531425, -4.22042, -2.30806, -1.98476, -2.04857, -1.34273, 0.911423, -5.18566, -2.06668, -1.50198, -3.2558, -1.34254, -1.26034, -2.77273, -2.30787, -1.74312, -2.53134, -1.82549, 2.11862, -4.46181, -2.79062, -1.74312)
[sub_resource type="ConvexPolygonShape3D" id="ConvexPolygonShape3D_ygf0w"]
points = PackedVector3Array(-6.63437, -2.30782, -0.0534498, -5.1866, -2.06668, 2.35976, -5.1866, -2.54924, 2.35976, -7.35879, -1.58411, 1.87701, -5.42814, -1.34254, 0.429306, -5.1866, -2.30782, -0.536205, -5.1866, -1.34254, 2.11824, -6.63437, -2.54924, 0.429306, -7.11703, -1.34254, 1.15301, -5.1866, -2.79081, 0.911778, -5.66948, -2.54924, 2.35976, -5.66948, -2.06668, -0.536205, -6.8757, -1.34254, 2.11824, -7.35879, -1.82539, 1.87701, -6.63437, -2.54924, -0.0534498, -5.13859, -1.31053, 1.66778, -6.15214, -1.58411, 2.35976, -6.8757, -2.30782, 1.39425, -5.91081, -1.34254, 0.429306, -5.1866, -2.06668, -0.536205, -5.42814, -2.79081, 1.15301, -7.11703, -1.58411, 0.911778, -6.15214, -2.06668, 2.35976)
[sub_resource type="ConvexPolygonShape3D" id="ConvexPolygonShape3D_cyyub"]
points = PackedVector3Array(-5.66886, -1.3424, 6.46325, -2.04876, 0.829572, 6.46325, -2.04876, 0.829572, 4.77406, -1.34762, -1.93963, 5.18811, -5.42689, 0.346816, 4.77406, -3.97867, -1.82487, 4.77406, -4.46171, 0.105297, 7.1876, -2.77287, -0.618411, 6.94592, -5.91038, 0.346816, 5.98083, -1.56572, 0.105297, 6.46325, -5.66886, -0.618411, 5.01551, -3.01484, 0.829572, 6.94592, -5.42689, -1.10088, 6.94592, -2.04876, -2.06639, 4.77406, -6.1519, -0.135939, 6.70447, -1.56572, 0.588053, 5.49817, -3.25546, -2.06639, 5.25696, -2.04876, 0.588053, 6.94592, -3.25546, 0.829572, 5.73962, -5.66886, -1.3424, 5.73962, -2.29028, -1.10088, 6.46325, -4.70278, 0.588053, 6.70447, -5.18627, -1.10088, 4.77406, -2.04876, -2.06639, 5.25696, -3.73895, -0.377175, 7.1876, -1.56572, -1.82487, 4.77406, -6.1519, -0.618411, 6.22181, -5.91038, 0.346816, 5.49817, -5.91038, -0.618411, 6.94592, -2.77287, 0.829572, 4.77406, -1.56572, -0.618411, 6.22181, -1.77001, 0.260827, 4.88157)
[sub_resource type="ConvexPolygonShape3D" id="ConvexPolygonShape3D_s4wwo"]
points = PackedVector3Array(-4.94483, -0.859789, 3.32589, 1.50659, 1.66047, 4.68783, 1.81314, 1.79537, 4.29079, 3.50309, -0.376632, 3.0843, -1.32535, -0.859789, 4.77366, -5.42768, 1.55392, 3.56716, -5.42768, 0.347714, 4.77366, 1.33029, 1.79537, 3.08463, -5.91052, 0.588383, 3.08463, 2.29598, -0.376372, 4.53206, 2.05364, -0.859789, 3.08463, -4.70157, -0.859789, 4.77366, -2.53061, 1.79537, 4.29079, 3.02025, 0.829572, 4.04936, -5.91052, 1.31247, 4.29079, 1.81314, 1.31247, 4.77366, -1.56677, 1.79537, 3.08463, -5.91052, 0.106265, 3.08463, 3.02025, 0.829572, 3.0843, 1.81314, -0.859789, 4.04936, -4.59403, -0.735302, 3.1638, -5.91052, 0.106265, 3.56716, 0.606029, -0.376372, 4.77366, 3.50309, -0.376632, 3.32589, -5.66818, 1.55392, 4.04936, -1.83575, 1.46298, 4.56217, -5.42768, 0.106265, 4.77366, 2.77883, 0.347194, 4.29096, 2.77883, -0.61808, 3.80826, -5.91052, 1.31247, 3.80859, 1.5708, 1.79537, 3.32589, 3.50309, -0.135443, 3.0843)
[sub_resource type="ConvexPolygonShape3D" id="ConvexPolygonShape3D_eh46o"]
points = PackedVector3Array(0.3653, -2.30777, 4.77366, -4.70363, -1.58385, 3.08451, -4.70363, -0.859789, 3.08451, -4.70363, -1.10133, 4.77366, 0.3653, -1.34273, 3.56708, -1.79099, -0.826827, 4.81211, -2.0224, -2.46874, 4.07624, -3.97922, -1.82511, 4.77366, 0.123662, -1.58385, 3.32579, -4.22036, -2.06651, 3.08451, -2.04909, -0.859789, 3.08451, 0.123662, -1.34273, 4.29093, -0.600259, -2.30777, 4.04948, -1.80745, -2.30777, 4.77366, -4.46878, -0.926878, 4.69539, -1.32468, -0.859789, 4.29093, 0.3653, -2.06651, 4.77366, -4.22036, -2.06651, 3.32579, 0.3653, -2.30777, 4.53221, -3.97922, -2.06651, 3.08451, -4.70363, -1.58385, 3.56708, 0.3653, -1.34273, 4.04948)
[sub_resource type="ConvexPolygonShape3D" id="ConvexPolygonShape3D_da7t8"]
points = PackedVector3Array(-4.9445, -0.136002, -2.70889, -2.29066, 0.105533, 3.08418, -2.29066, -0.376474, 3.08418, -6.63338, -0.859545, 2.11848, -6.39278, 0.829714, 1.63648, -3.01459, -1.34198, -1.74319, -2.29066, 0.829288, -0.294922, -2.29108, -1.3424, 3.08418, -6.63338, -1.3424, 1.15334, -5.668, 0.829714, 3.08418, -5.90988, 0.587966, -1.74319, -5.18595, -1.34198, -1.74319, -4.70305, -1.3424, 3.08418, -3.97997, 0.10532, -2.70889, -3.01501, 0.829714, 2.84261, -5.18595, 0.829288, -1.50162, -2.53169, -1.34198, -0.778055, -3.73894, -1.10066, -2.46732, -5.42697, -0.376687, -2.46732, -6.39193, -1.3424, 2.35948, -3.01459, -0.61801, -1.98419, -2.23726, 0.856424, 0.682079, -2.29066, -0.376687, -0.536489, -6.3932, -0.136002, -0.0539222, -6.39278, 0.588178, 2.35948, -5.668, -0.135577, 3.08418, -3.97997, 0.829288, -1.26005, -2.29066, 0.829714, 1.87691, -3.25646, 0.829714, 3.08418, -4.9445, 0.10532, -2.70889, -4.22142, -1.10066, -2.46732, -5.90988, 0.346643, -1.74319)
[sub_resource type="ConvexPolygonShape3D" id="ConvexPolygonShape3D_73q2f"]
points = PackedVector3Array(-3.49653, -4.23891, 3.08451, -0.11833, -2.3085, 5.01487, 0.123638, -2.54962, 5.01487, -3.49653, -3.99737, 4.77355, -4.22074, -2.79095, 4.04959, -1.80658, -2.54962, 3.56715, -1.08365, -3.51472, 3.56734, -0.600991, -3.51472, 5.01487, -2.7719, -2.79095, 5.01487, -3.25541, -4.48046, 3.56715, -0.359448, -2.3085, 4.04978, -2.28924, -2.3085, 4.29091, -4.22074, -3.51514, 4.53204, 0.123638, -2.79095, 4.53223, -4.22074, -2.79095, 4.53204, -1.32434, -2.3085, 5.01487, -3.97919, -3.27382, 3.56715, -2.28924, -2.3085, 3.80865, -1.28306, -3.52157, 5.06989, -2.53079, -3.99737, 4.77317, -3.01387, -4.23891, 3.08451, -3.73765, -4.23891, 3.56715, -3.49653, -3.99737, 3.08451, -1.80743, -3.51472, 3.32621, -4.22074, -3.27382, 3.80865, -3.25541, -4.48046, 3.32583, -0.600991, -3.51472, 4.77336, -3.49653, -4.48046, 3.56715)
[sub_resource type="ConvexPolygonShape3D" id="ConvexPolygonShape3D_qc365"]
points = PackedVector3Array(-1.08212, -3.9977, 5.73971, -0.117952, -1.10145, 5.25684, -0.117952, -1.10145, 5.0154, 0.848055, -3.03228, 5.98114, -0.840691, -3.03228, 7.42872, -2.28986, -3.03228, 5.49827, 0.365205, -3.27328, 5.0154, -1.56527, -1.5843, 4.77396, -0.841306, -1.34273, 6.22206, -1.56527, -3.75613, 5.0154, -2.04843, -3.9977, 6.70441, -2.04843, -2.791, 6.46298, -0.117952, -1.34273, 6.22206, -0.600802, -3.9977, 6.22206, 0.364898, -2.06687, 4.77396, -0.600802, -3.27328, 7.42872, -0.35907, -2.30815, 7.18728, 0.606016, -1.8253, 5.0154, -1.56527, -2.30815, 4.77396, 0.848055, -2.791, 5.98114, -1.56527, -1.5843, 5.25684, 0.848055, -3.03228, 5.49827, -2.04843, -3.51457, 5.25684, -0.600802, -3.9977, 5.73971, 0.606016, -1.8253, 5.49827, -0.600802, -2.30815, 7.18728, 0.364898, -2.30815, 4.77396, -2.04843, -3.27328, 6.70441, -1.08212, -3.75613, 5.0154, -1.08242, -1.34273, 5.25684, -1.80701, -2.791, 6.70441, -2.04843, -3.75613, 5.49827)
[sub_resource type="ConvexPolygonShape3D" id="ConvexPolygonShape3D_qe82o"]
points = PackedVector3Array(0.769626, -0.382415, 3.78389, 1.99333, 0.229616, 1.58066, 1.99333, 0.351993, 1.58066, 3.09537, 0.107095, 2.43736, 3.218, -0.749691, 1.58066, 0.157451, -0.62717, 2.68217, 0.157451, 0.474371, 3.66116, 3.34031, 0.474371, 1.58066, 0.525338, -0.872213, 3.66116, 2.23826, -0.62717, 3.17156, 2.36057, 0.229616, 3.17156, 0.157451, 0.474371, 2.80424, 2.11596, -0.749691, 1.58066, 2.72781, 0.596892, 2.19256, 3.34031, -0.749691, 1.82546, 1.50443, -0.872213, 2.07027, 0.157451, -0.62717, 3.78389, 0.402385, 0.474371, 3.78389, 2.23826, 0.596892, 1.82546, 1.01456, 0.107095, 2.07027, 2.11596, -0.872213, 2.68217, 2.48352, 0.474371, 2.80424, 0.892255, 0.229616, 3.78389, 3.46294, 0.351993, 1.70295, 1.13687, -0.62717, 3.66116, 0.157451, 0.351993, 2.68217, 2.97307, -0.62717, 2.43736, 0.892255, -0.62717, 2.19256, 3.09537, 0.474371, 2.19256, 0.402385, -0.872213, 3.53865, 1.13687, 0.474371, 3.53865, 3.46294, -0.504937, 1.70295)
[sub_resource type="ConvexPolygonShape3D" id="ConvexPolygonShape3D_uegxe"]
points = PackedVector3Array(3.70758, -0.137612, 1.33521, 2.6061, -0.260074, 0.111125, 2.6061, 0.351969, 0.111125, 2.11642, -0.260074, 1.58009, 3.70758, -0.749787, 0.111125, 3.58512, 0.474431, 1.2127, 2.23889, -0.749787, 1.58009, 3.70758, 0.474431, 0.111125, 2.36135, 0.474431, 1.58009, 3.46266, -0.627326, 1.58009, 2.6061, -0.627326, 0.233778, 3.46266, 0.474431, 1.58009, 2.97332, 0.596892, 0.233778, 3.83021, -0.627326, 0.478509, 3.21791, 0.596892, 1.33521, 3.83021, 0.229508, 0.601019, 3.46266, -0.749787, 1.33521, 2.11642, -0.0154147, 1.45758, 3.83021, 0.229508, 0.111125, 3.58512, -0.504865, 1.58009, 2.23889, 0.351969, 1.33521, 2.6061, -0.749787, 0.845606, 2.11642, -0.260074, 1.45758, 2.72856, 0.474431, 0.111125, 2.72856, -0.627326, 0.111125, 3.70758, 0.351969, 1.09034, 3.83021, -0.504865, 0.111125, 3.21791, 0.596892, 0.233778, 3.70758, -0.749787, 0.723384, 2.23889, -0.749787, 1.45758, 3.70758, -0.627326, 1.09034, 3.46266, -0.749787, 0.111125)
[sub_resource type="ConvexPolygonShape3D" id="ConvexPolygonShape3D_txj2d"]
points = PackedVector3Array(1.99386, -0.259894, -3.43886, 3.83021, 0.229616, 0.110778, 3.70757, 0.474371, 0.110778, 2.60625, -0.504937, 0.110778, 1.74898, 0.474371, -2.21477, 3.4629, -0.749691, -1.60289, 2.85071, 0.474371, -2.58203, 1.74898, -0.749691, -2.21477, 3.70757, -0.872213, 0.110778, 2.72848, 0.474371, 0.110778, 1.87142, -0.749691, -3.31621, 1.74898, 0.474371, -3.31621, 3.34046, 0.229616, -2.09211, 2.97295, 0.596892, -1.8475, 2.72848, -0.62717, -2.82664, 2.60625, -0.749691, -0.134181, 3.83021, 0.229616, -0.379139, 1.74898, 0.107095, -1.96981, 2.11629, 0.596892, -2.70433, 2.60625, 0.351993, -2.94895, 2.60625, 0.351993, 0.110778, 3.4629, 0.474371, -1.35828, 3.09559, -0.872213, -0.991015, 1.74898, -0.62717, -3.43886, 3.70757, -0.504937, -0.868709, 2.48361, 0.596892, -1.48058, 3.09559, -0.259894, -2.45938, 2.85071, -0.749691, -2.58203, 1.74898, -0.504937, -1.96981, 2.36137, -0.62717, -3.1939, 1.87142, 0.351993, -3.43886, 3.83021, -0.382415, -0.256486)
[sub_resource type="ConvexPolygonShape3D" id="ConvexPolygonShape3D_wjkvq"]
points = PackedVector3Array(0.157606, -0.259894, -3.92891, 1.74898, -0.259894, -2.09253, 1.74898, -0.504937, -2.09253, 1.74898, -0.0152829, -3.56149, 0.157606, 0.474371, -2.82719, 0.157606, -0.872213, -3.31667, 1.38151, -0.872213, -3.56149, 1.74898, 0.474371, -3.31667, 1.74898, 0.474371, -2.21512, 0.157606, -0.62717, -2.70478, 0.157606, 0.474371, -3.68391, 1.13664, 0.229616, -3.80632, 0.402481, 0.351993, -2.58237, 1.38151, 0.596892, -2.70478, 1.74898, -0.749691, -3.43908, 1.74898, -0.62717, -2.21512, 0.157606, -0.749691, -3.80632, 0.892231, -0.62717, -3.80632, 0.647356, -0.749691, -2.58237, 1.50395, 0.474371, -3.56149, 1.62639, -0.259894, -2.09253, 1.38151, -0.872213, -3.31667, 1.38151, 0.351993, -2.21512, 1.0142, 0.351993, -3.80632, 1.25908, 0.596892, -2.94961, 0.769793, -0.872213, -3.68391, 1.62639, -0.504937, -2.09253, 0.280044, -0.13766, -3.92891, 0.157606, 0.351993, -2.70478, 1.62639, -0.504937, -3.56149, 1.62639, 0.474371, -2.21512, 0.157606, -0.749691, -2.82719)
[sub_resource type="ConvexPolygonShape3D" id="ConvexPolygonShape3D_73c1a"]
points = PackedVector3Array(-3.02561, -0.627326, 2.31509, -3.02561, -0.627326, 2.43738, 0.157451, -0.749787, 3.66128, 0.157451, 0.351969, 2.68225, -2.0457, 0.474431, 3.29397, 0.157451, -0.627326, 2.68225, -2.7804, 0.474431, 2.31509, -1.06735, -0.627326, 3.78372, -1.55622, -0.749787, 2.31509, 0.157451, 0.596892, 3.17153, -2.41336, -0.749787, 3.04956, -1.43408, 0.474431, 2.31509, -0.699695, 0.474431, 3.78372, 0.157451, -0.504865, 3.90631, -2.7804, 0.229508, 2.80469, -1.8008, 0.351969, 3.53884, -1.92357, 0.596892, 3.04956, -0.822456, 0.107178, 3.90631, -1.55622, 0.596892, 2.43738, -2.0457, -0.260074, 3.41641, 0.0350013, 0.229508, 3.90631, -3.02561, 0.351969, 2.43738, 0.157451, 0.474431, 3.66128, -0.577245, -0.749787, 3.78372, -1.55622, -0.382403, 3.66128, -1.31194, 0.351969, 2.31509, -2.65795, -0.749787, 2.31509, -0.577245, -0.627326, 3.90631, -0.699695, 0.596892, 3.41641, -2.41336, -0.137612, 3.17153, -0.455108, -0.749787, 2.80469, -1.31194, 0.474431, 3.66128)
[sub_resource type="ConvexPolygonShape3D" id="ConvexPolygonShape3D_j6ae1"]
points = PackedVector3Array(-3.02541, 0.474371, 2.31478, -4.00501, -0.62717, 0.111125, -3.88222, -0.749691, 0.233647, -1.43433, 0.351993, 2.19226, -2.65852, -0.872213, 2.31478, -2.90286, 0.474371, 0.111125, -2.78057, -0.62717, 0.111125, -1.67917, -0.749691, 2.31478, -4.00501, 0.351993, 0.111125, -3.75992, -0.749691, 1.33504, -3.63738, 0.474371, 1.58009, -3.39254, 0.596892, 0.233647, -3.27024, -0.62717, 2.19226, -1.67917, 0.474371, 2.31478, -2.90286, -0.749691, 0.111125, -3.88222, 0.107095, 1.21295, -1.55688, -0.504937, 2.19226, -3.51508, -0.872213, 1.58009, -2.78057, 0.351993, 0.111125, -3.51508, 0.229616, 1.94743, -3.1477, 0.596892, 1.21295, -4.00501, -0.0152829, 0.7233, -3.63738, 0.596892, 0.356168, -1.43433, -0.0152829, 2.19226, -3.1477, -0.62717, 2.31478, -3.88222, 0.474371, 0.7233, -2.53623, -0.872213, 2.19226, -1.67917, -0.749691, 2.19226, -3.88222, -0.62717, 1.09086, -2.90286, 0.596892, 0.968127, -1.43433, -0.0152829, 2.31478, -3.27024, -0.872213, 1.45757)
[sub_resource type="ConvexPolygonShape3D" id="ConvexPolygonShape3D_3vfx2"]
points = PackedVector3Array(-4.00501, -0.259894, -0.623475, -1.67893, 0.351993, -2.21467, -1.67893, -0.504937, -2.21467, -2.78118, 0.351993, 0.111125, -3.14776, 0.474371, -2.21467, -2.90276, -0.749691, -0.0113479, -3.14776, -0.872213, -2.09244, -3.88252, 0.474371, 0.111125, -3.88252, -0.62717, 0.111125, -2.90276, 0.596892, -0.623475, -3.27026, -0.62717, -2.33738, -3.75979, 0.351993, -1.35784, -1.80143, 0.474371, -2.33738, -3.75979, -0.749691, -1.35784, -1.80143, -0.62717, -2.33738, -2.78118, -0.62717, 0.111125, -3.63752, 0.596892, -0.868422, -3.88252, -0.749691, -0.256295, -2.16869, -0.749691, -1.72502, -3.14776, 0.351993, -2.33738, -4.00501, 0.351993, -0.378768, -2.90276, 0.474371, 0.111125, -4.00501, -0.382415, 0.111125, -3.02526, -0.872213, -1.60278, -3.39275, 0.107095, -2.09244, -1.80143, -0.62717, -2.09244, -3.88252, -0.0152829, -1.11313, -4.00501, -0.504937, -0.378768, -3.02526, -0.749691, -2.33738, -4.00501, 0.351993, 0.111125, -3.02526, 0.474371, -2.33738, -1.80143, 0.474371, -2.21467)
[sub_resource type="ConvexPolygonShape3D" id="ConvexPolygonShape3D_r0un4"]
points = PackedVector3Array(-1.43414, 0.351993, -2.33738, -0.944917, -0.259894, -3.9286, -0.944917, -0.13766, -3.9286, -3.14803, 0.107095, -2.58241, 0.157451, -0.749691, -2.82729, -2.78015, -0.872213, -2.58241, 0.157451, 0.474371, -3.80632, -0.087484, -0.749691, -3.9286, 0.157451, 0.351993, -2.70485, -1.67875, 0.596892, -3.19413, -2.1683, -0.62717, -3.43901, -1.67875, 0.351993, -3.68388, -1.67875, -0.62717, -2.33738, -3.02541, 0.474371, -2.33738, -0.454724, 0.596892, -2.94973, -3.14803, -0.504937, -2.33738, -2.04567, 0.596892, -2.33738, 0.157451, -0.62717, -2.70485, -2.53586, 0.229616, -3.19413, 0.157451, -0.749691, -3.68388, -0.454724, 0.351993, -3.9286, -2.78015, 0.474371, -2.82729, -1.31183, -0.749691, -3.68388, -0.577677, 0.596892, -3.56144, -2.78015, -0.749691, -2.82729, 0.157451, 0.229616, -3.9286, 0.157451, 0.474371, -2.82729, -1.67875, -0.62717, -3.68388, -1.43414, 0.474371, -3.68388, -2.78015, -0.749691, -2.33738, -2.41323, -0.0152829, -3.31657, -2.78015, -0.872213, -2.70485)
[sub_resource type="ConvexPolygonShape3D" id="ConvexPolygonShape3D_153go"]
points = PackedVector3Array(-0.0447068, 0.34365, 0.923985, -0.108871, 0.34365, 0.923985, 0.147611, 2.33148, -0.166316, 0.788906, -1.00286, 0.0260072, -0.750341, -0.7465, 0.41083, -0.686177, 1.4338, -0.10215, -0.0447068, -1.4517, 0.731486, 0.275765, -0.29726, -0.871971, 0.660576, 1.62627, 0.0260072, 0.147611, 1.88264, 0.667319, 0.85307, -0.104786, 0.346487, -0.390999, 0.401667, -0.794578, -0.0447068, -1.51599, -0.615305, -0.750341, -0.554026, -0.486972, 0.660576, 1.56198, -0.358815, -0.429694, 1.56198, 0.474996, -0.0447068, 2.01122, -0.486972, 0.275765, -0.425443, 0.923985, -0.493683, -1.4517, -0.0379834, 0.532423, -1.58029, 0.0899978, 0.596412, -1.13145, -0.486972, -0.429694, -0.0408963, 0.859819, 0.468258, 0.792086, 0.73131, 0.532423, -1.13145, 0.538987, 0.019282, 2.39617, 0.154164, -0.301365, -0.425443, -0.871971, -0.173036, -1.70887, 0.282497, 0.339929, 2.26759, 0.346663, -0.750341, -0.489735, 0.538987, 0.404094, 1.36951, -0.615305, -0.493683, -1.25963, 0.603153, 0.596412, -0.104786, -0.615305)
[sub_resource type="ConvexPolygonShape3D" id="ConvexPolygonShape3D_k6n4m"]
points = PackedVector3Array(0.142864, 0.21587, 0.936226, -0.498272, 2.01122, -0.0897767, -0.819104, -0.874683, 0.166223, 0.912685, -0.490136, -0.15405, 0.656019, 1.88264, -0.0899588, 0.271197, -1.70887, 0.230496, -0.177616, -1.32352, -0.731415, -0.305949, 1.56198, -0.667142, 0.271197, -0.0404945, -0.859598, -0.177616, 1.4334, 0.679498, 0.784352, 0.0233956, 0.487225, -0.883271, 0.663904, -0.0258677, -0.562439, -0.554027, 0.679498, -0.690771, -0.23337, -0.538778, 0.527862, -1.25963, 0.551134, 0.335363, 2.33188, -0.218141, 0.592029, -1.13105, -0.474869, -0.370115, -1.516, 0.358861, 0.463696, 1.56198, 0.422952, 0.720186, -1.4517, 0.230496, -0.11345, -1.00286, 0.743771, -0.177616, 2.139, 0.294587, 0.463696, 1.75446, -0.410596, 0.142864, -1.58029, -0.538778, -0.434282, -0.810391, -0.731415, -0.561624, -1.38534, -0.137651, -0.434282, 1.56198, 0.422952, 0.912685, 0.34365, 0.230496, -0.370115, 0.40754, 0.807862, 0.0788735, 1.62627, -0.667142, -0.754938, -0.682209, -0.410596, 0.271197, -0.618318, -0.859598)
[sub_resource type="ConvexPolygonShape3D" id="ConvexPolygonShape3D_m6524"]
points = PackedVector3Array(-1.75039, -1.44095, -0.036438, -1.68433, -1.83572, -0.299201, -0.43473, 1.71556, -1.5492, 1.40664, -2.16414, -0.365063, -0.105816, 1.58452, 1.60771, 0.617379, -1.96676, 1.67357, -0.566157, -1.96717, -1.68093, -1.75039, 1.3212, -0.234022, 1.47235, 1.38713, -0.562647, -1.5529, -1.5724, 0.620812, 1.80161, 1.25527, 0.291846, 0.157038, -1.17763, -1.61507, -1.5529, -2.16414, 0.226325, -0.697584, 1.97929, 0.226325, 1.73555, -1.83572, 0.291846, 0.814867, 1.12382, 1.54185, 1.66984, -1.5724, -0.562647, 1.40664, 1.7819, -0.036438, -1.42113, 1.51859, 0.620812, -0.961133, 1.45265, -1.41748, 0.157038, 1.3212, -1.61507, -0.369017, -1.70385, 1.41047, 1.27521, -2.16414, 0.949778, -0.631871, -2.23049, -1.35196, 0.551666, 1.78149, 1.27874, 0.617379, -2.23049, 1.34426, 0.88058, -1.50647, 1.60737, -0.829358, -1.5724, -1.61507, -1.61861, 1.71556, -0.036438, 0.157038, -2.16456, -1.41782, -0.105816, 1.97929, -0.825752, 0.0913244, 0.466143, 1.73943)
[sub_resource type="ConvexPolygonShape3D" id="ConvexPolygonShape3D_hqdvr"]
points = PackedVector3Array(-0.411673, -0.155106, -2.21299, 0.767761, -0.0164365, 1.88057, 0.767761, -0.363177, 1.88057, -0.342339, -0.571249, 2.01967, -0.272855, 0.469245, 1.67235, 0.212487, 0.399843, -2.07389, 0.00448328, -0.848859, -2.00477, -0.758794, 0.33044, -1.31056, -0.758794, -0.571249, -1.79655, 0.559458, 0.469245, 1.95012, 0.351305, -0.571249, -2.07389, 0.628793, -0.779456, 1.74147, -0.272855, -0.779456, 1.6028, -0.550492, 0.469245, -2.00477, 0.698277, 0.261038, 0.770782, -0.272855, 0.399843, 2.08879, 0.559458, -0.640651, 2.15834, -0.134186, 0.538647, -0.824999, -0.619976, -0.779456, -1.727, 0.420789, 0.261038, -1.51878, 0.767761, -0.571249, 1.67235, 0.281971, -0.848859, -1.17189, 0.559458, 0.469245, 0.631244, 0.698277, 0.33044, 2.08879, -0.134186, -0.0164365, 2.22789, -0.68931, -0.640651, -2.07389, -0.68931, 0.33044, -2.07389, -0.20352, 0.538647, 1.18635, -0.550492, -0.0858389, 0.562126, 0.559458, -0.0858389, -0.616778, 0.351305, 0.538647, 1.04769, -0.342339, 0.33044, 1.95012)
[sub_resource type="ConvexPolygonShape3D" id="ConvexPolygonShape3D_ypgf0"]
points = PackedVector3Array(-0.411673, -0.155106, -2.21299, 0.767761, -0.0164365, 1.88057, 0.767761, -0.363177, 1.88057, -0.342339, -0.571249, 2.01967, -0.272855, 0.469245, 1.67235, 0.212487, 0.399843, -2.07389, 0.00448328, -0.848859, -2.00477, -0.758794, 0.33044, -1.31056, -0.758794, -0.571249, -1.79655, 0.559458, 0.469245, 1.95012, 0.351305, -0.571249, -2.07389, 0.628793, -0.779456, 1.74147, -0.272855, -0.779456, 1.6028, -0.550492, 0.469245, -2.00477, 0.698277, 0.261038, 0.770782, -0.272855, 0.399843, 2.08879, 0.559458, -0.640651, 2.15834, -0.134186, 0.538647, -0.824999, -0.619976, -0.779456, -1.727, 0.420789, 0.261038, -1.51878, 0.767761, -0.571249, 1.67235, 0.281971, -0.848859, -1.17189, 0.559458, 0.469245, 0.631244, 0.698277, 0.33044, 2.08879, -0.134186, -0.0164365, 2.22789, -0.68931, -0.640651, -2.07389, -0.68931, 0.33044, -2.07389, -0.20352, 0.538647, 1.18635, -0.550492, -0.0858389, 0.562126, 0.559458, -0.0858389, -0.616778, 0.351305, 0.538647, 1.04769, -0.342339, 0.33044, 1.95012)
[sub_resource type="ConvexPolygonShape3D" id="ConvexPolygonShape3D_t3ur5"]
points = PackedVector3Array(-0.411673, -0.155106, -2.21299, 0.767761, -0.0164365, 1.88057, 0.767761, -0.363177, 1.88057, -0.342339, -0.571249, 2.01967, -0.272855, 0.469245, 1.67235, 0.212487, 0.399843, -2.07389, 0.00448328, -0.848859, -2.00477, -0.758794, 0.33044, -1.31056, -0.758794, -0.571249, -1.79655, 0.559458, 0.469245, 1.95012, 0.351305, -0.571249, -2.07389, 0.628793, -0.779456, 1.74147, -0.272855, -0.779456, 1.6028, -0.550492, 0.469245, -2.00477, 0.698277, 0.261038, 0.770782, -0.272855, 0.399843, 2.08879, 0.559458, -0.640651, 2.15834, -0.134186, 0.538647, -0.824999, -0.619976, -0.779456, -1.727, 0.420789, 0.261038, -1.51878, 0.767761, -0.571249, 1.67235, 0.281971, -0.848859, -1.17189, 0.559458, 0.469245, 0.631244, 0.698277, 0.33044, 2.08879, -0.134186, -0.0164365, 2.22789, -0.68931, -0.640651, -2.07389, -0.68931, 0.33044, -2.07389, -0.20352, 0.538647, 1.18635, -0.550492, -0.0858389, 0.562126, 0.559458, -0.0858389, -0.616778, 0.351305, 0.538647, 1.04769, -0.342339, 0.33044, 1.95012)
[sub_resource type="ConvexPolygonShape3D" id="ConvexPolygonShape3D_jgpkb"]
points = PackedVector3Array(-0.411673, -0.155106, -2.21299, 0.767761, -0.0164365, 1.88057, 0.767761, -0.363177, 1.88057, -0.342339, -0.571249, 2.01967, -0.272855, 0.469245, 1.67235, 0.212487, 0.399843, -2.07389, 0.00448328, -0.848859, -2.00477, -0.758794, 0.33044, -1.31056, -0.758794, -0.571249, -1.79655, 0.559458, 0.469245, 1.95012, 0.351305, -0.571249, -2.07389, 0.628793, -0.779456, 1.74147, -0.272855, -0.779456, 1.6028, -0.550492, 0.469245, -2.00477, 0.698277, 0.261038, 0.770782, -0.272855, 0.399843, 2.08879, 0.559458, -0.640651, 2.15834, -0.134186, 0.538647, -0.824999, -0.619976, -0.779456, -1.727, 0.420789, 0.261038, -1.51878, 0.767761, -0.571249, 1.67235, 0.281971, -0.848859, -1.17189, 0.559458, 0.469245, 0.631244, 0.698277, 0.33044, 2.08879, -0.134186, -0.0164365, 2.22789, -0.68931, -0.640651, -2.07389, -0.68931, 0.33044, -2.07389, -0.20352, 0.538647, 1.18635, -0.550492, -0.0858389, 0.562126, 0.559458, -0.0858389, -0.616778, 0.351305, 0.538647, 1.04769, -0.342339, 0.33044, 1.95012)
[sub_resource type="ConvexPolygonShape3D" id="ConvexPolygonShape3D_g7x2q"]
points = PackedVector3Array(3.7075, -0.872213, -0.0113001, 2.97276, 0.596892, -1.84663, -3.63764, 0.596892, 0.355305, -3.51416, -0.872213, 1.58013, 2.7281, 0.596892, 2.19217, 1.38055, -0.872213, -3.56154, 1.13666, -0.872213, 3.41623, -2.78018, 0.474371, -2.8268, -3.75959, -0.749691, -1.35654, -1.80078, 0.474371, 3.41623, -0.454005, 0.596892, -3.56154, -1.43341, -0.62717, 3.66089, -2.78018, -0.872213, -2.70408, 2.36072, 0.474371, -3.07146, 3.46207, 0.474371, 1.58013, 3.09547, -0.62717, -2.33671, 2.36072, -0.749691, 2.92614, 0.401918, 0.474371, 3.7836, -3.63764, 0.474371, 1.58013, 3.7075, 0.474371, -0.255192, -3.88153, 0.474371, -0.622564, -1.92273, 0.596892, 3.04886, -0.0874, -0.749691, -3.92891, -2.41281, -0.749691, 3.04886, -4.00501, -0.62717, 0.110646, 3.58479, -0.62717, 1.45742, 1.50403, 0.474371, -3.56154, -1.43341, 0.474371, -3.68349, 2.48344, 0.474371, 2.80343, -2.16815, -0.62717, -3.43883, -0.454005, -0.62717, 3.90631, 3.34013, 0.474371, -1.72468)
[sub_resource type="ConvexPolygonShape3D" id="ConvexPolygonShape3D_jlwpd"]
points = PackedVector3Array(1.33496, 0.212301, 0.076003, -0.111274, 0.0115363, 1.41291, 0.0218426, -1.01001, -1.20748, -0.0222557, -1.01001, 1.19058, -0.244664, 0.500167, -1.252, -1.08856, -1.00986, 0.30209, -0.822049, 0.500015, 0.924004, 1.04322, -0.921139, 0.613186, 0.954479, 0.500167, 0.746473, 0.998851, -0.0774856, -0.941182, -0.910794, -0.56566, -1.02995, 1.08787, -1.00986, -0.318989, 0.998851, 0.500015, -0.718851, -0.999538, -0.210638, 0.924004, -1.31042, 0.366711, -0.452555, 0.421466, 0.233558, 1.36839, -0.289036, 0.144841, -1.42981, -1.1773, -0.876552, -0.363511, 1.3541, 0.0558189, 0.52442, 0.554856, 0.0115363, -1.29652, 0.821088, -0.476791, 1.10181, -0.644287, -0.921139, 1.05729, -1.26604, 0.189123, 0.391133, 1.30973, 0.0113841, -0.585564, 0.954479, -0.7434, -0.807616, -0.866422, 0.144689, -1.16296, -1.26604, -0.787682, 0.169081, -0.244664, 0.366863, 1.36839, 0.0662147, 0.544602, 0.701951, -0.999538, 0.500015, -0.763373, -0.688659, -0.921139, -1.02995, -0.599915, -0.0773334, 1.27934)
[sub_resource type="ConvexPolygonShape3D" id="ConvexPolygonShape3D_vu7qi"]
points = PackedVector3Array(1.33496, 0.212288, 0.0759557, -0.111319, 0.0115006, 1.41281, 0.0217925, -1.01001, -1.20748, -0.0223042, -1.01001, 1.19049, -0.244705, 0.500114, -1.25201, -1.08857, -1.01001, 0.302029, -0.822069, 0.500114, 0.92392, 1.04314, -0.921141, 0.613114, 0.954395, 0.500114, 0.746396, 0.998766, -0.0775181, -0.941198, -0.91081, -0.565675, -1.02996, 1.08778, -1.01001, -0.319028, 0.998766, 0.500114, -0.718876, -0.999552, -0.210666, 0.92392, -1.31042, 0.366662, -0.452589, 0.421401, 0.233515, 1.36829, -0.289075, 0.1448, -1.42981, -1.17731, -0.876556, -0.363549, 1.354, 0.0557817, 0.524351, 0.554787, 0.0115006, -1.29653, 0.82101, -0.476961, 1.10172, -0.644313, -0.921141, 1.0572, -1.26605, 0.189081, 0.391069, 1.30963, 0.0113484, -0.585593, 0.954395, -0.743408, -0.807638, -0.86644, 0.144648, -1.16296, -1.26605, -0.78769, 0.169024, -0.244705, 0.366814, 1.36829, 0.066163, 0.544548, 0.701876, -0.999552, 0.500114, -0.763396, -0.688684, -0.921141, -1.02996, -0.599943, -0.0775181, 1.27925)
[sub_resource type="ConvexPolygonShape3D" id="ConvexPolygonShape3D_s7fdx"]
points = PackedVector3Array(-0.0447068, 0.34365, 0.923985, -0.108871, 0.34365, 0.923985, 0.147611, 2.33148, -0.166316, 0.788906, -1.00286, 0.0260072, -0.750341, -0.7465, 0.41083, -0.686177, 1.4338, -0.10215, -0.0447068, -1.4517, 0.731486, 0.275765, -0.29726, -0.871971, 0.660576, 1.62627, 0.0260072, 0.147611, 1.88264, 0.667319, 0.85307, -0.104786, 0.346487, -0.390999, 0.401667, -0.794578, -0.0447068, -1.51599, -0.615305, -0.750341, -0.554026, -0.486972, 0.660576, 1.56198, -0.358815, -0.429694, 1.56198, 0.474996, -0.0447068, 2.01122, -0.486972, 0.275765, -0.425443, 0.923985, -0.493683, -1.4517, -0.0379834, 0.532423, -1.58029, 0.0899978, 0.596412, -1.13145, -0.486972, -0.429694, -0.0408963, 0.859819, 0.468258, 0.792086, 0.73131, 0.532423, -1.13145, 0.538987, 0.019282, 2.39617, 0.154164, -0.301365, -0.425443, -0.871971, -0.173036, -1.70887, 0.282497, 0.339929, 2.26759, 0.346663, -0.750341, -0.489735, 0.538987, 0.404094, 1.36951, -0.615305, -0.493683, -1.25963, 0.603153, 0.596412, -0.104786, -0.615305)
[sub_resource type="ConvexPolygonShape3D" id="ConvexPolygonShape3D_go7ho"]
points = PackedVector3Array(1.33496, 0.212288, 0.0759557, -0.111319, 0.0115006, 1.41281, 0.0217925, -1.01001, -1.20748, -0.0223042, -1.01001, 1.19049, -0.244705, 0.500114, -1.25201, -1.08857, -1.01001, 0.302029, -0.822069, 0.500114, 0.92392, 1.04314, -0.921141, 0.613114, 0.954395, 0.500114, 0.746396, 0.998766, -0.0775181, -0.941198, -0.91081, -0.565675, -1.02996, 1.08778, -1.01001, -0.319028, 0.998766, 0.500114, -0.718876, -0.999552, -0.210666, 0.92392, -1.31042, 0.366662, -0.452589, 0.421401, 0.233515, 1.36829, -0.289075, 0.1448, -1.42981, -1.17731, -0.876556, -0.363549, 1.354, 0.0557817, 0.524351, 0.554787, 0.0115006, -1.29653, 0.82101, -0.476961, 1.10172, -0.644313, -0.921141, 1.0572, -1.26605, 0.189081, 0.391069, 1.30963, 0.0113484, -0.585593, 0.954395, -0.743408, -0.807638, -0.86644, 0.144648, -1.16296, -1.26605, -0.78769, 0.169024, -0.244705, 0.366814, 1.36829, 0.066163, 0.544548, 0.701876, -0.999552, 0.500114, -0.763396, -0.688684, -0.921141, -1.02996, -0.599943, -0.0775181, 1.27925)
[sub_resource type="ConvexPolygonShape3D" id="ConvexPolygonShape3D_f7p2b"]
points = PackedVector3Array(-0.0447068, 0.34365, 0.923985, -0.108871, 0.34365, 0.923985, 0.147611, 2.33148, -0.166316, 0.788906, -1.00286, 0.0260072, -0.750341, -0.7465, 0.41083, -0.686177, 1.4338, -0.10215, -0.0447068, -1.4517, 0.731486, 0.275765, -0.29726, -0.871971, 0.660576, 1.62627, 0.0260072, 0.147611, 1.88264, 0.667319, 0.85307, -0.104786, 0.346487, -0.390999, 0.401667, -0.794578, -0.0447068, -1.51599, -0.615305, -0.750341, -0.554026, -0.486972, 0.660576, 1.56198, -0.358815, -0.429694, 1.56198, 0.474996, -0.0447068, 2.01122, -0.486972, 0.275765, -0.425443, 0.923985, -0.493683, -1.4517, -0.0379834, 0.532423, -1.58029, 0.0899978, 0.596412, -1.13145, -0.486972, -0.429694, -0.0408963, 0.859819, 0.468258, 0.792086, 0.73131, 0.532423, -1.13145, 0.538987, 0.019282, 2.39617, 0.154164, -0.301365, -0.425443, -0.871971, -0.173036, -1.70887, 0.282497, 0.339929, 2.26759, 0.346663, -0.750341, -0.489735, 0.538987, 0.404094, 1.36951, -0.615305, -0.493683, -1.25963, 0.603153, 0.596412, -0.104786, -0.615305)
[sub_resource type="ConvexPolygonShape3D" id="ConvexPolygonShape3D_myf45"]
points = PackedVector3Array(1.33496, 0.212288, 0.0759557, -0.111319, 0.0115006, 1.41281, 0.0217925, -1.01001, -1.20748, -0.0223042, -1.01001, 1.19049, -0.244705, 0.500114, -1.25201, -1.08857, -1.01001, 0.302029, -0.822069, 0.500114, 0.92392, 1.04314, -0.921141, 0.613114, 0.954395, 0.500114, 0.746396, 0.998766, -0.0775181, -0.941198, -0.91081, -0.565675, -1.02996, 1.08778, -1.01001, -0.319028, 0.998766, 0.500114, -0.718876, -0.999552, -0.210666, 0.92392, -1.31042, 0.366662, -0.452589, 0.421401, 0.233515, 1.36829, -0.289075, 0.1448, -1.42981, -1.17731, -0.876556, -0.363549, 1.354, 0.0557817, 0.524351, 0.554787, 0.0115006, -1.29653, 0.82101, -0.476961, 1.10172, -0.644313, -0.921141, 1.0572, -1.26605, 0.189081, 0.391069, 1.30963, 0.0113484, -0.585593, 0.954395, -0.743408, -0.807638, -0.86644, 0.144648, -1.16296, -1.26605, -0.78769, 0.169024, -0.244705, 0.366814, 1.36829, 0.066163, 0.544548, 0.701876, -0.999552, 0.500114, -0.763396, -0.688684, -0.921141, -1.02996, -0.599943, -0.0775181, 1.27925)
[sub_resource type="ConvexPolygonShape3D" id="ConvexPolygonShape3D_5hf2b"]
points = PackedVector3Array(-0.0864265, -0.456714, 0.0335595, 0.0177247, -0.144033, -0.422314, 0.382448, -0.183088, -0.0314836, -0.281817, 0.11639, 0.29414, -0.399113, -0.000855811, -0.122642, 0.191827, -0.0653148, 0.344411, 0.317344, 0.311825, 0.0856267, -0.164598, 0.29878, -0.291982, 0.26523, 0.0773342, -0.318016, -0.151531, 0.29878, 0.33315, -0.034312, -0.261278, 0.359265, -0.320864, -0.313299, -0.031402, 0.174068, -0.443669, -0.0574355, -0.307874, 0.311825, 0.0857083, -0.177588, -0.3654, -0.226776, 0.200048, -0.222144, -0.344131, -0.359989, -0.104898, 0.2029, -0.268827, -0.0788086, -0.318016, 0.200048, -0.404534, 0.0986843, 0.161001, 0.24668, -0.304958, 0.330334, -0.052877, 0.241991, -0.151531, -0.404534, 0.176785, -0.0603692, -0.0658428, 0.411413, 0.382448, 0.103424, -0.109584, 0.105003, 0.135549, 0.346469, 0.043782, -0.391489, -0.265949, -0.0473017, 0.142479, -0.396198, 0.121954, -0.287289, 0.320174, 0.0567717, 0.337836, 0.241991, 0.0307144, 0.337836, -0.12256, -0.268827, 0.29878, -0.187767, 0.304354, -0.104898, -0.291982)
[sub_resource type="ConvexPolygonShape3D" id="ConvexPolygonShape3D_cgunr"]
points = PackedVector3Array(0.397377, -0.0583106, 0.115414, -0.154937, 0.0571113, 0.385171, 0.0761444, -0.44371, -0.141386, -0.103603, 0.249851, -0.321251, -0.0265232, -0.430798, 0.19251, 0.243217, -0.0327229, -0.334127, -0.32193, 0.288351, 0.0639896, 0.101891, 0.301185, 0.333746, -0.116437, -0.199558, -0.385471, 0.281717, 0.301185, -0.167058, 0.230384, -0.238137, 0.295198, -0.309097, -0.340963, -0.0128653, -0.28343, -0.199637, 0.269526, 0.281717, -0.340963, 0.0896615, -0.309097, 0.147104, -0.244154, -0.000935539, -0.135391, 0.398047, 0.0119771, 0.352677, -0.0128653, 0.384464, -0.0840567, -0.102838, -0.373343, 0.018611, 0.19251, -0.0265232, 0.0828575, -0.411223, 0.178971, -0.238217, -0.308374, 0.243217, 0.0956909, 0.32095, -0.334764, -0.238217, -0.19281, 0.320218, 0.28843, 0.0383177, -0.32193, 0.301264, -0.0771659, -0.0521901, -0.353718, -0.295579, -0.154937, -0.44371, 0.0768658, -0.411923, -0.109644, -0.0386177, -0.15929, 0.282523, 0.255276, 0.063311, 0.0314444, 0.410923, -0.193517, -0.00705595, -0.372675, -0.16777, -0.250971, 0.333827)
[sub_resource type="ConvexPolygonShape3D" id="ConvexPolygonShape3D_um1u4"]
points = PackedVector3Array(0.0986924, 0.311825, 0.302091, 0.411413, -0.117943, -0.0365044, -0.239898, -0.300334, 0.236986, -0.305021, 0.24668, -0.153726, 0.0857168, 0.311825, -0.323062, 0.176873, -0.404534, 0.158735, -0.292046, 0.29878, 0.158735, 0.0986924, -0.404534, -0.205841, 0.176873, 0.0381997, 0.380265, 0.333233, 0.29878, 0.145745, -0.422292, -0.143954, -0.0234366, -0.0705622, -0.0399112, -0.401314, 0.359266, -0.0658428, -0.205841, -0.122628, 0.0381997, 0.393255, -0.265931, -0.391568, -0.0494944, 0.00753648, -0.183088, 0.393333, -0.292046, -0.0918534, -0.297005, -0.318079, -0.0788876, 0.276034, 0.281086, -0.130988, 0.289024, -0.0444477, -0.443669, 0.158812, 0.215963, -0.0658428, -0.33613, 0.346209, 0.168569, -0.114678, 0.255053, -0.352434, -0.127668, -0.318079, 0.0773342, -0.270947, -0.0835378, -0.235188, -0.349198, -0.0444477, -0.443669, -0.166716, -0.396177, 0.11639, -0.114678, 0.359266, -0.261199, 0.0415912, 0.346209, 0.0121891, 0.236908, -0.318079, -0.222144, -0.231899, -0.00543916, 0.350959, -0.0234366, 0.241996, 0.337915, -0.0495722)
[sub_resource type="ConvexPolygonShape3D" id="ConvexPolygonShape3D_ps7nw"]
points = PackedVector3Array(0.0986924, 0.311825, 0.301991, 0.411413, -0.117943, -0.0366044, -0.239898, -0.300334, 0.236886, -0.305021, 0.24668, -0.153826, 0.0857168, 0.311825, -0.323162, 0.176873, -0.404534, 0.158635, -0.292046, 0.29878, 0.158635, 0.0986924, -0.404534, -0.205941, 0.176873, 0.0381997, 0.380165, 0.333233, 0.29878, 0.145645, -0.422292, -0.143954, -0.0235366, -0.0705622, -0.0399112, -0.401414, 0.359266, -0.0658428, -0.205941, -0.122628, 0.0381997, 0.393155, -0.265931, -0.391568, -0.0495944, 0.00753648, -0.183088, 0.393233, -0.292046, -0.0918534, -0.297105, -0.318079, -0.0788876, 0.275934, 0.281086, -0.130988, 0.288924, -0.0444477, -0.443669, 0.158712, 0.215963, -0.0658428, -0.33623, 0.346209, 0.168569, -0.114778, 0.255053, -0.352434, -0.127768, -0.318079, 0.0773342, -0.271047, -0.0835378, -0.235188, -0.349298, -0.0444477, -0.443669, -0.166816, -0.396177, 0.11639, -0.114778, 0.359266, -0.261199, 0.0414912, 0.346209, 0.0121891, 0.236808, -0.318079, -0.222144, -0.231999, -0.00543916, 0.350959, -0.0235366, 0.241996, 0.337915, -0.0496722)
[sub_resource type="ConvexPolygonShape3D" id="ConvexPolygonShape3D_0vpak"]
points = PackedVector3Array(0.0165276, 0.489191, -0.0178977, -0.0546708, -0.633309, 0.106559, -0.0190716, -0.633309, 0.106559, 0.0165276, -0.152159, -0.570309, 0.550955, -0.0808488, 0.160137, -0.5179, 0.0258414, 0.26707, 0.0165276, 0.132642, 0.570009, -0.5357, 0.0615514, -0.196044, 0.390649, 0.417772, -0.231651, -0.446592, 0.417881, -0.12483, 0.141235, 0.417772, 0.462964, 0.372849, -0.134249, -0.427657, -0.464391, -0.330379, -0.26737, 0.105635, -0.615399, -0.213904, -0.143779, -0.383669, 0.463076, 0.31945, -0.330269, 0.409498, -0.143779, 0.346571, -0.445517, -0.446592, -0.365869, 0.213492, 0.390649, -0.472889, 0.124419, -0.220974, 0.3918, 0.354059, -0.268486, -0.0097586, -0.516842, 0.444158, 0.400081, 0.0532047, 0.33725, 0.132751, 0.445217, -0.0546708, -0.383779, -0.498983, 0.230343, 0.0792415, -0.516731, 0.550955, -0.0631587, -0.106971, -0.393193, -0.508489, -0.0535047, -0.214977, 0.0792415, 0.53429, -0.571299, -0.152049, -0.0535047, -0.0368712, -0.597599, 0.26707, -0.286285, -0.241159, 0.480824, 0.283741, -0.561999, -0.0891117)
[sub_resource type="ConvexPolygonShape3D" id="ConvexPolygonShape3D_c77jw"]
points = PackedVector3Array(0.0165276, 0.489191, -0.0178977, -0.0546708, -0.633309, 0.106559, -0.0190716, -0.633309, 0.106559, 0.0165276, -0.152159, -0.570309, 0.550955, -0.0808488, 0.160137, -0.5179, 0.0258414, 0.26707, 0.0165276, 0.132642, 0.570009, -0.5357, 0.0615514, -0.196044, 0.390649, 0.417772, -0.231651, -0.446592, 0.417881, -0.12483, 0.141235, 0.417772, 0.462964, 0.372849, -0.134249, -0.427657, -0.464391, -0.330379, -0.26737, 0.105635, -0.615399, -0.213904, -0.143779, -0.383669, 0.463076, 0.31945, -0.330269, 0.409498, -0.143779, 0.346571, -0.445517, -0.446592, -0.365869, 0.213492, 0.390649, -0.472889, 0.124419, -0.220968, 0.391787, 0.354049, -0.268486, -0.0097586, -0.516842, 0.444158, 0.400081, 0.0532047, 0.33725, 0.132751, 0.445217, -0.0546708, -0.383779, -0.498983, 0.230343, 0.0792415, -0.516731, 0.550955, -0.0631587, -0.106971, -0.393193, -0.508489, -0.0535047, -0.214977, 0.0792415, 0.53429, -0.571299, -0.152049, -0.0535047, -0.0368712, -0.597599, 0.26707, -0.286285, -0.241159, 0.480824, 0.283741, -0.561999, -0.0891117)
[sub_resource type="ConvexPolygonShape3D" id="ConvexPolygonShape3D_y537f"]
points = PackedVector3Array(0.0769063, -0.456622, 0.0160145, 0.0512375, 0.352578, 0.0288464, 0.128324, 0.314003, 0.182987, -0.372579, -0.00711067, 0.195898, -0.0771063, -0.0456063, -0.394922, 0.359504, -0.0327744, -0.215038, 0.243874, -0.238164, 0.285801, -0.141318, 0.314003, -0.279277, -0.295492, -0.2125, -0.22787, -0.192736, -0.238164, 0.337128, -0.102775, 0.301092, 0.311464, 0.333835, 0.301171, -0.137968, 0.102575, -0.353809, -0.266445, 0.192536, 0.00564199, 0.375703, -0.295492, -0.353809, 0.0417574, 0.398048, -0.135429, 0.0160145, -0.411122, 0.0827124, 0.0417574, 0.11545, -0.0584382, -0.394922, 0.370324, 0.0528449, 0.151633, -0.321161, 0.0185531, -0.253613, 0.243874, -0.392384, -0.00949083, -0.0385629, -0.366641, 0.285721, -0.154193, -0.443711, -0.0866405, -0.321161, 0.249764, 0.105917, -0.0385629, -0.109686, 0.414278, 0.218205, 0.198358, 0.298553, -0.398248, -0.199668, 0.0802531, 0.0383629, 0.288339, -0.317773, 0.308167, -0.2125, -0.240781, -0.244074, 0.146951, 0.311464, -0.218405, -0.392384, 0.157323, 0.179662, 0.159862, -0.330604)
[sub_resource type="ConvexPolygonShape3D" id="ConvexPolygonShape3D_5jmal"]
points = PackedVector3Array(0.0935885, -0.456714, -0.0725286, 0.119649, -0.456714, -0.0725286, -0.0235691, -0.143995, 0.422414, -0.349292, -0.0918888, -0.176839, 0.380259, 0.0383383, -0.176839, 0.0676054, 0.0773194, -0.398355, -0.323231, 0.311918, -0.0856694, 0.276015, -0.0787633, 0.318104, 0.15878, 0.298871, 0.292067, -0.29717, -0.0918888, 0.292067, 0.15878, 0.298871, -0.320163, -0.166866, -0.443589, 0.0445143, 0.0415444, -0.261255, -0.359178, -0.153796, 0.246765, 0.305045, 0.184841, -0.365468, 0.226935, 0.393329, -0.183056, -0.00747754, 0.380259, 0.116459, 0.109647, -0.205918, -0.0657959, -0.359259, 0.302076, 0.311918, -0.0986469, -0.127813, -0.352422, -0.254949, -0.401414, -0.0138474, 0.0836102, 0.289085, -0.130949, -0.281067, -0.0496301, -0.391561, 0.265949, -0.205918, 0.285825, -0.241971, -0.336223, -0.248209, 0.109647, -0.0235691, 0.350978, 0.00550002, -0.271109, 0.0773985, 0.318104, -0.205918, -0.404529, -0.0986469, -0.114744, 0.116459, 0.396296, 0.15878, -0.404529, -0.176839, -0.231979, -0.222116, 0.318104, 0.184841, 0.0383383, 0.370259)
[sub_resource type="ConvexPolygonShape3D" id="ConvexPolygonShape3D_etcke"]
points = PackedVector3Array(0.0165276, 0.489191, -0.0178977, -0.0546708, -0.633309, 0.106559, -0.0190716, -0.633309, 0.106559, 0.0165276, -0.152159, -0.570309, 0.550955, -0.0808488, 0.160137, -0.5179, 0.0258414, 0.26707, 0.0165276, 0.132642, 0.570009, -0.5357, 0.0615514, -0.196044, 0.390649, 0.417772, -0.231651, -0.446592, 0.417881, -0.12483, 0.141235, 0.417772, 0.462964, 0.372849, -0.134249, -0.427657, -0.464391, -0.330379, -0.26737, 0.105635, -0.615399, -0.213904, -0.143779, -0.383669, 0.463076, 0.31945, -0.330269, 0.409498, -0.143779, 0.346571, -0.445517, -0.446592, -0.365869, 0.213492, 0.390649, -0.472889, 0.124419, -0.220964, 0.391778, 0.354042, -0.268486, -0.0097586, -0.516842, 0.444158, 0.400081, 0.0532047, 0.33725, 0.132751, 0.445217, -0.0546708, -0.383779, -0.498983, 0.230343, 0.0792415, -0.516731, 0.550955, -0.0631587, -0.106971, -0.393193, -0.508489, -0.0535047, -0.214977, 0.0792415, 0.53429, -0.571299, -0.152049, -0.0535047, -0.0368712, -0.597599, 0.26707, -0.286285, -0.241159, 0.480824, 0.283741, -0.561999, -0.0891117)
[sub_resource type="ConvexPolygonShape3D" id="ConvexPolygonShape3D_ysbq2"]
points = PackedVector3Array(0.522632, 1.05989, 1.29656, 0.359994, -1.38028, -2.44468, -0.209239, -1.29881, 2.59818, -0.941475, 0.81575, -1.6313, 0.522632, 0.81575, -2.52673, 0.929593, -1.05467, 2.19098, -0.778654, 0.897459, 2.19098, -0.941475, -1.05467, -2.20108, 0.848091, 0.897459, 2.19098, -0.697335, -1.38028, 1.78428, 0.766772, -0.891995, -2.28211, -0.616017, 0.978675, -2.28211, 0.848091, 0.653319, -1.55027, 0.359994, 0.490395, 2.59818, 0.359994, -1.38028, 2.43509, -0.697335, 0.81575, -2.52673, -0.859973, -0.973458, 1.13348, -0.290741, 1.1416, 1.29656, 0.604134, 0.978675, -1.95696, 0.848091, -1.29857, 0.563705, 0.278675, -1.29881, -2.60828, -0.778654, -1.29881, -2.20108, -0.697335, -1.05467, 2.35406, -0.534514, 0.409179, 2.51663, 0.929593, 0.653319, 1.05194, 0.848091, -1.05467, -1.06204, -0.778654, -0.891995, -2.44468, -0.371877, 0.978675, 2.35406, -0.697335, 1.05989, -0.329689, -0.12792, 1.05989, -2.0385, 0.766772, -0.891995, 2.43509, 0.685453, -1.29881, -2.20108)
[sub_resource type="ConvexPolygonShape3D" id="ConvexPolygonShape3D_xt8bf"]
points = PackedVector3Array(-1.65032, -0.850243, -1.13134, 1.90857, -0.784242, -0.208784, -1.91376, -1.04805, 0.0546456, -1.58425, 0.863278, -0.538236, 1.8425, 0.731275, -0.142762, 1.77644, -1.11406, 0.911395, -1.1891, 0.731275, 0.384097, 1.24915, 0.731275, 1.10902, -0.925659, 0.599466, -0.999512, 0.458423, -1.11406, -0.538236, -2.11196, 0.599466, -0.0769596, 0.590142, -0.850243, 0.911395, 2.10636, 0.599466, 0.186689, -1.8481, -1.11406, -0.867687, -1.8481, 0.599466, -0.999512, -1.91376, -0.850243, 0.18647, 1.51259, 0.863278, 0.713768, 1.97422, -1.11406, 0.318514, 1.8425, 0.599466, 0.977417, 1.64472, -0.850243, 1.10902, -1.05738, 0.863278, -0.735863, -0.595742, -0.784435, -0.93349, -0.464023, -1.11406, 0.516141, 1.90857, -0.982053, 0.911395, -1.5186, 0.665273, 0.318295, -1.25475, 0.863278, 0.0546456, -1.91376, -0.982053, -0.93349, -1.38688, 0.731275, -1.06553, 1.11743, 0.863278, -0.0767402, -2.04589, -0.718434, -0.011157, 1.97422, -0.982053, -0.0767402, -1.5186, -1.04805, -1.06553)
[sub_resource type="ConvexPolygonShape3D" id="ConvexPolygonShape3D_b8sme"]
points = PackedVector3Array(-0.723219, -0.0601611, 5.84506, 3.81916, 0.474209, -3.50706, 3.01737, 0.741472, -2.43597, 2.56848, -0.6371, -4.84303, 0.0790422, -0.861794, 8.51691, 0.0790422, 0.474209, 8.7824, 3.81916, -0.861794, -3.77386, -0.990639, -0.861794, 7.17903, -0.990639, 0.474209, 6.91354, 2.483, 0.474209, -4.30875, -0.455799, 0.741472, 6.37865, -0.990639, -0.861794, 8.7824, 2.21558, -0.861794, -3.50706, 0.613412, -0.594374, 7.17903, 0.0790422, 0.741472, 7.71392, 3.81916, 0.474209, -4.30875, 3.01737, 0.741472, -4.04065, -0.819151, 0.436104, 8.32525, 3.55174, 0.474209, -2.43597, 0.880362, 0.206945, 0.501364, -0.455799, -0.861794, 5.04207, 3.81916, -0.861794, -4.30875, 1.68121, 0.741472, -0.833907, -0.188849, 0.474209, 9.05181, 3.81916, -0.594374, -3.50706, -0.188849, -0.861794, 9.05181, -0.455799, 0.741472, 7.71392, 2.74995, -0.861794, -0.0322216, 2.74995, -0.0601611, 0.235879, 0.613412, 0.206945, 7.17903, -0.455799, 0.474209, 5.04207, 0.880362, -0.327111, 0.501364)
[sub_resource type="ConvexPolygonShape3D" id="ConvexPolygonShape3D_bfo7b"]
points = PackedVector3Array(-0.990639, 0.474209, 8.78418, -4.19681, -0.861794, 6.64711, -4.46404, -0.861794, 7.18164, -4.19681, 0.474209, 6.64711, -0.990639, -0.594374, 7.4488, -0.990639, -0.861794, 8.78418, -4.46404, 0.474209, 7.98291, -0.990639, 0.741472, 7.71575, -4.19681, -0.861794, 7.98291, -2.32717, 0.206945, 6.91448, -3.12786, 0.741472, 7.98291, -1.79269, -0.861794, 7.18164, -1.52545, -0.861794, 8.78418, -1.52545, 0.474209, 8.78418, -3.39509, -0.594374, 6.64711, -1.52545, 0.474209, 7.18164, -1.25822, 0.741472, 8.51723, -3.66233, -0.594374, 8.25007, -3.39509, 0.474209, 6.64711, -4.46404, 0.206945, 6.91448, -3.12786, 0.741472, 7.4488, -1.52545, -0.594374, 7.18164, -0.990639, -0.861794, 7.71575, -3.66233, 0.474209, 8.25007, -4.46404, -0.861794, 7.71575, -0.990639, 0.474209, 7.4488, -4.46404, 0.474209, 7.18164, -3.66233, -0.861794, 6.64711, -2.32717, -0.594374, 6.91448, -2.05993, 0.741472, 7.4488, -0.990639, 0.741472, 8.51723, -4.46404, 0.206945, 7.98291)
[sub_resource type="ConvexPolygonShape3D" id="ConvexPolygonShape3D_qy11h"]
points = PackedVector3Array(4.08637, -0.594374, -4.30875, -3.12833, -0.861794, -7.78249, -3.12833, 0.474209, -7.78249, -3.52435, -0.653021, -6.49015, 3.01716, 0.741472, -4.30875, 3.81872, 0.206945, -5.64507, -2.86067, 0.474209, -6.17891, 3.55177, -0.861794, -5.64507, 2.75021, -0.861794, -4.30875, 2.75996, -0.364072, -4.06827, 2.48256, 0.741472, -5.64507, -1.52451, 0.741472, -6.17891, 1.681, -0.327111, -6.44618, 3.81872, 0.741472, -4.30875, -1.79217, 0.474209, -7.51523, -2.59372, -0.861794, -6.17891, 4.08637, 0.474209, -5.3778, 4.08637, -0.861794, -5.11054, -2.86067, -0.861794, -7.78249, -1.25756, 0.741472, -6.71344, 2.48256, 0.474209, -4.30875, 3.01716, 0.474209, -5.91233, -3.12833, 0.474209, -6.44618, -2.59372, -0.327111, -7.78249, -2.86067, -0.594374, -6.17891, 3.01716, -0.861794, -5.91233, 4.08637, 0.474209, -4.30875, 3.81872, -0.861794, -4.30875, 3.81872, -0.594374, -5.64507, -0.456008, -0.861794, -5.3778, 1.681, -0.0601611, -6.44618, -2.59372, 0.206945, -7.78249)
[sub_resource type="ConvexPolygonShape3D" id="ConvexPolygonShape3D_viuwh"]
points = PackedVector3Array(-3.66296, 0.741472, -5.64514, -4.73131, -1.12901, -6.98055, -4.73131, -0.86169, -7.51486, -3.12833, -0.86169, -7.78215, -3.39583, -1.12901, -5.64514, -4.46436, 0.474156, -8.04971, -4.99881, 0.474156, -5.64514, -3.12833, 0.474156, -7.78215, -4.99881, -0.86169, -5.64514, -3.39583, 0.474156, -5.37812, -4.99881, 0.474156, -6.71378, -3.12833, 0.474156, -6.17946, -4.46436, -0.86169, -8.04971, -4.46436, -0.86169, -5.37812, -4.46436, 0.741472, -6.71378, -3.12833, -0.86169, -6.17946, -3.66296, 0.474156, -8.04971, -3.39583, -1.12901, -6.98055, -4.73131, 0.207024, -5.37812, -4.73131, 0.741472, -5.64514, -3.39583, -0.86169, -5.37812, -4.73131, 0.207024, -7.78215, -4.99881, -0.594557, -6.71378, -3.93009, -0.86169, -8.04971, -3.93009, -1.12901, -5.64514, -4.73131, -0.594557, -7.78215, -3.66296, 0.741472, -6.17946, -4.99881, -0.86169, -6.44675, -3.66296, -0.594557, -8.04971, -4.46436, 0.474156, -5.37812, -4.19704, 0.741472, -6.71378, -4.73131, -1.12901, -6.71378)
[sub_resource type="ConvexPolygonShape3D" id="ConvexPolygonShape3D_21een"]
points = PackedVector3Array(0.744402, -0.687512, 0.207657, 1.34238, 0.583514, -0.0913408, 2.16482, 0.508699, 0.0581069, 2.31438, -0.612697, -0.315743, -0.152943, -0.164083, -0.315743, 0.594845, 0.433745, 0.207657, 2.16482, -0.53802, 0.207657, 2.16482, 0.508699, -0.315743, -0.152943, 0.583514, -0.315743, -0.0780398, -0.687512, -0.0913408, -0.152943, -0.238898, 0.0581069, 1.41704, -0.837143, 0.207657, 2.23948, 0.209438, 0.207657, -0.0780398, -0.687512, -0.240942, -0.152943, 0.433745, -0.0166938, 2.38929, 0.284253, -0.240942, 1.11817, 0.583514, 0.132856, 1.86571, 0.508699, 0.207657, 2.31438, -0.313714, 0.0581069, 0.221075, -0.612697, 0.132856, 0.969112, -0.837143, 0.132856, 1.86571, -0.762327, 0.207657, 0.445287, 0.134622, 0.207657, -0.152943, 0.508699, -0.0913408, 0.969112, -0.837143, 0.207657, 2.38929, 0.059946, -0.315743, 2.31438, -0.612697, -0.166193, 1.41704, -0.837143, 0.132856, -0.152943, -0.38839, 0.0581069, 0.221075, 0.358929, 0.132856, -0.152943, -0.53802, -0.240942, 2.01527, -0.612697, -0.315743)
[sub_resource type="ConvexPolygonShape3D" id="ConvexPolygonShape3D_m0m4g"]
points = PackedVector3Array(-0.0780398, -0.538013, -1.13823, 1.34238, 0.583514, -0.315743, 1.34238, 0.583514, -0.390536, 2.16482, -0.687541, -0.315743, -0.249281, 0.232152, -0.284575, -0.00338542, 0.433854, -1.06344, 2.16482, 0.359156, -0.540123, 0.594845, -0.762371, -0.614836, 2.09017, -0.538013, -0.614836, 1.34238, 0.134666, -0.839136, 2.38929, 0.284194, -0.315743, 0.146172, 0.583514, -0.46533, -0.152943, 0.508553, -0.988561, -0.152943, -0.538013, -0.839136, 0.744402, -0.762371, -0.764342, 1.94036, 0.508553, -0.540123, 0.0715178, -0.538013, -1.13823, 1.79106, -0.687541, -0.315743, -0.130828, 0.498149, -0.322898, -0.152943, 0.134666, -1.13823, -0.152943, -0.612711, -1.06344, 2.31438, -0.538013, -0.46533, 1.79106, 0.359156, -0.689629, 2.01527, -0.687541, -0.540123, 2.16482, 0.508553, -0.315743, -0.00338542, 0.0599679, -1.13823, 0.29573, 0.583514, -0.689629, 0.146172, 0.508553, -0.988561, 0.52019, 0.359156, -0.988561, 2.31438, -0.538013, -0.315743, 2.38929, 0.284194, -0.390536, 0.744402, 0.433854, -0.913848)
[sub_resource type="ConvexPolygonShape3D" id="ConvexPolygonShape3D_0ytyl"]
points = PackedVector3Array(-2.2465, -0.313633, -0.390368, -0.751114, 0.359112, -0.166039, -0.751114, -0.612733, -0.166039, -1.3493, 0.284414, 1.10491, -1.64831, -0.837136, 0.880585, -2.32121, 0.433964, 0.730911, -1.87261, 0.508662, -0.764371, -1.87261, -0.762284, -0.689534, -0.697922, 0.395374, -0.824818, -2.39609, -0.762284, 0.581236, -1.05045, -0.837136, 0.880585, -1.19987, -0.986686, -0.390368, -1.3493, 0.583514, 0.730911, -2.2465, -0.463183, 0.880585, -2.39609, 0.359112, 0.207416, -1.125, 0.433964, 0.95524, -2.0222, -0.612733, -0.764371, -2.0222, -0.911834, -0.315714, -1.125, -0.986686, 0.581236, -2.17163, 0.583514, 0.581236, -0.751114, 0.508662, -0.240876, -0.751114, -0.762284, -0.315714, -1.42417, -0.762284, 1.03008, -2.09675, 0.284414, -0.689534, -0.975575, -0.313633, 0.805748, -1.64831, 0.583514, -0.240876, -1.125, -0.911834, -0.465205, -1.125, -0.612733, 1.03008, -1.72303, 0.583514, 0.805748, -1.7979, -0.612733, -0.764371, -2.2465, -0.762284, -0.0913846, -1.72303, -0.538035, 1.03008)
[sub_resource type="ConvexPolygonShape3D" id="ConvexPolygonShape3D_ltu01"]
points = PackedVector3Array(-0.900672, 0.433913, -1.28776, -2.02223, -0.537955, -0.839245, -2.02223, -0.537955, -0.764371, -0.751114, -0.837143, -1.0635, -1.72311, -0.612785, -1.51209, -1.87267, 0.508743, -0.764371, -0.685865, 0.247926, -0.72599, -1.87267, 0.358951, -1.36241, -0.751114, -0.1642, -1.28776, -1.424, 0.0598947, -1.51209, -0.751114, 0.508743, -1.13823, -1.79789, -0.762313, -1.13823, -1.19991, -0.537955, -1.43721, -1.94733, 0.209555, -1.36241, -0.975451, 0.508743, -0.764371, -1.79789, 0.433913, -1.36241, -2.02223, 0.134856, -0.764371, -1.72311, -0.537955, -0.764371, -0.751114, -0.762313, -1.21296, -1.87267, -0.537955, -1.36241, -1.87267, -0.687351, -0.839245, -1.87267, 0.508743, -1.0635, -0.751114, 0.358951, -1.28776, -1.27457, 0.358951, -1.43721, -1.64833, -0.0146718, -1.51209, -0.900672, -0.313728, -1.36241, -1.424, -0.762313, -1.28776, -2.02223, -0.463256, -0.988773, -0.825893, 0.508743, -1.21296, -2.02223, 0.134856, -0.988773, -0.716369, 0.387552, -0.743933, -1.424, -0.388295, -1.51209)
[sub_resource type="ConvexPolygonShape3D" id="ConvexPolygonShape3D_x52nw"]
points = PackedVector3Array(1.64147, -0.986686, 0.282509, 1.71621, 0.583514, 1.10465, 1.71621, 0.508662, 1.62831, 0.52, 0.359112, 1.17966, 1.49198, -0.762284, 1.70285, 2.23974, 0.209562, 0.207657, 0.744395, -0.612733, 0.207657, 0.744395, 0.359112, 0.207657, 0.52, -0.762284, 1.32921, 1.86586, -0.837136, 1.55345, 0.669653, 0.284414, 1.55345, 2.16466, -0.538035, 0.207657, 1.11827, 0.583514, 0.432059, 0.744395, 0.583514, 1.32921, 1.79078, -0.986686, 1.17966, 0.819137, -0.911834, 0.357207, 2.08992, 0.433964, 0.207657, 1.86586, 0.433964, 1.55345, 1.64147, 0.284414, 1.77786, 0.52, 0.359112, 0.88071, 0.669653, -0.463183, 1.55345, 2.08992, -0.538035, 0.88071, 2.08992, -0.762284, 0.282509, 1.94061, -0.164237, 1.4786, 0.669653, -0.313633, 0.282509, 1.19318, -0.538035, 1.70285, 1.86586, -0.762284, 1.62831, 2.23974, 0.134864, 0.357207, 1.71621, -0.986686, 1.2542, 0.819137, 0.508662, 0.357207, 1.79078, -0.911834, 0.207657, 0.52, -0.538035, 1.02995)
[sub_resource type="ConvexPolygonShape3D" id="ConvexPolygonShape3D_ekd2i"]
points = PackedVector3Array(-0.751114, -0.388485, -1.28777, -0.152943, 0.433832, -0.0167816, -0.152943, 0.508611, -0.091553, -0.152943, -0.538043, -1.1381, -0.751114, -0.538043, -0.166324, -0.751114, 0.508611, -1.06333, -0.152943, 0.359178, -1.1381, -0.152943, -0.538043, -0.0167816, -0.751114, 0.508611, -0.241096, -0.5268, -0.6876, -1.1381, -0.452029, 0.359178, -0.0167816, -0.676226, 0.209496, -1.28777, -0.152943, 0.508611, -0.988561, -0.676226, 0.583514, -0.390639, -0.227714, -0.6876, -0.839018, -0.152943, -0.0148401, -1.21288, -0.751114, -0.612821, -1.21288, -0.751114, 0.433832, -1.21288, -0.676226, -0.164149, -0.091553, -0.377257, -0.612821, -1.21288, -0.601513, 0.583514, -0.614953, -0.751114, 0.359178, -0.166324, -0.377257, -0.313706, -0.0167816, -0.5268, 0.433832, -1.21288, -0.227714, -0.6876, -1.06333, -0.601513, -0.238928, -1.28777, -0.377257, 0.508611, -0.091553, -0.152943, -0.612821, -0.988561, -0.751114, 0.583514, -0.614953, -0.302544, 0.508611, -1.06333, -0.302544, -0.6876, -0.839018, -0.152943, 0.0599387, -1.21288)
[sub_resource type="ConvexPolygonShape3D" id="ConvexPolygonShape3D_bl5yk"]
points = PackedVector3Array(0.803406, 0.792086, -0.158916, -0.158536, 2.2037, -0.287249, -0.479183, -1.38781, 0.482396, 0.675076, -1.32392, 0.161564, -0.864171, 0.407138, -0.0305834, 0.2261, 1.88264, 0.610553, 0.354429, -0.682209, -0.800404, -0.415194, -1.51599, -0.351415, -0.607512, 0.407138, 0.674719, 0.0337821, -0.682209, 0.931385, -0.35103, -0.29726, -0.864571, 0.610912, 1.56198, -0.415406, 0.86757, -0.104786, 0.289897, -0.607512, 1.69016, 0.161564, -0.864171, -0.23337, -0.415582, 0.675076, -1.32392, -0.287249, 0.354429, 2.26759, 0.289897, -0.671677, 1.17703, -0.351415, 0.0979467, 1.56158, -0.607905, -0.222701, -1.70887, 0.289897, 0.0337821, -1.4517, -0.672071, 0.162111, 0.27976, 0.931385, -0.735841, -0.746099, 0.482396, -0.0302067, -1.4521, 0.738886, -0.286865, 1.4338, 0.674719, -0.735841, -1.19534, -0.158916, -0.0943713, 2.20329, 0.354063, 0.675076, -0.7465, 0.48222, 0.546923, -1.58029, 0.0334072, 0.739241, 0.279358, -0.415406, 0.418594, 2.1394, -0.287249, -0.35103, -0.0408963, 0.867219)
[sub_resource type="ConvexPolygonShape3D" id="ConvexPolygonShape3D_1x2ga"]
points = PackedVector3Array(-0.783729, 0.114419, 0.198175, -0.768497, 0.118768, 0.251199, 0.532362, -1.58029, 0.0901977, 0.147364, 1.56158, -0.615105, -0.301449, -1.13105, -0.679271, -0.10895, -1.4517, 0.731686, 0.0833736, 1.88264, 0.667519, 0.596529, -0.104786, -0.615105, -0.686271, 1.4338, -0.10195, 0.853019, -0.104786, 0.346687, 0.403854, 2.1394, -0.230283, -0.750438, -0.554026, -0.486772, -0.10895, 0.34365, 0.924185, -0.391084, 0.401666, -0.794376, -0.493772, -1.38781, 0.475196, 0.275697, -0.425443, 0.924185, -0.429782, 0.0233957, 0.860019, 0.275697, -0.29726, -0.871771, -0.10895, 2.20329, -0.294449, 0.660519, 1.56198, -0.358615, 0.339863, 2.26759, 0.346863, 0.596529, -1.13145, -0.486772, -0.0447834, -1.51599, -0.615105, -0.557939, 1.69016, 0.218531, 0.468196, 0.792086, 0.73151, -0.750438, -0.489735, 0.539187, -0.365615, -1.51599, -0.358615, 0.532362, -1.13145, 0.539187, -0.173116, -1.70887, 0.282697, 0.788852, -1.00286, 0.0262071, -0.750438, -1.00327, -0.0377834, 0.0192072, 2.39617, 0.154364)
[sub_resource type="ConvexPolygonShape3D" id="ConvexPolygonShape3D_g43kt"]
points = PackedVector3Array(0.800062, 1.11314, 0.183833, -0.803796, 0.177986, -0.00399756, 0.543516, -1.4517, 0.504564, 0.0304233, -0.68261, -0.842271, -0.226123, 2.139, 0.248081, -0.0334856, 1.56198, -0.713944, 0.222696, 0.40754, 0.889544, -0.803306, -0.554027, 0.440486, 0.735971, -0.746501, -0.585618, -0.546578, -1.4521, -0.393213, 0.415152, 2.33188, -0.0724812, -0.674942, -0.297261, -0.585618, -0.482669, 1.94653, -0.0724812, 0.351061, -1.58029, -0.457291, -0.354305, -1.00286, 0.696969, 0.928426, -0.425443, 0.247911, -0.418578, 1.4334, 0.568812, 0.0304233, -1.70887, 0.312159, 0.415152, 1.4338, 0.568812, 0.351061, 1.62627, -0.585618, 0.607607, 0.27976, 0.696969, 0.543516, -0.361552, -0.778023, -0.674942, 0.40754, 0.568812, -0.867397, -0.425443, -0.264886, -0.354305, 1.36951, -0.649696, -0.0334856, 2.33188, -0.264886, -0.482669, -1.516, 0.183833, 0.0945144, -0.490136, 0.889544, -0.674942, 1.17703, 0.376407, -0.0977588, -1.13105, -0.778023, 0.735971, -1.13145, -0.200638, -0.418578, -0.23337, -0.778023)
[sub_resource type="ConvexPolygonShape3D" id="ConvexPolygonShape3D_1qg8d"]
points = PackedVector3Array(0.920485, 0.34365, 0.158331, -0.875471, -0.425443, 0.286487, -0.298149, 2.20329, 0.0941641, 0.0866735, -0.361151, -0.931971, 0.0866735, -1.06716, 0.735652, 0.0866735, -1.58029, -0.546972, 0.0225071, 1.30562, 0.735652, 0.343163, 2.33188, -0.226316, -0.426482, 1.36951, -0.611139, -0.554639, -1.4517, -0.290307, 0.727986, -1.4517, 0.0941641, 0.920485, -0.425443, -0.226316, 0.599829, 0.40754, 0.67131, -0.875471, -0.297662, -0.290307, -0.298149, 0.40754, 0.863985, -0.362315, -1.5164, 0.35083, 0.663819, 1.88264, -0.16215, -0.490472, 2.01122, 0.0299978, -0.682971, -0.169078, 0.67131, -0.298149, -0.682209, -0.803462, 0.0225071, 1.62627, -0.675305, 0.535662, -0.746099, -0.675129, 0.727986, 0.792086, -0.41864, 0.599829, -0.938975, 0.607319, 0.0866735, 1.62627, 0.671486, 0.150664, -1.70887, 0.222497, -0.233983, 2.1394, -0.41864, -0.426482, 1.17703, 0.607319, 0.599829, 1.62627, 0.222497, -0.362315, 0.280162, -0.803462, -0.618805, 1.36951, -0.41864, -0.618805, -1.5164, 0.0299978)
[sub_resource type="ConvexPolygonShape3D" id="ConvexPolygonShape3D_e7bxv"]
points = PackedVector3Array(0.920485, 0.34365, 0.158231, -0.875471, -0.425443, 0.286387, -0.298149, 2.20329, 0.0940641, 0.0866735, -0.361151, -0.932071, 0.0866735, -1.06716, 0.735552, 0.0866735, -1.58029, -0.547072, 0.0225071, 1.30562, 0.735552, 0.343163, 2.33188, -0.226416, -0.426482, 1.36951, -0.611239, -0.554639, -1.4517, -0.290407, 0.727986, -1.4517, 0.0940641, 0.920485, -0.425443, -0.226416, 0.599829, 0.40754, 0.67121, -0.875471, -0.297662, -0.290407, -0.298149, 0.40754, 0.863885, -0.362315, -1.5164, 0.35073, 0.663819, 1.88264, -0.16225, -0.490472, 2.01122, 0.0298977, -0.682971, -0.169078, 0.67121, -0.298149, -0.682209, -0.803562, 0.0225071, 1.62627, -0.675405, 0.535662, -0.746099, -0.675229, 0.727986, 0.792086, -0.41874, 0.599829, -0.938975, 0.607219, 0.0866735, 1.62627, 0.671386, 0.150664, -1.70887, 0.222397, -0.233983, 2.1394, -0.41874, -0.426482, 1.17703, 0.607219, 0.599829, 1.62627, 0.222397, -0.362315, 0.280162, -0.803562, -0.618805, 1.36951, -0.41874, -0.618805, -1.5164, 0.0298977)
[sub_resource type="ConvexPolygonShape3D" id="ConvexPolygonShape3D_kdqdg"]
points = PackedVector3Array(0.510391, -1.06574, 0.344101, -0.637138, 0.368819, 0.822288, 0.637969, 0.496405, 0.790528, 0.765547, -0.682983, -0.73971, -0.477708, 0.400803, -0.962824, -0.796569, -0.778585, 0.663092, 0.701842, -0.77876, 0.790528, 0.797399, 0.464596, -0.484437, -0.764716, 0.400803, -0.580115, -0.318277, -0.810569, -0.962824, -0.445855, 0.719594, 0.567215, 0.319108, -0.810569, 0.949924, 0.637969, 0.33701, -0.867147, -0.732864, -0.651173, -0.612074, 0.351129, -1.03376, -0.707751, 0.414834, 0.273217, 1.01384, 0.861104, 0.177614, 0.184705, -0.860274, 0.241407, 0.312142, -0.382151, 0.623992, -0.771469, 0.319108, 0.719769, 0.599174, -0.573433, -0.938156, -0.452678, -0.668991, -0.459794, 0.854247, 0.510391, 0.592008, -0.707751, 0.822974, -0.690956, -0.615596, -0.414003, 0.177614, -1.02674, 0.0959725, -0.746776, -0.930865, -0.732864, 0.496405, 0.663092, -0.573433, -0.651173, -0.898906, -0.190868, 0.68761, -0.420719, 0.0322677, 0.68761, 0.72681, 0.861104, -0.523587, -0.420719, -0.828421, 0.464421, 0.152746)
[node name="MainScene" type="Node"]
[node name="Light Change Utility" type="Node" parent="." node_paths=PackedStringArray("UI")]
script = ExtResource("12_p7w1a")
UI = NodePath("../UI")
[node name="UI" parent="." node_paths=PackedStringArray("sun_light", "environment", "night_lights", "lamp_meshes", "scalable_night_lights", "day_ambient_audio", "night_ambient_audio", "day_music", "night_music") instance=ExtResource("32_q35xk")]
enable_profiler = true
enable_music = true
sun_light = NodePath("../Sun")
environment = NodePath("../WorldEnvironment")
night_lights = [NodePath("../Night Lights"), NodePath("../Props/Section02/Bistro_Lanterns/Lantern_Wind_21/Lantern_Wind_21_2/HangingLight01"), NodePath("../Props/Section02/Bistro_Lanterns/Lantern_Wind_22/Lantern_Wind_22_2/HangingLight02"), NodePath("../Props/Section02/Bistro_Lanterns/Lantern_Wind_23/Lantern_Wind_23_2/HangingLight03"), NodePath("../Props/Section02/Bistro_Lanterns/Lantern_Wind_24/Lantern_Wind_24_2/HangingLight03"), NodePath("../Props/Section02/Bistro_Lanterns/Lantern_Wind_25/Lantern_Wind_25_2/HangingLight04")]
lamp_meshes = [NodePath("../Level Geometry/Section05/S5B1/Bistro_Research_Exterior_Paris_StreetLight_01a___2__6265/Bistro_Research_Exterior_Paris_StreetLight_01a___2__6265_004"), NodePath("../Level Geometry/Section01/S1Lamps/Bistro_Research_Exterior_Paris_StreetLight_01a___10__6261/Bistro_Research_Exterior_Paris_StreetLight_01a___10__6261_004"), NodePath("../Level Geometry/Section01/S1Lamps/Bistro_Research_Exterior_Paris_StreetLight_01a___11__6263/Bistro_Research_Exterior_Paris_StreetLight_01a___11__6263_004"), NodePath("../Level Geometry/Section01/S1Lamps/Bistro_Research_Exterior_Paris_StreetLight_01a___7__6275/Bistro_Research_Exterior_Paris_StreetLight_01a___7__6275_004"), NodePath("../Level Geometry/Section01/S1Lamps/Bistro_Research_Exterior_Paris_StreetLight_01a___8__6277/Bistro_Research_Exterior_Paris_StreetLight_01a___8__6277_004"), NodePath("../Level Geometry/Section01/S1Lamps/Bistro_Research_Exterior_Paris_StreetLight_01a___9__6279/Bistro_Research_Exterior_Paris_StreetLight_01a___9__6279_004"), NodePath("../Level Geometry/Section02/S2Lamps/Bistro_Research_Exterior_Paris_StreetLight_01a_6257/Bistro_Research_Exterior_Paris_StreetLight_01a_6257_004"), NodePath("../Level Geometry/Section02/S2Lamps/Bistro_Research_Exterior_Paris_StreetLight_01a___4__6269/Bistro_Research_Exterior_Paris_StreetLight_01a___4__6269_004"), NodePath("../Level Geometry/Section02/S2Lamps/Bistro_Research_Exterior_Paris_StreetLight_01a___5__6271/Bistro_Research_Exterior_Paris_StreetLight_01a___5__6271_004"), NodePath("../Level Geometry/Section02/S2Lamps/Bistro_Research_Exterior_Paris_StreetLight_01a___6__6273/Bistro_Research_Exterior_Paris_StreetLight_01a___6__6273_004"), NodePath("../Level Geometry/Section03/S3Lamps/Bistro_Research_Exterior_Paris_StreetLight_01a___3__6267/Bistro_Research_Exterior_Paris_StreetLight_01a___3__6267_004"), NodePath("../Level Geometry/Section05/S5Lamps/Bistro_Research_Exterior_Paris_StreetLight_01a__6259/Bistro_Research_Exterior_Paris_StreetLight_01a__6259_004"), NodePath("../Patches/Fill Out/Lamp/Bistro_Research_Exterior_Paris_StreetLight_01a___3__6267/Bistro_Research_Exterior_Paris_StreetLight_01a___3__6267_004"), NodePath("../Patches/Fill Out/Lamp2/Bistro_Research_Exterior_Paris_StreetLight_01a___3__6267/Bistro_Research_Exterior_Paris_StreetLight_01a___3__6267_004"), NodePath("../Patches/Fill Out/Lamp3/Bistro_Research_Exterior_Paris_StreetLight_01a___3__6267/Bistro_Research_Exterior_Paris_StreetLight_01a___3__6267_004")]
emissives = Array[StandardMaterial3D]([ExtResource("2_je3vt"), ExtResource("3_414o6"), ExtResource("4_m6wwl"), ExtResource("5_piy6g"), ExtResource("7_8yd0a"), ExtResource("8_vfdcb"), ExtResource("9_ksbxv"), ExtResource("10_5yr8b"), ExtResource("11_awwij"), ExtResource("12_xvt36"), ExtResource("12_qowfr"), ExtResource("13_blrrn")])
scalable_night_lights = NodePath("../Night Lights/StreetLamps")
day_ambient_audio = NodePath("../Audio/DayAmbient")
night_ambient_audio = NodePath("../Audio/NightAmbient")
day_music = NodePath("../Audio/DayMusic")
night_music = NodePath("../Audio/NightMusic")
[node name="WorldEnvironment" type="WorldEnvironment" parent="."]
environment = ExtResource("33_vhloy")
camera_attributes = ExtResource("30_pvdv2")
compositor = SubResource("Compositor_0jy8e")
[node name="FogVolume" type="FogVolume" parent="."]
shape = 4
material = ExtResource("35_hsy4k")
[node name="Sun" type="DirectionalLight3D" parent="."]
transform = Transform3D(-0.154712, -0.786939, 0.59732, -8.9407e-08, 0.6046, 0.79653, -0.98796, 0.123232, -0.0935387, 0, 0, 0)
light_intensity_lux = 75000.0
light_temperature = 4250.0
shadow_enabled = true
directional_shadow_pancake_size = 40.0
[node name="Reflection Probes" type="Node3D" parent="."]
visible = false
[node name="Base Reflection Probe" type="ReflectionProbe" parent="Reflection Probes"]
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -18.9229, 14.0114, -19.5914)
visible = false
max_distance = 1000.0
size = Vector3(99.0745, 30.1362, 135.853)
origin_offset = Vector3(18.275, -0.72, 20.595)
enable_shadows = true
[node name="ReflectionProbe" type="ReflectionProbe" parent="Reflection Probes"]
transform = Transform3D(-0.26106, 0, -0.965322, 0, 1, 0, 0.965322, 0, -0.26106, -15.8633, 10.109, 25.9676)
max_distance = 1000.0
size = Vector3(18.2377, 24.6563, 24.7782)
origin_offset = Vector3(-1.665, -8.495, -0.395)
enable_shadows = true
[node name="ReflectionProbe2" type="ReflectionProbe" parent="Reflection Probes"]
transform = Transform3D(0.950293, 0, -0.311357, 0, 1, 0, 0.311357, 0, 0.950293, -6.01111, 8.92118, 16.0915)
max_distance = 1000.0
size = Vector3(16.0066, 20.0859, 18.1851)
origin_offset = Vector3(0.595, -7.24, 0.17)
enable_shadows = true
[node name="ReflectionProbe3" type="ReflectionProbe" parent="Reflection Probes"]
transform = Transform3D(0.714485, 0, 0.699651, 0, 1, 0, -0.699651, 0, 0.714485, -2.8068, 8.47172, 1.0479)
max_distance = 1000.0
size = Vector3(29.8224, 20.0747, 21.6785)
origin_offset = Vector3(1.215, -6.77, 0.83)
enable_shadows = true
[node name="ReflectionProbe4" type="ReflectionProbe" parent="Reflection Probes"]
transform = Transform3D(-0.154434, 0, -0.988003, 0, 1, 0, 0.988003, 0, -0.154434, -25.5313, 10.3174, 0.892725)
max_distance = 1000.0
size = Vector3(17.4164, 23.9321, 41.0083)
origin_offset = Vector3(-0.11, -8.625, 0)
enable_shadows = true
[node name="ReflectionProbe5" type="ReflectionProbe" parent="Reflection Probes"]
transform = Transform3D(0.955428, 0, -0.295225, 0, 1, 0, 0.295225, 0, 0.955428, -50.1201, 10.2906, 0.336892)
max_distance = 1000.0
size = Vector3(17.0823, 23.4084, 20.4515)
origin_offset = Vector3(1.04, -8.6, -0.665)
enable_shadows = true
[node name="ReflectionProbe6" type="ReflectionProbe" parent="Reflection Probes"]
transform = Transform3D(-0.99496, 0, -0.100275, 0, 1, 0, 0.100275, 0, -0.99496, 1.6625, 9.42667, -12.4203)
max_distance = 1000.0
size = Vector3(16.6154, 22.0683, 18.9468)
origin_offset = Vector3(-0.15, -7.73, 0.16)
enable_shadows = true
[node name="ReflectionProbe7" type="ReflectionProbe" parent="Reflection Probes"]
transform = Transform3D(-0.99402, 0, -0.109196, 0, 1, 0, 0.109196, 0, -0.99402, -0.11928, 9.22115, -25.2888)
max_distance = 1000.0
size = Vector3(16.783, 21.5698, 17.4686)
origin_offset = Vector3(-0.68, -7.555, 0)
enable_shadows = true
[node name="ReflectionProbe8" type="ReflectionProbe" parent="Reflection Probes"]
transform = Transform3D(-0.996496, 0, -0.083643, 0, 1, 0, 0.083643, 0, -0.996496, -0.863134, 9.12856, -38.9155)
max_distance = 1000.0
size = Vector3(20.1738, 21.6714, 19.0111)
origin_offset = Vector3(0.395, -7.485, 1.17)
enable_shadows = true
[node name="ReflectionProbe9" type="ReflectionProbe" parent="Reflection Probes"]
transform = Transform3D(-0.999137, 0, 0.0415269, 0, 1, 0, -0.0415269, 0, -0.999137, -12.1254, 8.46098, -60.641)
max_distance = 1000.0
size = Vector3(22.5818, 19.9185, 33.0297)
origin_offset = Vector3(0.335, -6.69, 1.04)
enable_shadows = true
[node name="ReflectionProbe10" type="ReflectionProbe" parent="Reflection Probes"]
transform = Transform3D(-0.998757, 0, 0.0498434, 0, 1, 0, -0.0498434, 0, -0.998757, 6.34652, 8.3849, -61.2773)
max_distance = 1000.0
size = Vector3(22.0746, 19.8228, 35.4728)
origin_offset = Vector3(-0.71, -6.68, 0.1)
enable_shadows = true
[node name="Audio" type="Node" parent="."]
[node name="DayMusic" type="AudioStreamPlayer" parent="Audio"]
stream = ExtResource("20_mwu7t")
autoplay = true
[node name="NightMusic" type="AudioStreamPlayer" parent="Audio"]
stream = ExtResource("21_nqn7s")
volume_db = -80.0
[node name="DayAmbient" type="AudioStreamPlayer" parent="Audio"]
stream = ExtResource("18_kwmnc")
autoplay = true
[node name="NightAmbient" type="AudioStreamPlayer" parent="Audio"]
stream = ExtResource("19_ida67")
volume_db = -80.0
autoplay = true
[node name="Level Geometry" type="Node3D" parent="."]
[node name="Section01" type="Node3D" parent="Level Geometry"]
[node name="S1B1" parent="Level Geometry/Section01" instance=ExtResource("1_17a2u")]
[node name="S1B2" parent="Level Geometry/Section01" instance=ExtResource("2_8mtnr")]
[node name="S1B3" parent="Level Geometry/Section01" instance=ExtResource("3_bis43")]
[node name="S1B4" parent="Level Geometry/Section01" instance=ExtResource("4_ll7ne")]
[node name="S1Details" parent="Level Geometry/Section01" instance=ExtResource("5_l1708")]
[node name="S1Lamps" parent="Level Geometry/Section01" instance=ExtResource("6_kx4kb")]
[node name="S1Walls" parent="Level Geometry/Section01" instance=ExtResource("7_2kc2q")]
[node name="Section02" type="Node3D" parent="Level Geometry"]
[node name="BistroProps" parent="Level Geometry/Section02" instance=ExtResource("11_e4jub")]
[node name="S2B1" parent="Level Geometry/Section02" instance=ExtResource("8_anouh")]
[node name="S2B2" parent="Level Geometry/Section02" instance=ExtResource("9_u4tpu")]
[node name="S2B3" parent="Level Geometry/Section02" instance=ExtResource("10_ypp8l")]
[node name="S2Details" parent="Level Geometry/Section02" instance=ExtResource("15_uu4ux")]
[node name="S2Ivy" parent="Level Geometry/Section02" instance=ExtResource("12_lc6cf")]
[node name="S2Lamps" parent="Level Geometry/Section02" instance=ExtResource("13_v0ve4")]
[node name="S2Walls" parent="Level Geometry/Section02" instance=ExtResource("14_v6tgn")]
[node name="Section03" type="Node3D" parent="Level Geometry"]
[node name="S3B1" parent="Level Geometry/Section03" instance=ExtResource("16_m1vvn")]
[node name="S3B2" parent="Level Geometry/Section03" instance=ExtResource("17_4e0xd")]
[node name="S3B3" parent="Level Geometry/Section03" instance=ExtResource("18_4ij38")]
[node name="S3B4" parent="Level Geometry/Section03" instance=ExtResource("19_acyb5")]
[node name="S3Lamps" parent="Level Geometry/Section03" instance=ExtResource("20_w5tey")]
[node name="Section04" type="Node3D" parent="Level Geometry"]
[node name="S4B1" parent="Level Geometry/Section04" instance=ExtResource("21_7egcs")]
[node name="S4B2" parent="Level Geometry/Section04" instance=ExtResource("22_k7idl")]
[node name="S4B3" parent="Level Geometry/Section04" instance=ExtResource("23_256hy")]
[node name="Section05" type="Node3D" parent="Level Geometry"]
[node name="S5B1" parent="Level Geometry/Section05" instance=ExtResource("24_0u2lm")]
[node name="S5B2" parent="Level Geometry/Section05" instance=ExtResource("25_tcv6v")]
[node name="S5Lamps" parent="Level Geometry/Section05" instance=ExtResource("26_xvk4t")]
[node name="Ground" type="Node3D" parent="Level Geometry"]
[node name="Ground" parent="Level Geometry/Ground" instance=ExtResource("3_e3k7r")]
[node name="Props" type="Node3D" parent="."]
[node name="Section01" type="Node3D" parent="Props"]
[node name="S1Lamps_Props" parent="Props/Section01" instance=ExtResource("21_yopo6")]
[node name="Section02" type="Node3D" parent="Props"]
[node name="BistroProps_Props" parent="Props/Section02" instance=ExtResource("23_lunsi")]
[node name="Bistro_Lanterns" parent="Props/Section02" instance=ExtResource("16_1sf6e")]
[node name="Bistro_StringLights" parent="Props/Section02" instance=ExtResource("17_j1o0m")]
[node name="S2Lamps_Props" parent="Props/Section02" instance=ExtResource("33_k0qq7")]
[node name="Section03" type="Node3D" parent="Props"]
[node name="S3Lamps_Props" parent="Props/Section03" instance=ExtResource("40_mmbd0")]