A game created for the Godot Wild Jam #21
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

1131 lines
67KB

  1. [gd_scene load_steps=16 format=2]
  2. [ext_resource path="res://Data/Objects/BladeSaw.tscn" type="PackedScene" id=1]
  3. [ext_resource path="res://Data/Graphics/placeholder.png" type="Texture" id=2]
  4. [ext_resource path="res://Data/Shaders/Liquid.shader" type="Shader" id=3]
  5. [ext_resource path="res://Data/Objects/Liquid.tscn" type="PackedScene" id=4]
  6. [ext_resource path="res://Data/Misc/Tileset.tres" type="TileSet" id=5]
  7. [ext_resource path="res://Data/Objects/Doorway.tscn" type="PackedScene" id=6]
  8. [ext_resource path="res://Data/Objects/Pusher.tscn" type="PackedScene" id=7]
  9. [ext_resource path="res://Data/Scripts/Levels/Level_001.gd" type="Script" id=8]
  10. [ext_resource path="res://Data/Objects/ExitVortex.tscn" type="PackedScene" id=9]
  11. [sub_resource type="ShaderMaterial" id=6]
  12. resource_local_to_scene = true
  13. shader = ExtResource( 3 )
  14. shader_param/sprite_scale = Vector2( 1.72, 1 )
  15. shader_param/distortion = 16.265
  16. shader_param/liquid_color_main = Color( 0.572549, 0.572549, 0.572549, 1 )
  17. shader_param/liquid_color_surface = Color( 0.960784, 0.960784, 0.960784, 1 )
  18. shader_param/liquid_surface_thickness = 0.12
  19. shader_param/wave_amp = 0.25
  20. shader_param/wave_freq = 1.0
  21. shader_param/wave_scale = 1.0
  22. [sub_resource type="Shader" id=3]
  23. code = "shader_type canvas_item;
  24. uniform vec2 sprite_scale = vec2(1.0, 1.0);
  25. uniform float distortion : hint_range(0.1, 100.0) = 8.0;
  26. uniform vec4 liquid_color_main : hint_color = vec4(0.1, 0.2, 0.8, 0.25);
  27. uniform vec4 liquid_color_surface : hint_color = vec4(0.1, 0.2, 1.0, 0.5);
  28. uniform float liquid_surface_thickness : hint_range(0.0, 1.0) = 0.2;
  29. uniform float wave_amp : hint_range(-1.0, 1.0) = 0.25;
  30. uniform float wave_freq : hint_range(0.0, 1.0) = 1.0;
  31. uniform float wave_scale :hint_range(0.0, 10.0) = 1.0;
  32. float rand(vec2 p){
  33. return fract(sin(dot(p, vec2(12.9898, 78.233))) * 43758.5453123);
  34. }
  35. float noise(vec2 p){
  36. vec2 i = floor(p);
  37. vec2 f = fract(p);
  38. float a = rand(i);
  39. float b = rand(i + vec2(1.0, 0.0));
  40. float c = rand(i + vec2(0.0, 1.0));
  41. float d = rand(i + vec2(1.0, 1.0));
  42. vec2 cubic = f * f * (3.0 - (2.0 * f));
  43. return mix(a, b, cubic.x) + (c - a) * cubic.y * (1.0 - cubic.x) + (d - b) * cubic.x * cubic.y;
  44. }
  45. float ramp(float v, float f_min, float f_max){
  46. float res = (v - f_min) / (f_max - f_min);
  47. return max(0.0, min(1.0, res));
  48. }
  49. vec2 wavey_y(vec2 p, float time) {
  50. float dy = wave_amp * sin(wave_freq * (p.x * liquid_surface_thickness) * time);
  51. //return vec2(dx, dy);
  52. return vec2(p.x, p.y + dy);
  53. }
  54. void fragment(){
  55. vec2 noise1 = UV * sprite_scale * distortion;
  56. vec2 noise2 = UV * (sprite_scale * distortion) + 4.0;
  57. vec2 motion1 = vec2(TIME * 0.3, TIME * -0.4);
  58. vec2 motion2 = vec2(TIME * 0.1, TIME * 0.5);
  59. vec2 distort1 = vec2(noise(noise1 + motion1), noise(noise2 + motion1)) - vec2(0.5);
  60. vec2 distort2 = vec2(noise(noise1 + motion2), noise(noise2 + motion2)) - vec2(0.5);
  61. vec2 dsum = (distort1 + distort2) / 60.0;
  62. vec4 color = texture(SCREEN_TEXTURE, SCREEN_UV + dsum);
  63. color = mix(color, liquid_color_main, 0.3);
  64. color.rgb = mix(vec3(0.5), color.rgb, 1.4);
  65. float near_top = 1.0 - clamp((UV.y + dsum.y) / (liquid_surface_thickness / sprite_scale.y), 0.0, 1.0);
  66. color = mix(color, liquid_color_surface, near_top);
  67. float tedge_lower = 0.6;
  68. float tedge_upper = tedge_lower + 0.1;
  69. if (near_top > tedge_lower){
  70. color.a = 0.0;
  71. if (near_top < tedge_upper){
  72. color.a = (tedge_upper - near_top) / (tedge_upper - tedge_lower);
  73. }
  74. }
  75. COLOR = color;
  76. }"
  77. [sub_resource type="ShaderMaterial" id=1]
  78. resource_local_to_scene = true
  79. shader = SubResource( 3 )
  80. shader_param/sprite_scale = Vector2( 2.8, 1 )
  81. shader_param/distortion = 16.265
  82. shader_param/liquid_color_main = Color( 0.207843, 0.164706, 0.921569, 1 )
  83. shader_param/liquid_color_surface = Color( 0.360784, 0.352941, 0.972549, 1 )
  84. shader_param/liquid_surface_thickness = 0.12
  85. shader_param/wave_amp = 0.25
  86. shader_param/wave_freq = 1.0
  87. shader_param/wave_scale = 1.0
  88. [sub_resource type="ShaderMaterial" id=4]
  89. resource_local_to_scene = true
  90. shader = ExtResource( 3 )
  91. shader_param/sprite_scale = Vector2( 1.48, 1 )
  92. shader_param/distortion = 16.265
  93. shader_param/liquid_color_main = Color( 0.109804, 0.533333, 0.0823529, 1 )
  94. shader_param/liquid_color_surface = Color( 0.741176, 0.933333, 0.0588235, 1 )
  95. shader_param/liquid_surface_thickness = 0.12
  96. shader_param/wave_amp = 0.25
  97. shader_param/wave_freq = 1.0
  98. shader_param/wave_scale = 1.0
  99. [sub_resource type="ShaderMaterial" id=5]
  100. resource_local_to_scene = true
  101. shader = ExtResource( 3 )
  102. shader_param/sprite_scale = Vector2( 1.72663, 1.16549 )
  103. shader_param/distortion = 16.265
  104. shader_param/liquid_color_main = Color( 0.670588, 0.105882, 0.105882, 1 )
  105. shader_param/liquid_color_surface = Color( 0.94902, 0.541176, 0.827451, 1 )
  106. shader_param/liquid_surface_thickness = 0.12
  107. shader_param/wave_amp = 0.25
  108. shader_param/wave_freq = 1.0
  109. shader_param/wave_scale = 1.0
  110. [sub_resource type="RectangleShape2D" id=2]
  111. extents = Vector2( 32, 32 )
  112. [node name="Level_001" type="Node2D"]
  113. script = ExtResource( 8 )
  114. [node name="Doorway" parent="." instance=ExtResource( 6 )]
  115. position = Vector2( 828.991, 1471.66 )
  116. rotation = 1.57079
  117. color = Color( 0.419608, 0.945098, 0.309804, 1 )
  118. [node name="Doorway2" parent="." instance=ExtResource( 6 )]
  119. position = Vector2( 32.2509, 2032.97 )
  120. color = Color( 0.313726, 0.34902, 0.890196, 1 )
  121. [node name="Doorway3" parent="." instance=ExtResource( 6 )]
  122. position = Vector2( 608.046, 2065.95 )
  123. color = Color( 0.313726, 0.34902, 0.890196, 1 )
  124. [node name="Doorway4" parent="." instance=ExtResource( 6 )]
  125. position = Vector2( 2143.83, 1068.79 )
  126. color = Color( 0.152941, 0.184314, 0.976471, 1 )
  127. [node name="Neutral Push Corridor" type="Node2D" parent="."]
  128. [node name="Pusher" parent="Neutral Push Corridor" instance=ExtResource( 7 )]
  129. position = Vector2( 2744.35, 575.86 )
  130. push_angle = 90.0
  131. [node name="Pusher2" parent="Neutral Push Corridor" instance=ExtResource( 7 )]
  132. position = Vector2( 2943.21, 575.86 )
  133. push_angle = 90.0
  134. [node name="Pusher3" parent="Neutral Push Corridor" instance=ExtResource( 7 )]
  135. position = Vector2( 3142.84, 575.86 )
  136. push_angle = 90.0
  137. [node name="Pusher4" parent="Neutral Push Corridor" instance=ExtResource( 7 )]
  138. position = Vector2( 3341.7, 575.86 )
  139. push_angle = 90.0
  140. [node name="Pusher5" parent="Neutral Push Corridor" instance=ExtResource( 7 )]
  141. position = Vector2( 3541.34, 575.86 )
  142. push_angle = 122.727
  143. [node name="Pusher6" parent="Neutral Push Corridor" instance=ExtResource( 7 )]
  144. position = Vector2( 3655.86, 651.691 )
  145. push_angle = 180.0
  146. [node name="Pusher7" parent="Neutral Push Corridor" instance=ExtResource( 7 )]
  147. position = Vector2( 3667.97, 2588.76 )
  148. push_angle = -90.0
  149. [node name="Pusher8" parent="Neutral Push Corridor" instance=ExtResource( 7 )]
  150. position = Vector2( 3587.34, 2587.95 )
  151. push_angle = -90.0
  152. [node name="Pusher9" parent="Neutral Push Corridor" instance=ExtResource( 7 )]
  153. position = Vector2( 3505.89, 2587.14 )
  154. push_angle = -90.0
  155. [node name="Pusher10" parent="Neutral Push Corridor" instance=ExtResource( 7 )]
  156. position = Vector2( 3427.69, 2588.76 )
  157. push_angle = -90.0
  158. [node name="Pusher11" parent="Neutral Push Corridor" instance=ExtResource( 7 )]
  159. position = Vector2( 2094.89, 2588.76 )
  160. push_angle = -90.0
  161. [node name="Pusher12" parent="Neutral Push Corridor" instance=ExtResource( 7 )]
  162. position = Vector2( 2014.14, 2588.76 )
  163. push_angle = -90.0
  164. [node name="Pusher13" parent="Neutral Push Corridor" instance=ExtResource( 7 )]
  165. position = Vector2( 1933.39, 2588.76 )
  166. push_angle = -90.0
  167. [node name="Green Push Corridor" type="Node2D" parent="."]
  168. [node name="Pusher" parent="Green Push Corridor" instance=ExtResource( 7 )]
  169. position = Vector2( 3310.33, 1437.34 )
  170. pulse_color = Color( 0.25098, 0.976471, 0.278431, 1 )
  171. push_angle = 90.0
  172. [node name="Pusher2" parent="Green Push Corridor" instance=ExtResource( 7 )]
  173. position = Vector2( 3397.87, 1456.29 )
  174. pulse_color = Color( 0.25098, 0.976471, 0.278431, 1 )
  175. push_angle = 131.455
  176. [node name="Pusher3" parent="Green Push Corridor" instance=ExtResource( 7 )]
  177. position = Vector2( 3424.94, 1534.81 )
  178. pulse_color = Color( 0.25098, 0.976471, 0.278431, 1 )
  179. push_angle = 180.0
  180. [node name="Pusher4" parent="Green Push Corridor" instance=ExtResource( 7 )]
  181. position = Vector2( 3389.75, 1625.06 )
  182. pulse_color = Color( 0.25098, 0.976471, 0.278431, 1 )
  183. push_angle = -123.273
  184. [node name="Pusher5" parent="Green Push Corridor" instance=ExtResource( 7 )]
  185. position = Vector2( 3297.69, 1631.38 )
  186. pulse_color = Color( 0.25098, 0.976471, 0.278431, 1 )
  187. push_angle = -90.0
  188. [node name="Pusher6" parent="Green Push Corridor" instance=ExtResource( 7 )]
  189. position = Vector2( 3166.83, 1533.01 )
  190. pulse_color = Color( 0.25098, 0.976471, 0.278431, 1 )
  191. push_angle = 180.0
  192. [node name="Pusher7" parent="Green Push Corridor" instance=ExtResource( 7 )]
  193. position = Vector2( 3169.54, 1848.88 )
  194. pulse_color = Color( 0.25098, 0.976471, 0.278431, 1 )
  195. push_angle = 180.0
  196. [node name="Pusher8" parent="Green Push Corridor" instance=ExtResource( 7 )]
  197. position = Vector2( 3170.44, 2023.06 )
  198. pulse_color = Color( 0.25098, 0.976471, 0.278431, 1 )
  199. push_angle = 180.0
  200. [node name="Pusher9" parent="Green Push Corridor" instance=ExtResource( 7 )]
  201. position = Vector2( 3165.93, 2242.37 )
  202. pulse_color = Color( 0.25098, 0.976471, 0.278431, 1 )
  203. push_angle = -125.455
  204. [node name="Pusher10" parent="Green Push Corridor" instance=ExtResource( 7 )]
  205. position = Vector2( 3140.66, 2306.45 )
  206. pulse_color = Color( 0.25098, 0.976471, 0.278431, 1 )
  207. push_angle = -105.819
  208. [node name="Pusher11" parent="Green Push Corridor" instance=ExtResource( 7 )]
  209. position = Vector2( 3044.99, 2315.47 )
  210. pulse_color = Color( 0.25098, 0.976471, 0.278431, 1 )
  211. push_angle = -90.0
  212. [node name="Pusher12" parent="Green Push Corridor" instance=ExtResource( 7 )]
  213. position = Vector2( 2954.74, 2319.08 )
  214. pulse_color = Color( 0.25098, 0.976471, 0.278431, 1 )
  215. push_angle = -90.0
  216. [node name="Red Push Corridor" type="Node2D" parent="."]
  217. [node name="Pusher" parent="Red Push Corridor" instance=ExtResource( 7 )]
  218. position = Vector2( 1611.4, 1184.77 )
  219. pulse_color = Color( 0.976471, 0.184314, 0.184314, 1 )
  220. push_angle = 90.0
  221. [node name="Pusher2" parent="Red Push Corridor" instance=ExtResource( 7 )]
  222. position = Vector2( 1730.54, 1182.38 )
  223. pulse_color = Color( 0.976471, 0.184314, 0.184314, 1 )
  224. push_angle = 90.0
  225. [node name="Pusher3" parent="Red Push Corridor" instance=ExtResource( 7 )]
  226. position = Vector2( 1845.5, 1184.18 )
  227. pulse_color = Color( 0.976471, 0.184314, 0.184314, 1 )
  228. push_angle = 90.0
  229. [node name="Pusher4" parent="Red Push Corridor" instance=ExtResource( 7 )]
  230. position = Vector2( 1960.46, 1183.58 )
  231. pulse_color = Color( 0.976471, 0.184314, 0.184314, 1 )
  232. push_angle = 90.0
  233. [node name="Pusher5" parent="Red Push Corridor" instance=ExtResource( 7 )]
  234. position = Vector2( 2091.58, 1185.97 )
  235. pulse_color = Color( 0.976471, 0.184314, 0.184314, 1 )
  236. push_angle = 90.0
  237. [node name="Pusher6" parent="Red Push Corridor" instance=ExtResource( 7 )]
  238. position = Vector2( 2221.51, 1186.57 )
  239. pulse_color = Color( 0.976471, 0.184314, 0.184314, 1 )
  240. push_angle = 90.0
  241. [node name="Pusher7" parent="Red Push Corridor" instance=ExtResource( 7 )]
  242. position = Vector2( 2342.45, 1186.57 )
  243. pulse_color = Color( 0.976471, 0.184314, 0.184314, 1 )
  244. push_angle = 90.0
  245. [node name="Pusher8" parent="Red Push Corridor" instance=ExtResource( 7 )]
  246. position = Vector2( 2456.81, 1187.77 )
  247. pulse_color = Color( 0.976471, 0.184314, 0.184314, 1 )
  248. push_angle = 90.0
  249. [node name="Blue Push Corridor" type="Node2D" parent="."]
  250. [node name="Pusher" parent="Blue Push Corridor" instance=ExtResource( 7 )]
  251. position = Vector2( 926.435, 412.379 )
  252. pulse_color = Color( 0.239216, 0.478431, 0.988235, 1 )
  253. [node name="Pusher2" parent="Blue Push Corridor" instance=ExtResource( 7 )]
  254. position = Vector2( 928.15, 297.491 )
  255. pulse_color = Color( 0.239216, 0.478431, 0.988235, 1 )
  256. [node name="Pusher3" parent="Blue Push Corridor" instance=ExtResource( 7 )]
  257. position = Vector2( 929.008, 198.893 )
  258. pulse_color = Color( 0.239216, 0.478431, 0.988235, 1 )
  259. push_angle = 15.273
  260. [node name="Pusher4" parent="Blue Push Corridor" instance=ExtResource( 7 )]
  261. position = Vector2( 958.287, 109.683 )
  262. pulse_color = Color( 0.239216, 0.478431, 0.988235, 1 )
  263. push_angle = 69.818
  264. [node name="Pusher5" parent="Blue Push Corridor" instance=ExtResource( 7 )]
  265. position = Vector2( 1039.74, 113.756 )
  266. pulse_color = Color( 0.239216, 0.478431, 0.988235, 1 )
  267. push_angle = 144.0
  268. [node name="Pusher6" parent="Blue Push Corridor" instance=ExtResource( 7 )]
  269. position = Vector2( 1056.03, 256.294 )
  270. pulse_color = Color( 0.239216, 0.478431, 0.988235, 1 )
  271. push_angle = 180.0
  272. [node name="Pusher7" parent="Blue Push Corridor" instance=ExtResource( 7 )]
  273. position = Vector2( 1056.84, 360.551 )
  274. pulse_color = Color( 0.239216, 0.478431, 0.988235, 1 )
  275. push_angle = 180.0
  276. [node name="Pusher8" parent="Blue Push Corridor" instance=ExtResource( 7 )]
  277. position = Vector2( 1053.84, 499.551 )
  278. pulse_color = Color( 0.239216, 0.478431, 0.988235, 1 )
  279. push_angle = 180.0
  280. [node name="LiquidNeutral" parent="." instance=ExtResource( 4 )]
  281. material = SubResource( 6 )
  282. position = Vector2( 2261.05, 864.35 )
  283. rotation = 1.57079
  284. scale = Vector2( 1.72, 1 )
  285. liquid_body_color = Color( 0.572549, 0.572549, 0.572549, 1 )
  286. liquid_surface_color = Color( 0.960784, 0.960784, 0.960784, 1 )
  287. [node name="Liquid_Blue" parent="." instance=ExtResource( 4 )]
  288. material = SubResource( 1 )
  289. position = Vector2( 771.578, 301.052 )
  290. scale = Vector2( 2.8, 1 )
  291. liquid_body_color = Color( 0.207843, 0.164706, 0.921569, 1 )
  292. liquid_surface_color = Color( 0.360784, 0.352941, 0.972549, 1 )
  293. [node name="Liquid_Green" parent="." instance=ExtResource( 4 )]
  294. material = SubResource( 4 )
  295. position = Vector2( 741.028, 1323.06 )
  296. scale = Vector2( 1.48, 1 )
  297. liquid_body_color = Color( 0.109804, 0.533333, 0.0823529, 1 )
  298. liquid_surface_color = Color( 0.741176, 0.933333, 0.0588235, 1 )
  299. [node name="Liquid_Green2" parent="." instance=ExtResource( 4 )]
  300. material = SubResource( 4 )
  301. position = Vector2( 3383.57, 1254.2 )
  302. rotation = -1.57079
  303. scale = Vector2( 1.48, 1 )
  304. liquid_body_color = Color( 0.109804, 0.533333, 0.0823529, 1 )
  305. liquid_surface_color = Color( 0.741176, 0.933333, 0.0588235, 1 )
  306. [node name="Liquid_Red" parent="." instance=ExtResource( 4 )]
  307. material = SubResource( 5 )
  308. position = Vector2( 865.342, 1327.83 )
  309. scale = Vector2( 1.72663, 1.16549 )
  310. liquid_body_color = Color( 0.670588, 0.105882, 0.105882, 1 )
  311. liquid_surface_color = Color( 0.94902, 0.541176, 0.827451, 1 )
  312. [node name="BladeHall" type="Node2D" parent="."]
  313. [node name="BladeSaw_CW" parent="BladeHall" instance=ExtResource( 1 )]
  314. position = Vector2( 457.109, 743.014 )
  315. [node name="BladeSaw_CW2" parent="BladeHall" instance=ExtResource( 1 )]
  316. position = Vector2( 276.019, 621.439 )
  317. [node name="BladeSaw_CW3" parent="BladeHall" instance=ExtResource( 1 )]
  318. position = Vector2( 151.474, 717.104 )
  319. [node name="BladeSaw_CW4" parent="BladeHall" instance=ExtResource( 1 )]
  320. position = Vector2( 322.949, 873.237 )
  321. [node name="BladeSaw_CW5" parent="BladeHall" instance=ExtResource( 1 )]
  322. position = Vector2( 13.4319, 824.906 )
  323. [node name="BladeSaw_CCW" parent="." instance=ExtResource( 1 )]
  324. position = Vector2( 828.327, 183.135 )
  325. degrees_per_second = -270.0
  326. [node name="BladeSaw_CCW2" parent="." instance=ExtResource( 1 )]
  327. position = Vector2( 658.452, 1392.94 )
  328. degrees_per_second = -270.0
  329. [node name="BladeSaw_CCW4" parent="." instance=ExtResource( 1 )]
  330. position = Vector2( 439.943, 1787.85 )
  331. degrees_per_second = -270.0
  332. [node name="BladeSaw_CCW5" parent="." instance=ExtResource( 1 )]
  333. position = Vector2( 650.538, 1760.4 )
  334. degrees_per_second = -270.0
  335. [node name="BladeSaw_CW5" parent="." instance=ExtResource( 1 )]
  336. position = Vector2( 549.49, 1816.12 )
  337. [node name="BladeSaw_CW6" parent="." instance=ExtResource( 1 )]
  338. position = Vector2( 1481.09, 2080.94 )
  339. [node name="BladeSaw_CCW7" parent="." instance=ExtResource( 1 )]
  340. position = Vector2( 1259.74, 2132.95 )
  341. degrees_per_second = -270.0
  342. [node name="BladeSaw_CCW8" parent="." instance=ExtResource( 1 )]
  343. position = Vector2( 1695.78, 3359.41 )
  344. degrees_per_second = -270.0
  345. [node name="BladeSaw_CCW9" parent="." instance=ExtResource( 1 )]
  346. position = Vector2( 1887.68, 3487.66 )
  347. degrees_per_second = -270.0
  348. [node name="BladeSaw_CCW10" parent="." instance=ExtResource( 1 )]
  349. position = Vector2( 1888.12, 3744.14 )
  350. degrees_per_second = -270.0
  351. [node name="BladeSaw_CCW3" parent="." instance=ExtResource( 1 )]
  352. position = Vector2( 1310.52, 1183.79 )
  353. degrees_per_second = -270.0
  354. [node name="BladeSaw_CW4" parent="." instance=ExtResource( 1 )]
  355. position = Vector2( 1056.87, 1184.12 )
  356. [node name="HUGE_BladeSaw_CCW" parent="." instance=ExtResource( 1 )]
  357. position = Vector2( 2175.77, 1977.1 )
  358. scale = Vector2( 4, 4 )
  359. degrees_per_second = -270.0
  360. [node name="Slope" type="StaticBody2D" parent="."]
  361. modulate = Color( 0.627451, 0.627451, 0.627451, 1 )
  362. position = Vector2( 195.014, 1242.15 )
  363. rotation = 0.636659
  364. scale = Vector2( 6, 0.438 )
  365. __meta__ = {
  366. "_edit_group_": true
  367. }
  368. [node name="Sprite" type="Sprite" parent="Slope"]
  369. texture = ExtResource( 2 )
  370. [node name="CollisionShape2D" type="CollisionShape2D" parent="Slope"]
  371. visible = false
  372. shape = SubResource( 2 )
  373. [node name="Slope7" type="StaticBody2D" parent="."]
  374. modulate = Color( 0.627451, 0.627451, 0.627451, 1 )
  375. position = Vector2( 2753.92, 1400.03 )
  376. rotation = 0.970461
  377. scale = Vector2( 6, 0.438 )
  378. __meta__ = {
  379. "_edit_group_": true
  380. }
  381. [node name="Sprite" type="Sprite" parent="Slope7"]
  382. texture = ExtResource( 2 )
  383. [node name="CollisionShape2D" type="CollisionShape2D" parent="Slope7"]
  384. visible = false
  385. shape = SubResource( 2 )
  386. [node name="Slope8" type="StaticBody2D" parent="."]
  387. modulate = Color( 0.627451, 0.627451, 0.627451, 1 )
  388. position = Vector2( 2649.32, 1478.91 )
  389. rotation = 0.970461
  390. scale = Vector2( 6, 0.438 )
  391. __meta__ = {
  392. "_edit_group_": true
  393. }
  394. [node name="Sprite" type="Sprite" parent="Slope8"]
  395. texture = ExtResource( 2 )
  396. [node name="CollisionShape2D" type="CollisionShape2D" parent="Slope8"]
  397. visible = false
  398. shape = SubResource( 2 )
  399. [node name="Slope2" type="StaticBody2D" parent="."]
  400. modulate = Color( 0.627451, 0.627451, 0.627451, 1 )
  401. position = Vector2( 326.288, 870.892 )
  402. rotation = 2.42573
  403. scale = Vector2( 6, 0.438 )
  404. __meta__ = {
  405. "_edit_group_": true
  406. }
  407. [node name="Sprite" type="Sprite" parent="Slope2"]
  408. texture = ExtResource( 2 )
  409. [node name="CollisionShape2D" type="CollisionShape2D" parent="Slope2"]
  410. visible = false
  411. shape = SubResource( 2 )
  412. [node name="Slope4" type="StaticBody2D" parent="."]
  413. modulate = Color( 0.627451, 0.627451, 0.627451, 1 )
  414. position = Vector2( 473.185, 1224.23 )
  415. rotation = 2.19193
  416. scale = Vector2( 6, 0.438 )
  417. __meta__ = {
  418. "_edit_group_": true
  419. }
  420. [node name="Sprite" type="Sprite" parent="Slope4"]
  421. texture = ExtResource( 2 )
  422. [node name="CollisionShape2D" type="CollisionShape2D" parent="Slope4"]
  423. visible = false
  424. shape = SubResource( 2 )
  425. [node name="Slope13" type="StaticBody2D" parent="."]
  426. modulate = Color( 0.627451, 0.627451, 0.627451, 1 )
  427. position = Vector2( 959.086, 1856.34 )
  428. rotation = 2.36506
  429. scale = Vector2( 7, 0.438 )
  430. __meta__ = {
  431. "_edit_group_": true
  432. }
  433. [node name="Sprite" type="Sprite" parent="Slope13"]
  434. texture = ExtResource( 2 )
  435. [node name="CollisionShape2D" type="CollisionShape2D" parent="Slope13"]
  436. visible = false
  437. shape = SubResource( 2 )
  438. [node name="Slope14" type="StaticBody2D" parent="."]
  439. modulate = Color( 0.627451, 0.627451, 0.627451, 1 )
  440. position = Vector2( 1023.09, 1919.34 )
  441. rotation = 2.36506
  442. scale = Vector2( 7, 0.438 )
  443. __meta__ = {
  444. "_edit_group_": true
  445. }
  446. [node name="Sprite" type="Sprite" parent="Slope14"]
  447. texture = ExtResource( 2 )
  448. [node name="CollisionShape2D" type="CollisionShape2D" parent="Slope14"]
  449. visible = false
  450. shape = SubResource( 2 )
  451. [node name="Slope15" type="StaticBody2D" parent="."]
  452. modulate = Color( 0.627451, 0.627451, 0.627451, 1 )
  453. position = Vector2( 1247.3, 1888.81 )
  454. rotation = 2.36506
  455. scale = Vector2( 6, 0.438 )
  456. __meta__ = {
  457. "_edit_group_": true
  458. }
  459. [node name="Sprite" type="Sprite" parent="Slope15"]
  460. texture = ExtResource( 2 )
  461. [node name="CollisionShape2D" type="CollisionShape2D" parent="Slope15"]
  462. visible = false
  463. shape = SubResource( 2 )
  464. [node name="Slope16" type="StaticBody2D" parent="."]
  465. modulate = Color( 0.627451, 0.627451, 0.627451, 1 )
  466. position = Vector2( 1355.74, 1906.07 )
  467. rotation = 2.36506
  468. scale = Vector2( 10, 0.438 )
  469. __meta__ = {
  470. "_edit_group_": true
  471. }
  472. [node name="Sprite" type="Sprite" parent="Slope16"]
  473. texture = ExtResource( 2 )
  474. [node name="CollisionShape2D" type="CollisionShape2D" parent="Slope16"]
  475. visible = false
  476. shape = SubResource( 2 )
  477. [node name="Slope17" type="StaticBody2D" parent="."]
  478. modulate = Color( 0.627451, 0.627451, 0.627451, 1 )
  479. position = Vector2( 1352.11, 2616.45 )
  480. rotation = 2.36506
  481. scale = Vector2( 8, 0.438 )
  482. __meta__ = {
  483. "_edit_group_": true
  484. }
  485. [node name="Sprite" type="Sprite" parent="Slope17"]
  486. texture = ExtResource( 2 )
  487. [node name="CollisionShape2D" type="CollisionShape2D" parent="Slope17"]
  488. visible = false
  489. shape = SubResource( 2 )
  490. [node name="Slope19" type="StaticBody2D" parent="."]
  491. modulate = Color( 0.627451, 0.627451, 0.627451, 1 )
  492. position = Vector2( 789.539, 2837.99 )
  493. rotation = 3.92065
  494. scale = Vector2( 8, 0.438 )
  495. __meta__ = {
  496. "_edit_group_": true
  497. }
  498. [node name="Sprite" type="Sprite" parent="Slope19"]
  499. texture = ExtResource( 2 )
  500. [node name="CollisionShape2D" type="CollisionShape2D" parent="Slope19"]
  501. visible = false
  502. shape = SubResource( 2 )
  503. [node name="Slope20" type="StaticBody2D" parent="."]
  504. modulate = Color( 0.627451, 0.627451, 0.627451, 1 )
  505. position = Vector2( 926.339, 2653.69 )
  506. rotation = 3.92065
  507. scale = Vector2( 6, 0.438 )
  508. __meta__ = {
  509. "_edit_group_": true
  510. }
  511. [node name="Sprite" type="Sprite" parent="Slope20"]
  512. texture = ExtResource( 2 )
  513. [node name="CollisionShape2D" type="CollisionShape2D" parent="Slope20"]
  514. visible = false
  515. shape = SubResource( 2 )
  516. [node name="Slope21" type="StaticBody2D" parent="."]
  517. modulate = Color( 0.627451, 0.627451, 0.627451, 1 )
  518. position = Vector2( 1182.85, 4574.34 )
  519. rotation = 3.92065
  520. scale = Vector2( 14, 0.438 )
  521. __meta__ = {
  522. "_edit_group_": true
  523. }
  524. [node name="Sprite" type="Sprite" parent="Slope21"]
  525. texture = ExtResource( 2 )
  526. [node name="CollisionShape2D" type="CollisionShape2D" parent="Slope21"]
  527. visible = false
  528. shape = SubResource( 2 )
  529. [node name="Slope22" type="StaticBody2D" parent="."]
  530. modulate = Color( 0.627451, 0.627451, 0.627451, 1 )
  531. position = Vector2( 1477.08, 4615.04 )
  532. rotation = 3.92065
  533. scale = Vector2( 4, 0.438 )
  534. __meta__ = {
  535. "_edit_group_": true
  536. }
  537. [node name="Sprite" type="Sprite" parent="Slope22"]
  538. texture = ExtResource( 2 )
  539. [node name="CollisionShape2D" type="CollisionShape2D" parent="Slope22"]
  540. visible = false
  541. shape = SubResource( 2 )
  542. [node name="Slope23" type="StaticBody2D" parent="."]
  543. modulate = Color( 0.627451, 0.627451, 0.627451, 1 )
  544. position = Vector2( 1631.41, 4641.21 )
  545. rotation = 5.48769
  546. scale = Vector2( 3, 0.438 )
  547. __meta__ = {
  548. "_edit_group_": true
  549. }
  550. [node name="Sprite" type="Sprite" parent="Slope23"]
  551. texture = ExtResource( 2 )
  552. [node name="CollisionShape2D" type="CollisionShape2D" parent="Slope23"]
  553. visible = false
  554. shape = SubResource( 2 )
  555. [node name="Slope24" type="StaticBody2D" parent="."]
  556. modulate = Color( 0.627451, 0.627451, 0.627451, 1 )
  557. position = Vector2( 1793.53, 4733.35 )
  558. rotation = 5.48769
  559. scale = Vector2( 7, 0.438 )
  560. __meta__ = {
  561. "_edit_group_": true
  562. }
  563. [node name="Sprite" type="Sprite" parent="Slope24"]
  564. texture = ExtResource( 2 )
  565. [node name="CollisionShape2D" type="CollisionShape2D" parent="Slope24"]
  566. visible = false
  567. shape = SubResource( 2 )
  568. [node name="Slope18" type="StaticBody2D" parent="."]
  569. modulate = Color( 0.627451, 0.627451, 0.627451, 1 )
  570. position = Vector2( 1460.41, 2827.35 )
  571. rotation = 2.36506
  572. scale = Vector2( 8, 0.438 )
  573. __meta__ = {
  574. "_edit_group_": true
  575. }
  576. [node name="Sprite" type="Sprite" parent="Slope18"]
  577. texture = ExtResource( 2 )
  578. [node name="CollisionShape2D" type="CollisionShape2D" parent="Slope18"]
  579. visible = false
  580. shape = SubResource( 2 )
  581. [node name="Slope5" type="StaticBody2D" parent="."]
  582. modulate = Color( 0.627451, 0.627451, 0.627451, 1 )
  583. position = Vector2( 2677.15, 1236.38 )
  584. rotation = 3.14159
  585. scale = Vector2( 1.36694, 0.438 )
  586. __meta__ = {
  587. "_edit_group_": true
  588. }
  589. [node name="Sprite" type="Sprite" parent="Slope5"]
  590. texture = ExtResource( 2 )
  591. [node name="CollisionShape2D" type="CollisionShape2D" parent="Slope5"]
  592. visible = false
  593. shape = SubResource( 2 )
  594. [node name="Slope10" type="StaticBody2D" parent="."]
  595. modulate = Color( 0.627451, 0.627451, 0.627451, 1 )
  596. position = Vector2( 2800.11, 1215.12 )
  597. rotation = 2.47518
  598. scale = Vector2( 1.36694, 0.438 )
  599. __meta__ = {
  600. "_edit_group_": true
  601. }
  602. [node name="Sprite" type="Sprite" parent="Slope10"]
  603. texture = ExtResource( 2 )
  604. [node name="CollisionShape2D" type="CollisionShape2D" parent="Slope10"]
  605. visible = false
  606. shape = SubResource( 2 )
  607. [node name="Slope11" type="StaticBody2D" parent="."]
  608. modulate = Color( 0.627451, 0.627451, 0.627451, 1 )
  609. position = Vector2( 2621.54, 897.415 )
  610. rotation = 2.35719
  611. scale = Vector2( 1.36694, 0.438 )
  612. __meta__ = {
  613. "_edit_group_": true
  614. }
  615. [node name="Sprite" type="Sprite" parent="Slope11"]
  616. texture = ExtResource( 2 )
  617. [node name="CollisionShape2D" type="CollisionShape2D" parent="Slope11"]
  618. visible = false
  619. shape = SubResource( 2 )
  620. [node name="Slope12" type="StaticBody2D" parent="."]
  621. modulate = Color( 0.627451, 0.627451, 0.627451, 1 )
  622. position = Vector2( 2564.53, 956.874 )
  623. rotation = 2.35719
  624. scale = Vector2( 1.36694, 0.438 )
  625. __meta__ = {
  626. "_edit_group_": true
  627. }
  628. [node name="Sprite" type="Sprite" parent="Slope12"]
  629. texture = ExtResource( 2 )
  630. [node name="CollisionShape2D" type="CollisionShape2D" parent="Slope12"]
  631. visible = false
  632. shape = SubResource( 2 )
  633. [node name="Slope Alley" type="Node2D" parent="."]
  634. [node name="Slope11" type="StaticBody2D" parent="Slope Alley"]
  635. modulate = Color( 0.627451, 0.627451, 0.627451, 1 )
  636. position = Vector2( 2873.15, 1158.24 )
  637. rotation = 2.39555
  638. scale = Vector2( 1.36694, 0.438 )
  639. __meta__ = {
  640. "_edit_group_": true
  641. }
  642. [node name="Sprite" type="Sprite" parent="Slope Alley/Slope11"]
  643. texture = ExtResource( 2 )
  644. [node name="CollisionShape2D" type="CollisionShape2D" parent="Slope Alley/Slope11"]
  645. visible = false
  646. shape = SubResource( 2 )
  647. [node name="Slope12" type="StaticBody2D" parent="Slope Alley"]
  648. modulate = Color( 0.627451, 0.627451, 0.627451, 1 )
  649. position = Vector2( 2939.01, 1093.58 )
  650. rotation = 2.39555
  651. scale = Vector2( 1.36694, 0.438 )
  652. __meta__ = {
  653. "_edit_group_": true
  654. }
  655. [node name="Sprite" type="Sprite" parent="Slope Alley/Slope12"]
  656. texture = ExtResource( 2 )
  657. [node name="CollisionShape2D" type="CollisionShape2D" parent="Slope Alley/Slope12"]
  658. visible = false
  659. shape = SubResource( 2 )
  660. [node name="Slope13" type="StaticBody2D" parent="Slope Alley"]
  661. modulate = Color( 0.627451, 0.627451, 0.627451, 1 )
  662. position = Vector2( 2998.29, 1032.51 )
  663. rotation = 2.39555
  664. scale = Vector2( 1.36694, 0.438 )
  665. __meta__ = {
  666. "_edit_group_": true
  667. }
  668. [node name="Sprite" type="Sprite" parent="Slope Alley/Slope13"]
  669. texture = ExtResource( 2 )
  670. [node name="CollisionShape2D" type="CollisionShape2D" parent="Slope Alley/Slope13"]
  671. visible = false
  672. shape = SubResource( 2 )
  673. [node name="Slope14" type="StaticBody2D" parent="Slope Alley"]
  674. modulate = Color( 0.627451, 0.627451, 0.627451, 1 )
  675. position = Vector2( 2751.01, 1024.73 )
  676. rotation = 2.39555
  677. scale = Vector2( 1.36694, 0.438 )
  678. __meta__ = {
  679. "_edit_group_": true
  680. }
  681. [node name="Sprite" type="Sprite" parent="Slope Alley/Slope14"]
  682. texture = ExtResource( 2 )
  683. [node name="CollisionShape2D" type="CollisionShape2D" parent="Slope Alley/Slope14"]
  684. visible = false
  685. shape = SubResource( 2 )
  686. [node name="Slope15" type="StaticBody2D" parent="Slope Alley"]
  687. modulate = Color( 0.627451, 0.627451, 0.627451, 1 )
  688. position = Vector2( 2818.67, 957.668 )
  689. rotation = 2.39555
  690. scale = Vector2( 1.36694, 0.438 )
  691. __meta__ = {
  692. "_edit_group_": true
  693. }
  694. [node name="Sprite" type="Sprite" parent="Slope Alley/Slope15"]
  695. texture = ExtResource( 2 )
  696. [node name="CollisionShape2D" type="CollisionShape2D" parent="Slope Alley/Slope15"]
  697. visible = false
  698. shape = SubResource( 2 )
  699. [node name="Slope16" type="StaticBody2D" parent="Slope Alley"]
  700. modulate = Color( 0.627451, 0.627451, 0.627451, 1 )
  701. position = Vector2( 2880.67, 895.669 )
  702. rotation = 2.39555
  703. scale = Vector2( 1.36694, 0.438 )
  704. __meta__ = {
  705. "_edit_group_": true
  706. }
  707. [node name="Sprite" type="Sprite" parent="Slope Alley/Slope16"]
  708. texture = ExtResource( 2 )
  709. [node name="CollisionShape2D" type="CollisionShape2D" parent="Slope Alley/Slope16"]
  710. visible = false
  711. shape = SubResource( 2 )
  712. [node name="Slope6" type="StaticBody2D" parent="."]
  713. modulate = Color( 0.627451, 0.627451, 0.627451, 1 )
  714. position = Vector2( 2895.13, 1555.49 )
  715. rotation = -3.09835
  716. scale = Vector2( 1.36694, 0.438 )
  717. __meta__ = {
  718. "_edit_group_": true
  719. }
  720. [node name="Sprite" type="Sprite" parent="Slope6"]
  721. texture = ExtResource( 2 )
  722. [node name="CollisionShape2D" type="CollisionShape2D" parent="Slope6"]
  723. visible = false
  724. shape = SubResource( 2 )
  725. [node name="Slope9" type="StaticBody2D" parent="."]
  726. modulate = Color( 0.627451, 0.627451, 0.627451, 1 )
  727. position = Vector2( 2755.22, 1672.33 )
  728. rotation = 1.56853
  729. scale = Vector2( 1.36694, 0.438 )
  730. __meta__ = {
  731. "_edit_group_": true
  732. }
  733. [node name="Sprite" type="Sprite" parent="Slope9"]
  734. texture = ExtResource( 2 )
  735. [node name="CollisionShape2D" type="CollisionShape2D" parent="Slope9"]
  736. visible = false
  737. shape = SubResource( 2 )
  738. [node name="Slats" type="Node2D" parent="."]
  739. [node name="Slat_Top" type="StaticBody2D" parent="Slats"]
  740. modulate = Color( 0.627451, 0.627451, 0.627451, 1 )
  741. position = Vector2( 2594.57, 1044.09 )
  742. rotation = 3.14159
  743. scale = Vector2( 2.24694, 0.438 )
  744. __meta__ = {
  745. "_edit_group_": true
  746. }
  747. [node name="Sprite" type="Sprite" parent="Slats/Slat_Top"]
  748. texture = ExtResource( 2 )
  749. [node name="CollisionShape2D" type="CollisionShape2D" parent="Slats/Slat_Top"]
  750. visible = false
  751. shape = SubResource( 2 )
  752. [node name="Slat_Bottom" type="StaticBody2D" parent="Slats"]
  753. modulate = Color( 0.627451, 0.627451, 0.627451, 1 )
  754. position = Vector2( 2601.53, 1130.76 )
  755. rotation = 3.14159
  756. scale = Vector2( 2.24694, 0.438 )
  757. __meta__ = {
  758. "_edit_group_": true
  759. }
  760. [node name="Sprite" type="Sprite" parent="Slats/Slat_Bottom"]
  761. texture = ExtResource( 2 )
  762. [node name="CollisionShape2D" type="CollisionShape2D" parent="Slats/Slat_Bottom"]
  763. visible = false
  764. shape = SubResource( 2 )
  765. [node name="Slats2" type="Node2D" parent="."]
  766. position = Vector2( -326, 0 )
  767. [node name="Slat_Top" type="StaticBody2D" parent="Slats2"]
  768. modulate = Color( 0.627451, 0.627451, 0.627451, 1 )
  769. position = Vector2( 2600.88, 1044.09 )
  770. rotation = 3.14159
  771. scale = Vector2( 2.24694, 0.438 )
  772. __meta__ = {
  773. "_edit_group_": true
  774. }
  775. [node name="Sprite" type="Sprite" parent="Slats2/Slat_Top"]
  776. texture = ExtResource( 2 )
  777. [node name="CollisionShape2D" type="CollisionShape2D" parent="Slats2/Slat_Top"]
  778. visible = false
  779. shape = SubResource( 2 )
  780. [node name="Slat_Bottom" type="StaticBody2D" parent="Slats2"]
  781. modulate = Color( 0.627451, 0.627451, 0.627451, 1 )
  782. position = Vector2( 2601.53, 1130.76 )
  783. rotation = 3.14159
  784. scale = Vector2( 2.24694, 0.438 )
  785. __meta__ = {
  786. "_edit_group_": true
  787. }
  788. [node name="Sprite" type="Sprite" parent="Slats2/Slat_Bottom"]
  789. texture = ExtResource( 2 )
  790. [node name="CollisionShape2D" type="CollisionShape2D" parent="Slats2/Slat_Bottom"]
  791. visible = false
  792. shape = SubResource( 2 )
  793. [node name="Slats3" type="Node2D" parent="."]
  794. position = Vector2( -641.999, 1 )
  795. [node name="Slat_Top" type="StaticBody2D" parent="Slats3"]
  796. modulate = Color( 0.627451, 0.627451, 0.627451, 1 )
  797. position = Vector2( 2594.57, 1044.09 )
  798. rotation = 3.14159
  799. scale = Vector2( 2.24694, 0.438 )
  800. __meta__ = {
  801. "_edit_group_": true
  802. }
  803. [node name="Sprite" type="Sprite" parent="Slats3/Slat_Top"]
  804. texture = ExtResource( 2 )
  805. [node name="CollisionShape2D" type="CollisionShape2D" parent="Slats3/Slat_Top"]
  806. visible = false
  807. shape = SubResource( 2 )
  808. [node name="Slat_Bottom" type="StaticBody2D" parent="Slats3"]
  809. modulate = Color( 0.627451, 0.627451, 0.627451, 1 )
  810. position = Vector2( 2601.53, 1130.76 )
  811. rotation = 3.14159
  812. scale = Vector2( 2.24694, 0.438 )
  813. __meta__ = {
  814. "_edit_group_": true
  815. }
  816. [node name="Sprite" type="Sprite" parent="Slats3/Slat_Bottom"]
  817. texture = ExtResource( 2 )
  818. [node name="CollisionShape2D" type="CollisionShape2D" parent="Slats3/Slat_Bottom"]
  819. visible = false
  820. shape = SubResource( 2 )
  821. [node name="Slats4" type="Node2D" parent="."]
  822. position = Vector2( -906.999, 0 )
  823. [node name="Slat_Top" type="StaticBody2D" parent="Slats4"]
  824. modulate = Color( 0.627451, 0.627451, 0.627451, 1 )
  825. position = Vector2( 2594.57, 1044.09 )
  826. rotation = 3.14159
  827. scale = Vector2( 2.24694, 0.438 )
  828. __meta__ = {
  829. "_edit_group_": true
  830. }
  831. [node name="Sprite" type="Sprite" parent="Slats4/Slat_Top"]
  832. texture = ExtResource( 2 )
  833. [node name="CollisionShape2D" type="CollisionShape2D" parent="Slats4/Slat_Top"]
  834. visible = false
  835. shape = SubResource( 2 )
  836. [node name="Slat_Bottom" type="StaticBody2D" parent="Slats4"]
  837. modulate = Color( 0.627451, 0.627451, 0.627451, 1 )
  838. position = Vector2( 2601.53, 1130.76 )
  839. rotation = 3.14159
  840. scale = Vector2( 2.24694, 0.438 )
  841. __meta__ = {
  842. "_edit_group_": true
  843. }
  844. [node name="Sprite" type="Sprite" parent="Slats4/Slat_Bottom"]
  845. texture = ExtResource( 2 )
  846. [node name="CollisionShape2D" type="CollisionShape2D" parent="Slats4/Slat_Bottom"]
  847. visible = false
  848. shape = SubResource( 2 )
  849. [node name="Block" type="StaticBody2D" parent="."]
  850. modulate = Color( 0.627451, 0.627451, 0.627451, 1 )
  851. position = Vector2( 829.176, 1560.96 )
  852. scale = Vector2( 0.75, 0.75 )
  853. __meta__ = {
  854. "_edit_group_": true
  855. }
  856. [node name="Sprite" type="Sprite" parent="Block"]
  857. texture = ExtResource( 2 )
  858. [node name="CollisionShape2D" type="CollisionShape2D" parent="Block"]
  859. visible = false
  860. shape = SubResource( 2 )
  861. [node name="Block2" type="StaticBody2D" parent="."]
  862. modulate = Color( 0.627451, 0.627451, 0.627451, 1 )
  863. position = Vector2( 828.636, 1383.18 )
  864. scale = Vector2( 0.75, 0.75 )
  865. __meta__ = {
  866. "_edit_group_": true
  867. }
  868. [node name="Sprite" type="Sprite" parent="Block2"]
  869. texture = ExtResource( 2 )
  870. [node name="CollisionShape2D" type="CollisionShape2D" parent="Block2"]
  871. visible = false
  872. shape = SubResource( 2 )
  873. [node name="Slope3" type="StaticBody2D" parent="."]
  874. modulate = Color( 0.627451, 0.627451, 0.627451, 1 )
  875. position = Vector2( 129.446, 734.05 )
  876. rotation = 2.48012
  877. scale = Vector2( 6, 0.438 )
  878. __meta__ = {
  879. "_edit_group_": true
  880. }
  881. [node name="Sprite" type="Sprite" parent="Slope3"]
  882. texture = ExtResource( 2 )
  883. [node name="CollisionShape2D" type="CollisionShape2D" parent="Slope3"]
  884. visible = false
  885. shape = SubResource( 2 )
  886. [node name="TileMap" type="TileMap" parent="."]
  887. tile_set = ExtResource( 5 )
  888. format = 1
  889. tile_data = PoolIntArray( -262147, 1, 196611, -262146, 1, 196612, -262145, 1, 327684, -327680, 1, 327684, -327679, 1, 327684, -327678, 1, 196612, -327677, 1, 196612, -327676, 1, 327684, -327675, 1, 327684, -327674, 1, 327684, -327673, 1, 327684, -327672, 1, 327684, -327671, 1, 327684, -327670, 1, 196612, -327669, 1, 196612, -327668, 1, 196612, -327667, 1, 327684, -327666, 1, 327684, -327665, 1, 196612, -327664, 1, 327684, -327663, 1, 196612, -327662, 1, 196612, -327661, 1, 327684, -327660, 1, 196612, -327659, 1, 196612, -327658, 1, 196613, -196611, 1, 262149, -262122, 1, 262147, -131075, 1, 262149, -196586, 1, 262147, -65539, 1, 262147, -131072, 1, 0, -131071, 1, 131076, -131070, 1, 1, -131069, 1, 1, -131068, 1, 1, -131067, 1, 1, -131066, 1, 131076, -131065, 1, 131076, -131064, 1, 1, -131063, 1, 1, -131062, 1, 131076, -131061, 1, 1, -131060, 1, 1, -131059, 1, 131076, -131058, 1, 1, -131057, 1, 131076, -131056, 1, 1, -131055, 1, 131076, -131054, 1, 131076, -131053, 1, 2, -131050, 1, 262147, -3, 1, 262149, -65536, 1, 65536, -65535, 1, 65537, -65534, 1, 65537, -65533, 1, 65537, -65532, 1, 65537, -65531, 1, 65537, -65530, 1, 65537, -65529, 1, 65537, -65528, 1, 65537, -65527, 1, 65537, -65526, 1, 65537, -65525, 1, 65537, -65524, 1, 65537, -65523, 1, 65537, -65522, 1, 65537, -65521, 1, 65537, -65520, 1, 65537, -65519, 1, 65537, -65518, 1, 65537, -65517, 1, 65539, -65514, 1, 262147, 65533, 1, 262149, 0, 1, 65536, 1, 1, 65537, 2, 1, 65537, 3, 1, 65537, 4, 1, 65537, 5, 1, 65537, 6, 1, 65537, 7, 1, 65537, 8, 1, 65537, 9, 1, 65537, 10, 1, 65537, 11, 1, 65537, 12, 1, 65537, 13, 1, 3, 14, 1, 131073, 15, 1, 4, 16, 1, 4, 17, 1, 5, 18, 1, 65537, 19, 1, 65538, 22, 1, 262149, 131069, 1, 262147, 65536, 1, 65536, 65537, 1, 65537, 65538, 1, 65537, 65539, 1, 65537, 65540, 1, 65537, 65541, 1, 65537, 65542, 1, 65537, 65543, 1, 65537, 65544, 1, 65537, 65545, 1, 65537, 65546, 1, 65537, 65547, 1, 65537, 65548, 1, 65537, 65549, 1, 65539, 65553, 1, 65536, 65554, 1, 65537, 65555, 1, 65538, 65558, 1, 262147, 196605, 1, 262147, 131072, 1, 65537, 131073, 1, 4, 131074, 1, 131073, 131075, 1, 4, 131076, 1, 131073, 131077, 1, 131073, 131078, 1, 131073, 131079, 1, 131073, 131080, 1, 4, 131081, 1, 131073, 131082, 1, 131073, 131083, 1, 131073, 131084, 1, 131073, 131085, 1, 65537, 131087, 1, 262146, 131089, 1, 65536, 131090, 1, 65537, 131091, 1, 65539, 131094, 1, 262147, 262141, 1, 262149, 196608, 1, 262149, 196621, 1, 262147, 196623, 1, 262147, 196625, 1, 65541, 196626, 1, 65537, 196627, 1, 65539, 196630, 1, 262149, 327677, 1, 262149, 262144, 1, 262149, 262154, 1, 262146, 262157, 1, 262149, 262159, 1, 262147, 262161, 1, 65541, 262162, 1, 65537, 262163, 1, 65539, 262166, 1, 262147, 393213, 1, 262149, 327680, 1, 262149, 327690, 1, 327683, 327691, 1, 196612, 327692, 1, 196612, 327693, 1, 327685, 327695, 1, 262147, 327697, 1, 65541, 327698, 1, 65537, 327699, 1, 65539, 327702, 1, 327683, 327703, 1, 327684, 327704, 1, 327684, 327705, 1, 196612, 327706, 1, 327684, 327707, 1, 196613, 458749, 1, 262147, 393216, 1, 262149, 393231, 1, 262147, 393233, 1, 65541, 393234, 1, 65537, 393235, 1, 65539, 393243, 1, 262149, 524285, 1, 262147, 458752, 1, 65537, 458753, 1, 131076, 458754, 1, 1, 458755, 1, 131076, 458756, 1, 1, 458757, 1, 2, 458759, 1, 0, 458760, 1, 131076, 458761, 1, 1, 458762, 1, 65537, 458763, 1, 196612, 458764, 1, 327684, 458765, 1, 327684, 458766, 1, 196612, 458767, 1, 327682, 458769, 1, 65541, 458770, 1, 65537, 458771, 1, 65538, 458779, 1, 327683, 458780, 1, 327684, 458781, 1, 196612, 458782, 1, 327684, 458783, 1, 196612, 458784, 1, 327684, 458785, 1, 196612, 458786, 1, 196612, 458787, 1, 196612, 458788, 1, 196612, 458789, 1, 196612, 458790, 1, 196612, 458791, 1, 327684, 458792, 1, 327684, 458793, 1, 196612, 458794, 1, 196612, 458795, 1, 327684, 458796, 1, 196612, 458797, 1, 196612, 458798, 1, 196612, 458799, 1, 327684, 458800, 1, 196612, 458801, 1, 196612, 458802, 1, 196612, 458803, 1, 327684, 458804, 1, 196612, 458805, 1, 196612, 458806, 1, 327684, 458807, 1, 196612, 458808, 1, 196612, 458809, 1, 327684, 458810, 1, 196613, 589821, 1, 262149, 524288, 1, 65541, 524289, 1, 65537, 524290, 1, 3, 524291, 1, 131073, 524292, 1, 5, 524293, 1, 65538, 524295, 1, 65536, 524296, 1, 65537, 524297, 1, 65537, 524298, 1, 65539, 524303, 1, 458753, 524305, 1, 131072, 524306, 1, 4, 524307, 1, 65537, 524308, 1, 65537, 524309, 1, 1, 524310, 1, 131076, 524311, 1, 131076, 524312, 1, 2, 524346, 1, 262149, 655356, 1, 196611, 655357, 1, 327685, 589824, 1, 65536, 589825, 1, 65537, 589826, 1, 65539, 589828, 1, 131072, 589829, 1, 131074, 589831, 1, 65536, 589832, 1, 65537, 589833, 1, 65537, 589834, 1, 65539, 589844, 1, 131072, 589845, 1, 5, 589846, 1, 65537, 589847, 1, 65537, 589848, 1, 65539, 589882, 1, 262147, 720892, 1, 262147, 655360, 1, 65541, 655361, 1, 3, 655362, 1, 131074, 655367, 1, 65536, 655368, 1, 65537, 655369, 1, 65537, 655370, 1, 65538, 655381, 1, 131072, 655382, 1, 5, 655383, 1, 65537, 655384, 1, 65539, 655394, 1, 327680, 655395, 1, 327684, 655396, 1, 196612, 655397, 1, 327684, 655398, 1, 196613, 655402, 1, 0, 655403, 1, 131076, 655404, 1, 1, 655405, 1, 1, 655406, 1, 131076, 655407, 1, 1, 655408, 1, 131076, 655409, 1, 131076, 655410, 1, 1, 655411, 1, 1, 655412, 1, 1, 655413, 1, 131076, 655414, 1, 131076, 655415, 1, 2, 655418, 1, 262147, 786428, 1, 262147, 720896, 1, 65537, 720897, 1, 131074, 720903, 1, 131072, 720904, 1, 4, 720905, 1, 4, 720906, 1, 65537, 720907, 1, 393219, 720918, 1, 131072, 720919, 1, 5, 720920, 1, 65539, 720934, 1, 262149, 720938, 1, 65541, 720939, 1, 65537, 720940, 1, 65537, 720941, 1, 65537, 720942, 1, 65537, 720943, 1, 65537, 720944, 1, 65537, 720945, 1, 3, 720946, 1, 131073, 720947, 1, 5, 720948, 1, 65537, 720949, 1, 65537, 720950, 1, 65537, 720951, 1, 65539, 720954, 1, 262147, 851962, 1, 196611, 851963, 1, 196612, 851964, 1, 327685, 851967, 1, 196611, 786432, 1, 327685, 786447, 1, 262146, 786449, 1, 262146, 786455, 1, 131072, 786456, 1, 65537, 786466, 1, 196611, 786467, 1, 327684, 786468, 1, 393219, 786470, 1, 262149, 786474, 1, 65541, 786475, 1, 65537, 786476, 1, 65537, 786477, 1, 3, 786478, 1, 4, 786479, 1, 131073, 786480, 1, 131073, 786481, 1, 131074, 786483, 1, 131072, 786484, 1, 4, 786485, 1, 5, 786486, 1, 65537, 786487, 1, 65538, 786490, 1, 262149, 917498, 1, 262147, 917503, 1, 262149, 851982, 1, 327680, 851983, 1, 327682, 851985, 1, 393217, 851986, 1, 393219, 851992, 1, 262147, 852002, 1, 262147, 852006, 1, 262147, 852009, 1, 327680, 852010, 1, 65537, 852011, 1, 131073, 852012, 1, 65537, 852013, 1, 131074, 852021, 1, 65541, 852022, 1, 65537, 852023, 1, 65538, 852026, 1, 262147, 983034, 1, 262149, 983039, 1, 262147, 917519, 1, 458753, 917521, 1, 458753, 917528, 1, 262149, 917538, 1, 327683, 917539, 1, 196612, 917540, 1, 196612, 917541, 1, 327684, 917542, 1, 327685, 917544, 1, 65540, 917548, 1, 458753, 917557, 1, 65541, 917558, 1, 65537, 917559, 1, 65539, 917562, 1, 262149, 1048570, 1, 262149, 1048573, 1, 0, 1048574, 1, 131076, 1048575, 1, 65537, 983040, 1, 2, 983042, 1, 0, 983043, 1, 2, 983048, 1, 0, 983049, 1, 1, 983050, 1, 65537, 983051, 1, 393219, 983064, 1, 262149, 983079, 1, 262146, 983083, 1, 65540, 983087, 1, 327680, 983088, 1, 65537, 983089, 1, 1, 983090, 1, 131076, 983091, 1, 2, 983093, 1, 65541, 983094, 1, 65537, 983095, 1, 65538, 983098, 1, 262147, 1114106, 1, 262149, 1114109, 1, 65536, 1114110, 1, 65537, 1114111, 1, 65537, 1048576, 1, 65538, 1048578, 1, 131072, 1048579, 1, 131074, 1048582, 1, 196611, 1048583, 1, 196612, 1048584, 1, 65537, 1048585, 1, 65537, 1048586, 1, 65539, 1048600, 1, 65537, 1048601, 1, 2, 1048603, 1, 0, 1048604, 1, 131076, 1048605, 1, 2, 1048607, 1, 0, 1048608, 1, 2, 1048610, 1, 262146, 1048612, 1, 0, 1048613, 1, 1, 1048614, 1, 131076, 1048615, 1, 65537, 1048617, 1, 0, 1048618, 1, 2, 1048622, 1, 65540, 1048624, 1, 131072, 1048625, 1, 131073, 1048626, 1, 131073, 1048627, 1, 131074, 1048629, 1, 65536, 1048630, 1, 65537, 1048631, 1, 65538, 1048634, 1, 262147, 1179642, 1, 262147, 1179645, 1, 65536, 1179646, 1, 65537, 1179647, 1, 65537, 1114112, 1, 65539, 1114118, 1, 262149, 1114120, 1, 131072, 1114121, 1, 4, 1114122, 1, 65537, 1114136, 1, 131072, 1114137, 1, 131074, 1114139, 1, 131072, 1114140, 1, 4, 1114141, 1, 131074, 1114143, 1, 131072, 1114144, 1, 131074, 1114146, 1, 458753, 1114148, 1, 131072, 1114149, 1, 131073, 1114150, 1, 4, 1114151, 1, 131074, 1114153, 1, 131072, 1114154, 1, 131074, 1114157, 1, 65540, 1114165, 1, 65541, 1114166, 1, 65537, 1114167, 1, 65539, 1114170, 1, 262147, 1245178, 1, 262149, 1245181, 1, 65536, 1245182, 1, 65537, 1245183, 1, 65537, 1179648, 1, 65539, 1179654, 1, 262149, 1179658, 1, 262147, 1179660, 1, 65540, 1179664, 1, 65540, 1179668, 1, 65540, 1179692, 1, 262146, 1179696, 1, 0, 1179697, 1, 65537, 1179698, 1, 327684, 1179699, 1, 327684, 1179700, 1, 196612, 1179701, 1, 65537, 1179702, 1, 65537, 1179703, 1, 65538, 1179706, 1, 262147, 1310714, 1, 262147, 1310717, 1, 65536, 1310718, 1, 65537, 1310719, 1, 65537, 1245184, 1, 131075, 1245185, 1, 2, 1245190, 1, 262147, 1245194, 1, 262149, 1245226, 1, 0, 1245227, 1, 131076, 1245228, 1, 65537, 1245231, 1, 0, 1245232, 1, 131077, 1245233, 1, 65539, 1245237, 1, 65536, 1245238, 1, 65537, 1245239, 1, 65539, 1245242, 1, 262147, 1376250, 1, 262147, 1376253, 1, 65536, 1376254, 1, 65537, 1376255, 1, 65537, 1310720, 1, 65537, 1310721, 1, 131075, 1310722, 1, 2, 1310725, 1, 0, 1310726, 1, 65537, 1310730, 1, 262149, 1310732, 1, 262146, 1310734, 1, 262146, 1310743, 1, 0, 1310744, 1, 1, 1310745, 1, 2, 1310747, 1, 0, 1310748, 1, 131076, 1310749, 1, 2, 1310751, 1, 0, 1310752, 1, 1, 1310753, 1, 2, 1310755, 1, 0, 1310756, 1, 1, 1310757, 1, 1, 1310758, 1, 131076, 1310759, 1, 2, 1310762, 1, 131072, 1310763, 1, 4, 1310764, 1, 131074, 1310766, 1, 0, 1310767, 1, 131077, 1310768, 1, 65537, 1310769, 1, 65538, 1310771, 1, 0, 1310772, 1, 131076, 1310773, 1, 131077, 1310774, 1, 65537, 1310775, 1, 65539, 1310778, 1, 262149, 1441786, 1, 262149, 1441789, 1, 65541, 1441790, 1, 65537, 1441791, 1, 65537, 1376256, 1, 65537, 1376257, 1, 65537, 1376258, 1, 131075, 1376259, 1, 2, 1376261, 1, 65536, 1376262, 1, 65538, 1376266, 1, 327683, 1376267, 1, 196612, 1376268, 1, 393218, 1376269, 1, 327684, 1376270, 1, 393218, 1376271, 1, 393219, 1376278, 1, 0, 1376279, 1, 131077, 1376280, 1, 65537, 1376281, 1, 131075, 1376282, 1, 131076, 1376283, 1, 131077, 1376284, 1, 65537, 1376285, 1, 131075, 1376286, 1, 131076, 1376287, 1, 131077, 1376288, 1, 65537, 1376289, 1, 131075, 1376290, 1, 1, 1376291, 1, 131077, 1376292, 1, 65537, 1376293, 1, 65537, 1376294, 1, 65537, 1376295, 1, 65538, 1376302, 1, 131072, 1376303, 1, 131073, 1376304, 1, 131073, 1376305, 1, 131074, 1376307, 1, 131072, 1376308, 1, 131073, 1376309, 1, 4, 1376310, 1, 5, 1376311, 1, 65539, 1376314, 1, 262147, 1507322, 1, 262149, 1507325, 1, 65536, 1507326, 1, 65537, 1507327, 1, 65537, 1441792, 1, 65537, 1441793, 1, 65537, 1441794, 1, 65537, 1441795, 1, 131075, 1441796, 1, 131076, 1441797, 1, 131077, 1441798, 1, 65538, 1441813, 1, 0, 1441814, 1, 131077, 1441815, 1, 65537, 1441816, 1, 3, 1441817, 1, 4, 1441818, 1, 4, 1441819, 1, 131073, 1441820, 1, 131073, 1441821, 1, 4, 1441822, 1, 131073, 1441823, 1, 131073, 1441824, 1, 131073, 1441825, 1, 4, 1441826, 1, 4, 1441827, 1, 131073, 1441828, 1, 131073, 1441829, 1, 131073, 1441830, 1, 5, 1441831, 1, 131075, 1441832, 1, 2, 1441846, 1, 65536, 1441847, 1, 65538, 1441850, 1, 262149, 1572858, 1, 262147, 1572861, 1, 65536, 1572862, 1, 65537, 1572863, 1, 65537, 1507328, 1, 65537, 1507329, 1, 65537, 1507330, 1, 65537, 1507331, 1, 65537, 1507332, 1, 65537, 1507333, 1, 65537, 1507334, 1, 65539, 1507348, 1, 0, 1507349, 1, 131077, 1507350, 1, 65537, 1507351, 1, 65537, 1507352, 1, 65538, 1507366, 1, 65536, 1507367, 1, 65537, 1507368, 1, 65539, 1507376, 1, 262146, 1507378, 1, 0, 1507379, 1, 131076, 1507380, 1, 2, 1507382, 1, 65536, 1507383, 1, 65539, 1507386, 1, 262147, 1638394, 1, 262147, 1638397, 1, 65536, 1638398, 1, 65537, 1638399, 1, 3, 1572864, 1, 131073, 1572865, 1, 131073, 1572866, 1, 131073, 1572867, 1, 131073, 1572868, 1, 4, 1572869, 1, 131073, 1572870, 1, 131074, 1572874, 1, 327680, 1572875, 1, 196612, 1572876, 1, 196612, 1572877, 1, 196612, 1572878, 1, 327684, 1572879, 1, 196612, 1572880, 1, 327684, 1572881, 1, 327684, 1572882, 1, 327684, 1572883, 1, 327684, 1572884, 1, 65537, 1572885, 1, 4, 1572886, 1, 4, 1572887, 1, 4, 1572888, 1, 131074, 1572891, 1, 0, 1572892, 1, 131076, 1572893, 1, 131076, 1572894, 1, 131076, 1572895, 1, 65537, 1572896, 1, 196612, 1572897, 1, 327684, 1572898, 1, 393219, 1572902, 1, 65536, 1572903, 1, 65537, 1572904, 1, 131075, 1572905, 1, 2, 1572909, 1, 327680, 1572910, 1, 327684, 1572911, 1, 196612, 1572912, 1, 327685, 1572914, 1, 131072, 1572915, 1, 4, 1572916, 1, 131074, 1572918, 1, 65536, 1572919, 1, 65538, 1572922, 1, 262147, 1703930, 1, 262147, 1703933, 1, 65541, 1703934, 1, 3, 1703935, 1, 131074, 1638427, 1, 131072, 1638428, 1, 131073, 1638429, 1, 4, 1638430, 1, 131073, 1638431, 1, 131074, 1638438, 1, 65536, 1638439, 1, 65537, 1638440, 1, 65537, 1638441, 1, 131075, 1638442, 1, 2, 1638454, 1, 65541, 1638455, 1, 65538, 1638458, 1, 262147, 1769466, 1, 262149, 1769469, 1, 65537, 1769470, 1, 131074, 1703948, 1, 196611, 1703949, 1, 327684, 1703950, 1, 393219, 1703953, 1, 327680, 1703954, 1, 327681, 1703955, 1, 393219, 1703957, 1, 196611, 1703958, 1, 196612, 1703959, 1, 196612, 1703960, 1, 327684, 1703961, 1, 327684, 1703962, 1, 393219, 1703969, 1, 0, 1703970, 1, 2, 1703974, 1, 65536, 1703975, 1, 65537, 1703976, 1, 65537, 1703977, 1, 65537, 1703978, 1, 131075, 1703979, 1, 131076, 1703980, 1, 1, 1703981, 1, 2, 1703983, 1, 0, 1703984, 1, 2, 1703986, 1, 0, 1703987, 1, 1, 1703988, 1, 1, 1703989, 1, 1, 1703990, 1, 131077, 1703991, 1, 65539, 1703994, 1, 262147, 1835002, 1, 262147, 1835005, 1, 262147, 1769473, 1, 0, 1769474, 1, 1, 1769475, 1, 1, 1769476, 1, 131076, 1769477, 1, 131076, 1769478, 1, 2, 1769482, 1, 327680, 1769483, 1, 196612, 1769484, 1, 327685, 1769488, 1, 65540, 1769490, 1, 458753, 1769493, 1, 458753, 1769501, 1, 196611, 1769502, 1, 196612, 1769503, 1, 327684, 1769504, 1, 327684, 1769505, 1, 65537, 1769506, 1, 65539, 1769510, 1, 65537, 1769511, 1, 4, 1769512, 1, 4, 1769513, 1, 131073, 1769514, 1, 65537, 1769515, 1, 131073, 1769516, 1, 4, 1769517, 1, 131074, 1769519, 1, 65541, 1769520, 1, 65538, 1769522, 1, 65536, 1769523, 1, 65537, 1769524, 1, 65537, 1769525, 1, 65537, 1769526, 1, 65537, 1769527, 1, 65538, 1769530, 1, 262147, 1900538, 1, 262149, 1900541, 1, 65537, 1900542, 1, 2, 1835009, 1, 131072, 1835010, 1, 131073, 1835011, 1, 131073, 1835012, 1, 131073, 1835013, 1, 4, 1835014, 1, 131074, 1835023, 1, 65540, 1835025, 1, 65540, 1835028, 1, 65540, 1835030, 1, 65540, 1835034, 1, 0, 1835035, 1, 1, 1835036, 1, 65537, 1835037, 1, 327685, 1835041, 1, 65541, 1835042, 1, 65538, 1835046, 1, 458753, 1835050, 1, 458753, 1835055, 1, 65536, 1835056, 1, 65538, 1835058, 1, 65536, 1835059, 1, 65537, 1835060, 1, 65537, 1835061, 1, 65537, 1835062, 1, 65537, 1835063, 1, 65539, 1835066, 1, 262147, 1966074, 1, 262149, 1966077, 1, 65541, 1966078, 1, 65538, 1900558, 1, 65540, 1900560, 1, 65540, 1900563, 1, 65540, 1900570, 1, 65541, 1900571, 1, 65537, 1900572, 1, 65538, 1900577, 1, 65536, 1900578, 1, 65539, 1900584, 1, 262146, 1900588, 1, 262146, 1900591, 1, 65536, 1900592, 1, 65538, 1900594, 1, 131072, 1900595, 1, 5, 1900596, 1, 65537, 1900597, 1, 65537, 1900598, 1, 65537, 1900599, 1, 65539, 1900602, 1, 262149, 2031610, 1, 262147, 2031613, 1, 65536, 2031614, 1, 65539, 1966093, 1, 65540, 1966095, 1, 65540, 1966098, 1, 65540, 1966100, 1, 65540, 1966106, 1, 65536, 1966107, 1, 65537, 1966108, 1, 65539, 1966113, 1, 65536, 1966114, 1, 65538, 1966118, 1, 0, 1966119, 1, 1, 1966120, 1, 65537, 1966121, 1, 1, 1966122, 1, 1, 1966123, 1, 1, 1966124, 1, 65537, 1966125, 1, 1, 1966126, 1, 131076, 1966127, 1, 131077, 1966128, 1, 65539, 1966131, 1, 65536, 1966132, 1, 65537, 1966133, 1, 65537, 1966134, 1, 65537, 1966135, 1, 65539, 1966138, 1, 262149, 2097146, 1, 262147, 2097149, 1, 65541, 2097150, 1, 131075, 2097151, 1, 2, 2031617, 1, 0, 2031618, 1, 131076, 2031619, 1, 131076, 2031620, 1, 131076, 2031621, 1, 1, 2031622, 1, 131076, 2031623, 1, 1, 2031624, 1, 2, 2031626, 1, 262146, 2031628, 1, 262146, 2031630, 1, 65540, 2031633, 1, 262146, 2031642, 1, 65541, 2031643, 1, 65537, 2031644, 1, 65539, 2031649, 1, 131072, 2031650, 1, 131074, 2031654, 1, 131072, 2031655, 1, 131073, 2031656, 1, 4, 2031657, 1, 131073, 2031658, 1, 131073, 2031659, 1, 131073, 2031660, 1, 4, 2031661, 1, 4, 2031662, 1, 131073, 2031663, 1, 65537, 2031664, 1, 131074, 2031666, 1, 0, 2031667, 1, 131077, 2031668, 1, 65537, 2031669, 1, 65537, 2031670, 1, 65537, 2031671, 1, 65538, 2031674, 1, 262147, 2162682, 1, 262147, 2162685, 1, 65537, 2162686, 1, 131073, 2162687, 1, 65537, 2097153, 1, 65537, 2097154, 1, 4, 2097155, 1, 4, 2097156, 1, 4, 2097157, 1, 131073, 2097158, 1, 131073, 2097159, 1, 4, 2097160, 1, 131074, 2097162, 1, 262149, 2097164, 1, 393217, 2097165, 1, 393219, 2097169, 1, 65537, 2097170, 1, 2, 2097175, 1, 327680, 2097176, 1, 196612, 2097177, 1, 196612, 2097178, 1, 65537, 2097179, 1, 65537, 2097180, 1, 131075, 2097181, 1, 2, 2097199, 1, 262147, 2097202, 1, 65541, 2097203, 1, 65537, 2097204, 1, 65537, 2097205, 1, 65537, 2097206, 1, 65537, 2097207, 1, 65539, 2097210, 1, 262149, 2228218, 1, 262149, 2228221, 1, 262149, 2228223, 1, 458753, 2162689, 1, 262149, 2162698, 1, 262147, 2162700, 1, 262149, 2162705, 1, 65541, 2162706, 1, 131075, 2162707, 1, 2, 2162714, 1, 65541, 2162715, 1, 65537, 2162716, 1, 65537, 2162717, 1, 131075, 2162718, 1, 2, 2162726, 1, 0, 2162727, 1, 131076, 2162728, 1, 2, 2162730, 1, 0, 2162731, 1, 1, 2162732, 1, 65537, 2162733, 1, 393219, 2162735, 1, 65537, 2162736, 1, 2, 2162738, 1, 65536, 2162739, 1, 65537, 2162740, 1, 65537, 2162741, 1, 65537, 2162742, 1, 65537, 2162743, 1, 65539, 2162746, 1, 262149, 2293754, 1, 262149, 2293757, 1, 262149, 2228225, 1, 262147, 2228227, 1, 196611, 2228228, 1, 327684, 2228229, 1, 196612, 2228230, 1, 327684, 2228231, 1, 327684, 2228232, 1, 327684, 2228233, 1, 327684, 2228234, 1, 327685, 2228236, 1, 262147, 2228241, 1, 65541, 2228242, 1, 65537, 2228243, 1, 65538, 2228250, 1, 131072, 2228251, 1, 4, 2228252, 1, 4, 2228253, 1, 4, 2228254, 1, 131074, 2228262, 1, 131072, 2228263, 1, 4, 2228264, 1, 65537, 2228265, 1, 196612, 2228266, 1, 65537, 2228267, 1, 131073, 2228268, 1, 131074, 2228271, 1, 131072, 2228272, 1, 131074, 2228274, 1, 65541, 2228275, 1, 65537, 2228276, 1, 65537, 2228277, 1, 65537, 2228278, 1, 65537, 2228279, 1, 65538, 2228282, 1, 262147, 2359290, 1, 262149, 2359293, 1, 262147, 2359295, 1, 262146, 2293761, 1, 262147, 2293763, 1, 262149, 2293772, 1, 262147, 2293775, 1, 0, 2293776, 1, 1, 2293777, 1, 131077, 2293778, 1, 65537, 2293779, 1, 65539, 2293810, 1, 131072, 2293811, 1, 5, 2293812, 1, 65537, 2293813, 1, 65537, 2293814, 1, 65537, 2293815, 1, 65538, 2293818, 1, 262147, 2424826, 1, 262149, 2424829, 1, 262149, 2424831, 1, 262149, 2359297, 1, 262149, 2359299, 1, 262149, 2359308, 1, 262147, 2359311, 1, 65536, 2359312, 1, 65537, 2359313, 1, 65537, 2359314, 1, 65537, 2359315, 1, 65539, 2359347, 1, 65541, 2359348, 1, 65537, 2359349, 1, 65537, 2359350, 1, 65537, 2359351, 1, 65539, 2359354, 1, 262147, 2490362, 1, 65537, 2490363, 1, 2, 2490365, 1, 262149, 2490367, 1, 262149, 2424833, 1, 458753, 2424835, 1, 262147, 2424838, 1, 327680, 2424839, 1, 196612, 2424840, 1, 327684, 2424841, 1, 327684, 2424842, 1, 196612, 2424843, 1, 327684, 2424844, 1, 327685, 2424847, 1, 65541, 2424848, 1, 65537, 2424849, 1, 65537, 2424850, 1, 65537, 2424851, 1, 65539, 2424855, 1, 0, 2424856, 1, 1, 2424857, 1, 1, 2424858, 1, 131076, 2424859, 1, 1, 2424860, 1, 1, 2424861, 1, 1, 2424862, 1, 1, 2424863, 1, 1, 2424864, 1, 131076, 2424865, 1, 131076, 2424866, 1, 1, 2424867, 1, 131076, 2424868, 1, 131076, 2424869, 1, 1, 2424870, 1, 1, 2424871, 1, 131076, 2424872, 1, 131076, 2424873, 1, 1, 2424874, 1, 1, 2424875, 1, 131076, 2424876, 1, 131076, 2424877, 1, 1, 2424878, 1, 131076, 2424879, 1, 131076, 2424880, 1, 2, 2424882, 1, 0, 2424883, 1, 131077, 2424884, 1, 65537, 2424885, 1, 65537, 2424886, 1, 65537, 2424887, 1, 65538, 2424890, 1, 262149, 2555898, 1, 65541, 2555899, 1, 131075, 2555900, 1, 131076, 2555901, 1, 65537, 2555903, 1, 262147, 2490371, 1, 262149, 2490383, 1, 131072, 2490384, 1, 5, 2490385, 1, 65537, 2490386, 1, 3, 2490387, 1, 131074, 2490391, 1, 131072, 2490392, 1, 131073, 2490393, 1, 4, 2490394, 1, 4, 2490395, 1, 4, 2490396, 1, 4, 2490397, 1, 4, 2490398, 1, 131073, 2490399, 1, 131073, 2490400, 1, 4, 2490401, 1, 4, 2490402, 1, 131073, 2490403, 1, 131073, 2490404, 1, 4, 2490405, 1, 131073, 2490406, 1, 4, 2490407, 1, 131073, 2490408, 1, 4, 2490409, 1, 131073, 2490410, 1, 131073, 2490411, 1, 4, 2490412, 1, 131073, 2490413, 1, 131073, 2490414, 1, 131073, 2490415, 1, 4, 2490416, 1, 65537, 2490417, 1, 196612, 2490418, 1, 65537, 2490419, 1, 4, 2490420, 1, 131073, 2490421, 1, 4, 2490422, 1, 131073, 2490423, 1, 131074, 2490426, 1, 262147, 2621434, 1, 65541, 2621435, 1, 65537, 2621436, 1, 65537, 2621437, 1, 65539, 2621439, 1, 327683, 2555904, 1, 196612, 2555905, 1, 327684, 2555906, 1, 196612, 2555907, 1, 327685, 2555910, 1, 327680, 2555911, 1, 196612, 2555912, 1, 327684, 2555913, 1, 196612, 2555914, 1, 327684, 2555915, 1, 327684, 2555916, 1, 393219, 2555920, 1, 131072, 2555921, 1, 65537, 2555922, 1, 131074, 2555926, 1, 65540, 2555962, 1, 262147, 2686970, 1, 65536, 2686971, 1, 65537, 2686972, 1, 65537, 2686973, 1, 65538, 2621445, 1, 262146, 2621453, 1, 65540, 2621457, 1, 458753, 2621461, 1, 65540, 2621498, 1, 262147, 2752506, 1, 65536, 2752507, 1, 65537, 2752508, 1, 65537, 2752509, 1, 131075, 2752510, 1, 131076, 2752511, 1, 131076, 2686976, 1, 131076, 2686977, 1, 1, 2686978, 1, 1, 2686979, 1, 1, 2686980, 1, 1, 2686981, 1, 65537, 2686982, 1, 1, 2686983, 1, 1, 2686984, 1, 65537, 2686985, 1, 393219, 2686990, 1, 65540, 2686996, 1, 65540, 2687001, 1, 327680, 2687002, 1, 327684, 2687003, 1, 196612, 2687004, 1, 196612, 2687005, 1, 196612, 2687006, 1, 196612, 2687007, 1, 327684, 2687008, 1, 196612, 2687009, 1, 327684, 2687010, 1, 196612, 2687011, 1, 327684, 2687012, 1, 196612, 2687013, 1, 196612, 2687014, 1, 327684, 2687015, 1, 196612, 2687016, 1, 196612, 2687017, 1, 196612, 2687018, 1, 327684, 2687019, 1, 327684, 2687020, 1, 196612, 2687021, 1, 196612, 2687022, 1, 196612, 2687023, 1, 327684, 2687024, 1, 196612, 2687025, 1, 196612, 2687026, 1, 327684, 2687027, 1, 196612, 2687028, 1, 327684, 2687029, 1, 196612, 2687030, 1, 327684, 2687031, 1, 196612, 2687032, 1, 327684, 2687033, 1, 196612, 2687034, 1, 327685, 2818042, 1, 131072, 2818043, 1, 131073, 2818044, 1, 131073, 2818045, 1, 4, 2818046, 1, 131073, 2818047, 1, 4, 2752512, 1, 131073, 2752513, 1, 131073, 2752514, 1, 131073, 2752515, 1, 4, 2752516, 1, 131073, 2752517, 1, 4, 2752518, 1, 4, 2752519, 1, 131073, 2752520, 1, 65537, 2752522, 1, 262146, 2752527, 1, 65540, 2752531, 1, 65540, 2752536, 1, 65540, 2818056, 1, 327683, 2818057, 1, 65537, 2818058, 1, 262144, 2818059, 1, 393219, 2818064, 1, 262146, 2818066, 1, 262146, 2818071, 1, 65540, 2883593, 1, 131072, 2883594, 1, 65537, 2883596, 1, 262146, 2883599, 1, 0, 2883600, 1, 65537, 2883602, 1, 65537, 2883603, 1, 2, 2883606, 1, 65540, 2949130, 1, 327683, 2949131, 1, 65537, 2949132, 1, 262144, 2949133, 1, 393219, 2949135, 1, 65536, 2949136, 1, 65539, 2949138, 1, 65541, 2949139, 1, 65539, 2949141, 1, 65540, 3014667, 1, 131072, 3014668, 1, 65537, 3014670, 1, 0, 3014671, 1, 131077, 3014672, 1, 65539, 3014674, 1, 65541, 3014675, 1, 131075, 3014676, 1, 2, 3080204, 1, 327683, 3080205, 1, 65537, 3080206, 1, 131077, 3080207, 1, 65537, 3080208, 1, 65539, 3080210, 1, 65536, 3080211, 1, 65537, 3080212, 1, 65538, 3145741, 1, 65541, 3145742, 1, 65537, 3145743, 1, 65537, 3145744, 1, 65538, 3145746, 1, 131072, 3145747, 1, 5, 3145748, 1, 131075, 3145749, 1, 1, 3145750, 1, 131076, 3145751, 1, 131076, 3145752, 1, 131076, 3145753, 1, 1, 3145754, 1, 1, 3145755, 1, 131076, 3145756, 1, 1, 3145757, 1, 131076, 3145758, 1, 131076, 3145759, 1, 1, 3145760, 1, 1, 3145761, 1, 1, 3145762, 1, 1, 3145763, 1, 2, 3211277, 1, 65541, 3211278, 1, 65537, 3211279, 1, 65537, 3211280, 1, 65538, 3211283, 1, 131072, 3211284, 1, 131073, 3211285, 1, 131073, 3211286, 1, 4, 3211287, 1, 4, 3211288, 1, 131073, 3211289, 1, 4, 3211290, 1, 131073, 3211291, 1, 4, 3211292, 1, 4, 3211293, 1, 4, 3211294, 1, 4, 3211295, 1, 4, 3211296, 1, 4, 3211297, 1, 131073, 3211298, 1, 5, 3211299, 1, 65539, 3276813, 1, 65541, 3276814, 1, 65537, 3276815, 1, 65537, 3276816, 1, 65538, 3276834, 1, 65536, 3276835, 1, 65539, 3342349, 1, 65541, 3342350, 1, 65537, 3342351, 1, 65537, 3342352, 1, 65538, 3342355, 1, 0, 3342356, 1, 131076, 3342357, 1, 2, 3342370, 1, 65536, 3342371, 1, 65539, 3407885, 1, 65536, 3407886, 1, 65537, 3407887, 1, 65537, 3407888, 1, 65539, 3407890, 1, 0, 3407891, 1, 131077, 3407892, 1, 65537, 3407893, 1, 65538, 3407898, 1, 65540, 3407906, 1, 65541, 3407907, 1, 65539, 3473421, 1, 65541, 3473422, 1, 65537, 3473423, 1, 65537, 3473424, 1, 65539, 3473426, 1, 65536, 3473427, 1, 65537, 3473428, 1, 65537, 3473429, 1, 65538, 3473442, 1, 65541, 3473443, 1, 65538, 3538956, 1, 0, 3538957, 1, 131077, 3538958, 1, 65537, 3538959, 1, 65537, 3538960, 1, 65538, 3538962, 1, 65541, 3538963, 1, 65537, 3538964, 1, 65537, 3538965, 1, 65539, 3538973, 1, 65540, 3538978, 1, 65536, 3538979, 1, 65539, 3604491, 1, 0, 3604492, 1, 131077, 3604493, 1, 65537, 3604494, 1, 65537, 3604495, 1, 65537, 3604496, 1, 65538, 3604498, 1, 65536, 3604499, 1, 65537, 3604500, 1, 65537, 3604501, 1, 131075, 3604502, 1, 2, 3604514, 1, 65536, 3604515, 1, 65539, 3670027, 1, 65536, 3670028, 1, 65537, 3670029, 1, 65537, 3670030, 1, 65537, 3670031, 1, 65537, 3670032, 1, 65539, 3670034, 1, 65536, 3670035, 1, 65537, 3670036, 1, 65537, 3670037, 1, 65537, 3670038, 1, 65538, 3670050, 1, 65541, 3670051, 1, 65538, 3735563, 1, 65541, 3735564, 1, 65537, 3735565, 1, 65537, 3735566, 1, 65537, 3735567, 1, 65537, 3735568, 1, 65538, 3735570, 1, 65536, 3735571, 1, 65537, 3735572, 1, 65537, 3735573, 1, 65537, 3735574, 1, 65538, 3735586, 1, 65536, 3735587, 1, 65538, 3801099, 1, 65536, 3801100, 1, 65537, 3801101, 1, 65537, 3801102, 1, 65537, 3801103, 1, 65537, 3801104, 1, 65539, 3801106, 1, 65536, 3801107, 1, 65537, 3801108, 1, 65537, 3801109, 1, 65537, 3801110, 1, 65539, 3801117, 1, 65540, 3801122, 1, 65541, 3801123, 1, 65538, 3866635, 1, 65536, 3866636, 1, 65537, 3866637, 1, 65537, 3866638, 1, 65537, 3866639, 1, 65537, 3866640, 1, 65538, 3866642, 1, 65536, 3866643, 1, 65537, 3866644, 1, 65537, 3866645, 1, 65537, 3866646, 1, 65538, 3866658, 1, 65541, 3866659, 1, 65539, 3932171, 1, 65536, 3932172, 1, 65537, 3932173, 1, 65537, 3932174, 1, 65537, 3932175, 1, 3, 3932176, 1, 131074, 3932178, 1, 131072, 3932179, 1, 5, 3932180, 1, 65537, 3932181, 1, 65537, 3932182, 1, 65539, 3932185, 1, 327680, 3932186, 1, 196613, 3932194, 1, 65541, 3932195, 1, 65538, 3997707, 1, 65536, 3997708, 1, 65537, 3997709, 1, 65537, 3997710, 1, 3, 3997711, 1, 131074, 3997715, 1, 131072, 3997716, 1, 5, 3997717, 1, 65537, 3997718, 1, 65539, 3997722, 1, 262147, 3997730, 1, 65541, 3997731, 1, 65539, 4063243, 1, 65541, 4063244, 1, 65537, 4063245, 1, 3, 4063246, 1, 131074, 4063252, 1, 131072, 4063253, 1, 5, 4063254, 1, 65538, 4063258, 1, 262147, 4063266, 1, 65536, 4063267, 1, 65538, 4128779, 1, 65536, 4128780, 1, 65537, 4128781, 1, 65538, 4128789, 1, 65541, 4128790, 1, 65538, 4128794, 1, 262149, 4128802, 1, 65536, 4128803, 1, 65539, 4194315, 1, 65536, 4194316, 1, 65537, 4194317, 1, 65539, 4194325, 1, 65536, 4194326, 1, 131075, 4194327, 1, 131076, 4194328, 1, 131076, 4194329, 1, 131076, 4194330, 1, 65537, 4194334, 1, 0, 4194335, 1, 131076, 4194336, 1, 1, 4194337, 1, 131076, 4194338, 1, 131077, 4194339, 1, 65538, 4259851, 1, 65541, 4259852, 1, 65537, 4259853, 1, 65539, 4259861, 1, 65541, 4259862, 1, 65537, 4259863, 1, 65537, 4259864, 1, 65537, 4259865, 1, 65537, 4259866, 1, 65539, 4259870, 1, 65536, 4259871, 1, 65537, 4259872, 1, 65537, 4259873, 1, 65537, 4259874, 1, 65537, 4259875, 1, 65539, 4325387, 1, 65536, 4325388, 1, 3, 4325389, 1, 131074, 4325397, 1, 65541, 4325398, 1, 65537, 4325399, 1, 65537, 4325400, 1, 65537, 4325401, 1, 65537, 4325402, 1, 65539, 4325406, 1, 65536, 4325407, 1, 65537, 4325408, 1, 65537, 4325409, 1, 65537, 4325410, 1, 65537, 4325411, 1, 65538, 4390923, 1, 65541, 4390924, 1, 65539, 4390926, 1, 262146, 4390933, 1, 65541, 4390934, 1, 65537, 4390935, 1, 65537, 4390936, 1, 65537, 4390937, 1, 65537, 4390938, 1, 65539, 4390942, 1, 65536, 4390943, 1, 65537, 4390944, 1, 65537, 4390945, 1, 65537, 4390946, 1, 65537, 4390947, 1, 65538, 4456459, 1, 65536, 4456460, 1, 131075, 4456461, 1, 131076, 4456462, 1, 262144, 4456463, 1, 393219, 4456469, 1, 65536, 4456470, 1, 65537, 4456471, 1, 65537, 4456472, 1, 65537, 4456473, 1, 65537, 4456474, 1, 65539, 4456478, 1, 65541, 4456479, 1, 65537, 4456480, 1, 65537, 4456481, 1, 65537, 4456482, 1, 65537, 4456483, 1, 65538, 4521995, 1, 65541, 4521996, 1, 65537, 4521997, 1, 65537, 4521998, 1, 65538, 4522000, 1, 262146, 4522005, 1, 65537, 4522006, 1, 131073, 4522007, 1, 5, 4522008, 1, 65537, 4522009, 1, 65537, 4522010, 1, 65539, 4522014, 1, 65541, 4522015, 1, 65537, 4522016, 1, 65537, 4522017, 1, 65537, 4522018, 1, 65537, 4522019, 1, 65539, 4587531, 1, 65536, 4587532, 1, 65537, 4587533, 1, 65537, 4587534, 1, 131075, 4587535, 1, 1, 4587536, 1, 262144, 4587537, 1, 393219, 4587541, 1, 458753, 4587543, 1, 65536, 4587544, 1, 65537, 4587545, 1, 65537, 4587546, 1, 65538, 4587550, 1, 65536, 4587551, 1, 65537, 4587552, 1, 65537, 4587553, 1, 65537, 4587554, 1, 65537, 4587555, 1, 65538, 4653067, 1, 65541, 4653068, 1, 65537, 4653069, 1, 65537, 4653070, 1, 65537, 4653071, 1, 65537, 4653072, 1, 65539, 4653074, 1, 262146, 4653078, 1, 327680, 4653079, 1, 196609, 4653080, 1, 4, 4653081, 1, 65537, 4653082, 1, 131074, 4653086, 1, 131072, 4653087, 1, 5, 4653088, 1, 65537, 4653089, 1, 65537, 4653090, 1, 65537, 4653091, 1, 65538, 4718603, 1, 65536, 4718604, 1, 65537, 4718605, 1, 65537, 4718606, 1, 65537, 4718607, 1, 65537, 4718608, 1, 131075, 4718609, 1, 1, 4718610, 1, 262144, 4718611, 1, 393219, 4718615, 1, 458753, 4718617, 1, 458753, 4718621, 1, 262146, 4718623, 1, 65536, 4718624, 1, 65537, 4718625, 1, 65537, 4718626, 1, 65537, 4718627, 1, 65539, 4784139, 1, 65536, 4784140, 1, 65537, 4784141, 1, 65537, 4784142, 1, 65537, 4784143, 1, 65537, 4784144, 1, 65537, 4784145, 1, 65537, 4784146, 1, 65539, 4784148, 1, 262146, 4784152, 1, 65540, 4784156, 1, 327680, 4784157, 1, 262145, 4784158, 1, 1, 4784159, 1, 131077, 4784160, 1, 65537, 4784161, 1, 65537, 4784162, 1, 65537, 4784163, 1, 65539, 4849675, 1, 65541, 4849676, 1, 65537, 4849677, 1, 65537, 4849678, 1, 65537, 4849679, 1, 65537, 4849680, 1, 65537, 4849681, 1, 65537, 4849682, 1, 131075, 4849683, 1, 1, 4849684, 1, 262144, 4849685, 1, 393219, 4849691, 1, 262146, 4849693, 1, 65541, 4849694, 1, 65537, 4849695, 1, 65537, 4849696, 1, 65537, 4849697, 1, 65537, 4849698, 1, 65537, 4849699, 1, 65539, 4915211, 1, 65536, 4915212, 1, 65537, 4915213, 1, 65537, 4915214, 1, 65537, 4915215, 1, 65537, 4915216, 1, 65537, 4915217, 1, 65537, 4915218, 1, 65537, 4915219, 1, 65537, 4915220, 1, 65538, 4915222, 1, 262146, 4915226, 1, 327680, 4915227, 1, 262145, 4915228, 1, 131076, 4915229, 1, 131077, 4915230, 1, 65537, 4915231, 1, 65537, 4915232, 1, 65537, 4915233, 1, 65537, 4915234, 1, 65537, 4915235, 1, 65539, 4980747, 1, 65541, 4980748, 1, 65537, 4980749, 1, 65537, 4980750, 1, 65537, 4980751, 1, 65537, 4980752, 1, 65537, 4980753, 1, 65537, 4980754, 1, 65537, 4980755, 1, 65537, 4980756, 1, 131075, 4980757, 1, 1, 4980758, 1, 65537, 4980759, 1, 1, 4980760, 1, 1, 4980761, 1, 2, 4980763, 1, 65541, 4980764, 1, 65537, 4980765, 1, 65537, 4980766, 1, 65537, 4980767, 1, 65537, 4980768, 1, 65537, 4980769, 1, 65537, 4980770, 1, 65537, 4980771, 1, 65539, 5046283, 1, 65536, 5046284, 1, 65537, 5046285, 1, 65537, 5046286, 1, 65537, 5046287, 1, 65537, 5046288, 1, 65537, 5046289, 1, 65537, 5046290, 1, 65537, 5046291, 1, 65537, 5046292, 1, 65537, 5046293, 1, 65537, 5046294, 1, 65537, 5046295, 1, 65537, 5046296, 1, 65537, 5046297, 1, 131075, 5046298, 1, 1, 5046299, 1, 131077, 5046300, 1, 65537, 5046301, 1, 65537, 5046302, 1, 65537, 5046303, 1, 65537, 5046304, 1, 65537, 5046305, 1, 65537, 5046306, 1, 65537, 5046307, 1, 65538, 5111819, 1, 65536, 5111820, 1, 65537, 5111821, 1, 65537, 5111822, 1, 65537, 5111823, 1, 65537, 5111824, 1, 65537, 5111825, 1, 65537, 5111826, 1, 65537, 5111827, 1, 65537, 5111828, 1, 65537, 5111829, 1, 65537, 5111830, 1, 65537, 5111831, 1, 65537, 5111832, 1, 65537, 5111833, 1, 65537, 5111834, 1, 65537, 5111835, 1, 65537, 5111836, 1, 65537, 5111837, 1, 65537, 5111838, 1, 65537, 5111839, 1, 65537, 5111840, 1, 65537, 5111841, 1, 65537, 5111842, 1, 65537, 5111843, 1, 65539, 5177355, 1, 65536, 5177356, 1, 65537, 5177357, 1, 65537, 5177358, 1, 65537, 5177359, 1, 65537, 5177360, 1, 65537, 5177361, 1, 65537, 5177362, 1, 65537, 5177363, 1, 65537, 5177364, 1, 65537, 5177365, 1, 65537, 5177366, 1, 65537, 5177367, 1, 65537, 5177368, 1, 65537, 5177369, 1, 65537, 5177370, 1, 65537, 5177371, 1, 65537, 5177372, 1, 65537, 5177373, 1, 65537, 5177374, 1, 65537, 5177375, 1, 65537, 5177376, 1, 65537, 5177377, 1, 65537, 5177378, 1, 65537, 5177379, 1, 65538, 5242891, 1, 65541, 5242892, 1, 65537, 5242893, 1, 65537, 5242894, 1, 65537, 5242895, 1, 65537, 5242896, 1, 65537, 5242897, 1, 65537, 5242898, 1, 65537, 5242899, 1, 65537, 5242900, 1, 65537, 5242901, 1, 65537, 5242902, 1, 65537, 5242903, 1, 65537, 5242904, 1, 65537, 5242905, 1, 65537, 5242906, 1, 65537, 5242907, 1, 65537, 5242908, 1, 65537, 5242909, 1, 65537, 5242910, 1, 65537, 5242911, 1, 65537, 5242912, 1, 65537, 5242913, 1, 65537, 5242914, 1, 65537, 5242915, 1, 65539, 5308427, 1, 131072, 5308428, 1, 131073, 5308429, 1, 131073, 5308430, 1, 4, 5308431, 1, 4, 5308432, 1, 4, 5308433, 1, 4, 5308434, 1, 131073, 5308435, 1, 131073, 5308436, 1, 131073, 5308437, 1, 4, 5308438, 1, 4, 5308439, 1, 4, 5308440, 1, 131073, 5308441, 1, 131073, 5308442, 1, 131073, 5308443, 1, 131073, 5308444, 1, 4, 5308445, 1, 131073, 5308446, 1, 131073, 5308447, 1, 4, 5308448, 1, 131073, 5308449, 1, 131073, 5308450, 1, 131073, 5308451, 1, 131074 )
  890. [node name="Player_Start" type="Position2D" parent="."]
  891. position = Vector2( 173.225, 389.836 )
  892. [node name="Exit" parent="." instance=ExtResource( 9 )]
  893. position = Vector2( 1602.84, 4034.27 )
  894. next_level = "Level_002.tscn"
  895. [node name="ExitVortex" parent="." instance=ExtResource( 9 )]
  896. position = Vector2( 1337.36, 2790.08 )
  897. next_level = "Level_TestSite.tscn"
  898. [connection signal="exit_level" from="Exit" to="." method="_on_Exit_exit_level"]
  899. [connection signal="exit_level" from="ExitVortex" to="." method="_on_ExitVortex_exit_level"]