-
Notifications
You must be signed in to change notification settings - Fork 1
/
level_3.tscn
463 lines (372 loc) · 51.8 KB
/
level_3.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
[gd_scene load_steps=10 format=3 uid="uid://d4a7drl1vhc0l"]
[ext_resource type="Texture2D" uid="uid://cr3t3j5af6j8o" path="res://assets/sprites/tiles/parallax-sky.png" id="1_amnnm"]
[ext_resource type="Texture2D" uid="uid://ceuy83ef1w3re" path="res://assets/sprites/tiles/parallax-moon.png" id="2_2l6ap"]
[ext_resource type="Texture2D" uid="uid://dpeh47s5g4mf5" path="res://assets/sprites/tiles/parallax-clouds.png" id="3_xm82k"]
[ext_resource type="Texture2D" uid="uid://bg3kure2g6jfp" path="res://assets/sprites/tiles/parallax-city.png" id="4_5xgnw"]
[ext_resource type="TileSet" uid="uid://c7r7c1mevu851" path="res://resources/tilesets/factory_tileset.tres" id="5_ild35"]
[ext_resource type="PackedScene" uid="uid://bjxrh13ovurni" path="res://src/mech/mech.tscn" id="6_rfu2k"]
[ext_resource type="PackedScene" uid="uid://dvgmmsu1php7b" path="res://src/game_world/objects/dark_area/dark_area.tscn" id="7_yb7kb"]
[sub_resource type="Gradient" id="Gradient_u7e4e"]
offsets = PackedFloat32Array(0, 0.703226)
colors = PackedColorArray(1, 0.784314, 0.0784314, 1, 0, 0, 0, 1)
[sub_resource type="GradientTexture2D" id="GradientTexture2D_5idcw"]
gradient = SubResource("Gradient_u7e4e")
fill = 1
fill_from = Vector2(0.5, 0.5)
[node name="level 3" type="Node2D"]
[node name="ParallaxBackground" type="ParallaxBackground" parent="."]
scroll_limit_end = Vector2(0, 2160)
[node name="sky" type="ParallaxLayer" parent="ParallaxBackground"]
motion_scale = Vector2(0.05, 0.05)
motion_mirroring = Vector2(1920, 1080)
[node name="Sprite2D" type="Sprite2D" parent="ParallaxBackground/sky"]
position = Vector2(1920, 1080)
scale = Vector2(2, 2)
texture = ExtResource("1_amnnm")
[node name="moon" type="ParallaxLayer" parent="ParallaxBackground"]
motion_scale = Vector2(0.005, 0.005)
[node name="Sprite2D" type="Sprite2D" parent="ParallaxBackground/moon"]
position = Vector2(2290, 1241)
scale = Vector2(2, 2)
texture = ExtResource("2_2l6ap")
[node name="cloud 1" type="ParallaxLayer" parent="ParallaxBackground"]
motion_scale = Vector2(0.1, 0.1)
motion_mirroring = Vector2(3840, 700)
[node name="Sprite2D" type="Sprite2D" parent="ParallaxBackground/cloud 1"]
position = Vector2(1830, 393)
scale = Vector2(2, 2)
texture = ExtResource("3_xm82k")
[node name="buildings" type="ParallaxLayer" parent="ParallaxBackground"]
motion_scale = Vector2(0.1, 0.1)
motion_mirroring = Vector2(3840, 0)
[node name="Sprite2D" type="Sprite2D" parent="ParallaxBackground/buildings"]
position = Vector2(1915, 1323)
scale = Vector2(2, 2)
texture = ExtResource("4_5xgnw")
[node name="cloud 2" type="ParallaxLayer" parent="ParallaxBackground"]
motion_scale = Vector2(0.2, 0.2)
motion_mirroring = Vector2(3840, 700)
[node name="Sprite2D" type="Sprite2D" parent="ParallaxBackground/cloud 2"]
position = Vector2(1940, -371)
scale = Vector2(2, 2)
texture = ExtResource("3_xm82k")
[node name="TileMap" type="TileMap" parent="."]
tile_set = ExtResource("5_ild35")
format = 2
layer_0/name = "Walls"
layer_0/tile_data = PackedInt32Array(196616, 458752, 1, 262152, 262144, 0, 327688, 262144, 0, 393224, 262144, 0, -65527, 196608, 2, -196598, 0, 4, -131062, 262144, 0, -65526, 65536, 5, -262133, 0, 4, -196597, 65536, 5, -262132, 196608, 0, -262131, 196608, 0, 13, 196608, 2, -262130, 196608, 0, 14, 1, 0, -262129, 458752, 1, -196593, 262144, 3, 15, 1, 1, -262128, 196608, 0, 16, 1, 2, 196624, 1, 3, -262127, 196608, 0, 17, 327680, 2, 196625, 1, 4, -262126, 196608, 0, 196626, 1, 5, -262125, 65536, 4, -196589, 0, 5, 196627, 1, 0, -196588, 65536, 4, -131052, 262144, 0, -65516, 0, 5, 196628, 1, 1, -65515, 327680, 2, -393194, 196608, 0, -655337, 196608, 2, -393193, 196608, 0, -851944, 0, 4, -786408, 262144, 0, -720872, 262144, 0, -655336, 65536, 5, -458728, 262144, 1, -393192, 65536, 5, 65560, 0, 4, 131096, 262144, 0, -917479, 0, 4, -851943, 65536, 5, -458727, 1, 3, 25, 0, 4, 65561, 65536, 5, -917478, 196608, 0, -655334, 196608, 2, -458726, 1, 4, -65510, 0, 4, 26, 65536, 5, -917477, 196608, 0, -655333, 327680, 2, -458725, 1, 4, -65509, 196608, 0, -917476, 196608, 0, -458724, 1, 5, -262116, 196608, 2, -65508, 196608, 0, -917475, 196608, 0, -458723, 327680, 0, -262115, 196608, 0, -65507, 196608, 0, -917474, 196608, 0, -458722, 1, 0, -262114, 327680, 2, -65506, 196608, 0, -917473, 196608, 0, -655329, 196608, 2, -458721, 1, 1, -65505, 196608, 0, -917472, 196608, 0, -655328, 327680, 2, -458720, 1, 1, -65504, 65536, 4, 32, 0, 5, -917471, 65536, 4, -851935, 0, 5, -458719, 1, 2, 33, 65536, 4, 65569, 0, 5, -851934, 65536, 4, -786398, 262144, 0, -720862, 262144, 0, -655326, 0, 5, -458718, 262144, 1, -393182, 0, 5, 65570, 65536, 4, 131106, 262144, 0, -655325, 327680, 2, -393181, 196608, 0, -393180, 196608, 0, -393179, 65536, 4, -589784, 196608, 2, -655319, 0, 4, -589783, 65536, 5, 196649, 458752, 1, 262185, 262144, 0, 327721, 262144, 0, 393257, 262144, 0, -655318, 196608, 0, -655317, 196608, 0, -720852, 0, 4, -655316, 65536, 5, -720851, 196608, 0, -720850, 196608, 0, -720849, 65536, 4, -655313, 0, 5, -655312, 196608, 0, -655311, 196608, 0, -655310, 65536, 4, -589774, 0, 5, 196658, 458752, 1, 262194, 262144, 0, 327730, 262144, 0, 393266, 262144, 0, -589773, 327680, 2, 131072, 196608, 0, 131073, 196608, 0, 131074, 196608, 0, 131075, 196608, 0, 131076, 65536, 4, 196612, 262144, 0, 393217, 262144, 0, 458753, 262144, 0, 786433, 262144, 0, 851969, 262144, 0, 917505, 0, 5, 917506, 196608, 0, 458760, 262144, 0, 262148, 65536, 5, 262147, 196608, 0, 262146, 196608, 0, 262145, 0, 4, 327681, 262144, 0, 917507, 65536, 4, 917515, 196608, 0, 917514, 196608, 0, 917513, 196608, 0, 917512, 196608, 0, 917511, 458752, 1, 983047, 262144, 0, 1048583, 262144, 0, 1114119, 262144, 0, 1179655, 262144, 3, 917516, 196608, 0, 917517, 196608, 0, 917518, 65536, 5, 851982, 0, 4, 851983, 65536, 5, 786447, 0, 4, 786448, 65536, 5, 720912, 0, 4, 720913, 65536, 5, 655377, 0, 4, 655378, 65536, 5, 589842, 0, 4, 589843, 1, 0, 589844, 1, 1, 589845, 1, 1, 589851, 1, 4, 589852, 1, 4, 589853, 1, 5, 589854, 196608, 2, 589850, 1, 3, 589846, 1, 2, 196618, 1, 3, 196619, 1, 4, 196620, 1, 5, 196621, 1, 0, 196622, 1, 1, 196623, 1, 2, 196617, 196608, 0, 196631, 196608, 0, 196630, 196608, 0, 196629, 1, 2, 196632, 393216, 0, 196633, 196608, 0, 196634, 196608, 0, 196635, 196608, 0, 196636, 196608, 0, 196637, 196608, 0, 196638, 196608, 0, 196639, 196608, 0, 196640, 196608, 0, 196641, 196608, 0, 196642, 393216, 0, 196643, 196608, 0, 196644, 196608, 0, 196645, 196608, 0, 196646, 196608, 0, 196647, 196608, 0, 196648, 196608, 0, 917510, 196608, 2, 983043, 262144, 0, 1048579, 262144, 0, 1114115, 262144, 0, 1179651, 262144, 3, 589823, 0, 4, 655359, 262144, 0, 720895, 262144, 0, 786431, 0, 5, 720896, 196608, 0, 720897, 65536, 4, 524298, 65536, 4, 589834, 262144, 0, 655370, 262144, 0, 720906, 65536, 5, 720905, 196608, 2, 655382, 262144, 1, 720918, 262144, 0, 786454, 262144, 0, 851990, 262144, 0, 917526, 262144, 0, 983062, 262144, 0, 1048598, 262144, 0, 1114134, 262144, 0, 1179670, 262144, 3, 655386, 262144, 1, 720922, 262144, 0, 786458, 262144, 0, 851994, 262144, 0, 917530, 262144, 0, 983066, 262144, 0, 1048602, 262144, 0, 1114138, 262144, 0, 1179674, 262144, 3, 852003, 0, 5, 852004, 1, 0, 852005, 1, 1, 852006, 1, 1, 852007, 1, 1, 852008, 1, 1, 589855, 196608, 0, 589856, 65536, 4, 655392, 0, 5, 655393, 65536, 4, 720929, 0, 5, 720930, 65536, 4, 786466, 0, 5, 786467, 65536, 4, 852009, 1, 1, 852010, 1, 1, 852011, 1, 1, 852012, 1, 1, 852013, 1, 1, 852014, 1, 1, 852015, 1, 1, 852016, 1, 1, 852017, 1, 1, 852018, 1, 1, 852019, 1, 1, 196659, 196608, 0, 196660, 196608, 0, 196661, 196608, 0, 37, 196608, 2, 38, 196608, 0, 39, 327680, 2, -131031, 196608, 2, -131030, 327680, 2, -65491, 196608, 2, -65490, 327680, 2, -131023, 196608, 2, -131022, 327680, 2, 52, 196608, 2, 53, 196608, 0, 54, 327680, 2, 196662, 196608, 0, 196663, 196608, 0, 196664, 196608, 0, -327635, 196608, 2, -327634, 327680, 2, 458793, 458752, 0, 524329, 262144, 3, 458802, 393216, 1, 524338, 0, 5, 852020, 1, 1, 852021, 1, 2, 917557, 262144, 1, 983093, 262144, 0, 1048629, 262144, 0, 655417, 262144, 0, 720953, 262144, 0, 786489, 262144, 0, 852025, 262144, 0, 917561, 262144, 0, 983097, 262144, 0, 1048633, 262144, 0, 524339, 196608, 0, 524340, 196608, 0, 524341, 196608, 0, 524342, 196608, 0, 524343, 196608, 0, 524344, 196608, 0, 524345, 65536, 4, 589881, 262144, 0, 1114165, 262144, 0, 1114169, 262144, 0, 1179701, 262144, 3, 1179705, 262144, 3, 196665, 65536, 5, 131129, 0, 4, 131130, 65536, 5, 65594, 0, 4, 65595, 196608, 0, 65596, 196608, 0, 65597, 196608, 0, 65598, 196608, 0, 65599, 196608, 0, 65600, 196608, 0, 65601, 196608, 0, -131012, 196608, 2, -131011, 196608, 0, -131008, 196608, 0, -131007, 327680, 2, -131010, 196608, 0, -131009, 196608, 0, -196547, 196608, 2, -196546, 196608, 0, -196545, 196608, 0, -196544, 327680, 2, 65602, 196608, 0, 65603, 65536, 4, 131139, 0, 5, 131140, 65536, 4, 196676, 0, 5, 196677, 196608, 0, 196678, 196608, 0, 196679, 196608, 0, 196680, 196608, 0, 196681, 196608, 0, 196682, 65536, 4, 262218, 262144, 0, 327754, 262144, 0, 393290, 262144, 0, 458826, 262144, 0, 524362, 262144, 0, 589898, 262144, 0, 655434, 262144, 0, 720970, 262144, 0, 786506, 262144, 0, 852042, 262144, 0, 917578, 262144, 0, 983114, 262144, 0, 1048650, 262144, 0, 1114186, 262144, 0, 1179722, 262144, 3, 196606, 196608, 2, 196607, 196608, 0, 262141, 327680, 0, 262136, 327680, 0, 196599, 327680, 2, 196598, 196608, 0, 196597, 196608, 0, 196596, 196608, 0, 196595, 458752, 0, 196600, 327680, 0, 65536, 327680, 0, 0, 327680, 0, 65537, 327680, 0, 131071, 327680, 0, 131059, 262144, 0, 262142, 327680, 0, 262135, 327680, 0, 131063, 327680, 0, 851974, 327680, 0, -13, 262144, 0, 65523, 262144, 0, -65549, 262144, 0, -131085, 262144, 0, -196621, 262144, 0, -262157, 262144, 0, -327693, 262144, 1, 131062, 327680, 0, 65525, 327680, 0, 131060, 327680, 0, 65524, 327680, 0, 131061, 327680, 0, -12, 327680, 0, 65527, 327680, 0, 196605, 327680, 0, 327673, 196608, 2, 327674, 196608, 0, 327675, 196608, 0, 327676, 327680, 2, 262137, 327680, 0, 262140, 327680, 0, 524296, 0, 5, 524297, 196608, 0, 524288, 196608, 0, 524289, 65536, 5, 196615, 196608, 2, 524300, 196608, 2, 524301, 196608, 0, 524302, 327680, 2, 655404, 196608, 2, 655405, 196608, 0, 655406, 196608, 0, 655407, 327680, 2, 458801, 196608, 2, 458794, 327680, 2, 327726, 327680, 2, 327725, 196608, 2, 196657, 196608, 2, 196650, 327680, 2, 262131, 262144, 0, 327667, 262144, 0, 393203, 262144, 0, 458739, 262144, 0, 524275, 262144, 0, 589811, 262144, 0, 655347, 262144, 0, 720883, 262144, 0, 786419, 262144, 0, 851955, 262144, 0, 917491, 262144, 0, 983027, 262144, 0, 1048563, 262144, 0, 1114099, 262144, 0, 1179635, 262144, 0, 1245171, 262144, 3, -327643, 0, 5, -327642, 65536, 4, -262106, 0, 5, -262105, 327680, 2, -393195, 196608, 2)
layer_1/name = "BG front"
layer_1/enabled = true
layer_1/modulate = Color(1, 1, 1, 1)
layer_1/y_sort_enabled = false
layer_1/y_sort_origin = 0
layer_1/z_index = -4
layer_1/tile_data = PackedInt32Array(589825, 393216, 4, 655361, 393216, 5, 786442, 393216, 4, 851978, 393216, 5, 327683, 393216, 4, 393219, 393216, 5, 458755, 393216, 4, 524291, 393216, 5, 589827, 393216, 4, 655363, 393216, 5, 720899, 393216, 4, 786435, 393216, 5, 851971, 393216, 4, 917507, 393216, 5, -589800, 393216, 4, -524264, 393216, 5, -589790, 393216, 4, -524254, 393216, 5, -589795, 393216, 4, -524259, 393216, 5, -720867, 393216, 4, -655331, 393216, 5, -851939, 393216, 4, -786403, 393216, 5, -393187, 393216, 4, -327651, 393216, 5, -65512, 393216, 4, 24, 393216, 5, -196584, 393216, 4, -131048, 393216, 5, -327656, 393216, 4, -262120, 393216, 5, -327646, 393216, 4, -262110, 393216, 5, -196574, 393216, 4, -131038, 393216, 5, -65502, 393216, 4, 34, 393216, 5, 720937, 393216, 4, 786473, 393216, 5, 589865, 393216, 4, 655401, 393216, 5, 589874, 393216, 4, 655410, 393216, 5, 720946, 393216, 4, 786482, 393216, 5, 458774, 393216, 4, 524310, 393216, 5, 327702, 393216, 4, 393238, 393216, 5, 196630, 393216, 4, 262166, 393216, 5, 196634, 393216, 4, 262170, 393216, 5, 327706, 393216, 4, 393242, 393216, 5, 458778, 393216, 4, 524314, 393216, 5, 262154, 393216, 4, 327690, 393216, 5, 393226, 393216, 4, 458762, 393216, 5, -65476, 393216, 4, 60, 393216, 5, -65471, 393216, 4, 65, 393216, 5, 65573, 393216, 4, 131109, 393216, 5, 65575, 393216, 4, 131111, 393216, 5, -65495, 393216, 4, 41, 393216, 5, 65577, 393216, 4, 131113, 393216, 5, -65486, 393216, 4, 50, 393216, 5, 65586, 393216, 4, 131122, 393216, 5, -262099, 393216, 4, -196563, 393216, 5, -131027, 393216, 4, -65491, 393216, 5, -262098, 393216, 4, -196562, 393216, 5, -131026, 393216, 4, -65490, 393216, 5, -524247, 393216, 4, -458711, 393216, 5, -393175, 393216, 4, -327639, 393216, 5, -262103, 393216, 4, -196567, 393216, 5, -524238, 393216, 4, -458702, 393216, 5, -393166, 393216, 4, -327630, 393216, 5, -262094, 393216, 4, -196558, 393216, 5, -655315, 393216, 4, -589779, 393216, 5, -524243, 393216, 4, -458707, 393216, 5, -393171, 393216, 4, -327635, 393216, 5, -655314, 393216, 4, -589778, 393216, 5, -524242, 393216, 4, -458706, 393216, 5, -393170, 393216, 4, -327634, 393216, 5, 65549, 393216, 4, 131085, 393216, 5, 65553, 393216, 4, 131089, 393216, 5, -131057, 393216, 4, -65521, 393216, 5, 9, 393216, 4, 65545, 393216, 5, 131081, 393216, 4, 196617, 393216, 5, 131093, 393216, 4, 196629, 393216, 5, 21, 393216, 4, 65557, 393216, 5, -10, 393216, 4, 65526, 393216, 5, -131082, 393216, 4, -65546, 393216, 5, 65534, 393216, 4, 131070, 393216, 5, 393235, 262144, 4, 458771, 262144, 5, 393236, 327680, 4, 458772, 327680, 5, 393244, 262144, 4, 458780, 262144, 5, 393245, 327680, 4, 458781, 327680, 5, 655412, 262144, 6, 720948, 262144, 7, 655413, 327680, 6, 720949, 327680, 7, 393250, 262144, 6, 458786, 262144, 7, 393251, 327680, 6, 458787, 327680, 7, 65581, 262144, 6, 131117, 262144, 7, 65582, 327680, 6, 131118, 327680, 7, -196569, 393216, 4, -131033, 393216, 5, -65497, 393216, 4, 39, 393216, 5, -196571, 393216, 4, -131035, 393216, 5, -327643, 393216, 4, -262107, 393216, 5, -65499, 393216, 4, 37, 393216, 5)
layer_2/name = "BG back"
layer_2/enabled = true
layer_2/modulate = Color(1, 1, 1, 1)
layer_2/y_sort_enabled = false
layer_2/y_sort_origin = 0
layer_2/z_index = -5
layer_2/tile_data = PackedInt32Array(262153, 0, 0, 262154, 65536, 0, 327689, 0, 0, 327690, 65536, 0, 393225, 0, 0, 393226, 65536, 0, 458761, 0, 0, 458762, 65536, 0, 524298, 65536, 0, 262155, 0, 0, 262156, 65536, 0, 327691, 0, 0, 327692, 65536, 0, 393227, 0, 0, 393228, 65536, 0, 458763, 0, 0, 458764, 65536, 0, 524299, 0, 0, 524300, 65536, 0, 262157, 0, 0, 262158, 65536, 0, 327693, 0, 0, 327694, 65536, 0, 393229, 0, 0, 393230, 65536, 0, 458765, 0, 0, 458766, 65536, 0, 524301, 0, 0, 524302, 65536, 0, 262159, 0, 0, 262160, 65536, 0, 327695, 0, 0, 327696, 65536, 0, 393231, 0, 0, 393232, 65536, 0, 458767, 0, 0, 458768, 65536, 0, 524303, 0, 0, 524304, 65536, 0, 262161, 0, 0, 262162, 65536, 0, 327697, 0, 0, 327698, 65536, 0, 393233, 0, 0, 393234, 65536, 0, 458769, 0, 0, 458770, 65536, 0, 524305, 0, 0, 524306, 65536, 0, 262163, 0, 0, 262164, 65536, 0, 327699, 0, 0, 327700, 65536, 0, 393235, 0, 0, 393236, 65536, 0, 458771, 0, 0, 458772, 65536, 0, 524307, 0, 0, 524308, 65536, 0, 262165, 0, 0, 262166, 65536, 0, 327701, 0, 0, 327702, 65536, 0, 393237, 0, 0, 393238, 65536, 0, 458773, 0, 0, 458774, 65536, 0, 524309, 0, 0, 524310, 65536, 0, 720906, 65536, 0, 786442, 65536, 0, 851978, 65536, 0, 589835, 0, 0, 589836, 65536, 0, 655371, 0, 0, 655372, 65536, 0, 720907, 0, 0, 720908, 65536, 0, 786443, 0, 0, 786444, 65536, 0, 851979, 0, 0, 851980, 65536, 0, 589837, 0, 0, 589838, 65536, 0, 655373, 0, 0, 655374, 65536, 0, 720909, 0, 0, 720910, 65536, 0, 786445, 0, 0, 786446, 65536, 0, 851981, 0, 0, 851982, 65536, 0, 589839, 0, 0, 589840, 65536, 0, 655375, 0, 0, 655376, 65536, 0, 720911, 0, 0, 720912, 65536, 0, 786447, 0, 0, 589841, 0, 0, 655377, 0, 0, 589842, 65536, 0, 262167, 0, 0, 262168, 65536, 0, 327703, 0, 0, 327704, 65536, 0, 393239, 0, 0, 393240, 65536, 0, 458775, 0, 0, 458776, 65536, 0, 524311, 0, 0, 524312, 65536, 0, 262169, 0, 0, 262170, 65536, 0, 327705, 0, 0, 327706, 65536, 0, 393241, 0, 0, 393242, 65536, 0, 458777, 0, 0, 458778, 65536, 0, 524313, 0, 0, 524314, 65536, 0, 262171, 0, 0, 262172, 65536, 0, 327707, 0, 0, 327708, 65536, 0, 393243, 0, 0, 393244, 65536, 0, 458779, 0, 0, 458780, 65536, 0, 524315, 0, 0, 524316, 65536, 0, 262173, 0, 0, 262174, 65536, 0, 327709, 0, 0, 327710, 65536, 0, 393245, 0, 0, 393246, 65536, 0, 458781, 0, 0, 458782, 65536, 0, 524317, 0, 0, 524318, 65536, 0, 262175, 0, 0, 262176, 65536, 0, 327711, 0, 0, 327712, 65536, 0, 393247, 0, 0, 393248, 65536, 0, 458783, 0, 0, 458784, 65536, 0, 524319, 0, 0, 524320, 65536, 0, 262177, 0, 0, 262178, 65536, 0, 327713, 0, 0, 327714, 65536, 0, 393249, 0, 0, 393250, 65536, 0, 458785, 0, 0, 458786, 65536, 0, 524321, 0, 0, 524322, 65536, 0, 262179, 0, 0, 262180, 65536, 0, 327715, 0, 0, 327716, 65536, 0, 393251, 0, 0, 393252, 65536, 0, 458787, 0, 0, 458788, 65536, 0, 524323, 0, 0, 524324, 65536, 0, 262181, 0, 0, 262182, 65536, 0, 327717, 0, 0, 327718, 65536, 0, 393253, 0, 0, 393254, 65536, 0, 458789, 0, 0, 458790, 65536, 0, 524325, 0, 0, 524326, 65536, 0, 262183, 0, 0, 262184, 65536, 0, 327719, 0, 0, 327720, 65536, 0, 393255, 0, 0, 393256, 65536, 0, 458791, 0, 0, 458792, 65536, 0, 524327, 0, 0, 524328, 65536, 0, 589857, 0, 0, 589858, 65536, 0, 655394, 65536, 0, 720930, 65536, 0, 589859, 0, 0, 589860, 65536, 0, 655395, 0, 0, 655396, 65536, 0, 720931, 0, 0, 720932, 65536, 0, 786467, 0, 0, 786468, 65536, 0, 589861, 0, 0, 589862, 65536, 0, 655397, 0, 0, 655398, 65536, 0, 720933, 0, 0, 720934, 65536, 0, 786469, 0, 0, 786470, 65536, 0, 589863, 0, 0, 589864, 65536, 0, 655399, 0, 0, 655400, 65536, 0, 720935, 0, 0, 720936, 65536, 0, 786471, 0, 0, 786472, 65536, 0, 589865, 0, 0, 655401, 0, 0, 720937, 0, 0, 786473, 0, 0, 589874, 65536, 0, 589875, 0, 0, 655410, 65536, 0, 655411, 0, 0, 720946, 65536, 0, 720947, 0, 0, 786482, 65536, 0, 786483, 0, 0, 589876, 65536, 0, 589877, 0, 0, 655412, 65536, 0, 655413, 0, 0, 720948, 65536, 0, 720949, 0, 0, 786484, 65536, 0, 786485, 0, 0, 589878, 65536, 0, 589879, 0, 0, 655414, 65536, 0, 655415, 0, 0, 720950, 65536, 0, 720951, 0, 0, 786486, 65536, 0, 786487, 0, 0, 589880, 65536, 0, 655416, 65536, 0, 720952, 65536, 0, 786488, 65536, 0, 852022, 65536, 0, 852023, 0, 0, 917558, 65536, 0, 917559, 0, 0, 983094, 65536, 0, 983095, 0, 0, 1048630, 65536, 0, 1048631, 0, 0, 1114166, 65536, 0, 1114167, 0, 0, 1179702, 65536, 0, 1179703, 0, 0, 852024, 65536, 0, 917560, 65536, 0, 983096, 65536, 0, 1048632, 65536, 0, 1114168, 65536, 0, 1179704, 65536, 0, -196597, 65536, 0, -131061, 65536, 0, -65526, 0, 0, -65525, 65536, 0, 10, 0, 0, 11, 65536, 0, 65546, 0, 0, 65547, 65536, 0, 131082, 0, 0, 131083, 65536, 0, -196596, 0, 0, -196595, 65536, 0, -131060, 0, 0, -131059, 65536, 0, -65524, 0, 0, -65523, 65536, 0, 12, 0, 0, 13, 65536, 0, 65548, 0, 0, 65549, 65536, 0, 131084, 0, 0, 131085, 65536, 0, -196594, 0, 0, -196593, 65536, 0, -131058, 0, 0, -131057, 65536, 0, -65522, 0, 0, -65521, 65536, 0, 14, 0, 0, 15, 65536, 0, 65550, 0, 0, 65551, 65536, 0, 131086, 0, 0, 131087, 65536, 0, -196592, 0, 0, -196591, 65536, 0, -131056, 0, 0, -131055, 65536, 0, -65520, 0, 0, -65519, 65536, 0, 16, 0, 0, 17, 65536, 0, 65552, 0, 0, 65553, 65536, 0, 131088, 0, 0, 131089, 65536, 0, -196590, 0, 0, -196589, 65536, 0, -131054, 0, 0, -131053, 65536, 0, -65518, 0, 0, -65517, 65536, 0, 18, 0, 0, 19, 65536, 0, 65554, 0, 0, 65555, 65536, 0, 131090, 0, 0, 131091, 65536, 0, -65516, 0, 0, 20, 0, 0, 65556, 0, 0, 131092, 0, 0, -851943, 65536, 0, -786407, 65536, 0, -720871, 65536, 0, -655336, 0, 0, -655335, 65536, 0, -589800, 0, 0, -589799, 65536, 0, -524264, 0, 0, -524263, 65536, 0, -458728, 0, 0, -458727, 65536, 0, -393192, 0, 0, -393191, 65536, 0, -327656, 0, 0, -327655, 65536, 0, -262120, 0, 0, -262119, 65536, 0, -196584, 0, 0, -196583, 65536, 0, -131048, 0, 0, -131047, 65536, 0, -65512, 0, 0, -65511, 65536, 0, 24, 0, 0, 25, 65536, 0, 65560, 0, 0, 65561, 65536, 0, 131096, 0, 0, 131097, 65536, 0, -851942, 0, 0, -851941, 65536, 0, -786406, 0, 0, -786405, 65536, 0, -720870, 0, 0, -720869, 65536, 0, -655334, 0, 0, -655333, 65536, 0, -589798, 0, 0, -589797, 65536, 0, -524262, 0, 0, -524261, 65536, 0, -458726, 0, 0, -458725, 65536, 0, -393190, 0, 0, -393189, 65536, 0, -327654, 0, 0, -327653, 65536, 0, -262118, 0, 0, -262117, 65536, 0, -196582, 0, 0, -196581, 65536, 0, -131046, 0, 0, -131045, 65536, 0, -65510, 0, 0, -65509, 65536, 0, 26, 0, 0, 27, 65536, 0, 65562, 0, 0, 65563, 65536, 0, 131098, 0, 0, 131099, 65536, 0, -851940, 0, 0, -851939, 65536, 0, -786404, 0, 0, -786403, 65536, 0, -720868, 0, 0, -720867, 65536, 0, -655332, 0, 0, -655331, 65536, 0, -589796, 0, 0, -589795, 65536, 0, -524260, 0, 0, -524259, 65536, 0, -458724, 0, 0, -458723, 65536, 0, -393188, 0, 0, -393187, 65536, 0, -327652, 0, 0, -327651, 65536, 0, -262116, 0, 0, -262115, 65536, 0, -196580, 0, 0, -196579, 65536, 0, -131044, 0, 0, -131043, 65536, 0, -65508, 0, 0, -65507, 65536, 0, 28, 0, 0, 29, 65536, 0, 65564, 0, 0, 65565, 65536, 0, 131100, 0, 0, 131101, 65536, 0, -851938, 0, 0, -851937, 65536, 0, -786402, 0, 0, -786401, 65536, 0, -720866, 0, 0, -720865, 65536, 0, -655330, 0, 0, -655329, 65536, 0, -589794, 0, 0, -589793, 65536, 0, -524258, 0, 0, -524257, 65536, 0, -458722, 0, 0, -458721, 65536, 0, -393186, 0, 0, -393185, 65536, 0, -327650, 0, 0, -327649, 65536, 0, -262114, 0, 0, -262113, 65536, 0, -196578, 0, 0, -196577, 65536, 0, -131042, 0, 0, -131041, 65536, 0, -65506, 0, 0, -65505, 65536, 0, 30, 0, 0, 31, 65536, 0, 65566, 0, 0, 65567, 65536, 0, 131102, 0, 0, 131103, 65536, 0, -851936, 0, 0, -851935, 65536, 0, -786400, 0, 0, -786399, 65536, 0, -720864, 0, 0, -720863, 65536, 0, -655328, 0, 0, -655327, 65536, 0, -589792, 0, 0, -589791, 65536, 0, -524256, 0, 0, -524255, 65536, 0, -458720, 0, 0, -458719, 65536, 0, -393184, 0, 0, -393183, 65536, 0, -327648, 0, 0, -327647, 65536, 0, -262112, 0, 0, -262111, 65536, 0, -196576, 0, 0, -196575, 65536, 0, -131040, 0, 0, -131039, 65536, 0, -65504, 0, 0, -65503, 65536, 0, 32, 0, 0, 33, 65536, 0, 65568, 0, 0, 65569, 65536, 0, 131104, 0, 0, 131105, 65536, 0, -655326, 0, 0, -589790, 0, 0, -524254, 0, 0, -458718, 0, 0, -393182, 0, 0, -327646, 0, 0, -262110, 0, 0, -196574, 0, 0, -131038, 0, 0, -65502, 0, 0, 34, 0, 0, 65570, 0, 0, 131106, 0, 0, 852021, 0, 0, -589783, 0, 0, -589782, 65536, 0, -524247, 0, 0, -524246, 65536, 0, -458711, 0, 0, -458710, 65536, 0, -393175, 0, 0, -393174, 65536, 0, -327639, 0, 0, -327638, 65536, 0, -262103, 0, 0, -262102, 65536, 0, -196567, 0, 0, -196566, 65536, 0, -131031, 0, 0, -131030, 65536, 0, -65495, 0, 0, -65494, 65536, 0, 41, 0, 0, 42, 65536, 0, 65577, 0, 0, 65578, 65536, 0, 131113, 0, 0, 131114, 65536, 0, 196649, 0, 0, 196650, 65536, 0, 262186, 65536, 0, 327722, 65536, 0, 393258, 65536, 0, 458794, 65536, 0, 524329, 0, 0, 524330, 65536, 0, 589866, 65536, 0, 655402, 65536, 0, 720938, 65536, 0, 786474, 65536, 0, -655316, 65536, 0, -589781, 0, 0, -589780, 65536, 0, -524245, 0, 0, -524244, 65536, 0, -458709, 0, 0, -458708, 65536, 0, -393173, 0, 0, -393172, 65536, 0, -327637, 0, 0, -327636, 65536, 0, -262101, 0, 0, -262100, 65536, 0, -196565, 0, 0, -196564, 65536, 0, -131029, 0, 0, -131028, 65536, 0, -65493, 0, 0, -65492, 65536, 0, 43, 0, 0, 44, 65536, 0, 65579, 0, 0, 65580, 65536, 0, 131115, 0, 0, 131116, 65536, 0, 196651, 0, 0, 196652, 65536, 0, 262187, 0, 0, 262188, 65536, 0, 327723, 0, 0, 327724, 65536, 0, 393259, 0, 0, 393260, 65536, 0, 458795, 0, 0, 458796, 65536, 0, 524331, 0, 0, 524332, 65536, 0, 589867, 0, 0, 589868, 65536, 0, 655403, 0, 0, 655404, 65536, 0, 720939, 0, 0, 720940, 65536, 0, 786475, 0, 0, 786476, 65536, 0, -655315, 0, 0, -655314, 65536, 0, -589779, 0, 0, -589778, 65536, 0, -524243, 0, 0, -524242, 65536, 0, -458707, 0, 0, -458706, 65536, 0, -393171, 0, 0, -393170, 65536, 0, -327635, 0, 0, -327634, 65536, 0, -262099, 0, 0, -262098, 65536, 0, -196563, 0, 0, -196562, 65536, 0, -131027, 0, 0, -131026, 65536, 0, -65491, 0, 0, -65490, 65536, 0, 45, 0, 0, 46, 65536, 0, 65581, 0, 0, 65582, 65536, 0, 131117, 0, 0, 131118, 65536, 0, 196653, 0, 0, 196654, 65536, 0, 262189, 0, 0, 262190, 65536, 0, 327725, 0, 0, 327726, 65536, 0, 393261, 0, 0, 393262, 65536, 0, 458797, 0, 0, 458798, 65536, 0, 524333, 0, 0, 524334, 65536, 0, 589869, 0, 0, 589870, 65536, 0, 655405, 0, 0, 655406, 65536, 0, 720941, 0, 0, 720942, 65536, 0, 786477, 0, 0, 786478, 65536, 0, -655313, 0, 0, -589777, 0, 0, -589776, 65536, 0, -524241, 0, 0, -524240, 65536, 0, -458705, 0, 0, -458704, 65536, 0, -393169, 0, 0, -393168, 65536, 0, -327633, 0, 0, -327632, 65536, 0, -262097, 0, 0, -262096, 65536, 0, -196561, 0, 0, -196560, 65536, 0, -131025, 0, 0, -131024, 65536, 0, -65489, 0, 0, -65488, 65536, 0, 47, 0, 0, 48, 65536, 0, 65583, 0, 0, 65584, 65536, 0, 131119, 0, 0, 131120, 65536, 0, 196655, 0, 0, 196656, 65536, 0, 262191, 0, 0, 262192, 65536, 0, 327727, 0, 0, 327728, 65536, 0, 393263, 0, 0, 393264, 65536, 0, 458799, 0, 0, 458800, 65536, 0, 524335, 0, 0, 524336, 65536, 0, 589871, 0, 0, 589872, 65536, 0, 655407, 0, 0, 655408, 65536, 0, 720943, 0, 0, 720944, 65536, 0, 786479, 0, 0, 786480, 65536, 0, -589775, 0, 0, -589774, 65536, 0, -524239, 0, 0, -524238, 65536, 0, -458703, 0, 0, -458702, 65536, 0, -393167, 0, 0, -393166, 65536, 0, -327631, 0, 0, -327630, 65536, 0, -262095, 0, 0, -262094, 65536, 0, -196559, 0, 0, -196558, 65536, 0, -131023, 0, 0, -131022, 65536, 0, -65487, 0, 0, -65486, 65536, 0, 49, 0, 0, 50, 65536, 0, 65585, 0, 0, 65586, 65536, 0, 131121, 0, 0, 131122, 65536, 0, 196657, 0, 0, 262193, 0, 0, 327729, 0, 0, 393265, 0, 0, 458801, 0, 0, 524337, 0, 0, 524338, 65536, 0, 589873, 0, 0, 655409, 0, 0, 720945, 0, 0, 786481, 0, 0, -65475, 0, 0, -65474, 65536, 0, 61, 0, 0, 62, 65536, 0, -65472, 0, 0, 64, 0, 0, 196604, 0, 0, -11, 0, 0, 131069, 0, 0, 65538, 0, 0, 131064, 65536, 0, -65548, 65536, 0, -65547, 65536, 0, 262138, 65536, 0, 262139, 65536, 0, 196601, 65536, 0, 589847, 0, 0, 589848, 65536, 0, 655383, 0, 0, 655384, 65536, 0, 720919, 0, 0, 720920, 65536, 0, 786455, 0, 0, 786456, 65536, 0, 851991, 0, 0, 851992, 65536, 0, 917527, 0, 0, 917528, 65536, 0, 983063, 0, 0, 983064, 65536, 0, 589849, 0, 0, 655385, 0, 0, 720921, 0, 0, 786457, 0, 0, 851993, 0, 0, 917529, 0, 0, 983065, 0, 0, 1048599, 0, 0, 1048600, 65536, 0, 1114135, 0, 0, 1114136, 65536, 0, 1179671, 0, 0, 1179672, 65536, 0, 1048601, 0, 0, 1114137, 0, 0, 1179673, 0, 0, 655393, 0, 0, 589856, 65536, 0, 196658, 65536, 0, -65473, 65536, 0, 63, 65536, 0, -65546, 0, 0, -10, 0, 0, 65526, 0, 0, -131083, 0, 0, -196618, 0, 0, -131082, 0, 0, 65528, 0, 0, -3, 0, 0, 65533, 0, 0, 131070, 65536, 0, 262131, 0, 0, 262132, 65536, 0, 327667, 0, 0, 327668, 65536, 0, 393203, 0, 0, 393204, 65536, 0, 458739, 0, 0, 458740, 65536, 0, 524275, 0, 0, 524276, 65536, 0, 589811, 0, 0, 589812, 65536, 0, 655347, 0, 0, 655348, 65536, 0, 720883, 0, 0, 720884, 65536, 0, 786419, 0, 0, 786420, 65536, 0, 851955, 0, 0, 851956, 65536, 0, 917491, 0, 0, 917492, 65536, 0, 983027, 0, 0, 983028, 65536, 0, 1048563, 0, 0, 1048564, 65536, 0, 1114099, 0, 0, 1114100, 65536, 0, 1179635, 0, 0, 1179636, 65536, 0, 1245171, 0, 0, 1245172, 65536, 0, 262133, 0, 0, 262134, 65536, 0, 327669, 0, 0, 327670, 65536, 0, 393205, 0, 0, 393206, 65536, 0, 458741, 0, 0, 458742, 65536, 0, 524277, 0, 0, 524278, 65536, 0, 589813, 0, 0, 589814, 65536, 0, 655349, 0, 0, 655350, 65536, 0, 720885, 0, 0, 720886, 65536, 0, 786421, 0, 0, 786422, 65536, 0, 851957, 0, 0, 851958, 65536, 0, 917493, 0, 0, 917494, 65536, 0, 983029, 0, 0, 983030, 65536, 0, 1048565, 0, 0, 1048566, 65536, 0, 1114101, 0, 0, 1114102, 65536, 0, 1179637, 0, 0, 1179638, 65536, 0, 1245173, 0, 0, 1245174, 65536, 0, 262135, 0, 0, 327671, 0, 0, 327672, 65536, 0, 393207, 0, 0, 393208, 65536, 0, 458743, 0, 0, 458744, 65536, 0, 524279, 0, 0, 524280, 65536, 0, 589815, 0, 0, 589816, 65536, 0, 655351, 0, 0, 655352, 65536, 0, 720887, 0, 0, 720888, 65536, 0, 786423, 0, 0, 786424, 65536, 0, 851959, 0, 0, 851960, 65536, 0, 917495, 0, 0, 917496, 65536, 0, 983031, 0, 0, 983032, 65536, 0, 1048567, 0, 0, 1048568, 65536, 0, 1114103, 0, 0, 1114104, 65536, 0, 1179639, 0, 0, 1179640, 65536, 0, 1245175, 0, 0, 1245176, 65536, 0, 327673, 0, 0, 327674, 65536, 0, 393209, 0, 0, 393210, 65536, 0, 458745, 0, 0, 458746, 65536, 0, 524281, 0, 0, 524282, 65536, 0, 589817, 0, 0, 589818, 65536, 0, 655353, 0, 0, 655354, 65536, 0, 720889, 0, 0, 720890, 65536, 0, 786425, 0, 0, 786426, 65536, 0, 851961, 0, 0, 851962, 65536, 0, 917497, 0, 0, 917498, 65536, 0, 983033, 0, 0, 983034, 65536, 0, 1048569, 0, 0, 1048570, 65536, 0, 1114105, 0, 0, 1114106, 65536, 0, 1179641, 0, 0, 1179642, 65536, 0, 1245177, 0, 0, 1245178, 65536, 0, 327675, 0, 0, 327676, 65536, 0, 393211, 0, 0, 393212, 65536, 0, 458747, 0, 0, 458748, 65536, 0, 524283, 0, 0, 524284, 65536, 0, 589819, 0, 0, 589820, 65536, 0, 655355, 0, 0, 655356, 65536, 0, 720891, 0, 0, 720892, 65536, 0, 786427, 0, 0, 786428, 65536, 0, 851963, 0, 0, 851964, 65536, 0, 917499, 0, 0, 917500, 65536, 0, 983035, 0, 0, 983036, 65536, 0, 1048571, 0, 0, 1048572, 65536, 0, 1114107, 0, 0, 1114108, 65536, 0, 1179643, 0, 0, 1179644, 65536, 0, 1245179, 0, 0, 1245180, 65536, 0, 327677, 0, 0, 393213, 0, 0, 458749, 0, 0, 524285, 0, 0, 589821, 0, 0, 655357, 0, 0, 720893, 0, 0, 786429, 0, 0, 851965, 0, 0, 917501, 0, 0, 983037, 0, 0, 1048573, 0, 0, 1114109, 0, 0, 1179645, 0, 0, 1245181, 0, 0, 262143, 0, 0, 196608, 65536, 0, 327679, 0, 0, 262144, 65536, 0, 393215, 0, 0, 327680, 65536, 0, 458751, 0, 0, 393216, 65536, 0, 524287, 0, 0, 458752, 65536, 0, 196609, 0, 0, 524289, 0, 0, 851967, 0, 0, 786432, 65536, 0, 917503, 0, 0, 851968, 65536, 0, 983039, 0, 0, 917504, 65536, 0, 1048575, 0, 0, 983040, 65536, 0, 1114111, 0, 0, 1048576, 65536, 0, 1179647, 0, 0, 1114112, 65536, 0, 1245183, 0, 0, 1179648, 65536, 0, 720897, 0, 0, 983041, 0, 0, 1048577, 0, 0, 1114113, 0, 0, 1179649, 0, 0, 983042, 65536, 0, 1048578, 65536, 0, 1114114, 65536, 0, 1179650, 65536, 0, 327678, 65536, 0, 393214, 65536, 0, 458750, 65536, 0, 524286, 65536, 0, 589822, 65536, 0, 655358, 65536, 0, 720894, 65536, 0, 786430, 65536, 0, 851966, 65536, 0, 917502, 65536, 0, 983038, 65536, 0, 1048574, 65536, 0, 1114110, 65536, 0, 1179646, 65536, 0, 1245182, 65536, 0, 196610, 65536, 0, 196611, 0, 0, 262142, 65536, 0, 262141, 65536, 0, 262136, 65536, 0, 262137, 65536, 0, 262140, 65536, 0, 917507, 65536, 0, 983048, 0, 0, 983049, 65536, 0, 1048584, 0, 0, 1048585, 65536, 0, 1114120, 0, 0, 1114121, 65536, 0, 1179656, 0, 0, 1179657, 65536, 0, 983050, 0, 0, 983051, 65536, 0, 1048586, 0, 0, 1048587, 65536, 0, 1114122, 0, 0, 1114123, 65536, 0, 1179658, 0, 0, 1179659, 65536, 0, 983052, 0, 0, 983053, 65536, 0, 1048588, 0, 0, 1048589, 65536, 0, 1114124, 0, 0, 1114125, 65536, 0, 1179660, 0, 0, 1179661, 65536, 0, 983054, 0, 0, 983055, 65536, 0, 1048590, 0, 0, 1048591, 65536, 0, 1114126, 0, 0, 1114127, 65536, 0, 1179662, 0, 0, 1179663, 65536, 0, 983056, 0, 0, 983057, 65536, 0, 1048592, 0, 0, 1048593, 65536, 0, 1114128, 0, 0, 1114129, 65536, 0, 1179664, 0, 0, 1179665, 65536, 0, 983058, 0, 0, 983059, 65536, 0, 1048594, 0, 0, 1048595, 65536, 0, 1114130, 0, 0, 1114131, 65536, 0, 1179666, 0, 0, 1179667, 65536, 0, 983060, 0, 0, 983061, 65536, 0, 1048596, 0, 0, 1048597, 65536, 0, 1114132, 0, 0, 1114133, 65536, 0, 1179668, 0, 0, 1179669, 65536, 0, 786448, 0, 0, 786449, 65536, 0, 851984, 0, 0, 851985, 65536, 0, 917520, 0, 0, 917521, 65536, 0, 786450, 0, 0, 786451, 65536, 0, 851986, 0, 0, 851987, 65536, 0, 917522, 0, 0, 917523, 65536, 0, 786452, 0, 0, 786453, 65536, 0, 851988, 0, 0, 851989, 65536, 0, 917524, 0, 0, 917525, 65536, 0, 655378, 0, 0, 655379, 65536, 0, 720914, 0, 0, 720915, 65536, 0, 655380, 0, 0, 655381, 65536, 0, 720916, 0, 0, 720917, 65536, 0, 917519, 65536, 0, 720913, 65536, 0, 917518, 0, 0, 851983, 65536, 0, 655387, 0, 0, 655388, 65536, 0, 720923, 0, 0, 720924, 65536, 0, 786459, 0, 0, 786460, 65536, 0, 851995, 0, 0, 851996, 65536, 0, 917531, 0, 0, 917532, 65536, 0, 983067, 0, 0, 983068, 65536, 0, 1048603, 0, 0, 1048604, 65536, 0, 1114139, 0, 0, 1114140, 65536, 0, 1179675, 0, 0, 1179676, 65536, 0, 655389, 0, 0, 655390, 65536, 0, 720925, 0, 0, 720926, 65536, 0, 786461, 0, 0, 786462, 65536, 0, 851997, 0, 0, 851998, 65536, 0, 917533, 0, 0, 917534, 65536, 0, 983069, 0, 0, 983070, 65536, 0, 1048605, 0, 0, 1048606, 65536, 0, 1114141, 0, 0, 1114142, 65536, 0, 1179677, 0, 0, 1179678, 65536, 0, 655391, 0, 0, 655392, 65536, 0, 720927, 0, 0, 720928, 65536, 0, 786463, 0, 0, 786464, 65536, 0, 851999, 0, 0, 852000, 65536, 0, 917535, 0, 0, 917536, 65536, 0, 983071, 0, 0, 983072, 65536, 0, 1048607, 0, 0, 1048608, 65536, 0, 1114143, 0, 0, 1114144, 65536, 0, 1179679, 0, 0, 1179680, 65536, 0, 917537, 0, 0, 917538, 65536, 0, 983073, 0, 0, 983074, 65536, 0, 1048609, 0, 0, 1048610, 65536, 0, 1114145, 0, 0, 1114146, 65536, 0, 1179681, 0, 0, 1179682, 65536, 0, 917539, 0, 0, 917540, 65536, 0, 983075, 0, 0, 983076, 65536, 0, 1048611, 0, 0, 1048612, 65536, 0, 1114147, 0, 0, 1114148, 65536, 0, 1179683, 0, 0, 1179684, 65536, 0, 917541, 0, 0, 917542, 65536, 0, 983077, 0, 0, 983078, 65536, 0, 1048613, 0, 0, 1048614, 65536, 0, 1114149, 0, 0, 1114150, 65536, 0, 1179685, 0, 0, 1179686, 65536, 0, 917543, 0, 0, 917544, 65536, 0, 983079, 0, 0, 983080, 65536, 0, 1048615, 0, 0, 1048616, 65536, 0, 1114151, 0, 0, 1114152, 65536, 0, 1179687, 0, 0, 1179688, 65536, 0, 917545, 0, 0, 917546, 65536, 0, 983081, 0, 0, 983082, 65536, 0, 1048617, 0, 0, 1048618, 65536, 0, 1114153, 0, 0, 1114154, 65536, 0, 1179689, 0, 0, 1179690, 65536, 0, 917547, 0, 0, 917548, 65536, 0, 983083, 0, 0, 983084, 65536, 0, 1048619, 0, 0, 1048620, 65536, 0, 1114155, 0, 0, 1114156, 65536, 0, 1179691, 0, 0, 1179692, 65536, 0, 917549, 0, 0, 917550, 65536, 0, 983085, 0, 0, 983086, 65536, 0, 1048621, 0, 0, 1048622, 65536, 0, 1114157, 0, 0, 1114158, 65536, 0, 1179693, 0, 0, 1179694, 65536, 0, 917551, 0, 0, 917552, 65536, 0, 983087, 0, 0, 983088, 65536, 0, 1048623, 0, 0, 1048624, 65536, 0, 1114159, 0, 0, 1114160, 65536, 0, 1179695, 0, 0, 1179696, 65536, 0, 917553, 0, 0, 917554, 65536, 0, 983089, 0, 0, 983090, 65536, 0, 1048625, 0, 0, 1048626, 65536, 0, 1114161, 0, 0, 1114162, 65536, 0, 1179697, 0, 0, 1179698, 65536, 0, 917555, 0, 0, 917556, 65536, 0, 983091, 0, 0, 983092, 65536, 0, 1048627, 0, 0, 1048628, 65536, 0, 1114163, 0, 0, 1114164, 65536, 0, 1179699, 0, 0, 1179700, 65536, 0, 786465, 0, 0, 786466, 65536, 0, 852001, 0, 0, 852002, 65536, 0, 720929, 0, 0, 852003, 0, 0, 589854, 65536, 0, 655382, 65536, 0, 655386, 65536, 0, 262195, 0, 0, 262196, 65536, 0, 327731, 0, 0, 327732, 65536, 0, 393267, 0, 0, 393268, 65536, 0, 458803, 0, 0, 458804, 65536, 0, 262197, 0, 0, 262198, 65536, 0, 327733, 0, 0, 327734, 65536, 0, 393269, 0, 0, 393270, 65536, 0, 458805, 0, 0, 458806, 65536, 0, 262199, 0, 0, 262200, 65536, 0, 327735, 0, 0, 327736, 65536, 0, 393271, 0, 0, 393272, 65536, 0, 458807, 0, 0, 458808, 65536, 0, 262201, 0, 0, 262202, 65536, 0, 327737, 0, 0, 327738, 65536, 0, 393273, 0, 0, 393274, 65536, 0, 458809, 0, 0, 458810, 65536, 0, 131131, 0, 0, 131132, 65536, 0, 196667, 0, 0, 196668, 65536, 0, 262203, 0, 0, 262204, 65536, 0, 327739, 0, 0, 327740, 65536, 0, 393275, 0, 0, 393276, 65536, 0, 458811, 0, 0, 458812, 65536, 0, 524347, 0, 0, 524348, 65536, 0, 589883, 0, 0, 589884, 65536, 0, 655419, 0, 0, 655420, 65536, 0, 720955, 0, 0, 720956, 65536, 0, 786491, 0, 0, 786492, 65536, 0, 852027, 0, 0, 852028, 65536, 0, 917563, 0, 0, 917564, 65536, 0, 983099, 0, 0, 983100, 65536, 0, 1048635, 0, 0, 1048636, 65536, 0, 1114171, 0, 0, 1114172, 65536, 0, 1179707, 0, 0, 1179708, 65536, 0, 131133, 0, 0, 131134, 65536, 0, 196669, 0, 0, 196670, 65536, 0, 262205, 0, 0, 262206, 65536, 0, 327741, 0, 0, 327742, 65536, 0, 393277, 0, 0, 393278, 65536, 0, 458813, 0, 0, 458814, 65536, 0, 524349, 0, 0, 524350, 65536, 0, 589885, 0, 0, 589886, 65536, 0, 655421, 0, 0, 655422, 65536, 0, 720957, 0, 0, 720958, 65536, 0, 786493, 0, 0, 786494, 65536, 0, 852029, 0, 0, 852030, 65536, 0, 917565, 0, 0, 917566, 65536, 0, 983101, 0, 0, 983102, 65536, 0, 1048637, 0, 0, 1048638, 65536, 0, 1114173, 0, 0, 1114174, 65536, 0, 1179709, 0, 0, 1179710, 65536, 0, 131135, 0, 0, 131136, 65536, 0, 196671, 0, 0, 196672, 65536, 0, 262207, 0, 0, 262208, 65536, 0, 327743, 0, 0, 327744, 65536, 0, 393279, 0, 0, 393280, 65536, 0, 458815, 0, 0, 458816, 65536, 0, 524351, 0, 0, 524352, 65536, 0, 589887, 0, 0, 589888, 65536, 0, 655423, 0, 0, 655424, 65536, 0, 720959, 0, 0, 720960, 65536, 0, 786495, 0, 0, 786496, 65536, 0, 852031, 0, 0, 852032, 65536, 0, 917567, 0, 0, 917568, 65536, 0, 983103, 0, 0, 983104, 65536, 0, 1048639, 0, 0, 1048640, 65536, 0, 1114175, 0, 0, 1114176, 65536, 0, 1179711, 0, 0, 1179712, 65536, 0, 131137, 0, 0, 131138, 65536, 0, 196673, 0, 0, 196674, 65536, 0, 262209, 0, 0, 262210, 65536, 0, 327745, 0, 0, 327746, 65536, 0, 393281, 0, 0, 393282, 65536, 0, 458817, 0, 0, 458818, 65536, 0, 524353, 0, 0, 524354, 65536, 0, 589889, 0, 0, 589890, 65536, 0, 655425, 0, 0, 655426, 65536, 0, 720961, 0, 0, 720962, 65536, 0, 786497, 0, 0, 786498, 65536, 0, 852033, 0, 0, 852034, 65536, 0, 917569, 0, 0, 917570, 65536, 0, 983105, 0, 0, 983106, 65536, 0, 1048641, 0, 0, 1048642, 65536, 0, 1114177, 0, 0, 1114178, 65536, 0, 1179713, 0, 0, 1179714, 65536, 0, 196675, 0, 0, 262211, 0, 0, 262212, 65536, 0, 327747, 0, 0, 327748, 65536, 0, 393283, 0, 0, 393284, 65536, 0, 458819, 0, 0, 458820, 65536, 0, 524355, 0, 0, 524356, 65536, 0, 589891, 0, 0, 589892, 65536, 0, 655427, 0, 0, 655428, 65536, 0, 720963, 0, 0, 720964, 65536, 0, 786499, 0, 0, 786500, 65536, 0, 852035, 0, 0, 852036, 65536, 0, 917571, 0, 0, 917572, 65536, 0, 983107, 0, 0, 983108, 65536, 0, 1048643, 0, 0, 1048644, 65536, 0, 1114179, 0, 0, 1114180, 65536, 0, 1179715, 0, 0, 1179716, 65536, 0, 262213, 0, 0, 262214, 65536, 0, 327749, 0, 0, 327750, 65536, 0, 393285, 0, 0, 393286, 65536, 0, 458821, 0, 0, 458822, 65536, 0, 524357, 0, 0, 524358, 65536, 0, 589893, 0, 0, 589894, 65536, 0, 655429, 0, 0, 655430, 65536, 0, 720965, 0, 0, 720966, 65536, 0, 786501, 0, 0, 786502, 65536, 0, 852037, 0, 0, 852038, 65536, 0, 917573, 0, 0, 917574, 65536, 0, 983109, 0, 0, 983110, 65536, 0, 1048645, 0, 0, 1048646, 65536, 0, 1114181, 0, 0, 1114182, 65536, 0, 1179717, 0, 0, 1179718, 65536, 0, 262215, 0, 0, 262216, 65536, 0, 327751, 0, 0, 327752, 65536, 0, 393287, 0, 0, 393288, 65536, 0, 458823, 0, 0, 458824, 65536, 0, 524359, 0, 0, 524360, 65536, 0, 589895, 0, 0, 589896, 65536, 0, 655431, 0, 0, 655432, 65536, 0, 720967, 0, 0, 720968, 65536, 0, 786503, 0, 0, 786504, 65536, 0, 852039, 0, 0, 852040, 65536, 0, 917575, 0, 0, 917576, 65536, 0, 983111, 0, 0, 983112, 65536, 0, 1048647, 0, 0, 1048648, 65536, 0, 1114183, 0, 0, 1114184, 65536, 0, 1179719, 0, 0, 1179720, 65536, 0, 262217, 0, 0, 327753, 0, 0, 393289, 0, 0, 458825, 0, 0, 524361, 0, 0, 589897, 0, 0, 655433, 0, 0, 720969, 0, 0, 786505, 0, 0, 852041, 0, 0, 917577, 0, 0, 983113, 0, 0, 1048649, 0, 0, 1114185, 0, 0, 1179721, 0, 0, 196666, 65536, 0, 524346, 65536, 0, 589882, 65536, 0, 655418, 65536, 0, 720954, 65536, 0, 786490, 65536, 0, 852026, 65536, 0, 917562, 65536, 0, 983098, 65536, 0, 1048634, 65536, 0, 1114170, 65536, 0, 1179706, 65536, 0, 131140, 65536, 0, 65603, 65536, 0, 65594, 65536, 0, 131129, 65536, 0, 786441, 196608, 4, 851977, 196608, 5, -65476, 196608, 4, 60, 196608, 5, -65471, 131072, 4, 65, 131072, 5, 65587, 131072, 4, 131123, 131072, 5, -65485, 131072, 4, 51, 131072, 5, -196557, 131072, 4, -131021, 131072, 5, -327629, 131072, 4, -262093, 131072, 5, -458701, 131072, 4, -393165, 131072, 5, -524237, 131072, 5, 65576, 196608, 4, 131112, 196608, 5, -65496, 196608, 4, 40, 196608, 5, -196568, 196608, 4, -131032, 196608, 5, -327640, 196608, 4, -262104, 196608, 5, -458712, 196608, 4, -393176, 196608, 5, -524248, 196608, 5, 65571, 131072, 4, 131107, 131072, 5, -65501, 131072, 4, 35, 131072, 5, -196573, 131072, 4, -131037, 131072, 5, -327645, 131072, 4, -262109, 131072, 5, -589789, 131072, 4, -524253, 131072, 5, -458717, 131072, 4, -393181, 131072, 5, 65559, 196608, 4, 131095, 196608, 5, -65513, 196608, 4, 23, 196608, 5, -196585, 196608, 4, -131049, 196608, 5, -327657, 196608, 4, -262121, 196608, 5, -524265, 196608, 5, -458729, 196608, 4, -393193, 196608, 5, -589801, 196608, 4, 65545, 196608, 4, 131081, 196608, 5, 9, 196608, 5, 65557, 131072, 4, 131093, 131072, 5, 21, 131072, 5)
layer_3/name = "panels and etc"
layer_3/enabled = true
layer_3/modulate = Color(1, 1, 1, 1)
layer_3/y_sort_enabled = false
layer_3/y_sort_origin = 0
layer_3/z_index = 0
layer_3/tile_data = PackedInt32Array(-458729, 458752, 5, 61, 458752, 5, 524306, 458752, 5, 851977, 458752, 5, -131053, 65536, 7, -131061, 131072, 7, 262153, 131072, 7, 262184, 65536, 7, 262186, 131072, 7, 262193, 65536, 7, 589880, 65536, 7, -589775, 65536, 7, -589782, 131072, 7, -786407, 131072, 7, -786399, 65536, 7, -327656, 131072, 7, -327646, 65536, 7, 458789, 65536, 7)
layer_4/name = "wires"
layer_4/enabled = true
layer_4/modulate = Color(1, 1, 1, 1)
layer_4/y_sort_enabled = false
layer_4/y_sort_origin = 0
layer_4/z_index = 10
layer_4/tile_data = PackedInt32Array()
[node name="Mech" parent="." instance=ExtResource("6_rfu2k")]
position = Vector2(-1407, 988)
[node name="shadow night" type="DirectionalLight2D" parent="."]
color = Color(0.176471, 0.203922, 0.560784, 1)
energy = 0.4
blend_mode = 2
max_distance = 5000.0
[node name="lights" type="Node2D" parent="."]
position = Vector2(2, 506)
[node name="PointLight2D5" type="PointLight2D" parent="lights"]
position = Vector2(2438, -249)
texture = SubResource("GradientTexture2D_5idcw")
texture_scale = 6.71
[node name="PointLight2D6" type="PointLight2D" parent="lights"]
position = Vector2(2442, 246)
texture = SubResource("GradientTexture2D_5idcw")
texture_scale = 6.71
[node name="PointLight2D7" type="PointLight2D" parent="lights"]
position = Vector2(389, 2068)
texture = SubResource("GradientTexture2D_5idcw")
texture_scale = 6.71
[node name="PointLight2D8" type="PointLight2D" parent="lights"]
position = Vector2(892, 1038)
texture = SubResource("GradientTexture2D_5idcw")
texture_scale = 6.71
[node name="PointLight2D9" type="PointLight2D" parent="lights"]
position = Vector2(898, 1553)
texture = SubResource("GradientTexture2D_5idcw")
texture_scale = 6.71
[node name="PointLight2D10" type="PointLight2D" parent="lights"]
position = Vector2(892, 2056)
texture = SubResource("GradientTexture2D_5idcw")
texture_scale = 6.71
[node name="PointLight2D11" type="PointLight2D" parent="lights"]
position = Vector2(898, 2588)
texture = SubResource("GradientTexture2D_5idcw")
texture_scale = 6.71
[node name="PointLight2D12" type="PointLight2D" parent="lights"]
position = Vector2(898, 3029)
texture = SubResource("GradientTexture2D_5idcw")
texture_scale = 6.71
[node name="PointLight2D13" type="PointLight2D" parent="lights"]
position = Vector2(2696, 2820)
texture = SubResource("GradientTexture2D_5idcw")
texture_scale = 6.71
[node name="PointLight2D14" type="PointLight2D" parent="lights"]
position = Vector2(2691, 1288)
texture = SubResource("GradientTexture2D_5idcw")
texture_scale = 6.71
[node name="PointLight2D15" type="PointLight2D" parent="lights"]
position = Vector2(2686, 760)
texture = SubResource("GradientTexture2D_5idcw")
texture_scale = 6.71
[node name="PointLight2D16" type="PointLight2D" parent="lights"]
position = Vector2(3449, 19)
texture = SubResource("GradientTexture2D_5idcw")
texture_scale = 6.71
[node name="PointLight2D19" type="PointLight2D" parent="lights"]
position = Vector2(5507, 237)
texture = SubResource("GradientTexture2D_5idcw")
texture_scale = 6.71
[node name="PointLight2D20" type="PointLight2D" parent="lights"]
position = Vector2(5762, 548)
texture = SubResource("GradientTexture2D_5idcw")
texture_scale = 6.71
[node name="PointLight2D21" type="PointLight2D" parent="lights"]
position = Vector2(5773, 1018)
texture = SubResource("GradientTexture2D_5idcw")
texture_scale = 6.71
[node name="PointLight2D24" type="PointLight2D" parent="lights"]
position = Vector2(6782, 537)
texture = SubResource("GradientTexture2D_5idcw")
texture_scale = 6.71
[node name="PointLight2D25" type="PointLight2D" parent="lights"]
position = Vector2(6785, 1028)
texture = SubResource("GradientTexture2D_5idcw")
texture_scale = 6.71
[node name="PointLight2D26" type="PointLight2D" parent="lights"]
position = Vector2(6788, 1539)
texture = SubResource("GradientTexture2D_5idcw")
texture_scale = 6.71
[node name="PointLight2D27" type="PointLight2D" parent="lights"]
position = Vector2(6282, -492)
texture = SubResource("GradientTexture2D_5idcw")
texture_scale = 6.71
[node name="PointLight2D28" type="PointLight2D" parent="lights"]
position = Vector2(6274, -1058)
texture = SubResource("GradientTexture2D_5idcw")
texture_scale = 6.71
[node name="PointLight2D29" type="PointLight2D" parent="lights"]
position = Vector2(6266, -1534)
texture = SubResource("GradientTexture2D_5idcw")
texture_scale = 6.71
[node name="PointLight2D30" type="PointLight2D" parent="lights"]
position = Vector2(8841.72, -492.28)
texture = SubResource("GradientTexture2D_5idcw")
texture_scale = 6.71
[node name="PointLight2D31" type="PointLight2D" parent="lights"]
position = Vector2(8833.72, -1058.28)
texture = SubResource("GradientTexture2D_5idcw")
texture_scale = 6.71
[node name="PointLight2D32" type="PointLight2D" parent="lights"]
position = Vector2(8825.72, -1534.28)
texture = SubResource("GradientTexture2D_5idcw")
texture_scale = 6.71
[node name="PointLight2D33" type="PointLight2D" parent="lights"]
position = Vector2(7535.72, -2531.28)
texture = SubResource("GradientTexture2D_5idcw")
texture_scale = 6.71
[node name="PointLight2D34" type="PointLight2D" parent="lights"]
position = Vector2(7527.72, -3097.28)
texture = SubResource("GradientTexture2D_5idcw")
texture_scale = 6.71
[node name="PointLight2D35" type="PointLight2D" parent="lights"]
position = Vector2(7519.72, -3573.28)
texture = SubResource("GradientTexture2D_5idcw")
texture_scale = 6.71
[node name="PointLight2D36" type="PointLight2D" parent="lights"]
position = Vector2(10651.7, -1260.28)
texture = SubResource("GradientTexture2D_5idcw")
texture_scale = 6.71
[node name="PointLight2D37" type="PointLight2D" parent="lights"]
position = Vector2(10643.7, -1826.28)
texture = SubResource("GradientTexture2D_5idcw")
texture_scale = 6.71
[node name="PointLight2D38" type="PointLight2D" parent="lights"]
position = Vector2(10635.7, -2302.28)
texture = SubResource("GradientTexture2D_5idcw")
texture_scale = 6.71
[node name="PointLight2D39" type="PointLight2D" parent="lights"]
position = Vector2(11658.7, -1769.28)
texture = SubResource("GradientTexture2D_5idcw")
texture_scale = 6.71
[node name="PointLight2D40" type="PointLight2D" parent="lights"]
position = Vector2(11650.7, -2335.28)
texture = SubResource("GradientTexture2D_5idcw")
texture_scale = 6.71
[node name="PointLight2D41" type="PointLight2D" parent="lights"]
position = Vector2(11642.7, -2811.28)
texture = SubResource("GradientTexture2D_5idcw")
texture_scale = 6.71
[node name="PointLight2D42" type="PointLight2D" parent="lights"]
position = Vector2(11886.7, -1769.28)
texture = SubResource("GradientTexture2D_5idcw")
texture_scale = 6.71
[node name="PointLight2D43" type="PointLight2D" parent="lights"]
position = Vector2(11878.7, -2335.28)
texture = SubResource("GradientTexture2D_5idcw")
texture_scale = 6.71
[node name="PointLight2D48" type="PointLight2D" parent="lights"]
position = Vector2(11646.7, -769.28)
texture = SubResource("GradientTexture2D_5idcw")
texture_scale = 6.71
[node name="PointLight2D49" type="PointLight2D" parent="lights"]
position = Vector2(11639, -1296)
texture = SubResource("GradientTexture2D_5idcw")
texture_scale = 6.71
[node name="PointLight2D50" type="PointLight2D" parent="lights"]
position = Vector2(10100, 4)
texture = SubResource("GradientTexture2D_5idcw")
texture_scale = 6.71
[node name="PointLight2D51" type="PointLight2D" parent="lights"]
position = Vector2(10614, 13)
texture = SubResource("GradientTexture2D_5idcw")
texture_scale = 6.71
[node name="PointLight2D57" type="PointLight2D" parent="lights"]
position = Vector2(9601, 24)
texture = SubResource("GradientTexture2D_5idcw")
texture_scale = 6.71
[node name="PointLight2D58" type="PointLight2D" parent="lights"]
position = Vector2(8845, -2554)
texture = SubResource("GradientTexture2D_5idcw")
texture_scale = 6.71
[node name="PointLight2D59" type="PointLight2D" parent="lights"]
position = Vector2(7553, -1777)
texture = SubResource("GradientTexture2D_5idcw")
texture_scale = 6.71
[node name="PointLight2D60" type="PointLight2D" parent="lights"]
position = Vector2(6266, -2549)
texture = SubResource("GradientTexture2D_5idcw")
texture_scale = 6.71
[node name="PointLight2D61" type="PointLight2D" parent="lights"]
position = Vector2(10623, 2064)
texture = SubResource("GradientTexture2D_5idcw")
texture_scale = 6.71
[node name="PointLight2D62" type="PointLight2D" parent="lights"]
position = Vector2(10630, 2572)
texture = SubResource("GradientTexture2D_5idcw")
texture_scale = 6.71
[node name="PointLight2D63" type="PointLight2D" parent="lights"]
position = Vector2(12919, 2566)
texture = SubResource("GradientTexture2D_5idcw")
texture_scale = 6.71
[node name="PointLight2D64" type="PointLight2D" parent="lights"]
position = Vector2(12922, 2051)
texture = SubResource("GradientTexture2D_5idcw")
texture_scale = 6.71
[node name="PointLight2D65" type="PointLight2D" parent="lights"]
position = Vector2(15496, -512)
texture = SubResource("GradientTexture2D_5idcw")
texture_scale = 6.71
[node name="PointLight2D66" type="PointLight2D" parent="lights"]
position = Vector2(16763, -512)
texture = SubResource("GradientTexture2D_5idcw")
texture_scale = 6.71
[node name="PointLight2D52" type="PointLight2D" parent="lights"]
position = Vector2(10640, -467)
texture = SubResource("GradientTexture2D_5idcw")
texture_scale = 6.71
[node name="PointLight2D53" type="PointLight2D" parent="lights"]
position = Vector2(12934, -3)
texture = SubResource("GradientTexture2D_5idcw")
texture_scale = 6.71
[node name="PointLight2D56" type="PointLight2D" parent="lights"]
position = Vector2(12941, -516)
texture = SubResource("GradientTexture2D_5idcw")
texture_scale = 6.71
[node name="PointLight2D54" type="PointLight2D" parent="lights"]
position = Vector2(11907, -785)
texture = SubResource("GradientTexture2D_5idcw")
texture_scale = 6.71
[node name="PointLight2D55" type="PointLight2D" parent="lights"]
position = Vector2(11903, -1327)
texture = SubResource("GradientTexture2D_5idcw")
texture_scale = 6.71
[node name="PointLight2D44" type="PointLight2D" parent="lights"]
position = Vector2(11870.7, -2811.28)
texture = SubResource("GradientTexture2D_5idcw")
texture_scale = 6.71
[node name="PointLight2D45" type="PointLight2D" parent="lights"]
position = Vector2(12947.7, -1242.28)
texture = SubResource("GradientTexture2D_5idcw")
texture_scale = 6.71
[node name="PointLight2D46" type="PointLight2D" parent="lights"]
position = Vector2(12939.7, -1808.28)
texture = SubResource("GradientTexture2D_5idcw")
texture_scale = 6.71
[node name="PointLight2D47" type="PointLight2D" parent="lights"]
position = Vector2(12931.7, -2284.28)
texture = SubResource("GradientTexture2D_5idcw")
texture_scale = 6.71
[node name="PointLight2D22" type="PointLight2D" parent="lights"]
position = Vector2(5773, 1510)
texture = SubResource("GradientTexture2D_5idcw")
texture_scale = 6.71
[node name="PointLight2D17" type="PointLight2D" parent="lights"]
position = Vector2(4491, -3)
texture = SubResource("GradientTexture2D_5idcw")
texture_scale = 6.71
[node name="PointLight2D23" type="PointLight2D" parent="lights"]
position = Vector2(5511, -252)
texture = SubResource("GradientTexture2D_5idcw")
texture_scale = 6.71
[node name="PointLight2D67" type="PointLight2D" parent="lights"]
position = Vector2(9588, -566)
texture = SubResource("GradientTexture2D_5idcw")
texture_scale = 6.71
[node name="PointLight2D68" type="PointLight2D" parent="lights"]
position = Vector2(10101, -555)
texture = SubResource("GradientTexture2D_5idcw")
texture_scale = 6.71
[node name="PointLight2D69" type="PointLight2D" parent="lights"]
position = Vector2(10112, -1004)
texture = SubResource("GradientTexture2D_5idcw")
texture_scale = 6.71
[node name="PointLight2D70" type="PointLight2D" parent="lights"]
position = Vector2(9606, -1015)
texture = SubResource("GradientTexture2D_5idcw")
texture_scale = 6.71
[node name="PointLight2D71" type="PointLight2D" parent="lights"]
position = Vector2(9616, -1527)
texture = SubResource("GradientTexture2D_5idcw")
texture_scale = 6.71
[node name="PointLight2D18" type="PointLight2D" parent="lights"]
position = Vector2(3961, -766)
texture = SubResource("GradientTexture2D_5idcw")
texture_scale = 6.71
[node name="DarkArea8" parent="." instance=ExtResource("7_yb7kb")]
position = Vector2(6201, 1709)
[node name="DarkArea9" parent="DarkArea8" instance=ExtResource("7_yb7kb")]
position = Vector2(5538, -48)
[node name="DarkArea10" parent="DarkArea8" instance=ExtResource("7_yb7kb")]
position = Vector2(1350, -4221)
[node name="DarkArea12" parent="DarkArea8" instance=ExtResource("7_yb7kb")]
position = Vector2(-4793, 293)
[node name="DarkArea11" parent="DarkArea8" instance=ExtResource("7_yb7kb")]
position = Vector2(3330, 151)