diff --git a/Zennysoft.Game.Ma/src/enemy/BossTypeA.cs b/Zennysoft.Game.Ma/src/enemy/BossTypeA.cs index 6b0cee5b..afadaaae 100644 --- a/Zennysoft.Game.Ma/src/enemy/BossTypeA.cs +++ b/Zennysoft.Game.Ma/src/enemy/BossTypeA.cs @@ -39,7 +39,7 @@ public partial class BossTypeA : Enemy, IHaveEngagePlayerBehavior, IHaveFollowBe private float _movementSpeed = 2.0f; - public void OnReady() + public void OnResolved() { FollowBehavior.Init(NavigationAgent); FollowBehavior.OnVelocityComputed += OnVelocityComputed; diff --git a/Zennysoft.Game.Ma/src/map/dungeon/code/CorridorRoom.cs b/Zennysoft.Game.Ma/src/map/dungeon/code/CorridorRoom.cs index 5117107c..b4e856a6 100644 --- a/Zennysoft.Game.Ma/src/map/dungeon/code/CorridorRoom.cs +++ b/Zennysoft.Game.Ma/src/map/dungeon/code/CorridorRoom.cs @@ -18,13 +18,13 @@ public partial class CorridorRoom : Node3D public void Setup() { - if (_room != null) - _room.BodyEntered += Room_BodyEntered; + if (_room != null) + _room.BodyEntered += Room_BodyEntered; } private void Room_BodyEntered(Node3D body) { - if (!Game.CurrentFloor.FloorIsLoaded) - return; + if (!Game.CurrentFloor.FloorIsLoaded) + return; } } diff --git a/Zennysoft.Game.Ma/src/map/dungeon/code/DungeonRoom.cs b/Zennysoft.Game.Ma/src/map/dungeon/code/DungeonRoom.cs index df4b63e4..92ec5b86 100644 --- a/Zennysoft.Game.Ma/src/map/dungeon/code/DungeonRoom.cs +++ b/Zennysoft.Game.Ma/src/map/dungeon/code/DungeonRoom.cs @@ -20,6 +20,8 @@ public abstract partial class DungeonRoom : Node3D, IDungeonRoom [Node] private Area3D _room { get; set; } = default!; + [Node] public Node3D MinimapShadow { get; set; } = default!; + private ImmutableList _enemiesInRoom; private bool _isPlayerInRoom = false; private bool _playerDiscoveredRoom = false; @@ -61,6 +63,7 @@ public abstract partial class DungeonRoom : Node3D, IDungeonRoom { _isPlayerInRoom = true; _playerDiscoveredRoom = true; + MinimapShadow.Hide(); } public void OnExitTree() diff --git a/Zennysoft.Game.Ma/src/map/dungeon/code/MonsterRoom.cs b/Zennysoft.Game.Ma/src/map/dungeon/code/MonsterRoom.cs index a0a4d86f..88f4ace9 100644 --- a/Zennysoft.Game.Ma/src/map/dungeon/code/MonsterRoom.cs +++ b/Zennysoft.Game.Ma/src/map/dungeon/code/MonsterRoom.cs @@ -19,31 +19,31 @@ public partial class MonsterRoom : DungeonRoom public override void _Ready() { - SpawnItems(); + SpawnItems(); } public void SpawnEnemies(Godot.Collections.Dictionary enemyInfo) { - if (enemyInfo == null || !enemyInfo.Any(x => x.Value > 0)) - return; + if (enemyInfo == null || !enemyInfo.Any(x => x.Value > 0)) + return; - var rng = new RandomNumberGenerator(); - rng.Randomize(); - var enemySpawnPoints = EnemySpawnPoints.GetChildren(); - var numberOfEnemiesToSpawn = rng.RandiRange(1, enemySpawnPoints.Count); + var rng = new RandomNumberGenerator(); + rng.Randomize(); + var enemySpawnPoints = EnemySpawnPoints.GetChildren(); + var numberOfEnemiesToSpawn = rng.RandiRange(1, enemySpawnPoints.Count); - foreach (var spawnPoint in enemySpawnPoints.Cast()) - { - if (numberOfEnemiesToSpawn <= 0) - break; - numberOfEnemiesToSpawn--; + foreach (var spawnPoint in enemySpawnPoints.Cast()) + { + if (numberOfEnemiesToSpawn <= 0) + break; + numberOfEnemiesToSpawn--; - var index = rng.RandWeighted([.. enemyInfo.Values]); - var selectedEnemy = enemyInfo.ElementAt((int)index); - var instantiatedEnemy = EnemyTypeToEnemyConverter.Convert(selectedEnemy.Key); - instantiatedEnemy.Position = new Vector3(spawnPoint.Position.X, 0f, spawnPoint.Position.Z); - AddChild(instantiatedEnemy); - } + var index = rng.RandWeighted([.. enemyInfo.Values]); + var selectedEnemy = enemyInfo.ElementAt((int)index); + var instantiatedEnemy = EnemyTypeToEnemyConverter.Convert(selectedEnemy.Key); + instantiatedEnemy.Position = new Vector3(spawnPoint.Position.X, 0f, spawnPoint.Position.Z); + AddChild(instantiatedEnemy); + } } @@ -51,25 +51,25 @@ public partial class MonsterRoom : DungeonRoom // private void SpawnItems() { - if (ItemSpawnPoints == null) - return; + if (ItemSpawnPoints == null) + return; - var itemSpawnPoints = ItemSpawnPoints.GetChildren(); - var rng = new RandomNumberGenerator(); - rng.Randomize(); - var numberOfItemsToSpawn = rng.RandiRange(1, itemSpawnPoints.Count); - itemSpawnPoints.Shuffle(); - var database = ItemDatabase.Instance; - foreach (var spawnPoint in itemSpawnPoints.Cast()) - { - if (numberOfItemsToSpawn <= 0) - break; - numberOfItemsToSpawn--; + var itemSpawnPoints = ItemSpawnPoints.GetChildren(); + var rng = new RandomNumberGenerator(); + rng.Randomize(); + var numberOfItemsToSpawn = rng.RandiRange(1, itemSpawnPoints.Count); + itemSpawnPoints.Shuffle(); + var database = ItemDatabase.Instance; + foreach (var spawnPoint in itemSpawnPoints.Cast()) + { + if (numberOfItemsToSpawn <= 0) + break; + numberOfItemsToSpawn--; - var selectedItem = database.PickItem(); - var duplicated = selectedItem.Duplicate((int)DuplicateFlags.UseInstantiation) as Node3D; - duplicated.Position = new Vector3(spawnPoint.Position.X, 0, spawnPoint.Position.Z); - AddChild(duplicated); - } + var selectedItem = database.PickItem(); + var duplicated = selectedItem.Duplicate((int)DuplicateFlags.UseInstantiation) as Node3D; + duplicated.Position = new Vector3(spawnPoint.Position.X, 0, spawnPoint.Position.Z); + AddChild(duplicated); + } } } diff --git a/Zennysoft.Game.Ma/src/map/dungeon/corridors/A1 - Corridor - 1 Block.tscn b/Zennysoft.Game.Ma/src/map/dungeon/corridors/A1 - Corridor - 1 Block.tscn index 88bb8bb3..1fe1dab3 100644 --- a/Zennysoft.Game.Ma/src/map/dungeon/corridors/A1 - Corridor - 1 Block.tscn +++ b/Zennysoft.Game.Ma/src/map/dungeon/corridors/A1 - Corridor - 1 Block.tscn @@ -1,7 +1,8 @@ -[gd_scene load_steps=6 format=3 uid="uid://8d6n4tk5aam0"] +[gd_scene load_steps=7 format=3 uid="uid://8d6n4tk5aam0"] [ext_resource type="Script" uid="uid://csxfet8l04swm" path="res://src/map/dungeon/code/CorridorRoom.cs" id="1_cg6gx"] [ext_resource type="PackedScene" uid="uid://cjknjhcx843r6" path="res://src/map/dungeon/models/Corridor Models/A1 Corridor Blocks/CA1_1BLOCK.glb" id="2_ppwe6"] +[ext_resource type="PackedScene" uid="uid://dn50mjadk31jn" path="res://src/minimap/Map Revealer Cube.tscn" id="3_g2f4c"] [sub_resource type="BoxShape3D" id="BoxShape3D_wumfs"] size = Vector3(3.98187, 3.98102, 3.88313) @@ -29,15 +30,8 @@ collision_mask = 10 transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 2.0035, -9.84679, -1.94172) shape = SubResource("BoxShape3D_wumfs") -[node name="Minimap" type="Node3D" parent="."] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0.0586098, 0) - -[node name="Minimap" type="MeshInstance3D" parent="Minimap"] -unique_name_in_owner = true -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 1.93029, 0.00530069, -2.02862) -visible = false -layers = 2 -skeleton = NodePath("../..") +[node name="Reveal Cube" parent="Room" instance=ExtResource("3_g2f4c")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 2, 0, -2) [node name="Collision" type="Node3D" parent="."] diff --git a/Zennysoft.Game.Ma/src/map/dungeon/corridors/A1 - Corridor - 2 Block .tscn b/Zennysoft.Game.Ma/src/map/dungeon/corridors/A1 - Corridor - 2 Block .tscn index 3e097d3b..00322ca7 100644 --- a/Zennysoft.Game.Ma/src/map/dungeon/corridors/A1 - Corridor - 2 Block .tscn +++ b/Zennysoft.Game.Ma/src/map/dungeon/corridors/A1 - Corridor - 2 Block .tscn @@ -1,7 +1,8 @@ -[gd_scene load_steps=6 format=3 uid="uid://dfjc54vc4yc45"] +[gd_scene load_steps=7 format=3 uid="uid://dfjc54vc4yc45"] [ext_resource type="Script" uid="uid://csxfet8l04swm" path="res://src/map/dungeon/code/CorridorRoom.cs" id="1_iqgx8"] [ext_resource type="PackedScene" uid="uid://bfhasvqwthkmf" path="res://src/map/dungeon/models/Corridor Models/A1 Corridor Blocks/CA1_2BLOCK.glb" id="2_feq52"] +[ext_resource type="PackedScene" uid="uid://dn50mjadk31jn" path="res://src/minimap/Map Revealer Cube.tscn" id="3_a8qsn"] [sub_resource type="BoxShape3D" id="BoxShape3D_k6ifr"] size = Vector3(7.99652, 3.98102, 3.88313) @@ -29,15 +30,11 @@ collision_mask = 10 transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 4.01083, -9.84679, -1.94172) shape = SubResource("BoxShape3D_k6ifr") -[node name="Minimap" type="Node3D" parent="."] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0.0586098, 0) +[node name="Reveal Cube" parent="Room" instance=ExtResource("3_a8qsn")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 2, 0, -2) -[node name="Minimap" type="MeshInstance3D" parent="Minimap"] -unique_name_in_owner = true -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 1.93029, 0.00530069, -2.02862) -visible = false -layers = 2 -skeleton = NodePath("../..") +[node name="Reveal Cube2" parent="Room" instance=ExtResource("3_a8qsn")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 6, 0, -2) [node name="Collision" type="Node3D" parent="."] diff --git a/Zennysoft.Game.Ma/src/map/dungeon/corridors/A1 - Corridor - 3 Block .tscn b/Zennysoft.Game.Ma/src/map/dungeon/corridors/A1 - Corridor - 3 Block .tscn index 9850beb8..ee17ac9b 100644 --- a/Zennysoft.Game.Ma/src/map/dungeon/corridors/A1 - Corridor - 3 Block .tscn +++ b/Zennysoft.Game.Ma/src/map/dungeon/corridors/A1 - Corridor - 3 Block .tscn @@ -1,7 +1,8 @@ -[gd_scene load_steps=7 format=3 uid="uid://dlrd6vvwaqq3n"] +[gd_scene load_steps=8 format=3 uid="uid://dlrd6vvwaqq3n"] [ext_resource type="Script" uid="uid://csxfet8l04swm" path="res://src/map/dungeon/code/CorridorRoom.cs" id="1_ph8ua"] [ext_resource type="PackedScene" uid="uid://bxi1l14rcpjpf" path="res://src/map/dungeon/models/Corridor Models/A1 Corridor Blocks/CA1_3BLOCK.glb" id="2_oc3ya"] +[ext_resource type="PackedScene" uid="uid://dn50mjadk31jn" path="res://src/minimap/Map Revealer Cube.tscn" id="3_25pxh"] [sub_resource type="BoxShape3D" id="BoxShape3D_lbqh3"] size = Vector3(1.98914, 3.98102, 3.88313) @@ -36,15 +37,14 @@ shape = SubResource("BoxShape3D_lbqh3") transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 10.9926, -9.84679, -2.04589) shape = SubResource("BoxShape3D_lbqh3") -[node name="Minimap" type="Node3D" parent="."] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0.0586098, 0) +[node name="Reveal Cube" parent="Room" instance=ExtResource("3_25pxh")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 10, 0, -2) -[node name="Minimap" type="MeshInstance3D" parent="Minimap"] -unique_name_in_owner = true -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 1.93029, 0.00530069, -2.02862) -visible = false -layers = 2 -skeleton = NodePath("../..") +[node name="Reveal Cube2" parent="Room" instance=ExtResource("3_25pxh")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 6, 0, -2) + +[node name="Reveal Cube3" parent="Room" instance=ExtResource("3_25pxh")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 2, 0, -2) [node name="Collision" type="Node3D" parent="."] diff --git a/Zennysoft.Game.Ma/src/map/dungeon/corridors/A1 - Corridor - 4 Block .tscn b/Zennysoft.Game.Ma/src/map/dungeon/corridors/A1 - Corridor - 4 Block .tscn index e09c9264..d2e0ae52 100644 --- a/Zennysoft.Game.Ma/src/map/dungeon/corridors/A1 - Corridor - 4 Block .tscn +++ b/Zennysoft.Game.Ma/src/map/dungeon/corridors/A1 - Corridor - 4 Block .tscn @@ -1,7 +1,8 @@ -[gd_scene load_steps=7 format=3 uid="uid://b6tcqnvlc5ayk"] +[gd_scene load_steps=8 format=3 uid="uid://b6tcqnvlc5ayk"] [ext_resource type="Script" uid="uid://csxfet8l04swm" path="res://src/map/dungeon/code/CorridorRoom.cs" id="1_icfon"] [ext_resource type="PackedScene" uid="uid://d0s23qa45g3pg" path="res://src/map/dungeon/models/Corridor Models/A1 Corridor Blocks/CA1_4BLOCK.glb" id="2_20qq7"] +[ext_resource type="PackedScene" uid="uid://dn50mjadk31jn" path="res://src/minimap/Map Revealer Cube.tscn" id="3_oov8q"] [sub_resource type="BoxShape3D" id="BoxShape3D_kf5o1"] size = Vector3(1.98914, 3.98102, 3.88313) @@ -37,15 +38,17 @@ shape = SubResource("BoxShape3D_kf5o1") transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 14.99, -9.84679, -2.03668) shape = SubResource("BoxShape3D_kf5o1") -[node name="Minimap" type="Node3D" parent="."] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0.0586098, 0) +[node name="Reveal Cube" parent="Room" instance=ExtResource("3_oov8q")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 2, 0, -2) -[node name="Minimap" type="MeshInstance3D" parent="Minimap"] -unique_name_in_owner = true -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 1.93029, 0.00530069, -2.02862) -visible = false -layers = 2 -skeleton = NodePath("../..") +[node name="Reveal Cube2" parent="Room" instance=ExtResource("3_oov8q")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 6, 0, -2) + +[node name="Reveal Cube3" parent="Room" instance=ExtResource("3_oov8q")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 10, 0, -2) + +[node name="Reveal Cube4" parent="Room" instance=ExtResource("3_oov8q")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 14, 0, -2) [node name="StaticBody3D" type="StaticBody3D" parent="."] diff --git a/Zennysoft.Game.Ma/src/map/dungeon/corridors/A1 - Corridor - 5 Block .tscn b/Zennysoft.Game.Ma/src/map/dungeon/corridors/A1 - Corridor - 5 Block .tscn index 7222fbba..0c1ea25d 100644 --- a/Zennysoft.Game.Ma/src/map/dungeon/corridors/A1 - Corridor - 5 Block .tscn +++ b/Zennysoft.Game.Ma/src/map/dungeon/corridors/A1 - Corridor - 5 Block .tscn @@ -1,7 +1,8 @@ -[gd_scene load_steps=7 format=3 uid="uid://ckopnseygq01m"] +[gd_scene load_steps=8 format=3 uid="uid://ckopnseygq01m"] [ext_resource type="Script" uid="uid://csxfet8l04swm" path="res://src/map/dungeon/code/CorridorRoom.cs" id="1_67h0r"] [ext_resource type="PackedScene" uid="uid://csye32n2nh7uo" path="res://src/map/dungeon/models/Corridor Models/A1 Corridor Blocks/CA1_5BLOCK.glb" id="2_e2gre"] +[ext_resource type="PackedScene" uid="uid://dn50mjadk31jn" path="res://src/minimap/Map Revealer Cube.tscn" id="3_w2iy3"] [sub_resource type="BoxShape3D" id="BoxShape3D_5qk5g"] size = Vector3(1.98914, 3.98102, 3.88313) @@ -37,15 +38,20 @@ shape = SubResource("BoxShape3D_5qk5g") transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 19.0111, -9.84679, -2.04151) shape = SubResource("BoxShape3D_5qk5g") -[node name="Minimap" type="Node3D" parent="."] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0.0586098, 0) +[node name="Reveal Cube" parent="Room" instance=ExtResource("3_w2iy3")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 2, 0, -2) -[node name="Minimap" type="MeshInstance3D" parent="Minimap"] -unique_name_in_owner = true -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 1.93029, 0.00530069, -2.02862) -visible = false -layers = 2 -skeleton = NodePath("../..") +[node name="Reveal Cube2" parent="Room" instance=ExtResource("3_w2iy3")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 6, 0, -2) + +[node name="Reveal Cube3" parent="Room" instance=ExtResource("3_w2iy3")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 10, 0, -2) + +[node name="Reveal Cube4" parent="Room" instance=ExtResource("3_w2iy3")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 14, 0, -2) + +[node name="Reveal Cube5" parent="Room" instance=ExtResource("3_w2iy3")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 18, 0, -2) [node name="StaticBody3D" type="StaticBody3D" parent="."] diff --git a/Zennysoft.Game.Ma/src/map/dungeon/corridors/A1 - Corridor - Corner .tscn b/Zennysoft.Game.Ma/src/map/dungeon/corridors/A1 - Corridor - Corner .tscn index f0f439f7..83b86383 100644 --- a/Zennysoft.Game.Ma/src/map/dungeon/corridors/A1 - Corridor - Corner .tscn +++ b/Zennysoft.Game.Ma/src/map/dungeon/corridors/A1 - Corridor - Corner .tscn @@ -1,7 +1,8 @@ -[gd_scene load_steps=11 format=3 uid="uid://cjxrkxr0bgeh1"] +[gd_scene load_steps=12 format=3 uid="uid://cjxrkxr0bgeh1"] [ext_resource type="Script" uid="uid://csxfet8l04swm" path="res://src/map/dungeon/code/CorridorRoom.cs" id="1_lawpv"] [ext_resource type="PackedScene" uid="uid://d3iikbygqlww5" path="res://src/map/dungeon/models/Corridor Models/A1 Corridor Blocks/CA1_CORNERBLOCK.glb" id="2_huy2k"] +[ext_resource type="PackedScene" uid="uid://dn50mjadk31jn" path="res://src/minimap/Map Revealer Cube.tscn" id="3_so2qp"] [sub_resource type="BoxShape3D" id="BoxShape3D_87led"] size = Vector3(1.98914, 3.98102, 3.72977) @@ -50,15 +51,14 @@ shape = SubResource("BoxShape3D_87led") transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 6.9863, -9.84679, -2.03325) shape = SubResource("BoxShape3D_rj2in") -[node name="Minimap" type="Node3D" parent="."] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0.0586098, 0) +[node name="Reveal Cube" parent="Room" instance=ExtResource("3_so2qp")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 2, 0, -2) -[node name="Minimap" type="MeshInstance3D" parent="Minimap"] -unique_name_in_owner = true -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 1.93029, 0.00530069, -2.02862) -visible = false -layers = 2 -skeleton = NodePath("../..") +[node name="Reveal Cube2" parent="Room" instance=ExtResource("3_so2qp")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 6, 0, -2) + +[node name="Reveal Cube3" parent="Room" instance=ExtResource("3_so2qp")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 2, 0, -6) [node name="StaticBody3D" type="StaticBody3D" parent="."] diff --git a/Zennysoft.Game.Ma/src/map/dungeon/corridors/A1 - Corridor - Cross Block.tscn b/Zennysoft.Game.Ma/src/map/dungeon/corridors/A1 - Corridor - Cross Block.tscn index 819e0ecb..22553393 100644 --- a/Zennysoft.Game.Ma/src/map/dungeon/corridors/A1 - Corridor - Cross Block.tscn +++ b/Zennysoft.Game.Ma/src/map/dungeon/corridors/A1 - Corridor - Cross Block.tscn @@ -1,7 +1,8 @@ -[gd_scene load_steps=7 format=3 uid="uid://cmobnodvd3884"] +[gd_scene load_steps=8 format=3 uid="uid://cmobnodvd3884"] [ext_resource type="Script" uid="uid://csxfet8l04swm" path="res://src/map/dungeon/code/CorridorRoom.cs" id="1_6txl7"] [ext_resource type="PackedScene" uid="uid://cotx3wyjwiuv2" path="res://src/map/dungeon/models/Corridor Models/A1 Corridor Blocks/CA1_CROSSBLOCK.glb" id="2_7kt5i"] +[ext_resource type="PackedScene" uid="uid://dn50mjadk31jn" path="res://src/minimap/Map Revealer Cube.tscn" id="3_d0ovo"] [sub_resource type="BoxShape3D" id="BoxShape3D_gkwp0"] size = Vector3(1.98914, 3.98102, 3.88313) @@ -46,15 +47,20 @@ shape = SubResource("BoxShape3D_gkwp0") transform = Transform3D(-4.37114e-08, 0, 1, 0, 1, 0, -1, 0, -4.37114e-08, 1.98159, -9.84679, -7.00162) shape = SubResource("BoxShape3D_gkwp0") -[node name="Minimap" type="Node3D" parent="."] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0.0586098, 0) +[node name="Reveal Cube" parent="Room" instance=ExtResource("3_d0ovo")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 2, 0, -2) -[node name="Minimap" type="MeshInstance3D" parent="Minimap"] -unique_name_in_owner = true -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 1.93029, 0.00530069, -2.02862) -visible = false -layers = 2 -skeleton = NodePath("../..") +[node name="Reveal Cube2" parent="Room" instance=ExtResource("3_d0ovo")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 6, 0, -2) + +[node name="Reveal Cube3" parent="Room" instance=ExtResource("3_d0ovo")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -2, 0, -2) + +[node name="Reveal Cube4" parent="Room" instance=ExtResource("3_d0ovo")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 2, 0, 2) + +[node name="Reveal Cube5" parent="Room" instance=ExtResource("3_d0ovo")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 2, 0, -6) [node name="StaticBody3D" type="StaticBody3D" parent="."] diff --git a/Zennysoft.Game.Ma/src/map/dungeon/corridors/A1 - Corridor - S-Block .tscn b/Zennysoft.Game.Ma/src/map/dungeon/corridors/A1 - Corridor - S-Block .tscn index c7863938..79dd15ed 100644 --- a/Zennysoft.Game.Ma/src/map/dungeon/corridors/A1 - Corridor - S-Block .tscn +++ b/Zennysoft.Game.Ma/src/map/dungeon/corridors/A1 - Corridor - S-Block .tscn @@ -1,7 +1,8 @@ -[gd_scene load_steps=13 format=3 uid="uid://cf28w6f6dvu5a"] +[gd_scene load_steps=14 format=3 uid="uid://cf28w6f6dvu5a"] [ext_resource type="Script" uid="uid://csxfet8l04swm" path="res://src/map/dungeon/code/CorridorRoom.cs" id="1_u04dj"] [ext_resource type="PackedScene" uid="uid://bn4ix4eirgmx4" path="res://src/map/dungeon/models/Corridor Models/A1 Corridor Blocks/CA1_SBLOCK.glb" id="2_j3ujp"] +[ext_resource type="PackedScene" uid="uid://dn50mjadk31jn" path="res://src/minimap/Map Revealer Cube.tscn" id="3_fp0e4"] [sub_resource type="BoxShape3D" id="BoxShape3D_1x558"] size = Vector3(1.98914, 3.98102, 3.88313) @@ -39,7 +40,6 @@ script = ExtResource("1_u04dj") [node name="CA1_SBLOCK" parent="." instance=ExtResource("2_j3ujp")] [node name="Room" type="Node3D" parent="."] -visible = false [node name="Room" type="Area3D" parent="Room"] unique_name_in_owner = true @@ -55,15 +55,23 @@ shape = SubResource("BoxShape3D_1x558") transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 10.8223, -9.84679, -14.0183) shape = SubResource("BoxShape3D_1x558") -[node name="Minimap" type="Node3D" parent="."] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0.0586098, 0) +[node name="Reveal Cube" parent="Room" instance=ExtResource("3_fp0e4")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 2, 0, -2) -[node name="Minimap" type="MeshInstance3D" parent="Minimap"] -unique_name_in_owner = true -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 1.93029, 0.00530069, -2.02862) -visible = false -layers = 2 -skeleton = NodePath("../..") +[node name="Reveal Cube2" parent="Room" instance=ExtResource("3_fp0e4")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 6, 0, -2) + +[node name="Reveal Cube3" parent="Room" instance=ExtResource("3_fp0e4")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 6, 0, -6) + +[node name="Reveal Cube4" parent="Room" instance=ExtResource("3_fp0e4")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 6, 0, -10) + +[node name="Reveal Cube5" parent="Room" instance=ExtResource("3_fp0e4")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 6, 0, -14) + +[node name="Reveal Cube6" parent="Room" instance=ExtResource("3_fp0e4")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 10, 0, -14) [node name="StaticBody3D" type="StaticBody3D" parent="."] diff --git a/Zennysoft.Game.Ma/src/map/dungeon/corridors/A1 - Corridor - T-Block.tscn b/Zennysoft.Game.Ma/src/map/dungeon/corridors/A1 - Corridor - T-Block.tscn index 354c1a85..346ad1f8 100644 --- a/Zennysoft.Game.Ma/src/map/dungeon/corridors/A1 - Corridor - T-Block.tscn +++ b/Zennysoft.Game.Ma/src/map/dungeon/corridors/A1 - Corridor - T-Block.tscn @@ -1,7 +1,8 @@ -[gd_scene load_steps=10 format=3 uid="uid://dgimg6s6w3xxd"] +[gd_scene load_steps=11 format=3 uid="uid://dgimg6s6w3xxd"] [ext_resource type="Script" uid="uid://csxfet8l04swm" path="res://src/map/dungeon/code/CorridorRoom.cs" id="1_jw60f"] [ext_resource type="PackedScene" uid="uid://cwf4awh1e7wwf" path="res://src/map/dungeon/models/Corridor Models/A1 Corridor Blocks/CA1_TBLOCK.glb" id="2_8iso1"] +[ext_resource type="PackedScene" uid="uid://dn50mjadk31jn" path="res://src/minimap/Map Revealer Cube.tscn" id="3_23kwe"] [sub_resource type="BoxShape3D" id="BoxShape3D_p4vjy"] size = Vector3(3.97492, 3.98102, 3.88313) @@ -30,7 +31,6 @@ script = ExtResource("1_jw60f") [node name="CA1_TBLOCK" parent="." instance=ExtResource("2_8iso1")] [node name="Room" type="Node3D" parent="."] -visible = false [node name="Room" type="Area3D" parent="Room"] unique_name_in_owner = true @@ -50,15 +50,17 @@ shape = SubResource("BoxShape3D_p4vjy") transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 1.99943, -9.84679, -1.9657) shape = SubResource("BoxShape3D_p4vjy") -[node name="Minimap" type="Node3D" parent="."] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0.0586098, 0) +[node name="Reveal Cube" parent="Room" instance=ExtResource("3_23kwe")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 2, 0, -2) -[node name="Minimap" type="MeshInstance3D" parent="Minimap"] -unique_name_in_owner = true -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 1.93029, 0.00530069, -2.02862) -visible = false -layers = 2 -skeleton = NodePath("../..") +[node name="Reveal Cube2" parent="Room" instance=ExtResource("3_23kwe")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 2, 0, -6) + +[node name="Reveal Cube3" parent="Room" instance=ExtResource("3_23kwe")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 6, 0, -6) + +[node name="Reveal Cube4" parent="Room" instance=ExtResource("3_23kwe")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 2, 0, -10) [node name="StaticBody3D" type="StaticBody3D" parent="."] diff --git a/Zennysoft.Game.Ma/src/map/dungeon/corridors/A1 - Corridor - Z-Block.tscn b/Zennysoft.Game.Ma/src/map/dungeon/corridors/A1 - Corridor - Z-Block.tscn index 345ae1c1..ae87be99 100644 --- a/Zennysoft.Game.Ma/src/map/dungeon/corridors/A1 - Corridor - Z-Block.tscn +++ b/Zennysoft.Game.Ma/src/map/dungeon/corridors/A1 - Corridor - Z-Block.tscn @@ -1,7 +1,8 @@ -[gd_scene load_steps=13 format=3 uid="uid://8u5kue6pljh0"] +[gd_scene load_steps=14 format=3 uid="uid://8u5kue6pljh0"] [ext_resource type="Script" uid="uid://csxfet8l04swm" path="res://src/map/dungeon/code/CorridorRoom.cs" id="1_q7f8v"] [ext_resource type="PackedScene" uid="uid://kjv0f5l7xast" path="res://src/map/dungeon/models/Corridor Models/A1 Corridor Blocks/CA1_ZBLOCK.glb" id="2_apwqt"] +[ext_resource type="PackedScene" uid="uid://dn50mjadk31jn" path="res://src/minimap/Map Revealer Cube.tscn" id="3_r3hgq"] [sub_resource type="BoxShape3D" id="BoxShape3D_l07sf"] size = Vector3(1.98914, 3.98102, 3.88313) @@ -55,15 +56,23 @@ shape = SubResource("BoxShape3D_l07sf") transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 10.8223, -9.84679, 9.91407) shape = SubResource("BoxShape3D_l07sf") -[node name="Minimap" type="Node3D" parent="."] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0.0586098, 0) +[node name="Reveal Cube" parent="Room" instance=ExtResource("3_r3hgq")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 2, 0, -2) -[node name="Minimap" type="MeshInstance3D" parent="Minimap"] -unique_name_in_owner = true -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 1.93029, 0.00530069, -2.02862) -visible = false -layers = 2 -skeleton = NodePath("../..") +[node name="Reveal Cube2" parent="Room" instance=ExtResource("3_r3hgq")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 6, 0, -2) + +[node name="Reveal Cube3" parent="Room" instance=ExtResource("3_r3hgq")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 6, 0, 2) + +[node name="Reveal Cube4" parent="Room" instance=ExtResource("3_r3hgq")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 6, 0, 6) + +[node name="Reveal Cube5" parent="Room" instance=ExtResource("3_r3hgq")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 6, 0, 10) + +[node name="Reveal Cube6" parent="Room" instance=ExtResource("3_r3hgq")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 10, 0, 10) [node name="StaticBody3D" type="StaticBody3D" parent="."] diff --git a/Zennysoft.Game.Ma/src/map/dungeon/corridors/A1 - Corridor - Zag Block .tscn b/Zennysoft.Game.Ma/src/map/dungeon/corridors/A1 - Corridor - Zag Block .tscn index 89d55d6f..60ec7250 100644 --- a/Zennysoft.Game.Ma/src/map/dungeon/corridors/A1 - Corridor - Zag Block .tscn +++ b/Zennysoft.Game.Ma/src/map/dungeon/corridors/A1 - Corridor - Zag Block .tscn @@ -1,7 +1,8 @@ -[gd_scene load_steps=14 format=3 uid="uid://nghm4vbxdvcx"] +[gd_scene load_steps=15 format=3 uid="uid://nghm4vbxdvcx"] [ext_resource type="Script" uid="uid://csxfet8l04swm" path="res://src/map/dungeon/code/CorridorRoom.cs" id="1_unmj6"] [ext_resource type="PackedScene" uid="uid://dlj1dadm3muxe" path="res://src/map/dungeon/models/Corridor Models/A1 Corridor Blocks/CA1-ZagBlock.glb" id="2_gr5ss"] +[ext_resource type="PackedScene" uid="uid://dn50mjadk31jn" path="res://src/minimap/Map Revealer Cube.tscn" id="3_fvi2i"] [sub_resource type="BoxShape3D" id="BoxShape3D_5t05g"] size = Vector3(1.98914, 3.98102, 3.88313) @@ -58,15 +59,23 @@ shape = SubResource("BoxShape3D_5t05g") transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -7.02993, -9.84679, 6.0383) shape = SubResource("BoxShape3D_5t05g") -[node name="Minimap" type="Node3D" parent="."] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0.0586098, 0) +[node name="Reveal Cube" parent="Room" instance=ExtResource("3_fvi2i")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 2, 0, -2) -[node name="Minimap" type="MeshInstance3D" parent="Minimap"] -unique_name_in_owner = true -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 1.93029, 0.00530069, -2.02862) -visible = false -layers = 2 -skeleton = NodePath("../..") +[node name="Reveal Cube2" parent="Room" instance=ExtResource("3_fvi2i")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 6, 0, -2) + +[node name="Reveal Cube3" parent="Room" instance=ExtResource("3_fvi2i")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 2, 0, 2) + +[node name="Reveal Cube4" parent="Room" instance=ExtResource("3_fvi2i")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -2, 0, 2) + +[node name="Reveal Cube5" parent="Room" instance=ExtResource("3_fvi2i")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -2, 0, 6) + +[node name="Reveal Cube6" parent="Room" instance=ExtResource("3_fvi2i")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -6, 0, 6) [node name="StaticBody3D" type="StaticBody3D" parent="."] diff --git a/Zennysoft.Game.Ma/src/map/dungeon/floors/Floor01/Floor 1A.tscn b/Zennysoft.Game.Ma/src/map/dungeon/floors/Floor01/Floor 1A.tscn index a140c200..94389aaf 100644 --- a/Zennysoft.Game.Ma/src/map/dungeon/floors/Floor01/Floor 1A.tscn +++ b/Zennysoft.Game.Ma/src/map/dungeon/floors/Floor01/Floor 1A.tscn @@ -22,17 +22,6 @@ polygons = [PackedInt32Array(1, 0, 2), PackedInt32Array(2, 0, 3), PackedInt32Arr [sub_resource type="PlaneMesh" id="PlaneMesh_csng8"] size = Vector2(200, 200) -[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_buew1"] -transparency = 1 -cull_mode = 2 -shading_mode = 0 -albedo_texture = ExtResource("14_csng8") -texture_filter = 0 - -[sub_resource type="PlaneMesh" id="PlaneMesh_tmm58"] -material = SubResource("StandardMaterial3D_buew1") -size = Vector2(140, 60) - [sub_resource type="Animation" id="Animation_iert2"] resource_name = "Pulse" length = 2.0125 @@ -71,6 +60,17 @@ _data = { &"RESET": SubResource("Animation_xsgnx") } +[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_buew1"] +transparency = 1 +cull_mode = 2 +shading_mode = 0 +albedo_texture = ExtResource("14_csng8") +texture_filter = 0 + +[sub_resource type="PlaneMesh" id="PlaneMesh_tmm58"] +material = SubResource("StandardMaterial3D_buew1") +size = Vector2(140, 60) + [node name="Floor1a" type="Node3D"] script = ExtResource("1_giyav") @@ -154,11 +154,17 @@ layers = 0 mesh = SubResource("PlaneMesh_csng8") skeleton = NodePath("../..") -[node name="Minimap" type="MeshInstance3D" parent="."] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -21.0225, 23.2377, 54.897) -mesh = SubResource("PlaneMesh_tmm58") +[node name="Minimap" type="Node3D" parent="."] [node name="AnimationPlayer" type="AnimationPlayer" parent="Minimap"] +root_node = NodePath("../Minimap") libraries = { &"": SubResource("AnimationLibrary_gya62") } + +[node name="Minimap" type="MeshInstance3D" parent="Minimap"] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -21.0225, -3.7623, 54.897) +layers = 2 +sorting_offset = 300.0 +mesh = SubResource("PlaneMesh_tmm58") +skeleton = NodePath("../..") diff --git a/Zennysoft.Game.Ma/src/map/dungeon/rooms/Set A/01. Small Block A1.tscn b/Zennysoft.Game.Ma/src/map/dungeon/rooms/Set A/01. Small Block A1.tscn index 77ab2e7b..8ad62a55 100644 --- a/Zennysoft.Game.Ma/src/map/dungeon/rooms/Set A/01. Small Block A1.tscn +++ b/Zennysoft.Game.Ma/src/map/dungeon/rooms/Set A/01. Small Block A1.tscn @@ -1,4 +1,4 @@ -[gd_scene load_steps=12 format=3 uid="uid://dv6umo0bmlyyj"] +[gd_scene load_steps=14 format=3 uid="uid://dv6umo0bmlyyj"] [ext_resource type="PackedScene" uid="uid://bwx3fvmfagdtr" path="res://src/map/dungeon/models/Area 1/SmallBlockRoom/A1-SmallBlock.glb" id="1_mpkwb"] [ext_resource type="Script" uid="uid://dhollu4j3pynq" path="res://src/map/dungeon/code/MonsterRoom.cs" id="1_r0cck"] @@ -28,7 +28,14 @@ size = Vector3(4.02051, 3.9624, 4.02655) size = Vector3(19.9524, 0.1, 19.9805) [sub_resource type="BoxShape3D" id="BoxShape3D_yk0st"] -size = Vector3(12.0847, 8, 12.0664) +size = Vector3(19.9269, 8, 20.0117) + +[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_r0cck"] +albedo_color = Color(0, 0, 0, 1) + +[sub_resource type="PlaneMesh" id="PlaneMesh_r0cck"] +material = SubResource("StandardMaterial3D_r0cck") +size = Vector2(20.5, 20.5) [node name="01_SmallBlockA1" type="Node3D"] script = ExtResource("1_r0cck") @@ -124,5 +131,16 @@ collision_layer = 0 collision_mask = 10 [node name="CollisionShape3D" type="CollisionShape3D" parent="Room/Room"] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 10.3539, 4.09071, 8.84395) +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 10.2995, 4.09071, 8.86348) shape = SubResource("BoxShape3D_yk0st") + +[node name="MinimapShadow" type="Node3D" parent="Room"] +unique_name_in_owner = true + +[node name="MeshInstance3D" type="MeshInstance3D" parent="Room/MinimapShadow"] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 10.337, -0.377879, 8.873) +layers = 2 +sorting_offset = 100.0 +mesh = SubResource("PlaneMesh_r0cck") + +[editable path="Model/A1-SmallBlock"] diff --git a/Zennysoft.Game.Ma/src/map/dungeon/rooms/Set A/02. Big Block Room.tscn b/Zennysoft.Game.Ma/src/map/dungeon/rooms/Set A/02. Big Block Room.tscn index 4556ca7d..21a5049c 100644 --- a/Zennysoft.Game.Ma/src/map/dungeon/rooms/Set A/02. Big Block Room.tscn +++ b/Zennysoft.Game.Ma/src/map/dungeon/rooms/Set A/02. Big Block Room.tscn @@ -1,4 +1,4 @@ -[gd_scene load_steps=19 format=3 uid="uid://by2op0p65ht27"] +[gd_scene load_steps=21 format=3 uid="uid://by2op0p65ht27"] [ext_resource type="Script" uid="uid://dhollu4j3pynq" path="res://src/map/dungeon/code/MonsterRoom.cs" id="1_apti7"] [ext_resource type="PackedScene" uid="uid://cakhdxwa4pp0" path="res://src/map/dungeon/models/Area 1/LargeBlockRoom/A1-LargeBlock.glb" id="1_kpudl"] @@ -51,6 +51,13 @@ size = Vector3(1.99298, 8, 2.01283) [sub_resource type="BoxShape3D" id="BoxShape3D_qt2sk"] size = Vector3(36.0175, 8, 20.0029) +[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_r0cck"] +albedo_color = Color(0, 0, 0, 1) + +[sub_resource type="PlaneMesh" id="PlaneMesh_apti7"] +material = SubResource("StandardMaterial3D_r0cck") +size = Vector2(44.5, 21) + [node name="02_BigBlockRoom" type="Node3D"] script = ExtResource("1_apti7") @@ -186,3 +193,12 @@ collision_mask = 10 [node name="CollisionShape3D" type="CollisionShape3D" parent="Room/Room"] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0.826404, 1.9843, -0.0330553) shape = SubResource("BoxShape3D_qt2sk") + +[node name="MinimapShadow" type="Node3D" parent="Room"] +unique_name_in_owner = true + +[node name="MeshInstance3D" type="MeshInstance3D" parent="Room/MinimapShadow"] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0.883196, -2.51358, -0.0243163) +layers = 2 +sorting_offset = 100.0 +mesh = SubResource("PlaneMesh_apti7") diff --git a/Zennysoft.Game.Ma/src/map/dungeon/rooms/Set A/03. Antechamber A.tscn b/Zennysoft.Game.Ma/src/map/dungeon/rooms/Set A/03. Antechamber A.tscn index 20710a2e..bf4e7fdf 100644 --- a/Zennysoft.Game.Ma/src/map/dungeon/rooms/Set A/03. Antechamber A.tscn +++ b/Zennysoft.Game.Ma/src/map/dungeon/rooms/Set A/03. Antechamber A.tscn @@ -1,4 +1,4 @@ -[gd_scene load_steps=60 format=4 uid="uid://dpec2lbt83dhe"] +[gd_scene load_steps=62 format=4 uid="uid://dpec2lbt83dhe"] [ext_resource type="Script" uid="uid://dhollu4j3pynq" path="res://src/map/dungeon/code/MonsterRoom.cs" id="1_312b8"] [ext_resource type="Texture2D" uid="uid://dloho0aquwytw" path="res://src/map/dungeon/models/Area 1/Antechamber/antechamberfix_WALL TILE 1.jpg" id="2_312b8"] @@ -850,6 +850,13 @@ radius = 0.452637 [sub_resource type="BoxShape3D" id="BoxShape3D_e81mq"] size = Vector3(20, 8, 16) +[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_oetqg"] +albedo_color = Color(0, 0, 0, 1) + +[sub_resource type="PlaneMesh" id="PlaneMesh_8327w"] +material = SubResource("StandardMaterial3D_oetqg") +size = Vector2(21, 17) + [sub_resource type="Curve" id="Curve_jig7d"] _limits = [-2.0, 2.0, 0.0, 1.0] _data = [Vector2(0.00358423, 0.230769), 0.0, 0.0, 0, 0, Vector2(0.982079, -1.03846), 0.0, 0.0, 0, 0] @@ -1036,7 +1043,6 @@ transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 10.9752, -3.71027, 11.0699) [node name="Room" type="Node3D" parent="."] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -0.749275, 2.10907, 0) -visible = false [node name="Room" type="Area3D" parent="Room"] unique_name_in_owner = true @@ -1047,6 +1053,15 @@ collision_mask = 10 transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 11.1021, 1.9843, 8.2923) shape = SubResource("BoxShape3D_e81mq") +[node name="MinimapShadow" type="Node3D" parent="Room"] +unique_name_in_owner = true + +[node name="MeshInstance3D" type="MeshInstance3D" parent="Room/MinimapShadow"] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 10.8047, -2.35338, 8.12474) +layers = 2 +sorting_offset = 100.0 +mesh = SubResource("PlaneMesh_8327w") + [node name="Lights" type="Node3D" parent="."] [node name="OmniLight3D" type="OmniLight3D" parent="Lights"] diff --git a/Zennysoft.Game.Ma/src/map/dungeon/rooms/Set A/04. Tree Antechamber.tscn b/Zennysoft.Game.Ma/src/map/dungeon/rooms/Set A/04. Tree Antechamber.tscn index 2125426e..d49c1cf4 100644 --- a/Zennysoft.Game.Ma/src/map/dungeon/rooms/Set A/04. Tree Antechamber.tscn +++ b/Zennysoft.Game.Ma/src/map/dungeon/rooms/Set A/04. Tree Antechamber.tscn @@ -1,4 +1,4 @@ -[gd_scene load_steps=21 format=3 uid="uid://tpgwccr6v43e"] +[gd_scene load_steps=23 format=3 uid="uid://tpgwccr6v43e"] [ext_resource type="Script" uid="uid://dhollu4j3pynq" path="res://src/map/dungeon/code/MonsterRoom.cs" id="1_58osi"] [ext_resource type="PackedScene" uid="uid://cljj515aklhoq" path="res://src/map/dungeon/models/Area 1/Tree/A1-Tree.glb" id="2_rr4cd"] @@ -44,6 +44,13 @@ radius = 0.452637 [sub_resource type="BoxShape3D" id="BoxShape3D_cgshv"] size = Vector3(20, 8, 16) +[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_1sirf"] +albedo_color = Color(0, 0, 0, 1) + +[sub_resource type="PlaneMesh" id="PlaneMesh_q0uor"] +material = SubResource("StandardMaterial3D_1sirf") +size = Vector2(22, 17) + [sub_resource type="Curve" id="Curve_82gcq"] _limits = [-2.0, 2.0, 0.0, 1.0] _data = [Vector2(0.00358423, 0.230769), 0.0, 0.0, 0, 0, Vector2(0.982079, -1.03846), 0.0, 0.0, 0, 0] @@ -189,7 +196,6 @@ shape = SubResource("CylinderShape3D_1sirf") [node name="Spawn Points" type="Node3D" parent="."] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 1.7193, 0) -visible = false [node name="PlayerSpawn" type="Marker3D" parent="Spawn Points"] unique_name_in_owner = true @@ -217,7 +223,6 @@ transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 15.2757, -0.246464, 4.4206) [node name="Room" type="Node3D" parent="."] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 2.00223, 0) -visible = false [node name="Room" type="Area3D" parent="Room"] unique_name_in_owner = true @@ -228,6 +233,16 @@ collision_mask = 10 transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 10.0457, 1.9843, 8) shape = SubResource("BoxShape3D_cgshv") +[node name="MinimapShadow" type="Node3D" parent="Room"] +unique_name_in_owner = true + +[node name="MeshInstance3D" type="MeshInstance3D" parent="Room/MinimapShadow"] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 10.0251, -2.05643, 8.01533) +layers = 2 +sorting_offset = 100.0 +mesh = SubResource("PlaneMesh_q0uor") +skeleton = NodePath("../..") + [node name="Lights" type="Node3D" parent="."] [node name="OmniLight3D" type="OmniLight3D" parent="Lights"] diff --git a/Zennysoft.Game.Ma/src/map/dungeon/rooms/Set A/05. Pit Room A.tscn b/Zennysoft.Game.Ma/src/map/dungeon/rooms/Set A/05. Pit Room A.tscn index 14ff0800..4d4ca1be 100644 --- a/Zennysoft.Game.Ma/src/map/dungeon/rooms/Set A/05. Pit Room A.tscn +++ b/Zennysoft.Game.Ma/src/map/dungeon/rooms/Set A/05. Pit Room A.tscn @@ -1,4 +1,4 @@ -[gd_scene load_steps=17 format=3 uid="uid://cam640h4euewx"] +[gd_scene load_steps=19 format=3 uid="uid://cam640h4euewx"] [ext_resource type="Script" uid="uid://dhollu4j3pynq" path="res://src/map/dungeon/code/MonsterRoom.cs" id="1_5ni02"] [ext_resource type="PackedScene" uid="uid://xseoidsaunp4" path="res://src/map/dungeon/models/Area 1/Pit/A1-Pit.glb" id="2_ial2h"] @@ -31,6 +31,13 @@ size = Vector3(53.0972, 0.001, 53.1202) [sub_resource type="BoxShape3D" id="BoxShape3D_c4wqw"] size = Vector3(51.8721, 17.7382, 52.1556) +[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_34j7u"] +albedo_color = Color(0, 0, 0, 1) + +[sub_resource type="PlaneMesh" id="PlaneMesh_ial2h"] +material = SubResource("StandardMaterial3D_34j7u") +size = Vector2(54, 54.5) + [sub_resource type="Curve" id="Curve_7744s"] _limits = [-2.0, 2.0, 0.0, 1.0] _data = [Vector2(0.00358423, 0.230769), 0.0, 0.0, 0, 0, Vector2(0.982079, -1.03846), 0.0, 0.0, 0, 0] @@ -244,7 +251,6 @@ transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 9.23212, -1.76654, 7.753) [node name="Room" type="Node3D" parent="."] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 1.77516, 0) -visible = false [node name="Room" type="Area3D" parent="Room"] unique_name_in_owner = true @@ -256,6 +262,15 @@ collision_mask = 10 transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 27.1249, -13.1183, -26.339) shape = SubResource("BoxShape3D_c4wqw") +[node name="MinimapShadow" type="Node3D" parent="Room"] +unique_name_in_owner = true + +[node name="MeshInstance3D" type="MeshInstance3D" parent="Room/MinimapShadow"] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 27, -6, -26) +layers = 2 +sorting_offset = 100.0 +mesh = SubResource("PlaneMesh_ial2h") + [node name="Lights" type="Node3D" parent="."] [node name="OmniLight3D2" type="OmniLight3D" parent="Lights"] diff --git a/Zennysoft.Game.Ma/src/map/dungeon/rooms/Set A/06. Balcony Room A.tscn b/Zennysoft.Game.Ma/src/map/dungeon/rooms/Set A/06. Balcony Room A.tscn index bb6c18a3..0c7df25f 100644 --- a/Zennysoft.Game.Ma/src/map/dungeon/rooms/Set A/06. Balcony Room A.tscn +++ b/Zennysoft.Game.Ma/src/map/dungeon/rooms/Set A/06. Balcony Room A.tscn @@ -1,4 +1,4 @@ -[gd_scene load_steps=24 format=3 uid="uid://b7111krf365x0"] +[gd_scene load_steps=26 format=3 uid="uid://b7111krf365x0"] [ext_resource type="Script" uid="uid://dhollu4j3pynq" path="res://src/map/dungeon/code/MonsterRoom.cs" id="2_fedas"] [ext_resource type="PackedScene" uid="uid://d4me6wfx21vug" path="res://src/map/dungeon/models/Area 1/Balcony/A1-Balcony.glb" id="2_ybo5h"] @@ -49,6 +49,13 @@ size = Vector3(41.3612, 0.1, 35.3871) [sub_resource type="BoxShape3D" id="BoxShape3D_1up8d"] size = Vector3(36, 8, 32) +[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_ybo5h"] +albedo_color = Color(0, 0, 0, 1) + +[sub_resource type="PlaneMesh" id="PlaneMesh_d2a01"] +material = SubResource("StandardMaterial3D_ybo5h") +size = Vector2(62, 50) + [sub_resource type="Curve" id="Curve_k6i88"] _limits = [-2.0, 2.0, 0.0, 1.0] _data = [Vector2(0.00358423, 0.230769), 0.0, 0.0, 0, 0, Vector2(0.982079, -1.03846), 0.0, 0.0, 0, 0] @@ -230,7 +237,6 @@ transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -2.346, -0.5, -3.546) [node name="Room" type="Node3D" parent="."] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, -2, 0) -visible = false [node name="Room" type="Area3D" parent="Room"] unique_name_in_owner = true @@ -241,6 +247,15 @@ collision_mask = 10 transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0.04566, 5.65958, 0) shape = SubResource("BoxShape3D_1up8d") +[node name="MinimapShadow" type="Node3D" parent="Room"] +unique_name_in_owner = true + +[node name="MeshInstance3D" type="MeshInstance3D" parent="Room/MinimapShadow"] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 1.337, -10.7933, -2.85486) +layers = 2 +sorting_offset = 100.0 +mesh = SubResource("PlaneMesh_d2a01") + [node name="Lights" type="Node3D" parent="."] [node name="OmniLight3D" type="OmniLight3D" parent="Lights"] diff --git a/Zennysoft.Game.Ma/src/map/dungeon/rooms/Set A/07. CornerBlock Antechamber.tscn b/Zennysoft.Game.Ma/src/map/dungeon/rooms/Set A/07. CornerBlock Antechamber.tscn index aa8d100d..c1479031 100644 --- a/Zennysoft.Game.Ma/src/map/dungeon/rooms/Set A/07. CornerBlock Antechamber.tscn +++ b/Zennysoft.Game.Ma/src/map/dungeon/rooms/Set A/07. CornerBlock Antechamber.tscn @@ -1,4 +1,4 @@ -[gd_scene load_steps=67 format=4 uid="uid://ce0cjm6v7ct6c"] +[gd_scene load_steps=69 format=4 uid="uid://ce0cjm6v7ct6c"] [ext_resource type="Script" uid="uid://dhollu4j3pynq" path="res://src/map/dungeon/code/MonsterRoom.cs" id="2_6xco5"] [ext_resource type="Texture2D" uid="uid://bwdaaecc443lb" path="res://src/map/dungeon/models/Area 1/Corner Block/A1-CornerBlockRoom_COLUM6N.png" id="2_uoixu"] @@ -619,6 +619,13 @@ size = Vector3(4.01486, 8.02875, 0.428496) [sub_resource type="BoxShape3D" id="BoxShape3D_jruxb"] size = Vector3(16, 8, 16) +[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_cws3j"] +albedo_color = Color(0, 0, 0, 1) + +[sub_resource type="PlaneMesh" id="PlaneMesh_uoixu"] +material = SubResource("StandardMaterial3D_cws3j") +size = Vector2(17, 17) + [sub_resource type="Curve" id="Curve_u7fba"] _limits = [-2.0, 2.0, 0.0, 1.0] _data = [Vector2(0.00358423, 0.230769), 0.0, 0.0, 0, 0, Vector2(0.982079, -1.03846), 0.0, 0.0, 0, 0] @@ -821,7 +828,6 @@ transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 23.9514, -2.12568, -13.2894) [node name="Room" type="Node3D" parent="."] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 2, 0) -visible = false [node name="Room" type="Area3D" parent="Room"] unique_name_in_owner = true @@ -832,6 +838,15 @@ collision_mask = 10 transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0.04566, 1.9843, 0) shape = SubResource("BoxShape3D_jruxb") +[node name="MinimapShadow" type="Node3D" parent="Room"] +unique_name_in_owner = true + +[node name="MeshInstance3D" type="MeshInstance3D" parent="Room/MinimapShadow"] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -0.0063982, -2.11231, -0.021162) +layers = 2 +sorting_offset = 100.0 +mesh = SubResource("PlaneMesh_uoixu") + [node name="Lights" type="Node3D" parent="."] [node name="OmniLight3D" type="OmniLight3D" parent="Lights"] diff --git a/Zennysoft.Game.Ma/src/map/dungeon/rooms/Set A/08. Basin Room.tscn b/Zennysoft.Game.Ma/src/map/dungeon/rooms/Set A/08. Basin Room.tscn index 40630fb3..4ceffcaf 100644 --- a/Zennysoft.Game.Ma/src/map/dungeon/rooms/Set A/08. Basin Room.tscn +++ b/Zennysoft.Game.Ma/src/map/dungeon/rooms/Set A/08. Basin Room.tscn @@ -1,4 +1,4 @@ -[gd_scene load_steps=39 format=4 uid="uid://b82dx66mgs2d7"] +[gd_scene load_steps=41 format=4 uid="uid://b82dx66mgs2d7"] [ext_resource type="Texture2D" uid="uid://cynil12ridsej" path="res://src/map/dungeon/models/Area 1/Basin/A1-Basin_WALL TILE 1.jpg" id="2_ih385"] [ext_resource type="Script" uid="uid://dhollu4j3pynq" path="res://src/map/dungeon/code/MonsterRoom.cs" id="2_pu81k"] @@ -304,6 +304,13 @@ size = Vector3(0.375244, 5.457, 16.0834) [sub_resource type="BoxShape3D" id="BoxShape3D_txn5d"] size = Vector3(20, 8, 16) +[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_sfsow"] +albedo_color = Color(0, 0, 0, 1) + +[sub_resource type="PlaneMesh" id="PlaneMesh_bghcm"] +material = SubResource("StandardMaterial3D_sfsow") +size = Vector2(21, 17) + [sub_resource type="Curve" id="Curve_qs4sv"] _limits = [-2.0, 2.0, 0.0, 1.0] _data = [Vector2(0.00358423, 0.230769), 0.0, 0.0, 0, 0, Vector2(0.982079, -1.03846), 0.0, 0.0, 0, 0] @@ -431,7 +438,6 @@ shape = SubResource("BoxShape3D_cawjg") [node name="Spawn Points" type="Node3D" parent="."] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 2, 0) -visible = false [node name="PlayerSpawn" type="Marker3D" parent="Spawn Points"] unique_name_in_owner = true @@ -453,7 +459,6 @@ transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -6.55, -2.55692, 0) [node name="Room" type="Node3D" parent="."] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 2, 0) -visible = false [node name="Room" type="Area3D" parent="Room"] unique_name_in_owner = true @@ -465,6 +470,15 @@ collision_mask = 10 transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0.04566, 1.9843, 0) shape = SubResource("BoxShape3D_txn5d") +[node name="MinimapShadow" type="Node3D" parent="Room"] +unique_name_in_owner = true + +[node name="MeshInstance3D" type="MeshInstance3D" parent="Room/MinimapShadow"] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0.0557356, -2.14522, -0.0170946) +layers = 2 +sorting_offset = 100.0 +mesh = SubResource("PlaneMesh_bghcm") + [node name="Lights" type="Node3D" parent="."] [node name="OmniLight3D" type="OmniLight3D" parent="Lights"] diff --git a/Zennysoft.Game.Ma/src/map/dungeon/rooms/Set A/09. Column Room.tscn b/Zennysoft.Game.Ma/src/map/dungeon/rooms/Set A/09. Column Room.tscn index f097e1b0..2dc34b5a 100644 --- a/Zennysoft.Game.Ma/src/map/dungeon/rooms/Set A/09. Column Room.tscn +++ b/Zennysoft.Game.Ma/src/map/dungeon/rooms/Set A/09. Column Room.tscn @@ -1,4 +1,4 @@ -[gd_scene load_steps=77 format=4 uid="uid://c1qicmrcg6q6x"] +[gd_scene load_steps=79 format=4 uid="uid://c1qicmrcg6q6x"] [ext_resource type="Script" uid="uid://dhollu4j3pynq" path="res://src/map/dungeon/code/MonsterRoom.cs" id="2_lij04"] [ext_resource type="Texture2D" uid="uid://cs0x02prnkfl6" path="res://src/map/dungeon/models/Area 1/Column/A1-ColumnRoom_FLOOR1.jpg" id="2_v11dj"] @@ -831,6 +831,13 @@ size = Vector3(48.0952, 0.0307617, 28.0626) [sub_resource type="BoxShape3D" id="BoxShape3D_07e0r"] size = Vector3(48, 8, 28) +[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_x02w5"] +albedo_color = Color(0, 0, 0, 1) + +[sub_resource type="PlaneMesh" id="PlaneMesh_v11dj"] +material = SubResource("StandardMaterial3D_x02w5") +size = Vector2(49, 29) + [sub_resource type="Curve" id="Curve_a10l6"] _limits = [-2.0, 2.0, 0.0, 1.0] _data = [Vector2(0.00358423, 0.230769), 0.0, 0.0, 0, 0, Vector2(0.982079, -1.03846), 0.0, 0.0, 0, 0] @@ -1149,6 +1156,15 @@ collision_mask = 10 transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0.04566, 2.00828, 0) shape = SubResource("BoxShape3D_07e0r") +[node name="MinimapShadow" type="Node3D" parent="Room"] +unique_name_in_owner = true + +[node name="MeshInstance3D" type="MeshInstance3D" parent="Room/MinimapShadow"] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0.0325813, -2.94515, 0.00641251) +layers = 2 +sorting_offset = 100.0 +mesh = SubResource("PlaneMesh_v11dj") + [node name="Lights" type="Node3D" parent="."] [node name="OmniLight3D" type="OmniLight3D" parent="Lights"] diff --git a/Zennysoft.Game.Ma/src/map/dungeon/rooms/Set A/10. Item Transfer Room.tscn b/Zennysoft.Game.Ma/src/map/dungeon/rooms/Set A/10. Item Transfer Room.tscn index 91fcafb4..b7a3dac5 100644 --- a/Zennysoft.Game.Ma/src/map/dungeon/rooms/Set A/10. Item Transfer Room.tscn +++ b/Zennysoft.Game.Ma/src/map/dungeon/rooms/Set A/10. Item Transfer Room.tscn @@ -1,4 +1,4 @@ -[gd_scene load_steps=80 format=4 uid="uid://dn5546yqyntfr"] +[gd_scene load_steps=82 format=4 uid="uid://dn5546yqyntfr"] [ext_resource type="Script" uid="uid://bccyfmj8ikewh" path="res://src/map/dungeon/code/SpecialRoom.cs" id="1_7rwa4"] [ext_resource type="Shader" uid="uid://cntrajooialrn" path="res://src/map/map shaders/DemonWall Wave.gdshader" id="2_7rwa4"] @@ -882,6 +882,13 @@ radius = 0.452637 [sub_resource type="BoxShape3D" id="BoxShape3D_x7lek"] size = Vector3(12, 8, 14) +[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_i8fsj"] +albedo_color = Color(0, 0, 0, 1) + +[sub_resource type="PlaneMesh" id="PlaneMesh_kbwvc"] +material = SubResource("StandardMaterial3D_i8fsj") +size = Vector2(12.5, 14.5) + [sub_resource type="Curve" id="Curve_77ny7"] _limits = [-2.0, 2.0, 0.0, 1.0] _data = [Vector2(0.00358423, 0.230769), 0.0, 0.0, 0, 0, Vector2(0.982079, -1.03846), 0.0, 0.0, 0, 0] @@ -948,7 +955,6 @@ skeleton = NodePath("") [node name="HAND TRANSFER" type="MeshInstance3D" parent="Model/A1-Hand"] transform = Transform3D(0.287315, 0, 0, 0, 0.288009, 0, 0, 0, 0.383238, -0.0201302, 4.02993, 0.10863) -visible = false mesh = SubResource("ArrayMesh_e0bem") skeleton = NodePath("") @@ -1020,7 +1026,6 @@ transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -4.04081, 2.02774, -1.07468) [node name="Room" type="Area3D" parent="Room"] unique_name_in_owner = true -visible = false collision_layer = 0 collision_mask = 10 @@ -1031,6 +1036,15 @@ shape = SubResource("BoxShape3D_x7lek") [node name="Item Rescue" parent="Room" instance=ExtResource("24_x7lek")] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, -0.215604, 1) +[node name="MinimapShadow" type="Node3D" parent="Room"] +unique_name_in_owner = true + +[node name="MeshInstance3D" type="MeshInstance3D" parent="Room/MinimapShadow"] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0.0418267, -2.19433, 1.06724) +layers = 2 +sorting_offset = 100.0 +mesh = SubResource("PlaneMesh_kbwvc") + [node name="Lights" type="Node3D" parent="."] [node name="OmniLight3D" type="OmniLight3D" parent="Lights"] diff --git a/Zennysoft.Game.Ma/src/map/dungeon/rooms/Set A/11. Long Room.tscn b/Zennysoft.Game.Ma/src/map/dungeon/rooms/Set A/11. Long Room.tscn index bc1b8675..71ae707d 100644 --- a/Zennysoft.Game.Ma/src/map/dungeon/rooms/Set A/11. Long Room.tscn +++ b/Zennysoft.Game.Ma/src/map/dungeon/rooms/Set A/11. Long Room.tscn @@ -1,4 +1,4 @@ -[gd_scene load_steps=24 format=3 uid="uid://dhm2lyfkrjugf"] +[gd_scene load_steps=26 format=3 uid="uid://dhm2lyfkrjugf"] [ext_resource type="Script" uid="uid://dhollu4j3pynq" path="res://src/map/dungeon/code/MonsterRoom.cs" id="2_lh7xt"] [ext_resource type="PackedScene" uid="uid://upif0wx18xp0" path="res://src/map/dungeon/models/Area 1/LongRoom/A1-Longroom.glb" id="4_ykoit"] @@ -48,6 +48,13 @@ radius = 0.618164 [sub_resource type="BoxShape3D" id="BoxShape3D_7sgjq"] size = Vector3(48, 12, 28) +[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_ykoit"] +albedo_color = Color(0, 0, 0, 1) + +[sub_resource type="PlaneMesh" id="PlaneMesh_8lisv"] +material = SubResource("StandardMaterial3D_ykoit") +size = Vector2(49, 29) + [sub_resource type="Curve" id="Curve_aug1p"] _limits = [-2.0, 2.0, 0.0, 1.0] _data = [Vector2(0.00358423, 0.230769), 0.0, 0.0, 0, 0, Vector2(0.982079, -1.03846), 0.0, 0.0, 0, 0] @@ -258,6 +265,15 @@ collision_mask = 10 transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0.04566, 3.93401, 0) shape = SubResource("BoxShape3D_7sgjq") +[node name="MinimapShadow" type="Node3D" parent="Room"] +unique_name_in_owner = true + +[node name="MeshInstance3D" type="MeshInstance3D" parent="Room/MinimapShadow"] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -1.45355, -2.04239, 0.114305) +layers = 2 +sorting_offset = 100.0 +mesh = SubResource("PlaneMesh_8lisv") + [node name="Lights" type="Node3D" parent="."] [node name="OmniLight3D" type="OmniLight3D" parent="Lights"] diff --git a/Zennysoft.Game.Ma/src/map/dungeon/rooms/Set A/12. Jump Scare Room.tscn b/Zennysoft.Game.Ma/src/map/dungeon/rooms/Set A/12. Jump Scare Room.tscn index 1eb9d779..4f7ee0ca 100644 --- a/Zennysoft.Game.Ma/src/map/dungeon/rooms/Set A/12. Jump Scare Room.tscn +++ b/Zennysoft.Game.Ma/src/map/dungeon/rooms/Set A/12. Jump Scare Room.tscn @@ -1,4 +1,4 @@ -[gd_scene load_steps=15 format=3 uid="uid://dhkbvos11tkdw"] +[gd_scene load_steps=17 format=3 uid="uid://dhkbvos11tkdw"] [ext_resource type="Script" uid="uid://bccyfmj8ikewh" path="res://src/map/dungeon/code/SpecialRoom.cs" id="1_5m2h2"] [ext_resource type="PackedScene" uid="uid://bc7ubbvnx0jdo" path="res://src/map/dungeon/models/Area 1/Jumpscare/A1-Jumpscare.glb" id="2_umqhi"] @@ -24,6 +24,13 @@ radius = 0.452637 [sub_resource type="BoxShape3D" id="BoxShape3D_3jg1k"] size = Vector3(20.0336, 8, 18.4926) +[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_unlia"] +albedo_color = Color(0, 0, 0, 1) + +[sub_resource type="PlaneMesh" id="PlaneMesh_unlia"] +material = SubResource("StandardMaterial3D_unlia") +size = Vector2(20.5, 19) + [sub_resource type="Curve" id="Curve_umqhi"] _limits = [-2.0, 2.0, 0.0, 1.0] _data = [Vector2(0.00358423, 0.230769), 0.0, 0.0, 0, 0, Vector2(0.982079, -1.03846), 0.0, 0.0, 0, 0] @@ -103,7 +110,6 @@ shape = SubResource("CylinderShape3D_fgt65") [node name="Room" type="Node3D" parent="."] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 10.0246, 2, 7.9943) -visible = false [node name="Room" type="Area3D" parent="Room"] unique_name_in_owner = true @@ -114,6 +120,15 @@ collision_mask = 10 transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -0.0156765, 5.38675, 1.28534) shape = SubResource("BoxShape3D_3jg1k") +[node name="MinimapShadow" type="Node3D" parent="Room"] +unique_name_in_owner = true + +[node name="MeshInstance3D" type="MeshInstance3D" parent="Room/MinimapShadow"] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0.020082, 0, 1.27829) +layers = 2 +sorting_offset = 100.0 +mesh = SubResource("PlaneMesh_unlia") + [node name="Lights" type="Node3D" parent="."] [node name="OmniLight3D" type="OmniLight3D" parent="Lights"] diff --git a/Zennysoft.Game.Ma/src/map/dungeon/rooms/Set A/13. Water Room.tscn b/Zennysoft.Game.Ma/src/map/dungeon/rooms/Set A/13. Water Room.tscn index 9ab8554d..38463931 100644 --- a/Zennysoft.Game.Ma/src/map/dungeon/rooms/Set A/13. Water Room.tscn +++ b/Zennysoft.Game.Ma/src/map/dungeon/rooms/Set A/13. Water Room.tscn @@ -1,4 +1,4 @@ -[gd_scene load_steps=90 format=4 uid="uid://dfpyfpnya0f4u"] +[gd_scene load_steps=95 format=4 uid="uid://dfpyfpnya0f4u"] [ext_resource type="Texture2D" uid="uid://b5eatyg2m2v3x" path="res://src/map/dungeon/models/Area 1/Water/WaterRoomFixs_SA115.png" id="2_cgkx3"] [ext_resource type="Script" uid="uid://dhollu4j3pynq" path="res://src/map/dungeon/code/MonsterRoom.cs" id="2_hbsbj"] @@ -8,7 +8,6 @@ [ext_resource type="Texture2D" uid="uid://cypcxkryydddf" path="res://src/map/dungeon/models/Area 1/Water/WaterRoomFixs_SNEK TILE.png" id="4_rroba"] [ext_resource type="Texture2D" uid="uid://cnfr8khv7iqvo" path="res://src/map/dungeon/models/Area 1/Water/WaterRoomFixs_STONE_PANEL_1png.png" id="5_2nfuf"] [ext_resource type="Texture2D" uid="uid://cbsdc4uthojov" path="res://src/map/assets/waternormal2.jpg" id="5_8py18"] -[ext_resource type="Texture2D" uid="uid://c1jomp8ljn482" path="res://src/minimap/textures/Room Maps/mi_water_room.png" id="5_f4tjo"] [ext_resource type="Texture2D" uid="uid://c7imabsysmguw" path="res://src/map/dungeon/models/Area 1/Water/WaterRoomFixs_brick_corridor_corrected.png" id="6_hv20v"] [ext_resource type="Texture2D" uid="uid://cmxqdrmj2rs02" path="res://src/map/dungeon/models/Area 1/Water/WaterRoomFixs_swirled_column.png" id="7_6fxlg"] [ext_resource type="Texture2D" uid="uid://dw50ys561j8no" path="res://src/map/assets/DUST_1.png" id="8_7spr2"] @@ -1589,37 +1588,56 @@ size = Vector2(2.145, 2.59) subdivide_width = 100 subdivide_depth = 100 -[sub_resource type="ConcavePolygonShape3D" id="ConcavePolygonShape3D_kjv35"] -data = PackedVector3Array(-1, -1, 1, -1, 1, -1, -1, 1, 1, -1, -1, 1, -1, -1, -1, -1, 1, -1, -1, -1, -1, 1, 1, -1, -1, 1, -1, -1, -1, -1, 1, -1, -1, 1, 1, -1, 1, -1, -1, 1, 1, 1, 1, 1, -1, 1, -1, -1, 1, -1, 1, 1, 1, 1, 1, -1, 1, -1, 1, 1, 1, 1, 1, 1, -1, 1, -1, -1, 1, -1, 1, 1, -1, -1, -1, 1, -1, 1, 1, -1, -1, -1, -1, -1, -1, -1, 1, 1, -1, 1, 1, 1, -1, -1, 1, 1, -1, 1, -1, 1, 1, -1, 1, 1, 1, -1, 1, 1) +[sub_resource type="BoxShape3D" id="BoxShape3D_edwv6"] +size = Vector3(19.1196, 14.8376, 11.1152) -[sub_resource type="ConcavePolygonShape3D" id="ConcavePolygonShape3D_hf7tw"] -data = PackedVector3Array(-1.4598, -2.799, -17.6828, -0.2624, -1.0656, -17.6828, -0.1643, -2.6986, -17.6828, -1.4598, -2.799, -17.6828, -1.5572, -1.1752, -17.6827, -0.2624, -1.0656, -17.6828, -12.2333, 1.1018, 18.3071, -12.2333, 2.9349, 15.2724, -12.2333, 1.1018, 15.2724, -12.2333, 1.1018, 18.3071, -12.2333, 2.9349, 18.3071, -12.2333, 2.9349, 15.2724, -12.2333, -0.9977, 18.3071, -12.2333, 1.1018, 18.3071, -12.2333, 1.1018, 15.2724, -12.2333, 1.1018, 15.2724, -12.2333, 2.9349, 15.2724, -12.2333, 2.9349, 12.4002, -12.2333, -0.9977, 18.3071, -12.2333, 1.1018, 15.2724, -12.2333, -0.9977, 15.2724, -12.2333, 1.1018, 15.2724, -12.2333, 2.9349, 12.4002, -12.2333, 1.1018, 12.4002, -12.2333, -0.9977, 15.2724, -12.2333, 1.1018, 15.2724, -12.2333, 1.1018, 12.4002, -12.2333, 1.1018, 12.4002, -12.2333, 2.9349, 12.4002, -12.2333, 2.9349, 10.3619, -12.2333, -0.9977, 15.2724, -12.2333, 1.1018, 12.4002, -12.2333, -0.9173, 12.4002, -12.2333, 1.1018, 12.4002, -12.2333, 2.9349, 10.3619, -12.2333, 1.1018, 10.3619, -12.2333, -0.9173, 12.4002, -12.2333, 1.1018, 12.4002, -12.2333, 1.1018, 10.3619, -12.2333, 1.1018, 10.3619, -12.2333, 2.9349, 10.3619, -12.2333, 2.9349, 8.3441, -12.2333, -0.9173, 12.4002, -12.2333, 1.1018, 10.3619, -12.2333, -0.9173, 10.3619, -12.2333, 1.1018, 10.3619, -12.2333, 2.9349, 8.3441, -12.2333, 1.1018, 8.3441, -12.2333, -0.9173, 10.3619, -12.2333, 1.1018, 10.3619, -12.2333, 1.1018, 8.3441, -12.2333, 1.1018, 8.3441, -12.2333, 2.9349, 8.3441, -12.2333, 2.9349, 6.3044, -12.2333, -0.9173, 10.3619, -12.2333, 1.1018, 8.3441, -12.2333, -0.9173, 8.3441, -12.2333, 1.1018, 8.3441, -12.2333, 2.9349, 6.3044, -12.2333, 1.1018, 6.3044, -12.2333, -0.9173, 8.3441, -12.2333, 1.1018, 8.3441, -12.2333, 1.1018, 6.3044, -12.2333, 1.1018, 6.3044, -12.2333, 2.9349, 6.3044, -12.2333, 2.9349, 2.9842, -12.2333, -0.9173, 8.3441, -12.2333, 1.1018, 6.3044, -12.2333, -0.9977, 6.3044, -12.2333, 1.1018, 6.3044, -12.2333, 2.9349, 2.9842, -12.2333, 1.1018, 2.9842, -12.2333, -0.9977, 6.3044, -12.2333, 1.1018, 6.3044, -12.2333, 1.1018, 2.9842, -12.2333, 2.9349, 2.4858, -12.2333, 1.1018, 2.9842, -12.2333, 2.9349, 2.9842, -12.2333, -0.9977, 6.3044, -12.2333, 1.1018, 2.9842, -12.2333, -0.9977, 2.9842, -12.2333, 2.9349, 2.4858, -12.2333, 1.1122, 2.4858, -12.2333, 1.1018, 2.9842, -12.2333, -0.9977, 2.9842, -12.2333, 1.1018, 2.9842, -12.2333, 1.1122, 2.4858, -12.2333, -0.9977, 2.9842, -12.2333, 1.1122, 2.4858, -12.2333, -0.9977, 2.4858, 12.4351, 1.103, 12.4002, 12.4351, 2.9361, 15.2724, 12.4351, 1.103, 15.2724, 12.4351, 1.103, 15.2724, 12.4351, 2.9361, 15.2724, 12.4351, 2.9361, 18.3071, 12.4351, 1.103, 12.4002, 12.4351, 2.9361, 12.4002, 12.4351, 2.9361, 15.2724, 12.4351, 1.103, 15.2724, 12.4351, 2.9361, 18.3071, 12.4351, 1.103, 18.3071, 12.4351, 2.9361, 10.3878, 12.4351, 2.9361, 12.4002, 12.4351, 1.103, 12.4002, 12.4351, -0.9964, 15.2724, 12.4351, 1.103, 15.2724, 12.4351, 1.103, 18.3071, 12.4351, -0.9964, 15.2724, 12.4351, 1.103, 18.3071, 12.4351, -0.9964, 18.3071, 12.4351, -0.9964, 12.4002, 12.4351, 1.103, 15.2724, 12.4351, -0.9964, 15.2724, 12.4351, -0.9964, 12.4002, 12.4351, 1.103, 12.4002, 12.4351, 1.103, 15.2724, 12.4351, 1.103, 12.4002, 12.4351, -0.9964, 12.4002, 12.4351, -0.9964, 10.3878, 12.4351, 2.9361, 10.3878, 12.4351, 1.103, 12.4002, 12.4351, 1, 10.3878, 12.4351, 1.103, 12.4002, 12.4351, -0.9964, 10.3878, 12.4351, 1, 10.3878, 12.4351, 2.9361, 10.3878, 12.4351, 1, 10.3878, 12.4351, 1, 8.3441, 12.4351, -0.9964, 10.3878, 12.4351, 1, 8.3441, 12.4351, 1, 10.3878, 12.4351, 2.9361, 10.3878, 12.4351, 1, 8.3441, 12.4351, 2.9361, 8.3441, 12.4351, -0.9964, 10.3878, 12.4351, -0.9964, 8.3441, 12.4351, 1, 8.3441, 12.4351, 2.9361, 8.3441, 12.4351, 1, 8.3441, 12.4351, 1, 6.3176, 12.4351, -0.9964, 8.3441, 12.4351, 1, 6.3176, 12.4351, 1, 8.3441, 12.4351, 2.9361, 8.3441, 12.4351, 1, 6.3176, 12.4351, 2.9361, 6.3176, 12.4351, -0.9964, 8.3441, 12.4351, -0.9964, 6.3176, 12.4351, 1, 6.3176, 12.4351, 2.9361, 6.3176, 12.4351, 1, 6.3176, 12.4351, 1.103, 2.9842, 12.4351, 1.103, 2.9842, 12.4351, 1, 6.3176, 12.4351, -0.9964, 6.3176, 12.4351, 1.103, 2.9842, 12.4351, -0.9964, 6.3176, 12.4351, -0.9964, 2.9842, 12.4351, 2.9361, 6.3176, 12.4351, 1.103, 2.9842, 12.4351, 2.9361, 2.9842, 12.4351, -0.9964, 2.4857, 12.4351, 1.103, 2.9842, 12.4351, -0.9964, 2.9842, 12.4351, 1.103, 2.4857, 12.4351, 2.9361, 2.9842, 12.4351, 1.103, 2.9842, 12.4351, -0.9964, 2.4857, 12.4351, 1.103, 2.4857, 12.4351, 1.103, 2.9842, 12.4351, 1.103, 2.4857, 12.4351, 2.9361, 2.4857, 12.4351, 2.9361, 2.9842, 12.4351, -0.9964, 0.3345, 12.4351, 1.103, 2.4857, 12.4351, -0.9964, 2.4857, 12.4351, 1.103, 0.3345, 12.4351, 2.9361, 2.4857, 12.4351, 1.103, 2.4857, 12.4351, -0.9964, 0.3345, 12.4351, 1.103, 0.3345, 12.4351, 1.103, 2.4857, 12.4351, 1.103, 0.3345, 12.4351, 2.9361, 0.3345, 12.4351, 2.9361, 2.4857, 12.4351, 1.103, 0.3345, 12.4351, 2.9361, -1.7306, 12.4351, 2.9361, 0.3345, 12.4351, -0.9964, 0.3345, 12.4351, 1.103, -1.7309, 12.4351, 1.103, 0.3345, 12.4351, 1.103, 0.3345, 12.4351, 1.103, -1.7309, 12.4351, 2.9361, -1.7306, 12.4351, -0.9964, 0.3345, 12.4351, -0.9964, -1.7343, 12.4351, 1.103, -1.7309, 12.4351, 1.103, -1.7309, 12.4351, 2.9361, -2.2789, 12.4351, 2.9361, -1.7306, 12.4351, -0.9964, -1.7343, 12.4351, 1.103, -2.2789, 12.4351, 1.103, -1.7309, 12.4351, 1.103, -1.7309, 12.4351, 1.103, -2.2789, 12.4351, 2.9361, -2.2789, 12.4351, -0.9964, -1.7343, 12.4351, -0.9964, -2.2789, 12.4351, 1.103, -2.2789, 12.4351, 2.9361, -5.6879, 12.4351, 2.9361, -2.2789, 12.4351, 1.103, -2.2789, 12.4351, 1.103, -2.2789, 12.4351, -0.9964, -2.2789, 12.4351, -0.9964, -5.6879, 12.4351, 2.9361, -5.6879, 12.4351, 1.103, -2.2789, 12.4351, 1.103, -5.6893, 12.4351, 1.103, -2.2789, 12.4351, -0.9964, -5.6879, 12.4351, 1.103, -5.6893, 12.4351, 2.9361, -7.7606, 12.4351, 2.9361, -5.6879, 12.4351, 1.103, -5.6893, 12.4351, -0.9964, -7.7606, 12.4351, 1.103, -5.6893, 12.4351, -0.9964, -5.6879, 12.4351, 2.9361, -7.7606, 12.4351, 1.103, -5.6893, 12.4351, 1.103, -7.7606, 12.4351, -0.9964, -7.7606, 12.4351, 1.103, -7.7606, 12.4351, 1.103, -5.6893, 12.4351, 2.9361, -9.6808, 12.4351, 2.9361, -7.7606, 12.4351, 1.103, -7.7606, 12.4351, -0.9964, -9.6808, 12.4351, 1.103, -7.7606, 12.4351, -0.9964, -7.7606, 12.4351, 2.9361, -9.6808, 12.4351, 1.103, -7.7606, 12.4351, 1.103, -9.679, 12.4351, -0.9964, -9.6808, 12.4351, 1.103, -9.679, 12.4351, 1.103, -7.7606, 12.4351, 2.9361, -11.471, 12.4351, 2.9361, -9.6808, 12.4351, 1.103, -9.679, 12.4351, 1.103, -11.471, 12.4351, 1.103, -9.679, 12.4351, -0.9964, -9.6808, 12.4351, 2.9361, -11.471, 12.4351, 1.103, -9.679, 12.4351, 1.103, -11.471, 12.4351, 1.103, -11.471, 12.4351, -0.9964, -9.6808, 12.4351, -0.9964, -11.471, 12.4351, 1.103, -11.471, 12.4351, 2.9361, -14.6397, 12.4351, 2.9361, -11.471, 12.4351, -0.9964, -11.471, 12.4351, 1.103, -14.6397, 12.4351, 1.103, -11.471, 12.4351, 1.103, -11.471, 12.4351, 1.103, -14.6397, 12.4351, 2.9361, -14.6397, 12.4351, 1.103, -14.6397, 12.4351, 2.9829, -17.6829, 12.4351, 2.9361, -14.6397, 12.4351, -0.9964, -11.471, 12.4351, -0.9964, -14.6397, 12.4351, 1.103, -14.6397, 12.4351, 1.103, -14.6397, 12.4351, 1.1498, -17.6829, 12.4351, 2.9829, -17.6829, 12.4351, -0.9964, -14.6397, 12.4351, 1.1498, -17.6829, 12.4351, 1.103, -14.6397, 12.4351, -0.9964, -14.6397, 12.4351, -0.9964, -17.6829, 12.4351, 1.1498, -17.6829, -10.4511, 1.1017, 18.3071, -12.2333, 2.9349, 18.3071, -12.2333, 1.1018, 18.3071, -10.4511, 1.1017, 18.3071, -10.4511, 2.9348, 18.3071, -12.2333, 2.9349, 18.3071, -10.4511, -0.9978, 18.3071, -10.4511, 1.1017, 18.3071, -12.2333, 1.1018, 18.3071, -10.4511, -0.9978, 18.3071, -12.2333, 1.1018, 18.3071, -12.2333, -0.9977, 18.3071, -8.6689, -0.9978, 18.3071, -10.4511, 1.1017, 18.3071, -10.4511, -0.9978, 18.3071, -8.6689, 1.1016, 18.3071, -10.4511, 2.9348, 18.3071, -10.4511, 1.1017, 18.3071, -8.6689, -0.9978, 18.3071, -8.6689, 1.1016, 18.3071, -10.4511, 1.1017, 18.3071, -8.6689, 1.1016, 18.3071, -8.6689, 2.9347, 18.3071, -10.4511, 2.9348, 18.3071, -5.9311, -0.9978, 18.3071, -8.6689, 1.1016, 18.3071, -8.6689, -0.9978, 18.3071, -5.9311, 1.1016, 18.3071, -8.6689, 2.9347, 18.3071, -8.6689, 1.1016, 18.3071, -5.9311, -0.9978, 18.3071, -5.9311, 1.1016, 18.3071, -8.6689, 1.1016, 18.3071, -3.8633, -0.9978, 18.3071, -5.9311, 1.1016, 18.3071, -5.9311, -0.9978, 18.3071, -5.9311, 1.1016, 18.3071, -5.9311, 2.9347, 18.3071, -8.6689, 2.9347, 18.3071, -3.8633, -0.9978, 18.3071, -3.8633, 1.1016, 18.3071, -5.9311, 1.1016, 18.3071, -3.8633, 1.1016, 18.3071, -5.9311, 2.9347, 18.3071, -5.9311, 1.1016, 18.3071, -3.8633, 1.1016, 18.3071, -3.8633, 2.9347, 18.3071, -5.9311, 2.9347, 18.3071, 7.1468, 1.1016, 18.3071, 4.1627, 2.9347, 18.3071, 4.1627, 1.1016, 18.3071, 4.1627, 1.1016, 18.3071, 4.1627, 2.9347, 18.3071, 2.315, 2.9347, 18.3071, 7.1468, 1.1016, 18.3071, 7.1468, 2.9347, 18.3071, 4.1627, 2.9347, 18.3071, 7.1468, -0.9978, 18.3071, 7.1468, 1.1016, 18.3071, 4.1627, 1.1016, 18.3071, 7.1468, -0.9978, 18.3071, 4.1627, 1.1016, 18.3071, 4.1627, -0.9978, 18.3071, 8.8636, -0.9978, 18.3071, 7.1468, 1.1016, 18.3071, 7.1468, -0.9978, 18.3071, 4.1627, 1.1016, 18.3071, 2.315, 2.9347, 18.3071, 2.315, 1.1016, 18.3071, 4.1627, -0.9978, 18.3071, 4.1627, 1.1016, 18.3071, 2.315, 1.1016, 18.3071, 2.315, 1.1016, 18.3071, 2.315, 2.9347, 18.3071, 0.2004, 2.9347, 18.3071, 4.1627, -0.9978, 18.3071, 2.315, 1.1016, 18.3071, 2.315, -0.9978, 18.3071, 2.315, 1.1016, 18.3071, 0.2004, 2.9347, 18.3071, 0.2004, 1.1016, 18.3071, 2.315, -0.9978, 18.3071, 2.315, 1.1016, 18.3071, 0.2004, 1.1016, 18.3071, 2.315, -0.9978, 18.3071, 0.2004, 1.1016, 18.3071, 0.2004, -0.9978, 18.3071, 8.8636, -0.9978, 18.3071, 8.8636, 1.1016, 18.3071, 7.1468, 1.1016, 18.3071, 8.8636, 1.1016, 18.3071, 7.1468, 2.9347, 18.3071, 7.1468, 1.1016, 18.3071, 12.4351, -0.9964, 18.3071, 8.8636, 1.1016, 18.3071, 8.8636, -0.9978, 18.3071, 8.8636, 1.1016, 18.3071, 8.8636, 2.9347, 18.3071, 7.1468, 2.9347, 18.3071, 12.4351, -0.9964, 18.3071, 12.4351, 1.103, 18.3071, 8.8636, 1.1016, 18.3071, 12.4351, 1.103, 18.3071, 8.8636, 2.9347, 18.3071, 8.8636, 1.1016, 18.3071, 12.4351, 1.103, 18.3071, 12.4351, 2.9361, 18.3071, 8.8636, 2.9347, 18.3071, -1.8438, 1.1016, 18.3071, -3.8633, 2.9347, 18.3071, -3.8633, 1.1016, 18.3071, -1.8438, 1.1016, 18.3071, -1.8438, 2.9347, 18.3071, -3.8633, 2.9347, 18.3071, -1.8438, -0.9978, 18.3071, -1.8438, 1.1016, 18.3071, -3.8633, 1.1016, 18.3071, -1.8438, -0.9978, 18.3071, -3.8633, 1.1016, 18.3071, -3.8633, -0.9978, 18.3071, 0.2004, -0.9978, 18.3071, -1.8438, 1.1016, 18.3071, -1.8438, -0.9978, 18.3071, 0.2004, -0.9978, 18.3071, 0.2004, 1.1016, 18.3071, -1.8438, 1.1016, 18.3071, 0.2004, 1.1016, 18.3071, -1.8438, 2.9347, 18.3071, -1.8438, 1.1016, 18.3071, 0.2004, 1.1016, 18.3071, 0.2004, 2.9347, 18.3071, -1.8438, 2.9347, 18.3071, 12.4351, 2.9361, 12.4002, 8.8636, 2.9347, 10.3901, 8.8636, 2.9347, 12.4002, 12.4351, 2.9361, 12.4002, 12.4351, 2.9361, 10.3878, 8.8636, 2.9347, 10.3901, 12.4351, 2.9361, 15.2724, 12.4351, 2.9361, 12.4002, 8.8636, 2.9347, 12.4002, 12.4351, 2.9361, 10.3878, 8.8636, 2.9347, 8.3441, 8.8636, 2.9347, 10.3901, 12.4351, 2.9361, 10.3878, 12.4351, 2.9361, 8.3441, 8.8636, 2.9347, 8.3441, 6.0225, 2.9347, 10.1329, 8.8636, 2.9347, 12.4002, 8.8636, 2.9347, 10.3901, 6.0277, 2.9347, 8.087, 6.0225, 2.9347, 10.1329, 8.8636, 2.9347, 10.3901, 6.0277, 2.9347, 8.087, 8.8636, 2.9347, 10.3901, 8.8636, 2.9347, 8.3441, 6.0225, 2.9347, 10.1329, 7.1468, 2.9347, 12.4002, 8.8636, 2.9347, 12.4002, 6.0277, 2.9347, 6.0627, 6.0277, 2.9347, 8.087, 8.8636, 2.9347, 8.3441, 12.4351, 2.9361, 8.3441, 8.8636, 2.9347, 6.3198, 8.8636, 2.9347, 8.3441, 6.0277, 2.9347, 6.0627, 8.8636, 2.9347, 8.3441, 8.8636, 2.9347, 6.3198, 12.4351, 2.9361, 8.3441, 12.4351, 2.9361, 6.3176, 8.8636, 2.9347, 6.3198, 6.0277, 2.9347, 2.976, 6.0277, 2.9347, 6.0627, 8.8636, 2.9347, 6.3198, 7.1468, 2.9347, 12.4002, 8.8636, 2.9347, 15.2724, 8.8636, 2.9347, 12.4002, 12.4351, 2.9361, 15.2724, 8.8636, 2.9347, 12.4002, 8.8636, 2.9347, 15.2724, 8.8636, 2.9347, 15.2724, 12.4351, 2.9361, 18.3071, 12.4351, 2.9361, 15.2724, 7.1468, 2.9347, 12.4002, 7.1468, 2.9347, 15.2724, 8.8636, 2.9347, 15.2724, 8.8636, 2.9347, 15.2724, 8.8636, 2.9347, 18.3071, 12.4351, 2.9361, 18.3071, 7.1468, 2.9347, 15.2724, 8.8636, 2.9347, 18.3071, 8.8636, 2.9347, 15.2724, 7.1468, 2.9347, 15.2724, 7.1468, 2.9347, 18.3071, 8.8636, 2.9347, 18.3071, 6.0277, 2.9347, 2.976, 8.8636, 2.9347, 6.3198, 8.8636, 2.9347, 2.9842, 12.4351, 2.9361, 6.3176, 8.8636, 2.9347, 2.9842, 8.8636, 2.9347, 6.3198, 6.0277, 2.9347, 2.4858, 6.0277, 2.9347, 2.976, 8.8636, 2.9347, 2.9842, 12.4351, 2.9361, 6.3176, 12.4351, 2.9361, 2.9842, 8.8636, 2.9347, 2.9842, 6.0277, 2.9347, 2.4858, 8.8636, 2.9347, 2.9842, 8.8636, 2.9347, 2.4858, 12.4351, 2.9361, 2.9842, 8.8636, 2.9347, 2.4858, 8.8636, 2.9347, 2.9842, 6.0277, 2.9347, 0.3344, 6.0277, 2.9347, 2.4858, 8.8636, 2.9347, 2.4858, 12.4351, 2.9361, 2.9842, 12.4351, 2.9361, 2.4857, 8.8636, 2.9347, 2.4858, 12.4351, 2.9361, 2.4857, 8.8636, 2.9347, 0.3344, 8.8636, 2.9347, 2.4858, 6.0277, 2.9347, 0.3344, 8.8636, 2.9347, 2.4858, 8.8636, 2.9347, 0.3344, 12.4351, 2.9361, 2.4857, 12.4351, 2.9361, 0.3345, 8.8636, 2.9347, 0.3344, 12.4351, 2.9361, -1.7306, 8.8636, 2.9347, 0.3344, 12.4351, 2.9361, 0.3345, 6.0277, 2.9347, 0.3344, 8.8636, 2.9347, 0.3344, 8.8636, 2.9347, -1.7309, 12.4351, 2.9361, -1.7306, 8.8636, 2.9347, -1.7309, 8.8636, 2.9347, 0.3344, 6.0277, 2.9347, 0.3344, 8.8636, 2.9347, -1.7309, 6.0277, 2.9347, -1.7309, 12.4351, 2.9361, -2.2789, 8.8636, 2.9347, -1.7309, 12.4351, 2.9361, -1.7306, 6.0277, 2.9347, -1.7309, 8.8636, 2.9347, -1.7309, 8.8636, 2.9347, -2.2789, 12.4351, 2.9361, -2.2789, 8.8636, 2.9347, -2.2789, 8.8636, 2.9347, -1.7309, 6.0277, 2.9347, -1.7309, 8.8636, 2.9347, -2.2789, 6.0277, 2.9347, -2.2633, 12.4351, 2.9361, -5.6879, 8.8636, 2.9347, -2.2789, 12.4351, 2.9361, -2.2789, 6.0277, 2.9347, -2.2633, 8.8636, 2.9347, -2.2789, 8.8636, 2.9347, -5.6905, 12.4351, 2.9361, -5.6879, 8.8636, 2.9347, -5.6905, 8.8636, 2.9347, -2.2789, 6.0277, 2.9347, -2.2633, 8.8636, 2.9347, -5.6905, 6.0277, 2.9347, -5.1411, 12.4351, 2.9361, -7.7606, 8.8636, 2.9347, -5.6905, 12.4351, 2.9361, -5.6879, 6.0277, 2.9347, -5.1411, 8.8636, 2.9347, -5.6905, 8.8636, 2.9347, -7.7606, 12.4351, 2.9361, -7.7606, 8.8636, 2.9347, -7.7606, 8.8636, 2.9347, -5.6905, 6.0277, 2.9347, -5.1411, 8.8636, 2.9347, -7.7606, 6.0277, 2.9347, -7.2112, 12.4351, 2.9361, -9.6808, 8.8636, 2.9347, -7.7606, 12.4351, 2.9361, -7.7606, 6.0277, 2.9347, -7.2112, 8.8636, 2.9347, -7.7606, 8.8636, 2.9347, -9.6838, 12.4351, 2.9361, -9.6808, 8.8636, 2.9347, -9.6838, 8.8636, 2.9347, -7.7606, 6.0277, 2.9347, -7.2112, 8.8636, 2.9347, -9.6838, 6.0371, 2.9347, -9.1346, 12.4351, 2.9361, -11.471, 8.8636, 2.9347, -9.6838, 12.4351, 2.9361, -9.6808, 6.0371, 2.9347, -9.1346, 8.8636, 2.9347, -9.6838, 8.8636, 2.9347, -11.471, 12.4351, 2.9361, -11.471, 8.8636, 2.9347, -11.471, 8.8636, 2.9347, -9.6838, 6.0371, 2.9347, -9.1346, 8.8636, 2.9347, -11.471, 7.1468, 2.9347, -11.4997, 12.4351, 2.9361, -14.6397, 8.8636, 2.9347, -11.471, 12.4351, 2.9361, -11.471, 7.1468, 2.9347, -11.4997, 8.8636, 2.9347, -11.471, 8.8636, 2.9347, -14.6397, 12.4351, 2.9361, -14.6397, 8.8636, 2.9347, -14.6397, 8.8636, 2.9347, -11.471, 8.8636, 2.9347, -14.6397, 12.4351, 2.9361, -14.6397, 12.4351, 2.9829, -17.6829, 7.1468, 2.9347, -11.4997, 8.8636, 2.9347, -14.6397, 7.1468, 2.9347, -14.6397, 8.8636, 2.9347, -14.6397, 12.4351, 2.9829, -17.6829, 8.8633, 2.9815, -17.6829, 7.1468, 2.9347, -14.6397, 8.8636, 2.9347, -14.6397, 8.8633, 2.9815, -17.6829, 7.1468, 2.9347, -14.6397, 8.8633, 2.9815, -17.6829, 7.147, 2.9815, -17.6829, -10.4511, 2.9348, 0.3344, -8.6689, 2.9347, 2.4858, -8.6689, 2.9347, 0.3344, -8.6689, 2.9347, 0.3344, -8.6689, 2.9347, 2.4858, -5.8966, 2.9347, 2.4858, -8.6689, 2.9347, 0.3344, -5.8966, 2.9347, 2.4858, -5.8966, 2.9347, 0.3344, -8.6689, 2.9347, 2.4858, -5.8966, 2.9347, 2.976, -5.8966, 2.9347, 2.4858, -8.6689, 2.9347, 0.3344, -5.8966, 2.9347, 0.3344, -5.8966, 2.9347, -1.7309, -8.6689, 2.9347, 0.3344, -5.8966, 2.9347, -1.7309, -8.6689, 2.9347, -1.7309, -10.4511, 2.9348, 0.3344, -8.6689, 2.9347, 0.3344, -8.6689, 2.9347, -1.7309, -8.6689, 2.9347, -1.7309, -5.8966, 2.9347, -1.7309, -5.8966, 2.9347, -2.2633, -8.6689, 2.9347, 2.4858, -8.6689, 2.9347, 2.9842, -5.8966, 2.9347, 2.976, -8.6689, 2.9347, 2.9842, -5.8966, 2.9347, 6.0473, -5.8966, 2.9347, 2.976, -10.4511, 2.9348, 0.3344, -10.4511, 2.9348, 2.4858, -8.6689, 2.9347, 2.4858, -10.4511, 2.9348, 2.4858, -8.6689, 2.9347, 2.9842, -8.6689, 2.9347, 2.4858, -8.6689, 2.9347, -1.7309, -5.8966, 2.9347, -2.2633, -8.6689, 2.9347, -2.2789, -8.6689, 2.9347, -2.2789, -5.8966, 2.9347, -2.2633, -5.8966, 2.9347, -5.1505, -10.4511, 2.9348, 0.3344, -8.6689, 2.9347, -1.7309, -10.4511, 2.9348, -1.7307, -10.4511, 2.9348, -1.7307, -8.6689, 2.9347, -1.7309, -8.6689, 2.9347, -2.2789, -12.2333, 2.9349, 0.3344, -10.4511, 2.9348, 2.4858, -10.4511, 2.9348, 0.3344, -12.2333, 2.9349, 0.3344, -10.4511, 2.9348, 0.3344, -10.4511, 2.9348, -1.7307, -8.6689, 2.9347, -2.2789, -5.8966, 2.9347, -5.1505, -8.6689, 2.9347, -5.6998, -8.6689, 2.9347, -5.6998, -5.8966, 2.9347, -5.1505, -5.8966, 2.9347, -7.2112, -10.4511, 2.9348, -1.7307, -8.6689, 2.9347, -2.2789, -10.4511, 2.9348, -2.279, -10.4511, 2.9348, -2.279, -8.6689, 2.9347, -2.2789, -8.6689, 2.9347, -5.6998, -12.2333, 2.9349, -1.7305, -10.4511, 2.9348, -1.7307, -10.4511, 2.9348, -2.279, -12.2333, 2.9349, 0.3344, -10.4511, 2.9348, -1.7307, -12.2333, 2.9349, -1.7305, -12.2333, 2.9349, -1.7305, -10.4511, 2.9348, -2.279, -12.2333, 2.9349, -2.279, -12.2333, 2.9349, -1.7305, -11.9429, 2.9349, 0.3344, -12.2333, 2.9349, 0.3344, -12.2333, 2.9349, -1.7305, -11.9429, 2.9349, -1.7305, -11.9429, 2.9349, 0.3344, -12.2333, 2.9349, 0.3344, -11.9429, 2.9349, 0.3344, -11.9429, 2.9349, 2.4858, -12.2333, 2.9349, 0.3344, -11.9429, 2.9349, 2.4858, -12.2333, 2.9349, 2.4858, -12.2333, 2.9349, 0.3344, -12.2333, 2.9349, 2.4858, -10.4511, 2.9348, 2.4858, -12.2333, 2.9349, -2.279, -10.4511, 2.9348, -2.279, -10.4511, 2.9348, -5.6998, -10.4511, 2.9348, -2.279, -8.6689, 2.9347, -5.6998, -10.4511, 2.9348, -5.6998, -12.2333, 2.9349, -2.279, -10.4511, 2.9348, -5.6998, -12.2333, 2.9349, -5.6998, -12.2333, 2.9349, 2.4858, -10.4511, 2.9348, 2.9842, -10.4511, 2.9348, 2.4858, -10.4511, 2.9348, 2.4858, -10.4511, 2.9348, 2.9842, -8.6689, 2.9347, 2.9842, -12.2333, 2.9349, 2.4858, -12.2333, 2.9349, 2.9842, -10.4511, 2.9348, 2.9842, -12.2333, 2.9349, -5.6998, -10.4511, 2.9348, -5.6998, -10.4511, 2.9348, -7.7605, -12.2333, 2.9349, -5.6998, -10.4511, 2.9348, -7.7605, -12.2333, 2.9349, -7.7605, -10.4511, 2.9348, -5.6998, -8.6689, 2.9347, -5.6998, -8.6689, 2.9347, -7.7606, -10.4511, 2.9348, -5.6998, -8.6689, 2.9347, -7.7606, -10.4511, 2.9348, -7.7605, -8.6689, 2.9347, -5.6998, -5.8966, 2.9347, -7.2112, -8.6689, 2.9347, -7.7606, -8.6689, 2.9347, -7.7606, -5.8966, 2.9347, -7.2112, -5.9311, 2.9347, -9.1644, -8.6689, 2.9347, -7.7606, -5.9311, 2.9347, -9.1644, -8.6689, 2.9347, -9.7137, -10.4511, 2.9348, -7.7605, -8.6689, 2.9347, -7.7606, -8.6689, 2.9347, -9.7137, -8.6689, 2.9347, -9.7137, -5.9311, 2.9347, -9.1644, -5.9311, 2.9347, -11.4997, -12.2333, 2.9349, -7.7605, -10.4511, 2.9348, -7.7605, -10.4511, 2.9348, -9.7137, -10.4511, 2.9348, -7.7605, -8.6689, 2.9347, -9.7137, -10.4511, 2.9348, -9.7137, -12.2333, 2.9349, -7.7605, -10.4511, 2.9348, -9.7137, -12.2333, 2.9349, -9.7137, -8.6689, 2.9347, -9.7137, -5.9311, 2.9347, -11.4997, -8.6689, 2.9347, -11.471, -10.4511, 2.9348, -9.7137, -8.6689, 2.9347, -9.7137, -8.6689, 2.9347, -11.471, -8.6689, 2.9347, -11.471, -5.9311, 2.9347, -11.4997, -5.9311, 2.9347, -14.6397, -12.2333, 2.9349, -9.7137, -10.4511, 2.9348, -9.7137, -10.4511, 2.9348, -11.4711, -10.4511, 2.9348, -9.7137, -8.6689, 2.9347, -11.471, -10.4511, 2.9348, -11.4711, -12.2333, 2.9349, -9.7137, -10.4511, 2.9348, -11.4711, -12.2333, 2.9349, -11.4711, -8.6689, 2.9347, -11.471, -5.9311, 2.9347, -14.6397, -9.8978, 2.9347, -14.6397, -10.4511, 2.9348, -11.4711, -8.6689, 2.9347, -11.471, -9.8978, 2.9347, -14.6397, -9.8978, 2.9347, -14.6397, -5.9311, 2.9347, -14.6397, -5.9311, 2.9815, -17.6829, -12.2333, 2.9349, -11.4711, -10.4511, 2.9348, -11.4711, -11.0655, 2.9348, -14.6397, -10.4511, 2.9348, -11.4711, -9.8978, 2.9347, -14.6397, -11.0655, 2.9348, -14.6397, -12.2333, 2.9349, -11.4711, -11.0655, 2.9348, -14.6397, -12.2333, 2.9349, -14.6397, -9.8978, 2.9347, -14.6397, -5.9311, 2.9815, -17.6829, -9.8979, 2.9815, -17.6829, -11.0655, 2.9348, -14.6397, -12.2333, 2.4983, -14.6417, -12.2333, 2.9349, -14.6397, -9.8979, 2.9815, -17.6829, -8.5269, 2.4982, -14.6393, -9.8978, 2.9347, -14.6397, -9.8978, 2.9347, -14.6397, -10.3801, 2.4982, -14.6405, -11.0655, 2.9348, -14.6397, -11.0655, 2.9348, -14.6397, -10.3801, 2.4982, -14.6405, -12.2333, 2.4983, -14.6417, -9.8978, 2.9347, -14.6397, -8.5269, 2.4982, -14.6393, -10.3801, 2.4982, -14.6405, -9.8979, 2.9815, -17.6829, -8.5197, 2.5449, -17.6829, -8.5269, 2.4982, -14.6393, -11.8789, 2.4982, -14.8241, -12.2333, 2.4983, -14.6417, -10.3801, 2.4982, -14.6405, -10.3788, 2.4982, -14.8241, -10.3801, 2.4982, -14.6405, -8.5269, 2.4982, -14.6393, -11.8789, 2.4982, -14.8241, -10.3801, 2.4982, -14.6405, -10.3788, 2.4982, -14.8241, -8.8788, 2.4982, -14.8241, -8.5269, 2.4982, -14.6393, -8.5197, 2.5449, -17.6829, -10.3788, 2.4982, -14.8241, -8.5269, 2.4982, -14.6393, -8.8788, 2.4982, -14.8241, -8.8788, 2.4982, -14.8241, -8.5197, 2.5449, -17.6829, -8.8788, 2.4982, -17.238, -8.8788, 2.4982, -17.238, -8.5197, 2.5449, -17.6829, -10.3729, 2.545, -17.6829, -8.8788, 2.4982, -14.8241, -10.3788, 1.9316, -14.8241, -10.3788, 2.4982, -14.8241, -8.8788, 2.4982, -17.238, -10.3729, 2.545, -17.6829, -10.3788, 2.4982, -17.238, -10.3788, 2.4982, -17.238, -10.3729, 2.545, -17.6829, -12.226, 2.5451, -17.6829, -8.8788, 2.4982, -17.238, -8.8788, 1.9316, -14.8241, -8.8788, 2.4982, -14.8241, -8.8788, 2.4982, -14.8241, -8.8788, 1.9316, -14.8241, -10.3788, 1.9316, -14.8241, -10.3788, 2.4982, -17.238, -8.8788, 1.9316, -17.238, -8.8788, 2.4982, -17.238, -8.8788, 2.4982, -17.238, -8.8788, 1.9316, -17.238, -8.8788, 1.9316, -14.8241, -10.3788, 2.4982, -17.238, -12.226, 2.5451, -17.6829, -11.8789, 2.4982, -17.238, -11.8789, 2.4982, -17.238, -12.226, 2.5451, -17.6829, -12.2333, 2.4983, -14.6417, -11.8789, 2.4982, -17.238, -12.2333, 2.4983, -14.6417, -11.8789, 2.4982, -14.8241, -8.898, 1.9316, -14.9039, -8.8788, 1.9316, -14.8241, -8.8788, 1.9316, -17.238, -11.8789, 2.4982, -17.238, -10.3788, 1.9316, -17.238, -10.3788, 2.4982, -17.238, -10.3788, 2.4982, -17.238, -10.3788, 1.9316, -17.238, -8.8788, 1.9316, -17.238, -11.8789, 2.4982, -14.8241, -11.8789, 1.9316, -17.238, -11.8789, 2.4982, -17.238, -11.8789, 2.4982, -17.238, -11.8789, 1.9316, -17.238, -10.3788, 1.9316, -17.238, -9.5482, 1.9316, -14.9039, -8.8788, 1.9316, -14.8241, -8.898, 1.9316, -14.9039, -9.5482, 1.9316, -14.9039, -10.3788, 1.9316, -14.8241, -8.8788, 1.9316, -14.8241, -8.898, 1.9316, -14.9039, -8.8788, 1.9316, -17.238, -8.898, 1.9316, -16.2043, -9.5482, 1.9316, -14.9039, -8.898, 1.9316, -14.9039, -8.898, 1.9316, -16.2043, -8.898, 1.9316, -16.2043, -8.8788, 1.9316, -17.238, -10.3788, 1.9316, -17.238, -8.898, 1.9316, -16.2043, -10.3788, 1.9316, -17.238, -9.5482, 1.9316, -16.2043, -9.5482, 1.9316, -14.9039, -8.898, 1.9316, -16.2043, -9.5482, 1.9316, -16.2043, -9.5482, 1.9316, -16.2043, -10.3788, 1.9316, -17.238, -11.8789, 1.9316, -17.238, -10.1985, 1.9316, -14.9039, -10.3788, 1.9316, -14.8241, -9.5482, 1.9316, -14.9039, -10.1985, 1.9316, -14.9039, -9.5482, 1.9316, -14.9039, -9.5482, 1.9316, -16.2043, -10.1985, 1.9316, -14.9039, -9.5482, 1.9316, -16.2043, -10.1985, 1.9316, -16.2043, -9.5482, 1.9316, -16.2043, -11.8789, 1.9316, -17.238, -10.1985, 1.9316, -16.2043, -10.1985, 1.9316, -14.9039, -11.8789, 1.9316, -14.8241, -10.3788, 1.9316, -14.8241, -10.1985, 1.9316, -16.2043, -11.8789, 1.9316, -14.8241, -10.1985, 1.9316, -14.9039, -10.1985, 1.9316, -16.2043, -11.8789, 1.9316, -17.238, -11.8789, 1.9316, -14.8241, -11.8789, 2.4982, -14.8241, -11.8789, 1.9316, -14.8241, -11.8789, 1.9316, -17.238, -10.3788, 2.4982, -14.8241, -10.3788, 1.9316, -14.8241, -11.8789, 1.9316, -14.8241, -10.3788, 2.4982, -14.8241, -11.8789, 1.9316, -14.8241, -11.8789, 2.4982, -14.8241, -5.8966, 2.9347, 0.3344, -3.8476, 2.9347, 3.5793, -3.8476, 2.9347, 0.3344, -5.8966, 2.9347, 0.3344, -5.8966, 2.9347, 2.4858, -3.8476, 2.9347, 3.5793, -5.8966, 2.9347, 2.4858, -3.8476, 2.9347, 3.8124, -3.8476, 2.9347, 3.5793, -5.8966, 2.9347, 2.4858, -5.8966, 2.9347, 2.976, -3.8476, 2.9347, 3.8124, -5.8966, 2.9347, 2.976, -3.8476, 2.9347, 6.0627, -3.8476, 2.9347, 3.8124, -5.8966, 2.9347, 2.976, -5.8966, 2.9347, 6.0473, -3.8476, 2.9347, 6.0627, -3.8476, 2.9347, 3.5793, -3.8476, 2.9347, 3.8124, -1.8255, 2.9347, 3.8094, -3.8476, 2.9347, 3.5793, -1.8255, 2.9347, 3.8094, -1.8255, 2.9347, 3.5793, -3.8476, 2.9347, 0.3344, -3.8476, 2.9347, 3.5793, -1.8255, 2.9347, 3.5793, -1.8255, 2.9347, 3.5793, -1.8255, 2.9347, 3.8094, 0.2004, 2.9347, 3.8094, -5.8966, 2.9347, 0.3344, -3.8476, 2.9347, 0.3344, -3.8476, 2.9347, -1.1815, -5.8966, 2.9347, 0.3344, -3.8476, 2.9347, -1.1815, -5.8966, 2.9347, -1.7309, -5.8966, 2.9347, -1.7309, -3.8476, 2.9347, -1.1815, -3.8476, 2.9347, -1.7139, -5.8966, 2.9347, -1.7309, -3.8476, 2.9347, -1.7139, -5.8966, 2.9347, -2.2633, -5.8966, 2.9347, -2.2633, -3.8476, 2.9347, -1.7139, -3.8476, 2.9347, -5.1411, -5.8966, 2.9347, -2.2633, -3.8476, 2.9347, -5.1411, -5.8966, 2.9347, -5.1505, -3.8476, 2.9347, -1.1815, -1.8255, 2.9347, -1.7434, -3.8476, 2.9347, -1.7139, -3.8476, 2.9347, -1.1815, -1.8255, 2.9347, -1.1815, -1.8255, 2.9347, -1.7434, -3.8476, 2.9347, 0.3344, -1.8255, 2.9347, -1.1815, -3.8476, 2.9347, -1.1815, -1.8255, 2.9347, -1.1815, 0.2004, 2.9347, -1.7434, -1.8255, 2.9347, -1.7434, -3.8476, 2.9347, 0.3344, -1.8255, 2.9347, 0.3344, -1.8255, 2.9347, -1.1815, -3.8476, 2.9347, 0.3344, -1.8255, 2.9347, 3.5793, -1.8255, 2.9347, 0.3344, -1.8255, 2.9347, -1.1815, 0.2004, 2.9347, -1.1815, 0.2004, 2.9347, -1.7434, -1.8255, 2.9347, 0.3344, 0.2004, 2.9347, -1.1815, -1.8255, 2.9347, -1.1815, 0.2004, 2.9347, -1.1815, 2.2438, 2.9347, -1.7434, 0.2004, 2.9347, -1.7434, -1.8255, 2.9347, 0.3344, -1.8255, 2.9347, 3.5793, 0.2004, 2.9347, 3.5793, -1.8255, 2.9347, 3.5793, 0.2004, 2.9347, 3.8094, 0.2004, 2.9347, 3.5793, 0.2004, 2.9347, 3.5793, 0.2004, 2.9347, 3.8094, 2.2438, 2.9347, 3.8094, -1.8255, 2.9347, 0.3344, 0.2004, 2.9347, 3.5793, 0.2004, 2.9347, 0.3344, -1.8255, 2.9347, 0.3344, 0.2004, 2.9347, 0.3344, 0.2004, 2.9347, -1.1815, 0.2004, 2.9347, 3.5793, 2.2438, 2.9347, 3.8094, 2.2438, 2.9347, 3.5793, 0.2004, 2.9347, 0.3344, 0.2004, 2.9347, 3.5793, 2.2438, 2.9347, 3.5793, 2.2438, 2.9347, 3.5793, 2.2438, 2.9347, 3.8094, 4.1996, 2.9347, 3.8124, 0.2004, 2.9347, -1.1815, 2.2438, 2.9347, -1.1815, 2.2438, 2.9347, -1.7434, 0.2004, 2.9347, 0.3344, 2.2438, 2.9347, -1.1815, 0.2004, 2.9347, -1.1815, 2.2438, 2.9347, -1.1815, 4.1996, 2.9347, -1.7139, 2.2438, 2.9347, -1.7434, 4.1996, 2.9347, 3.8124, 4.1996, 2.9347, 6.0627, 6.0277, 2.9347, 6.0627, 4.1996, 2.9347, 3.8124, 6.0277, 2.9347, 6.0627, 6.0277, 2.9347, 2.976, 4.1996, 2.9347, 3.5793, 4.1996, 2.9347, 3.8124, 6.0277, 2.9347, 2.976, 2.2438, 2.9347, 3.5793, 4.1996, 2.9347, 3.8124, 4.1996, 2.9347, 3.5793, 4.1996, 2.9347, 3.5793, 6.0277, 2.9347, 2.976, 6.0277, 2.9347, 2.4858, 0.2004, 2.9347, 0.3344, 2.2438, 2.9347, 3.5793, 2.2438, 2.9347, 0.3344, 2.2438, 2.9347, 0.3344, 2.2438, 2.9347, 3.5793, 4.1996, 2.9347, 3.5793, 0.2004, 2.9347, 0.3344, 2.2438, 2.9347, 0.3344, 2.2438, 2.9347, -1.1815, 4.1996, 2.9347, 0.3344, 4.1996, 2.9347, 3.5793, 6.0277, 2.9347, 2.4858, 2.2438, 2.9347, 0.3344, 4.1996, 2.9347, 3.5793, 4.1996, 2.9347, 0.3344, 4.1996, 2.9347, 0.3344, 6.0277, 2.9347, 2.4858, 6.0277, 2.9347, 0.3344, 4.1996, 2.9347, 0.3344, 6.0277, 2.9347, 0.3344, 6.0277, 2.9347, -1.7309, 2.2438, 2.9347, 0.3344, 4.1996, 2.9347, 0.3344, 4.1996, 2.9347, -1.1815, 2.2438, 2.9347, 0.3344, 4.1996, 2.9347, -1.1815, 2.2438, 2.9347, -1.1815, 4.1996, 2.9347, 0.3344, 6.0277, 2.9347, -1.7309, 4.1996, 2.9347, -1.1815, 2.2438, 2.9347, -1.1815, 4.1996, 2.9347, -1.1815, 4.1996, 2.9347, -1.7139, 4.1996, 2.9347, -1.1815, 6.0277, 2.9347, -1.7309, 6.0277, 2.9347, -2.2633, 4.1996, 2.9347, -1.1815, 6.0277, 2.9347, -2.2633, 4.1996, 2.9347, -1.7139, 4.1996, 2.9347, -1.7139, 6.0277, 2.9347, -2.2633, 6.0277, 2.9347, -5.1411, 4.1996, 2.9347, -1.7139, 6.0277, 2.9347, -5.1411, 4.1996, 2.9347, -5.1411, 4.1996, 2.2177, 10.1329, 6.3454, 2.2034, 10.243, 6.0277, 2.2177, 10.1329, 6.0277, 2.2177, 10.1329, 6.3454, 2.2034, 10.243, 6.3454, 2.2034, 8.087, 4.1996, 2.2177, 10.1329, 4.4228, 2.2034, 10.243, 6.3454, 2.2034, 10.243, 6.0277, 2.2177, 10.1329, 6.3454, 2.2034, 8.087, 6.0277, 2.2177, 8.087, 4.1996, 2.2177, 12.1681, 4.4228, 2.2034, 10.243, 4.1996, 2.2177, 10.1329, 6.0277, 2.2177, 8.087, 6.3454, 2.2034, 8.087, 6.3454, 2.2034, 5.9526, 4.1996, 2.2177, 12.1681, 4.4228, 2.2034, 12.3883, 4.4228, 2.2034, 10.243, 6.0277, 2.2177, 8.087, 6.3454, 2.2034, 5.9526, 6.0277, 2.2177, 6.0627, 2.315, 2.2177, 12.1681, 4.4228, 2.2034, 12.3883, 4.1996, 2.2177, 12.1681, 6.0277, 2.2177, 6.0627, 6.3454, 2.2034, 5.9526, 4.4228, 2.2034, 5.9526, 2.315, 2.2177, 12.1681, 2.3217, 2.2034, 12.3883, 4.4228, 2.2034, 12.3883, 6.0277, 2.2177, 6.0627, 4.4228, 2.2034, 5.9526, 4.1996, 2.2177, 6.0627, 0.2004, 2.2177, 12.1681, 2.3217, 2.2034, 12.3883, 2.315, 2.2177, 12.1681, 4.1996, 2.2177, 6.0627, 4.4228, 2.2034, 5.9526, 4.4228, 2.2034, 3.585, 0.2004, 2.2177, 12.1681, 0.2004, 2.2034, 12.3883, 2.3217, 2.2034, 12.3883, 4.1996, 2.2177, 6.0627, 4.4228, 2.2034, 3.585, 4.1996, 2.2177, 3.8094, -1.8438, 2.2177, 12.1681, 0.2004, 2.2034, 12.3883, 0.2004, 2.2177, 12.1681, 4.1996, 2.2177, 3.8094, 4.4228, 2.2034, 3.585, 2.3568, 2.2034, 3.585, -1.8438, 2.2177, 12.1681, -1.8412, 2.2034, 12.3883, 0.2004, 2.2034, 12.3883, 4.1996, 2.2177, 3.8094, 2.3568, 2.2034, 3.585, 2.2438, 2.2177, 3.8094, -3.8476, 2.2177, 12.1681, -1.8412, 2.2034, 12.3883, -1.8438, 2.2177, 12.1681, 2.2438, 2.2177, 3.8094, 2.3568, 2.2034, 3.585, 0.2004, 2.2034, 3.585, -3.8476, 2.2177, 12.1681, -4.0649, 2.2034, 12.3883, -1.8412, 2.2034, 12.3883, 2.2438, 2.2177, 3.8094, 0.2004, 2.2034, 3.585, 0.2004, 2.2177, 3.8094, -3.8476, 2.2177, 10.1329, -4.0649, 2.2034, 12.3883, -3.8476, 2.2177, 12.1681, 0.2004, 2.2177, 3.8094, 0.2004, 2.2034, 3.585, -1.9326, 2.2034, 3.585, -3.8476, 2.2177, 10.1329, -4.0649, 2.2034, 10.243, -4.0649, 2.2034, 12.3883, 0.2004, 2.2177, 3.8094, -1.9326, 2.2034, 3.585, -1.8255, 2.2177, 3.8094, -5.8966, 2.2177, 10.1329, -4.0649, 2.2034, 10.243, -3.8476, 2.2177, 10.1329, -1.8255, 2.2177, 3.8094, -1.9326, 2.2034, 3.585, -4.0649, 2.2034, 3.585, -5.8966, 2.2177, 10.1329, -6.2241, 2.2034, 10.243, -4.0649, 2.2034, 10.243, -1.8255, 2.2177, 3.8094, -4.0649, 2.2034, 3.585, -3.8476, 2.2177, 3.8094, -5.8966, 2.2177, 8.087, -6.2241, 2.2034, 10.243, -5.8966, 2.2177, 10.1329, -3.8476, 2.2177, 3.8094, -4.0649, 2.2034, 3.585, -4.0649, 2.2034, 5.9526, -5.8966, 2.2177, 8.087, -6.2241, 2.2034, 8.087, -6.2241, 2.2034, 10.243, -3.8476, 2.2177, 3.8094, -4.0649, 2.2034, 5.9526, -3.8476, 2.2177, 6.0627, -5.8966, 2.2177, 6.0627, -6.2241, 2.2034, 8.087, -5.8966, 2.2177, 8.087, -3.8476, 2.2177, 6.0627, -4.0649, 2.2034, 5.9526, -6.2241, 2.2034, 5.9526, -5.8966, 2.2177, 6.0627, -6.2241, 2.2034, 5.9526, -6.2241, 2.2034, 8.087, -3.8476, 2.2177, 6.0627, -6.2241, 2.2034, 5.9526, -5.8966, 2.2177, 6.0627, -3.8476, 2.7453, 12.1681, -4.0649, 2.7596, 10.243, -3.8476, 2.7453, 10.1329, -3.8476, 2.7453, 10.1329, -4.0649, 2.7596, 10.243, -6.2241, 2.7596, 10.243, -3.8476, 2.7453, 12.1681, -4.0649, 2.7596, 12.3883, -4.0649, 2.7596, 10.243, -3.8476, 2.7453, 10.1329, -6.2241, 2.7596, 10.243, -5.8966, 2.7453, 10.1329, -1.8438, 2.7453, 12.1681, -4.0649, 2.7596, 12.3883, -3.8476, 2.7453, 12.1681, -5.8966, 2.7453, 10.1329, -6.2241, 2.7596, 10.243, -6.2241, 2.7596, 8.087, -1.8438, 2.7453, 12.1681, -1.8412, 2.7596, 12.3883, -4.0649, 2.7596, 12.3883, -5.8966, 2.7453, 10.1329, -6.2241, 2.7596, 8.087, -5.8966, 2.7453, 8.087, 0.2004, 2.7453, 12.1681, -1.8412, 2.7596, 12.3883, -1.8438, 2.7453, 12.1681, -5.8966, 2.7453, 8.087, -6.2241, 2.7596, 8.087, -6.2241, 2.7596, 5.9526, 0.2004, 2.7453, 12.1681, 0.2004, 2.7596, 12.3883, -1.8412, 2.7596, 12.3883, -5.8966, 2.7453, 8.087, -6.2241, 2.7596, 5.9526, -5.8966, 2.7453, 6.0627, 2.315, 2.7453, 12.1681, 0.2004, 2.7596, 12.3883, 0.2004, 2.7453, 12.1681, -5.8966, 2.7453, 6.0627, -6.2241, 2.7596, 5.9526, -4.0649, 2.7596, 5.9526, 2.315, 2.7453, 12.1681, 2.3217, 2.7596, 12.3883, 0.2004, 2.7596, 12.3883, -5.8966, 2.7453, 6.0627, -4.0649, 2.7596, 5.9526, -3.8476, 2.7453, 6.0627, 4.1996, 2.7453, 12.1681, 2.3217, 2.7596, 12.3883, 2.315, 2.7453, 12.1681, -3.8476, 2.7453, 6.0627, -4.0649, 2.7596, 5.9526, -4.0649, 2.7596, 3.585, 4.1996, 2.7453, 12.1681, 4.4228, 2.7596, 12.3883, 2.3217, 2.7596, 12.3883, -3.8476, 2.7453, 6.0627, -4.0649, 2.7596, 3.585, -3.8476, 2.7453, 3.8094, 4.1996, 2.7453, 10.1329, 4.4228, 2.7596, 12.3883, 4.1996, 2.7453, 12.1681, -3.8476, 2.7453, 3.8094, -4.0649, 2.7596, 3.585, -1.9326, 2.7596, 3.585, 4.1996, 2.7453, 10.1329, 4.4228, 2.7596, 10.243, 4.4228, 2.7596, 12.3883, -3.8476, 2.7453, 3.8094, -1.9326, 2.7596, 3.585, -1.8255, 2.7453, 3.8094, 6.0277, 2.7453, 10.1329, 4.4228, 2.7596, 10.243, 4.1996, 2.7453, 10.1329, -1.8255, 2.7453, 3.8094, -1.9326, 2.7596, 3.585, 0.2004, 2.7596, 3.585, 6.0277, 2.7453, 10.1329, 6.3454, 2.7596, 10.243, 4.4228, 2.7596, 10.243, -1.8255, 2.7453, 3.8094, 0.2004, 2.7596, 3.585, 0.2004, 2.7453, 3.8094, 6.0277, 2.7453, 8.087, 6.3454, 2.7596, 10.243, 6.0277, 2.7453, 10.1329, 0.2004, 2.7453, 3.8094, 0.2004, 2.7596, 3.585, 2.3568, 2.7596, 3.585, 6.0277, 2.7453, 8.087, 6.3454, 2.7596, 8.087, 6.3454, 2.7596, 10.243, 0.2004, 2.7453, 3.8094, 2.3568, 2.7596, 3.585, 2.2438, 2.7453, 3.8094, 6.0277, 2.7453, 6.0627, 6.3454, 2.7596, 8.087, 6.0277, 2.7453, 8.087, 2.2438, 2.7453, 3.8094, 2.3568, 2.7596, 3.585, 4.4228, 2.7596, 3.585, 6.0277, 2.7453, 6.0627, 6.3454, 2.7596, 5.9526, 6.3454, 2.7596, 8.087, 2.2438, 2.7453, 3.8094, 4.4228, 2.7596, 3.585, 4.1996, 2.7453, 3.8094, 4.1996, 2.7453, 6.0627, 6.3454, 2.7596, 5.9526, 6.0277, 2.7453, 6.0627, 4.1996, 2.7453, 3.8094, 4.4228, 2.7596, 3.585, 4.4228, 2.7596, 5.9526, 4.1996, 2.7453, 6.0627, 4.4228, 2.7596, 5.9526, 6.3454, 2.7596, 5.9526, 4.1996, 2.7453, 3.8094, 4.4228, 2.7596, 5.9526, 4.1996, 2.7453, 6.0627, -10.4511, 2.9348, 2.9842, -8.6689, 2.9347, 6.3045, -8.6689, 2.9347, 2.9842, -8.6689, 2.9347, 2.9842, -8.6689, 2.9347, 6.3045, -5.8966, 2.9347, 6.0473, -8.6689, 2.9347, 6.3045, -5.8966, 2.9347, 8.087, -5.8966, 2.9347, 6.0473, -10.4511, 2.9348, 2.9842, -10.4511, 2.9348, 6.3045, -8.6689, 2.9347, 6.3045, -12.2333, 2.9349, 2.9842, -10.4511, 2.9348, 6.3045, -10.4511, 2.9348, 2.9842, -12.2333, 2.9349, 2.9842, -12.2333, 2.9349, 6.3044, -10.4511, 2.9348, 6.3045, -8.6689, 2.9347, 6.3045, -8.6689, 2.9347, 8.3441, -5.8966, 2.9347, 8.087, -10.4511, 2.9348, 6.3045, -8.6689, 2.9347, 8.3441, -8.6689, 2.9347, 6.3045, -8.6689, 2.9347, 8.3441, -5.9311, 2.9347, 10.1047, -5.8966, 2.9347, 8.087, -12.2333, 2.9349, 6.3044, -10.4511, 2.9348, 8.3441, -10.4511, 2.9348, 6.3045, -10.4511, 2.9348, 6.3045, -10.4511, 2.9348, 8.3441, -8.6689, 2.9347, 8.3441, -12.2333, 2.9349, 6.3044, -12.2333, 2.9349, 8.3441, -10.4511, 2.9348, 8.3441, -8.6689, 2.9347, 8.3441, -8.6689, 2.9347, 10.3619, -5.9311, 2.9347, 10.1047, -10.4511, 2.9348, 8.3441, -8.6689, 2.9347, 10.3619, -8.6689, 2.9347, 8.3441, -8.6689, 2.9347, 10.3619, -5.9311, 2.9347, 12.4002, -5.9311, 2.9347, 10.1047, -12.2333, 2.9349, 8.3441, -10.4511, 2.9348, 10.3619, -10.4511, 2.9348, 8.3441, -10.4511, 2.9348, 8.3441, -10.4511, 2.9348, 10.3619, -8.6689, 2.9347, 10.3619, -12.2333, 2.9349, 8.3441, -12.2333, 2.9349, 10.3619, -10.4511, 2.9348, 10.3619, -8.6689, 2.9347, 10.3619, -8.6689, 2.9347, 12.4002, -5.9311, 2.9347, 12.4002, -10.4511, 2.9348, 10.3619, -8.6689, 2.9347, 12.4002, -8.6689, 2.9347, 10.3619, -8.6689, 2.9347, 12.4002, -5.9311, 2.9347, 15.2724, -5.9311, 2.9347, 12.4002, -12.2333, 2.9349, 10.3619, -10.4511, 2.9348, 12.4002, -10.4511, 2.9348, 10.3619, -10.4511, 2.9348, 10.3619, -10.4511, 2.9348, 12.4002, -8.6689, 2.9347, 12.4002, -12.2333, 2.9349, 10.3619, -12.2333, 2.9349, 12.4002, -10.4511, 2.9348, 12.4002, -8.6689, 2.9347, 12.4002, -8.6689, 2.9347, 15.2724, -5.9311, 2.9347, 15.2724, -10.4511, 2.9348, 12.4002, -8.6689, 2.9347, 15.2724, -8.6689, 2.9347, 12.4002, -8.6689, 2.9347, 15.2724, -5.9311, 2.9347, 18.3071, -5.9311, 2.9347, 15.2724, -8.6689, 2.9347, 15.2724, -8.6689, 2.9347, 18.3071, -5.9311, 2.9347, 18.3071, -10.4511, 2.9348, 12.4002, -10.4511, 2.9348, 15.2724, -8.6689, 2.9347, 15.2724, -10.4511, 2.9348, 15.2724, -8.6689, 2.9347, 18.3071, -8.6689, 2.9347, 15.2724, -12.2333, 2.9349, 12.4002, -10.4511, 2.9348, 15.2724, -10.4511, 2.9348, 12.4002, -10.4511, 2.9348, 15.2724, -10.4511, 2.9348, 18.3071, -8.6689, 2.9347, 18.3071, -12.2333, 2.9349, 12.4002, -12.2333, 2.9349, 15.2724, -10.4511, 2.9348, 15.2724, -12.2333, 2.9349, 15.2724, -10.4511, 2.9348, 18.3071, -10.4511, 2.9348, 15.2724, -12.2333, 2.9349, 15.2724, -12.2333, 2.9349, 18.3071, -10.4511, 2.9348, 18.3071, -1.8438, 2.9347, 12.1681, 0.2004, 2.9347, 15.2724, 0.2004, 2.9347, 12.1681, 0.2004, 2.9347, 12.1681, 0.2004, 2.9347, 15.2724, 2.315, 2.9347, 15.2724, 0.2004, 2.9347, 12.1681, 2.315, 2.9347, 15.2724, 2.315, 2.9347, 12.1681, -1.8438, 2.9347, 12.1681, -1.8438, 2.9347, 15.2724, 0.2004, 2.9347, 15.2724, 0.2004, 2.9347, 15.2724, 2.315, 2.9347, 18.3071, 2.315, 2.9347, 15.2724, 0.2004, 2.9347, 15.2724, 0.2004, 2.9347, 18.3071, 2.315, 2.9347, 18.3071, -1.8438, 2.9347, 15.2724, 0.2004, 2.9347, 18.3071, 0.2004, 2.9347, 15.2724, 2.315, 2.9347, 15.2724, 2.315, 2.9347, 18.3071, 4.1627, 2.9347, 18.3071, -1.8438, 2.9347, 15.2724, -1.8438, 2.9347, 18.3071, 0.2004, 2.9347, 18.3071, 2.315, 2.9347, 12.1681, 2.315, 2.9347, 15.2724, 4.1627, 2.9347, 15.2724, 2.315, 2.9347, 15.2724, 4.1627, 2.9347, 18.3071, 4.1627, 2.9347, 15.2724, 4.1627, 2.9347, 15.2724, 4.1627, 2.9347, 18.3071, 7.1468, 2.9347, 18.3071, 2.315, 2.9347, 12.1681, 4.1627, 2.9347, 15.2724, 4.1627, 2.9347, 12.143, 4.1627, 2.9347, 15.2724, 7.1468, 2.9347, 18.3071, 7.1468, 2.9347, 15.2724, 4.1627, 2.9347, 12.143, 4.1627, 2.9347, 15.2724, 7.1468, 2.9347, 15.2724, 4.1627, 2.9347, 12.143, 7.1468, 2.9347, 15.2724, 7.1468, 2.9347, 12.4002, 4.1996, 2.9347, 10.1329, 4.1627, 2.9347, 12.143, 7.1468, 2.9347, 12.4002, 4.1996, 2.9347, 10.1329, 7.1468, 2.9347, 12.4002, 6.0225, 2.9347, 10.1329, -3.8633, 2.9347, 12.143, -1.8438, 2.9347, 15.2724, -1.8438, 2.9347, 12.1681, -5.9311, 2.9347, 10.1047, -3.8633, 2.9347, 12.143, -3.8476, 2.9347, 10.1329, -5.9311, 2.9347, 10.1047, -5.9311, 2.9347, 12.4002, -3.8633, 2.9347, 12.143, -3.8633, 2.9347, 12.143, -3.8633, 2.9347, 15.2724, -1.8438, 2.9347, 15.2724, -5.9311, 2.9347, 12.4002, -3.8633, 2.9347, 15.2724, -3.8633, 2.9347, 12.143, -3.8633, 2.9347, 15.2724, -1.8438, 2.9347, 18.3071, -1.8438, 2.9347, 15.2724, -5.9311, 2.9347, 12.4002, -5.9311, 2.9347, 15.2724, -3.8633, 2.9347, 15.2724, -3.8633, 2.9347, 15.2724, -3.8633, 2.9347, 18.3071, -1.8438, 2.9347, 18.3071, -5.9311, 2.9347, 15.2724, -3.8633, 2.9347, 18.3071, -3.8633, 2.9347, 15.2724, -5.9311, 2.9347, 15.2724, -5.9311, 2.9347, 18.3071, -3.8633, 2.9347, 18.3071, -1.4363, 0.9287, 4.8224, 0.2004, 2.0002, 3.8094, -1.8255, 2.0002, 3.8094, 0.2004, 2.0002, 3.8094, -1.4363, 0.9287, 4.8224, -0.6178, 0.9287, 4.8224, -1.8255, 2.0002, 3.8094, -2.2555, 0.9287, 4.8224, -1.4363, 0.9287, 4.8224, -1.8255, 2.0002, 3.8094, -3.0747, 0.9287, 4.8224, -2.2555, 0.9287, 4.8224, -3.0747, 0.9287, 4.8224, -1.8255, 2.0002, 3.8094, -3.8476, 2.0002, 3.8094, -3.8476, 2.2177, 3.8094, -3.8476, 2.0002, 3.8094, -1.8255, 2.0002, 3.8094, -3.8476, 2.2177, 3.8094, -1.8255, 2.0002, 3.8094, -1.8255, 2.2177, 3.8094, -1.8255, 2.2177, 3.8094, -1.8255, 2.0002, 3.8094, 0.2004, 2.0002, 3.8094, 0.2004, 2.0002, 3.8094, -0.6178, 0.9287, 4.8224, 0.2002, 0.9287, 4.8224, -1.8255, 2.2177, 3.8094, 0.2004, 2.0002, 3.8094, 0.2004, 2.2177, 3.8094, 0.2002, 0.9287, 4.8224, 2.2438, 2.0002, 3.8094, 0.2004, 2.0002, 3.8094, 0.2004, 2.2177, 3.8094, 0.2004, 2.0002, 3.8094, 2.2438, 2.0002, 3.8094, 2.2438, 2.0002, 3.8094, 0.2002, 0.9287, 4.8224, 1.0196, 0.9287, 4.8224, 0.2004, 2.2177, 3.8094, 2.2438, 2.0002, 3.8094, 2.2438, 2.2177, 3.8094, 2.2438, 2.0002, 3.8094, 1.0196, 0.9287, 4.8224, 1.8384, 0.9287, 4.8224, 2.2438, 2.2177, 3.8094, 2.2438, 2.0002, 3.8094, 4.1996, 2.0002, 3.8094, 1.8384, 0.9287, 4.8224, 4.1996, 2.0002, 3.8094, 2.2438, 2.0002, 3.8094, 2.2438, 2.2177, 3.8094, 4.1996, 2.0002, 3.8094, 4.1996, 2.2177, 3.8094, 4.1996, 2.0002, 3.8094, 1.8384, 0.9287, 4.8224, 2.6573, 0.9287, 4.8224, 4.1996, 2.0002, 3.8094, 2.6573, 0.9287, 4.8224, 3.4762, 0.9287, 4.8224, 3.4762, 0.9287, 9.7355, 4.1996, 2.0002, 12.1681, 4.1996, 2.0002, 10.1329, 4.1996, 2.2177, 10.1329, 4.1996, 2.0002, 10.1329, 4.1996, 2.0002, 12.1681, 4.1996, 2.2177, 10.1329, 4.1996, 2.0002, 12.1681, 4.1996, 2.2177, 12.1681, 4.1996, 2.0002, 12.1681, 3.4762, 0.9287, 9.7355, 3.4762, 0.9287, 10.5544, 4.1996, 2.0002, 12.1681, 3.4762, 0.9287, 10.5544, 3.4762, 0.9287, 11.3732, -5.8966, 2.0002, 10.1329, -4.7124, 0.9287, 8.087, -5.8966, 2.0002, 8.087, -5.8966, 2.0002, 10.1329, -4.7124, 0.9287, 9.7355, -4.7124, 0.9287, 8.087, -5.8966, 2.0002, 8.087, -4.7124, 0.9287, 8.087, -4.7124, 0.9287, 6.4601, -5.8966, 2.2177, 10.1329, -5.8966, 2.0002, 10.1329, -5.8966, 2.0002, 8.087, -5.8966, 2.0002, 8.087, -4.7124, 0.9287, 6.4601, -5.8966, 2.0002, 6.0627, -5.8966, 2.2177, 10.1329, -5.8966, 2.0002, 8.087, -5.8966, 2.2177, 8.087, -5.8966, 2.2177, 8.087, -5.8966, 2.0002, 8.087, -5.8966, 2.0002, 6.0627, -5.8966, 2.2177, 8.087, -5.8966, 2.0002, 6.0627, -5.8966, 2.2177, 6.0627, 3.4762, 0.9287, 4.8224, 4.1996, 2.0002, 6.0627, 4.1996, 2.0002, 3.8094, 4.1996, 2.2177, 3.8094, 4.1996, 2.0002, 3.8094, 4.1996, 2.0002, 6.0627, 4.1996, 2.2177, 3.8094, 4.1996, 2.0002, 6.0627, 4.1996, 2.2177, 6.0627, 4.1996, 2.0002, 6.0627, 3.4762, 0.9287, 4.8224, 3.4762, 0.9287, 5.6412, 4.1996, 2.0002, 6.0627, 3.4762, 0.9287, 5.6412, 3.4762, 0.9287, 6.4601, 4.1996, 2.0002, 6.0627, 4.8834, 0.9287, 6.4601, 6.0277, 2.0002, 6.0627, 4.1996, 2.0002, 6.0627, 3.4762, 0.9287, 6.4601, 4.8834, 0.9287, 6.4601, 4.1996, 2.2177, 6.0627, 4.1996, 2.0002, 6.0627, 6.0277, 2.0002, 6.0627, 4.1996, 2.2177, 6.0627, 6.0277, 2.0002, 6.0627, 6.0277, 2.2177, 6.0627, 6.0277, 2.0002, 6.0627, 4.8834, 0.9287, 8.087, 6.0277, 2.0002, 8.087, 6.0277, 2.0002, 6.0627, 4.8834, 0.9287, 6.4601, 4.8834, 0.9287, 8.087, 6.0277, 2.0002, 8.087, 4.8834, 0.9287, 8.087, 4.8834, 0.9287, 9.7355, 6.0277, 2.2177, 6.0627, 6.0277, 2.0002, 6.0627, 6.0277, 2.0002, 8.087, 6.0277, 2.0002, 8.087, 4.8834, 0.9287, 9.7355, 6.0277, 2.0002, 10.1329, 6.0277, 2.2177, 6.0627, 6.0277, 2.0002, 8.087, 6.0277, 2.2177, 8.087, 6.0277, 2.2177, 8.087, 6.0277, 2.0002, 8.087, 6.0277, 2.0002, 10.1329, 6.0277, 2.2177, 8.087, 6.0277, 2.0002, 10.1329, 6.0277, 2.2177, 10.1329, -5.8966, 2.0002, 6.0627, -3.0747, 0.9287, 6.4601, -3.8476, 2.0002, 6.0627, -5.8966, 2.0002, 6.0627, -4.7124, 0.9287, 6.4601, -3.0747, 0.9287, 6.4601, -5.8966, 2.2177, 6.0627, -5.8966, 2.0002, 6.0627, -3.8476, 2.0002, 6.0627, -5.8966, 2.2177, 6.0627, -3.8476, 2.0002, 6.0627, -3.8476, 2.2177, 6.0627, -1.8532, 0.9287, 11.3732, -3.8476, 2.0002, 12.1681, -1.8438, 2.0002, 12.1681, -3.8476, 2.0002, 12.1681, -1.8532, 0.9287, 11.3732, -2.2555, 0.9287, 11.3732, -3.8476, 2.0002, 12.1681, -2.2555, 0.9287, 11.3732, -3.0747, 0.9287, 11.3732, -1.8438, 2.0002, 12.1681, -0.6178, 0.9287, 11.3732, -1.8532, 0.9287, 11.3732, -1.8438, 2.2177, 12.1681, -3.8476, 2.0002, 12.1681, -3.8476, 2.2177, 12.1681, -1.8438, 2.2177, 12.1681, -1.8438, 2.0002, 12.1681, -3.8476, 2.0002, 12.1681, -1.8438, 2.0002, 12.1681, 0.2002, 0.9287, 11.3732, -0.6178, 0.9287, 11.3732, 0.2004, 2.2177, 12.1681, -1.8438, 2.0002, 12.1681, -1.8438, 2.2177, 12.1681, 0.2002, 0.9287, 11.3732, -1.8438, 2.0002, 12.1681, 0.2004, 2.0002, 12.1681, 0.2004, 2.2177, 12.1681, 0.2004, 2.0002, 12.1681, -1.8438, 2.0002, 12.1681, 0.2004, 2.0002, 12.1681, 1.0196, 0.9287, 11.3732, 0.2002, 0.9287, 11.3732, 2.315, 2.2177, 12.1681, 0.2004, 2.0002, 12.1681, 0.2004, 2.2177, 12.1681, 0.2004, 2.0002, 12.1681, 2.2912, 0.9287, 11.3732, 1.0196, 0.9287, 11.3732, 2.315, 2.2177, 12.1681, 2.315, 2.0002, 12.1681, 0.2004, 2.0002, 12.1681, 2.2912, 0.9287, 11.3732, 0.2004, 2.0002, 12.1681, 2.315, 2.0002, 12.1681, 4.1996, 2.2177, 12.1681, 2.315, 2.0002, 12.1681, 2.315, 2.2177, 12.1681, 2.315, 2.0002, 12.1681, 2.6573, 0.9287, 11.3732, 2.2912, 0.9287, 11.3732, 4.1996, 2.2177, 12.1681, 4.1996, 2.0002, 12.1681, 2.315, 2.0002, 12.1681, 2.315, 2.0002, 12.1681, 3.4762, 0.9287, 11.3732, 2.6573, 0.9287, 11.3732, 3.4762, 0.9287, 11.3732, 2.315, 2.0002, 12.1681, 4.1996, 2.0002, 12.1681, -3.8476, 2.0002, 10.1329, -4.7124, 0.9287, 9.7355, -5.8966, 2.0002, 10.1329, -3.8476, 2.0002, 10.1329, -3.0747, 0.9287, 9.7355, -4.7124, 0.9287, 9.7355, -3.8476, 2.2177, 10.1329, -3.8476, 2.0002, 10.1329, -5.8966, 2.0002, 10.1329, -3.8476, 2.2177, 10.1329, -5.8966, 2.0002, 10.1329, -5.8966, 2.2177, 10.1329, -3.0747, 0.9287, 11.3732, -3.8476, 2.0002, 10.1329, -3.8476, 2.0002, 12.1681, -3.8476, 2.2177, 12.1681, -3.8476, 2.0002, 12.1681, -3.8476, 2.0002, 10.1329, -3.8476, 2.2177, 12.1681, -3.8476, 2.0002, 10.1329, -3.8476, 2.2177, 10.1329, -3.8476, 2.0002, 10.1329, -3.0747, 0.9287, 11.3732, -3.0747, 0.9287, 10.5544, -3.8476, 2.0002, 10.1329, -3.0747, 0.9287, 10.5544, -3.0747, 0.9287, 9.7355, 2.6573, 0.9287, 5.6412, 3.4762, 0.9287, 6.4601, 3.4762, 0.9287, 5.6412, 2.6573, 0.9287, 4.8224, 3.4762, 0.9287, 5.6412, 3.4762, 0.9287, 4.8224, 2.6573, 0.9287, 4.8224, 2.6573, 0.9287, 5.6412, 3.4762, 0.9287, 5.6412, 1.8384, 0.9287, 4.8224, 2.6573, 0.9287, 5.6412, 2.6573, 0.9287, 4.8224, 1.8384, 0.9287, 4.8224, 1.8384, 0.9287, 5.6412, 2.6573, 0.9287, 5.6412, 1.0196, 0.9287, 4.8224, 1.8384, 0.9287, 5.6412, 1.8384, 0.9287, 4.8224, 2.4267, 0.9287, 5.8718, 2.6573, 0.9287, 5.6412, 1.8384, 0.9287, 5.6412, 2.4267, 0.9287, 6.4601, 2.6573, 0.9287, 5.6412, 2.4267, 0.9287, 5.8718, 2.4267, 0.9287, 5.8718, 1.8384, 0.9287, 5.6412, 1.8384, 0.9287, 5.8718, 2.4267, 0.9287, 6.4601, 2.6573, 0.9287, 6.4601, 2.6573, 0.9287, 5.6412, 2.6573, 0.9287, 5.6412, 2.6573, 0.9287, 6.4601, 3.4762, 0.9287, 6.4601, 2.4267, 0.9287, 7.279, 2.6573, 0.9287, 6.4601, 2.4267, 0.9287, 6.4601, 1.8384, 0.9287, 5.8718, 1.8384, 0.9287, 5.6412, 1.0196, 0.9287, 5.6412, 1.0196, 0.9287, 4.8224, 1.0196, 0.9287, 5.6412, 1.8384, 0.9287, 5.6412, 1.8384, 0.9287, 5.8718, 1.0196, 0.9287, 5.6412, 1.0196, 0.9287, 5.8718, 0.2002, 0.9287, 4.8224, 1.0196, 0.9287, 5.6412, 1.0196, 0.9287, 4.8224, 1.0196, 0.9287, 5.8718, 1.0196, 0.9287, 5.6412, 0.2002, 0.9287, 5.6412, 0.2002, 0.9287, 4.8224, 0.2002, 0.9287, 5.6412, 1.0196, 0.9287, 5.6412, 1.0196, 0.9287, 5.8718, 0.2002, 0.9287, 5.6412, 0.2002, 0.9287, 5.8718, -0.6178, 0.9287, 4.8224, 0.2002, 0.9287, 5.6412, 0.2002, 0.9287, 4.8224, 0.2002, 0.9287, 5.8718, 0.2002, 0.9287, 5.6412, -0.6178, 0.9287, 5.6412, -0.6178, 0.9287, 4.8224, -0.6178, 0.9287, 5.6412, 0.2002, 0.9287, 5.6412, 0.2002, 0.9287, 5.8718, -0.6178, 0.9287, 5.6412, -0.6178, 0.9287, 5.8718, -1.4363, 0.9287, 4.8224, -0.6178, 0.9287, 5.6412, -0.6178, 0.9287, 4.8224, -0.6178, 0.9287, 5.8718, -0.6178, 0.9287, 5.6412, -1.4363, 0.9287, 5.6412, -1.4363, 0.9287, 4.8224, -1.4363, 0.9287, 5.6412, -0.6178, 0.9287, 5.6412, -0.6178, 0.9287, 5.8718, -1.4363, 0.9287, 5.6412, -1.4363, 0.9287, 5.8718, -2.2555, 0.9287, 4.8224, -1.4363, 0.9287, 5.6412, -1.4363, 0.9287, 4.8224, -1.4363, 0.9287, 5.8718, -1.4363, 0.9287, 5.6412, -2.2555, 0.9287, 5.6412, -2.2555, 0.9287, 4.8224, -2.2555, 0.9287, 5.6412, -1.4363, 0.9287, 5.6412, -3.0747, 0.9287, 4.8224, -2.2555, 0.9287, 5.6412, -2.2555, 0.9287, 4.8224, -1.4363, 0.9287, 5.8718, -2.2555, 0.9287, 5.6412, -2.0249, 0.9287, 5.8718, -3.0747, 0.9287, 4.8224, -3.0747, 0.9287, 5.6412, -2.2555, 0.9287, 5.6412, -2.0249, 0.9287, 5.8718, -2.2555, 0.9287, 5.6412, -2.2555, 0.9287, 6.4601, -3.0747, 0.9287, 5.6412, -2.2555, 0.9287, 6.4601, -2.2555, 0.9287, 5.6412, -2.0249, 0.9287, 5.8718, -2.2555, 0.9287, 6.4601, -2.0249, 0.9287, 6.4601, -3.0747, 0.9287, 5.6412, -3.0747, 0.9287, 6.4601, -2.2555, 0.9287, 6.4601, -2.0249, 0.9287, 6.4601, -2.2555, 0.9287, 6.4601, -2.2555, 0.9287, 7.279, -3.0747, 0.9287, 6.4601, -2.2555, 0.9287, 7.279, -2.2555, 0.9287, 6.4601, -2.0249, 0.9287, 6.4601, -2.2555, 0.9287, 7.279, -2.0249, 0.9287, 7.279, -4.7124, 0.9287, 8.087, -3.0747, 0.9287, 6.4601, -4.7124, 0.9287, 6.4601, -3.0747, 0.9287, 6.4601, -3.0747, 0.9287, 7.279, -2.2555, 0.9287, 7.279, -3.0747, 0.9287, 6.4601, -4.7124, 0.9287, 8.087, -3.0747, 0.9287, 7.279, -2.0249, 0.9287, 7.279, -2.2555, 0.9287, 7.279, -2.2555, 0.9287, 8.087, -3.0747, 0.9287, 7.279, -2.2555, 0.9287, 8.087, -2.2555, 0.9287, 7.279, -2.0249, 0.9287, 7.279, -2.2555, 0.9287, 8.087, -2.0249, 0.9287, 8.087, -3.0747, 0.9287, 7.279, -4.7124, 0.9287, 8.087, -3.0747, 0.9287, 8.087, -3.0747, 0.9287, 7.279, -3.0747, 0.9287, 8.087, -2.2555, 0.9287, 8.087, -4.7124, 0.9287, 9.7355, -3.0747, 0.9287, 8.087, -4.7124, 0.9287, 8.087, -2.0249, 0.9287, 8.087, -2.2555, 0.9287, 8.087, -2.2555, 0.9287, 8.9167, -3.0747, 0.9287, 8.087, -2.2555, 0.9287, 8.9167, -2.2555, 0.9287, 8.087, -2.0249, 0.9287, 8.087, -2.2555, 0.9287, 8.9167, -2.0249, 0.9287, 8.9167, -3.0747, 0.9287, 8.087, -4.7124, 0.9287, 9.7355, -3.0747, 0.9287, 8.9167, -3.0747, 0.9287, 8.087, -3.0747, 0.9287, 8.9167, -2.2555, 0.9287, 8.9167, -3.0747, 0.9287, 8.9167, -4.7124, 0.9287, 9.7355, -3.0747, 0.9287, 9.7355, -2.0249, 0.9287, 8.9167, -2.2555, 0.9287, 8.9167, -2.2555, 0.9287, 9.7355, -3.0747, 0.9287, 8.9167, -2.2555, 0.9287, 9.7355, -2.2555, 0.9287, 8.9167, -3.0747, 0.9287, 8.9167, -3.0747, 0.9287, 9.7355, -2.2555, 0.9287, 9.7355, -2.0249, 0.9287, 8.9167, -2.2555, 0.9287, 9.7355, -2.0249, 0.9287, 9.7355, -3.0747, 0.9287, 9.7355, -2.2555, 0.9287, 10.5544, -2.2555, 0.9287, 9.7355, -2.0249, 0.9287, 9.7355, -2.2555, 0.9287, 9.7355, -2.2555, 0.9287, 10.5544, -3.0747, 0.9287, 9.7355, -3.0747, 0.9287, 10.5544, -2.2555, 0.9287, 10.5544, -2.0249, 0.9287, 9.7355, -2.2555, 0.9287, 10.5544, -2.0249, 0.9287, 10.3238, -3.0747, 0.9287, 10.5544, -2.2555, 0.9287, 11.3732, -2.2555, 0.9287, 10.5544, -3.0747, 0.9287, 10.5544, -3.0747, 0.9287, 11.3732, -2.2555, 0.9287, 11.3732, -2.2555, 0.9287, 10.5544, -2.2555, 0.9287, 11.3732, -1.8532, 0.9287, 11.3732, -2.0249, 0.9287, 10.3238, -2.2555, 0.9287, 10.5544, -1.8532, 0.9287, 10.5544, -2.2555, 0.9287, 10.5544, -1.8532, 0.9287, 11.3732, -1.8532, 0.9287, 10.5544, -2.0249, 0.9287, 10.3238, -1.8532, 0.9287, 10.5544, -1.8532, 0.9287, 10.3238, -1.8532, 0.9287, 10.5544, -1.8532, 0.9287, 11.3732, -0.6178, 0.9287, 11.3732, -1.8532, 0.9287, 10.3238, -1.8532, 0.9287, 10.5544, -0.6178, 0.9287, 10.5544, -1.8532, 0.9287, 10.5544, -0.6178, 0.9287, 11.3732, -0.6178, 0.9287, 10.5544, -1.8532, 0.9287, 10.3238, -0.6178, 0.9287, 10.5544, -0.6178, 0.9287, 10.3238, -0.6178, 0.9287, 10.5544, -0.6178, 0.9287, 11.3732, 0.2002, 0.9287, 11.3732, -0.6178, 0.9287, 10.3238, -0.6178, 0.9287, 10.5544, 0.2002, 0.9287, 10.5544, -0.6178, 0.9287, 10.5544, 0.2002, 0.9287, 11.3732, 0.2002, 0.9287, 10.5544, -0.6178, 0.9287, 10.3238, 0.2002, 0.9287, 10.5544, 0.2002, 0.9287, 10.3238, 0.2002, 0.9287, 10.5544, 0.2002, 0.9287, 11.3732, 1.0196, 0.9287, 11.3732, 0.2002, 0.9287, 10.3238, 0.2002, 0.9287, 10.5544, 1.0196, 0.9287, 10.5544, 0.2002, 0.9287, 10.5544, 1.0196, 0.9287, 11.3732, 1.0196, 0.9287, 10.5544, 0.2002, 0.9287, 10.3238, 1.0196, 0.9287, 10.5544, 1.0196, 0.9287, 10.3238, 1.0196, 0.9287, 10.5544, 1.0196, 0.9287, 11.3732, 2.2912, 0.9287, 11.3732, 1.0196, 0.9287, 10.3238, 1.0196, 0.9287, 10.5544, 2.2912, 0.9287, 10.5544, 1.0196, 0.9287, 10.5544, 2.2912, 0.9287, 11.3732, 2.2912, 0.9287, 10.5544, 1.0196, 0.9287, 10.3238, 2.2912, 0.9287, 10.5544, 2.2912, 0.9287, 10.3238, 2.2912, 0.9287, 10.5544, 2.2912, 0.9287, 11.3732, 2.6573, 0.9287, 11.3732, 2.2912, 0.9287, 10.3238, 2.2912, 0.9287, 10.5544, 2.6573, 0.9287, 10.5544, 2.2912, 0.9287, 10.5544, 2.6573, 0.9287, 11.3732, 2.6573, 0.9287, 10.5544, 2.6573, 0.9287, 10.5544, 2.6573, 0.9287, 11.3732, 3.4762, 0.9287, 11.3732, 2.2912, 0.9287, 10.3238, 2.6573, 0.9287, 10.5544, 2.4267, 0.9287, 10.3238, 2.6573, 0.9287, 10.5544, 3.4762, 0.9287, 11.3732, 3.4762, 0.9287, 10.5544, 2.4267, 0.9287, 10.3238, 2.6573, 0.9287, 10.5544, 2.6573, 0.9287, 9.7355, 2.6573, 0.9287, 9.7355, 2.6573, 0.9287, 10.5544, 3.4762, 0.9287, 10.5544, 2.4267, 0.9287, 10.3238, 2.6573, 0.9287, 9.7355, 2.4267, 0.9287, 9.7355, 2.6573, 0.9287, 9.7355, 3.4762, 0.9287, 10.5544, 3.4762, 0.9287, 9.7355, 2.4267, 0.9287, 9.7355, 2.6573, 0.9287, 9.7355, 2.6573, 0.9287, 8.9167, 2.6573, 0.9287, 8.9167, 2.6573, 0.9287, 9.7355, 3.4762, 0.9287, 9.7355, 2.4267, 0.9287, 9.7355, 2.6573, 0.9287, 8.9167, 2.4267, 0.9287, 8.9167, 2.4267, 0.9287, 8.9167, 2.6573, 0.9287, 8.9167, 2.6573, 0.9287, 8.087, 2.4267, 0.9287, 8.9167, 2.6573, 0.9287, 8.087, 2.4267, 0.9287, 8.087, 2.6573, 0.9287, 8.9167, 3.4762, 0.9287, 9.7355, 3.4762, 0.9287, 8.9167, 2.6573, 0.9287, 8.087, 2.6573, 0.9287, 8.9167, 3.4762, 0.9287, 8.9167, 4.8834, 0.9287, 8.087, 3.4762, 0.9287, 8.9167, 3.4762, 0.9287, 9.7355, 4.8834, 0.9287, 8.087, 3.4762, 0.9287, 9.7355, 4.8834, 0.9287, 9.7355, 3.4762, 0.9287, 8.9167, 4.8834, 0.9287, 8.087, 3.4762, 0.9287, 8.087, 2.6573, 0.9287, 8.087, 3.4762, 0.9287, 8.9167, 3.4762, 0.9287, 8.087, 4.8834, 0.9287, 6.4601, 3.4762, 0.9287, 8.087, 4.8834, 0.9287, 8.087, 2.4267, 0.9287, 8.087, 2.6573, 0.9287, 8.087, 2.6573, 0.9287, 7.279, 2.6573, 0.9287, 7.279, 2.6573, 0.9287, 8.087, 3.4762, 0.9287, 8.087, 2.4267, 0.9287, 8.087, 2.6573, 0.9287, 7.279, 2.4267, 0.9287, 7.279, 2.4267, 0.9287, 7.279, 2.6573, 0.9287, 7.279, 2.6573, 0.9287, 6.4601, 2.6573, 0.9287, 7.279, 3.4762, 0.9287, 8.087, 3.4762, 0.9287, 7.279, 4.8834, 0.9287, 6.4601, 3.4762, 0.9287, 7.279, 3.4762, 0.9287, 8.087, 2.6573, 0.9287, 6.4601, 2.6573, 0.9287, 7.279, 3.4762, 0.9287, 7.279, 3.4762, 0.9287, 7.279, 4.8834, 0.9287, 6.4601, 3.4762, 0.9287, 6.4601, 2.6573, 0.9287, 6.4601, 3.4762, 0.9287, 7.279, 3.4762, 0.9287, 6.4601, -0.6178, 0.9287, 9.9661, 0.2002, 0.5291, 9.9661, 0.2002, 0.9287, 9.9661, 0.2002, 0.9287, 9.9661, 0.2002, 0.5291, 9.9661, 1.0196, 0.5291, 9.9661, -0.6178, 0.9287, 9.9661, -0.6178, 0.5291, 9.9661, 0.2002, 0.5291, 9.9661, -1.6669, 0.9287, 9.9661, -0.6178, 0.5291, 9.9661, -0.6178, 0.9287, 9.9661, -1.6669, 0.9287, 9.9661, -1.8476, 0.5291, 9.9661, -0.6178, 0.5291, 9.9661, 0.2002, 0.9287, 9.9661, 1.0196, 0.5291, 9.9661, 1.0196, 0.9287, 9.9661, 1.0196, 0.9287, 9.9661, 1.0196, 0.5291, 9.9661, 2.3047, 0.5291, 9.9661, 1.0196, 0.9287, 9.9661, 2.3047, 0.5291, 9.9661, 2.069, 0.9287, 9.9661, -1.4363, 2.9326, 9.7355, -1.4363, 0.9287, 8.9167, -1.4362, 0.9287, 9.7355, -1.4363, 0.9287, 8.9167, -1.4363, 2.9326, 9.7355, -1.4363, 2.9326, 8.087, -1.4363, 0.9287, 8.9167, -1.4363, 2.9326, 8.087, -1.4363, 0.9287, 8.087, -1.4363, 2.9326, 8.087, -1.4363, 0.9287, 7.279, -1.4363, 0.9287, 8.087, -1.4363, 0.9287, 7.279, -1.4363, 2.9326, 8.087, -1.4363, 2.9326, 6.4601, -1.4363, 0.9287, 7.279, -1.4363, 2.9326, 6.4601, -1.4363, 0.9287, 6.4601, -1.4363, 2.9326, 6.4601, -0.6178, 0.9287, 6.4601, -1.4363, 0.9287, 6.4601, -0.6178, 0.9287, 6.4601, -1.4363, 2.9326, 6.4601, 0.2002, 2.9326, 6.4601, -0.6178, 0.9287, 6.4601, 0.2002, 2.9326, 6.4601, 0.2002, 0.9287, 6.4601, 0.2002, 2.9326, 6.4601, 1.0196, 0.9287, 6.4601, 0.2002, 0.9287, 6.4601, 1.0196, 0.9287, 6.4601, 0.2002, 2.9326, 6.4601, 1.8384, 2.9326, 6.4601, 1.0196, 0.9287, 6.4601, 1.8384, 2.9326, 6.4601, 1.8384, 0.9287, 6.4601, 6.0277, 2.0002, 10.1329, 3.4762, 0.9287, 9.7355, 4.1996, 2.0002, 10.1329, 6.0277, 2.0002, 10.1329, 4.8834, 0.9287, 9.7355, 3.4762, 0.9287, 9.7355, 6.0277, 2.2177, 10.1329, 6.0277, 2.0002, 10.1329, 4.1996, 2.0002, 10.1329, 6.0277, 2.2177, 10.1329, 4.1996, 2.0002, 10.1329, 4.1996, 2.2177, 10.1329, -3.0747, 0.9287, 6.4601, -3.8476, 2.0002, 3.8094, -3.8476, 2.0002, 6.0627, -3.8476, 2.2177, 6.0627, -3.8476, 2.0002, 6.0627, -3.8476, 2.0002, 3.8094, -3.8476, 2.2177, 6.0627, -3.8476, 2.0002, 3.8094, -3.8476, 2.2177, 3.8094, -3.8476, 2.0002, 3.8094, -3.0747, 0.9287, 6.4601, -3.0747, 0.9287, 5.6412, -3.8476, 2.0002, 3.8094, -3.0747, 0.9287, 5.6412, -3.0747, 0.9287, 4.8224, -3.8476, 2.7453, 3.8094, -3.8476, 2.9347, 6.0627, -3.8476, 2.7453, 6.0627, -3.8476, 2.7453, 3.8094, -3.8476, 2.9347, 3.8124, -3.8476, 2.9347, 6.0627, 6.0277, 2.7453, 6.0627, 4.1996, 2.9347, 6.0627, 4.1996, 2.7453, 6.0627, 6.0277, 2.7453, 6.0627, 6.0277, 2.9347, 6.0627, 4.1996, 2.9347, 6.0627, 4.1996, 2.7453, 12.1681, 4.1996, 2.9347, 10.1329, 4.1996, 2.7453, 10.1329, 4.1996, 2.7453, 12.1681, 4.1627, 2.9347, 12.143, 4.1996, 2.9347, 10.1329, -5.8966, 2.7453, 10.1329, -3.8476, 2.9347, 10.1329, -3.8476, 2.7453, 10.1329, -5.8966, 2.7453, 10.1329, -5.9311, 2.9347, 10.1047, -3.8476, 2.9347, 10.1329, -3.8476, 2.7453, 6.0627, -5.8966, 2.9347, 6.0473, -5.8966, 2.7453, 6.0627, -3.8476, 2.7453, 6.0627, -3.8476, 2.9347, 6.0627, -5.8966, 2.9347, 6.0473, -5.8966, 2.7453, 8.087, -5.9311, 2.9347, 10.1047, -5.8966, 2.7453, 10.1329, -5.8966, 2.7453, 8.087, -5.8966, 2.9347, 8.087, -5.9311, 2.9347, 10.1047, -5.8966, 2.7453, 6.0627, -5.8966, 2.9347, 8.087, -5.8966, 2.7453, 8.087, -5.8966, 2.7453, 6.0627, -5.8966, 2.9347, 6.0473, -5.8966, 2.9347, 8.087, 4.1996, 2.7453, 10.1329, 6.0225, 2.9347, 10.1329, 6.0277, 2.7453, 10.1329, 4.1996, 2.7453, 10.1329, 4.1996, 2.9347, 10.1329, 6.0225, 2.9347, 10.1329, 6.0277, 2.7453, 10.1329, 6.0277, 2.9347, 8.087, 6.0277, 2.7453, 8.087, 6.0277, 2.7453, 10.1329, 6.0225, 2.9347, 10.1329, 6.0277, 2.9347, 8.087, 6.0277, 2.7453, 8.087, 6.0277, 2.9347, 8.087, 6.0277, 2.9347, 6.0627, 6.0277, 2.7453, 8.087, 6.0277, 2.9347, 6.0627, 6.0277, 2.7453, 6.0627, -3.8476, 2.7453, 10.1329, -3.8633, 2.9347, 12.143, -3.8476, 2.7453, 12.1681, -3.8476, 2.7453, 10.1329, -3.8476, 2.9347, 10.1329, -3.8633, 2.9347, 12.143, 2.315, 2.7453, 12.1681, 4.1627, 2.9347, 12.143, 4.1996, 2.7453, 12.1681, 2.315, 2.7453, 12.1681, 2.315, 2.9347, 12.1681, 4.1627, 2.9347, 12.143, 0.2004, 2.7453, 12.1681, 2.315, 2.9347, 12.1681, 2.315, 2.7453, 12.1681, 0.2004, 2.7453, 12.1681, 0.2004, 2.9347, 12.1681, 2.315, 2.9347, 12.1681, -1.8438, 2.7453, 12.1681, 0.2004, 2.9347, 12.1681, 0.2004, 2.7453, 12.1681, -1.8438, 2.7453, 12.1681, -1.8438, 2.9347, 12.1681, 0.2004, 2.9347, 12.1681, -3.8476, 2.7453, 12.1681, -1.8438, 2.9347, 12.1681, -1.8438, 2.7453, 12.1681, -3.8476, 2.7453, 12.1681, -3.8633, 2.9347, 12.143, -1.8438, 2.9347, 12.1681, 4.1996, 2.7453, 6.0627, 4.1996, 2.9347, 3.8124, 4.1996, 2.7453, 3.8094, 4.1996, 2.7453, 6.0627, 4.1996, 2.9347, 6.0627, 4.1996, 2.9347, 3.8124, -1.8255, 2.7453, 3.8094, -3.8476, 2.9347, 3.8124, -3.8476, 2.7453, 3.8094, -1.8255, 2.7453, 3.8094, -1.8255, 2.9347, 3.8094, -3.8476, 2.9347, 3.8124, 0.2004, 2.7453, 3.8094, -1.8255, 2.9347, 3.8094, -1.8255, 2.7453, 3.8094, 0.2004, 2.7453, 3.8094, 0.2004, 2.9347, 3.8094, -1.8255, 2.9347, 3.8094, 2.2438, 2.7453, 3.8094, 0.2004, 2.9347, 3.8094, 0.2004, 2.7453, 3.8094, 2.2438, 2.7453, 3.8094, 2.2438, 2.9347, 3.8094, 0.2004, 2.9347, 3.8094, 4.1996, 2.7453, 3.8094, 2.2438, 2.9347, 3.8094, 2.2438, 2.7453, 3.8094, 4.1996, 2.7453, 3.8094, 4.1996, 2.9347, 3.8124, 2.2438, 2.9347, 3.8094, 6.3454, 2.7596, 10.243, 4.4228, 2.2034, 10.243, 4.4228, 2.7596, 10.243, 6.3454, 2.7596, 10.243, 6.3454, 2.2034, 10.243, 4.4228, 2.2034, 10.243, 4.4228, 2.7596, 10.243, 4.4228, 2.2034, 12.3883, 4.4228, 2.7596, 12.3883, 4.4228, 2.7596, 10.243, 4.4228, 2.2034, 10.243, 4.4228, 2.2034, 12.3883, -4.0649, 2.7596, 12.3883, -4.0649, 2.2034, 10.243, -4.0649, 2.7596, 10.243, -4.0649, 2.7596, 12.3883, -4.0649, 2.2034, 12.3883, -4.0649, 2.2034, 10.243, -6.2241, 2.7596, 5.9526, -4.0649, 2.2034, 5.9526, -4.0649, 2.7596, 5.9526, -6.2241, 2.7596, 5.9526, -6.2241, 2.2034, 5.9526, -4.0649, 2.2034, 5.9526, -4.0649, 2.7596, 5.9526, -4.0649, 2.2034, 3.585, -4.0649, 2.7596, 3.585, -4.0649, 2.7596, 5.9526, -4.0649, 2.2034, 5.9526, -4.0649, 2.2034, 3.585, -1.9326, 2.7596, 3.585, 0.2004, 2.2034, 3.585, 0.2004, 2.7596, 3.585, 0.2004, 2.7596, 3.585, 0.2004, 2.2034, 3.585, 2.3568, 2.2034, 3.585, -1.9326, 2.7596, 3.585, -1.9326, 2.2034, 3.585, 0.2004, 2.2034, 3.585, -4.0649, 2.7596, 3.585, -1.9326, 2.2034, 3.585, -1.9326, 2.7596, 3.585, -4.0649, 2.7596, 3.585, -4.0649, 2.2034, 3.585, -1.9326, 2.2034, 3.585, 0.2004, 2.7596, 3.585, 2.3568, 2.2034, 3.585, 2.3568, 2.7596, 3.585, 2.3568, 2.7596, 3.585, 2.3568, 2.2034, 3.585, 4.4228, 2.2034, 3.585, 2.3568, 2.7596, 3.585, 4.4228, 2.2034, 3.585, 4.4228, 2.7596, 3.585, 4.4228, 2.7596, 3.585, 4.4228, 2.2034, 5.9526, 4.4228, 2.7596, 5.9526, 4.4228, 2.7596, 3.585, 4.4228, 2.2034, 3.585, 4.4228, 2.2034, 5.9526, 6.3454, 2.7596, 5.9526, 6.3454, 2.2034, 8.087, 6.3454, 2.7596, 8.087, 6.3454, 2.7596, 5.9526, 6.3454, 2.2034, 5.9526, 6.3454, 2.2034, 8.087, 6.3454, 2.7596, 8.087, 6.3454, 2.2034, 8.087, 6.3454, 2.2034, 10.243, 6.3454, 2.7596, 8.087, 6.3454, 2.2034, 10.243, 6.3454, 2.7596, 10.243, -6.2241, 2.7596, 10.243, -6.2241, 2.2034, 8.087, -6.2241, 2.7596, 8.087, -6.2241, 2.7596, 10.243, -6.2241, 2.2034, 10.243, -6.2241, 2.2034, 8.087, -6.2241, 2.7596, 8.087, -6.2241, 2.2034, 8.087, -6.2241, 2.2034, 5.9526, -6.2241, 2.7596, 8.087, -6.2241, 2.2034, 5.9526, -6.2241, 2.7596, 5.9526, 4.4228, 2.7596, 5.9526, 6.3454, 2.2034, 5.9526, 6.3454, 2.7596, 5.9526, 4.4228, 2.7596, 5.9526, 4.4228, 2.2034, 5.9526, 6.3454, 2.2034, 5.9526, -4.0649, 2.7596, 10.243, -6.2241, 2.2034, 10.243, -6.2241, 2.7596, 10.243, -4.0649, 2.7596, 10.243, -4.0649, 2.2034, 10.243, -6.2241, 2.2034, 10.243, 2.3217, 2.7596, 12.3883, 0.2004, 2.2034, 12.3883, 0.2004, 2.7596, 12.3883, 0.2004, 2.7596, 12.3883, 0.2004, 2.2034, 12.3883, -1.8412, 2.2034, 12.3883, 2.3217, 2.7596, 12.3883, 2.3217, 2.2034, 12.3883, 0.2004, 2.2034, 12.3883, 4.4228, 2.7596, 12.3883, 2.3217, 2.2034, 12.3883, 2.3217, 2.7596, 12.3883, 4.4228, 2.7596, 12.3883, 4.4228, 2.2034, 12.3883, 2.3217, 2.2034, 12.3883, 0.2004, 2.7596, 12.3883, -1.8412, 2.2034, 12.3883, -1.8412, 2.7596, 12.3883, -1.8412, 2.7596, 12.3883, -1.8412, 2.2034, 12.3883, -4.0649, 2.2034, 12.3883, -1.8412, 2.7596, 12.3883, -4.0649, 2.2034, 12.3883, -4.0649, 2.7596, 12.3883, 1.8384, 2.9326, 6.4601, 1.8384, 0.9287, 7.279, 1.8384, 0.9287, 6.4601, 1.8384, 0.9287, 7.279, 1.8384, 2.9326, 6.4601, 1.8384, 2.9326, 8.087, 1.8384, 0.9287, 7.279, 1.8384, 2.9326, 8.087, 1.8384, 0.9287, 8.087, 1.8384, 2.9326, 8.087, 1.8384, 0.9287, 8.9167, 1.8384, 0.9287, 8.087, 1.8384, 0.9287, 8.9167, 1.8384, 2.9326, 8.087, 1.8384, 2.9326, 9.7355, 1.8384, 0.9287, 8.9167, 1.8384, 2.9326, 9.7355, 1.8384, 0.9287, 9.7355, 1.8384, 2.9326, 9.7355, 1.0196, 0.9287, 9.7355, 1.8384, 0.9287, 9.7355, 1.0196, 0.9287, 9.7355, 1.8384, 2.9326, 9.7355, 0.2002, 2.9326, 9.7355, 1.0196, 0.9287, 9.7355, 0.2002, 2.9326, 9.7355, 0.2002, 0.9287, 9.7355, 0.2002, 2.9326, 9.7355, -0.6178, 0.9287, 9.7355, 0.2002, 0.9287, 9.7355, -0.6178, 0.9287, 9.7355, 0.2002, 2.9326, 9.7355, -1.4363, 2.9326, 9.7355, -0.6178, 0.9287, 9.7355, -1.4363, 2.9326, 9.7355, -1.4362, 0.9287, 9.7355, -1.6669, 0.9287, 6.2295, -1.6669, 0.5291, 7.279, -1.6669, 0.9287, 7.279, -1.6669, 0.9287, 6.2295, -1.6669, 0.5291, 6.2295, -1.6669, 0.5291, 7.279, -1.6669, 0.9287, 7.279, -1.6669, 0.5291, 7.279, -1.6669, 0.5291, 8.087, -1.6669, 0.9287, 7.279, -1.6669, 0.5291, 8.087, -1.6669, 0.9287, 8.087, -1.6669, 0.9287, 8.087, -1.6669, 0.5291, 8.087, -1.6669, 0.5291, 8.9167, -1.6669, 0.9287, 8.087, -1.6669, 0.5291, 8.9167, -1.6669, 0.9287, 8.9167, -1.6669, 0.9287, 8.9167, -1.6669, 0.5291, 8.9167, -1.8476, 0.5291, 9.9661, -1.6669, 0.9287, 8.9167, -1.8476, 0.5291, 9.9661, -1.6669, 0.9287, 9.9661, 2.2912, 0.9287, 10.3238, 1.0196, 0.5291, 10.3238, 1.0196, 0.9287, 10.3238, 1.0196, 0.9287, 10.3238, 1.0196, 0.5291, 10.3238, 0.2002, 0.5291, 10.3238, 2.2912, 0.9287, 10.3238, 2.2912, 0.5291, 10.3238, 1.0196, 0.5291, 10.3238, 2.4267, 0.9287, 10.3238, 2.2912, 0.5291, 10.3238, 2.2912, 0.9287, 10.3238, 2.4267, 0.9287, 10.3238, 2.4267, 0.5291, 10.3238, 2.2912, 0.5291, 10.3238, 1.0196, 0.9287, 10.3238, 0.2002, 0.5291, 10.3238, 0.2002, 0.9287, 10.3238, 0.2002, 0.9287, 10.3238, 0.2002, 0.5291, 10.3238, -0.6178, 0.5291, 10.3238, 0.2002, 0.9287, 10.3238, -0.6178, 0.5291, 10.3238, -0.6178, 0.9287, 10.3238, -0.6178, 0.9287, 10.3238, -0.6178, 0.5291, 10.3238, -1.8532, 0.5291, 10.3238, -0.6178, 0.9287, 10.3238, -1.8532, 0.5291, 10.3238, -1.8532, 0.9287, 10.3238, -1.8532, 0.9287, 10.3238, -1.8532, 0.5291, 10.3238, -2.0249, 0.5291, 10.3238, -1.8532, 0.9287, 10.3238, -2.0249, 0.5291, 10.3238, -2.0249, 0.9287, 10.3238, 1.0196, 0.9287, 6.2295, 0.2002, 0.5291, 6.2295, 0.2002, 0.9287, 6.2295, 0.2002, 0.9287, 6.2295, 0.2002, 0.5291, 6.2295, -0.6178, 0.5291, 6.2295, 1.0196, 0.9287, 6.2295, 1.0196, 0.5291, 6.2295, 0.2002, 0.5291, 6.2295, 2.069, 0.9287, 6.2295, 1.0196, 0.5291, 6.2295, 1.0196, 0.9287, 6.2295, 2.069, 0.9287, 6.2295, 2.069, 0.5291, 6.2295, 1.0196, 0.5291, 6.2295, 0.2002, 0.9287, 6.2295, -0.6178, 0.5291, 6.2295, -0.6178, 0.9287, 6.2295, -0.6178, 0.9287, 6.2295, -0.6178, 0.5291, 6.2295, -1.6669, 0.5291, 6.2295, -0.6178, 0.9287, 6.2295, -1.6669, 0.5291, 6.2295, -1.6669, 0.9287, 6.2295, -1.4363, 2.9326, 8.087, 0.2002, 2.9326, 9.7355, 0.2002, 2.9326, 8.087, -1.4363, 2.9326, 8.087, -1.4363, 2.9326, 9.7355, 0.2002, 2.9326, 9.7355, 0.2002, 2.9326, 8.087, 0.2002, 2.9326, 9.7355, 1.8384, 2.9326, 9.7355, -1.4363, 2.9326, 6.4601, -1.4363, 2.9326, 8.087, 0.2002, 2.9326, 8.087, 0.2002, 2.9326, 8.087, 1.8384, 2.9326, 9.7355, 1.8384, 2.9326, 8.087, -1.4363, 2.9326, 6.4601, 0.2002, 2.9326, 8.087, 0.2002, 2.9326, 6.4601, 0.2002, 2.9326, 6.4601, 0.2002, 2.9326, 8.087, 1.8384, 2.9326, 8.087, 0.2002, 2.9326, 6.4601, 1.8384, 2.9326, 8.087, 1.8384, 2.9326, 6.4601, 1.8384, 0.9287, 5.8718, 2.4267, 0.5291, 5.8718, 2.4267, 0.9287, 5.8718, 1.8384, 0.9287, 5.8718, 1.8384, 0.5291, 5.8718, 2.4267, 0.5291, 5.8718, 1.0196, 0.9287, 5.8718, 1.8384, 0.5291, 5.8718, 1.8384, 0.9287, 5.8718, 1.0196, 0.9287, 5.8718, 1.0196, 0.5291, 5.8718, 1.8384, 0.5291, 5.8718, 0.2002, 0.9287, 5.8718, 1.0196, 0.5291, 5.8718, 1.0196, 0.9287, 5.8718, 0.2002, 0.9287, 5.8718, 0.2002, 0.5291, 5.8718, 1.0196, 0.5291, 5.8718, -0.6178, 0.9287, 5.8718, 0.2002, 0.5291, 5.8718, 0.2002, 0.9287, 5.8718, -0.6178, 0.9287, 5.8718, -0.6178, 0.5291, 5.8718, 0.2002, 0.5291, 5.8718, -1.4363, 0.9287, 5.8718, -0.6178, 0.5291, 5.8718, -0.6178, 0.9287, 5.8718, -1.4363, 0.9287, 5.8718, -1.4363, 0.5291, 5.8718, -0.6178, 0.5291, 5.8718, -2.0249, 0.9287, 5.8718, -1.4363, 0.5291, 5.8718, -1.4363, 0.9287, 5.8718, -2.0249, 0.9287, 5.8718, -2.0249, 0.5291, 5.8718, -1.4363, 0.5291, 5.8718, 2.069, 0.9287, 8.9167, 2.069, 0.5291, 8.087, 2.069, 0.9287, 8.087, 2.069, 0.9287, 8.087, 2.069, 0.5291, 8.087, 2.069, 0.5291, 7.279, 2.069, 0.9287, 8.9167, 2.069, 0.5291, 8.9167, 2.069, 0.5291, 8.087, 2.069, 0.9287, 9.9661, 2.069, 0.5291, 8.9167, 2.069, 0.9287, 8.9167, 2.069, 0.9287, 9.9661, 2.3047, 0.5291, 9.9661, 2.069, 0.5291, 8.9167, 2.069, 0.9287, 8.087, 2.069, 0.5291, 7.279, 2.069, 0.9287, 7.279, 2.069, 0.9287, 7.279, 2.069, 0.5291, 7.279, 2.069, 0.5291, 6.2295, 2.069, 0.9287, 7.279, 2.069, 0.5291, 6.2295, 2.069, 0.9287, 6.2295, 2.4267, 0.9287, 5.8718, 2.4267, 0.5291, 6.4601, 2.4267, 0.9287, 6.4601, 2.4267, 0.9287, 5.8718, 2.4267, 0.5291, 5.8718, 2.4267, 0.5291, 6.4601, 2.4267, 0.9287, 6.4601, 2.4267, 0.5291, 6.4601, 2.4267, 0.5291, 7.279, 2.4267, 0.9287, 6.4601, 2.4267, 0.5291, 7.279, 2.4267, 0.9287, 7.279, 2.4267, 0.9287, 7.279, 2.4267, 0.5291, 7.279, 2.4267, 0.5291, 8.087, 2.4267, 0.9287, 7.279, 2.4267, 0.5291, 8.087, 2.4267, 0.9287, 8.087, 2.4267, 0.9287, 8.087, 2.4267, 0.5291, 8.087, 2.4267, 0.5291, 8.9167, 2.4267, 0.9287, 8.087, 2.4267, 0.5291, 8.9167, 2.4267, 0.9287, 8.9167, 2.4267, 0.9287, 8.9167, 2.4267, 0.5291, 8.9167, 2.4267, 0.5291, 9.7355, 2.4267, 0.9287, 8.9167, 2.4267, 0.5291, 9.7355, 2.4267, 0.9287, 9.7355, 2.4267, 0.9287, 9.7355, 2.4267, 0.5291, 9.7355, 2.4267, 0.5291, 10.3238, 2.4267, 0.9287, 9.7355, 2.4267, 0.5291, 10.3238, 2.4267, 0.9287, 10.3238, -2.0249, 0.9287, 7.279, -2.0249, 0.5291, 6.4601, -2.0249, 0.9287, 6.4601, -2.0249, 0.9287, 6.4601, -2.0249, 0.5291, 6.4601, -2.0249, 0.5291, 5.8718, -2.0249, 0.9287, 6.4601, -2.0249, 0.5291, 5.8718, -2.0249, 0.9287, 5.8718, -2.0249, 0.9287, 7.279, -2.0249, 0.5291, 7.279, -2.0249, 0.5291, 6.4601, -2.0249, 0.9287, 8.087, -2.0249, 0.5291, 7.279, -2.0249, 0.9287, 7.279, -2.0249, 0.9287, 8.087, -2.0249, 0.5291, 8.087, -2.0249, 0.5291, 7.279, -2.0249, 0.9287, 8.9167, -2.0249, 0.5291, 8.087, -2.0249, 0.9287, 8.087, -2.0249, 0.9287, 8.9167, -2.0249, 0.5291, 8.9167, -2.0249, 0.5291, 8.087, -2.0249, 0.9287, 9.7355, -2.0249, 0.5291, 8.9167, -2.0249, 0.9287, 8.9167, -2.0249, 0.9287, 9.7355, -2.0249, 0.5291, 9.7355, -2.0249, 0.5291, 8.9167, -2.0249, 0.9287, 10.3238, -2.0249, 0.5291, 9.7355, -2.0249, 0.9287, 9.7355, -2.0249, 0.9287, 10.3238, -2.0249, 0.5291, 10.3238, -2.0249, 0.5291, 9.7355, 0.2002, 0.9287, 6.2295, 1.0196, 0.9287, 6.4601, 1.0196, 0.9287, 6.2295, 1.0196, 0.9287, 6.2295, 1.0196, 0.9287, 6.4601, 1.8384, 0.9287, 6.4601, 0.2002, 0.9287, 6.2295, 0.2002, 0.9287, 6.4601, 1.0196, 0.9287, 6.4601, 1.0196, 0.9287, 6.2295, 1.8384, 0.9287, 6.4601, 2.069, 0.9287, 6.2295, -0.6178, 0.9287, 6.2295, 0.2002, 0.9287, 6.4601, 0.2002, 0.9287, 6.2295, 2.069, 0.9287, 6.2295, 1.8384, 0.9287, 6.4601, 1.8384, 0.9287, 7.279, -0.6178, 0.9287, 6.2295, -0.6178, 0.9287, 6.4601, 0.2002, 0.9287, 6.4601, 2.069, 0.9287, 6.2295, 1.8384, 0.9287, 7.279, 2.069, 0.9287, 7.279, -1.6669, 0.9287, 6.2295, -0.6178, 0.9287, 6.4601, -0.6178, 0.9287, 6.2295, 2.069, 0.9287, 7.279, 1.8384, 0.9287, 7.279, 1.8384, 0.9287, 8.087, -1.6669, 0.9287, 6.2295, -1.4363, 0.9287, 6.4601, -0.6178, 0.9287, 6.4601, 2.069, 0.9287, 7.279, 1.8384, 0.9287, 8.087, 2.069, 0.9287, 8.087, -1.6669, 0.9287, 7.279, -1.4363, 0.9287, 6.4601, -1.6669, 0.9287, 6.2295, 2.069, 0.9287, 8.087, 1.8384, 0.9287, 8.087, 1.8384, 0.9287, 8.9167, -1.6669, 0.9287, 7.279, -1.4363, 0.9287, 7.279, -1.4363, 0.9287, 6.4601, 2.069, 0.9287, 8.087, 1.8384, 0.9287, 8.9167, 2.069, 0.9287, 8.9167, -1.6669, 0.9287, 8.087, -1.4363, 0.9287, 7.279, -1.6669, 0.9287, 7.279, 2.069, 0.9287, 8.9167, 1.8384, 0.9287, 8.9167, 1.8384, 0.9287, 9.7355, -1.6669, 0.9287, 8.087, -1.4363, 0.9287, 8.087, -1.4363, 0.9287, 7.279, 2.069, 0.9287, 8.9167, 1.8384, 0.9287, 9.7355, 2.069, 0.9287, 9.9661, -1.6669, 0.9287, 8.9167, -1.4363, 0.9287, 8.087, -1.6669, 0.9287, 8.087, 2.069, 0.9287, 9.9661, 1.8384, 0.9287, 9.7355, 1.0196, 0.9287, 9.7355, -1.6669, 0.9287, 8.9167, -1.4363, 0.9287, 8.9167, -1.4363, 0.9287, 8.087, 2.069, 0.9287, 9.9661, 1.0196, 0.9287, 9.7355, 1.0196, 0.9287, 9.9661, -1.6669, 0.9287, 9.9661, -1.4363, 0.9287, 8.9167, -1.6669, 0.9287, 8.9167, 1.0196, 0.9287, 9.9661, 1.0196, 0.9287, 9.7355, 0.2002, 0.9287, 9.7355, -1.6669, 0.9287, 9.9661, -1.4362, 0.9287, 9.7355, -1.4363, 0.9287, 8.9167, 1.0196, 0.9287, 9.9661, 0.2002, 0.9287, 9.7355, 0.2002, 0.9287, 9.9661, -0.6178, 0.9287, 9.9661, -1.4362, 0.9287, 9.7355, -1.6669, 0.9287, 9.9661, 0.2002, 0.9287, 9.9661, 0.2002, 0.9287, 9.7355, -0.6178, 0.9287, 9.7355, -0.6178, 0.9287, 9.9661, -0.6178, 0.9287, 9.7355, -1.4362, 0.9287, 9.7355, 0.2002, 0.9287, 9.9661, -0.6178, 0.9287, 9.7355, -0.6178, 0.9287, 9.9661, -0.6178, 0.5291, 5.8718, 0.2002, 0.5291, 6.2295, 0.2002, 0.5291, 5.8718, 0.2002, 0.5291, 5.8718, 0.2002, 0.5291, 6.2295, 1.0196, 0.5291, 6.2295, -0.6178, 0.5291, 5.8718, -0.6178, 0.5291, 6.2295, 0.2002, 0.5291, 6.2295, 0.2002, 0.5291, 5.8718, 1.0196, 0.5291, 6.2295, 1.0196, 0.5291, 5.8718, -1.4363, 0.5291, 5.8718, -0.6178, 0.5291, 6.2295, -0.6178, 0.5291, 5.8718, -1.4363, 0.5291, 5.8718, -1.6669, 0.5291, 6.2295, -0.6178, 0.5291, 6.2295, -2.0249, 0.5291, 5.8718, -1.6669, 0.5291, 6.2295, -1.4363, 0.5291, 5.8718, -2.0249, 0.5291, 5.8718, -2.0249, 0.5291, 6.4601, -1.6669, 0.5291, 6.2295, -2.0249, 0.5291, 6.4601, -1.6669, 0.5291, 7.279, -1.6669, 0.5291, 6.2295, -2.0249, 0.5291, 6.4601, -2.0249, 0.5291, 7.279, -1.6669, 0.5291, 7.279, -2.0249, 0.5291, 7.279, -1.6669, 0.5291, 8.087, -1.6669, 0.5291, 7.279, -2.0249, 0.5291, 7.279, -2.0249, 0.5291, 8.087, -1.6669, 0.5291, 8.087, -2.0249, 0.5291, 8.087, -1.6669, 0.5291, 8.9167, -1.6669, 0.5291, 8.087, -2.0249, 0.5291, 8.087, -2.0249, 0.5291, 8.9167, -1.6669, 0.5291, 8.9167, -2.0249, 0.5291, 8.9167, -1.8476, 0.5291, 9.9661, -1.6669, 0.5291, 8.9167, -2.0249, 0.5291, 8.9167, -2.0249, 0.5291, 9.7355, -1.8476, 0.5291, 9.9661, -2.0249, 0.5291, 9.7355, -1.8532, 0.5291, 10.3238, -1.8476, 0.5291, 9.9661, -2.0249, 0.5291, 9.7355, -2.0249, 0.5291, 10.3238, -1.8532, 0.5291, 10.3238, -1.8476, 0.5291, 9.9661, -1.8532, 0.5291, 10.3238, -0.6178, 0.5291, 10.3238, -1.8476, 0.5291, 9.9661, -0.6178, 0.5291, 10.3238, -0.6178, 0.5291, 9.9661, -0.6178, 0.5291, 9.9661, -0.6178, 0.5291, 10.3238, 0.2002, 0.5291, 10.3238, -0.6178, 0.5291, 9.9661, 0.2002, 0.5291, 10.3238, 0.2002, 0.5291, 9.9661, 0.2002, 0.5291, 9.9661, 0.2002, 0.5291, 10.3238, 1.0196, 0.5291, 10.3238, 0.2002, 0.5291, 9.9661, 1.0196, 0.5291, 10.3238, 1.0196, 0.5291, 9.9661, 1.0196, 0.5291, 9.9661, 1.0196, 0.5291, 10.3238, 2.2912, 0.5291, 10.3238, 1.0196, 0.5291, 9.9661, 2.2912, 0.5291, 10.3238, 2.3047, 0.5291, 9.9661, 2.3047, 0.5291, 9.9661, 2.2912, 0.5291, 10.3238, 2.4267, 0.5291, 10.3238, 2.3047, 0.5291, 9.9661, 2.4267, 0.5291, 10.3238, 2.4267, 0.5291, 9.7355, 2.069, 0.5291, 8.9167, 2.3047, 0.5291, 9.9661, 2.4267, 0.5291, 9.7355, 2.069, 0.5291, 8.9167, 2.4267, 0.5291, 9.7355, 2.4267, 0.5291, 8.9167, 2.069, 0.5291, 8.087, 2.069, 0.5291, 8.9167, 2.4267, 0.5291, 8.9167, 2.069, 0.5291, 8.087, 2.4267, 0.5291, 8.9167, 2.4267, 0.5291, 8.087, 2.069, 0.5291, 7.279, 2.069, 0.5291, 8.087, 2.4267, 0.5291, 8.087, 2.069, 0.5291, 7.279, 2.4267, 0.5291, 8.087, 2.4267, 0.5291, 7.279, 2.069, 0.5291, 6.2295, 2.069, 0.5291, 7.279, 2.4267, 0.5291, 7.279, 2.069, 0.5291, 6.2295, 2.4267, 0.5291, 7.279, 2.4267, 0.5291, 6.4601, 1.8384, 0.5291, 5.8718, 2.069, 0.5291, 6.2295, 2.4267, 0.5291, 6.4601, 1.8384, 0.5291, 5.8718, 2.4267, 0.5291, 6.4601, 2.4267, 0.5291, 5.8718, 1.0196, 0.5291, 5.8718, 2.069, 0.5291, 6.2295, 1.8384, 0.5291, 5.8718, 1.0196, 0.5291, 5.8718, 1.0196, 0.5291, 6.2295, 2.069, 0.5291, 6.2295, 12.4351, -5.0152, 2.4857, 12.4351, -2.9797, 2.9842, 12.4351, -5.0152, 2.9842, 12.4351, -2.9797, 6.3176, 12.4351, -5.0152, 2.9842, 12.4351, -2.9797, 2.9842, 12.4351, -2.9797, 6.3176, 12.4351, -5.0152, 6.3044, 12.4351, -5.0152, 2.9842, 12.4351, -5.0152, 2.4857, 12.4351, -2.9797, 2.4857, 12.4351, -2.9797, 2.9842, 12.4351, -5.0152, 0.3345, 12.4351, -2.9797, 2.4857, 12.4351, -5.0152, 2.4857, 12.4351, -5.0152, 0.3345, 12.4351, -2.9797, 0.3345, 12.4351, -2.9797, 2.4857, 12.4351, -5.0152, 0.3345, 12.4351, -2.9797, -1.7311, 12.4351, -2.9797, 0.3345, 12.4351, -5.0152, 0.3345, 12.4351, -5.0152, -1.7311, 12.4351, -2.9797, -1.7311, 12.4351, -5.0152, -1.7311, 12.4351, -2.9797, -2.2789, 12.4351, -2.9797, -1.7311, 12.4351, -5.0152, -1.7311, 12.4351, -5.0152, -2.2789, 12.4351, -2.9797, -2.2789, 12.4351, -2.9797, -5.6879, 12.4351, -2.9797, -2.2789, 12.4351, -5.0152, -2.2789, 12.4351, -2.9797, -5.6879, 12.4351, -5.0152, -2.2789, 12.4351, -5.0152, -5.6999, -3.8633, -5.0166, 18.3071, -1.8438, -2.9811, 18.3071, -3.8633, -2.9811, 18.3071, -3.8633, -5.0166, 18.3071, -1.8438, -5.0166, 18.3071, -1.8438, -2.9811, 18.3071, 4.1627, -5.0166, 18.3071, 2.315, -2.9811, 18.3071, 2.315, -5.0166, 18.3071, 4.1627, -5.0166, 18.3071, 4.1627, -2.9811, 18.3071, 2.315, -2.9811, 18.3071, 7.1468, -5.0166, 18.3071, 4.1627, -2.9811, 18.3071, 4.1627, -5.0166, 18.3071, 7.1468, -5.0166, 18.3071, 7.1468, -2.9811, 18.3071, 4.1627, -2.9811, 18.3071, 8.8636, -5.0166, 18.3071, 7.1468, -2.9811, 18.3071, 7.1468, -5.0166, 18.3071, 8.8636, -5.0166, 18.3071, 8.8636, -2.9811, 18.3071, 7.1468, -2.9811, 18.3071, 12.4351, -5.0152, 18.3071, 8.8636, -2.9811, 18.3071, 8.8636, -5.0166, 18.3071, 12.4351, -5.0152, 18.3071, 12.4351, -2.9797, 18.3071, 8.8636, -2.9811, 18.3071, -12.2333, -5.0164, 6.3044, -12.2333, -2.9809, 2.9842, -12.2333, -5.0164, 2.9842, -12.2333, -2.9809, 2.4691, -12.2333, -5.0164, 2.9842, -12.2333, -2.9809, 2.9842, -12.2333, -2.9809, 2.4691, -12.2333, -5.0164, 2.4858, -12.2333, -5.0164, 2.9842, -12.2333, -5.0164, 6.3044, -12.2333, -2.9809, 6.3044, -12.2333, -2.9809, 2.9842, -12.2333, -5.0164, 8.3441, -12.2333, -2.9809, 6.3044, -12.2333, -5.0164, 6.3044, -12.2333, -5.0164, 8.3441, -12.2333, -2.9809, 8.3441, -12.2333, -2.9809, 6.3044, -12.2333, -5.0164, 15.2724, -12.2333, -2.9809, 12.4002, -12.2333, -5.0164, 12.4002, -12.2333, -5.0164, 15.2724, -12.2333, -2.9809, 15.2724, -12.2333, -2.9809, 12.4002, -12.2333, -5.0164, 18.3071, -12.2333, -2.9809, 15.2724, -12.2333, -5.0164, 15.2724, -12.2333, -5.0164, 18.3071, -12.2333, -2.9809, 18.3071, -12.2333, -2.9809, 15.2724, -3.8633, -5.0166, 18.3071, -5.9311, -2.9811, 18.3071, -5.9311, -5.0166, 18.3071, -3.8633, -5.0166, 18.3071, -3.8633, -2.9811, 18.3071, -5.9311, -2.9811, 18.3071, -5.9311, -5.0166, 18.3071, -5.9311, -2.9811, 18.3071, -8.6689, -2.9811, 18.3071, -5.9311, -5.0166, 18.3071, -8.6689, -2.9811, 18.3071, -8.6689, -5.0166, 18.3071, -8.6689, -5.0166, 18.3071, -8.6689, -2.9811, 18.3071, -10.4511, -2.981, 18.3071, -8.6689, -5.0166, 18.3071, -10.4511, -2.981, 18.3071, -10.4511, -5.0165, 18.3071, -10.4511, -5.0165, 18.3071, -10.4511, -2.981, 18.3071, -12.2333, -2.9809, 18.3071, -10.4511, -5.0165, 18.3071, -12.2333, -2.9809, 18.3071, -12.2333, -5.0164, 18.3071, 12.4351, -5.0152, 15.2724, 12.4351, -2.9797, 18.3071, 12.4351, -5.0152, 18.3071, 12.4351, -5.0152, 15.2724, 12.4351, -2.9797, 15.2724, 12.4351, -2.9797, 18.3071, 12.4351, -5.0152, 12.4002, 12.4351, -2.9797, 15.2724, 12.4351, -5.0152, 15.2724, 12.4351, -5.0152, 12.4002, 12.4351, -2.9797, 12.4002, 12.4351, -2.9797, 15.2724, 12.4351, -5.0152, 10.3619, 12.4351, -2.9797, 12.4002, 12.4351, -5.0152, 12.4002, 12.4351, -5.0152, 10.3619, 12.4351, -2.9797, 10.3878, 12.4351, -2.9797, 12.4002, -12.226, 1.1485, -17.6829, -12.2333, 2.9349, -14.6397, -12.226, 2.9816, -17.6829, -12.226, 1.1485, -17.6829, -12.2333, 1.1018, -14.6397, -12.2333, 2.9349, -14.6397, -12.226, -0.9977, -17.6829, -12.2333, 1.1018, -14.6397, -12.226, 1.1485, -17.6829, -12.2333, 1.1018, -14.6397, -12.2333, 2.9349, -11.4711, -12.2333, 2.9349, -14.6397, -12.226, -0.9977, -17.6829, -12.2333, -0.9977, -14.6397, -12.2333, 1.1018, -14.6397, -12.2333, 1.1018, -14.6397, -12.2333, 1.1018, -11.4711, -12.2333, 2.9349, -11.4711, -12.2333, -0.9977, -14.6397, -12.2333, 1.1018, -11.4711, -12.2333, 1.1018, -14.6397, -12.2333, 1.1018, -11.4711, -12.2333, 2.9349, -9.7137, -12.2333, 2.9349, -11.4711, -12.2333, -0.9977, -14.6397, -12.2333, -0.9401, -11.881, -12.2333, 1.1018, -11.4711, -12.2333, 1.1018, -11.4711, -12.2333, 1.1018, -9.7137, -12.2333, 2.9349, -9.7137, -12.2333, -0.9401, -11.881, -12.2333, 1.1018, -9.7137, -12.2333, 1.1018, -11.4711, -12.2333, 1.1018, -9.7137, -12.2333, 2.9349, -7.7605, -12.2333, 2.9349, -9.7137, -12.2333, -0.9401, -11.881, -12.2333, -0.9401, -10.1236, -12.2333, 1.1018, -9.7137, -12.2333, 1.1018, -9.7137, -12.2333, 1.1018, -7.7605, -12.2333, 2.9349, -7.7605, -12.2333, -0.9401, -10.1236, -12.2333, 1.1018, -7.7605, -12.2333, 1.1018, -9.7137, -12.2333, 1.1018, -7.7605, -12.2333, 2.9349, -5.6998, -12.2333, 2.9349, -7.7605, -12.2333, -0.9401, -10.1236, -12.2333, -0.9401, -8.1704, -12.2333, 1.1018, -7.7605, -12.2333, 1.1018, -7.7605, -12.2333, 1.1018, -5.6998, -12.2333, 2.9349, -5.6998, -12.2333, -0.9401, -8.1704, -12.2333, 1.1018, -5.6998, -12.2333, 1.1018, -7.7605, -12.2333, 1.1018, -5.6998, -12.2333, 2.9349, -2.279, -12.2333, 2.9349, -5.6998, -12.2333, -0.9401, -8.1704, -12.2333, -0.9977, -5.6998, -12.2333, 1.1018, -5.6998, -12.2333, 1.1018, -5.6998, -12.2333, 1.1018, -2.279, -12.2333, 2.9349, -2.279, -12.2333, -0.9977, -5.6998, -12.2333, 1.1018, -2.279, -12.2333, 1.1018, -5.6998, -12.2333, 2.9349, -1.7305, -12.2333, 2.9349, -2.279, -12.2333, 1.1018, -2.279, -12.2333, -0.9977, -5.6998, -12.2333, -0.9977, -2.279, -12.2333, 1.1018, -2.279, -12.2333, 2.9349, -1.7305, -12.2333, 1.1018, -2.279, -12.2333, 1.1122, -1.7305, -12.2333, 1.1018, -2.279, -12.2333, -0.9977, -2.279, -12.2333, -0.9977, -1.7311, -12.2333, 1.1018, -2.279, -12.2333, -0.9977, -1.7311, -12.2333, 1.1122, -1.7305, -11.062, 1.1485, -17.6829, -12.226, 2.9816, -17.6829, -11.062, 2.9816, -17.6829, -11.062, 1.1485, -17.6829, -12.226, 1.1485, -17.6829, -12.226, 2.9816, -17.6829, -11.062, -0.9978, -17.6829, -12.226, 1.1485, -17.6829, -11.062, 1.1485, -17.6829, -11.062, -0.9978, -17.6829, -12.226, -0.9977, -17.6829, -12.226, 1.1485, -17.6829, -9.8979, -0.9978, -17.6829, -11.062, -0.9978, -17.6829, -11.062, 1.1485, -17.6829, -9.8979, 1.1484, -17.6829, -11.062, 1.1485, -17.6829, -11.062, 2.9816, -17.6829, -9.8979, -0.9978, -17.6829, -11.062, 1.1485, -17.6829, -9.8979, 1.1484, -17.6829, -9.8979, 1.1484, -17.6829, -11.062, 2.9816, -17.6829, -9.8979, 2.9815, -17.6829, -5.9311, -0.9978, -17.6829, -9.8979, -0.9978, -17.6829, -9.8979, 1.1484, -17.6829, -5.9311, 1.1484, -17.6829, -9.8979, 1.1484, -17.6829, -9.8979, 2.9815, -17.6829, -5.9311, -0.9978, -17.6829, -9.8979, 1.1484, -17.6829, -5.9311, 1.1484, -17.6829, -3.8642, -0.9978, -17.6829, -5.9311, -0.9978, -17.6829, -5.9311, 1.1484, -17.6829, -5.9311, 1.1484, -17.6829, -9.8979, 2.9815, -17.6829, -5.9311, 2.9815, -17.6829, -3.8642, -0.9978, -17.6829, -5.9311, 1.1484, -17.6829, -3.8642, 1.1484, -17.6829, -3.8642, 1.1484, -17.6829, -5.9311, 1.1484, -17.6829, -5.9311, 2.9815, -17.6829, -3.8642, 1.1484, -17.6829, -5.9311, 2.9815, -17.6829, -3.8642, 2.9815, -17.6829, 7.147, 1.1484, -17.6829, 4.163, 2.9815, -17.6829, 7.147, 2.9815, -17.6829, 7.147, 1.1484, -17.6829, 4.163, 1.1484, -17.6829, 4.163, 2.9815, -17.6829, 4.163, 1.1484, -17.6829, 2.3155, 2.9815, -17.6829, 4.163, 2.9815, -17.6829, 8.8633, 1.1484, -17.6829, 7.147, 1.1484, -17.6829, 7.147, 2.9815, -17.6829, 7.147, -0.9978, -17.6829, 4.163, 1.1484, -17.6829, 7.147, 1.1484, -17.6829, 8.8633, -0.9978, -17.6829, 7.147, -0.9978, -17.6829, 7.147, 1.1484, -17.6829, 8.8633, -0.9978, -17.6829, 7.147, 1.1484, -17.6829, 8.8633, 1.1484, -17.6829, 7.147, -0.9978, -17.6829, 4.163, -0.9978, -17.6829, 4.163, 1.1484, -17.6829, 12.4351, -0.9964, -17.6829, 8.8633, -0.9978, -17.6829, 8.8633, 1.1484, -17.6829, 8.8633, 1.1484, -17.6829, 7.147, 2.9815, -17.6829, 8.8633, 2.9815, -17.6829, 12.4351, -0.9964, -17.6829, 8.8633, 1.1484, -17.6829, 12.4351, 1.1498, -17.6829, 12.4351, 1.1498, -17.6829, 8.8633, 1.1484, -17.6829, 8.8633, 2.9815, -17.6829, 12.4351, 1.1498, -17.6829, 8.8633, 2.9815, -17.6829, 12.4351, 2.9829, -17.6829, 4.163, -0.9978, -17.6829, 2.3155, 1.1484, -17.6829, 4.163, 1.1484, -17.6829, 4.163, 1.1484, -17.6829, 2.3155, 1.1484, -17.6829, 2.3155, 2.9815, -17.6829, 4.163, -0.9978, -17.6829, 2.3155, -0.9978, -17.6829, 2.3155, 1.1484, -17.6829, 2.3155, 1.1484, -17.6829, 0.2005, 2.9815, -17.6829, 2.3155, 2.9815, -17.6829, 2.3155, 1.1484, -17.6829, 0.2005, 1.1484, -17.6829, 0.2005, 2.9815, -17.6829, -1.8439, 1.1484, -17.6829, -3.8642, 2.9815, -17.6829, -1.8439, 2.9815, -17.6829, -1.8439, 1.1484, -17.6829, -3.8642, 1.1484, -17.6829, -3.8642, 2.9815, -17.6829, 0.2005, 1.1484, -17.6829, -1.8439, 1.1484, -17.6829, -1.8439, 2.9815, -17.6829, 0.2005, 1.1484, -17.6829, -1.8439, 2.9815, -17.6829, 0.2005, 2.9815, -17.6829, 4.1996, 2.2177, -9.1346, 6.3454, 2.2034, -9.2582, 4.4228, 2.2034, -9.2574, 4.1996, 2.2177, -9.1346, 6.0277, 2.2177, -9.1346, 6.3454, 2.2034, -9.2582, 4.1996, 2.2177, -12.319, 4.1996, 2.2177, -9.1346, 4.4228, 2.2034, -9.2574, 6.0277, 2.2177, -9.1346, 6.3454, 2.2034, -7.2112, 6.3454, 2.2034, -9.2582, 4.1996, 2.2177, -12.319, 4.4228, 2.2034, -9.2574, 4.4228, 2.2034, -12.6698, 6.0277, 2.2177, -9.1346, 6.0277, 2.2177, -7.2112, 6.3454, 2.2034, -7.2112, 2.315, 2.2177, -12.3187, 4.1996, 2.2177, -12.319, 4.4228, 2.2034, -12.6698, 6.0277, 2.2177, -7.2112, 6.3454, 2.2034, -5.0397, 6.3454, 2.2034, -7.2112, 2.315, 2.2177, -12.3187, 4.4228, 2.2034, -12.6698, 2.3217, 2.2034, -12.6824, 6.0277, 2.2177, -7.2112, 6.0277, 2.2177, -5.1411, 6.3454, 2.2034, -5.0397, 0.2004, 2.2177, -12.3187, 2.315, 2.2177, -12.3187, 2.3217, 2.2034, -12.6824, 6.0277, 2.2177, -5.1411, 4.4228, 2.2034, -5.0397, 6.3454, 2.2034, -5.0397, 0.2004, 2.2177, -12.3187, 2.3217, 2.2034, -12.6824, 0.2004, 2.2034, -12.682, 6.0277, 2.2177, -5.1411, 4.1996, 2.2177, -5.1411, 4.4228, 2.2034, -5.0397, -1.8438, 2.2177, -12.3187, 0.2004, 2.2177, -12.3187, 0.2004, 2.2034, -12.682, 4.1996, 2.2177, -5.1411, 4.4228, 2.2034, -1.361, 4.4228, 2.2034, -5.0397, -1.8438, 2.2177, -12.3187, 0.2004, 2.2034, -12.682, -1.8412, 2.2034, -12.6823, 4.1996, 2.2177, -5.1411, 4.1996, 2.2177, -1.7434, 4.4228, 2.2034, -1.361, -3.8476, 2.2177, -12.319, -1.8438, 2.2177, -12.3187, -1.8412, 2.2034, -12.6823, 4.1996, 2.2177, -1.7434, 2.3568, 2.2034, -1.361, 4.4228, 2.2034, -1.361, -3.8476, 2.2177, -12.319, -1.8412, 2.2034, -12.6823, -4.0649, 2.2034, -12.6698, 4.1996, 2.2177, -1.7434, 2.2438, 2.2177, -1.7434, 2.3568, 2.2034, -1.361, -3.8476, 2.2177, -9.1346, -3.8476, 2.2177, -12.319, -4.0649, 2.2034, -12.6698, 2.2438, 2.2177, -1.7434, 0.2004, 2.2034, -1.361, 2.3568, 2.2034, -1.361, -3.8476, 2.2177, -9.1346, -4.0649, 2.2034, -12.6698, -4.0649, 2.2034, -9.2574, 2.2438, 2.2177, -1.7434, 0.2004, 2.2177, -1.7434, 0.2004, 2.2034, -1.361, -5.8966, 2.2177, -9.1346, -3.8476, 2.2177, -9.1346, -4.0649, 2.2034, -9.2574, 0.2004, 2.2177, -1.7434, -1.9326, 2.2034, -1.361, 0.2004, 2.2034, -1.361, -5.8966, 2.2177, -9.1346, -4.0649, 2.2034, -9.2574, -6.2241, 2.2034, -9.2583, 0.2004, 2.2177, -1.7434, -1.8255, 2.2177, -1.7434, -1.9326, 2.2034, -1.361, -5.8966, 2.2177, -7.2112, -5.8966, 2.2177, -9.1346, -6.2241, 2.2034, -9.2583, -1.8255, 2.2177, -1.7434, -4.0649, 2.2034, -1.361, -1.9326, 2.2034, -1.361, -5.8966, 2.2177, -7.2112, -6.2241, 2.2034, -9.2583, -6.2241, 2.2034, -7.2112, -1.8255, 2.2177, -1.7434, -3.8476, 2.2177, -1.7434, -4.0649, 2.2034, -1.361, -5.8966, 2.2177, -5.1411, -5.8966, 2.2177, -7.2112, -6.2241, 2.2034, -7.2112, -3.8476, 2.2177, -1.7434, -4.0649, 2.2034, -5.0397, -4.0649, 2.2034, -1.361, -5.8966, 2.2177, -5.1411, -6.2241, 2.2034, -7.2112, -6.2241, 2.2034, -5.0397, -3.8476, 2.2177, -1.7434, -3.8476, 2.2177, -5.1411, -4.0649, 2.2034, -5.0397, -3.8476, 2.2177, -5.1411, -5.8966, 2.2177, -5.1411, -6.2241, 2.2034, -5.0397, -3.8476, 2.2177, -5.1411, -6.2241, 2.2034, -5.0397, -4.0649, 2.2034, -5.0397, -3.8476, 2.7453, -12.319, -4.0649, 2.7596, -9.2574, -4.0649, 2.7596, -12.6698, -3.8476, 2.7453, -12.319, -3.8476, 2.7453, -9.1346, -4.0649, 2.7596, -9.2574, -1.8438, 2.7453, -12.3186, -3.8476, 2.7453, -12.319, -4.0649, 2.7596, -12.6698, -3.8476, 2.7453, -9.1346, -6.2241, 2.7596, -9.2583, -4.0649, 2.7596, -9.2574, -1.8438, 2.7453, -12.3186, -4.0649, 2.7596, -12.6698, -1.8412, 2.7596, -12.6867, -3.8476, 2.7453, -9.1346, -5.8966, 2.7453, -9.1346, -6.2241, 2.7596, -9.2583, 0.2004, 2.7453, -12.3186, -1.8438, 2.7453, -12.3186, -1.8412, 2.7596, -12.6867, -5.8966, 2.7453, -9.1346, -6.2241, 2.7596, -7.2112, -6.2241, 2.7596, -9.2583, 0.2004, 2.7453, -12.3186, -1.8412, 2.7596, -12.6867, 0.2004, 2.7596, -12.6881, -5.8966, 2.7453, -9.1346, -5.8966, 2.7453, -7.2112, -6.2241, 2.7596, -7.2112, 2.315, 2.7453, -12.3186, 0.2004, 2.7453, -12.3186, 0.2004, 2.7596, -12.6881, -5.8966, 2.7453, -7.2112, -6.2241, 2.7596, -5.0397, -6.2241, 2.7596, -7.2112, 2.315, 2.7453, -12.3186, 0.2004, 2.7596, -12.6881, 2.3217, 2.7596, -12.6858, -5.8966, 2.7453, -7.2112, -5.8966, 2.7453, -5.1411, -6.2241, 2.7596, -5.0397, 4.1996, 2.7453, -12.319, 2.315, 2.7453, -12.3186, 2.3217, 2.7596, -12.6858, -5.8966, 2.7453, -5.1411, -4.0649, 2.7596, -5.0397, -6.2241, 2.7596, -5.0397, 4.1996, 2.7453, -12.319, 2.3217, 2.7596, -12.6858, 4.4228, 2.7596, -12.6698, -5.8966, 2.7453, -5.1411, -3.8476, 2.7453, -5.1411, -4.0649, 2.7596, -5.0397, 4.1996, 2.7453, -9.1346, 4.1996, 2.7453, -12.319, 4.4228, 2.7596, -12.6698, -3.8476, 2.7453, -5.1411, -4.0649, 2.7596, -1.361, -4.0649, 2.7596, -5.0397, 4.1996, 2.7453, -9.1346, 4.4228, 2.7596, -12.6698, 4.4228, 2.7596, -9.2574, -3.8476, 2.7453, -5.1411, -3.8476, 2.7453, -1.7434, -4.0649, 2.7596, -1.361, 6.0277, 2.7453, -9.1346, 4.1996, 2.7453, -9.1346, 4.4228, 2.7596, -9.2574, -3.8476, 2.7453, -1.7434, -1.9326, 2.7596, -1.361, -4.0649, 2.7596, -1.361, 6.0277, 2.7453, -9.1346, 4.4228, 2.7596, -9.2574, 6.3454, 2.7596, -9.2582, -3.8476, 2.7453, -1.7434, -1.8255, 2.7453, -1.7434, -1.9326, 2.7596, -1.361, 6.0277, 2.7453, -7.2112, 6.0277, 2.7453, -9.1346, 6.3454, 2.7596, -9.2582, -1.8255, 2.7453, -1.7434, 0.2004, 2.7596, -1.361, -1.9326, 2.7596, -1.361, 6.0277, 2.7453, -7.2112, 6.3454, 2.7596, -9.2582, 6.3454, 2.7596, -7.2112, -1.8255, 2.7453, -1.7434, 0.2004, 2.7453, -1.7434, 0.2004, 2.7596, -1.361, 6.0277, 2.7453, -5.1411, 6.0277, 2.7453, -7.2112, 6.3454, 2.7596, -7.2112, 0.2004, 2.7453, -1.7434, 2.3568, 2.7596, -1.361, 0.2004, 2.7596, -1.361, 6.0277, 2.7453, -5.1411, 6.3454, 2.7596, -7.2112, 6.3454, 2.7596, -5.0397, 0.2004, 2.7453, -1.7434, 2.2438, 2.7453, -1.7434, 2.3568, 2.7596, -1.361, 4.1996, 2.7453, -5.1411, 6.0277, 2.7453, -5.1411, 6.3454, 2.7596, -5.0397, 2.2438, 2.7453, -1.7434, 4.4228, 2.7596, -1.361, 2.3568, 2.7596, -1.361, 4.1996, 2.7453, -5.1411, 6.3454, 2.7596, -5.0397, 4.4228, 2.7596, -5.0397, 2.2438, 2.7453, -1.7434, 4.1996, 2.7453, -1.7434, 4.4228, 2.7596, -1.361, 4.1996, 2.7453, -1.7434, 4.1996, 2.7453, -5.1411, 4.4228, 2.7596, -5.0397, 4.1996, 2.7453, -1.7434, 4.4228, 2.7596, -5.0397, 4.4228, 2.7596, -1.361, -1.8438, 2.9347, -12.3186, 0.2004, 2.9347, -14.6397, -1.8438, 2.9347, -14.6397, -1.8438, 2.9347, -12.3186, 0.2004, 2.9347, -12.3185, 0.2004, 2.9347, -14.6397, -3.8633, 2.9347, -11.4997, -1.8438, 2.9347, -12.3186, -1.8438, 2.9347, -14.6397, 0.2004, 2.9347, -12.3185, 2.315, 2.9347, -14.6397, 0.2004, 2.9347, -14.6397, -5.9311, 2.9347, -9.1644, -3.8476, 2.9347, -9.1346, -3.8633, 2.9347, -11.4997, -5.9311, 2.9347, -9.1644, -3.8633, 2.9347, -11.4997, -5.9311, 2.9347, -11.4997, 0.2004, 2.9347, -12.3185, 2.315, 2.9347, -12.3186, 2.315, 2.9347, -14.6397, -5.9311, 2.9347, -11.4997, -3.8633, 2.9347, -11.4997, -3.8633, 2.9347, -14.6397, -3.8633, 2.9347, -11.4997, -1.8438, 2.9347, -14.6397, -3.8633, 2.9347, -14.6397, -5.9311, 2.9347, -11.4997, -3.8633, 2.9347, -14.6397, -5.9311, 2.9347, -14.6397, -5.9311, 2.9347, -14.6397, -3.8633, 2.9347, -14.6397, -3.8642, 2.9815, -17.6829, -5.9311, 2.9347, -14.6397, -3.8642, 2.9815, -17.6829, -5.9311, 2.9815, -17.6829, -3.8633, 2.9347, -14.6397, -1.8439, 2.9815, -17.6829, -3.8642, 2.9815, -17.6829, -3.8633, 2.9347, -14.6397, -1.8438, 2.9347, -14.6397, -1.8439, 2.9815, -17.6829, -1.8438, 2.9347, -14.6397, 0.2005, 2.9815, -17.6829, -1.8439, 2.9815, -17.6829, -1.8438, 2.9347, -14.6397, 0.2004, 2.9347, -14.6397, 0.2005, 2.9815, -17.6829, 0.2004, 2.9347, -14.6397, 2.3155, 2.9815, -17.6829, 0.2005, 2.9815, -17.6829, 0.2004, 2.9347, -14.6397, 2.315, 2.9347, -14.6397, 2.3155, 2.9815, -17.6829, 2.315, 2.9347, -14.6397, 4.163, 2.9815, -17.6829, 2.3155, 2.9815, -17.6829, 2.315, 2.9347, -14.6397, 4.1627, 2.9347, -14.6397, 4.163, 2.9815, -17.6829, 2.315, 2.9347, -12.3186, 4.1627, 2.9347, -14.6397, 2.315, 2.9347, -14.6397, 4.1627, 2.9347, -14.6397, 7.147, 2.9815, -17.6829, 4.163, 2.9815, -17.6829, 2.315, 2.9347, -12.3186, 4.1627, 2.9347, -10.9504, 4.1627, 2.9347, -14.6397, 4.1627, 2.9347, -14.6397, 7.1468, 2.9347, -14.6397, 7.147, 2.9815, -17.6829, 4.1627, 2.9347, -10.9504, 7.1468, 2.9347, -14.6397, 4.1627, 2.9347, -14.6397, 4.1627, 2.9347, -10.9504, 7.1468, 2.9347, -11.4997, 7.1468, 2.9347, -14.6397, 4.1996, 2.9347, -9.1346, 7.1468, 2.9347, -11.4997, 4.1627, 2.9347, -10.9504, 4.1996, 2.9347, -9.1346, 6.0371, 2.9347, -9.1346, 7.1468, 2.9347, -11.4997, 0.2004, 2.0002, -1.7434, -1.4363, 0.9287, -2.376, -1.8255, 2.0002, -1.7434, -1.4363, 0.9287, -2.376, 0.2004, 2.0002, -1.7434, -0.6178, 0.9287, -2.376, -0.6178, 0.9287, -2.376, 0.2004, 2.0002, -1.7434, 0.2002, 0.9287, -2.376, -3.0747, 0.9287, -2.376, -1.8255, 2.0002, -1.7434, -1.4363, 0.9287, -2.376, -3.0747, 0.9287, -2.376, -1.4363, 0.9287, -2.376, -2.2555, 0.9287, -2.376, -1.8255, 2.0002, -1.7434, -3.0747, 0.9287, -2.376, -3.8476, 2.0002, -1.7434, -3.8476, 2.2177, -1.7434, -1.8255, 2.0002, -1.7434, -3.8476, 2.0002, -1.7434, -3.8476, 2.2177, -1.7434, -1.8255, 2.2177, -1.7434, -1.8255, 2.0002, -1.7434, -1.8255, 2.2177, -1.7434, 0.2004, 2.0002, -1.7434, -1.8255, 2.0002, -1.7434, -1.8255, 2.2177, -1.7434, 0.2004, 2.2177, -1.7434, 0.2004, 2.0002, -1.7434, 2.2438, 2.0002, -1.7434, 0.2002, 0.9287, -2.376, 0.2004, 2.0002, -1.7434, 0.2004, 2.2177, -1.7434, 2.2438, 2.0002, -1.7434, 0.2004, 2.0002, -1.7434, 0.2002, 0.9287, -2.376, 2.2438, 2.0002, -1.7434, 1.0196, 0.9287, -2.376, 0.2004, 2.2177, -1.7434, 2.2438, 2.2177, -1.7434, 2.2438, 2.0002, -1.7434, 1.0196, 0.9287, -2.376, 2.2438, 2.0002, -1.7434, 1.8384, 0.9287, -2.376, 2.2438, 2.2177, -1.7434, 4.1996, 2.0002, -1.7434, 2.2438, 2.0002, -1.7434, 4.1996, 2.0002, -1.7434, 1.8384, 0.9287, -2.376, 2.2438, 2.0002, -1.7434, 2.2438, 2.2177, -1.7434, 4.1996, 2.2177, -1.7434, 4.1996, 2.0002, -1.7434, 1.8384, 0.9287, -2.376, 4.1996, 2.0002, -1.7434, 2.6573, 0.9287, -2.376, 2.6573, 0.9287, -2.376, 4.1996, 2.0002, -1.7434, 3.4762, 0.9287, -2.376, 4.1996, 2.0002, -12.319, 3.4762, 0.9287, -8.7712, 4.1996, 2.0002, -9.1346, 3.4762, 0.9287, -8.7712, 4.1996, 2.0002, -12.319, 3.4762, 0.9287, -9.5903, 3.4762, 0.9287, -9.5903, 4.1996, 2.0002, -12.319, 3.4762, 0.9287, -11.6408, 4.1996, 2.2177, -9.1346, 4.1996, 2.0002, -12.319, 4.1996, 2.0002, -9.1346, 4.1996, 2.2177, -9.1346, 4.1996, 2.2177, -12.319, 4.1996, 2.0002, -12.319, -5.8966, 2.0002, -9.1346, -4.7124, 0.9287, -7.2112, -4.7124, 0.9287, -8.7735, -5.8966, 2.0002, -9.1346, -5.8966, 2.0002, -7.2112, -4.7124, 0.9287, -7.2112, -5.8966, 2.0002, -7.2112, -4.7124, 0.9287, -5.5472, -4.7124, 0.9287, -7.2112, -5.8966, 2.2177, -9.1346, -5.8966, 2.0002, -7.2112, -5.8966, 2.0002, -9.1346, -5.8966, 2.0002, -7.2112, -5.8966, 2.0002, -5.1411, -4.7124, 0.9287, -5.5472, -5.8966, 2.2177, -9.1346, -5.8966, 2.2177, -7.2112, -5.8966, 2.0002, -7.2112, -5.8966, 2.2177, -7.2112, -5.8966, 2.0002, -5.1411, -5.8966, 2.0002, -7.2112, -5.8966, 2.2177, -7.2112, -5.8966, 2.2177, -5.1411, -5.8966, 2.0002, -5.1411, 4.1996, 2.0002, -5.1411, 3.4762, 0.9287, -2.376, 4.1996, 2.0002, -1.7434, 3.4762, 0.9287, -2.376, 4.1996, 2.0002, -5.1411, 3.4762, 0.9287, -4.7283, 3.4762, 0.9287, -4.7283, 4.1996, 2.0002, -5.1411, 3.4762, 0.9287, -5.5472, 4.1996, 2.2177, -1.7434, 4.1996, 2.0002, -5.1411, 4.1996, 2.0002, -1.7434, 4.1996, 2.2177, -1.7434, 4.1996, 2.2177, -5.1411, 4.1996, 2.0002, -5.1411, 4.1996, 2.0002, -5.1411, 4.8834, 0.9287, -5.5472, 3.4762, 0.9287, -5.5472, 4.1996, 2.0002, -5.1411, 6.0277, 2.0002, -5.1411, 4.8834, 0.9287, -5.5472, 4.1996, 2.2177, -5.1411, 6.0277, 2.0002, -5.1411, 4.1996, 2.0002, -5.1411, 4.1996, 2.2177, -5.1411, 6.0277, 2.2177, -5.1411, 6.0277, 2.0002, -5.1411, 6.0277, 2.0002, -5.1411, 4.8834, 0.9287, -7.2112, 4.8834, 0.9287, -5.5472, 6.0277, 2.0002, -5.1411, 6.0277, 2.0002, -7.2112, 4.8834, 0.9287, -7.2112, 6.0277, 2.0002, -7.2112, 4.8834, 0.9287, -8.7707, 4.8834, 0.9287, -7.2112, 6.0277, 2.2177, -5.1411, 6.0277, 2.0002, -7.2112, 6.0277, 2.0002, -5.1411, 6.0277, 2.0002, -7.2112, 6.0277, 2.0002, -9.1346, 4.8834, 0.9287, -8.7707, 6.0277, 2.2177, -5.1411, 6.0277, 2.2177, -7.2112, 6.0277, 2.0002, -7.2112, 6.0277, 2.2177, -7.2112, 6.0277, 2.0002, -9.1346, 6.0277, 2.0002, -7.2112, 6.0277, 2.2177, -7.2112, 6.0277, 2.2177, -9.1346, 6.0277, 2.0002, -9.1346, -5.8966, 2.0002, -5.1411, -3.0747, 0.9287, -5.5472, -4.7124, 0.9287, -5.5472, -5.8966, 2.0002, -5.1411, -3.8476, 2.0002, -5.1411, -3.0747, 0.9287, -5.5472, -5.8966, 2.2177, -5.1411, -3.8476, 2.0002, -5.1411, -5.8966, 2.0002, -5.1411, -5.8966, 2.2177, -5.1411, -3.8476, 2.2177, -5.1411, -3.8476, 2.0002, -5.1411, -3.8476, 2.0002, -12.319, -1.8532, 0.9287, -11.6301, -1.8438, 2.0002, -12.3188, -1.8532, 0.9287, -11.6301, -3.8476, 2.0002, -12.319, -3.0747, 0.9287, -11.6414, -1.8532, 0.9287, -11.6301, -3.0747, 0.9287, -11.6414, -2.2555, 0.9287, -11.633, -1.8438, 2.2177, -12.3187, -3.8476, 2.0002, -12.319, -1.8438, 2.0002, -12.3188, -1.8438, 2.2177, -12.3187, -3.8476, 2.2177, -12.319, -3.8476, 2.0002, -12.319, 0.2004, 2.2177, -12.3187, -1.8438, 2.2177, -12.3187, -1.8438, 2.0002, -12.3188, 0.2004, 2.2177, -12.3187, -1.8438, 2.0002, -12.3188, 0.2004, 2.0002, -12.3188, 0.2002, 0.9287, -11.6296, -1.8438, 2.0002, -12.3188, -1.8532, 0.9287, -11.6301, 0.2002, 0.9287, -11.6296, -1.8532, 0.9287, -11.6301, -0.6178, 0.9287, -11.6296, -1.8438, 2.0002, -12.3188, 0.2002, 0.9287, -11.6296, 0.2004, 2.0002, -12.3188, 2.315, 2.2177, -12.3187, 0.2004, 2.2177, -12.3187, 0.2004, 2.0002, -12.3188, 2.2912, 0.9287, -11.6301, 0.2004, 2.0002, -12.3188, 0.2002, 0.9287, -11.6296, 2.2912, 0.9287, -11.6301, 0.2002, 0.9287, -11.6296, 1.0196, 0.9287, -11.6296, 2.315, 2.2177, -12.3187, 0.2004, 2.0002, -12.3188, 2.315, 2.0002, -12.3188, 0.2004, 2.0002, -12.3188, 2.2912, 0.9287, -11.6301, 2.315, 2.0002, -12.3188, 4.1996, 2.2177, -12.319, 2.315, 2.2177, -12.3187, 2.315, 2.0002, -12.3188, 4.1996, 2.2177, -12.319, 2.315, 2.0002, -12.3188, 4.1996, 2.0002, -12.319, 2.315, 2.0002, -12.3188, 3.4762, 0.9287, -11.6408, 4.1996, 2.0002, -12.319, 3.4762, 0.9287, -11.6408, 2.315, 2.0002, -12.3188, 2.2912, 0.9287, -11.6301, 3.4762, 0.9287, -11.6408, 2.2912, 0.9287, -11.6301, 2.6573, 0.9287, -11.633, -3.8476, 2.0002, -9.1346, -4.7124, 0.9287, -8.7735, -3.0747, 0.9287, -8.772, -3.8476, 2.0002, -9.1346, -5.8966, 2.0002, -9.1346, -4.7124, 0.9287, -8.7735, -3.8476, 2.2177, -9.1346, -5.8966, 2.0002, -9.1346, -3.8476, 2.0002, -9.1346, -3.8476, 2.2177, -9.1346, -5.8966, 2.2177, -9.1346, -5.8966, 2.0002, -9.1346, -3.8476, 2.0002, -9.1346, -3.0747, 0.9287, -11.6414, -3.8476, 2.0002, -12.319, -3.0747, 0.9287, -11.6414, -3.8476, 2.0002, -9.1346, -3.0747, 0.9287, -9.5911, -3.0747, 0.9287, -9.5911, -3.8476, 2.0002, -9.1346, -3.0747, 0.9287, -8.772, -3.8476, 2.2177, -12.319, -3.8476, 2.0002, -9.1346, -3.8476, 2.0002, -12.319, -3.8476, 2.2177, -12.319, -3.8476, 2.2177, -9.1346, -3.8476, 2.0002, -9.1346, 2.6573, 0.9287, -4.7283, 3.4762, 0.9287, -5.5472, 2.6573, 0.9287, -5.5468, 2.6573, 0.9287, -4.7283, 3.4762, 0.9287, -4.7283, 3.4762, 0.9287, -5.5472, 2.6573, 0.9287, -2.376, 3.4762, 0.9287, -2.376, 3.4762, 0.9287, -4.7283, 2.6573, 0.9287, -2.376, 3.4762, 0.9287, -4.7283, 2.6573, 0.9287, -4.7283, 1.8384, 0.9287, -2.376, 2.6573, 0.9287, -2.376, 2.6573, 0.9287, -4.7283, 1.8384, 0.9287, -2.376, 2.6573, 0.9287, -4.7283, 1.8384, 0.9287, -4.7283, 1.0196, 0.9287, -2.376, 1.8384, 0.9287, -2.376, 1.8384, 0.9287, -4.7283, 2.4267, 0.9287, -4.9589, 1.8384, 0.9287, -4.7283, 2.6573, 0.9287, -4.7283, 2.4267, 0.9287, -5.5467, 2.4267, 0.9287, -4.9589, 2.6573, 0.9287, -4.7283, 2.4267, 0.9287, -5.5467, 2.6573, 0.9287, -4.7283, 2.6573, 0.9287, -5.5468, 2.4267, 0.9287, -4.9589, 1.8384, 0.9287, -4.9589, 1.8384, 0.9287, -4.7283, 2.4267, 0.9287, -6.353, 2.4267, 0.9287, -5.5467, 2.6573, 0.9287, -5.5468, 1.8384, 0.9287, -4.9589, 1.0196, 0.9287, -4.7283, 1.8384, 0.9287, -4.7283, 1.0196, 0.9287, -2.376, 1.8384, 0.9287, -4.7283, 1.0196, 0.9287, -4.7283, 1.8384, 0.9287, -4.9589, 1.0196, 0.9287, -4.9589, 1.0196, 0.9287, -4.7283, 0.2002, 0.9287, -2.376, 1.0196, 0.9287, -2.376, 1.0196, 0.9287, -4.7283, 1.0196, 0.9287, -4.9589, 0.2002, 0.9287, -4.7283, 1.0196, 0.9287, -4.7283, 0.2002, 0.9287, -2.376, 1.0196, 0.9287, -4.7283, 0.2002, 0.9287, -4.7283, 1.0196, 0.9287, -4.9589, 0.2002, 0.9287, -4.9589, 0.2002, 0.9287, -4.7283, -0.6178, 0.9287, -2.376, 0.2002, 0.9287, -2.376, 0.2002, 0.9287, -4.7283, 0.2002, 0.9287, -4.9589, -0.6178, 0.9287, -4.7283, 0.2002, 0.9287, -4.7283, -0.6178, 0.9287, -2.376, 0.2002, 0.9287, -4.7283, -0.6178, 0.9287, -4.7283, 0.2002, 0.9287, -4.9589, -0.6178, 0.9287, -4.9589, -0.6178, 0.9287, -4.7283, -1.4363, 0.9287, -2.376, -0.6178, 0.9287, -2.376, -0.6178, 0.9287, -4.7283, -0.6178, 0.9287, -4.9589, -1.4363, 0.9287, -4.7283, -0.6178, 0.9287, -4.7283, -1.4363, 0.9287, -2.376, -0.6178, 0.9287, -4.7283, -1.4363, 0.9287, -4.7283, -0.6178, 0.9287, -4.9589, -1.4363, 0.9287, -4.9589, -1.4363, 0.9287, -4.7283, -2.2555, 0.9287, -2.376, -1.4363, 0.9287, -2.376, -1.4363, 0.9287, -4.7283, -1.4363, 0.9287, -4.9589, -2.2555, 0.9287, -4.7283, -1.4363, 0.9287, -4.7283, -2.2555, 0.9287, -2.376, -1.4363, 0.9287, -4.7283, -2.2555, 0.9287, -4.7283, -3.0747, 0.9287, -2.376, -2.2555, 0.9287, -2.376, -2.2555, 0.9287, -4.7283, -1.4363, 0.9287, -4.9589, -2.0249, 0.9287, -4.9589, -2.2555, 0.9287, -4.7283, -3.0747, 0.9287, -2.376, -2.2555, 0.9287, -4.7283, -3.0747, 0.9287, -4.7283, -2.0249, 0.9287, -4.9589, -2.2555, 0.9287, -5.5468, -2.2555, 0.9287, -4.7283, -3.0747, 0.9287, -4.7283, -2.2555, 0.9287, -4.7283, -2.2555, 0.9287, -5.5468, -2.0249, 0.9287, -4.9589, -2.0249, 0.9287, -5.5467, -2.2555, 0.9287, -5.5468, -3.0747, 0.9287, -4.7283, -2.2555, 0.9287, -5.5468, -3.0747, 0.9287, -5.5472, -2.0249, 0.9287, -5.5467, -2.2555, 0.9287, -6.3539, -2.2555, 0.9287, -5.5468, -3.0747, 0.9287, -5.5472, -2.2555, 0.9287, -5.5468, -2.2555, 0.9287, -6.3539, -2.0249, 0.9287, -5.5467, -2.0249, 0.9287, -6.353, -2.2555, 0.9287, -6.3539, -3.0747, 0.9287, -5.5472, -4.7124, 0.9287, -7.2112, -4.7124, 0.9287, -5.5472, -2.0249, 0.9287, -6.353, -2.2555, 0.9287, -7.2112, -2.2555, 0.9287, -6.3539, -3.0747, 0.9287, -5.5472, -2.2555, 0.9287, -6.3539, -3.0747, 0.9287, -6.3597, -4.7124, 0.9287, -7.2112, -3.0747, 0.9287, -5.5472, -3.0747, 0.9287, -6.3597, -3.0747, 0.9287, -6.3597, -2.2555, 0.9287, -6.3539, -2.2555, 0.9287, -7.2112, -2.0249, 0.9287, -6.353, -2.0249, 0.9287, -7.2112, -2.2555, 0.9287, -7.2112, -4.7124, 0.9287, -7.2112, -3.0747, 0.9287, -6.3597, -3.0747, 0.9287, -7.2112, -3.0747, 0.9287, -6.3597, -2.2555, 0.9287, -7.2112, -3.0747, 0.9287, -7.2112, -3.0747, 0.9287, -7.2112, -4.7124, 0.9287, -8.7735, -4.7124, 0.9287, -7.2112, -2.0249, 0.9287, -7.2112, -2.2555, 0.9287, -7.9484, -2.2555, 0.9287, -7.2112, -3.0747, 0.9287, -7.2112, -2.2555, 0.9287, -7.2112, -2.2555, 0.9287, -7.9484, -2.0249, 0.9287, -7.2112, -2.0249, 0.9287, -7.946, -2.2555, 0.9287, -7.9484, -4.7124, 0.9287, -8.7735, -3.0747, 0.9287, -7.2112, -3.0747, 0.9287, -7.9641, -3.0747, 0.9287, -7.2112, -2.2555, 0.9287, -7.9484, -3.0747, 0.9287, -7.9641, -4.7124, 0.9287, -8.7735, -3.0747, 0.9287, -7.9641, -3.0747, 0.9287, -8.772, -2.0249, 0.9287, -7.946, -2.2555, 0.9287, -8.7547, -2.2555, 0.9287, -7.9484, -3.0747, 0.9287, -7.9641, -2.2555, 0.9287, -7.9484, -2.2555, 0.9287, -8.7547, -3.0747, 0.9287, -7.9641, -2.2555, 0.9287, -8.7547, -3.0747, 0.9287, -8.772, -2.0249, 0.9287, -7.946, -2.0249, 0.9287, -8.7517, -2.2555, 0.9287, -8.7547, -3.0747, 0.9287, -8.772, -2.2555, 0.9287, -8.7547, -2.2555, 0.9287, -9.5773, -2.0249, 0.9287, -8.7517, -2.2555, 0.9287, -9.5773, -2.2555, 0.9287, -8.7547, -3.0747, 0.9287, -8.772, -2.2555, 0.9287, -9.5773, -3.0747, 0.9287, -9.5911, -2.0249, 0.9287, -8.7517, -2.0249, 0.9287, -9.341, -2.2555, 0.9287, -9.5773, -3.0747, 0.9287, -9.5911, -2.2555, 0.9287, -9.5773, -2.2555, 0.9287, -11.633, -3.0747, 0.9287, -9.5911, -2.2555, 0.9287, -11.633, -3.0747, 0.9287, -11.6414, -2.2555, 0.9287, -9.5773, -1.8532, 0.9287, -11.6301, -2.2555, 0.9287, -11.633, -2.0249, 0.9287, -9.341, -1.8532, 0.9287, -9.5735, -2.2555, 0.9287, -9.5773, -2.2555, 0.9287, -9.5773, -1.8532, 0.9287, -9.5735, -1.8532, 0.9287, -11.6301, -2.0249, 0.9287, -9.341, -1.8532, 0.9287, -9.3399, -1.8532, 0.9287, -9.5735, -1.8532, 0.9287, -9.5735, -0.6178, 0.9287, -11.6296, -1.8532, 0.9287, -11.6301, -1.8532, 0.9287, -9.3399, -0.6178, 0.9287, -9.5728, -1.8532, 0.9287, -9.5735, -1.8532, 0.9287, -9.5735, -0.6178, 0.9287, -9.5728, -0.6178, 0.9287, -11.6296, -1.8532, 0.9287, -9.3399, -0.6178, 0.9287, -9.3392, -0.6178, 0.9287, -9.5728, -0.6178, 0.9287, -9.5728, 0.2002, 0.9287, -11.6296, -0.6178, 0.9287, -11.6296, -0.6178, 0.9287, -9.3392, 0.2002, 0.9287, -9.5728, -0.6178, 0.9287, -9.5728, -0.6178, 0.9287, -9.5728, 0.2002, 0.9287, -9.5728, 0.2002, 0.9287, -11.6296, -0.6178, 0.9287, -9.3392, 0.2002, 0.9287, -9.3392, 0.2002, 0.9287, -9.5728, 0.2002, 0.9287, -9.5728, 1.0196, 0.9287, -11.6296, 0.2002, 0.9287, -11.6296, 0.2002, 0.9287, -9.3392, 1.0196, 0.9287, -9.5728, 0.2002, 0.9287, -9.5728, 0.2002, 0.9287, -9.5728, 1.0196, 0.9287, -9.5728, 1.0196, 0.9287, -11.6296, 0.2002, 0.9287, -9.3392, 1.0196, 0.9287, -9.3392, 1.0196, 0.9287, -9.5728, 1.0196, 0.9287, -9.5728, 2.2912, 0.9287, -11.6301, 1.0196, 0.9287, -11.6296, 1.0196, 0.9287, -9.3392, 2.2912, 0.9287, -9.5735, 1.0196, 0.9287, -9.5728, 1.0196, 0.9287, -9.5728, 2.2912, 0.9287, -9.5735, 2.2912, 0.9287, -11.6301, 1.0196, 0.9287, -9.3392, 2.2912, 0.9287, -9.3399, 2.2912, 0.9287, -9.5735, 2.2912, 0.9287, -9.5735, 2.6573, 0.9287, -11.633, 2.2912, 0.9287, -11.6301, 2.2912, 0.9287, -9.3399, 2.6573, 0.9287, -9.5773, 2.2912, 0.9287, -9.5735, 2.2912, 0.9287, -9.5735, 2.6573, 0.9287, -9.5773, 2.6573, 0.9287, -11.633, 2.6573, 0.9287, -9.5773, 3.4762, 0.9287, -11.6408, 2.6573, 0.9287, -11.633, 2.2912, 0.9287, -9.3399, 2.4267, 0.9287, -9.341, 2.6573, 0.9287, -9.5773, 2.6573, 0.9287, -9.5773, 3.4762, 0.9287, -9.5903, 3.4762, 0.9287, -11.6408, 2.4267, 0.9287, -9.341, 2.6573, 0.9287, -8.7547, 2.6573, 0.9287, -9.5773, 2.6573, 0.9287, -8.7547, 3.4762, 0.9287, -9.5903, 2.6573, 0.9287, -9.5773, 2.4267, 0.9287, -9.341, 2.4267, 0.9287, -8.7517, 2.6573, 0.9287, -8.7547, 2.6573, 0.9287, -8.7547, 3.4762, 0.9287, -8.7712, 3.4762, 0.9287, -9.5903, 2.4267, 0.9287, -8.7517, 2.6573, 0.9287, -7.9484, 2.6573, 0.9287, -8.7547, 2.6573, 0.9287, -7.9484, 3.4762, 0.9287, -8.7712, 2.6573, 0.9287, -8.7547, 2.4267, 0.9287, -8.7517, 2.4267, 0.9287, -7.946, 2.6573, 0.9287, -7.9484, 2.6573, 0.9287, -7.9484, 3.4762, 0.9287, -7.964, 3.4762, 0.9287, -8.7712, 3.4762, 0.9287, -7.964, 4.8834, 0.9287, -8.7707, 3.4762, 0.9287, -8.7712, 3.4762, 0.9287, -7.964, 4.8834, 0.9287, -7.2112, 4.8834, 0.9287, -8.7707, 2.4267, 0.9287, -7.946, 2.6573, 0.9287, -7.2112, 2.6573, 0.9287, -7.9484, 2.6573, 0.9287, -7.2112, 3.4762, 0.9287, -7.964, 2.6573, 0.9287, -7.9484, 2.4267, 0.9287, -7.946, 2.4267, 0.9287, -7.2112, 2.6573, 0.9287, -7.2112, 4.8834, 0.9287, -7.2112, 3.4762, 0.9287, -7.964, 3.4762, 0.9287, -7.2112, 2.6573, 0.9287, -7.2112, 3.4762, 0.9287, -7.2112, 3.4762, 0.9287, -7.964, 2.4267, 0.9287, -7.2112, 2.6573, 0.9287, -6.3539, 2.6573, 0.9287, -7.2112, 2.6573, 0.9287, -6.3539, 3.4762, 0.9287, -7.2112, 2.6573, 0.9287, -7.2112, 2.4267, 0.9287, -7.2112, 2.4267, 0.9287, -6.353, 2.6573, 0.9287, -6.3539, 2.4267, 0.9287, -6.353, 2.6573, 0.9287, -5.5468, 2.6573, 0.9287, -6.3539, 2.6573, 0.9287, -6.3539, 3.4762, 0.9287, -6.3597, 3.4762, 0.9287, -7.2112, 3.4762, 0.9287, -6.3597, 4.8834, 0.9287, -7.2112, 3.4762, 0.9287, -7.2112, 2.6573, 0.9287, -5.5468, 3.4762, 0.9287, -6.3597, 2.6573, 0.9287, -6.3539, 3.4762, 0.9287, -6.3597, 4.8834, 0.9287, -5.5472, 4.8834, 0.9287, -7.2112, 2.6573, 0.9287, -5.5468, 3.4762, 0.9287, -5.5472, 3.4762, 0.9287, -6.3597, 4.8834, 0.9287, -5.5472, 3.4762, 0.9287, -6.3597, 3.4762, 0.9287, -5.5472, -0.6178, 0.9287, -9.132, 0.2002, 0.5291, -9.132, -0.6178, 0.5291, -9.132, -1.6669, 0.9287, -9.132, -0.6178, 0.9287, -9.132, -0.6178, 0.5291, -9.132, -1.6669, 0.9287, -9.132, -0.6178, 0.5291, -9.132, -1.8476, 0.5291, -9.132, -0.6178, 0.9287, -9.132, 0.2002, 0.9287, -9.132, 0.2002, 0.5291, -9.132, 0.2002, 0.9287, -9.132, 1.0196, 0.5291, -9.132, 0.2002, 0.5291, -9.132, 0.2002, 0.9287, -9.132, 1.0196, 0.9287, -9.132, 1.0196, 0.5291, -9.132, 1.0196, 0.9287, -9.132, 2.3047, 0.5291, -9.132, 1.0196, 0.5291, -9.132, 1.0196, 0.9287, -9.132, 2.069, 0.9287, -9.132, 2.3047, 0.5291, -9.132, -1.4363, 0.9287, -7.9451, -1.4363, 2.9326, -8.7911, -1.4363, 0.9287, -8.7506, -1.4363, 2.9326, -8.7911, -1.4363, 0.9287, -7.9451, -1.4363, 0.9287, -7.2112, -1.4363, 2.9326, -8.7911, -1.4363, 0.9287, -7.2112, -1.4363, 2.9326, -7.2112, -1.4363, 0.9287, -6.3526, -1.4363, 2.9326, -7.2112, -1.4363, 0.9287, -7.2112, -1.4363, 2.9326, -7.2112, -1.4363, 0.9287, -6.3526, -1.4363, 0.9287, -5.5466, -1.4363, 2.9326, -7.2112, -1.4363, 0.9287, -5.5466, -1.4363, 2.9326, -5.5472, -0.6178, 0.9287, -5.5466, -1.4363, 2.9326, -5.5472, -1.4363, 0.9287, -5.5466, -1.4363, 2.9326, -5.5472, -0.6178, 0.9287, -5.5466, 0.2002, 0.9287, -5.5466, -1.4363, 2.9326, -5.5472, 0.2002, 0.9287, -5.5466, 0.2002, 2.9326, -5.5472, 1.0196, 0.9287, -5.5466, 0.2002, 2.9326, -5.5472, 0.2002, 0.9287, -5.5466, 0.2002, 2.9326, -5.5472, 1.0196, 0.9287, -5.5466, 1.8384, 0.9287, -5.5466, 0.2002, 2.9326, -5.5472, 1.8384, 0.9287, -5.5466, 1.8384, 2.9326, -5.5472, 6.0277, 2.0002, -9.1346, 3.4762, 0.9287, -8.7712, 4.8834, 0.9287, -8.7707, 6.0277, 2.0002, -9.1346, 4.1996, 2.0002, -9.1346, 3.4762, 0.9287, -8.7712, 6.0277, 2.2177, -9.1346, 4.1996, 2.0002, -9.1346, 6.0277, 2.0002, -9.1346, 6.0277, 2.2177, -9.1346, 4.1996, 2.2177, -9.1346, 4.1996, 2.0002, -9.1346, -3.8476, 2.0002, -1.7434, -3.0747, 0.9287, -5.5472, -3.8476, 2.0002, -5.1411, -3.0747, 0.9287, -5.5472, -3.8476, 2.0002, -1.7434, -3.0747, 0.9287, -4.7283, -3.0747, 0.9287, -4.7283, -3.8476, 2.0002, -1.7434, -3.0747, 0.9287, -2.376, -3.8476, 2.2177, -5.1411, -3.8476, 2.0002, -1.7434, -3.8476, 2.0002, -5.1411, -3.8476, 2.2177, -5.1411, -3.8476, 2.2177, -1.7434, -3.8476, 2.0002, -1.7434, -3.8476, 2.7453, -1.7434, -3.8476, 2.9347, -5.1411, -3.8476, 2.9347, -1.7139, -3.8476, 2.7453, -1.7434, -3.8476, 2.7453, -5.1411, -3.8476, 2.9347, -5.1411, 6.0277, 2.7453, -5.1411, 4.1996, 2.9347, -5.1411, 6.0277, 2.9347, -5.1411, 6.0277, 2.7453, -5.1411, 4.1996, 2.7453, -5.1411, 4.1996, 2.9347, -5.1411, 4.1996, 2.7453, -12.319, 4.1996, 2.9347, -9.1346, 4.1627, 2.9347, -10.9504, 4.1996, 2.7453, -12.319, 4.1996, 2.7453, -9.1346, 4.1996, 2.9347, -9.1346, -5.8966, 2.7453, -9.1346, -3.8476, 2.9347, -9.1346, -5.9311, 2.9347, -9.1644, -5.8966, 2.7453, -9.1346, -3.8476, 2.7453, -9.1346, -3.8476, 2.9347, -9.1346, -3.8476, 2.7453, -5.1411, -5.8966, 2.9347, -5.1505, -3.8476, 2.9347, -5.1411, -3.8476, 2.7453, -5.1411, -5.8966, 2.7453, -5.1411, -5.8966, 2.9347, -5.1505, -5.8966, 2.7453, -7.2112, -5.9311, 2.9347, -9.1644, -5.8966, 2.9347, -7.2112, -5.8966, 2.7453, -7.2112, -5.8966, 2.7453, -9.1346, -5.9311, 2.9347, -9.1644, -5.8966, 2.7453, -5.1411, -5.8966, 2.7453, -7.2112, -5.8966, 2.9347, -7.2112, -5.8966, 2.7453, -5.1411, -5.8966, 2.9347, -7.2112, -5.8966, 2.9347, -5.1505, 4.1996, 2.7453, -9.1346, 6.0371, 2.9347, -9.1346, 4.1996, 2.9347, -9.1346, 4.1996, 2.7453, -9.1346, 6.0277, 2.7453, -9.1346, 6.0371, 2.9347, -9.1346, 6.0277, 2.7453, -9.1346, 6.0277, 2.9347, -7.2112, 6.0371, 2.9347, -9.1346, 6.0277, 2.7453, -9.1346, 6.0277, 2.7453, -7.2112, 6.0277, 2.9347, -7.2112, 6.0277, 2.7453, -7.2112, 6.0277, 2.9347, -5.1411, 6.0277, 2.9347, -7.2112, 6.0277, 2.7453, -7.2112, 6.0277, 2.7453, -5.1411, 6.0277, 2.9347, -5.1411, -3.8476, 2.7453, -9.1346, -3.8633, 2.9347, -11.4997, -3.8476, 2.9347, -9.1346, -3.8476, 2.7453, -9.1346, -3.8476, 2.7453, -12.319, -3.8633, 2.9347, -11.4997, 2.315, 2.7453, -12.3186, 4.1627, 2.9347, -10.9504, 2.315, 2.9347, -12.3186, 2.315, 2.7453, -12.3186, 4.1996, 2.7453, -12.319, 4.1627, 2.9347, -10.9504, 0.2004, 2.7453, -12.3186, 2.315, 2.7453, -12.3186, 2.315, 2.9347, -12.3186, 0.2004, 2.7453, -12.3186, 2.315, 2.9347, -12.3186, 0.2004, 2.9347, -12.3185, -1.8438, 2.7453, -12.3186, 0.2004, 2.7453, -12.3186, 0.2004, 2.9347, -12.3185, -1.8438, 2.7453, -12.3186, 0.2004, 2.9347, -12.3185, -1.8438, 2.9347, -12.3186, -3.8476, 2.7453, -12.319, -1.8438, 2.7453, -12.3186, -1.8438, 2.9347, -12.3186, -3.8476, 2.7453, -12.319, -1.8438, 2.9347, -12.3186, -3.8633, 2.9347, -11.4997, 4.1996, 2.7453, -5.1411, 4.1996, 2.9347, -1.7139, 4.1996, 2.9347, -5.1411, 4.1996, 2.7453, -5.1411, 4.1996, 2.7453, -1.7434, 4.1996, 2.9347, -1.7139, -1.8255, 2.7453, -1.7434, -3.8476, 2.9347, -1.7139, -1.8255, 2.9347, -1.7434, -1.8255, 2.7453, -1.7434, -3.8476, 2.7453, -1.7434, -3.8476, 2.9347, -1.7139, 0.2004, 2.7453, -1.7434, -1.8255, 2.7453, -1.7434, -1.8255, 2.9347, -1.7434, 0.2004, 2.7453, -1.7434, -1.8255, 2.9347, -1.7434, 0.2004, 2.9347, -1.7434, 2.2438, 2.7453, -1.7434, 0.2004, 2.7453, -1.7434, 0.2004, 2.9347, -1.7434, 2.2438, 2.7453, -1.7434, 0.2004, 2.9347, -1.7434, 2.2438, 2.9347, -1.7434, 4.1996, 2.7453, -1.7434, 2.2438, 2.7453, -1.7434, 2.2438, 2.9347, -1.7434, 4.1996, 2.7453, -1.7434, 2.2438, 2.9347, -1.7434, 4.1996, 2.9347, -1.7139, 6.3454, 2.7596, -9.2582, 4.4228, 2.2034, -9.2574, 6.3454, 2.2034, -9.2582, 6.3454, 2.7596, -9.2582, 4.4228, 2.7596, -9.2574, 4.4228, 2.2034, -9.2574, 4.4228, 2.7596, -9.2574, 4.4228, 2.2034, -12.6698, 4.4228, 2.2034, -9.2574, 4.4228, 2.7596, -9.2574, 4.4228, 2.7596, -12.6698, 4.4228, 2.2034, -12.6698, -4.0649, 2.7596, -12.6698, -4.0649, 2.2034, -9.2574, -4.0649, 2.2034, -12.6698, -4.0649, 2.7596, -12.6698, -4.0649, 2.7596, -9.2574, -4.0649, 2.2034, -9.2574, -6.2241, 2.7596, -5.0397, -4.0649, 2.2034, -5.0397, -6.2241, 2.2034, -5.0397, -6.2241, 2.7596, -5.0397, -4.0649, 2.7596, -5.0397, -4.0649, 2.2034, -5.0397, -4.0649, 2.7596, -5.0397, -4.0649, 2.2034, -1.361, -4.0649, 2.2034, -5.0397, -4.0649, 2.7596, -5.0397, -4.0649, 2.7596, -1.361, -4.0649, 2.2034, -1.361, -1.9326, 2.7596, -1.361, 0.2004, 2.2034, -1.361, -1.9326, 2.2034, -1.361, -4.0649, 2.7596, -1.361, -1.9326, 2.7596, -1.361, -1.9326, 2.2034, -1.361, -4.0649, 2.7596, -1.361, -1.9326, 2.2034, -1.361, -4.0649, 2.2034, -1.361, -1.9326, 2.7596, -1.361, 0.2004, 2.7596, -1.361, 0.2004, 2.2034, -1.361, 0.2004, 2.7596, -1.361, 2.3568, 2.2034, -1.361, 0.2004, 2.2034, -1.361, 0.2004, 2.7596, -1.361, 2.3568, 2.7596, -1.361, 2.3568, 2.2034, -1.361, 2.3568, 2.7596, -1.361, 4.4228, 2.2034, -1.361, 2.3568, 2.2034, -1.361, 2.3568, 2.7596, -1.361, 4.4228, 2.7596, -1.361, 4.4228, 2.2034, -1.361, 4.4228, 2.7596, -1.361, 4.4228, 2.2034, -5.0397, 4.4228, 2.2034, -1.361, 4.4228, 2.7596, -1.361, 4.4228, 2.7596, -5.0397, 4.4228, 2.2034, -5.0397, 6.3454, 2.7596, -5.0397, 6.3454, 2.2034, -7.2112, 6.3454, 2.2034, -5.0397, 6.3454, 2.7596, -5.0397, 6.3454, 2.7596, -7.2112, 6.3454, 2.2034, -7.2112, 6.3454, 2.7596, -7.2112, 6.3454, 2.2034, -9.2582, 6.3454, 2.2034, -7.2112, 6.3454, 2.7596, -7.2112, 6.3454, 2.7596, -9.2582, 6.3454, 2.2034, -9.2582, -6.2241, 2.7596, -9.2583, -6.2241, 2.2034, -7.2112, -6.2241, 2.2034, -9.2583, -6.2241, 2.7596, -9.2583, -6.2241, 2.7596, -7.2112, -6.2241, 2.2034, -7.2112, -6.2241, 2.7596, -7.2112, -6.2241, 2.2034, -5.0397, -6.2241, 2.2034, -7.2112, -6.2241, 2.7596, -7.2112, -6.2241, 2.7596, -5.0397, -6.2241, 2.2034, -5.0397, 4.4228, 2.7596, -5.0397, 6.3454, 2.2034, -5.0397, 4.4228, 2.2034, -5.0397, 4.4228, 2.7596, -5.0397, 6.3454, 2.7596, -5.0397, 6.3454, 2.2034, -5.0397, -4.0649, 2.7596, -9.2574, -6.2241, 2.2034, -9.2583, -4.0649, 2.2034, -9.2574, -4.0649, 2.7596, -9.2574, -6.2241, 2.7596, -9.2583, -6.2241, 2.2034, -9.2583, 2.3217, 2.7596, -12.6858, 0.2004, 2.2034, -12.682, 2.3217, 2.2034, -12.6824, 4.4228, 2.7596, -12.6698, 2.3217, 2.7596, -12.6858, 2.3217, 2.2034, -12.6824, 4.4228, 2.7596, -12.6698, 2.3217, 2.2034, -12.6824, 4.4228, 2.2034, -12.6698, 2.3217, 2.7596, -12.6858, 0.2004, 2.7596, -12.6881, 0.2004, 2.2034, -12.682, 0.2004, 2.7596, -12.6881, -1.8412, 2.2034, -12.6823, 0.2004, 2.2034, -12.682, 0.2004, 2.7596, -12.6881, -1.8412, 2.7596, -12.6867, -1.8412, 2.2034, -12.6823, -1.8412, 2.7596, -12.6867, -4.0649, 2.2034, -12.6698, -1.8412, 2.2034, -12.6823, -1.8412, 2.7596, -12.6867, -4.0649, 2.7596, -12.6698, -4.0649, 2.2034, -12.6698, 1.8384, 0.9287, -6.3526, 1.8384, 2.9326, -5.5472, 1.8384, 0.9287, -5.5466, 1.8384, 2.9326, -5.5472, 1.8384, 0.9287, -6.3526, 1.8384, 0.9287, -7.2112, 1.8384, 2.9326, -5.5472, 1.8384, 0.9287, -7.2112, 1.8384, 2.9326, -7.2112, 1.8384, 0.9287, -7.9451, 1.8384, 2.9326, -7.2112, 1.8384, 0.9287, -7.2112, 1.8384, 2.9326, -7.2112, 1.8384, 0.9287, -7.9451, 1.8384, 0.9287, -8.7506, 1.8384, 2.9326, -7.2112, 1.8384, 0.9287, -8.7506, 1.8384, 2.9326, -8.7911, 1.0196, 0.9287, -8.7498, 1.8384, 2.9326, -8.7911, 1.8384, 0.9287, -8.7506, 1.8384, 2.9326, -8.7911, 1.0196, 0.9287, -8.7498, 0.2002, 0.9287, -8.7498, 1.8384, 2.9326, -8.7911, 0.2002, 0.9287, -8.7498, 0.2002, 2.9326, -8.7907, -0.6178, 0.9287, -8.7498, 0.2002, 2.9326, -8.7907, 0.2002, 0.9287, -8.7498, 0.2002, 2.9326, -8.7907, -0.6178, 0.9287, -8.7498, -1.4363, 0.9287, -8.7506, 0.2002, 2.9326, -8.7907, -1.4363, 0.9287, -8.7506, -1.4363, 2.9326, -8.7911, -1.6669, 0.9287, -5.143, -1.6669, 0.5291, -6.3524, -1.6669, 0.5291, -5.143, -1.6669, 0.9287, -5.143, -1.6669, 0.9287, -6.3524, -1.6669, 0.5291, -6.3524, -1.6669, 0.9287, -6.3524, -1.6669, 0.5291, -7.2112, -1.6669, 0.5291, -6.3524, -1.6669, 0.9287, -6.3524, -1.6669, 0.9287, -7.2112, -1.6669, 0.5291, -7.2112, -1.6669, 0.9287, -7.2112, -1.6669, 0.5291, -7.9445, -1.6669, 0.5291, -7.2112, -1.6669, 0.9287, -7.2112, -1.6669, 0.9287, -7.9445, -1.6669, 0.5291, -7.9445, -1.6669, 0.9287, -7.9445, -1.8476, 0.5291, -9.132, -1.6669, 0.5291, -7.9445, -1.6669, 0.9287, -7.9445, -1.6669, 0.9287, -9.132, -1.8476, 0.5291, -9.132, 2.2912, 0.9287, -9.3399, 1.0196, 0.5291, -9.3392, 2.2912, 0.5291, -9.3399, 2.4267, 0.9287, -9.341, 2.2912, 0.9287, -9.3399, 2.2912, 0.5291, -9.3399, 2.4267, 0.9287, -9.341, 2.2912, 0.5291, -9.3399, 2.4267, 0.5291, -9.341, 2.2912, 0.9287, -9.3399, 1.0196, 0.9287, -9.3392, 1.0196, 0.5291, -9.3392, 1.0196, 0.9287, -9.3392, 0.2002, 0.5291, -9.3392, 1.0196, 0.5291, -9.3392, 1.0196, 0.9287, -9.3392, 0.2002, 0.9287, -9.3392, 0.2002, 0.5291, -9.3392, 0.2002, 0.9287, -9.3392, -0.6178, 0.5291, -9.3392, 0.2002, 0.5291, -9.3392, 0.2002, 0.9287, -9.3392, -0.6178, 0.9287, -9.3392, -0.6178, 0.5291, -9.3392, -0.6178, 0.9287, -9.3392, -1.8532, 0.5291, -9.3399, -0.6178, 0.5291, -9.3392, -0.6178, 0.9287, -9.3392, -1.8532, 0.9287, -9.3399, -1.8532, 0.5291, -9.3399, -1.8532, 0.9287, -9.3399, -2.0249, 0.5291, -9.341, -1.8532, 0.5291, -9.3399, -1.8532, 0.9287, -9.3399, -2.0249, 0.9287, -9.341, -2.0249, 0.5291, -9.341, 1.0196, 0.9287, -5.143, 0.2002, 0.5291, -5.143, 1.0196, 0.5291, -5.143, 2.069, 0.9287, -5.143, 1.0196, 0.9287, -5.143, 1.0196, 0.5291, -5.143, 2.069, 0.9287, -5.143, 1.0196, 0.5291, -5.143, 2.069, 0.5291, -5.143, 1.0196, 0.9287, -5.143, 0.2002, 0.9287, -5.143, 0.2002, 0.5291, -5.143, 0.2002, 0.9287, -5.143, -0.6178, 0.5291, -5.143, 0.2002, 0.5291, -5.143, 0.2002, 0.9287, -5.143, -0.6178, 0.9287, -5.143, -0.6178, 0.5291, -5.143, -0.6178, 0.9287, -5.143, -1.6669, 0.5291, -5.143, -0.6178, 0.5291, -5.143, -0.6178, 0.9287, -5.143, -1.6669, 0.9287, -5.143, -1.6669, 0.5291, -5.143, -1.4363, 2.9326, -7.2112, 0.2002, 2.9326, -8.7907, -1.4363, 2.9326, -8.7911, -1.4363, 2.9326, -7.2112, 0.2002, 2.9326, -7.2112, 0.2002, 2.9326, -8.7907, 0.2002, 2.9326, -7.2112, 1.8384, 2.9326, -8.7911, 0.2002, 2.9326, -8.7907, -1.4363, 2.9326, -5.5472, 0.2002, 2.9326, -7.2112, -1.4363, 2.9326, -7.2112, 0.2002, 2.9326, -7.2112, 1.8384, 2.9326, -7.2112, 1.8384, 2.9326, -8.7911, -1.4363, 2.9326, -5.5472, 0.2002, 2.9326, -5.5472, 0.2002, 2.9326, -7.2112, 0.2002, 2.9326, -5.5472, 1.8384, 2.9326, -7.2112, 0.2002, 2.9326, -7.2112, 0.2002, 2.9326, -5.5472, 1.8384, 2.9326, -5.5472, 1.8384, 2.9326, -7.2112, 1.8384, 0.9287, -4.9589, 2.4267, 0.5291, -4.9589, 1.8384, 0.5291, -4.9589, 1.8384, 0.9287, -4.9589, 2.4267, 0.9287, -4.9589, 2.4267, 0.5291, -4.9589, 1.0196, 0.9287, -4.9589, 1.8384, 0.9287, -4.9589, 1.8384, 0.5291, -4.9589, 1.0196, 0.9287, -4.9589, 1.8384, 0.5291, -4.9589, 1.0196, 0.5291, -4.9589, 0.2002, 0.9287, -4.9589, 1.0196, 0.9287, -4.9589, 1.0196, 0.5291, -4.9589, 0.2002, 0.9287, -4.9589, 1.0196, 0.5291, -4.9589, 0.2002, 0.5291, -4.9589, -0.6178, 0.9287, -4.9589, 0.2002, 0.9287, -4.9589, 0.2002, 0.5291, -4.9589, -0.6178, 0.9287, -4.9589, 0.2002, 0.5291, -4.9589, -0.6178, 0.5291, -4.9589, -1.4363, 0.9287, -4.9589, -0.6178, 0.9287, -4.9589, -0.6178, 0.5291, -4.9589, -1.4363, 0.9287, -4.9589, -0.6178, 0.5291, -4.9589, -1.4363, 0.5291, -4.9589, -2.0249, 0.9287, -4.9589, -1.4363, 0.9287, -4.9589, -1.4363, 0.5291, -4.9589, -2.0249, 0.9287, -4.9589, -1.4363, 0.5291, -4.9589, -2.0249, 0.5291, -4.9589, 2.069, 0.9287, -7.9445, 2.069, 0.5291, -7.2112, 2.069, 0.5291, -7.9445, 2.069, 0.9287, -9.132, 2.069, 0.9287, -7.9445, 2.069, 0.5291, -7.9445, 2.069, 0.9287, -9.132, 2.069, 0.5291, -7.9445, 2.3047, 0.5291, -9.132, 2.069, 0.9287, -7.9445, 2.069, 0.9287, -7.2112, 2.069, 0.5291, -7.2112, 2.069, 0.9287, -7.2112, 2.069, 0.5291, -6.3524, 2.069, 0.5291, -7.2112, 2.069, 0.9287, -7.2112, 2.069, 0.9287, -6.3524, 2.069, 0.5291, -6.3524, 2.069, 0.9287, -6.3524, 2.069, 0.5291, -5.143, 2.069, 0.5291, -6.3524, 2.069, 0.9287, -6.3524, 2.069, 0.9287, -5.143, 2.069, 0.5291, -5.143, 2.4267, 0.9287, -4.9589, 2.4267, 0.5291, -5.5467, 2.4267, 0.5291, -4.9589, 2.4267, 0.9287, -4.9589, 2.4267, 0.9287, -5.5467, 2.4267, 0.5291, -5.5467, 2.4267, 0.9287, -5.5467, 2.4267, 0.5291, -6.353, 2.4267, 0.5291, -5.5467, 2.4267, 0.9287, -5.5467, 2.4267, 0.9287, -6.353, 2.4267, 0.5291, -6.353, 2.4267, 0.9287, -6.353, 2.4267, 0.5291, -7.2112, 2.4267, 0.5291, -6.353, 2.4267, 0.9287, -6.353, 2.4267, 0.9287, -7.2112, 2.4267, 0.5291, -7.2112, 2.4267, 0.9287, -7.2112, 2.4267, 0.5291, -7.9459, 2.4267, 0.5291, -7.2112, 2.4267, 0.9287, -7.2112, 2.4267, 0.9287, -7.946, 2.4267, 0.5291, -7.9459, 2.4267, 0.9287, -7.946, 2.4267, 0.5291, -8.7517, 2.4267, 0.5291, -7.9459, 2.4267, 0.9287, -7.946, 2.4267, 0.9287, -8.7517, 2.4267, 0.5291, -8.7517, 2.4267, 0.9287, -8.7517, 2.4267, 0.5291, -9.341, 2.4267, 0.5291, -8.7517, 2.4267, 0.9287, -8.7517, 2.4267, 0.9287, -9.341, 2.4267, 0.5291, -9.341, -2.0249, 0.9287, -6.353, -2.0249, 0.5291, -5.5467, -2.0249, 0.5291, -6.353, -2.0249, 0.9287, -6.353, -2.0249, 0.9287, -5.5467, -2.0249, 0.5291, -5.5467, -2.0249, 0.9287, -5.5467, -2.0249, 0.5291, -4.9589, -2.0249, 0.5291, -5.5467, -2.0249, 0.9287, -5.5467, -2.0249, 0.9287, -4.9589, -2.0249, 0.5291, -4.9589, -2.0249, 0.9287, -7.2112, -2.0249, 0.9287, -6.353, -2.0249, 0.5291, -6.353, -2.0249, 0.9287, -7.2112, -2.0249, 0.5291, -6.353, -2.0249, 0.5291, -7.2112, -2.0249, 0.9287, -7.946, -2.0249, 0.9287, -7.2112, -2.0249, 0.5291, -7.2112, -2.0249, 0.9287, -7.946, -2.0249, 0.5291, -7.2112, -2.0249, 0.5291, -7.946, -2.0249, 0.9287, -8.7517, -2.0249, 0.9287, -7.946, -2.0249, 0.5291, -7.946, -2.0249, 0.9287, -8.7517, -2.0249, 0.5291, -7.946, -2.0249, 0.5291, -8.7517, -2.0249, 0.9287, -9.341, -2.0249, 0.9287, -8.7517, -2.0249, 0.5291, -8.7517, -2.0249, 0.9287, -9.341, -2.0249, 0.5291, -8.7517, -2.0249, 0.5291, -9.341, 0.2002, 0.9287, -5.143, 1.0196, 0.9287, -5.5466, 0.2002, 0.9287, -5.5466, 0.2002, 0.9287, -5.143, 1.0196, 0.9287, -5.143, 1.0196, 0.9287, -5.5466, -0.6178, 0.9287, -5.143, 0.2002, 0.9287, -5.143, 0.2002, 0.9287, -5.5466, 1.0196, 0.9287, -5.143, 1.8384, 0.9287, -5.5466, 1.0196, 0.9287, -5.5466, -0.6178, 0.9287, -5.143, 0.2002, 0.9287, -5.5466, -0.6178, 0.9287, -5.5466, 1.0196, 0.9287, -5.143, 2.069, 0.9287, -5.143, 1.8384, 0.9287, -5.5466, -1.6669, 0.9287, -5.143, -0.6178, 0.9287, -5.143, -0.6178, 0.9287, -5.5466, 2.069, 0.9287, -5.143, 1.8384, 0.9287, -6.3526, 1.8384, 0.9287, -5.5466, -1.6669, 0.9287, -5.143, -0.6178, 0.9287, -5.5466, -1.4363, 0.9287, -5.5466, 2.069, 0.9287, -5.143, 2.069, 0.9287, -6.3524, 1.8384, 0.9287, -6.3526, -1.6669, 0.9287, -6.3524, -1.6669, 0.9287, -5.143, -1.4363, 0.9287, -5.5466, 2.069, 0.9287, -6.3524, 1.8384, 0.9287, -7.2112, 1.8384, 0.9287, -6.3526, -1.6669, 0.9287, -6.3524, -1.4363, 0.9287, -5.5466, -1.4363, 0.9287, -6.3526, 2.069, 0.9287, -6.3524, 2.069, 0.9287, -7.2112, 1.8384, 0.9287, -7.2112, -1.6669, 0.9287, -7.2112, -1.6669, 0.9287, -6.3524, -1.4363, 0.9287, -6.3526, 2.069, 0.9287, -7.2112, 1.8384, 0.9287, -7.9451, 1.8384, 0.9287, -7.2112, -1.6669, 0.9287, -7.2112, -1.4363, 0.9287, -6.3526, -1.4363, 0.9287, -7.2112, 2.069, 0.9287, -7.2112, 2.069, 0.9287, -7.9445, 1.8384, 0.9287, -7.9451, -1.6669, 0.9287, -7.9445, -1.6669, 0.9287, -7.2112, -1.4363, 0.9287, -7.2112, 2.069, 0.9287, -7.9445, 1.8384, 0.9287, -8.7506, 1.8384, 0.9287, -7.9451, -1.6669, 0.9287, -7.9445, -1.4363, 0.9287, -7.2112, -1.4363, 0.9287, -7.9451, 2.069, 0.9287, -7.9445, 2.069, 0.9287, -9.132, 1.8384, 0.9287, -8.7506, -1.6669, 0.9287, -9.132, -1.6669, 0.9287, -7.9445, -1.4363, 0.9287, -7.9451, 2.069, 0.9287, -9.132, 1.0196, 0.9287, -8.7498, 1.8384, 0.9287, -8.7506, -1.6669, 0.9287, -9.132, -1.4363, 0.9287, -7.9451, -1.4363, 0.9287, -8.7506, 2.069, 0.9287, -9.132, 1.0196, 0.9287, -9.132, 1.0196, 0.9287, -8.7498, -0.6178, 0.9287, -9.132, -1.6669, 0.9287, -9.132, -1.4363, 0.9287, -8.7506, 1.0196, 0.9287, -9.132, 0.2002, 0.9287, -8.7498, 1.0196, 0.9287, -8.7498, -0.6178, 0.9287, -9.132, -1.4363, 0.9287, -8.7506, -0.6178, 0.9287, -8.7498, 1.0196, 0.9287, -9.132, 0.2002, 0.9287, -9.132, 0.2002, 0.9287, -8.7498, 0.2002, 0.9287, -9.132, -0.6178, 0.9287, -9.132, -0.6178, 0.9287, -8.7498, 0.2002, 0.9287, -9.132, -0.6178, 0.9287, -8.7498, 0.2002, 0.9287, -8.7498, -0.6178, 0.5291, -4.9589, 0.2002, 0.5291, -5.143, -0.6178, 0.5291, -5.143, -0.6178, 0.5291, -4.9589, 0.2002, 0.5291, -4.9589, 0.2002, 0.5291, -5.143, -1.4363, 0.5291, -4.9589, -0.6178, 0.5291, -4.9589, -0.6178, 0.5291, -5.143, 0.2002, 0.5291, -4.9589, 1.0196, 0.5291, -5.143, 0.2002, 0.5291, -5.143, -1.4363, 0.5291, -4.9589, -0.6178, 0.5291, -5.143, -1.6669, 0.5291, -5.143, 0.2002, 0.5291, -4.9589, 1.0196, 0.5291, -4.9589, 1.0196, 0.5291, -5.143, -2.0249, 0.5291, -4.9589, -1.4363, 0.5291, -4.9589, -1.6669, 0.5291, -5.143, -2.0249, 0.5291, -4.9589, -1.6669, 0.5291, -5.143, -2.0249, 0.5291, -5.5467, -2.0249, 0.5291, -5.5467, -1.6669, 0.5291, -5.143, -1.6669, 0.5291, -6.3524, -2.0249, 0.5291, -5.5467, -1.6669, 0.5291, -6.3524, -2.0249, 0.5291, -6.353, -2.0249, 0.5291, -6.353, -1.6669, 0.5291, -6.3524, -1.6669, 0.5291, -7.2112, -2.0249, 0.5291, -6.353, -1.6669, 0.5291, -7.2112, -2.0249, 0.5291, -7.2112, -2.0249, 0.5291, -7.2112, -1.6669, 0.5291, -7.2112, -1.6669, 0.5291, -7.9445, -2.0249, 0.5291, -7.2112, -1.6669, 0.5291, -7.9445, -2.0249, 0.5291, -7.946, -2.0249, 0.5291, -7.946, -1.6669, 0.5291, -7.9445, -1.8476, 0.5291, -9.132, -2.0249, 0.5291, -7.946, -1.8476, 0.5291, -9.132, -2.0249, 0.5291, -8.7517, -2.0249, 0.5291, -8.7517, -1.8476, 0.5291, -9.132, -1.8532, 0.5291, -9.3399, -2.0249, 0.5291, -8.7517, -1.8532, 0.5291, -9.3399, -2.0249, 0.5291, -9.341, -1.8476, 0.5291, -9.132, -0.6178, 0.5291, -9.3392, -1.8532, 0.5291, -9.3399, -1.8476, 0.5291, -9.132, -0.6178, 0.5291, -9.132, -0.6178, 0.5291, -9.3392, -0.6178, 0.5291, -9.132, 0.2002, 0.5291, -9.3392, -0.6178, 0.5291, -9.3392, -0.6178, 0.5291, -9.132, 0.2002, 0.5291, -9.132, 0.2002, 0.5291, -9.3392, 0.2002, 0.5291, -9.132, 1.0196, 0.5291, -9.3392, 0.2002, 0.5291, -9.3392, 0.2002, 0.5291, -9.132, 1.0196, 0.5291, -9.132, 1.0196, 0.5291, -9.3392, 1.0196, 0.5291, -9.132, 2.2912, 0.5291, -9.3399, 1.0196, 0.5291, -9.3392, 1.0196, 0.5291, -9.132, 2.3047, 0.5291, -9.132, 2.2912, 0.5291, -9.3399, 2.3047, 0.5291, -9.132, 2.4267, 0.5291, -9.341, 2.2912, 0.5291, -9.3399, 2.3047, 0.5291, -9.132, 2.4267, 0.5291, -8.7517, 2.4267, 0.5291, -9.341, 2.069, 0.5291, -7.9445, 2.4267, 0.5291, -8.7517, 2.3047, 0.5291, -9.132, 2.069, 0.5291, -7.9445, 2.4267, 0.5291, -7.9459, 2.4267, 0.5291, -8.7517, 2.069, 0.5291, -7.2112, 2.4267, 0.5291, -7.9459, 2.069, 0.5291, -7.9445, 2.069, 0.5291, -7.2112, 2.4267, 0.5291, -7.2112, 2.4267, 0.5291, -7.9459, 2.069, 0.5291, -6.3524, 2.4267, 0.5291, -7.2112, 2.069, 0.5291, -7.2112, 2.069, 0.5291, -6.3524, 2.4267, 0.5291, -6.353, 2.4267, 0.5291, -7.2112, 2.069, 0.5291, -5.143, 2.4267, 0.5291, -6.353, 2.069, 0.5291, -6.3524, 2.069, 0.5291, -5.143, 2.4267, 0.5291, -5.5467, 2.4267, 0.5291, -6.353, 2.069, 0.5291, -5.143, 2.4267, 0.5291, -4.9589, 2.4267, 0.5291, -5.5467, 1.8384, 0.5291, -4.9589, 2.4267, 0.5291, -4.9589, 2.069, 0.5291, -5.143, 1.0196, 0.5291, -4.9589, 1.8384, 0.5291, -4.9589, 2.069, 0.5291, -5.143, 1.0196, 0.5291, -4.9589, 2.069, 0.5291, -5.143, 1.0196, 0.5291, -5.143, 4.163, -4.9698, -17.6829, 2.3155, -2.9343, -17.6829, 4.163, -2.9343, -17.6829, 4.163, -4.9698, -17.6829, 2.3155, -4.9698, -17.6829, 2.3155, -2.9343, -17.6829, 7.147, -4.9698, -17.6829, 4.163, -4.9698, -17.6829, 4.163, -2.9343, -17.6829, 7.147, -4.9698, -17.6829, 4.163, -2.9343, -17.6829, 7.147, -2.9343, -17.6829, 8.8633, -4.9698, -17.6829, 7.147, -4.9698, -17.6829, 7.147, -2.9343, -17.6829, 8.8633, -4.9698, -17.6829, 7.147, -2.9343, -17.6829, 8.8633, -2.9343, -17.6829, 12.4351, -4.9684, -17.6829, 8.8633, -4.9698, -17.6829, 8.8633, -2.9343, -17.6829, 12.4351, -4.9684, -17.6829, 8.8633, -2.9343, -17.6829, 12.4351, -2.9329, -17.6829, -12.2333, -5.0164, -5.6998, -12.2333, -2.9809, -2.279, -12.2333, -2.9809, -5.6998, -12.2333, -5.0164, -8.1704, -12.2333, -5.0164, -5.6998, -12.2333, -2.9809, -5.6998, -12.2333, -5.0164, -8.1704, -12.2333, -2.9809, -5.6998, -12.2333, -2.9809, -8.1704, -12.2333, -5.0164, -5.6998, -12.2333, -5.0164, -2.279, -12.2333, -2.9809, -2.279, -12.2333, -2.9809, -1.7094, -12.2333, -2.9809, -2.279, -12.2333, -5.0164, -2.279, -12.2333, -2.9809, -1.7094, -12.2333, -5.0164, -2.279, -12.2333, -5.0164, -1.7311, -12.2333, -5.0164, -14.6397, -12.2333, -2.9809, -11.881, -12.2333, -2.9809, -14.6397, -12.2333, -5.0164, -14.6397, -12.2333, -5.0164, -11.881, -12.2333, -2.9809, -11.881, -12.226, -4.9697, -17.6829, -12.2333, -5.0164, -14.6397, -12.2333, -2.9809, -14.6397, -12.226, -4.9697, -17.6829, -12.2333, -2.9809, -14.6397, -12.226, -2.9342, -17.6829, -3.8642, -4.9698, -17.6829, -5.9311, -2.9343, -17.6829, -3.8642, -2.9343, -17.6829, -3.8642, -4.9698, -17.6829, -5.9311, -4.9698, -17.6829, -5.9311, -2.9343, -17.6829, -5.9311, -4.9698, -17.6829, -9.8979, -2.9343, -17.6829, -5.9311, -2.9343, -17.6829, -5.9311, -4.9698, -17.6829, -9.8979, -4.9698, -17.6829, -9.8979, -2.9343, -17.6829, -9.8979, -4.9698, -17.6829, -11.062, -2.9342, -17.6829, -9.8979, -2.9343, -17.6829, -9.8979, -4.9698, -17.6829, -11.062, -4.9697, -17.6829, -11.062, -2.9342, -17.6829, -11.062, -4.9697, -17.6829, -12.226, -2.9342, -17.6829, -11.062, -2.9342, -17.6829, -11.062, -4.9697, -17.6829, -12.226, -4.9697, -17.6829, -12.226, -2.9342, -17.6829, 12.4351, -5.0152, -14.6397, 12.4351, -2.9329, -17.6829, 12.4351, -2.9797, -14.6397, 12.4351, -5.0152, -14.6397, 12.4351, -4.9684, -17.6829, 12.4351, -2.9329, -17.6829, 12.4351, -5.0152, -11.471, 12.4351, -5.0152, -14.6397, 12.4351, -2.9797, -14.6397, 12.4351, -5.0152, -11.471, 12.4351, -2.9797, -14.6397, 12.4351, -2.9797, -11.471, 12.4351, -5.0152, -9.7138, 12.4351, -5.0152, -11.471, 12.4351, -2.9797, -11.471, 12.4351, -5.0152, -9.7138, 12.4351, -2.9797, -11.471, 12.4351, -2.9797, -9.6808, -11.062, 2.9816, -17.6829, -8.5197, 2.5449, -17.6829, -9.8979, 2.9815, -17.6829, -11.062, 2.9816, -17.6829, -10.3729, 2.545, -17.6829, -8.5197, 2.5449, -17.6829, -12.226, 2.9816, -17.6829, -10.3729, 2.545, -17.6829, -11.062, 2.9816, -17.6829, -12.226, 2.9816, -17.6829, -12.226, 2.5451, -17.6829, -10.3729, 2.545, -17.6829, -12.2333, 2.9349, -14.6397, -12.226, 2.5451, -17.6829, -12.226, 2.9816, -17.6829, -12.2333, 2.9349, -14.6397, -12.2333, 2.4983, -14.6417, -12.226, 2.5451, -17.6829, 12.4351, -5.0152, 18.3071, 8.839, -5.0143, 15.2741, 12.4351, -5.0152, 15.2724, 12.4351, -5.0152, 18.3071, 8.8636, -5.0166, 18.3071, 8.839, -5.0143, 15.2741, 12.4351, -5.0152, 15.2724, 8.839, -5.0143, 15.2741, 8.1625, -5.0133, 12.3867, 12.4351, -5.0152, 15.2724, 8.1625, -5.0133, 12.3867, 12.4351, -5.0152, 12.4002, 12.4351, -5.0152, 12.4002, 8.1625, -5.0133, 12.3867, 8.1575, -5.0125, 10.3569, 12.4351, -5.0152, 12.4002, 8.1575, -5.0125, 10.3569, 12.4351, -5.0152, 10.3619, 8.839, -5.0143, 15.2741, 7.1659, -5.0126, 12.3824, 8.1625, -5.0133, 12.3867, 8.8636, -5.0166, 18.3071, 7.1594, -5.0141, 15.2744, 8.839, -5.0143, 15.2741, 8.839, -5.0143, 15.2741, 7.1594, -5.0141, 15.2744, 7.1659, -5.0126, 12.3824, 8.8636, -5.0166, 18.3071, 7.1468, -5.0166, 18.3071, 7.1594, -5.0141, 15.2744, 7.1594, -5.0141, 15.2744, 4.1735, -5.0124, 12.3805, 7.1659, -5.0126, 12.3824, 7.1468, -5.0166, 18.3071, 4.1696, -5.0141, 15.2745, 7.1594, -5.0141, 15.2744, 7.1594, -5.0141, 15.2744, 4.1696, -5.0141, 15.2745, 4.1735, -5.0124, 12.3805, 7.1468, -5.0166, 18.3071, 4.1627, -5.0166, 18.3071, 4.1696, -5.0141, 15.2745, 4.1696, -5.0141, 15.2745, 2.321, -5.0123, 12.3796, 4.1735, -5.0124, 12.3805, 4.1627, -5.0166, 18.3071, 2.3187, -5.0141, 15.2746, 4.1696, -5.0141, 15.2745, 4.1696, -5.0141, 15.2745, 2.3187, -5.0141, 15.2746, 2.321, -5.0123, 12.3796, 2.3187, -5.0141, 15.2746, 0.1998, -5.0123, 12.3794, 2.321, -5.0123, 12.3796, 4.1627, -5.0166, 18.3071, 2.315, -5.0166, 18.3071, 2.3187, -5.0141, 15.2746, 2.3187, -5.0141, 15.2746, 0.2, -5.0141, 15.2746, 0.1998, -5.0123, 12.3794, 2.315, -5.0166, 18.3071, 0.2, -5.0141, 15.2746, 2.3187, -5.0141, 15.2746, 2.315, -5.0166, 18.3071, 0.2004, -5.0166, 18.3071, 0.2, -5.0141, 15.2746, 12.4351, -5.0152, 10.3619, 8.1546, -5.0119, 8.3504, 12.4351, -5.0152, 8.3441, 12.4351, -5.0152, 10.3619, 8.1575, -5.0125, 10.3569, 8.1546, -5.0119, 8.3504, 12.4351, -5.0152, 8.3441, 8.1527, -5.0114, 6.3098, 12.4351, -5.0152, 6.3044, 12.4351, -5.0152, 8.3441, 8.1546, -5.0119, 8.3504, 8.1527, -5.0114, 6.3098, 12.4351, -5.0152, 6.3044, 8.1516, -5.0108, 3.5773, 12.4351, -5.0152, 2.9842, 12.4351, -5.0152, 6.3044, 8.1527, -5.0114, 6.3098, 8.1516, -5.0108, 3.5773, 12.4351, -5.0152, 2.9842, 8.1516, -5.0108, 3.5773, 8.8179, -5.0102, 2.4843, 12.4351, -5.0152, 2.9842, 8.8179, -5.0102, 2.4843, 12.4351, -5.0152, 2.4857, 8.1516, -5.0108, 3.5773, 7.1753, -5.0078, 2.4837, 8.8179, -5.0102, 2.4843, 8.1516, -5.0108, 3.5773, 7.1747, -5.0088, 3.5777, 7.1753, -5.0078, 2.4837, 7.1747, -5.0088, 3.5777, 4.1798, -5.0066, 2.4833, 7.1753, -5.0078, 2.4837, 7.1747, -5.0088, 3.5777, 4.1794, -5.0078, 3.5779, 4.1798, -5.0066, 2.4833, 4.1794, -5.0078, 3.5779, 2.3246, -5.006, 2.4832, 4.1798, -5.0066, 2.4833, 4.1794, -5.0078, 3.5779, 2.3244, -5.0073, 3.578, 2.3246, -5.006, 2.4832, 2.3244, -5.0073, 3.578, 0.1995, -5.0059, 2.4831, 2.3246, -5.006, 2.4832, 2.3244, -5.0073, 3.578, 0.1995, -5.0072, 3.5781, 0.1995, -5.0059, 2.4831, 12.4351, -5.0152, 2.4857, 8.8179, -5.0102, 2.4843, 8.8177, -5.0095, 0.3345, 12.4351, -5.0152, 2.4857, 8.8177, -5.0095, 0.3345, 12.4351, -5.0152, 0.3345, 12.4351, -5.0152, 0.3345, 8.8177, -5.0095, 0.3345, 8.8179, -5.0086, -1.7224, 12.4351, -5.0152, 0.3345, 8.8179, -5.0086, -1.7224, 12.4351, -5.0152, -1.7311, 8.8177, -5.0095, 0.3345, 7.1753, -5.0055, -1.7183, 8.8179, -5.0086, -1.7224, 8.8179, -5.0102, 2.4843, 7.1754, -5.0068, 0.3345, 8.8177, -5.0095, 0.3345, 8.8177, -5.0095, 0.3345, 7.1754, -5.0068, 0.3345, 7.1753, -5.0055, -1.7183, 8.8179, -5.0102, 2.4843, 7.1753, -5.0078, 2.4837, 7.1754, -5.0068, 0.3345, 7.1754, -5.0068, 0.3345, 4.1798, -5.0039, -1.7161, 7.1753, -5.0055, -1.7183, 7.1753, -5.0078, 2.4837, 4.1799, -5.0054, 0.3345, 7.1754, -5.0068, 0.3345, 7.1754, -5.0068, 0.3345, 4.1799, -5.0054, 0.3345, 4.1798, -5.0039, -1.7161, 7.1753, -5.0078, 2.4837, 4.1798, -5.0066, 2.4833, 4.1799, -5.0054, 0.3345, 4.1799, -5.0054, 0.3345, 2.3247, -5.0031, -1.715, 4.1798, -5.0039, -1.7161, 4.1798, -5.0066, 2.4833, 2.3247, -5.0047, 0.3345, 4.1799, -5.0054, 0.3345, 4.1799, -5.0054, 0.3345, 2.3247, -5.0047, 0.3345, 2.3247, -5.0031, -1.715, 2.3247, -5.0047, 0.3345, 0.1995, -5.0029, -1.7147, 2.3247, -5.0031, -1.715, 4.1798, -5.0066, 2.4833, 2.3246, -5.006, 2.4832, 2.3247, -5.0047, 0.3345, 2.3247, -5.0047, 0.3345, 0.1995, -5.0045, 0.3345, 0.1995, -5.0029, -1.7147, 2.3246, -5.006, 2.4832, 0.1995, -5.0045, 0.3345, 2.3247, -5.0047, 0.3345, 2.3246, -5.006, 2.4832, 0.1995, -5.0059, 2.4831, 0.1995, -5.0045, 0.3345, 12.4351, -5.0152, -1.7311, 8.8179, -5.0086, -1.7224, 8.0439, -5.0076, -2.7757, 12.4351, -5.0152, -1.7311, 8.0439, -5.0076, -2.7757, 12.4351, -5.0152, -2.2789, 12.4351, -5.0152, -2.2789, 8.0439, -5.0076, -2.7757, 8.045, -5.0062, -5.6989, 12.4351, -5.0152, -2.2789, 8.045, -5.0062, -5.6989, 12.4351, -5.0152, -5.6999, 8.8179, -5.0086, -1.7224, 7.1747, -5.004, -2.7762, 8.0439, -5.0076, -2.7757, 8.8179, -5.0086, -1.7224, 7.1753, -5.0055, -1.7183, 7.1747, -5.004, -2.7762, 7.1753, -5.0055, -1.7183, 4.1795, -5.0022, -2.7765, 7.1747, -5.004, -2.7762, 7.1753, -5.0055, -1.7183, 4.1798, -5.0039, -1.7161, 4.1795, -5.0022, -2.7765, 4.1798, -5.0039, -1.7161, 2.3245, -5.0014, -2.7766, 4.1795, -5.0022, -2.7765, 4.1798, -5.0039, -1.7161, 2.3247, -5.0031, -1.715, 2.3245, -5.0014, -2.7766, 2.3247, -5.0031, -1.715, 0.1996, -5.0011, -2.7766, 2.3245, -5.0014, -2.7766, 2.3247, -5.0031, -1.715, 0.1995, -5.0029, -1.7147, 0.1996, -5.0011, -2.7766, 12.4351, -5.0152, -5.6999, 8.0468, -5.0044, -7.7558, 12.4351, -5.0152, -7.7609, 12.4351, -5.0152, -5.6999, 8.045, -5.0062, -5.6989, 8.0468, -5.0044, -7.7558, 12.4351, -5.0152, -7.7609, 8.0497, -5.0017, -9.7114, 12.4351, -5.0152, -9.7138, 12.4351, -5.0152, -7.7609, 8.0468, -5.0044, -7.7558, 8.0497, -5.0017, -9.7114, 12.4351, -5.0152, -9.7138, 8.0547, -4.9974, -11.4873, 12.4351, -5.0152, -11.471, 12.4351, -5.0152, -9.7138, 8.0497, -5.0017, -9.7114, 8.0547, -4.9974, -11.4873, 12.4351, -5.0152, -11.471, 8.0547, -4.9974, -11.4873, 8.8388, -4.9895, -14.6307, 12.4351, -5.0152, -11.471, 8.8388, -4.9895, -14.6307, 12.4351, -5.0152, -14.6397, 12.4351, -5.0152, -14.6397, 8.8388, -4.9895, -14.6307, 8.8633, -4.9698, -17.6829, 12.4351, -5.0152, -14.6397, 8.8633, -4.9698, -17.6829, 12.4351, -4.9684, -17.6829, 8.8388, -4.9895, -14.6307, 7.147, -4.9698, -17.6829, 8.8633, -4.9698, -17.6829, 8.0547, -4.9974, -11.4873, 7.1595, -4.9842, -14.6288, 8.8388, -4.9895, -14.6307, 8.8388, -4.9895, -14.6307, 7.1595, -4.9842, -14.6288, 7.147, -4.9698, -17.6829, 8.0547, -4.9974, -11.4873, 7.166, -4.9918, -11.4925, 7.1595, -4.9842, -14.6288, 7.1595, -4.9842, -14.6288, 4.163, -4.9698, -17.6829, 7.147, -4.9698, -17.6829, 7.166, -4.9918, -11.4925, 4.1698, -4.9821, -14.6281, 7.1595, -4.9842, -14.6288, 7.1595, -4.9842, -14.6288, 4.1698, -4.9821, -14.6281, 4.163, -4.9698, -17.6829, 7.166, -4.9918, -11.4925, 4.1737, -4.9893, -11.4948, 4.1698, -4.9821, -14.6281, 4.1698, -4.9821, -14.6281, 2.3155, -4.9698, -17.6829, 4.163, -4.9698, -17.6829, 4.1737, -4.9893, -11.4948, 2.319, -4.9812, -14.6278, 4.1698, -4.9821, -14.6281, 4.1698, -4.9821, -14.6281, 2.319, -4.9812, -14.6278, 2.3155, -4.9698, -17.6829, 2.319, -4.9812, -14.6278, 0.2005, -4.9698, -17.6829, 2.3155, -4.9698, -17.6829, 4.1737, -4.9893, -11.4948, 2.3212, -4.9882, -11.4958, 2.319, -4.9812, -14.6278, 2.319, -4.9812, -14.6278, 0.2001, -4.9809, -14.6277, 0.2005, -4.9698, -17.6829, 2.3212, -4.9882, -11.4958, 0.2001, -4.9809, -14.6277, 2.319, -4.9812, -14.6278, 2.3212, -4.9882, -11.4958, 0.1999, -4.9879, -11.4961, 0.2001, -4.9809, -14.6277, 7.1737, -5.4565, 6.312, 4.1794, -5.4546, 3.5778, 7.1747, -5.4556, 3.5775, 7.1737, -5.4565, 6.312, 4.1787, -5.4557, 6.3133, 4.1794, -5.4546, 3.5778, 8.1527, -5.4582, 6.3096, 7.1737, -5.4565, 6.312, 7.1747, -5.4556, 3.5775, 8.1527, -5.4582, 6.3096, 7.1747, -5.4556, 3.5775, 8.1516, -5.4576, 3.5771, 8.1527, -5.0114, 6.3098, 8.1527, -5.4582, 6.3096, 8.1516, -5.4576, 3.5771, 8.1527, -5.0114, 6.3098, 8.1516, -5.4576, 3.5771, 8.1516, -5.0108, 3.5773, 8.1516, -5.0108, 3.5773, 8.1516, -5.4576, 3.5771, 7.1747, -5.4556, 3.5775, 8.1516, -5.0108, 3.5773, 7.1747, -5.4556, 3.5775, 7.1747, -5.0088, 3.5777, 7.1747, -5.0088, 3.5777, 7.1747, -5.4556, 3.5775, 4.1794, -5.4546, 3.5778, 7.1747, -5.0088, 3.5777, 4.1794, -5.4546, 3.5778, 4.1794, -5.0078, 3.5779, 4.1787, -5.4557, 6.3133, 2.3244, -5.4541, 3.5779, 4.1794, -5.4546, 3.5778, 4.1794, -5.0078, 3.5779, 4.1794, -5.4546, 3.5778, 2.3244, -5.4541, 3.5779, 4.1787, -5.4557, 6.3133, 2.324, -5.4553, 6.3139, 2.3244, -5.4541, 3.5779, 4.1794, -5.0078, 3.5779, 2.3244, -5.4541, 3.5779, 2.3244, -5.0073, 3.578, 2.324, -5.4553, 6.3139, 0.1996, -5.454, 3.5779, 2.3244, -5.4541, 3.5779, 2.3244, -5.0073, 3.578, 2.3244, -5.4541, 3.5779, 0.1996, -5.454, 3.5779, 2.324, -5.4553, 6.3139, 0.1996, -5.4552, 6.3141, 0.1996, -5.454, 3.5779, 2.3244, -5.0073, 3.578, 0.1996, -5.454, 3.5779, 0.1995, -5.0072, 3.5781, 7.1721, -5.4574, 8.3528, 4.1787, -5.4557, 6.3133, 7.1737, -5.4565, 6.312, 7.1721, -5.4574, 8.3528, 4.1776, -5.4568, 8.3541, 4.1787, -5.4557, 6.3133, 8.1546, -5.4588, 8.3502, 7.1721, -5.4574, 8.3528, 7.1737, -5.4565, 6.312, 4.1776, -5.4568, 8.3541, 2.324, -5.4553, 6.3139, 4.1787, -5.4557, 6.3133, 8.1546, -5.4588, 8.3502, 7.1737, -5.4565, 6.312, 8.1527, -5.4582, 6.3096, 8.1546, -5.0119, 8.3504, 8.1546, -5.4588, 8.3502, 8.1527, -5.4582, 6.3096, 8.1546, -5.0119, 8.3504, 8.1527, -5.4582, 6.3096, 8.1527, -5.0114, 6.3098, 4.1776, -5.4568, 8.3541, 2.3233, -5.4565, 8.3548, 2.324, -5.4553, 6.3139, 2.3233, -5.4565, 8.3548, 0.1996, -5.4552, 6.3141, 2.324, -5.4553, 6.3139, 2.3233, -5.4565, 8.3548, 0.1996, -5.4564, 8.355, 0.1996, -5.4552, 6.3141, 7.1697, -5.4584, 10.3548, 4.1776, -5.4568, 8.3541, 7.1721, -5.4574, 8.3528, 7.1697, -5.4584, 10.3548, 4.176, -5.4579, 10.3539, 4.1776, -5.4568, 8.3541, 8.1575, -5.4594, 10.3567, 7.1697, -5.4584, 10.3548, 7.1721, -5.4574, 8.3528, 4.176, -5.4579, 10.3539, 2.3233, -5.4565, 8.3548, 4.1776, -5.4568, 8.3541, 8.1575, -5.4594, 10.3567, 7.1721, -5.4574, 8.3528, 8.1546, -5.4588, 8.3502, 8.1575, -5.0125, 10.3569, 8.1575, -5.4594, 10.3567, 8.1546, -5.4588, 8.3502, 8.1575, -5.0125, 10.3569, 8.1546, -5.4588, 8.3502, 8.1546, -5.0119, 8.3504, 4.176, -5.4579, 10.3539, 2.3224, -5.4577, 10.3535, 2.3233, -5.4565, 8.3548, 2.3224, -5.4577, 10.3535, 0.1996, -5.4564, 8.355, 2.3233, -5.4565, 8.3548, 2.3224, -5.4577, 10.3535, 0.1997, -5.4577, 10.3533, 0.1996, -5.4564, 8.355, 7.1659, -5.4595, 12.3823, 4.176, -5.4579, 10.3539, 7.1697, -5.4584, 10.3548, 8.1625, -5.4601, 12.3865, 7.1659, -5.4595, 12.3823, 7.1697, -5.4584, 10.3548, 8.1625, -5.4601, 12.3865, 7.1697, -5.4584, 10.3548, 8.1575, -5.4594, 10.3567, 8.1625, -5.0133, 12.3867, 8.1625, -5.4601, 12.3865, 8.1575, -5.4594, 10.3567, 8.1625, -5.0133, 12.3867, 8.1575, -5.4594, 10.3567, 8.1575, -5.0125, 10.3569, 7.1659, -5.0126, 12.3824, 8.1625, -5.4601, 12.3865, 8.1625, -5.0133, 12.3867, 7.1659, -5.0126, 12.3824, 7.1659, -5.4595, 12.3823, 8.1625, -5.4601, 12.3865, 4.1735, -5.0124, 12.3805, 7.1659, -5.4595, 12.3823, 7.1659, -5.0126, 12.3824, 7.1659, -5.4595, 12.3823, 4.1735, -5.4592, 12.3804, 4.176, -5.4579, 10.3539, 4.1735, -5.0124, 12.3805, 4.1735, -5.4592, 12.3804, 7.1659, -5.4595, 12.3823, 4.1735, -5.4592, 12.3804, 2.3224, -5.4577, 10.3535, 4.176, -5.4579, 10.3539, 2.321, -5.0123, 12.3796, 4.1735, -5.4592, 12.3804, 4.1735, -5.0124, 12.3805, 4.1735, -5.4592, 12.3804, 2.321, -5.4591, 12.3795, 2.3224, -5.4577, 10.3535, 2.321, -5.0123, 12.3796, 2.321, -5.4591, 12.3795, 4.1735, -5.4592, 12.3804, 2.321, -5.4591, 12.3795, 0.1997, -5.4577, 10.3533, 2.3224, -5.4577, 10.3535, 0.1998, -5.0123, 12.3794, 2.321, -5.4591, 12.3795, 2.321, -5.0123, 12.3796, 2.321, -5.4591, 12.3795, 0.1998, -5.4591, 12.3792, 0.1997, -5.4577, 10.3533, 0.1998, -5.0123, 12.3794, 0.1998, -5.4591, 12.3792, 2.321, -5.4591, 12.3795, -7.4045, -5.0115, 3.5773, -7.4051, -5.4589, 6.3096, -7.4051, -5.0121, 6.3098, -7.4045, -5.0115, 3.5773, -7.4045, -5.4583, 3.5771, -7.4051, -5.4589, 6.3096, -5.9372, -5.4569, 6.312, -7.4051, -5.4589, 6.3096, -7.4045, -5.4583, 3.5771, -5.9374, -5.0092, 3.5777, -7.4045, -5.4583, 3.5771, -7.4045, -5.0115, 3.5773, -5.9372, -5.4569, 6.312, -7.4045, -5.4583, 3.5771, -5.9374, -5.4561, 3.5775, -5.9374, -5.0092, 3.5777, -5.9374, -5.4561, 3.5775, -7.4045, -5.4583, 3.5771, -3.8037, -5.4559, 6.3133, -5.9372, -5.4569, 6.312, -5.9374, -5.4561, 3.5775, -3.8012, -5.008, 3.5779, -5.9374, -5.4561, 3.5775, -5.9374, -5.0092, 3.5777, -3.8037, -5.4559, 6.3133, -5.9374, -5.4561, 3.5775, -3.8012, -5.4549, 3.5778, -3.8012, -5.008, 3.5779, -3.8012, -5.4549, 3.5778, -5.9374, -5.4561, 3.5775, -5.9354, -4.9921, -11.4925, -7.6839, -5.4753, -11.4879, -7.6839, -4.998, -11.4874, -7.6839, -4.998, -11.4874, -7.6839, -5.4753, -11.4879, -7.6814, -5.4796, -9.712, -7.6839, -4.998, -11.4874, -7.6814, -5.4796, -9.712, -7.6814, -5.0023, -9.7114, -5.9363, -5.4742, -9.7111, -7.6814, -5.4796, -9.712, -7.6839, -5.4753, -11.4879, -5.9354, -4.9921, -11.4925, -5.9354, -5.4694, -11.493, -7.6839, -5.4753, -11.4879, -5.9363, -5.4742, -9.7111, -7.6839, -5.4753, -11.4879, -5.9354, -5.4694, -11.493, -3.8234, -4.9895, -11.4948, -5.9354, -5.4694, -11.493, -5.9354, -4.9921, -11.4925, -3.8141, -5.4717, -9.7106, -5.9363, -5.4742, -9.7111, -5.9354, -5.4694, -11.493, -3.8234, -4.9895, -11.4948, -3.8234, -5.4668, -11.4953, -5.9354, -5.4694, -11.493, -3.8141, -5.4717, -9.7106, -5.9354, -5.4694, -11.493, -3.8234, -5.4668, -11.4953, 2.3245, -5.0014, -2.7766, 4.1794, -5.4796, -2.777, 4.1795, -5.0022, -2.7765, 4.1795, -5.0022, -2.7765, 4.1794, -5.4796, -2.777, 7.1747, -5.4814, -2.7768, 4.1795, -5.0022, -2.7765, 7.1747, -5.4814, -2.7768, 7.1747, -5.004, -2.7762, 2.3245, -5.0014, -2.7766, 2.3244, -5.4787, -2.7771, 4.1794, -5.4796, -2.777, 0.1996, -5.0011, -2.7766, 2.3244, -5.4787, -2.7771, 2.3245, -5.0014, -2.7766, 0.1996, -5.0011, -2.7766, 0.1995, -5.4784, -2.7772, 2.3244, -5.4787, -2.7771, 2.3244, -5.4787, -2.7771, 0.1995, -5.4784, -2.7772, 0.1996, -5.4763, -5.6987, 2.3244, -5.4787, -2.7771, 0.1996, -5.4763, -5.6987, 2.324, -5.4765, -5.6987, 4.1794, -5.4796, -2.777, 2.3244, -5.4787, -2.7771, 2.324, -5.4765, -5.6987, 4.1794, -5.4796, -2.777, 2.324, -5.4765, -5.6987, 4.1788, -5.4775, -5.6988, 7.1747, -5.4814, -2.7768, 4.1794, -5.4796, -2.777, 4.1788, -5.4775, -5.6988, 7.1747, -5.4814, -2.7768, 4.1788, -5.4775, -5.6988, 7.1737, -5.4795, -5.699, 8.0439, -5.4849, -2.7763, 7.1747, -5.4814, -2.7768, 7.1737, -5.4795, -5.699, 7.1747, -5.004, -2.7762, 7.1747, -5.4814, -2.7768, 8.0439, -5.4849, -2.7763, 8.0439, -5.4849, -2.7763, 7.1737, -5.4795, -5.699, 8.045, -5.4835, -5.6995, 7.1747, -5.004, -2.7762, 8.0439, -5.4849, -2.7763, 8.0439, -5.0076, -2.7757, 8.0439, -5.0076, -2.7757, 8.0439, -5.4849, -2.7763, 8.045, -5.4835, -5.6995, 8.0439, -5.0076, -2.7757, 8.045, -5.4835, -5.6995, 8.045, -5.0062, -5.6989, -7.6784, -5.0083, -2.7758, -5.9375, -5.4818, -2.7768, -5.9374, -5.0045, -2.7762, -5.9374, -5.0045, -2.7762, -3.8013, -5.4798, -2.777, -3.8013, -5.0025, -2.7765, -5.9374, -5.0045, -2.7762, -5.9375, -5.4818, -2.7768, -3.8013, -5.4798, -2.777, -7.6784, -5.0083, -2.7758, -7.6784, -5.4856, -2.7763, -5.9375, -5.4818, -2.7768, -7.679, -5.0069, -5.6989, -7.6784, -5.4856, -2.7763, -7.6784, -5.0083, -2.7758, -7.679, -5.0069, -5.6989, -7.679, -5.4842, -5.6995, -7.6784, -5.4856, -2.7763, -5.9375, -5.4818, -2.7768, -7.6784, -5.4856, -2.7763, -7.679, -5.4842, -5.6995, -5.9375, -5.4818, -2.7768, -7.679, -5.4842, -5.6995, -5.9372, -5.48, -5.699, -3.8013, -5.4798, -2.777, -5.9375, -5.4818, -2.7768, -5.9372, -5.48, -5.699, -3.8013, -5.4798, -2.777, -5.9372, -5.48, -5.699, -3.8039, -5.4777, -5.6988, 7.166, -4.9918, -11.4925, 4.1737, -5.4667, -11.4953, 4.1737, -4.9893, -11.4948, 4.1737, -4.9893, -11.4948, 4.1737, -5.4667, -11.4953, 2.3212, -5.4655, -11.4964, 4.1737, -4.9893, -11.4948, 2.3212, -5.4655, -11.4964, 2.3212, -4.9882, -11.4958, 2.3212, -4.9882, -11.4958, 2.3212, -5.4655, -11.4964, 0.1999, -5.4652, -11.4967, 2.3212, -4.9882, -11.4958, 0.1999, -5.4652, -11.4967, 0.1999, -4.9879, -11.4961, 2.3225, -5.4703, -9.7104, 0.1999, -5.4652, -11.4967, 2.3212, -5.4655, -11.4964, 2.3225, -5.4703, -9.7104, 0.1997, -5.47, -9.7104, 0.1999, -5.4652, -11.4967, 4.1761, -5.4715, -9.7107, 2.3225, -5.4703, -9.7104, 2.3212, -5.4655, -11.4964, 4.1761, -5.4715, -9.7107, 2.3212, -5.4655, -11.4964, 4.1737, -5.4667, -11.4953, 7.1697, -5.4739, -9.7111, 4.1761, -5.4715, -9.7107, 4.1737, -5.4667, -11.4953, 7.166, -4.9918, -11.4925, 7.1659, -5.4691, -11.493, 4.1737, -5.4667, -11.4953, 7.1697, -5.4739, -9.7111, 4.1737, -5.4667, -11.4953, 7.1659, -5.4691, -11.493, 8.0547, -4.9974, -11.4873, 7.1659, -5.4691, -11.493, 7.166, -4.9918, -11.4925, 8.0497, -5.479, -9.712, 7.1697, -5.4739, -9.7111, 7.1659, -5.4691, -11.493, 8.0547, -4.9974, -11.4873, 8.0546, -5.4747, -11.4879, 7.1659, -5.4691, -11.493, 8.0497, -5.479, -9.712, 7.1659, -5.4691, -11.493, 8.0546, -5.4747, -11.4879, 8.0497, -5.0017, -9.7114, 8.0546, -5.4747, -11.4879, 8.0547, -4.9974, -11.4873, 8.0497, -5.0017, -9.7114, 8.0497, -5.479, -9.712, 8.0546, -5.4747, -11.4879, -7.41, -5.0138, 12.3867, -5.9354, -5.4598, 12.3823, -5.9354, -5.013, 12.3824, -5.9354, -5.013, 12.3824, -3.8229, -5.4594, 12.3804, -3.8229, -5.0126, 12.3805, -5.9354, -5.013, 12.3824, -5.9354, -5.4598, 12.3823, -3.8229, -5.4594, 12.3804, -7.41, -5.0138, 12.3867, -7.41, -5.4606, 12.3865, -5.9354, -5.4598, 12.3823, -7.4074, -5.0132, 10.3569, -7.41, -5.4606, 12.3865, -7.41, -5.0138, 12.3867, -7.4074, -5.0132, 10.3569, -7.4074, -5.46, 10.3567, -7.41, -5.4606, 12.3865, -5.9354, -5.4598, 12.3823, -7.41, -5.4606, 12.3865, -7.4074, -5.46, 10.3567, -5.9354, -5.4598, 12.3823, -7.4074, -5.46, 10.3567, -5.9363, -5.4587, 10.3548, -3.8229, -5.4594, 12.3804, -5.9354, -5.4598, 12.3823, -5.9363, -5.4587, 10.3548, -3.8229, -5.4594, 12.3804, -5.9363, -5.4587, 10.3548, -3.8138, -5.4581, 10.3539, -7.6814, -5.0023, -9.7114, -7.6799, -5.4823, -7.7561, -7.6799, -5.005, -7.7556, -7.6814, -5.0023, -9.7114, -7.6814, -5.4796, -9.712, -7.6799, -5.4823, -7.7561, -5.9369, -5.4775, -7.7541, -7.6799, -5.4823, -7.7561, -7.6814, -5.4796, -9.712, -5.9369, -5.4775, -7.7541, -7.6814, -5.4796, -9.712, -5.9363, -5.4742, -9.7111, -3.808, -5.4751, -7.753, -5.9369, -5.4775, -7.7541, -5.9363, -5.4742, -9.7111, -3.808, -5.4751, -7.753, -5.9363, -5.4742, -9.7111, -3.8141, -5.4717, -9.7106, 0.2004, -5.0166, 18.3071, -1.8412, -5.0141, 15.2746, 0.2, -5.0141, 15.2746, 0.2004, -5.0166, 18.3071, -1.8438, -5.0166, 18.3071, -1.8412, -5.0141, 15.2746, 0.2, -5.0141, 15.2746, -1.8412, -5.0141, 15.2746, -1.8397, -5.0124, 12.3796, 0.2, -5.0141, 15.2746, -1.8397, -5.0124, 12.3796, 0.1998, -5.0123, 12.3794, -1.8412, -5.0141, 15.2746, -3.8229, -5.0126, 12.3805, -1.8397, -5.0124, 12.3796, -1.8412, -5.0141, 15.2746, -3.8376, -5.0142, 15.2745, -3.8229, -5.0126, 12.3805, -1.8438, -5.0166, 18.3071, -3.8376, -5.0142, 15.2745, -1.8412, -5.0141, 15.2746, -1.8438, -5.0166, 18.3071, -3.8633, -5.0166, 18.3071, -3.8376, -5.0142, 15.2745, -7.4051, -5.0121, 6.3098, -7.406, -5.4594, 8.3502, -7.406, -5.0126, 8.3504, -7.4051, -5.0121, 6.3098, -7.4051, -5.4589, 6.3096, -7.406, -5.4594, 8.3502, -5.9369, -5.4578, 8.3528, -7.406, -5.4594, 8.3502, -7.4051, -5.4589, 6.3096, -5.9369, -5.4578, 8.3528, -7.4051, -5.4589, 6.3096, -5.9372, -5.4569, 6.312, -3.8077, -5.457, 8.3541, -5.9369, -5.4578, 8.3528, -5.9372, -5.4569, 6.312, -3.8077, -5.457, 8.3541, -5.9372, -5.4569, 6.312, -3.8037, -5.4559, 6.3133, 0.1995, -5.0072, 3.5781, -1.8371, -5.0062, 2.4832, 0.1995, -5.0059, 2.4831, 0.1995, -5.0072, 3.5781, -1.8373, -5.0074, 3.578, -1.8371, -5.0062, 2.4832, -1.8373, -5.0074, 3.578, -3.7998, -5.0069, 2.4833, -1.8371, -5.0062, 2.4832, -1.8373, -5.0074, 3.578, -3.8012, -5.008, 3.5779, -3.7998, -5.0069, 2.4833, 0.1995, -5.0059, 2.4831, -1.8371, -5.0048, 0.3345, 0.1995, -5.0045, 0.3345, 0.1995, -5.0059, 2.4831, -1.8371, -5.0062, 2.4832, -1.8371, -5.0048, 0.3345, 0.1995, -5.0045, 0.3345, -1.8371, -5.0048, 0.3345, -1.8371, -5.0033, -1.715, 0.1995, -5.0045, 0.3345, -1.8371, -5.0033, -1.715, 0.1995, -5.0029, -1.7147, -1.8371, -5.0048, 0.3345, -3.7998, -5.0042, -1.7161, -1.8371, -5.0033, -1.715, -1.8371, -5.0048, 0.3345, -3.7993, -5.0056, 0.3344, -3.7998, -5.0042, -1.7161, -1.8371, -5.0062, 2.4832, -3.7993, -5.0056, 0.3344, -1.8371, -5.0048, 0.3345, -1.8371, -5.0062, 2.4832, -3.7998, -5.0069, 2.4833, -3.7993, -5.0056, 0.3344, 0.1995, -5.0029, -1.7147, -1.8373, -5.0015, -2.7766, 0.1996, -5.0011, -2.7766, 0.1995, -5.0029, -1.7147, -1.8371, -5.0033, -1.715, -1.8373, -5.0015, -2.7766, -1.8371, -5.0033, -1.715, -3.8013, -5.0025, -2.7765, -1.8373, -5.0015, -2.7766, -1.8371, -5.0033, -1.715, -3.7998, -5.0042, -1.7161, -3.8013, -5.0025, -2.7765, -1.8397, -4.9883, -11.4958, -3.8234, -5.4668, -11.4953, -3.8234, -4.9895, -11.4948, -1.8397, -4.9883, -11.4958, -1.8398, -5.4656, -11.4964, -3.8234, -5.4668, -11.4953, 0.1999, -4.9879, -11.4961, -1.8398, -5.4656, -11.4964, -1.8397, -4.9883, -11.4958, 0.1999, -4.9879, -11.4961, 0.1999, -5.4652, -11.4967, -1.8398, -5.4656, -11.4964, 0.1997, -5.47, -9.7104, -1.8398, -5.4656, -11.4964, 0.1999, -5.4652, -11.4967, 0.1997, -5.47, -9.7104, -1.8388, -5.4704, -9.7104, -1.8398, -5.4656, -11.4964, -1.8388, -5.4704, -9.7104, -3.8234, -5.4668, -11.4953, -1.8398, -5.4656, -11.4964, -1.8388, -5.4704, -9.7104, -3.8141, -5.4717, -9.7106, -3.8234, -5.4668, -11.4953, 0.1999, -4.9879, -11.4961, -1.8413, -4.9812, -14.6278, 0.2001, -4.9809, -14.6277, 0.1999, -4.9879, -11.4961, -1.8397, -4.9883, -11.4958, -1.8413, -4.9812, -14.6278, 0.2001, -4.9809, -14.6277, -1.8413, -4.9812, -14.6278, -1.8439, -4.9698, -17.6829, 0.2001, -4.9809, -14.6277, -1.8439, -4.9698, -17.6829, 0.2005, -4.9698, -17.6829, -1.8413, -4.9812, -14.6278, -3.8642, -4.9698, -17.6829, -1.8439, -4.9698, -17.6829, -1.8413, -4.9812, -14.6278, -3.8382, -4.9822, -14.6281, -3.8642, -4.9698, -17.6829, -1.8397, -4.9883, -11.4958, -3.8382, -4.9822, -14.6281, -1.8413, -4.9812, -14.6278, -1.8397, -4.9883, -11.4958, -3.8234, -4.9895, -11.4948, -3.8382, -4.9822, -14.6281, -1.8373, -5.0074, 3.578, -3.8012, -5.4549, 3.5778, -3.8012, -5.008, 3.5779, -1.8373, -5.0074, 3.578, -1.8373, -5.4542, 3.5779, -3.8012, -5.4549, 3.5778, 0.1995, -5.0072, 3.5781, -1.8373, -5.4542, 3.5779, -1.8373, -5.0074, 3.578, 0.1995, -5.0072, 3.5781, 0.1996, -5.454, 3.5779, -1.8373, -5.4542, 3.5779, 0.1996, -5.4552, 6.3141, -1.8373, -5.4542, 3.5779, 0.1996, -5.454, 3.5779, 0.1996, -5.4552, 6.3141, -1.8376, -5.4554, 6.3139, -1.8373, -5.4542, 3.5779, -1.8376, -5.4554, 6.3139, -3.8012, -5.4549, 3.5778, -1.8373, -5.4542, 3.5779, -1.8376, -5.4554, 6.3139, -3.8037, -5.4559, 6.3133, -3.8012, -5.4549, 3.5778, -7.6799, -5.005, -7.7556, -7.679, -5.4842, -5.6995, -7.679, -5.0069, -5.6989, -7.6799, -5.005, -7.7556, -7.6799, -5.4823, -7.7561, -7.679, -5.4842, -5.6995, -5.9372, -5.48, -5.699, -7.679, -5.4842, -5.6995, -7.6799, -5.4823, -7.7561, -5.9372, -5.48, -5.699, -7.6799, -5.4823, -7.7561, -5.9369, -5.4775, -7.7541, -3.8039, -5.4777, -5.6988, -5.9372, -5.48, -5.699, -5.9369, -5.4775, -7.7541, -3.8039, -5.4777, -5.6988, -5.9369, -5.4775, -7.7541, -3.808, -5.4751, -7.753, -3.8013, -5.0025, -2.7765, -1.8373, -5.4788, -2.7771, -1.8373, -5.0015, -2.7766, -3.8013, -5.0025, -2.7765, -3.8013, -5.4798, -2.777, -1.8373, -5.4788, -2.7771, -1.8373, -5.4788, -2.7771, -3.8013, -5.4798, -2.777, -3.8039, -5.4777, -5.6988, -1.8373, -5.4788, -2.7771, -3.8039, -5.4777, -5.6988, -1.8376, -5.4766, -5.6987, -1.8373, -5.0015, -2.7766, -1.8373, -5.4788, -2.7771, 0.1995, -5.4784, -2.7772, 0.1995, -5.4784, -2.7772, -1.8373, -5.4788, -2.7771, -1.8376, -5.4766, -5.6987, -1.8373, -5.0015, -2.7766, 0.1995, -5.4784, -2.7772, 0.1996, -5.0011, -2.7766, 0.1995, -5.4784, -2.7772, -1.8376, -5.4766, -5.6987, 0.1996, -5.4763, -5.6987, -3.8633, -5.0166, 18.3071, -5.934, -5.0143, 15.2744, -3.8376, -5.0142, 15.2745, -3.8633, -5.0166, 18.3071, -5.9311, -5.0166, 18.3071, -5.934, -5.0143, 15.2744, -3.8376, -5.0142, 15.2745, -5.934, -5.0143, 15.2744, -5.9354, -5.013, 12.3824, -3.8376, -5.0142, 15.2745, -5.9354, -5.013, 12.3824, -3.8229, -5.0126, 12.3805, -5.934, -5.0143, 15.2744, -7.41, -5.0138, 12.3867, -5.9354, -5.013, 12.3824, -5.9311, -5.0166, 18.3071, -8.6566, -5.0147, 15.2741, -5.934, -5.0143, 15.2744, -5.934, -5.0143, 15.2744, -8.6566, -5.0147, 15.2741, -7.41, -5.0138, 12.3867, -5.9311, -5.0166, 18.3071, -8.6689, -5.0166, 18.3071, -8.6566, -5.0147, 15.2741, -8.6689, -5.0166, 18.3071, -10.4449, -5.0156, 15.2732, -8.6566, -5.0147, 15.2741, -8.6689, -5.0166, 18.3071, -10.4511, -5.0165, 18.3071, -10.4449, -5.0156, 15.2732, -10.4511, -5.0165, 18.3071, -12.2333, -5.0164, 15.2724, -10.4449, -5.0156, 15.2732, -10.4511, -5.0165, 18.3071, -12.2333, -5.0164, 18.3071, -12.2333, -5.0164, 15.2724, -10.4449, -5.0156, 15.2732, -12.2333, -5.0164, 15.2724, -12.2333, -5.0164, 12.4002, -8.6566, -5.0147, 15.2741, -10.4449, -5.0156, 15.2732, -9.8216, -5.0151, 12.3935, -10.4449, -5.0156, 15.2732, -12.2333, -5.0164, 12.4002, -9.8216, -5.0151, 12.3935, -8.6566, -5.0147, 15.2741, -9.8216, -5.0151, 12.3935, -7.41, -5.0138, 12.3867, -9.8216, -5.0151, 12.3935, -12.2333, -5.0164, 12.4002, -12.2333, -5.0164, 10.3619, -7.41, -5.0138, 12.3867, -9.8216, -5.0151, 12.3935, -9.8204, -5.0148, 10.3594, -9.8216, -5.0151, 12.3935, -12.2333, -5.0164, 10.3619, -9.8204, -5.0148, 10.3594, -7.41, -5.0138, 12.3867, -9.8204, -5.0148, 10.3594, -7.4074, -5.0132, 10.3569, -9.8204, -5.0148, 10.3594, -12.2333, -5.0164, 10.3619, -12.2333, -5.0164, 8.3441, -9.8204, -5.0148, 10.3594, -12.2333, -5.0164, 8.3441, -9.8196, -5.0145, 8.3472, -7.4074, -5.0132, 10.3569, -9.8204, -5.0148, 10.3594, -9.8196, -5.0145, 8.3472, -7.4074, -5.0132, 10.3569, -9.8196, -5.0145, 8.3472, -7.406, -5.0126, 8.3504, -9.8196, -5.0145, 8.3472, -12.2333, -5.0164, 8.3441, -12.2333, -5.0164, 6.3044, -9.8196, -5.0145, 8.3472, -12.2333, -5.0164, 6.3044, -9.8192, -5.0143, 6.3071, -7.406, -5.0126, 8.3504, -9.8196, -5.0145, 8.3472, -9.8192, -5.0143, 6.3071, -7.406, -5.0126, 8.3504, -9.8192, -5.0143, 6.3071, -7.4051, -5.0121, 6.3098, -9.8192, -5.0143, 6.3071, -12.2333, -5.0164, 6.3044, -12.2333, -5.0164, 2.9842, -9.8192, -5.0143, 6.3071, -12.2333, -5.0164, 2.9842, -9.8189, -5.014, 3.2807, -9.8189, -5.014, 3.2807, -12.2333, -5.0164, 2.9842, -12.2333, -5.0164, 2.4858, -7.4051, -5.0121, 6.3098, -9.8192, -5.0143, 6.3071, -9.8189, -5.014, 3.2807, -9.8189, -5.014, 3.2807, -12.2333, -5.0164, 2.4858, -9.8188, -5.0137, 2.4851, -7.4051, -5.0121, 6.3098, -9.8189, -5.014, 3.2807, -7.4045, -5.0115, 3.5773, -7.4045, -5.0115, 3.5773, -9.8189, -5.014, 3.2807, -9.8188, -5.0137, 2.4851, -7.4045, -5.0115, 3.5773, -9.8188, -5.0137, 2.4851, -7.4042, -5.0109, 2.4844, -5.9374, -5.0092, 3.5777, -7.4045, -5.0115, 3.5773, -7.4042, -5.0109, 2.4844, -5.9374, -5.0092, 3.5777, -7.4042, -5.0109, 2.4844, -5.9376, -5.0083, 2.4837, -3.8012, -5.008, 3.5779, -5.9374, -5.0092, 3.5777, -5.9376, -5.0083, 2.4837, -3.8012, -5.008, 3.5779, -5.9376, -5.0083, 2.4837, -3.7998, -5.0069, 2.4833, -7.406, -5.0126, 8.3504, -7.4074, -5.46, 10.3567, -7.4074, -5.0132, 10.3569, -7.406, -5.0126, 8.3504, -7.406, -5.4594, 8.3502, -7.4074, -5.46, 10.3567, -5.9363, -5.4587, 10.3548, -7.4074, -5.46, 10.3567, -7.406, -5.4594, 8.3502, -5.9363, -5.4587, 10.3548, -7.406, -5.4594, 8.3502, -5.9369, -5.4578, 8.3528, -3.8138, -5.4581, 10.3539, -5.9363, -5.4587, 10.3548, -5.9369, -5.4578, 8.3528, -3.8138, -5.4581, 10.3539, -5.9369, -5.4578, 8.3528, -3.8077, -5.457, 8.3541, -3.8229, -5.0126, 12.3805, -1.8397, -5.4592, 12.3795, -1.8397, -5.0124, 12.3796, -3.8229, -5.0126, 12.3805, -3.8229, -5.4594, 12.3804, -1.8397, -5.4592, 12.3795, -1.8397, -5.4592, 12.3795, -3.8229, -5.4594, 12.3804, -3.8138, -5.4581, 10.3539, -1.8397, -5.4592, 12.3795, -3.8138, -5.4581, 10.3539, -1.8387, -5.4578, 10.3535, -1.8397, -5.0124, 12.3796, -1.8397, -5.4592, 12.3795, 0.1998, -5.4591, 12.3792, 0.1998, -5.4591, 12.3792, -1.8397, -5.4592, 12.3795, -1.8387, -5.4578, 10.3535, -1.8397, -5.0124, 12.3796, 0.1998, -5.4591, 12.3792, 0.1998, -5.0123, 12.3794, 0.1998, -5.4591, 12.3792, -1.8387, -5.4578, 10.3535, 0.1997, -5.4577, 10.3533, -3.7998, -5.0069, 2.4833, -5.9376, -5.0072, 0.3344, -3.7993, -5.0056, 0.3344, -3.7998, -5.0069, 2.4833, -5.9376, -5.0083, 2.4837, -5.9376, -5.0072, 0.3344, -3.7993, -5.0056, 0.3344, -5.9376, -5.0072, 0.3344, -5.9376, -5.006, -1.7183, -3.7993, -5.0056, 0.3344, -5.9376, -5.006, -1.7183, -3.7998, -5.0042, -1.7161, -5.9376, -5.0072, 0.3344, -8.646, -5.0093, -1.7224, -5.9376, -5.006, -1.7183, -5.9376, -5.0083, 2.4837, -8.6459, -5.0102, 0.3344, -5.9376, -5.0072, 0.3344, -5.9376, -5.0072, 0.3344, -8.6459, -5.0102, 0.3344, -8.646, -5.0093, -1.7224, -5.9376, -5.0083, 2.4837, -7.4042, -5.0109, 2.4844, -8.6459, -5.0102, 0.3344, -8.6459, -5.0102, 0.3344, -10.4397, -5.0129, -1.7268, -8.646, -5.0093, -1.7224, -7.4042, -5.0109, 2.4844, -10.4396, -5.0133, 0.3344, -8.6459, -5.0102, 0.3344, -8.6459, -5.0102, 0.3344, -10.4396, -5.0133, 0.3344, -10.4397, -5.0129, -1.7268, -7.4042, -5.0109, 2.4844, -9.8188, -5.0137, 2.4851, -10.4396, -5.0133, 0.3344, -10.4396, -5.0133, 0.3344, -12.2333, -5.0164, -1.7311, -10.4397, -5.0129, -1.7268, -9.8188, -5.0137, 2.4851, -12.2333, -5.0164, 0.3344, -10.4396, -5.0133, 0.3344, -10.4396, -5.0133, 0.3344, -12.2333, -5.0164, 0.3344, -12.2333, -5.0164, -1.7311, -12.2333, -5.0164, 0.3344, -11.9429, -5.0164, -1.7311, -12.2333, -5.0164, -1.7311, -9.8188, -5.0137, 2.4851, -12.2333, -5.0164, 2.4858, -12.2333, -5.0164, 0.3344, -12.2333, -5.0164, 0.3344, -11.9429, -5.0164, 0.3344, -11.9429, -5.0164, -1.7311, -12.2333, -5.0164, 2.4858, -11.9429, -5.0164, 0.3344, -12.2333, -5.0164, 0.3344, -12.2333, -5.0164, 2.4858, -11.9429, -5.0164, 2.4858, -11.9429, -5.0164, 0.3344, -3.7998, -5.0042, -1.7161, -5.9374, -5.0045, -2.7762, -3.8013, -5.0025, -2.7765, -3.7998, -5.0042, -1.7161, -5.9376, -5.006, -1.7183, -5.9374, -5.0045, -2.7762, -5.9376, -5.006, -1.7183, -7.6784, -5.0083, -2.7758, -5.9374, -5.0045, -2.7762, -5.9376, -5.006, -1.7183, -8.646, -5.0093, -1.7224, -7.6784, -5.0083, -2.7758, -8.646, -5.0093, -1.7224, -9.9559, -5.0124, -2.5274, -7.6784, -5.0083, -2.7758, -8.646, -5.0093, -1.7224, -10.4397, -5.0129, -1.7268, -9.9559, -5.0124, -2.5274, -10.4397, -5.0129, -1.7268, -12.2333, -5.0164, -2.279, -9.9559, -5.0124, -2.5274, -10.4397, -5.0129, -1.7268, -12.2333, -5.0164, -1.7311, -12.2333, -5.0164, -2.279, -9.9559, -5.0124, -2.5274, -12.2333, -5.0164, -2.279, -12.2333, -5.0164, -5.6998, -7.6784, -5.0083, -2.7758, -9.9559, -5.0124, -2.5274, -9.9561, -5.0117, -5.6994, -9.9559, -5.0124, -2.5274, -12.2333, -5.0164, -5.6998, -9.9561, -5.0117, -5.6994, -7.6784, -5.0083, -2.7758, -9.9561, -5.0117, -5.6994, -7.679, -5.0069, -5.6989, -9.9561, -5.0117, -5.6994, -12.2333, -5.0164, -5.6998, -12.2333, -5.0164, -8.1704, -9.9561, -5.0117, -5.6994, -12.2333, -5.0164, -8.1704, -9.9566, -5.0107, -7.7581, -7.679, -5.0069, -5.6989, -9.9561, -5.0117, -5.6994, -9.9566, -5.0107, -7.7581, -7.679, -5.0069, -5.6989, -9.9566, -5.0107, -7.7581, -7.6799, -5.005, -7.7556, -9.9566, -5.0107, -7.7581, -12.2333, -5.0164, -8.1704, -12.2333, -5.0164, -10.1236, -9.9566, -5.0107, -7.7581, -12.2333, -5.0164, -10.1236, -9.9573, -5.0094, -9.7126, -7.6799, -5.005, -7.7556, -9.9566, -5.0107, -7.7581, -9.9573, -5.0094, -9.7126, -7.6799, -5.005, -7.7556, -9.9573, -5.0094, -9.7126, -7.6814, -5.0023, -9.7114, -9.9573, -5.0094, -9.7126, -12.2333, -5.0164, -10.1236, -12.2333, -5.0164, -11.881, -9.9573, -5.0094, -9.7126, -12.2333, -5.0164, -11.881, -9.9586, -5.0072, -11.4792, -7.6814, -5.0023, -9.7114, -9.9573, -5.0094, -9.7126, -9.9586, -5.0072, -11.4792, -9.9586, -5.0072, -11.4792, -12.2333, -5.0164, -11.881, -12.2333, -5.0164, -14.6397, -7.6814, -5.0023, -9.7114, -9.9586, -5.0072, -11.4792, -7.6839, -4.998, -11.4874, -9.9586, -5.0072, -11.4792, -12.2333, -5.0164, -14.6397, -11.0594, -5.0032, -14.6352, -7.6839, -4.998, -11.4874, -9.9586, -5.0072, -11.4792, -11.0594, -5.0032, -14.6352, -11.0594, -5.0032, -14.6352, -12.2333, -5.0164, -14.6397, -12.226, -4.9697, -17.6829, -11.0594, -5.0032, -14.6352, -12.226, -4.9697, -17.6829, -11.062, -4.9697, -17.6829, -7.6839, -4.998, -11.4874, -11.0594, -5.0032, -14.6352, -9.8855, -4.9899, -14.6307, -9.8855, -4.9899, -14.6307, -11.0594, -5.0032, -14.6352, -11.062, -4.9697, -17.6829, -5.9354, -4.9921, -11.4925, -7.6839, -4.998, -11.4874, -9.8855, -4.9899, -14.6307, -9.8855, -4.9899, -14.6307, -11.062, -4.9697, -17.6829, -9.8979, -4.9698, -17.6829, -5.9354, -4.9921, -11.4925, -9.8855, -4.9899, -14.6307, -5.9339, -4.9844, -14.6288, -5.9339, -4.9844, -14.6288, -9.8855, -4.9899, -14.6307, -9.8979, -4.9698, -17.6829, -3.8234, -4.9895, -11.4948, -5.9354, -4.9921, -11.4925, -5.9339, -4.9844, -14.6288, -5.9339, -4.9844, -14.6288, -9.8979, -4.9698, -17.6829, -5.9311, -4.9698, -17.6829, -3.8234, -4.9895, -11.4948, -5.9339, -4.9844, -14.6288, -3.8382, -4.9822, -14.6281, -3.8382, -4.9822, -14.6281, -5.9339, -4.9844, -14.6288, -5.9311, -4.9698, -17.6829, -3.8382, -4.9822, -14.6281, -5.9311, -4.9698, -17.6829, -3.8642, -4.9698, -17.6829, 8.0468, -5.0044, -7.7558, 8.0497, -5.479, -9.712, 8.0497, -5.0017, -9.7114, 8.0468, -5.0044, -7.7558, 8.0468, -5.4817, -7.7563, 8.0497, -5.479, -9.712, 8.0468, -5.4817, -7.7563, 7.1697, -5.4739, -9.7111, 8.0497, -5.479, -9.712, 8.0468, -5.4817, -7.7563, 7.1722, -5.4771, -7.7542, 7.1697, -5.4739, -9.7111, 7.1722, -5.4771, -7.7542, 4.1761, -5.4715, -9.7107, 7.1697, -5.4739, -9.7111, 7.1722, -5.4771, -7.7542, 4.1777, -5.4749, -7.7531, 4.1761, -5.4715, -9.7107, 4.1777, -5.4749, -7.7531, 2.3225, -5.4703, -9.7104, 4.1761, -5.4715, -9.7107, 4.1777, -5.4749, -7.7531, 2.3234, -5.4738, -7.7526, 2.3225, -5.4703, -9.7104, 2.3234, -5.4738, -7.7526, 0.1997, -5.47, -9.7104, 2.3225, -5.4703, -9.7104, 2.3234, -5.4738, -7.7526, 0.1996, -5.4735, -7.7524, 0.1997, -5.47, -9.7104, 8.045, -5.0062, -5.6989, 8.0468, -5.4817, -7.7563, 8.0468, -5.0044, -7.7558, 8.045, -5.0062, -5.6989, 8.045, -5.4835, -5.6995, 8.0468, -5.4817, -7.7563, 8.045, -5.4835, -5.6995, 7.1722, -5.4771, -7.7542, 8.0468, -5.4817, -7.7563, 8.045, -5.4835, -5.6995, 7.1737, -5.4795, -5.699, 7.1722, -5.4771, -7.7542, 7.1737, -5.4795, -5.699, 4.1777, -5.4749, -7.7531, 7.1722, -5.4771, -7.7542, 7.1737, -5.4795, -5.699, 4.1788, -5.4775, -5.6988, 4.1777, -5.4749, -7.7531, 4.1788, -5.4775, -5.6988, 2.3234, -5.4738, -7.7526, 4.1777, -5.4749, -7.7531, 4.1788, -5.4775, -5.6988, 2.324, -5.4765, -5.6987, 2.3234, -5.4738, -7.7526, 2.324, -5.4765, -5.6987, 0.1996, -5.4735, -7.7524, 2.3234, -5.4738, -7.7526, 2.324, -5.4765, -5.6987, 0.1996, -5.4763, -5.6987, 0.1996, -5.4735, -7.7524, 0.1996, -5.4763, -5.6987, -1.8381, -5.4739, -7.7525, 0.1996, -5.4735, -7.7524, 0.1996, -5.4763, -5.6987, -1.8376, -5.4766, -5.6987, -1.8381, -5.4739, -7.7525, -1.8376, -5.4766, -5.6987, -3.808, -5.4751, -7.753, -1.8381, -5.4739, -7.7525, -1.8376, -5.4766, -5.6987, -3.8039, -5.4777, -5.6988, -3.808, -5.4751, -7.753, 0.1996, -5.4735, -7.7524, -1.8388, -5.4704, -9.7104, 0.1997, -5.47, -9.7104, 0.1996, -5.4735, -7.7524, -1.8381, -5.4739, -7.7525, -1.8388, -5.4704, -9.7104, -1.8381, -5.4739, -7.7525, -3.8141, -5.4717, -9.7106, -1.8388, -5.4704, -9.7104, -1.8381, -5.4739, -7.7525, -3.808, -5.4751, -7.753, -3.8141, -5.4717, -9.7106, 0.1997, -5.4577, 10.3533, -1.838, -5.4566, 8.3548, 0.1996, -5.4564, 8.355, 0.1997, -5.4577, 10.3533, -1.8387, -5.4578, 10.3535, -1.838, -5.4566, 8.3548, -1.8387, -5.4578, 10.3535, -3.8077, -5.457, 8.3541, -1.838, -5.4566, 8.3548, -1.8387, -5.4578, 10.3535, -3.8138, -5.4581, 10.3539, -3.8077, -5.457, 8.3541, 0.1996, -5.4564, 8.355, -1.8376, -5.4554, 6.3139, 0.1996, -5.4552, 6.3141, 0.1996, -5.4564, 8.355, -1.838, -5.4566, 8.3548, -1.8376, -5.4554, 6.3139, -1.838, -5.4566, 8.3548, -3.8037, -5.4559, 6.3133, -1.8376, -5.4554, 6.3139, -1.838, -5.4566, 8.3548, -3.8077, -5.457, 8.3541, -3.8037, -5.4559, 6.3133, 2.3155, -2.9344, -17.6829, 0.2003, -0.9979, -17.6829, 2.3155, -0.9979, -17.6829, 2.3155, -2.9344, -17.6829, 0.2003, -2.9344, -17.6829, 0.2003, -0.9979, -17.6829, -3.8644, -2.9344, -17.6829, -1.844, -0.9979, -17.6829, -1.844, -2.9344, -17.6829, -3.8644, -2.9344, -17.6829, -3.8644, -0.9979, -17.6829, -1.844, -0.9979, -17.6829, -3.8644, -4.9698, -17.6829, -1.844, -2.9344, -17.6829, -1.844, -4.9698, -17.6829, -3.8644, -4.9698, -17.6829, -3.8644, -2.9344, -17.6829, -1.844, -2.9344, -17.6829, -1.844, -4.9698, -17.6829, -1.844, -2.9344, -17.6829, 0.2003, -2.9344, -17.6829, -1.844, -4.9698, -17.6829, 0.2003, -2.9344, -17.6829, 0.2003, -4.9698, -17.6829, 2.3155, -4.9698, -17.6829, 0.2003, -2.9344, -17.6829, 2.3155, -2.9344, -17.6829, 2.3155, -4.9698, -17.6829, 0.2003, -4.9698, -17.6829, 0.2003, -2.9344, -17.6829, 0.2003, -0.9979, -17.6829, -1.844, 1.1483, -17.6829, 0.2003, 1.1483, -17.6829, 0.2003, -0.9979, -17.6829, -1.844, -0.9979, -17.6829, -1.844, 1.1483, -17.6829, -1.844, -0.9979, -17.6829, -3.8644, 1.1483, -17.6829, -1.844, 1.1483, -17.6829, -1.844, -0.9979, -17.6829, -3.8644, -0.9979, -17.6829, -3.8644, 1.1483, -17.6829, 2.3155, -0.9979, -17.6829, 0.2003, 1.1483, -17.6829, 2.3155, 1.1483, -17.6829, 2.3155, -0.9979, -17.6829, 0.2003, -0.9979, -17.6829, 0.2003, 1.1483, -17.6829, -11.9429, 2.9348, -1.7307, -11.9429, 1.1122, 0.3343, -11.9429, 2.9349, 0.3343, -11.9429, 2.9348, -1.7307, -11.9429, 1.1122, -1.7307, -11.9429, 1.1122, 0.3343, -11.9429, 2.9349, 0.3343, -11.9429, 1.1122, 0.3343, -11.9429, 1.1122, 2.4858, -11.9429, 2.9349, 0.3343, -11.9429, 1.1122, 2.4858, -11.9429, 2.9349, 2.4858, -11.9429, -0.9978, 0.3343, -11.9429, 1.1122, 0.3343, -11.9429, 1.1122, -1.7307, -11.9429, -0.9978, 0.3343, -11.9429, 1.1122, 2.4858, -11.9429, 1.1122, 0.3343, -11.9429, -0.9978, 0.3343, -11.9429, 1.1122, -1.7307, -11.9429, -0.9978, -1.7313, -11.9429, -0.9978, 0.3343, -11.9429, -0.9978, 2.4858, -11.9429, 1.1122, 2.4858, -11.9429, -2.981, 2.4689, -11.9429, -5.0164, 0.3343, -11.9429, -5.0164, 2.4858, -11.9429, -5.0164, 0.3343, -11.9429, -2.981, 2.4689, -11.9429, -2.981, -1.7095, -11.9429, -5.0164, 0.3343, -11.9429, -2.981, -1.7095, -11.9429, -5.0164, -1.7313, -11.9429, -0.9978, 2.4858, -11.9429, -2.981, -1.7095, -11.9429, -2.981, 2.4689, -11.9429, -2.981, -1.7095, -11.9429, -0.9978, 2.4858, -11.9429, -0.9978, 0.3343, -11.9429, -2.981, -1.7095, -11.9429, -0.9978, 0.3343, -11.9429, -0.9978, -1.7313, 12.4347, -2.9797, 12.3997, 12.4347, -0.9965, 15.2724, 12.4347, -2.9797, 15.2724, 12.4347, -2.9797, 15.2724, 12.4347, -0.9965, 15.2724, 12.4347, -0.9965, 18.3066, 12.4347, -2.9797, 15.2724, 12.4347, -0.9965, 18.3066, 12.4347, -2.9797, 18.3066, 12.4347, -2.9797, 12.3997, 12.4347, -0.9965, 12.3997, 12.4347, -0.9965, 15.2724, 12.4347, -2.9797, 12.3997, 12.4347, -0.9965, 10.3875, 12.4347, -0.9965, 12.3997, 12.4347, -2.9797, 12.3997, 12.4347, -2.9797, 10.3875, 12.4347, -0.9965, 10.3875, 12.4347, -2.9797, 0.3344, 12.4347, -0.9965, 2.4855, 12.4347, -2.9797, 2.4855, 12.4347, -2.9797, 2.4855, 12.4347, -0.9965, 2.4855, 12.4347, -0.9965, 2.9841, 12.4347, -2.9797, 0.3344, 12.4347, -0.9965, 0.3344, 12.4347, -0.9965, 2.4855, 12.4347, -2.9797, 2.4855, 12.4347, -0.9965, 2.9841, 12.4347, -2.9797, 2.9841, 12.4347, -2.9797, 2.9841, 12.4347, -0.9965, 2.9841, 12.4347, -0.9965, 6.317, 12.4347, -2.9797, 2.9841, 12.4347, -0.9965, 6.317, 12.4347, -2.9797, 6.317, 12.4347, -2.9797, 0.3344, 12.4347, -0.9965, -1.7344, 12.4347, -0.9965, 0.3344, 12.4347, -2.9797, 0.3344, 12.4347, -2.9797, -1.7316, 12.4347, -0.9965, -1.7344, 12.4347, -2.9797, -1.7316, 12.4347, -0.9965, -2.2792, 12.4347, -0.9965, -1.7344, 12.4347, -2.9797, -1.7316, 12.4347, -2.9797, -2.2792, 12.4347, -0.9965, -2.2792, 12.4347, -2.9797, -2.2792, 12.4347, -0.9965, -5.6884, 12.4347, -0.9965, -2.2792, 12.4347, -2.9797, -2.2792, 12.4347, -2.9797, -5.6884, 12.4347, -0.9965, -5.6884, -12.2333, -2.9809, 8.344, -12.2333, -0.9977, 6.3044, -12.2333, -2.9809, 6.3044, -12.2333, -2.9809, 8.344, -12.2333, -0.9173, 8.344, -12.2333, -0.9977, 6.3044, -12.2333, -2.9809, 6.3044, -12.2333, -0.9977, 6.3044, -12.2333, -0.9977, 2.9841, -12.2333, -2.9809, 6.3044, -12.2333, -0.9977, 2.9841, -12.2333, -2.9809, 2.9841, -12.2333, -2.9809, 2.9841, -12.2333, -0.9977, 2.9841, -12.2333, -0.9977, 2.4855, -12.2333, -2.9809, 2.9841, -12.2333, -0.9977, 2.4855, -12.2333, -2.9809, 2.469, -12.2333, -2.9809, 18.3066, -12.2333, -0.9977, 15.2724, -12.2333, -2.9809, 15.2724, -12.2333, -2.9809, 18.3066, -12.2333, -0.9977, 18.3066, -12.2333, -0.9977, 15.2724, -12.2333, -2.9809, 15.2724, -12.2333, -0.9977, 15.2724, -12.2333, -0.9173, 12.3997, -12.2333, -2.9809, 15.2724, -12.2333, -0.9173, 12.3997, -12.2333, -2.9809, 12.3997, -5.9314, -2.9811, 18.3071, -8.669, -0.9978, 18.3071, -8.669, -2.9811, 18.3071, -8.669, -2.9811, 18.3071, -8.669, -0.9978, 18.3071, -10.4514, -0.9978, 18.3066, -5.9314, -2.9811, 18.3071, -5.9314, -0.9978, 18.3071, -8.669, -0.9978, 18.3071, -3.8637, -2.9811, 18.3071, -5.9314, -0.9978, 18.3071, -5.9314, -2.9811, 18.3071, -3.8637, -2.9811, 18.3071, -3.8637, -0.9978, 18.3071, -5.9314, -0.9978, 18.3071, -8.669, -2.9811, 18.3071, -10.4514, -0.9978, 18.3066, -10.4514, -2.981, 18.3066, -10.4514, -2.981, 18.3066, -10.4514, -0.9978, 18.3066, -12.2333, -0.9977, 18.3066, -10.4514, -2.981, 18.3066, -12.2333, -0.9977, 18.3066, -12.2333, -2.9809, 18.3066, 7.1464, -2.9811, 18.3071, 4.1626, -0.9978, 18.3071, 4.1626, -2.9811, 18.3071, 4.1626, -2.9811, 18.3071, 4.1626, -0.9978, 18.3071, 2.3148, -0.9978, 18.3071, 4.1626, -2.9811, 18.3071, 2.3148, -0.9978, 18.3071, 2.3148, -2.9811, 18.3071, 7.1464, -2.9811, 18.3071, 7.1464, -0.9978, 18.3071, 4.1626, -0.9978, 18.3071, 8.8633, -2.9811, 18.3071, 7.1464, -0.9978, 18.3071, 7.1464, -2.9811, 18.3071, 8.8633, -2.9811, 18.3071, 8.8633, -0.9978, 18.3071, 7.1464, -0.9978, 18.3071, 12.4347, -2.9797, 18.3066, 8.8633, -0.9978, 18.3071, 8.8633, -2.9811, 18.3071, 12.4347, -2.9797, 18.3066, 12.4347, -0.9965, 18.3066, 8.8633, -0.9978, 18.3071, -3.8637, -2.9811, 18.3071, -1.8439, -0.9978, 18.3071, -3.8637, -0.9978, 18.3071, -3.8637, -2.9811, 18.3071, -1.8439, -2.9811, 18.3071, -1.8439, -0.9978, 18.3071, 12.4347, -2.9797, -11.4712, 12.4347, -0.9965, -14.6399, 12.4347, -0.9965, -11.4712, 12.4347, -2.9797, -11.4712, 12.4347, -0.9965, -11.4712, 12.4347, -0.9965, -9.6809, 12.4347, -2.9797, -11.4712, 12.4347, -0.9965, -9.6809, 12.4347, -2.9797, -9.6809, 12.4347, -2.9797, -11.4712, 12.4347, -2.9797, -14.6399, 12.4347, -0.9965, -14.6399, 12.4347, -2.9797, -14.6399, 12.4351, -0.9965, -17.6829, 12.4347, -0.9965, -14.6399, 12.4347, -2.9797, -14.6399, 12.4351, -2.9329, -17.6829, 12.4351, -0.9965, -17.6829, -12.2333, -2.9809, -8.1707, -12.2333, -0.9977, -5.7, -12.2333, -0.9401, -8.1707, -12.2333, -2.9809, -8.1707, -12.2333, -2.9809, -5.7, -12.2333, -0.9977, -5.7, -12.2333, -2.9809, -5.7, -12.2333, -0.9977, -2.2792, -12.2333, -0.9977, -5.7, -12.2333, -2.9809, -5.7, -12.2333, -2.9809, -2.2792, -12.2333, -0.9977, -2.2792, -12.2333, -2.9809, -2.2792, -12.2333, -0.9977, -1.7316, -12.2333, -0.9977, -2.2792, -12.2333, -2.9809, -2.2792, -12.2333, -2.9809, -1.7097, -12.2333, -0.9977, -1.7316, -12.2262, -2.9342, -17.6829, -12.2333, -0.9977, -14.6399, -12.2262, -0.9977, -17.6829, -12.2262, -2.9342, -17.6829, -12.2333, -2.9809, -14.6399, -12.2333, -0.9977, -14.6399, -12.2333, -2.9809, -14.6399, -12.2333, -0.9401, -11.8814, -12.2333, -0.9977, -14.6399, -12.2333, -2.9809, -14.6399, -12.2333, -2.9809, -11.8814, -12.2333, -0.9401, -11.8814, -5.9314, -2.9343, -17.6829, -9.898, -0.9978, -17.6829, -5.9314, -0.9978, -17.6829, -3.8645, -2.9343, -17.6829, -5.9314, -2.9343, -17.6829, -5.9314, -0.9978, -17.6829, -3.8645, -2.9343, -17.6829, -5.9314, -0.9978, -17.6829, -3.8645, -0.9978, -17.6829, -5.9314, -2.9343, -17.6829, -9.898, -2.9343, -17.6829, -9.898, -0.9978, -17.6829, -9.898, -2.9343, -17.6829, -11.0623, -0.9978, -17.6829, -9.898, -0.9978, -17.6829, -9.898, -2.9343, -17.6829, -11.0623, -2.9342, -17.6829, -11.0623, -0.9978, -17.6829, -11.0623, -2.9342, -17.6829, -12.2262, -0.9977, -17.6829, -11.0623, -0.9978, -17.6829, -11.0623, -2.9342, -17.6829, -12.2262, -2.9342, -17.6829, -12.2262, -0.9977, -17.6829, 7.1468, -2.9343, -17.6829, 4.1626, -0.9978, -17.6829, 7.1468, -0.9978, -17.6829, 7.1468, -2.9343, -17.6829, 4.1626, -2.9343, -17.6829, 4.1626, -0.9978, -17.6829, 4.1626, -2.9343, -17.6829, 2.3152, -0.9978, -17.6829, 4.1626, -0.9978, -17.6829, 4.1626, -2.9343, -17.6829, 2.3152, -2.9343, -17.6829, 2.3152, -0.9978, -17.6829, 8.8633, -2.9343, -17.6829, 7.1468, -2.9343, -17.6829, 7.1468, -0.9978, -17.6829, 8.8633, -2.9343, -17.6829, 7.1468, -0.9978, -17.6829, 8.8633, -0.9978, -17.6829, 12.4351, -2.9329, -17.6829, 8.8633, -2.9343, -17.6829, 8.8633, -0.9978, -17.6829, 12.4351, -2.9329, -17.6829, 8.8633, -0.9978, -17.6829, 12.4351, -0.9965, -17.6829, -12.2333, -2.981, -1.7094, -11.9429, -0.9978, -1.7311, -12.2333, -0.9978, -1.7311, -12.2333, -0.9978, -1.7311, -11.9429, -0.9978, -1.7311, -11.9429, 1.1122, -1.7306, -12.2333, -2.981, -1.7094, -11.9429, -2.981, -1.7094, -11.9429, -0.9978, -1.7311, -12.2333, -5.0164, -1.7311, -11.9429, -2.981, -1.7094, -12.2333, -2.981, -1.7094, -12.2333, -5.0164, -1.7311, -11.9429, -5.0164, -1.7311, -11.9429, -2.981, -1.7094, -12.2333, -0.9978, -1.7311, -11.9429, 1.1122, -1.7306, -12.2333, 1.1122, -1.7306, -12.2333, 1.1122, -1.7306, -11.9429, 1.1122, -1.7306, -11.9429, 2.9348, -1.7306, -12.2333, 1.1122, -1.7306, -11.9429, 2.9348, -1.7306, -12.2333, 2.9348, -1.7306, -12.2333, 1.1122, 2.4858, -11.9429, -0.9978, 2.4858, -12.2333, -0.9978, 2.4858, -12.2333, -0.9978, 2.4858, -11.9429, -0.9978, 2.4858, -11.9429, -2.981, 2.4691, -12.2333, 1.1122, 2.4858, -11.9429, 1.1122, 2.4858, -11.9429, -0.9978, 2.4858, -12.2333, 2.9349, 2.4858, -11.9429, 1.1122, 2.4858, -12.2333, 1.1122, 2.4858, -12.2333, 2.9349, 2.4858, -11.9429, 2.9349, 2.4858, -11.9429, 1.1122, 2.4858, -12.2333, -0.9978, 2.4858, -11.9429, -2.981, 2.4691, -12.2333, -2.981, 2.4691, -12.2333, -2.981, 2.4691, -11.9429, -2.981, 2.4691, -11.9429, -5.0164, 2.4858, -12.2333, -2.981, 2.4691, -11.9429, -5.0164, 2.4858, -12.2333, -5.0164, 2.4858, -1.8439, -2.9343, -17.6829, 0.2005, -0.9978, -17.6829, 0.2005, -2.9343, -17.6829, -1.8439, -2.9343, -17.6829, -1.8439, -0.9978, -17.6829, 0.2005, -0.9978, -17.6829) +[sub_resource type="BoxShape3D" id="BoxShape3D_cgkx3"] +size = Vector3(36.5441, 14.8376, 0.001) -[sub_resource type="ConcavePolygonShape3D" id="ConcavePolygonShape3D_u6553"] -data = PackedVector3Array(-1, -1, 1, -1, 1, -1, -1, 1, 1, -1, -1, 1, -1, -1, -1, -1, 1, -1, -1, -1, -1, 1, 1, -1, -1, 1, -1, -1, -1, -1, 1, -1, -1, 1, 1, -1, 1, -1, -1, 1, 1, 1, 1, 1, -1, 1, -1, -1, 1, -1, 1, 1, 1, 1, 1, -1, 1, -1, 1, 1, 1, 1, 1, 1, -1, 1, -1, -1, 1, -1, 1, 1, -1, -1, -1, 1, -1, 1, 1, -1, -1, -1, -1, -1, -1, -1, 1, 1, -1, 1, 1, 1, -1, -1, 1, 1, -1, 1, -1, 1, 1, -1, 1, 1, 1, -1, 1, 1) +[sub_resource type="BoxShape3D" id="BoxShape3D_3acsh"] +size = Vector3(8.0704, 14.838, 1) -[sub_resource type="ConcavePolygonShape3D" id="ConcavePolygonShape3D_s2sdi"] -data = PackedVector3Array(-1, -1, 1, -1, 1, -1, -1, 1, 1, -1, -1, 1, -1, -1, -1, -1, 1, -1, -1, -1, -1, 1, 1, -1, -1, 1, -1, -1, -1, -1, 1, -1, -1, 1, 1, -1, 1, -1, -1, 1, 1, 1, 1, 1, -1, 1, -1, -1, 1, -1, 1, 1, 1, 1, 1, -1, 1, -1, 1, 1, 1, 1, 1, 1, -1, 1, -1, -1, 1, -1, 1, 1, -1, -1, -1, 1, -1, 1, 1, -1, -1, -1, -1, -1, -1, -1, 1, 1, -1, 1, 1, 1, -1, -1, 1, 1, -1, 1, -1, 1, 1, -1, 1, 1, 1, -1, 1, 1) +[sub_resource type="BoxShape3D" id="BoxShape3D_p41ju"] +size = Vector3(6.90156, 14.838, 1) -[sub_resource type="ConcavePolygonShape3D" id="ConcavePolygonShape3D_lqd4p"] -data = PackedVector3Array(-1, -1, 1, -1, 1, -1, -1, 1, 1, -1, -1, 1, -1, -1, -1, -1, 1, -1, -1, -1, -1, 1, 1, -1, -1, 1, -1, -1, -1, -1, 1, -1, -1, 1, 1, -1, 1, -1, -1, 1, 1, 1, 1, 1, -1, 1, -1, -1, 1, -1, 1, 1, 1, 1, 1, -1, 1, -1, 1, 1, 1, 1, 1, 1, -1, 1, -1, -1, 1, -1, 1, 1, -1, -1, -1, 1, -1, 1, 1, -1, -1, -1, -1, -1, -1, -1, 1, 1, -1, 1, 1, 1, -1, -1, 1, 1, -1, 1, -1, 1, 1, -1, 1, 1, 1, -1, 1, 1) +[sub_resource type="BoxShape3D" id="BoxShape3D_t4uvx"] +size = Vector3(16.1607, 14.8376, 0.001) -[sub_resource type="ConcavePolygonShape3D" id="ConcavePolygonShape3D_orydj"] -data = PackedVector3Array(-1, -1, 1, -1, 1, -1, -1, 1, 1, -1, -1, 1, -1, -1, -1, -1, 1, -1, -1, -1, -1, 1, 1, -1, -1, 1, -1, -1, -1, -1, 1, -1, -1, 1, 1, -1, 1, -1, -1, 1, 1, 1, 1, 1, -1, 1, -1, -1, 1, -1, 1, 1, 1, 1, 1, -1, 1, -1, 1, 1, 1, 1, 1, 1, -1, 1, -1, -1, 1, -1, 1, 1, -1, -1, -1, 1, -1, 1, 1, -1, -1, -1, -1, -1, -1, -1, 1, 1, -1, 1, 1, 1, -1, -1, 1, 1, -1, 1, -1, 1, 1, -1, 1, 1, 1, -1, 1, 1) +[sub_resource type="BoxShape3D" id="BoxShape3D_rroba"] +size = Vector3(16.0669, 14.8376, 0.001) -[sub_resource type="ConcavePolygonShape3D" id="ConcavePolygonShape3D_7ueaq"] -data = PackedVector3Array(-1, -1, 1, -1, 1, -1, -1, 1, 1, -1, -1, 1, -1, -1, -1, -1, 1, -1, -1, -1, -1, 1, 1, -1, -1, 1, -1, -1, -1, -1, 1, -1, -1, 1, 1, -1, 1, -1, -1, 1, 1, 1, 1, 1, -1, 1, -1, -1, 1, -1, 1, 1, 1, 1, 1, -1, 1, -1, 1, 1, 1, 1, 1, 1, -1, 1, -1, -1, 1, -1, 1, 1, -1, -1, -1, 1, -1, 1, 1, -1, -1, -1, -1, -1, -1, -1, 1, 1, -1, 1, 1, 1, -1, -1, 1, 1, -1, 1, -1, 1, 1, -1, 1, 1, 1, -1, 1, 1) +[sub_resource type="BoxShape3D" id="BoxShape3D_hv20v"] +size = Vector3(16.0534, 14.8376, 0.001) + +[sub_resource type="BoxShape3D" id="BoxShape3D_6fxlg"] +size = Vector3(11.9317, 14.8376, 0.001) + +[sub_resource type="BoxShape3D" id="BoxShape3D_aicqs"] +size = Vector3(24.0521, 14.8376, 0.001) + +[sub_resource type="BoxShape3D" id="BoxShape3D_4v3h5"] +size = Vector3(11.8639, 14.8376, 0.001) + +[sub_resource type="CylinderShape3D" id="CylinderShape3D_edwv6"] +height = 10.689 +radius = 3.05566 + +[sub_resource type="CylinderShape3D" id="CylinderShape3D_cgkx3"] +height = 4.7168 +radius = 0.452637 + +[sub_resource type="BoxShape3D" id="BoxShape3D_wupo0"] +size = Vector3(36.3961, 1, 56.2708) [sub_resource type="BoxShape3D" id="BoxShape3D_2nfuf"] -size = Vector3(28, 8, 48) +size = Vector3(36.0629, 8, 56.0566) -[sub_resource type="PlaneMesh" id="PlaneMesh_44h5a"] -size = Vector2(34, 54) +[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_ykoit"] +albedo_color = Color(0, 0, 0, 1) -[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_8fw5d"] -shading_mode = 0 -albedo_texture = ExtResource("5_f4tjo") -texture_filter = 0 +[sub_resource type="PlaneMesh" id="PlaneMesh_edwv6"] +material = SubResource("StandardMaterial3D_ykoit") +size = Vector2(37, 57) [sub_resource type="Curve" id="Curve_q1vjy"] _limits = [-2.0, 2.0, 0.0, 1.0] @@ -1659,59 +1677,61 @@ subdivide_depth = 1 [node name="Water Room" type="Node3D"] script = ExtResource("2_hbsbj") -[node name="WaterRoomFixs" type="Node3D" parent="."] +[node name="Model" type="Node3D" parent="."] + +[node name="WaterRoomFixs" type="Node3D" parent="Model"] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 2.07559, 0) -[node name="COILUMNS" type="MeshInstance3D" parent="WaterRoomFixs"] +[node name="COILUMNS" type="MeshInstance3D" parent="Model/WaterRoomFixs"] mesh = SubResource("ArrayMesh_wflv8") skeleton = NodePath("") -[node name="CHAIN_004" type="MeshInstance3D" parent="WaterRoomFixs"] +[node name="CHAIN_004" type="MeshInstance3D" parent="Model/WaterRoomFixs"] mesh = SubResource("ArrayMesh_4t1lh") skeleton = NodePath("") -[node name="Pancaked Ways_020" type="MeshInstance3D" parent="WaterRoomFixs"] +[node name="Pancaked Ways_020" type="MeshInstance3D" parent="Model/WaterRoomFixs"] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -0.06, 0, 0) mesh = SubResource("ArrayMesh_eqnk7") skeleton = NodePath("") -[node name="Pancaked Ways_021" type="MeshInstance3D" parent="WaterRoomFixs"] +[node name="Pancaked Ways_021" type="MeshInstance3D" parent="Model/WaterRoomFixs"] mesh = SubResource("ArrayMesh_j22kl") skeleton = NodePath("") -[node name="Pancaked Ways_022" type="MeshInstance3D" parent="WaterRoomFixs"] +[node name="Pancaked Ways_022" type="MeshInstance3D" parent="Model/WaterRoomFixs"] mesh = SubResource("ArrayMesh_m15kn") skeleton = NodePath("") -[node name="Pancaked Ways_023" type="MeshInstance3D" parent="WaterRoomFixs"] +[node name="Pancaked Ways_023" type="MeshInstance3D" parent="Model/WaterRoomFixs"] mesh = SubResource("ArrayMesh_b17on") skeleton = NodePath("") -[node name="Pancaked Ways_024" type="MeshInstance3D" parent="WaterRoomFixs"] +[node name="Pancaked Ways_024" type="MeshInstance3D" parent="Model/WaterRoomFixs"] mesh = SubResource("ArrayMesh_i40lr") skeleton = NodePath("") -[node name="Cylinder_028" type="MeshInstance3D" parent="WaterRoomFixs"] +[node name="Cylinder_028" type="MeshInstance3D" parent="Model/WaterRoomFixs"] mesh = SubResource("ArrayMesh_o1l7i") skeleton = NodePath("") -[node name="WATER ROOM_002" type="MeshInstance3D" parent="WaterRoomFixs"] +[node name="WATER ROOM_002" type="MeshInstance3D" parent="Model/WaterRoomFixs"] mesh = SubResource("ArrayMesh_0tpj8") skeleton = NodePath("") -[node name="Cube" type="MeshInstance3D" parent="WaterRoomFixs"] +[node name="Cube" type="MeshInstance3D" parent="Model/WaterRoomFixs"] mesh = SubResource("ArrayMesh_3ck38") skeleton = NodePath("") -[node name="Cube_001" type="MeshInstance3D" parent="WaterRoomFixs"] +[node name="Cube_001" type="MeshInstance3D" parent="Model/WaterRoomFixs"] mesh = SubResource("ArrayMesh_f3uwi") skeleton = NodePath("") -[node name="Cube_005" type="MeshInstance3D" parent="WaterRoomFixs"] +[node name="Cube_005" type="MeshInstance3D" parent="Model/WaterRoomFixs"] mesh = SubResource("ArrayMesh_pkq0a") skeleton = NodePath("") -[node name="Water" type="MeshInstance3D" parent="."] +[node name="Water" type="MeshInstance3D" parent="Model"] transform = Transform3D(13.0548, 0, 0, 0, 2.5024, 0, 0, 0, 17.6818, -0.169842, -0.975074, 2.29559) mesh = SubResource("PlaneMesh_y8f5r") skeleton = NodePath("") @@ -1720,39 +1740,125 @@ skeleton = NodePath("") transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0.09202, 0) [node name="StaticBody3D" type="StaticBody3D" parent="Collision"] -transform = Transform3D(1.2, 0, 0, 0, 1.125, 0, 0, 0, 1.125, -11.1402, -18.0046, -26.4489) [node name="CollisionShape3D" type="CollisionShape3D" parent="Collision/StaticBody3D"] -transform = Transform3D(2.0328, 0, 0, 0, 4.81285, 0, 0, 0, 2.0328, 21.1149, 20.0794, 2.56641) -shape = SubResource("ConcavePolygonShape3D_kjv35") +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0.0382576, 6.91879, -11.4595) +shape = SubResource("BoxShape3D_edwv6") [node name="CollisionShape3D2" type="CollisionShape3D" parent="Collision/StaticBody3D"] -transform = Transform3D(1.13506, 0, 0, 0, 1, 0, 0, 0, 1.3337, 8.99317, 21, 24.1) -shape = SubResource("ConcavePolygonShape3D_hf7tw") +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0.0382576, 6.91879, 10.6719) +shape = SubResource("BoxShape3D_edwv6") [node name="CollisionShape3D3" type="CollisionShape3D" parent="Collision/StaticBody3D"] -transform = Transform3D(10.0219, 0, 0, 0, 7.76837, 0, 0, 0, 6.69459, 9.14257, 21.2356, 14.7484) -shape = SubResource("ConcavePolygonShape3D_u6553") +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -0.138073, 6.91879, -27.9776) +shape = SubResource("BoxShape3D_cgkx3") + +[node name="CollisionShape3D12" type="CollisionShape3D" parent="Collision/StaticBody3D"] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 1.97484, 6.91879, -27.8323) +shape = SubResource("BoxShape3D_3acsh") + +[node name="CollisionShape3D18" type="CollisionShape3D" parent="Collision/StaticBody3D"] +transform = Transform3D(-4.37114e-08, 0, 1, 0, 1, 0, -1, 0, -4.37114e-08, -18.0343, 6.91879, -0.556886) +shape = SubResource("BoxShape3D_p41ju") + +[node name="CollisionShape3D13" type="CollisionShape3D" parent="Collision/StaticBody3D"] +transform = Transform3D(-4.37114e-08, 0, 1, 0, 1, 0, -1, 0, -4.37114e-08, 18.0687, 6.91879, -0.00398219) +shape = SubResource("BoxShape3D_3acsh") [node name="CollisionShape3D4" type="CollisionShape3D" parent="Collision/StaticBody3D"] -transform = Transform3D(10.0219, 0, 0, 0, 7.76837, 0, 0, 0, 6.69459, 9.08319, 21.2356, 34.344) -shape = SubResource("ConcavePolygonShape3D_s2sdi") +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 10.0536, 6.91879, 27.9582) +shape = SubResource("BoxShape3D_t4uvx") [node name="CollisionShape3D5" type="CollisionShape3D" parent="Collision/StaticBody3D"] -transform = Transform3D(2.0328, 0, 0, 0, 4.81285, 0, 0, 0, 2.0328, -2.80237, 20.0794, 2.56641) -shape = SubResource("ConcavePolygonShape3D_lqd4p") +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -10.0809, 6.91879, 27.9582) +shape = SubResource("BoxShape3D_t4uvx") [node name="CollisionShape3D6" type="CollisionShape3D" parent="Collision/StaticBody3D"] -transform = Transform3D(2.0328, 0, 0, 0, 4.81285, 0, 0, 0, 2.0328, 21.1149, 20.0794, 46.4933) -shape = SubResource("ConcavePolygonShape3D_orydj") +transform = Transform3D(-4.37114e-08, 0, 1, 0, 1, 0, -1, 0, -4.37114e-08, 17.9819, 6.91879, -19.9784) +shape = SubResource("BoxShape3D_rroba") [node name="CollisionShape3D7" type="CollisionShape3D" parent="Collision/StaticBody3D"] -transform = Transform3D(2.0328, 0, 0, 0, 4.81285, 0, 0, 0, 2.0328, -2.80237, 20.0794, 46.4933) -shape = SubResource("ConcavePolygonShape3D_7ueaq") +transform = Transform3D(-4.37114e-08, 0, 1, 0, 1, 0, -1, 0, -4.37114e-08, 17.9819, 6.91879, 0.0164213) +shape = SubResource("BoxShape3D_hv20v") + +[node name="CollisionShape3D8" type="CollisionShape3D" parent="Collision/StaticBody3D"] +transform = Transform3D(-4.37114e-08, 0, 1, 0, 1, 0, -1, 0, -4.37114e-08, 17.9819, 6.91879, 20.0044) +shape = SubResource("BoxShape3D_hv20v") + +[node name="CollisionShape3D9" type="CollisionShape3D" parent="Collision/StaticBody3D"] +transform = Transform3D(-4.37114e-08, 0, 1, 0, 1, 0, -1, 0, -4.37114e-08, -17.9973, 6.91879, -22.0796) +shape = SubResource("BoxShape3D_6fxlg") + +[node name="CollisionShape3D10" type="CollisionShape3D" parent="Collision/StaticBody3D"] +transform = Transform3D(-4.37114e-08, 0, 1, 0, 1, 0, -1, 0, -4.37114e-08, -17.9973, 6.91879, -0.0288277) +shape = SubResource("BoxShape3D_aicqs") + +[node name="CollisionShape3D11" type="CollisionShape3D" parent="Collision/StaticBody3D"] +transform = Transform3D(-4.37114e-08, 0, 1, 0, 1, 0, -1, 0, -4.37114e-08, -17.9772, 6.91879, 21.8806) +shape = SubResource("BoxShape3D_4v3h5") + +[node name="CollisionShape3D14" type="CollisionShape3D" parent="Collision/StaticBody3D"] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -16.2915, 4.34448, 26.1873) +shape = SubResource("CylinderShape3D_edwv6") + +[node name="CollisionShape3D15" type="CollisionShape3D" parent="Collision/StaticBody3D"] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 16.3079, 4.34448, 26.1873) +shape = SubResource("CylinderShape3D_edwv6") + +[node name="CollisionShape3D16" type="CollisionShape3D" parent="Collision/StaticBody3D"] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 16.3079, 4.34448, -26.2228) +shape = SubResource("CylinderShape3D_edwv6") + +[node name="CollisionShape3D17" type="CollisionShape3D" parent="Collision/StaticBody3D"] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -16.3445, 4.34448, -26.2228) +shape = SubResource("CylinderShape3D_edwv6") + +[node name="CollisionShape3D20" type="CollisionShape3D" parent="Collision/StaticBody3D"] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 17.5325, 1.83023, 12.6272) +shape = SubResource("CylinderShape3D_cgkx3") + +[node name="CollisionShape3D21" type="CollisionShape3D" parent="Collision/StaticBody3D"] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 17.5325, 1.83023, 7.36076) +shape = SubResource("CylinderShape3D_cgkx3") + +[node name="CollisionShape3D22" type="CollisionShape3D" parent="Collision/StaticBody3D"] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 17.5325, 1.83023, -7.44349) +shape = SubResource("CylinderShape3D_cgkx3") + +[node name="CollisionShape3D23" type="CollisionShape3D" parent="Collision/StaticBody3D"] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 17.5325, 1.83023, -12.6368) +shape = SubResource("CylinderShape3D_cgkx3") + +[node name="CollisionShape3D24" type="CollisionShape3D" parent="Collision/StaticBody3D"] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -17.4435, 1.83023, -11.4191) +shape = SubResource("CylinderShape3D_cgkx3") + +[node name="CollisionShape3D25" type="CollisionShape3D" parent="Collision/StaticBody3D"] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -17.4435, 1.83023, -16.625) +shape = SubResource("CylinderShape3D_cgkx3") + +[node name="CollisionShape3D26" type="CollisionShape3D" parent="Collision/StaticBody3D"] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -17.4435, 1.83023, 16.6984) +shape = SubResource("CylinderShape3D_cgkx3") + +[node name="CollisionShape3D27" type="CollisionShape3D" parent="Collision/StaticBody3D"] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -17.4435, 1.83023, 11.4925) +shape = SubResource("CylinderShape3D_cgkx3") + +[node name="CollisionShape3D28" type="CollisionShape3D" parent="Collision/StaticBody3D"] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -2.64097, 1.86793, 27.5263) +shape = SubResource("CylinderShape3D_cgkx3") + +[node name="CollisionShape3D29" type="CollisionShape3D" parent="Collision/StaticBody3D"] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 2.62243, 1.83023, 27.5164) +shape = SubResource("CylinderShape3D_cgkx3") + +[node name="CollisionShape3D19" type="CollisionShape3D" parent="Collision/StaticBody3D"] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -0.0162659, -0.480738, -0.0164795) +shape = SubResource("BoxShape3D_wupo0") [node name="Spawn Points" type="Node3D" parent="."] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 3, 0) -visible = false [node name="PlayerSpawn" type="Marker3D" parent="Spawn Points"] unique_name_in_owner = true @@ -1780,7 +1886,6 @@ transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 5.77329, 2.00295, -18.2136) [node name="Room" type="Node3D" parent="."] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 2, 0) -visible = false [node name="Room" type="Area3D" parent="Room"] unique_name_in_owner = true @@ -1788,29 +1893,21 @@ collision_layer = 0 collision_mask = 10 [node name="CollisionShape3D" type="CollisionShape3D" parent="Room/Room"] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0.04566, 1.9843, 0) +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0.000921249, 1.9843, -0.0498047) shape = SubResource("BoxShape3D_2nfuf") -[node name="Minimap" type="Node3D" parent="."] - -[node name="Minimap" type="MeshInstance3D" parent="Minimap"] +[node name="MinimapShadow" type="Node3D" parent="Room"] unique_name_in_owner = true -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 1) -visible = false + +[node name="MeshInstance3D" type="MeshInstance3D" parent="Room/MinimapShadow"] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -0.0202004, -4.5678, -0.0941367) layers = 2 -mesh = SubResource("PlaneMesh_44h5a") -skeleton = NodePath("") -surface_material_override/0 = SubResource("StandardMaterial3D_8fw5d") +sorting_offset = 100.0 +mesh = SubResource("PlaneMesh_edwv6") -[node name="GPUParticles3D2" type="GPUParticles3D" parent="."] -transform = Transform3D(0.804, 0, 0, 0, 0.247, 0, 0, 0, 1.267, -0.599395, 5.23328, 0.999428) -amount = 20 -lifetime = 41.19 -local_coords = true -process_material = SubResource("ParticleProcessMaterial_iskcw") -draw_pass_1 = SubResource("QuadMesh_0ydkh") +[node name="Lights" type="Node3D" parent="."] -[node name="OmniLight3D" type="OmniLight3D" parent="."] +[node name="OmniLight3D" type="OmniLight3D" parent="Lights"] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -15.4526, 4.83975, 26.2586) light_color = Color(0.939964, 0.858607, 0.64025, 1) light_energy = 4.956 @@ -1819,7 +1916,7 @@ shadow_enabled = true omni_range = 20.0 omni_attenuation = 1.231 -[node name="OmniLight3D2" type="OmniLight3D" parent="."] +[node name="OmniLight3D2" type="OmniLight3D" parent="Lights"] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 15.0944, 4.97055, 26.2237) light_color = Color(0.939964, 0.858607, 0.64025, 1) light_energy = 4.956 @@ -1828,7 +1925,7 @@ shadow_enabled = true omni_range = 20.0 omni_attenuation = 1.231 -[node name="OmniLight3D5" type="OmniLight3D" parent="."] +[node name="OmniLight3D5" type="OmniLight3D" parent="Lights"] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -6.45265, 2.48991, 1.25865) light_color = Color(0.939964, 0.858607, 0.64025, 1) light_energy = 2.387 @@ -1837,7 +1934,7 @@ shadow_enabled = true omni_range = 20.0 omni_attenuation = 1.231 -[node name="OmniLight3D6" type="OmniLight3D" parent="."] +[node name="OmniLight3D6" type="OmniLight3D" parent="Lights"] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 7.09441, 2.48784, 1.22373) light_color = Color(0.939964, 0.858607, 0.64025, 1) light_energy = 2.387 @@ -1846,7 +1943,7 @@ shadow_enabled = true omni_range = 20.0 omni_attenuation = 1.231 -[node name="OmniLight3D3" type="OmniLight3D" parent="."] +[node name="OmniLight3D3" type="OmniLight3D" parent="Lights"] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -15.4526, 3.48991, -24.3261) light_color = Color(0.939964, 0.858607, 0.64025, 1) light_energy = 4.956 @@ -1855,7 +1952,7 @@ shadow_enabled = true omni_range = 20.0 omni_attenuation = 1.231 -[node name="OmniLight3D4" type="OmniLight3D" parent="."] +[node name="OmniLight3D4" type="OmniLight3D" parent="Lights"] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 15.0944, 5.00923, -24.361) light_color = Color(0.939964, 0.858607, 0.64025, 1) light_energy = 4.956 @@ -1864,7 +1961,19 @@ shadow_enabled = true omni_range = 20.0 omni_attenuation = 1.231 -[node name="SpotLight3D" type="SpotLight3D" parent="."] +[node name="OmniLight3D7" type="OmniLight3D" parent="Lights"] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 4, -10) +shadow_enabled = true +omni_range = 3.747 +omni_attenuation = -0.85 + +[node name="OmniLight3D8" type="OmniLight3D" parent="Lights"] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 4, 10.1454) +shadow_enabled = true +omni_range = 3.747 +omni_attenuation = -0.85 + +[node name="SpotLight3D" type="SpotLight3D" parent="Lights"] transform = Transform3D(1, 0, 0, 0, -4.37114e-08, 1, 0, -1, -4.37114e-08, 0, 6, -10) light_energy = 10.618 shadow_enabled = true @@ -1872,7 +1981,7 @@ spot_range = 12.0 spot_attenuation = 0.65 spot_angle = 38.9975 -[node name="SpotLight3D2" type="SpotLight3D" parent="."] +[node name="SpotLight3D2" type="SpotLight3D" parent="Lights"] transform = Transform3D(1, 0, 0, 0, -4.37114e-08, 1, 0, -1, -4.37114e-08, 0, 7, 11) light_energy = 10.618 shadow_enabled = true @@ -1880,22 +1989,20 @@ spot_range = 12.0 spot_attenuation = 0.65 spot_angle = 38.9975 -[node name="FogVolume" type="FogVolume" parent="."] +[node name="VFX" type="Node3D" parent="."] + +[node name="GPUParticles3D2" type="GPUParticles3D" parent="VFX"] +transform = Transform3D(0.804, 0, 0, 0, 0.247, 0, 0, 0, 1.267, -0.599395, 5.23328, 0.999428) +amount = 20 +lifetime = 41.19 +local_coords = true +process_material = SubResource("ParticleProcessMaterial_iskcw") +draw_pass_1 = SubResource("QuadMesh_0ydkh") + +[node name="FogVolume" type="FogVolume" parent="VFX"] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 8.5, 10) size = Vector3(6, 5, 8) -[node name="FogVolume2" type="FogVolume" parent="."] +[node name="FogVolume2" type="FogVolume" parent="VFX"] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 8.5, -10) size = Vector3(6, 5, 8) - -[node name="OmniLight3D7" type="OmniLight3D" parent="."] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 4, -10) -shadow_enabled = true -omni_range = 3.747 -omni_attenuation = -0.85 - -[node name="OmniLight3D8" type="OmniLight3D" parent="."] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 4, 10.1454) -shadow_enabled = true -omni_range = 3.747 -omni_attenuation = -0.85 diff --git a/Zennysoft.Game.Ma/src/map/dungeon/rooms/Set A/14. Ran's Room.tscn b/Zennysoft.Game.Ma/src/map/dungeon/rooms/Set A/14. Ran's Room.tscn index 45944ce8..d536c159 100644 --- a/Zennysoft.Game.Ma/src/map/dungeon/rooms/Set A/14. Ran's Room.tscn +++ b/Zennysoft.Game.Ma/src/map/dungeon/rooms/Set A/14. Ran's Room.tscn @@ -1,4 +1,4 @@ -[gd_scene load_steps=146 format=4 uid="uid://c5eon2dk4ojua"] +[gd_scene load_steps=148 format=4 uid="uid://c5eon2dk4ojua"] [ext_resource type="Script" uid="uid://bccyfmj8ikewh" path="res://src/map/dungeon/code/SpecialRoom.cs" id="1_plyiv"] [ext_resource type="Script" uid="uid://dcqssoikr3pl7" path="res://src/npc/Npc.cs" id="2_xyps6"] @@ -1732,6 +1732,13 @@ transitions = ["Start", "idle", SubResource("AnimationNodeStateMachineTransition [sub_resource type="BoxShape3D" id="BoxShape3D_81jou"] size = Vector3(32, 8, 36) +[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_r0cck"] +albedo_color = Color(0, 0, 0, 1) + +[sub_resource type="PlaneMesh" id="PlaneMesh_2wejk"] +material = SubResource("StandardMaterial3D_r0cck") +size = Vector2(33, 37) + [sub_resource type="Curve" id="Curve_aw882"] _limits = [-2.0, 2.0, 0.0, 1.0] _data = [Vector2(0.00358423, 0.230769), 0.0, 0.0, 0, 0, Vector2(0.982079, -1.03846), 0.0, 0.0, 0, 0] @@ -2077,6 +2084,15 @@ collision_mask = 10 transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0.04566, 1.9843, 0) shape = SubResource("BoxShape3D_81jou") +[node name="MinimapShadow" type="Node3D" parent="Room"] +unique_name_in_owner = true + +[node name="MeshInstance3D" type="MeshInstance3D" parent="Room/MinimapShadow"] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -0.0729809, 0, -0.117586) +layers = 2 +sorting_offset = 100.0 +mesh = SubResource("PlaneMesh_2wejk") + [node name="Lights" type="Node3D" parent="."] [node name="OmniLight3D" type="OmniLight3D" parent="Lights"] diff --git a/Zennysoft.Game.Ma/src/map/dungeon/rooms/Set A/16. Seshat's Room.tscn b/Zennysoft.Game.Ma/src/map/dungeon/rooms/Set A/16. Seshat's Room.tscn index ef5c3c1f..1e37bdab 100644 --- a/Zennysoft.Game.Ma/src/map/dungeon/rooms/Set A/16. Seshat's Room.tscn +++ b/Zennysoft.Game.Ma/src/map/dungeon/rooms/Set A/16. Seshat's Room.tscn @@ -1,4 +1,4 @@ -[gd_scene load_steps=20 format=3 uid="uid://crf30tibwsnri"] +[gd_scene load_steps=22 format=3 uid="uid://crf30tibwsnri"] [ext_resource type="Script" uid="uid://bccyfmj8ikewh" path="res://src/map/dungeon/code/SpecialRoom.cs" id="1_q135t"] [ext_resource type="PackedScene" uid="uid://cvty2cdttg7bh" path="res://src/map/dungeon/models/Area 1/Seshat/SeshFix.glb" id="2_q135t"] @@ -38,6 +38,13 @@ radius = 0.452637 [sub_resource type="BoxShape3D" id="BoxShape3D_1cfoy"] size = Vector3(36, 8, 28) +[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_xv0vr"] +albedo_color = Color(0, 0, 0, 1) + +[sub_resource type="PlaneMesh" id="PlaneMesh_q135t"] +material = SubResource("StandardMaterial3D_xv0vr") +size = Vector2(36.5, 29) + [sub_resource type="Curve" id="Curve_hiy7k"] _limits = [-2.0, 2.0, 0.0, 1.0] _data = [Vector2(0.00358423, 0.230769), 0.0, 0.0, 0, 0, Vector2(0.982079, -1.03846), 0.0, 0.0, 0, 0] @@ -148,7 +155,6 @@ shape = SubResource("CylinderShape3D_xv0vr") [node name="Room" type="Node3D" parent="."] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0.479425, 2.10946, 0) -visible = false [node name="Room" type="Area3D" parent="Room"] unique_name_in_owner = true @@ -159,6 +165,15 @@ collision_mask = 10 transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0.04566, 1.9843, 0) shape = SubResource("BoxShape3D_1cfoy") +[node name="MinimapShadow" type="Node3D" parent="Room"] +unique_name_in_owner = true + +[node name="MeshInstance3D" type="MeshInstance3D" parent="Room/MinimapShadow"] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0.434504, -2.45955, 0.0633774) +layers = 2 +sorting_offset = 100.0 +mesh = SubResource("PlaneMesh_q135t") + [node name="NPC" type="Node3D" parent="."] [node name="Seshat" parent="NPC" instance=ExtResource("31_1cfoy")] diff --git a/Zennysoft.Game.Ma/src/map/dungeon/rooms/Set A/17. Gesthemii's Room.tscn b/Zennysoft.Game.Ma/src/map/dungeon/rooms/Set A/17. Gesthemii's Room.tscn index 66ff86e0..7275241a 100644 --- a/Zennysoft.Game.Ma/src/map/dungeon/rooms/Set A/17. Gesthemii's Room.tscn +++ b/Zennysoft.Game.Ma/src/map/dungeon/rooms/Set A/17. Gesthemii's Room.tscn @@ -1,4 +1,4 @@ -[gd_scene load_steps=115 format=4 uid="uid://cw33vpar237pm"] +[gd_scene load_steps=117 format=4 uid="uid://cw33vpar237pm"] [ext_resource type="Script" uid="uid://bccyfmj8ikewh" path="res://src/map/dungeon/code/SpecialRoom.cs" id="1_yqj60"] [ext_resource type="Texture2D" uid="uid://divd0yl3mgaqp" path="res://src/map/dungeon/models/Area 1/Gesthemii/gesthfix_SNEK TILE.png" id="2_4l7hs"] @@ -1517,6 +1517,13 @@ data = PackedVector3Array(-1, -1, -0.8333, -1, 1, -1, -1, -1, -1, -1, -1, -0.833 [sub_resource type="BoxShape3D" id="BoxShape3D_43nhx"] size = Vector3(36, 6, 20) +[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_m6nq4"] +albedo_color = Color(0, 0, 0, 1) + +[sub_resource type="PlaneMesh" id="PlaneMesh_4l7hs"] +material = SubResource("StandardMaterial3D_m6nq4") +size = Vector2(37, 19) + [sub_resource type="Curve" id="Curve_h3ucl"] _limits = [-2.0, 2.0, 0.0, 1.0] _data = [Vector2(0.00358423, 0.230769), 0.0, 0.0, 0, 0, Vector2(0.982079, -1.03846), 0.0, 0.0, 0, 0] @@ -1690,6 +1697,15 @@ collision_mask = 10 transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0.04566, 0.894945, 0) shape = SubResource("BoxShape3D_43nhx") +[node name="MinimapShadow" type="Node3D" parent="Room"] +unique_name_in_owner = true + +[node name="MeshInstance3D" type="MeshInstance3D" parent="Room/MinimapShadow"] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0.0200825, -2.1338, 1.01485) +layers = 2 +sorting_offset = 100.0 +mesh = SubResource("PlaneMesh_4l7hs") + [node name="NPC" type="Node3D" parent="."] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 2.46673, 0) diff --git a/Zennysoft.Game.Ma/src/map/dungeon/rooms/Set A/19. Floor Exit A.tscn b/Zennysoft.Game.Ma/src/map/dungeon/rooms/Set A/19. Floor Exit A.tscn index e3cb73a0..49076ba5 100644 --- a/Zennysoft.Game.Ma/src/map/dungeon/rooms/Set A/19. Floor Exit A.tscn +++ b/Zennysoft.Game.Ma/src/map/dungeon/rooms/Set A/19. Floor Exit A.tscn @@ -1,4 +1,4 @@ -[gd_scene load_steps=64 format=3 uid="uid://cihbmyo0ltq4m"] +[gd_scene load_steps=66 format=3 uid="uid://cihbmyo0ltq4m"] [ext_resource type="PackedScene" uid="uid://c77acs4px36hq" path="res://src/map/dungeon/models/Area 1/Exit/A1-Exit.glb" id="2_54fgm"] [ext_resource type="Script" uid="uid://bd824eigybu51" path="res://src/map/dungeon/code/ExitRoom.cs" id="2_umdkt"] @@ -28,6 +28,13 @@ size = Vector3(5.96239, 4.04241, 0.991822) [sub_resource type="BoxShape3D" id="BoxShape3D_tgauh"] size = Vector3(20, 20, 36) +[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_k6ywg"] +albedo_color = Color(0, 0, 0, 1) + +[sub_resource type="PlaneMesh" id="PlaneMesh_54fgm"] +material = SubResource("StandardMaterial3D_k6ywg") +size = Vector2(8, 26) + [sub_resource type="Curve" id="Curve_l1s1j"] _limits = [-2.0, 2.0, 0.0, 1.0] _data = [Vector2(0.00358423, 0.230769), 0.0, 0.0, 0, 0, Vector2(0.982079, -1.03846), 0.0, 0.0, 0, 0] @@ -515,6 +522,15 @@ collision_mask = 10 transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0.04566, -4.02862, -1.19209e-07) shape = SubResource("BoxShape3D_tgauh") +[node name="MinimapShadow" type="Node3D" parent="Room"] +unique_name_in_owner = true + +[node name="MeshInstance3D" type="MeshInstance3D" parent="Room/MinimapShadow"] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0.020082, -2.55592, 3.41991) +layers = 2 +sorting_offset = 100.0 +mesh = SubResource("PlaneMesh_54fgm") + [node name="Lights" type="Node3D" parent="."] [node name="OmniLight3D3" type="OmniLight3D" parent="Lights"] diff --git a/Zennysoft.Game.Ma/src/map/dungeon/rooms/Set A/Circle Room.tscn b/Zennysoft.Game.Ma/src/map/dungeon/rooms/Set A/Circle Room.tscn index 0fae8858..a836c679 100644 --- a/Zennysoft.Game.Ma/src/map/dungeon/rooms/Set A/Circle Room.tscn +++ b/Zennysoft.Game.Ma/src/map/dungeon/rooms/Set A/Circle Room.tscn @@ -1,4 +1,4 @@ -[gd_scene load_steps=23 format=3 uid="uid://b8u3sfhexlhfu"] +[gd_scene load_steps=25 format=3 uid="uid://b8u3sfhexlhfu"] [ext_resource type="PackedScene" uid="uid://cvajnig5nw537" path="res://src/map/dungeon/models/Area 1/WaterCircle/A1-WateryCircle.glb" id="1_1t1ov"] [ext_resource type="Script" uid="uid://dhollu4j3pynq" path="res://src/map/dungeon/code/MonsterRoom.cs" id="1_k4n66"] @@ -97,6 +97,13 @@ data = PackedVector3Array(-1, -0.4965, 0.4905, -1, 0.04, 0.4905, -1, 0.04, -0.47 [sub_resource type="BoxShape3D" id="BoxShape3D_yramv"] size = Vector3(12.0847, 8, 12.0664) +[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_unlia"] +albedo_color = Color(0, 0, 0, 1) + +[sub_resource type="PlaneMesh" id="PlaneMesh_qjvxm"] +material = SubResource("StandardMaterial3D_unlia") +size = Vector2(29, 29) + [sub_resource type="Curve" id="Curve_vo6nb"] _limits = [-2.0, 2.0, 0.0, 1.0] _data = [Vector2(0.00358423, 0.230769), 0.0, 0.0, 0, 0, Vector2(0.982079, -1.03846), 0.0, 0.0, 0, 0] @@ -228,6 +235,15 @@ transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 10.3539, 4.09071, 8.84395) visible = false shape = SubResource("BoxShape3D_yramv") +[node name="MinimapShadow" type="Node3D" parent="Room"] +unique_name_in_owner = true + +[node name="MeshInstance3D" type="MeshInstance3D" parent="Room/MinimapShadow"] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 10.3289, -2.94209, 8.95937) +layers = 2 +sorting_offset = 100.0 +mesh = SubResource("PlaneMesh_qjvxm") + [node name="Lights" type="Node3D" parent="."] [node name="OmniLight3D" type="OmniLight3D" parent="Lights"] diff --git a/Zennysoft.Game.Ma/src/map/dungeon/rooms/Set A/Gallery A1.tscn b/Zennysoft.Game.Ma/src/map/dungeon/rooms/Set A/Gallery A1.tscn index 030787d8..4f1f91a7 100644 --- a/Zennysoft.Game.Ma/src/map/dungeon/rooms/Set A/Gallery A1.tscn +++ b/Zennysoft.Game.Ma/src/map/dungeon/rooms/Set A/Gallery A1.tscn @@ -1,4 +1,4 @@ -[gd_scene load_steps=20 format=3 uid="uid://d2fbbjlkiqlao"] +[gd_scene load_steps=22 format=3 uid="uid://d2fbbjlkiqlao"] [ext_resource type="PackedScene" uid="uid://c72vrk43ky2y0" path="res://src/map/dungeon/models/Area 1/Gallery/A1Gallery.glb" id="1_4yixp"] [ext_resource type="Script" uid="uid://dhollu4j3pynq" path="res://src/map/dungeon/code/MonsterRoom.cs" id="1_wk80w"] @@ -20,6 +20,13 @@ size = Vector3(12.0425, 0.1, 23.948) [sub_resource type="BoxShape3D" id="BoxShape3D_5pjpw"] size = Vector3(12.0074, 4.00659, 23.9081) +[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_wk80w"] +albedo_color = Color(0, 0, 0, 1) + +[sub_resource type="PlaneMesh" id="PlaneMesh_w4hfg"] +material = SubResource("StandardMaterial3D_wk80w") +size = Vector2(13, 25) + [sub_resource type="Gradient" id="Gradient_w4hfg"] [sub_resource type="GradientTexture2D" id="GradientTexture2D_wbbo3"] @@ -161,6 +168,15 @@ collision_mask = 10 transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 5.98005, 0.0134397, 12.0133) shape = SubResource("BoxShape3D_5pjpw") +[node name="MinimapShadow" type="Node3D" parent="Room"] +unique_name_in_owner = true + +[node name="MeshInstance3D" type="MeshInstance3D" parent="Room/MinimapShadow"] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 10.3225, -2.2025, 12.8518) +layers = 2 +sorting_offset = 100.0 +mesh = SubResource("PlaneMesh_w4hfg") + [node name="Lights" type="Node3D" parent="."] [node name="OmniLight3D" type="OmniLight3D" parent="Lights"] diff --git a/Zennysoft.Game.Ma/src/map/dungeon/rooms/Set A/MazeFloor.tscn b/Zennysoft.Game.Ma/src/map/dungeon/rooms/Set A/MazeFloor.tscn index dd0caf46..4c1627a4 100644 --- a/Zennysoft.Game.Ma/src/map/dungeon/rooms/Set A/MazeFloor.tscn +++ b/Zennysoft.Game.Ma/src/map/dungeon/rooms/Set A/MazeFloor.tscn @@ -561,6 +561,9 @@ collision_mask = 10 transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -1.29049, -10.7568, -11.6103) shape = SubResource("BoxShape3D_rhdyw") +[node name="MinimapShadow" type="Node3D" parent="Room"] +unique_name_in_owner = true + [node name="Collisions" type="Node3D" parent="."] [node name="StaticBody3D" type="StaticBody3D" parent="Collisions"] diff --git a/Zennysoft.Game.Ma/src/map/dungeon/rooms/Set B/20. Antechamber 3.tscn b/Zennysoft.Game.Ma/src/map/dungeon/rooms/Set B/20. Antechamber 3.tscn index 4fe15922..82e15029 100644 --- a/Zennysoft.Game.Ma/src/map/dungeon/rooms/Set B/20. Antechamber 3.tscn +++ b/Zennysoft.Game.Ma/src/map/dungeon/rooms/Set B/20. Antechamber 3.tscn @@ -1,4 +1,4 @@ -[gd_scene load_steps=16 format=3 uid="uid://dadl2rua1ovhq"] +[gd_scene load_steps=18 format=3 uid="uid://dadl2rua1ovhq"] [ext_resource type="Script" uid="uid://dhollu4j3pynq" path="res://src/map/dungeon/code/MonsterRoom.cs" id="2_rsrpd"] [ext_resource type="PackedScene" uid="uid://0p07shc8wsja" path="res://src/map/dungeon/models/Area 2/Antechamber/A2-Antechamber.glb" id="2_v2k4g"] @@ -24,6 +24,13 @@ size = Vector3(16.0869, 0.001, 16.1317) [sub_resource type="BoxShape3D" id="BoxShape3D_nuwng"] size = Vector3(20, 6, 16) +[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_a6kbu"] +albedo_color = Color(0, 0, 0, 1) + +[sub_resource type="PlaneMesh" id="PlaneMesh_f607g"] +material = SubResource("StandardMaterial3D_a6kbu") +size = Vector2(20.5, 17) + [sub_resource type="Curve" id="Curve_v2k4g"] _limits = [-2.0, 2.0, 0.0, 1.0] _data = [Vector2(0.00358423, 0.230769), 0.0, 0.0, 0, 0, Vector2(0.982079, -1.03846), 0.0, 0.0, 0, 0] @@ -172,6 +179,15 @@ collision_mask = 10 transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0.04566, -10.6408, -1.19209e-07) shape = SubResource("BoxShape3D_nuwng") +[node name="MinimapShadow" type="Node3D" parent="Room"] +unique_name_in_owner = true + +[node name="MeshInstance3D" type="MeshInstance3D" parent="Room/MinimapShadow"] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0.020082, 0, 0.0304482) +layers = 2 +sorting_offset = 100.0 +mesh = SubResource("PlaneMesh_f607g") + [node name="Lights" type="Node3D" parent="."] [node name="OmniLight3D" type="OmniLight3D" parent="Lights"] diff --git a/Zennysoft.Game.Ma/src/map/dungeon/rooms/Set B/21. Gallery Room.tscn b/Zennysoft.Game.Ma/src/map/dungeon/rooms/Set B/21. Gallery Room.tscn index d3be08ac..c5b07558 100644 --- a/Zennysoft.Game.Ma/src/map/dungeon/rooms/Set B/21. Gallery Room.tscn +++ b/Zennysoft.Game.Ma/src/map/dungeon/rooms/Set B/21. Gallery Room.tscn @@ -1,4 +1,4 @@ -[gd_scene load_steps=17 format=3 uid="uid://dra1mqcqhw7g0"] +[gd_scene load_steps=19 format=3 uid="uid://dra1mqcqhw7g0"] [ext_resource type="PackedScene" uid="uid://dxgo871lwt6ph" path="res://src/map/dungeon/models/Area 2/Gallery/A2-Gallery.glb" id="2_ghwoy"] [ext_resource type="Script" uid="uid://dhollu4j3pynq" path="res://src/map/dungeon/code/MonsterRoom.cs" id="2_snhgn"] @@ -31,6 +31,13 @@ size = Vector3(16.0869, 0.001, 16.1317) [sub_resource type="BoxShape3D" id="BoxShape3D_wex81"] size = Vector3(16, 6, 16) +[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_unlia"] +albedo_color = Color(0, 0, 0, 1) + +[sub_resource type="PlaneMesh" id="PlaneMesh_0m8be"] +material = SubResource("StandardMaterial3D_unlia") +size = Vector2(17, 17) + [sub_resource type="Curve" id="Curve_06r4o"] _limits = [-2.0, 2.0, 0.0, 1.0] _data = [Vector2(0.00358423, 0.230769), 0.0, 0.0, 0, 0, Vector2(0.982079, -1.03846), 0.0, 0.0, 0, 0] @@ -173,8 +180,19 @@ collision_mask = 10 transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0.04566, -10.6408, -1.19209e-07) shape = SubResource("BoxShape3D_wex81") -[node name="OmniLight3D" type="OmniLight3D" parent="Room"] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0.288392, 4.33054, -0.0836668) +[node name="MinimapShadow" type="Node3D" parent="Room"] +unique_name_in_owner = true + +[node name="MeshInstance3D" type="MeshInstance3D" parent="Room/MinimapShadow"] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0.020082, -2.09774, 0.0293603) +layers = 2 +sorting_offset = 100.0 +mesh = SubResource("PlaneMesh_0m8be") + +[node name="Lights" type="Node3D" parent="."] + +[node name="OmniLight3D" type="OmniLight3D" parent="Lights"] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0.288392, 5.81418, -0.0836668) light_energy = 4.5 shadow_enabled = true omni_range = 13.0 diff --git a/Zennysoft.Game.Ma/src/map/dungeon/rooms/Set B/22. Pit Room B.tscn b/Zennysoft.Game.Ma/src/map/dungeon/rooms/Set B/22. Pit Room B.tscn index 0ffbf21f..7922ca83 100644 --- a/Zennysoft.Game.Ma/src/map/dungeon/rooms/Set B/22. Pit Room B.tscn +++ b/Zennysoft.Game.Ma/src/map/dungeon/rooms/Set B/22. Pit Room B.tscn @@ -1,4 +1,4 @@ -[gd_scene load_steps=21 format=3 uid="uid://cq82tqhlshn1k"] +[gd_scene load_steps=23 format=3 uid="uid://cq82tqhlshn1k"] [ext_resource type="Script" uid="uid://dhollu4j3pynq" path="res://src/map/dungeon/code/MonsterRoom.cs" id="2_7fo8x"] [ext_resource type="PackedScene" uid="uid://dycfeab5r3s1w" path="res://src/map/dungeon/models/Area 2/Pit/A2-Pit.glb" id="2_ycerh"] @@ -40,6 +40,13 @@ size = Vector3(52.1012, 0.001, 52.1391) [sub_resource type="BoxShape3D" id="BoxShape3D_d346t"] size = Vector3(36, 6, 36) +[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_unlia"] +albedo_color = Color(0, 0, 0, 1) + +[sub_resource type="PlaneMesh" id="PlaneMesh_hfmc7"] +material = SubResource("StandardMaterial3D_unlia") +size = Vector2(53, 53) + [sub_resource type="Curve" id="Curve_ycerh"] _limits = [-2.0, 2.0, 0.0, 1.0] _data = [Vector2(0.00358423, 0.230769), 0.0, 0.0, 0, 0, Vector2(0.982079, -1.03846), 0.0, 0.0, 0, 0] @@ -235,7 +242,6 @@ transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -8.76788, -1.76654, -10.247) [node name="Room" type="Node3D" parent="."] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 1.82181, 0) -visible = false [node name="Room" type="Area3D" parent="Room"] unique_name_in_owner = true @@ -247,6 +253,15 @@ collision_mask = 10 transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0.04566, -10.6408, -1.19209e-07) shape = SubResource("BoxShape3D_d346t") +[node name="MinimapShadow" type="Node3D" parent="Room"] +unique_name_in_owner = true + +[node name="MeshInstance3D" type="MeshInstance3D" parent="Room/MinimapShadow"] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0.020082, -2.09774, 0.0293603) +layers = 2 +sorting_offset = 100.0 +mesh = SubResource("PlaneMesh_hfmc7") + [node name="Lights" type="Node3D" parent="."] [node name="OmniLight3D" type="OmniLight3D" parent="Lights"] diff --git a/Zennysoft.Game.Ma/src/map/dungeon/rooms/Set B/23. Fountain Antechamber.tscn b/Zennysoft.Game.Ma/src/map/dungeon/rooms/Set B/23. Fountain Antechamber.tscn index f2c1e7e6..d975af4b 100644 --- a/Zennysoft.Game.Ma/src/map/dungeon/rooms/Set B/23. Fountain Antechamber.tscn +++ b/Zennysoft.Game.Ma/src/map/dungeon/rooms/Set B/23. Fountain Antechamber.tscn @@ -1,4 +1,4 @@ -[gd_scene load_steps=18 format=3 uid="uid://d1uldtsv8u8vw"] +[gd_scene load_steps=20 format=3 uid="uid://d1uldtsv8u8vw"] [ext_resource type="PackedScene" uid="uid://82gby88dqm0l" path="res://src/map/dungeon/models/Area 2/Fountain/A2-Fountain.glb" id="2_0wmhg"] [ext_resource type="Script" uid="uid://dhollu4j3pynq" path="res://src/map/dungeon/code/MonsterRoom.cs" id="2_dp1b6"] @@ -34,6 +34,13 @@ data = PackedVector3Array(27.7283, 2.9884, 14.2, 27.7283, 9.9474, 23.5664, 27.72 [sub_resource type="BoxShape3D" id="BoxShape3D_oifm3"] size = Vector3(20, 6, 16) +[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_h8hok"] +albedo_color = Color(0, 0, 0, 1) + +[sub_resource type="PlaneMesh" id="PlaneMesh_oe1fl"] +material = SubResource("StandardMaterial3D_h8hok") +size = Vector2(21, 17) + [sub_resource type="Curve" id="Curve_w6m53"] _limits = [-2.0, 2.0, 0.0, 1.0] _data = [Vector2(0.00358423, 0.230769), 0.0, 0.0, 0, 0, Vector2(0.982079, -1.03846), 0.0, 0.0, 0, 0] @@ -186,6 +193,15 @@ collision_mask = 10 transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0.04566, -10.6408, -1.19209e-07) shape = SubResource("BoxShape3D_oifm3") +[node name="MinimapShadow" type="Node3D" parent="Room"] +unique_name_in_owner = true + +[node name="MeshInstance3D" type="MeshInstance3D" parent="Room/MinimapShadow"] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0.020082, -2.09774, 0.0293603) +layers = 2 +sorting_offset = 100.0 +mesh = SubResource("PlaneMesh_oe1fl") + [node name="Lights" type="Node3D" parent="."] [node name="OmniLight3D" type="OmniLight3D" parent="Lights"] diff --git a/Zennysoft.Game.Ma/src/map/dungeon/rooms/Set B/24. Balcony Room 2.tscn b/Zennysoft.Game.Ma/src/map/dungeon/rooms/Set B/24. Balcony Room 2.tscn index 40f71621..afd2f619 100644 --- a/Zennysoft.Game.Ma/src/map/dungeon/rooms/Set B/24. Balcony Room 2.tscn +++ b/Zennysoft.Game.Ma/src/map/dungeon/rooms/Set B/24. Balcony Room 2.tscn @@ -1,4 +1,4 @@ -[gd_scene load_steps=33 format=3 uid="uid://bhqmpgpegcuu5"] +[gd_scene load_steps=35 format=3 uid="uid://bhqmpgpegcuu5"] [ext_resource type="PackedScene" uid="uid://bsppp04is0p3t" path="res://src/map/dungeon/models/Area 2/Balcony/A2-Balcony.glb" id="2_csh2d"] [ext_resource type="Script" uid="uid://dhollu4j3pynq" path="res://src/map/dungeon/code/MonsterRoom.cs" id="2_fp3eo"] @@ -76,6 +76,13 @@ size = Vector3(1, 2.717, 1) [sub_resource type="BoxShape3D" id="BoxShape3D_lyww4"] size = Vector3(36, 20, 32) +[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_nl2nb"] +albedo_color = Color(0, 0, 0, 1) + +[sub_resource type="PlaneMesh" id="PlaneMesh_coe44"] +material = SubResource("StandardMaterial3D_nl2nb") +size = Vector2(61, 49) + [sub_resource type="Curve" id="Curve_63d3w"] _limits = [-2.0, 2.0, 0.0, 1.0] _data = [Vector2(0.00358423, 0.230769), 0.0, 0.0, 0, 0, Vector2(0.982079, -1.03846), 0.0, 0.0, 0, 0] @@ -115,7 +122,6 @@ subdivide_depth = 1 script = ExtResource("2_fp3eo") [node name="Model" type="Node3D" parent="."] -visible = false [node name="A2-Balcony" parent="Model" instance=ExtResource("2_csh2d")] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -30.2198, -10.6702, 0) @@ -330,6 +336,15 @@ collision_mask = 10 transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0.04566, -7.8126, -1.19209e-07) shape = SubResource("BoxShape3D_lyww4") +[node name="MinimapShadow" type="Node3D" parent="Room"] +unique_name_in_owner = true + +[node name="MeshInstance3D" type="MeshInstance3D" parent="Room/MinimapShadow"] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0.020082, -2.09774, 4.08741) +layers = 2 +sorting_offset = 100.0 +mesh = SubResource("PlaneMesh_coe44") + [node name="Lights" type="Node3D" parent="."] [node name="OmniLight3D" type="OmniLight3D" parent="Lights"] diff --git a/Zennysoft.Game.Ma/src/map/dungeon/rooms/Set B/25. Pedestal Room.tscn b/Zennysoft.Game.Ma/src/map/dungeon/rooms/Set B/25. Pedestal Room.tscn index 344763d1..1fe2cd64 100644 --- a/Zennysoft.Game.Ma/src/map/dungeon/rooms/Set B/25. Pedestal Room.tscn +++ b/Zennysoft.Game.Ma/src/map/dungeon/rooms/Set B/25. Pedestal Room.tscn @@ -1,4 +1,4 @@ -[gd_scene load_steps=24 format=3 uid="uid://dbfkpodwvxmfe"] +[gd_scene load_steps=26 format=3 uid="uid://dbfkpodwvxmfe"] [ext_resource type="PackedScene" uid="uid://coxgcbcccj24q" path="res://src/map/dungeon/models/Area 2/Deadend/A2-Deadend.glb" id="2_3jq7h"] [ext_resource type="Script" uid="uid://dhollu4j3pynq" path="res://src/map/dungeon/code/MonsterRoom.cs" id="2_dhi6g"] @@ -36,6 +36,13 @@ radius = 0.452637 [sub_resource type="BoxShape3D" id="BoxShape3D_kske3"] size = Vector3(20, 6, 16) +[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_y6ow7"] +albedo_color = Color(0, 0, 0, 1) + +[sub_resource type="PlaneMesh" id="PlaneMesh_ew8nf"] +material = SubResource("StandardMaterial3D_y6ow7") +size = Vector2(21, 17) + [sub_resource type="Curve" id="Curve_k1t35"] _limits = [-2.0, 2.0, 0.0, 1.0] _data = [Vector2(0.00358423, 0.230769), 0.0, 0.0, 0, 0, Vector2(0.982079, -1.03846), 0.0, 0.0, 0, 0] @@ -204,6 +211,15 @@ collision_mask = 10 transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0.04566, -10.6408, -1.19209e-07) shape = SubResource("BoxShape3D_kske3") +[node name="MinimapShadow" type="Node3D" parent="Room"] +unique_name_in_owner = true + +[node name="MeshInstance3D" type="MeshInstance3D" parent="Room/MinimapShadow"] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0.020082, -2.09774, 0.0293603) +layers = 2 +sorting_offset = 100.0 +mesh = SubResource("PlaneMesh_ew8nf") + [node name="Lights" type="Node3D" parent="."] [node name="OmniLight3D" type="OmniLight3D" parent="Lights"] diff --git a/Zennysoft.Game.Ma/src/map/dungeon/rooms/Set B/26. Item Transfer Room B.tscn b/Zennysoft.Game.Ma/src/map/dungeon/rooms/Set B/26. Item Transfer Room B.tscn index c7969a3d..915511c0 100644 --- a/Zennysoft.Game.Ma/src/map/dungeon/rooms/Set B/26. Item Transfer Room B.tscn +++ b/Zennysoft.Game.Ma/src/map/dungeon/rooms/Set B/26. Item Transfer Room B.tscn @@ -1,4 +1,4 @@ -[gd_scene load_steps=17 format=3 uid="uid://d2k2v4bcybx3k"] +[gd_scene load_steps=19 format=3 uid="uid://d2k2v4bcybx3k"] [ext_resource type="Script" uid="uid://bccyfmj8ikewh" path="res://src/map/dungeon/code/SpecialRoom.cs" id="1_6bkq3"] [ext_resource type="PackedScene" uid="uid://1dm3irbxbf18" path="res://src/map/dungeon/models/Area 2/Hand/A2-Hand.glb" id="2_mjll6"] @@ -28,6 +28,13 @@ size = Vector3(4.24561, 6.43213, 0.318787) [sub_resource type="BoxShape3D" id="BoxShape3D_5vmve"] size = Vector3(12, 6, 16) +[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_k68oc"] +albedo_color = Color(0, 0, 0, 1) + +[sub_resource type="PlaneMesh" id="PlaneMesh_6bkq3"] +material = SubResource("StandardMaterial3D_k68oc") +size = Vector2(13, 17) + [sub_resource type="Curve" id="Curve_pie7o"] _limits = [-2.0, 2.0, 0.0, 1.0] _data = [Vector2(0.00358423, 0.230769), 0.0, 0.0, 0, 0, Vector2(0.982079, -1.03846), 0.0, 0.0, 0, 0] @@ -127,8 +134,17 @@ collision_mask = 10 transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0.04566, -10.6408, -1.19209e-07) shape = SubResource("BoxShape3D_5vmve") -[node name="Item Rescue" parent="." instance=ExtResource("5_6bkq3")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0.392338, 2.21357, 2.35609) +[node name="MinimapShadow" type="Node3D" parent="Room"] +unique_name_in_owner = true + +[node name="MeshInstance3D" type="MeshInstance3D" parent="Room/MinimapShadow"] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0.020082, -2.09774, 0.0293603) +layers = 2 +sorting_offset = 100.0 +mesh = SubResource("PlaneMesh_6bkq3") + +[node name="Item Rescue" parent="Room" instance=ExtResource("5_6bkq3")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0.392338, 0.53597, 2.35609) [node name="Lights" type="Node3D" parent="."] diff --git a/Zennysoft.Game.Ma/src/map/dungeon/rooms/Set B/27. Water Room B.tscn b/Zennysoft.Game.Ma/src/map/dungeon/rooms/Set B/27. Water Room B.tscn index cce3b1ac..12afddd2 100644 --- a/Zennysoft.Game.Ma/src/map/dungeon/rooms/Set B/27. Water Room B.tscn +++ b/Zennysoft.Game.Ma/src/map/dungeon/rooms/Set B/27. Water Room B.tscn @@ -1,9 +1,8 @@ -[gd_scene load_steps=17 format=3 uid="uid://cypdcaqeylnwl"] +[gd_scene load_steps=16 format=3 uid="uid://cypdcaqeylnwl"] [ext_resource type="Script" uid="uid://dhollu4j3pynq" path="res://src/map/dungeon/code/MonsterRoom.cs" id="1_h7qp4"] [ext_resource type="PackedScene" uid="uid://bhp13lryklool" path="res://src/map/dungeon/models/Area 2/Waterroom/A2 Water Room.glb" id="2_d5u83"] [ext_resource type="Texture2D" uid="uid://dw50ys561j8no" path="res://src/map/assets/DUST_1.png" id="5_d0ika"] -[ext_resource type="Texture2D" uid="uid://c1jomp8ljn482" path="res://src/minimap/textures/Room Maps/mi_water_room.png" id="7_kc65f"] [sub_resource type="ConcavePolygonShape3D" id="ConcavePolygonShape3D_d0ika"] data = PackedVector3Array(-14.4148, 1.1568, 21.2314, -14.4148, 2.99, 15.0881, -14.4148, 1.1568, 15.0881, -14.4148, 1.1568, 21.2314, -14.4148, 2.99, 21.2314, -14.4148, 2.99, 15.0881, -14.4148, 1.1568, 15.0881, -14.4148, 2.99, 15.0881, -14.4148, 2.99, 12.2158, -14.4148, -0.9426, 21.2314, -14.4148, 1.1568, 21.2314, -14.4148, 1.1568, 15.0881, -14.4148, -0.9426, 21.2314, -14.4148, 1.1568, 15.0881, -14.4148, -0.9426, 15.0881, -14.4148, 1.1568, 15.0881, -14.4148, 2.99, 12.2158, -14.4148, 1.1568, 12.2158, -14.4148, -0.9426, 15.0881, -14.4148, 1.1568, 15.0881, -14.4148, 1.1568, 12.2158, -14.4148, 1.1568, 12.2158, -14.4148, 2.99, 12.2158, -14.4148, 2.99, 10.1771, -14.4148, -0.9426, 15.0881, -14.4148, 1.1568, 12.2158, -14.4148, -0.8622, 12.2158, -14.4148, 1.1568, 12.2158, -14.4148, 2.99, 10.1771, -14.4148, 1.1568, 10.1771, -14.4148, -0.8622, 12.2158, -14.4148, 1.1568, 12.2158, -14.4148, 1.1568, 10.1771, -14.4148, 1.1568, 10.1771, -14.4148, 2.99, 10.1771, -14.4148, 2.99, 8.1595, -14.4148, -0.8622, 12.2158, -14.4148, 1.1568, 10.1771, -14.4148, -0.8622, 10.1771, -14.4148, 1.1568, 10.1771, -14.4148, 2.99, 8.1595, -14.4148, 1.1568, 8.1595, -14.4148, -0.8622, 10.1771, -14.4148, 1.1568, 10.1771, -14.4148, 1.1568, 8.1595, -14.4148, 1.1568, 8.1595, -14.4148, 2.99, 8.1595, -14.4148, 2.99, 6.1196, -14.4148, -0.8622, 10.1771, -14.4148, 1.1568, 8.1595, -14.4148, -0.8622, 8.1595, -14.4148, 1.1568, 8.1595, -14.4148, 2.99, 6.1196, -14.4148, 1.1568, 6.1196, -14.4148, -0.8622, 8.1595, -14.4148, 1.1568, 8.1595, -14.4148, 1.1568, 6.1196, -14.4148, 1.1568, 6.1196, -14.4148, 2.99, 6.1196, -14.4148, 2.99, 2.7996, -14.4148, -0.8622, 8.1595, -14.4148, 1.1568, 6.1196, -14.4148, -0.9426, 6.1196, -14.4148, 1.1568, 6.1196, -14.4148, 2.99, 2.7996, -14.4148, 1.1568, 2.7996, -14.4148, -0.9426, 6.1196, -14.4148, 1.1568, 6.1196, -14.4148, 1.1568, 2.7996, -14.4148, 2.99, 2.301, -14.4148, 1.1568, 2.7996, -14.4148, 2.99, 2.7996, -14.4148, -0.9426, 6.1196, -14.4148, 1.1568, 2.7996, -14.4148, -0.9426, 2.7996, -14.4148, 2.99, 2.301, -14.4148, 1.1673, 2.301, -14.4148, 1.1568, 2.7996, -14.4148, -0.9426, 2.7996, -14.4148, 1.1568, 2.7996, -14.4148, 1.1673, 2.301, -14.4148, -0.9426, 2.7996, -14.4148, 1.1673, 2.301, -14.4148, -0.9426, 2.301, 15.7174, 1.1581, 12.2158, 15.7174, 2.9913, 15.0881, 15.7174, 1.1581, 15.0881, 15.7174, 1.1581, 12.2158, 15.7174, 2.9913, 12.2158, 15.7174, 2.9913, 15.0881, 15.7174, 1.1581, 15.0881, 15.7174, 2.9913, 15.0881, 15.7174, 2.9913, 21.2314, 15.7174, 1.1581, 15.0881, 15.7174, 2.9913, 21.2314, 15.7174, 1.1581, 21.2314, -12.6326, 1.1568, 21.2314, -14.4148, 2.99, 21.2314, -14.4148, 1.1568, 21.2314, -12.6326, 1.1568, 21.2314, -12.6326, 2.9898, 21.2314, -14.4148, 2.99, 21.2314, 7.8489, 1.1567, 21.232, 4.8649, 2.9898, 21.232, 4.8649, 1.1567, 21.232, 4.8649, 1.1567, 21.232, 4.8649, 2.9898, 21.232, 3.0169, 2.9898, 21.232, 7.8489, 1.1567, 21.232, 7.8489, 2.9898, 21.232, 4.8649, 2.9898, 21.232, 12.1462, 1.1567, 21.232, 7.8489, 2.9898, 21.232, 7.8489, 1.1567, 21.232, 12.1462, 1.1567, 21.232, 12.1462, 2.9898, 21.232, 7.8489, 2.9898, 21.232, 12.1462, -0.9427, 21.232, 12.1462, 1.1567, 21.232, 7.8489, 1.1567, 21.232, 12.1462, -0.9427, 21.232, 7.8489, 1.1567, 21.232, 7.8489, -0.9427, 21.232, 7.8489, -0.9427, 21.232, 7.8489, 1.1567, 21.232, 4.8649, 1.1567, 21.232, 7.8489, -0.9427, 21.232, 4.8649, 1.1567, 21.232, 4.8649, -0.9427, 21.232, 4.8649, 1.1567, 21.232, 3.0169, 2.9898, 21.232, 3.0169, 1.1567, 21.232, 4.8649, -0.9427, 21.232, 4.8649, 1.1567, 21.232, 3.0169, 1.1567, 21.232, 3.0169, 1.1567, 21.232, 3.0169, 2.9898, 21.232, 0.9024, 2.9898, 21.232, 4.8649, -0.9427, 21.232, 3.0169, 1.1567, 21.232, 3.0169, -0.9427, 21.232, 3.0169, 1.1567, 21.232, 0.9024, 2.9898, 21.232, 0.9024, 1.1567, 21.232, 3.0169, -0.9427, 21.232, 3.0169, 1.1567, 21.232, 0.9024, 1.1567, 21.232, 3.0169, -0.9427, 21.232, 0.9024, 1.1567, 21.232, 0.9024, -0.9427, 21.232, 15.7174, 1.1581, 0.1496, 15.7174, 2.9913, 2.301, 15.7174, 1.1581, 2.301, 15.7174, 1.1581, 0.1496, 15.7174, 2.9913, 0.1496, 15.7174, 2.9913, 2.301, -5.229, 1.1567, 21.232, -10.8504, 2.9898, 21.232, -10.8504, 1.1567, 21.232, -5.229, 1.1567, 21.232, -5.229, 2.9898, 21.232, -10.8504, 2.9898, 21.232, -3.1613, 1.1567, 21.232, -5.229, 2.9898, 21.232, -5.229, 1.1567, 21.232, -3.1613, 1.1567, 21.232, -3.1613, 2.9898, 21.232, -5.229, 2.9898, 21.232, -3.1613, -0.9427, 21.232, -3.1613, 1.1567, 21.232, -5.229, 1.1567, 21.232, -3.1613, -0.9427, 21.232, -5.229, 1.1567, 21.232, -5.229, -0.9427, 21.232, -5.229, -0.9427, 21.232, -5.229, 1.1567, 21.232, -10.8504, 1.1567, 21.232, -5.229, -0.9427, 21.232, -10.8504, 1.1567, 21.232, -10.8504, -0.9427, 21.232, -1.1419, 1.1567, 21.232, -3.1613, 2.9898, 21.232, -3.1613, 1.1567, 21.232, -1.1419, 1.1567, 21.232, -1.1419, 2.9898, 21.232, -3.1613, 2.9898, 21.232, -1.1419, -0.9427, 21.232, -1.1419, 1.1567, 21.232, -3.1613, 1.1567, 21.232, -1.1419, -0.9427, 21.232, -3.1613, 1.1567, 21.232, -3.1613, -0.9427, 21.232, 0.9024, -0.9427, 21.232, -1.1419, 1.1567, 21.232, -1.1419, -0.9427, 21.232, 0.9024, -0.9427, 21.232, 0.9024, 1.1567, 21.232, -1.1419, 1.1567, 21.232, 0.9024, 1.1567, 21.232, -1.1419, 2.9898, 21.232, -1.1419, 1.1567, 21.232, 0.9024, 1.1567, 21.232, 0.9024, 2.9898, 21.232, -1.1419, 2.9898, 21.232, 15.7174, 1.1581, 21.2314, 12.1462, 2.9898, 21.232, 12.1462, 1.1567, 21.232, 15.7174, 1.1581, 21.2314, 15.7174, 2.9913, 21.2314, 12.1462, 2.9898, 21.232, 15.7174, 1.1581, 2.301, 15.7174, 2.9913, 2.7996, 15.7174, 1.1581, 2.7996, 15.7174, 1.1581, 2.301, 15.7174, 2.9913, 2.301, 15.7174, 2.9913, 2.7996, 15.7174, -4.9601, 2.301, 15.7174, -2.9246, 2.7996, 15.7174, -4.9601, 2.7996, 15.7174, -4.9601, 2.301, 15.7174, -2.9246, 2.301, 15.7174, -2.9246, 2.7996, 15.7174, -4.9601, 0.1496, 15.7174, -2.9246, 2.301, 15.7174, -4.9601, 2.301, 15.7174, -4.9601, 0.1496, 15.7174, -2.9246, 0.1496, 15.7174, -2.9246, 2.301, 15.7174, -4.9601, 0.1496, 15.7174, -2.9246, -1.9157, 15.7174, -2.9246, 0.1496, 15.7174, -4.9601, 0.1496, 15.7174, -4.9601, -1.9157, 15.7174, -2.9246, -1.9157, 15.7174, -4.9601, -1.9157, 15.7174, -2.9246, -2.4638, 15.7174, -2.9246, -1.9157, 15.7174, -4.9601, -1.9157, 15.7174, -4.9601, -2.4638, 15.7174, -2.9246, -2.4638, -3.1613, -4.9615, 21.232, -1.1419, -2.926, 21.232, -3.1613, -2.926, 21.232, -3.1613, -4.9615, 21.232, -1.1419, -4.9615, 21.232, -1.1419, -2.926, 21.232, 4.8649, -4.9615, 21.232, 3.0169, -2.926, 21.232, 3.0169, -4.9615, 21.232, 4.8649, -4.9615, 21.232, 4.8649, -2.926, 21.232, 3.0169, -2.926, 21.232, 7.8489, -4.9615, 21.232, 4.8649, -2.926, 21.232, 4.8649, -4.9615, 21.232, 7.8489, -4.9615, 21.232, 7.8489, -2.926, 21.232, 4.8649, -2.926, 21.232, 12.1462, -4.9615, 21.232, 7.8489, -2.926, 21.232, 7.8489, -4.9615, 21.232, 12.1462, -4.9615, 21.232, 12.1462, -2.926, 21.232, 7.8489, -2.926, 21.232, -14.4148, -4.9614, 6.1196, -14.4148, -2.9259, 2.7996, -14.4148, -4.9614, 2.7996, -14.4148, -2.9259, 2.2843, -14.4148, -4.9614, 2.7996, -14.4148, -2.9259, 2.7996, -14.4148, -2.9259, 2.2843, -14.4148, -4.9614, 2.301, -14.4148, -4.9614, 2.7996, -14.4148, -4.9614, 6.1196, -14.4148, -2.9259, 6.1196, -14.4148, -2.9259, 2.7996, -14.4148, -4.9614, 8.1595, -14.4148, -2.9259, 6.1196, -14.4148, -4.9614, 6.1196, -14.4148, -4.9614, 8.1595, -14.4148, -2.9259, 8.1595, -14.4148, -2.9259, 6.1196, -14.4148, -4.9614, 15.0881, -14.4148, -2.9259, 12.2158, -14.4148, -4.9614, 12.2158, -14.4148, -4.9614, 15.0881, -14.4148, -2.9259, 15.0881, -14.4148, -2.9259, 12.2158, -14.4148, -4.9614, 21.2314, -14.4148, -2.9259, 15.0881, -14.4148, -4.9614, 15.0881, -14.4148, -4.9614, 21.2314, -14.4148, -2.9259, 21.2314, -14.4148, -2.9259, 15.0881, -3.1613, -4.9615, 21.232, -5.229, -2.926, 21.232, -5.229, -4.9615, 21.232, -3.1613, -4.9615, 21.232, -3.1613, -2.926, 21.232, -5.229, -2.926, 21.232, -5.229, -4.9615, 21.232, -5.229, -2.926, 21.232, -10.8504, -2.926, 21.232, -5.229, -4.9615, 21.232, -10.8504, -2.926, 21.232, -10.8504, -4.9615, 21.232, 15.7174, -4.9601, 21.2314, 12.1462, -2.926, 21.232, 12.1462, -4.9615, 21.232, 15.7174, -4.9601, 21.2314, 15.7174, -2.9246, 21.2314, 12.1462, -2.926, 21.232, 15.7174, -4.9601, 15.0881, 15.7174, -2.9246, 21.2314, 15.7174, -4.9601, 21.2314, 15.7174, -4.9601, 15.0881, 15.7174, -2.9246, 15.0881, 15.7174, -2.9246, 21.2314, 15.7174, -4.9601, 12.2158, 15.7174, -2.9246, 15.0881, 15.7174, -4.9601, 15.0881, 15.7174, -4.9601, 12.2158, 15.7174, -2.9246, 12.2158, 15.7174, -2.9246, 15.0881, 15.7174, -4.9601, 10.083, 15.7174, -2.9246, 12.2158, 15.7174, -4.9601, 12.2158, 15.7174, -4.9601, 10.083, 15.7174, -2.9246, 10.109, 15.7174, -2.9246, 12.2158, -12.6326, -4.9614, 21.2314, -14.4148, -2.9259, 21.2314, -14.4148, -4.9614, 21.2314, -12.6326, -4.9614, 21.2314, -12.6326, -2.9259, 21.2314, -14.4148, -2.9259, 21.2314, -14.4079, 1.2036, -19.353, -14.4148, 2.99, -15.8664, -14.4079, 3.0367, -19.353, -14.4079, 1.2036, -19.353, -14.412, 1.1757, -15.7871, -14.4148, 2.99, -15.8664, 15.7174, 1.1581, -11.6558, 15.7174, 2.9913, -14.8241, 15.7174, 2.9913, -11.6558, 15.7174, 1.1581, -11.6558, 15.7174, 1.1581, -14.8241, 15.7174, 2.9913, -14.8241, -13.2437, 1.2035, -19.353, -14.4079, 3.0367, -19.353, -13.2437, 3.0366, -19.353, -13.2437, 1.2035, -19.353, -14.4079, 1.2036, -19.353, -14.4079, 3.0367, -19.353, -14.4148, 1.1568, -7.9451, -14.4148, 2.99, -5.8847, -14.4148, 2.99, -7.9451, -14.4148, 1.1568, -7.9451, -14.4148, 1.1568, -5.8847, -14.4148, 2.99, -5.8847, -14.4148, 1.1568, -5.8847, -14.4148, 2.99, -2.4638, -14.4148, 2.99, -5.8847, -14.4148, 1.1568, -9.8983, -14.4148, 1.1568, -7.9451, -14.4148, 2.99, -7.9451, -14.4148, 1.1568, -5.8847, -14.4148, 1.1568, -2.4638, -14.4148, 2.99, -2.4638, -14.4148, 2.99, -1.9151, -14.4148, 2.99, -2.4638, -14.4148, 1.1568, -2.4638, -14.4148, 2.99, -1.9151, -14.4148, 1.1568, -2.4638, -14.4148, 1.1673, -1.9151, -14.4148, 1.1568, -2.4638, -14.4148, -0.9426, -1.9157, -14.4148, 1.1673, -1.9151, -14.4148, 1.1568, -2.4638, -14.4148, -0.9426, -2.4638, -14.4148, -0.9426, -1.9157, -14.4148, -0.9426, -5.8847, -14.4148, -0.9426, -2.4638, -14.4148, 1.1568, -2.4638, -14.4148, -0.9426, -5.8847, -14.4148, 1.1568, -2.4638, -14.4148, 1.1568, -5.8847, -14.4148, -0.885, -8.355, -14.4148, -0.9426, -5.8847, -14.4148, 1.1568, -5.8847, -14.4148, -0.885, -8.355, -14.4148, 1.1568, -5.8847, -14.4148, 1.1568, -7.9451, -14.4148, -0.885, -10.3083, -14.4148, -0.885, -8.355, -14.4148, 1.1568, -7.9451, -14.4148, -0.885, -10.3083, -14.4148, 1.1568, -7.9451, -14.4148, 1.1568, -9.8983, -14.4148, -0.9245, -12.0658, -14.4148, -0.885, -10.3083, -14.4148, 1.1568, -9.8983, -14.4148, -0.9245, -12.0658, -14.4148, 1.1568, -9.8983, -14.4148, 1.1568, -11.6558, -14.4148, 1.1568, -9.8983, -14.4148, 2.99, -7.9451, -14.4148, 2.99, -9.8983, -14.4148, 1.1568, -11.6558, -14.4148, 1.1568, -9.8983, -14.4148, 2.99, -9.8983, -14.4148, 1.1568, -11.6558, -14.4148, 2.99, -9.8983, -14.4148, 2.99, -11.6558, 15.7174, 1.1581, -14.8241, 15.7174, 3.038, -19.353, 15.7174, 2.9913, -14.8241, 15.7174, 1.1581, -14.8241, 15.7174, 1.2049, -19.353, 15.7174, 3.038, -19.353, 7.8489, 1.2035, -19.353, 4.8649, 3.0366, -19.353, 7.8489, 3.0366, -19.353, 12.1457, 1.2035, -19.353, 7.8489, 3.0366, -19.353, 12.1457, 3.0366, -19.353, 12.1457, 1.2035, -19.353, 7.8489, 1.2035, -19.353, 7.8489, 3.0366, -19.353, 12.1457, -0.9427, -19.353, 7.8489, 1.2035, -19.353, 12.1457, 1.2035, -19.353, 12.1457, -0.9427, -19.353, 7.8489, -0.9427, -19.353, 7.8489, 1.2035, -19.353, 7.8489, 1.2035, -19.353, 4.8649, 1.2035, -19.353, 4.8649, 3.0366, -19.353, 7.8489, -0.9427, -19.353, 4.8649, 1.2035, -19.353, 7.8489, 1.2035, -19.353, 4.8649, 1.2035, -19.353, 3.0174, 3.0366, -19.353, 4.8649, 3.0366, -19.353, 4.8649, 1.2035, -19.353, 4.045, 1.2035, -19.353, 3.0174, 3.0366, -19.353, 7.8489, -0.9427, -19.353, 4.8649, -0.9427, -19.353, 4.8649, 1.2035, -19.353, 4.8649, -0.9427, -19.353, 4.045, 1.2035, -19.353, 4.8649, 1.2035, -19.353, 4.8649, -0.9427, -19.353, 4.045, -0.9427, -19.353, 4.045, 1.2035, -19.353, 4.045, 1.2035, -19.353, 0.9024, 3.0366, -19.353, 3.0174, 3.0366, -19.353, 4.045, 1.2035, -19.353, 1.93, 1.2035, -19.353, 0.9024, 3.0366, -19.353, 15.7174, 1.1581, 0.1496, 15.7174, 2.9913, -1.9151, 15.7174, 2.9913, 0.1496, 15.7174, 1.1581, 0.1496, 15.7174, 1.1581, -1.9157, 15.7174, 2.9913, -1.9151, -5.229, 1.2035, -19.353, -12.0795, 3.0366, -19.353, -5.229, 3.0366, -19.353, -5.229, 1.2035, -19.353, -12.0795, 1.2035, -19.353, -12.0795, 3.0366, -19.353, -2.1346, 1.2035, -19.353, -5.229, 1.2035, -19.353, -5.229, 3.0366, -19.353, -2.1346, 1.2035, -19.353, -5.229, 3.0366, -19.353, -3.1622, 3.0366, -19.353, -2.1346, -0.9427, -19.353, -5.229, 1.2035, -19.353, -2.1346, 1.2035, -19.353, -2.1346, -0.9427, -19.353, -5.229, -0.9427, -19.353, -5.229, 1.2035, -19.353, -5.229, -0.9427, -19.353, -12.0795, 1.2035, -19.353, -5.229, 1.2035, -19.353, -5.229, -0.9427, -19.353, -12.0795, -0.9427, -19.353, -12.0795, 1.2035, -19.353, -0.1142, 1.2035, -19.353, -3.1622, 3.0366, -19.353, -1.1419, 3.0366, -19.353, -0.1142, 1.2035, -19.353, -2.1346, 1.2035, -19.353, -3.1622, 3.0366, -19.353, 1.93, 1.2035, -19.353, -0.1142, 1.2035, -19.353, -1.1419, 3.0366, -19.353, 1.93, 1.2035, -19.353, -1.1419, 3.0366, -19.353, 0.9024, 3.0366, -19.353, 15.7174, 1.2049, -19.353, 12.1457, 3.0366, -19.353, 15.7174, 3.038, -19.353, 15.7174, 1.2049, -19.353, 12.1457, 1.2035, -19.353, 12.1457, 3.0366, -19.353, -14.412, 1.1757, -15.7871, -14.4148, 2.99, -11.6558, -14.4148, 2.99, -15.8664, -14.412, 1.1757, -15.7871, -14.4148, 1.1568, -11.6558, -14.4148, 2.99, -11.6558, 15.7174, 1.1581, -1.9157, 15.7174, 2.9913, -2.4638, 15.7174, 2.9913, -1.9151, 15.7174, 1.1581, -1.9157, 15.7174, 1.1581, -2.4638, 15.7174, 2.9913, -2.4638, 4.8649, -4.9147, -19.353, 4.045, -2.8792, -19.353, 4.8649, -2.8792, -19.353, 4.8649, -4.9147, -19.353, 4.045, -4.9147, -19.353, 4.045, -2.8792, -19.353, 7.8489, -4.9147, -19.353, 4.8649, -4.9147, -19.353, 4.8649, -2.8792, -19.353, 7.8489, -4.9147, -19.353, 4.8649, -2.8792, -19.353, 7.8489, -2.8792, -19.353, 12.1457, -4.9147, -19.353, 7.8489, -4.9147, -19.353, 7.8489, -2.8792, -19.353, 12.1457, -4.9147, -19.353, 7.8489, -2.8792, -19.353, 12.1457, -2.8792, -19.353, -14.4148, -4.9614, -5.8847, -14.4148, -2.9259, -2.4638, -14.4148, -2.9259, -5.8847, -14.4148, -4.9614, -8.355, -14.4148, -4.9614, -5.8847, -14.4148, -2.9259, -5.8847, -14.4148, -4.9614, -8.355, -14.4148, -2.9259, -5.8847, -14.4148, -2.9259, -8.355, -14.4148, -4.9614, -5.8847, -14.4148, -4.9614, -2.4638, -14.4148, -2.9259, -2.4638, -14.4148, -2.9259, -1.894, -14.4148, -2.9259, -2.4638, -14.4148, -4.9614, -2.4638, -14.4148, -2.9259, -1.894, -14.4148, -4.9614, -2.4638, -14.4148, -4.9614, -1.9157, -14.412, -4.9425, -15.7871, -14.4148, -2.9007, -12.0658, -14.412, -2.9035, -15.7871, -14.412, -4.9425, -15.7871, -14.4148, -4.9614, -12.0658, -14.4148, -2.9007, -12.0658, -2.1346, -4.9147, -19.353, -5.229, -2.8792, -19.353, -2.1346, -2.8792, -19.353, -2.1346, -4.9147, -19.353, -5.229, -4.9147, -19.353, -5.229, -2.8792, -19.353, -5.229, -4.9147, -19.353, -12.0795, -2.8792, -19.353, -5.229, -2.8792, -19.353, -5.229, -4.9147, -19.353, -12.0795, -4.9147, -19.353, -12.0795, -2.8792, -19.353, 15.7174, -4.9133, -19.353, 12.1457, -2.8792, -19.353, 15.7174, -2.8778, -19.353, 15.7174, -4.9133, -19.353, 12.1457, -4.9147, -19.353, 12.1457, -2.8792, -19.353, 15.7174, -4.9601, -14.8241, 15.7174, -2.8778, -19.353, 15.7174, -2.9246, -14.8241, 15.7174, -4.9601, -14.8241, 15.7174, -4.9133, -19.353, 15.7174, -2.8778, -19.353, -13.2437, -4.9146, -19.353, -14.4079, -2.9078, -19.353, -13.2437, -2.8791, -19.353, -13.2437, -4.9146, -19.353, -14.4079, -4.9146, -19.353, -14.4079, -2.9078, -19.353, -14.4079, -4.9146, -19.353, -14.412, -2.9035, -15.7871, -14.4079, -2.9078, -19.353, -14.4079, -4.9146, -19.353, -14.412, -4.9425, -15.7871, -14.412, -2.9035, -15.7871, 15.7174, -4.9601, -11.6558, 15.7174, -2.9246, -14.8241, 15.7174, -2.9246, -11.6558, 15.7174, -4.9601, -11.6558, 15.7174, -4.9601, -14.8241, 15.7174, -2.9246, -14.8241, 15.7174, -4.9601, -9.8488, 15.7174, -4.9601, -11.6558, 15.7174, -2.9246, -11.6558, 15.7174, -4.9601, -9.8488, 15.7174, -2.9246, -11.6558, 15.7174, -2.9246, -9.8451, 15.7174, -0.9413, -1.9188, 15.7174, 1.1581, -2.4638, 15.7174, 1.1581, -1.9157, 15.7174, -0.9413, -1.9188, 15.7174, -0.9413, -2.4638, 15.7174, 1.1581, -2.4638, 15.7174, -0.9413, 0.1496, 15.7174, -0.9413, -1.9188, 15.7174, 1.1581, -1.9157, 15.7174, 1.1581, -2.4638, 15.7174, -0.9413, -2.4638, 15.7174, -0.9413, -5.8723, 15.7174, -0.9413, 0.1496, 15.7174, 1.1581, -1.9157, 15.7174, 1.1581, 0.1496, 15.7174, 1.1581, -2.4638, 15.7174, -0.9413, -5.8723, 15.7174, 1.1581, -5.8742, 15.7174, -0.9413, 0.1496, 15.7174, 1.1581, 0.1496, 15.7174, 1.1581, 2.301, 15.7174, -0.9413, -7.9451, 15.7174, 1.1581, -5.8742, 15.7174, -0.9413, -5.8723, 15.7174, -0.9413, 0.1496, 15.7174, 1.1581, 2.301, 15.7174, -0.9413, 2.301, 15.7174, -0.9413, 2.301, 15.7174, 1.1581, 2.301, 15.7174, 1.1581, 2.7996, 15.7174, -0.9413, 2.301, 15.7174, 1.1581, 2.7996, 15.7174, -0.9413, 2.7996, 15.7174, -0.9413, -7.9451, 15.7174, 1.1581, -7.9451, 15.7174, 1.1581, -5.8742, 15.7174, -0.9413, -9.8451, 15.7174, 1.1581, -7.9451, 15.7174, -0.9413, -7.9451, 15.7174, -0.9413, -9.8451, 15.7174, 1.1581, -9.8636, 15.7174, 1.1581, -7.9451, 15.7174, 1.1581, -11.6558, 15.7174, 1.1581, -9.8636, 15.7174, -0.9413, -9.8451, 15.7174, 1.1581, -11.6558, 15.7174, -0.9413, -9.8451, 15.7174, -0.9413, -11.6558, 15.7174, -0.9413, -11.6558, 15.7174, 1.1581, -14.8241, 15.7174, 1.1581, -11.6558, 15.7174, -0.9413, -11.6558, 15.7174, -0.9413, -14.8241, 15.7174, 1.1581, -14.8241, -14.412, -0.9228, -15.7871, -14.4148, 1.1568, -11.6558, -14.412, 1.1757, -15.7871, -14.412, -0.9228, -15.7871, -14.4148, -0.9245, -12.0658, -14.4148, 1.1568, -11.6558, 15.7174, -0.9413, -19.353, 12.1457, 1.2035, -19.353, 15.7174, 1.2049, -19.353, 15.7174, -0.9413, -19.353, 12.1457, -0.9427, -19.353, 12.1457, 1.2035, -19.353, 15.7174, -0.9413, -14.8241, 15.7174, 1.2049, -19.353, 15.7174, 1.1581, -14.8241, 15.7174, -0.9413, -14.8241, 15.7174, -0.9413, -19.353, 15.7174, 1.2049, -19.353, -13.2437, -0.9426, -19.353, -14.4079, 1.2036, -19.353, -13.2437, 1.2035, -19.353, -13.2437, -0.9426, -19.353, -14.4079, -0.9228, -19.353, -14.4079, 1.2036, -19.353, -14.4079, -0.9228, -19.353, -14.412, 1.1757, -15.7871, -14.4079, 1.2036, -19.353, -14.4079, -0.9228, -19.353, -14.412, -0.9228, -15.7871, -14.412, 1.1757, -15.7871, 15.7174, -0.9413, 21.2314, 12.1462, 1.1567, 21.232, 12.1462, -0.9427, 21.232, 15.7174, -0.9413, 21.2314, 15.7174, 1.1581, 21.2314, 12.1462, 1.1567, 21.232, 15.7174, -0.9413, 15.0881, 15.7174, 1.1581, 21.2314, 15.7174, -0.9413, 21.2314, 15.7174, -0.9413, 15.0881, 15.7174, 1.1581, 15.0881, 15.7174, 1.1581, 21.2314, 15.7174, -0.9413, 12.2158, 15.7174, 1.1581, 15.0881, 15.7174, -0.9413, 15.0881, 15.7174, -0.9413, 12.2158, 15.7174, 1.1581, 12.2158, 15.7174, 1.1581, 15.0881, 15.7174, 1.1581, 12.2158, 15.7174, -0.9413, 12.2158, 15.7174, -0.9413, 10.109, 15.7174, 1.1581, 12.2158, 15.7174, -0.9413, 10.109, 15.7174, 1.0551, 10.2031, 15.7174, -0.9413, 10.109, 15.7174, 1.0551, 8.1595, 15.7174, 1.0551, 10.2031, 15.7174, -0.9413, 10.109, 15.7174, -0.9413, 8.1595, 15.7174, 1.0551, 8.1595, -12.6326, -0.9426, 21.2314, -14.4148, 1.1568, 21.2314, -14.4148, -0.9426, 21.2314, -12.6326, -0.9426, 21.2314, -12.6326, 1.1568, 21.2314, -14.4148, 1.1568, 21.2314, 15.7174, 2.9913, -11.6558, 15.7174, 1.1581, -9.8636, 15.7174, 1.1581, -11.6558, 15.7174, 2.9913, -11.6558, 15.7174, 2.9913, -9.8655, 15.7174, 1.1581, -9.8636, 15.7174, 2.9913, -9.8655, 15.7174, 1.1581, -7.9451, 15.7174, 1.1581, -9.8636, 15.7174, 2.9913, -9.8655, 15.7174, 2.9913, -7.9451, 15.7174, 1.1581, -7.9451, 15.7174, 2.9913, -7.9451, 15.7174, 1.1581, -5.8742, 15.7174, 1.1581, -7.9451, 15.7174, 2.9913, -7.9451, 15.7174, 2.9913, -5.8723, 15.7174, 1.1581, -5.8742, 15.7174, 2.9913, -5.8723, 15.7174, 1.1581, -2.4638, 15.7174, 1.1581, -5.8742, 15.7174, 2.9913, -5.8723, 15.7174, 2.9913, -2.4638, 15.7174, 1.1581, -2.4638, 15.7174, -2.9246, -5.8723, 15.7174, -4.9601, -2.4638, 15.7174, -4.9601, -5.8847, 15.7174, -2.9246, -5.8723, 15.7174, -2.9246, -2.4638, 15.7174, -4.9601, -2.4638, 15.7174, -2.9245, 6.1189, 15.7174, -4.9601, 2.7996, 15.7174, -2.9246, 2.7996, 15.7174, -2.9245, 6.1189, 15.7178, -4.9601, 6.1059, 15.7174, -4.9601, 2.7996, 15.7174, 2.9913, 8.1595, 15.7174, 1.0551, 6.1332, 15.7174, 2.9913, 6.1332, 15.7174, 2.9913, 8.1595, 15.7174, 1.0551, 8.1595, 15.7174, 1.0551, 6.1332, 15.7174, 2.9913, 10.2031, 15.7174, 1.0551, 8.1595, 15.7174, 2.9913, 8.1595, 15.7174, 2.9913, 10.2031, 15.7174, 1.0551, 10.2031, 15.7174, 1.0551, 8.1595, 15.7174, 2.9913, 6.1332, 15.7174, 1.1581, 2.7996, 15.7174, 2.9913, 2.7996, 15.7174, 2.9913, 6.1332, 15.7174, 1.0551, 6.1332, 15.7174, 1.1581, 2.7996, 15.7174, 2.9913, 10.2031, 15.7174, 1.1581, 12.2158, 15.7174, 1.0551, 10.2031, 15.7174, 2.9913, 10.2031, 15.7174, 2.9913, 12.2158, 15.7174, 1.1581, 12.2158, 15.7174, 1.1581, 2.7996, 15.7174, -0.9413, 6.1189, 15.7174, -0.9413, 2.7996, 15.7174, 1.1581, 2.7996, 15.7174, 1.0551, 6.1332, 15.7174, -0.9413, 6.1189, 15.7174, -0.9413, 8.1595, 15.7174, 1.0551, 6.1332, 15.7174, 1.0551, 8.1595, 15.7174, -0.9413, 8.1595, 15.7174, -0.9413, 6.1189, 15.7174, 1.0551, 6.1332, 15.7174, -4.9601, 21.2314, 12.1213, -4.9592, 15.0893, 15.7174, -4.9601, 15.0881, 15.7174, -4.9601, 21.2314, 12.1462, -4.9615, 21.232, 12.1213, -4.9592, 15.0893, 15.7174, -4.9601, 15.0881, 8.8646, -4.9581, 12.2022, 15.7174, -4.9601, 12.2158, 15.7174, -4.9601, 15.0881, 12.1213, -4.9592, 15.0893, 8.8646, -4.9581, 12.2022, 15.7174, -4.9601, 12.2158, 8.8646, -4.9581, 12.2022, 8.8595, -4.9575, 10.1722, 15.7174, -4.9601, 12.2158, 8.8595, -4.9575, 10.1722, 15.7174, -4.9601, 10.083, 12.1213, -4.9592, 15.0893, 7.8678, -4.9576, 12.1979, 8.8646, -4.9581, 12.2022, 12.1213, -4.9592, 15.0893, 7.8613, -4.9591, 15.0899, 7.8678, -4.9576, 12.1979, 7.8613, -4.9591, 15.0899, 4.8754, -4.9574, 12.196, 7.8678, -4.9576, 12.1979, 12.1462, -4.9615, 21.232, 7.8613, -4.9591, 15.0899, 12.1213, -4.9592, 15.0893, 12.1462, -4.9615, 21.232, 7.8489, -4.9615, 21.232, 7.8613, -4.9591, 15.0899, 7.8613, -4.9591, 15.0899, 4.8718, -4.9591, 15.0899, 4.8754, -4.9574, 12.196, 7.8489, -4.9615, 21.232, 4.8718, -4.9591, 15.0899, 7.8613, -4.9591, 15.0899, 7.8489, -4.9615, 21.232, 4.8649, -4.9615, 21.232, 4.8718, -4.9591, 15.0899, 4.8718, -4.9591, 15.0899, 3.0229, -4.9572, 12.1948, 4.8754, -4.9574, 12.196, 4.8718, -4.9591, 15.0899, 3.0206, -4.9589, 15.0899, 3.0229, -4.9572, 12.1948, 3.0206, -4.9589, 15.0899, 0.9019, -4.9572, 12.1948, 3.0229, -4.9572, 12.1948, 4.8649, -4.9615, 21.232, 3.0206, -4.9589, 15.0899, 4.8718, -4.9591, 15.0899, 4.8649, -4.9615, 21.232, 3.0169, -4.9615, 21.232, 3.0206, -4.9589, 15.0899, 3.0206, -4.9589, 15.0899, 0.9019, -4.9591, 15.0899, 0.9019, -4.9572, 12.1948, 3.0169, -4.9615, 21.232, 0.9019, -4.9591, 15.0899, 3.0206, -4.9589, 15.0899, 3.0169, -4.9615, 21.232, 0.9024, -4.9615, 21.232, 0.9019, -4.9591, 15.0899, 15.7174, -4.9601, 10.083, 8.8563, -4.9569, 8.1657, 15.7174, -4.9601, 8.1595, 15.7174, -4.9601, 10.083, 8.8595, -4.9575, 10.1722, 8.8563, -4.9569, 8.1657, 15.7174, -4.9601, 8.1595, 8.8545, -4.9563, 6.1251, 15.7178, -4.9601, 6.1059, 15.7174, -4.9601, 8.1595, 8.8563, -4.9569, 8.1657, 8.8545, -4.9563, 6.1251, 15.7178, -4.9601, 6.1059, 8.8536, -4.9557, 3.7941, 15.7174, -4.9601, 2.7996, 15.7178, -4.9601, 6.1059, 8.8545, -4.9563, 6.1251, 8.8536, -4.9557, 3.7941, 15.7174, -4.9601, 2.7996, 12.1002, -4.955, 2.2998, 15.7174, -4.9601, 2.301, 15.7174, -4.9601, 2.7996, 8.8536, -4.9557, 3.7941, 12.1002, -4.955, 2.2998, 15.7174, -4.9601, 2.301, 12.1002, -4.9544, 0.1496, 15.7174, -4.9601, 0.1496, 15.7174, -4.9601, 2.301, 12.1002, -4.955, 2.2998, 12.1002, -4.9544, 0.1496, 15.7174, -4.9601, 0.1496, 12.1002, -4.9535, -1.907, 15.7174, -4.9601, -1.9157, 15.7174, -4.9601, 0.1496, 12.1002, -4.9544, 0.1496, 12.1002, -4.9535, -1.907, 15.7174, -4.9601, -1.9157, 8.746, -4.9525, -3.1227, 15.7174, -4.9601, -2.4638, 15.7174, -4.9601, -1.9157, 12.1002, -4.9535, -1.907, 8.746, -4.9525, -3.1227, 15.7174, -4.9601, -2.4638, 8.7469, -4.9512, -5.8835, 15.7174, -4.9601, -5.8847, 15.7174, -4.9601, -2.4638, 8.746, -4.9525, -3.1227, 8.7469, -4.9512, -5.8835, 15.7174, -4.9601, -5.8847, 8.7487, -4.9492, -7.9401, 15.7174, -4.9601, -7.9457, 15.7174, -4.9601, -5.8847, 8.7469, -4.9512, -5.8835, 8.7487, -4.9492, -7.9401, 15.7174, -4.9601, -7.9457, 8.7515, -4.9466, -9.8958, 15.7174, -4.9601, -9.8488, 15.7174, -4.9601, -7.9457, 8.7487, -4.9492, -7.9401, 8.7515, -4.9466, -9.8958, 15.7174, -4.9601, -9.8488, 8.7566, -4.9424, -11.6719, 15.7174, -4.9601, -11.6558, 15.7174, -4.9601, -9.8488, 8.7515, -4.9466, -9.8958, 8.7566, -4.9424, -11.6719, 15.7174, -4.9601, -11.6558, 8.7566, -4.9424, -11.6719, 12.1213, -4.9345, -14.8155, 15.7174, -4.9601, -11.6558, 12.1213, -4.9345, -14.8155, 15.7174, -4.9601, -14.8241, 8.7566, -4.9424, -11.6719, 7.8613, -4.9291, -14.8136, 12.1213, -4.9345, -14.8155, 8.7566, -4.9424, -11.6719, 7.8678, -4.9367, -11.6769, 7.8613, -4.9291, -14.8136, 7.8613, -4.9291, -14.8136, 4.8649, -4.9147, -19.353, 7.8489, -4.9147, -19.353, 7.8613, -4.9291, -14.8136, 4.8718, -4.927, -14.813, 4.8649, -4.9147, -19.353, 7.8678, -4.9367, -11.6769, 4.8718, -4.927, -14.813, 7.8613, -4.9291, -14.8136, 7.8678, -4.9367, -11.6769, 4.8754, -4.9342, -11.6794, 4.8718, -4.927, -14.813, 12.1213, -4.9345, -14.8155, 7.8613, -4.9291, -14.8136, 7.8489, -4.9147, -19.353, 12.1213, -4.9345, -14.8155, 7.8489, -4.9147, -19.353, 12.1457, -4.9147, -19.353, 4.8718, -4.927, -14.813, 4.045, -4.9147, -19.353, 4.8649, -4.9147, -19.353, 4.8718, -4.927, -14.813, 3.0211, -4.9261, -14.8124, 4.045, -4.9147, -19.353, 4.8754, -4.9342, -11.6794, 3.0211, -4.9261, -14.8124, 4.8718, -4.927, -14.813, 4.8754, -4.9342, -11.6794, 3.0229, -4.9331, -11.6806, 3.0211, -4.9261, -14.8124, 3.0229, -4.9331, -11.6806, 0.9019, -4.9258, -14.8124, 3.0211, -4.9261, -14.8124, 3.0229, -4.9331, -11.6806, 0.9019, -4.9328, -11.6806, 0.9019, -4.9258, -14.8124, 3.0211, -4.9261, -14.8124, 0.9019, -4.9258, -14.8124, 1.93, -4.9147, -19.353, 3.0211, -4.9261, -14.8124, 1.93, -4.9147, -19.353, 4.045, -4.9147, -19.353, 15.7174, -4.9601, -14.8241, 12.1457, -4.9147, -19.353, 15.7174, -4.9133, -19.353, 15.7174, -4.9601, -14.8241, 12.1213, -4.9345, -14.8155, 12.1457, -4.9147, -19.353, 8.8536, -4.9557, 3.7941, 7.8774, -4.9527, 2.2992, 12.1002, -4.955, 2.2998, 8.8536, -4.9557, 3.7941, 7.8765, -4.9538, 3.7941, 7.8774, -4.9527, 2.2992, 7.8765, -4.9538, 3.7941, 4.8819, -4.9516, 2.2985, 7.8774, -4.9527, 2.2992, 7.8765, -4.9538, 3.7941, 4.8814, -4.9527, 3.7947, 4.8819, -4.9516, 2.2985, 4.8814, -4.9527, 3.7947, 3.0266, -4.9509, 2.2985, 4.8819, -4.9516, 2.2985, 4.8814, -4.9527, 3.7947, 3.0261, -4.9522, 3.7947, 3.0266, -4.9509, 2.2985, 3.0261, -4.9522, 3.7947, 0.9014, -4.9508, 2.2985, 3.0266, -4.9509, 2.2985, 3.0261, -4.9522, 3.7947, 0.9014, -4.9521, 3.7947, 0.9014, -4.9508, 2.2985, 12.1002, -4.955, 2.2998, 7.8774, -4.9517, 0.1496, 12.1002, -4.9544, 0.1496, 12.1002, -4.955, 2.2998, 7.8774, -4.9527, 2.2992, 7.8774, -4.9517, 0.1496, 7.8774, -4.9527, 2.2992, 4.8819, -4.9503, 0.1496, 7.8774, -4.9517, 0.1496, 7.8774, -4.9527, 2.2992, 4.8819, -4.9516, 2.2985, 4.8819, -4.9503, 0.1496, 7.8774, -4.9517, 0.1496, 4.8819, -4.9503, 0.1496, 4.8819, -4.9488, -1.9008, 7.8774, -4.9517, 0.1496, 4.8819, -4.9488, -1.9008, 7.8774, -4.9504, -1.9027, 12.1002, -4.9544, 0.1496, 7.8774, -4.9517, 0.1496, 7.8774, -4.9504, -1.9027, 12.1002, -4.9544, 0.1496, 7.8774, -4.9504, -1.9027, 12.1002, -4.9535, -1.907, 4.8819, -4.9503, 0.1496, 3.0266, -4.9481, -1.8996, 4.8819, -4.9488, -1.9008, 4.8819, -4.9516, 2.2985, 3.0266, -4.9496, 0.1496, 4.8819, -4.9503, 0.1496, 4.8819, -4.9503, 0.1496, 3.0266, -4.9496, 0.1496, 3.0266, -4.9481, -1.8996, 3.0266, -4.9496, 0.1496, 0.9014, -4.9478, -1.8996, 3.0266, -4.9481, -1.8996, 4.8819, -4.9516, 2.2985, 3.0266, -4.9509, 2.2985, 3.0266, -4.9496, 0.1496, 3.0266, -4.9496, 0.1496, 0.9014, -4.9495, 0.1496, 0.9014, -4.9478, -1.8996, 3.0266, -4.9509, 2.2985, 0.9014, -4.9495, 0.1496, 3.0266, -4.9496, 0.1496, 3.0266, -4.9509, 2.2985, 0.9014, -4.9508, 2.2985, 0.9014, -4.9495, 0.1496, 12.1002, -4.9535, -1.907, 7.8765, -4.949, -3.1233, 8.746, -4.9525, -3.1227, 12.1002, -4.9535, -1.907, 7.8774, -4.9504, -1.9027, 7.8765, -4.949, -3.1233, 7.8774, -4.9504, -1.9027, 4.8814, -4.9472, -3.1233, 7.8765, -4.949, -3.1233, 7.8774, -4.9504, -1.9027, 4.8819, -4.9488, -1.9008, 4.8814, -4.9472, -3.1233, 4.8819, -4.9488, -1.9008, 3.0266, -4.9463, -3.1239, 4.8814, -4.9472, -3.1233, 4.8819, -4.9488, -1.9008, 3.0266, -4.9481, -1.8996, 3.0266, -4.9463, -3.1239, 3.0266, -4.9481, -1.8996, 0.9014, -4.9478, -1.8996, 0.9014, -4.946, -3.1239, 3.0266, -4.9481, -1.8996, 0.9014, -4.946, -3.1239, 3.0266, -4.9463, -3.1239, 7.8756, -5.4014, 6.1276, 4.8814, -5.3996, 3.7941, 7.8765, -5.4006, 3.7941, 7.8756, -5.4014, 6.1276, 4.8805, -5.4006, 6.1288, 4.8814, -5.3996, 3.7941, 4.8805, -5.4006, 6.1288, 3.0266, -5.399, 3.7947, 4.8814, -5.3996, 3.7941, 4.8805, -5.4006, 6.1288, 3.0261, -5.4002, 6.1295, 3.0266, -5.399, 3.7947, 8.8545, -5.4032, 6.1251, 7.8756, -5.4014, 6.1276, 7.8765, -5.4006, 3.7941, 8.8545, -5.4032, 6.1251, 7.8765, -5.4006, 3.7941, 8.8536, -5.4025, 3.7935, 3.0261, -5.4002, 6.1295, 0.9014, -5.4001, 6.1295, 0.9014, -5.3989, 3.7947, 3.0261, -5.4002, 6.1295, 0.9014, -5.3989, 3.7947, 3.0266, -5.399, 3.7947, 7.8742, -5.4023, 8.1682, 4.8805, -5.4006, 6.1288, 7.8756, -5.4014, 6.1276, 8.8563, -5.4037, 8.1657, 7.8742, -5.4023, 8.1682, 7.8756, -5.4014, 6.1276, 8.8563, -5.4037, 8.1657, 7.8756, -5.4014, 6.1276, 8.8545, -5.4032, 6.1251, 7.8742, -5.4023, 8.1682, 4.8796, -5.4016, 8.1694, 4.8805, -5.4006, 6.1288, 4.8796, -5.4016, 8.1694, 3.0261, -5.4002, 6.1295, 4.8805, -5.4006, 6.1288, 4.8796, -5.4016, 8.1694, 3.0252, -5.4014, 8.17, 3.0261, -5.4002, 6.1295, 3.0252, -5.4014, 8.17, 0.9014, -5.4001, 6.1295, 3.0261, -5.4002, 6.1295, 3.0252, -5.4014, 8.17, 0.9014, -5.4014, 8.1706, 0.9014, -5.4001, 6.1295, 7.8715, -5.4033, 10.1703, 4.8796, -5.4016, 8.1694, 7.8742, -5.4023, 8.1682, 8.8595, -5.4042, 10.1722, 7.8715, -5.4033, 10.1703, 7.8742, -5.4023, 8.1682, 8.8595, -5.4042, 10.1722, 7.8742, -5.4023, 8.1682, 8.8563, -5.4037, 8.1657, 7.8715, -5.4033, 10.1703, 4.8782, -5.4028, 10.1691, 4.8796, -5.4016, 8.1694, 4.8782, -5.4028, 10.1691, 3.0252, -5.4014, 8.17, 4.8796, -5.4016, 8.1694, 4.8782, -5.4028, 10.1691, 3.0243, -5.4027, 10.1691, 3.0252, -5.4014, 8.17, 3.0243, -5.4027, 10.1691, 0.9014, -5.4014, 8.1706, 3.0252, -5.4014, 8.17, 3.0243, -5.4027, 10.1691, 0.9019, -5.4025, 10.1684, 0.9014, -5.4014, 8.1706, 7.8678, -5.4043, 12.1979, 4.8782, -5.4028, 10.1691, 7.8715, -5.4033, 10.1703, 8.8646, -5.405, 12.2022, 7.8678, -5.4043, 12.1979, 7.8715, -5.4033, 10.1703, 8.8646, -5.405, 12.2022, 7.8715, -5.4033, 10.1703, 8.8595, -5.4042, 10.1722, 7.8678, -5.4043, 12.1979, 4.8754, -5.4041, 12.196, 4.8782, -5.4028, 10.1691, 4.8754, -5.4041, 12.196, 3.0243, -5.4027, 10.1691, 4.8782, -5.4028, 10.1691, 4.8754, -5.4041, 12.196, 3.0229, -5.4041, 12.1948, 3.0243, -5.4027, 10.1691, 3.0229, -5.4041, 12.1948, 0.9019, -5.4025, 10.1684, 3.0243, -5.4027, 10.1691, 3.0229, -5.4041, 12.1948, 0.9019, -5.4041, 12.1948, 0.9019, -5.4025, 10.1684, 0.9019, -4.9572, 12.1948, 3.0229, -5.4041, 12.1948, 3.0229, -4.9572, 12.1948, 0.9019, -4.9572, 12.1948, 0.9019, -5.4041, 12.1948, 3.0229, -5.4041, 12.1948, 3.0229, -4.9572, 12.1948, 3.0229, -5.4041, 12.1948, 4.8754, -5.4041, 12.196, 3.0229, -4.9572, 12.1948, 4.8754, -5.4041, 12.196, 4.8754, -4.9574, 12.196, 4.8754, -4.9574, 12.196, 4.8754, -5.4041, 12.196, 7.8678, -5.4043, 12.1979, 4.8754, -4.9574, 12.196, 7.8678, -5.4043, 12.1979, 7.8678, -4.9576, 12.1979, 7.8678, -4.9576, 12.1979, 7.8678, -5.4043, 12.1979, 8.8646, -5.405, 12.2022, 7.8678, -4.9576, 12.1979, 8.8646, -5.405, 12.2022, 8.8646, -4.9581, 12.2022, -6.6888, -4.9565, 3.7941, -6.6893, -5.4038, 6.1251, -6.6893, -4.957, 6.1251, -6.6888, -4.9565, 3.7941, -6.6888, -5.4033, 3.7935, -6.6893, -5.4038, 6.1251, 8.8595, -4.9575, 10.1722, 8.8563, -5.4037, 8.1657, 8.8563, -4.9569, 8.1657, 8.8595, -4.9575, 10.1722, 8.8595, -5.4042, 10.1722, 8.8563, -5.4037, 8.1657, 4.8814, -4.9527, 3.7947, 3.0266, -5.399, 3.7947, 3.0261, -4.9522, 3.7947, 4.8814, -4.9527, 3.7947, 4.8814, -5.3996, 3.7941, 3.0266, -5.399, 3.7947, -5.2336, -4.9371, -11.6769, -6.9679, -5.4202, -11.6726, -6.9679, -4.9429, -11.6719, -5.2336, -4.9371, -11.6769, -5.2336, -5.4143, -11.6775, -6.9679, -5.4202, -11.6726, -3.1213, -4.9344, -11.6794, -5.2336, -5.4143, -11.6775, -5.2336, -4.9371, -11.6769, -3.1213, -4.9344, -11.6794, -3.1213, -5.4117, -11.68, -5.2336, -5.4143, -11.6775, 3.0266, -4.9463, -3.1239, 4.8814, -5.4245, -3.1239, 4.8814, -4.9472, -3.1233, 3.0266, -4.9463, -3.1239, 3.0266, -5.4236, -3.1245, 4.8814, -5.4245, -3.1239, -6.9624, -4.9532, -3.1227, -5.2354, -5.4267, -3.1239, -5.2354, -4.9494, -3.1233, -6.9624, -4.9532, -3.1227, -6.9624, -5.4304, -3.1233, -5.2354, -5.4267, -3.1239, 7.8678, -4.9367, -11.6769, 4.8754, -5.4116, -11.68, 4.8754, -4.9342, -11.6794, 4.8754, -4.9342, -11.6794, 4.8754, -5.4116, -11.68, 3.0229, -5.4104, -11.6812, 7.8678, -4.9367, -11.6769, 7.8678, -5.414, -11.6775, 4.8754, -5.4116, -11.68, 8.7566, -4.9424, -11.6719, 7.8678, -5.414, -11.6775, 7.8678, -4.9367, -11.6769, 8.7566, -4.9424, -11.6719, 8.7566, -5.4196, -11.6726, 7.8678, -5.414, -11.6775, 4.8754, -4.9342, -11.6794, 3.0229, -5.4104, -11.6812, 3.0229, -4.9331, -11.6806, 3.0229, -4.9331, -11.6806, 3.0229, -5.4104, -11.6812, 0.9019, -5.4102, -11.6812, 3.0229, -4.9331, -11.6806, 0.9019, -5.4102, -11.6812, 0.9019, -4.9328, -11.6806, -5.2354, -4.9541, 3.7941, -6.6888, -5.4033, 3.7935, -6.6888, -4.9565, 3.7941, -5.2354, -4.9541, 3.7941, -5.2354, -5.401, 3.7941, -6.6888, -5.4033, 3.7935, -6.6944, -4.9587, 12.2022, -5.2336, -5.4047, 12.1979, -5.2336, -4.9579, 12.1979, -6.6944, -4.9587, 12.2022, -6.6939, -5.4055, 12.2022, -5.2336, -5.4047, 12.1979, -5.2336, -4.9579, 12.1979, -5.2336, -5.4047, 12.1979, -3.1208, -5.4043, 12.196, -5.2336, -4.9579, 12.1979, -3.1208, -5.4043, 12.196, -3.1208, -4.9575, 12.196, 7.8765, -4.9538, 3.7941, 4.8814, -5.3996, 3.7941, 4.8814, -4.9527, 3.7947, 7.8765, -4.9538, 3.7941, 7.8765, -5.4006, 3.7941, 4.8814, -5.3996, 3.7941, -6.9656, -4.9472, -9.8958, -6.9643, -5.4272, -7.9407, -6.9643, -4.9499, -7.9401, -6.9656, -4.9472, -9.8958, -6.9656, -5.4245, -9.8965, -6.9643, -5.4272, -7.9407, 8.746, -4.9525, -3.1227, 8.7469, -5.4284, -5.8841, 8.7469, -4.9512, -5.8835, 8.746, -4.9525, -3.1227, 8.746, -5.4298, -3.1233, 8.7469, -5.4284, -5.8841, 4.8814, -4.9472, -3.1233, 7.8765, -5.4263, -3.1239, 7.8765, -4.949, -3.1233, 4.8814, -4.9472, -3.1233, 4.8814, -5.4245, -3.1239, 7.8765, -5.4263, -3.1239, 0.9024, -4.9615, 21.232, -1.1391, -4.9591, 15.0899, 0.9019, -4.9591, 15.0899, 0.9024, -4.9615, 21.232, -1.1419, -4.9615, 21.232, -1.1391, -4.9591, 15.0899, 0.9019, -4.9591, 15.0899, -1.1391, -4.9591, 15.0899, -1.1377, -4.9572, 12.1948, 0.9019, -4.9591, 15.0899, -1.1377, -4.9572, 12.1948, 0.9019, -4.9572, 12.1948, -1.1391, -4.9591, 15.0899, -3.1208, -4.9575, 12.196, -1.1377, -4.9572, 12.1948, -1.1391, -4.9591, 15.0899, -3.1356, -4.9591, 15.0899, -3.1208, -4.9575, 12.196, -1.1419, -4.9615, 21.232, -3.1356, -4.9591, 15.0899, -1.1391, -4.9591, 15.0899, -1.1419, -4.9615, 21.232, -3.1613, -4.9615, 21.232, -3.1356, -4.9591, 15.0899, -6.6893, -4.957, 6.1251, -6.6902, -5.4043, 8.1657, -6.6902, -4.9575, 8.1657, -6.6893, -4.957, 6.1251, -6.6893, -5.4038, 6.1251, -6.6902, -5.4043, 8.1657, 8.8646, -4.9581, 12.2022, 8.8595, -5.4042, 10.1722, 8.8595, -4.9575, 10.1722, 8.8646, -4.9581, 12.2022, 8.8646, -5.405, 12.2022, 8.8595, -5.4042, 10.1722, -3.0992, -4.953, 3.7947, -5.2354, -5.401, 3.7941, -5.2354, -4.9541, 3.7941, -3.0992, -4.953, 3.7947, -3.0992, -5.3998, 3.7941, -5.2354, -5.401, 3.7941, 0.9014, -4.9521, 3.7947, -1.135, -4.951, 2.2985, 0.9014, -4.9508, 2.2985, 0.9014, -4.9521, 3.7947, -1.1355, -4.9523, 3.7947, -1.135, -4.951, 2.2985, -1.1355, -4.9523, 3.7947, -3.0979, -4.9518, 2.2985, -1.135, -4.951, 2.2985, -1.1355, -4.9523, 3.7947, -3.0992, -4.953, 3.7947, -3.0979, -4.9518, 2.2985, 0.9014, -4.9508, 2.2985, -1.135, -4.9497, 0.1496, 0.9014, -4.9495, 0.1496, 0.9014, -4.9508, 2.2985, -1.135, -4.951, 2.2985, -1.135, -4.9497, 0.1496, 0.9014, -4.9495, 0.1496, -1.135, -4.9497, 0.1496, -1.135, -4.9482, -1.8996, 0.9014, -4.9495, 0.1496, -1.135, -4.9482, -1.8996, 0.9014, -4.9478, -1.8996, -1.135, -4.9497, 0.1496, -3.0979, -4.9491, -1.9008, -1.135, -4.9482, -1.8996, -1.135, -4.9497, 0.1496, -3.0974, -4.9505, 0.1496, -3.0979, -4.9491, -1.9008, -1.135, -4.951, 2.2985, -3.0974, -4.9505, 0.1496, -1.135, -4.9497, 0.1496, -1.135, -4.951, 2.2985, -3.0979, -4.9518, 2.2985, -3.0974, -4.9505, 0.1496, 0.9014, -4.9478, -1.8996, -1.1355, -4.9464, -3.1239, 0.9014, -4.946, -3.1239, 0.9014, -4.9478, -1.8996, -1.135, -4.9482, -1.8996, -1.1355, -4.9464, -3.1239, -1.135, -4.9482, -1.8996, -3.0979, -4.9491, -1.9008, -3.0992, -4.9474, -3.1233, -1.135, -4.9482, -1.8996, -3.0992, -4.9474, -3.1233, -1.1355, -4.9464, -3.1239, -5.2354, -4.9494, -3.1233, -3.0992, -5.4248, -3.1239, -3.0992, -4.9474, -3.1233, -5.2354, -4.9494, -3.1233, -5.2354, -5.4267, -3.1239, -3.0992, -5.4248, -3.1239, 8.7515, -4.9466, -9.8958, 8.7566, -5.4196, -11.6726, 8.7566, -4.9424, -11.6719, 8.7515, -4.9466, -9.8958, 8.7515, -5.4239, -9.8965, 8.7566, -5.4196, -11.6726, -1.1377, -4.9332, -11.6806, -3.1213, -5.4117, -11.68, -3.1213, -4.9344, -11.6794, -1.1377, -4.9332, -11.6806, -1.1377, -5.4105, -11.6812, -3.1213, -5.4117, -11.68, 0.9019, -4.9328, -11.6806, -1.1377, -5.4105, -11.6812, -1.1377, -4.9332, -11.6806, 0.9019, -4.9328, -11.6806, 0.9019, -5.4102, -11.6812, -1.1377, -5.4105, -11.6812, 0.9019, -4.9328, -11.6806, -1.1391, -4.9261, -14.8124, 0.9019, -4.9258, -14.8124, 0.9019, -4.9258, -14.8124, -0.1142, -4.9147, -19.353, 1.93, -4.9147, -19.353, 0.9019, -4.9258, -14.8124, -1.1391, -4.9261, -14.8124, -0.1142, -4.9147, -19.353, 0.9019, -4.9328, -11.6806, -1.1377, -4.9332, -11.6806, -1.1391, -4.9261, -14.8124, -1.1377, -4.9332, -11.6806, -3.136, -4.9271, -14.813, -1.1391, -4.9261, -14.8124, -1.1377, -4.9332, -11.6806, -3.1213, -4.9344, -11.6794, -3.136, -4.9271, -14.813, -1.1391, -4.9261, -14.8124, -3.136, -4.9271, -14.813, -2.1346, -4.9147, -19.353, -1.1391, -4.9261, -14.8124, -2.1346, -4.9147, -19.353, -0.1142, -4.9147, -19.353, 8.8536, -4.9557, 3.7941, 7.8765, -5.4006, 3.7941, 7.8765, -4.9538, 3.7941, 8.8536, -4.9557, 3.7941, 8.8536, -5.4025, 3.7935, 7.8765, -5.4006, 3.7941, 8.8545, -4.9563, 6.1251, 8.8536, -5.4025, 3.7935, 8.8536, -4.9557, 3.7941, 8.8545, -4.9563, 6.1251, 8.8545, -5.4032, 6.1251, 8.8536, -5.4025, 3.7935, -1.1355, -4.9523, 3.7947, -3.0992, -5.3998, 3.7941, -3.0992, -4.953, 3.7947, -1.1355, -4.9523, 3.7947, -1.1355, -5.3992, 3.7947, -3.0992, -5.3998, 3.7941, 7.8765, -4.949, -3.1233, 8.746, -5.4298, -3.1233, 8.746, -4.9525, -3.1227, 7.8765, -4.949, -3.1233, 7.8765, -5.4263, -3.1239, 8.746, -5.4298, -3.1233, -6.9643, -4.9499, -7.9401, -6.9633, -5.4292, -5.8841, -6.9633, -4.9518, -5.8835, -6.9643, -4.9499, -7.9401, -6.9643, -5.4272, -7.9407, -6.9633, -5.4292, -5.8841, -3.0992, -4.9474, -3.1233, -1.1355, -5.4237, -3.1245, -1.1355, -4.9464, -3.1239, -3.0992, -4.9474, -3.1233, -3.0992, -5.4248, -3.1239, -1.1355, -5.4237, -3.1245, -3.1613, -4.9615, 21.232, -5.2322, -4.9593, 15.0899, -3.1356, -4.9591, 15.0899, -3.1613, -4.9615, 21.232, -5.229, -4.9615, 21.232, -5.2322, -4.9593, 15.0899, -3.1356, -4.9591, 15.0899, -5.2322, -4.9593, 15.0899, -5.2336, -4.9579, 12.1979, -3.1356, -4.9591, 15.0899, -5.2336, -4.9579, 12.1979, -3.1208, -4.9575, 12.196, -5.2322, -4.9593, 15.0899, -6.6944, -4.9587, 12.2022, -5.2336, -4.9579, 12.1979, -5.2322, -4.9593, 15.0899, -10.8385, -4.9596, 15.0893, -6.6944, -4.9587, 12.2022, -5.229, -4.9615, 21.232, -10.8385, -4.9596, 15.0893, -5.2322, -4.9593, 15.0899, -5.229, -4.9615, 21.232, -10.8504, -4.9615, 21.232, -10.8385, -4.9596, 15.0893, -6.6902, -4.9575, 8.1657, -6.6916, -5.4049, 10.1722, -6.6916, -4.958, 10.1722, -6.6902, -4.9575, 8.1657, -6.6902, -5.4043, 8.1657, -6.6916, -5.4049, 10.1722, -3.1208, -4.9575, 12.196, -1.1377, -5.4041, 12.1948, -1.1377, -4.9572, 12.1948, -3.1208, -4.9575, 12.196, -3.1208, -5.4043, 12.196, -1.1377, -5.4041, 12.1948, -1.1377, -4.9572, 12.1948, -1.1377, -5.4041, 12.1948, 0.9019, -5.4041, 12.1948, -1.1377, -4.9572, 12.1948, 0.9019, -5.4041, 12.1948, 0.9019, -4.9572, 12.1948, 0.9014, -4.9521, 3.7947, -1.1355, -5.3992, 3.7947, -1.1355, -4.9523, 3.7947, 0.9014, -4.9521, 3.7947, 0.9014, -5.3989, 3.7947, -1.1355, -5.3992, 3.7947, -3.0992, -4.953, 3.7947, -5.2354, -4.9532, 2.2992, -3.0979, -4.9518, 2.2985, -3.0992, -4.953, 3.7947, -5.2354, -4.9541, 3.7941, -5.2354, -4.9532, 2.2992, -5.2354, -4.9541, 3.7941, -6.6884, -4.9558, 2.2998, -5.2354, -4.9532, 2.2992, -5.2354, -4.9541, 3.7941, -6.6888, -4.9565, 3.7941, -6.6884, -4.9558, 2.2998, -3.0979, -4.9518, 2.2985, -5.2354, -4.9521, 0.1496, -3.0974, -4.9505, 0.1496, -3.0979, -4.9518, 2.2985, -5.2354, -4.9532, 2.2992, -5.2354, -4.9521, 0.1496, -5.2354, -4.9532, 2.2992, -7.9303, -4.9552, 0.1496, -5.2354, -4.9521, 0.1496, -5.2354, -4.9532, 2.2992, -6.6884, -4.9558, 2.2998, -7.9303, -4.9552, 0.1496, -3.0974, -4.9505, 0.1496, -5.2354, -4.9521, 0.1496, -5.2354, -4.9509, -1.9027, -3.0974, -4.9505, 0.1496, -5.2354, -4.9509, -1.9027, -3.0979, -4.9491, -1.9008, -5.2354, -4.9521, 0.1496, -7.9303, -4.9543, -1.907, -5.2354, -4.9509, -1.9027, -5.2354, -4.9521, 0.1496, -7.9303, -4.9552, 0.1496, -7.9303, -4.9543, -1.907, -3.0979, -4.9491, -1.9008, -5.2354, -4.9494, -3.1233, -3.0992, -4.9474, -3.1233, -3.0979, -4.9491, -1.9008, -5.2354, -4.9509, -1.9027, -5.2354, -4.9494, -3.1233, -5.2354, -4.9509, -1.9027, -7.9303, -4.9543, -1.907, -6.9624, -4.9532, -3.1227, -5.2354, -4.9509, -1.9027, -6.9624, -4.9532, -3.1227, -5.2354, -4.9494, -3.1233, -1.1355, -4.9464, -3.1239, 0.9014, -5.4233, -3.1245, 0.9014, -4.946, -3.1239, -1.1355, -4.9464, -3.1239, -1.1355, -5.4237, -3.1245, 0.9014, -5.4233, -3.1245, 8.7487, -4.9492, -7.9401, 8.7515, -5.4239, -9.8965, 8.7515, -4.9466, -9.8958, 8.7487, -4.9492, -7.9401, 8.7487, -5.4266, -7.9407, 8.7515, -5.4239, -9.8965, -6.9633, -4.9518, -5.8835, -6.9624, -5.4304, -3.1233, -6.9624, -4.9532, -3.1227, -6.9633, -4.9518, -5.8835, -6.9633, -5.4292, -5.8841, -6.9624, -5.4304, -3.1233, -3.1213, -4.9344, -11.6794, -5.2318, -4.9293, -14.8136, -3.136, -4.9271, -14.813, -3.136, -4.9271, -14.813, -5.229, -4.9147, -19.353, -2.1346, -4.9147, -19.353, -3.136, -4.9271, -14.813, -5.2318, -4.9293, -14.8136, -5.229, -4.9147, -19.353, -3.1213, -4.9344, -11.6794, -5.2336, -4.9371, -11.6769, -5.2318, -4.9293, -14.8136, -5.2336, -4.9371, -11.6769, -12.0671, -4.9349, -14.8155, -5.2318, -4.9293, -14.8136, -5.2336, -4.9371, -11.6769, -6.9679, -4.9429, -11.6719, -12.0671, -4.9349, -14.8155, -5.2318, -4.9293, -14.8136, -12.0671, -4.9349, -14.8155, -12.0795, -4.9147, -19.353, -5.2318, -4.9293, -14.8136, -12.0795, -4.9147, -19.353, -5.229, -4.9147, -19.353, 8.8563, -4.9569, 8.1657, 8.8545, -5.4032, 6.1251, 8.8545, -4.9563, 6.1251, 8.8563, -4.9569, 8.1657, 8.8563, -5.4037, 8.1657, 8.8545, -5.4032, 6.1251, -6.6916, -4.958, 10.1722, -6.6939, -5.4055, 12.2022, -6.6944, -4.9587, 12.2022, -6.6916, -4.958, 10.1722, -6.6916, -5.4049, 10.1722, -6.6939, -5.4055, 12.2022, 3.0261, -4.9522, 3.7947, 0.9014, -5.3989, 3.7947, 0.9014, -4.9521, 3.7947, 3.0261, -4.9522, 3.7947, 3.0266, -5.399, 3.7947, 0.9014, -5.3989, 3.7947, 0.9014, -4.946, -3.1239, 3.0266, -5.4236, -3.1245, 3.0266, -4.9463, -3.1239, 0.9014, -4.946, -3.1239, 0.9014, -5.4233, -3.1245, 3.0266, -5.4236, -3.1245, -6.9679, -4.9429, -11.6719, -6.9656, -5.4245, -9.8965, -6.9656, -4.9472, -9.8958, -6.9679, -4.9429, -11.6719, -6.9679, -5.4202, -11.6726, -6.9656, -5.4245, -9.8965, 8.7469, -4.9512, -5.8835, 8.7487, -5.4266, -7.9407, 8.7487, -4.9492, -7.9401, 8.7469, -4.9512, -5.8835, 8.7469, -5.4284, -5.8841, 8.7487, -5.4266, -7.9407, -12.6326, -4.9614, 21.2314, -14.4148, -4.9614, 15.0881, -12.6266, -4.9605, 15.0887, -12.6326, -4.9614, 21.2314, -14.4148, -4.9614, 21.2314, -14.4148, -4.9614, 15.0881, -12.6266, -4.9605, 15.0887, -14.4148, -4.9614, 12.2158, -12.0031, -4.9601, 12.209, -12.6266, -4.9605, 15.0887, -14.4148, -4.9614, 15.0881, -14.4148, -4.9614, 12.2158, -12.0031, -4.9601, 12.209, -14.4148, -4.9614, 10.1771, -12.0022, -4.9597, 10.1746, -12.0031, -4.9601, 12.209, -14.4148, -4.9614, 12.2158, -14.4148, -4.9614, 10.1771, -12.0022, -4.9597, 10.1746, -14.4148, -4.9614, 8.1595, -12.0013, -4.9594, 8.1626, -12.0022, -4.9597, 10.1746, -14.4148, -4.9614, 10.1771, -14.4148, -4.9614, 8.1595, -12.0013, -4.9594, 8.1626, -14.4148, -4.9614, 6.1196, -12.0008, -4.9592, 6.1226, -12.0013, -4.9594, 8.1626, -14.4148, -4.9614, 8.1595, -14.4148, -4.9614, 6.1196, -12.0008, -4.9592, 6.1226, -14.4148, -4.9614, 2.7996, -12.0004, -4.9589, 3.0962, -12.0008, -4.9592, 6.1226, -14.4148, -4.9614, 6.1196, -14.4148, -4.9614, 2.7996, -12.0004, -4.9589, 3.0962, -14.4148, -4.9614, 2.301, -12.0004, -4.9585, 2.3004, -12.0004, -4.9589, 3.0962, -14.4148, -4.9614, 2.7996, -14.4148, -4.9614, 2.301, -12.0004, -4.9585, 2.3004, -14.4148, -4.9614, 0.1496, -12.6211, -4.9583, 0.1496, -12.0004, -4.9585, 2.3004, -14.4148, -4.9614, 2.301, -14.4148, -4.9614, 0.1496, -12.6211, -4.9583, 0.1496, -14.4148, -4.9614, -1.9157, -12.6216, -4.9578, -1.9114, -12.6211, -4.9583, 0.1496, -14.4148, -4.9614, 0.1496, -14.4148, -4.9614, -1.9157, -12.6216, -4.9578, -1.9114, -14.4148, -4.9614, -2.4638, -12.1374, -4.9572, -2.7121, -12.6216, -4.9578, -1.9114, -14.4148, -4.9614, -1.9157, -14.4148, -4.9614, -2.4638, -12.1374, -4.9572, -2.7121, -14.4148, -4.9614, -5.8847, -12.1379, -4.9566, -5.8841, -12.1374, -4.9572, -2.7121, -14.4148, -4.9614, -2.4638, -14.4148, -4.9614, -5.8847, -12.1379, -4.9566, -5.8841, -14.4148, -4.9614, -8.355, -12.1383, -4.9557, -7.9426, -12.1379, -4.9566, -5.8841, -14.4148, -4.9614, -5.8847, -14.4148, -4.9614, -8.355, -12.1383, -4.9557, -7.9426, -14.4148, -4.9614, -10.3083, -12.1392, -4.9543, -9.8971, -12.1383, -4.9557, -7.9426, -14.4148, -4.9614, -8.355, -14.4148, -4.9614, -10.3083, -12.1392, -4.9543, -9.8971, -14.4148, -4.9614, -12.0658, -12.1402, -4.9521, -11.6639, -12.1392, -4.9543, -9.8971, -14.4148, -4.9614, -10.3083, -14.4148, -4.9614, -12.0658, -12.1402, -4.9521, -11.6639, -14.412, -4.9425, -15.7871, -13.2423, -4.9346, -15.7846, -12.1402, -4.9521, -11.6639, -14.4148, -4.9614, -12.0658, -14.412, -4.9425, -15.7871, -13.2423, -4.9346, -15.7846, -14.4079, -4.9146, -19.353, -13.2437, -4.9146, -19.353, -13.2423, -4.9346, -15.7846, -14.412, -4.9425, -15.7871, -14.4079, -4.9146, -19.353, 8.746, -5.4298, -3.1233, 7.8756, -5.4245, -5.8835, 8.7469, -5.4284, -5.8841, 8.746, -5.4298, -3.1233, 7.8765, -5.4263, -3.1239, 7.8756, -5.4245, -5.8835, 7.8765, -5.4263, -3.1239, 4.8805, -5.4224, -5.8835, 7.8756, -5.4245, -5.8835, 7.8765, -5.4263, -3.1239, 4.8814, -5.4245, -3.1239, 4.8805, -5.4224, -5.8835, 4.8814, -5.4245, -3.1239, 3.0261, -5.4214, -5.8835, 4.8805, -5.4224, -5.8835, 4.8814, -5.4245, -3.1239, 3.0266, -5.4236, -3.1245, 3.0261, -5.4214, -5.8835, 3.0266, -5.4236, -3.1245, 0.9014, -5.4211, -5.8835, 3.0261, -5.4214, -5.8835, 3.0266, -5.4236, -3.1245, 0.9014, -5.4233, -3.1245, 0.9014, -5.4211, -5.8835, 8.7469, -5.4284, -5.8841, 7.8742, -5.422, -7.9389, 8.7487, -5.4266, -7.9407, 8.7469, -5.4284, -5.8841, 7.8756, -5.4245, -5.8835, 7.8742, -5.422, -7.9389, 7.8756, -5.4245, -5.8835, 4.8796, -5.4199, -7.9376, 7.8742, -5.422, -7.9389, 7.8756, -5.4245, -5.8835, 4.8805, -5.4224, -5.8835, 4.8796, -5.4199, -7.9376, 4.8805, -5.4224, -5.8835, 3.0252, -5.4187, -7.937, 4.8796, -5.4199, -7.9376, 4.8805, -5.4224, -5.8835, 3.0261, -5.4214, -5.8835, 3.0252, -5.4187, -7.937, 3.0261, -5.4214, -5.8835, 0.9014, -5.4184, -7.937, 3.0252, -5.4187, -7.937, 3.0261, -5.4214, -5.8835, 0.9014, -5.4211, -5.8835, 0.9014, -5.4184, -7.937, 8.7487, -5.4266, -7.9407, 7.8719, -5.4188, -9.8958, 8.7515, -5.4239, -9.8965, 8.7487, -5.4266, -7.9407, 7.8742, -5.422, -7.9389, 7.8719, -5.4188, -9.8958, 7.8742, -5.422, -7.9389, 4.8782, -5.4164, -9.8952, 7.8719, -5.4188, -9.8958, 7.8742, -5.422, -7.9389, 4.8796, -5.4199, -7.9376, 4.8782, -5.4164, -9.8952, 4.8796, -5.4199, -7.9376, 3.0243, -5.4152, -9.8952, 4.8782, -5.4164, -9.8952, 4.8796, -5.4199, -7.9376, 3.0252, -5.4187, -7.937, 3.0243, -5.4152, -9.8952, 3.0252, -5.4187, -7.937, 0.9019, -5.4149, -9.8952, 3.0243, -5.4152, -9.8952, 3.0252, -5.4187, -7.937, 0.9014, -5.4184, -7.937, 0.9019, -5.4149, -9.8952, 8.7515, -5.4239, -9.8965, 7.8678, -5.414, -11.6775, 8.7566, -5.4196, -11.6726, 8.7515, -5.4239, -9.8965, 7.8719, -5.4188, -9.8958, 7.8678, -5.414, -11.6775, 7.8719, -5.4188, -9.8958, 4.8754, -5.4116, -11.68, 7.8678, -5.414, -11.6775, 7.8719, -5.4188, -9.8958, 4.8782, -5.4164, -9.8952, 4.8754, -5.4116, -11.68, 4.8782, -5.4164, -9.8952, 3.0229, -5.4104, -11.6812, 4.8754, -5.4116, -11.68, 4.8782, -5.4164, -9.8952, 3.0243, -5.4152, -9.8952, 3.0229, -5.4104, -11.6812, 3.0243, -5.4152, -9.8952, 0.9019, -5.4102, -11.6812, 3.0229, -5.4104, -11.6812, 3.0243, -5.4152, -9.8952, 0.9019, -5.4149, -9.8952, 0.9019, -5.4102, -11.6812, 0.9014, -5.4233, -3.1245, -1.1355, -5.4215, -5.8835, 0.9014, -5.4211, -5.8835, 0.9014, -5.4233, -3.1245, -1.1355, -5.4237, -3.1245, -1.1355, -5.4215, -5.8835, -1.1355, -5.4237, -3.1245, -3.102, -5.4227, -5.8835, -1.1355, -5.4215, -5.8835, -1.1355, -5.4237, -3.1245, -3.0992, -5.4248, -3.1239, -3.102, -5.4227, -5.8835, 0.9014, -5.4211, -5.8835, -1.1359, -5.4188, -7.937, 0.9014, -5.4184, -7.937, 0.9014, -5.4211, -5.8835, -1.1355, -5.4215, -5.8835, -1.1359, -5.4188, -7.937, -1.1355, -5.4215, -5.8835, -3.1061, -5.42, -7.9376, -1.1359, -5.4188, -7.937, -1.1355, -5.4215, -5.8835, -3.102, -5.4227, -5.8835, -3.1061, -5.42, -7.9376, 0.9014, -5.4184, -7.937, -1.1368, -5.4153, -9.8952, 0.9019, -5.4149, -9.8952, 0.9014, -5.4184, -7.937, -1.1359, -5.4188, -7.937, -1.1368, -5.4153, -9.8952, -1.1359, -5.4188, -7.937, -3.1121, -5.4166, -9.8952, -1.1368, -5.4153, -9.8952, -1.1359, -5.4188, -7.937, -3.1061, -5.42, -7.9376, -3.1121, -5.4166, -9.8952, 0.9019, -5.4149, -9.8952, -1.1377, -5.4105, -11.6812, 0.9019, -5.4102, -11.6812, 0.9019, -5.4149, -9.8952, -1.1368, -5.4153, -9.8952, -1.1377, -5.4105, -11.6812, -1.1368, -5.4153, -9.8952, -3.1213, -5.4117, -11.68, -1.1377, -5.4105, -11.6812, -1.1368, -5.4153, -9.8952, -3.1121, -5.4166, -9.8952, -3.1213, -5.4117, -11.68, -3.0992, -5.4248, -3.1239, -5.2354, -5.4249, -5.8835, -3.102, -5.4227, -5.8835, -3.0992, -5.4248, -3.1239, -5.2354, -5.4267, -3.1239, -5.2354, -5.4249, -5.8835, -5.2354, -5.4267, -3.1239, -6.9633, -5.4292, -5.8841, -5.2354, -5.4249, -5.8835, -5.2354, -5.4267, -3.1239, -6.9624, -5.4304, -3.1233, -6.9633, -5.4292, -5.8841, -3.102, -5.4227, -5.8835, -5.235, -5.4224, -7.9389, -3.1061, -5.42, -7.9376, -3.102, -5.4227, -5.8835, -5.2354, -5.4249, -5.8835, -5.235, -5.4224, -7.9389, -5.2354, -5.4249, -5.8835, -6.9643, -5.4272, -7.9407, -5.235, -5.4224, -7.9389, -5.2354, -5.4249, -5.8835, -6.9633, -5.4292, -5.8841, -6.9643, -5.4272, -7.9407, -3.1061, -5.42, -7.9376, -5.2345, -5.4192, -9.8958, -3.1121, -5.4166, -9.8952, -3.1061, -5.42, -7.9376, -5.235, -5.4224, -7.9389, -5.2345, -5.4192, -9.8958, -5.235, -5.4224, -7.9389, -6.9656, -5.4245, -9.8965, -5.2345, -5.4192, -9.8958, -5.235, -5.4224, -7.9389, -6.9643, -5.4272, -7.9407, -6.9656, -5.4245, -9.8965, -3.1121, -5.4166, -9.8952, -5.2336, -5.4143, -11.6775, -3.1213, -5.4117, -11.68, -3.1121, -5.4166, -9.8952, -5.2345, -5.4192, -9.8958, -5.2336, -5.4143, -11.6775, -5.2345, -5.4192, -9.8958, -6.9679, -5.4202, -11.6726, -5.2336, -5.4143, -11.6775, -5.2345, -5.4192, -9.8958, -6.9656, -5.4245, -9.8965, -6.9679, -5.4202, -11.6726, 0.9019, -5.4041, 12.1948, -1.1368, -5.4027, 10.1691, 0.9019, -5.4025, 10.1684, 0.9019, -5.4041, 12.1948, -1.1377, -5.4041, 12.1948, -1.1368, -5.4027, 10.1691, -1.1377, -5.4041, 12.1948, -3.1116, -5.4031, 10.1691, -1.1368, -5.4027, 10.1691, -1.1377, -5.4041, 12.1948, -3.1208, -5.4043, 12.196, -3.1116, -5.4031, 10.1691, 0.9019, -5.4025, 10.1684, -1.1359, -5.4015, 8.17, 0.9014, -5.4014, 8.1706, 0.9019, -5.4025, 10.1684, -1.1368, -5.4027, 10.1691, -1.1359, -5.4015, 8.17, -1.1368, -5.4027, 10.1691, -3.1057, -5.4019, 8.1694, -1.1359, -5.4015, 8.17, -1.1368, -5.4027, 10.1691, -3.1116, -5.4031, 10.1691, -3.1057, -5.4019, 8.1694, 0.9014, -5.4014, 8.1706, -1.1355, -5.4003, 6.1295, 0.9014, -5.4001, 6.1295, 0.9014, -5.4014, 8.1706, -1.1359, -5.4015, 8.17, -1.1355, -5.4003, 6.1295, -1.1359, -5.4015, 8.17, -3.1015, -5.4009, 6.1288, -1.1355, -5.4003, 6.1295, -1.1359, -5.4015, 8.17, -3.1057, -5.4019, 8.1694, -3.1015, -5.4009, 6.1288, -1.1355, -5.4003, 6.1295, -3.0992, -5.3998, 3.7941, -1.1355, -5.3992, 3.7947, -1.1355, -5.4003, 6.1295, -3.1015, -5.4009, 6.1288, -3.0992, -5.3998, 3.7941, -3.1208, -5.4043, 12.196, -5.2345, -5.4037, 10.1703, -3.1116, -5.4031, 10.1691, -3.1208, -5.4043, 12.196, -5.2336, -5.4047, 12.1979, -5.2345, -5.4037, 10.1703, -5.2336, -5.4047, 12.1979, -6.6916, -5.4049, 10.1722, -5.2345, -5.4037, 10.1703, -5.2336, -5.4047, 12.1979, -6.6939, -5.4055, 12.2022, -6.6916, -5.4049, 10.1722, -3.1116, -5.4031, 10.1691, -5.235, -5.4028, 8.1682, -3.1057, -5.4019, 8.1694, -3.1116, -5.4031, 10.1691, -5.2345, -5.4037, 10.1703, -5.235, -5.4028, 8.1682, -5.2345, -5.4037, 10.1703, -6.6902, -5.4043, 8.1657, -5.235, -5.4028, 8.1682, -5.2345, -5.4037, 10.1703, -6.6916, -5.4049, 10.1722, -6.6902, -5.4043, 8.1657, -3.1057, -5.4019, 8.1694, -5.2354, -5.4019, 6.1276, -3.1015, -5.4009, 6.1288, -3.1057, -5.4019, 8.1694, -5.235, -5.4028, 8.1682, -5.2354, -5.4019, 6.1276, -5.235, -5.4028, 8.1682, -6.6893, -5.4038, 6.1251, -5.2354, -5.4019, 6.1276, -5.235, -5.4028, 8.1682, -6.6902, -5.4043, 8.1657, -6.6893, -5.4038, 6.1251, -3.1015, -5.4009, 6.1288, -5.2354, -5.401, 3.7941, -3.0992, -5.3998, 3.7941, -3.1015, -5.4009, 6.1288, -5.2354, -5.4019, 6.1276, -5.2354, -5.401, 3.7941, -5.2354, -5.4019, 6.1276, -6.6893, -5.4038, 6.1251, -6.6888, -5.4033, 3.7935, -5.2354, -5.4019, 6.1276, -6.6888, -5.4033, 3.7935, -5.2354, -5.401, 3.7941, -14.4148, -4.9614, 0.1496, -14.1246, -4.9614, -1.9157, -14.4148, -4.9614, -1.9157, -14.4148, -4.9614, 0.1496, -14.1246, -4.9614, 0.1496, -14.1246, -4.9614, -1.9157, -14.4148, -4.9614, 2.301, -14.1246, -4.9614, 0.1496, -14.4148, -4.9614, 0.1496, -14.4148, -4.9614, 2.301, -14.1246, -4.9614, 2.301, -14.1246, -4.9614, 0.1496, -12.0671, -4.9349, -14.8155, -13.2437, -4.9146, -19.353, -12.0795, -4.9147, -19.353, -12.0671, -4.9349, -14.8155, -13.2423, -4.9346, -15.7846, -13.2437, -4.9146, -19.353, -6.9679, -4.9429, -11.6719, -12.1402, -4.9521, -11.6639, -12.0671, -4.9349, -14.8155, -12.0671, -4.9349, -14.8155, -12.1402, -4.9521, -11.6639, -13.2423, -4.9346, -15.7846, -6.9656, -4.9472, -9.8958, -12.1402, -4.9521, -11.6639, -6.9679, -4.9429, -11.6719, -6.9656, -4.9472, -9.8958, -12.1392, -4.9543, -9.8971, -12.1402, -4.9521, -11.6639, -6.9643, -4.9499, -7.9401, -12.1392, -4.9543, -9.8971, -6.9656, -4.9472, -9.8958, -6.9643, -4.9499, -7.9401, -12.1383, -4.9557, -7.9426, -12.1392, -4.9543, -9.8971, -6.9633, -4.9518, -5.8835, -12.1383, -4.9557, -7.9426, -6.9643, -4.9499, -7.9401, -6.9633, -4.9518, -5.8835, -12.1379, -4.9566, -5.8841, -12.1383, -4.9557, -7.9426, -6.9624, -4.9532, -3.1227, -12.1379, -4.9566, -5.8841, -6.9633, -4.9518, -5.8835, -6.9624, -4.9532, -3.1227, -12.1374, -4.9572, -2.7121, -12.1379, -4.9566, -5.8841, -7.9303, -4.9543, -1.907, -12.1374, -4.9572, -2.7121, -6.9624, -4.9532, -3.1227, -7.9303, -4.9543, -1.907, -12.6216, -4.9578, -1.9114, -12.1374, -4.9572, -2.7121, -7.9303, -4.9552, 0.1496, -12.6216, -4.9578, -1.9114, -7.9303, -4.9543, -1.907, -7.9303, -4.9552, 0.1496, -12.6211, -4.9583, 0.1496, -12.6216, -4.9578, -1.9114, -6.6884, -4.9558, 2.2998, -12.6211, -4.9583, 0.1496, -7.9303, -4.9552, 0.1496, -6.6884, -4.9558, 2.2998, -12.0004, -4.9585, 2.3004, -12.6211, -4.9583, 0.1496, -6.6888, -4.9565, 3.7941, -12.0004, -4.9585, 2.3004, -6.6884, -4.9558, 2.2998, -6.6888, -4.9565, 3.7941, -12.0004, -4.9589, 3.0962, -12.0004, -4.9585, 2.3004, -6.6893, -4.957, 6.1251, -12.0004, -4.9589, 3.0962, -6.6888, -4.9565, 3.7941, -6.6893, -4.957, 6.1251, -12.0008, -4.9592, 6.1226, -12.0004, -4.9589, 3.0962, -6.6902, -4.9575, 8.1657, -12.0008, -4.9592, 6.1226, -6.6893, -4.957, 6.1251, -6.6902, -4.9575, 8.1657, -12.0013, -4.9594, 8.1626, -12.0008, -4.9592, 6.1226, -6.6916, -4.958, 10.1722, -12.0013, -4.9594, 8.1626, -6.6902, -4.9575, 8.1657, -6.6916, -4.958, 10.1722, -12.0022, -4.9597, 10.1746, -12.0013, -4.9594, 8.1626, -6.6944, -4.9587, 12.2022, -12.0022, -4.9597, 10.1746, -6.6916, -4.958, 10.1722, -6.6944, -4.9587, 12.2022, -12.0031, -4.9601, 12.209, -12.0022, -4.9597, 10.1746, -10.8385, -4.9596, 15.0893, -12.0031, -4.9601, 12.209, -6.6944, -4.9587, 12.2022, -10.8385, -4.9596, 15.0893, -12.6266, -4.9605, 15.0887, -12.0031, -4.9601, 12.209, -10.8504, -4.9615, 21.232, -12.6266, -4.9605, 15.0887, -10.8385, -4.9596, 15.0893, -10.8504, -4.9615, 21.232, -12.6326, -4.9614, 21.2314, -12.6266, -4.9605, 15.0887, -10.8504, -0.9427, 21.232, -12.6326, 1.1568, 21.2314, -12.6326, -0.9426, 21.2314, -10.8504, -0.9427, 21.232, -10.8504, 1.1567, 21.232, -12.6326, 1.1568, 21.2314, -10.8504, 1.1567, 21.232, -12.6326, 2.9898, 21.2314, -12.6326, 1.1568, 21.2314, -10.8504, 1.1567, 21.232, -10.8504, 2.9898, 21.232, -12.6326, 2.9898, 21.2314, -12.0795, -0.9427, -19.353, -13.2437, 1.2035, -19.353, -12.0795, 1.2035, -19.353, -12.0795, -0.9427, -19.353, -13.2437, -0.9426, -19.353, -13.2437, 1.2035, -19.353, -12.0795, -4.9147, -19.353, -13.2437, -2.8791, -19.353, -12.0795, -2.8792, -19.353, -12.0795, -4.9147, -19.353, -13.2437, -4.9146, -19.353, -13.2437, -2.8791, -19.353, -12.0795, 1.2035, -19.353, -13.2437, 3.0366, -19.353, -12.0795, 3.0366, -19.353, -12.0795, 1.2035, -19.353, -13.2437, 1.2035, -19.353, -13.2437, 3.0366, -19.353, -10.8504, -4.9615, 21.232, -12.6326, -2.9259, 21.2314, -12.6326, -4.9614, 21.2314, -10.8504, -4.9615, 21.232, -10.8504, -2.926, 21.232, -12.6326, -2.9259, 21.2314, -14.4148, -2.9259, -1.8938, -14.1244, -0.9426, -1.9155, -14.4148, -0.9426, -1.9155, -14.4148, -2.9259, -1.8938, -14.1244, -2.9259, -1.8938, -14.1244, -0.9426, -1.9155, -14.4148, -0.9426, 2.3015, -14.1244, -2.9259, 2.2847, -14.4148, -2.9259, 2.2847, -14.4148, -0.9426, 2.3015, -14.1244, -0.9426, 2.3015, -14.1244, -2.9259, 2.2847, -14.1244, 2.9899, -1.9149, -14.1244, 1.1673, 0.15, -14.1244, 2.99, 0.15, -14.1244, 2.9899, -1.9149, -14.1244, 1.1673, -1.9149, -14.1244, 1.1673, 0.15, -14.1244, 2.99, 0.15, -14.1244, 1.1673, 0.15, -14.1244, 1.1673, 2.3015, -14.1244, 2.99, 0.15, -14.1244, 1.1673, 2.3015, -14.1244, 2.99, 2.3015, -14.1244, -0.9426, 0.15, -14.1244, 1.1673, 0.15, -14.1244, 1.1673, -1.9149, -14.1244, -0.9426, 0.15, -14.1244, 1.1673, 2.3015, -14.1244, 1.1673, 0.15, -14.1244, -0.9426, 0.15, -14.1244, 1.1673, -1.9149, -14.1244, -0.9426, -1.9155, -14.1244, -0.9426, 0.15, -14.1244, -0.9426, 2.3015, -14.1244, 1.1673, 2.3015, -14.1244, -2.9259, 2.2847, -14.1244, -4.9613, 0.15, -14.1244, -4.9613, 2.3015, -14.1244, -4.9613, 0.15, -14.1244, -2.9259, 2.2847, -14.1244, -2.9259, -1.8938, -14.1244, -4.9613, 0.15, -14.1244, -2.9259, -1.8938, -14.1244, -4.9613, -1.9155, -14.1244, -0.9426, 2.3015, -14.1244, -2.9259, -1.8938, -14.1244, -2.9259, 2.2847, -14.1244, -2.9259, -1.8938, -14.1244, -0.9426, 2.3015, -14.1244, -0.9426, 0.15, -14.1244, -2.9259, -1.8938, -14.1244, -0.9426, 0.15, -14.1244, -0.9426, -1.9155, -14.4148, 1.1673, 2.3015, -14.1244, -0.9426, 2.3015, -14.4148, -0.9426, 2.3015, -14.4148, 1.1673, 2.3015, -14.1244, 1.1673, 2.3015, -14.1244, -0.9426, 2.3015, -14.4148, -2.9259, 2.2847, -14.1244, -4.9613, 2.3015, -14.4148, -4.9613, 2.3015, -14.4148, -2.9259, 2.2847, -14.1244, -2.9259, 2.2847, -14.1244, -4.9613, 2.3015, -14.4148, 1.1673, -1.9149, -14.1244, 2.9899, -1.9149, -14.4148, 2.9899, -1.9149, -14.4148, 1.1673, -1.9149, -14.1244, 1.1673, -1.9149, -14.1244, 2.9899, -1.9149, -14.4148, 2.99, 2.3015, -14.1244, 1.1673, 2.3015, -14.4148, 1.1673, 2.3015, -14.4148, 2.99, 2.3015, -14.1244, 2.99, 2.3015, -14.1244, 1.1673, 2.3015, -14.4148, -4.9613, -1.9155, -14.1244, -2.9259, -1.8938, -14.4148, -2.9259, -1.8938, -14.4148, -4.9613, -1.9155, -14.1244, -4.9613, -1.9155, -14.1244, -2.9259, -1.8938, -14.4148, -0.9426, -1.9155, -14.1244, 1.1673, -1.9149, -14.4148, 1.1673, -1.9149, -14.4148, -0.9426, -1.9155, -14.1244, -0.9426, -1.9155, -14.1244, 1.1673, -1.9149, 15.7174, -2.9245, 12.2158, 15.7174, -0.9413, 15.0881, 15.7174, -2.9245, 15.0881, 15.7174, -2.9245, 15.0881, 15.7174, -0.9413, 15.0881, 15.7174, -0.9413, 21.2314, 15.7174, -2.9245, 15.0881, 15.7174, -0.9413, 21.2314, 15.7174, -2.9245, 21.2314, 15.7174, -2.9245, 12.2158, 15.7174, -0.9413, 12.2158, 15.7174, -0.9413, 15.0881, 15.7174, -2.9245, 12.2158, 15.7174, -0.9413, 10.109, 15.7174, -0.9413, 12.2158, 15.7174, -2.9245, 12.2158, 15.7174, -2.9245, 10.109, 15.7174, -0.9413, 10.109, 15.7174, -2.9245, 0.1496, 15.7174, -0.9413, 2.301, 15.7174, -2.9245, 2.301, 15.7174, -2.9245, 2.301, 15.7174, -0.9413, 2.301, 15.7174, -0.9413, 2.7996, 15.7174, -2.9245, 2.301, 15.7174, -0.9413, 2.7996, 15.7174, -2.9245, 2.7996, 15.7174, -2.9245, 0.1496, 15.7174, -0.9413, 0.1496, 15.7174, -0.9413, 2.301, 15.7174, -2.9245, 0.1496, 15.7174, -0.9413, -1.9188, 15.7174, -0.9413, 0.1496, 15.7174, -2.9245, 0.1496, 15.7174, -2.9245, -1.9157, 15.7174, -0.9413, -1.9188, 15.7174, -2.9245, -1.9157, 15.7174, -0.9413, -2.4638, 15.7174, -0.9413, -1.9188, 15.7174, -2.9245, -1.9157, 15.7174, -2.9245, -2.4638, 15.7174, -0.9413, -2.4638, 15.7174, -2.9245, -2.4638, 15.7174, -0.9413, -5.8723, 15.7174, -0.9413, -2.4638, 15.7174, -2.9245, -2.4638, 15.7174, -2.9245, -5.8723, 15.7174, -0.9413, -5.8723, -14.4148, -2.9258, 8.1595, -14.4148, -0.9425, 6.1196, -14.4148, -2.9258, 6.1196, -14.4148, -2.9258, 8.1595, -14.4148, -0.8622, 8.1595, -14.4148, -0.9425, 6.1196, -14.4148, -2.9258, 6.1196, -14.4148, -0.9425, 6.1196, -14.4148, -0.9425, 2.7996, -14.4148, -2.9258, 6.1196, -14.4148, -0.9425, 2.7996, -14.4148, -2.9258, 2.7996, -14.4148, -2.9258, 2.7996, -14.4148, -0.9425, 2.7996, -14.4148, -0.9425, 2.301, -14.4148, -2.9258, 2.7996, -14.4148, -0.9425, 2.301, -14.4148, -2.9258, 2.2843, -14.4148, -2.9258, 21.2314, -14.4148, -0.9425, 15.0881, -14.4148, -2.9258, 15.0881, -14.4148, -2.9258, 21.2314, -14.4148, -0.9425, 21.2314, -14.4148, -0.9425, 15.0881, -14.4148, -2.9258, 15.0881, -14.4148, -0.9425, 15.0881, -14.4148, -0.8622, 12.2158, -14.4148, -2.9258, 15.0881, -14.4148, -0.8622, 12.2158, -14.4148, -2.9258, 12.2158, -5.229, -2.9259, 21.232, -10.8504, -0.9427, 21.232, -10.8504, -2.9259, 21.232, -5.229, -2.9259, 21.232, -5.229, -0.9427, 21.232, -10.8504, -0.9427, 21.232, -3.1613, -2.9259, 21.232, -5.229, -0.9427, 21.232, -5.229, -2.9259, 21.232, -3.1613, -2.9259, 21.232, -3.1613, -0.9427, 21.232, -5.229, -0.9427, 21.232, 7.8489, -2.9259, 21.232, 4.8649, -0.9427, 21.232, 4.8649, -2.9259, 21.232, 4.8649, -2.9259, 21.232, 4.8649, -0.9427, 21.232, 3.0169, -0.9427, 21.232, 4.8649, -2.9259, 21.232, 3.0169, -0.9427, 21.232, 3.0169, -2.9259, 21.232, 7.8489, -2.9259, 21.232, 7.8489, -0.9427, 21.232, 4.8649, -0.9427, 21.232, 12.1461, -2.9259, 21.232, 7.8489, -0.9427, 21.232, 7.8489, -2.9259, 21.232, 12.1461, -2.9259, 21.232, 12.1461, -0.9427, 21.232, 7.8489, -0.9427, 21.232, -12.6326, -2.9259, 21.2314, -14.4148, -0.9425, 21.2314, -14.4148, -2.9258, 21.2314, -12.6326, -2.9259, 21.2314, -12.6326, -0.9426, 21.2314, -14.4148, -0.9425, 21.2314, 15.7174, -2.9245, 21.2314, 12.1461, -0.9427, 21.232, 12.1461, -2.9259, 21.232, 15.7174, -2.9245, 21.2314, 15.7174, -0.9413, 21.2314, 12.1461, -0.9427, 21.232, -3.1613, -2.9259, 21.232, -1.1419, -0.9427, 21.232, -3.1613, -0.9427, 21.232, -3.1613, -2.9259, 21.232, -1.1419, -2.9259, 21.232, -1.1419, -0.9427, 21.232, 15.7174, -2.9245, -11.6558, 15.7174, -0.9413, -14.8241, 15.7174, -0.9413, -11.6558, 15.7174, -2.9245, -11.6558, 15.7174, -2.9245, -14.8241, 15.7174, -0.9413, -14.8241, 15.7174, -2.9245, -11.6558, 15.7174, -0.9413, -11.6558, 15.7174, -0.9413, -9.8451, 15.7174, -2.9245, -11.6558, 15.7174, -0.9413, -9.8451, 15.7174, -2.9245, -9.8451, -14.4148, -2.9258, -8.355, -14.4148, -0.9425, -5.8847, -14.4148, -0.8849, -8.355, -14.4148, -2.9258, -8.355, -14.4148, -2.9258, -5.8847, -14.4148, -0.9425, -5.8847, -14.4148, -2.9258, -5.8847, -14.4148, -0.9425, -2.4638, -14.4148, -0.9425, -5.8847, -14.4148, -2.9258, -5.8847, -14.4148, -2.9258, -2.4638, -14.4148, -0.9425, -2.4638, -14.4148, -2.9258, -2.4638, -14.4148, -0.9425, -1.9157, -14.4148, -0.9425, -2.4638, -14.4148, -2.9258, -2.4638, -14.4148, -2.9258, -1.894, -14.4148, -0.9425, -1.9157, -14.4079, -2.9077, -19.353, -14.412, -0.9228, -15.7871, -14.4079, -0.9228, -19.353, -14.4079, -2.9077, -19.353, -14.412, -2.9035, -15.7871, -14.412, -0.9228, -15.7871, -5.229, -2.8792, -19.353, -12.0795, -0.9427, -19.353, -5.229, -0.9427, -19.353, -5.229, -2.8792, -19.353, -12.0795, -2.8792, -19.353, -12.0795, -0.9427, -19.353, -2.1346, -2.8792, -19.353, -5.229, -2.8792, -19.353, -5.229, -0.9427, -19.353, -2.1346, -2.8792, -19.353, -5.229, -0.9427, -19.353, -2.1346, -0.9427, -19.353, 7.8489, -2.8792, -19.353, 4.8649, -0.9427, -19.353, 7.8489, -0.9427, -19.353, 12.1457, -2.8792, -19.353, 7.8489, -2.8792, -19.353, 7.8489, -0.9427, -19.353, 12.1457, -2.8792, -19.353, 7.8489, -0.9427, -19.353, 12.1457, -0.9427, -19.353, 7.8489, -2.8792, -19.353, 4.8649, -2.8792, -19.353, 4.8649, -0.9427, -19.353, 4.8649, -2.8792, -19.353, 4.045, -0.9427, -19.353, 4.8649, -0.9427, -19.353, 4.8649, -2.8792, -19.353, 4.045, -2.8792, -19.353, 4.045, -0.9427, -19.353, -13.2437, -2.8791, -19.353, -14.4079, -0.9228, -19.353, -13.2437, -0.9426, -19.353, -13.2437, -2.8791, -19.353, -14.4079, -2.9077, -19.353, -14.4079, -0.9228, -19.353, 15.7174, -2.9245, -14.8241, 15.7178, -0.9413, -19.353, 15.7174, -0.9413, -14.8241, 15.7174, -2.9245, -14.8241, 15.7178, -2.8778, -19.353, 15.7178, -0.9413, -19.353, 15.7178, -2.8778, -19.353, 12.1457, -0.9427, -19.353, 15.7178, -0.9413, -19.353, 15.7178, -2.8778, -19.353, 12.1457, -2.8792, -19.353, 12.1457, -0.9427, -19.353, -14.412, -2.9035, -15.7871, -14.4148, -0.9245, -12.0658, -14.412, -0.9228, -15.7871, -14.412, -2.9035, -15.7871, -14.4148, -2.9006, -12.0658, -14.4148, -0.9245, -12.0658, 15.7174, -2.9245, 2.7996, 15.7178, -0.9412, 6.1189, 15.7178, -2.9245, 6.1189, 15.7174, -2.9245, 2.7996, 15.7174, -0.9413, 2.7996, 15.7178, -0.9412, 6.1189, -12.0795, -2.8792, -19.353, -13.2437, -0.9426, -19.353, -12.0795, -0.9427, -19.353, -12.0795, -2.8792, -19.353, -13.2437, -2.8791, -19.353, -13.2437, -0.9426, -19.353, -10.8504, -2.9259, 21.232, -12.6326, -0.9426, 21.2314, -12.6326, -2.9259, 21.2314, -10.8504, -2.9259, 21.232, -10.8504, -0.9427, 21.232, -12.6326, -0.9426, 21.2314, 4.9018, 2.2728, 9.9486, 7.0476, 2.2586, 10.0587, 6.7299, 2.2728, 9.9486, 6.7299, 2.2728, 9.9486, 7.0476, 2.2586, 10.0587, 7.0476, 2.2586, 7.9026, 4.9018, 2.2728, 9.9486, 5.125, 2.2586, 10.0587, 7.0476, 2.2586, 10.0587, 6.7299, 2.2728, 9.9486, 7.0476, 2.2586, 7.9026, 6.7299, 2.2728, 7.9026, 4.9018, 2.2728, 11.9837, 5.125, 2.2586, 10.0587, 4.9018, 2.2728, 9.9486, 6.7299, 2.2728, 7.9026, 7.0476, 2.2586, 7.9026, 7.0476, 2.2586, 5.7683, 4.9018, 2.2728, 11.9837, 5.125, 2.2586, 12.2039, 5.125, 2.2586, 10.0587, 6.7299, 2.2728, 7.9026, 7.0476, 2.2586, 5.7683, 6.7299, 2.2728, 5.8784, 3.0172, 2.2728, 11.9837, 5.125, 2.2586, 12.2039, 4.9018, 2.2728, 11.9837, 6.7299, 2.2728, 5.8784, 7.0476, 2.2586, 5.7683, 5.125, 2.2586, 5.7683, 3.0172, 2.2728, 11.9837, 3.0239, 2.2586, 12.2039, 5.125, 2.2586, 12.2039, 6.7299, 2.2728, 5.8784, 5.125, 2.2586, 5.7683, 4.9018, 2.2728, 5.8784, 0.9025, 2.2728, 11.9837, 3.0239, 2.2586, 12.2039, 3.0172, 2.2728, 11.9837, 4.9018, 2.2728, 5.8784, 5.125, 2.2586, 5.7683, 5.125, 2.2586, 3.4006, 0.9025, 2.2728, 11.9837, 0.9026, 2.2586, 12.2039, 3.0239, 2.2586, 12.2039, 4.9018, 2.2728, 5.8784, 5.125, 2.2586, 3.4006, 4.9018, 2.2728, 3.6251, -1.1416, 2.2728, 11.9837, 0.9026, 2.2586, 12.2039, 0.9025, 2.2728, 11.9837, 4.9018, 2.2728, 3.6251, 5.125, 2.2586, 3.4006, 3.059, 2.2586, 3.4006, -1.1416, 2.2728, 11.9837, -1.139, 2.2586, 12.2039, 0.9026, 2.2586, 12.2039, 4.9018, 2.2728, 3.6251, 3.059, 2.2586, 3.4006, 2.946, 2.2728, 3.6251, -3.1454, 2.2728, 11.9837, -1.139, 2.2586, 12.2039, -1.1416, 2.2728, 11.9837, 2.946, 2.2728, 3.6251, 3.059, 2.2586, 3.4006, 0.9026, 2.2586, 3.4006, -3.1454, 2.2728, 11.9837, -3.3627, 2.2586, 12.2039, -1.139, 2.2586, 12.2039, 2.946, 2.2728, 3.6251, 0.9026, 2.2586, 3.4006, 0.9025, 2.2728, 3.6251, -3.1454, 2.2728, 9.9486, -3.3627, 2.2586, 12.2039, -3.1454, 2.2728, 11.9837, 0.9025, 2.2728, 3.6251, 0.9026, 2.2586, 3.4006, -1.2305, 2.2586, 3.4006, -3.1454, 2.2728, 9.9486, -3.3627, 2.2586, 10.0587, -3.3627, 2.2586, 12.2039, 0.9025, 2.2728, 3.6251, -1.2305, 2.2586, 3.4006, -1.1233, 2.2728, 3.6251, -5.1944, 2.2728, 9.9486, -3.3627, 2.2586, 10.0587, -3.1454, 2.2728, 9.9486, -1.1233, 2.2728, 3.6251, -1.2305, 2.2586, 3.4006, -3.3627, 2.2586, 3.4006, -5.1944, 2.2728, 9.9486, -5.5219, 2.2586, 10.0587, -3.3627, 2.2586, 10.0587, -1.1233, 2.2728, 3.6251, -3.3627, 2.2586, 3.4006, -3.1454, 2.2728, 3.6251, -5.1944, 2.2728, 7.9026, -5.5219, 2.2586, 10.0587, -5.1944, 2.2728, 9.9486, -3.1454, 2.2728, 3.6251, -3.3627, 2.2586, 3.4006, -3.3627, 2.2586, 5.7683, -5.1944, 2.2728, 7.9026, -5.5219, 2.2586, 7.9026, -5.5219, 2.2586, 10.0587, -3.1454, 2.2728, 3.6251, -3.3627, 2.2586, 5.7683, -3.1454, 2.2728, 5.8784, -5.1944, 2.2728, 5.8784, -5.5219, 2.2586, 7.9026, -5.1944, 2.2728, 7.9026, -3.1454, 2.2728, 5.8784, -3.3627, 2.2586, 5.7683, -5.5219, 2.2586, 5.7683, -5.1944, 2.2728, 5.8784, -5.5219, 2.2586, 5.7683, -5.5219, 2.2586, 7.9026, -3.1454, 2.2728, 5.8784, -5.5219, 2.2586, 5.7683, -5.1944, 2.2728, 5.8784, -5.1944, 2.9899, 2.7917, -3.1454, 2.9899, 5.8784, -3.1454, 2.9899, 3.6281, -5.1944, 2.9899, 2.7917, -5.1944, 2.9899, 5.863, -3.1454, 2.9899, 5.8784, -5.1944, 2.9899, 2.3014, -5.1944, 2.9899, 2.7917, -3.1454, 2.9899, 3.6281, -5.1944, 2.9899, 2.3014, -3.1454, 2.9899, 3.6281, -3.1454, 2.9899, 3.395, -3.1454, 2.9899, 3.395, -3.1454, 2.9899, 3.6281, -1.1233, 2.9899, 3.6251, -3.1454, 2.9899, 3.395, -1.1233, 2.9899, 3.6251, -1.1233, 2.9899, 3.395, -1.1233, 2.9899, 3.395, -1.1233, 2.9899, 3.6251, 0.9025, 2.9899, 3.6251, -1.1233, 2.9899, 3.395, 0.9025, 2.9899, 3.6251, 0.9025, 2.9899, 3.395, 0.9025, 2.9899, 3.395, 0.9025, 2.9899, 3.6251, 2.946, 2.9899, 3.6251, 0.9025, 2.9899, 3.395, 2.946, 2.9899, 3.6251, 2.946, 2.9899, 3.395, 2.946, 2.9899, 3.395, 2.946, 2.9899, 3.6251, 4.9018, 2.9899, 3.6281, 2.946, 2.9899, 3.395, 4.9018, 2.9899, 3.6281, 4.9018, 2.9899, 3.395, 4.9018, 2.9899, 3.395, 4.9018, 2.9899, 3.6281, 6.7299, 2.9899, 2.7917, 4.9018, 2.9899, 3.395, 6.7299, 2.9899, 2.7917, 6.7299, 2.9899, 2.3014, 4.9018, 2.9899, 3.6281, 6.7299, 2.9899, 5.8784, 6.7299, 2.9899, 2.7917, 4.9018, 2.9899, 3.6281, 4.9018, 2.9899, 5.8784, 6.7299, 2.9899, 5.8784, -3.1454, 2.8005, 11.9837, -3.3627, 2.8148, 10.0587, -3.1454, 2.8005, 9.9486, -3.1454, 2.8005, 9.9486, -3.3627, 2.8148, 10.0587, -5.5219, 2.8148, 10.0587, -3.1454, 2.8005, 11.9837, -3.3627, 2.8148, 12.2039, -3.3627, 2.8148, 10.0587, -3.1454, 2.8005, 9.9486, -5.5219, 2.8148, 10.0587, -5.1944, 2.8005, 9.9486, -1.1416, 2.8005, 11.9837, -3.3627, 2.8148, 12.2039, -3.1454, 2.8005, 11.9837, -5.1944, 2.8005, 9.9486, -5.5219, 2.8148, 10.0587, -5.5219, 2.8148, 7.9026, -1.1416, 2.8005, 11.9837, -1.139, 2.8148, 12.2039, -3.3627, 2.8148, 12.2039, -5.1944, 2.8005, 9.9486, -5.5219, 2.8148, 7.9026, -5.1944, 2.8005, 7.9026, 0.9025, 2.8005, 11.9837, -1.139, 2.8148, 12.2039, -1.1416, 2.8005, 11.9837, -5.1944, 2.8005, 7.9026, -5.5219, 2.8148, 7.9026, -5.5219, 2.8148, 5.7683, 0.9025, 2.8005, 11.9837, 0.9026, 2.8148, 12.2039, -1.139, 2.8148, 12.2039, -5.1944, 2.8005, 7.9026, -5.5219, 2.8148, 5.7683, -5.1944, 2.8005, 5.8784, 3.0172, 2.8005, 11.9837, 0.9026, 2.8148, 12.2039, 0.9025, 2.8005, 11.9837, -5.1944, 2.8005, 5.8784, -5.5219, 2.8148, 5.7683, -3.3627, 2.8148, 5.7683, 3.0172, 2.8005, 11.9837, 3.0239, 2.8148, 12.2039, 0.9026, 2.8148, 12.2039, -5.1944, 2.8005, 5.8784, -3.3627, 2.8148, 5.7683, -3.1454, 2.8005, 5.8784, 4.9018, 2.8005, 11.9837, 3.0239, 2.8148, 12.2039, 3.0172, 2.8005, 11.9837, -3.1454, 2.8005, 5.8784, -3.3627, 2.8148, 5.7683, -3.3627, 2.8148, 3.4006, 4.9018, 2.8005, 11.9837, 5.125, 2.8148, 12.2039, 3.0239, 2.8148, 12.2039, -3.1454, 2.8005, 5.8784, -3.3627, 2.8148, 3.4006, -3.1454, 2.8005, 3.6251, 4.9018, 2.8005, 9.9486, 5.125, 2.8148, 12.2039, 4.9018, 2.8005, 11.9837, -3.1454, 2.8005, 3.6251, -3.3627, 2.8148, 3.4006, -1.2305, 2.8148, 3.4006, 4.9018, 2.8005, 9.9486, 5.125, 2.8148, 10.0587, 5.125, 2.8148, 12.2039, -3.1454, 2.8005, 3.6251, -1.2305, 2.8148, 3.4006, -1.1233, 2.8005, 3.6251, 6.7299, 2.8005, 9.9486, 5.125, 2.8148, 10.0587, 4.9018, 2.8005, 9.9486, -1.1233, 2.8005, 3.6251, -1.2305, 2.8148, 3.4006, 0.9026, 2.8148, 3.4006, 6.7299, 2.8005, 9.9486, 7.0476, 2.8148, 10.0587, 5.125, 2.8148, 10.0587, -1.1233, 2.8005, 3.6251, 0.9026, 2.8148, 3.4006, 0.9025, 2.8005, 3.6251, 6.7299, 2.8005, 7.9026, 7.0476, 2.8148, 10.0587, 6.7299, 2.8005, 9.9486, 0.9025, 2.8005, 3.6251, 0.9026, 2.8148, 3.4006, 3.059, 2.8148, 3.4006, 6.7299, 2.8005, 7.9026, 7.0476, 2.8148, 7.9026, 7.0476, 2.8148, 10.0587, 0.9025, 2.8005, 3.6251, 3.059, 2.8148, 3.4006, 2.946, 2.8005, 3.6251, 6.7299, 2.8005, 5.8784, 7.0476, 2.8148, 7.9026, 6.7299, 2.8005, 7.9026, 2.946, 2.8005, 3.6251, 3.059, 2.8148, 3.4006, 5.125, 2.8148, 3.4006, 6.7299, 2.8005, 5.8784, 7.0476, 2.8148, 5.7683, 7.0476, 2.8148, 7.9026, 2.946, 2.8005, 3.6251, 5.125, 2.8148, 3.4006, 4.9018, 2.8005, 3.6251, 4.9018, 2.8005, 5.8784, 7.0476, 2.8148, 5.7683, 6.7299, 2.8005, 5.8784, 4.9018, 2.8005, 3.6251, 5.125, 2.8148, 3.4006, 5.125, 2.8148, 5.7683, 4.9018, 2.8005, 5.8784, 5.125, 2.8148, 5.7683, 7.0476, 2.8148, 5.7683, 4.9018, 2.8005, 3.6251, 5.125, 2.8148, 5.7683, 4.9018, 2.8005, 5.8784, 4.9018, 2.9899, 9.9486, 7.849, 2.9899, 12.2158, 6.7247, 2.9899, 9.9486, 4.9018, 2.9899, 9.9486, 4.8649, 2.9899, 11.9587, 7.849, 2.9899, 12.2158, -5.2289, 2.9899, 9.9204, -3.1612, 2.9899, 11.9587, -3.1454, 2.9899, 9.9486, -5.2289, 2.9899, 9.9204, -5.2289, 2.9899, 12.2158, -3.1612, 2.9899, 11.9587, -0.7341, 0.9838, 4.6381, 0.9025, 2.0553, 3.6251, -1.1233, 2.0553, 3.6251, 0.9025, 2.0553, 3.6251, -0.7341, 0.9838, 4.6381, 0.0844, 0.9838, 4.6381, -1.1233, 2.0553, 3.6251, -1.5533, 0.9838, 4.6381, -0.7341, 0.9838, 4.6381, -1.1233, 2.0553, 3.6251, -2.3725, 0.9838, 4.6381, -1.5533, 0.9838, 4.6381, -2.3725, 0.9838, 4.6381, -1.1233, 2.0553, 3.6251, -3.1454, 2.0553, 3.6251, -3.1454, 2.2728, 3.6251, -3.1454, 2.0553, 3.6251, -1.1233, 2.0553, 3.6251, -3.1454, 2.2728, 3.6251, -1.1233, 2.0553, 3.6251, -1.1233, 2.2728, 3.6251, -1.1233, 2.2728, 3.6251, -1.1233, 2.0553, 3.6251, 0.9025, 2.0553, 3.6251, 0.9025, 2.0553, 3.6251, 0.0844, 0.9838, 4.6381, 0.9024, 0.9838, 4.6381, -1.1233, 2.2728, 3.6251, 0.9025, 2.0553, 3.6251, 0.9025, 2.2728, 3.6251, 0.9024, 0.9838, 4.6381, 2.946, 2.0553, 3.6251, 0.9025, 2.0553, 3.6251, 0.9025, 2.2728, 3.6251, 0.9025, 2.0553, 3.6251, 2.946, 2.0553, 3.6251, 2.946, 2.0553, 3.6251, 0.9024, 0.9838, 4.6381, 1.7218, 0.9838, 4.6381, 0.9025, 2.2728, 3.6251, 2.946, 2.0553, 3.6251, 2.946, 2.2728, 3.6251, 2.946, 2.0553, 3.6251, 1.7218, 0.9838, 4.6381, 2.5406, 0.9838, 4.6381, 2.946, 2.2728, 3.6251, 2.946, 2.0553, 3.6251, 4.9018, 2.0553, 3.6251, 2.5406, 0.9838, 4.6381, 4.9018, 2.0553, 3.6251, 2.946, 2.0553, 3.6251, 2.946, 2.2728, 3.6251, 4.9018, 2.0553, 3.6251, 4.9018, 2.2728, 3.6251, 4.9018, 2.0553, 3.6251, 2.5406, 0.9838, 4.6381, 3.3595, 0.9838, 4.6381, 4.9018, 2.0553, 3.6251, 3.3595, 0.9838, 4.6381, 4.1784, 0.9838, 4.6381, 4.1784, 0.9838, 9.5512, 4.9018, 2.0553, 11.9837, 4.9018, 2.0553, 9.9486, 4.9018, 2.2728, 9.9486, 4.9018, 2.0553, 9.9486, 4.9018, 2.0553, 11.9837, 4.9018, 2.2728, 9.9486, 4.9018, 2.0553, 11.9837, 4.9018, 2.2728, 11.9837, 4.9018, 2.0553, 11.9837, 4.1784, 0.9838, 9.5512, 4.1784, 0.9838, 10.3701, 4.9018, 2.0553, 11.9837, 4.1784, 0.9838, 10.3701, 4.1784, 0.9838, 11.1889, -5.1944, 2.0553, 9.9486, -4.0102, 0.9838, 7.9026, -5.1944, 2.0553, 7.9026, -5.1944, 2.0553, 9.9486, -4.0102, 0.9838, 9.5512, -4.0102, 0.9838, 7.9026, -5.1944, 2.0553, 7.9026, -4.0102, 0.9838, 7.9026, -4.0102, 0.9838, 6.2758, -5.1944, 2.2728, 9.9486, -5.1944, 2.0553, 9.9486, -5.1944, 2.0553, 7.9026, -5.1944, 2.0553, 7.9026, -4.0102, 0.9838, 6.2758, -5.1944, 2.0553, 5.8784, -5.1944, 2.2728, 9.9486, -5.1944, 2.0553, 7.9026, -5.1944, 2.2728, 7.9026, -5.1944, 2.2728, 7.9026, -5.1944, 2.0553, 7.9026, -5.1944, 2.0553, 5.8784, -5.1944, 2.2728, 7.9026, -5.1944, 2.0553, 5.8784, -5.1944, 2.2728, 5.8784, 4.1784, 0.9838, 4.6381, 4.9018, 2.0553, 5.8784, 4.9018, 2.0553, 3.6251, 4.9018, 2.2728, 3.6251, 4.9018, 2.0553, 3.6251, 4.9018, 2.0553, 5.8784, 4.9018, 2.2728, 3.6251, 4.9018, 2.0553, 5.8784, 4.9018, 2.2728, 5.8784, 4.9018, 2.0553, 5.8784, 4.1784, 0.9838, 4.6381, 4.1784, 0.9838, 5.4569, 4.9018, 2.0553, 5.8784, 4.1784, 0.9838, 5.4569, 4.1784, 0.9838, 6.2758, 4.9018, 2.0553, 5.8784, 5.5856, 0.9838, 6.2758, 6.7299, 2.0553, 5.8784, 4.9018, 2.0553, 5.8784, 4.1784, 0.9838, 6.2758, 5.5856, 0.9838, 6.2758, 4.9018, 2.2728, 5.8784, 4.9018, 2.0553, 5.8784, 6.7299, 2.0553, 5.8784, 4.9018, 2.2728, 5.8784, 6.7299, 2.0553, 5.8784, 6.7299, 2.2728, 5.8784, 6.7299, 2.0553, 5.8784, 5.5856, 0.9838, 7.9026, 6.7299, 2.0553, 7.9026, 6.7299, 2.0553, 5.8784, 5.5856, 0.9838, 6.2758, 5.5856, 0.9838, 7.9026, 6.7299, 2.0553, 7.9026, 5.5856, 0.9838, 7.9026, 5.5856, 0.9838, 9.5512, 6.7299, 2.2728, 5.8784, 6.7299, 2.0553, 5.8784, 6.7299, 2.0553, 7.9026, 6.7299, 2.0553, 7.9026, 5.5856, 0.9838, 9.5512, 6.7299, 2.0553, 9.9486, 6.7299, 2.2728, 5.8784, 6.7299, 2.0553, 7.9026, 6.7299, 2.2728, 7.9026, 6.7299, 2.2728, 7.9026, 6.7299, 2.0553, 7.9026, 6.7299, 2.0553, 9.9486, 6.7299, 2.2728, 7.9026, 6.7299, 2.0553, 9.9486, 6.7299, 2.2728, 9.9486, -5.1944, 2.0553, 5.8784, -2.3725, 0.9838, 6.2758, -3.1454, 2.0553, 5.8784, -5.1944, 2.0553, 5.8784, -4.0102, 0.9838, 6.2758, -2.3725, 0.9838, 6.2758, -5.1944, 2.2728, 5.8784, -5.1944, 2.0553, 5.8784, -3.1454, 2.0553, 5.8784, -5.1944, 2.2728, 5.8784, -3.1454, 2.0553, 5.8784, -3.1454, 2.2728, 5.8784, -1.151, 0.9838, 11.1889, -3.1454, 2.0553, 11.9837, -1.1416, 2.0553, 11.9837, -3.1454, 2.0553, 11.9837, -1.151, 0.9838, 11.1889, -1.5533, 0.9838, 11.1889, -3.1454, 2.0553, 11.9837, -1.5533, 0.9838, 11.1889, -2.3725, 0.9838, 11.1889, -1.1416, 2.0553, 11.9837, 0.0844, 0.9838, 11.1889, -1.151, 0.9838, 11.1889, -1.1416, 2.2728, 11.9837, -3.1454, 2.0553, 11.9837, -3.1454, 2.2728, 11.9837, -1.1416, 2.2728, 11.9837, -1.1416, 2.0553, 11.9837, -3.1454, 2.0553, 11.9837, -1.1416, 2.0553, 11.9837, 0.9024, 0.9838, 11.1889, 0.0844, 0.9838, 11.1889, 0.9025, 2.2728, 11.9837, -1.1416, 2.0553, 11.9837, -1.1416, 2.2728, 11.9837, 0.9024, 0.9838, 11.1889, -1.1416, 2.0553, 11.9837, 0.9025, 2.0553, 11.9837, 0.9025, 2.2728, 11.9837, 0.9025, 2.0553, 11.9837, -1.1416, 2.0553, 11.9837, 0.9025, 2.0553, 11.9837, 1.7218, 0.9838, 11.1889, 0.9024, 0.9838, 11.1889, 3.0172, 2.2728, 11.9837, 0.9025, 2.0553, 11.9837, 0.9025, 2.2728, 11.9837, 0.9025, 2.0553, 11.9837, 2.9934, 0.9838, 11.1889, 1.7218, 0.9838, 11.1889, 3.0172, 2.2728, 11.9837, 3.0172, 2.0553, 11.9837, 0.9025, 2.0553, 11.9837, 2.9934, 0.9838, 11.1889, 0.9025, 2.0553, 11.9837, 3.0172, 2.0553, 11.9837, 4.9018, 2.2728, 11.9837, 3.0172, 2.0553, 11.9837, 3.0172, 2.2728, 11.9837, 3.0172, 2.0553, 11.9837, 3.3595, 0.9838, 11.1889, 2.9934, 0.9838, 11.1889, 4.9018, 2.2728, 11.9837, 4.9018, 2.0553, 11.9837, 3.0172, 2.0553, 11.9837, 3.0172, 2.0553, 11.9837, 4.1784, 0.9838, 11.1889, 3.3595, 0.9838, 11.1889, 4.1784, 0.9838, 11.1889, 3.0172, 2.0553, 11.9837, 4.9018, 2.0553, 11.9837, -3.1454, 2.0553, 9.9486, -4.0102, 0.9838, 9.5512, -5.1944, 2.0553, 9.9486, -3.1454, 2.0553, 9.9486, -2.3725, 0.9838, 9.5512, -4.0102, 0.9838, 9.5512, -3.1454, 2.2728, 9.9486, -3.1454, 2.0553, 9.9486, -5.1944, 2.0553, 9.9486, -3.1454, 2.2728, 9.9486, -5.1944, 2.0553, 9.9486, -5.1944, 2.2728, 9.9486, -2.3725, 0.9838, 11.1889, -3.1454, 2.0553, 9.9486, -3.1454, 2.0553, 11.9837, -3.1454, 2.2728, 11.9837, -3.1454, 2.0553, 11.9837, -3.1454, 2.0553, 9.9486, -3.1454, 2.2728, 11.9837, -3.1454, 2.0553, 9.9486, -3.1454, 2.2728, 9.9486, -3.1454, 2.0553, 9.9486, -2.3725, 0.9838, 11.1889, -2.3725, 0.9838, 10.37, -3.1454, 2.0553, 9.9486, -2.3725, 0.9838, 10.37, -2.3725, 0.9838, 9.5512, 3.3595, 0.9838, 5.4569, 4.1784, 0.9838, 6.2758, 4.1784, 0.9838, 5.4569, 3.3595, 0.9838, 4.6381, 4.1784, 0.9838, 5.4569, 4.1784, 0.9838, 4.6381, 3.3595, 0.9838, 4.6381, 3.3595, 0.9838, 5.4569, 4.1784, 0.9838, 5.4569, 2.5406, 0.9838, 4.6381, 3.3595, 0.9838, 5.4569, 3.3595, 0.9838, 4.6381, 2.5406, 0.9838, 4.6381, 2.5406, 0.9838, 5.4569, 3.3595, 0.9838, 5.4569, 1.7218, 0.9838, 4.6381, 2.5406, 0.9838, 5.4569, 2.5406, 0.9838, 4.6381, 3.1289, 0.9838, 5.6875, 3.3595, 0.9838, 5.4569, 2.5406, 0.9838, 5.4569, 3.1289, 0.9838, 6.2758, 3.3595, 0.9838, 5.4569, 3.1289, 0.9838, 5.6875, 3.1289, 0.9838, 5.6875, 2.5406, 0.9838, 5.4569, 2.5406, 0.9838, 5.6875, 3.1289, 0.9838, 6.2758, 3.3595, 0.9838, 6.2758, 3.3595, 0.9838, 5.4569, 3.3595, 0.9838, 5.4569, 3.3595, 0.9838, 6.2758, 4.1784, 0.9838, 6.2758, 3.1289, 0.9838, 7.0946, 3.3595, 0.9838, 6.2758, 3.1289, 0.9838, 6.2758, 2.5406, 0.9838, 5.6875, 2.5406, 0.9838, 5.4569, 1.7218, 0.9838, 5.4569, 1.7218, 0.9838, 4.6381, 1.7218, 0.9838, 5.4569, 2.5406, 0.9838, 5.4569, 2.5406, 0.9838, 5.6875, 1.7218, 0.9838, 5.4569, 1.7218, 0.9838, 5.6875, 0.9024, 0.9838, 4.6381, 1.7218, 0.9838, 5.4569, 1.7218, 0.9838, 4.6381, 1.7218, 0.9838, 5.6875, 1.7218, 0.9838, 5.4569, 0.9024, 0.9838, 5.4569, 0.9024, 0.9838, 4.6381, 0.9024, 0.9838, 5.4569, 1.7218, 0.9838, 5.4569, 1.7218, 0.9838, 5.6875, 0.9024, 0.9838, 5.4569, 0.9024, 0.9838, 5.6875, 0.0844, 0.9838, 4.6381, 0.9024, 0.9838, 5.4569, 0.9024, 0.9838, 4.6381, 0.9024, 0.9838, 5.6875, 0.9024, 0.9838, 5.4569, 0.0844, 0.9838, 5.4569, 0.0844, 0.9838, 4.6381, 0.0844, 0.9838, 5.4569, 0.9024, 0.9838, 5.4569, 0.9024, 0.9838, 5.6875, 0.0844, 0.9838, 5.4569, 0.0844, 0.9838, 5.6875, -0.7341, 0.9838, 4.6381, 0.0844, 0.9838, 5.4569, 0.0844, 0.9838, 4.6381, 0.0844, 0.9838, 5.6875, 0.0844, 0.9838, 5.4569, -0.7341, 0.9838, 5.4569, -0.7341, 0.9838, 4.6381, -0.7341, 0.9838, 5.4569, 0.0844, 0.9838, 5.4569, 0.0844, 0.9838, 5.6875, -0.7341, 0.9838, 5.4569, -0.7341, 0.9838, 5.6875, -1.5533, 0.9838, 4.6381, -0.7341, 0.9838, 5.4569, -0.7341, 0.9838, 4.6381, -0.7341, 0.9838, 5.6875, -0.7341, 0.9838, 5.4569, -1.5533, 0.9838, 5.4569, -1.5533, 0.9838, 4.6381, -1.5533, 0.9838, 5.4569, -0.7341, 0.9838, 5.4569, -2.3725, 0.9838, 4.6381, -1.5533, 0.9838, 5.4569, -1.5533, 0.9838, 4.6381, -0.7341, 0.9838, 5.6875, -1.5533, 0.9838, 5.4569, -1.3227, 0.9838, 5.6875, -2.3725, 0.9838, 4.6381, -2.3725, 0.9838, 5.4569, -1.5533, 0.9838, 5.4569, -1.3227, 0.9838, 5.6875, -1.5533, 0.9838, 5.4569, -1.5533, 0.9838, 6.2758, -2.3725, 0.9838, 5.4569, -1.5533, 0.9838, 6.2758, -1.5533, 0.9838, 5.4569, -1.3227, 0.9838, 5.6875, -1.5533, 0.9838, 6.2758, -1.3227, 0.9838, 6.2758, -2.3725, 0.9838, 5.4569, -2.3725, 0.9838, 6.2758, -1.5533, 0.9838, 6.2758, -1.3227, 0.9838, 6.2758, -1.5533, 0.9838, 6.2758, -1.5533, 0.9838, 7.0946, -2.3725, 0.9838, 6.2758, -1.5533, 0.9838, 7.0946, -1.5533, 0.9838, 6.2758, -1.3227, 0.9838, 6.2758, -1.5533, 0.9838, 7.0946, -1.3227, 0.9838, 7.0946, -4.0102, 0.9838, 7.9026, -2.3725, 0.9838, 6.2758, -4.0102, 0.9838, 6.2758, -2.3725, 0.9838, 6.2758, -2.3725, 0.9838, 7.0946, -1.5533, 0.9838, 7.0946, -2.3725, 0.9838, 6.2758, -4.0102, 0.9838, 7.9026, -2.3725, 0.9838, 7.0946, -1.3227, 0.9838, 7.0946, -1.5533, 0.9838, 7.0946, -1.5533, 0.9838, 7.9026, -2.3725, 0.9838, 7.0946, -1.5533, 0.9838, 7.9026, -1.5533, 0.9838, 7.0946, -1.3227, 0.9838, 7.0946, -1.5533, 0.9838, 7.9026, -1.3227, 0.9838, 7.9026, -2.3725, 0.9838, 7.0946, -4.0102, 0.9838, 7.9026, -2.3725, 0.9838, 7.9026, -2.3725, 0.9838, 7.0946, -2.3725, 0.9838, 7.9026, -1.5533, 0.9838, 7.9026, -4.0102, 0.9838, 9.5512, -2.3725, 0.9838, 7.9026, -4.0102, 0.9838, 7.9026, -1.3227, 0.9838, 7.9026, -1.5533, 0.9838, 7.9026, -1.5533, 0.9838, 8.7323, -2.3725, 0.9838, 7.9026, -1.5533, 0.9838, 8.7323, -1.5533, 0.9838, 7.9026, -1.3227, 0.9838, 7.9026, -1.5533, 0.9838, 8.7323, -1.3227, 0.9838, 8.7323, -2.3725, 0.9838, 7.9026, -4.0102, 0.9838, 9.5512, -2.3725, 0.9838, 8.7323, -2.3725, 0.9838, 7.9026, -2.3725, 0.9838, 8.7323, -1.5533, 0.9838, 8.7323, -2.3725, 0.9838, 8.7323, -4.0102, 0.9838, 9.5512, -2.3725, 0.9838, 9.5512, -1.3227, 0.9838, 8.7323, -1.5533, 0.9838, 8.7323, -1.5533, 0.9838, 9.5512, -2.3725, 0.9838, 8.7323, -1.5533, 0.9838, 9.5512, -1.5533, 0.9838, 8.7323, -2.3725, 0.9838, 8.7323, -2.3725, 0.9838, 9.5512, -1.5533, 0.9838, 9.5512, -1.3227, 0.9838, 8.7323, -1.5533, 0.9838, 9.5512, -1.3227, 0.9838, 9.5512, -2.3725, 0.9838, 9.5512, -1.5533, 0.9838, 10.37, -1.5533, 0.9838, 9.5512, -1.3227, 0.9838, 9.5512, -1.5533, 0.9838, 9.5512, -1.5533, 0.9838, 10.37, -2.3725, 0.9838, 9.5512, -2.3725, 0.9838, 10.37, -1.5533, 0.9838, 10.37, -1.3227, 0.9838, 9.5512, -1.5533, 0.9838, 10.37, -1.3227, 0.9838, 10.1395, -2.3725, 0.9838, 10.37, -1.5533, 0.9838, 11.1889, -1.5533, 0.9838, 10.37, -2.3725, 0.9838, 10.37, -2.3725, 0.9838, 11.1889, -1.5533, 0.9838, 11.1889, -1.5533, 0.9838, 10.37, -1.5533, 0.9838, 11.1889, -1.151, 0.9838, 11.1889, -1.3227, 0.9838, 10.1395, -1.5533, 0.9838, 10.37, -1.151, 0.9838, 10.37, -1.5533, 0.9838, 10.37, -1.151, 0.9838, 11.1889, -1.151, 0.9838, 10.37, -1.3227, 0.9838, 10.1395, -1.151, 0.9838, 10.37, -1.151, 0.9838, 10.1395, -1.151, 0.9838, 10.37, -1.151, 0.9838, 11.1889, 0.0844, 0.9838, 11.1889, -1.151, 0.9838, 10.1395, -1.151, 0.9838, 10.37, 0.0844, 0.9838, 10.37, -1.151, 0.9838, 10.37, 0.0844, 0.9838, 11.1889, 0.0844, 0.9838, 10.37, -1.151, 0.9838, 10.1395, 0.0844, 0.9838, 10.37, 0.0844, 0.9838, 10.1395, 0.0844, 0.9838, 10.37, 0.0844, 0.9838, 11.1889, 0.9024, 0.9838, 11.1889, 0.0844, 0.9838, 10.1395, 0.0844, 0.9838, 10.37, 0.9024, 0.9838, 10.37, 0.0844, 0.9838, 10.37, 0.9024, 0.9838, 11.1889, 0.9024, 0.9838, 10.37, 0.0844, 0.9838, 10.1395, 0.9024, 0.9838, 10.37, 0.9024, 0.9838, 10.1394, 0.9024, 0.9838, 10.37, 0.9024, 0.9838, 11.1889, 1.7218, 0.9838, 11.1889, 0.9024, 0.9838, 10.1394, 0.9024, 0.9838, 10.37, 1.7218, 0.9838, 10.37, 0.9024, 0.9838, 10.37, 1.7218, 0.9838, 11.1889, 1.7218, 0.9838, 10.37, 0.9024, 0.9838, 10.1394, 1.7218, 0.9838, 10.37, 1.7218, 0.9838, 10.1395, 1.7218, 0.9838, 10.37, 1.7218, 0.9838, 11.1889, 2.9934, 0.9838, 11.1889, 1.7218, 0.9838, 10.1395, 1.7218, 0.9838, 10.37, 2.9934, 0.9838, 10.37, 1.7218, 0.9838, 10.37, 2.9934, 0.9838, 11.1889, 2.9934, 0.9838, 10.37, 1.7218, 0.9838, 10.1395, 2.9934, 0.9838, 10.37, 2.9934, 0.9838, 10.1395, 2.9934, 0.9838, 10.37, 2.9934, 0.9838, 11.1889, 3.3595, 0.9838, 11.1889, 2.9934, 0.9838, 10.1395, 2.9934, 0.9838, 10.37, 3.3595, 0.9838, 10.37, 2.9934, 0.9838, 10.37, 3.3595, 0.9838, 11.1889, 3.3595, 0.9838, 10.37, 3.3595, 0.9838, 10.37, 3.3595, 0.9838, 11.1889, 4.1784, 0.9838, 11.1889, 2.9934, 0.9838, 10.1395, 3.3595, 0.9838, 10.37, 3.1289, 0.9838, 10.1394, 3.3595, 0.9838, 10.37, 4.1784, 0.9838, 11.1889, 4.1784, 0.9838, 10.3701, 3.1289, 0.9838, 10.1394, 3.3595, 0.9838, 10.37, 3.3595, 0.9838, 9.5512, 3.3595, 0.9838, 9.5512, 3.3595, 0.9838, 10.37, 4.1784, 0.9838, 10.3701, 3.1289, 0.9838, 10.1394, 3.3595, 0.9838, 9.5512, 3.1289, 0.9838, 9.5512, 3.3595, 0.9838, 9.5512, 4.1784, 0.9838, 10.3701, 4.1784, 0.9838, 9.5512, 3.1289, 0.9838, 9.5512, 3.3595, 0.9838, 9.5512, 3.3595, 0.9838, 8.7323, 3.3595, 0.9838, 8.7323, 3.3595, 0.9838, 9.5512, 4.1784, 0.9838, 9.5512, 3.1289, 0.9838, 9.5512, 3.3595, 0.9838, 8.7323, 3.1289, 0.9838, 8.7323, 3.1289, 0.9838, 8.7323, 3.3595, 0.9838, 8.7323, 3.3595, 0.9838, 7.9026, 3.1289, 0.9838, 8.7323, 3.3595, 0.9838, 7.9026, 3.1289, 0.9838, 7.9026, 3.3595, 0.9838, 8.7323, 4.1784, 0.9838, 9.5512, 4.1784, 0.9838, 8.7323, 3.3595, 0.9838, 7.9026, 3.3595, 0.9838, 8.7323, 4.1784, 0.9838, 8.7323, 5.5856, 0.9838, 7.9026, 4.1784, 0.9838, 8.7323, 4.1784, 0.9838, 9.5512, 5.5856, 0.9838, 7.9026, 4.1784, 0.9838, 9.5512, 5.5856, 0.9838, 9.5512, 4.1784, 0.9838, 8.7323, 5.5856, 0.9838, 7.9026, 4.1784, 0.9838, 7.9026, 3.3595, 0.9838, 7.9026, 4.1784, 0.9838, 8.7323, 4.1784, 0.9838, 7.9026, 5.5856, 0.9838, 6.2758, 4.1784, 0.9838, 7.9026, 5.5856, 0.9838, 7.9026, 3.1289, 0.9838, 7.9026, 3.3595, 0.9838, 7.9026, 3.3595, 0.9838, 7.0946, 3.3595, 0.9838, 7.0946, 3.3595, 0.9838, 7.9026, 4.1784, 0.9838, 7.9026, 3.1289, 0.9838, 7.9026, 3.3595, 0.9838, 7.0946, 3.1289, 0.9838, 7.0946, 3.1289, 0.9838, 7.0946, 3.3595, 0.9838, 7.0946, 3.3595, 0.9838, 6.2758, 3.3595, 0.9838, 7.0946, 4.1784, 0.9838, 7.9026, 4.1784, 0.9838, 7.0946, 5.5856, 0.9838, 6.2758, 4.1784, 0.9838, 7.0946, 4.1784, 0.9838, 7.9026, 3.3595, 0.9838, 6.2758, 3.3595, 0.9838, 7.0946, 4.1784, 0.9838, 7.0946, 4.1784, 0.9838, 7.0946, 5.5856, 0.9838, 6.2758, 4.1784, 0.9838, 6.2758, 3.3595, 0.9838, 6.2758, 4.1784, 0.9838, 7.0946, 4.1784, 0.9838, 6.2758, 0.0844, 0.9838, 9.7818, 0.9024, 0.5843, 9.7818, 0.9024, 0.9838, 9.7818, 0.9024, 0.9838, 9.7818, 0.9024, 0.5843, 9.7818, 1.7218, 0.5843, 9.7818, 0.0844, 0.9838, 9.7818, 0.0844, 0.5843, 9.7818, 0.9024, 0.5843, 9.7818, -0.9647, 0.9838, 9.7818, 0.0844, 0.5843, 9.7818, 0.0844, 0.9838, 9.7818, -0.9647, 0.9838, 9.7818, -1.1454, 0.5843, 9.7818, 0.0844, 0.5843, 9.7818, 0.9024, 0.9838, 9.7818, 1.7218, 0.5843, 9.7818, 1.7218, 0.9838, 9.7818, 1.7218, 0.9838, 9.7818, 1.7218, 0.5843, 9.7818, 3.0069, 0.5843, 9.7818, 1.7218, 0.9838, 9.7818, 3.0069, 0.5843, 9.7818, 2.7712, 0.9838, 9.7818, -0.7341, 2.9877, 9.5512, -0.7341, 0.9838, 8.7323, -0.7341, 0.9838, 9.5512, -0.7341, 0.9838, 8.7323, -0.7341, 2.9877, 9.5512, -0.7341, 2.9877, 7.9026, -0.7341, 0.9838, 8.7323, -0.7341, 2.9877, 7.9026, -0.7341, 0.9838, 7.9026, -0.7341, 2.9877, 7.9026, -0.7341, 0.9838, 7.0946, -0.7341, 0.9838, 7.9026, -0.7341, 0.9838, 7.0946, -0.7341, 2.9877, 7.9026, -0.7341, 2.9877, 6.2758, -0.7341, 0.9838, 7.0946, -0.7341, 2.9877, 6.2758, -0.7341, 0.9838, 6.2758, -0.7341, 2.9877, 6.2758, 0.0844, 0.9838, 6.2758, -0.7341, 0.9838, 6.2758, 0.0844, 0.9838, 6.2758, -0.7341, 2.9877, 6.2758, 0.9024, 2.9877, 6.2758, 0.0844, 0.9838, 6.2758, 0.9024, 2.9877, 6.2758, 0.9024, 0.9838, 6.2758, 0.9024, 2.9877, 6.2758, 1.7218, 0.9838, 6.2758, 0.9024, 0.9838, 6.2758, 1.7218, 0.9838, 6.2758, 0.9024, 2.9877, 6.2758, 2.5406, 2.9877, 6.2758, 1.7218, 0.9838, 6.2758, 2.5406, 2.9877, 6.2758, 2.5406, 0.9838, 6.2758, 6.7299, 2.0553, 9.9486, 4.1784, 0.9838, 9.5512, 4.9018, 2.0553, 9.9486, 6.7299, 2.0553, 9.9486, 5.5856, 0.9838, 9.5512, 4.1784, 0.9838, 9.5512, 6.7299, 2.2728, 9.9486, 6.7299, 2.0553, 9.9486, 4.9018, 2.0553, 9.9486, 6.7299, 2.2728, 9.9486, 4.9018, 2.0553, 9.9486, 4.9018, 2.2728, 9.9486, -2.3725, 0.9838, 6.2758, -3.1454, 2.0553, 3.6251, -3.1454, 2.0553, 5.8784, -3.1454, 2.2728, 5.8784, -3.1454, 2.0553, 5.8784, -3.1454, 2.0553, 3.6251, -3.1454, 2.2728, 5.8784, -3.1454, 2.0553, 3.6251, -3.1454, 2.2728, 3.6251, -3.1454, 2.0553, 3.6251, -2.3725, 0.9838, 6.2758, -2.3725, 0.9838, 5.4569, -3.1454, 2.0553, 3.6251, -2.3725, 0.9838, 5.4569, -2.3725, 0.9838, 4.6381, -3.1454, 2.8005, 3.6251, -3.1454, 2.9899, 5.8784, -3.1454, 2.8005, 5.8784, -3.1454, 2.8005, 3.6251, -3.1454, 2.9899, 3.6281, -3.1454, 2.9899, 5.8784, 6.7299, 2.8005, 5.8784, 4.9018, 2.9899, 5.8784, 4.9018, 2.8005, 5.8784, 6.7299, 2.8005, 5.8784, 6.7299, 2.9899, 5.8784, 4.9018, 2.9899, 5.8784, 4.9018, 2.8005, 11.9837, 4.9018, 2.9899, 9.9486, 4.9018, 2.8005, 9.9486, 4.9018, 2.8005, 11.9837, 4.8649, 2.9899, 11.9587, 4.9018, 2.9899, 9.9486, -5.1944, 2.8005, 9.9486, -3.1454, 2.9899, 9.9486, -3.1454, 2.8005, 9.9486, -5.1944, 2.8005, 9.9486, -5.2289, 2.9899, 9.9204, -3.1454, 2.9899, 9.9486, -3.1454, 2.8005, 5.8784, -5.1944, 2.9899, 5.863, -5.1944, 2.8005, 5.8784, -3.1454, 2.8005, 5.8784, -3.1454, 2.9899, 5.8784, -5.1944, 2.9899, 5.863, -5.1944, 2.8005, 7.9026, -5.2289, 2.9899, 9.9204, -5.1944, 2.8005, 9.9486, -5.1944, 2.8005, 7.9026, -5.1944, 2.9899, 7.9026, -5.2289, 2.9899, 9.9204, -5.1944, 2.8005, 5.8784, -5.1944, 2.9899, 7.9026, -5.1944, 2.8005, 7.9026, -5.1944, 2.8005, 5.8784, -5.1944, 2.9899, 5.863, -5.1944, 2.9899, 7.9026, 4.9018, 2.8005, 9.9486, 6.7247, 2.9899, 9.9486, 6.7299, 2.8005, 9.9486, 4.9018, 2.8005, 9.9486, 4.9018, 2.9899, 9.9486, 6.7247, 2.9899, 9.9486, 6.7299, 2.8005, 9.9486, 6.7299, 2.9899, 7.9026, 6.7299, 2.8005, 7.9026, 6.7299, 2.8005, 9.9486, 6.7247, 2.9899, 9.9486, 6.7299, 2.9899, 7.9026, 6.7299, 2.8005, 7.9026, 6.7299, 2.9899, 7.9026, 6.7299, 2.9899, 5.8784, 6.7299, 2.8005, 7.9026, 6.7299, 2.9899, 5.8784, 6.7299, 2.8005, 5.8784, -3.1454, 2.8005, 9.9486, -3.1612, 2.9899, 11.9587, -3.1454, 2.8005, 11.9837, -3.1454, 2.8005, 9.9486, -3.1454, 2.9899, 9.9486, -3.1612, 2.9899, 11.9587, 3.0172, 2.8005, 11.9837, 4.8649, 2.9899, 11.9587, 4.9018, 2.8005, 11.9837, 3.0172, 2.8005, 11.9837, 3.0172, 2.9899, 11.9837, 4.8649, 2.9899, 11.9587, 0.9025, 2.8005, 11.9837, 3.0172, 2.9899, 11.9837, 3.0172, 2.8005, 11.9837, 0.9025, 2.8005, 11.9837, 0.9025, 2.9899, 11.9837, 3.0172, 2.9899, 11.9837, -1.1416, 2.8005, 11.9837, 0.9025, 2.9899, 11.9837, 0.9025, 2.8005, 11.9837, -1.1416, 2.8005, 11.9837, -1.1416, 2.9899, 11.9837, 0.9025, 2.9899, 11.9837, -3.1454, 2.8005, 11.9837, -1.1416, 2.9899, 11.9837, -1.1416, 2.8005, 11.9837, -3.1454, 2.8005, 11.9837, -3.1612, 2.9899, 11.9587, -1.1416, 2.9899, 11.9837, 4.9018, 2.8005, 5.8784, 4.9018, 2.9899, 3.6281, 4.9018, 2.8005, 3.6251, 4.9018, 2.8005, 5.8784, 4.9018, 2.9899, 5.8784, 4.9018, 2.9899, 3.6281, -1.1233, 2.8005, 3.6251, -3.1454, 2.9899, 3.6281, -3.1454, 2.8005, 3.6251, -1.1233, 2.8005, 3.6251, -1.1233, 2.9899, 3.6251, -3.1454, 2.9899, 3.6281, 0.9025, 2.8005, 3.6251, -1.1233, 2.9899, 3.6251, -1.1233, 2.8005, 3.6251, 0.9025, 2.8005, 3.6251, 0.9025, 2.9899, 3.6251, -1.1233, 2.9899, 3.6251, 2.946, 2.8005, 3.6251, 0.9025, 2.9899, 3.6251, 0.9025, 2.8005, 3.6251, 2.946, 2.8005, 3.6251, 2.946, 2.9899, 3.6251, 0.9025, 2.9899, 3.6251, 4.9018, 2.8005, 3.6251, 2.946, 2.9899, 3.6251, 2.946, 2.8005, 3.6251, 4.9018, 2.8005, 3.6251, 4.9018, 2.9899, 3.6281, 2.946, 2.9899, 3.6251, 7.0476, 2.8148, 10.0587, 5.125, 2.2586, 10.0587, 5.125, 2.8148, 10.0587, 7.0476, 2.8148, 10.0587, 7.0476, 2.2586, 10.0587, 5.125, 2.2586, 10.0587, 5.125, 2.8148, 10.0587, 5.125, 2.2586, 12.2039, 5.125, 2.8148, 12.2039, 5.125, 2.8148, 10.0587, 5.125, 2.2586, 10.0587, 5.125, 2.2586, 12.2039, -3.3627, 2.8148, 12.2039, -3.3627, 2.2586, 10.0587, -3.3627, 2.8148, 10.0587, -3.3627, 2.8148, 12.2039, -3.3627, 2.2586, 12.2039, -3.3627, 2.2586, 10.0587, -5.5219, 2.8148, 5.7683, -3.3627, 2.2586, 5.7683, -3.3627, 2.8148, 5.7683, -5.5219, 2.8148, 5.7683, -5.5219, 2.2586, 5.7683, -3.3627, 2.2586, 5.7683, -3.3627, 2.8148, 5.7683, -3.3627, 2.2586, 3.4006, -3.3627, 2.8148, 3.4006, -3.3627, 2.8148, 5.7683, -3.3627, 2.2586, 5.7683, -3.3627, 2.2586, 3.4006, -1.2305, 2.8148, 3.4006, 0.9026, 2.2586, 3.4006, 0.9026, 2.8148, 3.4006, 0.9026, 2.8148, 3.4006, 0.9026, 2.2586, 3.4006, 3.059, 2.2586, 3.4006, -1.2305, 2.8148, 3.4006, -1.2305, 2.2586, 3.4006, 0.9026, 2.2586, 3.4006, -3.3627, 2.8148, 3.4006, -1.2305, 2.2586, 3.4006, -1.2305, 2.8148, 3.4006, -3.3627, 2.8148, 3.4006, -3.3627, 2.2586, 3.4006, -1.2305, 2.2586, 3.4006, 0.9026, 2.8148, 3.4006, 3.059, 2.2586, 3.4006, 3.059, 2.8148, 3.4006, 3.059, 2.8148, 3.4006, 3.059, 2.2586, 3.4006, 5.125, 2.2586, 3.4006, 3.059, 2.8148, 3.4006, 5.125, 2.2586, 3.4006, 5.125, 2.8148, 3.4006, 5.125, 2.8148, 3.4006, 5.125, 2.2586, 5.7683, 5.125, 2.8148, 5.7683, 5.125, 2.8148, 3.4006, 5.125, 2.2586, 3.4006, 5.125, 2.2586, 5.7683, 7.0476, 2.8148, 5.7683, 7.0476, 2.2586, 7.9026, 7.0476, 2.8148, 7.9026, 7.0476, 2.8148, 5.7683, 7.0476, 2.2586, 5.7683, 7.0476, 2.2586, 7.9026, 7.0476, 2.8148, 7.9026, 7.0476, 2.2586, 7.9026, 7.0476, 2.2586, 10.0587, 7.0476, 2.8148, 7.9026, 7.0476, 2.2586, 10.0587, 7.0476, 2.8148, 10.0587, -5.5219, 2.8148, 10.0587, -5.5219, 2.2586, 7.9026, -5.5219, 2.8148, 7.9026, -5.5219, 2.8148, 10.0587, -5.5219, 2.2586, 10.0587, -5.5219, 2.2586, 7.9026, -5.5219, 2.8148, 7.9026, -5.5219, 2.2586, 7.9026, -5.5219, 2.2586, 5.7683, -5.5219, 2.8148, 7.9026, -5.5219, 2.2586, 5.7683, -5.5219, 2.8148, 5.7683, 5.125, 2.8148, 5.7683, 7.0476, 2.2586, 5.7683, 7.0476, 2.8148, 5.7683, 5.125, 2.8148, 5.7683, 5.125, 2.2586, 5.7683, 7.0476, 2.2586, 5.7683, -3.3627, 2.8148, 10.0587, -5.5219, 2.2586, 10.0587, -5.5219, 2.8148, 10.0587, -3.3627, 2.8148, 10.0587, -3.3627, 2.2586, 10.0587, -5.5219, 2.2586, 10.0587, 3.0239, 2.8148, 12.2039, 0.9026, 2.2586, 12.2039, 0.9026, 2.8148, 12.2039, 0.9026, 2.8148, 12.2039, 0.9026, 2.2586, 12.2039, -1.139, 2.2586, 12.2039, 3.0239, 2.8148, 12.2039, 3.0239, 2.2586, 12.2039, 0.9026, 2.2586, 12.2039, 5.125, 2.8148, 12.2039, 3.0239, 2.2586, 12.2039, 3.0239, 2.8148, 12.2039, 5.125, 2.8148, 12.2039, 5.125, 2.2586, 12.2039, 3.0239, 2.2586, 12.2039, 0.9026, 2.8148, 12.2039, -1.139, 2.2586, 12.2039, -1.139, 2.8148, 12.2039, -1.139, 2.8148, 12.2039, -1.139, 2.2586, 12.2039, -3.3627, 2.2586, 12.2039, -1.139, 2.8148, 12.2039, -3.3627, 2.2586, 12.2039, -3.3627, 2.8148, 12.2039, 2.5406, 2.9877, 6.2758, 2.5406, 0.9838, 7.0946, 2.5406, 0.9838, 6.2758, 2.5406, 0.9838, 7.0946, 2.5406, 2.9877, 6.2758, 2.5406, 2.9877, 7.9026, 2.5406, 0.9838, 7.0946, 2.5406, 2.9877, 7.9026, 2.5406, 0.9838, 7.9026, 2.5406, 2.9877, 7.9026, 2.5406, 0.9838, 8.7323, 2.5406, 0.9838, 7.9026, 2.5406, 0.9838, 8.7323, 2.5406, 2.9877, 7.9026, 2.5406, 2.9877, 9.5512, 2.5406, 0.9838, 8.7323, 2.5406, 2.9877, 9.5512, 2.5406, 0.9838, 9.5512, 2.5406, 2.9877, 9.5512, 1.7218, 0.9838, 9.5512, 2.5406, 0.9838, 9.5512, 1.7218, 0.9838, 9.5512, 2.5406, 2.9877, 9.5512, 0.9024, 2.9877, 9.5512, 1.7218, 0.9838, 9.5512, 0.9024, 2.9877, 9.5512, 0.9024, 0.9838, 9.5512, 0.9024, 2.9877, 9.5512, 0.0844, 0.9838, 9.5512, 0.9024, 0.9838, 9.5512, 0.0844, 0.9838, 9.5512, 0.9024, 2.9877, 9.5512, -0.7341, 2.9877, 9.5512, 0.0844, 0.9838, 9.5512, -0.7341, 2.9877, 9.5512, -0.7341, 0.9838, 9.5512, -0.9647, 0.9838, 6.0452, -0.9647, 0.5843, 7.0946, -0.9647, 0.9838, 7.0946, -0.9647, 0.9838, 6.0452, -0.9647, 0.5843, 6.0452, -0.9647, 0.5843, 7.0946, -0.9647, 0.9838, 7.0946, -0.9647, 0.5843, 7.0946, -0.9647, 0.5843, 7.9026, -0.9647, 0.9838, 7.0946, -0.9647, 0.5843, 7.9026, -0.9647, 0.9838, 7.9026, -0.9647, 0.9838, 7.9026, -0.9647, 0.5843, 7.9026, -0.9647, 0.5843, 8.7323, -0.9647, 0.9838, 7.9026, -0.9647, 0.5843, 8.7323, -0.9647, 0.9838, 8.7323, -0.9647, 0.9838, 8.7323, -0.9647, 0.5843, 8.7323, -1.1454, 0.5843, 9.7818, -0.9647, 0.9838, 8.7323, -1.1454, 0.5843, 9.7818, -0.9647, 0.9838, 9.7818, 2.9934, 0.9838, 10.1395, 1.7218, 0.5843, 10.1395, 1.7218, 0.9838, 10.1395, 1.7218, 0.9838, 10.1395, 1.7218, 0.5843, 10.1395, 0.9024, 0.5843, 10.1395, 2.9934, 0.9838, 10.1395, 2.9934, 0.5843, 10.1395, 1.7218, 0.5843, 10.1395, 3.1289, 0.9838, 10.1394, 2.9934, 0.5843, 10.1395, 2.9934, 0.9838, 10.1395, 3.1289, 0.9838, 10.1394, 3.1289, 0.5843, 10.1395, 2.9934, 0.5843, 10.1395, 1.7218, 0.9838, 10.1395, 0.9024, 0.5843, 10.1395, 0.9024, 0.9838, 10.1394, 0.9024, 0.9838, 10.1394, 0.9024, 0.5843, 10.1395, 0.0844, 0.5843, 10.1395, 0.9024, 0.9838, 10.1394, 0.0844, 0.5843, 10.1395, 0.0844, 0.9838, 10.1395, 0.0844, 0.9838, 10.1395, 0.0844, 0.5843, 10.1395, -1.151, 0.5843, 10.1395, 0.0844, 0.9838, 10.1395, -1.151, 0.5843, 10.1395, -1.151, 0.9838, 10.1395, -1.151, 0.9838, 10.1395, -1.151, 0.5843, 10.1395, -1.3227, 0.5843, 10.1395, -1.151, 0.9838, 10.1395, -1.3227, 0.5843, 10.1395, -1.3227, 0.9838, 10.1395, 1.7218, 0.9838, 6.0452, 0.9024, 0.5843, 6.0452, 0.9024, 0.9838, 6.0452, 0.9024, 0.9838, 6.0452, 0.9024, 0.5843, 6.0452, 0.0844, 0.5843, 6.0452, 1.7218, 0.9838, 6.0452, 1.7218, 0.5843, 6.0452, 0.9024, 0.5843, 6.0452, 2.7712, 0.9838, 6.0452, 1.7218, 0.5843, 6.0452, 1.7218, 0.9838, 6.0452, 2.7712, 0.9838, 6.0452, 2.7712, 0.5843, 6.0452, 1.7218, 0.5843, 6.0452, 0.9024, 0.9838, 6.0452, 0.0844, 0.5843, 6.0452, 0.0844, 0.9838, 6.0452, 0.0844, 0.9838, 6.0452, 0.0844, 0.5843, 6.0452, -0.9647, 0.5843, 6.0452, 0.0844, 0.9838, 6.0452, -0.9647, 0.5843, 6.0452, -0.9647, 0.9838, 6.0452, -0.7341, 2.9877, 7.9026, 0.9024, 2.9877, 9.5512, 0.9024, 2.9877, 7.9026, -0.7341, 2.9877, 7.9026, -0.7341, 2.9877, 9.5512, 0.9024, 2.9877, 9.5512, 0.9024, 2.9877, 7.9026, 0.9024, 2.9877, 9.5512, 2.5406, 2.9877, 9.5512, -0.7341, 2.9877, 6.2758, -0.7341, 2.9877, 7.9026, 0.9024, 2.9877, 7.9026, 0.9024, 2.9877, 7.9026, 2.5406, 2.9877, 9.5512, 2.5406, 2.9877, 7.9026, -0.7341, 2.9877, 6.2758, 0.9024, 2.9877, 7.9026, 0.9024, 2.9877, 6.2758, 0.9024, 2.9877, 6.2758, 0.9024, 2.9877, 7.9026, 2.5406, 2.9877, 7.9026, 0.9024, 2.9877, 6.2758, 2.5406, 2.9877, 7.9026, 2.5406, 2.9877, 6.2758, 2.5406, 0.9838, 5.6875, 3.1289, 0.5843, 5.6875, 3.1289, 0.9838, 5.6875, 2.5406, 0.9838, 5.6875, 2.5406, 0.5843, 5.6875, 3.1289, 0.5843, 5.6875, 1.7218, 0.9838, 5.6875, 2.5406, 0.5843, 5.6875, 2.5406, 0.9838, 5.6875, 1.7218, 0.9838, 5.6875, 1.7218, 0.5843, 5.6875, 2.5406, 0.5843, 5.6875, 0.9024, 0.9838, 5.6875, 1.7218, 0.5843, 5.6875, 1.7218, 0.9838, 5.6875, 0.9024, 0.9838, 5.6875, 0.9024, 0.5843, 5.6875, 1.7218, 0.5843, 5.6875, 0.0844, 0.9838, 5.6875, 0.9024, 0.5843, 5.6875, 0.9024, 0.9838, 5.6875, 0.0844, 0.9838, 5.6875, 0.0844, 0.5843, 5.6875, 0.9024, 0.5843, 5.6875, -0.7341, 0.9838, 5.6875, 0.0844, 0.5843, 5.6875, 0.0844, 0.9838, 5.6875, -0.7341, 0.9838, 5.6875, -0.7341, 0.5843, 5.6875, 0.0844, 0.5843, 5.6875, -1.3227, 0.9838, 5.6875, -0.7341, 0.5843, 5.6875, -0.7341, 0.9838, 5.6875, -1.3227, 0.9838, 5.6875, -1.3227, 0.5843, 5.6875, -0.7341, 0.5843, 5.6875, 2.7712, 0.9838, 8.7323, 2.7712, 0.5843, 7.9026, 2.7712, 0.9838, 7.9026, 2.7712, 0.9838, 7.9026, 2.7712, 0.5843, 7.9026, 2.7712, 0.5843, 7.0946, 2.7712, 0.9838, 8.7323, 2.7712, 0.5843, 8.7323, 2.7712, 0.5843, 7.9026, 2.7712, 0.9838, 9.7818, 2.7712, 0.5843, 8.7323, 2.7712, 0.9838, 8.7323, 2.7712, 0.9838, 9.7818, 3.0069, 0.5843, 9.7818, 2.7712, 0.5843, 8.7323, 2.7712, 0.9838, 7.9026, 2.7712, 0.5843, 7.0946, 2.7712, 0.9838, 7.0946, 2.7712, 0.9838, 7.0946, 2.7712, 0.5843, 7.0946, 2.7712, 0.5843, 6.0452, 2.7712, 0.9838, 7.0946, 2.7712, 0.5843, 6.0452, 2.7712, 0.9838, 6.0452, 3.1289, 0.9838, 5.6875, 3.1289, 0.5843, 6.2758, 3.1289, 0.9838, 6.2758, 3.1289, 0.9838, 5.6875, 3.1289, 0.5843, 5.6875, 3.1289, 0.5843, 6.2758, 3.1289, 0.9838, 6.2758, 3.1289, 0.5843, 6.2758, 3.1289, 0.5843, 7.0946, 3.1289, 0.9838, 6.2758, 3.1289, 0.5843, 7.0946, 3.1289, 0.9838, 7.0946, 3.1289, 0.9838, 7.0946, 3.1289, 0.5843, 7.0946, 3.1289, 0.5843, 7.9026, 3.1289, 0.9838, 7.0946, 3.1289, 0.5843, 7.9026, 3.1289, 0.9838, 7.9026, 3.1289, 0.9838, 7.9026, 3.1289, 0.5843, 7.9026, 3.1289, 0.5843, 8.7323, 3.1289, 0.9838, 7.9026, 3.1289, 0.5843, 8.7323, 3.1289, 0.9838, 8.7323, 3.1289, 0.9838, 8.7323, 3.1289, 0.5843, 8.7323, 3.1289, 0.5843, 9.5512, 3.1289, 0.9838, 8.7323, 3.1289, 0.5843, 9.5512, 3.1289, 0.9838, 9.5512, 3.1289, 0.9838, 9.5512, 3.1289, 0.5843, 9.5512, 3.1289, 0.5843, 10.1395, 3.1289, 0.9838, 9.5512, 3.1289, 0.5843, 10.1395, 3.1289, 0.9838, 10.1394, -1.3227, 0.9838, 7.0946, -1.3227, 0.5843, 6.2758, -1.3227, 0.9838, 6.2758, -1.3227, 0.9838, 6.2758, -1.3227, 0.5843, 6.2758, -1.3227, 0.5843, 5.6875, -1.3227, 0.9838, 6.2758, -1.3227, 0.5843, 5.6875, -1.3227, 0.9838, 5.6875, -1.3227, 0.9838, 7.0946, -1.3227, 0.5843, 7.0946, -1.3227, 0.5843, 6.2758, -1.3227, 0.9838, 7.9026, -1.3227, 0.5843, 7.0946, -1.3227, 0.9838, 7.0946, -1.3227, 0.9838, 7.9026, -1.3227, 0.5843, 7.9026, -1.3227, 0.5843, 7.0946, -1.3227, 0.9838, 8.7323, -1.3227, 0.5843, 7.9026, -1.3227, 0.9838, 7.9026, -1.3227, 0.9838, 8.7323, -1.3227, 0.5843, 8.7323, -1.3227, 0.5843, 7.9026, -1.3227, 0.9838, 9.5512, -1.3227, 0.5843, 8.7323, -1.3227, 0.9838, 8.7323, -1.3227, 0.9838, 9.5512, -1.3227, 0.5843, 9.5512, -1.3227, 0.5843, 8.7323, -1.3227, 0.9838, 10.1395, -1.3227, 0.5843, 9.5512, -1.3227, 0.9838, 9.5512, -1.3227, 0.9838, 10.1395, -1.3227, 0.5843, 10.1395, -1.3227, 0.5843, 9.5512, 0.9024, 0.9838, 6.0452, 1.7218, 0.9838, 6.2758, 1.7218, 0.9838, 6.0452, 1.7218, 0.9838, 6.0452, 1.7218, 0.9838, 6.2758, 2.5406, 0.9838, 6.2758, 0.9024, 0.9838, 6.0452, 0.9024, 0.9838, 6.2758, 1.7218, 0.9838, 6.2758, 1.7218, 0.9838, 6.0452, 2.5406, 0.9838, 6.2758, 2.7712, 0.9838, 6.0452, 0.0844, 0.9838, 6.0452, 0.9024, 0.9838, 6.2758, 0.9024, 0.9838, 6.0452, 2.7712, 0.9838, 6.0452, 2.5406, 0.9838, 6.2758, 2.5406, 0.9838, 7.0946, 0.0844, 0.9838, 6.0452, 0.0844, 0.9838, 6.2758, 0.9024, 0.9838, 6.2758, 2.7712, 0.9838, 6.0452, 2.5406, 0.9838, 7.0946, 2.7712, 0.9838, 7.0946, -0.9647, 0.9838, 6.0452, 0.0844, 0.9838, 6.2758, 0.0844, 0.9838, 6.0452, 2.7712, 0.9838, 7.0946, 2.5406, 0.9838, 7.0946, 2.5406, 0.9838, 7.9026, -0.9647, 0.9838, 6.0452, -0.7341, 0.9838, 6.2758, 0.0844, 0.9838, 6.2758, 2.7712, 0.9838, 7.0946, 2.5406, 0.9838, 7.9026, 2.7712, 0.9838, 7.9026, -0.9647, 0.9838, 7.0946, -0.7341, 0.9838, 6.2758, -0.9647, 0.9838, 6.0452, 2.7712, 0.9838, 7.9026, 2.5406, 0.9838, 7.9026, 2.5406, 0.9838, 8.7323, -0.9647, 0.9838, 7.0946, -0.7341, 0.9838, 7.0946, -0.7341, 0.9838, 6.2758, 2.7712, 0.9838, 7.9026, 2.5406, 0.9838, 8.7323, 2.7712, 0.9838, 8.7323, -0.9647, 0.9838, 7.9026, -0.7341, 0.9838, 7.0946, -0.9647, 0.9838, 7.0946, 2.7712, 0.9838, 8.7323, 2.5406, 0.9838, 8.7323, 2.5406, 0.9838, 9.5512, -0.9647, 0.9838, 7.9026, -0.7341, 0.9838, 7.9026, -0.7341, 0.9838, 7.0946, 2.7712, 0.9838, 8.7323, 2.5406, 0.9838, 9.5512, 2.7712, 0.9838, 9.7818, -0.9647, 0.9838, 8.7323, -0.7341, 0.9838, 7.9026, -0.9647, 0.9838, 7.9026, 2.7712, 0.9838, 9.7818, 2.5406, 0.9838, 9.5512, 1.7218, 0.9838, 9.5512, -0.9647, 0.9838, 8.7323, -0.7341, 0.9838, 8.7323, -0.7341, 0.9838, 7.9026, 2.7712, 0.9838, 9.7818, 1.7218, 0.9838, 9.5512, 1.7218, 0.9838, 9.7818, -0.9647, 0.9838, 9.7818, -0.7341, 0.9838, 8.7323, -0.9647, 0.9838, 8.7323, 1.7218, 0.9838, 9.7818, 1.7218, 0.9838, 9.5512, 0.9024, 0.9838, 9.5512, -0.9647, 0.9838, 9.7818, -0.7341, 0.9838, 9.5512, -0.7341, 0.9838, 8.7323, 1.7218, 0.9838, 9.7818, 0.9024, 0.9838, 9.5512, 0.9024, 0.9838, 9.7818, 0.0844, 0.9838, 9.7818, -0.7341, 0.9838, 9.5512, -0.9647, 0.9838, 9.7818, 0.9024, 0.9838, 9.7818, 0.9024, 0.9838, 9.5512, 0.0844, 0.9838, 9.5512, 0.0844, 0.9838, 9.7818, 0.0844, 0.9838, 9.5512, -0.7341, 0.9838, 9.5512, 0.9024, 0.9838, 9.7818, 0.0844, 0.9838, 9.5512, 0.0844, 0.9838, 9.7818, 0.0844, 0.5843, 5.6875, 0.9024, 0.5843, 6.0452, 0.9024, 0.5843, 5.6875, 0.9024, 0.5843, 5.6875, 0.9024, 0.5843, 6.0452, 1.7218, 0.5843, 6.0452, 0.0844, 0.5843, 5.6875, 0.0844, 0.5843, 6.0452, 0.9024, 0.5843, 6.0452, 0.9024, 0.5843, 5.6875, 1.7218, 0.5843, 6.0452, 1.7218, 0.5843, 5.6875, -0.7341, 0.5843, 5.6875, 0.0844, 0.5843, 6.0452, 0.0844, 0.5843, 5.6875, -0.7341, 0.5843, 5.6875, -0.9647, 0.5843, 6.0452, 0.0844, 0.5843, 6.0452, -1.3227, 0.5843, 5.6875, -0.9647, 0.5843, 6.0452, -0.7341, 0.5843, 5.6875, -1.3227, 0.5843, 5.6875, -1.3227, 0.5843, 6.2758, -0.9647, 0.5843, 6.0452, -1.3227, 0.5843, 6.2758, -0.9647, 0.5843, 7.0946, -0.9647, 0.5843, 6.0452, -1.3227, 0.5843, 6.2758, -1.3227, 0.5843, 7.0946, -0.9647, 0.5843, 7.0946, -1.3227, 0.5843, 7.0946, -0.9647, 0.5843, 7.9026, -0.9647, 0.5843, 7.0946, -1.3227, 0.5843, 7.0946, -1.3227, 0.5843, 7.9026, -0.9647, 0.5843, 7.9026, -1.3227, 0.5843, 7.9026, -0.9647, 0.5843, 8.7323, -0.9647, 0.5843, 7.9026, -1.3227, 0.5843, 7.9026, -1.3227, 0.5843, 8.7323, -0.9647, 0.5843, 8.7323, -1.3227, 0.5843, 8.7323, -1.1454, 0.5843, 9.7818, -0.9647, 0.5843, 8.7323, -1.3227, 0.5843, 8.7323, -1.3227, 0.5843, 9.5512, -1.1454, 0.5843, 9.7818, -1.3227, 0.5843, 9.5512, -1.151, 0.5843, 10.1395, -1.1454, 0.5843, 9.7818, -1.3227, 0.5843, 9.5512, -1.3227, 0.5843, 10.1395, -1.151, 0.5843, 10.1395, -1.1454, 0.5843, 9.7818, -1.151, 0.5843, 10.1395, 0.0844, 0.5843, 10.1395, -1.1454, 0.5843, 9.7818, 0.0844, 0.5843, 10.1395, 0.0844, 0.5843, 9.7818, 0.0844, 0.5843, 9.7818, 0.0844, 0.5843, 10.1395, 0.9024, 0.5843, 10.1395, 0.0844, 0.5843, 9.7818, 0.9024, 0.5843, 10.1395, 0.9024, 0.5843, 9.7818, 0.9024, 0.5843, 9.7818, 0.9024, 0.5843, 10.1395, 1.7218, 0.5843, 10.1395, 0.9024, 0.5843, 9.7818, 1.7218, 0.5843, 10.1395, 1.7218, 0.5843, 9.7818, 1.7218, 0.5843, 9.7818, 1.7218, 0.5843, 10.1395, 2.9934, 0.5843, 10.1395, 1.7218, 0.5843, 9.7818, 2.9934, 0.5843, 10.1395, 3.0069, 0.5843, 9.7818, 3.0069, 0.5843, 9.7818, 2.9934, 0.5843, 10.1395, 3.1289, 0.5843, 10.1395, 3.0069, 0.5843, 9.7818, 3.1289, 0.5843, 10.1395, 3.1289, 0.5843, 9.5512, 2.7712, 0.5843, 8.7323, 3.0069, 0.5843, 9.7818, 3.1289, 0.5843, 9.5512, 2.7712, 0.5843, 8.7323, 3.1289, 0.5843, 9.5512, 3.1289, 0.5843, 8.7323, 2.7712, 0.5843, 7.9026, 2.7712, 0.5843, 8.7323, 3.1289, 0.5843, 8.7323, 2.7712, 0.5843, 7.9026, 3.1289, 0.5843, 8.7323, 3.1289, 0.5843, 7.9026, 2.7712, 0.5843, 7.0946, 2.7712, 0.5843, 7.9026, 3.1289, 0.5843, 7.9026, 2.7712, 0.5843, 7.0946, 3.1289, 0.5843, 7.9026, 3.1289, 0.5843, 7.0946, 2.7712, 0.5843, 6.0452, 2.7712, 0.5843, 7.0946, 3.1289, 0.5843, 7.0946, 2.7712, 0.5843, 6.0452, 3.1289, 0.5843, 7.0946, 3.1289, 0.5843, 6.2758, 2.5406, 0.5843, 5.6875, 2.7712, 0.5843, 6.0452, 3.1289, 0.5843, 6.2758, 2.5406, 0.5843, 5.6875, 3.1289, 0.5843, 6.2758, 3.1289, 0.5843, 5.6875, 1.7218, 0.5843, 5.6875, 2.7712, 0.5843, 6.0452, 2.5406, 0.5843, 5.6875, 1.7218, 0.5843, 5.6875, 1.7218, 0.5843, 6.0452, 2.7712, 0.5843, 6.0452, 4.9018, 2.2728, -9.3189, 7.0476, 2.2586, -9.4425, 5.125, 2.2586, -9.4418, 4.9018, 2.2728, -9.3189, 6.7299, 2.2728, -9.3189, 7.0476, 2.2586, -9.4425, 4.9018, 2.2728, -12.5034, 4.9018, 2.2728, -9.3189, 5.125, 2.2586, -9.4418, 6.7299, 2.2728, -9.3189, 7.0476, 2.2586, -7.3955, 7.0476, 2.2586, -9.4425, 4.9018, 2.2728, -12.5034, 5.125, 2.2586, -9.4418, 5.125, 2.2586, -12.8541, 6.7299, 2.2728, -9.3189, 6.7299, 2.2728, -7.3955, 7.0476, 2.2586, -7.3955, 3.0172, 2.2728, -12.5031, 4.9018, 2.2728, -12.5034, 5.125, 2.2586, -12.8541, 6.7299, 2.2728, -7.3955, 7.0476, 2.2586, -5.224, 7.0476, 2.2586, -7.3955, 3.0172, 2.2728, -12.5031, 5.125, 2.2586, -12.8541, 3.0239, 2.2586, -12.8667, 6.7299, 2.2728, -7.3955, 6.7299, 2.2728, -5.3255, 7.0476, 2.2586, -5.224, 0.9025, 2.2728, -12.5031, 3.0172, 2.2728, -12.5031, 3.0239, 2.2586, -12.8667, 6.7299, 2.2728, -5.3255, 5.125, 2.2586, -5.224, 7.0476, 2.2586, -5.224, 0.9025, 2.2728, -12.5031, 3.0239, 2.2586, -12.8667, 0.9026, 2.2586, -12.8663, 6.7299, 2.2728, -5.3255, 4.9018, 2.2728, -5.3255, 5.125, 2.2586, -5.224, -1.1416, 2.2728, -12.5031, 0.9025, 2.2728, -12.5031, 0.9026, 2.2586, -12.8663, 4.9018, 2.2728, -5.3255, 5.125, 2.2586, -1.5453, 5.125, 2.2586, -5.224, -1.1416, 2.2728, -12.5031, 0.9026, 2.2586, -12.8663, -1.139, 2.2586, -12.8666, 4.9018, 2.2728, -5.3255, 4.9018, 2.2728, -1.9277, 5.125, 2.2586, -1.5453, -3.1454, 2.2728, -12.5034, -1.1416, 2.2728, -12.5031, -1.139, 2.2586, -12.8666, 4.9018, 2.2728, -1.9277, 3.059, 2.2586, -1.5453, 5.125, 2.2586, -1.5453, -3.1454, 2.2728, -12.5034, -1.139, 2.2586, -12.8666, -3.3627, 2.2586, -12.8541, 4.9018, 2.2728, -1.9277, 2.946, 2.2728, -1.9277, 3.059, 2.2586, -1.5453, -3.1454, 2.2728, -9.3189, -3.1454, 2.2728, -12.5034, -3.3627, 2.2586, -12.8541, 2.946, 2.2728, -1.9277, 0.9026, 2.2586, -1.5453, 3.059, 2.2586, -1.5453, -3.1454, 2.2728, -9.3189, -3.3627, 2.2586, -12.8541, -3.3627, 2.2586, -9.4417, 2.946, 2.2728, -1.9277, 0.9025, 2.2728, -1.9277, 0.9026, 2.2586, -1.5453, -5.1944, 2.2728, -9.3189, -3.1454, 2.2728, -9.3189, -3.3627, 2.2586, -9.4417, 0.9025, 2.2728, -1.9277, -1.2305, 2.2586, -1.5453, 0.9026, 2.2586, -1.5453, -5.1944, 2.2728, -9.3189, -3.3627, 2.2586, -9.4417, -5.5219, 2.2586, -9.4426, 0.9025, 2.2728, -1.9277, -1.1233, 2.2728, -1.9277, -1.2305, 2.2586, -1.5453, -5.1944, 2.2728, -7.3955, -5.1944, 2.2728, -9.3189, -5.5219, 2.2586, -9.4426, -1.1233, 2.2728, -1.9277, -3.3627, 2.2586, -1.5453, -1.2305, 2.2586, -1.5453, -5.1944, 2.2728, -7.3955, -5.5219, 2.2586, -9.4426, -5.5219, 2.2586, -7.3955, -1.1233, 2.2728, -1.9277, -3.1454, 2.2728, -1.9277, -3.3627, 2.2586, -1.5453, -5.1944, 2.2728, -5.3255, -5.1944, 2.2728, -7.3955, -5.5219, 2.2586, -7.3955, -3.1454, 2.2728, -1.9277, -3.3627, 2.2586, -5.224, -3.3627, 2.2586, -1.5453, -5.1944, 2.2728, -5.3255, -5.5219, 2.2586, -7.3955, -5.5219, 2.2586, -5.224, -3.1454, 2.2728, -1.9277, -3.1454, 2.2728, -5.3255, -3.3627, 2.2586, -5.224, -3.1454, 2.2728, -5.3255, -5.1944, 2.2728, -5.3255, -5.5219, 2.2586, -5.224, -3.1454, 2.2728, -5.3255, -5.5219, 2.2586, -5.224, -3.3627, 2.2586, -5.224, -3.1454, 2.8005, -12.5034, -3.3627, 2.8148, -9.4417, -3.3627, 2.8148, -12.8541, -3.1454, 2.8005, -12.5034, -3.1454, 2.8005, -9.3189, -3.3627, 2.8148, -9.4417, -1.1416, 2.8005, -12.5029, -3.1454, 2.8005, -12.5034, -3.3627, 2.8148, -12.8541, -3.1454, 2.8005, -9.3189, -5.5219, 2.8148, -9.4426, -3.3627, 2.8148, -9.4417, -1.1416, 2.8005, -12.5029, -3.3627, 2.8148, -12.8541, -1.139, 2.8148, -12.871, -3.1454, 2.8005, -9.3189, -5.1944, 2.8005, -9.3189, -5.5219, 2.8148, -9.4426, 0.9025, 2.8005, -12.5029, -1.1416, 2.8005, -12.5029, -1.139, 2.8148, -12.871, -5.1944, 2.8005, -9.3189, -5.5219, 2.8148, -7.3955, -5.5219, 2.8148, -9.4426, 0.9025, 2.8005, -12.5029, -1.139, 2.8148, -12.871, 0.9026, 2.8148, -12.8725, -5.1944, 2.8005, -9.3189, -5.1944, 2.8005, -7.3955, -5.5219, 2.8148, -7.3955, 3.0172, 2.8005, -12.5029, 0.9025, 2.8005, -12.5029, 0.9026, 2.8148, -12.8725, -5.1944, 2.8005, -7.3955, -5.5219, 2.8148, -5.224, -5.5219, 2.8148, -7.3955, 3.0172, 2.8005, -12.5029, 0.9026, 2.8148, -12.8725, 3.0239, 2.8148, -12.8701, -5.1944, 2.8005, -7.3955, -5.1944, 2.8005, -5.3255, -5.5219, 2.8148, -5.224, 4.9018, 2.8005, -12.5034, 3.0172, 2.8005, -12.5029, 3.0239, 2.8148, -12.8701, -5.1944, 2.8005, -5.3255, -3.3627, 2.8148, -5.224, -5.5219, 2.8148, -5.224, 4.9018, 2.8005, -12.5034, 3.0239, 2.8148, -12.8701, 5.125, 2.8148, -12.8541, -5.1944, 2.8005, -5.3255, -3.1454, 2.8005, -5.3255, -3.3627, 2.8148, -5.224, 4.9018, 2.8005, -9.3189, 4.9018, 2.8005, -12.5034, 5.125, 2.8148, -12.8541, -3.1454, 2.8005, -5.3255, -3.3627, 2.8148, -1.5453, -3.3627, 2.8148, -5.224, 4.9018, 2.8005, -9.3189, 5.125, 2.8148, -12.8541, 5.125, 2.8148, -9.4418, -3.1454, 2.8005, -5.3255, -3.1454, 2.8005, -1.9277, -3.3627, 2.8148, -1.5453, 6.7299, 2.8005, -9.3189, 4.9018, 2.8005, -9.3189, 5.125, 2.8148, -9.4418, -3.1454, 2.8005, -1.9277, -1.2305, 2.8148, -1.5453, -3.3627, 2.8148, -1.5453, 6.7299, 2.8005, -9.3189, 5.125, 2.8148, -9.4418, 7.0476, 2.8148, -9.4425, -3.1454, 2.8005, -1.9277, -1.1233, 2.8005, -1.9277, -1.2305, 2.8148, -1.5453, 6.7299, 2.8005, -7.3955, 6.7299, 2.8005, -9.3189, 7.0476, 2.8148, -9.4425, -1.1233, 2.8005, -1.9277, 0.9026, 2.8148, -1.5453, -1.2305, 2.8148, -1.5453, 6.7299, 2.8005, -7.3955, 7.0476, 2.8148, -9.4425, 7.0476, 2.8148, -7.3955, -1.1233, 2.8005, -1.9277, 0.9025, 2.8005, -1.9277, 0.9026, 2.8148, -1.5453, 6.7299, 2.8005, -5.3255, 6.7299, 2.8005, -7.3955, 7.0476, 2.8148, -7.3955, 0.9025, 2.8005, -1.9277, 3.059, 2.8148, -1.5453, 0.9026, 2.8148, -1.5453, 6.7299, 2.8005, -5.3255, 7.0476, 2.8148, -7.3955, 7.0476, 2.8148, -5.224, 0.9025, 2.8005, -1.9277, 2.946, 2.8005, -1.9277, 3.059, 2.8148, -1.5453, 4.9018, 2.8005, -5.3255, 6.7299, 2.8005, -5.3255, 7.0476, 2.8148, -5.224, 2.946, 2.8005, -1.9277, 5.125, 2.8148, -1.5453, 3.059, 2.8148, -1.5453, 4.9018, 2.8005, -5.3255, 7.0476, 2.8148, -5.224, 5.125, 2.8148, -5.224, 2.946, 2.8005, -1.9277, 4.9018, 2.8005, -1.9277, 5.125, 2.8148, -1.5453, 4.9018, 2.8005, -1.9277, 4.9018, 2.8005, -5.3255, 5.125, 2.8148, -5.224, 4.9018, 2.8005, -1.9277, 5.125, 2.8148, -5.224, 5.125, 2.8148, -1.5453, 0.9025, 2.0553, -1.9277, -0.7341, 0.9838, -2.5603, -1.1233, 2.0553, -1.9277, -0.7341, 0.9838, -2.5603, 0.9025, 2.0553, -1.9277, 0.0844, 0.9838, -2.5603, 0.0844, 0.9838, -2.5603, 0.9025, 2.0553, -1.9277, 0.9024, 0.9838, -2.5603, -2.3725, 0.9838, -2.5603, -1.1233, 2.0553, -1.9277, -0.7341, 0.9838, -2.5603, -2.3725, 0.9838, -2.5603, -0.7341, 0.9838, -2.5603, -1.5533, 0.9838, -2.5603, -1.1233, 2.0553, -1.9277, -2.3725, 0.9838, -2.5603, -3.1454, 2.0553, -1.9277, -3.1454, 2.2728, -1.9277, -1.1233, 2.0553, -1.9277, -3.1454, 2.0553, -1.9277, -3.1454, 2.2728, -1.9277, -1.1233, 2.2728, -1.9277, -1.1233, 2.0553, -1.9277, -1.1233, 2.2728, -1.9277, 0.9025, 2.0553, -1.9277, -1.1233, 2.0553, -1.9277, -1.1233, 2.2728, -1.9277, 0.9025, 2.2728, -1.9277, 0.9025, 2.0553, -1.9277, 2.946, 2.0553, -1.9277, 0.9024, 0.9838, -2.5603, 0.9025, 2.0553, -1.9277, 0.9024, 0.9838, -2.5603, 2.946, 2.0553, -1.9277, 1.7218, 0.9838, -2.5603, 1.7218, 0.9838, -2.5603, 2.946, 2.0553, -1.9277, 2.5406, 0.9838, -2.5603, 4.9018, 2.0553, -1.9277, 2.5406, 0.9838, -2.5603, 2.946, 2.0553, -1.9277, 2.5406, 0.9838, -2.5603, 4.9018, 2.0553, -1.9277, 3.3595, 0.9838, -2.5603, 3.3595, 0.9838, -2.5603, 4.9018, 2.0553, -1.9277, 4.1784, 0.9838, -2.5603, 2.946, 2.2728, -1.9277, 4.9018, 2.0553, -1.9277, 2.946, 2.0553, -1.9277, 2.946, 2.2728, -1.9277, 4.9018, 2.2728, -1.9277, 4.9018, 2.0553, -1.9277, 4.9018, 2.0553, -12.5034, 4.1784, 0.9838, -8.9556, 4.9018, 2.0553, -9.3189, 4.1784, 0.9838, -8.9556, 4.9018, 2.0553, -12.5034, 4.1784, 0.9838, -9.7746, 4.1784, 0.9838, -9.7746, 4.9018, 2.0553, -12.5034, 4.1784, 0.9838, -11.8251, 4.9018, 2.2728, -9.3189, 4.9018, 2.0553, -12.5034, 4.9018, 2.0553, -9.3189, 4.9018, 2.2728, -9.3189, 4.9018, 2.2728, -12.5034, 4.9018, 2.0553, -12.5034, -5.1944, 2.0553, -9.3189, -4.0102, 0.9838, -7.3955, -4.0102, 0.9838, -8.9578, -5.1944, 2.0553, -9.3189, -5.1944, 2.0553, -7.3955, -4.0102, 0.9838, -7.3955, -5.1944, 2.0553, -7.3955, -4.0102, 0.9838, -5.7315, -4.0102, 0.9838, -7.3955, -5.1944, 2.2728, -9.3189, -5.1944, 2.0553, -7.3955, -5.1944, 2.0553, -9.3189, -5.1944, 2.0553, -7.3955, -5.1944, 2.0553, -5.3255, -4.0102, 0.9838, -5.7315, -5.1944, 2.2728, -9.3189, -5.1944, 2.2728, -7.3955, -5.1944, 2.0553, -7.3955, -5.1944, 2.2728, -7.3955, -5.1944, 2.0553, -5.3255, -5.1944, 2.0553, -7.3955, -5.1944, 2.2728, -7.3955, -5.1944, 2.2728, -5.3255, -5.1944, 2.0553, -5.3255, 4.9018, 2.0553, -5.3255, 4.1784, 0.9838, -2.5603, 4.9018, 2.0553, -1.9277, 4.1784, 0.9838, -2.5603, 4.9018, 2.0553, -5.3255, 4.1784, 0.9838, -4.9127, 4.1784, 0.9838, -4.9127, 4.9018, 2.0553, -5.3255, 4.1784, 0.9838, -5.7315, 4.9018, 2.2728, -1.9277, 4.9018, 2.0553, -5.3255, 4.9018, 2.0553, -1.9277, 4.9018, 2.2728, -1.9277, 4.9018, 2.2728, -5.3255, 4.9018, 2.0553, -5.3255, 4.9018, 2.0553, -5.3255, 5.5856, 0.9838, -5.7315, 4.1784, 0.9838, -5.7315, 4.9018, 2.0553, -5.3255, 6.7299, 2.0553, -5.3255, 5.5856, 0.9838, -5.7315, 4.9018, 2.2728, -5.3255, 6.7299, 2.0553, -5.3255, 4.9018, 2.0553, -5.3255, 4.9018, 2.2728, -5.3255, 6.7299, 2.2728, -5.3255, 6.7299, 2.0553, -5.3255, 6.7299, 2.0553, -5.3255, 5.5856, 0.9838, -7.3955, 5.5856, 0.9838, -5.7315, 6.7299, 2.0553, -5.3255, 6.7299, 2.0553, -7.3955, 5.5856, 0.9838, -7.3955, 6.7299, 2.0553, -7.3955, 5.5856, 0.9838, -8.955, 5.5856, 0.9838, -7.3955, 6.7299, 2.2728, -5.3255, 6.7299, 2.0553, -7.3955, 6.7299, 2.0553, -5.3255, 6.7299, 2.0553, -7.3955, 6.7299, 2.0553, -9.3189, 5.5856, 0.9838, -8.955, 6.7299, 2.2728, -5.3255, 6.7299, 2.2728, -7.3955, 6.7299, 2.0553, -7.3955, 6.7299, 2.2728, -7.3955, 6.7299, 2.0553, -9.3189, 6.7299, 2.0553, -7.3955, 6.7299, 2.2728, -7.3955, 6.7299, 2.2728, -9.3189, 6.7299, 2.0553, -9.3189, -5.1944, 2.0553, -5.3255, -2.3725, 0.9838, -5.7315, -4.0102, 0.9838, -5.7315, -5.1944, 2.0553, -5.3255, -3.1454, 2.0553, -5.3255, -2.3725, 0.9838, -5.7315, -5.1944, 2.2728, -5.3255, -3.1454, 2.0553, -5.3255, -5.1944, 2.0553, -5.3255, -5.1944, 2.2728, -5.3255, -3.1454, 2.2728, -5.3255, -3.1454, 2.0553, -5.3255, -3.1454, 2.0553, -12.5034, -1.151, 0.9838, -11.8145, -1.1416, 2.0553, -12.5031, -1.151, 0.9838, -11.8145, -3.1454, 2.0553, -12.5034, -2.3725, 0.9838, -11.8258, -1.151, 0.9838, -11.8145, -2.3725, 0.9838, -11.8258, -1.5533, 0.9838, -11.8173, -1.1416, 2.2728, -12.5031, -3.1454, 2.0553, -12.5034, -1.1416, 2.0553, -12.5031, -1.1416, 2.2728, -12.5031, -3.1454, 2.2728, -12.5034, -3.1454, 2.0553, -12.5034, 0.9025, 2.2728, -12.5031, -1.1416, 2.2728, -12.5031, -1.1416, 2.0553, -12.5031, 0.9025, 2.2728, -12.5031, -1.1416, 2.0553, -12.5031, 0.9025, 2.0553, -12.5031, 0.9024, 0.9838, -11.8139, -1.1416, 2.0553, -12.5031, -1.151, 0.9838, -11.8145, 0.9024, 0.9838, -11.8139, -1.151, 0.9838, -11.8145, 0.0844, 0.9838, -11.8139, -1.1416, 2.0553, -12.5031, 0.9024, 0.9838, -11.8139, 0.9025, 2.0553, -12.5031, 3.0172, 2.2728, -12.5031, 0.9025, 2.2728, -12.5031, 0.9025, 2.0553, -12.5031, 2.9934, 0.9838, -11.8145, 0.9025, 2.0553, -12.5031, 0.9024, 0.9838, -11.8139, 2.9934, 0.9838, -11.8145, 0.9024, 0.9838, -11.8139, 1.7218, 0.9838, -11.8139, 3.0172, 2.2728, -12.5031, 0.9025, 2.0553, -12.5031, 3.0172, 2.0553, -12.5031, 0.9025, 2.0553, -12.5031, 2.9934, 0.9838, -11.8145, 3.0172, 2.0553, -12.5031, 4.9018, 2.2728, -12.5034, 3.0172, 2.2728, -12.5031, 3.0172, 2.0553, -12.5031, 4.9018, 2.2728, -12.5034, 3.0172, 2.0553, -12.5031, 4.9018, 2.0553, -12.5034, 3.0172, 2.0553, -12.5031, 4.1784, 0.9838, -11.8251, 4.9018, 2.0553, -12.5034, 4.1784, 0.9838, -11.8251, 3.0172, 2.0553, -12.5031, 2.9934, 0.9838, -11.8145, 4.1784, 0.9838, -11.8251, 2.9934, 0.9838, -11.8145, 3.3595, 0.9838, -11.8173, -3.1454, 2.0553, -9.3189, -4.0102, 0.9838, -8.9578, -2.3725, 0.9838, -8.9563, -3.1454, 2.0553, -9.3189, -5.1944, 2.0553, -9.3189, -4.0102, 0.9838, -8.9578, -3.1454, 2.2728, -9.3189, -5.1944, 2.0553, -9.3189, -3.1454, 2.0553, -9.3189, -3.1454, 2.2728, -9.3189, -5.1944, 2.2728, -9.3189, -5.1944, 2.0553, -9.3189, -3.1454, 2.0553, -9.3189, -2.3725, 0.9838, -11.8258, -3.1454, 2.0553, -12.5034, -2.3725, 0.9838, -11.8258, -3.1454, 2.0553, -9.3189, -2.3725, 0.9838, -9.7754, -2.3725, 0.9838, -9.7754, -3.1454, 2.0553, -9.3189, -2.3725, 0.9838, -8.9563, -3.1454, 2.2728, -12.5034, -3.1454, 2.0553, -9.3189, -3.1454, 2.0553, -12.5034, -3.1454, 2.2728, -12.5034, -3.1454, 2.2728, -9.3189, -3.1454, 2.0553, -9.3189, 3.3595, 0.9838, -4.9127, 4.1784, 0.9838, -5.7315, 3.3595, 0.9838, -5.7312, 3.3595, 0.9838, -4.9127, 4.1784, 0.9838, -4.9127, 4.1784, 0.9838, -5.7315, 3.3595, 0.9838, -2.5603, 4.1784, 0.9838, -2.5603, 4.1784, 0.9838, -4.9127, 3.3595, 0.9838, -2.5603, 4.1784, 0.9838, -4.9127, 3.3595, 0.9838, -4.9127, 2.5406, 0.9838, -2.5603, 3.3595, 0.9838, -2.5603, 3.3595, 0.9838, -4.9127, 2.5406, 0.9838, -2.5603, 3.3595, 0.9838, -4.9127, 2.5406, 0.9838, -4.9127, 1.7218, 0.9838, -2.5603, 2.5406, 0.9838, -2.5603, 2.5406, 0.9838, -4.9127, 3.1289, 0.9838, -5.1433, 2.5406, 0.9838, -4.9127, 3.3595, 0.9838, -4.9127, 3.1289, 0.9838, -5.731, 3.1289, 0.9838, -5.1433, 3.3595, 0.9838, -4.9127, 3.1289, 0.9838, -5.731, 3.3595, 0.9838, -4.9127, 3.3595, 0.9838, -5.7312, 3.1289, 0.9838, -5.1433, 2.5406, 0.9838, -5.1433, 2.5406, 0.9838, -4.9127, 3.1289, 0.9838, -6.5373, 3.1289, 0.9838, -5.731, 3.3595, 0.9838, -5.7312, 2.5406, 0.9838, -5.1433, 1.7218, 0.9838, -4.9127, 2.5406, 0.9838, -4.9127, 1.7218, 0.9838, -2.5603, 2.5406, 0.9838, -4.9127, 1.7218, 0.9838, -4.9127, 2.5406, 0.9838, -5.1433, 1.7218, 0.9838, -5.1433, 1.7218, 0.9838, -4.9127, 0.9024, 0.9838, -2.5603, 1.7218, 0.9838, -2.5603, 1.7218, 0.9838, -4.9127, 1.7218, 0.9838, -5.1433, 0.9024, 0.9838, -4.9127, 1.7218, 0.9838, -4.9127, 0.9024, 0.9838, -2.5603, 1.7218, 0.9838, -4.9127, 0.9024, 0.9838, -4.9127, 1.7218, 0.9838, -5.1433, 0.9024, 0.9838, -5.1433, 0.9024, 0.9838, -4.9127, 0.0844, 0.9838, -2.5603, 0.9024, 0.9838, -2.5603, 0.9024, 0.9838, -4.9127, 0.9024, 0.9838, -5.1433, 0.0844, 0.9838, -4.9127, 0.9024, 0.9838, -4.9127, 0.0844, 0.9838, -2.5603, 0.9024, 0.9838, -4.9127, 0.0844, 0.9838, -4.9127, 0.9024, 0.9838, -5.1433, 0.0844, 0.9838, -5.1433, 0.0844, 0.9838, -4.9127, -0.7341, 0.9838, -2.5603, 0.0844, 0.9838, -2.5603, 0.0844, 0.9838, -4.9127, 0.0844, 0.9838, -5.1433, -0.7341, 0.9838, -4.9127, 0.0844, 0.9838, -4.9127, -0.7341, 0.9838, -2.5603, 0.0844, 0.9838, -4.9127, -0.7341, 0.9838, -4.9127, 0.0844, 0.9838, -5.1433, -0.7341, 0.9838, -5.1433, -0.7341, 0.9838, -4.9127, -1.5533, 0.9838, -2.5603, -0.7341, 0.9838, -2.5603, -0.7341, 0.9838, -4.9127, -0.7341, 0.9838, -5.1433, -1.5533, 0.9838, -4.9127, -0.7341, 0.9838, -4.9127, -1.5533, 0.9838, -2.5603, -0.7341, 0.9838, -4.9127, -1.5533, 0.9838, -4.9127, -2.3725, 0.9838, -2.5603, -1.5533, 0.9838, -2.5603, -1.5533, 0.9838, -4.9127, -0.7341, 0.9838, -5.1433, -1.3227, 0.9838, -5.1433, -1.5533, 0.9838, -4.9127, -2.3725, 0.9838, -2.5603, -1.5533, 0.9838, -4.9127, -2.3725, 0.9838, -4.9127, -1.3227, 0.9838, -5.1433, -1.5533, 0.9838, -5.7312, -1.5533, 0.9838, -4.9127, -2.3725, 0.9838, -4.9127, -1.5533, 0.9838, -4.9127, -1.5533, 0.9838, -5.7312, -1.3227, 0.9838, -5.1433, -1.3227, 0.9838, -5.731, -1.5533, 0.9838, -5.7312, -2.3725, 0.9838, -4.9127, -1.5533, 0.9838, -5.7312, -2.3725, 0.9838, -5.7315, -1.3227, 0.9838, -5.731, -1.5533, 0.9838, -6.5382, -1.5533, 0.9838, -5.7312, -2.3725, 0.9838, -5.7315, -1.5533, 0.9838, -5.7312, -1.5533, 0.9838, -6.5382, -1.3227, 0.9838, -5.731, -1.3227, 0.9838, -6.5373, -1.5533, 0.9838, -6.5382, -2.3725, 0.9838, -5.7315, -4.0102, 0.9838, -7.3955, -4.0102, 0.9838, -5.7315, -1.3227, 0.9838, -6.5373, -1.5533, 0.9838, -7.3955, -1.5533, 0.9838, -6.5382, -2.3725, 0.9838, -5.7315, -1.5533, 0.9838, -6.5382, -2.3725, 0.9838, -6.544, -4.0102, 0.9838, -7.3955, -2.3725, 0.9838, -5.7315, -2.3725, 0.9838, -6.544, -2.3725, 0.9838, -6.544, -1.5533, 0.9838, -6.5382, -1.5533, 0.9838, -7.3955, -1.3227, 0.9838, -6.5373, -1.3227, 0.9838, -7.3955, -1.5533, 0.9838, -7.3955, -4.0102, 0.9838, -7.3955, -2.3725, 0.9838, -6.544, -2.3725, 0.9838, -7.3955, -2.3725, 0.9838, -6.544, -1.5533, 0.9838, -7.3955, -2.3725, 0.9838, -7.3955, -2.3725, 0.9838, -7.3955, -4.0102, 0.9838, -8.9578, -4.0102, 0.9838, -7.3955, -1.3227, 0.9838, -7.3955, -1.5533, 0.9838, -8.1327, -1.5533, 0.9838, -7.3955, -2.3725, 0.9838, -7.3955, -1.5533, 0.9838, -7.3955, -1.5533, 0.9838, -8.1327, -1.3227, 0.9838, -7.3955, -1.3227, 0.9838, -8.1303, -1.5533, 0.9838, -8.1327, -4.0102, 0.9838, -8.9578, -2.3725, 0.9838, -7.3955, -2.3725, 0.9838, -8.1484, -2.3725, 0.9838, -7.3955, -1.5533, 0.9838, -8.1327, -2.3725, 0.9838, -8.1484, -4.0102, 0.9838, -8.9578, -2.3725, 0.9838, -8.1484, -2.3725, 0.9838, -8.9563, -1.3227, 0.9838, -8.1303, -1.5533, 0.9838, -8.939, -1.5533, 0.9838, -8.1327, -2.3725, 0.9838, -8.1484, -1.5533, 0.9838, -8.1327, -1.5533, 0.9838, -8.939, -2.3725, 0.9838, -8.1484, -1.5533, 0.9838, -8.939, -2.3725, 0.9838, -8.9563, -1.3227, 0.9838, -8.1303, -1.3227, 0.9838, -8.936, -1.5533, 0.9838, -8.939, -2.3725, 0.9838, -8.9563, -1.5533, 0.9838, -8.939, -1.5533, 0.9838, -9.7616, -1.3227, 0.9838, -8.936, -1.5533, 0.9838, -9.7616, -1.5533, 0.9838, -8.939, -2.3725, 0.9838, -8.9563, -1.5533, 0.9838, -9.7616, -2.3725, 0.9838, -9.7754, -1.3227, 0.9838, -8.936, -1.3227, 0.9838, -9.5253, -1.5533, 0.9838, -9.7616, -2.3725, 0.9838, -9.7754, -1.5533, 0.9838, -9.7616, -1.5533, 0.9838, -11.8173, -2.3725, 0.9838, -9.7754, -1.5533, 0.9838, -11.8173, -2.3725, 0.9838, -11.8258, -1.5533, 0.9838, -9.7616, -1.151, 0.9838, -11.8145, -1.5533, 0.9838, -11.8173, -1.3227, 0.9838, -9.5253, -1.151, 0.9838, -9.7579, -1.5533, 0.9838, -9.7616, -1.5533, 0.9838, -9.7616, -1.151, 0.9838, -9.7579, -1.151, 0.9838, -11.8145, -1.3227, 0.9838, -9.5253, -1.151, 0.9838, -9.5243, -1.151, 0.9838, -9.7579, -1.151, 0.9838, -9.7579, 0.0844, 0.9838, -11.8139, -1.151, 0.9838, -11.8145, -1.151, 0.9838, -9.5243, 0.0844, 0.9838, -9.7571, -1.151, 0.9838, -9.7579, -1.151, 0.9838, -9.7579, 0.0844, 0.9838, -9.7571, 0.0844, 0.9838, -11.8139, -1.151, 0.9838, -9.5243, 0.0844, 0.9838, -9.5235, 0.0844, 0.9838, -9.7571, 0.0844, 0.9838, -9.7571, 0.9024, 0.9838, -11.8139, 0.0844, 0.9838, -11.8139, 0.0844, 0.9838, -9.5235, 0.9024, 0.9838, -9.7571, 0.0844, 0.9838, -9.7571, 0.0844, 0.9838, -9.7571, 0.9024, 0.9838, -9.7571, 0.9024, 0.9838, -11.8139, 0.0844, 0.9838, -9.5235, 0.9024, 0.9838, -9.5235, 0.9024, 0.9838, -9.7571, 0.9024, 0.9838, -9.7571, 1.7218, 0.9838, -11.8139, 0.9024, 0.9838, -11.8139, 0.9024, 0.9838, -9.5235, 1.7218, 0.9838, -9.7571, 0.9024, 0.9838, -9.7571, 0.9024, 0.9838, -9.7571, 1.7218, 0.9838, -9.7571, 1.7218, 0.9838, -11.8139, 0.9024, 0.9838, -9.5235, 1.7218, 0.9838, -9.5235, 1.7218, 0.9838, -9.7571, 1.7218, 0.9838, -9.7571, 2.9934, 0.9838, -11.8145, 1.7218, 0.9838, -11.8139, 1.7218, 0.9838, -9.5235, 2.9934, 0.9838, -9.7579, 1.7218, 0.9838, -9.7571, 1.7218, 0.9838, -9.7571, 2.9934, 0.9838, -9.7579, 2.9934, 0.9838, -11.8145, 1.7218, 0.9838, -9.5235, 2.9934, 0.9838, -9.5243, 2.9934, 0.9838, -9.7579, 2.9934, 0.9838, -9.7579, 3.3595, 0.9838, -11.8173, 2.9934, 0.9838, -11.8145, 2.9934, 0.9838, -9.5243, 3.3595, 0.9838, -9.7616, 2.9934, 0.9838, -9.7579, 2.9934, 0.9838, -9.7579, 3.3595, 0.9838, -9.7616, 3.3595, 0.9838, -11.8173, 3.3595, 0.9838, -9.7616, 4.1784, 0.9838, -11.8251, 3.3595, 0.9838, -11.8173, 2.9934, 0.9838, -9.5243, 3.1289, 0.9838, -9.5253, 3.3595, 0.9838, -9.7616, 3.3595, 0.9838, -9.7616, 4.1784, 0.9838, -9.7746, 4.1784, 0.9838, -11.8251, 3.1289, 0.9838, -9.5253, 3.3595, 0.9838, -8.939, 3.3595, 0.9838, -9.7616, 3.3595, 0.9838, -8.939, 4.1784, 0.9838, -9.7746, 3.3595, 0.9838, -9.7616, 3.1289, 0.9838, -9.5253, 3.1289, 0.9838, -8.936, 3.3595, 0.9838, -8.939, 3.3595, 0.9838, -8.939, 4.1784, 0.9838, -8.9556, 4.1784, 0.9838, -9.7746, 3.1289, 0.9838, -8.936, 3.3595, 0.9838, -8.1327, 3.3595, 0.9838, -8.939, 3.3595, 0.9838, -8.1327, 4.1784, 0.9838, -8.9556, 3.3595, 0.9838, -8.939, 3.1289, 0.9838, -8.936, 3.1289, 0.9838, -8.1303, 3.3595, 0.9838, -8.1327, 3.3595, 0.9838, -8.1327, 4.1784, 0.9838, -8.1484, 4.1784, 0.9838, -8.9556, 4.1784, 0.9838, -8.1484, 5.5856, 0.9838, -8.955, 4.1784, 0.9838, -8.9556, 4.1784, 0.9838, -8.1484, 5.5856, 0.9838, -7.3955, 5.5856, 0.9838, -8.955, 3.1289, 0.9838, -8.1303, 3.3595, 0.9838, -7.3955, 3.3595, 0.9838, -8.1327, 3.3595, 0.9838, -7.3955, 4.1784, 0.9838, -8.1484, 3.3595, 0.9838, -8.1327, 3.1289, 0.9838, -8.1303, 3.1289, 0.9838, -7.3955, 3.3595, 0.9838, -7.3955, 5.5856, 0.9838, -7.3955, 4.1784, 0.9838, -8.1484, 4.1784, 0.9838, -7.3955, 3.3595, 0.9838, -7.3955, 4.1784, 0.9838, -7.3955, 4.1784, 0.9838, -8.1484, 3.1289, 0.9838, -7.3955, 3.3595, 0.9838, -6.5382, 3.3595, 0.9838, -7.3955, 3.3595, 0.9838, -6.5382, 4.1784, 0.9838, -7.3955, 3.3595, 0.9838, -7.3955, 3.1289, 0.9838, -7.3955, 3.1289, 0.9838, -6.5373, 3.3595, 0.9838, -6.5382, 3.1289, 0.9838, -6.5373, 3.3595, 0.9838, -5.7312, 3.3595, 0.9838, -6.5382, 3.3595, 0.9838, -6.5382, 4.1784, 0.9838, -6.544, 4.1784, 0.9838, -7.3955, 4.1784, 0.9838, -6.544, 5.5856, 0.9838, -7.3955, 4.1784, 0.9838, -7.3955, 3.3595, 0.9838, -5.7312, 4.1784, 0.9838, -6.544, 3.3595, 0.9838, -6.5382, 4.1784, 0.9838, -6.544, 5.5856, 0.9838, -5.7315, 5.5856, 0.9838, -7.3955, 3.3595, 0.9838, -5.7312, 4.1784, 0.9838, -5.7315, 4.1784, 0.9838, -6.544, 5.5856, 0.9838, -5.7315, 4.1784, 0.9838, -6.544, 4.1784, 0.9838, -5.7315, 0.0844, 0.9838, -9.3164, 0.9024, 0.5843, -9.3164, 0.0844, 0.5843, -9.3164, -0.9647, 0.9838, -9.3164, 0.0844, 0.9838, -9.3164, 0.0844, 0.5843, -9.3164, -0.9647, 0.9838, -9.3164, 0.0844, 0.5843, -9.3164, -1.1454, 0.5843, -9.3164, 0.0844, 0.9838, -9.3164, 0.9024, 0.9838, -9.3164, 0.9024, 0.5843, -9.3164, 0.9024, 0.9838, -9.3164, 1.7218, 0.5843, -9.3164, 0.9024, 0.5843, -9.3164, 0.9024, 0.9838, -9.3164, 1.7218, 0.9838, -9.3164, 1.7218, 0.5843, -9.3164, 1.7218, 0.9838, -9.3164, 3.0069, 0.5843, -9.3164, 1.7218, 0.5843, -9.3164, 1.7218, 0.9838, -9.3164, 2.7712, 0.9838, -9.3164, 3.0069, 0.5843, -9.3164, -0.7341, 0.9838, -8.1294, -0.7341, 2.9877, -8.9754, -0.7341, 0.9838, -8.9349, -0.7341, 2.9877, -8.9754, -0.7341, 0.9838, -8.1294, -0.7341, 0.9838, -7.3955, -0.7341, 2.9877, -8.9754, -0.7341, 0.9838, -7.3955, -0.7341, 2.9877, -7.3955, -0.7341, 0.9838, -6.537, -0.7341, 2.9877, -7.3955, -0.7341, 0.9838, -7.3955, -0.7341, 2.9877, -7.3955, -0.7341, 0.9838, -6.537, -0.7341, 0.9838, -5.731, -0.7341, 2.9877, -7.3955, -0.7341, 0.9838, -5.731, -0.7341, 2.9877, -5.7315, 0.0844, 0.9838, -5.7309, -0.7341, 2.9877, -5.7315, -0.7341, 0.9838, -5.731, -0.7341, 2.9877, -5.7315, 0.0844, 0.9838, -5.7309, 0.9024, 0.9838, -5.7309, -0.7341, 2.9877, -5.7315, 0.9024, 0.9838, -5.7309, 0.9024, 2.9877, -5.7315, 1.7218, 0.9838, -5.7309, 0.9024, 2.9877, -5.7315, 0.9024, 0.9838, -5.7309, 0.9024, 2.9877, -5.7315, 1.7218, 0.9838, -5.7309, 2.5406, 0.9838, -5.731, 0.9024, 2.9877, -5.7315, 2.5406, 0.9838, -5.731, 2.5406, 2.9877, -5.7315, 6.7299, 2.0553, -9.3189, 4.1784, 0.9838, -8.9556, 5.5856, 0.9838, -8.955, 6.7299, 2.0553, -9.3189, 4.9018, 2.0553, -9.3189, 4.1784, 0.9838, -8.9556, 6.7299, 2.2728, -9.3189, 4.9018, 2.0553, -9.3189, 6.7299, 2.0553, -9.3189, 6.7299, 2.2728, -9.3189, 4.9018, 2.2728, -9.3189, 4.9018, 2.0553, -9.3189, -3.1454, 2.0553, -1.9277, -2.3725, 0.9838, -5.7315, -3.1454, 2.0553, -5.3255, -2.3725, 0.9838, -5.7315, -3.1454, 2.0553, -1.9277, -2.3725, 0.9838, -4.9127, -2.3725, 0.9838, -4.9127, -3.1454, 2.0553, -1.9277, -2.3725, 0.9838, -2.5603, -3.1454, 2.2728, -5.3255, -3.1454, 2.0553, -1.9277, -3.1454, 2.0553, -5.3255, -3.1454, 2.2728, -5.3255, -3.1454, 2.2728, -1.9277, -3.1454, 2.0553, -1.9277, -3.1454, 2.8005, -1.9277, -3.1454, 2.9899, -5.3255, -3.1454, 2.9899, -1.8983, -3.1454, 2.8005, -1.9277, -3.1454, 2.8005, -5.3255, -3.1454, 2.9899, -5.3255, 6.7299, 2.8005, -5.3255, 4.9018, 2.9899, -5.3255, 6.7299, 2.9899, -5.3255, 6.7299, 2.8005, -5.3255, 4.9018, 2.8005, -5.3255, 4.9018, 2.9899, -5.3255, 4.9018, 2.8005, -12.5034, 4.9018, 2.9899, -9.3189, 4.8649, 2.9899, -11.1347, 4.9018, 2.8005, -12.5034, 4.9018, 2.8005, -9.3189, 4.9018, 2.9899, -9.3189, -5.1944, 2.8005, -9.3189, -3.1454, 2.9899, -9.3189, -5.2289, 2.9899, -9.3487, -5.1944, 2.8005, -9.3189, -3.1454, 2.8005, -9.3189, -3.1454, 2.9899, -9.3189, -3.1454, 2.8005, -5.3255, -5.1944, 2.9899, -5.3348, -3.1454, 2.9899, -5.3255, -3.1454, 2.8005, -5.3255, -5.1944, 2.8005, -5.3255, -5.1944, 2.9899, -5.3348, -5.1944, 2.8005, -7.3955, -5.2289, 2.9899, -9.3487, -5.1944, 2.9899, -7.3955, -5.1944, 2.8005, -7.3955, -5.1944, 2.8005, -9.3189, -5.2289, 2.9899, -9.3487, -5.1944, 2.8005, -5.3255, -5.1944, 2.8005, -7.3955, -5.1944, 2.9899, -7.3955, -5.1944, 2.8005, -5.3255, -5.1944, 2.9899, -7.3955, -5.1944, 2.9899, -5.3348, 4.9018, 2.8005, -9.3189, 6.7393, 2.9899, -9.3189, 4.9018, 2.9899, -9.3189, 4.9018, 2.8005, -9.3189, 6.7299, 2.8005, -9.3189, 6.7393, 2.9899, -9.3189, 6.7299, 2.8005, -9.3189, 6.7299, 2.9899, -7.3955, 6.7393, 2.9899, -9.3189, 6.7299, 2.8005, -9.3189, 6.7299, 2.8005, -7.3955, 6.7299, 2.9899, -7.3955, 6.7299, 2.8005, -7.3955, 6.7299, 2.9899, -5.3255, 6.7299, 2.9899, -7.3955, 6.7299, 2.8005, -7.3955, 6.7299, 2.8005, -5.3255, 6.7299, 2.9899, -5.3255, -3.1454, 2.8005, -9.3189, -3.1612, 2.9899, -11.6841, -3.1454, 2.9899, -9.3189, -3.1454, 2.8005, -9.3189, -3.1454, 2.8005, -12.5034, -3.1612, 2.9899, -11.6841, 3.0172, 2.8005, -12.5029, 4.8649, 2.9899, -11.1347, 3.0172, 2.9899, -12.5029, 3.0172, 2.8005, -12.5029, 4.9018, 2.8005, -12.5034, 4.8649, 2.9899, -11.1347, 0.9025, 2.8005, -12.5029, 3.0172, 2.8005, -12.5029, 3.0172, 2.9899, -12.5029, 0.9025, 2.8005, -12.5029, 3.0172, 2.9899, -12.5029, 0.9025, 2.9899, -12.5029, -1.1416, 2.8005, -12.5029, 0.9025, 2.8005, -12.5029, 0.9025, 2.9899, -12.5029, -1.1416, 2.8005, -12.5029, 0.9025, 2.9899, -12.5029, -1.1416, 2.9899, -12.5029, -3.1454, 2.8005, -12.5034, -1.1416, 2.8005, -12.5029, -1.1416, 2.9899, -12.5029, -3.1454, 2.8005, -12.5034, -1.1416, 2.9899, -12.5029, -3.1612, 2.9899, -11.6841, 4.9018, 2.8005, -5.3255, 4.9018, 2.9899, -1.8983, 4.9018, 2.9899, -5.3255, 4.9018, 2.8005, -5.3255, 4.9018, 2.8005, -1.9277, 4.9018, 2.9899, -1.8983, -1.1233, 2.8005, -1.9277, -3.1454, 2.9899, -1.8983, -1.1233, 2.9899, -1.9277, -1.1233, 2.8005, -1.9277, -3.1454, 2.8005, -1.9277, -3.1454, 2.9899, -1.8983, 0.9025, 2.8005, -1.9277, -1.1233, 2.8005, -1.9277, -1.1233, 2.9899, -1.9277, 0.9025, 2.8005, -1.9277, -1.1233, 2.9899, -1.9277, 0.9025, 2.9899, -1.9277, 2.946, 2.8005, -1.9277, 0.9025, 2.8005, -1.9277, 0.9025, 2.9899, -1.9277, 2.946, 2.8005, -1.9277, 0.9025, 2.9899, -1.9277, 2.946, 2.9899, -1.9277, 4.9018, 2.8005, -1.9277, 2.946, 2.8005, -1.9277, 2.946, 2.9899, -1.9277, 4.9018, 2.8005, -1.9277, 2.946, 2.9899, -1.9277, 4.9018, 2.9899, -1.8983, 7.0476, 2.8148, -9.4425, 5.125, 2.2586, -9.4418, 7.0476, 2.2586, -9.4425, 7.0476, 2.8148, -9.4425, 5.125, 2.8148, -9.4418, 5.125, 2.2586, -9.4418, 5.125, 2.8148, -9.4418, 5.125, 2.2586, -12.8541, 5.125, 2.2586, -9.4418, 5.125, 2.8148, -9.4418, 5.125, 2.8148, -12.8541, 5.125, 2.2586, -12.8541, -3.3627, 2.8148, -12.8541, -3.3627, 2.2586, -9.4417, -3.3627, 2.2586, -12.8541, -3.3627, 2.8148, -12.8541, -3.3627, 2.8148, -9.4417, -3.3627, 2.2586, -9.4417, -5.5219, 2.8148, -5.224, -3.3627, 2.2586, -5.224, -5.5219, 2.2586, -5.224, -5.5219, 2.8148, -5.224, -3.3627, 2.8148, -5.224, -3.3627, 2.2586, -5.224, -3.3627, 2.8148, -5.224, -3.3627, 2.2586, -1.5453, -3.3627, 2.2586, -5.224, -3.3627, 2.8148, -5.224, -3.3627, 2.8148, -1.5453, -3.3627, 2.2586, -1.5453, -1.2305, 2.8148, -1.5453, 0.9026, 2.2586, -1.5453, -1.2305, 2.2586, -1.5453, -3.3627, 2.8148, -1.5453, -1.2305, 2.8148, -1.5453, -1.2305, 2.2586, -1.5453, -3.3627, 2.8148, -1.5453, -1.2305, 2.2586, -1.5453, -3.3627, 2.2586, -1.5453, -1.2305, 2.8148, -1.5453, 0.9026, 2.8148, -1.5453, 0.9026, 2.2586, -1.5453, 0.9026, 2.8148, -1.5453, 3.059, 2.2586, -1.5453, 0.9026, 2.2586, -1.5453, 0.9026, 2.8148, -1.5453, 3.059, 2.8148, -1.5453, 3.059, 2.2586, -1.5453, 3.059, 2.8148, -1.5453, 5.125, 2.2586, -1.5453, 3.059, 2.2586, -1.5453, 3.059, 2.8148, -1.5453, 5.125, 2.8148, -1.5453, 5.125, 2.2586, -1.5453, 5.125, 2.8148, -1.5453, 5.125, 2.2586, -5.224, 5.125, 2.2586, -1.5453, 5.125, 2.8148, -1.5453, 5.125, 2.8148, -5.224, 5.125, 2.2586, -5.224, 7.0476, 2.8148, -5.224, 7.0476, 2.2586, -7.3955, 7.0476, 2.2586, -5.224, 7.0476, 2.8148, -5.224, 7.0476, 2.8148, -7.3955, 7.0476, 2.2586, -7.3955, 7.0476, 2.8148, -7.3955, 7.0476, 2.2586, -9.4425, 7.0476, 2.2586, -7.3955, 7.0476, 2.8148, -7.3955, 7.0476, 2.8148, -9.4425, 7.0476, 2.2586, -9.4425, -5.5219, 2.8148, -9.4426, -5.5219, 2.2586, -7.3955, -5.5219, 2.2586, -9.4426, -5.5219, 2.8148, -9.4426, -5.5219, 2.8148, -7.3955, -5.5219, 2.2586, -7.3955, -5.5219, 2.8148, -7.3955, -5.5219, 2.2586, -5.224, -5.5219, 2.2586, -7.3955, -5.5219, 2.8148, -7.3955, -5.5219, 2.8148, -5.224, -5.5219, 2.2586, -5.224, 5.125, 2.8148, -5.224, 7.0476, 2.2586, -5.224, 5.125, 2.2586, -5.224, 5.125, 2.8148, -5.224, 7.0476, 2.8148, -5.224, 7.0476, 2.2586, -5.224, -3.3627, 2.8148, -9.4417, -5.5219, 2.2586, -9.4426, -3.3627, 2.2586, -9.4417, -3.3627, 2.8148, -9.4417, -5.5219, 2.8148, -9.4426, -5.5219, 2.2586, -9.4426, 3.0239, 2.8148, -12.8701, 0.9026, 2.2586, -12.8663, 3.0239, 2.2586, -12.8667, 5.125, 2.8148, -12.8541, 3.0239, 2.8148, -12.8701, 3.0239, 2.2586, -12.8667, 5.125, 2.8148, -12.8541, 3.0239, 2.2586, -12.8667, 5.125, 2.2586, -12.8541, 3.0239, 2.8148, -12.8701, 0.9026, 2.8148, -12.8725, 0.9026, 2.2586, -12.8663, 0.9026, 2.8148, -12.8725, -1.139, 2.2586, -12.8666, 0.9026, 2.2586, -12.8663, 0.9026, 2.8148, -12.8725, -1.139, 2.8148, -12.871, -1.139, 2.2586, -12.8666, -1.139, 2.8148, -12.871, -3.3627, 2.2586, -12.8541, -1.139, 2.2586, -12.8666, -1.139, 2.8148, -12.871, -3.3627, 2.8148, -12.8541, -3.3627, 2.2586, -12.8541, 2.5406, 0.9838, -6.537, 2.5406, 2.9877, -5.7315, 2.5406, 0.9838, -5.731, 2.5406, 2.9877, -5.7315, 2.5406, 0.9838, -6.537, 2.5406, 0.9838, -7.3955, 2.5406, 2.9877, -5.7315, 2.5406, 0.9838, -7.3955, 2.5406, 2.9877, -7.3955, 2.5406, 0.9838, -8.1294, 2.5406, 2.9877, -7.3955, 2.5406, 0.9838, -7.3955, 2.5406, 2.9877, -7.3955, 2.5406, 0.9838, -8.1294, 2.5406, 0.9838, -8.9349, 2.5406, 2.9877, -7.3955, 2.5406, 0.9838, -8.9349, 2.5406, 2.9877, -8.9754, 1.7218, 0.9838, -8.9341, 2.5406, 2.9877, -8.9754, 2.5406, 0.9838, -8.9349, 2.5406, 2.9877, -8.9754, 1.7218, 0.9838, -8.9341, 0.9024, 0.9838, -8.9341, 2.5406, 2.9877, -8.9754, 0.9024, 0.9838, -8.9341, 0.9024, 2.9877, -8.975, 0.0844, 0.9838, -8.9341, 0.9024, 2.9877, -8.975, 0.9024, 0.9838, -8.9341, 0.9024, 2.9877, -8.975, 0.0844, 0.9838, -8.9341, -0.7341, 0.9838, -8.9349, 0.9024, 2.9877, -8.975, -0.7341, 0.9838, -8.9349, -0.7341, 2.9877, -8.9754, -0.9647, 0.9838, -5.3273, -0.9647, 0.5843, -6.5367, -0.9647, 0.5843, -5.3273, -0.9647, 0.9838, -5.3273, -0.9647, 0.9838, -6.5367, -0.9647, 0.5843, -6.5367, -0.9647, 0.9838, -6.5367, -0.9647, 0.5843, -7.3955, -0.9647, 0.5843, -6.5367, -0.9647, 0.9838, -6.5367, -0.9647, 0.9838, -7.3955, -0.9647, 0.5843, -7.3955, -0.9647, 0.9838, -7.3955, -0.9647, 0.5843, -8.1288, -0.9647, 0.5843, -7.3955, -0.9647, 0.9838, -7.3955, -0.9647, 0.9838, -8.1288, -0.9647, 0.5843, -8.1288, -0.9647, 0.9838, -8.1288, -1.1454, 0.5843, -9.3164, -0.9647, 0.5843, -8.1288, -0.9647, 0.9838, -8.1288, -0.9647, 0.9838, -9.3164, -1.1454, 0.5843, -9.3164, 2.9934, 0.9838, -9.5243, 1.7218, 0.5843, -9.5235, 2.9934, 0.5843, -9.5243, 3.1289, 0.9838, -9.5253, 2.9934, 0.9838, -9.5243, 2.9934, 0.5843, -9.5243, 3.1289, 0.9838, -9.5253, 2.9934, 0.5843, -9.5243, 3.1289, 0.5843, -9.5253, 2.9934, 0.9838, -9.5243, 1.7218, 0.9838, -9.5235, 1.7218, 0.5843, -9.5235, 1.7218, 0.9838, -9.5235, 0.9024, 0.5843, -9.5235, 1.7218, 0.5843, -9.5235, 1.7218, 0.9838, -9.5235, 0.9024, 0.9838, -9.5235, 0.9024, 0.5843, -9.5235, 0.9024, 0.9838, -9.5235, 0.0844, 0.5843, -9.5235, 0.9024, 0.5843, -9.5235, 0.9024, 0.9838, -9.5235, 0.0844, 0.9838, -9.5235, 0.0844, 0.5843, -9.5235, 0.0844, 0.9838, -9.5235, -1.151, 0.5843, -9.5243, 0.0844, 0.5843, -9.5235, 0.0844, 0.9838, -9.5235, -1.151, 0.9838, -9.5243, -1.151, 0.5843, -9.5243, -1.151, 0.9838, -9.5243, -1.3227, 0.5843, -9.5253, -1.151, 0.5843, -9.5243, -1.151, 0.9838, -9.5243, -1.3227, 0.9838, -9.5253, -1.3227, 0.5843, -9.5253, 1.7218, 0.9838, -5.3273, 0.9024, 0.5843, -5.3273, 1.7218, 0.5843, -5.3273, 2.7712, 0.9838, -5.3273, 1.7218, 0.9838, -5.3273, 1.7218, 0.5843, -5.3273, 2.7712, 0.9838, -5.3273, 1.7218, 0.5843, -5.3273, 2.7712, 0.5843, -5.3273, 1.7218, 0.9838, -5.3273, 0.9024, 0.9838, -5.3273, 0.9024, 0.5843, -5.3273, 0.9024, 0.9838, -5.3273, 0.0844, 0.5843, -5.3273, 0.9024, 0.5843, -5.3273, 0.9024, 0.9838, -5.3273, 0.0844, 0.9838, -5.3273, 0.0844, 0.5843, -5.3273, 0.0844, 0.9838, -5.3273, -0.9647, 0.5843, -5.3273, 0.0844, 0.5843, -5.3273, 0.0844, 0.9838, -5.3273, -0.9647, 0.9838, -5.3273, -0.9647, 0.5843, -5.3273, 2.5406, 0.9838, -5.1433, 3.1289, 0.5843, -5.1433, 2.5406, 0.5843, -5.1433, 2.5406, 0.9838, -5.1433, 3.1289, 0.9838, -5.1433, 3.1289, 0.5843, -5.1433, 1.7218, 0.9838, -5.1433, 2.5406, 0.9838, -5.1433, 2.5406, 0.5843, -5.1433, 1.7218, 0.9838, -5.1433, 2.5406, 0.5843, -5.1433, 1.7218, 0.5843, -5.1433, 0.9024, 0.9838, -5.1433, 1.7218, 0.9838, -5.1433, 1.7218, 0.5843, -5.1433, 0.9024, 0.9838, -5.1433, 1.7218, 0.5843, -5.1433, 0.9024, 0.5843, -5.1433, 0.0844, 0.9838, -5.1433, 0.9024, 0.9838, -5.1433, 0.9024, 0.5843, -5.1433, 0.0844, 0.9838, -5.1433, 0.9024, 0.5843, -5.1433, 0.0844, 0.5843, -5.1433, -0.7341, 0.9838, -5.1433, 0.0844, 0.9838, -5.1433, 0.0844, 0.5843, -5.1433, -0.7341, 0.9838, -5.1433, 0.0844, 0.5843, -5.1433, -0.7341, 0.5843, -5.1433, -1.3227, 0.9838, -5.1433, -0.7341, 0.9838, -5.1433, -0.7341, 0.5843, -5.1433, -1.3227, 0.9838, -5.1433, -0.7341, 0.5843, -5.1433, -1.3227, 0.5843, -5.1433, 2.7712, 0.9838, -8.1288, 2.7712, 0.5843, -7.3955, 2.7712, 0.5843, -8.1288, 2.7712, 0.9838, -9.3164, 2.7712, 0.9838, -8.1288, 2.7712, 0.5843, -8.1288, 2.7712, 0.9838, -9.3164, 2.7712, 0.5843, -8.1288, 3.0069, 0.5843, -9.3164, 2.7712, 0.9838, -8.1288, 2.7712, 0.9838, -7.3955, 2.7712, 0.5843, -7.3955, 2.7712, 0.9838, -7.3955, 2.7712, 0.5843, -6.5367, 2.7712, 0.5843, -7.3955, 2.7712, 0.9838, -7.3955, 2.7712, 0.9838, -6.5367, 2.7712, 0.5843, -6.5367, 2.7712, 0.9838, -6.5367, 2.7712, 0.5843, -5.3273, 2.7712, 0.5843, -6.5367, 2.7712, 0.9838, -6.5367, 2.7712, 0.9838, -5.3273, 2.7712, 0.5843, -5.3273, 3.1289, 0.9838, -5.1433, 3.1289, 0.5843, -5.731, 3.1289, 0.5843, -5.1433, 3.1289, 0.9838, -5.1433, 3.1289, 0.9838, -5.731, 3.1289, 0.5843, -5.731, 3.1289, 0.9838, -5.731, 3.1289, 0.5843, -6.5373, 3.1289, 0.5843, -5.731, 3.1289, 0.9838, -5.731, 3.1289, 0.9838, -6.5373, 3.1289, 0.5843, -6.5373, 3.1289, 0.9838, -6.5373, 3.1289, 0.5843, -7.3955, 3.1289, 0.5843, -6.5373, 3.1289, 0.9838, -6.5373, 3.1289, 0.9838, -7.3955, 3.1289, 0.5843, -7.3955, 3.1289, 0.9838, -7.3955, 3.1289, 0.5843, -8.1303, 3.1289, 0.5843, -7.3955, 3.1289, 0.9838, -7.3955, 3.1289, 0.9838, -8.1303, 3.1289, 0.5843, -8.1303, 3.1289, 0.9838, -8.1303, 3.1289, 0.5843, -8.936, 3.1289, 0.5843, -8.1303, 3.1289, 0.9838, -8.1303, 3.1289, 0.9838, -8.936, 3.1289, 0.5843, -8.936, 3.1289, 0.9838, -8.936, 3.1289, 0.5843, -9.5253, 3.1289, 0.5843, -8.936, 3.1289, 0.9838, -8.936, 3.1289, 0.9838, -9.5253, 3.1289, 0.5843, -9.5253, -1.3227, 0.9838, -6.5373, -1.3227, 0.5843, -5.731, -1.3227, 0.5843, -6.5373, -1.3227, 0.9838, -6.5373, -1.3227, 0.9838, -5.731, -1.3227, 0.5843, -5.731, -1.3227, 0.9838, -5.731, -1.3227, 0.5843, -5.1433, -1.3227, 0.5843, -5.731, -1.3227, 0.9838, -5.731, -1.3227, 0.9838, -5.1433, -1.3227, 0.5843, -5.1433, -1.3227, 0.9838, -7.3955, -1.3227, 0.9838, -6.5373, -1.3227, 0.5843, -6.5373, -1.3227, 0.9838, -7.3955, -1.3227, 0.5843, -6.5373, -1.3227, 0.5843, -7.3955, -1.3227, 0.9838, -8.1303, -1.3227, 0.9838, -7.3955, -1.3227, 0.5843, -7.3955, -1.3227, 0.9838, -8.1303, -1.3227, 0.5843, -7.3955, -1.3227, 0.5843, -8.1303, -1.3227, 0.9838, -8.936, -1.3227, 0.9838, -8.1303, -1.3227, 0.5843, -8.1303, -1.3227, 0.9838, -8.936, -1.3227, 0.5843, -8.1303, -1.3227, 0.5843, -8.936, -1.3227, 0.9838, -9.5253, -1.3227, 0.9838, -8.936, -1.3227, 0.5843, -8.936, -1.3227, 0.9838, -9.5253, -1.3227, 0.5843, -8.936, -1.3227, 0.5843, -9.5253, 0.9024, 0.9838, -5.3273, 1.7218, 0.9838, -5.7309, 0.9024, 0.9838, -5.7309, 0.9024, 0.9838, -5.3273, 1.7218, 0.9838, -5.3273, 1.7218, 0.9838, -5.7309, 0.0844, 0.9838, -5.3273, 0.9024, 0.9838, -5.3273, 0.9024, 0.9838, -5.7309, 1.7218, 0.9838, -5.3273, 2.5406, 0.9838, -5.731, 1.7218, 0.9838, -5.7309, 0.0844, 0.9838, -5.3273, 0.9024, 0.9838, -5.7309, 0.0844, 0.9838, -5.7309, 1.7218, 0.9838, -5.3273, 2.7712, 0.9838, -5.3273, 2.5406, 0.9838, -5.731, -0.9647, 0.9838, -5.3273, 0.0844, 0.9838, -5.3273, 0.0844, 0.9838, -5.7309, 2.7712, 0.9838, -5.3273, 2.5406, 0.9838, -6.537, 2.5406, 0.9838, -5.731, -0.9647, 0.9838, -5.3273, 0.0844, 0.9838, -5.7309, -0.7341, 0.9838, -5.731, 2.7712, 0.9838, -5.3273, 2.7712, 0.9838, -6.5367, 2.5406, 0.9838, -6.537, -0.9647, 0.9838, -6.5367, -0.9647, 0.9838, -5.3273, -0.7341, 0.9838, -5.731, 2.7712, 0.9838, -6.5367, 2.5406, 0.9838, -7.3955, 2.5406, 0.9838, -6.537, -0.9647, 0.9838, -6.5367, -0.7341, 0.9838, -5.731, -0.7341, 0.9838, -6.537, 2.7712, 0.9838, -6.5367, 2.7712, 0.9838, -7.3955, 2.5406, 0.9838, -7.3955, -0.9647, 0.9838, -7.3955, -0.9647, 0.9838, -6.5367, -0.7341, 0.9838, -6.537, 2.7712, 0.9838, -7.3955, 2.5406, 0.9838, -8.1294, 2.5406, 0.9838, -7.3955, -0.9647, 0.9838, -7.3955, -0.7341, 0.9838, -6.537, -0.7341, 0.9838, -7.3955, 2.7712, 0.9838, -7.3955, 2.7712, 0.9838, -8.1288, 2.5406, 0.9838, -8.1294, -0.9647, 0.9838, -8.1288, -0.9647, 0.9838, -7.3955, -0.7341, 0.9838, -7.3955, 2.7712, 0.9838, -8.1288, 2.5406, 0.9838, -8.9349, 2.5406, 0.9838, -8.1294, -0.9647, 0.9838, -8.1288, -0.7341, 0.9838, -7.3955, -0.7341, 0.9838, -8.1294, 2.7712, 0.9838, -8.1288, 2.7712, 0.9838, -9.3164, 2.5406, 0.9838, -8.9349, -0.9647, 0.9838, -9.3164, -0.9647, 0.9838, -8.1288, -0.7341, 0.9838, -8.1294, 2.7712, 0.9838, -9.3164, 1.7218, 0.9838, -8.9341, 2.5406, 0.9838, -8.9349, -0.9647, 0.9838, -9.3164, -0.7341, 0.9838, -8.1294, -0.7341, 0.9838, -8.9349, 2.7712, 0.9838, -9.3164, 1.7218, 0.9838, -9.3164, 1.7218, 0.9838, -8.9341, 0.0844, 0.9838, -9.3164, -0.9647, 0.9838, -9.3164, -0.7341, 0.9838, -8.9349, 1.7218, 0.9838, -9.3164, 0.9024, 0.9838, -8.9341, 1.7218, 0.9838, -8.9341, 0.0844, 0.9838, -9.3164, -0.7341, 0.9838, -8.9349, 0.0844, 0.9838, -8.9341, 1.7218, 0.9838, -9.3164, 0.9024, 0.9838, -9.3164, 0.9024, 0.9838, -8.9341, 0.9024, 0.9838, -9.3164, 0.0844, 0.9838, -9.3164, 0.0844, 0.9838, -8.9341, 0.9024, 0.9838, -9.3164, 0.0844, 0.9838, -8.9341, 0.9024, 0.9838, -8.9341, 0.0844, 0.5843, -5.1433, 0.9024, 0.5843, -5.3273, 0.0844, 0.5843, -5.3273, 0.0844, 0.5843, -5.1433, 0.9024, 0.5843, -5.1433, 0.9024, 0.5843, -5.3273, -0.7341, 0.5843, -5.1433, 0.0844, 0.5843, -5.1433, 0.0844, 0.5843, -5.3273, 0.9024, 0.5843, -5.1433, 1.7218, 0.5843, -5.3273, 0.9024, 0.5843, -5.3273, -0.7341, 0.5843, -5.1433, 0.0844, 0.5843, -5.3273, -0.9647, 0.5843, -5.3273, 0.9024, 0.5843, -5.1433, 1.7218, 0.5843, -5.1433, 1.7218, 0.5843, -5.3273, -1.3227, 0.5843, -5.1433, -0.7341, 0.5843, -5.1433, -0.9647, 0.5843, -5.3273, -1.3227, 0.5843, -5.1433, -0.9647, 0.5843, -5.3273, -1.3227, 0.5843, -5.731, -1.3227, 0.5843, -5.731, -0.9647, 0.5843, -5.3273, -0.9647, 0.5843, -6.5367, -1.3227, 0.5843, -5.731, -0.9647, 0.5843, -6.5367, -1.3227, 0.5843, -6.5373, -1.3227, 0.5843, -6.5373, -0.9647, 0.5843, -6.5367, -0.9647, 0.5843, -7.3955, -1.3227, 0.5843, -6.5373, -0.9647, 0.5843, -7.3955, -1.3227, 0.5843, -7.3955, -1.3227, 0.5843, -7.3955, -0.9647, 0.5843, -7.3955, -0.9647, 0.5843, -8.1288, -1.3227, 0.5843, -7.3955, -0.9647, 0.5843, -8.1288, -1.3227, 0.5843, -8.1303, -1.3227, 0.5843, -8.1303, -0.9647, 0.5843, -8.1288, -1.1454, 0.5843, -9.3164, -1.3227, 0.5843, -8.1303, -1.1454, 0.5843, -9.3164, -1.3227, 0.5843, -8.936, -1.3227, 0.5843, -8.936, -1.1454, 0.5843, -9.3164, -1.151, 0.5843, -9.5243, -1.3227, 0.5843, -8.936, -1.151, 0.5843, -9.5243, -1.3227, 0.5843, -9.5253, -1.1454, 0.5843, -9.3164, 0.0844, 0.5843, -9.5235, -1.151, 0.5843, -9.5243, -1.1454, 0.5843, -9.3164, 0.0844, 0.5843, -9.3164, 0.0844, 0.5843, -9.5235, 0.0844, 0.5843, -9.3164, 0.9024, 0.5843, -9.5235, 0.0844, 0.5843, -9.5235, 0.0844, 0.5843, -9.3164, 0.9024, 0.5843, -9.3164, 0.9024, 0.5843, -9.5235, 0.9024, 0.5843, -9.3164, 1.7218, 0.5843, -9.5235, 0.9024, 0.5843, -9.5235, 0.9024, 0.5843, -9.3164, 1.7218, 0.5843, -9.3164, 1.7218, 0.5843, -9.5235, 1.7218, 0.5843, -9.3164, 2.9934, 0.5843, -9.5243, 1.7218, 0.5843, -9.5235, 1.7218, 0.5843, -9.3164, 3.0069, 0.5843, -9.3164, 2.9934, 0.5843, -9.5243, 3.0069, 0.5843, -9.3164, 3.1289, 0.5843, -9.5253, 2.9934, 0.5843, -9.5243, 3.0069, 0.5843, -9.3164, 3.1289, 0.5843, -8.936, 3.1289, 0.5843, -9.5253, 2.7712, 0.5843, -8.1288, 3.1289, 0.5843, -8.936, 3.0069, 0.5843, -9.3164, 2.7712, 0.5843, -8.1288, 3.1289, 0.5843, -8.1303, 3.1289, 0.5843, -8.936, 2.7712, 0.5843, -7.3955, 3.1289, 0.5843, -8.1303, 2.7712, 0.5843, -8.1288, 2.7712, 0.5843, -7.3955, 3.1289, 0.5843, -7.3955, 3.1289, 0.5843, -8.1303, 2.7712, 0.5843, -6.5367, 3.1289, 0.5843, -7.3955, 2.7712, 0.5843, -7.3955, 2.7712, 0.5843, -6.5367, 3.1289, 0.5843, -6.5373, 3.1289, 0.5843, -7.3955, 2.7712, 0.5843, -5.3273, 3.1289, 0.5843, -6.5373, 2.7712, 0.5843, -6.5367, 2.7712, 0.5843, -5.3273, 3.1289, 0.5843, -5.731, 3.1289, 0.5843, -6.5373, 2.7712, 0.5843, -5.3273, 3.1289, 0.5843, -5.1433, 3.1289, 0.5843, -5.731, 2.5406, 0.5843, -5.1433, 3.1289, 0.5843, -5.1433, 2.7712, 0.5843, -5.3273, 1.7218, 0.5843, -5.1433, 2.5406, 0.5843, -5.1433, 2.7712, 0.5843, -5.3273, 1.7218, 0.5843, -5.1433, 2.7712, 0.5843, -5.3273, 1.7218, 0.5843, -5.3273, 0.9018, -5.4, 6.1297, -1.1351, -5.3991, 3.7948, 0.9017, -5.3988, 3.7948, 0.9018, -5.4, 6.1297, -1.1354, -5.4002, 6.1295, -1.1351, -5.3991, 3.7948, 15.7178, 2.9913, 12.2159, 12.1463, 2.9899, 10.2057, 12.1463, 2.9899, 12.2158, 15.7178, 2.9913, 12.2159, 15.7178, 2.9913, 10.2035, 12.1463, 2.9899, 10.2057, -12.6326, 2.99, 0.15, -10.8504, 2.9899, 2.3014, -10.8504, 2.9899, 0.1501, -12.6326, 2.99, 0.15, -12.6326, 2.99, 2.3015, -10.8504, 2.9899, 2.3014, 6.7299, 2.9899, 0.1501, 12.1463, 2.9899, 2.3014, 12.1463, 2.9899, 0.1501, 6.7299, 2.9899, 0.1501, 6.7299, 2.9899, 2.3014, 12.1463, 2.9899, 2.3014, 6.7299, 2.9899, 2.3014, 12.1463, 2.9899, 2.7999, 12.1463, 2.9899, 2.3014, 6.7299, 2.9899, 2.3014, 6.7299, 2.9899, 2.7917, 12.1463, 2.9899, 2.7999, 6.7299, 2.9899, 0.1501, 12.1463, 2.9899, 0.1501, 12.1463, 2.9899, -1.9152, 6.7299, 2.9899, 0.1501, 12.1463, 2.9899, -1.9152, 6.7299, 2.9899, -1.9152, 6.7299, 2.9899, -1.9152, 12.1463, 2.9899, -1.9152, 12.1463, 2.9899, -2.4633, 6.7299, 2.9899, -1.9152, 12.1463, 2.9899, -2.4633, 6.7299, 2.9899, -2.4477, 6.7299, 2.9899, 2.7917, 12.1463, 2.9899, 6.1355, 12.1463, 2.9899, 2.7999, 6.7299, 2.9899, 2.7917, 6.7299, 2.9899, 5.8784, 12.1463, 2.9899, 6.1355, 6.7299, 2.9899, -2.4477, 12.1463, 2.9899, -2.4633, 12.1463, 2.9899, -5.8749, 6.7299, 2.9899, -2.4477, 12.1463, 2.9899, -5.8749, 6.7299, 2.9899, -5.3255, 6.7299, 2.9899, -5.3255, 12.1463, 2.9899, -5.8749, 12.1463, 2.9899, -7.9449, 6.7299, 2.9899, -5.3255, 12.1463, 2.9899, -7.9449, 6.7299, 2.9899, -7.3955, 6.7299, 2.9899, 5.8784, 12.1463, 2.9899, 8.1598, 12.1463, 2.9899, 6.1355, 6.7299, 2.9899, 5.8784, 6.7299, 2.9899, 7.9026, 12.1463, 2.9899, 8.1598, 6.7299, 2.9899, -7.3955, 12.1463, 2.9899, -7.9449, 12.1463, 2.9899, -9.8682, 6.7299, 2.9899, -7.3955, 12.1463, 2.9899, -9.8682, 6.7393, 2.9899, -9.3189, 6.7393, 2.9899, -9.3189, 12.1463, 2.9899, -9.8682, 12.1463, 2.9899, -11.6554, 6.7393, 2.9899, -9.3189, 12.1463, 2.9899, -11.6554, 7.849, 2.9899, -11.6841, 6.7299, 2.9899, 7.9026, 12.1463, 2.9899, 10.2057, 12.1463, 2.9899, 8.1598, 6.7299, 2.9899, 7.9026, 6.7247, 2.9899, 9.9486, 12.1463, 2.9899, 10.2057, 7.849, 2.9899, -11.6841, 12.1463, 2.9899, -11.6554, 12.1463, 2.9899, -14.824, 7.849, 2.9899, -11.6841, 12.1463, 2.9899, -14.824, 7.849, 2.9899, -14.824, 7.849, 2.9899, -14.824, 12.1463, 2.9899, -14.824, 12.1461, 3.0366, -19.3529, 7.849, 2.9899, -14.824, 12.1461, 3.0366, -19.3529, 7.8492, 3.0366, -19.3529, 6.7247, 2.9899, 9.9486, 12.1463, 2.9899, 12.2158, 12.1463, 2.9899, 10.2057, 6.7247, 2.9899, 9.9486, 7.849, 2.9899, 12.2158, 12.1463, 2.9899, 12.2158, 7.849, 2.9899, 12.2158, 12.1463, 2.9899, 15.0881, 12.1463, 2.9899, 12.2158, 7.849, 2.9899, 12.2158, 7.849, 2.9899, 15.0881, 12.1463, 2.9899, 15.0881, 7.849, 2.9899, 15.0881, 7.849, 2.9899, 21.232, 12.1463, 2.9899, 21.232, 7.849, 2.9899, 15.0881, 12.1463, 2.9899, 21.232, 12.1463, 2.9899, 15.0881, -5.1944, 2.9899, 0.1501, -3.1454, 2.9899, 3.395, -3.1454, 2.9899, 0.1501, -5.1944, 2.9899, 0.1501, -5.1944, 2.9899, 2.3014, -3.1454, 2.9899, 3.395, -3.1454, 2.9899, 0.1501, -3.1454, 2.9899, 3.395, -1.1233, 2.9899, 3.395, -5.1944, 2.9899, 0.1501, -3.1454, 2.9899, 0.1501, -3.1454, 2.9899, -1.3658, -5.1944, 2.9899, 0.1501, -3.1454, 2.9899, -1.3658, -5.1944, 2.9899, -1.9152, -5.1944, 2.9899, -1.9152, -3.1454, 2.9899, -1.3658, -3.1454, 2.9899, -1.8983, -5.1944, 2.9899, -1.9152, -3.1454, 2.9899, -1.8983, -5.1944, 2.9899, -2.4477, -5.1944, 2.9899, -2.4477, -3.1454, 2.9899, -1.8983, -3.1454, 2.9899, -5.3255, -5.1944, 2.9899, -2.4477, -3.1454, 2.9899, -5.3255, -5.1944, 2.9899, -5.3348, -3.1454, 2.9899, -1.3658, -1.1233, 2.9899, -1.9277, -3.1454, 2.9899, -1.8983, -3.1454, 2.9899, -1.3658, -1.1233, 2.9899, -1.3658, -1.1233, 2.9899, -1.9277, -3.1454, 2.9899, 0.1501, -1.1233, 2.9899, -1.3658, -3.1454, 2.9899, -1.3658, -1.1233, 2.9899, -1.3658, 0.9025, 2.9899, -1.9277, -1.1233, 2.9899, -1.9277, -3.1454, 2.9899, 0.1501, -1.1233, 2.9899, 3.395, -1.1233, 2.9899, 0.1501, -3.1454, 2.9899, 0.1501, -1.1233, 2.9899, 0.1501, -1.1233, 2.9899, -1.3658, -1.1233, 2.9899, 0.1501, -1.1233, 2.9899, 3.395, 0.9025, 2.9899, 3.395, -1.1233, 2.9899, -1.3658, 0.9025, 2.9899, -1.3658, 0.9025, 2.9899, -1.9277, -1.1233, 2.9899, 0.1501, 0.9025, 2.9899, -1.3658, -1.1233, 2.9899, -1.3658, 0.9025, 2.9899, -1.3658, 2.946, 2.9899, -1.9277, 0.9025, 2.9899, -1.9277, -1.1233, 2.9899, 0.1501, 0.9025, 2.9899, 3.395, 0.9025, 2.9899, 0.1501, -1.1233, 2.9899, 0.1501, 0.9025, 2.9899, 0.1501, 0.9025, 2.9899, -1.3658, 0.9025, 2.9899, 0.1501, 0.9025, 2.9899, 3.395, 2.946, 2.9899, 3.395, 0.9025, 2.9899, -1.3658, 2.946, 2.9899, -1.3658, 2.946, 2.9899, -1.9277, 0.9025, 2.9899, 0.1501, 2.946, 2.9899, -1.3658, 0.9025, 2.9899, -1.3658, 2.946, 2.9899, -1.3658, 4.9018, 2.9899, -1.8983, 2.946, 2.9899, -1.9277, 0.9025, 2.9899, 0.1501, 2.946, 2.9899, 3.395, 2.946, 2.9899, 0.1501, 0.9025, 2.9899, 0.1501, 2.946, 2.9899, 0.1501, 2.946, 2.9899, -1.3658, 2.946, 2.9899, 0.1501, 2.946, 2.9899, 3.395, 4.9018, 2.9899, 3.395, 4.9018, 2.9899, -1.8983, 6.7299, 2.9899, -5.3255, 4.9018, 2.9899, -5.3255, 4.9018, 2.9899, -1.8983, 6.7299, 2.9899, -2.4477, 6.7299, 2.9899, -5.3255, 2.946, 2.9899, -1.3658, 4.9018, 2.9899, -1.3658, 4.9018, 2.9899, -1.8983, 4.9018, 2.9899, -1.3658, 6.7299, 2.9899, -2.4477, 4.9018, 2.9899, -1.8983, 2.946, 2.9899, 0.1501, 4.9018, 2.9899, -1.3658, 2.946, 2.9899, -1.3658, 4.9018, 2.9899, -1.3658, 6.7299, 2.9899, -1.9152, 6.7299, 2.9899, -2.4477, 2.946, 2.9899, 0.1501, 4.9018, 2.9899, 3.395, 4.9018, 2.9899, 0.1501, 2.946, 2.9899, 0.1501, 4.9018, 2.9899, 0.1501, 4.9018, 2.9899, -1.3658, 4.9018, 2.9899, 0.1501, 6.7299, 2.9899, -1.9152, 4.9018, 2.9899, -1.3658, 4.9018, 2.9899, 0.1501, 4.9018, 2.9899, 3.395, 6.7299, 2.9899, 2.3014, 4.9018, 2.9899, 0.1501, 6.7299, 2.9899, 0.1501, 6.7299, 2.9899, -1.9152, 4.9018, 2.9899, 0.1501, 6.7299, 2.9899, 2.3014, 6.7299, 2.9899, 0.1501, -12.6326, 2.99, 2.7998, -10.8504, 2.9899, 6.1201, -10.8504, 2.9899, 2.7999, -12.6326, 2.99, 2.7998, -12.6326, 2.99, 6.1201, -10.8504, 2.9899, 6.1201, -12.6326, 2.99, 8.1597, -10.8504, 2.9899, 10.1775, -10.8504, 2.9899, 8.1598, -12.6326, 2.99, 8.1597, -12.6326, 2.99, 10.1776, -10.8504, 2.9899, 10.1775, 15.7178, 2.9913, 2.7999, 12.1463, 2.9899, 2.3014, 12.1463, 2.9899, 2.7999, 15.7178, 2.9913, 2.7999, 15.7178, 2.9913, 2.3014, 12.1463, 2.9899, 2.3014, -12.6326, 2.99, 12.2158, -10.8504, 2.9899, 15.0881, -10.8504, 2.9899, 12.2158, -12.6326, 2.99, 12.2158, -12.6326, 2.99, 15.0881, -10.8504, 2.9899, 15.0881, 15.7178, 2.9913, 8.1597, 12.1463, 2.9899, 6.1355, 12.1463, 2.9899, 8.1598, 15.7178, 2.9913, 8.1597, 15.7178, 2.9913, 6.1332, 12.1463, 2.9899, 6.1355, -1.1416, 2.9899, 11.9837, 0.9025, 2.9899, 15.0881, 0.9025, 2.9899, 11.9837, 0.9025, 2.9899, 15.0881, 0.9025, 2.9899, 21.232, 3.0172, 2.9899, 21.232, 0.9025, 2.9899, 15.0881, 3.0172, 2.9899, 21.232, 3.0172, 2.9899, 15.0881, 0.9025, 2.9899, 11.9837, 0.9025, 2.9899, 15.0881, 3.0172, 2.9899, 15.0881, 0.9025, 2.9899, 11.9837, 3.0172, 2.9899, 15.0881, 3.0172, 2.9899, 11.9837, -1.1416, 2.9899, 11.9837, -1.1416, 2.9899, 15.0881, 0.9025, 2.9899, 15.0881, -1.1416, 2.9899, 15.0881, 0.9025, 2.9899, 21.232, 0.9025, 2.9899, 15.0881, -1.1416, 2.9899, 15.0881, -1.1416, 2.9899, 21.232, 0.9025, 2.9899, 21.232, -3.1612, 2.9899, 11.9587, -1.1416, 2.9899, 15.0881, -1.1416, 2.9899, 11.9837, 3.0172, 2.9899, 15.0881, 3.0172, 2.9899, 21.232, 4.8649, 2.9899, 21.232, 3.0172, 2.9899, 15.0881, 4.8649, 2.9899, 21.232, 4.8649, 2.9899, 15.0881, 3.0172, 2.9899, 11.9837, 3.0172, 2.9899, 15.0881, 4.8649, 2.9899, 15.0881, 3.0172, 2.9899, 11.9837, 4.8649, 2.9899, 15.0881, 4.8649, 2.9899, 11.9587, 4.8649, 2.9899, 11.9587, 4.8649, 2.9899, 15.0881, 7.849, 2.9899, 15.0881, 4.8649, 2.9899, 11.9587, 7.849, 2.9899, 15.0881, 7.849, 2.9899, 12.2158, 4.8649, 2.9899, 15.0881, 7.849, 2.9899, 21.232, 7.849, 2.9899, 15.0881, 4.8649, 2.9899, 15.0881, 4.8649, 2.9899, 21.232, 7.849, 2.9899, 21.232, -3.1612, 2.9899, 11.9587, -3.1612, 2.9899, 15.0881, -1.1416, 2.9899, 15.0881, -3.1612, 2.9899, 15.0881, -1.1416, 2.9899, 21.232, -1.1416, 2.9899, 15.0881, -3.1612, 2.9899, 15.0881, -3.1612, 2.9899, 21.232, -1.1416, 2.9899, 21.232, -5.2289, 2.9899, 12.2158, -3.1612, 2.9899, 15.0881, -3.1612, 2.9899, 11.9587, -5.2289, 2.9899, 12.2158, -5.2289, 2.9899, 15.0881, -3.1612, 2.9899, 15.0881, -5.2289, 2.9899, 15.0881, -3.1612, 2.9899, 21.232, -3.1612, 2.9899, 15.0881, -5.2289, 2.9899, 15.0881, -5.2289, 2.9899, 21.232, -3.1612, 2.9899, 21.232, 12.1463, 2.9899, 15.0881, 15.7178, 2.9913, 21.232, 15.7178, 2.9913, 15.0881, 12.1463, 2.9899, 15.0881, 12.1463, 2.9899, 21.232, 15.7178, 2.9913, 21.232, -12.6326, 2.99, 15.0881, -10.8504, 2.9899, 21.232, -10.8504, 2.9899, 15.0881, -12.6326, 2.99, 15.0881, -12.6326, 2.99, 21.232, -10.8504, 2.9899, 21.232, -10.8504, 2.9899, 15.0881, -5.2289, 2.9899, 21.232, -5.2289, 2.9899, 15.0881, -10.8504, 2.9899, 15.0881, -10.8504, 2.9899, 21.232, -5.2289, 2.9899, 21.232, -10.8504, 2.9899, 12.2158, -10.8504, 2.9899, 15.0881, -5.2289, 2.9899, 15.0881, -10.8504, 2.9899, 12.2158, -5.2289, 2.9899, 15.0881, -5.2289, 2.9899, 12.2158, -10.8504, 2.9899, 10.1775, -10.8504, 2.9899, 12.2158, -5.2289, 2.9899, 12.2158, -10.8504, 2.9899, 10.1775, -5.2289, 2.9899, 12.2158, -5.2289, 2.9899, 9.9204, -10.8504, 2.9899, 8.1598, -10.8504, 2.9899, 10.1775, -5.2289, 2.9899, 9.9204, -10.8504, 2.9899, 8.1598, -5.2289, 2.9899, 9.9204, -5.1944, 2.9899, 7.9026, -10.8504, 2.9899, 6.1201, -10.8504, 2.9899, 8.1598, -5.1944, 2.9899, 7.9026, -10.8504, 2.9899, 6.1201, -5.1944, 2.9899, 7.9026, -5.1944, 2.9899, 5.863, -10.8504, 2.9899, 2.7999, -10.8504, 2.9899, 6.1201, -5.1944, 2.9899, 5.863, -10.8504, 2.9899, 2.7999, -5.1944, 2.9899, 5.863, -5.1944, 2.9899, 2.7917, -10.8504, 2.9899, 2.3014, -10.8504, 2.9899, 2.7999, -5.1944, 2.9899, 2.7917, -10.8504, 2.9899, 2.3014, -5.1944, 2.9899, 2.7917, -5.1944, 2.9899, 2.3014, -10.8504, 2.9899, 0.1501, -10.8504, 2.9899, 2.3014, -5.1944, 2.9899, 2.3014, -10.8504, 2.9899, 0.1501, -5.1944, 2.9899, 2.3014, -5.1944, 2.9899, 0.1501, -10.8504, 2.9899, 0.1501, -5.1944, 2.9899, 0.1501, -5.1944, 2.9899, -1.9152, -10.8504, 2.9899, 0.1501, -5.1944, 2.9899, -1.9152, -10.8504, 2.9899, -1.9152, -10.8504, 2.9899, -1.9152, -5.1944, 2.9899, -1.9152, -5.1944, 2.9899, -2.4477, -10.8504, 2.9899, -1.9152, -5.1944, 2.9899, -2.4477, -10.8504, 2.9899, -2.4633, -10.8504, 2.9899, -2.4633, -5.1944, 2.9899, -2.4477, -5.1944, 2.9899, -5.3348, -10.8504, 2.9899, -2.4633, -5.1944, 2.9899, -5.3348, -10.8504, 2.9899, -5.8842, -10.8504, 2.9899, -5.8842, -5.1944, 2.9899, -5.3348, -5.1944, 2.9899, -7.3955, -10.8504, 2.9899, -5.8842, -5.1944, 2.9899, -7.3955, -10.8504, 2.9899, -7.9449, -10.8504, 2.9899, -7.9449, -5.1944, 2.9899, -7.3955, -5.2289, 2.9899, -9.3487, -10.8504, 2.9899, -7.9449, -5.2289, 2.9899, -9.3487, -10.8504, 2.9899, -9.8981, -10.8504, 2.9899, -9.8981, -5.2289, 2.9899, -9.3487, -5.2289, 2.9899, -11.6841, -10.8504, 2.9899, -9.8981, -5.2289, 2.9899, -11.6841, -10.8504, 2.9899, -11.6554, -10.8504, 2.9899, -11.6554, -5.2289, 2.9899, -11.6841, -5.2289, 2.9899, -14.824, -10.8504, 2.9899, -11.6554, -5.2289, 2.9899, -14.824, -12.0792, 2.9899, -15.8664, -12.0792, 2.9899, -15.8664, -5.2289, 2.9899, -14.824, -5.2289, 3.0366, -19.3529, -12.0792, 2.9899, -15.8664, -5.2289, 3.0366, -19.3529, -12.0794, 3.0366, -19.3529, -12.6326, 2.99, 10.1776, -10.8504, 2.9899, 12.2158, -10.8504, 2.9899, 10.1775, -12.6326, 2.99, 10.1776, -12.6326, 2.99, 12.2158, -10.8504, 2.9899, 12.2158, 15.7178, 2.9913, 15.0881, 12.1463, 2.9899, 12.2158, 12.1463, 2.9899, 15.0881, 15.7178, 2.9913, 15.0881, 15.7178, 2.9913, 12.2159, 12.1463, 2.9899, 12.2158, 15.7178, 2.9913, 6.1332, 12.1463, 2.9899, 2.7999, 12.1463, 2.9899, 6.1355, 15.7178, 2.9913, 6.1332, 15.7178, 2.9913, 2.7999, 12.1463, 2.9899, 2.7999, -12.6326, 2.99, 2.3015, -10.8504, 2.9899, 2.7999, -10.8504, 2.9899, 2.3014, -12.6326, 2.99, 2.3015, -12.6326, 2.99, 2.7998, -10.8504, 2.9899, 2.7999, 15.7178, 2.9913, 10.2035, 12.1463, 2.9899, 8.1598, 12.1463, 2.9899, 10.2057, 15.7178, 2.9913, 10.2035, 15.7178, 2.9913, 8.1597, 12.1463, 2.9899, 8.1598, -12.6326, 2.99, 6.1201, -10.8504, 2.9899, 8.1598, -10.8504, 2.9899, 6.1201, -12.6326, 2.99, 6.1201, -12.6326, 2.99, 8.1597, -10.8504, 2.9899, 8.1598, 15.7178, 2.9913, 2.3014, 12.1463, 2.9899, 0.1501, 12.1463, 2.9899, 2.3014, 15.7178, 2.9913, 2.3014, 15.7178, 2.9913, 0.1502, 12.1463, 2.9899, 0.1501, 15.7178, 2.9913, -11.6553, 12.1463, 2.9899, -9.8682, 15.7178, 2.9913, -9.8651, 15.7178, 2.9913, -11.6553, 12.1463, 2.9899, -11.6554, 12.1463, 2.9899, -9.8682, -12.6326, 2.99, 0.15, -10.8504, 2.9899, -1.9152, -12.6326, 2.99, -1.915, -12.6326, 2.99, 0.15, -10.8504, 2.9899, 0.1501, -10.8504, 2.9899, -1.9152, -12.6326, 2.99, -2.4633, -10.8504, 2.9899, -5.8842, -12.6326, 2.99, -5.8842, -12.6326, 2.99, -2.4633, -10.8504, 2.9899, -2.4633, -10.8504, 2.9899, -5.8842, -12.6326, 2.99, -7.9449, -10.8504, 2.9899, -9.8981, -12.6326, 2.99, -9.8981, -12.6326, 2.99, -7.9449, -10.8504, 2.9899, -7.9449, -10.8504, 2.9899, -9.8981, 15.7178, 2.9913, -2.4632, 12.1463, 2.9899, -1.9152, 15.7178, 2.9913, -1.9149, 15.7178, 2.9913, -2.4632, 12.1463, 2.9899, -2.4633, 12.1463, 2.9899, -1.9152, -12.6326, 2.99, -11.6554, -12.0792, 2.9899, -15.8664, -13.247, 2.99, -15.8664, -12.6326, 2.99, -11.6554, -10.8504, 2.9899, -11.6554, -12.0792, 2.9899, -15.8664, 15.7178, 2.9913, -7.945, 12.1463, 2.9899, -5.8749, 15.7178, 2.9913, -5.8722, 15.7178, 2.9913, -7.945, 12.1463, 2.9899, -7.9449, 12.1463, 2.9899, -5.8749, -1.1416, 2.9899, -12.5029, 0.9025, 2.9899, -14.824, -1.1416, 2.9899, -14.824, -1.1416, 2.9899, -12.5029, 0.9025, 2.9899, -12.5029, 0.9025, 2.9899, -14.824, -1.1416, 2.9899, -14.824, 0.9025, 2.9899, -14.824, 0.9027, 3.0366, -19.3529, -1.1416, 2.9899, -14.824, 0.9027, 3.0366, -19.3529, -1.1417, 3.0366, -19.3529, -3.1612, 2.9899, -11.6841, -1.1416, 2.9899, -12.5029, -1.1416, 2.9899, -14.824, -5.2289, 2.9899, -9.3487, -3.1454, 2.9899, -9.3189, -3.1612, 2.9899, -11.6841, -5.2289, 2.9899, -9.3487, -3.1612, 2.9899, -11.6841, -5.2289, 2.9899, -11.6841, -3.1612, 2.9899, -11.6841, -1.1416, 2.9899, -14.824, -3.1612, 2.9899, -14.824, -5.2289, 2.9899, -11.6841, -3.1612, 2.9899, -11.6841, -3.1612, 2.9899, -14.824, -3.1612, 2.9899, -14.824, -1.1416, 2.9899, -14.824, -1.1417, 3.0366, -19.3529, -3.1612, 2.9899, -14.824, -1.1417, 3.0366, -19.3529, -3.162, 3.0366, -19.3529, -5.2289, 2.9899, -11.6841, -3.1612, 2.9899, -14.824, -5.2289, 2.9899, -14.824, -5.2289, 2.9899, -14.824, -3.1612, 2.9899, -14.824, -3.162, 3.0366, -19.3529, -5.2289, 2.9899, -14.824, -3.162, 3.0366, -19.3529, -5.2289, 3.0366, -19.3529, 0.9025, 2.9899, -14.824, 3.0177, 3.0366, -19.3529, 0.9027, 3.0366, -19.3529, 0.9025, 2.9899, -14.824, 3.0172, 2.9899, -14.824, 3.0177, 3.0366, -19.3529, 0.9025, 2.9899, -12.5029, 3.0172, 2.9899, -14.824, 0.9025, 2.9899, -14.824, 0.9025, 2.9899, -12.5029, 3.0172, 2.9899, -12.5029, 3.0172, 2.9899, -14.824, 3.0172, 2.9899, -14.824, 4.8652, 3.0366, -19.3529, 3.0177, 3.0366, -19.3529, 3.0172, 2.9899, -14.824, 4.8649, 2.9899, -14.824, 4.8652, 3.0366, -19.3529, 3.0172, 2.9899, -12.5029, 4.8649, 2.9899, -14.824, 3.0172, 2.9899, -14.824, 3.0172, 2.9899, -12.5029, 4.8649, 2.9899, -11.1347, 4.8649, 2.9899, -14.824, 4.8649, 2.9899, -14.824, 7.8492, 3.0366, -19.3529, 4.8652, 3.0366, -19.3529, 4.8649, 2.9899, -14.824, 7.849, 2.9899, -14.824, 7.8492, 3.0366, -19.3529, 4.8649, 2.9899, -11.1347, 7.849, 2.9899, -14.824, 4.8649, 2.9899, -14.824, 4.8649, 2.9899, -11.1347, 7.849, 2.9899, -11.6841, 7.849, 2.9899, -14.824, 4.9018, 2.9899, -9.3189, 7.849, 2.9899, -11.6841, 4.8649, 2.9899, -11.1347, 4.9018, 2.9899, -9.3189, 6.7393, 2.9899, -9.3189, 7.849, 2.9899, -11.6841, 12.1463, 2.9899, -14.824, 15.7178, 3.038, -19.353, 12.1461, 3.0366, -19.3529, 12.1463, 2.9899, -14.824, 15.7178, 2.9913, -14.824, 15.7178, 3.038, -19.353, -12.0794, 3.0366, -19.3529, -10.7084, 2.5533, -15.866, -12.0792, 2.9899, -15.8664, -12.0794, 3.0366, -19.3529, -10.7011, 2.6001, -19.3529, -10.7084, 2.5533, -15.866, -12.6326, 2.99, -9.8981, -10.8504, 2.9899, -11.6554, -12.6326, 2.99, -11.6554, -12.6326, 2.99, -9.8981, -10.8504, 2.9899, -9.8981, -10.8504, 2.9899, -11.6554, 15.7178, 2.9913, -14.824, 12.1463, 2.9899, -11.6554, 15.7178, 2.9913, -11.6553, 15.7178, 2.9913, -14.824, 12.1463, 2.9899, -14.824, 12.1463, 2.9899, -11.6554, 15.7178, 2.9913, -5.8722, 12.1463, 2.9899, -2.4633, 15.7178, 2.9913, -2.4632, 15.7178, 2.9913, -5.8722, 12.1463, 2.9899, -5.8749, 12.1463, 2.9899, -2.4633, -12.6326, 2.99, -1.915, -10.8504, 2.9899, -2.4633, -12.6326, 2.99, -2.4633, -12.6326, 2.99, -1.915, -10.8504, 2.9899, -1.9152, -10.8504, 2.9899, -2.4633, 15.7178, 2.9913, -9.8651, 12.1463, 2.9899, -7.9449, 15.7178, 2.9913, -7.945, 15.7178, 2.9913, -9.8651, 12.1463, 2.9899, -9.8682, 12.1463, 2.9899, -7.9449, -12.6326, 2.99, -5.8842, -10.8504, 2.9899, -7.9449, -12.6326, 2.99, -7.9449, -12.6326, 2.99, -5.8842, -10.8504, 2.9899, -5.8842, -10.8504, 2.9899, -7.9449, 15.7178, 2.9913, -1.9149, 12.1463, 2.9899, 0.1501, 15.7178, 2.9913, 0.1502, 15.7178, 2.9913, -1.9149, 12.1463, 2.9899, -1.9152, 12.1463, 2.9899, 0.1501, 0.9025, 2.2728, -1.9277, 2.946, 2.0553, -1.9277, 0.9025, 2.0553, -1.9277, 0.9025, 2.2728, -1.9277, 2.946, 2.2728, -1.9277, 2.946, 2.0553, -1.9277, -0.7341, 2.9877, -7.3955, 0.9024, 2.9877, -8.975, -0.7341, 2.9877, -8.9754, -0.7341, 2.9877, -7.3955, 0.9024, 2.9877, -7.3955, 0.9024, 2.9877, -8.975, 0.9024, 2.9877, -7.3955, 2.5406, 2.9877, -8.9754, 0.9024, 2.9877, -8.975, -0.7341, 2.9877, -5.7315, 0.9024, 2.9877, -7.3955, -0.7341, 2.9877, -7.3955, 0.9024, 2.9877, -7.3955, 2.5406, 2.9877, -7.3955, 2.5406, 2.9877, -8.9754, -0.7341, 2.9877, -5.7315, 0.9024, 2.9877, -5.7315, 0.9024, 2.9877, -7.3955, 0.9024, 2.9877, -5.7315, 2.5406, 2.9877, -7.3955, 0.9024, 2.9877, -7.3955, 0.9024, 2.9877, -5.7315, 2.5406, 2.9877, -5.7315, 2.5406, 2.9877, -7.3955, -11.0602, 2.5533, -18.908, -11.0602, 1.9867, -16.0508, -11.0602, 2.5533, -16.0508, -11.0602, 2.5533, -18.908, -11.0602, 1.9867, -18.908, -11.0602, 1.9867, -16.0508, -13.2434, 3.0367, -19.353, -10.7011, 2.6001, -19.3529, -12.0794, 3.0366, -19.3529, -13.2434, 3.0367, -19.353, -12.5543, 2.6002, -19.353, -10.7011, 2.6001, -19.3529, -13.247, 2.99, -15.8664, -14.4148, 2.5535, -15.8684, -14.4148, 2.99, -15.8663, -13.247, 2.99, -15.8664, -12.5616, 2.5534, -15.8672, -14.4148, 2.5535, -15.8684, -14.4148, 2.99, -15.8663, -14.4075, 2.6002, -19.353, -14.4075, 3.0368, -19.353, -14.4148, 2.99, -15.8663, -14.4148, 2.5535, -15.8684, -14.4075, 2.6002, -19.353, -12.5603, 2.5533, -18.9081, -14.4075, 2.6002, -19.353, -14.0604, 2.5533, -18.9081, -12.5603, 2.5533, -18.9081, -12.5543, 2.6002, -19.353, -14.4075, 2.6002, -19.353, -14.0604, 2.5533, -18.9081, -14.4148, 2.5535, -15.8684, -14.0604, 2.5533, -16.0508, -14.0604, 2.5533, -18.9081, -14.4075, 2.6002, -19.353, -14.4148, 2.5535, -15.8684, -11.0602, 2.5533, -16.0508, -10.7011, 2.6001, -19.3529, -11.0602, 2.5533, -18.908, -11.0602, 2.5533, -16.0508, -10.7084, 2.5533, -15.866, -10.7011, 2.6001, -19.3529, -12.5603, 2.5533, -16.0508, -10.7084, 2.5533, -15.866, -11.0602, 2.5533, -16.0508, -12.5603, 2.5533, -16.0508, -12.5616, 2.5534, -15.8672, -10.7084, 2.5533, -15.866, -11.7297, 1.9867, -16.1306, -11.0795, 1.9867, -17.431, -11.7297, 1.9867, -17.431, -11.7297, 1.9867, -16.1306, -11.0795, 1.9867, -16.1306, -11.0795, 1.9867, -17.431, -12.5603, 2.5533, -18.9081, -11.0602, 1.9867, -18.908, -11.0602, 2.5533, -18.908, -12.5603, 2.5533, -18.9081, -12.5603, 1.9867, -18.9081, -11.0602, 1.9867, -18.908, -12.5603, 2.5533, -16.0508, -14.0604, 1.9867, -16.0508, -14.0604, 2.5533, -16.0508, -12.5603, 2.5533, -16.0508, -12.5603, 1.9867, -16.0508, -14.0604, 1.9867, -16.0508, -14.0604, 2.5533, -16.0508, -14.0604, 1.9867, -18.9081, -14.0604, 2.5533, -18.9081, -14.0604, 2.5533, -16.0508, -14.0604, 1.9867, -16.0508, -14.0604, 1.9867, -18.9081, -11.7297, 1.9867, -17.431, -14.0604, 1.9867, -18.9081, -12.3799, 1.9867, -17.431, -11.7297, 1.9867, -17.431, -12.5603, 1.9867, -18.9081, -14.0604, 1.9867, -18.9081, -12.3799, 1.9867, -17.431, -14.0604, 1.9867, -16.0508, -12.3799, 1.9867, -16.1306, -12.3799, 1.9867, -17.431, -14.0604, 1.9867, -18.9081, -14.0604, 1.9867, -16.0508, -11.0795, 1.9867, -16.1306, -11.0602, 1.9867, -18.908, -11.0795, 1.9867, -17.431, -11.0795, 1.9867, -16.1306, -11.0602, 1.9867, -16.0508, -11.0602, 1.9867, -18.908, -11.7297, 1.9867, -16.1306, -11.0602, 1.9867, -16.0508, -11.0795, 1.9867, -16.1306, -11.7297, 1.9867, -16.1306, -12.5603, 1.9867, -16.0508, -11.0602, 1.9867, -16.0508, -14.4148, 2.99, -1.9149, -14.1244, 2.99, 0.15, -14.4148, 2.99, 0.15, -14.4148, 2.99, -1.9149, -14.1244, 2.99, -1.9149, -14.1244, 2.99, 0.15, -14.4148, 2.99, 0.15, -14.1244, 2.99, 2.3015, -14.4148, 2.99, 2.3015, -14.4148, 2.99, 0.15, -14.1244, 2.99, 0.15, -14.1244, 2.99, 2.3015, -12.3799, 1.9867, -16.1306, -12.5603, 1.9867, -16.0508, -11.7297, 1.9867, -16.1306, -12.3799, 1.9867, -16.1306, -14.0604, 1.9867, -16.0508, -12.5603, 1.9867, -16.0508, -11.0795, 1.9867, -17.431, -12.5603, 1.9867, -18.9081, -11.7297, 1.9867, -17.431, -11.0795, 1.9867, -17.431, -11.0602, 1.9867, -18.908, -12.5603, 1.9867, -18.9081, -11.0602, 2.5533, -16.0508, -12.5603, 1.9867, -16.0508, -12.5603, 2.5533, -16.0508, -11.0602, 2.5533, -16.0508, -11.0602, 1.9867, -16.0508, -12.5603, 1.9867, -16.0508, -14.0604, 2.5533, -18.9081, -12.5603, 1.9867, -18.9081, -12.5603, 2.5533, -18.9081, -14.0604, 2.5533, -18.9081, -14.0604, 1.9867, -18.9081, -12.5603, 1.9867, -18.9081, -12.3799, 1.9867, -16.1306, -11.7297, 1.9867, -17.431, -12.3799, 1.9867, -17.431, -12.3799, 1.9867, -16.1306, -11.7297, 1.9867, -16.1306, -11.7297, 1.9867, -17.431, -14.0604, 2.5533, -16.0508, -12.5616, 2.5534, -15.8672, -12.5603, 2.5533, -16.0508, -14.0604, 2.5533, -16.0508, -14.4148, 2.5535, -15.8684, -12.5616, 2.5534, -15.8672, -11.0602, 2.5533, -18.908, -12.5543, 2.6002, -19.353, -12.5603, 2.5533, -18.9081, -11.0602, 2.5533, -18.908, -10.7011, 2.6001, -19.3529, -12.5543, 2.6002, -19.353, -12.0792, 2.9899, -15.8664, -12.5616, 2.5534, -15.8672, -13.247, 2.99, -15.8664, -12.0792, 2.9899, -15.8664, -10.7084, 2.5533, -15.866, -12.5616, 2.5534, -15.8672, -14.4075, 3.0368, -19.353, -12.5543, 2.6002, -19.353, -13.2434, 3.0367, -19.353, -14.4075, 3.0368, -19.353, -14.4075, 2.6002, -19.353, -12.5543, 2.6002, -19.353, -14.4148, 2.99, -5.8842, -12.6326, 2.99, -7.9449, -14.4148, 2.99, -7.9449, -14.4148, 2.99, -5.8842, -12.6326, 2.99, -5.8842, -12.6326, 2.99, -7.9449, -14.4148, 2.99, -1.9149, -12.6326, 2.99, -2.4633, -14.4148, 2.99, -2.4633, -14.4148, 2.99, -1.9149, -12.6326, 2.99, -1.915, -12.6326, 2.99, -2.4633, -14.4148, 2.99, -9.8981, -12.6326, 2.99, -11.6554, -14.4148, 2.99, -11.6554, -14.4148, 2.99, -9.8981, -12.6326, 2.99, -9.8981, -12.6326, 2.99, -11.6554, -14.4148, 2.99, -11.6554, -13.247, 2.99, -15.8664, -14.4148, 2.99, -15.8663, -14.4148, 2.99, -11.6554, -12.6326, 2.99, -11.6554, -13.247, 2.99, -15.8664, -14.4148, 2.99, -7.9449, -12.6326, 2.99, -9.8981, -14.4148, 2.99, -9.8981, -14.4148, 2.99, -7.9449, -12.6326, 2.99, -7.9449, -12.6326, 2.99, -9.8981, -14.4148, 2.99, -2.4633, -12.6326, 2.99, -5.8842, -14.4148, 2.99, -5.8842, -14.4148, 2.99, -2.4633, -12.6326, 2.99, -2.4633, -12.6326, 2.99, -5.8842, -14.4148, 2.99, 0.15, -12.6326, 2.99, -1.915, -14.4148, 2.99, -1.9149, -14.4148, 2.99, 0.15, -12.6326, 2.99, 0.15, -12.6326, 2.99, -1.915, -14.4148, 2.99, 6.1201, -12.6326, 2.99, 8.1597, -12.6326, 2.99, 6.1201, -14.4148, 2.99, 6.1201, -14.4148, 2.99, 8.1597, -12.6326, 2.99, 8.1597, -14.4148, 2.99, 2.3015, -12.6326, 2.99, 2.7998, -12.6326, 2.99, 2.3015, -14.4148, 2.99, 2.3015, -14.4148, 2.99, 2.7998, -12.6326, 2.99, 2.7998, -14.4148, 2.99, 10.1776, -12.6326, 2.99, 12.2158, -12.6326, 2.99, 10.1776, -14.4148, 2.99, 10.1776, -14.4148, 2.99, 12.2159, -12.6326, 2.99, 12.2158, -14.4148, 2.99, 15.0881, -12.6326, 2.99, 21.232, -12.6326, 2.99, 15.0881, -14.4148, 2.99, 15.0881, -14.4148, 2.99, 21.232, -12.6326, 2.99, 21.232, -14.4148, 2.99, 12.2159, -12.6326, 2.99, 15.0881, -12.6326, 2.99, 12.2158, -14.4148, 2.99, 12.2159, -14.4148, 2.99, 15.0881, -12.6326, 2.99, 15.0881, -14.4148, 2.99, 8.1597, -12.6326, 2.99, 10.1776, -12.6326, 2.99, 8.1597, -14.4148, 2.99, 8.1597, -14.4148, 2.99, 10.1776, -12.6326, 2.99, 10.1776, -14.4148, 2.99, 2.7998, -12.6326, 2.99, 6.1201, -12.6326, 2.99, 2.7998, -14.4148, 2.99, 2.7998, -14.4148, 2.99, 6.1201, -12.6326, 2.99, 6.1201, -14.4148, 2.99, 0.15, -12.6326, 2.99, 2.3015, -12.6326, 2.99, 0.15, -14.4148, 2.99, 0.15, -14.4148, 2.99, 2.3015, -12.6326, 2.99, 2.3015) @@ -20,12 +19,12 @@ data = PackedVector3Array(-5.0056, -10.4823, 1.0062, -3.0056, -10.4823, -0.9939, [sub_resource type="BoxShape3D" id="BoxShape3D_73kf5"] size = Vector3(28, 6, 48) -[sub_resource type="PlaneMesh" id="PlaneMesh_gd85l"] -size = Vector2(34, 54) +[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_14xap"] +albedo_color = Color(0, 0, 0, 1) -[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_7j570"] -albedo_texture = ExtResource("7_kc65f") -texture_filter = 0 +[sub_resource type="PlaneMesh" id="PlaneMesh_41mai"] +material = SubResource("StandardMaterial3D_14xap") +size = Vector2(37, 57) [sub_resource type="Curve" id="Curve_18wua"] _limits = [-2.0, 2.0, 0.0, 1.0] @@ -65,27 +64,29 @@ subdivide_depth = 1 [node name="Water Room B" type="Node3D"] script = ExtResource("1_h7qp4") -[node name="A2 Water Room" parent="." instance=ExtResource("2_d5u83")] +[node name="Model" type="Node3D" parent="."] + +[node name="A2 Water Room" parent="Model" instance=ExtResource("2_d5u83")] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -36.5834, 0, 0.430862) -[node name="Collision" type="Node3D" parent="."] +[node name="Collisions" type="Node3D" parent="."] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -0.0234127, 2.02626, 0) -[node name="StaticBody3D" type="StaticBody3D" parent="Collision"] +[node name="StaticBody3D" type="StaticBody3D" parent="Collisions"] -[node name="CollisionShape3D" type="CollisionShape3D" parent="Collision/StaticBody3D"] +[node name="CollisionShape3D" type="CollisionShape3D" parent="Collisions/StaticBody3D"] transform = Transform3D(1.12835, 0, 0, 0, 1, 0, 0, 0, 1.33054, -0.990797, 2.9421, -0.227201) shape = SubResource("ConcavePolygonShape3D_d0ika") -[node name="CollisionShape3D2" type="CollisionShape3D" parent="Collision/StaticBody3D"] +[node name="CollisionShape3D2" type="CollisionShape3D" parent="Collisions/StaticBody3D"] transform = Transform3D(1.07242, 0, 0, 0, 3.93071, 0, 0, 0, 1.07184, -0.260063, 2.42924, 1.25319) shape = SubResource("ConcavePolygonShape3D_18wua") -[node name="CollisionShape3D3" type="CollisionShape3D" parent="Collision/StaticBody3D"] +[node name="CollisionShape3D3" type="CollisionShape3D" parent="Collisions/StaticBody3D"] transform = Transform3D(0, 0.875002, 0, 0, 0, -0.875002, -1.22146, 0, 0, -0.0171394, -1.15776, 10.5747) shape = SubResource("ConcavePolygonShape3D_d5u83") -[node name="CollisionShape3D4" type="CollisionShape3D" parent="Collision/StaticBody3D"] +[node name="CollisionShape3D4" type="CollisionShape3D" parent="Collisions/StaticBody3D"] transform = Transform3D(0, 0.875002, 0, 0, 0, -0.875002, -1.22146, 0, 0, -0.0171394, -1.15776, -10.0324) shape = SubResource("ConcavePolygonShape3D_kc65f") @@ -126,35 +127,18 @@ collision_mask = 10 transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0.04566, -10.6408, -1.19209e-07) shape = SubResource("BoxShape3D_73kf5") -[node name="Minimap" type="Node3D" parent="."] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -0.265738, 0, 0.994221) - -[node name="Minimap" type="MeshInstance3D" parent="Minimap"] +[node name="MinimapShadow" type="Node3D" parent="Room"] unique_name_in_owner = true -visible = false -mesh = SubResource("PlaneMesh_gd85l") -skeleton = NodePath("") -surface_material_override/0 = SubResource("StandardMaterial3D_7j570") -[node name="GPUParticles3D2" type="GPUParticles3D" parent="."] -transform = Transform3D(0.804, 0, 0, 0, 0.247, 0, 0, 0, 1.267, -0.599395, 5.23328, 0.999428) -amount = 20 -lifetime = 41.19 -local_coords = true -process_material = SubResource("ParticleProcessMaterial_d5u83") -draw_pass_1 = SubResource("QuadMesh_kc65f") +[node name="MeshInstance3D" type="MeshInstance3D" parent="Room/MinimapShadow"] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -0.708975, -4.1296, 0.485024) +layers = 2 +sorting_offset = 100.0 +mesh = SubResource("PlaneMesh_41mai") -[node name="FogVolume" type="FogVolume" parent="."] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 8.5, 10) -size = Vector3(6, 5, 8) +[node name="Lights" type="Node3D" parent="."] -[node name="FogVolume2" type="FogVolume" parent="."] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 8.5, -10) -size = Vector3(6, 5, 8) - -[node name="Lighting" type="Node3D" parent="."] - -[node name="OmniLight3D7" type="OmniLight3D" parent="Lighting"] +[node name="OmniLight3D7" type="OmniLight3D" parent="Lights"] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 4, -10) light_color = Color(0.7296, 0.9024, 0.96, 1) shadow_enabled = true @@ -162,7 +146,7 @@ shadow_blur = 3.37 omni_range = 3.747 omni_attenuation = -0.85 -[node name="OmniLight3D8" type="OmniLight3D" parent="Lighting"] +[node name="OmniLight3D8" type="OmniLight3D" parent="Lights"] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 4, 10.1454) light_color = Color(0.7296, 0.9024, 0.96, 1) shadow_enabled = true @@ -170,7 +154,7 @@ shadow_blur = 3.37 omni_range = 3.747 omni_attenuation = -0.85 -[node name="OmniLight3D" type="OmniLight3D" parent="Lighting"] +[node name="OmniLight3D" type="OmniLight3D" parent="Lights"] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -8.59067, 4.83975, 20.4279) light_color = Color(0.7296, 0.9024, 0.96, 1) light_energy = 4.956 @@ -180,7 +164,7 @@ shadow_blur = 3.37 omni_range = 20.0 omni_attenuation = 1.231 -[node name="OmniLight3D2" type="OmniLight3D" parent="Lighting"] +[node name="OmniLight3D2" type="OmniLight3D" parent="Lights"] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 10.8951, 4.97055, 16.5391) light_color = Color(0.7296, 0.9024, 0.96, 1) light_energy = 4.956 @@ -190,7 +174,7 @@ shadow_blur = 3.37 omni_range = 20.0 omni_attenuation = 1.231 -[node name="OmniLight3D5" type="OmniLight3D" parent="Lighting"] +[node name="OmniLight3D5" type="OmniLight3D" parent="Lights"] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -6.45265, 5.08546, 1.25865) light_color = Color(0.7296, 0.9024, 0.96, 1) light_energy = 2.387 @@ -200,7 +184,7 @@ shadow_blur = 3.37 omni_range = 20.0 omni_attenuation = 1.231 -[node name="OmniLight3D6" type="OmniLight3D" parent="Lighting"] +[node name="OmniLight3D6" type="OmniLight3D" parent="Lights"] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 7.09441, 3.92746, 1.22373) light_color = Color(0.7296, 0.9024, 0.96, 1) light_energy = 2.387 @@ -210,7 +194,7 @@ shadow_blur = 3.37 omni_range = 20.0 omni_attenuation = 1.231 -[node name="OmniLight3D3" type="OmniLight3D" parent="Lighting"] +[node name="OmniLight3D3" type="OmniLight3D" parent="Lights"] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -11.0242, 4.66436, -21.4101) light_color = Color(0.7296, 0.9024, 0.96, 1) light_energy = 4.956 @@ -220,7 +204,7 @@ shadow_blur = 3.37 omni_range = 20.0 omni_attenuation = 1.231 -[node name="OmniLight3D4" type="OmniLight3D" parent="Lighting"] +[node name="OmniLight3D4" type="OmniLight3D" parent="Lights"] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 11.9976, 5.00923, -21.4946) light_color = Color(0.7296, 0.9024, 0.96, 1) light_energy = 4.956 @@ -230,7 +214,7 @@ shadow_blur = 3.37 omni_range = 20.0 omni_attenuation = 1.231 -[node name="SpotLight3D" type="SpotLight3D" parent="Lighting"] +[node name="SpotLight3D" type="SpotLight3D" parent="Lights"] transform = Transform3D(1, 0, 0, 0, -4.37114e-08, 1, 0, -1, -4.37114e-08, 0, 6, -10) light_color = Color(0.7296, 0.9024, 0.96, 1) light_energy = 10.618 @@ -240,7 +224,7 @@ spot_range = 12.0 spot_attenuation = 0.65 spot_angle = 38.9975 -[node name="SpotLight3D2" type="SpotLight3D" parent="Lighting"] +[node name="SpotLight3D2" type="SpotLight3D" parent="Lights"] transform = Transform3D(1, 0, 0, 0, -4.37114e-08, 1, 0, -1, -4.37114e-08, 0, 7, 11) light_color = Color(0.7296, 0.9024, 0.96, 1) light_energy = 10.618 @@ -249,3 +233,21 @@ shadow_blur = 3.37 spot_range = 12.0 spot_attenuation = 0.65 spot_angle = 38.9975 + +[node name="VFX" type="Node3D" parent="."] + +[node name="GPUParticles3D2" type="GPUParticles3D" parent="VFX"] +transform = Transform3D(0.804, 0, 0, 0, 0.247, 0, 0, 0, 1.267, -0.599395, 5.23328, 0.999428) +amount = 20 +lifetime = 41.19 +local_coords = true +process_material = SubResource("ParticleProcessMaterial_d5u83") +draw_pass_1 = SubResource("QuadMesh_kc65f") + +[node name="FogVolume" type="FogVolume" parent="VFX"] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 8.5, 10) +size = Vector3(6, 5, 8) + +[node name="FogVolume2" type="FogVolume" parent="VFX"] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 8.5, -10) +size = Vector3(6, 5, 8) diff --git a/Zennysoft.Game.Ma/src/map/dungeon/rooms/Set B/28. Long Room B.tscn b/Zennysoft.Game.Ma/src/map/dungeon/rooms/Set B/28. Long Room B.tscn index 5311da7f..bb3c31ca 100644 --- a/Zennysoft.Game.Ma/src/map/dungeon/rooms/Set B/28. Long Room B.tscn +++ b/Zennysoft.Game.Ma/src/map/dungeon/rooms/Set B/28. Long Room B.tscn @@ -1,4 +1,4 @@ -[gd_scene load_steps=18 format=3 uid="uid://b8tiuu3l181ke"] +[gd_scene load_steps=20 format=3 uid="uid://b8tiuu3l181ke"] [ext_resource type="PackedScene" uid="uid://xahptbyj5wfn" path="res://src/map/dungeon/models/Area 2/Longroom/A2-Longroom.glb" id="2_kp5lh"] [ext_resource type="Script" uid="uid://dhollu4j3pynq" path="res://src/map/dungeon/code/MonsterRoom.cs" id="2_oayuk"] @@ -32,6 +32,13 @@ radius = 0.618652 [sub_resource type="BoxShape3D" id="BoxShape3D_w5a3p"] size = Vector3(48, 6, 28) +[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_0611p"] +albedo_color = Color(0, 0, 0, 1) + +[sub_resource type="PlaneMesh" id="PlaneMesh_h44ap"] +material = SubResource("StandardMaterial3D_0611p") +size = Vector2(49, 29) + [sub_resource type="Curve" id="Curve_kp5lh"] _limits = [-2.0, 2.0, 0.0, 1.0] _data = [Vector2(0.00358423, 0.230769), 0.0, 0.0, 0, 0, Vector2(0.982079, -1.03846), 0.0, 0.0, 0, 0] @@ -208,6 +215,15 @@ collision_mask = 10 transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0.04566, -10.6408, -1.19209e-07) shape = SubResource("BoxShape3D_w5a3p") +[node name="MinimapShadow" type="Node3D" parent="Room"] +unique_name_in_owner = true + +[node name="MeshInstance3D" type="MeshInstance3D" parent="Room/MinimapShadow"] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0.020082, -2.09774, 0.0293603) +layers = 2 +sorting_offset = 100.0 +mesh = SubResource("PlaneMesh_h44ap") + [node name="Lights" type="Node3D" parent="."] [node name="OmniLight3D" type="OmniLight3D" parent="Lights"] diff --git a/Zennysoft.Game.Ma/src/map/dungeon/rooms/Set B/29. Column Circle Room.tscn b/Zennysoft.Game.Ma/src/map/dungeon/rooms/Set B/29. Column Circle Room.tscn index 7f2140df..f80fb395 100644 --- a/Zennysoft.Game.Ma/src/map/dungeon/rooms/Set B/29. Column Circle Room.tscn +++ b/Zennysoft.Game.Ma/src/map/dungeon/rooms/Set B/29. Column Circle Room.tscn @@ -1,4 +1,4 @@ -[gd_scene load_steps=12 format=3 uid="uid://5cstpejxygy6"] +[gd_scene load_steps=14 format=3 uid="uid://5cstpejxygy6"] [ext_resource type="Script" uid="uid://dhollu4j3pynq" path="res://src/map/dungeon/code/MonsterRoom.cs" id="2_i2lux"] [ext_resource type="PackedScene" uid="uid://bglktekocmksl" path="res://src/map/dungeon/models/Area 2/CircleColumn/A2-CircleColumn.glb" id="2_nqsfp"] @@ -13,6 +13,13 @@ size = Vector3(1.49561, 4.7276, 1.23734) [sub_resource type="BoxShape3D" id="BoxShape3D_6sers"] size = Vector3(20, 6, 20) +[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_k267b"] +albedo_color = Color(0, 0, 0, 1) + +[sub_resource type="PlaneMesh" id="PlaneMesh_icta1"] +material = SubResource("StandardMaterial3D_k267b") +size = Vector2(21, 21) + [sub_resource type="Curve" id="Curve_nqsfp"] _limits = [-2.0, 2.0, 0.0, 1.0] _data = [Vector2(0.00358423, 0.230769), 0.0, 0.0, 0, 0, Vector2(0.982079, -1.03846), 0.0, 0.0, 0, 0] @@ -51,96 +58,98 @@ subdivide_depth = 1 [node name="Column Circle Room" type="Node3D"] script = ExtResource("2_i2lux") -[node name="A2-CircleColumn" parent="." instance=ExtResource("2_nqsfp")] +[node name="Model" type="Node3D" parent="."] -[node name="Collision" type="Node3D" parent="."] +[node name="A2-CircleColumn" parent="Model" instance=ExtResource("2_nqsfp")] + +[node name="Collisions" type="Node3D" parent="."] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 2, 0) -[node name="StaticBody3D" type="StaticBody3D" parent="Collision"] +[node name="StaticBody3D" type="StaticBody3D" parent="Collisions"] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, -1.43295, 2.95279) -[node name="CollisionShape3D" type="CollisionShape3D" parent="Collision/StaticBody3D"] +[node name="CollisionShape3D" type="CollisionShape3D" parent="Collisions/StaticBody3D"] shape = SubResource("ConcavePolygonShape3D_jpe4o") -[node name="StaticBody3D2" type="StaticBody3D" parent="Collision"] +[node name="StaticBody3D2" type="StaticBody3D" parent="Collisions"] -[node name="CollisionShape3D" type="CollisionShape3D" parent="Collision/StaticBody3D2"] +[node name="CollisionShape3D" type="CollisionShape3D" parent="Collisions/StaticBody3D2"] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 3.05794, 0.306868, -6.20794) shape = SubResource("BoxShape3D_jpe4o") -[node name="CollisionShape3D2" type="CollisionShape3D" parent="Collision/StaticBody3D2"] +[node name="CollisionShape3D2" type="CollisionShape3D" parent="Collisions/StaticBody3D2"] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 4.49197, 0.306868, -5.33891) shape = SubResource("BoxShape3D_jpe4o") -[node name="CollisionShape3D3" type="CollisionShape3D" parent="Collision/StaticBody3D2"] +[node name="CollisionShape3D3" type="CollisionShape3D" parent="Collisions/StaticBody3D2"] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 5.67449, 0.306868, -4.05297) shape = SubResource("BoxShape3D_jpe4o") -[node name="CollisionShape3D4" type="CollisionShape3D" parent="Collision/StaticBody3D2"] +[node name="CollisionShape3D4" type="CollisionShape3D" parent="Collisions/StaticBody3D2"] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 6.53517, 0.306868, -2.45604) shape = SubResource("BoxShape3D_jpe4o") -[node name="CollisionShape3D5" type="CollisionShape3D" parent="Collision/StaticBody3D2"] +[node name="CollisionShape3D5" type="CollisionShape3D" parent="Collisions/StaticBody3D2"] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 6.95265, 0.306868, -0.703285) shape = SubResource("BoxShape3D_jpe4o") -[node name="CollisionShape3D6" type="CollisionShape3D" parent="Collision/StaticBody3D2"] +[node name="CollisionShape3D6" type="CollisionShape3D" parent="Collisions/StaticBody3D2"] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 6.79619, 0.306868, 0.961584) shape = SubResource("BoxShape3D_jpe4o") -[node name="CollisionShape3D7" type="CollisionShape3D" parent="Collision/StaticBody3D2"] +[node name="CollisionShape3D7" type="CollisionShape3D" parent="Collisions/StaticBody3D2"] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 6.34225, 0.306868, 2.5451) shape = SubResource("BoxShape3D_jpe4o") -[node name="CollisionShape3D8" type="CollisionShape3D" parent="Collision/StaticBody3D2"] +[node name="CollisionShape3D8" type="CollisionShape3D" parent="Collisions/StaticBody3D2"] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 5.62439, 0.306868, 4.08638) shape = SubResource("BoxShape3D_jpe4o") -[node name="CollisionShape3D9" type="CollisionShape3D" parent="Collision/StaticBody3D2"] +[node name="CollisionShape3D9" type="CollisionShape3D" parent="Collisions/StaticBody3D2"] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 4.51874, 0.306868, 5.25444) shape = SubResource("BoxShape3D_jpe4o") -[node name="CollisionShape3D10" type="CollisionShape3D" parent="Collision/StaticBody3D2"] +[node name="CollisionShape3D10" type="CollisionShape3D" parent="Collisions/StaticBody3D2"] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 3.0613, 0.306868, 6.18041) shape = SubResource("BoxShape3D_jpe4o") -[node name="CollisionShape3D11" type="CollisionShape3D" parent="Collision/StaticBody3D2"] +[node name="CollisionShape3D11" type="CollisionShape3D" parent="Collisions/StaticBody3D2"] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -3.15378, 0.306868, 6.18041) shape = SubResource("BoxShape3D_jpe4o") -[node name="CollisionShape3D12" type="CollisionShape3D" parent="Collision/StaticBody3D2"] +[node name="CollisionShape3D12" type="CollisionShape3D" parent="Collisions/StaticBody3D2"] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -4.62798, 0.306868, 5.3093) shape = SubResource("BoxShape3D_jpe4o") -[node name="CollisionShape3D13" type="CollisionShape3D" parent="Collision/StaticBody3D2"] +[node name="CollisionShape3D13" type="CollisionShape3D" parent="Collisions/StaticBody3D2"] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -5.73363, 0.306868, 4.03613) shape = SubResource("BoxShape3D_jpe4o") -[node name="CollisionShape3D14" type="CollisionShape3D" parent="Collision/StaticBody3D2"] +[node name="CollisionShape3D14" type="CollisionShape3D" parent="Collisions/StaticBody3D2"] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -6.45398, 0.306868, 2.51167) shape = SubResource("BoxShape3D_jpe4o") -[node name="CollisionShape3D15" type="CollisionShape3D" parent="Collision/StaticBody3D2"] +[node name="CollisionShape3D15" type="CollisionShape3D" parent="Collisions/StaticBody3D2"] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -6.88954, 0.306868, 0.920209) shape = SubResource("BoxShape3D_jpe4o") -[node name="CollisionShape3D16" type="CollisionShape3D" parent="Collision/StaticBody3D2"] +[node name="CollisionShape3D16" type="CollisionShape3D" parent="Collisions/StaticBody3D2"] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -7.04031, 0.306868, -0.738264) shape = SubResource("BoxShape3D_jpe4o") -[node name="CollisionShape3D17" type="CollisionShape3D" parent="Collision/StaticBody3D2"] +[node name="CollisionShape3D17" type="CollisionShape3D" parent="Collisions/StaticBody3D2"] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -6.63825, 0.306868, -2.4805) shape = SubResource("BoxShape3D_jpe4o") -[node name="CollisionShape3D18" type="CollisionShape3D" parent="Collision/StaticBody3D2"] +[node name="CollisionShape3D18" type="CollisionShape3D" parent="Collisions/StaticBody3D2"] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -5.75039, 0.306868, -4.10546) shape = SubResource("BoxShape3D_jpe4o") -[node name="CollisionShape3D19" type="CollisionShape3D" parent="Collision/StaticBody3D2"] +[node name="CollisionShape3D19" type="CollisionShape3D" parent="Collisions/StaticBody3D2"] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -4.59448, 0.306868, -5.39539) shape = SubResource("BoxShape3D_jpe4o") -[node name="CollisionShape3D20" type="CollisionShape3D" parent="Collision/StaticBody3D2"] +[node name="CollisionShape3D20" type="CollisionShape3D" parent="Collisions/StaticBody3D2"] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -3.13703, 0.306868, -6.24975) shape = SubResource("BoxShape3D_jpe4o") @@ -181,7 +190,27 @@ collision_mask = 10 transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0.04566, -10.6408, -1.19209e-07) shape = SubResource("BoxShape3D_6sers") -[node name="GPUParticles3D2" type="GPUParticles3D" parent="."] +[node name="MinimapShadow" type="Node3D" parent="Room"] +unique_name_in_owner = true + +[node name="MeshInstance3D" type="MeshInstance3D" parent="Room/MinimapShadow"] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0.020082, -2.09774, 0.0293603) +layers = 2 +sorting_offset = 100.0 +mesh = SubResource("PlaneMesh_icta1") + +[node name="Lights" type="Node3D" parent="."] + +[node name="OmniLight3D" type="OmniLight3D" parent="Lights"] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -0.082139, 4.86582, -0.0836668) +light_energy = 4.5 +shadow_enabled = true +shadow_blur = 0.373 +omni_range = 13.0 + +[node name="VFX" type="Node3D" parent="."] + +[node name="GPUParticles3D2" type="GPUParticles3D" parent="VFX"] transform = Transform3D(0.499, 0, 0, 0, 0.307, 0, 0, 0, 0.507, 0.281, 6.094, -0.438) amount = 20 lifetime = 41.19 @@ -189,18 +218,11 @@ local_coords = true process_material = SubResource("ParticleProcessMaterial_6drtk") draw_pass_1 = SubResource("QuadMesh_oelme") -[node name="OmniLight3D" type="OmniLight3D" parent="."] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -0.082139, 4.86582, -0.0836668) -light_energy = 4.5 -shadow_enabled = true -shadow_blur = 0.373 -omni_range = 13.0 - -[node name="FogVolume" type="FogVolume" parent="."] +[node name="FogVolume" type="FogVolume" parent="VFX"] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0.279114, 11.441, -0.138376) size = Vector3(20.0836, 8.33643, 19.1257) -[node name="FogVolume" type="FogVolume" parent="FogVolume"] +[node name="FogVolume" type="FogVolume" parent="VFX/FogVolume"] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -0.353651, -5.22283, 0.0979897) size = Vector3(3.38, 2.69, 3.08) shape = 2 diff --git a/Zennysoft.Game.Ma/src/map/dungeon/rooms/Set B/30. Void Room.tscn b/Zennysoft.Game.Ma/src/map/dungeon/rooms/Set B/30. Void Room.tscn index 928399ae..b6d62d65 100644 --- a/Zennysoft.Game.Ma/src/map/dungeon/rooms/Set B/30. Void Room.tscn +++ b/Zennysoft.Game.Ma/src/map/dungeon/rooms/Set B/30. Void Room.tscn @@ -369,6 +369,9 @@ debug_color = Color(1, 1, 1, 0.42) [node name="Room" type="Node3D" parent="."] +[node name="MinimapShadow" type="Node3D" parent="Room"] +unique_name_in_owner = true + [node name="Lights" type="Node3D" parent="."] [node name="OmniLight3D" type="OmniLight3D" parent="Lights"] diff --git a/Zennysoft.Game.Ma/src/map/dungeon/rooms/Set B/31. Dismantled Saint's Room.tscn b/Zennysoft.Game.Ma/src/map/dungeon/rooms/Set B/31. Dismantled Saint's Room.tscn index 7a285cab..37d06a8c 100644 --- a/Zennysoft.Game.Ma/src/map/dungeon/rooms/Set B/31. Dismantled Saint's Room.tscn +++ b/Zennysoft.Game.Ma/src/map/dungeon/rooms/Set B/31. Dismantled Saint's Room.tscn @@ -1,4 +1,4 @@ -[gd_scene load_steps=30 format=3 uid="uid://b1oayub1dt5ag"] +[gd_scene load_steps=32 format=3 uid="uid://b1oayub1dt5ag"] [ext_resource type="Script" uid="uid://bccyfmj8ikewh" path="res://src/map/dungeon/code/SpecialRoom.cs" id="1_2ejwg"] [ext_resource type="PackedScene" uid="uid://cglb4comfsrkq" path="res://src/map/dungeon/models/Area 2/Dismantled/A2-Dismantled.glb" id="2_kepl6"] @@ -39,28 +39,12 @@ size = Vector3(36.9648, 0.150879, 19.9662) [sub_resource type="BoxShape3D" id="BoxShape3D_3f3ac"] size = Vector3(36, 20, 20) -[sub_resource type="ParticleProcessMaterial" id="ParticleProcessMaterial_kepl6"] -particle_flag_rotate_y = true -emission_shape_scale = Vector3(3.24, 0.365, 4.49) -emission_shape = 3 -emission_box_extents = Vector3(1, 1, 1) -angle_min = -180.0 -angle_max = 180.0 -gravity = Vector3(0, -0.655, 0) -radial_accel_min = -1.5 -radial_accel_max = 1.5 -turbulence_noise_speed = Vector3(0, 0.78, 0) +[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_ohig7"] +albedo_color = Color(0, 0, 0, 1) -[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_636bv"] -transparency = 4 -cull_mode = 2 -shading_mode = 0 -albedo_texture = ExtResource("4_2ejwg") -texture_filter = 0 - -[sub_resource type="QuadMesh" id="QuadMesh_3f3ac"] -material = SubResource("StandardMaterial3D_636bv") -size = Vector2(0.15, 0.15) +[sub_resource type="PlaneMesh" id="PlaneMesh_2ejwg"] +material = SubResource("StandardMaterial3D_ohig7") +size = Vector2(38, 21) [sub_resource type="Gradient" id="Gradient_kepl6"] @@ -87,6 +71,47 @@ shader_parameter/emission_energy = 0.33 shader_parameter/uv1_scale = Vector3(5, 0, 0) shader_parameter/uv1_offset = Vector3(0, 1, 0) +[sub_resource type="Environment" id="Environment_fhmuq"] +background_mode = 1 +background_color = Color(0.37792, 0.377918, 0.377919, 1) +ambient_light_energy = 0.0 +sdfgi_enabled = true +sdfgi_use_occlusion = true +sdfgi_y_scale = 0 +glow_enabled = true +glow_levels/1 = 1.0 +glow_levels/2 = 1.0 +glow_levels/3 = 0.0 +glow_strength = 0.54 +glow_bloom = 1.0 +glow_blend_mode = 0 +fog_enabled = true +volumetric_fog_enabled = true +volumetric_fog_density = 0.02 + +[sub_resource type="ParticleProcessMaterial" id="ParticleProcessMaterial_kepl6"] +particle_flag_rotate_y = true +emission_shape_scale = Vector3(3.24, 0.365, 4.49) +emission_shape = 3 +emission_box_extents = Vector3(1, 1, 1) +angle_min = -180.0 +angle_max = 180.0 +gravity = Vector3(0, -0.655, 0) +radial_accel_min = -1.5 +radial_accel_max = 1.5 +turbulence_noise_speed = Vector3(0, 0.78, 0) + +[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_636bv"] +transparency = 4 +cull_mode = 2 +shading_mode = 0 +albedo_texture = ExtResource("4_2ejwg") +texture_filter = 0 + +[sub_resource type="QuadMesh" id="QuadMesh_3f3ac"] +material = SubResource("StandardMaterial3D_636bv") +size = Vector2(0.15, 0.15) + [sub_resource type="Curve" id="Curve_cfmpu"] _limits = [-2.0, 2.0, 0.0, 1.0] _data = [Vector2(0.00358423, 0.230769), 0.0, 0.0, 0, 0, Vector2(0.982079, -1.03846), 0.0, 0.0, 0, 0] @@ -122,89 +147,73 @@ size = Vector2(0.1, 0.1) subdivide_width = 1 subdivide_depth = 1 -[sub_resource type="Environment" id="Environment_fhmuq"] -background_mode = 1 -background_color = Color(0.37792, 0.377918, 0.377919, 1) -ambient_light_energy = 0.0 -sdfgi_enabled = true -sdfgi_use_occlusion = true -sdfgi_y_scale = 0 -glow_enabled = true -glow_levels/1 = 1.0 -glow_levels/2 = 1.0 -glow_levels/3 = 0.0 -glow_strength = 0.54 -glow_bloom = 1.0 -glow_blend_mode = 0 -fog_enabled = true -volumetric_fog_enabled = true -volumetric_fog_density = 0.02 - [node name="Dismantled Saint\'s Room" type="Node3D"] script = ExtResource("1_2ejwg") -[node name="A2-Dismantled" parent="." instance=ExtResource("2_kepl6")] +[node name="Model" type="Node3D" parent="."] + +[node name="A2-Dismantled" parent="Model" instance=ExtResource("2_kepl6")] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0.473629, 0.0699916, -8.3828) -[node name="Collision" type="Node3D" parent="."] +[node name="Collisions" type="Node3D" parent="."] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, -0.681246, -0.227311) -[node name="StaticBody3D2" type="StaticBody3D" parent="Collision"] +[node name="StaticBody3D2" type="StaticBody3D" parent="Collisions"] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -15.8912, -1.17153, -8.38958) -[node name="CollisionShape3D" type="CollisionShape3D" parent="Collision/StaticBody3D2"] +[node name="CollisionShape3D" type="CollisionShape3D" parent="Collisions/StaticBody3D2"] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 6.78796, 2.63444, 8.5445) shape = SubResource("CylinderShape3D_e2vx2") -[node name="CollisionShape3D2" type="CollisionShape3D" parent="Collision/StaticBody3D2"] +[node name="CollisionShape3D2" type="CollisionShape3D" parent="Collisions/StaticBody3D2"] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 7.08601, 1.14867, 1.9198) shape = SubResource("BoxShape3D_e2vx2") -[node name="CollisionShape3D3" type="CollisionShape3D" parent="Collision/StaticBody3D2"] +[node name="CollisionShape3D3" type="CollisionShape3D" parent="Collisions/StaticBody3D2"] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 15.9958, 9.23235, -1.82567) shape = SubResource("BoxShape3D_2ejwg") -[node name="CollisionShape3D4" type="CollisionShape3D" parent="Collision/StaticBody3D2"] +[node name="CollisionShape3D4" type="CollisionShape3D" parent="Collisions/StaticBody3D2"] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 15.9958, 9.23235, 19.0671) shape = SubResource("BoxShape3D_2ejwg") -[node name="CollisionShape3D6" type="CollisionShape3D" parent="Collision/StaticBody3D2"] +[node name="CollisionShape3D6" type="CollisionShape3D" parent="Collisions/StaticBody3D2"] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 27.9896, 9.23235, 17.0853) shape = SubResource("BoxShape3D_thkk8") -[node name="CollisionShape3D7" type="CollisionShape3D" parent="Collision/StaticBody3D2"] +[node name="CollisionShape3D7" type="CollisionShape3D" parent="Collisions/StaticBody3D2"] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 27.9896, 9.23235, 0.248703) shape = SubResource("BoxShape3D_thkk8") -[node name="CollisionShape3D8" type="CollisionShape3D" parent="Collision/StaticBody3D2"] +[node name="CollisionShape3D8" type="CollisionShape3D" parent="Collisions/StaticBody3D2"] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 33.6385, 9.23235, 2.61584) shape = SubResource("BoxShape3D_x0rdp") -[node name="CollisionShape3D9" type="CollisionShape3D" parent="Collision/StaticBody3D2"] +[node name="CollisionShape3D9" type="CollisionShape3D" parent="Collisions/StaticBody3D2"] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 33.7848, 9.23235, 14.5931) shape = SubResource("BoxShape3D_x0rdp") -[node name="CollisionShape3D5" type="CollisionShape3D" parent="Collision/StaticBody3D2"] +[node name="CollisionShape3D5" type="CollisionShape3D" parent="Collisions/StaticBody3D2"] transform = Transform3D(-4.37114e-08, 0, 1, 0, 1, 0, -1, 0, -4.37114e-08, -2.50863, 9.23235, 8.66161) shape = SubResource("BoxShape3D_kepl6") -[node name="CollisionShape3D10" type="CollisionShape3D" parent="Collision/StaticBody3D2"] +[node name="CollisionShape3D10" type="CollisionShape3D" parent="Collisions/StaticBody3D2"] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 16.3704, 5.19147, 14.6238) shape = SubResource("CylinderShape3D_2ejwg") -[node name="CollisionShape3D11" type="CollisionShape3D" parent="Collision/StaticBody3D2"] +[node name="CollisionShape3D11" type="CollisionShape3D" parent="Collisions/StaticBody3D2"] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 16.3704, 5.19147, 2.53433) shape = SubResource("CylinderShape3D_2ejwg") -[node name="CollisionShape3D37" type="CollisionShape3D" parent="Collision/StaticBody3D2"] +[node name="CollisionShape3D37" type="CollisionShape3D" parent="Collisions/StaticBody3D2"] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 33.5185, 3.6704, 6.01001) shape = SubResource("CylinderShape3D_ohig7") -[node name="CollisionShape3D38" type="CollisionShape3D" parent="Collision/StaticBody3D2"] +[node name="CollisionShape3D38" type="CollisionShape3D" parent="Collisions/StaticBody3D2"] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 33.5185, 3.6704, 11.2101) shape = SubResource("CylinderShape3D_ohig7") -[node name="CollisionShape3D12" type="CollisionShape3D" parent="Collision/StaticBody3D2"] +[node name="CollisionShape3D12" type="CollisionShape3D" parent="Collisions/StaticBody3D2"] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 15.4905, 1.8692, 8.5882) shape = SubResource("BoxShape3D_ohig7") @@ -221,7 +230,45 @@ collision_mask = 10 transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0.04566, -3.8538, -1.19209e-07) shape = SubResource("BoxShape3D_3f3ac") -[node name="GPUParticles3D" type="GPUParticles3D" parent="."] +[node name="MinimapShadow" type="Node3D" parent="Room"] +unique_name_in_owner = true + +[node name="MeshInstance3D" type="MeshInstance3D" parent="Room/MinimapShadow"] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -0.288008, -2.09774, 0.214209) +layers = 2 +sorting_offset = 100.0 +mesh = SubResource("PlaneMesh_2ejwg") + +[node name="Lights" type="Node3D" parent="."] + +[node name="Altar Spotlight" type="SpotLight3D" parent="Lights"] +transform = Transform3D(-0.883843, 0.456943, -0.100124, -0.0780599, 0.0669684, 0.994697, 0.461225, 0.886971, -0.0235206, -11.6467, 25.4356, -0.433904) +light_energy = 0.273 +spot_range = 30.0348 +spot_attenuation = -1.2 +spot_angle = 11.147 + +[node name="Altar Godrays" type="CSGCylinder3D" parent="Lights"] +transform = Transform3D(-5.3359, -1.66964, -19.3952, -1.21993, 20.0997, -1.39465, 19.4287, 0.803518, -5.41428, -11.0653, 16.8333, 0.798496) +radius = 0.0800781 +height = 1.69762 +cone = true +material = SubResource("ShaderMaterial_x0rdp") + +[node name="OmniLight3D" type="OmniLight3D" parent="Lights"] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -5.92014, 4.69921, -0.310978) +light_energy = 1.243 +shadow_enabled = true +shadow_blur = 1.24 +omni_range = 7.81036 +omni_attenuation = 1.842 + +[node name="WorldEnvironment" type="WorldEnvironment" parent="Lights"] +environment = SubResource("Environment_fhmuq") + +[node name="VFX" type="Node3D" parent="."] + +[node name="GPUParticles3D" type="GPUParticles3D" parent="VFX"] transform = Transform3D(1, 0, 0, 0, 3.515, 0, 0, 0, 0.71, -10.0284, 20.0435, -0.129559) amount = 200 lifetime = 25.0 @@ -231,35 +278,10 @@ randomness = 0.5 process_material = SubResource("ParticleProcessMaterial_kepl6") draw_pass_1 = SubResource("QuadMesh_3f3ac") -[node name="Altar Spotlight" type="SpotLight3D" parent="."] -transform = Transform3D(-0.883843, 0.456943, -0.100124, -0.0780599, 0.0669684, 0.994697, 0.461225, 0.886971, -0.0235206, -11.6467, 25.4356, -0.433904) -light_energy = 0.273 -spot_range = 30.0348 -spot_attenuation = -1.2 -spot_angle = 11.147 - -[node name="Altar Godrays" type="CSGCylinder3D" parent="."] -transform = Transform3D(-5.3359, -1.66964, -19.3952, -1.21993, 20.0997, -1.39465, 19.4287, 0.803518, -5.41428, -11.0653, 16.8333, 0.798496) -radius = 0.0800781 -height = 1.69762 -cone = true -material = SubResource("ShaderMaterial_x0rdp") - -[node name="GPUParticles3D2" type="GPUParticles3D" parent="."] +[node name="GPUParticles3D2" type="GPUParticles3D" parent="VFX"] transform = Transform3D(0.864, 0, 0, 0, 0.477, 0, 0, 0, 0.542, 0.361, 10.083, -0.666) amount = 20 lifetime = 41.19 local_coords = true process_material = SubResource("ParticleProcessMaterial_twy7h") draw_pass_1 = SubResource("QuadMesh_tni1f") - -[node name="WorldEnvironment" type="WorldEnvironment" parent="."] -environment = SubResource("Environment_fhmuq") - -[node name="OmniLight3D" type="OmniLight3D" parent="."] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -5.92014, 4.69921, -0.310978) -light_energy = 1.243 -shadow_enabled = true -shadow_blur = 1.24 -omni_range = 7.81036 -omni_attenuation = 1.842 diff --git a/Zennysoft.Game.Ma/src/map/dungeon/rooms/Set B/32. Proscenium's Room.tscn b/Zennysoft.Game.Ma/src/map/dungeon/rooms/Set B/32. Proscenium's Room.tscn index f0598270..0e05efa9 100644 --- a/Zennysoft.Game.Ma/src/map/dungeon/rooms/Set B/32. Proscenium's Room.tscn +++ b/Zennysoft.Game.Ma/src/map/dungeon/rooms/Set B/32. Proscenium's Room.tscn @@ -1,4 +1,4 @@ -[gd_scene load_steps=26 format=3 uid="uid://cuau7xgx3rkxu"] +[gd_scene load_steps=28 format=3 uid="uid://cuau7xgx3rkxu"] [ext_resource type="Script" uid="uid://bccyfmj8ikewh" path="res://src/map/dungeon/code/SpecialRoom.cs" id="1_w3a78"] [ext_resource type="PackedScene" uid="uid://dekf66gxvufrt" path="res://src/map/dungeon/models/Area 2/Proscenium/A2-Proscenium.glb" id="2_vbs5p"] @@ -52,6 +52,13 @@ texture_filter = 0 [sub_resource type="BoxShape3D" id="BoxShape3D_nu4bg"] size = Vector3(36, 6, 28) +[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_wpyu0"] +albedo_color = Color(0, 0, 0, 1) + +[sub_resource type="PlaneMesh" id="PlaneMesh_w3a78"] +material = SubResource("StandardMaterial3D_wpyu0") +size = Vector2(67, 31) + [sub_resource type="Curve" id="Curve_vbs5p"] _limits = [-2.0, 2.0, 0.0, 1.0] _data = [Vector2(0.00358423, 0.230769), 0.0, 0.0, 0, 0, Vector2(0.982079, -1.03846), 0.0, 0.0, 0, 0] @@ -227,6 +234,15 @@ collision_mask = 10 transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0.04566, -10.6408, -1.19209e-07) shape = SubResource("BoxShape3D_nu4bg") +[node name="MinimapShadow" type="Node3D" parent="Room"] +unique_name_in_owner = true + +[node name="MeshInstance3D" type="MeshInstance3D" parent="Room/MinimapShadow"] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -15.0048, -2.09774, 0.0293603) +layers = 2 +sorting_offset = 100.0 +mesh = SubResource("PlaneMesh_w3a78") + [node name="NPC" type="Node3D" parent="."] transform = Transform3D(0.535, 0, 0, 0, 0.535, 0, 0, 0, 0.535, 1.27456, 1.75386, 0) diff --git a/Zennysoft.Game.Ma/src/map/dungeon/rooms/Set B/33. Puer's Room.tscn b/Zennysoft.Game.Ma/src/map/dungeon/rooms/Set B/33. Puer's Room.tscn index 5e3dcb7b..4dac115d 100644 --- a/Zennysoft.Game.Ma/src/map/dungeon/rooms/Set B/33. Puer's Room.tscn +++ b/Zennysoft.Game.Ma/src/map/dungeon/rooms/Set B/33. Puer's Room.tscn @@ -1,4 +1,4 @@ -[gd_scene load_steps=94 format=4 uid="uid://b6akxaacr8jd2"] +[gd_scene load_steps=96 format=4 uid="uid://b6akxaacr8jd2"] [ext_resource type="Script" uid="uid://bccyfmj8ikewh" path="res://src/map/dungeon/code/SpecialRoom.cs" id="1_r0ujh"] [ext_resource type="Texture2D" uid="uid://cjy6hw7ehd6hs" path="res://src/map/dungeon/models/Area 2/Puer/A2-Puer_AREA_2_MAIN_STONE.png" id="2_bhd03"] @@ -1319,6 +1319,13 @@ radius = 0.452637 [sub_resource type="BoxShape3D" id="BoxShape3D_407jo"] size = Vector3(36, 6, 36) +[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_407jo"] +albedo_color = Color(0, 0, 0, 1) + +[sub_resource type="PlaneMesh" id="PlaneMesh_p2jw2"] +material = SubResource("StandardMaterial3D_407jo") +size = Vector2(37, 37) + [sub_resource type="Curve" id="Curve_plnii"] _limits = [-2.0, 2.0, 0.0, 1.0] _data = [Vector2(0.00358423, 0.230769), 0.0, 0.0, 0, 0, Vector2(0.982079, -1.03846), 0.0, 0.0, 0, 0] @@ -1569,7 +1576,6 @@ shape = SubResource("CylinderShape3D_407jo") [node name="Room" type="Node3D" parent="."] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 2, 0) -visible = false [node name="Room" type="Area3D" parent="Room"] unique_name_in_owner = true @@ -1581,6 +1587,15 @@ collision_mask = 10 transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0.04566, -10.6408, -1.19209e-07) shape = SubResource("BoxShape3D_407jo") +[node name="MinimapShadow" type="Node3D" parent="Room"] +unique_name_in_owner = true + +[node name="MeshInstance3D" type="MeshInstance3D" parent="Room/MinimapShadow"] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0.020082, -4.40319, 0.0293603) +layers = 2 +sorting_offset = 100.0 +mesh = SubResource("PlaneMesh_p2jw2") + [node name="NPC" type="Node3D" parent="."] transform = Transform3D(1.28, 0, 0, 0, 1.28, 0, 0, 0, 1.28, 0, 0.486467, 0) diff --git a/Zennysoft.Game.Ma/src/map/dungeon/rooms/Set B/38. Floor Exit B.tscn b/Zennysoft.Game.Ma/src/map/dungeon/rooms/Set B/38. Floor Exit B.tscn index 0c5e3d11..ba3ba86b 100644 --- a/Zennysoft.Game.Ma/src/map/dungeon/rooms/Set B/38. Floor Exit B.tscn +++ b/Zennysoft.Game.Ma/src/map/dungeon/rooms/Set B/38. Floor Exit B.tscn @@ -1,4 +1,4 @@ -[gd_scene load_steps=65 format=3 uid="uid://02v033xrh6xi"] +[gd_scene load_steps=67 format=3 uid="uid://02v033xrh6xi"] [ext_resource type="Script" uid="uid://bd824eigybu51" path="res://src/map/dungeon/code/ExitRoom.cs" id="2_7o05s"] [ext_resource type="PackedScene" uid="uid://bpihpjlg5mcq" path="res://src/map/dungeon/models/Area 2/Exit/A2-Exit.glb" id="2_d13sj"] @@ -32,6 +32,13 @@ size = Vector3(13.496, 20, 17.3486) [sub_resource type="BoxShape3D" id="BoxShape3D_wu8s2"] size = Vector3(15.7098, 10.2039, 7.09571) +[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_k6ywg"] +albedo_color = Color(0, 0, 0, 1) + +[sub_resource type="PlaneMesh" id="PlaneMesh_kx0t3"] +material = SubResource("StandardMaterial3D_k6ywg") +size = Vector2(8, 26) + [sub_resource type="Curve" id="Curve_d13sj"] _limits = [-2.0, 2.0, 0.0, 1.0] _data = [Vector2(0.00358423, 0.230769), 0.0, 0.0, 0, 0, Vector2(0.982079, -1.03846), 0.0, 0.0, 0, 0] @@ -555,6 +562,15 @@ collision_mask = 256 transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0.00295544, 1.56831, 4.23168) shape = SubResource("BoxShape3D_wu8s2") +[node name="MinimapShadow" type="Node3D" parent="Room"] +unique_name_in_owner = true + +[node name="MeshInstance3D" type="MeshInstance3D" parent="Room/MinimapShadow"] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0.020082, -2.55592, 3.41991) +layers = 2 +sorting_offset = 100.0 +mesh = SubResource("PlaneMesh_kx0t3") + [node name="Lights" type="Node3D" parent="."] [node name="OmniLight3D" type="OmniLight3D" parent="Lights"] diff --git a/Zennysoft.Game.Ma/src/map/dungeon/rooms/Set B/39. Gesthemii's Room 2.tscn b/Zennysoft.Game.Ma/src/map/dungeon/rooms/Set B/39. Gesthemii's Room 2.tscn index 954f28df..04cb11bf 100644 --- a/Zennysoft.Game.Ma/src/map/dungeon/rooms/Set B/39. Gesthemii's Room 2.tscn +++ b/Zennysoft.Game.Ma/src/map/dungeon/rooms/Set B/39. Gesthemii's Room 2.tscn @@ -1,4 +1,4 @@ -[gd_scene load_steps=14 format=3 uid="uid://dqppy7sj8pial"] +[gd_scene load_steps=16 format=3 uid="uid://dqppy7sj8pial"] [ext_resource type="PackedScene" uid="uid://bb1cwg2xq5exh" path="res://src/map/dungeon/models/Area 2/Gesthemii/A2-Gesthemii.glb" id="2_bh4f4"] [ext_resource type="Script" uid="uid://dhollu4j3pynq" path="res://src/map/dungeon/code/MonsterRoom.cs" id="2_kprvd"] @@ -18,6 +18,13 @@ data = PackedVector3Array(-1, -1, -0.8333, -1, 1, -1, -1, -1, -1, -1, -1, -0.833 [sub_resource type="BoxShape3D" id="BoxShape3D_43nhx"] size = Vector3(36, 6, 20) +[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_4h6mu"] +albedo_color = Color(0, 0, 0, 1) + +[sub_resource type="PlaneMesh" id="PlaneMesh_2c1i6"] +material = SubResource("StandardMaterial3D_4h6mu") +size = Vector2(37, 21) + [sub_resource type="Curve" id="Curve_bh4f4"] _limits = [-2.0, 2.0, 0.0, 1.0] _data = [Vector2(0.00358423, 0.230769), 0.0, 0.0, 0, 0, Vector2(0.982079, -1.03846), 0.0, 0.0, 0, 0] @@ -103,6 +110,15 @@ collision_mask = 10 transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0.04566, 0.894945, 0) shape = SubResource("BoxShape3D_43nhx") +[node name="MinimapShadow" type="Node3D" parent="Room"] +unique_name_in_owner = true + +[node name="MeshInstance3D" type="MeshInstance3D" parent="Room/MinimapShadow"] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0.020082, -2.55592, 0.00524849) +layers = 2 +sorting_offset = 100.0 +mesh = SubResource("PlaneMesh_2c1i6") + [node name="NPC" type="Node3D" parent="."] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0.569493, 2.38497, 1.51063) diff --git a/Zennysoft.Game.Ma/src/map/dungeon/rooms/Set B/40. Donut Gallery.tscn b/Zennysoft.Game.Ma/src/map/dungeon/rooms/Set B/40. Donut Gallery.tscn index be24d9c4..30713904 100644 --- a/Zennysoft.Game.Ma/src/map/dungeon/rooms/Set B/40. Donut Gallery.tscn +++ b/Zennysoft.Game.Ma/src/map/dungeon/rooms/Set B/40. Donut Gallery.tscn @@ -1,8 +1,15 @@ -[gd_scene load_steps=8 format=3 uid="uid://boonyo0b1q1ad"] +[gd_scene load_steps=10 format=3 uid="uid://boonyo0b1q1ad"] [ext_resource type="PackedScene" uid="uid://bqvkbpfsuu0d4" path="res://src/map/dungeon/models/Area 2/Donut/A2 Donut.glb" id="1_8nndw"] [ext_resource type="Texture2D" uid="uid://dw50ys561j8no" path="res://src/map/assets/DUST_1.png" id="1_ewwkl"] +[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_ewwkl"] +albedo_color = Color(0, 0, 0, 1) + +[sub_resource type="PlaneMesh" id="PlaneMesh_pvs4g"] +material = SubResource("StandardMaterial3D_ewwkl") +size = Vector2(37, 50) + [sub_resource type="Curve" id="Curve_v0m5w"] _limits = [-2.0, 2.0, 0.0, 1.0] _data = [Vector2(0.00358423, 0.230769), 0.0, 0.0, 0, 0, Vector2(0.982079, -1.03846), 0.0, 0.0, 0, 0] @@ -44,6 +51,17 @@ subdivide_depth = 1 [node name="A2 Donut" parent="Model" instance=ExtResource("1_8nndw")] +[node name="Room" type="Node3D" parent="."] + +[node name="MinimapShadow" type="Node3D" parent="Room"] +unique_name_in_owner = true + +[node name="MeshInstance3D" type="MeshInstance3D" parent="Room/MinimapShadow"] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0.020082, -2.55592, -6.40325) +layers = 2 +sorting_offset = 100.0 +mesh = SubResource("PlaneMesh_pvs4g") + [node name="Lights" type="Node3D" parent="."] [node name="OmniLight3D" type="OmniLight3D" parent="Lights"] diff --git a/Zennysoft.Game.Ma/src/map/dungeon/rooms/Set B/41. Circle.tscn b/Zennysoft.Game.Ma/src/map/dungeon/rooms/Set B/41. Circle.tscn index e65c1126..1214bac2 100644 --- a/Zennysoft.Game.Ma/src/map/dungeon/rooms/Set B/41. Circle.tscn +++ b/Zennysoft.Game.Ma/src/map/dungeon/rooms/Set B/41. Circle.tscn @@ -1,4 +1,4 @@ -[gd_scene load_steps=5 format=3 uid="uid://cgp60ood1orpr"] +[gd_scene load_steps=7 format=3 uid="uid://cgp60ood1orpr"] [ext_resource type="Script" uid="uid://dhollu4j3pynq" path="res://src/map/dungeon/code/MonsterRoom.cs" id="1_e3spp"] [ext_resource type="PackedScene" uid="uid://u3h6q7df6h4y" path="res://src/map/dungeon/models/Area 2/Circle/A2 Circular Water Room.glb" id="1_wyllr"] @@ -9,6 +9,13 @@ data = PackedVector3Array(-1, -0.4965, 0.4905, -1, 0.04, 0.4905, -1, 0.04, -0.47 [sub_resource type="BoxShape3D" id="BoxShape3D_a5ll2"] size = Vector3(28, 6, 48) +[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_e3spp"] +albedo_color = Color(0, 0, 0, 1) + +[sub_resource type="PlaneMesh" id="PlaneMesh_awssr"] +material = SubResource("StandardMaterial3D_e3spp") +size = Vector2(29, 29) + [node name="40_DonutGallery" type="Node3D"] script = ExtResource("1_e3spp") @@ -69,6 +76,15 @@ collision_mask = 10 transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0.04566, -10.6408, -1.19209e-07) shape = SubResource("BoxShape3D_a5ll2") +[node name="MinimapShadow" type="Node3D" parent="Room"] +unique_name_in_owner = true + +[node name="MeshInstance3D" type="MeshInstance3D" parent="Room/MinimapShadow"] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0.020082, -50.8212, 0.114777) +layers = 2 +sorting_offset = 100.0 +mesh = SubResource("PlaneMesh_awssr") + [node name="Lights" type="Node3D" parent="."] [node name="SpotLight3D" type="SpotLight3D" parent="Lights"] diff --git a/Zennysoft.Game.Ma/src/map/dungeon/rooms/Set B/42. Small Block Room A2.tscn b/Zennysoft.Game.Ma/src/map/dungeon/rooms/Set B/42. Small Block Room A2.tscn index ede954ba..f87804b9 100644 --- a/Zennysoft.Game.Ma/src/map/dungeon/rooms/Set B/42. Small Block Room A2.tscn +++ b/Zennysoft.Game.Ma/src/map/dungeon/rooms/Set B/42. Small Block Room A2.tscn @@ -1,10 +1,17 @@ -[gd_scene load_steps=11 format=3 uid="uid://bp6h4at643bbo"] +[gd_scene load_steps=13 format=3 uid="uid://bp6h4at643bbo"] [ext_resource type="PackedScene" uid="uid://btrmq1rhdfdpt" path="res://src/map/dungeon/models/Area 2/BlockRoomSmall/A2-BlockRoomSmall.glb" id="1_jxmh2"] [sub_resource type="BoxShape3D" id="BoxShape3D_jxmh2"] size = Vector3(12.0847, 8, 12.0664) +[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_jxmh2"] +albedo_color = Color(0, 0, 0, 1) + +[sub_resource type="PlaneMesh" id="PlaneMesh_sabk0"] +material = SubResource("StandardMaterial3D_jxmh2") +size = Vector2(20.5, 20.5) + [sub_resource type="BoxShape3D" id="BoxShape3D_sabk0"] size = Vector3(3.92139, 3.9624, 4.01892) @@ -37,7 +44,6 @@ size = Vector3(19.9524, 0.1, 19.9805) [node name="Spawn Points" type="Node3D" parent="."] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -10.2895, 0, -9.00508) -visible = false [node name="PlayerSpawn" type="Marker3D" parent="Spawn Points"] unique_name_in_owner = true @@ -71,7 +77,6 @@ transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 10.9752, -1.602, 11.0699) [node name="Room" type="Node3D" parent="."] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -10.2895, 0, -9.00508) -visible = false [node name="Room" type="Area3D" parent="Room"] unique_name_in_owner = true @@ -82,6 +87,15 @@ collision_mask = 10 transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 10.3539, 4.09071, 8.84395) shape = SubResource("BoxShape3D_jxmh2") +[node name="MinimapShadow" type="Node3D" parent="Room"] +unique_name_in_owner = true + +[node name="MeshInstance3D" type="MeshInstance3D" parent="Room/MinimapShadow"] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 10.2326, -2.55592, 8.90595) +layers = 2 +sorting_offset = 100.0 +mesh = SubResource("PlaneMesh_sabk0") + [node name="Collisions" type="Node3D" parent="."] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -0.785047, 2.10907, -0.117584) diff --git a/Zennysoft.Game.Ma/src/map/dungeon/rooms/Set B/43. Large Block Room A2.tscn b/Zennysoft.Game.Ma/src/map/dungeon/rooms/Set B/43. Large Block Room A2.tscn index a41cb4cb..648b31d8 100644 --- a/Zennysoft.Game.Ma/src/map/dungeon/rooms/Set B/43. Large Block Room A2.tscn +++ b/Zennysoft.Game.Ma/src/map/dungeon/rooms/Set B/43. Large Block Room A2.tscn @@ -1,4 +1,4 @@ -[gd_scene load_steps=14 format=3 uid="uid://bbyjnuf1p6w3r"] +[gd_scene load_steps=16 format=3 uid="uid://bbyjnuf1p6w3r"] [ext_resource type="PackedScene" uid="uid://ddeqj2mmaw0vr" path="res://src/map/dungeon/models/Area 2/BlockRoomLarge/A2-BlockRoomLarge.glb" id="1_37pbi"] [ext_resource type="Script" uid="uid://dhollu4j3pynq" path="res://src/map/dungeon/code/MonsterRoom.cs" id="1_wvkq2"] @@ -36,6 +36,13 @@ size = Vector3(28.1197, 8.36009, 1.94437) [sub_resource type="BoxShape3D" id="BoxShape3D_37pbi"] size = Vector3(36.0175, 8, 20.0029) +[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_wvkq2"] +albedo_color = Color(0, 0, 0, 1) + +[sub_resource type="PlaneMesh" id="PlaneMesh_w7x07"] +material = SubResource("StandardMaterial3D_wvkq2") +size = Vector2(37, 21) + [node name="LargeBlockRoom" type="Node3D"] script = ExtResource("1_wvkq2") @@ -159,3 +166,12 @@ collision_mask = 10 [node name="CollisionShape3D" type="CollisionShape3D" parent="Room/Room"] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0.826404, 1.9843, -0.0330553) shape = SubResource("BoxShape3D_37pbi") + +[node name="MinimapShadow" type="Node3D" parent="Room"] +unique_name_in_owner = true + +[node name="MeshInstance3D" type="MeshInstance3D" parent="Room/MinimapShadow"] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0.759798, -2.55592, -0.0814438) +layers = 2 +sorting_offset = 100.0 +mesh = SubResource("PlaneMesh_w7x07") diff --git a/Zennysoft.Game.Ma/src/map/dungeon/rooms/Special Rooms/Breakable Wall Room.tscn b/Zennysoft.Game.Ma/src/map/dungeon/rooms/Special Rooms/Breakable Wall Room.tscn index 15df7af3..b8a0672c 100644 --- a/Zennysoft.Game.Ma/src/map/dungeon/rooms/Special Rooms/Breakable Wall Room.tscn +++ b/Zennysoft.Game.Ma/src/map/dungeon/rooms/Special Rooms/Breakable Wall Room.tscn @@ -1,4 +1,4 @@ -[gd_scene load_steps=110 format=4 uid="uid://drasshmo7ntqc"] +[gd_scene load_steps=112 format=4 uid="uid://drasshmo7ntqc"] [ext_resource type="Shader" uid="uid://c4a68uhm5o2h4" path="res://src/map/map shaders/Altar Sky Environment.gdshader" id="2_w8uwt"] [ext_resource type="Texture2D" uid="uid://dw50ys561j8no" path="res://src/map/assets/DUST_1.png" id="3_lctjc"] @@ -1191,6 +1191,13 @@ points = PackedVector3Array(-2, -2, -2, 1.9999, 1.9999, 1.9999, 1.9999, -1.9999, [sub_resource type="ConcavePolygonShape3D" id="ConcavePolygonShape3D_qxjed"] data = PackedVector3Array(9.4611, -1.8465, 6.3915, 13.4611, -1.8465, 10.3915, 9.4611, -1.8465, 10.3915, 9.4611, -1.8465, 6.3915, 13.4611, -1.8465, 6.3915, 13.4611, -1.8465, 10.3915, 5.4611, -1.8465, 6.3915, 9.4611, -1.8465, 6.3915, 9.4611, -1.8465, 10.3915, 5.4611, -1.8465, 6.3915, 9.4611, -1.8465, 10.3915, 5.4611, -1.8465, 10.3915, 5.4611, -1.8465, 10.3915, 9.4611, -1.8465, 10.3915, 9.4611, 2.1535, 10.3915, 5.4611, -1.8465, 10.3915, 9.4611, 2.1535, 10.3915, 5.4611, 2.1535, 10.3915, 5.4611, -1.8465, 2.3915, 9.4611, -1.8465, 6.3915, 5.4611, -1.8465, 6.3915, 5.4611, -1.8465, 2.3915, 9.4611, -1.8465, 2.3915, 9.4611, -1.8465, 6.3915, 5.4611, -1.8465, 2.3915, 9.4611, -1.8465, 0.3915, 9.4611, -1.8465, 2.3915, 5.4611, -1.8465, 2.3915, 9.4611, -1.8465, -1.6085, 9.4611, -1.8465, 0.3915, 9.4611, -1.8465, -1.6085, 5.4611, -1.8465, 2.3915, 5.4611, -1.8465, -1.6085, 9.4611, -1.8465, -1.6085, 11.4611, -1.8465, 0.3915, 9.4611, -1.8465, 0.3915, 9.4611, -1.8465, -1.6085, 11.4611, -1.8465, -1.6085, 11.4611, -1.8465, 0.3915, 11.4611, -1.8465, 0.3915, 13.4611, -1.8465, 2.3915, 11.4611, -1.8465, 2.3915, 11.4611, -1.8465, 0.3915, 13.4611, -1.8465, 0.3915, 13.4611, -1.8465, 2.3915, 13.4611, 2.1535, 10.3915, 9.4611, 6.1535, 10.3915, 9.4611, 2.1535, 10.3915, 13.4611, 2.1535, 10.3915, 13.4611, 6.1535, 10.3915, 9.4611, 6.1535, 10.3915, 5.4611, 2.1535, 10.3915, -2.5389, -1.8465, 10.3915, 5.4611, -1.8465, 10.3915, -2.5389, -1.8465, 10.3915, 5.4611, 2.1535, 10.3915, 1.4685, 2.1535, 10.3915, -2.5389, -1.8465, 10.3915, 1.4685, 2.1535, 10.3915, -2.5389, 2.1535, 10.3915, 1.4685, 2.1535, 10.3915, -2.5389, 4.1535, 10.3915, -2.5389, 2.1535, 10.3915, 1.4685, 2.1535, 10.3915, 1.4685, 4.1535, 10.3915, -2.5389, 4.1535, 10.3915, 1.4685, 4.1535, 10.3915, -2.5389, 6.1535, 10.3915, -2.5389, 4.1535, 10.3915, 1.4685, 4.1535, 10.3915, 1.4685, 6.1535, 10.3915, -2.5389, 6.1535, 10.3915, 13.4611, -1.8465, 6.3915, 13.4611, 2.1535, 10.3915, 13.4611, -1.8465, 10.3915, 13.4611, -1.8465, 6.3915, 13.4611, 2.1535, 6.3915, 13.4611, 2.1535, 10.3915, 13.4611, 2.1535, 6.3915, 13.4611, 6.1535, 10.3915, 13.4611, 2.1535, 10.3915, 13.4611, 2.1535, 6.3915, 13.4611, 6.1535, 6.3915, 13.4611, 6.1535, 10.3915, 13.4611, 2.1535, 2.3915, 13.4611, 6.1535, 6.3915, 13.4611, 2.1535, 6.3915, 13.4611, 2.1535, 2.3915, 13.4611, 6.1535, 2.3915, 13.4611, 6.1535, 6.3915, 9.4611, 2.1535, -1.6085, 11.4611, -1.8465, -1.6085, 9.4611, -1.8465, -1.6085, 11.4611, -1.8465, -1.6085, 13.4611, 2.1535, -1.6085, 13.4611, -1.8465, -1.6085, 11.4611, -1.8465, -1.6085, 9.4611, 2.1535, -1.6085, 13.4611, 2.1535, -1.6085, 9.4611, 2.1535, -1.6085, 13.4611, 6.1535, -1.6085, 13.4611, 2.1535, -1.6085, 9.4611, 2.1535, -1.6085, 9.4611, 6.1535, -1.6085, 13.4611, 6.1535, -1.6085, 9.4611, -1.8465, -1.6085, 5.4611, 2.1535, -1.6085, 9.4611, 2.1535, -1.6085, 5.4611, 2.1535, -1.6085, 9.4611, 6.1535, -1.6085, 9.4611, 2.1535, -1.6085, 9.4611, -1.8465, -1.6085, 5.4611, -1.8465, -1.6085, 5.4611, 2.1535, -1.6085, 5.4611, 2.1535, -1.6085, 5.4611, 6.1535, -1.6085, 9.4611, 6.1535, -1.6085, -2.5389, -1.8465, 2.3915, -2.5389, 2.1535, -1.6085, -2.5389, -1.8465, -1.6085, -2.5389, -1.8465, 2.3915, -2.5389, 2.1535, 2.3915, -2.5389, 2.1535, -1.6085, -2.5389, 2.1535, 6.3915, -2.5389, 6.1535, 2.3915, -2.5389, 2.1535, 2.3915, -2.5389, 2.1535, 6.3915, -2.5389, 6.1535, 6.3915, -2.5389, 6.1535, 2.3915, -2.5389, 2.1535, 6.3915, -2.5389, 6.1535, 10.3915, -2.5389, 6.1535, 6.3915, -2.5389, 2.1535, 6.3915, -2.5389, 4.1535, 10.3915, -2.5389, 6.1535, 10.3915, -2.5389, 4.1535, 10.3915, -2.5389, 2.1535, 6.3915, -2.5389, 2.1535, 10.3915, -2.5389, -1.8465, 2.3915, 5.4611, -1.8465, 6.3915, -2.5389, -1.8465, 6.3915, -2.5389, -1.8465, 2.3915, 5.4611, -1.8465, 2.3915, 5.4611, -1.8465, 6.3915, 5.4611, 6.1535, -1.6085, -2.5389, 6.1535, 2.3915, 5.4611, 6.1535, 2.3915, 5.4611, 6.1535, -1.6085, -2.5389, 6.1535, -1.6085, -2.5389, 6.1535, 2.3915, 5.4611, 6.1535, 2.3915, -2.5389, 6.1535, 2.3915, -2.5389, 6.1535, 6.3915, 5.4611, 6.1535, 2.3915, -2.5389, 6.1535, 6.3915, 5.4611, 6.1535, 6.3915, 13.4611, 6.1535, 2.3915, 9.4611, 6.1535, 6.3915, 13.4611, 6.1535, 6.3915, 13.4611, 6.1535, 6.3915, 9.4611, 6.1535, 10.3915, 9.4611, 6.1535, 6.3915, 13.4611, 6.1535, 6.3915, 13.4611, 6.1535, 10.3915, 9.4611, 6.1535, 10.3915, 9.4611, 6.1535, 6.3915, 5.4611, 6.1535, 10.3915, 9.4611, 6.1535, 10.3915, 9.4611, 6.1535, 6.3915, 5.4611, 6.1535, 6.3915, 5.4611, 6.1535, 10.3915, 13.4611, 6.1535, 2.3915, 9.4611, 6.1535, 2.3915, 9.4611, 6.1535, 6.3915, 13.4611, 6.1535, -1.6085, 9.4611, 6.1535, 2.3915, 13.4611, 6.1535, 2.3915, 13.4611, 6.1535, -1.6085, 9.4611, 6.1535, -1.6085, 9.4611, 6.1535, 2.3915, 9.4611, 6.1535, -1.6085, 5.4611, 6.1535, 2.3915, 9.4611, 6.1535, 2.3915, 9.4611, 6.1535, -1.6085, 5.4611, 6.1535, -1.6085, 5.4611, 6.1535, 2.3915, 9.4611, 6.1535, 6.3915, 9.4611, 6.1535, 2.3915, 9.4611, 10.1535, 2.3915, 9.4611, 6.1535, 6.3915, 9.4611, 10.1535, 2.3915, 9.4611, 10.1535, 6.3915, 5.4611, 6.1535, 6.3915, 9.4611, 10.1535, 6.3915, 5.4611, 10.1535, 6.3915, 5.4611, 6.1535, 6.3915, 9.4611, 6.1535, 6.3915, 9.4611, 10.1535, 6.3915, 5.4611, 6.1535, 2.3915, 5.4611, 10.1535, 6.3915, 5.4611, 6.1535, 6.3915, 5.4611, 6.1535, 2.3915, 5.4611, 10.1535, 2.3915, 5.4611, 10.1535, 6.3915, -2.5389, -1.8465, -1.6085, 5.4611, 2.1535, -1.6085, 5.4611, -1.8465, -1.6085, -2.5389, -1.8465, -1.6085, -2.5389, 2.1535, -1.6085, 5.4611, 2.1535, -1.6085, -9.8883, -5.7138, 2.3915, -6.4678, -5.7171, 6.3915, -6.4678, -5.7171, 2.3915, -9.8883, -5.7138, 2.3915, -9.8883, -5.7138, 6.3915, -6.4678, -5.7171, 6.3915, -6.4678, -1.8465, 2.3915, -9.8883, -1.8465, 6.3915, -9.8883, -1.8465, 2.3915, -6.4678, -1.8465, 2.3915, -6.4678, -1.8465, 6.3915, -9.8883, -1.8465, 6.3915, -9.8883, -5.7138, 6.3915, -6.4678, -1.8465, 6.3915, -6.4678, -5.7171, 6.3915, -9.8883, -5.7138, 6.3915, -9.8883, -1.8465, 6.3915, -6.4678, -1.8465, 6.3915, -6.4678, -1.8465, 2.3915, -6.4678, -5.7171, 6.3915, -6.4678, -1.8465, 6.3915, -6.4678, -1.8465, 2.3915, -6.4678, -5.7171, 2.3915, -6.4678, -5.7171, 6.3915, -2.5389, -1.8465, 2.3915, -6.4678, -1.8465, 6.3915, -6.4678, -1.8465, 2.3915, -2.5389, -1.8465, 2.3915, -2.5389, -1.8465, 6.3915, -6.4678, -1.8465, 6.3915, -2.5389, 2.1535, 6.3915, -6.4678, 2.1535, 2.3915, -6.4678, 2.1535, 6.3915, -2.5389, 2.1535, 6.3915, -2.5389, 2.1535, 2.3915, -6.4678, 2.1535, 2.3915, -2.5389, -1.8465, 6.3915, -2.5389, 2.1535, 6.3915, -6.4678, 2.1535, 6.3915, -2.5389, -1.8465, 6.3915, -6.4678, 2.1535, 6.3915, -6.4678, -1.8465, 6.3915, -2.5389, 2.1535, 2.3915, -6.4678, -1.8465, 2.3915, -6.4678, 2.1535, 2.3915, -2.5389, 2.1535, 2.3915, -2.5389, -1.8465, 2.3915, -6.4678, -1.8465, 2.3915, -6.4678, -5.7171, 2.3915, -9.8883, -1.8465, 2.3915, -9.8883, -5.7138, 2.3915, -6.4678, -5.7171, 2.3915, -6.4678, -1.8465, 2.3915, -9.8883, -1.8465, 2.3915, -2.5392, 2.1534, -1.6087, 5.4609, 6.1536, -1.6087, 5.4609, 2.1534, -1.6087, -2.5392, 2.1534, -1.6087, -2.5392, 6.1536, -1.6087, 5.4609, 6.1536, -1.6087, 13.4611, -1.8466, 6.3915, 13.4611, 2.1534, 2.3914, 13.4611, 2.1534, 6.3915, 13.4611, -1.8466, 6.3915, 13.4611, -1.8466, 2.3914, 13.4611, 2.1534, 2.3914, -9.8886, -1.8466, -14.3104, -9.8886, -5.7138, -9.4853, -9.8886, -1.8466, -9.4853, -9.8886, -1.8466, -14.3104, -9.8886, -5.7138, -14.3104, -9.8886, -5.7138, -9.4853, -9.8886, -1.8466, -9.4853, -9.8886, -5.7138, -9.4853, -9.8886, -5.7138, -5.5137, -9.8886, -1.8466, -9.4853, -9.8886, -5.7138, -5.5137, -9.8886, -1.8466, -5.5137, -9.8886, -1.8466, -5.5137, -9.8886, -5.7138, -5.5137, -9.8886, -5.7138, -1.5041, -9.8886, -1.8466, -5.5137, -9.8886, -5.7138, -1.5041, -9.8886, -1.8466, -1.5041, -9.8886, -1.8466, -1.5041, -9.8886, -5.7138, -1.5041, -9.8886, -5.7138, 2.3914, -9.8886, -1.8466, -1.5041, -9.8886, -5.7138, 2.3914, -9.8886, -1.8466, 2.3914, 1.9346, -1.8466, -18.4637, 1.9346, -5.7138, -14.3104, 1.9346, -1.8466, -14.3104, 1.9346, -1.8466, -18.4637, 1.9346, -5.7138, -18.4637, 1.9346, -5.7138, -14.3104, -13.9299, -1.8466, -9.4853, -13.9299, -5.7138, -13.3042, -13.9299, -1.8466, -13.3042, -13.9299, -1.8466, -9.4853, -13.9299, -5.7138, -9.4853, -13.9299, -5.7138, -13.3042, -13.9299, -1.8466, -13.3042, -13.9299, -5.7138, -13.3042, -13.9299, -5.7138, -18.4637, -13.9299, -1.8466, -13.3042, -13.9299, -5.7138, -18.4637, -13.9299, -1.8466, -18.4637, -13.9299, -1.8466, -5.5137, -13.9299, -5.7138, -9.4853, -13.9299, -1.8466, -9.4853, -13.9299, -1.8466, -5.5137, -13.9299, -5.7138, -5.5137, -13.9299, -5.7138, -9.4853, -13.9299, -1.8466, -1.5041, -13.9299, -5.7138, -5.5137, -13.9299, -1.8466, -5.5137, -13.9299, -1.8466, -1.5041, -13.9299, -5.7138, -1.5041, -13.9299, -5.7138, -5.5137, -13.9299, -1.8466, 2.3914, -13.9299, -5.7138, -1.5041, -13.9299, -1.8466, -1.5041, -13.9299, -1.8466, 2.3914, -13.9299, -5.7138, 2.3914, -13.9299, -5.7138, -1.5041, -9.8886, -1.8466, 2.3914, -9.8886, -5.7138, 6.3915, -9.8886, -1.8466, 6.3915, -9.8886, -1.8466, 2.3914, -9.8886, -5.7138, 2.3914, -9.8886, -5.7138, 6.3915, -2.5614, -1.8466, -14.3104, -9.8886, -5.7138, -14.3104, -9.8886, -1.8466, -14.3104, -2.5614, -1.8466, -14.3104, -2.5614, -5.7138, -14.3104, -9.8886, -5.7138, -14.3104, -9.8886, -1.8466, -18.4637, -2.5614, -5.7138, -18.4637, -2.5614, -1.8466, -18.4637, -9.8886, -1.8466, -18.4637, -9.8886, -5.7138, -18.4637, -2.5614, -5.7138, -18.4637, -2.5614, -1.8466, -18.4637, -2.5614, -5.7138, -18.4637, 1.9346, -5.7138, -18.4637, -2.5614, -1.8466, -18.4637, 1.9346, -5.7138, -18.4637, 1.9346, -1.8466, -18.4637, -9.8886, -5.7138, 2.3914, -13.9299, -5.7138, 6.3915, -9.8886, -5.7138, 6.3915, -9.8886, -5.7138, 2.3914, -13.9299, -5.7138, 2.3914, -13.9299, -5.7138, 6.3915, -9.8886, -5.7138, 2.3914, -13.9299, -5.7138, -1.5041, -13.9299, -5.7138, 2.3914, -9.8886, -5.7138, 2.3914, -9.8886, -5.7138, -1.5041, -13.9299, -5.7138, -1.5041, -9.8886, -5.7138, -1.5041, -13.9299, -5.7138, -5.5137, -13.9299, -5.7138, -1.5041, -9.8886, -5.7138, -1.5041, -9.8886, -5.7138, -5.5137, -13.9299, -5.7138, -5.5137, -9.8886, -5.7138, -5.5137, -13.9299, -5.7138, -9.4853, -13.9299, -5.7138, -5.5137, -9.8886, -5.7138, -5.5137, -9.8886, -5.7138, -9.4853, -13.9299, -5.7138, -9.4853, -9.8886, -5.7138, -9.4853, -13.9299, -5.7138, -13.3042, -13.9299, -5.7138, -9.4853, -9.8886, -5.7138, -9.4853, -9.8886, -5.7138, -14.3104, -13.9299, -5.7138, -13.3042, -9.8886, -5.7138, -14.3104, -13.9299, -5.7138, -18.4637, -13.9299, -5.7138, -13.3042, -9.8886, -5.7138, -14.3104, -9.8886, -5.7138, -18.4637, -13.9299, -5.7138, -18.4637, -9.8886, -5.7138, -14.3104, -2.5614, -5.7138, -18.4637, -9.8886, -5.7138, -18.4637, -9.8886, -5.7138, -14.3104, -2.5614, -5.7138, -14.3104, -2.5614, -5.7138, -18.4637, -2.5614, -5.7138, -14.3104, 1.9346, -5.7138, -18.4637, -2.5614, -5.7138, -18.4637, -2.5614, -5.7138, -14.3104, 1.9346, -5.7138, -14.3104, 1.9346, -5.7138, -18.4637, -13.9299, -1.8466, 6.3915, -13.9299, -5.7138, 2.3914, -13.9299, -1.8466, 2.3914, -13.9299, -1.8466, 6.3915, -13.9299, -5.7138, 6.3915, -13.9299, -5.7138, 2.3914, -13.9299, -1.8466, -18.4637, -9.8886, -5.7138, -18.4637, -9.8886, -1.8466, -18.4637, -13.9299, -1.8466, -18.4637, -13.9299, -5.7138, -18.4637, -9.8886, -5.7138, -18.4637, 1.9346, -1.8466, -14.3104, -2.5614, -5.7138, -14.3104, -2.5614, -1.8466, -14.3104, 1.9346, -1.8466, -14.3104, 1.9346, -5.7138, -14.3104, -2.5614, -5.7138, -14.3104, -9.8886, -1.8466, 6.3915, -13.9299, -5.7138, 6.3915, -13.9299, -1.8466, 6.3915, -9.8886, -1.8466, 6.3915, -9.8886, -5.7138, 6.3915, -13.9299, -5.7138, 6.3915, -9.8886, -1.8466, 2.3914, -13.9299, -1.8466, 6.3915, -13.9299, -1.8466, 2.3914, -9.8886, -1.8466, 2.3914, -9.8886, -1.8466, 6.3915, -13.9299, -1.8466, 6.3915, -13.9299, -1.8466, 2.3914, -9.8886, -1.8466, -1.5041, -9.8886, -1.8466, 2.3914, -13.9299, -1.8466, 2.3914, -13.9299, -1.8466, -1.5041, -9.8886, -1.8466, -1.5041, -13.9299, -1.8466, -1.5041, -9.8886, -1.8466, -5.5137, -9.8886, -1.8466, -1.5041, -13.9299, -1.8466, -1.5041, -13.9299, -1.8466, -5.5137, -9.8886, -1.8466, -5.5137, -13.9299, -1.8466, -5.5137, -9.8886, -1.8466, -9.4853, -9.8886, -1.8466, -5.5137, -13.9299, -1.8466, -5.5137, -13.9299, -1.8466, -9.4853, -9.8886, -1.8466, -9.4853, -13.9299, -1.8466, -9.4853, -9.8886, -1.8466, -14.3104, -9.8886, -1.8466, -9.4853, -13.9299, -1.8466, -9.4853, -13.9299, -1.8466, -13.3042, -9.8886, -1.8466, -14.3104, -9.8886, -1.8466, -18.4637, -13.9299, -1.8466, -13.3042, -13.9299, -1.8466, -18.4637, -9.8886, -1.8466, -18.4637, -9.8886, -1.8466, -14.3104, -13.9299, -1.8466, -13.3042, -9.8886, -1.8466, -18.4637, -2.5614, -1.8466, -14.3104, -9.8886, -1.8466, -14.3104, -9.8886, -1.8466, -18.4637, -2.5614, -1.8466, -18.4637, -2.5614, -1.8466, -14.3104, 1.9346, -1.8466, -14.3104, -2.5614, -1.8466, -18.4637, 1.9346, -1.8466, -18.4637, 1.9346, -1.8466, -14.3104, -2.5614, -1.8466, -14.3104, -2.5614, -1.8466, -18.4637, 13.4611, 2.1535, -1.6085, 13.4611, -1.8465, 0.3914, 13.4611, -1.8465, -1.6085, 13.4611, -1.8465, 0.3914, 13.4611, 2.1535, -1.6085, 13.4611, 2.1535, 2.3915, 13.4611, -1.8465, 0.3914, 13.4611, 2.1535, 2.3915, 13.4611, -1.8465, 2.3915, 13.4611, -1.8465, 10.3915, 9.4611, 2.1535, 10.3915, 9.4611, -1.8465, 10.3915, 13.4611, -1.8465, 10.3915, 13.4611, 2.1535, 10.3915, 9.4611, 2.1535, 10.3915, 9.4611, 6.1535, 2.3915, 5.4611, 10.1535, 2.3915, 9.4611, 10.1535, 2.3915, 9.4611, 6.1535, 2.3915, 5.4611, 6.1535, 2.3915, 5.4611, 10.1535, 2.3915, 13.4612, 2.1535, -1.6085, 13.4612, 6.1535, 2.3915, 13.4612, 2.1535, 2.3915, 13.4612, 2.1535, -1.6085, 13.4612, 6.1535, -1.6085, 13.4612, 6.1535, 2.3915, -2.5389, -1.8465, -1.6085, 5.461, -1.8465, 2.3915, -2.5389, -1.8465, 2.3915, -2.5389, -1.8465, -1.6085, 5.461, -1.8465, -1.6085, 5.461, -1.8465, 2.3915, 9.4611, 6.1535, 10.3915, 5.461, 2.1535, 10.3915, 9.4611, 2.1535, 10.3915, 5.461, 2.1535, 10.3915, 9.4611, 6.1535, 10.3915, 5.461, 4.1535, 10.3915, 5.461, 4.1535, 10.3915, 9.4611, 6.1535, 10.3915, 5.461, 6.1535, 10.3915, -2.5389, -1.8465, 6.3915, 5.461, -1.8465, 10.3915, -2.5389, -1.8465, 10.3915, -2.5389, -1.8465, 6.3915, 5.461, -1.8465, 6.3915, 5.461, -1.8465, 10.3915, 9.4611, -1.8465, 0.3914, 11.4611, -1.8465, 2.3915, 9.4611, -1.8465, 2.3915, 9.4611, -1.8465, 0.3914, 11.4611, -1.8465, 0.3914, 11.4611, -1.8465, 2.3915, 5.461, 2.1535, 10.3915, 1.4685, 4.1535, 10.3915, 1.4685, 2.1535, 10.3915, 5.461, 2.1535, 10.3915, 5.461, 4.1535, 10.3915, 1.4685, 4.1535, 10.3915, 5.461, 4.1535, 10.3915, 1.4685, 6.1535, 10.3915, 1.4685, 4.1535, 10.3915, 5.461, 4.1535, 10.3915, 5.461, 6.1535, 10.3915, 1.4685, 6.1535, 10.3915, -2.5389, 6.1535, 6.3915, 5.461, 6.1535, 10.3915, 5.461, 6.1535, 6.3915, 5.461, 6.1535, 10.3915, -2.5389, 6.1535, 6.3915, 1.4685, 6.1535, 10.3915, 1.4685, 6.1535, 10.3915, -2.5389, 6.1535, 6.3915, -2.5389, 6.1535, 10.3915, -2.5389, 2.1535, 2.3915, -2.5389, 6.1535, -1.6085, -2.5389, 2.1535, -1.6085, -2.5389, 2.1535, 2.3915, -2.5389, 6.1535, 2.3915, -2.5389, 6.1535, -1.6085, -2.5389, -1.8465, 10.3915, -2.5389, 2.1535, 6.3915, -2.5389, -1.8465, 6.3915, -2.5389, -1.8465, 10.3915, -2.5389, 2.1535, 10.3915, -2.5389, 2.1535, 6.3915, 11.4611, -1.8465, 2.3915, 9.4611, -1.8465, 6.3915, 9.4611, -1.8465, 2.3915, 9.4611, -1.8465, 6.3915, 11.4611, -1.8465, 2.3915, 13.4612, -1.8465, 2.3915, 9.4611, -1.8465, 6.3915, 13.4612, -1.8465, 2.3915, 13.4612, -1.8465, 6.3915, 11.4611, -1.8465, -1.6085, 13.4612, -1.8465, 0.3914, 11.4611, -1.8465, 0.3914, 11.4611, -1.8465, -1.6085, 13.4612, -1.8465, -1.6085, 13.4612, -1.8465, 0.3914) +[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_qxjed"] +albedo_color = Color(0, 0, 0, 1) + +[sub_resource type="PlaneMesh" id="PlaneMesh_tk2fq"] +material = SubResource("StandardMaterial3D_qxjed") +size = Vector2(21, 17) + [sub_resource type="ShaderMaterial" id="ShaderMaterial_hlln8"] shader = ExtResource("2_w8uwt") shader_parameter/day_top_color = Color(0.110511, 0.211694, 0.207729, 1) @@ -1482,9 +1489,16 @@ shape = SubResource("ConvexPolygonShape3D_tk2fq") transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -14.1347, 1.32009, -4.54226) shape = SubResource("ConcavePolygonShape3D_qxjed") -[node name="WorldEnvironment" type="WorldEnvironment" parent="."] -environment = SubResource("Environment_baf70") -camera_attributes = SubResource("CameraAttributesPractical_c0bu3") +[node name="Room" type="Node3D" parent="."] + +[node name="MinimapShadow" type="Node3D" parent="Room"] +unique_name_in_owner = true + +[node name="MeshInstance3D" type="MeshInstance3D" parent="Room/MinimapShadow"] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -2.13178, -2.55592, -22.8811) +layers = 2 +sorting_offset = 100.0 +mesh = SubResource("PlaneMesh_tk2fq") [node name="Lights" type="Node3D" parent="."] @@ -1509,6 +1523,10 @@ light_energy = 3.762 shadow_enabled = true shadow_blur = 2.832 +[node name="WorldEnvironment" type="WorldEnvironment" parent="Lights"] +environment = SubResource("Environment_baf70") +camera_attributes = SubResource("CameraAttributesPractical_c0bu3") + [node name="VFX" type="Node3D" parent="."] [node name="GPUParticles3D2" type="GPUParticles3D" parent="VFX"] diff --git a/Zennysoft.Game.Ma/src/minimap/Map Revealer Cube.tscn b/Zennysoft.Game.Ma/src/minimap/Map Revealer Cube.tscn index 26b061b5..b6002927 100644 --- a/Zennysoft.Game.Ma/src/minimap/Map Revealer Cube.tscn +++ b/Zennysoft.Game.Ma/src/minimap/Map Revealer Cube.tscn @@ -1,4 +1,4 @@ -[gd_scene load_steps=5 format=3 uid="uid://jx4x2weyky45"] +[gd_scene load_steps=5 format=3 uid="uid://dn50mjadk31jn"] [ext_resource type="Script" uid="uid://bd4q02maxynl3" path="res://src/minimap/MapRevealerCube.cs" id="1_sxj35"] @@ -6,7 +6,7 @@ size = Vector3(4, 4, 4) [sub_resource type="PlaneMesh" id="PlaneMesh_i1kg7"] -size = Vector2(4, 4) +size = Vector2(6, 6) [sub_resource type="StandardMaterial3D" id="StandardMaterial3D_jqd72"] shading_mode = 0 diff --git a/Zennysoft.Game.Ma/src/minimap/Reveal Map.tscn b/Zennysoft.Game.Ma/src/minimap/Reveal Map.tscn deleted file mode 100644 index 918d6970..00000000 --- a/Zennysoft.Game.Ma/src/minimap/Reveal Map.tscn +++ /dev/null @@ -1,9107 +0,0 @@ -[gd_scene load_steps=2 format=3 uid="uid://biknctxhhf8g"] - -[ext_resource type="PackedScene" uid="uid://jx4x2weyky45" path="res://src/minimap/Map Revealer Cube.tscn" id="1_np0l4"] - -[node name="Reveal Map" type="Node3D"] - -[node name="Node3D" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 2, 0, 2) - -[node name="Node3D2" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 2, 0, 6) - -[node name="Node3D3" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 6, 0, 2) - -[node name="Node3D4" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 6, 0, 6) - -[node name="Node3D5" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 2, 0, 10) - -[node name="Node3D6" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 6, 0, 10) - -[node name="Node3D7" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 10, 0, 2) - -[node name="Node3D8" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 10, 0, 6) - -[node name="Node3D9" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 10, 0, 10) - -[node name="Node3D10" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 14, 0, 2) - -[node name="Node3D11" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 14, 0, 6) - -[node name="Node3D12" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 18, 0, 2) - -[node name="Node3D13" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 18, 0, 6) - -[node name="Node3D14" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 14, 0, 10) - -[node name="Node3D15" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 18, 0, 10) - -[node name="Node3D16" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 22, 0, 2) - -[node name="Node3D17" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 22, 0, 6) - -[node name="Node3D18" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 22, 0, 10) - -[node name="Node3D19" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 2, 0, 14) - -[node name="Node3D20" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 2, 0, 18) - -[node name="Node3D21" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 6, 0, 14) - -[node name="Node3D22" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 6, 0, 18) - -[node name="Node3D23" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 2, 0, 22) - -[node name="Node3D24" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 6, 0, 22) - -[node name="Node3D25" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 10, 0, 14) - -[node name="Node3D26" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 10, 0, 18) - -[node name="Node3D27" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 10, 0, 22) - -[node name="Node3D28" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 14, 0, 14) - -[node name="Node3D29" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 14, 0, 18) - -[node name="Node3D30" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 18, 0, 14) - -[node name="Node3D31" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 18, 0, 18) - -[node name="Node3D32" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 14, 0, 22) - -[node name="Node3D33" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 18, 0, 22) - -[node name="Node3D34" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 22, 0, 14) - -[node name="Node3D35" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 22, 0, 18) - -[node name="Node3D36" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 22, 0, 22) - -[node name="Node3D37" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 26, 0, 2) - -[node name="Node3D38" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 26, 0, 6) - -[node name="Node3D39" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 30, 0, 2) - -[node name="Node3D40" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 30, 0, 6) - -[node name="Node3D41" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 26, 0, 10) - -[node name="Node3D42" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 30, 0, 10) - -[node name="Node3D43" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 34, 0, 2) - -[node name="Node3D44" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 34, 0, 6) - -[node name="Node3D45" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 34, 0, 10) - -[node name="Node3D46" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 38, 0, 2) - -[node name="Node3D47" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 38, 0, 6) - -[node name="Node3D48" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 42, 0, 2) - -[node name="Node3D49" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 42, 0, 6) - -[node name="Node3D50" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 38, 0, 10) - -[node name="Node3D51" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 42, 0, 10) - -[node name="Node3D52" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 46, 0, 2) - -[node name="Node3D53" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 46, 0, 6) - -[node name="Node3D54" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 46, 0, 10) - -[node name="Node3D55" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 26, 0, 14) - -[node name="Node3D56" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 26, 0, 18) - -[node name="Node3D57" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 30, 0, 14) - -[node name="Node3D58" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 30, 0, 18) - -[node name="Node3D59" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 26, 0, 22) - -[node name="Node3D60" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 30, 0, 22) - -[node name="Node3D61" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 34, 0, 14) - -[node name="Node3D62" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 34, 0, 18) - -[node name="Node3D63" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 34, 0, 22) - -[node name="Node3D64" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 38, 0, 14) - -[node name="Node3D65" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 38, 0, 18) - -[node name="Node3D66" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 42, 0, 14) - -[node name="Node3D67" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 42, 0, 18) - -[node name="Node3D68" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 38, 0, 22) - -[node name="Node3D69" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 42, 0, 22) - -[node name="Node3D70" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 46, 0, 14) - -[node name="Node3D71" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 46, 0, 18) - -[node name="Node3D72" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 46, 0, 22) - -[node name="Node3D73" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 2, 0, 26) - -[node name="Node3D74" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 2, 0, 30) - -[node name="Node3D75" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 6, 0, 26) - -[node name="Node3D76" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 6, 0, 30) - -[node name="Node3D77" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 2, 0, 34) - -[node name="Node3D78" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 6, 0, 34) - -[node name="Node3D79" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 10, 0, 26) - -[node name="Node3D80" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 10, 0, 30) - -[node name="Node3D81" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 10, 0, 34) - -[node name="Node3D82" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 14, 0, 26) - -[node name="Node3D83" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 14, 0, 30) - -[node name="Node3D84" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 18, 0, 26) - -[node name="Node3D85" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 18, 0, 30) - -[node name="Node3D86" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 14, 0, 34) - -[node name="Node3D87" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 18, 0, 34) - -[node name="Node3D88" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 22, 0, 26) - -[node name="Node3D89" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 22, 0, 30) - -[node name="Node3D90" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 22, 0, 34) - -[node name="Node3D91" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 2, 0, 38) - -[node name="Node3D92" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 2, 0, 42) - -[node name="Node3D93" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 6, 0, 38) - -[node name="Node3D94" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 6, 0, 42) - -[node name="Node3D95" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 2, 0, 46) - -[node name="Node3D96" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 6, 0, 46) - -[node name="Node3D97" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 10, 0, 38) - -[node name="Node3D98" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 10, 0, 42) - -[node name="Node3D99" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 10, 0, 46) - -[node name="Node3D100" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 14, 0, 38) - -[node name="Node3D101" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 14, 0, 42) - -[node name="Node3D102" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 18, 0, 38) - -[node name="Node3D103" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 18, 0, 42) - -[node name="Node3D104" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 14, 0, 46) - -[node name="Node3D105" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 18, 0, 46) - -[node name="Node3D106" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 22, 0, 38) - -[node name="Node3D107" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 22, 0, 42) - -[node name="Node3D108" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 22, 0, 46) - -[node name="Node3D109" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 26, 0, 26) - -[node name="Node3D110" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 26, 0, 30) - -[node name="Node3D111" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 30, 0, 26) - -[node name="Node3D112" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 30, 0, 30) - -[node name="Node3D113" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 26, 0, 34) - -[node name="Node3D114" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 30, 0, 34) - -[node name="Node3D115" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 34, 0, 26) - -[node name="Node3D116" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 34, 0, 30) - -[node name="Node3D117" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 34, 0, 34) - -[node name="Node3D118" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 38, 0, 26) - -[node name="Node3D119" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 38, 0, 30) - -[node name="Node3D120" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 42, 0, 26) - -[node name="Node3D121" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 42, 0, 30) - -[node name="Node3D122" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 38, 0, 34) - -[node name="Node3D123" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 42, 0, 34) - -[node name="Node3D124" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 46, 0, 26) - -[node name="Node3D125" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 46, 0, 30) - -[node name="Node3D126" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 46, 0, 34) - -[node name="Node3D127" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 26, 0, 38) - -[node name="Node3D128" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 26, 0, 42) - -[node name="Node3D129" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 30, 0, 38) - -[node name="Node3D130" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 30, 0, 42) - -[node name="Node3D131" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 26, 0, 46) - -[node name="Node3D132" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 30, 0, 46) - -[node name="Node3D133" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 34, 0, 38) - -[node name="Node3D134" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 34, 0, 42) - -[node name="Node3D135" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 34, 0, 46) - -[node name="Node3D136" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 38, 0, 38) - -[node name="Node3D137" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 38, 0, 42) - -[node name="Node3D138" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 42, 0, 38) - -[node name="Node3D139" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 42, 0, 42) - -[node name="Node3D140" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 38, 0, 46) - -[node name="Node3D141" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 42, 0, 46) - -[node name="Node3D142" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 46, 0, 38) - -[node name="Node3D143" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 46, 0, 42) - -[node name="Node3D144" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 46, 0, 46) - -[node name="Node3D145" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 2, 0, 2) - -[node name="Node3D146" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 2, 0, 6) - -[node name="Node3D147" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 6, 0, 2) - -[node name="Node3D148" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 6, 0, 6) - -[node name="Node3D149" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 2, 0, 10) - -[node name="Node3D150" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 6, 0, 10) - -[node name="Node3D151" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 10, 0, 2) - -[node name="Node3D152" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 10, 0, 6) - -[node name="Node3D153" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 10, 0, 10) - -[node name="Node3D154" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 14, 0, 2) - -[node name="Node3D155" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 14, 0, 6) - -[node name="Node3D156" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 18, 0, 2) - -[node name="Node3D157" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 18, 0, 6) - -[node name="Node3D158" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 14, 0, 10) - -[node name="Node3D159" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 18, 0, 10) - -[node name="Node3D160" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 22, 0, 2) - -[node name="Node3D161" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 22, 0, 6) - -[node name="Node3D162" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 22, 0, 10) - -[node name="Node3D163" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 2, 0, 14) - -[node name="Node3D164" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 2, 0, 18) - -[node name="Node3D165" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 6, 0, 14) - -[node name="Node3D166" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 6, 0, 18) - -[node name="Node3D167" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 2, 0, 22) - -[node name="Node3D168" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 6, 0, 22) - -[node name="Node3D169" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 10, 0, 14) - -[node name="Node3D170" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 10, 0, 18) - -[node name="Node3D171" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 10, 0, 22) - -[node name="Node3D172" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 14, 0, 14) - -[node name="Node3D173" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 14, 0, 18) - -[node name="Node3D174" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 18, 0, 14) - -[node name="Node3D175" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 18, 0, 18) - -[node name="Node3D176" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 14, 0, 22) - -[node name="Node3D177" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 18, 0, 22) - -[node name="Node3D178" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 22, 0, 14) - -[node name="Node3D179" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 22, 0, 18) - -[node name="Node3D180" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 22, 0, 22) - -[node name="Node3D181" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 26, 0, 2) - -[node name="Node3D182" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 26, 0, 6) - -[node name="Node3D183" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 30, 0, 2) - -[node name="Node3D184" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 30, 0, 6) - -[node name="Node3D185" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 26, 0, 10) - -[node name="Node3D186" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 30, 0, 10) - -[node name="Node3D187" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 34, 0, 2) - -[node name="Node3D188" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 34, 0, 6) - -[node name="Node3D189" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 34, 0, 10) - -[node name="Node3D190" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 38, 0, 2) - -[node name="Node3D191" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 38, 0, 6) - -[node name="Node3D192" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 42, 0, 2) - -[node name="Node3D193" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 42, 0, 6) - -[node name="Node3D194" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 38, 0, 10) - -[node name="Node3D195" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 42, 0, 10) - -[node name="Node3D196" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 46, 0, 2) - -[node name="Node3D197" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 46, 0, 6) - -[node name="Node3D198" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 46, 0, 10) - -[node name="Node3D199" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 26, 0, 14) - -[node name="Node3D200" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 26, 0, 18) - -[node name="Node3D201" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 30, 0, 14) - -[node name="Node3D202" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 30, 0, 18) - -[node name="Node3D203" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 26, 0, 22) - -[node name="Node3D204" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 30, 0, 22) - -[node name="Node3D205" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 34, 0, 14) - -[node name="Node3D206" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 34, 0, 18) - -[node name="Node3D207" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 34, 0, 22) - -[node name="Node3D208" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 38, 0, 14) - -[node name="Node3D209" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 38, 0, 18) - -[node name="Node3D210" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 42, 0, 14) - -[node name="Node3D211" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 42, 0, 18) - -[node name="Node3D212" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 38, 0, 22) - -[node name="Node3D213" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 42, 0, 22) - -[node name="Node3D214" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 46, 0, 14) - -[node name="Node3D215" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 46, 0, 18) - -[node name="Node3D216" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 46, 0, 22) - -[node name="Node3D217" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 2, 0, 26) - -[node name="Node3D218" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 2, 0, 30) - -[node name="Node3D219" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 6, 0, 26) - -[node name="Node3D220" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 6, 0, 30) - -[node name="Node3D221" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 2, 0, 34) - -[node name="Node3D222" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 6, 0, 34) - -[node name="Node3D223" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 10, 0, 26) - -[node name="Node3D224" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 10, 0, 30) - -[node name="Node3D225" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 10, 0, 34) - -[node name="Node3D226" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 14, 0, 26) - -[node name="Node3D227" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 14, 0, 30) - -[node name="Node3D228" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 18, 0, 26) - -[node name="Node3D229" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 18, 0, 30) - -[node name="Node3D230" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 14, 0, 34) - -[node name="Node3D231" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 18, 0, 34) - -[node name="Node3D232" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 22, 0, 26) - -[node name="Node3D233" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 22, 0, 30) - -[node name="Node3D234" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 22, 0, 34) - -[node name="Node3D235" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 2, 0, 38) - -[node name="Node3D236" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 2, 0, 42) - -[node name="Node3D237" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 6, 0, 38) - -[node name="Node3D238" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 6, 0, 42) - -[node name="Node3D239" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 2, 0, 46) - -[node name="Node3D240" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 6, 0, 46) - -[node name="Node3D241" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 10, 0, 38) - -[node name="Node3D242" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 10, 0, 42) - -[node name="Node3D243" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 10, 0, 46) - -[node name="Node3D244" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 14, 0, 38) - -[node name="Node3D245" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 14, 0, 42) - -[node name="Node3D246" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 18, 0, 38) - -[node name="Node3D247" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 18, 0, 42) - -[node name="Node3D248" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 14, 0, 46) - -[node name="Node3D249" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 18, 0, 46) - -[node name="Node3D250" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 22, 0, 38) - -[node name="Node3D251" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 22, 0, 42) - -[node name="Node3D252" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 22, 0, 46) - -[node name="Node3D253" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 26, 0, 26) - -[node name="Node3D254" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 26, 0, 30) - -[node name="Node3D255" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 30, 0, 26) - -[node name="Node3D256" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 30, 0, 30) - -[node name="Node3D257" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 26, 0, 34) - -[node name="Node3D258" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 30, 0, 34) - -[node name="Node3D259" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 34, 0, 26) - -[node name="Node3D260" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 34, 0, 30) - -[node name="Node3D261" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 34, 0, 34) - -[node name="Node3D262" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 38, 0, 26) - -[node name="Node3D263" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 38, 0, 30) - -[node name="Node3D264" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 42, 0, 26) - -[node name="Node3D265" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 42, 0, 30) - -[node name="Node3D266" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 38, 0, 34) - -[node name="Node3D267" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 42, 0, 34) - -[node name="Node3D268" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 46, 0, 26) - -[node name="Node3D269" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 46, 0, 30) - -[node name="Node3D270" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 46, 0, 34) - -[node name="Node3D271" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 26, 0, 38) - -[node name="Node3D272" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 26, 0, 42) - -[node name="Node3D273" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 30, 0, 38) - -[node name="Node3D274" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 30, 0, 42) - -[node name="Node3D275" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 26, 0, 46) - -[node name="Node3D276" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 30, 0, 46) - -[node name="Node3D277" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 34, 0, 38) - -[node name="Node3D278" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 34, 0, 42) - -[node name="Node3D279" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 34, 0, 46) - -[node name="Node3D280" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 38, 0, 38) - -[node name="Node3D281" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 38, 0, 42) - -[node name="Node3D282" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 42, 0, 38) - -[node name="Node3D283" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 42, 0, 42) - -[node name="Node3D284" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 38, 0, 46) - -[node name="Node3D285" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 42, 0, 46) - -[node name="Node3D286" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 46, 0, 38) - -[node name="Node3D287" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 46, 0, 42) - -[node name="Node3D288" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 46, 0, 46) - -[node name="Node3D289" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 2, 0, 50) - -[node name="Node3D290" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 2, 0, 54) - -[node name="Node3D291" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 6, 0, 50) - -[node name="Node3D292" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 6, 0, 54) - -[node name="Node3D293" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 2, 0, 58) - -[node name="Node3D294" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 6, 0, 58) - -[node name="Node3D295" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 10, 0, 50) - -[node name="Node3D296" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 10, 0, 54) - -[node name="Node3D297" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 10, 0, 58) - -[node name="Node3D298" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 14, 0, 50) - -[node name="Node3D299" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 14, 0, 54) - -[node name="Node3D300" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 18, 0, 50) - -[node name="Node3D301" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 18, 0, 54) - -[node name="Node3D302" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 14, 0, 58) - -[node name="Node3D303" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 18, 0, 58) - -[node name="Node3D304" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 22, 0, 50) - -[node name="Node3D305" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 22, 0, 54) - -[node name="Node3D306" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 22, 0, 58) - -[node name="Node3D307" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 2, 0, 62) - -[node name="Node3D308" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 2, 0, 66) - -[node name="Node3D309" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 6, 0, 62) - -[node name="Node3D310" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 6, 0, 66) - -[node name="Node3D311" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 2, 0, 70) - -[node name="Node3D312" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 6, 0, 70) - -[node name="Node3D313" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 10, 0, 62) - -[node name="Node3D314" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 10, 0, 66) - -[node name="Node3D315" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 10, 0, 70) - -[node name="Node3D316" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 14, 0, 62) - -[node name="Node3D317" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 14, 0, 66) - -[node name="Node3D318" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 18, 0, 62) - -[node name="Node3D319" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 18, 0, 66) - -[node name="Node3D320" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 14, 0, 70) - -[node name="Node3D321" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 18, 0, 70) - -[node name="Node3D322" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 22, 0, 62) - -[node name="Node3D323" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 22, 0, 66) - -[node name="Node3D324" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 22, 0, 70) - -[node name="Node3D325" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 26, 0, 50) - -[node name="Node3D326" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 26, 0, 54) - -[node name="Node3D327" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 30, 0, 50) - -[node name="Node3D328" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 30, 0, 54) - -[node name="Node3D329" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 26, 0, 58) - -[node name="Node3D330" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 30, 0, 58) - -[node name="Node3D331" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 34, 0, 50) - -[node name="Node3D332" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 34, 0, 54) - -[node name="Node3D333" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 34, 0, 58) - -[node name="Node3D334" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 38, 0, 50) - -[node name="Node3D335" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 38, 0, 54) - -[node name="Node3D336" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 42, 0, 50) - -[node name="Node3D337" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 42, 0, 54) - -[node name="Node3D338" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 38, 0, 58) - -[node name="Node3D339" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 42, 0, 58) - -[node name="Node3D340" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 46, 0, 50) - -[node name="Node3D341" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 46, 0, 54) - -[node name="Node3D342" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 46, 0, 58) - -[node name="Node3D343" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 26, 0, 62) - -[node name="Node3D344" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 26, 0, 66) - -[node name="Node3D345" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 30, 0, 62) - -[node name="Node3D346" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 30, 0, 66) - -[node name="Node3D347" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 26, 0, 70) - -[node name="Node3D348" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 30, 0, 70) - -[node name="Node3D349" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 34, 0, 62) - -[node name="Node3D350" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 34, 0, 66) - -[node name="Node3D351" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 34, 0, 70) - -[node name="Node3D352" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 38, 0, 62) - -[node name="Node3D353" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 38, 0, 66) - -[node name="Node3D354" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 42, 0, 62) - -[node name="Node3D355" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 42, 0, 66) - -[node name="Node3D356" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 38, 0, 70) - -[node name="Node3D357" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 42, 0, 70) - -[node name="Node3D358" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 46, 0, 62) - -[node name="Node3D359" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 46, 0, 66) - -[node name="Node3D360" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 46, 0, 70) - -[node name="Node3D361" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 2, 0, 74) - -[node name="Node3D362" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 2, 0, 78) - -[node name="Node3D363" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 6, 0, 74) - -[node name="Node3D364" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 6, 0, 78) - -[node name="Node3D365" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 2, 0, 82) - -[node name="Node3D366" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 6, 0, 82) - -[node name="Node3D367" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 10, 0, 74) - -[node name="Node3D368" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 10, 0, 78) - -[node name="Node3D369" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 10, 0, 82) - -[node name="Node3D370" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 14, 0, 74) - -[node name="Node3D371" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 14, 0, 78) - -[node name="Node3D372" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 18, 0, 74) - -[node name="Node3D373" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 18, 0, 78) - -[node name="Node3D374" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 14, 0, 82) - -[node name="Node3D375" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 18, 0, 82) - -[node name="Node3D376" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 22, 0, 74) - -[node name="Node3D377" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 22, 0, 78) - -[node name="Node3D378" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 22, 0, 82) - -[node name="Node3D397" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 26, 0, 74) - -[node name="Node3D398" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 26, 0, 78) - -[node name="Node3D399" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 30, 0, 74) - -[node name="Node3D400" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 30, 0, 78) - -[node name="Node3D401" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 26, 0, 82) - -[node name="Node3D402" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 30, 0, 82) - -[node name="Node3D403" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 34, 0, 74) - -[node name="Node3D404" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 34, 0, 78) - -[node name="Node3D405" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 34, 0, 82) - -[node name="Node3D406" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 38, 0, 74) - -[node name="Node3D407" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 38, 0, 78) - -[node name="Node3D408" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 42, 0, 74) - -[node name="Node3D409" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 42, 0, 78) - -[node name="Node3D410" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 38, 0, 82) - -[node name="Node3D411" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 42, 0, 82) - -[node name="Node3D412" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 46, 0, 74) - -[node name="Node3D413" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 46, 0, 78) - -[node name="Node3D414" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 46, 0, 82) - -[node name="Node3D433" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 2, 0, 50) - -[node name="Node3D434" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 2, 0, 54) - -[node name="Node3D435" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 6, 0, 50) - -[node name="Node3D436" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 6, 0, 54) - -[node name="Node3D437" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 2, 0, 58) - -[node name="Node3D438" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 6, 0, 58) - -[node name="Node3D439" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 10, 0, 50) - -[node name="Node3D440" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 10, 0, 54) - -[node name="Node3D441" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 10, 0, 58) - -[node name="Node3D442" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 14, 0, 50) - -[node name="Node3D443" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 14, 0, 54) - -[node name="Node3D444" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 18, 0, 50) - -[node name="Node3D445" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 18, 0, 54) - -[node name="Node3D446" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 14, 0, 58) - -[node name="Node3D447" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 18, 0, 58) - -[node name="Node3D448" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 22, 0, 50) - -[node name="Node3D449" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 22, 0, 54) - -[node name="Node3D450" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 22, 0, 58) - -[node name="Node3D451" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 2, 0, 62) - -[node name="Node3D452" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 2, 0, 66) - -[node name="Node3D453" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 6, 0, 62) - -[node name="Node3D454" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 6, 0, 66) - -[node name="Node3D455" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 2, 0, 70) - -[node name="Node3D456" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 6, 0, 70) - -[node name="Node3D457" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 10, 0, 62) - -[node name="Node3D458" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 10, 0, 66) - -[node name="Node3D459" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 10, 0, 70) - -[node name="Node3D460" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 14, 0, 62) - -[node name="Node3D461" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 14, 0, 66) - -[node name="Node3D462" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 18, 0, 62) - -[node name="Node3D463" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 18, 0, 66) - -[node name="Node3D464" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 14, 0, 70) - -[node name="Node3D465" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 18, 0, 70) - -[node name="Node3D466" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 22, 0, 62) - -[node name="Node3D467" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 22, 0, 66) - -[node name="Node3D468" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 22, 0, 70) - -[node name="Node3D469" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 26, 0, 50) - -[node name="Node3D470" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 26, 0, 54) - -[node name="Node3D471" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 30, 0, 50) - -[node name="Node3D472" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 30, 0, 54) - -[node name="Node3D473" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 26, 0, 58) - -[node name="Node3D474" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 30, 0, 58) - -[node name="Node3D475" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 34, 0, 50) - -[node name="Node3D476" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 34, 0, 54) - -[node name="Node3D477" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 34, 0, 58) - -[node name="Node3D478" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 38, 0, 50) - -[node name="Node3D479" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 38, 0, 54) - -[node name="Node3D480" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 42, 0, 50) - -[node name="Node3D481" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 42, 0, 54) - -[node name="Node3D482" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 38, 0, 58) - -[node name="Node3D483" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 42, 0, 58) - -[node name="Node3D484" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 46, 0, 50) - -[node name="Node3D485" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 46, 0, 54) - -[node name="Node3D486" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 46, 0, 58) - -[node name="Node3D487" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 26, 0, 62) - -[node name="Node3D488" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 26, 0, 66) - -[node name="Node3D489" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 30, 0, 62) - -[node name="Node3D490" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 30, 0, 66) - -[node name="Node3D491" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 26, 0, 70) - -[node name="Node3D492" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 30, 0, 70) - -[node name="Node3D493" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 34, 0, 62) - -[node name="Node3D494" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 34, 0, 66) - -[node name="Node3D495" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 34, 0, 70) - -[node name="Node3D496" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 38, 0, 62) - -[node name="Node3D497" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 38, 0, 66) - -[node name="Node3D498" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 42, 0, 62) - -[node name="Node3D499" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 42, 0, 66) - -[node name="Node3D500" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 38, 0, 70) - -[node name="Node3D501" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 42, 0, 70) - -[node name="Node3D502" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 46, 0, 62) - -[node name="Node3D503" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 46, 0, 66) - -[node name="Node3D504" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 46, 0, 70) - -[node name="Node3D505" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 2, 0, 74) - -[node name="Node3D506" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 2, 0, 78) - -[node name="Node3D507" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 6, 0, 74) - -[node name="Node3D508" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 6, 0, 78) - -[node name="Node3D509" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 2, 0, 82) - -[node name="Node3D510" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 6, 0, 82) - -[node name="Node3D511" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 10, 0, 74) - -[node name="Node3D512" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 10, 0, 78) - -[node name="Node3D513" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 10, 0, 82) - -[node name="Node3D514" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 14, 0, 74) - -[node name="Node3D515" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 14, 0, 78) - -[node name="Node3D516" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 18, 0, 74) - -[node name="Node3D517" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 18, 0, 78) - -[node name="Node3D518" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 14, 0, 82) - -[node name="Node3D519" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 18, 0, 82) - -[node name="Node3D520" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 22, 0, 74) - -[node name="Node3D521" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 22, 0, 78) - -[node name="Node3D522" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 22, 0, 82) - -[node name="Node3D541" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 26, 0, 74) - -[node name="Node3D542" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 26, 0, 78) - -[node name="Node3D543" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 30, 0, 74) - -[node name="Node3D544" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 30, 0, 78) - -[node name="Node3D545" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 26, 0, 82) - -[node name="Node3D546" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 30, 0, 82) - -[node name="Node3D547" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 34, 0, 74) - -[node name="Node3D548" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 34, 0, 78) - -[node name="Node3D549" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 34, 0, 82) - -[node name="Node3D550" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 38, 0, 74) - -[node name="Node3D551" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 38, 0, 78) - -[node name="Node3D552" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 42, 0, 74) - -[node name="Node3D553" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 42, 0, 78) - -[node name="Node3D554" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 38, 0, 82) - -[node name="Node3D555" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 42, 0, 82) - -[node name="Node3D556" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 46, 0, 74) - -[node name="Node3D557" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 46, 0, 78) - -[node name="Node3D558" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 46, 0, 82) - -[node name="Node3D577" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 50, 0, 2) - -[node name="Node3D578" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 50, 0, 6) - -[node name="Node3D579" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 54, 0, 2) - -[node name="Node3D580" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 54, 0, 6) - -[node name="Node3D581" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 50, 0, 10) - -[node name="Node3D582" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 54, 0, 10) - -[node name="Node3D583" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 58, 0, 2) - -[node name="Node3D584" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 58, 0, 6) - -[node name="Node3D585" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 58, 0, 10) - -[node name="Node3D586" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 62, 0, 2) - -[node name="Node3D587" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 62, 0, 6) - -[node name="Node3D588" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 66, 0, 2) - -[node name="Node3D589" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 66, 0, 6) - -[node name="Node3D590" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 62, 0, 10) - -[node name="Node3D591" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 66, 0, 10) - -[node name="Node3D592" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 70, 0, 2) - -[node name="Node3D593" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 70, 0, 6) - -[node name="Node3D594" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 70, 0, 10) - -[node name="Node3D595" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 50, 0, 14) - -[node name="Node3D596" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 50, 0, 18) - -[node name="Node3D597" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 54, 0, 14) - -[node name="Node3D598" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 54, 0, 18) - -[node name="Node3D599" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 50, 0, 22) - -[node name="Node3D600" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 54, 0, 22) - -[node name="Node3D601" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 58, 0, 14) - -[node name="Node3D602" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 58, 0, 18) - -[node name="Node3D603" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 58, 0, 22) - -[node name="Node3D604" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 62, 0, 14) - -[node name="Node3D605" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 62, 0, 18) - -[node name="Node3D606" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 66, 0, 14) - -[node name="Node3D607" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 66, 0, 18) - -[node name="Node3D608" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 62, 0, 22) - -[node name="Node3D609" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 66, 0, 22) - -[node name="Node3D610" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 70, 0, 14) - -[node name="Node3D611" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 70, 0, 18) - -[node name="Node3D612" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 70, 0, 22) - -[node name="Node3D613" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 74, 0, 2) - -[node name="Node3D614" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 74, 0, 6) - -[node name="Node3D615" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 78, 0, 2) - -[node name="Node3D616" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 78, 0, 6) - -[node name="Node3D617" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 74, 0, 10) - -[node name="Node3D618" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 78, 0, 10) - -[node name="Node3D619" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 82, 0, 2) - -[node name="Node3D620" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 82, 0, 6) - -[node name="Node3D621" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 82, 0, 10) - -[node name="Node3D622" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 86, 0, 2) - -[node name="Node3D623" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 86, 0, 6) - -[node name="Node3D624" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 90, 0, 2) - -[node name="Node3D625" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 90, 0, 6) - -[node name="Node3D626" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 86, 0, 10) - -[node name="Node3D627" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 90, 0, 10) - -[node name="Node3D628" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 94, 0, 2) - -[node name="Node3D629" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 94, 0, 6) - -[node name="Node3D630" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 94, 0, 10) - -[node name="Node3D631" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 74, 0, 14) - -[node name="Node3D632" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 74, 0, 18) - -[node name="Node3D633" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 78, 0, 14) - -[node name="Node3D634" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 78, 0, 18) - -[node name="Node3D635" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 74, 0, 22) - -[node name="Node3D636" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 78, 0, 22) - -[node name="Node3D637" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 82, 0, 14) - -[node name="Node3D638" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 82, 0, 18) - -[node name="Node3D639" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 82, 0, 22) - -[node name="Node3D640" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 86, 0, 14) - -[node name="Node3D641" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 86, 0, 18) - -[node name="Node3D642" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 90, 0, 14) - -[node name="Node3D643" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 90, 0, 18) - -[node name="Node3D644" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 86, 0, 22) - -[node name="Node3D645" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 90, 0, 22) - -[node name="Node3D646" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 94, 0, 14) - -[node name="Node3D647" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 94, 0, 18) - -[node name="Node3D648" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 94, 0, 22) - -[node name="Node3D649" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 50, 0, 26) - -[node name="Node3D650" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 50, 0, 30) - -[node name="Node3D651" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 54, 0, 26) - -[node name="Node3D652" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 54, 0, 30) - -[node name="Node3D653" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 50, 0, 34) - -[node name="Node3D654" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 54, 0, 34) - -[node name="Node3D655" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 58, 0, 26) - -[node name="Node3D656" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 58, 0, 30) - -[node name="Node3D657" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 58, 0, 34) - -[node name="Node3D658" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 62, 0, 26) - -[node name="Node3D659" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 62, 0, 30) - -[node name="Node3D660" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 66, 0, 26) - -[node name="Node3D661" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 66, 0, 30) - -[node name="Node3D662" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 62, 0, 34) - -[node name="Node3D663" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 66, 0, 34) - -[node name="Node3D664" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 70, 0, 26) - -[node name="Node3D665" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 70, 0, 30) - -[node name="Node3D666" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 70, 0, 34) - -[node name="Node3D667" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 50, 0, 38) - -[node name="Node3D668" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 50, 0, 42) - -[node name="Node3D669" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 54, 0, 38) - -[node name="Node3D670" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 54, 0, 42) - -[node name="Node3D671" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 50, 0, 46) - -[node name="Node3D672" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 54, 0, 46) - -[node name="Node3D673" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 58, 0, 38) - -[node name="Node3D674" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 58, 0, 42) - -[node name="Node3D675" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 58, 0, 46) - -[node name="Node3D676" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 62, 0, 38) - -[node name="Node3D677" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 62, 0, 42) - -[node name="Node3D678" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 66, 0, 38) - -[node name="Node3D679" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 66, 0, 42) - -[node name="Node3D680" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 62, 0, 46) - -[node name="Node3D681" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 66, 0, 46) - -[node name="Node3D682" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 70, 0, 38) - -[node name="Node3D683" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 70, 0, 42) - -[node name="Node3D684" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 70, 0, 46) - -[node name="Node3D685" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 74, 0, 26) - -[node name="Node3D686" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 74, 0, 30) - -[node name="Node3D687" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 78, 0, 26) - -[node name="Node3D688" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 78, 0, 30) - -[node name="Node3D689" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 74, 0, 34) - -[node name="Node3D690" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 78, 0, 34) - -[node name="Node3D691" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 82, 0, 26) - -[node name="Node3D692" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 82, 0, 30) - -[node name="Node3D693" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 82, 0, 34) - -[node name="Node3D694" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 86, 0, 26) - -[node name="Node3D695" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 86, 0, 30) - -[node name="Node3D696" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 90, 0, 26) - -[node name="Node3D697" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 90, 0, 30) - -[node name="Node3D698" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 86, 0, 34) - -[node name="Node3D699" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 90, 0, 34) - -[node name="Node3D700" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 94, 0, 26) - -[node name="Node3D701" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 94, 0, 30) - -[node name="Node3D702" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 94, 0, 34) - -[node name="Node3D703" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 74, 0, 38) - -[node name="Node3D704" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 74, 0, 42) - -[node name="Node3D705" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 78, 0, 38) - -[node name="Node3D706" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 78, 0, 42) - -[node name="Node3D707" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 74, 0, 46) - -[node name="Node3D708" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 78, 0, 46) - -[node name="Node3D709" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 82, 0, 38) - -[node name="Node3D710" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 82, 0, 42) - -[node name="Node3D711" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 82, 0, 46) - -[node name="Node3D712" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 86, 0, 38) - -[node name="Node3D713" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 86, 0, 42) - -[node name="Node3D714" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 90, 0, 38) - -[node name="Node3D715" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 90, 0, 42) - -[node name="Node3D716" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 86, 0, 46) - -[node name="Node3D717" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 90, 0, 46) - -[node name="Node3D718" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 94, 0, 38) - -[node name="Node3D719" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 94, 0, 42) - -[node name="Node3D720" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 94, 0, 46) - -[node name="Node3D721" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 50, 0, 2) - -[node name="Node3D722" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 50, 0, 6) - -[node name="Node3D723" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 54, 0, 2) - -[node name="Node3D724" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 54, 0, 6) - -[node name="Node3D725" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 50, 0, 10) - -[node name="Node3D726" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 54, 0, 10) - -[node name="Node3D727" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 58, 0, 2) - -[node name="Node3D728" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 58, 0, 6) - -[node name="Node3D729" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 58, 0, 10) - -[node name="Node3D730" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 62, 0, 2) - -[node name="Node3D731" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 62, 0, 6) - -[node name="Node3D732" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 66, 0, 2) - -[node name="Node3D733" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 66, 0, 6) - -[node name="Node3D734" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 62, 0, 10) - -[node name="Node3D735" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 66, 0, 10) - -[node name="Node3D736" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 70, 0, 2) - -[node name="Node3D737" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 70, 0, 6) - -[node name="Node3D738" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 70, 0, 10) - -[node name="Node3D739" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 50, 0, 14) - -[node name="Node3D740" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 50, 0, 18) - -[node name="Node3D741" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 54, 0, 14) - -[node name="Node3D742" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 54, 0, 18) - -[node name="Node3D743" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 50, 0, 22) - -[node name="Node3D744" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 54, 0, 22) - -[node name="Node3D745" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 58, 0, 14) - -[node name="Node3D746" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 58, 0, 18) - -[node name="Node3D747" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 58, 0, 22) - -[node name="Node3D748" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 62, 0, 14) - -[node name="Node3D749" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 62, 0, 18) - -[node name="Node3D750" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 66, 0, 14) - -[node name="Node3D751" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 66, 0, 18) - -[node name="Node3D752" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 62, 0, 22) - -[node name="Node3D753" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 66, 0, 22) - -[node name="Node3D754" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 70, 0, 14) - -[node name="Node3D755" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 70, 0, 18) - -[node name="Node3D756" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 70, 0, 22) - -[node name="Node3D757" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 74, 0, 2) - -[node name="Node3D758" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 74, 0, 6) - -[node name="Node3D759" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 78, 0, 2) - -[node name="Node3D760" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 78, 0, 6) - -[node name="Node3D761" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 74, 0, 10) - -[node name="Node3D762" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 78, 0, 10) - -[node name="Node3D763" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 82, 0, 2) - -[node name="Node3D764" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 82, 0, 6) - -[node name="Node3D765" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 82, 0, 10) - -[node name="Node3D766" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 86, 0, 2) - -[node name="Node3D767" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 86, 0, 6) - -[node name="Node3D768" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 90, 0, 2) - -[node name="Node3D769" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 90, 0, 6) - -[node name="Node3D770" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 86, 0, 10) - -[node name="Node3D771" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 90, 0, 10) - -[node name="Node3D772" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 94, 0, 2) - -[node name="Node3D773" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 94, 0, 6) - -[node name="Node3D774" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 94, 0, 10) - -[node name="Node3D775" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 74, 0, 14) - -[node name="Node3D776" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 74, 0, 18) - -[node name="Node3D777" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 78, 0, 14) - -[node name="Node3D778" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 78, 0, 18) - -[node name="Node3D779" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 74, 0, 22) - -[node name="Node3D780" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 78, 0, 22) - -[node name="Node3D781" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 82, 0, 14) - -[node name="Node3D782" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 82, 0, 18) - -[node name="Node3D783" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 82, 0, 22) - -[node name="Node3D784" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 86, 0, 14) - -[node name="Node3D785" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 86, 0, 18) - -[node name="Node3D786" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 90, 0, 14) - -[node name="Node3D787" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 90, 0, 18) - -[node name="Node3D788" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 86, 0, 22) - -[node name="Node3D789" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 90, 0, 22) - -[node name="Node3D790" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 94, 0, 14) - -[node name="Node3D791" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 94, 0, 18) - -[node name="Node3D792" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 94, 0, 22) - -[node name="Node3D793" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 50, 0, 26) - -[node name="Node3D794" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 50, 0, 30) - -[node name="Node3D795" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 54, 0, 26) - -[node name="Node3D796" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 54, 0, 30) - -[node name="Node3D797" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 50, 0, 34) - -[node name="Node3D798" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 54, 0, 34) - -[node name="Node3D799" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 58, 0, 26) - -[node name="Node3D800" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 58, 0, 30) - -[node name="Node3D801" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 58, 0, 34) - -[node name="Node3D802" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 62, 0, 26) - -[node name="Node3D803" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 62, 0, 30) - -[node name="Node3D804" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 66, 0, 26) - -[node name="Node3D805" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 66, 0, 30) - -[node name="Node3D806" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 62, 0, 34) - -[node name="Node3D807" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 66, 0, 34) - -[node name="Node3D808" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 70, 0, 26) - -[node name="Node3D809" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 70, 0, 30) - -[node name="Node3D810" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 70, 0, 34) - -[node name="Node3D811" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 50, 0, 38) - -[node name="Node3D812" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 50, 0, 42) - -[node name="Node3D813" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 54, 0, 38) - -[node name="Node3D814" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 54, 0, 42) - -[node name="Node3D815" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 50, 0, 46) - -[node name="Node3D816" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 54, 0, 46) - -[node name="Node3D817" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 58, 0, 38) - -[node name="Node3D818" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 58, 0, 42) - -[node name="Node3D819" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 58, 0, 46) - -[node name="Node3D820" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 62, 0, 38) - -[node name="Node3D821" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 62, 0, 42) - -[node name="Node3D822" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 66, 0, 38) - -[node name="Node3D823" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 66, 0, 42) - -[node name="Node3D824" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 62, 0, 46) - -[node name="Node3D825" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 66, 0, 46) - -[node name="Node3D826" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 70, 0, 38) - -[node name="Node3D827" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 70, 0, 42) - -[node name="Node3D828" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 70, 0, 46) - -[node name="Node3D829" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 74, 0, 26) - -[node name="Node3D830" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 74, 0, 30) - -[node name="Node3D831" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 78, 0, 26) - -[node name="Node3D832" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 78, 0, 30) - -[node name="Node3D833" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 74, 0, 34) - -[node name="Node3D834" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 78, 0, 34) - -[node name="Node3D835" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 82, 0, 26) - -[node name="Node3D836" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 82, 0, 30) - -[node name="Node3D837" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 82, 0, 34) - -[node name="Node3D838" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 86, 0, 26) - -[node name="Node3D839" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 86, 0, 30) - -[node name="Node3D840" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 90, 0, 26) - -[node name="Node3D841" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 90, 0, 30) - -[node name="Node3D842" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 86, 0, 34) - -[node name="Node3D843" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 90, 0, 34) - -[node name="Node3D844" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 94, 0, 26) - -[node name="Node3D845" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 94, 0, 30) - -[node name="Node3D846" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 94, 0, 34) - -[node name="Node3D847" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 74, 0, 38) - -[node name="Node3D848" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 74, 0, 42) - -[node name="Node3D849" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 78, 0, 38) - -[node name="Node3D850" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 78, 0, 42) - -[node name="Node3D851" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 74, 0, 46) - -[node name="Node3D852" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 78, 0, 46) - -[node name="Node3D853" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 82, 0, 38) - -[node name="Node3D854" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 82, 0, 42) - -[node name="Node3D855" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 82, 0, 46) - -[node name="Node3D856" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 86, 0, 38) - -[node name="Node3D857" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 86, 0, 42) - -[node name="Node3D858" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 90, 0, 38) - -[node name="Node3D859" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 90, 0, 42) - -[node name="Node3D860" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 86, 0, 46) - -[node name="Node3D861" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 90, 0, 46) - -[node name="Node3D862" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 94, 0, 38) - -[node name="Node3D863" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 94, 0, 42) - -[node name="Node3D864" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 94, 0, 46) - -[node name="Node3D865" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 50, 0, 50) - -[node name="Node3D866" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 50, 0, 54) - -[node name="Node3D867" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 54, 0, 50) - -[node name="Node3D868" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 54, 0, 54) - -[node name="Node3D869" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 50, 0, 58) - -[node name="Node3D870" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 54, 0, 58) - -[node name="Node3D871" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 58, 0, 50) - -[node name="Node3D872" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 58, 0, 54) - -[node name="Node3D873" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 58, 0, 58) - -[node name="Node3D874" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 62, 0, 50) - -[node name="Node3D875" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 62, 0, 54) - -[node name="Node3D876" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 66, 0, 50) - -[node name="Node3D877" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 66, 0, 54) - -[node name="Node3D878" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 62, 0, 58) - -[node name="Node3D879" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 66, 0, 58) - -[node name="Node3D880" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 70, 0, 50) - -[node name="Node3D881" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 70, 0, 54) - -[node name="Node3D882" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 70, 0, 58) - -[node name="Node3D883" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 50, 0, 62) - -[node name="Node3D884" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 50, 0, 66) - -[node name="Node3D885" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 54, 0, 62) - -[node name="Node3D886" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 54, 0, 66) - -[node name="Node3D887" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 50, 0, 70) - -[node name="Node3D888" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 54, 0, 70) - -[node name="Node3D889" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 58, 0, 62) - -[node name="Node3D890" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 58, 0, 66) - -[node name="Node3D891" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 58, 0, 70) - -[node name="Node3D892" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 62, 0, 62) - -[node name="Node3D893" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 62, 0, 66) - -[node name="Node3D894" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 66, 0, 62) - -[node name="Node3D895" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 66, 0, 66) - -[node name="Node3D896" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 62, 0, 70) - -[node name="Node3D897" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 66, 0, 70) - -[node name="Node3D898" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 70, 0, 62) - -[node name="Node3D899" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 70, 0, 66) - -[node name="Node3D900" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 70, 0, 70) - -[node name="Node3D901" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 74, 0, 50) - -[node name="Node3D902" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 74, 0, 54) - -[node name="Node3D903" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 78, 0, 50) - -[node name="Node3D904" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 78, 0, 54) - -[node name="Node3D905" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 74, 0, 58) - -[node name="Node3D906" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 78, 0, 58) - -[node name="Node3D907" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 82, 0, 50) - -[node name="Node3D908" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 82, 0, 54) - -[node name="Node3D909" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 82, 0, 58) - -[node name="Node3D910" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 86, 0, 50) - -[node name="Node3D911" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 86, 0, 54) - -[node name="Node3D912" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 90, 0, 50) - -[node name="Node3D913" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 90, 0, 54) - -[node name="Node3D914" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 86, 0, 58) - -[node name="Node3D915" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 90, 0, 58) - -[node name="Node3D916" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 94, 0, 50) - -[node name="Node3D917" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 94, 0, 54) - -[node name="Node3D918" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 94, 0, 58) - -[node name="Node3D919" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 74, 0, 62) - -[node name="Node3D920" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 74, 0, 66) - -[node name="Node3D921" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 78, 0, 62) - -[node name="Node3D922" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 78, 0, 66) - -[node name="Node3D923" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 74, 0, 70) - -[node name="Node3D924" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 78, 0, 70) - -[node name="Node3D925" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 82, 0, 62) - -[node name="Node3D926" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 82, 0, 66) - -[node name="Node3D927" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 82, 0, 70) - -[node name="Node3D928" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 86, 0, 62) - -[node name="Node3D929" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 86, 0, 66) - -[node name="Node3D930" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 90, 0, 62) - -[node name="Node3D931" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 90, 0, 66) - -[node name="Node3D932" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 86, 0, 70) - -[node name="Node3D933" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 90, 0, 70) - -[node name="Node3D934" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 94, 0, 62) - -[node name="Node3D935" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 94, 0, 66) - -[node name="Node3D936" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 94, 0, 70) - -[node name="Node3D937" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 50, 0, 74) - -[node name="Node3D938" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 50, 0, 78) - -[node name="Node3D939" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 54, 0, 74) - -[node name="Node3D940" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 54, 0, 78) - -[node name="Node3D941" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 50, 0, 82) - -[node name="Node3D942" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 54, 0, 82) - -[node name="Node3D943" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 58, 0, 74) - -[node name="Node3D944" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 58, 0, 78) - -[node name="Node3D945" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 58, 0, 82) - -[node name="Node3D946" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 62, 0, 74) - -[node name="Node3D947" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 62, 0, 78) - -[node name="Node3D948" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 66, 0, 74) - -[node name="Node3D949" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 66, 0, 78) - -[node name="Node3D950" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 62, 0, 82) - -[node name="Node3D951" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 66, 0, 82) - -[node name="Node3D952" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 70, 0, 74) - -[node name="Node3D953" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 70, 0, 78) - -[node name="Node3D954" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 70, 0, 82) - -[node name="Node3D973" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 74, 0, 74) - -[node name="Node3D974" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 74, 0, 78) - -[node name="Node3D975" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 78, 0, 74) - -[node name="Node3D976" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 78, 0, 78) - -[node name="Node3D977" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 74, 0, 82) - -[node name="Node3D978" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 78, 0, 82) - -[node name="Node3D979" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 82, 0, 74) - -[node name="Node3D980" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 82, 0, 78) - -[node name="Node3D981" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 82, 0, 82) - -[node name="Node3D982" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 86, 0, 74) - -[node name="Node3D983" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 86, 0, 78) - -[node name="Node3D984" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 90, 0, 74) - -[node name="Node3D985" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 90, 0, 78) - -[node name="Node3D986" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 86, 0, 82) - -[node name="Node3D987" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 90, 0, 82) - -[node name="Node3D988" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 94, 0, 74) - -[node name="Node3D989" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 94, 0, 78) - -[node name="Node3D990" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 94, 0, 82) - -[node name="Node3D1009" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 50, 0, 50) - -[node name="Node3D1010" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 50, 0, 54) - -[node name="Node3D1011" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 54, 0, 50) - -[node name="Node3D1012" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 54, 0, 54) - -[node name="Node3D1013" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 50, 0, 58) - -[node name="Node3D1014" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 54, 0, 58) - -[node name="Node3D1015" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 58, 0, 50) - -[node name="Node3D1016" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 58, 0, 54) - -[node name="Node3D1017" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 58, 0, 58) - -[node name="Node3D1018" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 62, 0, 50) - -[node name="Node3D1019" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 62, 0, 54) - -[node name="Node3D1020" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 66, 0, 50) - -[node name="Node3D1021" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 66, 0, 54) - -[node name="Node3D1022" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 62, 0, 58) - -[node name="Node3D1023" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 66, 0, 58) - -[node name="Node3D1024" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 70, 0, 50) - -[node name="Node3D1025" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 70, 0, 54) - -[node name="Node3D1026" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 70, 0, 58) - -[node name="Node3D1027" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 50, 0, 62) - -[node name="Node3D1028" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 50, 0, 66) - -[node name="Node3D1029" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 54, 0, 62) - -[node name="Node3D1030" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 54, 0, 66) - -[node name="Node3D1031" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 50, 0, 70) - -[node name="Node3D1032" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 54, 0, 70) - -[node name="Node3D1033" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 58, 0, 62) - -[node name="Node3D1034" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 58, 0, 66) - -[node name="Node3D1035" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 58, 0, 70) - -[node name="Node3D1036" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 62, 0, 62) - -[node name="Node3D1037" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 62, 0, 66) - -[node name="Node3D1038" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 66, 0, 62) - -[node name="Node3D1039" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 66, 0, 66) - -[node name="Node3D1040" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 62, 0, 70) - -[node name="Node3D1041" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 66, 0, 70) - -[node name="Node3D1042" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 70, 0, 62) - -[node name="Node3D1043" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 70, 0, 66) - -[node name="Node3D1044" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 70, 0, 70) - -[node name="Node3D1045" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 74, 0, 50) - -[node name="Node3D1046" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 74, 0, 54) - -[node name="Node3D1047" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 78, 0, 50) - -[node name="Node3D1048" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 78, 0, 54) - -[node name="Node3D1049" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 74, 0, 58) - -[node name="Node3D1050" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 78, 0, 58) - -[node name="Node3D1051" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 82, 0, 50) - -[node name="Node3D1052" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 82, 0, 54) - -[node name="Node3D1053" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 82, 0, 58) - -[node name="Node3D1054" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 86, 0, 50) - -[node name="Node3D1055" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 86, 0, 54) - -[node name="Node3D1056" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 90, 0, 50) - -[node name="Node3D1057" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 90, 0, 54) - -[node name="Node3D1058" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 86, 0, 58) - -[node name="Node3D1059" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 90, 0, 58) - -[node name="Node3D1060" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 94, 0, 50) - -[node name="Node3D1061" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 94, 0, 54) - -[node name="Node3D1062" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 94, 0, 58) - -[node name="Node3D1063" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 74, 0, 62) - -[node name="Node3D1064" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 74, 0, 66) - -[node name="Node3D1065" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 78, 0, 62) - -[node name="Node3D1066" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 78, 0, 66) - -[node name="Node3D1067" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 74, 0, 70) - -[node name="Node3D1068" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 78, 0, 70) - -[node name="Node3D1069" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 82, 0, 62) - -[node name="Node3D1070" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 82, 0, 66) - -[node name="Node3D1071" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 82, 0, 70) - -[node name="Node3D1072" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 86, 0, 62) - -[node name="Node3D1073" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 86, 0, 66) - -[node name="Node3D1074" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 90, 0, 62) - -[node name="Node3D1075" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 90, 0, 66) - -[node name="Node3D1076" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 86, 0, 70) - -[node name="Node3D1077" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 90, 0, 70) - -[node name="Node3D1078" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 94, 0, 62) - -[node name="Node3D1079" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 94, 0, 66) - -[node name="Node3D1080" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 94, 0, 70) - -[node name="Node3D1081" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 50, 0, 74) - -[node name="Node3D1082" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 50, 0, 78) - -[node name="Node3D1083" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 54, 0, 74) - -[node name="Node3D1084" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 54, 0, 78) - -[node name="Node3D1085" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 50, 0, 82) - -[node name="Node3D1086" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 54, 0, 82) - -[node name="Node3D1087" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 58, 0, 74) - -[node name="Node3D1088" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 58, 0, 78) - -[node name="Node3D1089" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 58, 0, 82) - -[node name="Node3D1090" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 62, 0, 74) - -[node name="Node3D1091" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 62, 0, 78) - -[node name="Node3D1092" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 66, 0, 74) - -[node name="Node3D1093" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 66, 0, 78) - -[node name="Node3D1094" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 62, 0, 82) - -[node name="Node3D1095" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 66, 0, 82) - -[node name="Node3D1096" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 70, 0, 74) - -[node name="Node3D1097" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 70, 0, 78) - -[node name="Node3D1098" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 70, 0, 82) - -[node name="Node3D1117" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 74, 0, 74) - -[node name="Node3D1118" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 74, 0, 78) - -[node name="Node3D1119" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 78, 0, 74) - -[node name="Node3D1120" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 78, 0, 78) - -[node name="Node3D1121" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 74, 0, 82) - -[node name="Node3D1122" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 78, 0, 82) - -[node name="Node3D1123" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 82, 0, 74) - -[node name="Node3D1124" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 82, 0, 78) - -[node name="Node3D1125" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 82, 0, 82) - -[node name="Node3D1126" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 86, 0, 74) - -[node name="Node3D1127" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 86, 0, 78) - -[node name="Node3D1128" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 90, 0, 74) - -[node name="Node3D1129" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 90, 0, 78) - -[node name="Node3D1130" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 86, 0, 82) - -[node name="Node3D1131" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 90, 0, 82) - -[node name="Node3D1132" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 94, 0, 74) - -[node name="Node3D1133" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 94, 0, 78) - -[node name="Node3D1134" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 94, 0, 82) - -[node name="Node3D379" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 98, 0, 2) - -[node name="Node3D380" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 98, 0, 6) - -[node name="Node3D381" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 102, 0, 2) - -[node name="Node3D382" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 102, 0, 6) - -[node name="Node3D383" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 98, 0, 10) - -[node name="Node3D384" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 102, 0, 10) - -[node name="Node3D385" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 106, 0, 2) - -[node name="Node3D386" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 106, 0, 6) - -[node name="Node3D387" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 106, 0, 10) - -[node name="Node3D388" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 110, 0, 2) - -[node name="Node3D389" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 110, 0, 6) - -[node name="Node3D390" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 114, 0, 2) - -[node name="Node3D391" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 114, 0, 6) - -[node name="Node3D392" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 110, 0, 10) - -[node name="Node3D393" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 114, 0, 10) - -[node name="Node3D394" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 118, 0, 2) - -[node name="Node3D395" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 118, 0, 6) - -[node name="Node3D396" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 118, 0, 10) - -[node name="Node3D415" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 98, 0, 14) - -[node name="Node3D416" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 98, 0, 18) - -[node name="Node3D417" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 102, 0, 14) - -[node name="Node3D418" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 102, 0, 18) - -[node name="Node3D419" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 98, 0, 22) - -[node name="Node3D420" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 102, 0, 22) - -[node name="Node3D421" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 106, 0, 14) - -[node name="Node3D422" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 106, 0, 18) - -[node name="Node3D423" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 106, 0, 22) - -[node name="Node3D424" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 110, 0, 14) - -[node name="Node3D425" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 110, 0, 18) - -[node name="Node3D426" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 114, 0, 14) - -[node name="Node3D427" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 114, 0, 18) - -[node name="Node3D428" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 110, 0, 22) - -[node name="Node3D429" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 114, 0, 22) - -[node name="Node3D430" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 118, 0, 14) - -[node name="Node3D431" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 118, 0, 18) - -[node name="Node3D432" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 118, 0, 22) - -[node name="Node3D523" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 122, 0, 2) - -[node name="Node3D524" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 122, 0, 6) - -[node name="Node3D525" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 126, 0, 2) - -[node name="Node3D526" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 126, 0, 6) - -[node name="Node3D527" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 122, 0, 10) - -[node name="Node3D528" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 126, 0, 10) - -[node name="Node3D529" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 130, 0, 2) - -[node name="Node3D530" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 130, 0, 6) - -[node name="Node3D531" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 130, 0, 10) - -[node name="Node3D532" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 134, 0, 2) - -[node name="Node3D533" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 134, 0, 6) - -[node name="Node3D534" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 138, 0, 2) - -[node name="Node3D535" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 138, 0, 6) - -[node name="Node3D536" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 134, 0, 10) - -[node name="Node3D537" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 138, 0, 10) - -[node name="Node3D538" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 142, 0, 2) - -[node name="Node3D539" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 142, 0, 6) - -[node name="Node3D540" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 142, 0, 10) - -[node name="Node3D559" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 122, 0, 14) - -[node name="Node3D560" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 122, 0, 18) - -[node name="Node3D561" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 126, 0, 14) - -[node name="Node3D562" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 126, 0, 18) - -[node name="Node3D563" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 122, 0, 22) - -[node name="Node3D564" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 126, 0, 22) - -[node name="Node3D565" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 130, 0, 14) - -[node name="Node3D566" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 130, 0, 18) - -[node name="Node3D567" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 130, 0, 22) - -[node name="Node3D568" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 134, 0, 14) - -[node name="Node3D569" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 134, 0, 18) - -[node name="Node3D570" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 138, 0, 14) - -[node name="Node3D571" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 138, 0, 18) - -[node name="Node3D572" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 134, 0, 22) - -[node name="Node3D573" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 138, 0, 22) - -[node name="Node3D574" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 142, 0, 14) - -[node name="Node3D575" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 142, 0, 18) - -[node name="Node3D576" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 142, 0, 22) - -[node name="Node3D955" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 98, 0, 26) - -[node name="Node3D956" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 98, 0, 30) - -[node name="Node3D957" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 102, 0, 26) - -[node name="Node3D958" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 102, 0, 30) - -[node name="Node3D959" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 98, 0, 34) - -[node name="Node3D960" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 102, 0, 34) - -[node name="Node3D961" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 106, 0, 26) - -[node name="Node3D962" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 106, 0, 30) - -[node name="Node3D963" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 106, 0, 34) - -[node name="Node3D964" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 110, 0, 26) - -[node name="Node3D965" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 110, 0, 30) - -[node name="Node3D966" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 114, 0, 26) - -[node name="Node3D967" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 114, 0, 30) - -[node name="Node3D968" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 110, 0, 34) - -[node name="Node3D969" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 114, 0, 34) - -[node name="Node3D970" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 118, 0, 26) - -[node name="Node3D971" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 118, 0, 30) - -[node name="Node3D972" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 118, 0, 34) - -[node name="Node3D991" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 98, 0, 38) - -[node name="Node3D992" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 98, 0, 42) - -[node name="Node3D993" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 102, 0, 38) - -[node name="Node3D994" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 102, 0, 42) - -[node name="Node3D995" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 98, 0, 46) - -[node name="Node3D996" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 102, 0, 46) - -[node name="Node3D997" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 106, 0, 38) - -[node name="Node3D998" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 106, 0, 42) - -[node name="Node3D999" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 106, 0, 46) - -[node name="Node3D1000" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 110, 0, 38) - -[node name="Node3D1001" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 110, 0, 42) - -[node name="Node3D1002" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 114, 0, 38) - -[node name="Node3D1003" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 114, 0, 42) - -[node name="Node3D1004" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 110, 0, 46) - -[node name="Node3D1005" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 114, 0, 46) - -[node name="Node3D1006" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 118, 0, 38) - -[node name="Node3D1007" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 118, 0, 42) - -[node name="Node3D1008" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 118, 0, 46) - -[node name="Node3D1099" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 122, 0, 26) - -[node name="Node3D1100" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 122, 0, 30) - -[node name="Node3D1101" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 126, 0, 26) - -[node name="Node3D1102" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 126, 0, 30) - -[node name="Node3D1103" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 122, 0, 34) - -[node name="Node3D1104" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 126, 0, 34) - -[node name="Node3D1105" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 130, 0, 26) - -[node name="Node3D1106" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 130, 0, 30) - -[node name="Node3D1107" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 130, 0, 34) - -[node name="Node3D1108" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 134, 0, 26) - -[node name="Node3D1109" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 134, 0, 30) - -[node name="Node3D1110" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 138, 0, 26) - -[node name="Node3D1111" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 138, 0, 30) - -[node name="Node3D1112" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 134, 0, 34) - -[node name="Node3D1113" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 138, 0, 34) - -[node name="Node3D1114" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 142, 0, 26) - -[node name="Node3D1115" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 142, 0, 30) - -[node name="Node3D1116" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 142, 0, 34) - -[node name="Node3D1135" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 122, 0, 38) - -[node name="Node3D1136" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 122, 0, 42) - -[node name="Node3D1137" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 126, 0, 38) - -[node name="Node3D1138" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 126, 0, 42) - -[node name="Node3D1139" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 122, 0, 46) - -[node name="Node3D1140" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 126, 0, 46) - -[node name="Node3D1141" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 130, 0, 38) - -[node name="Node3D1142" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 130, 0, 42) - -[node name="Node3D1143" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 130, 0, 46) - -[node name="Node3D1144" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 134, 0, 38) - -[node name="Node3D1145" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 134, 0, 42) - -[node name="Node3D1146" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 138, 0, 38) - -[node name="Node3D1147" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 138, 0, 42) - -[node name="Node3D1148" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 134, 0, 46) - -[node name="Node3D1149" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 138, 0, 46) - -[node name="Node3D1150" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 142, 0, 38) - -[node name="Node3D1151" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 142, 0, 42) - -[node name="Node3D1152" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 142, 0, 46) - -[node name="Node3D1153" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 98, 0, 2) - -[node name="Node3D1154" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 98, 0, 6) - -[node name="Node3D1155" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 102, 0, 2) - -[node name="Node3D1156" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 102, 0, 6) - -[node name="Node3D1157" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 98, 0, 10) - -[node name="Node3D1158" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 102, 0, 10) - -[node name="Node3D1159" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 106, 0, 2) - -[node name="Node3D1160" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 106, 0, 6) - -[node name="Node3D1161" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 106, 0, 10) - -[node name="Node3D1162" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 110, 0, 2) - -[node name="Node3D1163" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 110, 0, 6) - -[node name="Node3D1164" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 114, 0, 2) - -[node name="Node3D1165" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 114, 0, 6) - -[node name="Node3D1166" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 110, 0, 10) - -[node name="Node3D1167" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 114, 0, 10) - -[node name="Node3D1168" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 118, 0, 2) - -[node name="Node3D1169" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 118, 0, 6) - -[node name="Node3D1170" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 118, 0, 10) - -[node name="Node3D1171" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 98, 0, 14) - -[node name="Node3D1172" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 98, 0, 18) - -[node name="Node3D1173" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 102, 0, 14) - -[node name="Node3D1174" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 102, 0, 18) - -[node name="Node3D1175" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 98, 0, 22) - -[node name="Node3D1176" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 102, 0, 22) - -[node name="Node3D1177" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 106, 0, 14) - -[node name="Node3D1178" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 106, 0, 18) - -[node name="Node3D1179" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 106, 0, 22) - -[node name="Node3D1180" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 110, 0, 14) - -[node name="Node3D1181" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 110, 0, 18) - -[node name="Node3D1182" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 114, 0, 14) - -[node name="Node3D1183" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 114, 0, 18) - -[node name="Node3D1184" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 110, 0, 22) - -[node name="Node3D1185" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 114, 0, 22) - -[node name="Node3D1186" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 118, 0, 14) - -[node name="Node3D1187" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 118, 0, 18) - -[node name="Node3D1188" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 118, 0, 22) - -[node name="Node3D1189" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 122, 0, 2) - -[node name="Node3D1190" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 122, 0, 6) - -[node name="Node3D1191" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 126, 0, 2) - -[node name="Node3D1192" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 126, 0, 6) - -[node name="Node3D1193" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 122, 0, 10) - -[node name="Node3D1194" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 126, 0, 10) - -[node name="Node3D1195" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 130, 0, 2) - -[node name="Node3D1196" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 130, 0, 6) - -[node name="Node3D1197" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 130, 0, 10) - -[node name="Node3D1198" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 134, 0, 2) - -[node name="Node3D1199" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 134, 0, 6) - -[node name="Node3D1200" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 138, 0, 2) - -[node name="Node3D1201" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 138, 0, 6) - -[node name="Node3D1202" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 134, 0, 10) - -[node name="Node3D1203" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 138, 0, 10) - -[node name="Node3D1204" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 142, 0, 2) - -[node name="Node3D1205" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 142, 0, 6) - -[node name="Node3D1206" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 142, 0, 10) - -[node name="Node3D1207" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 122, 0, 14) - -[node name="Node3D1208" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 122, 0, 18) - -[node name="Node3D1209" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 126, 0, 14) - -[node name="Node3D1210" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 126, 0, 18) - -[node name="Node3D1211" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 122, 0, 22) - -[node name="Node3D1212" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 126, 0, 22) - -[node name="Node3D1213" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 130, 0, 14) - -[node name="Node3D1214" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 130, 0, 18) - -[node name="Node3D1215" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 130, 0, 22) - -[node name="Node3D1216" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 134, 0, 14) - -[node name="Node3D1217" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 134, 0, 18) - -[node name="Node3D1218" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 138, 0, 14) - -[node name="Node3D1219" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 138, 0, 18) - -[node name="Node3D1220" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 134, 0, 22) - -[node name="Node3D1221" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 138, 0, 22) - -[node name="Node3D1222" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 142, 0, 14) - -[node name="Node3D1223" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 142, 0, 18) - -[node name="Node3D1224" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 142, 0, 22) - -[node name="Node3D1225" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 98, 0, 26) - -[node name="Node3D1226" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 98, 0, 30) - -[node name="Node3D1227" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 102, 0, 26) - -[node name="Node3D1228" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 102, 0, 30) - -[node name="Node3D1229" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 98, 0, 34) - -[node name="Node3D1230" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 102, 0, 34) - -[node name="Node3D1231" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 106, 0, 26) - -[node name="Node3D1232" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 106, 0, 30) - -[node name="Node3D1233" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 106, 0, 34) - -[node name="Node3D1234" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 110, 0, 26) - -[node name="Node3D1235" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 110, 0, 30) - -[node name="Node3D1236" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 114, 0, 26) - -[node name="Node3D1237" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 114, 0, 30) - -[node name="Node3D1238" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 110, 0, 34) - -[node name="Node3D1239" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 114, 0, 34) - -[node name="Node3D1240" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 118, 0, 26) - -[node name="Node3D1241" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 118, 0, 30) - -[node name="Node3D1242" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 118, 0, 34) - -[node name="Node3D1243" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 98, 0, 38) - -[node name="Node3D1244" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 98, 0, 42) - -[node name="Node3D1245" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 102, 0, 38) - -[node name="Node3D1246" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 102, 0, 42) - -[node name="Node3D1247" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 98, 0, 46) - -[node name="Node3D1248" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 102, 0, 46) - -[node name="Node3D1249" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 106, 0, 38) - -[node name="Node3D1250" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 106, 0, 42) - -[node name="Node3D1251" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 106, 0, 46) - -[node name="Node3D1252" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 110, 0, 38) - -[node name="Node3D1253" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 110, 0, 42) - -[node name="Node3D1254" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 114, 0, 38) - -[node name="Node3D1255" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 114, 0, 42) - -[node name="Node3D1256" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 110, 0, 46) - -[node name="Node3D1257" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 114, 0, 46) - -[node name="Node3D1258" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 118, 0, 38) - -[node name="Node3D1259" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 118, 0, 42) - -[node name="Node3D1260" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 118, 0, 46) - -[node name="Node3D1261" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 122, 0, 26) - -[node name="Node3D1262" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 122, 0, 30) - -[node name="Node3D1263" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 126, 0, 26) - -[node name="Node3D1264" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 126, 0, 30) - -[node name="Node3D1265" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 122, 0, 34) - -[node name="Node3D1266" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 126, 0, 34) - -[node name="Node3D1267" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 130, 0, 26) - -[node name="Node3D1268" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 130, 0, 30) - -[node name="Node3D1269" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 130, 0, 34) - -[node name="Node3D1270" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 134, 0, 26) - -[node name="Node3D1271" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 134, 0, 30) - -[node name="Node3D1272" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 138, 0, 26) - -[node name="Node3D1273" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 138, 0, 30) - -[node name="Node3D1274" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 134, 0, 34) - -[node name="Node3D1275" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 138, 0, 34) - -[node name="Node3D1276" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 142, 0, 26) - -[node name="Node3D1277" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 142, 0, 30) - -[node name="Node3D1278" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 142, 0, 34) - -[node name="Node3D1279" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 122, 0, 38) - -[node name="Node3D1280" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 122, 0, 42) - -[node name="Node3D1281" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 126, 0, 38) - -[node name="Node3D1282" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 126, 0, 42) - -[node name="Node3D1283" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 122, 0, 46) - -[node name="Node3D1284" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 126, 0, 46) - -[node name="Node3D1285" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 130, 0, 38) - -[node name="Node3D1286" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 130, 0, 42) - -[node name="Node3D1287" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 130, 0, 46) - -[node name="Node3D1288" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 134, 0, 38) - -[node name="Node3D1289" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 134, 0, 42) - -[node name="Node3D1290" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 138, 0, 38) - -[node name="Node3D1291" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 138, 0, 42) - -[node name="Node3D1292" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 134, 0, 46) - -[node name="Node3D1293" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 138, 0, 46) - -[node name="Node3D1294" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 142, 0, 38) - -[node name="Node3D1295" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 142, 0, 42) - -[node name="Node3D1296" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 142, 0, 46) - -[node name="Node3D1297" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 98, 0, 50) - -[node name="Node3D1298" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 98, 0, 54) - -[node name="Node3D1299" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 102, 0, 50) - -[node name="Node3D1300" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 102, 0, 54) - -[node name="Node3D1301" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 98, 0, 58) - -[node name="Node3D1302" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 102, 0, 58) - -[node name="Node3D1303" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 106, 0, 50) - -[node name="Node3D1304" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 106, 0, 54) - -[node name="Node3D1305" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 106, 0, 58) - -[node name="Node3D1306" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 110, 0, 50) - -[node name="Node3D1307" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 110, 0, 54) - -[node name="Node3D1308" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 114, 0, 50) - -[node name="Node3D1309" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 114, 0, 54) - -[node name="Node3D1310" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 110, 0, 58) - -[node name="Node3D1311" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 114, 0, 58) - -[node name="Node3D1312" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 118, 0, 50) - -[node name="Node3D1313" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 118, 0, 54) - -[node name="Node3D1314" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 118, 0, 58) - -[node name="Node3D1315" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 98, 0, 62) - -[node name="Node3D1316" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 98, 0, 66) - -[node name="Node3D1317" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 102, 0, 62) - -[node name="Node3D1318" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 102, 0, 66) - -[node name="Node3D1319" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 98, 0, 70) - -[node name="Node3D1320" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 102, 0, 70) - -[node name="Node3D1321" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 106, 0, 62) - -[node name="Node3D1322" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 106, 0, 66) - -[node name="Node3D1323" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 106, 0, 70) - -[node name="Node3D1324" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 110, 0, 62) - -[node name="Node3D1325" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 110, 0, 66) - -[node name="Node3D1326" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 114, 0, 62) - -[node name="Node3D1327" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 114, 0, 66) - -[node name="Node3D1328" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 110, 0, 70) - -[node name="Node3D1329" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 114, 0, 70) - -[node name="Node3D1330" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 118, 0, 62) - -[node name="Node3D1331" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 118, 0, 66) - -[node name="Node3D1332" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 118, 0, 70) - -[node name="Node3D1333" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 122, 0, 50) - -[node name="Node3D1334" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 122, 0, 54) - -[node name="Node3D1335" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 126, 0, 50) - -[node name="Node3D1336" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 126, 0, 54) - -[node name="Node3D1337" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 122, 0, 58) - -[node name="Node3D1338" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 126, 0, 58) - -[node name="Node3D1339" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 130, 0, 50) - -[node name="Node3D1340" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 130, 0, 54) - -[node name="Node3D1341" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 130, 0, 58) - -[node name="Node3D1342" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 134, 0, 50) - -[node name="Node3D1343" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 134, 0, 54) - -[node name="Node3D1344" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 138, 0, 50) - -[node name="Node3D1345" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 138, 0, 54) - -[node name="Node3D1346" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 134, 0, 58) - -[node name="Node3D1347" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 138, 0, 58) - -[node name="Node3D1348" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 142, 0, 50) - -[node name="Node3D1349" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 142, 0, 54) - -[node name="Node3D1350" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 142, 0, 58) - -[node name="Node3D1351" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 122, 0, 62) - -[node name="Node3D1352" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 122, 0, 66) - -[node name="Node3D1353" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 126, 0, 62) - -[node name="Node3D1354" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 126, 0, 66) - -[node name="Node3D1355" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 122, 0, 70) - -[node name="Node3D1356" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 126, 0, 70) - -[node name="Node3D1357" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 130, 0, 62) - -[node name="Node3D1358" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 130, 0, 66) - -[node name="Node3D1359" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 130, 0, 70) - -[node name="Node3D1360" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 134, 0, 62) - -[node name="Node3D1361" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 134, 0, 66) - -[node name="Node3D1362" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 138, 0, 62) - -[node name="Node3D1363" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 138, 0, 66) - -[node name="Node3D1364" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 134, 0, 70) - -[node name="Node3D1365" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 138, 0, 70) - -[node name="Node3D1366" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 142, 0, 62) - -[node name="Node3D1367" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 142, 0, 66) - -[node name="Node3D1368" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 142, 0, 70) - -[node name="Node3D1369" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 98, 0, 74) - -[node name="Node3D1370" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 98, 0, 78) - -[node name="Node3D1371" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 102, 0, 74) - -[node name="Node3D1372" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 102, 0, 78) - -[node name="Node3D1373" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 98, 0, 82) - -[node name="Node3D1374" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 102, 0, 82) - -[node name="Node3D1375" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 106, 0, 74) - -[node name="Node3D1376" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 106, 0, 78) - -[node name="Node3D1377" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 106, 0, 82) - -[node name="Node3D1378" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 110, 0, 74) - -[node name="Node3D1379" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 110, 0, 78) - -[node name="Node3D1380" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 114, 0, 74) - -[node name="Node3D1381" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 114, 0, 78) - -[node name="Node3D1382" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 110, 0, 82) - -[node name="Node3D1383" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 114, 0, 82) - -[node name="Node3D1384" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 118, 0, 74) - -[node name="Node3D1385" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 118, 0, 78) - -[node name="Node3D1386" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 118, 0, 82) - -[node name="Node3D1387" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 122, 0, 74) - -[node name="Node3D1388" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 122, 0, 78) - -[node name="Node3D1389" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 126, 0, 74) - -[node name="Node3D1390" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 126, 0, 78) - -[node name="Node3D1391" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 122, 0, 82) - -[node name="Node3D1392" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 126, 0, 82) - -[node name="Node3D1393" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 130, 0, 74) - -[node name="Node3D1394" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 130, 0, 78) - -[node name="Node3D1395" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 130, 0, 82) - -[node name="Node3D1396" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 134, 0, 74) - -[node name="Node3D1397" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 134, 0, 78) - -[node name="Node3D1398" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 138, 0, 74) - -[node name="Node3D1399" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 138, 0, 78) - -[node name="Node3D1400" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 134, 0, 82) - -[node name="Node3D1401" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 138, 0, 82) - -[node name="Node3D1402" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 142, 0, 74) - -[node name="Node3D1403" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 142, 0, 78) - -[node name="Node3D1404" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 142, 0, 82) - -[node name="Node3D1405" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 98, 0, 50) - -[node name="Node3D1406" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 98, 0, 54) - -[node name="Node3D1407" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 102, 0, 50) - -[node name="Node3D1408" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 102, 0, 54) - -[node name="Node3D1409" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 98, 0, 58) - -[node name="Node3D1410" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 102, 0, 58) - -[node name="Node3D1411" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 106, 0, 50) - -[node name="Node3D1412" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 106, 0, 54) - -[node name="Node3D1413" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 106, 0, 58) - -[node name="Node3D1414" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 110, 0, 50) - -[node name="Node3D1415" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 110, 0, 54) - -[node name="Node3D1416" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 114, 0, 50) - -[node name="Node3D1417" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 114, 0, 54) - -[node name="Node3D1418" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 110, 0, 58) - -[node name="Node3D1419" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 114, 0, 58) - -[node name="Node3D1420" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 118, 0, 50) - -[node name="Node3D1421" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 118, 0, 54) - -[node name="Node3D1422" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 118, 0, 58) - -[node name="Node3D1423" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 98, 0, 62) - -[node name="Node3D1424" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 98, 0, 66) - -[node name="Node3D1425" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 102, 0, 62) - -[node name="Node3D1426" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 102, 0, 66) - -[node name="Node3D1427" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 98, 0, 70) - -[node name="Node3D1428" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 102, 0, 70) - -[node name="Node3D1429" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 106, 0, 62) - -[node name="Node3D1430" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 106, 0, 66) - -[node name="Node3D1431" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 106, 0, 70) - -[node name="Node3D1432" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 110, 0, 62) - -[node name="Node3D1433" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 110, 0, 66) - -[node name="Node3D1434" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 114, 0, 62) - -[node name="Node3D1435" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 114, 0, 66) - -[node name="Node3D1436" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 110, 0, 70) - -[node name="Node3D1437" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 114, 0, 70) - -[node name="Node3D1438" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 118, 0, 62) - -[node name="Node3D1439" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 118, 0, 66) - -[node name="Node3D1440" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 118, 0, 70) - -[node name="Node3D1441" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 122, 0, 50) - -[node name="Node3D1442" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 122, 0, 54) - -[node name="Node3D1443" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 126, 0, 50) - -[node name="Node3D1444" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 126, 0, 54) - -[node name="Node3D1445" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 122, 0, 58) - -[node name="Node3D1446" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 126, 0, 58) - -[node name="Node3D1447" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 130, 0, 50) - -[node name="Node3D1448" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 130, 0, 54) - -[node name="Node3D1449" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 130, 0, 58) - -[node name="Node3D1450" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 134, 0, 50) - -[node name="Node3D1451" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 134, 0, 54) - -[node name="Node3D1452" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 138, 0, 50) - -[node name="Node3D1453" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 138, 0, 54) - -[node name="Node3D1454" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 134, 0, 58) - -[node name="Node3D1455" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 138, 0, 58) - -[node name="Node3D1456" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 142, 0, 50) - -[node name="Node3D1457" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 142, 0, 54) - -[node name="Node3D1458" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 142, 0, 58) - -[node name="Node3D1459" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 122, 0, 62) - -[node name="Node3D1460" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 122, 0, 66) - -[node name="Node3D1461" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 126, 0, 62) - -[node name="Node3D1462" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 126, 0, 66) - -[node name="Node3D1463" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 122, 0, 70) - -[node name="Node3D1464" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 126, 0, 70) - -[node name="Node3D1465" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 130, 0, 62) - -[node name="Node3D1466" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 130, 0, 66) - -[node name="Node3D1467" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 130, 0, 70) - -[node name="Node3D1468" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 134, 0, 62) - -[node name="Node3D1469" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 134, 0, 66) - -[node name="Node3D1470" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 138, 0, 62) - -[node name="Node3D1471" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 138, 0, 66) - -[node name="Node3D1472" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 134, 0, 70) - -[node name="Node3D1473" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 138, 0, 70) - -[node name="Node3D1474" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 142, 0, 62) - -[node name="Node3D1475" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 142, 0, 66) - -[node name="Node3D1476" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 142, 0, 70) - -[node name="Node3D1477" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 98, 0, 74) - -[node name="Node3D1478" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 98, 0, 78) - -[node name="Node3D1479" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 102, 0, 74) - -[node name="Node3D1480" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 102, 0, 78) - -[node name="Node3D1481" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 98, 0, 82) - -[node name="Node3D1482" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 102, 0, 82) - -[node name="Node3D1483" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 106, 0, 74) - -[node name="Node3D1484" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 106, 0, 78) - -[node name="Node3D1485" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 106, 0, 82) - -[node name="Node3D1486" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 110, 0, 74) - -[node name="Node3D1487" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 110, 0, 78) - -[node name="Node3D1488" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 114, 0, 74) - -[node name="Node3D1489" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 114, 0, 78) - -[node name="Node3D1490" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 110, 0, 82) - -[node name="Node3D1491" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 114, 0, 82) - -[node name="Node3D1492" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 118, 0, 74) - -[node name="Node3D1493" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 118, 0, 78) - -[node name="Node3D1494" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 118, 0, 82) - -[node name="Node3D1495" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 122, 0, 74) - -[node name="Node3D1496" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 122, 0, 78) - -[node name="Node3D1497" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 126, 0, 74) - -[node name="Node3D1498" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 126, 0, 78) - -[node name="Node3D1499" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 122, 0, 82) - -[node name="Node3D1500" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 126, 0, 82) - -[node name="Node3D1501" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 130, 0, 74) - -[node name="Node3D1502" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 130, 0, 78) - -[node name="Node3D1503" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 130, 0, 82) - -[node name="Node3D1504" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 134, 0, 74) - -[node name="Node3D1505" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 134, 0, 78) - -[node name="Node3D1506" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 138, 0, 74) - -[node name="Node3D1507" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 138, 0, 78) - -[node name="Node3D1508" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 134, 0, 82) - -[node name="Node3D1509" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 138, 0, 82) - -[node name="Node3D1510" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 142, 0, 74) - -[node name="Node3D1511" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 142, 0, 78) - -[node name="Node3D1512" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 142, 0, 82) - -[node name="Node3D1513" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 146, 0, 2) - -[node name="Node3D1514" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 146, 0, 6) - -[node name="Node3D1515" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 150, 0, 2) - -[node name="Node3D1516" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 150, 0, 6) - -[node name="Node3D1517" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 146, 0, 10) - -[node name="Node3D1518" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 150, 0, 10) - -[node name="Node3D1519" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 154, 0, 2) - -[node name="Node3D1520" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 154, 0, 6) - -[node name="Node3D1521" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 154, 0, 10) - -[node name="Node3D1522" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 158, 0, 2) - -[node name="Node3D1523" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 158, 0, 6) - -[node name="Node3D1524" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 162, 0, 2) - -[node name="Node3D1525" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 162, 0, 6) - -[node name="Node3D1526" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 158, 0, 10) - -[node name="Node3D1527" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 162, 0, 10) - -[node name="Node3D1531" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 146, 0, 14) - -[node name="Node3D1532" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 146, 0, 18) - -[node name="Node3D1533" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 150, 0, 14) - -[node name="Node3D1534" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 150, 0, 18) - -[node name="Node3D1535" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 146, 0, 22) - -[node name="Node3D1536" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 150, 0, 22) - -[node name="Node3D1537" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 154, 0, 14) - -[node name="Node3D1538" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 154, 0, 18) - -[node name="Node3D1539" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 154, 0, 22) - -[node name="Node3D1540" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 158, 0, 14) - -[node name="Node3D1541" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 158, 0, 18) - -[node name="Node3D1542" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 162, 0, 14) - -[node name="Node3D1543" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 162, 0, 18) - -[node name="Node3D1544" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 158, 0, 22) - -[node name="Node3D1545" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 162, 0, 22) - -[node name="Node3D1585" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 146, 0, 26) - -[node name="Node3D1586" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 146, 0, 30) - -[node name="Node3D1587" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 150, 0, 26) - -[node name="Node3D1588" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 150, 0, 30) - -[node name="Node3D1589" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 146, 0, 34) - -[node name="Node3D1590" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 150, 0, 34) - -[node name="Node3D1591" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 154, 0, 26) - -[node name="Node3D1592" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 154, 0, 30) - -[node name="Node3D1593" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 154, 0, 34) - -[node name="Node3D1594" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 158, 0, 26) - -[node name="Node3D1595" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 158, 0, 30) - -[node name="Node3D1596" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 162, 0, 26) - -[node name="Node3D1597" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 162, 0, 30) - -[node name="Node3D1598" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 158, 0, 34) - -[node name="Node3D1599" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 162, 0, 34) - -[node name="Node3D1603" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 146, 0, 38) - -[node name="Node3D1604" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 146, 0, 42) - -[node name="Node3D1605" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 150, 0, 38) - -[node name="Node3D1606" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 150, 0, 42) - -[node name="Node3D1607" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 146, 0, 46) - -[node name="Node3D1608" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 150, 0, 46) - -[node name="Node3D1609" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 154, 0, 38) - -[node name="Node3D1610" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 154, 0, 42) - -[node name="Node3D1611" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 154, 0, 46) - -[node name="Node3D1612" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 158, 0, 38) - -[node name="Node3D1613" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 158, 0, 42) - -[node name="Node3D1614" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 162, 0, 38) - -[node name="Node3D1615" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 162, 0, 42) - -[node name="Node3D1616" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 158, 0, 46) - -[node name="Node3D1617" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 162, 0, 46) - -[node name="Node3D1657" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 146, 0, 2) - -[node name="Node3D1658" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 146, 0, 6) - -[node name="Node3D1659" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 150, 0, 2) - -[node name="Node3D1660" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 150, 0, 6) - -[node name="Node3D1661" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 146, 0, 10) - -[node name="Node3D1662" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 150, 0, 10) - -[node name="Node3D1663" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 154, 0, 2) - -[node name="Node3D1664" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 154, 0, 6) - -[node name="Node3D1665" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 154, 0, 10) - -[node name="Node3D1666" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 158, 0, 2) - -[node name="Node3D1667" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 158, 0, 6) - -[node name="Node3D1668" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 162, 0, 2) - -[node name="Node3D1669" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 162, 0, 6) - -[node name="Node3D1670" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 158, 0, 10) - -[node name="Node3D1671" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 162, 0, 10) - -[node name="Node3D1675" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 146, 0, 14) - -[node name="Node3D1676" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 146, 0, 18) - -[node name="Node3D1677" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 150, 0, 14) - -[node name="Node3D1678" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 150, 0, 18) - -[node name="Node3D1679" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 146, 0, 22) - -[node name="Node3D1680" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 150, 0, 22) - -[node name="Node3D1681" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 154, 0, 14) - -[node name="Node3D1682" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 154, 0, 18) - -[node name="Node3D1683" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 154, 0, 22) - -[node name="Node3D1684" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 158, 0, 14) - -[node name="Node3D1685" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 158, 0, 18) - -[node name="Node3D1686" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 162, 0, 14) - -[node name="Node3D1687" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 162, 0, 18) - -[node name="Node3D1688" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 158, 0, 22) - -[node name="Node3D1689" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 162, 0, 22) - -[node name="Node3D1729" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 146, 0, 26) - -[node name="Node3D1730" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 146, 0, 30) - -[node name="Node3D1731" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 150, 0, 26) - -[node name="Node3D1732" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 150, 0, 30) - -[node name="Node3D1733" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 146, 0, 34) - -[node name="Node3D1734" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 150, 0, 34) - -[node name="Node3D1735" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 154, 0, 26) - -[node name="Node3D1736" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 154, 0, 30) - -[node name="Node3D1737" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 154, 0, 34) - -[node name="Node3D1738" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 158, 0, 26) - -[node name="Node3D1739" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 158, 0, 30) - -[node name="Node3D1740" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 162, 0, 26) - -[node name="Node3D1741" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 162, 0, 30) - -[node name="Node3D1742" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 158, 0, 34) - -[node name="Node3D1743" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 162, 0, 34) - -[node name="Node3D1747" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 146, 0, 38) - -[node name="Node3D1748" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 146, 0, 42) - -[node name="Node3D1749" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 150, 0, 38) - -[node name="Node3D1750" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 150, 0, 42) - -[node name="Node3D1751" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 146, 0, 46) - -[node name="Node3D1752" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 150, 0, 46) - -[node name="Node3D1753" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 154, 0, 38) - -[node name="Node3D1754" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 154, 0, 42) - -[node name="Node3D1755" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 154, 0, 46) - -[node name="Node3D1756" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 158, 0, 38) - -[node name="Node3D1757" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 158, 0, 42) - -[node name="Node3D1758" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 162, 0, 38) - -[node name="Node3D1759" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 162, 0, 42) - -[node name="Node3D1760" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 158, 0, 46) - -[node name="Node3D1761" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 162, 0, 46) - -[node name="Node3D1801" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 146, 0, 50) - -[node name="Node3D1802" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 146, 0, 54) - -[node name="Node3D1803" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 150, 0, 50) - -[node name="Node3D1804" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 150, 0, 54) - -[node name="Node3D1805" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 146, 0, 58) - -[node name="Node3D1806" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 150, 0, 58) - -[node name="Node3D1807" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 154, 0, 50) - -[node name="Node3D1808" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 154, 0, 54) - -[node name="Node3D1809" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 154, 0, 58) - -[node name="Node3D1810" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 158, 0, 50) - -[node name="Node3D1811" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 158, 0, 54) - -[node name="Node3D1812" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 162, 0, 50) - -[node name="Node3D1813" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 162, 0, 54) - -[node name="Node3D1814" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 158, 0, 58) - -[node name="Node3D1815" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 162, 0, 58) - -[node name="Node3D1819" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 146, 0, 62) - -[node name="Node3D1820" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 146, 0, 66) - -[node name="Node3D1821" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 150, 0, 62) - -[node name="Node3D1822" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 150, 0, 66) - -[node name="Node3D1823" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 146, 0, 70) - -[node name="Node3D1824" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 150, 0, 70) - -[node name="Node3D1825" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 154, 0, 62) - -[node name="Node3D1826" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 154, 0, 66) - -[node name="Node3D1827" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 154, 0, 70) - -[node name="Node3D1828" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 158, 0, 62) - -[node name="Node3D1829" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 158, 0, 66) - -[node name="Node3D1830" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 162, 0, 62) - -[node name="Node3D1831" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 162, 0, 66) - -[node name="Node3D1832" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 158, 0, 70) - -[node name="Node3D1833" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 162, 0, 70) - -[node name="Node3D1873" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 146, 0, 74) - -[node name="Node3D1874" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 146, 0, 78) - -[node name="Node3D1875" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 150, 0, 74) - -[node name="Node3D1876" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 150, 0, 78) - -[node name="Node3D1877" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 146, 0, 82) - -[node name="Node3D1878" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 150, 0, 82) - -[node name="Node3D1879" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 154, 0, 74) - -[node name="Node3D1880" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 154, 0, 78) - -[node name="Node3D1881" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 154, 0, 82) - -[node name="Node3D1882" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 158, 0, 74) - -[node name="Node3D1883" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 158, 0, 78) - -[node name="Node3D1884" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 162, 0, 74) - -[node name="Node3D1885" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 162, 0, 78) - -[node name="Node3D1886" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 158, 0, 82) - -[node name="Node3D1887" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 162, 0, 82) - -[node name="Node3D1909" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 146, 0, 50) - -[node name="Node3D1910" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 146, 0, 54) - -[node name="Node3D1911" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 150, 0, 50) - -[node name="Node3D1912" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 150, 0, 54) - -[node name="Node3D1913" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 146, 0, 58) - -[node name="Node3D1914" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 150, 0, 58) - -[node name="Node3D1915" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 154, 0, 50) - -[node name="Node3D1916" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 154, 0, 54) - -[node name="Node3D1917" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 154, 0, 58) - -[node name="Node3D1918" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 158, 0, 50) - -[node name="Node3D1919" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 158, 0, 54) - -[node name="Node3D1920" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 162, 0, 50) - -[node name="Node3D1921" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 162, 0, 54) - -[node name="Node3D1922" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 158, 0, 58) - -[node name="Node3D1923" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 162, 0, 58) - -[node name="Node3D1927" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 146, 0, 62) - -[node name="Node3D1928" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 146, 0, 66) - -[node name="Node3D1929" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 150, 0, 62) - -[node name="Node3D1930" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 150, 0, 66) - -[node name="Node3D1931" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 146, 0, 70) - -[node name="Node3D1932" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 150, 0, 70) - -[node name="Node3D1933" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 154, 0, 62) - -[node name="Node3D1934" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 154, 0, 66) - -[node name="Node3D1935" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 154, 0, 70) - -[node name="Node3D1936" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 158, 0, 62) - -[node name="Node3D1937" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 158, 0, 66) - -[node name="Node3D1938" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 162, 0, 62) - -[node name="Node3D1939" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 162, 0, 66) - -[node name="Node3D1940" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 158, 0, 70) - -[node name="Node3D1941" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 162, 0, 70) - -[node name="Node3D1981" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 146, 0, 74) - -[node name="Node3D1982" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 146, 0, 78) - -[node name="Node3D1983" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 150, 0, 74) - -[node name="Node3D1984" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 150, 0, 78) - -[node name="Node3D1985" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 146, 0, 82) - -[node name="Node3D1986" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 150, 0, 82) - -[node name="Node3D1987" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 154, 0, 74) - -[node name="Node3D1988" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 154, 0, 78) - -[node name="Node3D1989" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 154, 0, 82) - -[node name="Node3D1990" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 158, 0, 74) - -[node name="Node3D1991" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 158, 0, 78) - -[node name="Node3D1992" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 162, 0, 74) - -[node name="Node3D1993" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 162, 0, 78) - -[node name="Node3D1994" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 158, 0, 82) - -[node name="Node3D1995" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 162, 0, 82) - -[node name="Node3D2017" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 2, 0, 86) - -[node name="Node3D2018" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 2, 0, 90) - -[node name="Node3D2019" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 6, 0, 86) - -[node name="Node3D2020" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 6, 0, 90) - -[node name="Node3D2021" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 2, 0, 94) - -[node name="Node3D2022" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 6, 0, 94) - -[node name="Node3D2023" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 10, 0, 86) - -[node name="Node3D2024" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 10, 0, 90) - -[node name="Node3D2025" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 10, 0, 94) - -[node name="Node3D2026" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 14, 0, 86) - -[node name="Node3D2027" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 14, 0, 90) - -[node name="Node3D2028" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 18, 0, 86) - -[node name="Node3D2029" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 18, 0, 90) - -[node name="Node3D2030" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 14, 0, 94) - -[node name="Node3D2031" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 18, 0, 94) - -[node name="Node3D2032" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 22, 0, 86) - -[node name="Node3D2033" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 22, 0, 90) - -[node name="Node3D2034" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 22, 0, 94) - -[node name="Node3D2035" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 2, 0, 98) - -[node name="Node3D2036" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 2, 0, 102) - -[node name="Node3D2037" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 6, 0, 98) - -[node name="Node3D2038" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 6, 0, 102) - -[node name="Node3D2039" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 2, 0, 106) - -[node name="Node3D2040" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 6, 0, 106) - -[node name="Node3D2041" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 10, 0, 98) - -[node name="Node3D2042" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 10, 0, 102) - -[node name="Node3D2043" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 10, 0, 106) - -[node name="Node3D2044" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 14, 0, 98) - -[node name="Node3D2045" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 14, 0, 102) - -[node name="Node3D2046" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 18, 0, 98) - -[node name="Node3D2047" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 18, 0, 102) - -[node name="Node3D2048" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 14, 0, 106) - -[node name="Node3D2049" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 18, 0, 106) - -[node name="Node3D2050" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 22, 0, 98) - -[node name="Node3D2051" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 22, 0, 102) - -[node name="Node3D2052" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 22, 0, 106) - -[node name="Node3D2053" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 26, 0, 86) - -[node name="Node3D2054" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 26, 0, 90) - -[node name="Node3D2055" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 30, 0, 86) - -[node name="Node3D2056" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 30, 0, 90) - -[node name="Node3D2057" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 26, 0, 94) - -[node name="Node3D2058" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 30, 0, 94) - -[node name="Node3D2059" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 34, 0, 86) - -[node name="Node3D2060" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 34, 0, 90) - -[node name="Node3D2061" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 34, 0, 94) - -[node name="Node3D2062" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 38, 0, 86) - -[node name="Node3D2063" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 38, 0, 90) - -[node name="Node3D2064" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 42, 0, 86) - -[node name="Node3D2065" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 42, 0, 90) - -[node name="Node3D2066" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 38, 0, 94) - -[node name="Node3D2067" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 42, 0, 94) - -[node name="Node3D2068" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 46, 0, 86) - -[node name="Node3D2069" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 46, 0, 90) - -[node name="Node3D2070" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 46, 0, 94) - -[node name="Node3D2071" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 26, 0, 98) - -[node name="Node3D2072" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 26, 0, 102) - -[node name="Node3D2073" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 30, 0, 98) - -[node name="Node3D2074" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 30, 0, 102) - -[node name="Node3D2075" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 26, 0, 106) - -[node name="Node3D2076" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 30, 0, 106) - -[node name="Node3D2077" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 34, 0, 98) - -[node name="Node3D2078" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 34, 0, 102) - -[node name="Node3D2079" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 34, 0, 106) - -[node name="Node3D2080" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 38, 0, 98) - -[node name="Node3D2081" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 38, 0, 102) - -[node name="Node3D2082" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 42, 0, 98) - -[node name="Node3D2083" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 42, 0, 102) - -[node name="Node3D2084" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 38, 0, 106) - -[node name="Node3D2085" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 42, 0, 106) - -[node name="Node3D2086" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 46, 0, 98) - -[node name="Node3D2087" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 46, 0, 102) - -[node name="Node3D2088" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 46, 0, 106) - -[node name="Node3D2089" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 2, 0, 110) - -[node name="Node3D2090" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 2, 0, 114) - -[node name="Node3D2091" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 6, 0, 110) - -[node name="Node3D2092" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 6, 0, 114) - -[node name="Node3D2093" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 2, 0, 118) - -[node name="Node3D2094" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 6, 0, 118) - -[node name="Node3D2095" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 10, 0, 110) - -[node name="Node3D2096" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 10, 0, 114) - -[node name="Node3D2097" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 10, 0, 118) - -[node name="Node3D2098" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 14, 0, 110) - -[node name="Node3D2099" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 14, 0, 114) - -[node name="Node3D2100" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 18, 0, 110) - -[node name="Node3D2101" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 18, 0, 114) - -[node name="Node3D2102" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 14, 0, 118) - -[node name="Node3D2103" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 18, 0, 118) - -[node name="Node3D2104" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 22, 0, 110) - -[node name="Node3D2105" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 22, 0, 114) - -[node name="Node3D2106" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 22, 0, 118) - -[node name="Node3D2107" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 2, 0, 122) - -[node name="Node3D2108" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 2, 0, 126) - -[node name="Node3D2109" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 6, 0, 122) - -[node name="Node3D2110" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 6, 0, 126) - -[node name="Node3D2111" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 2, 0, 130) - -[node name="Node3D2112" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 6, 0, 130) - -[node name="Node3D2113" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 10, 0, 122) - -[node name="Node3D2114" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 10, 0, 126) - -[node name="Node3D2115" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 10, 0, 130) - -[node name="Node3D2116" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 14, 0, 122) - -[node name="Node3D2117" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 14, 0, 126) - -[node name="Node3D2118" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 18, 0, 122) - -[node name="Node3D2119" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 18, 0, 126) - -[node name="Node3D2120" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 14, 0, 130) - -[node name="Node3D2121" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 18, 0, 130) - -[node name="Node3D2122" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 22, 0, 122) - -[node name="Node3D2123" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 22, 0, 126) - -[node name="Node3D2124" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 22, 0, 130) - -[node name="Node3D2125" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 26, 0, 110) - -[node name="Node3D2126" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 26, 0, 114) - -[node name="Node3D2127" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 30, 0, 110) - -[node name="Node3D2128" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 30, 0, 114) - -[node name="Node3D2129" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 26, 0, 118) - -[node name="Node3D2130" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 30, 0, 118) - -[node name="Node3D2131" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 34, 0, 110) - -[node name="Node3D2132" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 34, 0, 114) - -[node name="Node3D2133" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 34, 0, 118) - -[node name="Node3D2134" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 38, 0, 110) - -[node name="Node3D2135" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 38, 0, 114) - -[node name="Node3D2136" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 42, 0, 110) - -[node name="Node3D2137" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 42, 0, 114) - -[node name="Node3D2138" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 38, 0, 118) - -[node name="Node3D2139" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 42, 0, 118) - -[node name="Node3D2140" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 46, 0, 110) - -[node name="Node3D2141" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 46, 0, 114) - -[node name="Node3D2142" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 46, 0, 118) - -[node name="Node3D2143" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 26, 0, 122) - -[node name="Node3D2144" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 26, 0, 126) - -[node name="Node3D2145" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 30, 0, 122) - -[node name="Node3D2146" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 30, 0, 126) - -[node name="Node3D2147" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 26, 0, 130) - -[node name="Node3D2148" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 30, 0, 130) - -[node name="Node3D2149" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 34, 0, 122) - -[node name="Node3D2150" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 34, 0, 126) - -[node name="Node3D2151" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 34, 0, 130) - -[node name="Node3D2152" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 38, 0, 122) - -[node name="Node3D2153" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 38, 0, 126) - -[node name="Node3D2154" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 42, 0, 122) - -[node name="Node3D2155" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 42, 0, 126) - -[node name="Node3D2156" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 38, 0, 130) - -[node name="Node3D2157" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 42, 0, 130) - -[node name="Node3D2158" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 46, 0, 122) - -[node name="Node3D2159" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 46, 0, 126) - -[node name="Node3D2160" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 46, 0, 130) - -[node name="Node3D2161" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 2, 0, 86) - -[node name="Node3D2162" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 2, 0, 90) - -[node name="Node3D2163" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 6, 0, 86) - -[node name="Node3D2164" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 6, 0, 90) - -[node name="Node3D2165" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 2, 0, 94) - -[node name="Node3D2166" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 6, 0, 94) - -[node name="Node3D2167" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 10, 0, 86) - -[node name="Node3D2168" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 10, 0, 90) - -[node name="Node3D2169" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 10, 0, 94) - -[node name="Node3D2170" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 14, 0, 86) - -[node name="Node3D2171" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 14, 0, 90) - -[node name="Node3D2172" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 18, 0, 86) - -[node name="Node3D2173" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 18, 0, 90) - -[node name="Node3D2174" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 14, 0, 94) - -[node name="Node3D2175" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 18, 0, 94) - -[node name="Node3D2176" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 22, 0, 86) - -[node name="Node3D2177" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 22, 0, 90) - -[node name="Node3D2178" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 22, 0, 94) - -[node name="Node3D2179" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 2, 0, 98) - -[node name="Node3D2180" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 2, 0, 102) - -[node name="Node3D2181" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 6, 0, 98) - -[node name="Node3D2182" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 6, 0, 102) - -[node name="Node3D2183" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 2, 0, 106) - -[node name="Node3D2184" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 6, 0, 106) - -[node name="Node3D2185" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 10, 0, 98) - -[node name="Node3D2186" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 10, 0, 102) - -[node name="Node3D2187" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 10, 0, 106) - -[node name="Node3D2188" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 14, 0, 98) - -[node name="Node3D2189" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 14, 0, 102) - -[node name="Node3D2190" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 18, 0, 98) - -[node name="Node3D2191" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 18, 0, 102) - -[node name="Node3D2192" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 14, 0, 106) - -[node name="Node3D2193" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 18, 0, 106) - -[node name="Node3D2194" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 22, 0, 98) - -[node name="Node3D2195" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 22, 0, 102) - -[node name="Node3D2196" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 22, 0, 106) - -[node name="Node3D2197" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 26, 0, 86) - -[node name="Node3D2198" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 26, 0, 90) - -[node name="Node3D2199" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 30, 0, 86) - -[node name="Node3D2200" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 30, 0, 90) - -[node name="Node3D2201" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 26, 0, 94) - -[node name="Node3D2202" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 30, 0, 94) - -[node name="Node3D2203" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 34, 0, 86) - -[node name="Node3D2204" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 34, 0, 90) - -[node name="Node3D2205" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 34, 0, 94) - -[node name="Node3D2206" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 38, 0, 86) - -[node name="Node3D2207" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 38, 0, 90) - -[node name="Node3D2208" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 42, 0, 86) - -[node name="Node3D2209" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 42, 0, 90) - -[node name="Node3D2210" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 38, 0, 94) - -[node name="Node3D2211" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 42, 0, 94) - -[node name="Node3D2212" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 46, 0, 86) - -[node name="Node3D2213" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 46, 0, 90) - -[node name="Node3D2214" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 46, 0, 94) - -[node name="Node3D2215" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 26, 0, 98) - -[node name="Node3D2216" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 26, 0, 102) - -[node name="Node3D2217" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 30, 0, 98) - -[node name="Node3D2218" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 30, 0, 102) - -[node name="Node3D2219" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 26, 0, 106) - -[node name="Node3D2220" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 30, 0, 106) - -[node name="Node3D2221" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 34, 0, 98) - -[node name="Node3D2222" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 34, 0, 102) - -[node name="Node3D2223" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 34, 0, 106) - -[node name="Node3D2224" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 38, 0, 98) - -[node name="Node3D2225" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 38, 0, 102) - -[node name="Node3D2226" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 42, 0, 98) - -[node name="Node3D2227" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 42, 0, 102) - -[node name="Node3D2228" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 38, 0, 106) - -[node name="Node3D2229" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 42, 0, 106) - -[node name="Node3D2230" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 46, 0, 98) - -[node name="Node3D2231" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 46, 0, 102) - -[node name="Node3D2232" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 46, 0, 106) - -[node name="Node3D2233" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 2, 0, 110) - -[node name="Node3D2234" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 2, 0, 114) - -[node name="Node3D2235" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 6, 0, 110) - -[node name="Node3D2236" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 6, 0, 114) - -[node name="Node3D2237" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 2, 0, 118) - -[node name="Node3D2238" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 6, 0, 118) - -[node name="Node3D2239" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 10, 0, 110) - -[node name="Node3D2240" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 10, 0, 114) - -[node name="Node3D2241" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 10, 0, 118) - -[node name="Node3D2242" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 14, 0, 110) - -[node name="Node3D2243" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 14, 0, 114) - -[node name="Node3D2244" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 18, 0, 110) - -[node name="Node3D2245" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 18, 0, 114) - -[node name="Node3D2246" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 14, 0, 118) - -[node name="Node3D2247" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 18, 0, 118) - -[node name="Node3D2248" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 22, 0, 110) - -[node name="Node3D2249" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 22, 0, 114) - -[node name="Node3D2250" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 22, 0, 118) - -[node name="Node3D2251" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 2, 0, 122) - -[node name="Node3D2252" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 2, 0, 126) - -[node name="Node3D2253" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 6, 0, 122) - -[node name="Node3D2254" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 6, 0, 126) - -[node name="Node3D2255" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 2, 0, 130) - -[node name="Node3D2256" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 6, 0, 130) - -[node name="Node3D2257" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 10, 0, 122) - -[node name="Node3D2258" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 10, 0, 126) - -[node name="Node3D2259" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 10, 0, 130) - -[node name="Node3D2260" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 14, 0, 122) - -[node name="Node3D2261" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 14, 0, 126) - -[node name="Node3D2262" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 18, 0, 122) - -[node name="Node3D2263" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 18, 0, 126) - -[node name="Node3D2264" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 14, 0, 130) - -[node name="Node3D2265" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 18, 0, 130) - -[node name="Node3D2266" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 22, 0, 122) - -[node name="Node3D2267" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 22, 0, 126) - -[node name="Node3D2268" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 22, 0, 130) - -[node name="Node3D2269" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 26, 0, 110) - -[node name="Node3D2270" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 26, 0, 114) - -[node name="Node3D2271" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 30, 0, 110) - -[node name="Node3D2272" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 30, 0, 114) - -[node name="Node3D2273" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 26, 0, 118) - -[node name="Node3D2274" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 30, 0, 118) - -[node name="Node3D2275" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 34, 0, 110) - -[node name="Node3D2276" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 34, 0, 114) - -[node name="Node3D2277" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 34, 0, 118) - -[node name="Node3D2278" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 38, 0, 110) - -[node name="Node3D2279" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 38, 0, 114) - -[node name="Node3D2280" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 42, 0, 110) - -[node name="Node3D2281" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 42, 0, 114) - -[node name="Node3D2282" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 38, 0, 118) - -[node name="Node3D2283" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 42, 0, 118) - -[node name="Node3D2284" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 46, 0, 110) - -[node name="Node3D2285" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 46, 0, 114) - -[node name="Node3D2286" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 46, 0, 118) - -[node name="Node3D2287" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 26, 0, 122) - -[node name="Node3D2288" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 26, 0, 126) - -[node name="Node3D2289" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 30, 0, 122) - -[node name="Node3D2290" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 30, 0, 126) - -[node name="Node3D2291" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 26, 0, 130) - -[node name="Node3D2292" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 30, 0, 130) - -[node name="Node3D2293" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 34, 0, 122) - -[node name="Node3D2294" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 34, 0, 126) - -[node name="Node3D2295" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 34, 0, 130) - -[node name="Node3D2296" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 38, 0, 122) - -[node name="Node3D2297" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 38, 0, 126) - -[node name="Node3D2298" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 42, 0, 122) - -[node name="Node3D2299" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 42, 0, 126) - -[node name="Node3D2300" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 38, 0, 130) - -[node name="Node3D2301" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 42, 0, 130) - -[node name="Node3D2302" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 46, 0, 122) - -[node name="Node3D2303" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 46, 0, 126) - -[node name="Node3D2304" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 46, 0, 130) - -[node name="Node3D2305" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 2, 0, 134) - -[node name="Node3D2306" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 2, 0, 138) - -[node name="Node3D2307" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 6, 0, 134) - -[node name="Node3D2308" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 6, 0, 138) - -[node name="Node3D2309" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 2, 0, 142) - -[node name="Node3D2310" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 6, 0, 142) - -[node name="Node3D2311" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 10, 0, 134) - -[node name="Node3D2312" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 10, 0, 138) - -[node name="Node3D2313" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 10, 0, 142) - -[node name="Node3D2314" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 14, 0, 134) - -[node name="Node3D2315" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 14, 0, 138) - -[node name="Node3D2316" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 18, 0, 134) - -[node name="Node3D2317" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 18, 0, 138) - -[node name="Node3D2318" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 14, 0, 142) - -[node name="Node3D2319" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 18, 0, 142) - -[node name="Node3D2320" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 22, 0, 134) - -[node name="Node3D2321" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 22, 0, 138) - -[node name="Node3D2322" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 22, 0, 142) - -[node name="Node3D2323" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 2, 0, 146) - -[node name="Node3D2325" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 6, 0, 146) - -[node name="Node3D2329" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 10, 0, 146) - -[node name="Node3D2332" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 14, 0, 146) - -[node name="Node3D2334" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 18, 0, 146) - -[node name="Node3D2338" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 22, 0, 146) - -[node name="Node3D2341" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 26, 0, 134) - -[node name="Node3D2342" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 26, 0, 138) - -[node name="Node3D2343" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 30, 0, 134) - -[node name="Node3D2344" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 30, 0, 138) - -[node name="Node3D2345" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 26, 0, 142) - -[node name="Node3D2346" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 30, 0, 142) - -[node name="Node3D2347" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 34, 0, 134) - -[node name="Node3D2348" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 34, 0, 138) - -[node name="Node3D2349" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 34, 0, 142) - -[node name="Node3D2350" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 38, 0, 134) - -[node name="Node3D2351" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 38, 0, 138) - -[node name="Node3D2352" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 42, 0, 134) - -[node name="Node3D2353" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 42, 0, 138) - -[node name="Node3D2354" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 38, 0, 142) - -[node name="Node3D2355" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 42, 0, 142) - -[node name="Node3D2356" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 46, 0, 134) - -[node name="Node3D2357" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 46, 0, 138) - -[node name="Node3D2358" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 46, 0, 142) - -[node name="Node3D2359" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 26, 0, 146) - -[node name="Node3D2361" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 30, 0, 146) - -[node name="Node3D2365" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 34, 0, 146) - -[node name="Node3D2368" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 38, 0, 146) - -[node name="Node3D2370" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 42, 0, 146) - -[node name="Node3D2374" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 46, 0, 146) - -[node name="Node3D2413" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 2, 0, 134) - -[node name="Node3D2414" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 2, 0, 138) - -[node name="Node3D2415" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 6, 0, 134) - -[node name="Node3D2416" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 6, 0, 138) - -[node name="Node3D2417" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 2, 0, 142) - -[node name="Node3D2418" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 6, 0, 142) - -[node name="Node3D2419" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 10, 0, 134) - -[node name="Node3D2420" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 10, 0, 138) - -[node name="Node3D2421" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 10, 0, 142) - -[node name="Node3D2422" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 14, 0, 134) - -[node name="Node3D2423" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 14, 0, 138) - -[node name="Node3D2424" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 18, 0, 134) - -[node name="Node3D2425" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 18, 0, 138) - -[node name="Node3D2426" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 14, 0, 142) - -[node name="Node3D2427" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 18, 0, 142) - -[node name="Node3D2428" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 22, 0, 134) - -[node name="Node3D2429" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 22, 0, 138) - -[node name="Node3D2430" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 22, 0, 142) - -[node name="Node3D2431" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 2, 0, 146) - -[node name="Node3D2433" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 6, 0, 146) - -[node name="Node3D2437" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 10, 0, 146) - -[node name="Node3D2440" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 14, 0, 146) - -[node name="Node3D2442" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 18, 0, 146) - -[node name="Node3D2446" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 22, 0, 146) - -[node name="Node3D2449" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 26, 0, 134) - -[node name="Node3D2450" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 26, 0, 138) - -[node name="Node3D2451" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 30, 0, 134) - -[node name="Node3D2452" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 30, 0, 138) - -[node name="Node3D2453" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 26, 0, 142) - -[node name="Node3D2454" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 30, 0, 142) - -[node name="Node3D2455" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 34, 0, 134) - -[node name="Node3D2456" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 34, 0, 138) - -[node name="Node3D2457" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 34, 0, 142) - -[node name="Node3D2458" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 38, 0, 134) - -[node name="Node3D2459" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 38, 0, 138) - -[node name="Node3D2460" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 42, 0, 134) - -[node name="Node3D2461" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 42, 0, 138) - -[node name="Node3D2462" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 38, 0, 142) - -[node name="Node3D2463" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 42, 0, 142) - -[node name="Node3D2464" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 46, 0, 134) - -[node name="Node3D2465" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 46, 0, 138) - -[node name="Node3D2466" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 46, 0, 142) - -[node name="Node3D2467" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 26, 0, 146) - -[node name="Node3D2469" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 30, 0, 146) - -[node name="Node3D2473" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 34, 0, 146) - -[node name="Node3D2476" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 38, 0, 146) - -[node name="Node3D2478" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 42, 0, 146) - -[node name="Node3D2482" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 46, 0, 146) - -[node name="Node3D2521" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 50, 0, 86) - -[node name="Node3D2522" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 50, 0, 90) - -[node name="Node3D2523" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 54, 0, 86) - -[node name="Node3D2524" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 54, 0, 90) - -[node name="Node3D2525" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 50, 0, 94) - -[node name="Node3D2526" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 54, 0, 94) - -[node name="Node3D2527" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 58, 0, 86) - -[node name="Node3D2528" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 58, 0, 90) - -[node name="Node3D2529" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 58, 0, 94) - -[node name="Node3D2530" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 62, 0, 86) - -[node name="Node3D2531" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 62, 0, 90) - -[node name="Node3D2532" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 66, 0, 86) - -[node name="Node3D2533" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 66, 0, 90) - -[node name="Node3D2534" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 62, 0, 94) - -[node name="Node3D2535" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 66, 0, 94) - -[node name="Node3D2536" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 70, 0, 86) - -[node name="Node3D2537" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 70, 0, 90) - -[node name="Node3D2538" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 70, 0, 94) - -[node name="Node3D2539" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 50, 0, 98) - -[node name="Node3D2540" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 50, 0, 102) - -[node name="Node3D2541" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 54, 0, 98) - -[node name="Node3D2542" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 54, 0, 102) - -[node name="Node3D2543" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 50, 0, 106) - -[node name="Node3D2544" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 54, 0, 106) - -[node name="Node3D2545" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 58, 0, 98) - -[node name="Node3D2546" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 58, 0, 102) - -[node name="Node3D2547" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 58, 0, 106) - -[node name="Node3D2548" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 62, 0, 98) - -[node name="Node3D2549" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 62, 0, 102) - -[node name="Node3D2550" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 66, 0, 98) - -[node name="Node3D2551" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 66, 0, 102) - -[node name="Node3D2552" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 62, 0, 106) - -[node name="Node3D2553" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 66, 0, 106) - -[node name="Node3D2554" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 70, 0, 98) - -[node name="Node3D2555" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 70, 0, 102) - -[node name="Node3D2556" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 70, 0, 106) - -[node name="Node3D2557" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 74, 0, 86) - -[node name="Node3D2558" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 74, 0, 90) - -[node name="Node3D2559" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 78, 0, 86) - -[node name="Node3D2560" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 78, 0, 90) - -[node name="Node3D2561" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 74, 0, 94) - -[node name="Node3D2562" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 78, 0, 94) - -[node name="Node3D2563" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 82, 0, 86) - -[node name="Node3D2564" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 82, 0, 90) - -[node name="Node3D2565" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 82, 0, 94) - -[node name="Node3D2566" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 86, 0, 86) - -[node name="Node3D2567" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 86, 0, 90) - -[node name="Node3D2568" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 90, 0, 86) - -[node name="Node3D2569" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 90, 0, 90) - -[node name="Node3D2570" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 86, 0, 94) - -[node name="Node3D2571" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 90, 0, 94) - -[node name="Node3D2572" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 94, 0, 86) - -[node name="Node3D2573" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 94, 0, 90) - -[node name="Node3D2574" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 94, 0, 94) - -[node name="Node3D2575" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 74, 0, 98) - -[node name="Node3D2576" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 74, 0, 102) - -[node name="Node3D2577" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 78, 0, 98) - -[node name="Node3D2578" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 78, 0, 102) - -[node name="Node3D2579" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 74, 0, 106) - -[node name="Node3D2580" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 78, 0, 106) - -[node name="Node3D2581" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 82, 0, 98) - -[node name="Node3D2582" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 82, 0, 102) - -[node name="Node3D2583" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 82, 0, 106) - -[node name="Node3D2584" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 86, 0, 98) - -[node name="Node3D2585" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 86, 0, 102) - -[node name="Node3D2586" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 90, 0, 98) - -[node name="Node3D2587" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 90, 0, 102) - -[node name="Node3D2588" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 86, 0, 106) - -[node name="Node3D2589" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 90, 0, 106) - -[node name="Node3D2590" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 94, 0, 98) - -[node name="Node3D2591" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 94, 0, 102) - -[node name="Node3D2592" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 94, 0, 106) - -[node name="Node3D2593" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 50, 0, 110) - -[node name="Node3D2594" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 50, 0, 114) - -[node name="Node3D2595" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 54, 0, 110) - -[node name="Node3D2596" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 54, 0, 114) - -[node name="Node3D2597" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 50, 0, 118) - -[node name="Node3D2598" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 54, 0, 118) - -[node name="Node3D2599" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 58, 0, 110) - -[node name="Node3D2600" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 58, 0, 114) - -[node name="Node3D2601" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 58, 0, 118) - -[node name="Node3D2602" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 62, 0, 110) - -[node name="Node3D2603" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 62, 0, 114) - -[node name="Node3D2604" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 66, 0, 110) - -[node name="Node3D2605" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 66, 0, 114) - -[node name="Node3D2606" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 62, 0, 118) - -[node name="Node3D2607" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 66, 0, 118) - -[node name="Node3D2608" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 70, 0, 110) - -[node name="Node3D2609" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 70, 0, 114) - -[node name="Node3D2610" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 70, 0, 118) - -[node name="Node3D2611" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 50, 0, 122) - -[node name="Node3D2612" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 50, 0, 126) - -[node name="Node3D2613" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 54, 0, 122) - -[node name="Node3D2614" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 54, 0, 126) - -[node name="Node3D2615" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 50, 0, 130) - -[node name="Node3D2616" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 54, 0, 130) - -[node name="Node3D2617" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 58, 0, 122) - -[node name="Node3D2618" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 58, 0, 126) - -[node name="Node3D2619" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 58, 0, 130) - -[node name="Node3D2620" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 62, 0, 122) - -[node name="Node3D2621" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 62, 0, 126) - -[node name="Node3D2622" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 66, 0, 122) - -[node name="Node3D2623" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 66, 0, 126) - -[node name="Node3D2624" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 62, 0, 130) - -[node name="Node3D2625" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 66, 0, 130) - -[node name="Node3D2626" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 70, 0, 122) - -[node name="Node3D2627" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 70, 0, 126) - -[node name="Node3D2628" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 70, 0, 130) - -[node name="Node3D2629" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 74, 0, 110) - -[node name="Node3D2630" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 74, 0, 114) - -[node name="Node3D2631" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 78, 0, 110) - -[node name="Node3D2632" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 78, 0, 114) - -[node name="Node3D2633" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 74, 0, 118) - -[node name="Node3D2634" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 78, 0, 118) - -[node name="Node3D2635" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 82, 0, 110) - -[node name="Node3D2636" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 82, 0, 114) - -[node name="Node3D2637" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 82, 0, 118) - -[node name="Node3D2638" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 86, 0, 110) - -[node name="Node3D2639" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 86, 0, 114) - -[node name="Node3D2640" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 90, 0, 110) - -[node name="Node3D2641" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 90, 0, 114) - -[node name="Node3D2642" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 86, 0, 118) - -[node name="Node3D2643" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 90, 0, 118) - -[node name="Node3D2644" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 94, 0, 110) - -[node name="Node3D2645" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 94, 0, 114) - -[node name="Node3D2646" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 94, 0, 118) - -[node name="Node3D2647" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 74, 0, 122) - -[node name="Node3D2648" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 74, 0, 126) - -[node name="Node3D2649" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 78, 0, 122) - -[node name="Node3D2650" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 78, 0, 126) - -[node name="Node3D2651" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 74, 0, 130) - -[node name="Node3D2652" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 78, 0, 130) - -[node name="Node3D2653" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 82, 0, 122) - -[node name="Node3D2654" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 82, 0, 126) - -[node name="Node3D2655" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 82, 0, 130) - -[node name="Node3D2656" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 86, 0, 122) - -[node name="Node3D2657" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 86, 0, 126) - -[node name="Node3D2658" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 90, 0, 122) - -[node name="Node3D2659" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 90, 0, 126) - -[node name="Node3D2660" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 86, 0, 130) - -[node name="Node3D2661" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 90, 0, 130) - -[node name="Node3D2662" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 94, 0, 122) - -[node name="Node3D2663" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 94, 0, 126) - -[node name="Node3D2664" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 94, 0, 130) - -[node name="Node3D2665" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 50, 0, 86) - -[node name="Node3D2666" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 50, 0, 90) - -[node name="Node3D2667" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 54, 0, 86) - -[node name="Node3D2668" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 54, 0, 90) - -[node name="Node3D2669" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 50, 0, 94) - -[node name="Node3D2670" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 54, 0, 94) - -[node name="Node3D2671" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 58, 0, 86) - -[node name="Node3D2672" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 58, 0, 90) - -[node name="Node3D2673" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 58, 0, 94) - -[node name="Node3D2674" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 62, 0, 86) - -[node name="Node3D2675" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 62, 0, 90) - -[node name="Node3D2676" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 66, 0, 86) - -[node name="Node3D2677" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 66, 0, 90) - -[node name="Node3D2678" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 62, 0, 94) - -[node name="Node3D2679" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 66, 0, 94) - -[node name="Node3D2680" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 70, 0, 86) - -[node name="Node3D2681" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 70, 0, 90) - -[node name="Node3D2682" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 70, 0, 94) - -[node name="Node3D2683" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 50, 0, 98) - -[node name="Node3D2684" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 50, 0, 102) - -[node name="Node3D2685" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 54, 0, 98) - -[node name="Node3D2686" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 54, 0, 102) - -[node name="Node3D2687" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 50, 0, 106) - -[node name="Node3D2688" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 54, 0, 106) - -[node name="Node3D2689" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 58, 0, 98) - -[node name="Node3D2690" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 58, 0, 102) - -[node name="Node3D2691" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 58, 0, 106) - -[node name="Node3D2692" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 62, 0, 98) - -[node name="Node3D2693" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 62, 0, 102) - -[node name="Node3D2694" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 66, 0, 98) - -[node name="Node3D2695" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 66, 0, 102) - -[node name="Node3D2696" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 62, 0, 106) - -[node name="Node3D2697" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 66, 0, 106) - -[node name="Node3D2698" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 70, 0, 98) - -[node name="Node3D2699" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 70, 0, 102) - -[node name="Node3D2700" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 70, 0, 106) - -[node name="Node3D2701" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 74, 0, 86) - -[node name="Node3D2702" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 74, 0, 90) - -[node name="Node3D2703" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 78, 0, 86) - -[node name="Node3D2704" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 78, 0, 90) - -[node name="Node3D2705" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 74, 0, 94) - -[node name="Node3D2706" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 78, 0, 94) - -[node name="Node3D2707" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 82, 0, 86) - -[node name="Node3D2708" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 82, 0, 90) - -[node name="Node3D2709" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 82, 0, 94) - -[node name="Node3D2710" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 86, 0, 86) - -[node name="Node3D2711" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 86, 0, 90) - -[node name="Node3D2712" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 90, 0, 86) - -[node name="Node3D2713" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 90, 0, 90) - -[node name="Node3D2714" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 86, 0, 94) - -[node name="Node3D2715" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 90, 0, 94) - -[node name="Node3D2716" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 94, 0, 86) - -[node name="Node3D2717" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 94, 0, 90) - -[node name="Node3D2718" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 94, 0, 94) - -[node name="Node3D2719" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 74, 0, 98) - -[node name="Node3D2720" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 74, 0, 102) - -[node name="Node3D2721" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 78, 0, 98) - -[node name="Node3D2722" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 78, 0, 102) - -[node name="Node3D2723" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 74, 0, 106) - -[node name="Node3D2724" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 78, 0, 106) - -[node name="Node3D2725" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 82, 0, 98) - -[node name="Node3D2726" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 82, 0, 102) - -[node name="Node3D2727" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 82, 0, 106) - -[node name="Node3D2728" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 86, 0, 98) - -[node name="Node3D2729" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 86, 0, 102) - -[node name="Node3D2730" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 90, 0, 98) - -[node name="Node3D2731" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 90, 0, 102) - -[node name="Node3D2732" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 86, 0, 106) - -[node name="Node3D2733" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 90, 0, 106) - -[node name="Node3D2734" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 94, 0, 98) - -[node name="Node3D2735" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 94, 0, 102) - -[node name="Node3D2736" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 94, 0, 106) - -[node name="Node3D2737" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 50, 0, 110) - -[node name="Node3D2738" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 50, 0, 114) - -[node name="Node3D2739" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 54, 0, 110) - -[node name="Node3D2740" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 54, 0, 114) - -[node name="Node3D2741" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 50, 0, 118) - -[node name="Node3D2742" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 54, 0, 118) - -[node name="Node3D2743" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 58, 0, 110) - -[node name="Node3D2744" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 58, 0, 114) - -[node name="Node3D2745" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 58, 0, 118) - -[node name="Node3D2746" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 62, 0, 110) - -[node name="Node3D2747" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 62, 0, 114) - -[node name="Node3D2748" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 66, 0, 110) - -[node name="Node3D2749" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 66, 0, 114) - -[node name="Node3D2750" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 62, 0, 118) - -[node name="Node3D2751" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 66, 0, 118) - -[node name="Node3D2752" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 70, 0, 110) - -[node name="Node3D2753" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 70, 0, 114) - -[node name="Node3D2754" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 70, 0, 118) - -[node name="Node3D2755" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 50, 0, 122) - -[node name="Node3D2756" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 50, 0, 126) - -[node name="Node3D2757" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 54, 0, 122) - -[node name="Node3D2758" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 54, 0, 126) - -[node name="Node3D2759" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 50, 0, 130) - -[node name="Node3D2760" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 54, 0, 130) - -[node name="Node3D2761" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 58, 0, 122) - -[node name="Node3D2762" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 58, 0, 126) - -[node name="Node3D2763" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 58, 0, 130) - -[node name="Node3D2764" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 62, 0, 122) - -[node name="Node3D2765" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 62, 0, 126) - -[node name="Node3D2766" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 66, 0, 122) - -[node name="Node3D2767" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 66, 0, 126) - -[node name="Node3D2768" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 62, 0, 130) - -[node name="Node3D2769" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 66, 0, 130) - -[node name="Node3D2770" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 70, 0, 122) - -[node name="Node3D2771" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 70, 0, 126) - -[node name="Node3D2772" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 70, 0, 130) - -[node name="Node3D2773" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 74, 0, 110) - -[node name="Node3D2774" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 74, 0, 114) - -[node name="Node3D2775" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 78, 0, 110) - -[node name="Node3D2776" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 78, 0, 114) - -[node name="Node3D2777" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 74, 0, 118) - -[node name="Node3D2778" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 78, 0, 118) - -[node name="Node3D2779" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 82, 0, 110) - -[node name="Node3D2780" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 82, 0, 114) - -[node name="Node3D2781" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 82, 0, 118) - -[node name="Node3D2782" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 86, 0, 110) - -[node name="Node3D2783" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 86, 0, 114) - -[node name="Node3D2784" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 90, 0, 110) - -[node name="Node3D2785" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 90, 0, 114) - -[node name="Node3D2786" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 86, 0, 118) - -[node name="Node3D2787" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 90, 0, 118) - -[node name="Node3D2788" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 94, 0, 110) - -[node name="Node3D2789" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 94, 0, 114) - -[node name="Node3D2790" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 94, 0, 118) - -[node name="Node3D2791" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 74, 0, 122) - -[node name="Node3D2792" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 74, 0, 126) - -[node name="Node3D2793" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 78, 0, 122) - -[node name="Node3D2794" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 78, 0, 126) - -[node name="Node3D2795" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 74, 0, 130) - -[node name="Node3D2796" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 78, 0, 130) - -[node name="Node3D2797" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 82, 0, 122) - -[node name="Node3D2798" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 82, 0, 126) - -[node name="Node3D2799" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 82, 0, 130) - -[node name="Node3D2800" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 86, 0, 122) - -[node name="Node3D2801" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 86, 0, 126) - -[node name="Node3D2802" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 90, 0, 122) - -[node name="Node3D2803" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 90, 0, 126) - -[node name="Node3D2804" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 86, 0, 130) - -[node name="Node3D2805" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 90, 0, 130) - -[node name="Node3D2806" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 94, 0, 122) - -[node name="Node3D2807" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 94, 0, 126) - -[node name="Node3D2808" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 94, 0, 130) - -[node name="Node3D2809" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 50, 0, 134) - -[node name="Node3D2810" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 50, 0, 138) - -[node name="Node3D2811" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 54, 0, 134) - -[node name="Node3D2812" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 54, 0, 138) - -[node name="Node3D2813" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 50, 0, 142) - -[node name="Node3D2814" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 54, 0, 142) - -[node name="Node3D2815" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 58, 0, 134) - -[node name="Node3D2816" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 58, 0, 138) - -[node name="Node3D2817" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 58, 0, 142) - -[node name="Node3D2818" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 62, 0, 134) - -[node name="Node3D2819" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 62, 0, 138) - -[node name="Node3D2820" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 66, 0, 134) - -[node name="Node3D2821" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 66, 0, 138) - -[node name="Node3D2822" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 62, 0, 142) - -[node name="Node3D2823" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 66, 0, 142) - -[node name="Node3D2824" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 70, 0, 134) - -[node name="Node3D2825" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 70, 0, 138) - -[node name="Node3D2826" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 70, 0, 142) - -[node name="Node3D2827" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 50, 0, 146) - -[node name="Node3D2829" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 54, 0, 146) - -[node name="Node3D2833" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 58, 0, 146) - -[node name="Node3D2836" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 62, 0, 146) - -[node name="Node3D2838" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 66, 0, 146) - -[node name="Node3D2842" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 70, 0, 146) - -[node name="Node3D2845" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 74, 0, 134) - -[node name="Node3D2846" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 74, 0, 138) - -[node name="Node3D2847" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 78, 0, 134) - -[node name="Node3D2848" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 78, 0, 138) - -[node name="Node3D2849" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 74, 0, 142) - -[node name="Node3D2850" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 78, 0, 142) - -[node name="Node3D2851" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 82, 0, 134) - -[node name="Node3D2852" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 82, 0, 138) - -[node name="Node3D2853" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 82, 0, 142) - -[node name="Node3D2854" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 86, 0, 134) - -[node name="Node3D2855" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 86, 0, 138) - -[node name="Node3D2856" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 90, 0, 134) - -[node name="Node3D2857" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 90, 0, 138) - -[node name="Node3D2858" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 86, 0, 142) - -[node name="Node3D2859" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 90, 0, 142) - -[node name="Node3D2860" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 94, 0, 134) - -[node name="Node3D2861" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 94, 0, 138) - -[node name="Node3D2862" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 94, 0, 142) - -[node name="Node3D2863" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 74, 0, 146) - -[node name="Node3D2865" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 78, 0, 146) - -[node name="Node3D2869" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 82, 0, 146) - -[node name="Node3D2872" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 86, 0, 146) - -[node name="Node3D2874" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 90, 0, 146) - -[node name="Node3D2878" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 94, 0, 146) - -[node name="Node3D2917" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 50, 0, 134) - -[node name="Node3D2918" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 50, 0, 138) - -[node name="Node3D2919" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 54, 0, 134) - -[node name="Node3D2920" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 54, 0, 138) - -[node name="Node3D2921" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 50, 0, 142) - -[node name="Node3D2922" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 54, 0, 142) - -[node name="Node3D2923" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 58, 0, 134) - -[node name="Node3D2924" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 58, 0, 138) - -[node name="Node3D2925" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 58, 0, 142) - -[node name="Node3D2926" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 62, 0, 134) - -[node name="Node3D2927" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 62, 0, 138) - -[node name="Node3D2928" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 66, 0, 134) - -[node name="Node3D2929" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 66, 0, 138) - -[node name="Node3D2930" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 62, 0, 142) - -[node name="Node3D2931" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 66, 0, 142) - -[node name="Node3D2932" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 70, 0, 134) - -[node name="Node3D2933" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 70, 0, 138) - -[node name="Node3D2934" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 70, 0, 142) - -[node name="Node3D2935" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 50, 0, 146) - -[node name="Node3D2937" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 54, 0, 146) - -[node name="Node3D2941" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 58, 0, 146) - -[node name="Node3D2944" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 62, 0, 146) - -[node name="Node3D2946" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 66, 0, 146) - -[node name="Node3D2950" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 70, 0, 146) - -[node name="Node3D2953" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 74, 0, 134) - -[node name="Node3D2954" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 74, 0, 138) - -[node name="Node3D2955" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 78, 0, 134) - -[node name="Node3D2956" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 78, 0, 138) - -[node name="Node3D2957" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 74, 0, 142) - -[node name="Node3D2958" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 78, 0, 142) - -[node name="Node3D2959" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 82, 0, 134) - -[node name="Node3D2960" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 82, 0, 138) - -[node name="Node3D2961" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 82, 0, 142) - -[node name="Node3D2962" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 86, 0, 134) - -[node name="Node3D2963" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 86, 0, 138) - -[node name="Node3D2964" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 90, 0, 134) - -[node name="Node3D2965" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 90, 0, 138) - -[node name="Node3D2966" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 86, 0, 142) - -[node name="Node3D2967" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 90, 0, 142) - -[node name="Node3D2968" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 94, 0, 134) - -[node name="Node3D2969" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 94, 0, 138) - -[node name="Node3D2970" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 94, 0, 142) - -[node name="Node3D2971" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 74, 0, 146) - -[node name="Node3D2973" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 78, 0, 146) - -[node name="Node3D2977" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 82, 0, 146) - -[node name="Node3D2980" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 86, 0, 146) - -[node name="Node3D2982" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 90, 0, 146) - -[node name="Node3D2986" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 94, 0, 146) - -[node name="Node3D3025" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 98, 0, 86) - -[node name="Node3D3026" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 98, 0, 90) - -[node name="Node3D3027" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 102, 0, 86) - -[node name="Node3D3028" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 102, 0, 90) - -[node name="Node3D3029" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 98, 0, 94) - -[node name="Node3D3030" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 102, 0, 94) - -[node name="Node3D3031" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 106, 0, 86) - -[node name="Node3D3032" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 106, 0, 90) - -[node name="Node3D3033" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 106, 0, 94) - -[node name="Node3D3034" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 110, 0, 86) - -[node name="Node3D3035" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 110, 0, 90) - -[node name="Node3D3036" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 114, 0, 86) - -[node name="Node3D3037" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 114, 0, 90) - -[node name="Node3D3038" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 110, 0, 94) - -[node name="Node3D3039" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 114, 0, 94) - -[node name="Node3D3040" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 118, 0, 86) - -[node name="Node3D3041" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 118, 0, 90) - -[node name="Node3D3042" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 118, 0, 94) - -[node name="Node3D3043" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 98, 0, 98) - -[node name="Node3D3044" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 98, 0, 102) - -[node name="Node3D3045" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 102, 0, 98) - -[node name="Node3D3046" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 102, 0, 102) - -[node name="Node3D3047" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 98, 0, 106) - -[node name="Node3D3048" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 102, 0, 106) - -[node name="Node3D3049" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 106, 0, 98) - -[node name="Node3D3050" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 106, 0, 102) - -[node name="Node3D3051" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 106, 0, 106) - -[node name="Node3D3052" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 110, 0, 98) - -[node name="Node3D3053" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 110, 0, 102) - -[node name="Node3D3054" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 114, 0, 98) - -[node name="Node3D3055" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 114, 0, 102) - -[node name="Node3D3056" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 110, 0, 106) - -[node name="Node3D3057" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 114, 0, 106) - -[node name="Node3D3058" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 118, 0, 98) - -[node name="Node3D3059" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 118, 0, 102) - -[node name="Node3D3060" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 118, 0, 106) - -[node name="Node3D3061" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 122, 0, 86) - -[node name="Node3D3062" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 122, 0, 90) - -[node name="Node3D3063" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 126, 0, 86) - -[node name="Node3D3064" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 126, 0, 90) - -[node name="Node3D3065" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 122, 0, 94) - -[node name="Node3D3066" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 126, 0, 94) - -[node name="Node3D3067" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 130, 0, 86) - -[node name="Node3D3068" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 130, 0, 90) - -[node name="Node3D3069" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 130, 0, 94) - -[node name="Node3D3070" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 134, 0, 86) - -[node name="Node3D3071" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 134, 0, 90) - -[node name="Node3D3072" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 138, 0, 86) - -[node name="Node3D3073" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 138, 0, 90) - -[node name="Node3D3074" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 134, 0, 94) - -[node name="Node3D3075" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 138, 0, 94) - -[node name="Node3D3076" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 142, 0, 86) - -[node name="Node3D3077" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 142, 0, 90) - -[node name="Node3D3078" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 142, 0, 94) - -[node name="Node3D3079" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 122, 0, 98) - -[node name="Node3D3080" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 122, 0, 102) - -[node name="Node3D3081" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 126, 0, 98) - -[node name="Node3D3082" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 126, 0, 102) - -[node name="Node3D3083" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 122, 0, 106) - -[node name="Node3D3084" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 126, 0, 106) - -[node name="Node3D3085" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 130, 0, 98) - -[node name="Node3D3086" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 130, 0, 102) - -[node name="Node3D3087" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 130, 0, 106) - -[node name="Node3D3088" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 134, 0, 98) - -[node name="Node3D3089" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 134, 0, 102) - -[node name="Node3D3090" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 138, 0, 98) - -[node name="Node3D3091" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 138, 0, 102) - -[node name="Node3D3092" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 134, 0, 106) - -[node name="Node3D3093" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 138, 0, 106) - -[node name="Node3D3094" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 142, 0, 98) - -[node name="Node3D3095" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 142, 0, 102) - -[node name="Node3D3096" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 142, 0, 106) - -[node name="Node3D3097" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 98, 0, 110) - -[node name="Node3D3098" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 98, 0, 114) - -[node name="Node3D3099" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 102, 0, 110) - -[node name="Node3D3100" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 102, 0, 114) - -[node name="Node3D3101" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 98, 0, 118) - -[node name="Node3D3102" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 102, 0, 118) - -[node name="Node3D3103" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 106, 0, 110) - -[node name="Node3D3104" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 106, 0, 114) - -[node name="Node3D3105" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 106, 0, 118) - -[node name="Node3D3106" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 110, 0, 110) - -[node name="Node3D3107" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 110, 0, 114) - -[node name="Node3D3108" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 114, 0, 110) - -[node name="Node3D3109" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 114, 0, 114) - -[node name="Node3D3110" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 110, 0, 118) - -[node name="Node3D3111" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 114, 0, 118) - -[node name="Node3D3112" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 118, 0, 110) - -[node name="Node3D3113" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 118, 0, 114) - -[node name="Node3D3114" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 118, 0, 118) - -[node name="Node3D3115" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 98, 0, 122) - -[node name="Node3D3116" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 98, 0, 126) - -[node name="Node3D3117" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 102, 0, 122) - -[node name="Node3D3118" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 102, 0, 126) - -[node name="Node3D3119" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 98, 0, 130) - -[node name="Node3D3120" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 102, 0, 130) - -[node name="Node3D3121" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 106, 0, 122) - -[node name="Node3D3122" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 106, 0, 126) - -[node name="Node3D3123" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 106, 0, 130) - -[node name="Node3D3124" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 110, 0, 122) - -[node name="Node3D3125" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 110, 0, 126) - -[node name="Node3D3126" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 114, 0, 122) - -[node name="Node3D3127" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 114, 0, 126) - -[node name="Node3D3128" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 110, 0, 130) - -[node name="Node3D3129" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 114, 0, 130) - -[node name="Node3D3130" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 118, 0, 122) - -[node name="Node3D3131" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 118, 0, 126) - -[node name="Node3D3132" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 118, 0, 130) - -[node name="Node3D3133" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 122, 0, 110) - -[node name="Node3D3134" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 122, 0, 114) - -[node name="Node3D3135" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 126, 0, 110) - -[node name="Node3D3136" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 126, 0, 114) - -[node name="Node3D3137" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 122, 0, 118) - -[node name="Node3D3138" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 126, 0, 118) - -[node name="Node3D3139" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 130, 0, 110) - -[node name="Node3D3140" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 130, 0, 114) - -[node name="Node3D3141" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 130, 0, 118) - -[node name="Node3D3142" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 134, 0, 110) - -[node name="Node3D3143" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 134, 0, 114) - -[node name="Node3D3144" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 138, 0, 110) - -[node name="Node3D3145" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 138, 0, 114) - -[node name="Node3D3146" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 134, 0, 118) - -[node name="Node3D3147" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 138, 0, 118) - -[node name="Node3D3148" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 142, 0, 110) - -[node name="Node3D3149" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 142, 0, 114) - -[node name="Node3D3150" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 142, 0, 118) - -[node name="Node3D3151" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 122, 0, 122) - -[node name="Node3D3152" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 122, 0, 126) - -[node name="Node3D3153" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 126, 0, 122) - -[node name="Node3D3154" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 126, 0, 126) - -[node name="Node3D3155" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 122, 0, 130) - -[node name="Node3D3156" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 126, 0, 130) - -[node name="Node3D3157" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 130, 0, 122) - -[node name="Node3D3158" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 130, 0, 126) - -[node name="Node3D3159" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 130, 0, 130) - -[node name="Node3D3160" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 134, 0, 122) - -[node name="Node3D3161" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 134, 0, 126) - -[node name="Node3D3162" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 138, 0, 122) - -[node name="Node3D3163" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 138, 0, 126) - -[node name="Node3D3164" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 134, 0, 130) - -[node name="Node3D3165" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 138, 0, 130) - -[node name="Node3D3166" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 142, 0, 122) - -[node name="Node3D3167" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 142, 0, 126) - -[node name="Node3D3168" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 142, 0, 130) - -[node name="Node3D3169" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 98, 0, 86) - -[node name="Node3D3170" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 98, 0, 90) - -[node name="Node3D3171" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 102, 0, 86) - -[node name="Node3D3172" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 102, 0, 90) - -[node name="Node3D3173" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 98, 0, 94) - -[node name="Node3D3174" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 102, 0, 94) - -[node name="Node3D3175" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 106, 0, 86) - -[node name="Node3D3176" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 106, 0, 90) - -[node name="Node3D3177" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 106, 0, 94) - -[node name="Node3D3178" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 110, 0, 86) - -[node name="Node3D3179" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 110, 0, 90) - -[node name="Node3D3180" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 114, 0, 86) - -[node name="Node3D3181" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 114, 0, 90) - -[node name="Node3D3182" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 110, 0, 94) - -[node name="Node3D3183" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 114, 0, 94) - -[node name="Node3D3184" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 118, 0, 86) - -[node name="Node3D3185" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 118, 0, 90) - -[node name="Node3D3186" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 118, 0, 94) - -[node name="Node3D3187" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 98, 0, 98) - -[node name="Node3D3188" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 98, 0, 102) - -[node name="Node3D3189" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 102, 0, 98) - -[node name="Node3D3190" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 102, 0, 102) - -[node name="Node3D3191" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 98, 0, 106) - -[node name="Node3D3192" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 102, 0, 106) - -[node name="Node3D3193" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 106, 0, 98) - -[node name="Node3D3194" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 106, 0, 102) - -[node name="Node3D3195" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 106, 0, 106) - -[node name="Node3D3196" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 110, 0, 98) - -[node name="Node3D3197" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 110, 0, 102) - -[node name="Node3D3198" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 114, 0, 98) - -[node name="Node3D3199" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 114, 0, 102) - -[node name="Node3D3200" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 110, 0, 106) - -[node name="Node3D3201" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 114, 0, 106) - -[node name="Node3D3202" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 118, 0, 98) - -[node name="Node3D3203" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 118, 0, 102) - -[node name="Node3D3204" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 118, 0, 106) - -[node name="Node3D3205" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 122, 0, 86) - -[node name="Node3D3206" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 122, 0, 90) - -[node name="Node3D3207" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 126, 0, 86) - -[node name="Node3D3208" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 126, 0, 90) - -[node name="Node3D3209" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 122, 0, 94) - -[node name="Node3D3210" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 126, 0, 94) - -[node name="Node3D3211" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 130, 0, 86) - -[node name="Node3D3212" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 130, 0, 90) - -[node name="Node3D3213" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 130, 0, 94) - -[node name="Node3D3214" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 134, 0, 86) - -[node name="Node3D3215" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 134, 0, 90) - -[node name="Node3D3216" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 138, 0, 86) - -[node name="Node3D3217" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 138, 0, 90) - -[node name="Node3D3218" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 134, 0, 94) - -[node name="Node3D3219" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 138, 0, 94) - -[node name="Node3D3220" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 142, 0, 86) - -[node name="Node3D3221" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 142, 0, 90) - -[node name="Node3D3222" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 142, 0, 94) - -[node name="Node3D3223" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 122, 0, 98) - -[node name="Node3D3224" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 122, 0, 102) - -[node name="Node3D3225" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 126, 0, 98) - -[node name="Node3D3226" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 126, 0, 102) - -[node name="Node3D3227" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 122, 0, 106) - -[node name="Node3D3228" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 126, 0, 106) - -[node name="Node3D3229" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 130, 0, 98) - -[node name="Node3D3230" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 130, 0, 102) - -[node name="Node3D3231" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 130, 0, 106) - -[node name="Node3D3232" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 134, 0, 98) - -[node name="Node3D3233" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 134, 0, 102) - -[node name="Node3D3234" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 138, 0, 98) - -[node name="Node3D3235" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 138, 0, 102) - -[node name="Node3D3236" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 134, 0, 106) - -[node name="Node3D3237" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 138, 0, 106) - -[node name="Node3D3238" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 142, 0, 98) - -[node name="Node3D3239" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 142, 0, 102) - -[node name="Node3D3240" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 142, 0, 106) - -[node name="Node3D3241" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 98, 0, 110) - -[node name="Node3D3242" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 98, 0, 114) - -[node name="Node3D3243" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 102, 0, 110) - -[node name="Node3D3244" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 102, 0, 114) - -[node name="Node3D3245" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 98, 0, 118) - -[node name="Node3D3246" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 102, 0, 118) - -[node name="Node3D3247" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 106, 0, 110) - -[node name="Node3D3248" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 106, 0, 114) - -[node name="Node3D3249" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 106, 0, 118) - -[node name="Node3D3250" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 110, 0, 110) - -[node name="Node3D3251" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 110, 0, 114) - -[node name="Node3D3252" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 114, 0, 110) - -[node name="Node3D3253" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 114, 0, 114) - -[node name="Node3D3254" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 110, 0, 118) - -[node name="Node3D3255" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 114, 0, 118) - -[node name="Node3D3256" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 118, 0, 110) - -[node name="Node3D3257" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 118, 0, 114) - -[node name="Node3D3258" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 118, 0, 118) - -[node name="Node3D3259" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 98, 0, 122) - -[node name="Node3D3260" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 98, 0, 126) - -[node name="Node3D3261" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 102, 0, 122) - -[node name="Node3D3262" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 102, 0, 126) - -[node name="Node3D3263" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 98, 0, 130) - -[node name="Node3D3264" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 102, 0, 130) - -[node name="Node3D3265" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 106, 0, 122) - -[node name="Node3D3266" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 106, 0, 126) - -[node name="Node3D3267" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 106, 0, 130) - -[node name="Node3D3268" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 110, 0, 122) - -[node name="Node3D3269" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 110, 0, 126) - -[node name="Node3D3270" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 114, 0, 122) - -[node name="Node3D3271" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 114, 0, 126) - -[node name="Node3D3272" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 110, 0, 130) - -[node name="Node3D3273" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 114, 0, 130) - -[node name="Node3D3274" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 118, 0, 122) - -[node name="Node3D3275" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 118, 0, 126) - -[node name="Node3D3276" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 118, 0, 130) - -[node name="Node3D3277" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 122, 0, 110) - -[node name="Node3D3278" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 122, 0, 114) - -[node name="Node3D3279" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 126, 0, 110) - -[node name="Node3D3280" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 126, 0, 114) - -[node name="Node3D3281" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 122, 0, 118) - -[node name="Node3D3282" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 126, 0, 118) - -[node name="Node3D3283" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 130, 0, 110) - -[node name="Node3D3284" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 130, 0, 114) - -[node name="Node3D3285" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 130, 0, 118) - -[node name="Node3D3286" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 134, 0, 110) - -[node name="Node3D3287" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 134, 0, 114) - -[node name="Node3D3288" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 138, 0, 110) - -[node name="Node3D3289" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 138, 0, 114) - -[node name="Node3D3290" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 134, 0, 118) - -[node name="Node3D3291" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 138, 0, 118) - -[node name="Node3D3292" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 142, 0, 110) - -[node name="Node3D3293" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 142, 0, 114) - -[node name="Node3D3294" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 142, 0, 118) - -[node name="Node3D3295" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 122, 0, 122) - -[node name="Node3D3296" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 122, 0, 126) - -[node name="Node3D3297" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 126, 0, 122) - -[node name="Node3D3298" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 126, 0, 126) - -[node name="Node3D3299" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 122, 0, 130) - -[node name="Node3D3300" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 126, 0, 130) - -[node name="Node3D3301" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 130, 0, 122) - -[node name="Node3D3302" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 130, 0, 126) - -[node name="Node3D3303" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 130, 0, 130) - -[node name="Node3D3304" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 134, 0, 122) - -[node name="Node3D3305" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 134, 0, 126) - -[node name="Node3D3306" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 138, 0, 122) - -[node name="Node3D3307" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 138, 0, 126) - -[node name="Node3D3308" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 134, 0, 130) - -[node name="Node3D3309" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 138, 0, 130) - -[node name="Node3D3310" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 142, 0, 122) - -[node name="Node3D3311" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 142, 0, 126) - -[node name="Node3D3312" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 142, 0, 130) - -[node name="Node3D3313" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 98, 0, 134) - -[node name="Node3D3314" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 98, 0, 138) - -[node name="Node3D3315" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 102, 0, 134) - -[node name="Node3D3316" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 102, 0, 138) - -[node name="Node3D3317" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 98, 0, 142) - -[node name="Node3D3318" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 102, 0, 142) - -[node name="Node3D3319" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 106, 0, 134) - -[node name="Node3D3320" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 106, 0, 138) - -[node name="Node3D3321" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 106, 0, 142) - -[node name="Node3D3322" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 110, 0, 134) - -[node name="Node3D3323" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 110, 0, 138) - -[node name="Node3D3324" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 114, 0, 134) - -[node name="Node3D3325" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 114, 0, 138) - -[node name="Node3D3326" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 110, 0, 142) - -[node name="Node3D3327" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 114, 0, 142) - -[node name="Node3D3328" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 118, 0, 134) - -[node name="Node3D3329" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 118, 0, 138) - -[node name="Node3D3330" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 118, 0, 142) - -[node name="Node3D3331" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 98, 0, 146) - -[node name="Node3D3333" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 102, 0, 146) - -[node name="Node3D3337" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 106, 0, 146) - -[node name="Node3D3340" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 110, 0, 146) - -[node name="Node3D3342" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 114, 0, 146) - -[node name="Node3D3346" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 118, 0, 146) - -[node name="Node3D3349" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 122, 0, 134) - -[node name="Node3D3350" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 122, 0, 138) - -[node name="Node3D3351" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 126, 0, 134) - -[node name="Node3D3352" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 126, 0, 138) - -[node name="Node3D3353" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 122, 0, 142) - -[node name="Node3D3354" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 126, 0, 142) - -[node name="Node3D3355" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 130, 0, 134) - -[node name="Node3D3356" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 130, 0, 138) - -[node name="Node3D3357" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 130, 0, 142) - -[node name="Node3D3358" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 134, 0, 134) - -[node name="Node3D3359" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 134, 0, 138) - -[node name="Node3D3360" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 138, 0, 134) - -[node name="Node3D3361" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 138, 0, 138) - -[node name="Node3D3362" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 134, 0, 142) - -[node name="Node3D3363" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 138, 0, 142) - -[node name="Node3D3364" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 142, 0, 134) - -[node name="Node3D3365" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 142, 0, 138) - -[node name="Node3D3366" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 142, 0, 142) - -[node name="Node3D3367" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 122, 0, 146) - -[node name="Node3D3369" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 126, 0, 146) - -[node name="Node3D3373" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 130, 0, 146) - -[node name="Node3D3376" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 134, 0, 146) - -[node name="Node3D3378" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 138, 0, 146) - -[node name="Node3D3382" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 142, 0, 146) - -[node name="Node3D3421" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 98, 0, 134) - -[node name="Node3D3422" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 98, 0, 138) - -[node name="Node3D3423" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 102, 0, 134) - -[node name="Node3D3424" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 102, 0, 138) - -[node name="Node3D3425" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 98, 0, 142) - -[node name="Node3D3426" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 102, 0, 142) - -[node name="Node3D3427" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 106, 0, 134) - -[node name="Node3D3428" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 106, 0, 138) - -[node name="Node3D3429" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 106, 0, 142) - -[node name="Node3D3430" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 110, 0, 134) - -[node name="Node3D3431" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 110, 0, 138) - -[node name="Node3D3432" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 114, 0, 134) - -[node name="Node3D3433" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 114, 0, 138) - -[node name="Node3D3434" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 110, 0, 142) - -[node name="Node3D3435" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 114, 0, 142) - -[node name="Node3D3436" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 118, 0, 134) - -[node name="Node3D3437" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 118, 0, 138) - -[node name="Node3D3438" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 118, 0, 142) - -[node name="Node3D3439" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 98, 0, 146) - -[node name="Node3D3441" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 102, 0, 146) - -[node name="Node3D3445" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 106, 0, 146) - -[node name="Node3D3448" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 110, 0, 146) - -[node name="Node3D3450" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 114, 0, 146) - -[node name="Node3D3454" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 118, 0, 146) - -[node name="Node3D3457" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 122, 0, 134) - -[node name="Node3D3458" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 122, 0, 138) - -[node name="Node3D3459" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 126, 0, 134) - -[node name="Node3D3460" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 126, 0, 138) - -[node name="Node3D3461" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 122, 0, 142) - -[node name="Node3D3462" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 126, 0, 142) - -[node name="Node3D3463" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 130, 0, 134) - -[node name="Node3D3464" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 130, 0, 138) - -[node name="Node3D3465" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 130, 0, 142) - -[node name="Node3D3466" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 134, 0, 134) - -[node name="Node3D3467" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 134, 0, 138) - -[node name="Node3D3468" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 138, 0, 134) - -[node name="Node3D3469" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 138, 0, 138) - -[node name="Node3D3470" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 134, 0, 142) - -[node name="Node3D3471" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 138, 0, 142) - -[node name="Node3D3472" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 142, 0, 134) - -[node name="Node3D3473" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 142, 0, 138) - -[node name="Node3D3474" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 142, 0, 142) - -[node name="Node3D3475" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 122, 0, 146) - -[node name="Node3D3477" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 126, 0, 146) - -[node name="Node3D3481" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 130, 0, 146) - -[node name="Node3D3484" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 134, 0, 146) - -[node name="Node3D3486" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 138, 0, 146) - -[node name="Node3D3490" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 142, 0, 146) - -[node name="Node3D3529" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 146, 0, 86) - -[node name="Node3D3530" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 146, 0, 90) - -[node name="Node3D3531" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 150, 0, 86) - -[node name="Node3D3532" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 150, 0, 90) - -[node name="Node3D3533" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 146, 0, 94) - -[node name="Node3D3534" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 150, 0, 94) - -[node name="Node3D3535" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 154, 0, 86) - -[node name="Node3D3536" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 154, 0, 90) - -[node name="Node3D3537" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 154, 0, 94) - -[node name="Node3D3538" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 158, 0, 86) - -[node name="Node3D3539" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 158, 0, 90) - -[node name="Node3D3540" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 162, 0, 86) - -[node name="Node3D3541" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 162, 0, 90) - -[node name="Node3D3542" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 158, 0, 94) - -[node name="Node3D3543" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 162, 0, 94) - -[node name="Node3D3547" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 146, 0, 98) - -[node name="Node3D3548" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 146, 0, 102) - -[node name="Node3D3549" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 150, 0, 98) - -[node name="Node3D3550" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 150, 0, 102) - -[node name="Node3D3551" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 146, 0, 106) - -[node name="Node3D3552" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 150, 0, 106) - -[node name="Node3D3553" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 154, 0, 98) - -[node name="Node3D3554" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 154, 0, 102) - -[node name="Node3D3555" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 154, 0, 106) - -[node name="Node3D3556" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 158, 0, 98) - -[node name="Node3D3557" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 158, 0, 102) - -[node name="Node3D3558" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 162, 0, 98) - -[node name="Node3D3559" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 162, 0, 102) - -[node name="Node3D3560" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 158, 0, 106) - -[node name="Node3D3561" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 162, 0, 106) - -[node name="Node3D3601" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 146, 0, 110) - -[node name="Node3D3602" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 146, 0, 114) - -[node name="Node3D3603" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 150, 0, 110) - -[node name="Node3D3604" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 150, 0, 114) - -[node name="Node3D3605" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 146, 0, 118) - -[node name="Node3D3606" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 150, 0, 118) - -[node name="Node3D3607" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 154, 0, 110) - -[node name="Node3D3608" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 154, 0, 114) - -[node name="Node3D3609" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 154, 0, 118) - -[node name="Node3D3610" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 158, 0, 110) - -[node name="Node3D3611" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 158, 0, 114) - -[node name="Node3D3612" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 162, 0, 110) - -[node name="Node3D3613" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 162, 0, 114) - -[node name="Node3D3614" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 158, 0, 118) - -[node name="Node3D3615" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 162, 0, 118) - -[node name="Node3D3619" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 146, 0, 122) - -[node name="Node3D3620" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 146, 0, 126) - -[node name="Node3D3621" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 150, 0, 122) - -[node name="Node3D3622" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 150, 0, 126) - -[node name="Node3D3623" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 146, 0, 130) - -[node name="Node3D3624" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 150, 0, 130) - -[node name="Node3D3625" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 154, 0, 122) - -[node name="Node3D3626" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 154, 0, 126) - -[node name="Node3D3627" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 154, 0, 130) - -[node name="Node3D3628" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 158, 0, 122) - -[node name="Node3D3629" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 158, 0, 126) - -[node name="Node3D3630" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 162, 0, 122) - -[node name="Node3D3631" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 162, 0, 126) - -[node name="Node3D3632" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 158, 0, 130) - -[node name="Node3D3633" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 162, 0, 130) - -[node name="Node3D3673" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 146, 0, 86) - -[node name="Node3D3674" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 146, 0, 90) - -[node name="Node3D3675" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 150, 0, 86) - -[node name="Node3D3676" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 150, 0, 90) - -[node name="Node3D3677" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 146, 0, 94) - -[node name="Node3D3678" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 150, 0, 94) - -[node name="Node3D3679" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 154, 0, 86) - -[node name="Node3D3680" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 154, 0, 90) - -[node name="Node3D3681" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 154, 0, 94) - -[node name="Node3D3682" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 158, 0, 86) - -[node name="Node3D3683" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 158, 0, 90) - -[node name="Node3D3684" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 162, 0, 86) - -[node name="Node3D3685" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 162, 0, 90) - -[node name="Node3D3686" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 158, 0, 94) - -[node name="Node3D3687" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 162, 0, 94) - -[node name="Node3D3691" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 146, 0, 98) - -[node name="Node3D3692" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 146, 0, 102) - -[node name="Node3D3693" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 150, 0, 98) - -[node name="Node3D3694" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 150, 0, 102) - -[node name="Node3D3695" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 146, 0, 106) - -[node name="Node3D3696" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 150, 0, 106) - -[node name="Node3D3697" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 154, 0, 98) - -[node name="Node3D3698" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 154, 0, 102) - -[node name="Node3D3699" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 154, 0, 106) - -[node name="Node3D3700" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 158, 0, 98) - -[node name="Node3D3701" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 158, 0, 102) - -[node name="Node3D3702" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 162, 0, 98) - -[node name="Node3D3703" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 162, 0, 102) - -[node name="Node3D3704" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 158, 0, 106) - -[node name="Node3D3705" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 162, 0, 106) - -[node name="Node3D3745" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 146, 0, 110) - -[node name="Node3D3746" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 146, 0, 114) - -[node name="Node3D3747" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 150, 0, 110) - -[node name="Node3D3748" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 150, 0, 114) - -[node name="Node3D3749" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 146, 0, 118) - -[node name="Node3D3750" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 150, 0, 118) - -[node name="Node3D3751" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 154, 0, 110) - -[node name="Node3D3752" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 154, 0, 114) - -[node name="Node3D3753" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 154, 0, 118) - -[node name="Node3D3754" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 158, 0, 110) - -[node name="Node3D3755" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 158, 0, 114) - -[node name="Node3D3756" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 162, 0, 110) - -[node name="Node3D3757" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 162, 0, 114) - -[node name="Node3D3758" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 158, 0, 118) - -[node name="Node3D3759" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 162, 0, 118) - -[node name="Node3D3763" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 146, 0, 122) - -[node name="Node3D3764" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 146, 0, 126) - -[node name="Node3D3765" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 150, 0, 122) - -[node name="Node3D3766" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 150, 0, 126) - -[node name="Node3D3767" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 146, 0, 130) - -[node name="Node3D3768" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 150, 0, 130) - -[node name="Node3D3769" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 154, 0, 122) - -[node name="Node3D3770" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 154, 0, 126) - -[node name="Node3D3771" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 154, 0, 130) - -[node name="Node3D3772" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 158, 0, 122) - -[node name="Node3D3773" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 158, 0, 126) - -[node name="Node3D3774" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 162, 0, 122) - -[node name="Node3D3775" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 162, 0, 126) - -[node name="Node3D3776" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 158, 0, 130) - -[node name="Node3D3777" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 162, 0, 130) - -[node name="Node3D3817" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 146, 0, 134) - -[node name="Node3D3818" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 146, 0, 138) - -[node name="Node3D3819" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 150, 0, 134) - -[node name="Node3D3820" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 150, 0, 138) - -[node name="Node3D3821" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 146, 0, 142) - -[node name="Node3D3822" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 150, 0, 142) - -[node name="Node3D3823" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 154, 0, 134) - -[node name="Node3D3824" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 154, 0, 138) - -[node name="Node3D3825" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 154, 0, 142) - -[node name="Node3D3826" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 158, 0, 134) - -[node name="Node3D3827" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 158, 0, 138) - -[node name="Node3D3828" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 162, 0, 134) - -[node name="Node3D3829" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 162, 0, 138) - -[node name="Node3D3830" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 158, 0, 142) - -[node name="Node3D3831" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 162, 0, 142) - -[node name="Node3D3835" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 146, 0, 146) - -[node name="Node3D3837" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 150, 0, 146) - -[node name="Node3D3841" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 154, 0, 146) - -[node name="Node3D3844" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 158, 0, 146) - -[node name="Node3D3846" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 162, 0, 146) - -[node name="Node3D3925" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 146, 0, 134) - -[node name="Node3D3926" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 146, 0, 138) - -[node name="Node3D3927" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 150, 0, 134) - -[node name="Node3D3928" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 150, 0, 138) - -[node name="Node3D3929" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 146, 0, 142) - -[node name="Node3D3930" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 150, 0, 142) - -[node name="Node3D3931" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 154, 0, 134) - -[node name="Node3D3932" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 154, 0, 138) - -[node name="Node3D3933" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 154, 0, 142) - -[node name="Node3D3934" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 158, 0, 134) - -[node name="Node3D3935" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 158, 0, 138) - -[node name="Node3D3936" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 162, 0, 134) - -[node name="Node3D3937" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 162, 0, 138) - -[node name="Node3D3938" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 158, 0, 142) - -[node name="Node3D3939" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 162, 0, 142) - -[node name="Node3D3943" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 146, 0, 146) - -[node name="Node3D3945" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 150, 0, 146) - -[node name="Node3D3949" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 154, 0, 146) - -[node name="Node3D3952" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 158, 0, 146) - -[node name="Node3D3954" parent="." instance=ExtResource("1_np0l4")] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 162, 0, 146)