-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathEnergyCarrierTileMap.tscn
1751 lines (1418 loc) · 107 KB
/
EnergyCarrierTileMap.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=117 format=2]
[ext_resource path="res://Assets/tilemap_packed.png" type="Texture" id=1]
[ext_resource path="res://Player/Assets/Idle/tile_0024.png" type="Texture" id=2]
[ext_resource path="res://Player/Assets/Walk_Down/tile_0078.png" type="Texture" id=3]
[ext_resource path="res://Player/Assets/Walk_Down/tile_0051.png" type="Texture" id=4]
[ext_resource path="res://Player/Assets/Walk_Left/tile_0077.png" type="Texture" id=5]
[ext_resource path="res://Player/Assets/Idle/tile_0023.png" type="Texture" id=6]
[ext_resource path="res://Player/Assets/Walk_Left/tile_0050.png" type="Texture" id=7]
[ext_resource path="res://Player/Assets/Idle/tile_0025.png" type="Texture" id=8]
[ext_resource path="res://Player/Assets/Idle/tile_0026.png" type="Texture" id=9]
[ext_resource path="res://Player/Assets/Walk_Right/tile_0053.png" type="Texture" id=10]
[ext_resource path="res://Player/Assets/Walk_Up/tile_0052.png" type="Texture" id=11]
[ext_resource path="res://Player/Assets/Walk_Up/tile_0079.png" type="Texture" id=12]
[ext_resource path="res://Player/Assets/Walk_Right/tile_0080.png" type="Texture" id=13]
[ext_resource path="res://Player/Player.gd" type="Script" id=14]
[ext_resource path="res://Assets/TileMap_packed.tres" type="TileSet" id=15]
[ext_resource path="res://Power/PowerDistributor.gd" type="Script" id=16]
[ext_resource path="res://UI/kenvector_future_thin.ttf" type="DynamicFontData" id=17]
[ext_resource path="res://UI/greySheet.png" type="Texture" id=18]
[ext_resource path="res://Player/HintButton.gd" type="Script" id=19]
[ext_resource path="res://Power/CapacityBar.gd" type="Script" id=20]
[ext_resource path="res://Power/Charger.gd" type="Script" id=21]
[ext_resource path="res://NPC/Car.gd" type="Script" id=22]
[ext_resource path="res://NPC/CarManager.gd" type="Script" id=23]
[ext_resource path="res://UI/tile_0044.png" type="Texture" id=24]
[ext_resource path="res://UI/UI.gd" type="Script" id=25]
[ext_resource path="res://Power/PowerStation.gd" type="Script" id=26]
[ext_resource path="res://UI/Inventar.gd" type="Script" id=27]
[ext_resource path="res://Audio/Sounds/footstep_concrete_0.ogg" type="AudioStream" id=28]
[ext_resource path="res://Audio/Sounds/interaction.wav" type="AudioStream" id=29]
[ext_resource path="res://Audio/Sounds/points.wav" type="AudioStream" id=30]
[ext_resource path="res://Audio/Music/InGame_1.mp3" type="AudioStream" id=31]
[ext_resource path="res://Audio/Sounds/car.wav" type="AudioStream" id=32]
[ext_resource path="res://UI/Ebene 1.png" type="Texture" id=33]
[ext_resource path="res://Audio/Sounds/died.wav" type="AudioStream" id=34]
[ext_resource path="res://Audio/Sounds/oww.ogg" type="AudioStream" id=35]
[ext_resource path="res://Audio/Sounds/honk.ogg" type="AudioStream" id=36]
[ext_resource path="res://Audio/Sounds/bell.ogg" type="AudioStream" id=37]
[sub_resource type="RectangleShape2D" id=21]
extents = Vector2( 5, 4 )
[sub_resource type="RectangleShape2D" id=11]
extents = Vector2( 11, 8 )
[sub_resource type="RectangleShape2D" id=28]
extents = Vector2( 8, 9.5 )
[sub_resource type="RectangleShape2D" id=88]
extents = Vector2( 8, 9.5 )
[sub_resource type="RectangleShape2D" id=89]
extents = Vector2( 11, 8 )
[sub_resource type="RectangleShape2D" id=73]
extents = Vector2( 3, 2.42274 )
[sub_resource type="AtlasTexture" id=22]
atlas = ExtResource( 1 )
region = Rect2( 240, 224, 32, 16 )
[sub_resource type="AtlasTexture" id=23]
atlas = ExtResource( 1 )
region = Rect2( 240, 240, 32, 16 )
[sub_resource type="AtlasTexture" id=12]
atlas = ExtResource( 1 )
region = Rect2( 288, 224, 32, 16 )
[sub_resource type="AtlasTexture" id=13]
atlas = ExtResource( 1 )
region = Rect2( 288, 240, 32, 16 )
[sub_resource type="AtlasTexture" id=24]
atlas = ExtResource( 1 )
region = Rect2( 320, 224, 16, 16 )
[sub_resource type="AtlasTexture" id=25]
atlas = ExtResource( 1 )
region = Rect2( 320, 240, 16, 16 )
[sub_resource type="AtlasTexture" id=26]
atlas = ExtResource( 1 )
region = Rect2( 272, 224, 16, 16 )
[sub_resource type="AtlasTexture" id=27]
atlas = ExtResource( 1 )
region = Rect2( 272, 240, 16, 16 )
[sub_resource type="AtlasTexture" id=61]
atlas = ExtResource( 1 )
region = Rect2( 240, 256, 32, 16 )
[sub_resource type="AtlasTexture" id=62]
atlas = ExtResource( 1 )
region = Rect2( 240, 272, 32, 16 )
[sub_resource type="AtlasTexture" id=63]
atlas = ExtResource( 1 )
region = Rect2( 288, 256, 32, 16 )
[sub_resource type="AtlasTexture" id=64]
atlas = ExtResource( 1 )
region = Rect2( 288, 272, 32, 16 )
[sub_resource type="AtlasTexture" id=65]
atlas = ExtResource( 1 )
region = Rect2( 320, 256, 16, 16 )
[sub_resource type="AtlasTexture" id=66]
atlas = ExtResource( 1 )
region = Rect2( 320, 272, 16, 16 )
[sub_resource type="AtlasTexture" id=59]
atlas = ExtResource( 1 )
region = Rect2( 272, 256, 16, 16 )
[sub_resource type="AtlasTexture" id=60]
atlas = ExtResource( 1 )
region = Rect2( 272, 272, 16, 16 )
[sub_resource type="AtlasTexture" id=67]
atlas = ExtResource( 1 )
region = Rect2( 336, 256, 32, 16 )
[sub_resource type="AtlasTexture" id=68]
atlas = ExtResource( 1 )
region = Rect2( 336, 272, 32, 16 )
[sub_resource type="AtlasTexture" id=69]
atlas = ExtResource( 1 )
region = Rect2( 352, 224, 16, 16 )
[sub_resource type="AtlasTexture" id=70]
atlas = ExtResource( 1 )
region = Rect2( 352, 240, 16, 16 )
[sub_resource type="AtlasTexture" id=71]
atlas = ExtResource( 1 )
region = Rect2( 336, 224, 16, 16 )
[sub_resource type="AtlasTexture" id=72]
atlas = ExtResource( 1 )
region = Rect2( 336, 240, 16, 16 )
[sub_resource type="CapsuleShape2D" id=17]
radius = 4.0
height = 0.0
[sub_resource type="CapsuleShape2D" id=4]
radius = 4.0
height = 0.0
[sub_resource type="SpriteFrames" id=3]
animations = [ {
"frames": [ ExtResource( 2 ) ],
"loop": false,
"name": "idle_down",
"speed": 5.0
}, {
"frames": [ ExtResource( 6 ) ],
"loop": true,
"name": "idle_left",
"speed": 5.0
}, {
"frames": [ ExtResource( 8 ) ],
"loop": false,
"name": "idle_up",
"speed": 5.0
}, {
"frames": [ ExtResource( 4 ), ExtResource( 2 ), ExtResource( 3 ), ExtResource( 2 ) ],
"loop": true,
"name": "walk_down",
"speed": 5.0
}, {
"frames": [ ExtResource( 10 ), ExtResource( 9 ), ExtResource( 13 ), ExtResource( 9 ) ],
"loop": true,
"name": "walk_right",
"speed": 5.0
}, {
"frames": [ ExtResource( 9 ) ],
"loop": true,
"name": "idle_right",
"speed": 5.0
}, {
"frames": [ ExtResource( 7 ), ExtResource( 6 ), ExtResource( 5 ), ExtResource( 6 ) ],
"loop": true,
"name": "walk_left",
"speed": 5.0
}, {
"frames": [ ExtResource( 11 ), ExtResource( 8 ), ExtResource( 12 ), ExtResource( 8 ) ],
"loop": true,
"name": "walk_up",
"speed": 5.0
} ]
[sub_resource type="DynamicFont" id=74]
size = 12
font_data = ExtResource( 17 )
[sub_resource type="AtlasTexture" id=77]
atlas = ExtResource( 1 )
region = Rect2( 208, 240, 16, 16 )
[sub_resource type="AtlasTexture" id=78]
atlas = ExtResource( 1 )
region = Rect2( 192, 240, 16, 16 )
[sub_resource type="DynamicFont" id=79]
size = 30
outline_size = 1
extra_spacing_char = 1
extra_spacing_space = 2
font_data = ExtResource( 17 )
[sub_resource type="DynamicFont" id=80]
size = 11
font_data = ExtResource( 17 )
[sub_resource type="DynamicFont" id=81]
size = 6
font_data = ExtResource( 17 )
[sub_resource type="DynamicFont" id=82]
size = 13
font_data = ExtResource( 17 )
[sub_resource type="AtlasTexture" id=18]
flags = 4
atlas = ExtResource( 18 )
region = Rect2( 49, 433, 49, 45 )
[sub_resource type="DynamicFont" id=19]
size = 34
font_data = ExtResource( 17 )
[sub_resource type="RectangleShape2D" id=43]
extents = Vector2( 14.5, 347 )
[sub_resource type="RectangleShape2D" id=44]
extents = Vector2( 396, 11 )
[sub_resource type="RectangleShape2D" id=45]
extents = Vector2( 378, 11 )
[sub_resource type="RectangleShape2D" id=46]
extents = Vector2( 14.5, 322 )
[sub_resource type="CircleShape2D" id=76]
radius = 8.0
[sub_resource type="CircleShape2D" id=9]
radius = 8.0
[sub_resource type="RectangleShape2D" id=10]
extents = Vector2( 4, 4 )
[sub_resource type="Curve2D" id=20]
_data = {
"points": PoolVector2Array( 0, 0, 0, 0, -141, 412, 0, 0, 0, 0, 132, 412, 0, 0, 0, 0, 132, 290 )
}
[sub_resource type="Curve2D" id=31]
_data = {
"points": PoolVector2Array( 0, 0, 0, 0, 732, 391, 0, 0, 0, 0, 132, 391, 0, 0, 0, 0, 132, 290 )
}
[sub_resource type="Curve2D" id=32]
_data = {
"points": PoolVector2Array( 0, 0, 0, 0, 132, 641, 0, 0, 0, 0, 132, 290 )
}
[sub_resource type="Curve2D" id=57]
_data = {
"points": PoolVector2Array( 0, 0, 0, 0, 429, -8, 0, 0, 0, 0, 429, 391, 0, 0, 0, 0, 132, 391, 0, 0, 0, 0, 132, 290 )
}
[sub_resource type="Curve2D" id=58]
_data = {
"points": PoolVector2Array( 0, 0, 0, 0, 452, 635, 0, 0, 0, 0, 452, 391, 0, 0, 0, 0, 133, 391, 0, 0, 0, 0, 133, 290 )
}
[sub_resource type="Curve2D" id=37]
_data = {
"points": PoolVector2Array( 0, 0, 0, 0, 109, 286, 0, 0, 0, 0, 109, 641 )
}
[sub_resource type="Curve2D" id=84]
_data = {
"points": PoolVector2Array( 0, 0, 0, 0, 109, 286, 0, 0, 0, 0, 109, 391, 0, 0, 0, 0, -141, 391 )
}
[sub_resource type="Curve2D" id=85]
_data = {
"points": PoolVector2Array( 0, 0, 0, 0, 109, 286, 0, 0, 0, 0, 109, 412, 0, 0, 0, 0, 429, 412, 0, 0, 0, 0, 429, 635 )
}
[sub_resource type="Curve2D" id=86]
_data = {
"points": PoolVector2Array( 0, 0, 0, 0, 109, 286, 0, 0, 0, 0, 109, 412, 0, 0, 0, 0, 731, 412 )
}
[sub_resource type="Curve2D" id=87]
_data = {
"points": PoolVector2Array( 0, 0, 0, 0, 109, 286, 0, 0, 0, 0, 109, 412, 0, 0, 0, 0, 451, 412, 0, 0, 0, 0, 451, -7 )
}
[sub_resource type="Curve2D" id=30]
_data = {
"points": PoolVector2Array( 0, 0, 0, 0, 132, 290, 0, 0, 0, 0, 132, 268, 0, 0, 0, 0, 56, 268, 0, 0, 0, 0, 56, 224 )
}
[sub_resource type="Curve2D" id=33]
_data = {
"points": PoolVector2Array( 0, 0, 0, 0, 132, 290, 0, 0, 0, 0, 132, 250, 0, 0, 0, 0, 88, 250, 0, 0, 0, 0, 88, 224 )
}
[sub_resource type="Curve2D" id=34]
_data = {
"points": PoolVector2Array( 0, 0, 0, 0, 132, 290, 0, 0, 0, 0, 132, 250, 0, 0, 0, 0, 120, 250, 0, 0, 0, 0, 120, 224 )
}
[sub_resource type="Curve2D" id=35]
_data = {
"points": PoolVector2Array( 0, 0, 0, 0, 132, 290, 0, 0, 0, 0, 132, 250, 0, 0, 0, 0, 152, 250, 0, 0, 0, 0, 152, 224 )
}
[sub_resource type="Curve2D" id=36]
_data = {
"points": PoolVector2Array( 0, 0, 0, 0, 132, 290, 0, 0, 0, 0, 132, 268, 0, 0, 0, 0, 184, 268, 0, 0, 0, 0, 184, 224 )
}
[sub_resource type="Curve2D" id=38]
_data = {
"points": PoolVector2Array( 0, 0, 0, 0, 56, 224, 0, 0, 0, 0, 56, 268, 0, 0, 0, 0, 109, 268, 0, 0, 0, 0, 109, 286 )
}
[sub_resource type="Curve2D" id=39]
_data = {
"points": PoolVector2Array( 0, 0, 0, 0, 88, 224, 0, 0, 0, 0, 88, 250, 0, 0, 0, 0, 109, 250, 0, 0, 0, 0, 109, 286 )
}
[sub_resource type="Curve2D" id=40]
_data = {
"points": PoolVector2Array( 0, 0, 0, 0, 120, 224, 0, 0, 0, 0, 120, 250, 0, 0, 0, 0, 109, 250, 0, 0, 0, 0, 109, 286 )
}
[sub_resource type="Curve2D" id=41]
_data = {
"points": PoolVector2Array( 0, 0, 0, 0, 152, 224, 0, 0, 0, 0, 152, 250, 0, 0, 0, 0, 109, 250, 0, 0, 0, 0, 109, 286 )
}
[sub_resource type="Curve2D" id=42]
_data = {
"points": PoolVector2Array( 0, 0, 0, 0, 184, 224, 0, 0, 0, 0, 184, 268, 0, 0, 0, 0, 109, 268, 0, 0, 0, 0, 109, 286 )
}
[sub_resource type="AtlasTexture" id=47]
atlas = ExtResource( 1 )
region = Rect2( 16, 88, 16, 8 )
[sub_resource type="AtlasTexture" id=54]
atlas = ExtResource( 1 )
region = Rect2( 368, 144, 16, 16 )
[sub_resource type="DynamicFont" id=48]
size = 7
font_data = ExtResource( 17 )
[sub_resource type="AtlasTexture" id=50]
atlas = ExtResource( 1 )
region = Rect2( 400, 0, 16, 16 )
[sub_resource type="AtlasTexture" id=51]
atlas = ExtResource( 1 )
region = Rect2( 368, 0, 16, 16 )
[sub_resource type="AtlasTexture" id=52]
atlas = ExtResource( 1 )
region = Rect2( 368, 48, 16, 16 )
[sub_resource type="AtlasTexture" id=53]
atlas = ExtResource( 1 )
region = Rect2( 368, 96, 16, 16 )
[sub_resource type="AtlasTexture" id=55]
atlas = ExtResource( 1 )
region = Rect2( 368, 192, 16, 16 )
[sub_resource type="AtlasTexture" id=56]
atlas = ExtResource( 1 )
region = Rect2( 368, 240, 16, 16 )
[sub_resource type="DynamicFont" id=49]
size = 11
font_data = ExtResource( 17 )
[sub_resource type="DynamicFont" id=75]
size = 8
outline_color = Color( 0.64872, 0.6408, 0.72, 1 )
font_data = ExtResource( 17 )
[sub_resource type="AtlasTexture" id=83]
atlas = ExtResource( 1 )
region = Rect2( 64, 208, 32, 16 )
margin = Rect2( -2.748, -1.786, -12.14, -12.07 )
[node name="Node2D" type="Node2D"]
script = ExtResource( 23 )
__meta__ = {
"_edit_horizontal_guides_": [ 624.0, 16.0, 287.0, 431.0 ],
"_edit_vertical_guides_": [ -128.0, 718.0, -58.0, 198.0, 192.0 ]
}
[node name="CarSpawnTimer" type="Timer" parent="."]
process_mode = 0
wait_time = 4.0
one_shot = true
[node name="TileMap_Static_Back" type="TileMap" parent="."]
tile_set = ExtResource( 15 )
cell_size = Vector2( 16, 16 )
cell_custom_transform = Transform2D( 16, 0, 0, 16, 0, 0 )
collision_layer = 257
format = 1
tile_data = PoolIntArray( -65531, 0, 262152, -65530, 0, 262153, -65529, 0, 262153, -65528, 0, 262153, -65527, 0, 262153, -65526, 0, 262153, -65525, 0, 262153, -65524, 0, 262153, -65523, 0, 262153, -65522, 0, 262153, -65521, 0, 262153, -65520, 0, 262153, -65519, 0, 262153, -65518, 0, 262153, -65517, 0, 262153, -65516, 0, 262153, -65515, 0, 262153, -65514, 0, 262154, 65528, 0, 65537, 65529, 0, 65537, 65530, 0, 65537, 65531, 0, 65537, 65532, 0, 65537, 65533, 0, 65537, 65534, 0, 65537, 65535, 0, 65537, 0, 0, 65537, 1, 0, 65537, 2, 0, 65538, 3, 0, 65545, 4, 0, 65545, 5, 0, 262152, 6, 0, 262153, 7, 0, 262153, 8, 0, 262153, 9, 0, 262153, 10, 0, 262153, 11, 0, 262153, 12, 0, 262153, 13, 0, 262153, 14, 0, 262153, 15, 0, 262153, 16, 0, 262153, 17, 0, 262153, 18, 0, 262153, 19, 0, 262153, 20, 0, 262153, 21, 0, 262153, 22, 0, 262154, 23, 0, 65545, 24, 0, 65545, 25, 0, 65546, 26, 0, 1114114, 27, 0, 1114115, 28, 0, 1114116, 29, 0, 65544, 30, 0, 65545, 31, 0, 65545, 32, 0, 65545, 33, 0, 65545, 34, 0, 65545, 35, 0, 65545, 36, 0, 65545, 37, 0, 65545, 38, 0, 65545, 39, 0, 65545, 40, 0, 65545, 41, 0, 65545, 42, 0, 65545, 43, 0, 65545, 44, 0, 65545, 45, 0, 65545, 131064, 0, 65537, 131065, 0, 65537, 131066, 0, 65537, 131067, 0, 65537, 131068, 0, 65537, 131069, 0, 65537, 131070, 0, 65537, 131071, 0, 65537, 65536, 0, 65537, 65537, 0, 65537, 65538, 0, 65538, 65539, 0, 65545, 65540, 0, 65545, 65541, 0, 327688, 65542, 0, 327689, 65543, 0, 327689, 65544, 0, 327689, 65545, 0, 327689, 65546, 0, 327689, 65547, 0, 196622, 65548, 0, 262153, 65549, 0, 262153, 65550, 0, 262153, 65551, 0, 262153, 65552, 0, 196621, 65553, 0, 327689, 65554, 0, 327689, 65555, 0, 327689, 65556, 0, 327689, 65557, 0, 327689, 65558, 0, 327690, 65559, 0, 65545, 65560, 0, 65545, 65561, 0, 65546, 65562, 0, 1114114, 65563, 0, 1114115, 65564, 0, 1114116, 65565, 0, 131080, 65566, 0, 131081, 65567, 0, 14, 65568, 0, 65545, 65569, 0, 65545, 65570, 0, 65545, 65571, 0, 65545, 65572, 0, 65545, 65573, 0, 65545, 65574, 0, 65545, 65575, 0, 65545, 65576, 0, 65545, 65577, 0, 65545, 65578, 0, 65545, 65579, 0, 65545, 65580, 0, 65545, 65581, 0, 65545, 196600, 0, 65537, 196601, 0, 65537, 196602, 0, 65537, 196603, 0, 65537, 196604, 0, 65537, 196605, 0, 65537, 196606, 0, 65537, 196607, 0, 65537, 131072, 0, 65537, 131073, 0, 65537, 131074, 0, 65538, 131075, 0, 65545, 131076, 0, 65545, 131077, 0, 131088, 131078, 0, 131089, 131079, 0, 131090, 131080, 0, 131090, 131081, 0, 131091, 131082, 0, 131088, 131083, 0, 327688, 131084, 0, 327689, 131085, 0, 327689, 131086, 0, 327689, 131087, 0, 327689, 131088, 0, 327690, 131089, 0, 131088, 131090, 0, 131089, 131091, 0, 131090, 131092, 0, 131090, 131093, 0, 131091, 131094, 0, 131088, 131095, 0, 65545, 131096, 0, 65545, 131097, 0, 65546, 131098, 0, 1114114, 131099, 0, 1114115, 131100, 0, 1114121, 131101, 0, 1114121, 131102, 0, 1048586, 131103, 0, 65544, 131104, 0, 65545, 131105, 0, 65545, 131106, 0, 65545, 131107, 0, 196616, 131108, 0, 196617, 131109, 0, 196618, 131110, 0, 65545, 131111, 0, 65545, 131112, 0, 65545, 131113, 0, 196616, 131114, 0, 196617, 131115, 0, 196618, 131116, 0, 65545, 131117, 0, 65545, 262136, 0, 65537, 262137, 0, 65537, 262138, 0, 65537, 262139, 0, 65537, 262140, 0, 65537, 262141, 0, 65537, 262142, 0, 65537, 262143, 0, 65537, 196608, 0, 65537, 196609, 0, 65537, 196610, 0, 65538, 196611, 0, 65545, 196612, 0, 65545, 196613, 0, 131088, 196614, 0, 131089, 196615, 0, 131090, 196616, 0, 131090, 196617, 0, 131091, 196618, 0, 131088, 196619, 0, 131088, 196620, 0, 131089, 196621, 0, 131090, 196622, 0, 131090, 196623, 0, 131091, 196624, 0, 131088, 196625, 0, 131088, 196626, 0, 131089, 196627, 0, 131090, 196628, 0, 131090, 196629, 0, 131091, 196630, 0, 131088, 196631, 0, 65545, 196632, 0, 65545, 196633, 0, 65546, 196634, 0, 1114114, 196635, 0, 1114115, 196636, 0, 1114121, 196637, 0, 1114121, 196638, 0, 1048586, 196639, 0, 65544, 196640, 0, 196616, 196641, 0, 196617, 196642, 0, 196618, 196643, 0, 327688, 196644, 0, 327689, 196645, 0, 327690, 196646, 0, 196616, 196647, 0, 196617, 196648, 0, 196618, 196649, 0, 327688, 196650, 0, 327689, 196651, 0, 327690, 196652, 0, 196616, 196653, 0, 196617, 196654, 0, 196618, 327672, 0, 65537, 327673, 0, 65537, 327674, 0, 65537, 327675, 0, 65537, 327676, 0, 65537, 327677, 0, 65537, 327678, 0, 65537, 327679, 0, 65537, 262144, 0, 65537, 262145, 0, 65537, 262146, 0, 65538, 262147, 0, 65545, 262148, 0, 65545, 262149, 0, 196624, 262150, 0, 196625, 262151, 0, 983047, 262152, 0, 983048, 262153, 0, 196627, 262154, 0, 196624, 262155, 0, 131088, 262156, 0, 131089, 262157, 0, 131090, 262158, 0, 131090, 262159, 0, 131091, 262160, 0, 131088, 262161, 0, 196624, 262162, 0, 196625, 262163, 0, 983047, 262164, 0, 983048, 262165, 0, 196627, 262166, 0, 196624, 262167, 0, 65545, 262168, 0, 65545, 262169, 0, 65546, 262170, 0, 1114114, 262171, 0, 1114115, 262172, 0, 1114121, 262173, 0, 1114121, 262174, 0, 1048586, 262175, 0, 65544, 262176, 0, 327688, 262177, 0, 327689, 262178, 0, 327690, 262179, 0, 131092, 262180, 0, 131093, 262181, 0, 131094, 262182, 0, 327688, 262183, 0, 327689, 262184, 0, 327690, 262185, 0, 131092, 262186, 0, 131093, 262187, 0, 131094, 262188, 0, 327688, 262189, 0, 327689, 262190, 0, 327690, 393208, 0, 65537, 393209, 0, 65537, 393210, 0, 65537, 393211, 0, 65537, 393212, 0, 65537, 393213, 0, 65537, 393214, 0, 65537, 393215, 0, 65537, 327680, 0, 65537, 327681, 0, 65537, 327682, 0, 65538, 327683, 0, 65545, 327684, 0, 65545, 327685, 0, 65545, 327686, 0, 65545, 327687, 0, 65545, 327688, 0, 65545, 327689, 0, 65545, 327690, 0, 65545, 327691, 0, 196624, 327692, 0, 196625, 327693, 0, 983049, 327694, 0, 983048, 327695, 0, 196627, 327696, 0, 196624, 327697, 0, 65545, 327698, 0, 65545, 327699, 0, 65545, 327700, 0, 65545, 327701, 0, 65545, 327702, 0, 65545, 327703, 0, 65545, 327704, 0, 65545, 327705, 0, 65546, 327706, 0, 1114114, 327707, 0, 1114115, 327708, 0, 1114121, 327709, 0, 1114121, 327710, 0, 1048586, 327711, 0, 65544, 327712, 0, 131092, 327713, 0, 131093, 327714, 0, 131094, 327715, 0, 196628, 327716, 0, 655375, 327717, 0, 196630, 327718, 0, 131092, 327719, 0, 131093, 327720, 0, 131094, 327721, 0, 196628, 327722, 0, 655375, 327723, 0, 196630, 327724, 0, 131092, 327725, 0, 131093, 327726, 0, 131094, 458744, 0, 65537, 458745, 0, 65537, 458746, 0, 65537, 458747, 0, 65537, 458748, 0, 65537, 458749, 0, 65537, 458750, 0, 65537, 458751, 0, 65537, 393216, 0, 65537, 393217, 0, 65537, 393218, 0, 65538, 393219, 0, 65545, 393220, 0, 65545, 393221, 0, 65545, 393222, 0, 65545, 393223, 0, 65545, 393224, 0, 65545, 393225, 0, 65545, 393226, 0, 65545, 393227, 0, 65545, 393228, 0, 65545, 393229, 0, 65545, 393230, 0, 65545, 393231, 0, 65545, 393232, 0, 65545, 393233, 0, 65545, 393234, 0, 65545, 393235, 0, 65545, 393236, 0, 65545, 393237, 0, 65545, 393238, 0, 65545, 393239, 0, 65545, 393240, 0, 65545, 393241, 0, 65546, 393242, 0, 1114114, 393243, 0, 1114115, 393244, 0, 1114116, 393245, 0, 8, 393246, 0, 9, 393247, 0, 65550, 393248, 0, 196628, 393249, 0, 655375, 393250, 0, 196630, 393251, 0, 65545, 393252, 0, 65545, 393253, 0, 65545, 393254, 0, 196628, 393255, 0, 655375, 393256, 0, 196630, 393257, 0, 65545, 393258, 0, 65545, 393259, 0, 65545, 393260, 0, 196628, 393261, 0, 655375, 393262, 0, 196630, 524280, 0, 65537, 524281, 0, 65537, 524282, 0, 65537, 524283, 0, 65537, 524284, 0, 65537, 524285, 0, 65537, 524286, 0, 65537, 524287, 0, 65537, 458752, 0, 65537, 458753, 0, 65537, 458754, 0, 65538, 458755, 0, 65545, 458756, 0, 65545, 458757, 0, 65545, 458758, 0, 65545, 458759, 0, 65545, 458760, 0, 65545, 458761, 0, 65545, 458762, 0, 65545, 458763, 0, 65545, 458764, 0, 65545, 458765, 0, 65545, 458766, 0, 65545, 458767, 0, 65545, 458768, 0, 65545, 458769, 0, 65545, 458770, 0, 65545, 458771, 0, 65545, 458772, 0, 65545, 458773, 0, 65545, 458774, 0, 65545, 458775, 0, 65545, 458776, 0, 65545, 458777, 0, 65546, 458778, 0, 1048578, 458779, 0, 1048579, 458780, 0, 1048580, 458781, 0, 65544, 458782, 0, 65545, 458783, 0, 65545, 458784, 0, 65545, 458785, 0, 65545, 458786, 0, 65545, 458787, 0, 196616, 458788, 0, 196617, 458789, 0, 196618, 458790, 0, 65545, 458791, 0, 65545, 458792, 0, 65545, 458793, 0, 196616, 458794, 0, 196617, 458795, 0, 196618, 458796, 0, 65545, 458797, 0, 65545, 458798, 0, 65545, 589816, 0, 131073, 589817, 0, 131073, 589818, 0, 131073, 589819, 0, 131073, 589820, 0, 131073, 589821, 0, 131073, 589822, 0, 131073, 589823, 0, 131073, 524288, 0, 131073, 524289, 0, 131073, 524290, 0, 65545, 524291, 0, 65545, 524292, 0, 65545, 524293, 0, 65545, 524294, 0, 327683, 524295, 0, 327684, 524296, 0, 327685, 524297, 0, 65545, 524298, 0, 65545, 524299, 0, 65545, 524300, 0, 65545, 524301, 0, 65545, 524302, 0, 65545, 524303, 0, 65545, 524304, 0, 65545, 524305, 0, 65545, 524306, 0, 65545, 524307, 0, 65545, 524308, 0, 65545, 524309, 0, 65545, 524310, 0, 65545, 524311, 0, 65545, 524312, 0, 65545, 524313, 0, 65546, 524314, 0, 1114114, 524315, 0, 1114115, 524316, 0, 1114116, 524317, 0, 65544, 524318, 0, 65545, 524319, 0, 65545, 524320, 0, 196616, 524321, 0, 196617, 524322, 0, 196618, 524323, 0, 327688, 524324, 0, 327689, 524325, 0, 327690, 524326, 0, 196616, 524327, 0, 196617, 524328, 0, 196618, 524329, 0, 327688, 524330, 0, 327689, 524331, 0, 327690, 524332, 0, 196616, 524333, 0, 196617, 524334, 0, 196618, 655352, 0, 65545, 655353, 0, 65545, 655354, 0, 65545, 655355, 0, 65545, 655356, 0, 65545, 655357, 0, 65545, 655358, 0, 65545, 655359, 0, 65545, 589824, 0, 65545, 589825, 0, 65545, 589826, 0, 65545, 589827, 0, 65545, 589828, 0, 65545, 589829, 0, 65545, 589830, 0, 65544, 589831, 0, 65545, 589832, 0, 65546, 589833, 0, 65545, 589834, 0, 65545, 589835, 0, 65545, 589836, 0, 65545, 589837, 0, 65545, 589838, 0, 65545, 589839, 0, 196608, 589840, 0, 196609, 589841, 0, 196609, 589842, 0, 196609, 589843, 0, 196609, 589844, 0, 196609, 589845, 0, 196609, 589846, 0, 196609, 589847, 0, 196610, 589848, 0, 65545, 589849, 0, 65546, 589850, 0, 1114114, 589851, 0, 1114115, 589852, 0, 1114116, 589853, 0, 65544, 589854, 0, 65545, 589855, 0, 65545, 589856, 0, 327688, 589857, 0, 327689, 589858, 0, 327690, 589859, 0, 131092, 589860, 0, 131093, 589861, 0, 131094, 589862, 0, 327688, 589863, 0, 327689, 589864, 0, 327690, 589865, 0, 131092, 589866, 0, 131093, 589867, 0, 131094, 589868, 0, 327688, 589869, 0, 327689, 589870, 0, 327690, 720888, 0, 196617, 720889, 0, 196617, 720890, 0, 196617, 720891, 0, 196617, 720892, 0, 196617, 720893, 0, 196617, 720894, 0, 196617, 720895, 0, 196617, 655360, 0, 196618, 655361, 0, 65545, 655362, 0, 65545, 655363, 0, 65545, 655364, 0, 65545, 655365, 0, 65545, 655366, 0, 65545, 655367, 0, 65545, 655368, 0, 65545, 655369, 0, 65545, 655370, 0, 65545, 655371, 0, 65545, 655372, 0, 65545, 655373, 0, 65545, 655374, 0, 65545, 655375, 0, 262144, 655376, 0, 262145, 655377, 0, 262145, 655378, 0, 262145, 655379, 0, 262145, 655380, 0, 262145, 655381, 0, 262145, 655382, 0, 262145, 655383, 0, 262146, 655384, 0, 65545, 655385, 0, 65546, 655386, 0, 1114114, 655387, 0, 1114115, 655388, 0, 1114116, 655389, 0, 65544, 655390, 0, 65545, 655391, 0, 65545, 655392, 0, 131092, 655393, 0, 131093, 655394, 0, 131094, 655395, 0, 196628, 655396, 0, 655375, 655397, 0, 196630, 655398, 0, 131092, 655399, 0, 131093, 655400, 0, 131094, 655401, 0, 196628, 655402, 0, 655375, 655403, 0, 196630, 655404, 0, 131092, 655405, 0, 131093, 655406, 0, 131094, 786424, 0, 262153, 786425, 0, 262153, 786426, 0, 262153, 786427, 0, 262153, 786428, 0, 262153, 786429, 0, 262153, 786430, 0, 262153, 786431, 0, 262153, 720896, 0, 262154, 720897, 0, 65545, 720898, 0, 65545, 720899, 0, 65545, 720900, 0, 65545, 720901, 0, 65545, 720902, 0, 65545, 720903, 0, 65545, 720904, 0, 65545, 720905, 0, 65545, 720906, 0, 65545, 720907, 0, 65545, 720908, 0, 65545, 720909, 0, 65545, 720910, 0, 65545, 720911, 0, 262144, 720912, 0, 262145, 720913, 0, 196613, 720914, 0, 327681, 720915, 0, 327681, 720916, 0, 327681, 720917, 0, 196614, 720918, 0, 262145, 720919, 0, 262146, 720920, 0, 65545, 720921, 0, 65546, 720922, 0, 1114114, 720923, 0, 1114115, 720924, 0, 1114116, 720925, 0, 65544, 720926, 0, 65545, 720927, 0, 65545, 720928, 0, 196628, 720929, 0, 655375, 720930, 0, 196630, 720931, 0, 65545, 720932, 0, 65545, 720933, 0, 65545, 720934, 0, 196628, 720935, 0, 655375, 720936, 0, 196630, 720937, 0, 65545, 720938, 0, 65545, 720939, 0, 65545, 720940, 0, 196628, 720941, 0, 655375, 720942, 0, 196630, 851960, 0, 262153, 851961, 0, 262153, 851962, 0, 262153, 851963, 0, 262153, 851964, 0, 262153, 851965, 0, 262153, 851966, 0, 262153, 851967, 0, 262153, 786432, 0, 262154, 786433, 0, 13, 786434, 0, 131081, 786435, 0, 131081, 786436, 0, 131081, 786437, 0, 131081, 786438, 0, 131081, 786439, 0, 131081, 786440, 0, 131081, 786441, 0, 131081, 786442, 0, 131081, 786443, 0, 131081, 786444, 0, 131081, 786445, 0, 14, 786446, 0, 65545, 786447, 0, 262144, 786448, 0, 262145, 786449, 0, 262146, 786450, 0, 393236, 786451, 0, 393234, 786452, 0, 393238, 786453, 0, 262144, 786454, 0, 262145, 786455, 0, 262146, 786456, 0, 65545, 786457, 0, 65546, 786458, 0, 1114114, 786459, 0, 1114115, 786460, 0, 1114116, 786461, 0, 65544, 786462, 0, 65545, 786463, 0, 65545, 786464, 0, 65544, 786465, 0, 65545, 786466, 0, 65545, 786467, 0, 65545, 786468, 0, 65545, 786469, 0, 65545, 786470, 0, 65545, 786471, 0, 65545, 786472, 0, 65545, 786473, 0, 65545, 786474, 0, 65545, 786475, 0, 65545, 786476, 0, 65545, 786477, 0, 65545, 917496, 0, 262153, 917497, 0, 262153, 917498, 0, 262153, 917499, 0, 262153, 917500, 0, 262153, 917501, 0, 262153, 917502, 0, 196621, 917503, 0, 327689, 851968, 0, 327690, 851969, 0, 65546, 851970, 0, 1114114, 851971, 0, 1048585, 851972, 0, 1114115, 851973, 0, 1048585, 851974, 0, 1114115, 851975, 0, 1048585, 851976, 0, 1114115, 851977, 0, 1048585, 851978, 0, 1114115, 851979, 0, 1048585, 851980, 0, 1114116, 851981, 0, 65544, 851982, 0, 65545, 851983, 0, 327680, 851984, 0, 327681, 851985, 0, 327682, 851986, 0, 327700, 851987, 0, 327698, 851988, 0, 327702, 851989, 0, 327680, 851990, 0, 327681, 851991, 0, 327682, 851992, 0, 65545, 851993, 0, 65546, 851994, 0, 1114114, 851995, 0, 1114115, 851996, 0, 1114116, 851997, 0, 65544, 851998, 0, 65545, 851999, 0, 65545, 852000, 0, 65544, 852001, 0, 65545, 852002, 0, 65545, 852003, 0, 65545, 852004, 0, 65545, 852005, 0, 65545, 852006, 0, 65545, 852007, 0, 65545, 852008, 0, 65545, 852009, 0, 65545, 852010, 0, 65545, 852011, 0, 65545, 852012, 0, 65545, 852013, 0, 65545, 983032, 0, 262153, 983033, 0, 262153, 983034, 0, 262153, 983035, 0, 262153, 983036, 0, 262153, 983037, 0, 262153, 983038, 0, 262154, 983039, 0, 393237, 917504, 0, 393235, 917505, 0, 65546, 917506, 0, 1114114, 917507, 0, 1048586, 917508, 0, 1114115, 917509, 0, 1048586, 917510, 0, 1114115, 917511, 0, 1048586, 917512, 0, 1114115, 917513, 0, 1048586, 917514, 0, 1114115, 917515, 0, 1048586, 917516, 0, 1114116, 917517, 0, 65544, 917518, 0, 65545, 917519, 0, 393233, 917520, 0, 393234, 917521, 0, 393235, 917522, 0, 393236, 917523, 0, 393234, 917524, 0, 393238, 917525, 0, 393233, 917526, 0, 393234, 917527, 0, 393235, 917528, 0, 65545, 917529, 0, 65546, 917530, 0, 1114114, 917531, 0, 1114115, 917532, 0, 1114116, 917533, 0, 65544, 917534, 0, 65545, 917535, 0, 65545, 917536, 0, 65544, 917537, 0, 65545, 917538, 0, 65545, 917539, 0, 65545, 917540, 0, 65545, 917541, 0, 65545, 917542, 0, 65545, 917543, 0, 65545, 917544, 0, 65545, 917545, 0, 65545, 917546, 0, 65545, 917547, 0, 65545, 917548, 0, 65545, 917549, 0, 65545, 1048568, 0, 262153, 1048569, 0, 262153, 1048570, 0, 262153, 1048571, 0, 262153, 1048572, 0, 262153, 1048573, 0, 262153, 1048574, 0, 262154, 1048575, 0, 393237, 983040, 0, 393235, 983041, 0, 65546, 983042, 0, 1114114, 983043, 0, 1048585, 983044, 0, 1114121, 983045, 0, 1048585, 983046, 0, 1114121, 983047, 0, 1048585, 983048, 0, 1114121, 983049, 0, 1048585, 983050, 0, 1114121, 983051, 0, 1048585, 983052, 0, 1114116, 983053, 0, 65544, 983054, 0, 65545, 983055, 0, 327697, 983056, 0, 327698, 983057, 0, 327699, 983058, 0, 458772, 983059, 0, 655374, 983060, 0, 458774, 983061, 0, 327697, 983062, 0, 327698, 983063, 0, 327699, 983064, 0, 65545, 983065, 0, 65546, 983066, 0, 1114114, 983067, 0, 1114115, 983068, 0, 1114116, 983069, 0, 65544, 983070, 0, 65545, 983071, 0, 65545, 983072, 0, 65544, 983073, 0, 65545, 983074, 0, 65545, 983075, 0, 65545, 983076, 0, 65545, 983077, 0, 65545, 983078, 0, 65545, 983079, 0, 65545, 983080, 0, 65545, 983081, 0, 65545, 983082, 0, 65545, 983083, 0, 65545, 983084, 0, 65545, 983085, 0, 65545, 1114104, 0, 327689, 1114105, 0, 327689, 1114106, 0, 327689, 1114107, 0, 327689, 1114108, 0, 327689, 1114109, 0, 327689, 1114110, 0, 327690, 1114111, 0, 393237, 1048576, 0, 393235, 1048577, 0, 65546, 1048578, 0, 1114114, 1048579, 0, 1114121, 1048580, 0, 1048585, 1048581, 0, 1114121, 1048582, 0, 1048585, 1048583, 0, 1114121, 1048584, 0, 1114121, 1048585, 0, 1114121, 1048586, 0, 1048585, 1048587, 0, 1048585, 1048588, 0, 1114116, 1048589, 0, 65544, 1048590, 0, 65545, 1048591, 0, 393233, 1048592, 0, 393234, 1048593, 0, 393235, 1048594, 0, 65545, 1048595, 0, 65545, 1048596, 0, 65545, 1048597, 0, 393233, 1048598, 0, 393234, 1048599, 0, 393235, 1048600, 0, 65545, 1048601, 0, 65546, 1048602, 0, 1114114, 1048603, 0, 1114115, 1048604, 0, 1114116, 1048605, 0, 65544, 1048606, 0, 65545, 1048607, 0, 65545, 1048608, 0, 65544, 1048609, 0, 65545, 1048610, 0, 65545, 1048611, 0, 65545, 1048612, 0, 65545, 1048613, 0, 65545, 1048614, 0, 65545, 1048615, 0, 65545, 1048616, 0, 65545, 1048617, 0, 65545, 1048618, 0, 65545, 1048619, 0, 65545, 1048620, 0, 65545, 1179640, 0, 393237, 1179641, 0, 393237, 1179642, 0, 393237, 1179643, 0, 393237, 1179644, 0, 393237, 1179645, 0, 393237, 1179646, 0, 393235, 1179647, 0, 393237, 1114112, 0, 393235, 1114113, 0, 65546, 1114114, 0, 1114117, 1114115, 0, 1114113, 1114116, 0, 1114113, 1114117, 0, 1114113, 1114118, 0, 1048584, 1114119, 0, 1048585, 1114120, 0, 1048583, 1114121, 0, 1114113, 1114122, 0, 1114113, 1114123, 0, 1114113, 1114124, 0, 1114118, 1114125, 0, 65544, 1114126, 0, 65545, 1114127, 0, 196619, 1114128, 0, 327692, 1114129, 0, 196620, 1114130, 0, 65545, 1114131, 0, 65545, 1114132, 0, 65545, 1114133, 0, 458769, 1114134, 0, 458770, 1114135, 0, 458771, 1114136, 0, 65545, 1114137, 0, 65546, 1114138, 0, 1114114, 1114139, 0, 1114115, 1114140, 0, 1114116, 1114141, 0, 65544, 1114142, 0, 65545, 1114143, 0, 65545, 1114144, 0, 65544, 1114145, 0, 65545, 1114146, 0, 65545, 1114147, 0, 65545, 1114148, 0, 65545, 1114149, 0, 65545, 1114150, 0, 65545, 1114151, 0, 65545, 1114152, 0, 65545, 1114153, 0, 65545, 1114154, 0, 65545, 1114155, 0, 65545, 1114156, 0, 65545, 1114157, 0, 65545, 1114158, 0, 65545, 1114159, 0, 65545, 1114160, 0, 65546, 1245176, 0, 393237, 1245177, 0, 393237, 1245178, 0, 393237, 1245179, 0, 393237, 1245180, 0, 393237, 1245181, 0, 393237, 1245182, 0, 393235, 1245183, 0, 196616, 1179648, 0, 196617, 1179649, 0, 196617, 1179650, 0, 196617, 1179651, 0, 196618, 1179652, 0, 9, 1179653, 0, 10, 1179654, 0, 1114114, 1179655, 0, 1114115, 1179656, 0, 1114116, 1179657, 0, 8, 1179658, 0, 9, 1179659, 0, 196616, 1179660, 0, 196617, 1179661, 0, 196617, 1179662, 0, 196618, 1179663, 0, 262155, 1179664, 0, 327692, 1179665, 0, 262156, 1179666, 0, 196616, 1179667, 0, 196617, 1179668, 0, 196617, 1179669, 0, 196618, 1179670, 0, 65545, 1179671, 0, 65545, 1179672, 0, 65545, 1179673, 0, 65546, 1179674, 0, 1114114, 1179675, 0, 1114115, 1179676, 0, 1114116, 1179677, 0, 65544, 1179678, 0, 65545, 1179679, 0, 65545, 1179680, 0, 65544, 1179681, 0, 65545, 1179682, 0, 65545, 1179683, 0, 65545, 1179684, 0, 65545, 1179685, 0, 65545, 1179686, 0, 65545, 1179687, 0, 65545, 1179688, 0, 65545, 1179689, 0, 65545, 1179690, 0, 65545, 1179691, 0, 65545, 1179692, 0, 65545, 1179693, 0, 65545, 1179694, 0, 65545, 1179695, 0, 65545, 1179696, 0, 65546, 1310712, 0, 393237, 1310713, 0, 393237, 1310714, 0, 393237, 1310715, 0, 393237, 1310716, 0, 393237, 1310717, 0, 393237, 1310718, 0, 393235, 1310719, 0, 327688, 1245184, 0, 327689, 1245185, 0, 327689, 1245186, 0, 327689, 1245187, 0, 327690, 1245188, 0, 65545, 1245189, 0, 65546, 1245190, 0, 1114114, 1245191, 0, 1114115, 1245192, 0, 1114116, 1245193, 0, 65544, 1245194, 0, 65545, 1245195, 0, 327688, 1245196, 0, 327689, 1245197, 0, 327689, 1245198, 0, 327690, 1245199, 0, 131092, 1245200, 0, 131093, 1245201, 0, 131094, 1245202, 0, 327688, 1245203, 0, 327689, 1245204, 0, 327689, 1245205, 0, 327690, 1245206, 0, 65545, 1245207, 0, 65545, 1245208, 0, 65545, 1245209, 0, 65546, 1245210, 0, 1114114, 1245211, 0, 1114115, 1245212, 0, 1114116, 1245213, 0, 65544, 1245214, 0, 65545, 1245215, 0, 65545, 1245216, 0, 65544, 1245217, 0, 65545, 1245218, 0, 65545, 1245219, 0, 65545, 1245220, 0, 65545, 1245221, 0, 65545, 1245222, 0, 65545, 1245223, 0, 65545, 1245224, 0, 65545, 1245225, 0, 65545, 1245226, 0, 65545, 1245227, 0, 65545, 1245228, 0, 65545, 1245229, 0, 65545, 1245230, 0, 65545, 1245231, 0, 65545, 1245232, 0, 65546, 1376248, 0, 393237, 1376249, 0, 393237, 1376250, 0, 393237, 1376251, 0, 393237, 1376252, 0, 393237, 1376253, 0, 393237, 1376254, 0, 393235, 1376255, 0, 131088, 1310720, 0, 65556, 1310721, 0, 65557, 1310722, 0, 65558, 1310723, 0, 131088, 1310724, 0, 65545, 1310725, 0, 65546, 1310726, 0, 1114114, 1310727, 0, 1114115, 1310728, 0, 1114116, 1310729, 0, 65544, 1310730, 0, 65545, 1310731, 0, 131088, 1310732, 0, 131089, 1310733, 0, 131090, 1310734, 0, 131091, 1310735, 0, 196628, 1310736, 0, 655375, 1310737, 0, 196630, 1310738, 0, 131089, 1310739, 0, 131090, 1310740, 0, 131091, 1310741, 0, 131088, 1310742, 0, 65545, 1310743, 0, 65545, 1310744, 0, 65545, 1310745, 0, 65546, 1310746, 0, 1114114, 1310747, 0, 1114115, 1310748, 0, 1114116, 1310749, 0, 65544, 1310750, 0, 65545, 1310751, 0, 65545, 1310752, 0, 65544, 1310753, 0, 65545, 1310754, 0, 65545, 1310755, 0, 65545, 1310756, 0, 65545, 1310757, 0, 65545, 1310758, 0, 65545, 1310759, 0, 65545, 1310760, 0, 65545, 1310761, 0, 65545, 1310762, 0, 65545, 1310763, 0, 65545, 1310764, 0, 65545, 1310765, 0, 65545, 1310766, 0, 65545, 1310767, 0, 65545, 1310768, 0, 65546, 1441784, 0, 458770, 1441785, 0, 458770, 1441786, 0, 458770, 1441787, 0, 458770, 1441788, 0, 458770, 1441789, 0, 458770, 1441790, 0, 458771, 1441791, 0, 196624, 1376256, 0, 196628, 1376257, 0, 196629, 1376258, 0, 196630, 1376259, 0, 196624, 1376260, 0, 65545, 1376261, 0, 65546, 1376262, 0, 1114114, 1376263, 0, 1114115, 1376264, 0, 1114116, 1376265, 0, 65544, 1376266, 0, 65545, 1376267, 0, 196624, 1376268, 0, 851976, 1376269, 536870912, 851977, 1376270, 536870912, 851976, 1376271, 0, 65545, 1376272, 0, 65545, 1376273, 0, 65545, 1376274, 0, 851976, 1376275, 0, 851977, 1376276, 0, 851978, 1376277, 0, 196624, 1376278, 0, 65545, 1376279, 0, 65545, 1376280, 0, 65545, 1376281, 0, 65546, 1376282, 0, 1114114, 1376283, 0, 1114115, 1376284, 0, 1114116, 1376285, 0, 65544, 1376286, 0, 65545, 1376287, 0, 65545, 1376288, 0, 131080, 1376289, 0, 131081, 1376290, 0, 131081, 1376291, 0, 131081, 1376292, 0, 131081, 1376293, 0, 131081, 1376294, 0, 131081, 1376295, 0, 131081, 1376296, 0, 131081, 1376297, 0, 131081, 1376298, 0, 131081, 1376299, 0, 131081, 1376300, 0, 131081, 1376301, 0, 131081, 1376302, 0, 131081, 1376303, 0, 131081, 1376304, 0, 131082, 1507320, 0, 65545, 1507321, 0, 65545, 1507322, 0, 65545, 1507323, 0, 65545, 1507324, 0, 65545, 1507325, 0, 65545, 1507326, 0, 65545, 1507327, 0, 65545, 1441792, 0, 65545, 1441793, 0, 65545, 1441794, 0, 65545, 1441795, 0, 65545, 1441796, 0, 65545, 1441797, 0, 65546, 1441798, 0, 1048578, 1441799, 0, 1048579, 1441800, 0, 1048580, 1441801, 0, 65544, 1441802, 0, 65545, 1441803, 0, 65545, 1441804, 0, 65545, 1441805, 0, 65545, 1441806, 0, 65545, 1441807, 0, 65545, 1441808, 0, 65545, 1441809, 0, 65545, 1441810, 0, 65545, 1441811, 0, 65545, 1441812, 0, 65545, 1441813, 0, 65545, 1441814, 0, 65545, 1441815, 0, 65545, 1441816, 0, 65545, 1441817, 0, 65546, 1441818, 0, 1048578, 1441819, 0, 1048579, 1441820, 0, 1048580, 1441821, 0, 65544, 1441822, 0, 65545, 1441823, 0, 65545, 1441824, 0, 65545, 1441825, 0, 65545, 1441826, 0, 65545, 1441827, 0, 65545, 1441828, 0, 65545, 1441829, 0, 65545, 1441830, 0, 65545, 1441831, 0, 65545, 1441832, 0, 65545, 1441833, 0, 65545, 1441834, 0, 65545, 1441835, 0, 65545, 1441836, 0, 65545, 1572856, 0, 131081, 1572857, 0, 131081, 1572858, 0, 131081, 1572859, 0, 131081, 1572860, 0, 131081, 1572861, 0, 131081, 1572862, 0, 131081, 1572863, 0, 131081, 1507328, 0, 131081, 1507329, 0, 131081, 1507330, 0, 131081, 1507331, 0, 131081, 1507332, 0, 131081, 1507333, 0, 131082, 1507334, 0, 1114114, 1507335, 0, 1114115, 1507336, 0, 1114116, 1507337, 0, 131080, 1507338, 0, 131081, 1507339, 0, 131081, 1507340, 0, 131081, 1507341, 0, 131081, 1507342, 0, 131081, 1507343, 0, 131081, 1507344, 0, 131081, 1507345, 0, 131081, 1507346, 0, 131081, 1507347, 0, 131081, 1507348, 0, 131081, 1507349, 0, 131081, 1507350, 0, 131081, 1507351, 0, 131081, 1507352, 0, 131081, 1507353, 0, 131082, 1507354, 0, 1114114, 1507355, 0, 1114115, 1507356, 0, 1114116, 1507357, 0, 131080, 1507358, 0, 131081, 1507359, 0, 131081, 1507360, 0, 131081, 1507361, 0, 131081, 1507362, 0, 131081, 1507363, 0, 131081, 1507364, 0, 131081, 1507365, 0, 131081, 1507366, 0, 131081, 1507367, 0, 131081, 1507368, 0, 131081, 1507369, 0, 131081, 1507370, 0, 131081, 1507371, 0, 131081, 1507372, 0, 131081, 1638392, 0, 983041, 1638393, 0, 983041, 1638394, 0, 983041, 1638395, 0, 983041, 1638396, 0, 983041, 1638397, 0, 983041, 1638398, 0, 983041, 1638399, 0, 983041, 1572864, 0, 983041, 1572865, 0, 983041, 1572866, 0, 983041, 1572867, 0, 983041, 1572868, 0, 983040, 1572869, 0, 983041, 1572870, 0, 1114120, 1572871, 0, 1114115, 1572872, 0, 1114119, 1572873, 0, 983041, 1572874, 0, 983040, 1572875, 0, 983041, 1572876, 0, 983041, 1572877, 0, 983041, 1572878, 0, 983041, 1572879, 0, 983041, 1572880, 0, 983041, 1572881, 0, 983041, 1572882, 0, 983041, 1572883, 0, 983041, 1572884, 0, 983041, 1572885, 0, 983041, 1572886, 0, 983041, 1572887, 0, 983041, 1572888, 0, 983040, 1572889, 0, 983041, 1572890, 0, 1114120, 1572891, 0, 1114115, 1572892, 0, 1114119, 1572893, 0, 983041, 1572894, 0, 983040, 1572895, 0, 983041, 1572896, 0, 983041, 1572897, 0, 983041, 1572898, 0, 983041, 1572899, 0, 983041, 1572900, 0, 983041, 1572901, 0, 983041, 1572902, 0, 983041, 1572903, 0, 983041, 1572904, 0, 983041, 1572905, 0, 983041, 1572906, 0, 983041, 1572907, 0, 983041, 1572908, 0, 983041, 1703928, 0, 1048577, 1703929, 0, 1048577, 1703930, 0, 1048577, 1703931, 0, 1048577, 1703932, 0, 1048577, 1703933, 0, 1048577, 1703934, 0, 1048577, 1703935, 0, 1048577, 1638400, 0, 1048577, 1638401, 0, 1048577, 1638402, 0, 1048577, 1638403, 0, 1048577, 1638404, 0, 1048576, 1638405, 0, 1048577, 1638406, 0, 1048577, 1638407, 0, 983042, 1638408, 0, 1048577, 1638409, 0, 1048577, 1638410, 0, 1048576, 1638411, 0, 1048577, 1638412, 0, 1048577, 1638413, 0, 1048577, 1638414, 0, 1048577, 1638415, 0, 1048577, 1638416, 0, 1048577, 1638417, 0, 1048577, 1638418, 0, 1048577, 1638419, 0, 1048577, 1638420, 0, 1048577, 1638421, 0, 1048577, 1638422, 0, 1048577, 1638423, 0, 1048577, 1638424, 0, 1048576, 1638425, 0, 1048577, 1638426, 0, 1048577, 1638427, 0, 983042, 1638428, 0, 1048577, 1638429, 0, 1048577, 1638430, 0, 1048576, 1638431, 0, 1048577, 1638432, 0, 1048577, 1638433, 0, 1048577, 1638434, 0, 1048577, 1638435, 0, 1048577, 1638436, 0, 1048577, 1638437, 0, 1048577, 1638438, 0, 1048577, 1638439, 0, 1048577, 1638440, 0, 1048577, 1638441, 0, 1048577, 1638442, 0, 1048577, 1638443, 0, 1048577, 1638444, 0, 1048577, 1769464, 0, 1114113, 1769465, 0, 1114113, 1769466, 0, 1114113, 1769467, 0, 1114113, 1769468, 0, 1114113, 1769469, 0, 1114113, 1769470, 0, 1114113, 1769471, 0, 1114113, 1703936, 0, 1114113, 1703937, 0, 1114113, 1703938, 0, 1114113, 1703939, 0, 1114113, 1703940, 0, 1114112, 1703941, 0, 1114113, 1703942, 0, 1048584, 1703943, 0, 1114115, 1703944, 0, 1048583, 1703945, 0, 1114113, 1703946, 0, 1114112, 1703947, 0, 1114113, 1703948, 0, 1114113, 1703949, 0, 1114113, 1703950, 0, 1114113, 1703951, 0, 1114113, 1703952, 0, 1114113, 1703953, 0, 1114113, 1703954, 0, 1114113, 1703955, 0, 1114113, 1703956, 0, 1114113, 1703957, 0, 1114113, 1703958, 0, 1114113, 1703959, 0, 1114113, 1703960, 0, 1114112, 1703961, 0, 1114113, 1703962, 0, 1048584, 1703963, 0, 1114115, 1703964, 0, 1048583, 1703965, 0, 1114113, 1703966, 0, 1114112, 1703967, 0, 1114113, 1703968, 0, 1114113, 1703969, 0, 1114113, 1703970, 0, 1114113, 1703971, 0, 1114113, 1703972, 0, 1114113, 1703973, 0, 1114113, 1703974, 0, 1114113, 1703975, 0, 1114113, 1703976, 0, 1114113, 1703977, 0, 1114113, 1703978, 0, 1114113, 1703979, 0, 1114113, 1703980, 0, 1114113, 1835000, 0, 9, 1835001, 0, 9, 1835002, 0, 9, 1835003, 0, 9, 1835004, 0, 9, 1835005, 0, 9, 1835006, 0, 9, 1835007, 0, 9, 1769472, 0, 9, 1769473, 0, 9, 1769474, 0, 9, 1769475, 0, 9, 1769476, 0, 9, 1769477, 0, 10, 1769478, 0, 1114114, 1769479, 0, 1114115, 1769480, 0, 1114116, 1769481, 0, 8, 1769482, 0, 9, 1769483, 0, 9, 1769484, 0, 9, 1769485, 0, 9, 1769486, 0, 9, 1769487, 0, 9, 1769488, 0, 9, 1769489, 0, 9, 1769490, 0, 9, 1769491, 0, 9, 1769492, 0, 9, 1769493, 0, 9, 1769494, 0, 9, 1769495, 0, 9, 1769496, 0, 9, 1769497, 0, 10, 1769498, 0, 1114114, 1769499, 0, 1114115, 1769500, 0, 1114116, 1769501, 0, 8, 1769502, 0, 9, 1769503, 0, 9, 1769504, 0, 9, 1769505, 0, 9, 1769506, 0, 9, 1769507, 0, 9, 1769508, 0, 9, 1769509, 0, 9, 1769510, 0, 9, 1769511, 0, 9, 1769512, 0, 9, 1769513, 0, 9, 1769514, 0, 9, 1769515, 0, 9, 1769516, 0, 9, 1769517, 0, 9, 1900536, 0, 65545, 1900537, 0, 65545, 1900538, 0, 65545, 1900539, 0, 65545, 1900540, 0, 65545, 1900541, 0, 65545, 1900542, 0, 65545, 1900543, 0, 65545, 1835008, 0, 65545, 1835009, 0, 65545, 1835010, 0, 65545, 1835011, 0, 65545, 1835012, 0, 65545, 1835013, 0, 65546, 1835014, 0, 1048578, 1835015, 0, 1048579, 1835016, 0, 1048580, 1835017, 0, 65544, 1835018, 0, 65545, 1835019, 0, 65545, 1835020, 0, 65545, 1835021, 0, 65545, 1835022, 0, 65545, 1835023, 0, 65545, 1835024, 0, 65545, 1835025, 0, 65545, 1835026, 0, 65545, 1835027, 0, 65545, 1835028, 0, 65545, 1835029, 0, 65545, 1835030, 0, 65545, 1835031, 0, 65545, 1835032, 0, 65545, 1835033, 0, 65546, 1835034, 0, 1048578, 1835035, 0, 1048579, 1835036, 0, 1048580, 1835037, 0, 65544, 1835038, 0, 65545, 1835039, 0, 65545, 1835040, 0, 65545, 1835041, 0, 65545, 1835042, 0, 65545, 1835043, 0, 65545, 1835044, 0, 65545, 1835045, 0, 65545, 1835046, 0, 65545, 1835047, 0, 65545, 1835048, 0, 65545, 1835049, 0, 65545, 1835050, 0, 65545, 1835051, 0, 65545, 1835052, 0, 65545, 1835053, 0, 65545, 1966072, 0, 65545, 1966073, 0, 65545, 1966074, 0, 196608, 1966075, 0, 196609, 1966076, 0, 196609, 1966077, 0, 196609, 1966078, 0, 196609, 1966079, 0, 196609, 1900544, 0, 196609, 1900545, 0, 196609, 1900546, 0, 196610, 1900547, 0, 65545, 1900548, 0, 65545, 1900549, 0, 65546, 1900550, 0, 1114114, 1900551, 0, 1114115, 1900552, 0, 1114116, 1900553, 0, 65544, 1900554, 0, 65545, 1900555, 0, 65545, 1900556, 0, 65545, 1900557, 0, 65545, 1900558, 0, 65545, 1900559, 0, 65545, 1900560, 0, 65545, 1900561, 0, 65545, 1900562, 0, 65545, 1900563, 0, 65545, 1900564, 0, 65545, 1900565, 0, 65545, 1900566, 0, 65545, 1900567, 0, 65545, 1900568, 0, 65545, 1900569, 0, 65546, 1900570, 0, 1114114, 1900571, 0, 1114115, 1900572, 0, 1114116, 1900573, 0, 65544, 1900574, 0, 65545, 1900575, 0, 65545, 1900576, 0, 65545, 1900577, 0, 65545, 1900578, 0, 65545, 1900579, 0, 65545, 1900580, 0, 65537, 1900581, 0, 65537, 1900582, 0, 65537, 1900583, 0, 65537, 1900584, 0, 65537, 1900585, 0, 65537, 1900586, 0, 65537, 1900587, 0, 65537, 1900588, 0, 65537, 1900589, 0, 65537, 2031608, 0, 65545, 2031609, 0, 65545, 2031610, 0, 262144, 2031611, 0, 262145, 2031612, 0, 262145, 2031613, 0, 262145, 2031614, 0, 262145, 2031615, 0, 262145, 1966080, 0, 262145, 1966081, 0, 262145, 1966082, 0, 262146, 1966083, 0, 65545, 1966084, 0, 65545, 1966085, 0, 65546, 1966086, 0, 1114114, 1966087, 0, 1114115, 1966088, 0, 1114116, 1966089, 0, 65544, 1966090, 0, 65545, 1966091, 0, 65545, 1966092, 0, 65545, 1966093, 0, 1, 1966094, 0, 1, 1966095, 0, 1, 1966096, 0, 1, 1966097, 0, 1, 1966098, 0, 1, 1966099, 0, 1, 1966100, 0, 1, 1966101, 0, 1, 1966102, 0, 65545, 1966103, 0, 65545, 1966104, 0, 65545, 1966105, 0, 65546, 1966106, 0, 1114114, 1966107, 0, 1114115, 1966108, 0, 1114116, 1966109, 0, 65544, 1966110, 0, 65545, 1966111, 0, 65545, 1966112, 0, 327683, 1966113, 0, 327684, 1966114, 0, 327685, 1966115, 0, 65545, 1966116, 0, 65537, 1966117, 0, 65537, 1966118, 0, 65537, 1966119, 0, 65537, 1966120, 0, 65537, 1966121, 0, 65537, 1966122, 0, 65537, 1966123, 0, 65537, 1966124, 0, 65537, 1966125, 0, 65537, 2097144, 0, 65545, 2097145, 0, 65545, 2097146, 0, 262144, 2097147, 0, 262145, 2097148, 0, 196613, 2097149, 0, 327681, 2097150, 0, 327681, 2097151, 0, 327681, 2031616, 0, 196614, 2031617, 0, 262145, 2031618, 0, 262146, 2031619, 0, 65545, 2031620, 0, 65545, 2031621, 0, 65546, 2031622, 0, 1114114, 2031623, 0, 1114115, 2031624, 0, 1114116, 2031625, 0, 65544, 2031626, 0, 65545, 2031627, 0, 65545, 2031628, 0, 65536, 2031629, 1073741824, 65537, 2031630, 1073741824, 65537, 2031631, 1073741824, 65537, 2031632, 1073741824, 65537, 2031633, 1073741824, 65537, 2031634, 1073741824, 65537, 2031635, 1073741824, 65537, 2031636, 1073741824, 65537, 2031637, 1073741824, 65537, 2031638, 0, 65538, 2031639, 0, 65545, 2031640, 0, 65545, 2031641, 0, 65546, 2031642, 0, 1114114, 2031643, 0, 1114115, 2031644, 0, 1114116, 2031645, 0, 65544, 2031646, 0, 65545, 2031647, 0, 65545, 2031648, 0, 65544, 2031649, 0, 65545, 2031650, 0, 65546, 2031651, 0, 65545, 2031652, 0, 65537, 2031653, 0, 65537, 2031654, 0, 65537, 2031655, 0, 65537, 2031656, 0, 65537, 2031657, 0, 65537, 2031658, 0, 65537, 2031659, 0, 65537, 2031660, 0, 65537, 2031661, 0, 65537, 2162680, 0, 65545, 2162681, 0, 65545, 2162682, 0, 262144, 2162683, 0, 262145, 2162684, 0, 262146, 2162685, 0, 393236, 2162686, 0, 393234, 2162687, 0, 393238, 2097152, 0, 262144, 2097153, 0, 262145, 2097154, 0, 262146, 2097155, 0, 65545, 2097156, 0, 65545, 2097157, 0, 65546, 2097158, 0, 1114114, 2097159, 0, 1114115, 2097160, 0, 1114116, 2097161, 0, 65544, 2097162, 0, 65545, 2097163, 0, 65545, 2097164, 0, 65536, 2097165, 1073741824, 65537, 2097166, 1073741824, 65537, 2097167, 1073741824, 65537, 2097168, 1073741824, 65537, 2097169, 1073741824, 65537, 2097170, 1073741824, 65537, 2097171, 1073741824, 65537, 2097172, 1073741824, 65537, 2097173, 1073741824, 65537, 2097174, 0, 65538, 2097175, 0, 65545, 2097176, 0, 65545, 2097177, 0, 65546, 2097178, 0, 1114114, 2097179, 0, 1114115, 2097180, 0, 1114116, 2097181, 0, 65544, 2097182, 0, 65545, 2097183, 0, 65545, 2097184, 0, 65545, 2097185, 0, 65545, 2097186, 0, 65545, 2097187, 0, 65545, 2097188, 0, 196616, 2097189, 0, 196617, 2097190, 0, 196617, 2097191, 0, 196617, 2097192, 0, 196617, 2097193, 0, 196617, 2097194, 0, 196618, 2097195, 0, 65537, 2097196, 0, 65537, 2097197, 0, 65537, 2228216, 0, 65545, 2228217, 0, 65545, 2228218, 0, 327680, 2228219, 0, 327681, 2228220, 0, 327682, 2228221, 0, 327700, 2228222, 0, 327698, 2228223, 0, 327702, 2162688, 0, 327680, 2162689, 0, 327681, 2162690, 0, 327682, 2162691, 0, 65545, 2162692, 0, 65545, 2162693, 0, 65546, 2162694, 0, 1114114, 2162695, 0, 1114115, 2162696, 0, 1114116, 2162697, 0, 65544, 2162698, 0, 65545, 2162699, 0, 65545, 2162700, 0, 65536, 2162701, 1073741824, 65537, 2162702, 1073741824, 65537, 2162703, 1073741824, 65537, 2162704, 1073741824, 65537, 2162705, 1073741824, 65537, 2162706, 1073741824, 65537, 2162707, 1073741824, 65537, 2162708, 1073741824, 65537, 2162709, 1073741824, 65537, 2162710, 0, 65538, 2162711, 0, 65545, 2162712, 0, 65545, 2162713, 0, 65546, 2162714, 0, 1114114, 2162715, 0, 1114115, 2162716, 0, 1114116, 2162717, 0, 65544, 2162718, 0, 65545, 2162719, 0, 65545, 2162720, 0, 65545, 2162721, 0, 65545, 2162722, 0, 65545, 2162723, 0, 65545, 2162724, 0, 262152, 2162725, 0, 262153, 2162726, 0, 262153, 2162727, 0, 262153, 2162728, 0, 262153, 2162729, 0, 262153, 2162730, 0, 262154, 2162731, 0, 65537, 2162732, 0, 65537, 2162733, 0, 65537, 2293752, 0, 65545, 2293753, 0, 65545, 2293754, 0, 393233, 2293755, 0, 393234, 2293756, 0, 393235, 2293757, 0, 393236, 2293758, 0, 393234, 2293759, 0, 393238, 2228224, 0, 393233, 2228225, 0, 393234, 2228226, 0, 393235, 2228227, 0, 65545, 2228228, 0, 65545, 2228229, 0, 65546, 2228230, 0, 1114114, 2228231, 0, 1114115, 2228232, 0, 1114116, 2228233, 0, 65544, 2228234, 0, 65545, 2228235, 0, 65545, 2228236, 0, 65536, 2228237, 1073741824, 65537, 2228238, 1073741824, 65537, 2228239, 1073741824, 65537, 2228240, 1073741824, 65537, 2228241, 1073741824, 65537, 2228242, 1073741824, 65537, 2228243, 1073741824, 65537, 2228244, 1073741824, 65537, 2228245, 1073741824, 65537, 2228246, 0, 65538, 2228247, 0, 65545, 2228248, 0, 65545, 2228249, 0, 65546, 2228250, 0, 1114114, 2228251, 0, 1114115, 2228252, 0, 1114116, 2228253, 0, 65544, 2228254, 0, 65545, 2228255, 0, 196616, 2228256, 0, 196617, 2228257, 0, 196617, 2228258, 0, 196617, 2228259, 0, 196617, 2228260, 0, 262158, 2228261, 0, 262153, 2228262, 0, 262153, 2228263, 0, 262153, 2228264, 0, 262153, 2228265, 0, 262153, 2228266, 0, 262157, 2228267, 0, 196617, 2228268, 0, 196617, 2228269, 0, 196617, 2359288, 0, 65545, 2359289, 0, 65545, 2359290, 0, 327697, 2359291, 0, 327698, 2359292, 0, 327699, 2359293, 0, 458772, 2359294, 0, 655374, 2359295, 0, 458774, 2293760, 0, 327697, 2293761, 0, 327698, 2293762, 0, 327699, 2293763, 0, 65545, 2293764, 0, 65545, 2293765, 0, 65546, 2293766, 0, 1114114, 2293767, 0, 1114115, 2293768, 0, 1114116, 2293769, 0, 65544, 2293770, 0, 65545, 2293771, 0, 65545, 2293772, 0, 65536, 2293773, 1073741824, 65537, 2293774, 1073741824, 65537, 2293775, 1073741824, 65537, 2293776, 1073741824, 65537, 2293777, 1073741824, 65537, 2293778, 1073741824, 65537, 2293779, 1073741824, 65537, 2293780, 1073741824, 65537, 2293781, 1073741824, 65537, 2293782, 0, 65538, 2293783, 0, 65545, 2293784, 0, 65545, 2293785, 0, 65546, 2293786, 0, 1114114, 2293787, 0, 1114115, 2293788, 0, 1114116, 2293789, 0, 65544, 2293790, 0, 65545, 2293791, 0, 262152, 2293792, 0, 262153, 2293793, 0, 262153, 2293794, 0, 262153, 2293795, 0, 262153, 2293796, 0, 262153, 2293797, 0, 262153, 2293798, 0, 262153, 2293799, 0, 262153, 2293800, 0, 262153, 2293801, 0, 262153, 2293802, 0, 262153, 2293803, 0, 262153, 2293804, 0, 262153, 2293805, 0, 262153, 2424824, 0, 65545, 2424825, 0, 65545, 2424826, 0, 393233, 2424827, 0, 393234, 2424828, 0, 393235, 2424829, 0, 65545, 2424830, 0, 65545, 2424831, 0, 65545, 2359296, 0, 393233, 2359297, 0, 393234, 2359298, 0, 393235, 2359299, 0, 65545, 2359300, 0, 65545, 2359301, 0, 65546, 2359302, 0, 1114114, 2359303, 0, 1114115, 2359304, 0, 1114116, 2359305, 0, 65544, 2359306, 0, 65545, 2359307, 0, 65545, 2359308, 0, 65536, 2359309, 1073741824, 65537, 2359310, 1073741824, 65537, 2359311, 1073741824, 65537, 2359312, 0, 458761, 2359313, 1073741824, 65537, 2359314, 0, 458761, 2359315, 1073741824, 65537, 2359316, 1073741824, 65537, 2359317, 1073741824, 65537, 2359318, 0, 65538, 2359319, 0, 65545, 2359320, 0, 65545, 2359321, 0, 65546, 2359322, 0, 1114114, 2359323, 0, 1114115, 2359324, 0, 1114116, 2359325, 0, 65544, 2359326, 0, 65545, 2359327, 0, 327688, 2359328, 0, 327689, 2359329, 0, 327689, 2359330, 0, 327689, 2359331, 0, 327689, 2359332, 0, 327689, 2359333, 0, 196622, 2359334, 0, 262153, 2359335, 0, 262153, 2359336, 0, 262153, 2359337, 0, 262153, 2359338, 0, 196621, 2359339, 0, 327689, 2359340, 0, 327689, 2359341, 0, 327689, 2490360, 0, 65545, 2490361, 0, 65545, 2490362, 0, 458769, 2490363, 0, 458770, 2490364, 0, 458771, 2490365, 0, 65545, 2490366, 0, 65545, 2490367, 0, 65545, 2424832, 0, 458769, 2424833, 0, 458770, 2424834, 0, 458771, 2424835, 0, 65545, 2424836, 0, 65545, 2424837, 0, 65546, 2424838, 0, 1114114, 2424839, 0, 1114115, 2424840, 0, 1114116, 2424841, 0, 65544, 2424842, 0, 65545, 2424843, 0, 65545, 2424844, 0, 65536, 2424845, 1073741824, 65537, 2424846, 1073741824, 65537, 2424847, 1073741824, 65537, 2424848, 0, 458761, 2424849, 0, 458761, 2424850, 0, 458761, 2424851, 1073741824, 65537, 2424852, 1073741824, 65537, 2424853, 1073741824, 65537, 2424854, 0, 65538, 2424855, 0, 65545, 2424856, 0, 65545, 2424857, 0, 65546, 2424858, 0, 1114114, 2424859, 0, 1114115, 2424860, 0, 1114116, 2424861, 0, 65544, 2424862, 0, 65545, 2424863, 0, 131088, 2424864, 0, 131089, 2424865, 0, 131090, 2424866, 0, 131090, 2424867, 0, 131091, 2424868, 0, 131088, 2424869, 0, 327688, 2424870, 0, 327689, 2424871, 0, 327689, 2424872, 0, 327689, 2424873, 0, 327689, 2424874, 0, 327690, 2424875, 0, 131088, 2424876, 0, 131089, 2424877, 0, 131090, 2555896, 0, 65545, 2555897, 0, 65545, 2555898, 0, 65545, 2555899, 0, 65545, 2555900, 0, 65545, 2555901, 0, 65545, 2555902, 0, 65545, 2555903, 0, 65545, 2490368, 0, 65545, 2490369, 0, 65545, 2490370, 0, 65545, 2490371, 0, 65545, 2490372, 0, 65545, 2490373, 0, 65546, 2490374, 0, 1114114, 2490375, 0, 1114115, 2490376, 0, 1114116, 2490377, 0, 65544, 2490378, 0, 65545, 2490379, 0, 65545, 2490380, 0, 65536, 2490381, 1073741824, 65537, 2490382, 1073741824, 65537, 2490383, 1073741824, 65537, 2490384, 1073741824, 65537, 2490385, 1073741824, 65537, 2490386, 1073741824, 65537, 2490387, 1073741824, 65537, 2490388, 1073741824, 65537, 2490389, 1073741824, 65537, 2490390, 0, 65538, 2490391, 0, 65545, 2490392, 0, 65545, 2490393, 0, 65546, 2490394, 0, 1114114, 2490395, 0, 1114115, 2490396, 0, 1114116, 2490397, 0, 65544, 2490398, 0, 65545, 2490399, 0, 131088, 2490400, 0, 131089, 2490401, 0, 131090, 2490402, 0, 131090, 2490403, 0, 131091, 2490404, 0, 131088, 2490405, 0, 131088, 2490406, 0, 131089, 2490407, 0, 131090, 2490408, 0, 131090, 2490409, 0, 131091, 2490410, 0, 131088, 2490411, 0, 131088, 2490412, 0, 131089, 2490413, 0, 131090, 2555935, 0, 196624, 2555936, 0, 196625, 2555937, 0, 983047, 2555938, 0, 983048, 2555939, 0, 196627, 2555940, 0, 196624, 2555941, 0, 131088, 2555942, 0, 131089, 2555943, 0, 131090, 2555944, 0, 131090, 2555945, 0, 131091, 2555946, 0, 131088, 2555947, 0, 196624, 2555948, 0, 196625, 2555949, 0, 983047, 2621471, 0, 65545, 2621472, 0, 65545, 2621473, 0, 65545, 2621474, 0, 65545, 2621475, 0, 65545, 2621476, 0, 65545, 2621477, 0, 196624, 2621478, 0, 196625, 2621479, 0, 983049, 2621480, 0, 983048, 2621481, 0, 196627, 2621482, 0, 196624, 2621483, 0, 65545, 2621484, 0, 65545, 2621485, 0, 65545 )
[node name="TileMap_Static_Front" type="TileMap" parent="."]
tile_set = ExtResource( 15 )
cell_size = Vector2( 16, 16 )
cell_custom_transform = Transform2D( 16, 0, 0, 16, 0, 0 )
collision_layer = 257
format = 1
tile_data = PoolIntArray( 65535, 0, 524305, 6, 0, 589824, 10, 0, 589824, 12, 1073741824, 786442, 13, 1073741824, 786442, 14, 1073741824, 786442, 15, 1073741824, 786442, 17, 0, 589824, 21, 0, 589824, 25, 0, 589835, 131064, 0, 524310, 131068, 0, 524306, 131069, 0, 524307, 131070, 0, 524308, 131071, 0, 589841, 65548, 1073741824, 786442, 65549, 1073741824, 786442, 65550, 1073741824, 786442, 65551, 1073741824, 786442, 65565, 0, 458755, 196602, 0, 524305, 196604, 0, 655378, 196605, 0, 655379, 196606, 0, 655380, 131072, 0, 589846, 131076, 0, 393218, 131079, 0, 786445, 131080, 0, 786445, 131091, 0, 786445, 131092, 0, 786445, 131095, 0, 589835, 131100, 0, 1114116, 131101, 0, 1048591, 131102, 0, 1048592, 131103, 0, 458753, 131105, 0, 524304, 131109, 0, 589835, 262138, 0, 589841, 262141, 0, 917507, 196612, 0, 458754, 196613, 0, 786443, 196615, 0, 917518, 196616, 0, 917518, 196618, 0, 786443, 196621, 0, 786445, 196622, 0, 786445, 196625, 0, 786443, 196627, 0, 917518, 196628, 0, 917518, 196630, 0, 786443, 196636, 0, 1114116, 196637, 0, 1114127, 196638, 0, 1114128, 196639, 0, 458753, 196641, 0, 655376, 196647, 0, 589824, 196653, 0, 589824, 327675, 0, 589846, 327679, 0, 589846, 262146, 0, 589841, 262147, 0, 917508, 262148, 0, 917510, 262150, 0, 786436, 262151, 0, 786437, 262152, 0, 786437, 262153, 0, 786438, 262155, 0, 786443, 262157, 0, 917518, 262158, 0, 917518, 262160, 0, 786443, 262162, 0, 786436, 262163, 0, 786437, 262164, 0, 786437, 262165, 0, 786438, 262167, 0, 655368, 262169, 0, 458755, 262172, 0, 1114116, 262173, 0, 1114133, 262174, 0, 1114134, 262175, 0, 458753, 262179, 1073741824, 851979, 262180, 1073741824, 851979, 262181, 1073741824, 851979, 262185, 1073741824, 851979, 262186, 1073741824, 851979, 262187, 1073741824, 851979, 393209, 0, 524310, 393213, 0, 524305, 327681, 0, 589841, 327690, 0, 655369, 327692, 0, 786436, 327693, 0, 786437, 327694, 0, 786437, 327695, 0, 786438, 327697, 0, 655370, 327708, 0, 1114116, 327711, 0, 458753, 327712, 1073741824, 851979, 327713, 1073741824, 851979, 327714, 1073741824, 851979, 327715, 0, 917516, 327717, 0, 917516, 327718, 1073741824, 851979, 327719, 1073741824, 851979, 327720, 1073741824, 851979, 327721, 0, 917516, 327723, 0, 917516, 327724, 1073741824, 851979, 327725, 1073741824, 851979, 327726, 1073741824, 851979, 458744, 0, 589846, 458749, 0, 589841, 393216, 0, 589841, 393245, 0, 458755, 393248, 0, 917516, 393250, 0, 917516, 393251, 0, 655381, 393253, 0, 655381, 393254, 0, 917516, 393256, 0, 917516, 393257, 0, 655381, 393259, 0, 655381, 393260, 0, 917516, 393262, 0, 917516, 524282, 0, 655382, 524286, 0, 524310, 458752, 0, 589831, 458753, 0, 458759, 458755, 0, 458756, 524290, 0, 131074, 524320, 0, 786455, 524321, 0, 917507, 589824, 0, 458752, 589829, 0, 458754, 589830, 0, 917512, 589831, 0, 917513, 589832, 0, 917514, 589835, 0, 458757, 589837, 0, 458752, 589849, 536870912, 458752, 589853, 0, 458752, 589859, 1073741824, 851979, 589860, 1073741824, 851979, 589861, 1073741824, 851979, 589865, 1073741824, 851979, 589866, 1073741824, 851979, 589867, 1073741824, 851979, 655361, 536870912, 458754, 655377, 0, 524288, 655378, 0, 589825, 655379, 0, 589826, 655380, 0, 589827, 655381, 0, 524292, 655392, 1073741824, 851979, 655393, 1073741824, 851979, 655394, 1073741824, 851979, 655395, 0, 917516, 655397, 0, 917516, 655398, 1073741824, 851979, 655399, 1073741824, 851979, 655400, 1073741824, 851979, 655401, 0, 917516, 655403, 0, 917516, 655404, 1073741824, 851979, 655405, 1073741824, 851979, 655406, 1073741824, 851979, 786424, 536870912, 786441, 786425, 0, 786441, 786426, 536870912, 786441, 786427, 0, 786441, 720919, 0, 655369, 720928, 0, 917516, 720930, 0, 917516, 720931, 0, 655381, 720933, 0, 655381, 720934, 0, 917516, 720936, 0, 917516, 720937, 0, 655381, 720939, 0, 655381, 720940, 0, 917516, 720942, 0, 917516, 851960, 536870912, 786441, 851961, 0, 786441, 851962, 536870912, 786441, 851963, 0, 786441, 786435, 0, 589838, 786437, 0, 589838, 786439, 0, 589838, 786441, 0, 589838, 786443, 0, 589838, 786447, 0, 851971, 786449, 0, 786435, 786450, 0, 786443, 786451, 0, 786442, 786452, 0, 786443, 786453, 0, 851971, 786455, 0, 786435, 786457, 0, 458755, 917496, 536870912, 786441, 917497, 0, 786441, 917498, 536870912, 786441, 917499, 0, 786441, 851971, 0, 720897, 851973, 0, 720897, 851975, 0, 720897, 851977, 0, 720897, 851979, 0, 720897, 852001, 0, 720904, 852002, 0, 655369, 852008, 0, 786435, 852009, 0, 851971, 983032, 536870912, 786441, 983033, 0, 786441, 983034, 536870912, 786441, 983035, 0, 786441, 917506, 536870912, 458754, 917516, 0, 458754, 917519, 0, 786443, 917520, 0, 786442, 917521, 0, 786443, 917522, 0, 786443, 917523, 0, 786443, 917524, 0, 786443, 917525, 0, 786443, 917526, 0, 786442, 917527, 0, 786443, 1048561, 0, 1048597, 1048562, 0, 1048598, 1048563, 0, 917525, 1048564, 0, 917526, 983058, 0, 786443, 983060, 0, 786443, 983069, 0, 458755, 1114097, 0, 1114133, 1114098, 0, 1114134, 1114099, 0, 983061, 1114100, 0, 983062, 1048591, 0, 786443, 1048592, 0, 786443, 1048593, 0, 786443, 1048594, 0, 655377, 1048596, 0, 655377, 1048597, 0, 786443, 1048598, 0, 786443, 1048599, 0, 786443, 1048609, 536870912, 655366, 1048610, 0, 655366, 1048612, 0, 655366, 1048613, 0, 655366, 1048614, 0, 655366, 1048616, 536870912, 655366, 1048617, 0, 655366, 1048619, 0, 655366, 1048620, 0, 655366, 1048621, 0, 655366, 1179633, 0, 917519, 1179634, 0, 917520, 1179635, 0, 917521, 1179645, 0, 786444, 1114114, 536870912, 458754, 1114124, 0, 458754, 1114133, 0, 786443, 1114134, 0, 786443, 1114135, 0, 786443, 1114137, 0, 458755, 1114147, 536870912, 589834, 1245169, 0, 983055, 1245170, 0, 983056, 1245171, 0, 983057, 1245176, 0, 851976, 1245177, 536870912, 851977, 1245178, 536870912, 851977, 1245179, 536870912, 851976, 1245181, 0, 851982, 1179650, 536870912, 786441, 1179651, 0, 786441, 1179660, 0, 917507, 1179662, 0, 786441, 1179671, 0, 655369, 1179681, 536870912, 655366, 1179682, 0, 655366, 1179684, 0, 655366, 1179685, 0, 655366, 1179686, 0, 655366, 1179688, 536870912, 655366, 1179689, 0, 655366, 1179691, 0, 655366, 1179692, 0, 655366, 1179693, 0, 655366, 1310705, 0, 917522, 1310706, 0, 917523, 1310707, 0, 917524, 1310712, 1073741824, 851976, 1310713, 1610612736, 851977, 1310714, 1610612736, 851977, 1310715, 1610612736, 851976, 1310717, 0, 851982, 1245199, 0, 786443, 1245201, 0, 786443, 1376241, 0, 983058, 1376242, 0, 983059, 1376243, 0, 983060, 1376248, 0, 327698, 1376249, 0, 327698, 1376250, 0, 327698, 1376251, 0, 327698, 1376253, 0, 917518, 1376255, 0, 786444, 1310723, 0, 786444, 1310729, 0, 458755, 1310732, 0, 786443, 1310734, 0, 786443, 1310735, 0, 786443, 1310736, 0, 786440, 1310737, 0, 786443, 1310738, 0, 786443, 1310740, 0, 786443, 1310749, 0, 458755, 1310753, 0, 720899, 1310754, 0, 720900, 1310756, 0, 720903, 1310757, 0, 655367, 1310758, 0, 655367, 1310760, 0, 720899, 1310761, 0, 720900, 1310763, 0, 720903, 1310764, 0, 655367, 1310765, 0, 655367, 1441777, 0, 1048591, 1441778, 0, 1048592, 1441779, 0, 1048593, 1441785, 0, 786447, 1441786, 0, 851983, 1441791, 0, 917518, 1376256, 0, 589836, 1376257, 0, 655375, 1376258, 0, 589836, 1376259, 0, 917518, 1376268, 0, 786436, 1376269, 0, 786437, 1376270, 0, 786438, 1376271, 0, 720904, 1376273, 0, 589834, 1376274, 0, 786436, 1376275, 0, 786437, 1376276, 0, 786438, 1376279, 536870912, 458755, 1376292, 0, 589834, 1507313, 0, 1114127, 1507314, 0, 1114128, 1507315, 0, 1114129, 1441828, 0, 655367, 1441829, 0, 655367, 1441830, 0, 655367, 1572849, 0, 1048594, 1572850, 0, 1048595, 1572851, 0, 1048596, 1572862, 0, 458755, 1507333, 0, 458755, 1507339, 0, 458755, 1507344, 0, 458755, 1507349, 0, 458755, 1507353, 0, 458755, 1507360, 0, 458755, 1507367, 0, 458755, 1638385, 0, 1114130, 1638386, 0, 1114131, 1638387, 0, 1114132, 1835003, 0, 458755, 1769472, 0, 458755, 1769481, 0, 458755, 1769485, 0, 458755, 1769490, 0, 458755, 1769495, 0, 458755, 1769501, 0, 458755, 1769508, 0, 458755, 1769514, 0, 458755, 1835012, 0, 458758, 1835044, 0, 851972, 1835045, 0, 851973, 1835046, 0, 851973, 1835047, 0, 851973, 1835048, 0, 851973, 1835049, 0, 851975, 1835050, 0, 851973, 1835051, 0, 851973, 1835052, 0, 851973, 1835053, 0, 851973, 1900556, 0, 655370, 1900558, 0, 917507, 1900560, 0, 917507, 1900562, 0, 917507, 1900564, 0, 917507, 1900566, 0, 655370, 1900574, 0, 458757, 1900575, 0, 720904, 2031611, 0, 131075, 2031612, 0, 131076, 2031613, 0, 131076, 2031614, 0, 131076, 2031615, 0, 131076, 1966080, 0, 131076, 1966081, 0, 131077, 1966085, 0, 458755, 1966092, 0, 0, 1966102, 0, 2, 1966105, 0, 458755, 2097133, 0, 393216, 2097134, 0, 393217, 2097136, 0, 393218, 2097137, 0, 393219, 2097138, 0, 393220, 2097139, 0, 393221, 2097140, 0, 393222, 2097141, 0, 393223, 2097144, 536870912, 917510, 2097145, 0, 917510, 2031627, 0, 786435, 2031639, 0, 851971, 2031648, 0, 917512, 2031649, 0, 917513, 2031650, 0, 917514, 2031655, 0, 458752, 2162669, 0, 458752, 2162672, 0, 458754, 2162673, 0, 458755, 2162674, 0, 458756, 2162675, 0, 458757, 2162676, 0, 458758, 2162677, 0, 458759, 2162685, 0, 1048588, 2162687, 0, 1048588, 2097165, 0, 655376, 2097167, 0, 655376, 2097169, 0, 655376, 2097171, 0, 655376, 2097173, 0, 655376, 2162699, 0, 786435, 2162711, 0, 851971, 2162725, 0, 786441, 2162727, 0, 786441, 2162729, 0, 786441, 2293743, 0, 458753, 2293754, 0, 1048588, 2293756, 0, 1048588, 2293758, 0, 1114124, 2228224, 0, 1048588, 2228226, 0, 1048588, 2228233, 0, 458755, 2228236, 0, 458759, 2228237, 0, 393224, 2228238, 0, 393225, 2228239, 0, 393225, 2228240, 0, 393225, 2228241, 0, 393225, 2228242, 0, 393225, 2228243, 0, 393225, 2228244, 0, 393225, 2228245, 0, 393226, 2228246, 0, 458759, 2228253, 0, 458755, 2293771, 0, 786435, 2293773, 0, 458760, 2293774, 0, 458761, 2293775, 0, 458761, 2293776, 0, 458761, 2293777, 0, 458761, 2293778, 0, 458761, 2293779, 0, 458761, 2293780, 0, 458761, 2293781, 0, 458762, 2293783, 0, 851971, 2293792, 1073741824, 786442, 2293794, 1073741824, 786442, 2293796, 1073741824, 786442, 2293798, 1073741824, 786442, 2293801, 1073741824, 786442, 2293803, 1073741824, 786442, 2293805, 1073741824, 786442, 2424827, 0, 1114125, 2359297, 0, 1114125, 2359309, 0, 458760, 2359310, 0, 458761, 2359311, 0, 458761, 2359312, 0, 393227, 2359313, 0, 524300, 2359314, 0, 393228, 2359315, 0, 458761, 2359316, 0, 458761, 2359317, 0, 458762, 2424843, 0, 786435, 2424845, 0, 458760, 2424846, 0, 458761, 2424847, 0, 458761, 2424848, 0, 458763, 2424849, 0, 524300, 2424850, 0, 458764, 2424851, 0, 458761, 2424852, 0, 458761, 2424853, 0, 458762, 2424855, 0, 851971, 2424863, 0, 983052, 2424865, 0, 1048588, 2424866, 0, 1048588, 2424868, 0, 983052, 2424875, 0, 983052, 2424877, 0, 1048588, 2490373, 0, 458755, 2490381, 0, 458760, 2490382, 0, 458761, 2490383, 0, 458761, 2490384, 0, 458761, 2490385, 0, 458761, 2490386, 0, 458761, 2490387, 0, 458761, 2490388, 0, 458761, 2490389, 0, 458762, 2490393, 0, 458755, 2490399, 1073741824, 983052, 2490404, 1073741824, 983052, 2490405, 0, 983052, 2490407, 0, 1048588, 2490408, 0, 1048588, 2490410, 0, 983052, 2490411, 1073741824, 983052, 2555937, 1073741824, 983049, 2555938, 1073741824, 983050, 2555941, 1073741824, 983052, 2555946, 1073741824, 983052 )
[node name="TileMap_Static_Front_Second" type="TileMap" parent="."]
tile_set = ExtResource( 15 )
cell_size = Vector2( 16, 16 )
cell_custom_transform = Transform2D( 16, 0, 0, 16, 0, 0 )
collision_layer = 257
format = 1
tile_data = PoolIntArray( 589831, 0, 983051, 1048609, 536870912, 458752, 1048610, 0, 458752, 1048612, 536870912, 458752, 1048614, 0, 458752, 1048616, 536870912, 458752, 1048617, 0, 458752, 1048619, 536870912, 458752, 1048621, 0, 458752, 1179660, 0, 786456, 1179666, 536870912, 786441, 1179668, 0, 917507, 1179681, 536870912, 458752, 1179682, 0, 458752, 1179684, 536870912, 458752, 1179686, 0, 458752, 1179688, 536870912, 458752, 1179689, 0, 458752, 1179691, 536870912, 458752, 1179693, 0, 458752, 1310753, 536870912, 458752, 1310754, 0, 458752, 1310756, 536870912, 458752, 1310758, 0, 458752, 1310760, 536870912, 458752, 1310761, 0, 458752, 1310763, 536870912, 458752, 1310765, 0, 458752, 1966076, 0, 655377, 1966078, 0, 655377, 1900544, 0, 655377, 2097147, 0, 524304, 2031617, 0, 524304, 2031649, 0, 983051, 2162683, 0, 655376, 2097153, 0, 655376 )
[node name="TileMap_Free_Front" type="TileMap" parent="."]
z_index = 100
tile_set = ExtResource( 15 )
cell_size = Vector2( 16, 16 )
cell_custom_transform = Transform2D( 16, 0, 0, 16, 0, 0 )
collision_layer = 0
collision_mask = 0
format = 1
tile_data = PoolIntArray( 29, 0, 393219, 196610, 0, 524305, 196633, 0, 393219, 262145, 0, 524305, 327680, 0, 524305, 327709, 0, 393219, 393217, 0, 393223, 393219, 0, 393220, 458760, 0, 524289, 458761, 0, 524290, 458762, 0, 524290, 458763, 0, 524290, 458764, 0, 524290, 458765, 0, 524291, 458766, 0, 524289, 458767, 0, 524290, 458768, 0, 524290, 458769, 0, 524290, 458770, 0, 524290, 458771, 0, 524291, 458772, 0, 524289, 458773, 0, 524290, 458774, 0, 524290, 458775, 0, 524290, 458776, 0, 524291, 458777, -2147483648, 524289, 458781, -1610612736, 524289, 458782, 0, 524289, 458783, 0, 524290, 458784, 0, 524290, 458785, 0, 524290, 458786, 0, 524290, 458787, 0, 524291, 458788, 0, 524289, 458789, 0, 524290, 458790, 0, 524290, 458791, 0, 524290, 458792, 0, 524290, 458793, 0, 524291, 458794, 0, 524289, 458795, 0, 524290, 458796, 0, 524290, 458797, 0, 524290, 458798, 0, 524290, 458799, 0, 524291, 458800, 0, 524289, 524293, 0, 393218, 524299, 0, 393221, 524313, 536870912, 458752, 589825, 536870912, 393218, 720921, 0, 393219, 851970, 536870912, 393218, 851980, 0, 393218, 917533, 0, 393219, 983058, 0, 524305, 983060, 0, 524305, 983073, 1610612736, 786438, 983074, 1610612736, 786436, 983076, 1610612736, 786438, 983077, 1610612736, 786437, 983078, 1610612736, 786436, 983080, 1610612736, 786438, 983081, 1610612736, 786436, 983083, 1610612736, 786438, 983084, 1610612736, 786437, 983085, 1610612736, 786436, 1048578, 536870912, 393218, 1048588, 0, 393218, 1048601, 0, 393219, 1048609, 536870912, 786438, 1048610, 536870912, 786436, 1048612, 536870912, 786438, 1048613, 536870912, 786437, 1048614, 536870912, 786436, 1048616, 536870912, 786438, 1048617, 536870912, 786436, 1048619, 536870912, 786438, 1048620, 536870912, 786437, 1048621, 536870912, 786436, 1114145, 1610612736, 786438, 1114146, 1610612736, 786436, 1114148, 1610612736, 786438, 1114149, 1610612736, 786437, 1114150, 1610612736, 786436, 1114152, 1610612736, 786438, 1114153, 1610612736, 786436, 1114155, 1610612736, 786438, 1114156, 1610612736, 786437, 1114157, 1610612736, 786436, 1179681, 536870912, 786438, 1179682, 536870912, 786436, 1179684, 536870912, 786438, 1179685, 536870912, 786437, 1179686, 536870912, 786436, 1179688, 536870912, 786438, 1179689, 536870912, 786436, 1179691, 536870912, 786438, 1179692, 536870912, 786437, 1179693, 536870912, 786436, 1245193, 0, 393219, 1245213, 0, 393219, 1245217, 1610612736, 786438, 1245218, 1610612736, 786436, 1245220, 1610612736, 786438, 1245221, 1610612736, 786437, 1245222, 1610612736, 786436, 1245224, 1610612736, 786438, 1245225, 1610612736, 786436, 1245227, 1610612736, 786438, 1245228, 1610612736, 786437, 1245229, 1610612736, 786436, 1310743, 536870912, 393221, 1310753, 536870912, 786438, 1310754, 536870912, 786436, 1310756, 536870912, 786438, 1310757, 536870912, 786437, 1310758, 536870912, 786436, 1310760, 536870912, 786438, 1310761, 536870912, 786436, 1310763, 536870912, 786438, 1310764, 536870912, 786437, 1310765, 536870912, 786436, 1507326, 0, 393219, 1441797, 0, 393219, 1441803, 0, 393219, 1441808, 0, 393219, 1441813, 0, 393219, 1441817, 0, 393219, 1441824, 0, 393219, 1441831, 0, 393219, 1769467, 0, 393219, 1703936, 0, 393219, 1703945, 0, 393219, 1703949, 0, 393219, 1703954, 0, 393219, 1703959, 0, 393219, 1703965, 0, 393219, 1703972, 0, 393219, 1703978, 0, 393219, 1769476, 0, 393221, 1900540, 0, 524305, 1900542, 0, 524305, 1835008, 0, 524305, 1835038, 0, 393221, 1900549, 0, 393219, 1900569, 0, 393219, 1900578, 0, 524289, 1900579, 0, 524290, 1900580, 0, 524290, 1900581, 0, 524290, 1900582, 0, 524290, 1900583, 0, 524291, 1900584, 0, 524289, 1900585, 0, 524290, 1900586, 0, 524290, 1900587, 0, 524290, 1900588, 0, 524290, 1900589, 0, 524291, 1900590, 0, 524289, 1900591, 0, 524290, 1900592, 0, 524290, 1900593, 0, 524290, 1900594, 0, 524291, 2031629, 0, 524304, 2031631, 0, 524304, 2031633, 0, 524304, 2031635, 0, 524304, 2031637, 0, 524304, 2162697, 0, 393219, 2162700, 0, 393223, 2162710, 0, 393223, 2162717, 0, 393219, 2228227, 1073741824, 524293, 2228228, 1073741824, 524293, 2228229, 1073741824, 524293, 2293763, 0, 524293, 2293764, 0, 524293, 2293765, 536870912, 524293, 2424837, 0, 393219, 2424857, 0, 393219 )
[node name="TileMap_Free_Front_seconS" type="TileMap" parent="."]
z_index = 100
tile_set = ExtResource( 15 )
cell_size = Vector2( 16, 16 )
cell_custom_transform = Transform2D( 16, 0, 0, 16, 0, 0 )
format = 1
tile_data = PoolIntArray( 458759, 0, 524288, 458765, 0, 524288, 458771, 0, 524288, 458777, 0, 524292, 458781, 0, 524288, 458787, 0, 524288, 458793, 0, 524288, 458799, 0, 524288, 524295, 0, 458752, 524301, 0, 458752, 524307, 0, 458752, 524313, 536870912, 458752, 524317, 0, 458752, 524335, 0, 458752, 1900577, 0, 524288, 1900583, 0, 524288, 1900589, 0, 524288, 1966113, 0, 458752, 1966119, 0, 458752, 1966125, 0, 458752 )
[node name="CarYellow" type="KinematicBody2D" parent="."]
position = Vector2( -208, 438 )
collision_layer = 265
collision_mask = 264
script = ExtResource( 22 )
[node name="CarInteraction" type="Area2D" parent="CarYellow"]
collision_layer = 2
collision_mask = 0
[node name="CollisionShape2D" type="CollisionShape2D" parent="CarYellow/CarInteraction"]
position = Vector2( 0, 7 )
shape = SubResource( 21 )
[node name="CollisionH" type="CollisionShape2D" parent="CarYellow"]
position = Vector2( 0, 8 )
shape = SubResource( 11 )
[node name="CollisionV" type="CollisionShape2D" parent="CarYellow"]
position = Vector2( 0, 6.5 )
shape = SubResource( 28 )
[node name="TrafficCollisionArea" type="Area2D" parent="CarYellow"]
collision_layer = 8
collision_mask = 8
[node name="v" type="CollisionShape2D" parent="CarYellow/TrafficCollisionArea"]
position = Vector2( 0, 6.5 )
shape = SubResource( 88 )
[node name="h" type="CollisionShape2D" parent="CarYellow/TrafficCollisionArea"]
position = Vector2( 0, 8 )
shape = SubResource( 89 )
[node name="CollisionTrafficArea" type="Area2D" parent="CarYellow"]
collision_layer = 264
collision_mask = 264
[node name="CollisionTraffic" type="CollisionShape2D" parent="CarYellow/CollisionTrafficArea"]
position = Vector2( 0, 18.6 )
shape = SubResource( 73 )
[node name="CarLeft" type="Node2D" parent="CarYellow"]
[node name="Roof" type="Sprite" parent="CarYellow/CarLeft"]
position = Vector2( 0, -8 )
z_index = 1
texture = SubResource( 22 )
[node name="Body" type="Sprite" parent="CarYellow/CarLeft"]
position = Vector2( 0, 8 )
texture = SubResource( 23 )
[node name="CarRight" type="Node2D" parent="CarYellow"]
visible = false
[node name="Roof" type="Sprite" parent="CarYellow/CarRight"]
position = Vector2( 0, -8 )
z_index = 1
texture = SubResource( 12 )
[node name="Body" type="Sprite" parent="CarYellow/CarRight"]
position = Vector2( 0, 8 )
texture = SubResource( 13 )
[node name="CarUp" type="Node2D" parent="CarYellow"]
visible = false
[node name="Roof" type="Sprite" parent="CarYellow/CarUp"]
position = Vector2( 0, -8 )
z_index = 1
texture = SubResource( 24 )
[node name="Body" type="Sprite" parent="CarYellow/CarUp"]
position = Vector2( 0, 8 )
texture = SubResource( 25 )
[node name="CarDown" type="Node2D" parent="CarYellow"]
visible = false
[node name="Roof" type="Sprite" parent="CarYellow/CarDown"]
position = Vector2( 0, -8 )
z_index = 1
texture = SubResource( 26 )
[node name="Body" type="Sprite" parent="CarYellow/CarDown"]
position = Vector2( 0, 8 )
texture = SubResource( 27 )
[node name="CapacityBar" type="Node2D" parent="CarYellow"]
position = Vector2( 0, -7 )
z_index = 99
script = ExtResource( 20 )
[node name="Background" type="ColorRect" parent="CarYellow/CapacityBar"]
margin_left = -10.0
margin_top = -2.0
margin_right = 10.0
color = Color( 0.305882, 0.305882, 0.305882, 1 )
__meta__ = {
"_edit_use_anchors_": false
}
[node name="Level" type="ColorRect" parent="CarYellow/CapacityBar"]
margin_left = -10.0
margin_top = -2.0
margin_right = 4.0
color = Color( 0.2, 0.85098, 0.2, 1 )
__meta__ = {
"_edit_use_anchors_": false
}
[node name="Frame" type="ReferenceRect" parent="CarYellow/CapacityBar"]
margin_left = -10.0
margin_top = -2.0
margin_right = 10.0
border_color = Color( 0.305882, 0.305882, 0.305882, 1 )
border_width = 1.1
editor_only = false
__meta__ = {
"_edit_use_anchors_": false
}
[node name="ParkTimer" type="Timer" parent="CarYellow"]
process_mode = 0
wait_time = 0.5
one_shot = true
[node name="HonkTimer" type="Timer" parent="CarYellow"]
[node name="DriveSound" type="AudioStreamPlayer2D" parent="CarYellow"]
stream = ExtResource( 32 )
volume_db = -25.0
pitch_scale = 3.0
max_distance = 100.0
[node name="Honk" type="AudioStreamPlayer2D" parent="CarYellow"]
stream = ExtResource( 36 )
volume_db = -6.0
pitch_scale = 1.21
[node name="CarRed" type="KinematicBody2D" parent="."]
position = Vector2( -237, 410 )
collision_layer = 265
collision_mask = 264
script = ExtResource( 22 )
[node name="CarInteraction" type="Area2D" parent="CarRed"]
visible = false
collision_layer = 2
collision_mask = 0
[node name="CollisionShape2D" type="CollisionShape2D" parent="CarRed/CarInteraction"]
position = Vector2( 0, 7 )
shape = SubResource( 21 )
[node name="CollisionH" type="CollisionShape2D" parent="CarRed"]
visible = false
position = Vector2( 0, 8 )
shape = SubResource( 11 )
[node name="CollisionV" type="CollisionShape2D" parent="CarRed"]
visible = false
position = Vector2( 0, 6.5 )
shape = SubResource( 28 )
[node name="TrafficCollisionArea" type="Area2D" parent="CarRed"]
collision_layer = 8
collision_mask = 8
[node name="v" type="CollisionShape2D" parent="CarRed/TrafficCollisionArea"]
position = Vector2( 0, 6.5 )
shape = SubResource( 88 )
[node name="h" type="CollisionShape2D" parent="CarRed/TrafficCollisionArea"]
position = Vector2( 0, 8 )
shape = SubResource( 89 )
[node name="CollisionTrafficArea" type="Area2D" parent="CarRed"]
collision_layer = 264
collision_mask = 264
[node name="CollisionTraffic" type="CollisionShape2D" parent="CarRed/CollisionTrafficArea"]
position = Vector2( 0, 18.6 )
shape = SubResource( 73 )
[node name="CarLeft" type="Node2D" parent="CarRed"]
visible = false
[node name="Roof" type="Sprite" parent="CarRed/CarLeft"]
position = Vector2( 0, -8 )
z_index = 1
texture = SubResource( 61 )
[node name="Body" type="Sprite" parent="CarRed/CarLeft"]
position = Vector2( 0, 8 )
texture = SubResource( 62 )
[node name="CarRight" type="Node2D" parent="CarRed"]
visible = false
[node name="Roof" type="Sprite" parent="CarRed/CarRight"]
position = Vector2( 0, -8 )
z_index = 1
texture = SubResource( 63 )
[node name="Body" type="Sprite" parent="CarRed/CarRight"]
position = Vector2( 0, 8 )
texture = SubResource( 64 )
[node name="CarUp" type="Node2D" parent="CarRed"]
visible = false
[node name="Roof" type="Sprite" parent="CarRed/CarUp"]
position = Vector2( 0, -8 )
z_index = 1
texture = SubResource( 65 )
[node name="Body" type="Sprite" parent="CarRed/CarUp"]
position = Vector2( 0, 8 )
texture = SubResource( 66 )
[node name="CarDown" type="Node2D" parent="CarRed"]
visible = false
[node name="Roof" type="Sprite" parent="CarRed/CarDown"]
position = Vector2( 0, -8 )
z_index = 1
texture = SubResource( 59 )
[node name="Body" type="Sprite" parent="CarRed/CarDown"]
position = Vector2( 0, 8 )
texture = SubResource( 60 )
[node name="CapacityBar" type="Node2D" parent="CarRed"]
position = Vector2( 0, -7 )
z_index = 99
script = ExtResource( 20 )
[node name="Background" type="ColorRect" parent="CarRed/CapacityBar"]
margin_left = -10.0
margin_top = -2.0
margin_right = 10.0
color = Color( 0.305882, 0.305882, 0.305882, 1 )
__meta__ = {
"_edit_use_anchors_": false
}
[node name="Level" type="ColorRect" parent="CarRed/CapacityBar"]
margin_left = -10.0
margin_top = -2.0
margin_right = 4.0
color = Color( 0.2, 0.85098, 0.2, 1 )
__meta__ = {
"_edit_use_anchors_": false
}
[node name="Frame" type="ReferenceRect" parent="CarRed/CapacityBar"]
margin_left = -10.0
margin_top = -2.0
margin_right = 10.0
border_color = Color( 0.305882, 0.305882, 0.305882, 1 )
border_width = 1.1
editor_only = false
__meta__ = {
"_edit_use_anchors_": false
}
[node name="ParkTimer" type="Timer" parent="CarRed"]
process_mode = 0
wait_time = 0.5
one_shot = true
[node name="HonkTimer" type="Timer" parent="CarRed"]
[node name="DriveSound" type="AudioStreamPlayer2D" parent="CarRed"]
position = Vector2( 29, 28 )
stream = ExtResource( 32 )
volume_db = -25.0
pitch_scale = 3.0
max_distance = 100.0
[node name="Honk" type="AudioStreamPlayer2D" parent="CarRed"]
position = Vector2( 29, 28 )
stream = ExtResource( 36 )
volume_db = -6.0
pitch_scale = 1.21
[node name="CarGreen" type="KinematicBody2D" parent="."]
position = Vector2( -233, 463 )
collision_layer = 9
collision_mask = 264
script = ExtResource( 22 )
[node name="CarInteraction" type="Area2D" parent="CarGreen"]
collision_layer = 2
collision_mask = 266
[node name="CollisionShape2D" type="CollisionShape2D" parent="CarGreen/CarInteraction"]
position = Vector2( 0, 7 )
shape = SubResource( 21 )
[node name="CollisionH" type="CollisionShape2D" parent="CarGreen"]
position = Vector2( 0, 8 )
shape = SubResource( 11 )
[node name="CollisionV" type="CollisionShape2D" parent="CarGreen"]
position = Vector2( 0, 6.5 )
shape = SubResource( 28 )
[node name="TrafficCollisionArea" type="Area2D" parent="CarGreen"]
visible = false
collision_layer = 8
collision_mask = 8
[node name="v" type="CollisionShape2D" parent="CarGreen/TrafficCollisionArea"]
position = Vector2( 0, 6.5 )
shape = SubResource( 88 )
[node name="h" type="CollisionShape2D" parent="CarGreen/TrafficCollisionArea"]
position = Vector2( 0, 8 )
shape = SubResource( 89 )
[node name="CollisionTrafficArea" type="Area2D" parent="CarGreen"]
collision_layer = 264
collision_mask = 264
[node name="CollisionTraffic" type="CollisionShape2D" parent="CarGreen/CollisionTrafficArea"]
position = Vector2( 0, 18.5 )
shape = SubResource( 73 )
[node name="CarLeft" type="Node2D" parent="CarGreen"]
visible = false
[node name="Roof" type="Sprite" parent="CarGreen/CarLeft"]
position = Vector2( 0, -8 )
z_index = 1
[node name="Body" type="Sprite" parent="CarGreen/CarLeft"]
position = Vector2( 0, 8 )
texture = SubResource( 67 )
[node name="CarRight" type="Node2D" parent="CarGreen"]
[node name="Roof" type="Sprite" parent="CarGreen/CarRight"]
position = Vector2( 0, -8 )
z_index = 1
[node name="Body" type="Sprite" parent="CarGreen/CarRight"]
position = Vector2( 0, 8 )
texture = SubResource( 68 )
[node name="CarUp" type="Node2D" parent="CarGreen"]
visible = false
[node name="Roof" type="Sprite" parent="CarGreen/CarUp"]
position = Vector2( 0, -8 )
z_index = 1
texture = SubResource( 69 )
[node name="Body" type="Sprite" parent="CarGreen/CarUp"]
position = Vector2( 0, 8 )
texture = SubResource( 70 )
[node name="CarDown" type="Node2D" parent="CarGreen"]
visible = false
[node name="Roof" type="Sprite" parent="CarGreen/CarDown"]
position = Vector2( 0, -8 )
z_index = 1
texture = SubResource( 71 )
[node name="Body" type="Sprite" parent="CarGreen/CarDown"]
position = Vector2( 0, 8 )
texture = SubResource( 72 )
[node name="CapacityBar" type="Node2D" parent="CarGreen"]
position = Vector2( 0, -7 )
z_index = 99
script = ExtResource( 20 )
[node name="Background" type="ColorRect" parent="CarGreen/CapacityBar"]
margin_left = -10.0
margin_top = -2.0
margin_right = 10.0
color = Color( 0.305882, 0.305882, 0.305882, 1 )
__meta__ = {
"_edit_use_anchors_": false
}
[node name="Level" type="ColorRect" parent="CarGreen/CapacityBar"]
margin_left = -10.0
margin_top = -2.0
margin_right = 4.0
color = Color( 0.2, 0.85098, 0.2, 1 )
__meta__ = {
"_edit_use_anchors_": false
}
[node name="Frame" type="ReferenceRect" parent="CarGreen/CapacityBar"]
margin_left = -10.0
margin_top = -2.0
margin_right = 10.0
border_color = Color( 0.305882, 0.305882, 0.305882, 1 )
border_width = 1.1
editor_only = false
__meta__ = {
"_edit_use_anchors_": false
}
[node name="ParkTimer" type="Timer" parent="CarGreen"]
process_mode = 0
wait_time = 0.5
one_shot = true
[node name="HonkTimer" type="Timer" parent="CarGreen"]
[node name="DriveSound" type="AudioStreamPlayer2D" parent="CarGreen"]
position = Vector2( 25, -25 )
stream = ExtResource( 32 )
volume_db = -25.0
pitch_scale = 3.0
max_distance = 100.0
[node name="Honk" type="AudioStreamPlayer2D" parent="CarGreen"]
position = Vector2( 25, -25 )
stream = ExtResource( 36 )
volume_db = -6.178
pitch_scale = 1.21
[node name="Player" type="KinematicBody2D" parent="."]
position = Vector2( 50, 361 )
z_index = 1
collision_layer = 2304
collision_mask = 2304
script = ExtResource( 14 )
speed = 90
[node name="PlayerArea" type="Area2D" parent="Player"]
position = Vector2( 0, 4 )
collision_layer = 256
collision_mask = 256
[node name="CollisionShape2D" type="CollisionShape2D" parent="Player/PlayerArea"]
shape = SubResource( 17 )
[node name="CollisionShape2D" type="CollisionShape2D" parent="Player"]
position = Vector2( 0, 4 )
shape = SubResource( 4 )
[node name="AnimatedSprite" type="AnimatedSprite" parent="Player"]
frames = SubResource( 3 )
animation = "idle_right"
playing = true
[node name="Camera2D" type="Camera2D" parent="Player"]
current = true
zoom = Vector2( 0.3, 0.3 )
[node name="Music" type="AudioStreamPlayer2D" parent="Player/Camera2D"]
stream = ExtResource( 31 )
volume_db = -12.0
autoplay = true
[node name="UI" type="Node2D" parent="Player/Camera2D"]
visible = false
z_index = 200
script = ExtResource( 25 )
[node name="Points" type="Label" parent="Player/Camera2D/UI"]
margin_left = -120.0
margin_top = -72.0
margin_right = -96.0
margin_bottom = -58.0
custom_fonts/font = SubResource( 74 )
text = "000"
__meta__ = {
"_edit_use_anchors_": false
}
[node name="Time" type="Label" parent="Player/Camera2D/UI"]
margin_left = -17.0
margin_top = -72.0
margin_right = 19.0
margin_bottom = -58.0
custom_fonts/font = SubResource( 74 )
text = "04:00"
__meta__ = {
"_edit_use_anchors_": false
}
[node name="Hearts" type="Node2D" parent="Player/Camera2D/UI"]
position = Vector2( -32, 18 )
[node name="One" type="Sprite" parent="Player/Camera2D/UI/Hearts"]
position = Vector2( 149, -82.25 )
scale = Vector2( 0.8, 0.8 )
texture = ExtResource( 24 )
[node name="Two" type="Sprite" parent="Player/Camera2D/UI/Hearts"]
position = Vector2( 141.5, -82.25 )
scale = Vector2( 0.8, 0.8 )
texture = ExtResource( 24 )
[node name="Three" type="Sprite" parent="Player/Camera2D/UI/Hearts"]
position = Vector2( 134, -82.25 )
scale = Vector2( 0.8, 0.8 )
texture = ExtResource( 24 )
[node name="GameTimer" type="Timer" parent="Player/Camera2D/UI"]
process_mode = 0
[node name="Inventar" type="Node2D" parent="Player/Camera2D/UI"]
position = Vector2( 102, 59 )
script = ExtResource( 27 )
[node name="Background" type="ColorRect" parent="Player/Camera2D/UI/Inventar"]
margin_right = 20.0
margin_bottom = 10.0
color = Color( 0.32549, 0.317647, 0.317647, 0.501961 )
__meta__ = {
"_edit_use_anchors_": false
}
[node name="Border1" type="ReferenceRect" parent="Player/Camera2D/UI/Inventar"]
margin_right = 10.0
margin_bottom = 10.0
border_color = Color( 0.396078, 0.396078, 0.396078, 1 )
border_width = 1.1
editor_only = false
__meta__ = {
"_edit_use_anchors_": false
}
[node name="Border2" type="ReferenceRect" parent="Player/Camera2D/UI/Inventar"]
margin_left = 10.0
margin_right = 20.0
margin_bottom = 10.0