diff --git a/2d/navigation/project.godot b/2d/navigation/project.godot index 9df8a0f6..565308be 100644 --- a/2d/navigation/project.godot +++ b/2d/navigation/project.godot @@ -10,9 +10,9 @@ config_version=4 [application] -config/name="Node3D Polygon 2D" -config/description="Example of using 2D navigation using a Node3DPolygon in a -Node3DPolygonInstance node. It uses the 2D navigation API to request +config/name="Navigation Polygon 2D" +config/description="Example of using 2D navigation using a NavigationPolygon in a +NavigationPolygonInstance node. It uses the 2D navigation API to request a path between two points, and then traverses the resulting path." run/main_scene="res://level.tscn" config/icon="res://icon.png" diff --git a/3d/ik/addons/sade/editor_gizmo_texture.png.import b/3d/ik/addons/sade/editor_gizmo_texture.png.import index b1ad92a0..4592e80c 100644 --- a/3d/ik/addons/sade/editor_gizmo_texture.png.import +++ b/3d/ik/addons/sade/editor_gizmo_texture.png.import @@ -1,38 +1,35 @@ [remap] importer="texture" -type="StreamTexture2D" -path.s3tc="res://.godot/imported/editor_gizmo_texture.png-be14d96c2d7829c8511766ceb15d5a7f.s3tc.stex" -path.etc2="res://.godot/imported/editor_gizmo_texture.png-be14d96c2d7829c8511766ceb15d5a7f.etc2.stex" -path.etc="res://.godot/imported/editor_gizmo_texture.png-be14d96c2d7829c8511766ceb15d5a7f.etc.stex" +type="CompressedTexture2D" +uid="uid://bw3q8aq6gfuof" +path.s3tc="res://.godot/imported/editor_gizmo_texture.png-be14d96c2d7829c8511766ceb15d5a7f.s3tc.ctex" +path.etc2="res://.godot/imported/editor_gizmo_texture.png-be14d96c2d7829c8511766ceb15d5a7f.etc2.ctex" metadata={ -"imported_formats": ["s3tc", "etc2", "etc"], +"imported_formats": ["s3tc", "etc2"], "vram_texture": true } [deps] source_file="res://addons/sade/editor_gizmo_texture.png" -dest_files=["res://.godot/imported/editor_gizmo_texture.png-be14d96c2d7829c8511766ceb15d5a7f.s3tc.stex", "res://.godot/imported/editor_gizmo_texture.png-be14d96c2d7829c8511766ceb15d5a7f.etc2.stex", "res://.godot/imported/editor_gizmo_texture.png-be14d96c2d7829c8511766ceb15d5a7f.etc.stex"] +dest_files=["res://.godot/imported/editor_gizmo_texture.png-be14d96c2d7829c8511766ceb15d5a7f.s3tc.ctex", "res://.godot/imported/editor_gizmo_texture.png-be14d96c2d7829c8511766ceb15d5a7f.etc2.ctex"] [params] compress/mode=2 compress/lossy_quality=0.7 -compress/hdr_mode=0 +compress/hdr_compression=1 compress/bptc_ldr=0 compress/normal_map=0 -flags/repeat=true -flags/filter=false -flags/mipmaps=true -flags/anisotropic=false -flags/srgb=1 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" process/fix_alpha_border=true process/premult_alpha=false -process/HDR_as_SRGB=false -process/invert_color=false process/normal_map_invert_y=false -stream=false -size_limit=0 -detect_3d=false -svg/scale=1.0 +process/hdr_as_srgb=false +process/size_limit=0 +detect_3d/compress_to=0 diff --git a/3d/ik/addons/sade/ik_fabrik.gd b/3d/ik/addons/sade/ik_fabrik.gd index f6756610..9821ce88 100644 --- a/3d/ik/addons/sade/ik_fabrik.gd +++ b/3d/ik/addons/sade/ik_fabrik.gd @@ -10,21 +10,68 @@ const CHAIN_MAX_ITER = 10 @export var skeleton_path: NodePath: set(value): - # TODO: Manually copy the code from this method. - _set_skeleton_path(value) + skeleton_path = value + # Because get_node doesn't work in the first call, we just want to assign instead + if first_call: + return + + if skeleton_path == null: + if debug_messages: + printerr(name, " - IK_FABRIK: No Nodepath selected for skeleton_path!") + return + + var temp = get_node(skeleton_path) + if temp != null: + # If it has the method "get_bone_global_pose" it is likely a Skeleton3D + if temp.has_method("get_bone_global_pose"): + skeleton = temp + bone_IDs = {} + + # (Delete all of the old bone nodes and) Make all of the bone nodes for each bone in the IK chain + _make_bone_nodes() + + if debug_messages: + printerr(name, " - IK_FABRIK: Attached to a new skeleton") + # If not, then it's (likely) not a Skeleton3D node + else: + skeleton = null + if debug_messages: + printerr(name, " - IK_FABRIK: skeleton_path does not point to a skeleton!") + else: + if debug_messages: + printerr(name, " - IK_FABRIK: No Nodepath selected for skeleton_path!") + + @export var bones_in_chain: PackedStringArray: set(value): - # TODO: Manually copy the code from this method. - _set_bone_chain_bones(value) + bones_in_chain = value + _make_bone_nodes() + + @export var bones_in_chain_lengths: PackedFloat32Array: set(value): - # TODO: Manually copy the code from this method. - _set_bone_chain_lengths(value) + bones_in_chain_lengths = value + total_length = INF -@export var update_mode: int, "_process", "_physics_process", "_notification", "none" = 0: + +@export_enum("_process", "_physics_process", "_notification", "none") var update_mode: int = 0: set(value): - # TODO: Manually copy the code from this method. - _set_update_mode(value) + update_mode = value + + set_process(false) + set_physics_process(false) + set_notify_transform(false) + + if update_mode == 0: + set_process(true) + elif update_mode == 1: + set_process(true) + elif update_mode == 2: + set_notify_transform(true) + else: + if debug_messages: + printerr(name, " - IK_FABRIK: Unknown update mode. NOT updating skeleton") + return var target: Node3D = null @@ -101,7 +148,7 @@ func _ready(): _make_bone_nodes() # Make sure we're using the right update mode - _set_update_mode(update_mode) + update_mode = update_mode # Various upate methods @@ -129,11 +176,11 @@ func _notification(what): func update_skeleton(): #### ERROR CHECKING conditions if first_call: - _set_skeleton_path(skeleton_path) + skeleton_path = skeleton_path first_call = false if skeleton == null: - _set_skeleton_path(skeleton_path) + skeleton_path = skeleton_path return @@ -385,63 +432,6 @@ func _make_editor_sphere_at_node(node, color): indicator_mesh.material = indicator_material indicator.mesh = indicator_mesh - -############# SETGET FUNCTIONS ############# - -func _set_update_mode(new_value): - update_mode = new_value - - set_process(false) - set_physics_process(false) - set_notify_transform(false) - - if update_mode == 0: - set_process(true) - elif update_mode == 1: - set_process(true) - elif update_mode == 2: - set_notify_transform(true) - else: - if debug_messages: - printerr(name, " - IK_FABRIK: Unknown update mode. NOT updating skeleton") - return - - -func _set_skeleton_path(new_value): - # Because get_node doesn't work in the first call, we just want to assign instead - if first_call: - skeleton_path = new_value - return - - skeleton_path = new_value - - if skeleton_path == null: - if debug_messages: - printerr(name, " - IK_FABRIK: No Nodepath selected for skeleton_path!") - return - - var temp = get_node(skeleton_path) - if temp != null: - # If it has the method "get_bone_global_pose" it is likely a Skeleton3D - if temp.has_method("get_bone_global_pose"): - skeleton = temp - bone_IDs = {} - - # (Delete all of the old bone nodes and) Make all of the bone nodes for each bone in the IK chain - _make_bone_nodes() - - if debug_messages: - printerr(name, " - IK_FABRIK: Attached to a new skeleton") - # If not, then it's (likely) not a Skeleton3D node - else: - skeleton = null - if debug_messages: - printerr(name, " - IK_FABRIK: skeleton_path does not point to a skeleton!") - else: - if debug_messages: - printerr(name, " - IK_FABRIK: No Nodepath selected for skeleton_path!") - - ############# OTHER (NON IK SOLVER RELATED) FUNCTIONS ############# func _make_bone_nodes(): @@ -469,14 +459,3 @@ func _make_bone_nodes(): # If we are in the editor, we want to make a sphere at this node if Engine.editor_hint: _make_editor_sphere_at_node(bone_nodes[bone], Color(0.65, 0, 1, 1)) - - -func _set_bone_chain_bones(new_value): - bones_in_chain = new_value - - _make_bone_nodes() - - -func _set_bone_chain_lengths(new_value): - bones_in_chain_lengths = new_value - total_length = INF diff --git a/3d/ik/addons/sade/ik_fabrik.png.import b/3d/ik/addons/sade/ik_fabrik.png.import index 4bfe7162..a70db7b3 100644 --- a/3d/ik/addons/sade/ik_fabrik.png.import +++ b/3d/ik/addons/sade/ik_fabrik.png.import @@ -1,8 +1,9 @@ [remap] importer="texture" -type="StreamTexture2D" -path="res://.godot/imported/ik_fabrik.png-c99ad3d889def35eb72d4107e9571c00.stex" +type="CompressedTexture2D" +uid="uid://dfojvg0ykx146" +path="res://.godot/imported/ik_fabrik.png-c99ad3d889def35eb72d4107e9571c00.ctex" metadata={ "vram_texture": false } @@ -10,26 +11,23 @@ metadata={ [deps] source_file="res://addons/sade/ik_fabrik.png" -dest_files=["res://.godot/imported/ik_fabrik.png-c99ad3d889def35eb72d4107e9571c00.stex"] +dest_files=["res://.godot/imported/ik_fabrik.png-c99ad3d889def35eb72d4107e9571c00.ctex"] [params] compress/mode=0 compress/lossy_quality=0.7 -compress/hdr_mode=0 +compress/hdr_compression=1 compress/bptc_ldr=0 compress/normal_map=0 -flags/repeat=0 -flags/filter=true -flags/mipmaps=false -flags/anisotropic=false -flags/srgb=2 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" process/fix_alpha_border=true process/premult_alpha=false -process/HDR_as_SRGB=false -process/invert_color=false process/normal_map_invert_y=false -stream=false -size_limit=0 -detect_3d=true -svg/scale=1.0 +process/hdr_as_srgb=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/3d/ik/addons/sade/ik_look_at.gd b/3d/ik/addons/sade/ik_look_at.gd index f316cfc0..847adeec 100644 --- a/3d/ik/addons/sade/ik_look_at.gd +++ b/3d/ik/addons/sade/ik_look_at.gd @@ -6,12 +6,35 @@ extends Node3D # TODO: Manually copy the code from this method. _set_skeleton_path(value) @export var bone_name: String = "" -@export var update_mode: int, "_process", "_physics_process", "_notification", "none" = 0: +@export_enum("_process", "_physics_process", "_notification", "none") var update_mode: int = 0: set(value): - # TODO: Manually copy the code from this method. - _set_update(value) -@export var look_at_axis: int, "X-up", "Y-up", "Z-up" = 1 -@export var interpolation: float, 0.0, 1.0, 0.001 = 1.0 + update_mode = value + + # Set all of our processes to false. + set_process(false) + set_physics_process(false) + set_notify_transform(false) + + # Based on the value of passed to update, enable the correct process. + if update_mode == 0: + set_process(true) + if debug_messages: + print(name, " - IK_LookAt: updating skeleton using _process...") + elif update_mode == 1: + set_physics_process(true) + if debug_messages: + print(name, " - IK_LookAt: updating skeleton using _physics_process...") + elif update_mode == 2: + set_notify_transform(true) + if debug_messages: + print(name, " - IK_LookAt: updating skeleton using _notification...") + else: + if debug_messages: + print(name, " - IK_LookAt: NOT updating skeleton due to unknown update method...") + + +@export_enum("X-up", "Y-up", "Z-up") var look_at_axis: int = 1 +@export_range(0.0, 1.0, 0.001) var interpolation: float = 1.0 @export var use_our_rotation_x: bool = false @export var use_our_rotation_y: bool = false @export var use_our_rotation_z: bool = false @@ -163,32 +186,6 @@ func _setup_for_editor(): _editor_indicator.mesh = indicator_mesh -func _set_update(new_value): - update_mode = new_value - - # Set all of our processes to false. - set_process(false) - set_physics_process(false) - set_notify_transform(false) - - # Based on the value of passed to update, enable the correct process. - if update_mode == 0: - set_process(true) - if debug_messages: - print(name, " - IK_LookAt: updating skeleton using _process...") - elif update_mode == 1: - set_physics_process(true) - if debug_messages: - print(name, " - IK_LookAt: updating skeleton using _physics_process...") - elif update_mode == 2: - set_notify_transform(true) - if debug_messages: - print(name, " - IK_LookAt: updating skeleton using _notification...") - else: - if debug_messages: - print(name, " - IK_LookAt: NOT updating skeleton due to unknown update method...") - - func _set_skeleton_path(new_value): # Because get_node doesn't work in the first call, we just want to assign instead. # This is to get around a issue with NodePaths exposed to the editor. diff --git a/3d/ik/addons/sade/ik_look_at.png.import b/3d/ik/addons/sade/ik_look_at.png.import index 7f5782ff..f6021f6d 100644 --- a/3d/ik/addons/sade/ik_look_at.png.import +++ b/3d/ik/addons/sade/ik_look_at.png.import @@ -1,8 +1,9 @@ [remap] importer="texture" -type="StreamTexture2D" -path="res://.godot/imported/ik_look_at.png-9127e12c7a59faf98e66142c84e0d5b7.stex" +type="CompressedTexture2D" +uid="uid://dhgpf3w8mh4ed" +path="res://.godot/imported/ik_look_at.png-9127e12c7a59faf98e66142c84e0d5b7.ctex" metadata={ "vram_texture": false } @@ -10,26 +11,23 @@ metadata={ [deps] source_file="res://addons/sade/ik_look_at.png" -dest_files=["res://.godot/imported/ik_look_at.png-9127e12c7a59faf98e66142c84e0d5b7.stex"] +dest_files=["res://.godot/imported/ik_look_at.png-9127e12c7a59faf98e66142c84e0d5b7.ctex"] [params] compress/mode=0 compress/lossy_quality=0.7 -compress/hdr_mode=0 +compress/hdr_compression=1 compress/bptc_ldr=0 compress/normal_map=0 -flags/repeat=0 -flags/filter=true -flags/mipmaps=false -flags/anisotropic=false -flags/srgb=2 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" process/fix_alpha_border=true process/premult_alpha=false -process/HDR_as_SRGB=false -process/invert_color=false process/normal_map_invert_y=false -stream=false -size_limit=0 -detect_3d=true -svg/scale=1.0 +process/hdr_as_srgb=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/3d/ik/button_change_scene.gd b/3d/ik/button_change_scene.gd index 70cb0c13..3b4ed09d 100644 --- a/3d/ik/button_change_scene.gd +++ b/3d/ik/button_change_scene.gd @@ -1,6 +1,6 @@ extends Button -@export var scene_to_change_to: String, FILE = null +@export_file var scene_to_change_to: String = null func _ready(): diff --git a/3d/ik/fabrik_ik.tscn b/3d/ik/fabrik_ik.tscn index 149b90b9..1db83d4f 100644 --- a/3d/ik/fabrik_ik.tscn +++ b/3d/ik/fabrik_ik.tscn @@ -1,51 +1,48 @@ -[gd_scene load_steps=15 format=2] +[gd_scene load_steps=14 format=3 uid="uid://lm753aby2tb6"] -[ext_resource path="res://addons/sade/editor_gizmo_texture.png" type="Texture2D" id=1] -[ext_resource path="res://model/godot_battle_bot.dae" type="PackedScene" id=2] -[ext_resource path="res://model/battle_bot_color.tres" type="Material" id=3] -[ext_resource path="res://model/battle_bot_emission.tres" type="Material" id=4] -[ext_resource path="res://target_from_mousepos.gd" type="Script" id=5] -[ext_resource path="res://addons/sade/ik_look_at.gd" type="Script" id=6] -[ext_resource path="res://addons/sade/ik_look_at.png" type="Texture2D" id=7] -[ext_resource path="res://addons/sade/ik_fabrik.gd" type="Script" id=8] -[ext_resource path="res://addons/sade/ik_fabrik.png" type="Texture2D" id=9] -[ext_resource path="res://button_change_scene.gd" type="Script" id=10] +[ext_resource type="Texture2D" uid="uid://bw3q8aq6gfuof" path="res://addons/sade/editor_gizmo_texture.png" id="1"] +[ext_resource type="PackedScene" uid="uid://ctssefekxjogg" path="res://model/godot_battle_bot.dae" id="2"] +[ext_resource type="Material" path="res://model/battle_bot_color.tres" id="3"] +[ext_resource type="Script" path="res://target_from_mousepos.gd" id="5"] +[ext_resource type="Script" path="res://addons/sade/ik_look_at.gd" id="6"] +[ext_resource type="Texture2D" uid="uid://dhgpf3w8mh4ed" path="res://addons/sade/ik_look_at.png" id="7"] +[ext_resource type="Script" path="res://addons/sade/ik_fabrik.gd" id="8"] +[ext_resource type="Texture2D" uid="uid://dfojvg0ykx146" path="res://addons/sade/ik_fabrik.png" id="9"] +[ext_resource type="Script" path="res://button_change_scene.gd" id="10"] -[sub_resource type="PlaneMesh" id=1] +[sub_resource type="PlaneMesh" id="1"] size = Vector2(40, 40) -[sub_resource type="StandardMaterial3D" id=2] -albedo_texture = ExtResource( 1 ) +[sub_resource type="StandardMaterial3D" id="2"] +albedo_texture = ExtResource( "1" ) roughness = 0.2 uv1_scale = Vector3(0.25, 0.25, 0.25) uv1_triplanar = true -[sub_resource type="BoxMesh" id=3] -size = Vector3(1, 1, 1) +[sub_resource type="BoxMesh" id="3"] -[sub_resource type="StandardMaterial3D" id=4] +[sub_resource type="StandardMaterial3D" id="4"] albedo_color = Color(0, 0.191406, 0.765625, 1) roughness = 0.0 [node name="FABRIK_IK" type="Node3D"] [node name="Floor" type="MeshInstance3D" parent="."] -mesh = SubResource( 1 ) -surface_material_override/0 = SubResource( 2 ) +mesh = SubResource( "1" ) +surface_material_override/0 = SubResource( "2" ) [node name="DirectionalLight3D" type="DirectionalLight3D" parent="."] transform = Transform3D(0.56827, 0.673454, -0.472789, 0, 0.574581, 0.818448, 0.822842, -0.465099, 0.326517, -9.77531, 11.5204, 11.766) -[node name="GodotBattleBot" parent="." instance=ExtResource( 2 )] +[node name="GodotBattleBot" parent="." instance=ExtResource( "2" )] [node name="godot_battle_bot" parent="GodotBattleBot/Armature/Skeleton3D" index="0"] -surface_material_override/0 = ExtResource( 3 ) -material/1 = ExtResource( 4 ) +surface_material_override/0 = ExtResource( "3" ) [node name="Camera3D" type="Camera3D" parent="."] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 11.5, 11) fov = 74.0 -script = ExtResource( 5 ) +script = ExtResource( "5" ) MOVEMENT_SPEED = -8.0 flip_axis = true @@ -53,18 +50,18 @@ flip_axis = true transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, -8) [node name="IK_LookAt_Head" type="Node3D" parent="Camera3D/Targets"] -script = ExtResource( 6 ) +script = ExtResource( "6" ) __meta__ = { -"_editor_icon": ExtResource( 7 ) +"_editor_icon": ExtResource( "7" ) } skeleton_path = NodePath("../../../GodotBattleBot/Armature/Skeleton3D") bone_name = "Head" additional_rotation = Vector3(90, 0, 0) [node name="IK_FABRIK_Left_Arm" type="Node3D" parent="Camera3D/Targets"] -script = ExtResource( 8 ) +script = ExtResource( "8" ) __meta__ = { -"_editor_icon": ExtResource( 9 ) +"_editor_icon": ExtResource( "9" ) } skeleton_path = NodePath("../../../GodotBattleBot/Armature/Skeleton3D") bones_in_chain = PackedStringArray("Left_UpperArm", "Left_LowerArm") @@ -78,9 +75,9 @@ transform = Transform3D(0.518503, 0, -0.855076, 0, 1, 0, 0.855076, 0, 0.518503, [node name="IK_LookAt_LH" type="Node3D" parent="Camera3D/Targets/IK_FABRIK_Left_Arm/Target"] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0.343393, -0.133381, 0.836605) -script = ExtResource( 6 ) +script = ExtResource( "6" ) __meta__ = { -"_editor_icon": ExtResource( 7 ) +"_editor_icon": ExtResource( "7" ) } skeleton_path = NodePath("../../../../../GodotBattleBot/Armature/Skeleton3D") bone_name = "Left_Hand" @@ -93,19 +90,20 @@ additional_bone_length = 3.0 transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 7.16849, 0, -5.31922) [node name="Left_UpperArm" type="Node3D" parent="Camera3D/Targets/IK_FABRIK_Left_Arm"] -transform = Transform3D(-0.66477, 0.0771345, -0.743055, -2.23517e-08, 0.994655, 0.103252, 0.747048, 0.0686391, -0.661217, 1.53444, 0.300478, -3.63533) +transform = Transform3D(-0.120249, 0.882081, -0.455493, -0.0511926, 0.452703, 0.890191, 0.991424, 0.130363, -0.00928126, 1.53444, 0.30189, -3.23425) [node name="Left_LowerArm" type="Node3D" parent="Camera3D/Targets/IK_FABRIK_Left_Arm"] transform = Transform3D(-0.773624, -0.0228999, 0.633231, 2.98023e-08, 0.999347, 0.03614, -0.633645, 0.0279588, -0.773119, 2.94998, 0.10378, -2.37569) [node name="IK_FABRIK_Right_Arm" type="Node3D" parent="Camera3D/Targets"] -script = ExtResource( 8 ) +script = ExtResource( "8" ) __meta__ = { -"_editor_icon": ExtResource( 9 ) +"_editor_icon": ExtResource( "9" ) } skeleton_path = NodePath("../../../GodotBattleBot/Armature/Skeleton3D") bones_in_chain = PackedStringArray("Right_UpperArm", "Right_LowerArm", "Right_Hand") bones_in_chain_lengths = PackedFloat32Array(1.97, 3, 1.2) +chain_iterations = 10 limit_chain_iterations = false use_middle_joint_target = true @@ -114,9 +112,9 @@ transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -0.229958, 0, 0.929313) [node name="IK_LookAt_RH" type="Node3D" parent="Camera3D/Targets/IK_FABRIK_Right_Arm/Target"] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0.0544824, -0.133381, 0.332403) -script = ExtResource( 6 ) +script = ExtResource( "6" ) __meta__ = { -"_editor_icon": ExtResource( 7 ) +"_editor_icon": ExtResource( "7" ) } skeleton_path = NodePath("../../../../../GodotBattleBot/Armature/Skeleton3D") bone_name = "Right_Hand" @@ -126,7 +124,7 @@ additional_rotation = Vector3(0, 0, 90) transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -6.34515, 0, -3.7843) [node name="Right_UpperArm" type="Node3D" parent="Camera3D/Targets/IK_FABRIK_Right_Arm"] -transform = Transform3D(-0.694982, -0.0753926, 0.715064, -7.45058e-09, 0.994488, 0.104854, -0.719028, 0.0728714, -0.691151, -1.53339, 0.300478, -3.63533) +transform = Transform3D(-0.00773287, 0.890205, 0.455493, 0.0143814, -0.455361, 0.890191, 0.999866, 0.0134343, -0.00928123, -1.5334, 0.30189, -3.23425) [node name="Right_LowerArm" type="Node3D" parent="Camera3D/Targets/IK_FABRIK_Right_Arm"] transform = Transform3D(-0.792023, 0.0165711, -0.610266, -1.49012e-08, 0.999631, 0.0271438, 0.610491, 0.0214986, -0.791732, -2.89561, 0.100755, -2.31866) @@ -135,8 +133,8 @@ transform = Transform3D(-0.792023, 0.0165711, -0.610266, -1.49012e-08, 0.999631, transform = Transform3D(-0.678336, 0.00698721, -0.734719, -2.32831e-09, 0.999955, 0.00950961, 0.734752, 0.00645071, -0.678305, -1.07914, 0.020072, 0.03791) [node name="1MeterCube" type="MeshInstance3D" parent="Camera3D/Targets"] -mesh = SubResource( 3 ) -surface_material_override/0 = SubResource( 4 ) +mesh = SubResource( "3" ) +surface_material_override/0 = SubResource( "4" ) [node name="Control" type="Control" parent="."] anchor_right = 1.0 @@ -164,8 +162,6 @@ offset_bottom = -29.0 text = "F.A.B.R.I.K IK Move mouse to move IK targets (Using 3 bones in the right hand, only 2 in the left. 3+ recommended)" -align = 1 -valign = 1 [node name="LabelExtra" type="Label" parent="Control/Panel"] anchor_right = 1.0 @@ -177,8 +173,6 @@ offset_bottom = 58.0 text = "NOTE: You will get a few errors when saving with FABRIK IK nodes in your scene This is a known bug. Please ignore the errors for now, as they do not do anything (They're just annoying. If you find a fix, please add it to the demo repository!)" -align = 1 -valign = 1 __meta__ = { "_edit_use_anchors_": false } @@ -191,7 +185,6 @@ offset_top = 4.0 offset_right = -135.0 offset_bottom = 18.0 text = "Left Hand" -align = 1 [node name="LabelRight" type="Label" parent="Control/Panel"] offset_left = 136.0 @@ -199,7 +192,6 @@ offset_top = 5.0 offset_right = 249.0 offset_bottom = 19.0 text = "Right Hand" -align = 1 [node name="ButtonNext" type="Button" parent="Control"] anchor_left = 1.0 @@ -211,7 +203,7 @@ offset_top = -60.0 offset_right = -5.0 offset_bottom = -10.0 text = "Next scene" -script = ExtResource( 10 ) +script = ExtResource( "10" ) scene_to_change_to = "res://skeleton_ik.tscn" [node name="ButtonPrev" type="Button" parent="Control"] @@ -222,7 +214,7 @@ offset_top = -60.0 offset_right = 129.0 offset_bottom = -10.0 text = "Previous scene" -script = ExtResource( 10 ) +script = ExtResource( "10" ) __meta__ = { "_edit_use_anchors_": false } diff --git a/3d/ik/fps/example_player.gd b/3d/ik/fps/example_player.gd index b3e74338..95b17bee 100644 --- a/3d/ik/fps/example_player.gd +++ b/3d/ik/fps/example_player.gd @@ -204,7 +204,8 @@ func process_movement(delta): vel.z = hvel.z # TODO: This information should be set to the CharacterBody properties instead of arguments. - move_and_slide(vel,Vector3(0,1,0)) + velocity = vel + move_and_slide() # Mouse based camera movement diff --git a/3d/ik/fps/fps_example.tscn b/3d/ik/fps/fps_example.tscn index 3a4127c4..3651bd8e 100644 --- a/3d/ik/fps/fps_example.tscn +++ b/3d/ik/fps/fps_example.tscn @@ -446,7 +446,7 @@ offset_left = 40.0 offset_top = 18.0 offset_right = 42.0 offset_bottom = 58.0 -rect_rotation = 90.0 +rotation = 90.0 [node name="CharacterBody3D" type="CharacterBody3D" parent="."] script = ExtResource( 3 ) diff --git a/3d/ik/fps/gun_textures.png.import b/3d/ik/fps/gun_textures.png.import index 3f86e49b..ac90b133 100644 --- a/3d/ik/fps/gun_textures.png.import +++ b/3d/ik/fps/gun_textures.png.import @@ -1,38 +1,35 @@ [remap] importer="texture" -type="StreamTexture2D" -path.s3tc="res://.godot/imported/gun_textures.png-ff36b37294b2a7b89d70248caaea5848.s3tc.stex" -path.etc2="res://.godot/imported/gun_textures.png-ff36b37294b2a7b89d70248caaea5848.etc2.stex" -path.etc="res://.godot/imported/gun_textures.png-ff36b37294b2a7b89d70248caaea5848.etc.stex" +type="CompressedTexture2D" +uid="uid://dnhrt4g2dsxr2" +path.s3tc="res://.godot/imported/gun_textures.png-ff36b37294b2a7b89d70248caaea5848.s3tc.ctex" +path.etc2="res://.godot/imported/gun_textures.png-ff36b37294b2a7b89d70248caaea5848.etc2.ctex" metadata={ -"imported_formats": ["s3tc", "etc2", "etc"], +"imported_formats": ["s3tc", "etc2"], "vram_texture": true } [deps] source_file="res://fps/gun_textures.png" -dest_files=["res://.godot/imported/gun_textures.png-ff36b37294b2a7b89d70248caaea5848.s3tc.stex", "res://.godot/imported/gun_textures.png-ff36b37294b2a7b89d70248caaea5848.etc2.stex", "res://.godot/imported/gun_textures.png-ff36b37294b2a7b89d70248caaea5848.etc.stex"] +dest_files=["res://.godot/imported/gun_textures.png-ff36b37294b2a7b89d70248caaea5848.s3tc.ctex", "res://.godot/imported/gun_textures.png-ff36b37294b2a7b89d70248caaea5848.etc2.ctex"] [params] compress/mode=2 compress/lossy_quality=0.7 -compress/hdr_mode=0 +compress/hdr_compression=1 compress/bptc_ldr=0 compress/normal_map=0 -flags/repeat=true -flags/filter=false -flags/mipmaps=false -flags/anisotropic=false -flags/srgb=1 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" process/fix_alpha_border=true process/premult_alpha=false -process/HDR_as_SRGB=false -process/invert_color=false process/normal_map_invert_y=false -stream=false -size_limit=0 -detect_3d=false -svg/scale=1.0 +process/hdr_as_srgb=false +process/size_limit=0 +detect_3d/compress_to=0 diff --git a/3d/ik/fps/simple_bullet.tscn b/3d/ik/fps/simple_bullet.tscn index e40a833d..90412b0a 100644 --- a/3d/ik/fps/simple_bullet.tscn +++ b/3d/ik/fps/simple_bullet.tscn @@ -1,37 +1,35 @@ -[gd_scene load_steps=6 format=2] +[gd_scene load_steps=6 format=3 uid="uid://d36uvu4r5qtpi"] -[ext_resource path="res://fps/simple_bullet.gd" type="Script" id=1] +[ext_resource type="Script" path="res://fps/simple_bullet.gd" id="1"] -[sub_resource type="PhysicsMaterial" id=1] +[sub_resource type="PhysicsMaterial" id="1"] bounce = 0.5 -[sub_resource type="SphereMesh" id=2] +[sub_resource type="SphereMesh" id="2"] -[sub_resource type="StandardMaterial3D" id=3] +[sub_resource type="StandardMaterial3D" id="3"] albedo_color = Color(0.769531, 0.486969, 0, 1) emission_enabled = true emission = Color(1, 0.445313, 0, 1) emission_energy = 1.8 -emission_operator = 0 -emission_on_uv2 = false -[sub_resource type="SphereShape3D" id=4] +[sub_resource type="SphereShape3D" id="4"] radius = 0.4 [node name="SimpleBullet" type="RigidDynamicBody3D"] mass = 2.0 -physics_material_override = SubResource( 1 ) +physics_material_override = SubResource( "1" ) gravity_scale = 3.0 continuous_cd = true can_sleep = false linear_damp = 0.4 -script = ExtResource( 1 ) +script = ExtResource( "1" ) [node name="MeshInstance3D" type="MeshInstance3D" parent="."] transform = Transform3D(0.4, 0, 0, 0, 0.4, 0, 0, 0, 0.4, 0, 0, 0) cast_shadow = 0 -mesh = SubResource( 2 ) -surface_material_override/0 = SubResource( 3 ) +mesh = SubResource( "2" ) +surface_material_override/0 = SubResource( "3" ) [node name="CollisionShape3D" type="CollisionShape3D" parent="."] -shape = SubResource( 4 ) +shape = SubResource( "4" ) diff --git a/3d/ik/fps/weapon_pistol.dae.import b/3d/ik/fps/weapon_pistol.dae.import index d3eec5b5..7c0ddb79 100644 --- a/3d/ik/fps/weapon_pistol.dae.import +++ b/3d/ik/fps/weapon_pistol.dae.import @@ -1,7 +1,9 @@ [remap] importer="scene" +importer_version=1 type="PackedScene" +uid="uid://xwg4osrspnrn" path="res://.godot/imported/weapon_pistol.dae-ed8a2a8a1d486f24880330c98eecbf74.scn" [deps] @@ -14,1051 +16,13 @@ dest_files=["res://.godot/imported/weapon_pistol.dae-ed8a2a8a1d486f24880330c98ee nodes/root_type="Node3D" nodes/root_name="WeaponPistol" nodes/root_scale=1.0 -nodes/custom_script="" -nodes/storage=0 -nodes/use_legacy_names=false -materials/location=0 -materials/storage=0 -materials/keep_on_reimport=true -meshes/compress=true meshes/ensure_tangents=true -meshes/storage=0 +meshes/generate_lods=true +meshes/create_shadow_meshes=true meshes/light_baking=0 meshes/lightmap_texel_size=0.1 skins/use_named_skins=true -external_files/store_in_subdir=false animation/import=false animation/fps=15 -animation/filter_script="" -animation/storage=false -animation/keep_custom_tracks=false -animation/optimizer/enabled=true -animation/optimizer/max_linear_error=0.05 -animation/optimizer/max_angular_error=0.01 -animation/optimizer/max_angle=22 -animation/optimizer/remove_unused_tracks=true -animation/clips/amount=0 -animation/clip_1/name="" -animation/clip_1/start_frame=0 -animation/clip_1/end_frame=0 -animation/clip_1/loops=false -animation/clip_2/name="" -animation/clip_2/start_frame=0 -animation/clip_2/end_frame=0 -animation/clip_2/loops=false -animation/clip_3/name="" -animation/clip_3/start_frame=0 -animation/clip_3/end_frame=0 -animation/clip_3/loops=false -animation/clip_4/name="" -animation/clip_4/start_frame=0 -animation/clip_4/end_frame=0 -animation/clip_4/loops=false -animation/clip_5/name="" -animation/clip_5/start_frame=0 -animation/clip_5/end_frame=0 -animation/clip_5/loops=false -animation/clip_6/name="" -animation/clip_6/start_frame=0 -animation/clip_6/end_frame=0 -animation/clip_6/loops=false -animation/clip_7/name="" -animation/clip_7/start_frame=0 -animation/clip_7/end_frame=0 -animation/clip_7/loops=false -animation/clip_8/name="" -animation/clip_8/start_frame=0 -animation/clip_8/end_frame=0 -animation/clip_8/loops=false -animation/clip_9/name="" -animation/clip_9/start_frame=0 -animation/clip_9/end_frame=0 -animation/clip_9/loops=false -animation/clip_10/name="" -animation/clip_10/start_frame=0 -animation/clip_10/end_frame=0 -animation/clip_10/loops=false -animation/clip_11/name="" -animation/clip_11/start_frame=0 -animation/clip_11/end_frame=0 -animation/clip_11/loops=false -animation/clip_12/name="" -animation/clip_12/start_frame=0 -animation/clip_12/end_frame=0 -animation/clip_12/loops=false -animation/clip_13/name="" -animation/clip_13/start_frame=0 -animation/clip_13/end_frame=0 -animation/clip_13/loops=false -animation/clip_14/name="" -animation/clip_14/start_frame=0 -animation/clip_14/end_frame=0 -animation/clip_14/loops=false -animation/clip_15/name="" -animation/clip_15/start_frame=0 -animation/clip_15/end_frame=0 -animation/clip_15/loops=false -animation/clip_16/name="" -animation/clip_16/start_frame=0 -animation/clip_16/end_frame=0 -animation/clip_16/loops=false -animation/clip_17/name="" -animation/clip_17/start_frame=0 -animation/clip_17/end_frame=0 -animation/clip_17/loops=false -animation/clip_18/name="" -animation/clip_18/start_frame=0 -animation/clip_18/end_frame=0 -animation/clip_18/loops=false -animation/clip_19/name="" -animation/clip_19/start_frame=0 -animation/clip_19/end_frame=0 -animation/clip_19/loops=false -animation/clip_20/name="" -animation/clip_20/start_frame=0 -animation/clip_20/end_frame=0 -animation/clip_20/loops=false -animation/clip_21/name="" -animation/clip_21/start_frame=0 -animation/clip_21/end_frame=0 -animation/clip_21/loops=false -animation/clip_22/name="" -animation/clip_22/start_frame=0 -animation/clip_22/end_frame=0 -animation/clip_22/loops=false -animation/clip_23/name="" -animation/clip_23/start_frame=0 -animation/clip_23/end_frame=0 -animation/clip_23/loops=false -animation/clip_24/name="" -animation/clip_24/start_frame=0 -animation/clip_24/end_frame=0 -animation/clip_24/loops=false -animation/clip_25/name="" -animation/clip_25/start_frame=0 -animation/clip_25/end_frame=0 -animation/clip_25/loops=false -animation/clip_26/name="" -animation/clip_26/start_frame=0 -animation/clip_26/end_frame=0 -animation/clip_26/loops=false -animation/clip_27/name="" -animation/clip_27/start_frame=0 -animation/clip_27/end_frame=0 -animation/clip_27/loops=false -animation/clip_28/name="" -animation/clip_28/start_frame=0 -animation/clip_28/end_frame=0 -animation/clip_28/loops=false -animation/clip_29/name="" -animation/clip_29/start_frame=0 -animation/clip_29/end_frame=0 -animation/clip_29/loops=false -animation/clip_30/name="" -animation/clip_30/start_frame=0 -animation/clip_30/end_frame=0 -animation/clip_30/loops=false -animation/clip_31/name="" -animation/clip_31/start_frame=0 -animation/clip_31/end_frame=0 -animation/clip_31/loops=false -animation/clip_32/name="" -animation/clip_32/start_frame=0 -animation/clip_32/end_frame=0 -animation/clip_32/loops=false -animation/clip_33/name="" -animation/clip_33/start_frame=0 -animation/clip_33/end_frame=0 -animation/clip_33/loops=false -animation/clip_34/name="" -animation/clip_34/start_frame=0 -animation/clip_34/end_frame=0 -animation/clip_34/loops=false -animation/clip_35/name="" -animation/clip_35/start_frame=0 -animation/clip_35/end_frame=0 -animation/clip_35/loops=false -animation/clip_36/name="" -animation/clip_36/start_frame=0 -animation/clip_36/end_frame=0 -animation/clip_36/loops=false -animation/clip_37/name="" -animation/clip_37/start_frame=0 -animation/clip_37/end_frame=0 -animation/clip_37/loops=false -animation/clip_38/name="" -animation/clip_38/start_frame=0 -animation/clip_38/end_frame=0 -animation/clip_38/loops=false -animation/clip_39/name="" -animation/clip_39/start_frame=0 -animation/clip_39/end_frame=0 -animation/clip_39/loops=false -animation/clip_40/name="" -animation/clip_40/start_frame=0 -animation/clip_40/end_frame=0 -animation/clip_40/loops=false -animation/clip_41/name="" -animation/clip_41/start_frame=0 -animation/clip_41/end_frame=0 -animation/clip_41/loops=false -animation/clip_42/name="" -animation/clip_42/start_frame=0 -animation/clip_42/end_frame=0 -animation/clip_42/loops=false -animation/clip_43/name="" -animation/clip_43/start_frame=0 -animation/clip_43/end_frame=0 -animation/clip_43/loops=false -animation/clip_44/name="" -animation/clip_44/start_frame=0 -animation/clip_44/end_frame=0 -animation/clip_44/loops=false -animation/clip_45/name="" -animation/clip_45/start_frame=0 -animation/clip_45/end_frame=0 -animation/clip_45/loops=false -animation/clip_46/name="" -animation/clip_46/start_frame=0 -animation/clip_46/end_frame=0 -animation/clip_46/loops=false -animation/clip_47/name="" -animation/clip_47/start_frame=0 -animation/clip_47/end_frame=0 -animation/clip_47/loops=false -animation/clip_48/name="" -animation/clip_48/start_frame=0 -animation/clip_48/end_frame=0 -animation/clip_48/loops=false -animation/clip_49/name="" -animation/clip_49/start_frame=0 -animation/clip_49/end_frame=0 -animation/clip_49/loops=false -animation/clip_50/name="" -animation/clip_50/start_frame=0 -animation/clip_50/end_frame=0 -animation/clip_50/loops=false -animation/clip_51/name="" -animation/clip_51/start_frame=0 -animation/clip_51/end_frame=0 -animation/clip_51/loops=false -animation/clip_52/name="" -animation/clip_52/start_frame=0 -animation/clip_52/end_frame=0 -animation/clip_52/loops=false -animation/clip_53/name="" -animation/clip_53/start_frame=0 -animation/clip_53/end_frame=0 -animation/clip_53/loops=false -animation/clip_54/name="" -animation/clip_54/start_frame=0 -animation/clip_54/end_frame=0 -animation/clip_54/loops=false -animation/clip_55/name="" -animation/clip_55/start_frame=0 -animation/clip_55/end_frame=0 -animation/clip_55/loops=false -animation/clip_56/name="" -animation/clip_56/start_frame=0 -animation/clip_56/end_frame=0 -animation/clip_56/loops=false -animation/clip_57/name="" -animation/clip_57/start_frame=0 -animation/clip_57/end_frame=0 -animation/clip_57/loops=false -animation/clip_58/name="" -animation/clip_58/start_frame=0 -animation/clip_58/end_frame=0 -animation/clip_58/loops=false -animation/clip_59/name="" -animation/clip_59/start_frame=0 -animation/clip_59/end_frame=0 -animation/clip_59/loops=false -animation/clip_60/name="" -animation/clip_60/start_frame=0 -animation/clip_60/end_frame=0 -animation/clip_60/loops=false -animation/clip_61/name="" -animation/clip_61/start_frame=0 -animation/clip_61/end_frame=0 -animation/clip_61/loops=false -animation/clip_62/name="" -animation/clip_62/start_frame=0 -animation/clip_62/end_frame=0 -animation/clip_62/loops=false -animation/clip_63/name="" -animation/clip_63/start_frame=0 -animation/clip_63/end_frame=0 -animation/clip_63/loops=false -animation/clip_64/name="" -animation/clip_64/start_frame=0 -animation/clip_64/end_frame=0 -animation/clip_64/loops=false -animation/clip_65/name="" -animation/clip_65/start_frame=0 -animation/clip_65/end_frame=0 -animation/clip_65/loops=false -animation/clip_66/name="" -animation/clip_66/start_frame=0 -animation/clip_66/end_frame=0 -animation/clip_66/loops=false -animation/clip_67/name="" -animation/clip_67/start_frame=0 -animation/clip_67/end_frame=0 -animation/clip_67/loops=false -animation/clip_68/name="" -animation/clip_68/start_frame=0 -animation/clip_68/end_frame=0 -animation/clip_68/loops=false -animation/clip_69/name="" -animation/clip_69/start_frame=0 -animation/clip_69/end_frame=0 -animation/clip_69/loops=false -animation/clip_70/name="" -animation/clip_70/start_frame=0 -animation/clip_70/end_frame=0 -animation/clip_70/loops=false -animation/clip_71/name="" -animation/clip_71/start_frame=0 -animation/clip_71/end_frame=0 -animation/clip_71/loops=false -animation/clip_72/name="" -animation/clip_72/start_frame=0 -animation/clip_72/end_frame=0 -animation/clip_72/loops=false -animation/clip_73/name="" -animation/clip_73/start_frame=0 -animation/clip_73/end_frame=0 -animation/clip_73/loops=false -animation/clip_74/name="" -animation/clip_74/start_frame=0 -animation/clip_74/end_frame=0 -animation/clip_74/loops=false -animation/clip_75/name="" -animation/clip_75/start_frame=0 -animation/clip_75/end_frame=0 -animation/clip_75/loops=false -animation/clip_76/name="" -animation/clip_76/start_frame=0 -animation/clip_76/end_frame=0 -animation/clip_76/loops=false -animation/clip_77/name="" -animation/clip_77/start_frame=0 -animation/clip_77/end_frame=0 -animation/clip_77/loops=false -animation/clip_78/name="" -animation/clip_78/start_frame=0 -animation/clip_78/end_frame=0 -animation/clip_78/loops=false -animation/clip_79/name="" -animation/clip_79/start_frame=0 -animation/clip_79/end_frame=0 -animation/clip_79/loops=false -animation/clip_80/name="" -animation/clip_80/start_frame=0 -animation/clip_80/end_frame=0 -animation/clip_80/loops=false -animation/clip_81/name="" -animation/clip_81/start_frame=0 -animation/clip_81/end_frame=0 -animation/clip_81/loops=false -animation/clip_82/name="" -animation/clip_82/start_frame=0 -animation/clip_82/end_frame=0 -animation/clip_82/loops=false -animation/clip_83/name="" -animation/clip_83/start_frame=0 -animation/clip_83/end_frame=0 -animation/clip_83/loops=false -animation/clip_84/name="" -animation/clip_84/start_frame=0 -animation/clip_84/end_frame=0 -animation/clip_84/loops=false -animation/clip_85/name="" -animation/clip_85/start_frame=0 -animation/clip_85/end_frame=0 -animation/clip_85/loops=false -animation/clip_86/name="" -animation/clip_86/start_frame=0 -animation/clip_86/end_frame=0 -animation/clip_86/loops=false -animation/clip_87/name="" -animation/clip_87/start_frame=0 -animation/clip_87/end_frame=0 -animation/clip_87/loops=false -animation/clip_88/name="" -animation/clip_88/start_frame=0 -animation/clip_88/end_frame=0 -animation/clip_88/loops=false -animation/clip_89/name="" -animation/clip_89/start_frame=0 -animation/clip_89/end_frame=0 -animation/clip_89/loops=false -animation/clip_90/name="" -animation/clip_90/start_frame=0 -animation/clip_90/end_frame=0 -animation/clip_90/loops=false -animation/clip_91/name="" -animation/clip_91/start_frame=0 -animation/clip_91/end_frame=0 -animation/clip_91/loops=false -animation/clip_92/name="" -animation/clip_92/start_frame=0 -animation/clip_92/end_frame=0 -animation/clip_92/loops=false -animation/clip_93/name="" -animation/clip_93/start_frame=0 -animation/clip_93/end_frame=0 -animation/clip_93/loops=false -animation/clip_94/name="" -animation/clip_94/start_frame=0 -animation/clip_94/end_frame=0 -animation/clip_94/loops=false -animation/clip_95/name="" -animation/clip_95/start_frame=0 -animation/clip_95/end_frame=0 -animation/clip_95/loops=false -animation/clip_96/name="" -animation/clip_96/start_frame=0 -animation/clip_96/end_frame=0 -animation/clip_96/loops=false -animation/clip_97/name="" -animation/clip_97/start_frame=0 -animation/clip_97/end_frame=0 -animation/clip_97/loops=false -animation/clip_98/name="" -animation/clip_98/start_frame=0 -animation/clip_98/end_frame=0 -animation/clip_98/loops=false -animation/clip_99/name="" -animation/clip_99/start_frame=0 -animation/clip_99/end_frame=0 -animation/clip_99/loops=false -animation/clip_100/name="" -animation/clip_100/start_frame=0 -animation/clip_100/end_frame=0 -animation/clip_100/loops=false -animation/clip_101/name="" -animation/clip_101/start_frame=0 -animation/clip_101/end_frame=0 -animation/clip_101/loops=false -animation/clip_102/name="" -animation/clip_102/start_frame=0 -animation/clip_102/end_frame=0 -animation/clip_102/loops=false -animation/clip_103/name="" -animation/clip_103/start_frame=0 -animation/clip_103/end_frame=0 -animation/clip_103/loops=false -animation/clip_104/name="" -animation/clip_104/start_frame=0 -animation/clip_104/end_frame=0 -animation/clip_104/loops=false -animation/clip_105/name="" -animation/clip_105/start_frame=0 -animation/clip_105/end_frame=0 -animation/clip_105/loops=false -animation/clip_106/name="" -animation/clip_106/start_frame=0 -animation/clip_106/end_frame=0 -animation/clip_106/loops=false -animation/clip_107/name="" -animation/clip_107/start_frame=0 -animation/clip_107/end_frame=0 -animation/clip_107/loops=false -animation/clip_108/name="" -animation/clip_108/start_frame=0 -animation/clip_108/end_frame=0 -animation/clip_108/loops=false -animation/clip_109/name="" -animation/clip_109/start_frame=0 -animation/clip_109/end_frame=0 -animation/clip_109/loops=false -animation/clip_110/name="" -animation/clip_110/start_frame=0 -animation/clip_110/end_frame=0 -animation/clip_110/loops=false -animation/clip_111/name="" -animation/clip_111/start_frame=0 -animation/clip_111/end_frame=0 -animation/clip_111/loops=false -animation/clip_112/name="" -animation/clip_112/start_frame=0 -animation/clip_112/end_frame=0 -animation/clip_112/loops=false -animation/clip_113/name="" -animation/clip_113/start_frame=0 -animation/clip_113/end_frame=0 -animation/clip_113/loops=false -animation/clip_114/name="" -animation/clip_114/start_frame=0 -animation/clip_114/end_frame=0 -animation/clip_114/loops=false -animation/clip_115/name="" -animation/clip_115/start_frame=0 -animation/clip_115/end_frame=0 -animation/clip_115/loops=false -animation/clip_116/name="" -animation/clip_116/start_frame=0 -animation/clip_116/end_frame=0 -animation/clip_116/loops=false -animation/clip_117/name="" -animation/clip_117/start_frame=0 -animation/clip_117/end_frame=0 -animation/clip_117/loops=false -animation/clip_118/name="" -animation/clip_118/start_frame=0 -animation/clip_118/end_frame=0 -animation/clip_118/loops=false -animation/clip_119/name="" -animation/clip_119/start_frame=0 -animation/clip_119/end_frame=0 -animation/clip_119/loops=false -animation/clip_120/name="" -animation/clip_120/start_frame=0 -animation/clip_120/end_frame=0 -animation/clip_120/loops=false -animation/clip_121/name="" -animation/clip_121/start_frame=0 -animation/clip_121/end_frame=0 -animation/clip_121/loops=false -animation/clip_122/name="" -animation/clip_122/start_frame=0 -animation/clip_122/end_frame=0 -animation/clip_122/loops=false -animation/clip_123/name="" -animation/clip_123/start_frame=0 -animation/clip_123/end_frame=0 -animation/clip_123/loops=false -animation/clip_124/name="" -animation/clip_124/start_frame=0 -animation/clip_124/end_frame=0 -animation/clip_124/loops=false -animation/clip_125/name="" -animation/clip_125/start_frame=0 -animation/clip_125/end_frame=0 -animation/clip_125/loops=false -animation/clip_126/name="" -animation/clip_126/start_frame=0 -animation/clip_126/end_frame=0 -animation/clip_126/loops=false -animation/clip_127/name="" -animation/clip_127/start_frame=0 -animation/clip_127/end_frame=0 -animation/clip_127/loops=false -animation/clip_128/name="" -animation/clip_128/start_frame=0 -animation/clip_128/end_frame=0 -animation/clip_128/loops=false -animation/clip_129/name="" -animation/clip_129/start_frame=0 -animation/clip_129/end_frame=0 -animation/clip_129/loops=false -animation/clip_130/name="" -animation/clip_130/start_frame=0 -animation/clip_130/end_frame=0 -animation/clip_130/loops=false -animation/clip_131/name="" -animation/clip_131/start_frame=0 -animation/clip_131/end_frame=0 -animation/clip_131/loops=false -animation/clip_132/name="" -animation/clip_132/start_frame=0 -animation/clip_132/end_frame=0 -animation/clip_132/loops=false -animation/clip_133/name="" -animation/clip_133/start_frame=0 -animation/clip_133/end_frame=0 -animation/clip_133/loops=false -animation/clip_134/name="" -animation/clip_134/start_frame=0 -animation/clip_134/end_frame=0 -animation/clip_134/loops=false -animation/clip_135/name="" -animation/clip_135/start_frame=0 -animation/clip_135/end_frame=0 -animation/clip_135/loops=false -animation/clip_136/name="" -animation/clip_136/start_frame=0 -animation/clip_136/end_frame=0 -animation/clip_136/loops=false -animation/clip_137/name="" -animation/clip_137/start_frame=0 -animation/clip_137/end_frame=0 -animation/clip_137/loops=false -animation/clip_138/name="" -animation/clip_138/start_frame=0 -animation/clip_138/end_frame=0 -animation/clip_138/loops=false -animation/clip_139/name="" -animation/clip_139/start_frame=0 -animation/clip_139/end_frame=0 -animation/clip_139/loops=false -animation/clip_140/name="" -animation/clip_140/start_frame=0 -animation/clip_140/end_frame=0 -animation/clip_140/loops=false -animation/clip_141/name="" -animation/clip_141/start_frame=0 -animation/clip_141/end_frame=0 -animation/clip_141/loops=false -animation/clip_142/name="" -animation/clip_142/start_frame=0 -animation/clip_142/end_frame=0 -animation/clip_142/loops=false -animation/clip_143/name="" -animation/clip_143/start_frame=0 -animation/clip_143/end_frame=0 -animation/clip_143/loops=false -animation/clip_144/name="" -animation/clip_144/start_frame=0 -animation/clip_144/end_frame=0 -animation/clip_144/loops=false -animation/clip_145/name="" -animation/clip_145/start_frame=0 -animation/clip_145/end_frame=0 -animation/clip_145/loops=false -animation/clip_146/name="" -animation/clip_146/start_frame=0 -animation/clip_146/end_frame=0 -animation/clip_146/loops=false -animation/clip_147/name="" -animation/clip_147/start_frame=0 -animation/clip_147/end_frame=0 -animation/clip_147/loops=false -animation/clip_148/name="" -animation/clip_148/start_frame=0 -animation/clip_148/end_frame=0 -animation/clip_148/loops=false -animation/clip_149/name="" -animation/clip_149/start_frame=0 -animation/clip_149/end_frame=0 -animation/clip_149/loops=false -animation/clip_150/name="" -animation/clip_150/start_frame=0 -animation/clip_150/end_frame=0 -animation/clip_150/loops=false -animation/clip_151/name="" -animation/clip_151/start_frame=0 -animation/clip_151/end_frame=0 -animation/clip_151/loops=false -animation/clip_152/name="" -animation/clip_152/start_frame=0 -animation/clip_152/end_frame=0 -animation/clip_152/loops=false -animation/clip_153/name="" -animation/clip_153/start_frame=0 -animation/clip_153/end_frame=0 -animation/clip_153/loops=false -animation/clip_154/name="" -animation/clip_154/start_frame=0 -animation/clip_154/end_frame=0 -animation/clip_154/loops=false -animation/clip_155/name="" -animation/clip_155/start_frame=0 -animation/clip_155/end_frame=0 -animation/clip_155/loops=false -animation/clip_156/name="" -animation/clip_156/start_frame=0 -animation/clip_156/end_frame=0 -animation/clip_156/loops=false -animation/clip_157/name="" -animation/clip_157/start_frame=0 -animation/clip_157/end_frame=0 -animation/clip_157/loops=false -animation/clip_158/name="" -animation/clip_158/start_frame=0 -animation/clip_158/end_frame=0 -animation/clip_158/loops=false -animation/clip_159/name="" -animation/clip_159/start_frame=0 -animation/clip_159/end_frame=0 -animation/clip_159/loops=false -animation/clip_160/name="" -animation/clip_160/start_frame=0 -animation/clip_160/end_frame=0 -animation/clip_160/loops=false -animation/clip_161/name="" -animation/clip_161/start_frame=0 -animation/clip_161/end_frame=0 -animation/clip_161/loops=false -animation/clip_162/name="" -animation/clip_162/start_frame=0 -animation/clip_162/end_frame=0 -animation/clip_162/loops=false -animation/clip_163/name="" -animation/clip_163/start_frame=0 -animation/clip_163/end_frame=0 -animation/clip_163/loops=false -animation/clip_164/name="" -animation/clip_164/start_frame=0 -animation/clip_164/end_frame=0 -animation/clip_164/loops=false -animation/clip_165/name="" -animation/clip_165/start_frame=0 -animation/clip_165/end_frame=0 -animation/clip_165/loops=false -animation/clip_166/name="" -animation/clip_166/start_frame=0 -animation/clip_166/end_frame=0 -animation/clip_166/loops=false -animation/clip_167/name="" -animation/clip_167/start_frame=0 -animation/clip_167/end_frame=0 -animation/clip_167/loops=false -animation/clip_168/name="" -animation/clip_168/start_frame=0 -animation/clip_168/end_frame=0 -animation/clip_168/loops=false -animation/clip_169/name="" -animation/clip_169/start_frame=0 -animation/clip_169/end_frame=0 -animation/clip_169/loops=false -animation/clip_170/name="" -animation/clip_170/start_frame=0 -animation/clip_170/end_frame=0 -animation/clip_170/loops=false -animation/clip_171/name="" -animation/clip_171/start_frame=0 -animation/clip_171/end_frame=0 -animation/clip_171/loops=false -animation/clip_172/name="" -animation/clip_172/start_frame=0 -animation/clip_172/end_frame=0 -animation/clip_172/loops=false -animation/clip_173/name="" -animation/clip_173/start_frame=0 -animation/clip_173/end_frame=0 -animation/clip_173/loops=false -animation/clip_174/name="" -animation/clip_174/start_frame=0 -animation/clip_174/end_frame=0 -animation/clip_174/loops=false -animation/clip_175/name="" -animation/clip_175/start_frame=0 -animation/clip_175/end_frame=0 -animation/clip_175/loops=false -animation/clip_176/name="" -animation/clip_176/start_frame=0 -animation/clip_176/end_frame=0 -animation/clip_176/loops=false -animation/clip_177/name="" -animation/clip_177/start_frame=0 -animation/clip_177/end_frame=0 -animation/clip_177/loops=false -animation/clip_178/name="" -animation/clip_178/start_frame=0 -animation/clip_178/end_frame=0 -animation/clip_178/loops=false -animation/clip_179/name="" -animation/clip_179/start_frame=0 -animation/clip_179/end_frame=0 -animation/clip_179/loops=false -animation/clip_180/name="" -animation/clip_180/start_frame=0 -animation/clip_180/end_frame=0 -animation/clip_180/loops=false -animation/clip_181/name="" -animation/clip_181/start_frame=0 -animation/clip_181/end_frame=0 -animation/clip_181/loops=false -animation/clip_182/name="" -animation/clip_182/start_frame=0 -animation/clip_182/end_frame=0 -animation/clip_182/loops=false -animation/clip_183/name="" -animation/clip_183/start_frame=0 -animation/clip_183/end_frame=0 -animation/clip_183/loops=false -animation/clip_184/name="" -animation/clip_184/start_frame=0 -animation/clip_184/end_frame=0 -animation/clip_184/loops=false -animation/clip_185/name="" -animation/clip_185/start_frame=0 -animation/clip_185/end_frame=0 -animation/clip_185/loops=false -animation/clip_186/name="" -animation/clip_186/start_frame=0 -animation/clip_186/end_frame=0 -animation/clip_186/loops=false -animation/clip_187/name="" -animation/clip_187/start_frame=0 -animation/clip_187/end_frame=0 -animation/clip_187/loops=false -animation/clip_188/name="" -animation/clip_188/start_frame=0 -animation/clip_188/end_frame=0 -animation/clip_188/loops=false -animation/clip_189/name="" -animation/clip_189/start_frame=0 -animation/clip_189/end_frame=0 -animation/clip_189/loops=false -animation/clip_190/name="" -animation/clip_190/start_frame=0 -animation/clip_190/end_frame=0 -animation/clip_190/loops=false -animation/clip_191/name="" -animation/clip_191/start_frame=0 -animation/clip_191/end_frame=0 -animation/clip_191/loops=false -animation/clip_192/name="" -animation/clip_192/start_frame=0 -animation/clip_192/end_frame=0 -animation/clip_192/loops=false -animation/clip_193/name="" -animation/clip_193/start_frame=0 -animation/clip_193/end_frame=0 -animation/clip_193/loops=false -animation/clip_194/name="" -animation/clip_194/start_frame=0 -animation/clip_194/end_frame=0 -animation/clip_194/loops=false -animation/clip_195/name="" -animation/clip_195/start_frame=0 -animation/clip_195/end_frame=0 -animation/clip_195/loops=false -animation/clip_196/name="" -animation/clip_196/start_frame=0 -animation/clip_196/end_frame=0 -animation/clip_196/loops=false -animation/clip_197/name="" -animation/clip_197/start_frame=0 -animation/clip_197/end_frame=0 -animation/clip_197/loops=false -animation/clip_198/name="" -animation/clip_198/start_frame=0 -animation/clip_198/end_frame=0 -animation/clip_198/loops=false -animation/clip_199/name="" -animation/clip_199/start_frame=0 -animation/clip_199/end_frame=0 -animation/clip_199/loops=false -animation/clip_200/name="" -animation/clip_200/start_frame=0 -animation/clip_200/end_frame=0 -animation/clip_200/loops=false -animation/clip_201/name="" -animation/clip_201/start_frame=0 -animation/clip_201/end_frame=0 -animation/clip_201/loops=false -animation/clip_202/name="" -animation/clip_202/start_frame=0 -animation/clip_202/end_frame=0 -animation/clip_202/loops=false -animation/clip_203/name="" -animation/clip_203/start_frame=0 -animation/clip_203/end_frame=0 -animation/clip_203/loops=false -animation/clip_204/name="" -animation/clip_204/start_frame=0 -animation/clip_204/end_frame=0 -animation/clip_204/loops=false -animation/clip_205/name="" -animation/clip_205/start_frame=0 -animation/clip_205/end_frame=0 -animation/clip_205/loops=false -animation/clip_206/name="" -animation/clip_206/start_frame=0 -animation/clip_206/end_frame=0 -animation/clip_206/loops=false -animation/clip_207/name="" -animation/clip_207/start_frame=0 -animation/clip_207/end_frame=0 -animation/clip_207/loops=false -animation/clip_208/name="" -animation/clip_208/start_frame=0 -animation/clip_208/end_frame=0 -animation/clip_208/loops=false -animation/clip_209/name="" -animation/clip_209/start_frame=0 -animation/clip_209/end_frame=0 -animation/clip_209/loops=false -animation/clip_210/name="" -animation/clip_210/start_frame=0 -animation/clip_210/end_frame=0 -animation/clip_210/loops=false -animation/clip_211/name="" -animation/clip_211/start_frame=0 -animation/clip_211/end_frame=0 -animation/clip_211/loops=false -animation/clip_212/name="" -animation/clip_212/start_frame=0 -animation/clip_212/end_frame=0 -animation/clip_212/loops=false -animation/clip_213/name="" -animation/clip_213/start_frame=0 -animation/clip_213/end_frame=0 -animation/clip_213/loops=false -animation/clip_214/name="" -animation/clip_214/start_frame=0 -animation/clip_214/end_frame=0 -animation/clip_214/loops=false -animation/clip_215/name="" -animation/clip_215/start_frame=0 -animation/clip_215/end_frame=0 -animation/clip_215/loops=false -animation/clip_216/name="" -animation/clip_216/start_frame=0 -animation/clip_216/end_frame=0 -animation/clip_216/loops=false -animation/clip_217/name="" -animation/clip_217/start_frame=0 -animation/clip_217/end_frame=0 -animation/clip_217/loops=false -animation/clip_218/name="" -animation/clip_218/start_frame=0 -animation/clip_218/end_frame=0 -animation/clip_218/loops=false -animation/clip_219/name="" -animation/clip_219/start_frame=0 -animation/clip_219/end_frame=0 -animation/clip_219/loops=false -animation/clip_220/name="" -animation/clip_220/start_frame=0 -animation/clip_220/end_frame=0 -animation/clip_220/loops=false -animation/clip_221/name="" -animation/clip_221/start_frame=0 -animation/clip_221/end_frame=0 -animation/clip_221/loops=false -animation/clip_222/name="" -animation/clip_222/start_frame=0 -animation/clip_222/end_frame=0 -animation/clip_222/loops=false -animation/clip_223/name="" -animation/clip_223/start_frame=0 -animation/clip_223/end_frame=0 -animation/clip_223/loops=false -animation/clip_224/name="" -animation/clip_224/start_frame=0 -animation/clip_224/end_frame=0 -animation/clip_224/loops=false -animation/clip_225/name="" -animation/clip_225/start_frame=0 -animation/clip_225/end_frame=0 -animation/clip_225/loops=false -animation/clip_226/name="" -animation/clip_226/start_frame=0 -animation/clip_226/end_frame=0 -animation/clip_226/loops=false -animation/clip_227/name="" -animation/clip_227/start_frame=0 -animation/clip_227/end_frame=0 -animation/clip_227/loops=false -animation/clip_228/name="" -animation/clip_228/start_frame=0 -animation/clip_228/end_frame=0 -animation/clip_228/loops=false -animation/clip_229/name="" -animation/clip_229/start_frame=0 -animation/clip_229/end_frame=0 -animation/clip_229/loops=false -animation/clip_230/name="" -animation/clip_230/start_frame=0 -animation/clip_230/end_frame=0 -animation/clip_230/loops=false -animation/clip_231/name="" -animation/clip_231/start_frame=0 -animation/clip_231/end_frame=0 -animation/clip_231/loops=false -animation/clip_232/name="" -animation/clip_232/start_frame=0 -animation/clip_232/end_frame=0 -animation/clip_232/loops=false -animation/clip_233/name="" -animation/clip_233/start_frame=0 -animation/clip_233/end_frame=0 -animation/clip_233/loops=false -animation/clip_234/name="" -animation/clip_234/start_frame=0 -animation/clip_234/end_frame=0 -animation/clip_234/loops=false -animation/clip_235/name="" -animation/clip_235/start_frame=0 -animation/clip_235/end_frame=0 -animation/clip_235/loops=false -animation/clip_236/name="" -animation/clip_236/start_frame=0 -animation/clip_236/end_frame=0 -animation/clip_236/loops=false -animation/clip_237/name="" -animation/clip_237/start_frame=0 -animation/clip_237/end_frame=0 -animation/clip_237/loops=false -animation/clip_238/name="" -animation/clip_238/start_frame=0 -animation/clip_238/end_frame=0 -animation/clip_238/loops=false -animation/clip_239/name="" -animation/clip_239/start_frame=0 -animation/clip_239/end_frame=0 -animation/clip_239/loops=false -animation/clip_240/name="" -animation/clip_240/start_frame=0 -animation/clip_240/end_frame=0 -animation/clip_240/loops=false -animation/clip_241/name="" -animation/clip_241/start_frame=0 -animation/clip_241/end_frame=0 -animation/clip_241/loops=false -animation/clip_242/name="" -animation/clip_242/start_frame=0 -animation/clip_242/end_frame=0 -animation/clip_242/loops=false -animation/clip_243/name="" -animation/clip_243/start_frame=0 -animation/clip_243/end_frame=0 -animation/clip_243/loops=false -animation/clip_244/name="" -animation/clip_244/start_frame=0 -animation/clip_244/end_frame=0 -animation/clip_244/loops=false -animation/clip_245/name="" -animation/clip_245/start_frame=0 -animation/clip_245/end_frame=0 -animation/clip_245/loops=false -animation/clip_246/name="" -animation/clip_246/start_frame=0 -animation/clip_246/end_frame=0 -animation/clip_246/loops=false -animation/clip_247/name="" -animation/clip_247/start_frame=0 -animation/clip_247/end_frame=0 -animation/clip_247/loops=false -animation/clip_248/name="" -animation/clip_248/start_frame=0 -animation/clip_248/end_frame=0 -animation/clip_248/loops=false -animation/clip_249/name="" -animation/clip_249/start_frame=0 -animation/clip_249/end_frame=0 -animation/clip_249/loops=false -animation/clip_250/name="" -animation/clip_250/start_frame=0 -animation/clip_250/end_frame=0 -animation/clip_250/loops=false -animation/clip_251/name="" -animation/clip_251/start_frame=0 -animation/clip_251/end_frame=0 -animation/clip_251/loops=false -animation/clip_252/name="" -animation/clip_252/start_frame=0 -animation/clip_252/end_frame=0 -animation/clip_252/loops=false -animation/clip_253/name="" -animation/clip_253/start_frame=0 -animation/clip_253/end_frame=0 -animation/clip_253/loops=false -animation/clip_254/name="" -animation/clip_254/start_frame=0 -animation/clip_254/end_frame=0 -animation/clip_254/loops=false -animation/clip_255/name="" -animation/clip_255/start_frame=0 -animation/clip_255/end_frame=0 -animation/clip_255/loops=false -animation/clip_256/name="" -animation/clip_256/start_frame=0 -animation/clip_256/end_frame=0 -animation/clip_256/loops=false +import_script/path="" +_subresources={} diff --git a/3d/ik/icon.png.import b/3d/ik/icon.png.import index 889af9df..3491ef35 100644 --- a/3d/ik/icon.png.import +++ b/3d/ik/icon.png.import @@ -1,8 +1,9 @@ [remap] importer="texture" -type="StreamTexture2D" -path="res://.godot/imported/icon.png-487276ed1e3a0c39cad0279d744ee560.stex" +type="CompressedTexture2D" +uid="uid://1av2o67lkxx8" +path="res://.godot/imported/icon.png-487276ed1e3a0c39cad0279d744ee560.ctex" metadata={ "vram_texture": false } @@ -10,26 +11,23 @@ metadata={ [deps] source_file="res://icon.png" -dest_files=["res://.godot/imported/icon.png-487276ed1e3a0c39cad0279d744ee560.stex"] +dest_files=["res://.godot/imported/icon.png-487276ed1e3a0c39cad0279d744ee560.ctex"] [params] compress/mode=0 compress/lossy_quality=0.7 -compress/hdr_mode=0 +compress/hdr_compression=1 compress/bptc_ldr=0 compress/normal_map=0 -flags/repeat=0 -flags/filter=true -flags/mipmaps=false -flags/anisotropic=false -flags/srgb=2 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" process/fix_alpha_border=true process/premult_alpha=false -process/HDR_as_SRGB=false -process/invert_color=false process/normal_map_invert_y=false -stream=false -size_limit=0 -detect_3d=true -svg/scale=1.0 +process/hdr_as_srgb=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/3d/ik/look_at_ik.tscn b/3d/ik/look_at_ik.tscn index 45b35e4f..44085cf1 100644 --- a/3d/ik/look_at_ik.tscn +++ b/3d/ik/look_at_ik.tscn @@ -1,68 +1,67 @@ -[gd_scene load_steps=11 format=2] +[gd_scene load_steps=10 format=3 uid="uid://dyhjvb7q0b3j"] -[ext_resource path="res://addons/sade/editor_gizmo_texture.png" type="Texture2D" id=1] -[ext_resource path="res://model/godot_battle_bot.dae" type="PackedScene" id=2] -[ext_resource path="res://model/battle_bot_color.tres" type="Material" id=3] -[ext_resource path="res://model/battle_bot_emission.tres" type="Material" id=4] -[ext_resource path="res://target_from_mousepos.gd" type="Script" id=5] -[ext_resource path="res://addons/sade/ik_look_at.gd" type="Script" id=6] -[ext_resource path="res://addons/sade/ik_look_at.png" type="Texture2D" id=7] -[ext_resource path="res://button_change_scene.gd" type="Script" id=8] +[ext_resource type="Texture2D" uid="uid://bw3q8aq6gfuof" path="res://addons/sade/editor_gizmo_texture.png" id="1"] +[ext_resource type="PackedScene" uid="uid://ctssefekxjogg" path="res://model/godot_battle_bot.dae" id="2"] +[ext_resource type="Material" path="res://model/battle_bot_color.tres" id="3"] +[ext_resource type="Script" path="res://target_from_mousepos.gd" id="5"] +[ext_resource type="Script" path="res://addons/sade/ik_look_at.gd" id="6"] +[ext_resource type="Texture2D" uid="uid://dhgpf3w8mh4ed" path="res://addons/sade/ik_look_at.png" id="7"] +[ext_resource type="Script" path="res://button_change_scene.gd" id="8"] -[sub_resource type="PlaneMesh" id=1] +[sub_resource type="PlaneMesh" id="1"] size = Vector2(40, 40) -[sub_resource type="StandardMaterial3D" id=2] -albedo_texture = ExtResource( 1 ) +[sub_resource type="StandardMaterial3D" id="2"] +albedo_texture = ExtResource( "1" ) roughness = 0.2 uv1_scale = Vector3(0.25, 0.25, 0.25) uv1_triplanar = true +texture_filter = 0 [node name="LookAtIK" type="Node3D"] [node name="Floor" type="MeshInstance3D" parent="."] -mesh = SubResource( 1 ) -surface_material_override/0 = SubResource( 2 ) +mesh = SubResource( "1" ) +surface_material_override/0 = SubResource( "2" ) [node name="DirectionalLight3D" type="DirectionalLight3D" parent="."] transform = Transform3D(0.56827, 0.673454, -0.472789, 0, 0.574581, 0.818448, 0.822842, -0.465099, 0.326517, -9.77531, 11.5204, 11.766) -[node name="GodotBattleBot" parent="." instance=ExtResource( 2 )] +[node name="GodotBattleBot" parent="." instance=ExtResource( "2" )] [node name="godot_battle_bot" parent="GodotBattleBot/Armature/Skeleton3D" index="0"] -surface_material_override/0 = ExtResource( 3 ) -material/1 = ExtResource( 4 ) +surface_material_override/0 = ExtResource( "3" ) [node name="Camera3D" type="Camera3D" parent="."] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 11.501, 11) fov = 74.0 -script = ExtResource( 5 ) +script = ExtResource( "5" ) MOVEMENT_SPEED = -3.0 flip_axis = true [node name="Targets" type="Node3D" parent="Camera3D"] [node name="IK_LookAt_Head" type="Node3D" parent="Camera3D/Targets"] -script = ExtResource( 6 ) +script = ExtResource( "6" ) __meta__ = { -"_editor_icon": ExtResource( 7 ) +"_editor_icon": ExtResource( "7" ) } skeleton_path = NodePath("../../../GodotBattleBot/Armature/Skeleton3D") bone_name = "Head" additional_rotation = Vector3(90, 0, 0) [node name="IK_LookAt_LeftArm" type="Node3D" parent="Camera3D/Targets"] -script = ExtResource( 6 ) +script = ExtResource( "6" ) __meta__ = { -"_editor_icon": ExtResource( 7 ) +"_editor_icon": ExtResource( "7" ) } skeleton_path = NodePath("../../../GodotBattleBot/Armature/Skeleton3D") bone_name = "Left_UpperArm" [node name="IK_LookAt_RightArm" type="Node3D" parent="Camera3D/Targets"] -script = ExtResource( 6 ) +script = ExtResource( "6" ) __meta__ = { -"_editor_icon": ExtResource( 7 ) +"_editor_icon": ExtResource( "7" ) } skeleton_path = NodePath("../../../GodotBattleBot/Armature/Skeleton3D") bone_name = "Right_UpperArm" @@ -96,8 +95,6 @@ offset_right = -18.0 offset_bottom = -29.0 text = "LookAt IK Move mouse to move IK targets" -align = 1 -valign = 1 __meta__ = { "_edit_use_anchors_": false } @@ -112,7 +109,7 @@ offset_top = -60.0 offset_right = -5.0 offset_bottom = -10.0 text = "Next scene" -script = ExtResource( 8 ) +script = ExtResource( "8" ) __meta__ = { "_edit_use_anchors_": false } diff --git a/3d/ik/model/godot_battle_bot.dae.import b/3d/ik/model/godot_battle_bot.dae.import index 047953fb..3f5864b4 100644 --- a/3d/ik/model/godot_battle_bot.dae.import +++ b/3d/ik/model/godot_battle_bot.dae.import @@ -1,7 +1,9 @@ [remap] importer="scene" +importer_version=1 type="PackedScene" +uid="uid://ctssefekxjogg" path="res://.godot/imported/godot_battle_bot.dae-b816538849caf76e74976d7a086ba5f7.scn" [deps] @@ -14,1051 +16,13 @@ dest_files=["res://.godot/imported/godot_battle_bot.dae-b816538849caf76e74976d7a nodes/root_type="Node3D" nodes/root_name="GodotBattleBot" nodes/root_scale=1.0 -nodes/custom_script="" -nodes/storage=0 -nodes/use_legacy_names=false -materials/location=0 -materials/storage=0 -materials/keep_on_reimport=true -meshes/compress=true meshes/ensure_tangents=true -meshes/storage=0 +meshes/generate_lods=true +meshes/create_shadow_meshes=true meshes/light_baking=0 meshes/lightmap_texel_size=0.1 skins/use_named_skins=true -external_files/store_in_subdir=false animation/import=true animation/fps=15 -animation/filter_script="" -animation/storage=false -animation/keep_custom_tracks=false -animation/optimizer/enabled=true -animation/optimizer/max_linear_error=0.05 -animation/optimizer/max_angular_error=0.01 -animation/optimizer/max_angle=22 -animation/optimizer/remove_unused_tracks=true -animation/clips/amount=0 -animation/clip_1/name="" -animation/clip_1/start_frame=0 -animation/clip_1/end_frame=0 -animation/clip_1/loops=false -animation/clip_2/name="" -animation/clip_2/start_frame=0 -animation/clip_2/end_frame=0 -animation/clip_2/loops=false -animation/clip_3/name="" -animation/clip_3/start_frame=0 -animation/clip_3/end_frame=0 -animation/clip_3/loops=false -animation/clip_4/name="" -animation/clip_4/start_frame=0 -animation/clip_4/end_frame=0 -animation/clip_4/loops=false -animation/clip_5/name="" -animation/clip_5/start_frame=0 -animation/clip_5/end_frame=0 -animation/clip_5/loops=false -animation/clip_6/name="" -animation/clip_6/start_frame=0 -animation/clip_6/end_frame=0 -animation/clip_6/loops=false -animation/clip_7/name="" -animation/clip_7/start_frame=0 -animation/clip_7/end_frame=0 -animation/clip_7/loops=false -animation/clip_8/name="" -animation/clip_8/start_frame=0 -animation/clip_8/end_frame=0 -animation/clip_8/loops=false -animation/clip_9/name="" -animation/clip_9/start_frame=0 -animation/clip_9/end_frame=0 -animation/clip_9/loops=false -animation/clip_10/name="" -animation/clip_10/start_frame=0 -animation/clip_10/end_frame=0 -animation/clip_10/loops=false -animation/clip_11/name="" -animation/clip_11/start_frame=0 -animation/clip_11/end_frame=0 -animation/clip_11/loops=false -animation/clip_12/name="" -animation/clip_12/start_frame=0 -animation/clip_12/end_frame=0 -animation/clip_12/loops=false -animation/clip_13/name="" -animation/clip_13/start_frame=0 -animation/clip_13/end_frame=0 -animation/clip_13/loops=false -animation/clip_14/name="" -animation/clip_14/start_frame=0 -animation/clip_14/end_frame=0 -animation/clip_14/loops=false -animation/clip_15/name="" -animation/clip_15/start_frame=0 -animation/clip_15/end_frame=0 -animation/clip_15/loops=false -animation/clip_16/name="" -animation/clip_16/start_frame=0 -animation/clip_16/end_frame=0 -animation/clip_16/loops=false -animation/clip_17/name="" -animation/clip_17/start_frame=0 -animation/clip_17/end_frame=0 -animation/clip_17/loops=false -animation/clip_18/name="" -animation/clip_18/start_frame=0 -animation/clip_18/end_frame=0 -animation/clip_18/loops=false -animation/clip_19/name="" -animation/clip_19/start_frame=0 -animation/clip_19/end_frame=0 -animation/clip_19/loops=false -animation/clip_20/name="" -animation/clip_20/start_frame=0 -animation/clip_20/end_frame=0 -animation/clip_20/loops=false -animation/clip_21/name="" -animation/clip_21/start_frame=0 -animation/clip_21/end_frame=0 -animation/clip_21/loops=false -animation/clip_22/name="" -animation/clip_22/start_frame=0 -animation/clip_22/end_frame=0 -animation/clip_22/loops=false -animation/clip_23/name="" -animation/clip_23/start_frame=0 -animation/clip_23/end_frame=0 -animation/clip_23/loops=false -animation/clip_24/name="" -animation/clip_24/start_frame=0 -animation/clip_24/end_frame=0 -animation/clip_24/loops=false -animation/clip_25/name="" -animation/clip_25/start_frame=0 -animation/clip_25/end_frame=0 -animation/clip_25/loops=false -animation/clip_26/name="" -animation/clip_26/start_frame=0 -animation/clip_26/end_frame=0 -animation/clip_26/loops=false -animation/clip_27/name="" -animation/clip_27/start_frame=0 -animation/clip_27/end_frame=0 -animation/clip_27/loops=false -animation/clip_28/name="" -animation/clip_28/start_frame=0 -animation/clip_28/end_frame=0 -animation/clip_28/loops=false -animation/clip_29/name="" -animation/clip_29/start_frame=0 -animation/clip_29/end_frame=0 -animation/clip_29/loops=false -animation/clip_30/name="" -animation/clip_30/start_frame=0 -animation/clip_30/end_frame=0 -animation/clip_30/loops=false -animation/clip_31/name="" -animation/clip_31/start_frame=0 -animation/clip_31/end_frame=0 -animation/clip_31/loops=false -animation/clip_32/name="" -animation/clip_32/start_frame=0 -animation/clip_32/end_frame=0 -animation/clip_32/loops=false -animation/clip_33/name="" -animation/clip_33/start_frame=0 -animation/clip_33/end_frame=0 -animation/clip_33/loops=false -animation/clip_34/name="" -animation/clip_34/start_frame=0 -animation/clip_34/end_frame=0 -animation/clip_34/loops=false -animation/clip_35/name="" -animation/clip_35/start_frame=0 -animation/clip_35/end_frame=0 -animation/clip_35/loops=false -animation/clip_36/name="" -animation/clip_36/start_frame=0 -animation/clip_36/end_frame=0 -animation/clip_36/loops=false -animation/clip_37/name="" -animation/clip_37/start_frame=0 -animation/clip_37/end_frame=0 -animation/clip_37/loops=false -animation/clip_38/name="" -animation/clip_38/start_frame=0 -animation/clip_38/end_frame=0 -animation/clip_38/loops=false -animation/clip_39/name="" -animation/clip_39/start_frame=0 -animation/clip_39/end_frame=0 -animation/clip_39/loops=false -animation/clip_40/name="" -animation/clip_40/start_frame=0 -animation/clip_40/end_frame=0 -animation/clip_40/loops=false -animation/clip_41/name="" -animation/clip_41/start_frame=0 -animation/clip_41/end_frame=0 -animation/clip_41/loops=false -animation/clip_42/name="" -animation/clip_42/start_frame=0 -animation/clip_42/end_frame=0 -animation/clip_42/loops=false -animation/clip_43/name="" -animation/clip_43/start_frame=0 -animation/clip_43/end_frame=0 -animation/clip_43/loops=false -animation/clip_44/name="" -animation/clip_44/start_frame=0 -animation/clip_44/end_frame=0 -animation/clip_44/loops=false -animation/clip_45/name="" -animation/clip_45/start_frame=0 -animation/clip_45/end_frame=0 -animation/clip_45/loops=false -animation/clip_46/name="" -animation/clip_46/start_frame=0 -animation/clip_46/end_frame=0 -animation/clip_46/loops=false -animation/clip_47/name="" -animation/clip_47/start_frame=0 -animation/clip_47/end_frame=0 -animation/clip_47/loops=false -animation/clip_48/name="" -animation/clip_48/start_frame=0 -animation/clip_48/end_frame=0 -animation/clip_48/loops=false -animation/clip_49/name="" -animation/clip_49/start_frame=0 -animation/clip_49/end_frame=0 -animation/clip_49/loops=false -animation/clip_50/name="" -animation/clip_50/start_frame=0 -animation/clip_50/end_frame=0 -animation/clip_50/loops=false -animation/clip_51/name="" -animation/clip_51/start_frame=0 -animation/clip_51/end_frame=0 -animation/clip_51/loops=false -animation/clip_52/name="" -animation/clip_52/start_frame=0 -animation/clip_52/end_frame=0 -animation/clip_52/loops=false -animation/clip_53/name="" -animation/clip_53/start_frame=0 -animation/clip_53/end_frame=0 -animation/clip_53/loops=false -animation/clip_54/name="" -animation/clip_54/start_frame=0 -animation/clip_54/end_frame=0 -animation/clip_54/loops=false -animation/clip_55/name="" -animation/clip_55/start_frame=0 -animation/clip_55/end_frame=0 -animation/clip_55/loops=false -animation/clip_56/name="" -animation/clip_56/start_frame=0 -animation/clip_56/end_frame=0 -animation/clip_56/loops=false -animation/clip_57/name="" -animation/clip_57/start_frame=0 -animation/clip_57/end_frame=0 -animation/clip_57/loops=false -animation/clip_58/name="" -animation/clip_58/start_frame=0 -animation/clip_58/end_frame=0 -animation/clip_58/loops=false -animation/clip_59/name="" -animation/clip_59/start_frame=0 -animation/clip_59/end_frame=0 -animation/clip_59/loops=false -animation/clip_60/name="" -animation/clip_60/start_frame=0 -animation/clip_60/end_frame=0 -animation/clip_60/loops=false -animation/clip_61/name="" -animation/clip_61/start_frame=0 -animation/clip_61/end_frame=0 -animation/clip_61/loops=false -animation/clip_62/name="" -animation/clip_62/start_frame=0 -animation/clip_62/end_frame=0 -animation/clip_62/loops=false -animation/clip_63/name="" -animation/clip_63/start_frame=0 -animation/clip_63/end_frame=0 -animation/clip_63/loops=false -animation/clip_64/name="" -animation/clip_64/start_frame=0 -animation/clip_64/end_frame=0 -animation/clip_64/loops=false -animation/clip_65/name="" -animation/clip_65/start_frame=0 -animation/clip_65/end_frame=0 -animation/clip_65/loops=false -animation/clip_66/name="" -animation/clip_66/start_frame=0 -animation/clip_66/end_frame=0 -animation/clip_66/loops=false -animation/clip_67/name="" -animation/clip_67/start_frame=0 -animation/clip_67/end_frame=0 -animation/clip_67/loops=false -animation/clip_68/name="" -animation/clip_68/start_frame=0 -animation/clip_68/end_frame=0 -animation/clip_68/loops=false -animation/clip_69/name="" -animation/clip_69/start_frame=0 -animation/clip_69/end_frame=0 -animation/clip_69/loops=false -animation/clip_70/name="" -animation/clip_70/start_frame=0 -animation/clip_70/end_frame=0 -animation/clip_70/loops=false -animation/clip_71/name="" -animation/clip_71/start_frame=0 -animation/clip_71/end_frame=0 -animation/clip_71/loops=false -animation/clip_72/name="" -animation/clip_72/start_frame=0 -animation/clip_72/end_frame=0 -animation/clip_72/loops=false -animation/clip_73/name="" -animation/clip_73/start_frame=0 -animation/clip_73/end_frame=0 -animation/clip_73/loops=false -animation/clip_74/name="" -animation/clip_74/start_frame=0 -animation/clip_74/end_frame=0 -animation/clip_74/loops=false -animation/clip_75/name="" -animation/clip_75/start_frame=0 -animation/clip_75/end_frame=0 -animation/clip_75/loops=false -animation/clip_76/name="" -animation/clip_76/start_frame=0 -animation/clip_76/end_frame=0 -animation/clip_76/loops=false -animation/clip_77/name="" -animation/clip_77/start_frame=0 -animation/clip_77/end_frame=0 -animation/clip_77/loops=false -animation/clip_78/name="" -animation/clip_78/start_frame=0 -animation/clip_78/end_frame=0 -animation/clip_78/loops=false -animation/clip_79/name="" -animation/clip_79/start_frame=0 -animation/clip_79/end_frame=0 -animation/clip_79/loops=false -animation/clip_80/name="" -animation/clip_80/start_frame=0 -animation/clip_80/end_frame=0 -animation/clip_80/loops=false -animation/clip_81/name="" -animation/clip_81/start_frame=0 -animation/clip_81/end_frame=0 -animation/clip_81/loops=false -animation/clip_82/name="" -animation/clip_82/start_frame=0 -animation/clip_82/end_frame=0 -animation/clip_82/loops=false -animation/clip_83/name="" -animation/clip_83/start_frame=0 -animation/clip_83/end_frame=0 -animation/clip_83/loops=false -animation/clip_84/name="" -animation/clip_84/start_frame=0 -animation/clip_84/end_frame=0 -animation/clip_84/loops=false -animation/clip_85/name="" -animation/clip_85/start_frame=0 -animation/clip_85/end_frame=0 -animation/clip_85/loops=false -animation/clip_86/name="" -animation/clip_86/start_frame=0 -animation/clip_86/end_frame=0 -animation/clip_86/loops=false -animation/clip_87/name="" -animation/clip_87/start_frame=0 -animation/clip_87/end_frame=0 -animation/clip_87/loops=false -animation/clip_88/name="" -animation/clip_88/start_frame=0 -animation/clip_88/end_frame=0 -animation/clip_88/loops=false -animation/clip_89/name="" -animation/clip_89/start_frame=0 -animation/clip_89/end_frame=0 -animation/clip_89/loops=false -animation/clip_90/name="" -animation/clip_90/start_frame=0 -animation/clip_90/end_frame=0 -animation/clip_90/loops=false -animation/clip_91/name="" -animation/clip_91/start_frame=0 -animation/clip_91/end_frame=0 -animation/clip_91/loops=false -animation/clip_92/name="" -animation/clip_92/start_frame=0 -animation/clip_92/end_frame=0 -animation/clip_92/loops=false -animation/clip_93/name="" -animation/clip_93/start_frame=0 -animation/clip_93/end_frame=0 -animation/clip_93/loops=false -animation/clip_94/name="" -animation/clip_94/start_frame=0 -animation/clip_94/end_frame=0 -animation/clip_94/loops=false -animation/clip_95/name="" -animation/clip_95/start_frame=0 -animation/clip_95/end_frame=0 -animation/clip_95/loops=false -animation/clip_96/name="" -animation/clip_96/start_frame=0 -animation/clip_96/end_frame=0 -animation/clip_96/loops=false -animation/clip_97/name="" -animation/clip_97/start_frame=0 -animation/clip_97/end_frame=0 -animation/clip_97/loops=false -animation/clip_98/name="" -animation/clip_98/start_frame=0 -animation/clip_98/end_frame=0 -animation/clip_98/loops=false -animation/clip_99/name="" -animation/clip_99/start_frame=0 -animation/clip_99/end_frame=0 -animation/clip_99/loops=false -animation/clip_100/name="" -animation/clip_100/start_frame=0 -animation/clip_100/end_frame=0 -animation/clip_100/loops=false -animation/clip_101/name="" -animation/clip_101/start_frame=0 -animation/clip_101/end_frame=0 -animation/clip_101/loops=false -animation/clip_102/name="" -animation/clip_102/start_frame=0 -animation/clip_102/end_frame=0 -animation/clip_102/loops=false -animation/clip_103/name="" -animation/clip_103/start_frame=0 -animation/clip_103/end_frame=0 -animation/clip_103/loops=false -animation/clip_104/name="" -animation/clip_104/start_frame=0 -animation/clip_104/end_frame=0 -animation/clip_104/loops=false -animation/clip_105/name="" -animation/clip_105/start_frame=0 -animation/clip_105/end_frame=0 -animation/clip_105/loops=false -animation/clip_106/name="" -animation/clip_106/start_frame=0 -animation/clip_106/end_frame=0 -animation/clip_106/loops=false -animation/clip_107/name="" -animation/clip_107/start_frame=0 -animation/clip_107/end_frame=0 -animation/clip_107/loops=false -animation/clip_108/name="" -animation/clip_108/start_frame=0 -animation/clip_108/end_frame=0 -animation/clip_108/loops=false -animation/clip_109/name="" -animation/clip_109/start_frame=0 -animation/clip_109/end_frame=0 -animation/clip_109/loops=false -animation/clip_110/name="" -animation/clip_110/start_frame=0 -animation/clip_110/end_frame=0 -animation/clip_110/loops=false -animation/clip_111/name="" -animation/clip_111/start_frame=0 -animation/clip_111/end_frame=0 -animation/clip_111/loops=false -animation/clip_112/name="" -animation/clip_112/start_frame=0 -animation/clip_112/end_frame=0 -animation/clip_112/loops=false -animation/clip_113/name="" -animation/clip_113/start_frame=0 -animation/clip_113/end_frame=0 -animation/clip_113/loops=false -animation/clip_114/name="" -animation/clip_114/start_frame=0 -animation/clip_114/end_frame=0 -animation/clip_114/loops=false -animation/clip_115/name="" -animation/clip_115/start_frame=0 -animation/clip_115/end_frame=0 -animation/clip_115/loops=false -animation/clip_116/name="" -animation/clip_116/start_frame=0 -animation/clip_116/end_frame=0 -animation/clip_116/loops=false -animation/clip_117/name="" -animation/clip_117/start_frame=0 -animation/clip_117/end_frame=0 -animation/clip_117/loops=false -animation/clip_118/name="" -animation/clip_118/start_frame=0 -animation/clip_118/end_frame=0 -animation/clip_118/loops=false -animation/clip_119/name="" -animation/clip_119/start_frame=0 -animation/clip_119/end_frame=0 -animation/clip_119/loops=false -animation/clip_120/name="" -animation/clip_120/start_frame=0 -animation/clip_120/end_frame=0 -animation/clip_120/loops=false -animation/clip_121/name="" -animation/clip_121/start_frame=0 -animation/clip_121/end_frame=0 -animation/clip_121/loops=false -animation/clip_122/name="" -animation/clip_122/start_frame=0 -animation/clip_122/end_frame=0 -animation/clip_122/loops=false -animation/clip_123/name="" -animation/clip_123/start_frame=0 -animation/clip_123/end_frame=0 -animation/clip_123/loops=false -animation/clip_124/name="" -animation/clip_124/start_frame=0 -animation/clip_124/end_frame=0 -animation/clip_124/loops=false -animation/clip_125/name="" -animation/clip_125/start_frame=0 -animation/clip_125/end_frame=0 -animation/clip_125/loops=false -animation/clip_126/name="" -animation/clip_126/start_frame=0 -animation/clip_126/end_frame=0 -animation/clip_126/loops=false -animation/clip_127/name="" -animation/clip_127/start_frame=0 -animation/clip_127/end_frame=0 -animation/clip_127/loops=false -animation/clip_128/name="" -animation/clip_128/start_frame=0 -animation/clip_128/end_frame=0 -animation/clip_128/loops=false -animation/clip_129/name="" -animation/clip_129/start_frame=0 -animation/clip_129/end_frame=0 -animation/clip_129/loops=false -animation/clip_130/name="" -animation/clip_130/start_frame=0 -animation/clip_130/end_frame=0 -animation/clip_130/loops=false -animation/clip_131/name="" -animation/clip_131/start_frame=0 -animation/clip_131/end_frame=0 -animation/clip_131/loops=false -animation/clip_132/name="" -animation/clip_132/start_frame=0 -animation/clip_132/end_frame=0 -animation/clip_132/loops=false -animation/clip_133/name="" -animation/clip_133/start_frame=0 -animation/clip_133/end_frame=0 -animation/clip_133/loops=false -animation/clip_134/name="" -animation/clip_134/start_frame=0 -animation/clip_134/end_frame=0 -animation/clip_134/loops=false -animation/clip_135/name="" -animation/clip_135/start_frame=0 -animation/clip_135/end_frame=0 -animation/clip_135/loops=false -animation/clip_136/name="" -animation/clip_136/start_frame=0 -animation/clip_136/end_frame=0 -animation/clip_136/loops=false -animation/clip_137/name="" -animation/clip_137/start_frame=0 -animation/clip_137/end_frame=0 -animation/clip_137/loops=false -animation/clip_138/name="" -animation/clip_138/start_frame=0 -animation/clip_138/end_frame=0 -animation/clip_138/loops=false -animation/clip_139/name="" -animation/clip_139/start_frame=0 -animation/clip_139/end_frame=0 -animation/clip_139/loops=false -animation/clip_140/name="" -animation/clip_140/start_frame=0 -animation/clip_140/end_frame=0 -animation/clip_140/loops=false -animation/clip_141/name="" -animation/clip_141/start_frame=0 -animation/clip_141/end_frame=0 -animation/clip_141/loops=false -animation/clip_142/name="" -animation/clip_142/start_frame=0 -animation/clip_142/end_frame=0 -animation/clip_142/loops=false -animation/clip_143/name="" -animation/clip_143/start_frame=0 -animation/clip_143/end_frame=0 -animation/clip_143/loops=false -animation/clip_144/name="" -animation/clip_144/start_frame=0 -animation/clip_144/end_frame=0 -animation/clip_144/loops=false -animation/clip_145/name="" -animation/clip_145/start_frame=0 -animation/clip_145/end_frame=0 -animation/clip_145/loops=false -animation/clip_146/name="" -animation/clip_146/start_frame=0 -animation/clip_146/end_frame=0 -animation/clip_146/loops=false -animation/clip_147/name="" -animation/clip_147/start_frame=0 -animation/clip_147/end_frame=0 -animation/clip_147/loops=false -animation/clip_148/name="" -animation/clip_148/start_frame=0 -animation/clip_148/end_frame=0 -animation/clip_148/loops=false -animation/clip_149/name="" -animation/clip_149/start_frame=0 -animation/clip_149/end_frame=0 -animation/clip_149/loops=false -animation/clip_150/name="" -animation/clip_150/start_frame=0 -animation/clip_150/end_frame=0 -animation/clip_150/loops=false -animation/clip_151/name="" -animation/clip_151/start_frame=0 -animation/clip_151/end_frame=0 -animation/clip_151/loops=false -animation/clip_152/name="" -animation/clip_152/start_frame=0 -animation/clip_152/end_frame=0 -animation/clip_152/loops=false -animation/clip_153/name="" -animation/clip_153/start_frame=0 -animation/clip_153/end_frame=0 -animation/clip_153/loops=false -animation/clip_154/name="" -animation/clip_154/start_frame=0 -animation/clip_154/end_frame=0 -animation/clip_154/loops=false -animation/clip_155/name="" -animation/clip_155/start_frame=0 -animation/clip_155/end_frame=0 -animation/clip_155/loops=false -animation/clip_156/name="" -animation/clip_156/start_frame=0 -animation/clip_156/end_frame=0 -animation/clip_156/loops=false -animation/clip_157/name="" -animation/clip_157/start_frame=0 -animation/clip_157/end_frame=0 -animation/clip_157/loops=false -animation/clip_158/name="" -animation/clip_158/start_frame=0 -animation/clip_158/end_frame=0 -animation/clip_158/loops=false -animation/clip_159/name="" -animation/clip_159/start_frame=0 -animation/clip_159/end_frame=0 -animation/clip_159/loops=false -animation/clip_160/name="" -animation/clip_160/start_frame=0 -animation/clip_160/end_frame=0 -animation/clip_160/loops=false -animation/clip_161/name="" -animation/clip_161/start_frame=0 -animation/clip_161/end_frame=0 -animation/clip_161/loops=false -animation/clip_162/name="" -animation/clip_162/start_frame=0 -animation/clip_162/end_frame=0 -animation/clip_162/loops=false -animation/clip_163/name="" -animation/clip_163/start_frame=0 -animation/clip_163/end_frame=0 -animation/clip_163/loops=false -animation/clip_164/name="" -animation/clip_164/start_frame=0 -animation/clip_164/end_frame=0 -animation/clip_164/loops=false -animation/clip_165/name="" -animation/clip_165/start_frame=0 -animation/clip_165/end_frame=0 -animation/clip_165/loops=false -animation/clip_166/name="" -animation/clip_166/start_frame=0 -animation/clip_166/end_frame=0 -animation/clip_166/loops=false -animation/clip_167/name="" -animation/clip_167/start_frame=0 -animation/clip_167/end_frame=0 -animation/clip_167/loops=false -animation/clip_168/name="" -animation/clip_168/start_frame=0 -animation/clip_168/end_frame=0 -animation/clip_168/loops=false -animation/clip_169/name="" -animation/clip_169/start_frame=0 -animation/clip_169/end_frame=0 -animation/clip_169/loops=false -animation/clip_170/name="" -animation/clip_170/start_frame=0 -animation/clip_170/end_frame=0 -animation/clip_170/loops=false -animation/clip_171/name="" -animation/clip_171/start_frame=0 -animation/clip_171/end_frame=0 -animation/clip_171/loops=false -animation/clip_172/name="" -animation/clip_172/start_frame=0 -animation/clip_172/end_frame=0 -animation/clip_172/loops=false -animation/clip_173/name="" -animation/clip_173/start_frame=0 -animation/clip_173/end_frame=0 -animation/clip_173/loops=false -animation/clip_174/name="" -animation/clip_174/start_frame=0 -animation/clip_174/end_frame=0 -animation/clip_174/loops=false -animation/clip_175/name="" -animation/clip_175/start_frame=0 -animation/clip_175/end_frame=0 -animation/clip_175/loops=false -animation/clip_176/name="" -animation/clip_176/start_frame=0 -animation/clip_176/end_frame=0 -animation/clip_176/loops=false -animation/clip_177/name="" -animation/clip_177/start_frame=0 -animation/clip_177/end_frame=0 -animation/clip_177/loops=false -animation/clip_178/name="" -animation/clip_178/start_frame=0 -animation/clip_178/end_frame=0 -animation/clip_178/loops=false -animation/clip_179/name="" -animation/clip_179/start_frame=0 -animation/clip_179/end_frame=0 -animation/clip_179/loops=false -animation/clip_180/name="" -animation/clip_180/start_frame=0 -animation/clip_180/end_frame=0 -animation/clip_180/loops=false -animation/clip_181/name="" -animation/clip_181/start_frame=0 -animation/clip_181/end_frame=0 -animation/clip_181/loops=false -animation/clip_182/name="" -animation/clip_182/start_frame=0 -animation/clip_182/end_frame=0 -animation/clip_182/loops=false -animation/clip_183/name="" -animation/clip_183/start_frame=0 -animation/clip_183/end_frame=0 -animation/clip_183/loops=false -animation/clip_184/name="" -animation/clip_184/start_frame=0 -animation/clip_184/end_frame=0 -animation/clip_184/loops=false -animation/clip_185/name="" -animation/clip_185/start_frame=0 -animation/clip_185/end_frame=0 -animation/clip_185/loops=false -animation/clip_186/name="" -animation/clip_186/start_frame=0 -animation/clip_186/end_frame=0 -animation/clip_186/loops=false -animation/clip_187/name="" -animation/clip_187/start_frame=0 -animation/clip_187/end_frame=0 -animation/clip_187/loops=false -animation/clip_188/name="" -animation/clip_188/start_frame=0 -animation/clip_188/end_frame=0 -animation/clip_188/loops=false -animation/clip_189/name="" -animation/clip_189/start_frame=0 -animation/clip_189/end_frame=0 -animation/clip_189/loops=false -animation/clip_190/name="" -animation/clip_190/start_frame=0 -animation/clip_190/end_frame=0 -animation/clip_190/loops=false -animation/clip_191/name="" -animation/clip_191/start_frame=0 -animation/clip_191/end_frame=0 -animation/clip_191/loops=false -animation/clip_192/name="" -animation/clip_192/start_frame=0 -animation/clip_192/end_frame=0 -animation/clip_192/loops=false -animation/clip_193/name="" -animation/clip_193/start_frame=0 -animation/clip_193/end_frame=0 -animation/clip_193/loops=false -animation/clip_194/name="" -animation/clip_194/start_frame=0 -animation/clip_194/end_frame=0 -animation/clip_194/loops=false -animation/clip_195/name="" -animation/clip_195/start_frame=0 -animation/clip_195/end_frame=0 -animation/clip_195/loops=false -animation/clip_196/name="" -animation/clip_196/start_frame=0 -animation/clip_196/end_frame=0 -animation/clip_196/loops=false -animation/clip_197/name="" -animation/clip_197/start_frame=0 -animation/clip_197/end_frame=0 -animation/clip_197/loops=false -animation/clip_198/name="" -animation/clip_198/start_frame=0 -animation/clip_198/end_frame=0 -animation/clip_198/loops=false -animation/clip_199/name="" -animation/clip_199/start_frame=0 -animation/clip_199/end_frame=0 -animation/clip_199/loops=false -animation/clip_200/name="" -animation/clip_200/start_frame=0 -animation/clip_200/end_frame=0 -animation/clip_200/loops=false -animation/clip_201/name="" -animation/clip_201/start_frame=0 -animation/clip_201/end_frame=0 -animation/clip_201/loops=false -animation/clip_202/name="" -animation/clip_202/start_frame=0 -animation/clip_202/end_frame=0 -animation/clip_202/loops=false -animation/clip_203/name="" -animation/clip_203/start_frame=0 -animation/clip_203/end_frame=0 -animation/clip_203/loops=false -animation/clip_204/name="" -animation/clip_204/start_frame=0 -animation/clip_204/end_frame=0 -animation/clip_204/loops=false -animation/clip_205/name="" -animation/clip_205/start_frame=0 -animation/clip_205/end_frame=0 -animation/clip_205/loops=false -animation/clip_206/name="" -animation/clip_206/start_frame=0 -animation/clip_206/end_frame=0 -animation/clip_206/loops=false -animation/clip_207/name="" -animation/clip_207/start_frame=0 -animation/clip_207/end_frame=0 -animation/clip_207/loops=false -animation/clip_208/name="" -animation/clip_208/start_frame=0 -animation/clip_208/end_frame=0 -animation/clip_208/loops=false -animation/clip_209/name="" -animation/clip_209/start_frame=0 -animation/clip_209/end_frame=0 -animation/clip_209/loops=false -animation/clip_210/name="" -animation/clip_210/start_frame=0 -animation/clip_210/end_frame=0 -animation/clip_210/loops=false -animation/clip_211/name="" -animation/clip_211/start_frame=0 -animation/clip_211/end_frame=0 -animation/clip_211/loops=false -animation/clip_212/name="" -animation/clip_212/start_frame=0 -animation/clip_212/end_frame=0 -animation/clip_212/loops=false -animation/clip_213/name="" -animation/clip_213/start_frame=0 -animation/clip_213/end_frame=0 -animation/clip_213/loops=false -animation/clip_214/name="" -animation/clip_214/start_frame=0 -animation/clip_214/end_frame=0 -animation/clip_214/loops=false -animation/clip_215/name="" -animation/clip_215/start_frame=0 -animation/clip_215/end_frame=0 -animation/clip_215/loops=false -animation/clip_216/name="" -animation/clip_216/start_frame=0 -animation/clip_216/end_frame=0 -animation/clip_216/loops=false -animation/clip_217/name="" -animation/clip_217/start_frame=0 -animation/clip_217/end_frame=0 -animation/clip_217/loops=false -animation/clip_218/name="" -animation/clip_218/start_frame=0 -animation/clip_218/end_frame=0 -animation/clip_218/loops=false -animation/clip_219/name="" -animation/clip_219/start_frame=0 -animation/clip_219/end_frame=0 -animation/clip_219/loops=false -animation/clip_220/name="" -animation/clip_220/start_frame=0 -animation/clip_220/end_frame=0 -animation/clip_220/loops=false -animation/clip_221/name="" -animation/clip_221/start_frame=0 -animation/clip_221/end_frame=0 -animation/clip_221/loops=false -animation/clip_222/name="" -animation/clip_222/start_frame=0 -animation/clip_222/end_frame=0 -animation/clip_222/loops=false -animation/clip_223/name="" -animation/clip_223/start_frame=0 -animation/clip_223/end_frame=0 -animation/clip_223/loops=false -animation/clip_224/name="" -animation/clip_224/start_frame=0 -animation/clip_224/end_frame=0 -animation/clip_224/loops=false -animation/clip_225/name="" -animation/clip_225/start_frame=0 -animation/clip_225/end_frame=0 -animation/clip_225/loops=false -animation/clip_226/name="" -animation/clip_226/start_frame=0 -animation/clip_226/end_frame=0 -animation/clip_226/loops=false -animation/clip_227/name="" -animation/clip_227/start_frame=0 -animation/clip_227/end_frame=0 -animation/clip_227/loops=false -animation/clip_228/name="" -animation/clip_228/start_frame=0 -animation/clip_228/end_frame=0 -animation/clip_228/loops=false -animation/clip_229/name="" -animation/clip_229/start_frame=0 -animation/clip_229/end_frame=0 -animation/clip_229/loops=false -animation/clip_230/name="" -animation/clip_230/start_frame=0 -animation/clip_230/end_frame=0 -animation/clip_230/loops=false -animation/clip_231/name="" -animation/clip_231/start_frame=0 -animation/clip_231/end_frame=0 -animation/clip_231/loops=false -animation/clip_232/name="" -animation/clip_232/start_frame=0 -animation/clip_232/end_frame=0 -animation/clip_232/loops=false -animation/clip_233/name="" -animation/clip_233/start_frame=0 -animation/clip_233/end_frame=0 -animation/clip_233/loops=false -animation/clip_234/name="" -animation/clip_234/start_frame=0 -animation/clip_234/end_frame=0 -animation/clip_234/loops=false -animation/clip_235/name="" -animation/clip_235/start_frame=0 -animation/clip_235/end_frame=0 -animation/clip_235/loops=false -animation/clip_236/name="" -animation/clip_236/start_frame=0 -animation/clip_236/end_frame=0 -animation/clip_236/loops=false -animation/clip_237/name="" -animation/clip_237/start_frame=0 -animation/clip_237/end_frame=0 -animation/clip_237/loops=false -animation/clip_238/name="" -animation/clip_238/start_frame=0 -animation/clip_238/end_frame=0 -animation/clip_238/loops=false -animation/clip_239/name="" -animation/clip_239/start_frame=0 -animation/clip_239/end_frame=0 -animation/clip_239/loops=false -animation/clip_240/name="" -animation/clip_240/start_frame=0 -animation/clip_240/end_frame=0 -animation/clip_240/loops=false -animation/clip_241/name="" -animation/clip_241/start_frame=0 -animation/clip_241/end_frame=0 -animation/clip_241/loops=false -animation/clip_242/name="" -animation/clip_242/start_frame=0 -animation/clip_242/end_frame=0 -animation/clip_242/loops=false -animation/clip_243/name="" -animation/clip_243/start_frame=0 -animation/clip_243/end_frame=0 -animation/clip_243/loops=false -animation/clip_244/name="" -animation/clip_244/start_frame=0 -animation/clip_244/end_frame=0 -animation/clip_244/loops=false -animation/clip_245/name="" -animation/clip_245/start_frame=0 -animation/clip_245/end_frame=0 -animation/clip_245/loops=false -animation/clip_246/name="" -animation/clip_246/start_frame=0 -animation/clip_246/end_frame=0 -animation/clip_246/loops=false -animation/clip_247/name="" -animation/clip_247/start_frame=0 -animation/clip_247/end_frame=0 -animation/clip_247/loops=false -animation/clip_248/name="" -animation/clip_248/start_frame=0 -animation/clip_248/end_frame=0 -animation/clip_248/loops=false -animation/clip_249/name="" -animation/clip_249/start_frame=0 -animation/clip_249/end_frame=0 -animation/clip_249/loops=false -animation/clip_250/name="" -animation/clip_250/start_frame=0 -animation/clip_250/end_frame=0 -animation/clip_250/loops=false -animation/clip_251/name="" -animation/clip_251/start_frame=0 -animation/clip_251/end_frame=0 -animation/clip_251/loops=false -animation/clip_252/name="" -animation/clip_252/start_frame=0 -animation/clip_252/end_frame=0 -animation/clip_252/loops=false -animation/clip_253/name="" -animation/clip_253/start_frame=0 -animation/clip_253/end_frame=0 -animation/clip_253/loops=false -animation/clip_254/name="" -animation/clip_254/start_frame=0 -animation/clip_254/end_frame=0 -animation/clip_254/loops=false -animation/clip_255/name="" -animation/clip_255/start_frame=0 -animation/clip_255/end_frame=0 -animation/clip_255/loops=false -animation/clip_256/name="" -animation/clip_256/start_frame=0 -animation/clip_256/end_frame=0 -animation/clip_256/loops=false +import_script/path="" +_subresources={} diff --git a/3d/ik/model/godot_battle_bot_colors.png.import b/3d/ik/model/godot_battle_bot_colors.png.import index 11656b13..efa2d011 100644 --- a/3d/ik/model/godot_battle_bot_colors.png.import +++ b/3d/ik/model/godot_battle_bot_colors.png.import @@ -1,38 +1,35 @@ [remap] importer="texture" -type="StreamTexture2D" -path.s3tc="res://.godot/imported/godot_battle_bot_colors.png-db0edfc662d0fffff287aad7600ab21a.s3tc.stex" -path.etc2="res://.godot/imported/godot_battle_bot_colors.png-db0edfc662d0fffff287aad7600ab21a.etc2.stex" -path.etc="res://.godot/imported/godot_battle_bot_colors.png-db0edfc662d0fffff287aad7600ab21a.etc.stex" +type="CompressedTexture2D" +uid="uid://elw71frcteyv" +path.s3tc="res://.godot/imported/godot_battle_bot_colors.png-db0edfc662d0fffff287aad7600ab21a.s3tc.ctex" +path.etc2="res://.godot/imported/godot_battle_bot_colors.png-db0edfc662d0fffff287aad7600ab21a.etc2.ctex" metadata={ -"imported_formats": ["s3tc", "etc2", "etc"], +"imported_formats": ["s3tc", "etc2"], "vram_texture": true } [deps] source_file="res://model/godot_battle_bot_colors.png" -dest_files=["res://.godot/imported/godot_battle_bot_colors.png-db0edfc662d0fffff287aad7600ab21a.s3tc.stex", "res://.godot/imported/godot_battle_bot_colors.png-db0edfc662d0fffff287aad7600ab21a.etc2.stex", "res://.godot/imported/godot_battle_bot_colors.png-db0edfc662d0fffff287aad7600ab21a.etc.stex"] +dest_files=["res://.godot/imported/godot_battle_bot_colors.png-db0edfc662d0fffff287aad7600ab21a.s3tc.ctex", "res://.godot/imported/godot_battle_bot_colors.png-db0edfc662d0fffff287aad7600ab21a.etc2.ctex"] [params] compress/mode=2 compress/lossy_quality=0.7 -compress/hdr_mode=0 +compress/hdr_compression=1 compress/bptc_ldr=0 compress/normal_map=0 -flags/repeat=true -flags/filter=false -flags/mipmaps=false -flags/anisotropic=false -flags/srgb=1 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" process/fix_alpha_border=true process/premult_alpha=false -process/HDR_as_SRGB=false -process/invert_color=false process/normal_map_invert_y=false -stream=false -size_limit=0 -detect_3d=false -svg/scale=1.0 +process/hdr_as_srgb=false +process/size_limit=0 +detect_3d/compress_to=0 diff --git a/3d/ik/model/godot_battle_bot_emission.png.import b/3d/ik/model/godot_battle_bot_emission.png.import index 54e832d3..75284cdf 100644 --- a/3d/ik/model/godot_battle_bot_emission.png.import +++ b/3d/ik/model/godot_battle_bot_emission.png.import @@ -1,38 +1,35 @@ [remap] importer="texture" -type="StreamTexture2D" -path.s3tc="res://.godot/imported/godot_battle_bot_emission.png-59fd27c1839e5b7c5584f3c2131bce33.s3tc.stex" -path.etc2="res://.godot/imported/godot_battle_bot_emission.png-59fd27c1839e5b7c5584f3c2131bce33.etc2.stex" -path.etc="res://.godot/imported/godot_battle_bot_emission.png-59fd27c1839e5b7c5584f3c2131bce33.etc.stex" +type="CompressedTexture2D" +uid="uid://dnkmib3qcg5ur" +path.s3tc="res://.godot/imported/godot_battle_bot_emission.png-59fd27c1839e5b7c5584f3c2131bce33.s3tc.ctex" +path.etc2="res://.godot/imported/godot_battle_bot_emission.png-59fd27c1839e5b7c5584f3c2131bce33.etc2.ctex" metadata={ -"imported_formats": ["s3tc", "etc2", "etc"], +"imported_formats": ["s3tc", "etc2"], "vram_texture": true } [deps] source_file="res://model/godot_battle_bot_emission.png" -dest_files=["res://.godot/imported/godot_battle_bot_emission.png-59fd27c1839e5b7c5584f3c2131bce33.s3tc.stex", "res://.godot/imported/godot_battle_bot_emission.png-59fd27c1839e5b7c5584f3c2131bce33.etc2.stex", "res://.godot/imported/godot_battle_bot_emission.png-59fd27c1839e5b7c5584f3c2131bce33.etc.stex"] +dest_files=["res://.godot/imported/godot_battle_bot_emission.png-59fd27c1839e5b7c5584f3c2131bce33.s3tc.ctex", "res://.godot/imported/godot_battle_bot_emission.png-59fd27c1839e5b7c5584f3c2131bce33.etc2.ctex"] [params] compress/mode=2 compress/lossy_quality=0.7 -compress/hdr_mode=0 +compress/hdr_compression=1 compress/bptc_ldr=0 compress/normal_map=0 -flags/repeat=true -flags/filter=false -flags/mipmaps=false -flags/anisotropic=false -flags/srgb=1 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" process/fix_alpha_border=true process/premult_alpha=false -process/HDR_as_SRGB=false -process/invert_color=false process/normal_map_invert_y=false -stream=false -size_limit=0 -detect_3d=false -svg/scale=1.0 +process/hdr_as_srgb=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/3d/ik/project.godot b/3d/ik/project.godot index c13119f0..a6080546 100644 --- a/3d/ik/project.godot +++ b/3d/ik/project.godot @@ -6,7 +6,7 @@ ; [section] ; section goes between [] ; param=value ; assign values to parameters -config_version=4 +config_version=5 [application] @@ -16,16 +16,16 @@ implemented in Godot. It contains four scenes, showing different ways they can be used, including via SkeletonIK3D." run/main_scene="res://look_at_ik.tscn" config/icon="res://icon.png" +config/features=PackedStringArray("4.0") [display] -window/dpi/allow_hidpi=true window/stretch/mode="2d" window/stretch/aspect="expand" [editor_plugins] -enabled=PackedStringArray("res://addons/sade/plugin.cfg") +enabled=PackedStringArray() [rendering] diff --git a/3d/ik/skeleton_ik.tscn b/3d/ik/skeleton_ik.tscn index c2c416bd..5abeed6c 100644 --- a/3d/ik/skeleton_ik.tscn +++ b/3d/ik/skeleton_ik.tscn @@ -1,36 +1,34 @@ -[gd_scene load_steps=14 format=2] +[gd_scene load_steps=13 format=3 uid="uid://5x7yswntc63m"] -[ext_resource path="res://skeleton_ik_runner.gd" type="Script" id=1] -[ext_resource path="res://addons/sade/ik_look_at.png" type="Texture2D" id=2] -[ext_resource path="res://addons/sade/editor_gizmo_texture.png" type="Texture2D" id=3] -[ext_resource path="res://model/godot_battle_bot.dae" type="PackedScene" id=4] -[ext_resource path="res://target_from_mousepos.gd" type="Script" id=5] -[ext_resource path="res://model/battle_bot_color.tres" type="Material" id=6] -[ext_resource path="res://model/battle_bot_emission.tres" type="Material" id=7] -[ext_resource path="res://button_change_scene.gd" type="Script" id=8] -[ext_resource path="res://addons/sade/ik_look_at.gd" type="Script" id=9] +[ext_resource type="Script" path="res://skeleton_ik_runner.gd" id="1"] +[ext_resource type="Texture2D" uid="uid://dhgpf3w8mh4ed" path="res://addons/sade/ik_look_at.png" id="2"] +[ext_resource type="Texture2D" uid="uid://bw3q8aq6gfuof" path="res://addons/sade/editor_gizmo_texture.png" id="3"] +[ext_resource type="PackedScene" uid="uid://ctssefekxjogg" path="res://model/godot_battle_bot.dae" id="4"] +[ext_resource type="Script" path="res://target_from_mousepos.gd" id="5"] +[ext_resource type="Material" path="res://model/battle_bot_color.tres" id="6"] +[ext_resource type="Script" path="res://button_change_scene.gd" id="8"] +[ext_resource type="Script" path="res://addons/sade/ik_look_at.gd" id="9"] -[sub_resource type="PlaneMesh" id=1] +[sub_resource type="PlaneMesh" id="1"] size = Vector2(40, 40) -[sub_resource type="StandardMaterial3D" id=2] -albedo_texture = ExtResource( 3 ) +[sub_resource type="StandardMaterial3D" id="2"] +albedo_texture = ExtResource( "3" ) roughness = 0.2 uv1_scale = Vector3(0.25, 0.25, 0.25) uv1_triplanar = true -[sub_resource type="BoxMesh" id=3] -size = Vector3(1, 1, 1) +[sub_resource type="BoxMesh" id="3"] -[sub_resource type="StandardMaterial3D" id=4] +[sub_resource type="StandardMaterial3D" id="4"] albedo_color = Color(0, 0.191406, 0.765625, 1) roughness = 0.0 [node name="SkeletonIK3D" type="Node3D"] [node name="Floor" type="MeshInstance3D" parent="."] -mesh = SubResource( 1 ) -surface_material_override/0 = SubResource( 2 ) +mesh = SubResource( "1" ) +surface_material_override/0 = SubResource( "2" ) [node name="DirectionalLight3D" type="DirectionalLight3D" parent="."] transform = Transform3D(0.56827, 0.673454, -0.472789, 0, 0.574581, 0.818448, 0.822842, -0.465099, 0.326517, -9.77531, 11.5204, 11.766) @@ -38,7 +36,7 @@ transform = Transform3D(0.56827, 0.673454, -0.472789, 0, 0.574581, 0.818448, 0.8 [node name="Camera3D" type="Camera3D" parent="."] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 11.5, 11) fov = 74.0 -script = ExtResource( 5 ) +script = ExtResource( "5" ) MOVEMENT_SPEED = -8.0 flip_axis = true @@ -46,17 +44,17 @@ flip_axis = true transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, -8) [node name="IK_LookAt_Head" type="Node3D" parent="Camera3D/Targets"] -script = ExtResource( 9 ) +script = ExtResource( "9" ) __meta__ = { -"_editor_icon": ExtResource( 2 ) +"_editor_icon": ExtResource( "2" ) } skeleton_path = NodePath("../../../GodotBattleBot/Armature/Skeleton3D") bone_name = "Head" additional_rotation = Vector3(90, 0, 0) [node name="1MeterCube" type="MeshInstance3D" parent="Camera3D/Targets"] -mesh = SubResource( 3 ) -surface_material_override/0 = SubResource( 4 ) +mesh = SubResource( "3" ) +surface_material_override/0 = SubResource( "4" ) [node name="TargetLeft" type="Position3D" parent="Camera3D/Targets"] transform = Transform3D(-0.179447, 0.98366, -0.0145678, 0.981822, 0.178142, -0.0654973, -0.0618319, -0.0260563, -0.997746, 0.653517, -0.112305, -0.760886) @@ -64,29 +62,28 @@ transform = Transform3D(-0.179447, 0.98366, -0.0145678, 0.981822, 0.178142, -0.0 [node name="TargetRight" type="Position3D" parent="Camera3D/Targets"] transform = Transform3D(-0.0217688, 0.998559, -0.0490576, 0.992503, 0.0274873, 0.119085, 0.120262, -0.0460975, -0.991671, -0.683053, 0.0251284, -0.811513) -[node name="GodotBattleBot" parent="." instance=ExtResource( 4 )] +[node name="GodotBattleBot" parent="." instance=ExtResource( "4" )] [node name="godot_battle_bot" parent="GodotBattleBot/Armature/Skeleton3D" index="0"] -surface_material_override/0 = ExtResource( 6 ) -material/1 = ExtResource( 7 ) +surface_material_override/0 = ExtResource( "6" ) [node name="SkeletonIK_Left" type="SkeletonIK3D" parent="GodotBattleBot/Armature/Skeleton3D" index="1"] process_priority = 1 -root_bone = "Left_UpperArm" -tip_bone = "Left_Hand" +root_bone = &"Left_UpperArm" +tip_bone = &"Left_Hand" use_magnet = true magnet = Vector3(8, 6, 0) target_node = NodePath("../../../../Camera3D/Targets/TargetLeft") -script = ExtResource( 1 ) +script = ExtResource( "1" ) [node name="SkeletonIK_Right" type="SkeletonIK3D" parent="GodotBattleBot/Armature/Skeleton3D" index="2"] process_priority = 1 -root_bone = "Right_UpperArm" -tip_bone = "Right_Hand" +root_bone = &"Right_UpperArm" +tip_bone = &"Right_Hand" use_magnet = true magnet = Vector3(-8, 6, 0) target_node = NodePath("../../../../Camera3D/Targets/TargetRight") -script = ExtResource( 1 ) +script = ExtResource( "1" ) [node name="Control" type="Control" parent="."] anchor_right = 1.0 @@ -116,8 +113,6 @@ offset_right = -18.0 offset_bottom = -29.0 text = "SkeletonIK3D node Move mouse to move IK targets" -align = 1 -valign = 1 __meta__ = { "_edit_use_anchors_": false } @@ -132,7 +127,7 @@ offset_top = -60.0 offset_right = -5.0 offset_bottom = -10.0 text = "Next scene" -script = ExtResource( 8 ) +script = ExtResource( "8" ) __meta__ = { "_edit_use_anchors_": false } @@ -146,7 +141,7 @@ offset_top = -60.0 offset_right = 129.0 offset_bottom = -10.0 text = "Previous scene" -script = ExtResource( 8 ) +script = ExtResource( "8" ) __meta__ = { "_edit_use_anchors_": false } diff --git a/3d/kinematic_character/cubelib.tres b/3d/kinematic_character/cubelib.tres index 05f1b8cd..27d5b82d 100644 --- a/3d/kinematic_character/cubelib.tres +++ b/3d/kinematic_character/cubelib.tres @@ -1,27 +1,26 @@ -[gd_resource type="MeshLibrary" load_steps=5 format=2] +[gd_resource type="MeshLibrary" load_steps=5 format=3 uid="uid://cnxehnqppo36s"] -[ext_resource path="res://models/cube.mesh" type="ArrayMesh" id=1] +[ext_resource type="ArrayMesh" uid="uid://ba7dqpj07mlsy" path="res://models/cube.mesh" id="1"] -[sub_resource type="Image" id=4] +[sub_resource type="Image" id="Image_gt44q"] data = { -"data": PackedByteArray( 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 66, 41, 73, 255, 68, 42, 73, 255, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 55, 32, 61, 255, 62, 36, 68, 255, 70, 43, 77, 255, 72, 45, 78, 255, 67, 43, 73, 255, 63, 41, 68, 255, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 57, 33, 63, 255, 59, 34, 65, 255, 65, 38, 72, 255, 73, 45, 80, 255, 76, 47, 82, 255, 72, 47, 78, 255, 69, 46, 75, 255, 63, 41, 69, 255, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 59, 34, 64, 255, 61, 35, 67, 255, 63, 36, 69, 255, 66, 38, 73, 255, 75, 44, 81, 255, 78, 47, 84, 255, 76, 49, 83, 255, 75, 51, 82, 255, 69, 46, 75, 255, 62, 41, 69, 255, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 54, 32, 59, 255, 60, 35, 65, 255, 62, 36, 68, 255, 63, 37, 70, 255, 62, 36, 69, 255, 69, 40, 76, 255, 80, 48, 87, 255, 82, 50, 89, 255, 81, 52, 88, 255, 80, 54, 87, 255, 75, 51, 81, 255, 68, 46, 75, 255, 63, 42, 68, 255, 55, 35, 61, 255, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 52, 31, 57, 255, 57, 34, 63, 255, 64, 37, 70, 255, 62, 36, 69, 255, 62, 36, 69, 255, 68, 39, 75, 255, 77, 45, 84, 255, 88, 52, 94, 255, 89, 54, 96, 255, 85, 55, 92, 255, 83, 55, 90, 255, 81, 55, 87, 255, 75, 51, 81, 255, 68, 46, 74, 255, 61, 40, 67, 255, 54, 34, 59, 255, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 48, 30, 53, 255, 51, 31, 56, 255, 54, 32, 59, 255, 61, 36, 67, 255, 63, 36, 69, 255, 62, 36, 69, 255, 70, 40, 77, 255, 74, 43, 81, 255, 79, 46, 87, 255, 87, 53, 95, 255, 90, 56, 97, 255, 91, 59, 99, 255, 85, 55, 93, 255, 85, 58, 92, 255, 81, 56, 87, 255, 73, 50, 80, 255, 67, 45, 73, 255, 60, 39, 65, 255, 53, 34, 58, 255, 46, 29, 51, 255, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 46, 28, 51, 255, 50, 30, 55, 255, 54, 32, 59, 255, 59, 36, 65, 255, 64, 37, 70, 255, 65, 37, 72, 255, 72, 42, 80, 255, 76, 44, 84, 255, 76, 44, 84, 255, 82, 49, 90, 255, 94, 58, 103, 255, 97, 61, 105, 255, 95, 61, 103, 255, 91, 59, 98, 255, 88, 60, 96, 255, 86, 60, 93, 255, 79, 54, 85, 255, 72, 48, 78, 255, 67, 45, 73, 255, 60, 39, 65, 255, 52, 33, 57, 255, 45, 29, 50, 255, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 45, 28, 49, 255, 48, 29, 53, 255, 55, 33, 60, 255, 60, 36, 65, 255, 64, 39, 70, 255, 68, 40, 74, 255, 75, 44, 83, 255, 78, 46, 85, 255, 75, 44, 84, 255, 78, 46, 87, 255, 85, 51, 93, 255, 93, 58, 103, 255, 99, 62, 107, 255, 101, 66, 110, 255, 96, 63, 104, 255, 92, 61, 100, 255, 90, 61, 97, 255, 85, 59, 92, 255, 77, 52, 84, 255, 73, 49, 79, 255, 67, 45, 72, 255, 58, 38, 63, 255, 49, 31, 54, 255, 43, 27, 47, 255, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 38, 24, 41, 255, 45, 29, 49, 255, 50, 31, 54, 255, 54, 33, 59, 255, 59, 36, 64, 255, 63, 38, 69, 255, 68, 41, 74, 255, 75, 44, 82, 255, 77, 45, 85, 255, 76, 44, 84, 255, 80, 47, 88, 255, 80, 47, 89, 255, 86, 51, 95, 255, 98, 60, 106, 255, 102, 64, 110, 255, 105, 69, 114, 255, 101, 67, 110, 255, 95, 62, 103, 255, 93, 62, 100, 255, 90, 61, 97, 255, 82, 56, 89, 255, 76, 50, 82, 255, 72, 49, 78, 255, 64, 42, 69, 255, 53, 33, 58, 255, 46, 28, 50, 255, 41, 26, 45, 255, 38, 24, 42, 255, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 35, 22, 39, 255, 41, 26, 45, 255, 50, 32, 54, 255, 54, 33, 59, 255, 59, 36, 64, 255, 62, 37, 68, 255, 67, 40, 73, 255, 72, 44, 79, 255, 75, 45, 83, 255, 78, 46, 85, 255, 82, 48, 90, 255, 83, 49, 92, 255, 82, 47, 91, 255, 92, 54, 101, 255, 101, 61, 108, 255, 105, 64, 113, 255, 109, 70, 119, 255, 105, 69, 114, 255, 100, 66, 109, 255, 95, 62, 103, 255, 94, 63, 101, 255, 89, 59, 95, 255, 80, 52, 86, 255, 76, 51, 82, 255, 69, 45, 75, 255, 56, 34, 61, 255, 49, 29, 54, 255, 44, 26, 48, 255, 43, 27, 47, 255, 37, 23, 40, 255, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 29, 18, 32, 255, 34, 21, 37, 255, 37, 22, 41, 255, 44, 27, 48, 255, 51, 32, 56, 255, 57, 35, 62, 255, 61, 38, 68, 255, 66, 40, 72, 255, 71, 43, 78, 255, 73, 45, 81, 255, 77, 46, 85, 255, 82, 49, 90, 255, 88, 53, 96, 255, 85, 50, 95, 255, 86, 49, 96, 255, 94, 55, 104, 255, 102, 60, 111, 255, 104, 63, 114, 255, 112, 71, 122, 255, 110, 72, 119, 255, 104, 69, 113, 255, 99, 64, 107, 255, 93, 60, 101, 255, 92, 60, 99, 255, 87, 55, 94, 255, 81, 53, 87, 255, 73, 48, 80, 255, 62, 38, 67, 255, 53, 32, 59, 255, 48, 28, 53, 255, 46, 28, 50, 255, 43, 27, 46, 255, 35, 21, 38, 255, 30, 19, 33, 255, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 28, 17, 31, 255, 33, 21, 37, 255, 38, 23, 41, 255, 41, 24, 45, 255, 48, 28, 52, 255, 55, 33, 60, 255, 61, 38, 67, 255, 65, 40, 72, 255, 70, 43, 77, 255, 72, 44, 79, 255, 76, 46, 83, 255, 81, 49, 89, 255, 88, 52, 96, 255, 88, 52, 97, 255, 88, 51, 98, 255, 92, 53, 101, 255, 97, 57, 107, 255, 106, 63, 115, 255, 111, 68, 121, 255, 116, 74, 127, 255, 114, 75, 124, 255, 109, 72, 119, 255, 103, 67, 112, 255, 95, 60, 104, 255, 91, 58, 99, 255, 89, 57, 97, 255, 86, 55, 93, 255, 78, 51, 85, 255, 68, 43, 74, 255, 60, 37, 65, 255, 53, 31, 58, 255, 48, 29, 53, 255, 46, 29, 50, 255, 39, 24, 42, 255, 32, 20, 36, 255, 28, 17, 31, 255, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 27, 17, 29, 255, 33, 21, 36, 255, 38, 25, 42, 255, 41, 24, 45, 255, 45, 26, 50, 255, 53, 32, 58, 255, 61, 38, 67, 255, 65, 40, 71, 255, 69, 41, 75, 255, 72, 43, 79, 255, 76, 46, 84, 255, 80, 49, 88, 255, 86, 52, 94, 255, 89, 53, 98, 255, 93, 55, 102, 255, 98, 58, 108, 255, 97, 57, 107, 255, 101, 59, 111, 255, 117, 72, 127, 255, 123, 77, 134, 255, 121, 77, 131, 255, 119, 77, 129, 255, 111, 72, 121, 255, 105, 68, 115, 255, 99, 63, 108, 255, 92, 58, 101, 255, 90, 57, 98, 255, 87, 55, 94, 255, 83, 53, 90, 255, 74, 47, 81, 255, 65, 41, 71, 255, 59, 36, 65, 255, 53, 33, 59, 255, 48, 29, 53, 255, 44, 27, 48, 255, 37, 23, 41, 255, 31, 18, 34, 255, 26, 16, 28, 255, 21, 12, 23, 255, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 20, 13, 22, 255, 26, 17, 28, 255, 32, 21, 35, 255, 39, 26, 42, 255, 42, 27, 46, 255, 44, 26, 49, 255, 51, 31, 56, 255, 58, 36, 64, 255, 63, 39, 69, 255, 68, 41, 75, 255, 73, 44, 80, 255, 76, 47, 84, 255, 79, 48, 87, 255, 85, 52, 94, 255, 90, 55, 99, 255, 96, 58, 105, 255, 102, 62, 112, 255, 102, 61, 112, 255, 100, 59, 110, 255, 107, 64, 117, 255, 120, 74, 130, 255, 128, 81, 139, 255, 123, 78, 134, 255, 122, 78, 133, 255, 114, 73, 124, 255, 105, 66, 115, 255, 101, 64, 110, 255, 95, 60, 104, 255, 90, 56, 98, 255, 87, 55, 95, 255, 85, 54, 92, 255, 79, 49, 85, 255, 70, 44, 77, 255, 63, 39, 69, 255, 58, 36, 64, 255, 53, 33, 58, 255, 47, 29, 52, 255, 41, 25, 45, 255, 35, 21, 39, 255, 29, 17, 31, 255, 24, 14, 26, 255, 20, 11, 21, 255, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 19, 12, 20, 255, 25, 16, 27, 255, 31, 20, 33, 255, 38, 25, 41, 255, 45, 30, 48, 255, 47, 30, 51, 255, 50, 31, 55, 255, 57, 35, 62, 255, 61, 37, 67, 255, 67, 40, 73, 255, 73, 44, 80, 255, 77, 46, 84, 255, 79, 48, 86, 255, 85, 52, 93, 255, 91, 55, 100, 255, 96, 58, 105, 255, 103, 63, 112, 255, 106, 64, 116, 255, 103, 62, 114, 255, 106, 63, 116, 255, 111, 65, 120, 255, 122, 75, 132, 255, 129, 80, 140, 255, 128, 81, 139, 255, 124, 79, 135, 255, 119, 76, 129, 255, 110, 69, 119, 255, 102, 63, 111, 255, 97, 60, 106, 255, 91, 57, 100, 255, 87, 55, 96, 255, 85, 53, 93, 255, 82, 51, 89, 255, 74, 46, 81, 255, 66, 40, 72, 255, 61, 37, 67, 255, 57, 35, 62, 255, 50, 31, 55, 255, 45, 27, 49, 255, 39, 24, 43, 255, 33, 20, 37, 255, 28, 16, 30, 255, 23, 14, 26, 255, 18, 10, 20, 255, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 12, 7, 13, 255, 17, 11, 19, 255, 23, 16, 25, 255, 29, 19, 32, 255, 35, 24, 38, 255, 42, 29, 46, 255, 49, 33, 53, 255, 52, 33, 56, 255, 56, 35, 61, 255, 61, 38, 66, 255, 65, 40, 71, 255, 71, 43, 78, 255, 76, 46, 83, 255, 81, 49, 89, 255, 84, 51, 93, 255, 89, 54, 98, 255, 96, 58, 105, 255, 104, 63, 113, 255, 110, 66, 120, 255, 107, 64, 117, 255, 108, 64, 118, 255, 112, 67, 122, 255, 115, 68, 126, 255, 122, 73, 137, 255, 127, 76, 141, 255, 130, 81, 140, 255, 126, 79, 136, 255, 122, 76, 132, 255, 116, 73, 126, 255, 108, 66, 116, 255, 101, 62, 110, 255, 95, 59, 104, 255, 90, 56, 98, 255, 85, 53, 93, 255, 82, 51, 90, 255, 77, 48, 84, 255, 70, 44, 77, 255, 65, 40, 71, 255, 60, 36, 65, 255, 55, 33, 60, 255, 48, 29, 53, 255, 42, 25, 46, 255, 37, 22, 41, 255, 32, 19, 35, 255, 27, 16, 29, 255, 21, 13, 24, 255, 16, 9, 17, 255, 10, 6, 11, 255, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 10, 6, 11, 255, 16, 10, 17, 255, 22, 15, 23, 255, 28, 19, 30, 255, 33, 23, 36, 255, 40, 27, 43, 255, 46, 30, 50, 255, 53, 35, 58, 255, 57, 36, 62, 255, 61, 38, 67, 255, 64, 40, 70, 255, 69, 42, 75, 255, 73, 44, 80, 255, 80, 49, 88, 255, 84, 51, 92, 255, 88, 53, 96, 255, 94, 57, 103, 255, 105, 64, 114, 255, 111, 68, 122, 255, 110, 66, 120, 255, 110, 65, 120, 255, 112, 67, 123, 255, 115, 69, 127, 255, 118, 70, 131, 255, 129, 78, 143, 255, 131, 79, 144, 255, 130, 80, 140, 255, 129, 80, 139, 255, 123, 77, 133, 255, 121, 75, 130, 255, 112, 68, 120, 255, 107, 65, 116, 255, 101, 62, 110, 255, 94, 58, 102, 255, 89, 55, 97, 255, 83, 52, 91, 255, 79, 49, 86, 255, 73, 45, 80, 255, 69, 42, 75, 255, 64, 39, 70, 255, 59, 35, 64, 255, 52, 32, 57, 255, 47, 28, 51, 255, 41, 24, 45, 255, 35, 21, 38, 255, 29, 17, 32, 255, 24, 14, 26, 255, 19, 11, 21, 255, 14, 8, 15, 255, 9, 5, 10, 255, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 8, 5, 9, 255, 14, 9, 15, 255, 20, 14, 22, 255, 26, 18, 28, 255, 32, 22, 35, 255, 38, 26, 41, 255, 44, 29, 47, 255, 50, 33, 54, 255, 58, 37, 62, 255, 62, 39, 67, 255, 65, 41, 71, 255, 67, 42, 74, 255, 72, 44, 79, 255, 77, 47, 84, 255, 81, 50, 89, 255, 88, 54, 96, 255, 93, 56, 102, 255, 103, 64, 113, 255, 113, 70, 123, 255, 113, 69, 123, 255, 111, 67, 122, 255, 113, 67, 123, 255, 116, 68, 126, 255, 118, 71, 131, 255, 124, 75, 137, 255, 136, 82, 148, 255, 137, 83, 149, 255, 133, 80, 142, 255, 132, 82, 142, 255, 123, 76, 134, 255, 121, 74, 130, 255, 116, 71, 125, 255, 110, 66, 119, 255, 108, 65, 118, 255, 99, 61, 109, 255, 93, 58, 102, 255, 88, 55, 96, 255, 81, 50, 89, 255, 77, 48, 84, 255, 72, 44, 79, 255, 68, 41, 74, 255, 63, 38, 69, 255, 55, 33, 61, 255, 50, 30, 55, 255, 45, 27, 49, 255, 40, 24, 44, 255, 33, 19, 36, 255, 26, 15, 28, 255, 21, 12, 23, 255, 17, 10, 19, 255, 12, 7, 13, 255, 8, 5, 9, 255, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 12, 7, 13, 255, 18, 12, 19, 255, 24, 16, 26, 255, 31, 21, 33, 255, 37, 26, 40, 255, 43, 30, 47, 255, 49, 32, 53, 255, 56, 35, 60, 255, 61, 39, 66, 255, 65, 41, 70, 255, 68, 42, 74, 255, 71, 44, 78, 255, 74, 46, 82, 255, 78, 48, 86, 255, 84, 52, 92, 255, 92, 56, 101, 255, 103, 63, 112, 255, 110, 68, 120, 255, 115, 71, 125, 255, 114, 69, 125, 255, 115, 69, 126, 255, 117, 69, 127, 255, 119, 71, 130, 255, 122, 73, 134, 255, 129, 78, 141, 255, 138, 83, 151, 255, 137, 82, 150, 255, 133, 81, 143, 255, 132, 80, 141, 255, 127, 77, 136, 255, 123, 75, 132, 255, 118, 72, 127, 255, 113, 69, 122, 255, 109, 66, 119, 255, 105, 63, 114, 255, 96, 58, 105, 255, 88, 54, 97, 255, 83, 52, 91, 255, 78, 49, 86, 255, 74, 45, 81, 255, 71, 43, 78, 255, 66, 39, 72, 255, 59, 36, 65, 255, 52, 32, 57, 255, 47, 28, 51, 255, 43, 26, 47, 255, 39, 23, 43, 255, 32, 18, 35, 255, 24, 14, 27, 255, 19, 11, 21, 255, 15, 9, 17, 255, 11, 7, 12, 255, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 15, 10, 17, 255, 22, 14, 24, 255, 28, 19, 30, 255, 35, 24, 38, 255, 41, 28, 45, 255, 48, 32, 51, 255, 54, 35, 58, 255, 58, 37, 63, 255, 62, 39, 68, 255, 66, 41, 72, 255, 69, 43, 75, 255, 72, 45, 79, 255, 76, 48, 84, 255, 80, 49, 88, 255, 92, 56, 100, 255, 103, 63, 112, 255, 109, 67, 118, 255, 114, 71, 125, 255, 118, 73, 128, 255, 118, 72, 129, 255, 120, 72, 131, 255, 119, 70, 129, 255, 121, 72, 132, 255, 127, 76, 138, 255, 134, 81, 143, 255, 143, 86, 155, 255, 142, 86, 155, 255, 133, 81, 146, 255, 132, 80, 142, 255, 128, 77, 137, 255, 123, 74, 132, 255, 122, 74, 131, 255, 117, 71, 126, 255, 111, 67, 121, 255, 109, 66, 120, 255, 102, 61, 111, 255, 88, 53, 97, 255, 84, 51, 93, 255, 78, 48, 86, 255, 76, 47, 84, 255, 73, 45, 80, 255, 70, 43, 76, 255, 63, 38, 69, 255, 56, 34, 61, 255, 50, 31, 55, 255, 45, 27, 49, 255, 40, 24, 44, 255, 36, 21, 40, 255, 30, 17, 33, 255, 23, 13, 25, 255, 18, 10, 19, 255, 14, 8, 15, 255, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 19, 12, 21, 255, 25, 16, 28, 255, 31, 21, 34, 255, 39, 26, 42, 255, 45, 31, 49, 255, 51, 34, 55, 255, 55, 35, 60, 255, 60, 37, 65, 255, 64, 40, 69, 255, 67, 42, 73, 255, 72, 45, 79, 255, 74, 46, 82, 255, 78, 48, 85, 255, 91, 55, 99, 255, 101, 62, 110, 255, 109, 67, 118, 255, 114, 71, 124, 255, 118, 73, 129, 255, 122, 75, 132, 255, 122, 74, 133, 255, 122, 73, 133, 255, 123, 73, 133, 255, 124, 75, 135, 255, 133, 81, 143, 255, 134, 82, 144, 255, 146, 90, 160, 255, 145, 90, 160, 255, 138, 84, 152, 255, 132, 81, 146, 255, 124, 76, 135, 255, 123, 74, 132, 255, 122, 73, 130, 255, 118, 71, 128, 255, 114, 69, 125, 255, 111, 67, 121, 255, 107, 65, 117, 255, 95, 57, 104, 255, 89, 53, 97, 255, 85, 51, 93, 255, 78, 48, 86, 255, 76, 47, 84, 255, 72, 44, 79, 255, 67, 41, 74, 255, 60, 37, 66, 255, 54, 33, 59, 255, 48, 29, 53, 255, 43, 26, 48, 255, 37, 22, 41, 255, 32, 19, 36, 255, 27, 16, 30, 255, 22, 13, 24, 255, 17, 10, 19, 255, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 23, 15, 25, 255, 29, 19, 32, 255, 35, 23, 38, 255, 42, 28, 46, 255, 48, 31, 52, 255, 52, 33, 57, 255, 57, 36, 62, 255, 61, 38, 67, 255, 65, 40, 71, 255, 71, 44, 78, 255, 75, 46, 82, 255, 76, 46, 84, 255, 87, 52, 94, 255, 97, 60, 106, 255, 106, 65, 115, 255, 113, 70, 123, 255, 118, 73, 129, 255, 122, 75, 133, 255, 123, 76, 134, 255, 124, 75, 135, 255, 127, 76, 137, 255, 125, 75, 135, 255, 131, 80, 141, 255, 133, 81, 143, 255, 133, 81, 144, 255, 142, 84, 155, 255, 140, 84, 154, 255, 140, 85, 154, 255, 140, 85, 154, 255, 125, 77, 138, 255, 122, 74, 133, 255, 121, 73, 131, 255, 120, 72, 130, 255, 117, 71, 129, 255, 112, 68, 124, 255, 109, 66, 120, 255, 102, 61, 111, 255, 94, 56, 103, 255, 92, 55, 100, 255, 88, 54, 96, 255, 82, 50, 90, 255, 75, 46, 82, 255, 71, 43, 78, 255, 65, 39, 71, 255, 59, 36, 65, 255, 53, 32, 58, 255, 47, 28, 52, 255, 41, 25, 46, 255, 35, 20, 39, 255, 29, 17, 33, 255, 25, 15, 28, 255, 21, 13, 23, 255, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 27, 18, 30, 255, 33, 22, 36, 255, 40, 26, 43, 255, 46, 30, 50, 255, 51, 33, 55, 255, 55, 35, 60, 255, 59, 37, 65, 255, 63, 39, 69, 255, 69, 43, 76, 255, 74, 46, 81, 255, 74, 45, 82, 255, 82, 49, 90, 255, 93, 56, 101, 255, 103, 63, 111, 255, 110, 68, 120, 255, 117, 72, 127, 255, 120, 74, 131, 255, 121, 73, 131, 255, 124, 76, 135, 255, 129, 79, 139, 255, 131, 80, 139, 255, 130, 80, 140, 255, 133, 81, 143, 255, 133, 80, 144, 255, 135, 83, 146, 255, 143, 90, 156, 255, 143, 89, 157, 255, 138, 84, 151, 255, 139, 85, 153, 255, 133, 81, 146, 255, 121, 75, 134, 255, 122, 75, 134, 255, 120, 73, 131, 255, 120, 72, 131, 255, 119, 72, 130, 255, 112, 68, 123, 255, 107, 65, 117, 255, 97, 58, 107, 255, 97, 59, 106, 255, 94, 57, 102, 255, 91, 56, 99, 255, 84, 51, 91, 255, 74, 45, 81, 255, 68, 41, 75, 255, 63, 38, 70, 255, 57, 35, 63, 255, 51, 31, 56, 255, 46, 28, 51, 255, 39, 23, 43, 255, 33, 19, 36, 255, 28, 17, 31, 255, 25, 15, 27, 255, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 31, 20, 34, 255, 38, 25, 41, 255, 44, 29, 48, 255, 50, 33, 54, 255, 55, 35, 60, 255, 59, 37, 64, 255, 62, 39, 68, 255, 67, 42, 74, 255, 73, 45, 80, 255, 75, 45, 83, 255, 78, 47, 86, 255, 88, 53, 96, 255, 97, 59, 105, 255, 105, 64, 114, 255, 112, 69, 123, 255, 118, 72, 128, 255, 117, 71, 127, 255, 121, 74, 131, 255, 130, 81, 140, 255, 133, 82, 142, 255, 134, 82, 142, 255, 135, 82, 144, 255, 134, 82, 144, 255, 133, 82, 144, 255, 134, 83, 146, 255, 145, 91, 159, 255, 144, 90, 158, 255, 133, 82, 147, 255, 137, 84, 150, 255, 134, 81, 147, 255, 125, 77, 138, 255, 121, 75, 134, 255, 122, 75, 133, 255, 119, 74, 130, 255, 122, 74, 133, 255, 117, 70, 128, 255, 112, 68, 122, 255, 100, 60, 110, 255, 95, 57, 105, 255, 99, 60, 107, 255, 96, 59, 104, 255, 91, 56, 99, 255, 84, 52, 91, 255, 75, 46, 82, 255, 68, 41, 74, 255, 62, 37, 68, 255, 55, 33, 60, 255, 48, 29, 53, 255, 43, 26, 48, 255, 36, 21, 39, 255, 31, 18, 34, 255, 28, 17, 31, 255, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 36, 23, 39, 255, 42, 28, 46, 255, 48, 32, 52, 255, 54, 36, 59, 255, 58, 37, 64, 255, 61, 38, 66, 255, 66, 41, 72, 255, 73, 45, 80, 255, 78, 47, 85, 255, 81, 48, 89, 255, 83, 50, 91, 255, 90, 54, 98, 255, 96, 58, 106, 255, 106, 65, 116, 255, 112, 68, 122, 255, 117, 71, 128, 255, 119, 73, 129, 255, 125, 79, 136, 255, 131, 83, 143, 255, 136, 84, 145, 255, 137, 83, 145, 255, 134, 82, 144, 255, 133, 82, 144, 255, 138, 85, 149, 255, 138, 85, 150, 255, 136, 87, 151, 255, 132, 84, 147, 255, 138, 85, 152, 255, 137, 84, 150, 255, 134, 82, 147, 255, 130, 80, 143, 255, 123, 76, 136, 255, 123, 76, 135, 255, 123, 77, 134, 255, 118, 74, 129, 255, 119, 73, 130, 255, 114, 69, 125, 255, 107, 65, 117, 255, 95, 57, 106, 255, 100, 61, 109, 255, 100, 61, 109, 255, 96, 60, 105, 255, 90, 55, 98, 255, 83, 51, 90, 255, 76, 47, 82, 255, 68, 41, 74, 255, 60, 36, 66, 255, 53, 32, 58, 255, 44, 26, 49, 255, 38, 22, 43, 255, 34, 20, 37, 255, 31, 19, 34, 255, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 40, 26, 43, 255, 46, 30, 50, 255, 52, 34, 57, 255, 57, 37, 62, 255, 59, 37, 65, 255, 64, 40, 70, 255, 72, 44, 79, 255, 78, 47, 85, 255, 84, 51, 91, 255, 87, 52, 95, 255, 89, 53, 97, 255, 88, 53, 97, 255, 99, 60, 109, 255, 107, 64, 117, 255, 114, 70, 125, 255, 118, 74, 129, 255, 121, 76, 132, 255, 128, 81, 139, 255, 136, 86, 147, 255, 136, 84, 146, 255, 135, 83, 144, 255, 133, 82, 144, 255, 139, 86, 150, 255, 143, 87, 153, 255, 153, 98, 169, 255, 219, 159, 236, 255, 229, 167, 245, 255, 176, 115, 191, 255, 138, 85, 152, 255, 136, 83, 150, 255, 134, 82, 148, 255, 132, 80, 145, 255, 125, 78, 137, 255, 125, 78, 136, 255, 123, 77, 134, 255, 118, 74, 128, 255, 117, 72, 128, 255, 110, 67, 120, 255, 105, 63, 115, 255, 101, 61, 111, 255, 102, 63, 112, 255, 100, 62, 109, 255, 95, 59, 103, 255, 88, 54, 95, 255, 82, 51, 89, 255, 75, 46, 82, 255, 66, 40, 72, 255, 59, 36, 64, 255, 50, 30, 55, 255, 42, 24, 46, 255, 37, 22, 41, 255, 34, 20, 37, 255, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 43, 27, 47, 255, 49, 32, 54, 255, 56, 37, 61, 255, 59, 38, 65, 255, 64, 40, 69, 255, 70, 42, 75, 255, 75, 45, 82, 255, 81, 49, 89, 255, 87, 53, 96, 255, 91, 55, 99, 255, 94, 57, 103, 255, 96, 58, 105, 255, 105, 64, 115, 255, 110, 68, 120, 255, 114, 72, 124, 255, 119, 76, 130, 255, 125, 79, 136, 255, 130, 82, 142, 255, 134, 85, 146, 255, 134, 84, 145, 255, 135, 83, 145, 255, 139, 85, 149, 255, 141, 86, 156, 255, 175, 117, 191, 255, 162, 105, 178, 255, 166, 106, 182, 255, 168, 108, 184, 255, 178, 117, 193, 255, 198, 136, 214, 255, 150, 92, 161, 255, 137, 83, 150, 255, 138, 84, 150, 255, 133, 81, 145, 255, 126, 78, 137, 255, 125, 79, 136, 255, 123, 77, 133, 255, 119, 74, 130, 255, 113, 70, 123, 255, 109, 67, 119, 255, 105, 64, 115, 255, 103, 62, 112, 255, 103, 63, 112, 255, 99, 61, 108, 255, 92, 57, 101, 255, 85, 53, 93, 255, 79, 48, 86, 255, 72, 44, 79, 255, 64, 38, 69, 255, 56, 34, 62, 255, 47, 27, 51, 255, 40, 23, 45, 255, 38, 23, 41, 255, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 46, 29, 50, 255, 54, 35, 59, 255, 60, 39, 65, 255, 64, 40, 70, 255, 69, 43, 74, 255, 73, 44, 79, 255, 77, 46, 84, 255, 84, 50, 92, 255, 88, 53, 97, 255, 95, 57, 104, 255, 99, 60, 109, 255, 103, 63, 112, 255, 106, 66, 116, 255, 109, 69, 119, 255, 117, 74, 127, 255, 128, 82, 138, 255, 126, 79, 138, 255, 130, 83, 142, 255, 134, 85, 147, 255, 136, 84, 147, 255, 139, 85, 149, 255, 152, 93, 167, 255, 185, 122, 201, 255, 160, 98, 175, 255, 157, 98, 173, 255, 157, 98, 173, 255, 157, 98, 173, 255, 152, 94, 168, 255, 156, 96, 171, 255, 189, 124, 200, 255, 156, 95, 167, 255, 139, 84, 152, 255, 136, 83, 149, 255, 131, 81, 142, 255, 126, 78, 136, 255, 122, 76, 133, 255, 115, 71, 125, 255, 113, 70, 123, 255, 110, 68, 119, 255, 107, 66, 117, 255, 105, 64, 114, 255, 102, 63, 112, 255, 101, 62, 110, 255, 96, 59, 105, 255, 89, 55, 97, 255, 81, 50, 88, 255, 74, 45, 80, 255, 66, 40, 72, 255, 59, 35, 64, 255, 51, 30, 56, 255, 44, 26, 49, 255, 40, 24, 44, 255, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 50, 32, 55, 255, 58, 37, 63, 255, 64, 41, 69, 255, 69, 43, 74, 255, 73, 45, 79, 255, 77, 47, 83, 255, 81, 49, 89, 255, 87, 52, 95, 255, 93, 56, 102, 255, 98, 60, 108, 255, 100, 61, 109, 255, 104, 64, 113, 255, 109, 68, 118, 255, 112, 71, 122, 255, 122, 78, 133, 255, 127, 81, 138, 255, 128, 81, 140, 255, 133, 84, 146, 255, 132, 84, 145, 255, 143, 88, 157, 255, 172, 106, 187, 255, 172, 107, 187, 255, 165, 100, 180, 255, 164, 99, 179, 255, 159, 96, 174, 255, 158, 98, 173, 255, 152, 94, 167, 255, 141, 84, 156, 255, 143, 85, 157, 255, 152, 91, 164, 255, 167, 103, 177, 255, 170, 105, 179, 255, 143, 89, 153, 255, 134, 84, 147, 255, 128, 79, 139, 255, 121, 73, 130, 255, 116, 71, 125, 255, 111, 68, 120, 255, 111, 68, 120, 255, 108, 68, 118, 255, 104, 66, 114, 255, 104, 64, 114, 255, 100, 61, 109, 255, 97, 59, 105, 255, 93, 57, 101, 255, 85, 52, 92, 255, 75, 46, 82, 255, 68, 41, 75, 255, 61, 36, 67, 255, 54, 32, 59, 255, 48, 28, 53, 255, 43, 25, 47, 255, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 55, 34, 59, 255, 62, 39, 67, 255, 67, 42, 72, 255, 72, 45, 77, 255, 75, 46, 81, 255, 80, 49, 86, 255, 85, 51, 92, 255, 91, 55, 100, 255, 98, 59, 108, 255, 101, 62, 110, 255, 105, 65, 114, 255, 106, 65, 115, 255, 109, 68, 119, 255, 113, 71, 124, 255, 122, 78, 133, 255, 128, 82, 139, 255, 134, 85, 146, 255, 132, 84, 145, 255, 152, 94, 167, 255, 175, 109, 191, 255, 163, 98, 178, 255, 161, 97, 176, 255, 163, 98, 178, 255, 160, 97, 176, 255, 161, 97, 176, 255, 152, 91, 167, 255, 138, 81, 154, 255, 142, 83, 155, 255, 148, 88, 160, 255, 155, 93, 166, 255, 152, 91, 164, 255, 157, 94, 168, 255, 161, 103, 176, 255, 150, 95, 163, 255, 132, 83, 144, 255, 123, 75, 133, 255, 115, 69, 123, 255, 114, 69, 123, 255, 110, 68, 119, 255, 109, 69, 119, 255, 107, 68, 117, 255, 105, 66, 114, 255, 101, 63, 110, 255, 95, 58, 103, 255, 94, 57, 102, 255, 88, 54, 96, 255, 80, 48, 87, 255, 72, 43, 78, 255, 65, 39, 71, 255, 58, 34, 63, 255, 52, 31, 57, 255, 47, 28, 51, 255, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 58, 36, 63, 255, 65, 41, 70, 255, 70, 43, 75, 255, 73, 45, 79, 255, 78, 48, 84, 255, 83, 50, 89, 255, 86, 52, 94, 255, 94, 57, 103, 255, 97, 60, 106, 255, 102, 64, 111, 255, 103, 64, 112, 255, 104, 64, 112, 255, 110, 68, 119, 255, 115, 73, 125, 255, 125, 80, 137, 255, 135, 87, 147, 255, 137, 87, 150, 255, 160, 98, 176, 255, 168, 103, 184, 255, 159, 96, 175, 255, 154, 91, 170, 255, 158, 94, 173, 255, 164, 98, 179, 255, 164, 99, 180, 255, 149, 88, 165, 255, 138, 80, 154, 255, 143, 84, 159, 255, 150, 89, 165, 255, 152, 91, 164, 255, 146, 86, 158, 255, 142, 85, 156, 255, 141, 86, 156, 255, 147, 91, 162, 255, 159, 101, 174, 255, 148, 93, 162, 255, 128, 79, 138, 255, 118, 71, 126, 255, 114, 68, 122, 255, 114, 69, 123, 255, 110, 69, 120, 255, 111, 71, 121, 255, 110, 70, 119, 255, 103, 65, 112, 255, 99, 62, 107, 255, 95, 58, 103, 255, 90, 55, 98, 255, 83, 50, 91, 255, 76, 45, 82, 255, 68, 40, 75, 255, 63, 38, 69, 255, 56, 33, 61, 255, 52, 31, 57, 255, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 63, 40, 69, 255, 68, 43, 74, 255, 72, 45, 78, 255, 76, 46, 81, 255, 80, 48, 86, 255, 84, 50, 90, 255, 88, 54, 96, 255, 92, 58, 101, 255, 99, 62, 107, 255, 103, 64, 112, 255, 103, 63, 111, 255, 107, 65, 115, 255, 113, 69, 122, 255, 119, 76, 129, 255, 132, 85, 144, 255, 151, 97, 166, 255, 170, 107, 187, 255, 163, 100, 179, 255, 160, 97, 175, 255, 151, 89, 166, 255, 147, 86, 162, 255, 157, 95, 172, 255, 162, 97, 177, 255, 162, 97, 177, 255, 145, 85, 160, 255, 140, 81, 156, 255, 151, 89, 166, 255, 156, 93, 172, 255, 153, 91, 169, 255, 138, 82, 152, 255, 133, 81, 148, 255, 137, 84, 152, 255, 140, 86, 154, 255, 138, 85, 152, 255, 139, 87, 154, 255, 149, 93, 160, 255, 136, 84, 145, 255, 116, 70, 124, 255, 114, 69, 123, 255, 112, 71, 122, 255, 112, 71, 122, 255, 114, 73, 124, 255, 109, 69, 118, 255, 101, 64, 110, 255, 100, 63, 108, 255, 94, 58, 102, 255, 86, 52, 94, 255, 79, 47, 86, 255, 72, 43, 79, 255, 66, 39, 72, 255, 60, 36, 66, 255, 55, 32, 59, 255, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 65, 41, 70, 255, 71, 44, 76, 255, 76, 47, 82, 255, 78, 47, 83, 255, 81, 48, 87, 255, 85, 52, 93, 255, 90, 56, 98, 255, 97, 61, 106, 255, 103, 65, 113, 255, 103, 64, 112, 255, 105, 63, 112, 255, 109, 66, 117, 255, 114, 70, 123, 255, 125, 79, 135, 255, 155, 99, 170, 255, 164, 104, 181, 255, 155, 96, 173, 255, 152, 91, 168, 255, 144, 85, 159, 255, 148, 88, 163, 255, 157, 95, 172, 255, 159, 96, 174, 255, 158, 95, 173, 255, 150, 87, 165, 255, 146, 85, 161, 255, 149, 88, 164, 255, 159, 95, 174, 255, 155, 92, 170, 255, 139, 81, 154, 255, 139, 81, 154, 255, 142, 84, 156, 255, 135, 82, 149, 255, 132, 80, 146, 255, 127, 77, 142, 255, 133, 80, 145, 255, 142, 86, 152, 255, 143, 87, 153, 255, 133, 80, 145, 255, 114, 68, 122, 255, 115, 72, 125, 255, 115, 73, 125, 255, 114, 73, 125, 255, 110, 70, 120, 255, 105, 67, 114, 255, 102, 65, 111, 255, 99, 62, 106, 255, 91, 55, 98, 255, 83, 49, 90, 255, 74, 44, 81, 255, 69, 41, 76, 255, 64, 38, 70, 255, 58, 35, 64, 255, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 67, 40, 71, 255, 73, 45, 79, 255, 78, 47, 83, 255, 79, 48, 85, 255, 83, 50, 90, 255, 87, 54, 96, 255, 93, 58, 101, 255, 99, 62, 108, 255, 103, 64, 112, 255, 103, 62, 110, 255, 104, 62, 111, 255, 110, 66, 117, 255, 117, 73, 130, 255, 157, 100, 173, 255, 157, 99, 174, 255, 150, 91, 167, 255, 148, 89, 166, 255, 142, 84, 162, 255, 152, 93, 169, 255, 161, 99, 176, 255, 160, 98, 175, 255, 158, 95, 172, 255, 152, 89, 166, 255, 149, 87, 163, 255, 154, 91, 168, 255, 157, 94, 172, 255, 152, 90, 166, 255, 138, 80, 152, 255, 141, 83, 155, 255, 144, 85, 159, 255, 139, 81, 153, 255, 137, 80, 151, 255, 129, 77, 143, 255, 128, 75, 142, 255, 132, 77, 145, 255, 132, 77, 145, 255, 135, 80, 146, 255, 135, 80, 146, 255, 134, 79, 145, 255, 132, 84, 144, 255, 120, 77, 131, 255, 119, 76, 129, 255, 111, 71, 121, 255, 106, 67, 116, 255, 106, 67, 114, 255, 102, 64, 109, 255, 96, 58, 101, 255, 86, 52, 92, 255, 78, 46, 85, 255, 72, 43, 79, 255, 67, 40, 74, 255, 61, 37, 68, 255, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 70, 42, 75, 255, 75, 45, 80, 255, 78, 47, 84, 255, 77, 47, 85, 255, 83, 51, 91, 255, 87, 54, 96, 255, 94, 59, 103, 255, 101, 62, 109, 255, 104, 63, 111, 255, 105, 64, 113, 255, 107, 64, 114, 255, 116, 70, 129, 255, 134, 83, 148, 255, 148, 94, 163, 255, 155, 98, 171, 255, 161, 103, 175, 255, 162, 104, 177, 255, 157, 99, 173, 255, 157, 98, 172, 255, 154, 95, 170, 255, 151, 91, 166, 255, 148, 86, 162, 255, 144, 83, 158, 255, 150, 89, 164, 255, 155, 94, 170, 255, 152, 91, 166, 255, 146, 86, 160, 255, 143, 84, 157, 255, 143, 84, 157, 255, 144, 85, 158, 255, 151, 90, 165, 255, 144, 86, 159, 255, 130, 75, 144, 255, 127, 73, 142, 255, 128, 74, 142, 255, 130, 76, 142, 255, 131, 77, 143, 255, 130, 76, 142, 255, 132, 79, 143, 255, 147, 93, 160, 255, 142, 91, 155, 255, 126, 81, 137, 255, 117, 75, 128, 255, 110, 70, 120, 255, 105, 67, 115, 255, 103, 65, 111, 255, 98, 60, 104, 255, 90, 55, 96, 255, 80, 49, 87, 255, 76, 46, 83, 255, 72, 43, 78, 255, 67, 40, 73, 255, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 73, 44, 78, 255, 77, 47, 84, 255, 79, 49, 88, 255, 82, 50, 90, 255, 85, 52, 94, 255, 92, 57, 101, 255, 99, 61, 108, 255, 105, 65, 114, 255, 108, 67, 117, 255, 110, 67, 121, 255, 124, 76, 137, 255, 127, 78, 141, 255, 136, 87, 150, 255, 141, 91, 155, 255, 145, 94, 159, 255, 153, 98, 167, 255, 156, 99, 171, 255, 154, 97, 169, 255, 152, 94, 168, 255, 147, 90, 165, 255, 144, 89, 163, 255, 143, 86, 160, 255, 150, 89, 164, 255, 151, 91, 165, 255, 148, 89, 161, 255, 141, 83, 155, 255, 138, 80, 152, 255, 140, 82, 154, 255, 144, 85, 158, 255, 151, 91, 165, 255, 142, 84, 156, 255, 136, 81, 150, 255, 134, 79, 149, 255, 135, 80, 149, 255, 139, 84, 152, 255, 133, 80, 144, 255, 130, 77, 140, 255, 125, 72, 133, 255, 127, 75, 136, 255, 135, 82, 145, 255, 139, 87, 150, 255, 138, 87, 149, 255, 118, 73, 130, 255, 112, 71, 122, 255, 108, 68, 118, 255, 103, 65, 112, 255, 99, 61, 106, 255, 94, 57, 100, 255, 86, 53, 92, 255, 81, 50, 87, 255, 76, 46, 82, 255, 71, 43, 77, 255, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 74, 45, 81, 255, 81, 49, 89, 255, 86, 52, 95, 255, 86, 53, 94, 255, 91, 55, 100, 255, 100, 61, 109, 255, 104, 64, 113, 255, 108, 68, 118, 255, 127, 79, 139, 255, 138, 84, 151, 255, 134, 85, 148, 255, 140, 91, 154, 255, 133, 83, 146, 255, 125, 76, 139, 255, 126, 76, 139, 255, 134, 81, 148, 255, 141, 84, 156, 255, 142, 87, 159, 255, 145, 89, 162, 255, 150, 92, 165, 255, 147, 90, 163, 255, 149, 92, 165, 255, 147, 87, 161, 255, 146, 87, 160, 255, 138, 81, 152, 255, 139, 82, 154, 255, 145, 87, 159, 255, 140, 82, 153, 255, 142, 84, 155, 255, 139, 83, 153, 255, 137, 82, 151, 255, 141, 86, 155, 255, 140, 85, 154, 255, 143, 87, 157, 255, 144, 89, 158, 255, 138, 84, 152, 255, 132, 79, 143, 255, 129, 77, 138, 255, 129, 77, 138, 255, 126, 74, 135, 255, 124, 73, 133, 255, 131, 80, 143, 255, 130, 78, 147, 255, 120, 73, 133, 255, 107, 68, 117, 255, 104, 65, 113, 255, 99, 61, 106, 255, 94, 58, 101, 255, 89, 54, 96, 255, 83, 51, 90, 255, 79, 48, 85, 255, 74, 45, 80, 255, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 78, 47, 85, 255, 85, 51, 93, 255, 86, 53, 95, 255, 89, 54, 98, 255, 96, 58, 105, 255, 102, 62, 112, 255, 107, 67, 117, 255, 133, 83, 145, 255, 142, 89, 155, 255, 137, 85, 150, 255, 137, 84, 149, 255, 137, 88, 150, 255, 135, 87, 149, 255, 130, 81, 143, 255, 130, 77, 143, 255, 132, 75, 145, 255, 135, 78, 148, 255, 140, 84, 154, 255, 145, 90, 160, 255, 146, 90, 161, 255, 145, 88, 160, 255, 145, 86, 159, 255, 147, 87, 160, 255, 143, 83, 156, 255, 144, 85, 157, 255, 141, 84, 155, 255, 134, 79, 148, 255, 138, 82, 151, 255, 139, 83, 153, 255, 143, 86, 156, 255, 142, 85, 156, 255, 138, 83, 151, 255, 142, 88, 156, 255, 146, 91, 160, 255, 146, 90, 159, 255, 138, 84, 152, 255, 128, 77, 142, 255, 128, 77, 140, 255, 128, 77, 138, 255, 128, 78, 139, 255, 126, 75, 138, 255, 124, 74, 141, 255, 125, 75, 142, 255, 132, 80, 146, 255, 127, 77, 139, 255, 103, 65, 113, 255, 102, 63, 109, 255, 94, 58, 102, 255, 89, 55, 96, 255, 85, 51, 92, 255, 80, 48, 86, 255, 76, 47, 82, 255, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 80, 49, 88, 255, 85, 52, 93, 255, 87, 53, 95, 255, 91, 55, 100, 255, 98, 60, 107, 255, 116, 74, 128, 255, 136, 86, 149, 255, 136, 85, 149, 255, 135, 85, 148, 255, 138, 88, 151, 255, 143, 93, 155, 255, 144, 94, 157, 255, 143, 93, 156, 255, 136, 84, 149, 255, 132, 77, 144, 255, 133, 78, 145, 255, 136, 81, 148, 255, 140, 86, 153, 255, 142, 88, 156, 255, 139, 83, 153, 255, 139, 81, 151, 255, 142, 84, 155, 255, 147, 88, 160, 255, 149, 89, 162, 255, 140, 82, 153, 255, 133, 77, 146, 255, 137, 82, 150, 255, 138, 83, 151, 255, 140, 84, 153, 255, 137, 82, 151, 255, 136, 81, 149, 255, 141, 84, 154, 255, 145, 90, 159, 255, 148, 91, 162, 255, 141, 86, 154, 255, 132, 80, 145, 255, 131, 79, 144, 255, 130, 78, 143, 255, 129, 78, 142, 255, 128, 77, 141, 255, 125, 75, 141, 255, 124, 74, 140, 255, 126, 76, 140, 255, 129, 78, 141, 255, 130, 79, 142, 255, 126, 75, 139, 255, 108, 65, 120, 255, 99, 61, 106, 255, 92, 57, 99, 255, 86, 53, 93, 255, 81, 50, 88, 255, 77, 47, 83, 255, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 81, 49, 88, 255, 83, 51, 92, 255, 90, 55, 98, 255, 94, 57, 103, 255, 119, 76, 133, 255, 136, 88, 149, 255, 134, 87, 147, 255, 134, 86, 147, 255, 136, 88, 148, 255, 139, 90, 151, 255, 145, 98, 157, 255, 150, 103, 162, 255, 149, 102, 162, 255, 144, 94, 156, 255, 135, 82, 147, 255, 136, 84, 149, 255, 137, 85, 150, 255, 140, 87, 153, 255, 141, 87, 154, 255, 135, 82, 148, 255, 136, 81, 149, 255, 140, 83, 153, 255, 141, 84, 154, 255, 137, 80, 150, 255, 137, 82, 150, 255, 141, 87, 154, 255, 135, 84, 148, 255, 131, 79, 144, 255, 132, 79, 145, 255, 133, 79, 146, 255, 135, 81, 148, 255, 142, 88, 155, 255, 145, 92, 158, 255, 142, 89, 155, 255, 138, 85, 151, 255, 133, 81, 146, 255, 128, 77, 141, 255, 128, 77, 140, 255, 128, 75, 137, 255, 129, 75, 138, 255, 127, 76, 139, 255, 122, 73, 137, 255, 125, 75, 138, 255, 126, 76, 138, 255, 126, 77, 138, 255, 125, 75, 136, 255, 127, 77, 139, 255, 118, 73, 129, 255, 97, 60, 104, 255, 91, 56, 98, 255, 84, 52, 91, 255, 80, 49, 86, 255, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 80, 49, 88, 255, 87, 54, 96, 255, 95, 59, 103, 255, 120, 77, 135, 255, 127, 82, 144, 255, 129, 84, 143, 255, 134, 88, 144, 255, 135, 89, 146, 255, 136, 90, 148, 255, 140, 93, 152, 255, 143, 96, 154, 255, 146, 101, 158, 255, 145, 99, 157, 255, 144, 96, 156, 255, 141, 91, 154, 255, 138, 88, 151, 255, 138, 86, 150, 255, 141, 87, 153, 255, 137, 84, 150, 255, 132, 80, 145, 255, 135, 83, 148, 255, 132, 80, 144, 255, 127, 74, 139, 255, 134, 81, 146, 255, 134, 83, 147, 255, 125, 77, 138, 255, 128, 79, 141, 255, 135, 84, 148, 255, 127, 77, 139, 255, 132, 80, 145, 255, 138, 86, 150, 255, 139, 87, 152, 255, 139, 87, 152, 255, 139, 87, 151, 255, 136, 85, 149, 255, 131, 80, 143, 255, 128, 77, 140, 255, 130, 77, 141, 255, 130, 77, 141, 255, 126, 74, 135, 255, 121, 69, 128, 255, 121, 70, 130, 255, 120, 72, 133, 255, 122, 73, 134, 255, 124, 76, 135, 255, 123, 75, 134, 255, 122, 75, 133, 255, 124, 76, 135, 255, 110, 63, 121, 255, 99, 62, 108, 255, 88, 54, 95, 255, 80, 49, 87, 255, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 82, 51, 90, 255, 101, 63, 108, 255, 120, 75, 127, 255, 121, 77, 132, 255, 122, 79, 138, 255, 126, 82, 140, 255, 129, 85, 141, 255, 130, 85, 142, 255, 132, 88, 144, 255, 133, 86, 145, 255, 135, 88, 146, 255, 136, 89, 148, 255, 139, 92, 150, 255, 139, 92, 151, 255, 143, 98, 156, 255, 141, 92, 153, 255, 140, 89, 152, 255, 138, 86, 151, 255, 136, 84, 148, 255, 133, 82, 145, 255, 127, 77, 140, 255, 124, 75, 136, 255, 127, 80, 139, 255, 125, 78, 137, 255, 118, 72, 130, 255, 127, 79, 140, 255, 127, 79, 140, 255, 118, 72, 130, 255, 127, 78, 138, 255, 136, 84, 147, 255, 137, 85, 149, 255, 136, 85, 148, 255, 136, 85, 148, 255, 136, 85, 148, 255, 135, 84, 146, 255, 134, 82, 144, 255, 132, 80, 142, 255, 130, 78, 142, 255, 127, 76, 138, 255, 125, 74, 134, 255, 123, 73, 133, 255, 119, 71, 129, 255, 111, 66, 122, 255, 120, 73, 131, 255, 122, 76, 133, 255, 118, 70, 128, 255, 116, 69, 127, 255, 114, 67, 125, 255, 113, 69, 124, 255, 111, 70, 122, 255, 95, 60, 105, 255, 82, 51, 90, 255, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 102, 62, 108, 255, 116, 73, 124, 255, 116, 73, 124, 255, 119, 76, 127, 255, 123, 80, 133, 255, 127, 83, 136, 255, 130, 86, 138, 255, 130, 88, 141, 255, 133, 92, 143, 255, 134, 93, 145, 255, 134, 92, 145, 255, 134, 91, 145, 255, 135, 89, 146, 255, 134, 87, 146, 255, 136, 88, 147, 255, 139, 90, 150, 255, 138, 89, 149, 255, 136, 88, 148, 255, 133, 84, 145, 255, 129, 79, 141, 255, 123, 76, 134, 255, 121, 76, 131, 255, 117, 72, 126, 255, 119, 74, 130, 255, 122, 77, 134, 255, 112, 69, 123, 255, 112, 68, 123, 255, 127, 78, 138, 255, 133, 82, 144, 255, 136, 84, 148, 255, 136, 84, 148, 255, 134, 84, 146, 255, 134, 84, 145, 255, 133, 83, 145, 255, 131, 80, 142, 255, 132, 81, 143, 255, 130, 80, 141, 255, 125, 75, 134, 255, 124, 74, 134, 255, 125, 75, 136, 255, 122, 74, 132, 255, 117, 71, 127, 255, 117, 72, 127, 255, 118, 73, 129, 255, 116, 71, 126, 255, 114, 68, 125, 255, 111, 66, 121, 255, 108, 67, 118, 255, 106, 67, 116, 255, 101, 63, 111, 255, 109, 69, 120, 255, 90, 57, 100, 255, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 111, 69, 118, 255, 113, 71, 120, 255, 117, 75, 126, 255, 121, 79, 130, 255, 126, 83, 136, 255, 126, 85, 137, 255, 127, 87, 138, 255, 129, 90, 140, 255, 130, 91, 141, 255, 131, 92, 142, 255, 132, 92, 143, 255, 135, 91, 144, 255, 135, 89, 145, 255, 133, 87, 144, 255, 131, 85, 143, 255, 130, 83, 141, 255, 127, 80, 138, 255, 125, 78, 136, 255, 122, 76, 133, 255, 118, 74, 129, 255, 116, 72, 126, 255, 118, 74, 129, 255, 117, 73, 127, 255, 108, 66, 115, 255, 111, 67, 118, 255, 120, 73, 128, 255, 124, 76, 133, 255, 128, 78, 138, 255, 130, 80, 141, 255, 132, 82, 144, 255, 132, 81, 143, 255, 131, 81, 143, 255, 131, 81, 143, 255, 130, 80, 141, 255, 126, 77, 136, 255, 124, 75, 133, 255, 122, 74, 131, 255, 124, 76, 133, 255, 124, 77, 133, 255, 121, 75, 131, 255, 117, 72, 127, 255, 115, 71, 124, 255, 114, 70, 123, 255, 112, 69, 122, 255, 108, 68, 118, 255, 104, 66, 114, 255, 103, 65, 113, 255, 104, 66, 114, 255, 106, 67, 116, 255, 97, 61, 107, 255, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 64, 40, 70, 255, 110, 69, 117, 255, 113, 73, 123, 255, 120, 79, 130, 255, 121, 80, 131, 255, 122, 81, 132, 255, 124, 86, 134, 255, 126, 86, 136, 255, 127, 86, 136, 255, 131, 89, 138, 255, 133, 89, 139, 255, 130, 85, 137, 255, 126, 81, 136, 255, 123, 78, 134, 255, 121, 76, 132, 255, 120, 75, 131, 255, 118, 73, 127, 255, 115, 71, 123, 255, 115, 71, 124, 255, 116, 73, 127, 255, 114, 71, 124, 255, 107, 65, 116, 255, 105, 63, 115, 255, 111, 66, 120, 255, 119, 72, 126, 255, 121, 73, 128, 255, 121, 74, 129, 255, 123, 76, 132, 255, 124, 76, 135, 255, 126, 78, 137, 255, 126, 78, 137, 255, 126, 78, 137, 255, 122, 74, 132, 255, 117, 70, 125, 255, 115, 68, 121, 255, 118, 72, 125, 255, 121, 75, 129, 255, 118, 73, 126, 255, 118, 73, 126, 255, 114, 71, 123, 255, 112, 69, 121, 255, 110, 68, 119, 255, 105, 66, 115, 255, 101, 64, 111, 255, 100, 64, 110, 255, 103, 65, 113, 255, 105, 65, 114, 255, 61, 36, 67, 255, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 106, 67, 115, 255, 111, 72, 121, 255, 112, 72, 121, 255, 113, 73, 123, 255, 115, 75, 125, 255, 118, 78, 127, 255, 123, 81, 130, 255, 123, 81, 131, 255, 123, 80, 131, 255, 117, 74, 127, 255, 117, 73, 127, 255, 115, 72, 126, 255, 112, 70, 121, 255, 112, 70, 121, 255, 108, 67, 115, 255, 111, 68, 118, 255, 113, 70, 122, 255, 114, 70, 122, 255, 110, 67, 119, 255, 100, 60, 111, 255, 101, 61, 112, 255, 106, 63, 115, 255, 110, 66, 118, 255, 114, 68, 121, 255, 117, 71, 124, 255, 116, 71, 125, 255, 117, 72, 128, 255, 117, 72, 128, 255, 115, 70, 126, 255, 114, 68, 124, 255, 116, 71, 127, 255, 114, 70, 123, 255, 114, 70, 121, 255, 112, 69, 120, 255, 110, 68, 119, 255, 114, 71, 122, 255, 117, 73, 123, 255, 113, 70, 120, 255, 107, 67, 116, 255, 101, 64, 111, 255, 100, 63, 110, 255, 97, 62, 107, 255, 99, 63, 109, 255, 101, 63, 110, 255, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 99, 62, 108, 255, 108, 69, 117, 255, 111, 73, 121, 255, 111, 73, 119, 255, 110, 72, 117, 255, 110, 71, 118, 255, 112, 72, 122, 255, 113, 72, 122, 255, 114, 72, 123, 255, 112, 71, 122, 255, 107, 70, 117, 255, 107, 70, 117, 255, 110, 70, 120, 255, 108, 67, 116, 255, 108, 67, 116, 255, 106, 65, 113, 255, 108, 66, 116, 255, 109, 66, 119, 255, 108, 65, 118, 255, 105, 63, 114, 255, 102, 61, 111, 255, 96, 58, 107, 255, 99, 60, 109, 255, 96, 58, 106, 255, 102, 63, 113, 255, 107, 65, 117, 255, 106, 63, 116, 255, 106, 63, 116, 255, 111, 68, 121, 255, 111, 69, 120, 255, 110, 70, 117, 255, 106, 67, 114, 255, 105, 65, 114, 255, 109, 68, 117, 255, 109, 68, 117, 255, 107, 66, 115, 255, 105, 66, 114, 255, 103, 65, 113, 255, 104, 65, 114, 255, 100, 63, 110, 255, 98, 62, 107, 255, 97, 61, 106, 255, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 0, 0, 0, 255, 102, 65, 108, 255, 106, 70, 114, 255, 109, 72, 117, 255, 110, 74, 119, 255, 110, 73, 118, 255, 111, 72, 119, 255, 111, 72, 120, 255, 111, 73, 120, 255, 110, 72, 120, 255, 106, 69, 116, 255, 100, 65, 110, 255, 101, 64, 110, 255, 104, 64, 112, 255, 107, 66, 116, 255, 108, 66, 118, 255, 108, 66, 117, 255, 108, 66, 118, 255, 107, 65, 117, 255, 108, 65, 115, 255, 107, 65, 115, 255, 104, 64, 114, 255, 96, 59, 107, 255, 91, 56, 101, 255, 100, 62, 111, 255, 105, 64, 115, 255, 108, 66, 118, 255, 103, 64, 112, 255, 100, 63, 109, 255, 100, 63, 109, 255, 105, 67, 112, 255, 110, 70, 116, 255, 104, 65, 112, 255, 98, 61, 107, 255, 98, 62, 108, 255, 101, 64, 111, 255, 102, 64, 112, 255, 97, 62, 107, 255, 94, 59, 103, 255, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 101, 66, 108, 255, 104, 69, 112, 255, 106, 71, 114, 255, 106, 70, 114, 255, 106, 68, 115, 255, 108, 70, 117, 255, 111, 73, 120, 255, 102, 67, 112, 255, 96, 63, 105, 255, 96, 63, 105, 255, 98, 62, 107, 255, 101, 62, 110, 255, 101, 61, 110, 255, 101, 61, 111, 255, 104, 64, 114, 255, 104, 64, 114, 255, 103, 63, 112, 255, 101, 62, 112, 255, 102, 62, 113, 255, 105, 65, 115, 255, 103, 64, 113, 255, 103, 64, 112, 255, 97, 60, 107, 255, 98, 61, 107, 255, 94, 59, 104, 255, 98, 62, 107, 255, 100, 63, 107, 255, 99, 63, 106, 255, 101, 64, 108, 255, 101, 64, 108, 255, 99, 64, 106, 255, 95, 62, 102, 255, 98, 62, 107, 255, 99, 62, 108, 255, 92, 59, 101, 255, 93, 59, 102, 255, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 25, 16, 28, 255, 100, 65, 108, 255, 104, 66, 113, 255, 102, 65, 111, 255, 105, 67, 114, 255, 106, 68, 114, 255, 101, 66, 110, 255, 96, 62, 105, 255, 95, 60, 104, 255, 97, 60, 106, 255, 96, 59, 104, 255, 96, 59, 104, 255, 96, 58, 104, 255, 95, 57, 104, 255, 97, 59, 107, 255, 96, 58, 107, 255, 94, 57, 106, 255, 96, 58, 107, 255, 95, 58, 106, 255, 98, 60, 108, 255, 93, 57, 102, 255, 93, 57, 102, 255, 93, 58, 102, 255, 93, 58, 102, 255, 95, 58, 103, 255, 93, 58, 101, 255, 89, 55, 97, 255, 89, 56, 97, 255, 91, 59, 98, 255, 94, 61, 102, 255, 96, 62, 103, 255, 95, 62, 103, 255, 96, 61, 104, 255, 25, 15, 27, 255, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 93, 59, 102, 255, 96, 61, 105, 255, 100, 64, 109, 255, 102, 65, 110, 255, 101, 65, 110, 255, 99, 64, 108, 255, 99, 63, 107, 255, 99, 63, 108, 255, 98, 62, 106, 255, 95, 59, 103, 255, 95, 59, 103, 255, 94, 59, 103, 255, 93, 57, 102, 255, 94, 57, 103, 255, 96, 58, 105, 255, 96, 58, 105, 255, 96, 58, 105, 255, 95, 58, 104, 255, 94, 58, 102, 255, 95, 58, 104, 255, 92, 57, 101, 255, 84, 53, 93, 255, 80, 52, 88, 255, 82, 52, 90, 255, 85, 53, 93, 255, 84, 53, 90, 255, 83, 54, 89, 255, 86, 56, 92, 255, 89, 58, 96, 255, 94, 61, 102, 255, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 71, 45, 78, 255, 96, 60, 103, 255, 96, 61, 104, 255, 95, 61, 104, 255, 96, 61, 104, 255, 94, 59, 102, 255, 92, 58, 100, 255, 90, 57, 98, 255, 88, 55, 96, 255, 87, 54, 96, 255, 88, 55, 97, 255, 86, 53, 96, 255, 84, 52, 95, 255, 83, 51, 94, 255, 89, 54, 98, 255, 87, 54, 96, 255, 85, 54, 93, 255, 86, 54, 94, 255, 86, 54, 95, 255, 84, 53, 93, 255, 80, 51, 88, 255, 80, 51, 88, 255, 81, 50, 88, 255, 82, 50, 89, 255, 80, 49, 88, 255, 78, 49, 85, 255, 79, 51, 84, 255, 70, 43, 78, 255, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 88, 55, 96, 255, 88, 54, 96, 255, 90, 56, 97, 255, 89, 55, 96, 255, 89, 55, 96, 255, 83, 51, 92, 255, 80, 50, 90, 255, 85, 54, 94, 255, 85, 54, 93, 255, 82, 50, 91, 255, 80, 49, 90, 255, 80, 49, 89, 255, 79, 50, 88, 255, 80, 51, 88, 255, 85, 53, 93, 255, 84, 53, 92, 255, 84, 53, 92, 255, 82, 52, 89, 255, 78, 49, 86, 255, 77, 47, 84, 255, 74, 45, 82, 255, 73, 44, 81, 255, 75, 46, 83, 255, 73, 44, 80, 255, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 87, 56, 94, 255, 85, 54, 93, 255, 86, 54, 93, 255, 85, 53, 93, 255, 83, 51, 91, 255, 82, 50, 90, 255, 78, 49, 87, 255, 76, 47, 85, 255, 75, 46, 85, 255, 75, 46, 85, 255, 76, 47, 84, 255, 76, 47, 84, 255, 77, 48, 84, 255, 79, 49, 86, 255, 78, 49, 85, 255, 76, 48, 83, 255, 77, 48, 84, 255, 76, 46, 83, 255, 71, 43, 78, 255, 70, 42, 77, 255, 72, 43, 79, 255, 70, 42, 77, 255, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 0, 0, 0, 255, 77, 47, 84, 255, 78, 48, 85, 255, 79, 48, 85, 255, 79, 48, 86, 255, 78, 48, 85, 255, 76, 47, 83, 255, 71, 44, 78, 255, 73, 45, 80, 255, 71, 44, 78, 255, 71, 44, 78, 255, 71, 44, 78, 255, 71, 44, 78, 255, 69, 44, 77, 255, 72, 44, 78, 255, 74, 45, 81, 255, 75, 46, 81, 255, 73, 45, 80, 255, 73, 45, 79, 255, 0, 0, 0, 255, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 72, 44, 79, 255, 74, 45, 80, 255, 72, 44, 79, 255, 71, 43, 78, 255, 67, 41, 74, 255, 65, 41, 72, 255, 65, 40, 72, 255, 65, 41, 72, 255, 65, 40, 72, 255, 64, 40, 71, 255, 68, 41, 75, 255, 70, 42, 76, 255, 72, 44, 78, 255, 72, 45, 79, 255, 70, 44, 77, 255, 71, 44, 78, 255, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 30, 18, 33, 255, 66, 41, 73, 255, 66, 41, 73, 255, 68, 42, 77, 255, 68, 42, 77, 255, 68, 42, 77, 255, 65, 40, 72, 255, 63, 39, 69, 255, 64, 39, 71, 255, 66, 40, 72, 255, 68, 42, 74, 255, 66, 40, 73, 255, 65, 39, 71, 255, 30, 19, 33, 255, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 62, 39, 70, 255, 64, 40, 72, 255, 64, 40, 73, 255, 62, 38, 69, 255, 61, 37, 67, 255, 61, 37, 67, 255, 61, 36, 67, 255, 61, 37, 67, 255, 62, 37, 68, 255, 62, 38, 68, 255, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 57, 36, 64, 255, 56, 35, 62, 255, 58, 36, 64, 255, 58, 36, 64, 255, 56, 35, 62, 255, 57, 35, 63, 255, 57, 34, 63, 255, 57, 34, 62, 255, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 0, 0, 0, 255, 51, 32, 57, 255, 50, 30, 55, 255, 54, 33, 59, 255, 54, 33, 59, 255, 0, 0, 0, 255, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 49, 31, 54, 255, 48, 30, 53, 255, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0 ), +"data": PackedByteArray(76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 66, 41, 73, 255, 68, 42, 73, 255, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 55, 32, 61, 255, 62, 36, 68, 255, 70, 43, 77, 255, 72, 45, 78, 255, 67, 43, 73, 255, 63, 41, 68, 255, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 57, 33, 63, 255, 59, 34, 65, 255, 65, 38, 72, 255, 73, 45, 80, 255, 76, 47, 82, 255, 72, 47, 78, 255, 69, 46, 75, 255, 63, 41, 69, 255, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 59, 34, 64, 255, 61, 35, 67, 255, 63, 36, 69, 255, 66, 38, 73, 255, 75, 44, 81, 255, 78, 47, 84, 255, 76, 49, 83, 255, 75, 51, 82, 255, 69, 46, 75, 255, 62, 41, 69, 255, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 54, 32, 59, 255, 60, 35, 65, 255, 62, 36, 68, 255, 63, 37, 70, 255, 62, 36, 69, 255, 69, 40, 76, 255, 80, 48, 87, 255, 82, 50, 89, 255, 81, 52, 88, 255, 80, 54, 87, 255, 75, 51, 81, 255, 68, 46, 75, 255, 63, 42, 68, 255, 55, 35, 61, 255, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 52, 31, 57, 255, 57, 34, 63, 255, 64, 37, 70, 255, 62, 36, 69, 255, 62, 36, 69, 255, 68, 39, 75, 255, 77, 45, 84, 255, 88, 52, 94, 255, 89, 54, 96, 255, 85, 55, 92, 255, 83, 55, 90, 255, 81, 55, 87, 255, 75, 51, 81, 255, 68, 46, 74, 255, 61, 40, 67, 255, 54, 34, 59, 255, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 48, 30, 53, 255, 51, 31, 56, 255, 54, 32, 59, 255, 61, 36, 67, 255, 63, 36, 69, 255, 62, 36, 69, 255, 70, 40, 77, 255, 74, 43, 81, 255, 79, 46, 87, 255, 87, 53, 95, 255, 90, 56, 97, 255, 91, 59, 99, 255, 85, 55, 93, 255, 85, 58, 92, 255, 81, 56, 87, 255, 73, 50, 80, 255, 67, 45, 73, 255, 60, 39, 65, 255, 53, 34, 58, 255, 46, 29, 51, 255, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 46, 28, 51, 255, 50, 30, 55, 255, 54, 32, 59, 255, 59, 36, 65, 255, 64, 37, 70, 255, 65, 37, 72, 255, 72, 42, 80, 255, 76, 44, 84, 255, 76, 44, 84, 255, 82, 49, 90, 255, 94, 58, 103, 255, 97, 61, 105, 255, 95, 61, 103, 255, 91, 59, 98, 255, 88, 60, 96, 255, 86, 60, 93, 255, 79, 54, 85, 255, 72, 48, 78, 255, 67, 45, 73, 255, 60, 39, 65, 255, 52, 33, 57, 255, 45, 29, 50, 255, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 45, 28, 49, 255, 48, 29, 53, 255, 55, 33, 60, 255, 60, 36, 65, 255, 64, 39, 70, 255, 68, 40, 74, 255, 75, 44, 83, 255, 78, 46, 85, 255, 75, 44, 84, 255, 78, 46, 87, 255, 85, 51, 93, 255, 93, 58, 103, 255, 99, 62, 107, 255, 101, 66, 110, 255, 96, 63, 104, 255, 92, 61, 100, 255, 90, 61, 97, 255, 85, 59, 92, 255, 77, 52, 84, 255, 73, 49, 79, 255, 67, 45, 72, 255, 58, 38, 63, 255, 49, 31, 54, 255, 43, 27, 47, 255, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 38, 24, 41, 255, 45, 29, 49, 255, 50, 31, 54, 255, 54, 33, 59, 255, 59, 36, 64, 255, 63, 38, 69, 255, 68, 41, 74, 255, 75, 44, 82, 255, 77, 45, 85, 255, 76, 44, 84, 255, 80, 47, 88, 255, 80, 47, 89, 255, 86, 51, 95, 255, 98, 60, 106, 255, 102, 64, 110, 255, 105, 69, 114, 255, 101, 67, 110, 255, 95, 62, 103, 255, 93, 62, 100, 255, 90, 61, 97, 255, 82, 56, 89, 255, 76, 50, 82, 255, 72, 49, 78, 255, 64, 42, 69, 255, 53, 33, 58, 255, 46, 28, 50, 255, 41, 26, 45, 255, 38, 24, 42, 255, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 35, 22, 39, 255, 41, 26, 45, 255, 50, 32, 54, 255, 54, 33, 59, 255, 59, 36, 64, 255, 62, 37, 68, 255, 67, 40, 73, 255, 72, 44, 79, 255, 75, 45, 83, 255, 78, 46, 85, 255, 82, 48, 90, 255, 83, 49, 92, 255, 82, 47, 91, 255, 92, 54, 101, 255, 101, 61, 108, 255, 105, 64, 113, 255, 109, 70, 119, 255, 105, 69, 114, 255, 100, 66, 109, 255, 95, 62, 103, 255, 94, 63, 101, 255, 89, 59, 95, 255, 80, 52, 86, 255, 76, 51, 82, 255, 69, 45, 75, 255, 56, 34, 61, 255, 49, 29, 54, 255, 44, 26, 48, 255, 43, 27, 47, 255, 37, 23, 40, 255, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 29, 18, 32, 255, 34, 21, 37, 255, 37, 22, 41, 255, 44, 27, 48, 255, 51, 32, 56, 255, 57, 35, 62, 255, 61, 38, 68, 255, 66, 40, 72, 255, 71, 43, 78, 255, 73, 45, 81, 255, 77, 46, 85, 255, 82, 49, 90, 255, 88, 53, 96, 255, 85, 50, 95, 255, 86, 49, 96, 255, 94, 55, 104, 255, 102, 60, 111, 255, 104, 63, 114, 255, 112, 71, 122, 255, 110, 72, 119, 255, 104, 69, 113, 255, 99, 64, 107, 255, 93, 60, 101, 255, 92, 60, 99, 255, 87, 55, 94, 255, 81, 53, 87, 255, 73, 48, 80, 255, 62, 38, 67, 255, 53, 32, 59, 255, 48, 28, 53, 255, 46, 28, 50, 255, 43, 27, 46, 255, 35, 21, 38, 255, 30, 19, 33, 255, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 28, 17, 31, 255, 33, 21, 37, 255, 38, 23, 41, 255, 41, 24, 45, 255, 48, 28, 52, 255, 55, 33, 60, 255, 61, 38, 67, 255, 65, 40, 72, 255, 70, 43, 77, 255, 72, 44, 79, 255, 76, 46, 83, 255, 81, 49, 89, 255, 88, 52, 96, 255, 88, 52, 97, 255, 88, 51, 98, 255, 92, 53, 101, 255, 97, 57, 107, 255, 106, 63, 115, 255, 111, 68, 121, 255, 116, 74, 127, 255, 114, 75, 124, 255, 109, 72, 119, 255, 103, 67, 112, 255, 95, 60, 104, 255, 91, 58, 99, 255, 89, 57, 97, 255, 86, 55, 93, 255, 78, 51, 85, 255, 68, 43, 74, 255, 60, 37, 65, 255, 53, 31, 58, 255, 48, 29, 53, 255, 46, 29, 50, 255, 39, 24, 42, 255, 32, 20, 36, 255, 28, 17, 31, 255, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 27, 17, 29, 255, 33, 21, 36, 255, 38, 25, 42, 255, 41, 24, 45, 255, 45, 26, 50, 255, 53, 32, 58, 255, 61, 38, 67, 255, 65, 40, 71, 255, 69, 41, 75, 255, 72, 43, 79, 255, 76, 46, 84, 255, 80, 49, 88, 255, 86, 52, 94, 255, 89, 53, 98, 255, 93, 55, 102, 255, 98, 58, 108, 255, 97, 57, 107, 255, 101, 59, 111, 255, 117, 72, 127, 255, 123, 77, 134, 255, 121, 77, 131, 255, 119, 77, 129, 255, 111, 72, 121, 255, 105, 68, 115, 255, 99, 63, 108, 255, 92, 58, 101, 255, 90, 57, 98, 255, 87, 55, 94, 255, 83, 53, 90, 255, 74, 47, 81, 255, 65, 41, 71, 255, 59, 36, 65, 255, 53, 33, 59, 255, 48, 29, 53, 255, 44, 27, 48, 255, 37, 23, 41, 255, 31, 18, 34, 255, 26, 16, 28, 255, 21, 12, 23, 255, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 20, 13, 22, 255, 26, 17, 28, 255, 32, 21, 35, 255, 39, 26, 42, 255, 42, 27, 46, 255, 44, 26, 49, 255, 51, 31, 56, 255, 58, 36, 64, 255, 63, 39, 69, 255, 68, 41, 75, 255, 73, 44, 80, 255, 76, 47, 84, 255, 79, 48, 87, 255, 85, 52, 94, 255, 90, 55, 99, 255, 96, 58, 105, 255, 102, 62, 112, 255, 102, 61, 112, 255, 100, 59, 110, 255, 107, 64, 117, 255, 120, 74, 130, 255, 128, 81, 139, 255, 123, 78, 134, 255, 122, 78, 133, 255, 114, 73, 124, 255, 105, 66, 115, 255, 101, 64, 110, 255, 95, 60, 104, 255, 90, 56, 98, 255, 87, 55, 95, 255, 85, 54, 92, 255, 79, 49, 85, 255, 70, 44, 77, 255, 63, 39, 69, 255, 58, 36, 64, 255, 53, 33, 58, 255, 47, 29, 52, 255, 41, 25, 45, 255, 35, 21, 39, 255, 29, 17, 31, 255, 24, 14, 26, 255, 20, 11, 21, 255, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 19, 12, 20, 255, 25, 16, 27, 255, 31, 20, 33, 255, 38, 25, 41, 255, 45, 30, 48, 255, 47, 30, 51, 255, 50, 31, 55, 255, 57, 35, 62, 255, 61, 37, 67, 255, 67, 40, 73, 255, 73, 44, 80, 255, 77, 46, 84, 255, 79, 48, 86, 255, 85, 52, 93, 255, 91, 55, 100, 255, 96, 58, 105, 255, 103, 63, 112, 255, 106, 64, 116, 255, 103, 62, 114, 255, 106, 63, 116, 255, 111, 65, 120, 255, 122, 75, 132, 255, 129, 80, 140, 255, 128, 81, 139, 255, 124, 79, 135, 255, 119, 76, 129, 255, 110, 69, 119, 255, 102, 63, 111, 255, 97, 60, 106, 255, 91, 57, 100, 255, 87, 55, 96, 255, 85, 53, 93, 255, 82, 51, 89, 255, 74, 46, 81, 255, 66, 40, 72, 255, 61, 37, 67, 255, 57, 35, 62, 255, 50, 31, 55, 255, 45, 27, 49, 255, 39, 24, 43, 255, 33, 20, 37, 255, 28, 16, 30, 255, 23, 14, 26, 255, 18, 10, 20, 255, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 12, 7, 13, 255, 17, 11, 19, 255, 23, 16, 25, 255, 29, 19, 32, 255, 35, 24, 38, 255, 42, 29, 46, 255, 49, 33, 53, 255, 52, 33, 56, 255, 56, 35, 61, 255, 61, 38, 66, 255, 65, 40, 71, 255, 71, 43, 78, 255, 76, 46, 83, 255, 81, 49, 89, 255, 84, 51, 93, 255, 89, 54, 98, 255, 96, 58, 105, 255, 104, 63, 113, 255, 110, 66, 120, 255, 107, 64, 117, 255, 108, 64, 118, 255, 112, 67, 122, 255, 115, 68, 126, 255, 122, 73, 137, 255, 127, 76, 141, 255, 130, 81, 140, 255, 126, 79, 136, 255, 122, 76, 132, 255, 116, 73, 126, 255, 108, 66, 116, 255, 101, 62, 110, 255, 95, 59, 104, 255, 90, 56, 98, 255, 85, 53, 93, 255, 82, 51, 90, 255, 77, 48, 84, 255, 70, 44, 77, 255, 65, 40, 71, 255, 60, 36, 65, 255, 55, 33, 60, 255, 48, 29, 53, 255, 42, 25, 46, 255, 37, 22, 41, 255, 32, 19, 35, 255, 27, 16, 29, 255, 21, 13, 24, 255, 16, 9, 17, 255, 10, 6, 11, 255, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 10, 6, 11, 255, 16, 10, 17, 255, 22, 15, 23, 255, 28, 19, 30, 255, 33, 23, 36, 255, 40, 27, 43, 255, 46, 30, 50, 255, 53, 35, 58, 255, 57, 36, 62, 255, 61, 38, 67, 255, 64, 40, 70, 255, 69, 42, 75, 255, 73, 44, 80, 255, 80, 49, 88, 255, 84, 51, 92, 255, 88, 53, 96, 255, 94, 57, 103, 255, 105, 64, 114, 255, 111, 68, 122, 255, 110, 66, 120, 255, 110, 65, 120, 255, 112, 67, 123, 255, 115, 69, 127, 255, 118, 70, 131, 255, 129, 78, 143, 255, 131, 79, 144, 255, 130, 80, 140, 255, 129, 80, 139, 255, 123, 77, 133, 255, 121, 75, 130, 255, 112, 68, 120, 255, 107, 65, 116, 255, 101, 62, 110, 255, 94, 58, 102, 255, 89, 55, 97, 255, 83, 52, 91, 255, 79, 49, 86, 255, 73, 45, 80, 255, 69, 42, 75, 255, 64, 39, 70, 255, 59, 35, 64, 255, 52, 32, 57, 255, 47, 28, 51, 255, 41, 24, 45, 255, 35, 21, 38, 255, 29, 17, 32, 255, 24, 14, 26, 255, 19, 11, 21, 255, 14, 8, 15, 255, 9, 5, 10, 255, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 8, 5, 9, 255, 14, 9, 15, 255, 20, 14, 22, 255, 26, 18, 28, 255, 32, 22, 35, 255, 38, 26, 41, 255, 44, 29, 47, 255, 50, 33, 54, 255, 58, 37, 62, 255, 62, 39, 67, 255, 65, 41, 71, 255, 67, 42, 74, 255, 72, 44, 79, 255, 77, 47, 84, 255, 81, 50, 89, 255, 88, 54, 96, 255, 93, 56, 102, 255, 103, 64, 113, 255, 113, 70, 123, 255, 113, 69, 123, 255, 111, 67, 122, 255, 113, 67, 123, 255, 116, 68, 126, 255, 118, 71, 131, 255, 124, 75, 137, 255, 136, 82, 148, 255, 137, 83, 149, 255, 133, 80, 142, 255, 132, 82, 142, 255, 123, 76, 134, 255, 121, 74, 130, 255, 116, 71, 125, 255, 110, 66, 119, 255, 108, 65, 118, 255, 99, 61, 109, 255, 93, 58, 102, 255, 88, 55, 96, 255, 81, 50, 89, 255, 77, 48, 84, 255, 72, 44, 79, 255, 68, 41, 74, 255, 63, 38, 69, 255, 55, 33, 61, 255, 50, 30, 55, 255, 45, 27, 49, 255, 40, 24, 44, 255, 33, 19, 36, 255, 26, 15, 28, 255, 21, 12, 23, 255, 17, 10, 19, 255, 12, 7, 13, 255, 8, 5, 9, 255, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 12, 7, 13, 255, 18, 12, 19, 255, 24, 16, 26, 255, 31, 21, 33, 255, 37, 26, 40, 255, 43, 30, 47, 255, 49, 32, 53, 255, 56, 35, 60, 255, 61, 39, 66, 255, 65, 41, 70, 255, 68, 42, 74, 255, 71, 44, 78, 255, 74, 46, 82, 255, 78, 48, 86, 255, 84, 52, 92, 255, 92, 56, 101, 255, 103, 63, 112, 255, 110, 68, 120, 255, 115, 71, 125, 255, 114, 69, 125, 255, 115, 69, 126, 255, 117, 69, 127, 255, 119, 71, 130, 255, 122, 73, 134, 255, 129, 78, 141, 255, 138, 83, 151, 255, 137, 82, 150, 255, 133, 81, 143, 255, 132, 80, 141, 255, 127, 77, 136, 255, 123, 75, 132, 255, 118, 72, 127, 255, 113, 69, 122, 255, 109, 66, 119, 255, 105, 63, 114, 255, 96, 58, 105, 255, 88, 54, 97, 255, 83, 52, 91, 255, 78, 49, 86, 255, 74, 45, 81, 255, 71, 43, 78, 255, 66, 39, 72, 255, 59, 36, 65, 255, 52, 32, 57, 255, 47, 28, 51, 255, 43, 26, 47, 255, 39, 23, 43, 255, 32, 18, 35, 255, 24, 14, 27, 255, 19, 11, 21, 255, 15, 9, 17, 255, 11, 7, 12, 255, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 15, 10, 17, 255, 22, 14, 24, 255, 28, 19, 30, 255, 35, 24, 38, 255, 41, 28, 45, 255, 48, 32, 51, 255, 54, 35, 58, 255, 58, 37, 63, 255, 62, 39, 68, 255, 66, 41, 72, 255, 69, 43, 75, 255, 72, 45, 79, 255, 76, 48, 84, 255, 80, 49, 88, 255, 92, 56, 100, 255, 103, 63, 112, 255, 109, 67, 118, 255, 114, 71, 125, 255, 118, 73, 128, 255, 118, 72, 129, 255, 120, 72, 131, 255, 119, 70, 129, 255, 121, 72, 132, 255, 127, 76, 138, 255, 134, 81, 143, 255, 143, 86, 155, 255, 142, 86, 155, 255, 133, 81, 146, 255, 132, 80, 142, 255, 128, 77, 137, 255, 123, 74, 132, 255, 122, 74, 131, 255, 117, 71, 126, 255, 111, 67, 121, 255, 109, 66, 120, 255, 102, 61, 111, 255, 88, 53, 97, 255, 84, 51, 93, 255, 78, 48, 86, 255, 76, 47, 84, 255, 73, 45, 80, 255, 70, 43, 76, 255, 63, 38, 69, 255, 56, 34, 61, 255, 50, 31, 55, 255, 45, 27, 49, 255, 40, 24, 44, 255, 36, 21, 40, 255, 30, 17, 33, 255, 23, 13, 25, 255, 18, 10, 19, 255, 14, 8, 15, 255, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 19, 12, 21, 255, 25, 16, 28, 255, 31, 21, 34, 255, 39, 26, 42, 255, 45, 31, 49, 255, 51, 34, 55, 255, 55, 35, 60, 255, 60, 37, 65, 255, 64, 40, 69, 255, 67, 42, 73, 255, 72, 45, 79, 255, 74, 46, 82, 255, 78, 48, 85, 255, 91, 55, 99, 255, 101, 62, 110, 255, 109, 67, 118, 255, 114, 71, 124, 255, 118, 73, 129, 255, 122, 75, 132, 255, 122, 74, 133, 255, 122, 73, 133, 255, 123, 73, 133, 255, 124, 75, 135, 255, 133, 81, 143, 255, 134, 82, 144, 255, 146, 90, 160, 255, 145, 90, 160, 255, 138, 84, 152, 255, 132, 81, 146, 255, 124, 76, 135, 255, 123, 74, 132, 255, 122, 73, 130, 255, 118, 71, 128, 255, 114, 69, 125, 255, 111, 67, 121, 255, 107, 65, 117, 255, 95, 57, 104, 255, 89, 53, 97, 255, 85, 51, 93, 255, 78, 48, 86, 255, 76, 47, 84, 255, 72, 44, 79, 255, 67, 41, 74, 255, 60, 37, 66, 255, 54, 33, 59, 255, 48, 29, 53, 255, 43, 26, 48, 255, 37, 22, 41, 255, 32, 19, 36, 255, 27, 16, 30, 255, 22, 13, 24, 255, 17, 10, 19, 255, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 23, 15, 25, 255, 29, 19, 32, 255, 35, 23, 38, 255, 42, 28, 46, 255, 48, 31, 52, 255, 52, 33, 57, 255, 57, 36, 62, 255, 61, 38, 67, 255, 65, 40, 71, 255, 71, 44, 78, 255, 75, 46, 82, 255, 76, 46, 84, 255, 87, 52, 94, 255, 97, 60, 106, 255, 106, 65, 115, 255, 113, 70, 123, 255, 118, 73, 129, 255, 122, 75, 133, 255, 123, 76, 134, 255, 124, 75, 135, 255, 127, 76, 137, 255, 125, 75, 135, 255, 131, 80, 141, 255, 133, 81, 143, 255, 133, 81, 144, 255, 142, 84, 155, 255, 140, 84, 154, 255, 140, 85, 154, 255, 140, 85, 154, 255, 125, 77, 138, 255, 122, 74, 133, 255, 121, 73, 131, 255, 120, 72, 130, 255, 117, 71, 129, 255, 112, 68, 124, 255, 109, 66, 120, 255, 102, 61, 111, 255, 94, 56, 103, 255, 92, 55, 100, 255, 88, 54, 96, 255, 82, 50, 90, 255, 75, 46, 82, 255, 71, 43, 78, 255, 65, 39, 71, 255, 59, 36, 65, 255, 53, 32, 58, 255, 47, 28, 52, 255, 41, 25, 46, 255, 35, 20, 39, 255, 29, 17, 33, 255, 25, 15, 28, 255, 21, 13, 23, 255, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 27, 18, 30, 255, 33, 22, 36, 255, 40, 26, 43, 255, 46, 30, 50, 255, 51, 33, 55, 255, 55, 35, 60, 255, 59, 37, 65, 255, 63, 39, 69, 255, 69, 43, 76, 255, 74, 46, 81, 255, 74, 45, 82, 255, 82, 49, 90, 255, 93, 56, 101, 255, 103, 63, 111, 255, 110, 68, 120, 255, 117, 72, 127, 255, 120, 74, 131, 255, 121, 73, 131, 255, 124, 76, 135, 255, 129, 79, 139, 255, 131, 80, 139, 255, 130, 80, 140, 255, 133, 81, 143, 255, 133, 80, 144, 255, 135, 83, 146, 255, 143, 90, 156, 255, 143, 89, 157, 255, 138, 84, 151, 255, 139, 85, 153, 255, 133, 81, 146, 255, 121, 75, 134, 255, 122, 75, 134, 255, 120, 73, 131, 255, 120, 72, 131, 255, 119, 72, 130, 255, 112, 68, 123, 255, 107, 65, 117, 255, 97, 58, 107, 255, 97, 59, 106, 255, 94, 57, 102, 255, 91, 56, 99, 255, 84, 51, 91, 255, 74, 45, 81, 255, 68, 41, 75, 255, 63, 38, 70, 255, 57, 35, 63, 255, 51, 31, 56, 255, 46, 28, 51, 255, 39, 23, 43, 255, 33, 19, 36, 255, 28, 17, 31, 255, 25, 15, 27, 255, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 31, 20, 34, 255, 38, 25, 41, 255, 44, 29, 48, 255, 50, 33, 54, 255, 55, 35, 60, 255, 59, 37, 64, 255, 62, 39, 68, 255, 67, 42, 74, 255, 73, 45, 80, 255, 75, 45, 83, 255, 78, 47, 86, 255, 88, 53, 96, 255, 97, 59, 105, 255, 105, 64, 114, 255, 112, 69, 123, 255, 118, 72, 128, 255, 117, 71, 127, 255, 121, 74, 131, 255, 130, 81, 140, 255, 133, 82, 142, 255, 134, 82, 142, 255, 135, 82, 144, 255, 134, 82, 144, 255, 133, 82, 144, 255, 134, 83, 146, 255, 145, 91, 159, 255, 144, 90, 158, 255, 133, 82, 147, 255, 137, 84, 150, 255, 134, 81, 147, 255, 125, 77, 138, 255, 121, 75, 134, 255, 122, 75, 133, 255, 119, 74, 130, 255, 122, 74, 133, 255, 117, 70, 128, 255, 112, 68, 122, 255, 100, 60, 110, 255, 95, 57, 105, 255, 99, 60, 107, 255, 96, 59, 104, 255, 91, 56, 99, 255, 84, 52, 91, 255, 75, 46, 82, 255, 68, 41, 74, 255, 62, 37, 68, 255, 55, 33, 60, 255, 48, 29, 53, 255, 43, 26, 48, 255, 36, 21, 39, 255, 31, 18, 34, 255, 28, 17, 31, 255, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 36, 23, 39, 255, 42, 28, 46, 255, 48, 32, 52, 255, 54, 36, 59, 255, 58, 37, 64, 255, 61, 38, 66, 255, 66, 41, 72, 255, 73, 45, 80, 255, 78, 47, 85, 255, 81, 48, 89, 255, 83, 50, 91, 255, 90, 54, 98, 255, 96, 58, 106, 255, 106, 65, 116, 255, 112, 68, 122, 255, 117, 71, 128, 255, 119, 73, 129, 255, 125, 79, 136, 255, 131, 83, 143, 255, 136, 84, 145, 255, 137, 83, 145, 255, 134, 82, 144, 255, 133, 82, 144, 255, 138, 85, 149, 255, 138, 85, 150, 255, 136, 87, 151, 255, 132, 84, 147, 255, 138, 85, 152, 255, 137, 84, 150, 255, 134, 82, 147, 255, 130, 80, 143, 255, 123, 76, 136, 255, 123, 76, 135, 255, 123, 77, 134, 255, 118, 74, 129, 255, 119, 73, 130, 255, 114, 69, 125, 255, 107, 65, 117, 255, 95, 57, 106, 255, 100, 61, 109, 255, 100, 61, 109, 255, 96, 60, 105, 255, 90, 55, 98, 255, 83, 51, 90, 255, 76, 47, 82, 255, 68, 41, 74, 255, 60, 36, 66, 255, 53, 32, 58, 255, 44, 26, 49, 255, 38, 22, 43, 255, 34, 20, 37, 255, 31, 19, 34, 255, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 40, 26, 43, 255, 46, 30, 50, 255, 52, 34, 57, 255, 57, 37, 62, 255, 59, 37, 65, 255, 64, 40, 70, 255, 72, 44, 79, 255, 78, 47, 85, 255, 84, 51, 91, 255, 87, 52, 95, 255, 89, 53, 97, 255, 88, 53, 97, 255, 99, 60, 109, 255, 107, 64, 117, 255, 114, 70, 125, 255, 118, 74, 129, 255, 121, 76, 132, 255, 128, 81, 139, 255, 136, 86, 147, 255, 136, 84, 146, 255, 135, 83, 144, 255, 133, 82, 144, 255, 139, 86, 150, 255, 143, 87, 153, 255, 153, 98, 169, 255, 219, 159, 236, 255, 229, 167, 245, 255, 176, 115, 191, 255, 138, 85, 152, 255, 136, 83, 150, 255, 134, 82, 148, 255, 132, 80, 145, 255, 125, 78, 137, 255, 125, 78, 136, 255, 123, 77, 134, 255, 118, 74, 128, 255, 117, 72, 128, 255, 110, 67, 120, 255, 105, 63, 115, 255, 101, 61, 111, 255, 102, 63, 112, 255, 100, 62, 109, 255, 95, 59, 103, 255, 88, 54, 95, 255, 82, 51, 89, 255, 75, 46, 82, 255, 66, 40, 72, 255, 59, 36, 64, 255, 50, 30, 55, 255, 42, 24, 46, 255, 37, 22, 41, 255, 34, 20, 37, 255, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 43, 27, 47, 255, 49, 32, 54, 255, 56, 37, 61, 255, 59, 38, 65, 255, 64, 40, 69, 255, 70, 42, 75, 255, 75, 45, 82, 255, 81, 49, 89, 255, 87, 53, 96, 255, 91, 55, 99, 255, 94, 57, 103, 255, 96, 58, 105, 255, 105, 64, 115, 255, 110, 68, 120, 255, 114, 72, 124, 255, 119, 76, 130, 255, 125, 79, 136, 255, 130, 82, 142, 255, 134, 85, 146, 255, 134, 84, 145, 255, 135, 83, 145, 255, 139, 85, 149, 255, 141, 86, 156, 255, 175, 117, 191, 255, 162, 105, 178, 255, 166, 106, 182, 255, 168, 108, 184, 255, 178, 117, 193, 255, 198, 136, 214, 255, 150, 92, 161, 255, 137, 83, 150, 255, 138, 84, 150, 255, 133, 81, 145, 255, 126, 78, 137, 255, 125, 79, 136, 255, 123, 77, 133, 255, 119, 74, 130, 255, 113, 70, 123, 255, 109, 67, 119, 255, 105, 64, 115, 255, 103, 62, 112, 255, 103, 63, 112, 255, 99, 61, 108, 255, 92, 57, 101, 255, 85, 53, 93, 255, 79, 48, 86, 255, 72, 44, 79, 255, 64, 38, 69, 255, 56, 34, 62, 255, 47, 27, 51, 255, 40, 23, 45, 255, 38, 23, 41, 255, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 46, 29, 50, 255, 54, 35, 59, 255, 60, 39, 65, 255, 64, 40, 70, 255, 69, 43, 74, 255, 73, 44, 79, 255, 77, 46, 84, 255, 84, 50, 92, 255, 88, 53, 97, 255, 95, 57, 104, 255, 99, 60, 109, 255, 103, 63, 112, 255, 106, 66, 116, 255, 109, 69, 119, 255, 117, 74, 127, 255, 128, 82, 138, 255, 126, 79, 138, 255, 130, 83, 142, 255, 134, 85, 147, 255, 136, 84, 147, 255, 139, 85, 149, 255, 152, 93, 167, 255, 185, 122, 201, 255, 160, 98, 175, 255, 157, 98, 173, 255, 157, 98, 173, 255, 157, 98, 173, 255, 152, 94, 168, 255, 156, 96, 171, 255, 189, 124, 200, 255, 156, 95, 167, 255, 139, 84, 152, 255, 136, 83, 149, 255, 131, 81, 142, 255, 126, 78, 136, 255, 122, 76, 133, 255, 115, 71, 125, 255, 113, 70, 123, 255, 110, 68, 119, 255, 107, 66, 117, 255, 105, 64, 114, 255, 102, 63, 112, 255, 101, 62, 110, 255, 96, 59, 105, 255, 89, 55, 97, 255, 81, 50, 88, 255, 74, 45, 80, 255, 66, 40, 72, 255, 59, 35, 64, 255, 51, 30, 56, 255, 44, 26, 49, 255, 40, 24, 44, 255, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 50, 32, 55, 255, 58, 37, 63, 255, 64, 41, 69, 255, 69, 43, 74, 255, 73, 45, 79, 255, 77, 47, 83, 255, 81, 49, 89, 255, 87, 52, 95, 255, 93, 56, 102, 255, 98, 60, 108, 255, 100, 61, 109, 255, 104, 64, 113, 255, 109, 68, 118, 255, 112, 71, 122, 255, 122, 78, 133, 255, 127, 81, 138, 255, 128, 81, 140, 255, 133, 84, 146, 255, 132, 84, 145, 255, 143, 88, 157, 255, 172, 106, 187, 255, 172, 107, 187, 255, 165, 100, 180, 255, 164, 99, 179, 255, 159, 96, 174, 255, 158, 98, 173, 255, 152, 94, 167, 255, 141, 84, 156, 255, 143, 85, 157, 255, 152, 91, 164, 255, 167, 103, 177, 255, 170, 105, 179, 255, 143, 89, 153, 255, 134, 84, 147, 255, 128, 79, 139, 255, 121, 73, 130, 255, 116, 71, 125, 255, 111, 68, 120, 255, 111, 68, 120, 255, 108, 68, 118, 255, 104, 66, 114, 255, 104, 64, 114, 255, 100, 61, 109, 255, 97, 59, 105, 255, 93, 57, 101, 255, 85, 52, 92, 255, 75, 46, 82, 255, 68, 41, 75, 255, 61, 36, 67, 255, 54, 32, 59, 255, 48, 28, 53, 255, 43, 25, 47, 255, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 55, 34, 59, 255, 62, 39, 67, 255, 67, 42, 72, 255, 72, 45, 77, 255, 75, 46, 81, 255, 80, 49, 86, 255, 85, 51, 92, 255, 91, 55, 100, 255, 98, 59, 108, 255, 101, 62, 110, 255, 105, 65, 114, 255, 106, 65, 115, 255, 109, 68, 119, 255, 113, 71, 124, 255, 122, 78, 133, 255, 128, 82, 139, 255, 134, 85, 146, 255, 132, 84, 145, 255, 152, 94, 167, 255, 175, 109, 191, 255, 163, 98, 178, 255, 161, 97, 176, 255, 163, 98, 178, 255, 160, 97, 176, 255, 161, 97, 176, 255, 152, 91, 167, 255, 138, 81, 154, 255, 142, 83, 155, 255, 148, 88, 160, 255, 155, 93, 166, 255, 152, 91, 164, 255, 157, 94, 168, 255, 161, 103, 176, 255, 150, 95, 163, 255, 132, 83, 144, 255, 123, 75, 133, 255, 115, 69, 123, 255, 114, 69, 123, 255, 110, 68, 119, 255, 109, 69, 119, 255, 107, 68, 117, 255, 105, 66, 114, 255, 101, 63, 110, 255, 95, 58, 103, 255, 94, 57, 102, 255, 88, 54, 96, 255, 80, 48, 87, 255, 72, 43, 78, 255, 65, 39, 71, 255, 58, 34, 63, 255, 52, 31, 57, 255, 47, 28, 51, 255, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 58, 36, 63, 255, 65, 41, 70, 255, 70, 43, 75, 255, 73, 45, 79, 255, 78, 48, 84, 255, 83, 50, 89, 255, 86, 52, 94, 255, 94, 57, 103, 255, 97, 60, 106, 255, 102, 64, 111, 255, 103, 64, 112, 255, 104, 64, 112, 255, 110, 68, 119, 255, 115, 73, 125, 255, 125, 80, 137, 255, 135, 87, 147, 255, 137, 87, 150, 255, 160, 98, 176, 255, 168, 103, 184, 255, 159, 96, 175, 255, 154, 91, 170, 255, 158, 94, 173, 255, 164, 98, 179, 255, 164, 99, 180, 255, 149, 88, 165, 255, 138, 80, 154, 255, 143, 84, 159, 255, 150, 89, 165, 255, 152, 91, 164, 255, 146, 86, 158, 255, 142, 85, 156, 255, 141, 86, 156, 255, 147, 91, 162, 255, 159, 101, 174, 255, 148, 93, 162, 255, 128, 79, 138, 255, 118, 71, 126, 255, 114, 68, 122, 255, 114, 69, 123, 255, 110, 69, 120, 255, 111, 71, 121, 255, 110, 70, 119, 255, 103, 65, 112, 255, 99, 62, 107, 255, 95, 58, 103, 255, 90, 55, 98, 255, 83, 50, 91, 255, 76, 45, 82, 255, 68, 40, 75, 255, 63, 38, 69, 255, 56, 33, 61, 255, 52, 31, 57, 255, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 63, 40, 69, 255, 68, 43, 74, 255, 72, 45, 78, 255, 76, 46, 81, 255, 80, 48, 86, 255, 84, 50, 90, 255, 88, 54, 96, 255, 92, 58, 101, 255, 99, 62, 107, 255, 103, 64, 112, 255, 103, 63, 111, 255, 107, 65, 115, 255, 113, 69, 122, 255, 119, 76, 129, 255, 132, 85, 144, 255, 151, 97, 166, 255, 170, 107, 187, 255, 163, 100, 179, 255, 160, 97, 175, 255, 151, 89, 166, 255, 147, 86, 162, 255, 157, 95, 172, 255, 162, 97, 177, 255, 162, 97, 177, 255, 145, 85, 160, 255, 140, 81, 156, 255, 151, 89, 166, 255, 156, 93, 172, 255, 153, 91, 169, 255, 138, 82, 152, 255, 133, 81, 148, 255, 137, 84, 152, 255, 140, 86, 154, 255, 138, 85, 152, 255, 139, 87, 154, 255, 149, 93, 160, 255, 136, 84, 145, 255, 116, 70, 124, 255, 114, 69, 123, 255, 112, 71, 122, 255, 112, 71, 122, 255, 114, 73, 124, 255, 109, 69, 118, 255, 101, 64, 110, 255, 100, 63, 108, 255, 94, 58, 102, 255, 86, 52, 94, 255, 79, 47, 86, 255, 72, 43, 79, 255, 66, 39, 72, 255, 60, 36, 66, 255, 55, 32, 59, 255, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 65, 41, 70, 255, 71, 44, 76, 255, 76, 47, 82, 255, 78, 47, 83, 255, 81, 48, 87, 255, 85, 52, 93, 255, 90, 56, 98, 255, 97, 61, 106, 255, 103, 65, 113, 255, 103, 64, 112, 255, 105, 63, 112, 255, 109, 66, 117, 255, 114, 70, 123, 255, 125, 79, 135, 255, 155, 99, 170, 255, 164, 104, 181, 255, 155, 96, 173, 255, 152, 91, 168, 255, 144, 85, 159, 255, 148, 88, 163, 255, 157, 95, 172, 255, 159, 96, 174, 255, 158, 95, 173, 255, 150, 87, 165, 255, 146, 85, 161, 255, 149, 88, 164, 255, 159, 95, 174, 255, 155, 92, 170, 255, 139, 81, 154, 255, 139, 81, 154, 255, 142, 84, 156, 255, 135, 82, 149, 255, 132, 80, 146, 255, 127, 77, 142, 255, 133, 80, 145, 255, 142, 86, 152, 255, 143, 87, 153, 255, 133, 80, 145, 255, 114, 68, 122, 255, 115, 72, 125, 255, 115, 73, 125, 255, 114, 73, 125, 255, 110, 70, 120, 255, 105, 67, 114, 255, 102, 65, 111, 255, 99, 62, 106, 255, 91, 55, 98, 255, 83, 49, 90, 255, 74, 44, 81, 255, 69, 41, 76, 255, 64, 38, 70, 255, 58, 35, 64, 255, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 67, 40, 71, 255, 73, 45, 79, 255, 78, 47, 83, 255, 79, 48, 85, 255, 83, 50, 90, 255, 87, 54, 96, 255, 93, 58, 101, 255, 99, 62, 108, 255, 103, 64, 112, 255, 103, 62, 110, 255, 104, 62, 111, 255, 110, 66, 117, 255, 117, 73, 130, 255, 157, 100, 173, 255, 157, 99, 174, 255, 150, 91, 167, 255, 148, 89, 166, 255, 142, 84, 162, 255, 152, 93, 169, 255, 161, 99, 176, 255, 160, 98, 175, 255, 158, 95, 172, 255, 152, 89, 166, 255, 149, 87, 163, 255, 154, 91, 168, 255, 157, 94, 172, 255, 152, 90, 166, 255, 138, 80, 152, 255, 141, 83, 155, 255, 144, 85, 159, 255, 139, 81, 153, 255, 137, 80, 151, 255, 129, 77, 143, 255, 128, 75, 142, 255, 132, 77, 145, 255, 132, 77, 145, 255, 135, 80, 146, 255, 135, 80, 146, 255, 134, 79, 145, 255, 132, 84, 144, 255, 120, 77, 131, 255, 119, 76, 129, 255, 111, 71, 121, 255, 106, 67, 116, 255, 106, 67, 114, 255, 102, 64, 109, 255, 96, 58, 101, 255, 86, 52, 92, 255, 78, 46, 85, 255, 72, 43, 79, 255, 67, 40, 74, 255, 61, 37, 68, 255, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 70, 42, 75, 255, 75, 45, 80, 255, 78, 47, 84, 255, 77, 47, 85, 255, 83, 51, 91, 255, 87, 54, 96, 255, 94, 59, 103, 255, 101, 62, 109, 255, 104, 63, 111, 255, 105, 64, 113, 255, 107, 64, 114, 255, 116, 70, 129, 255, 134, 83, 148, 255, 148, 94, 163, 255, 155, 98, 171, 255, 161, 103, 175, 255, 162, 104, 177, 255, 157, 99, 173, 255, 157, 98, 172, 255, 154, 95, 170, 255, 151, 91, 166, 255, 148, 86, 162, 255, 144, 83, 158, 255, 150, 89, 164, 255, 155, 94, 170, 255, 152, 91, 166, 255, 146, 86, 160, 255, 143, 84, 157, 255, 143, 84, 157, 255, 144, 85, 158, 255, 151, 90, 165, 255, 144, 86, 159, 255, 130, 75, 144, 255, 127, 73, 142, 255, 128, 74, 142, 255, 130, 76, 142, 255, 131, 77, 143, 255, 130, 76, 142, 255, 132, 79, 143, 255, 147, 93, 160, 255, 142, 91, 155, 255, 126, 81, 137, 255, 117, 75, 128, 255, 110, 70, 120, 255, 105, 67, 115, 255, 103, 65, 111, 255, 98, 60, 104, 255, 90, 55, 96, 255, 80, 49, 87, 255, 76, 46, 83, 255, 72, 43, 78, 255, 67, 40, 73, 255, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 73, 44, 78, 255, 77, 47, 84, 255, 79, 49, 88, 255, 82, 50, 90, 255, 85, 52, 94, 255, 92, 57, 101, 255, 99, 61, 108, 255, 105, 65, 114, 255, 108, 67, 117, 255, 110, 67, 121, 255, 124, 76, 137, 255, 127, 78, 141, 255, 136, 87, 150, 255, 141, 91, 155, 255, 145, 94, 159, 255, 153, 98, 167, 255, 156, 99, 171, 255, 154, 97, 169, 255, 152, 94, 168, 255, 147, 90, 165, 255, 144, 89, 163, 255, 143, 86, 160, 255, 150, 89, 164, 255, 151, 91, 165, 255, 148, 89, 161, 255, 141, 83, 155, 255, 138, 80, 152, 255, 140, 82, 154, 255, 144, 85, 158, 255, 151, 91, 165, 255, 142, 84, 156, 255, 136, 81, 150, 255, 134, 79, 149, 255, 135, 80, 149, 255, 139, 84, 152, 255, 133, 80, 144, 255, 130, 77, 140, 255, 125, 72, 133, 255, 127, 75, 136, 255, 135, 82, 145, 255, 139, 87, 150, 255, 138, 87, 149, 255, 118, 73, 130, 255, 112, 71, 122, 255, 108, 68, 118, 255, 103, 65, 112, 255, 99, 61, 106, 255, 94, 57, 100, 255, 86, 53, 92, 255, 81, 50, 87, 255, 76, 46, 82, 255, 71, 43, 77, 255, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 74, 45, 81, 255, 81, 49, 89, 255, 86, 52, 95, 255, 86, 53, 94, 255, 91, 55, 100, 255, 100, 61, 109, 255, 104, 64, 113, 255, 108, 68, 118, 255, 127, 79, 139, 255, 138, 84, 151, 255, 134, 85, 148, 255, 140, 91, 154, 255, 133, 83, 146, 255, 125, 76, 139, 255, 126, 76, 139, 255, 134, 81, 148, 255, 141, 84, 156, 255, 142, 87, 159, 255, 145, 89, 162, 255, 150, 92, 165, 255, 147, 90, 163, 255, 149, 92, 165, 255, 147, 87, 161, 255, 146, 87, 160, 255, 138, 81, 152, 255, 139, 82, 154, 255, 145, 87, 159, 255, 140, 82, 153, 255, 142, 84, 155, 255, 139, 83, 153, 255, 137, 82, 151, 255, 141, 86, 155, 255, 140, 85, 154, 255, 143, 87, 157, 255, 144, 89, 158, 255, 138, 84, 152, 255, 132, 79, 143, 255, 129, 77, 138, 255, 129, 77, 138, 255, 126, 74, 135, 255, 124, 73, 133, 255, 131, 80, 143, 255, 130, 78, 147, 255, 120, 73, 133, 255, 107, 68, 117, 255, 104, 65, 113, 255, 99, 61, 106, 255, 94, 58, 101, 255, 89, 54, 96, 255, 83, 51, 90, 255, 79, 48, 85, 255, 74, 45, 80, 255, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 78, 47, 85, 255, 85, 51, 93, 255, 86, 53, 95, 255, 89, 54, 98, 255, 96, 58, 105, 255, 102, 62, 112, 255, 107, 67, 117, 255, 133, 83, 145, 255, 142, 89, 155, 255, 137, 85, 150, 255, 137, 84, 149, 255, 137, 88, 150, 255, 135, 87, 149, 255, 130, 81, 143, 255, 130, 77, 143, 255, 132, 75, 145, 255, 135, 78, 148, 255, 140, 84, 154, 255, 145, 90, 160, 255, 146, 90, 161, 255, 145, 88, 160, 255, 145, 86, 159, 255, 147, 87, 160, 255, 143, 83, 156, 255, 144, 85, 157, 255, 141, 84, 155, 255, 134, 79, 148, 255, 138, 82, 151, 255, 139, 83, 153, 255, 143, 86, 156, 255, 142, 85, 156, 255, 138, 83, 151, 255, 142, 88, 156, 255, 146, 91, 160, 255, 146, 90, 159, 255, 138, 84, 152, 255, 128, 77, 142, 255, 128, 77, 140, 255, 128, 77, 138, 255, 128, 78, 139, 255, 126, 75, 138, 255, 124, 74, 141, 255, 125, 75, 142, 255, 132, 80, 146, 255, 127, 77, 139, 255, 103, 65, 113, 255, 102, 63, 109, 255, 94, 58, 102, 255, 89, 55, 96, 255, 85, 51, 92, 255, 80, 48, 86, 255, 76, 47, 82, 255, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 80, 49, 88, 255, 85, 52, 93, 255, 87, 53, 95, 255, 91, 55, 100, 255, 98, 60, 107, 255, 116, 74, 128, 255, 136, 86, 149, 255, 136, 85, 149, 255, 135, 85, 148, 255, 138, 88, 151, 255, 143, 93, 155, 255, 144, 94, 157, 255, 143, 93, 156, 255, 136, 84, 149, 255, 132, 77, 144, 255, 133, 78, 145, 255, 136, 81, 148, 255, 140, 86, 153, 255, 142, 88, 156, 255, 139, 83, 153, 255, 139, 81, 151, 255, 142, 84, 155, 255, 147, 88, 160, 255, 149, 89, 162, 255, 140, 82, 153, 255, 133, 77, 146, 255, 137, 82, 150, 255, 138, 83, 151, 255, 140, 84, 153, 255, 137, 82, 151, 255, 136, 81, 149, 255, 141, 84, 154, 255, 145, 90, 159, 255, 148, 91, 162, 255, 141, 86, 154, 255, 132, 80, 145, 255, 131, 79, 144, 255, 130, 78, 143, 255, 129, 78, 142, 255, 128, 77, 141, 255, 125, 75, 141, 255, 124, 74, 140, 255, 126, 76, 140, 255, 129, 78, 141, 255, 130, 79, 142, 255, 126, 75, 139, 255, 108, 65, 120, 255, 99, 61, 106, 255, 92, 57, 99, 255, 86, 53, 93, 255, 81, 50, 88, 255, 77, 47, 83, 255, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 81, 49, 88, 255, 83, 51, 92, 255, 90, 55, 98, 255, 94, 57, 103, 255, 119, 76, 133, 255, 136, 88, 149, 255, 134, 87, 147, 255, 134, 86, 147, 255, 136, 88, 148, 255, 139, 90, 151, 255, 145, 98, 157, 255, 150, 103, 162, 255, 149, 102, 162, 255, 144, 94, 156, 255, 135, 82, 147, 255, 136, 84, 149, 255, 137, 85, 150, 255, 140, 87, 153, 255, 141, 87, 154, 255, 135, 82, 148, 255, 136, 81, 149, 255, 140, 83, 153, 255, 141, 84, 154, 255, 137, 80, 150, 255, 137, 82, 150, 255, 141, 87, 154, 255, 135, 84, 148, 255, 131, 79, 144, 255, 132, 79, 145, 255, 133, 79, 146, 255, 135, 81, 148, 255, 142, 88, 155, 255, 145, 92, 158, 255, 142, 89, 155, 255, 138, 85, 151, 255, 133, 81, 146, 255, 128, 77, 141, 255, 128, 77, 140, 255, 128, 75, 137, 255, 129, 75, 138, 255, 127, 76, 139, 255, 122, 73, 137, 255, 125, 75, 138, 255, 126, 76, 138, 255, 126, 77, 138, 255, 125, 75, 136, 255, 127, 77, 139, 255, 118, 73, 129, 255, 97, 60, 104, 255, 91, 56, 98, 255, 84, 52, 91, 255, 80, 49, 86, 255, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 80, 49, 88, 255, 87, 54, 96, 255, 95, 59, 103, 255, 120, 77, 135, 255, 127, 82, 144, 255, 129, 84, 143, 255, 134, 88, 144, 255, 135, 89, 146, 255, 136, 90, 148, 255, 140, 93, 152, 255, 143, 96, 154, 255, 146, 101, 158, 255, 145, 99, 157, 255, 144, 96, 156, 255, 141, 91, 154, 255, 138, 88, 151, 255, 138, 86, 150, 255, 141, 87, 153, 255, 137, 84, 150, 255, 132, 80, 145, 255, 135, 83, 148, 255, 132, 80, 144, 255, 127, 74, 139, 255, 134, 81, 146, 255, 134, 83, 147, 255, 125, 77, 138, 255, 128, 79, 141, 255, 135, 84, 148, 255, 127, 77, 139, 255, 132, 80, 145, 255, 138, 86, 150, 255, 139, 87, 152, 255, 139, 87, 152, 255, 139, 87, 151, 255, 136, 85, 149, 255, 131, 80, 143, 255, 128, 77, 140, 255, 130, 77, 141, 255, 130, 77, 141, 255, 126, 74, 135, 255, 121, 69, 128, 255, 121, 70, 130, 255, 120, 72, 133, 255, 122, 73, 134, 255, 124, 76, 135, 255, 123, 75, 134, 255, 122, 75, 133, 255, 124, 76, 135, 255, 110, 63, 121, 255, 99, 62, 108, 255, 88, 54, 95, 255, 80, 49, 87, 255, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 82, 51, 90, 255, 101, 63, 108, 255, 120, 75, 127, 255, 121, 77, 132, 255, 122, 79, 138, 255, 126, 82, 140, 255, 129, 85, 141, 255, 130, 85, 142, 255, 132, 88, 144, 255, 133, 86, 145, 255, 135, 88, 146, 255, 136, 89, 148, 255, 139, 92, 150, 255, 139, 92, 151, 255, 143, 98, 156, 255, 141, 92, 153, 255, 140, 89, 152, 255, 138, 86, 151, 255, 136, 84, 148, 255, 133, 82, 145, 255, 127, 77, 140, 255, 124, 75, 136, 255, 127, 80, 139, 255, 125, 78, 137, 255, 118, 72, 130, 255, 127, 79, 140, 255, 127, 79, 140, 255, 118, 72, 130, 255, 127, 78, 138, 255, 136, 84, 147, 255, 137, 85, 149, 255, 136, 85, 148, 255, 136, 85, 148, 255, 136, 85, 148, 255, 135, 84, 146, 255, 134, 82, 144, 255, 132, 80, 142, 255, 130, 78, 142, 255, 127, 76, 138, 255, 125, 74, 134, 255, 123, 73, 133, 255, 119, 71, 129, 255, 111, 66, 122, 255, 120, 73, 131, 255, 122, 76, 133, 255, 118, 70, 128, 255, 116, 69, 127, 255, 114, 67, 125, 255, 113, 69, 124, 255, 111, 70, 122, 255, 95, 60, 105, 255, 82, 51, 90, 255, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 102, 62, 108, 255, 116, 73, 124, 255, 116, 73, 124, 255, 119, 76, 127, 255, 123, 80, 133, 255, 127, 83, 136, 255, 130, 86, 138, 255, 130, 88, 141, 255, 133, 92, 143, 255, 134, 93, 145, 255, 134, 92, 145, 255, 134, 91, 145, 255, 135, 89, 146, 255, 134, 87, 146, 255, 136, 88, 147, 255, 139, 90, 150, 255, 138, 89, 149, 255, 136, 88, 148, 255, 133, 84, 145, 255, 129, 79, 141, 255, 123, 76, 134, 255, 121, 76, 131, 255, 117, 72, 126, 255, 119, 74, 130, 255, 122, 77, 134, 255, 112, 69, 123, 255, 112, 68, 123, 255, 127, 78, 138, 255, 133, 82, 144, 255, 136, 84, 148, 255, 136, 84, 148, 255, 134, 84, 146, 255, 134, 84, 145, 255, 133, 83, 145, 255, 131, 80, 142, 255, 132, 81, 143, 255, 130, 80, 141, 255, 125, 75, 134, 255, 124, 74, 134, 255, 125, 75, 136, 255, 122, 74, 132, 255, 117, 71, 127, 255, 117, 72, 127, 255, 118, 73, 129, 255, 116, 71, 126, 255, 114, 68, 125, 255, 111, 66, 121, 255, 108, 67, 118, 255, 106, 67, 116, 255, 101, 63, 111, 255, 109, 69, 120, 255, 90, 57, 100, 255, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 111, 69, 118, 255, 113, 71, 120, 255, 117, 75, 126, 255, 121, 79, 130, 255, 126, 83, 136, 255, 126, 85, 137, 255, 127, 87, 138, 255, 129, 90, 140, 255, 130, 91, 141, 255, 131, 92, 142, 255, 132, 92, 143, 255, 135, 91, 144, 255, 135, 89, 145, 255, 133, 87, 144, 255, 131, 85, 143, 255, 130, 83, 141, 255, 127, 80, 138, 255, 125, 78, 136, 255, 122, 76, 133, 255, 118, 74, 129, 255, 116, 72, 126, 255, 118, 74, 129, 255, 117, 73, 127, 255, 108, 66, 115, 255, 111, 67, 118, 255, 120, 73, 128, 255, 124, 76, 133, 255, 128, 78, 138, 255, 130, 80, 141, 255, 132, 82, 144, 255, 132, 81, 143, 255, 131, 81, 143, 255, 131, 81, 143, 255, 130, 80, 141, 255, 126, 77, 136, 255, 124, 75, 133, 255, 122, 74, 131, 255, 124, 76, 133, 255, 124, 77, 133, 255, 121, 75, 131, 255, 117, 72, 127, 255, 115, 71, 124, 255, 114, 70, 123, 255, 112, 69, 122, 255, 108, 68, 118, 255, 104, 66, 114, 255, 103, 65, 113, 255, 104, 66, 114, 255, 106, 67, 116, 255, 97, 61, 107, 255, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 64, 40, 70, 255, 110, 69, 117, 255, 113, 73, 123, 255, 120, 79, 130, 255, 121, 80, 131, 255, 122, 81, 132, 255, 124, 86, 134, 255, 126, 86, 136, 255, 127, 86, 136, 255, 131, 89, 138, 255, 133, 89, 139, 255, 130, 85, 137, 255, 126, 81, 136, 255, 123, 78, 134, 255, 121, 76, 132, 255, 120, 75, 131, 255, 118, 73, 127, 255, 115, 71, 123, 255, 115, 71, 124, 255, 116, 73, 127, 255, 114, 71, 124, 255, 107, 65, 116, 255, 105, 63, 115, 255, 111, 66, 120, 255, 119, 72, 126, 255, 121, 73, 128, 255, 121, 74, 129, 255, 123, 76, 132, 255, 124, 76, 135, 255, 126, 78, 137, 255, 126, 78, 137, 255, 126, 78, 137, 255, 122, 74, 132, 255, 117, 70, 125, 255, 115, 68, 121, 255, 118, 72, 125, 255, 121, 75, 129, 255, 118, 73, 126, 255, 118, 73, 126, 255, 114, 71, 123, 255, 112, 69, 121, 255, 110, 68, 119, 255, 105, 66, 115, 255, 101, 64, 111, 255, 100, 64, 110, 255, 103, 65, 113, 255, 105, 65, 114, 255, 61, 36, 67, 255, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 106, 67, 115, 255, 111, 72, 121, 255, 112, 72, 121, 255, 113, 73, 123, 255, 115, 75, 125, 255, 118, 78, 127, 255, 123, 81, 130, 255, 123, 81, 131, 255, 123, 80, 131, 255, 117, 74, 127, 255, 117, 73, 127, 255, 115, 72, 126, 255, 112, 70, 121, 255, 112, 70, 121, 255, 108, 67, 115, 255, 111, 68, 118, 255, 113, 70, 122, 255, 114, 70, 122, 255, 110, 67, 119, 255, 100, 60, 111, 255, 101, 61, 112, 255, 106, 63, 115, 255, 110, 66, 118, 255, 114, 68, 121, 255, 117, 71, 124, 255, 116, 71, 125, 255, 117, 72, 128, 255, 117, 72, 128, 255, 115, 70, 126, 255, 114, 68, 124, 255, 116, 71, 127, 255, 114, 70, 123, 255, 114, 70, 121, 255, 112, 69, 120, 255, 110, 68, 119, 255, 114, 71, 122, 255, 117, 73, 123, 255, 113, 70, 120, 255, 107, 67, 116, 255, 101, 64, 111, 255, 100, 63, 110, 255, 97, 62, 107, 255, 99, 63, 109, 255, 101, 63, 110, 255, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 99, 62, 108, 255, 108, 69, 117, 255, 111, 73, 121, 255, 111, 73, 119, 255, 110, 72, 117, 255, 110, 71, 118, 255, 112, 72, 122, 255, 113, 72, 122, 255, 114, 72, 123, 255, 112, 71, 122, 255, 107, 70, 117, 255, 107, 70, 117, 255, 110, 70, 120, 255, 108, 67, 116, 255, 108, 67, 116, 255, 106, 65, 113, 255, 108, 66, 116, 255, 109, 66, 119, 255, 108, 65, 118, 255, 105, 63, 114, 255, 102, 61, 111, 255, 96, 58, 107, 255, 99, 60, 109, 255, 96, 58, 106, 255, 102, 63, 113, 255, 107, 65, 117, 255, 106, 63, 116, 255, 106, 63, 116, 255, 111, 68, 121, 255, 111, 69, 120, 255, 110, 70, 117, 255, 106, 67, 114, 255, 105, 65, 114, 255, 109, 68, 117, 255, 109, 68, 117, 255, 107, 66, 115, 255, 105, 66, 114, 255, 103, 65, 113, 255, 104, 65, 114, 255, 100, 63, 110, 255, 98, 62, 107, 255, 97, 61, 106, 255, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 0, 0, 0, 255, 102, 65, 108, 255, 106, 70, 114, 255, 109, 72, 117, 255, 110, 74, 119, 255, 110, 73, 118, 255, 111, 72, 119, 255, 111, 72, 120, 255, 111, 73, 120, 255, 110, 72, 120, 255, 106, 69, 116, 255, 100, 65, 110, 255, 101, 64, 110, 255, 104, 64, 112, 255, 107, 66, 116, 255, 108, 66, 118, 255, 108, 66, 117, 255, 108, 66, 118, 255, 107, 65, 117, 255, 108, 65, 115, 255, 107, 65, 115, 255, 104, 64, 114, 255, 96, 59, 107, 255, 91, 56, 101, 255, 100, 62, 111, 255, 105, 64, 115, 255, 108, 66, 118, 255, 103, 64, 112, 255, 100, 63, 109, 255, 100, 63, 109, 255, 105, 67, 112, 255, 110, 70, 116, 255, 104, 65, 112, 255, 98, 61, 107, 255, 98, 62, 108, 255, 101, 64, 111, 255, 102, 64, 112, 255, 97, 62, 107, 255, 94, 59, 103, 255, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 101, 66, 108, 255, 104, 69, 112, 255, 106, 71, 114, 255, 106, 70, 114, 255, 106, 68, 115, 255, 108, 70, 117, 255, 111, 73, 120, 255, 102, 67, 112, 255, 96, 63, 105, 255, 96, 63, 105, 255, 98, 62, 107, 255, 101, 62, 110, 255, 101, 61, 110, 255, 101, 61, 111, 255, 104, 64, 114, 255, 104, 64, 114, 255, 103, 63, 112, 255, 101, 62, 112, 255, 102, 62, 113, 255, 105, 65, 115, 255, 103, 64, 113, 255, 103, 64, 112, 255, 97, 60, 107, 255, 98, 61, 107, 255, 94, 59, 104, 255, 98, 62, 107, 255, 100, 63, 107, 255, 99, 63, 106, 255, 101, 64, 108, 255, 101, 64, 108, 255, 99, 64, 106, 255, 95, 62, 102, 255, 98, 62, 107, 255, 99, 62, 108, 255, 92, 59, 101, 255, 93, 59, 102, 255, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 25, 16, 28, 255, 100, 65, 108, 255, 104, 66, 113, 255, 102, 65, 111, 255, 105, 67, 114, 255, 106, 68, 114, 255, 101, 66, 110, 255, 96, 62, 105, 255, 95, 60, 104, 255, 97, 60, 106, 255, 96, 59, 104, 255, 96, 59, 104, 255, 96, 58, 104, 255, 95, 57, 104, 255, 97, 59, 107, 255, 96, 58, 107, 255, 94, 57, 106, 255, 96, 58, 107, 255, 95, 58, 106, 255, 98, 60, 108, 255, 93, 57, 102, 255, 93, 57, 102, 255, 93, 58, 102, 255, 93, 58, 102, 255, 95, 58, 103, 255, 93, 58, 101, 255, 89, 55, 97, 255, 89, 56, 97, 255, 91, 59, 98, 255, 94, 61, 102, 255, 96, 62, 103, 255, 95, 62, 103, 255, 96, 61, 104, 255, 25, 15, 27, 255, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 93, 59, 102, 255, 96, 61, 105, 255, 100, 64, 109, 255, 102, 65, 110, 255, 101, 65, 110, 255, 99, 64, 108, 255, 99, 63, 107, 255, 99, 63, 108, 255, 98, 62, 106, 255, 95, 59, 103, 255, 95, 59, 103, 255, 94, 59, 103, 255, 93, 57, 102, 255, 94, 57, 103, 255, 96, 58, 105, 255, 96, 58, 105, 255, 96, 58, 105, 255, 95, 58, 104, 255, 94, 58, 102, 255, 95, 58, 104, 255, 92, 57, 101, 255, 84, 53, 93, 255, 80, 52, 88, 255, 82, 52, 90, 255, 85, 53, 93, 255, 84, 53, 90, 255, 83, 54, 89, 255, 86, 56, 92, 255, 89, 58, 96, 255, 94, 61, 102, 255, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 71, 45, 78, 255, 96, 60, 103, 255, 96, 61, 104, 255, 95, 61, 104, 255, 96, 61, 104, 255, 94, 59, 102, 255, 92, 58, 100, 255, 90, 57, 98, 255, 88, 55, 96, 255, 87, 54, 96, 255, 88, 55, 97, 255, 86, 53, 96, 255, 84, 52, 95, 255, 83, 51, 94, 255, 89, 54, 98, 255, 87, 54, 96, 255, 85, 54, 93, 255, 86, 54, 94, 255, 86, 54, 95, 255, 84, 53, 93, 255, 80, 51, 88, 255, 80, 51, 88, 255, 81, 50, 88, 255, 82, 50, 89, 255, 80, 49, 88, 255, 78, 49, 85, 255, 79, 51, 84, 255, 70, 43, 78, 255, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 88, 55, 96, 255, 88, 54, 96, 255, 90, 56, 97, 255, 89, 55, 96, 255, 89, 55, 96, 255, 83, 51, 92, 255, 80, 50, 90, 255, 85, 54, 94, 255, 85, 54, 93, 255, 82, 50, 91, 255, 80, 49, 90, 255, 80, 49, 89, 255, 79, 50, 88, 255, 80, 51, 88, 255, 85, 53, 93, 255, 84, 53, 92, 255, 84, 53, 92, 255, 82, 52, 89, 255, 78, 49, 86, 255, 77, 47, 84, 255, 74, 45, 82, 255, 73, 44, 81, 255, 75, 46, 83, 255, 73, 44, 80, 255, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 87, 56, 94, 255, 85, 54, 93, 255, 86, 54, 93, 255, 85, 53, 93, 255, 83, 51, 91, 255, 82, 50, 90, 255, 78, 49, 87, 255, 76, 47, 85, 255, 75, 46, 85, 255, 75, 46, 85, 255, 76, 47, 84, 255, 76, 47, 84, 255, 77, 48, 84, 255, 79, 49, 86, 255, 78, 49, 85, 255, 76, 48, 83, 255, 77, 48, 84, 255, 76, 46, 83, 255, 71, 43, 78, 255, 70, 42, 77, 255, 72, 43, 79, 255, 70, 42, 77, 255, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 0, 0, 0, 255, 77, 47, 84, 255, 78, 48, 85, 255, 79, 48, 85, 255, 79, 48, 86, 255, 78, 48, 85, 255, 76, 47, 83, 255, 71, 44, 78, 255, 73, 45, 80, 255, 71, 44, 78, 255, 71, 44, 78, 255, 71, 44, 78, 255, 71, 44, 78, 255, 69, 44, 77, 255, 72, 44, 78, 255, 74, 45, 81, 255, 75, 46, 81, 255, 73, 45, 80, 255, 73, 45, 79, 255, 0, 0, 0, 255, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 72, 44, 79, 255, 74, 45, 80, 255, 72, 44, 79, 255, 71, 43, 78, 255, 67, 41, 74, 255, 65, 41, 72, 255, 65, 40, 72, 255, 65, 41, 72, 255, 65, 40, 72, 255, 64, 40, 71, 255, 68, 41, 75, 255, 70, 42, 76, 255, 72, 44, 78, 255, 72, 45, 79, 255, 70, 44, 77, 255, 71, 44, 78, 255, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 30, 18, 33, 255, 66, 41, 73, 255, 66, 41, 73, 255, 68, 42, 77, 255, 68, 42, 77, 255, 68, 42, 77, 255, 65, 40, 72, 255, 63, 39, 69, 255, 64, 39, 71, 255, 66, 40, 72, 255, 68, 42, 74, 255, 66, 40, 73, 255, 65, 39, 71, 255, 30, 19, 33, 255, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 62, 39, 70, 255, 64, 40, 72, 255, 64, 40, 73, 255, 62, 38, 69, 255, 61, 37, 67, 255, 61, 37, 67, 255, 61, 36, 67, 255, 61, 37, 67, 255, 62, 37, 68, 255, 62, 38, 68, 255, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 57, 36, 64, 255, 56, 35, 62, 255, 58, 36, 64, 255, 58, 36, 64, 255, 56, 35, 62, 255, 57, 35, 63, 255, 57, 34, 63, 255, 57, 34, 62, 255, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 0, 0, 0, 255, 51, 32, 57, 255, 50, 30, 55, 255, 54, 33, 59, 255, 54, 33, 59, 255, 0, 0, 0, 255, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 49, 31, 54, 255, 48, 30, 53, 255, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0), "format": "RGBA8", "height": 64, "mipmaps": false, "width": 64 } -[sub_resource type="ImageTexture" id=2] -image = SubResource( 4 ) -size = Vector2( 64, 64 ) +[sub_resource type="ImageTexture" id="2"] +image = SubResource( "Image_gt44q" ) +size = Vector2(64, 64) -[sub_resource type="BoxShape3D" id=3] -extents = Vector3( 0.5, 0.5, 0.5 ) +[sub_resource type="BoxShape3D" id="3"] [resource] item/0/name = "cube" -item/0/mesh = ExtResource( 1 ) -item/0/mesh_transform = Transform3D( 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0 ) -item/0/shapes = [ SubResource( 3 ), Transform3D( 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0 ) ] -item/0/navmesh_transform = Transform3D( 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0 ) -item/0/preview = SubResource( 2 ) +item/0/mesh = ExtResource( "1" ) +item/0/mesh_transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0) +item/0/shapes = [SubResource( "3" ), Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0)] +item/0/navmesh_transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0) +item/0/preview = SubResource( "2" ) diff --git a/3d/kinematic_character/default_env.tres b/3d/kinematic_character/default_env.tres index 5ced2f7a..5cd11c4a 100644 --- a/3d/kinematic_character/default_env.tres +++ b/3d/kinematic_character/default_env.tres @@ -1,26 +1,23 @@ -[gd_resource type="Environment" load_steps=2 format=2] +[gd_resource type="Environment" load_steps=3 format=3 uid="uid://bupmwdx23k178"] -[sub_resource type="Sky" id=1] -radiance_size = 1 -sky_top_color = Color( 0.219882, 0.193725, 0.366471, 1 ) -sky_horizon_color = Color( 0.342622, 0.0655002, 0.558935, 1 ) -sky_curve = 0.0490365 -ground_bottom_color = Color( 0.0342205, 0.0333383, 0.0322154, 1 ) -ground_horizon_color = Color( 0.148289, 0.138067, 0.125119, 1 ) +[sub_resource type="ProceduralSkyMaterial" id="ProceduralSkyMaterial_fiix7"] +sky_top_color = Color(0.219608, 0.192157, 0.364706, 1) +sky_horizon_color = Color(0.341176, 0.0666667, 0.560784, 1) +ground_bottom_color = Color(0.0352941, 0.0352941, 0.0313726, 1) +ground_horizon_color = Color(0.14902, 0.137255, 0.12549, 1) ground_curve = 0.25 -sun_latitude = 55.0 -sun_longitude = -80.0 -texture_size = 0 + +[sub_resource type="Sky" id="1"] +sky_material = SubResource( "ProceduralSkyMaterial_fiix7" ) +radiance_size = 1 [resource] background_mode = 2 -background_sky = SubResource( 1 ) +sky = SubResource( "1" ) ambient_light_energy = 5.0 tonemap_mode = 2 tonemap_white = 6.0 -ssao_blur = 1 -glow_levels/7 = true +glow_levels/7 = 1.0 glow_strength = 0.79 glow_bloom = 1.0 glow_blend_mode = 0 -glow_bicubic_upscale = true diff --git a/3d/kinematic_character/icon.png.import b/3d/kinematic_character/icon.png.import index 889af9df..5a675c93 100644 --- a/3d/kinematic_character/icon.png.import +++ b/3d/kinematic_character/icon.png.import @@ -1,8 +1,9 @@ [remap] importer="texture" -type="StreamTexture2D" -path="res://.godot/imported/icon.png-487276ed1e3a0c39cad0279d744ee560.stex" +type="CompressedTexture2D" +uid="uid://byb840khaa0ko" +path="res://.godot/imported/icon.png-487276ed1e3a0c39cad0279d744ee560.ctex" metadata={ "vram_texture": false } @@ -10,26 +11,23 @@ metadata={ [deps] source_file="res://icon.png" -dest_files=["res://.godot/imported/icon.png-487276ed1e3a0c39cad0279d744ee560.stex"] +dest_files=["res://.godot/imported/icon.png-487276ed1e3a0c39cad0279d744ee560.ctex"] [params] compress/mode=0 compress/lossy_quality=0.7 -compress/hdr_mode=0 +compress/hdr_compression=1 compress/bptc_ldr=0 compress/normal_map=0 -flags/repeat=0 -flags/filter=true -flags/mipmaps=false -flags/anisotropic=false -flags/srgb=2 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" process/fix_alpha_border=true process/premult_alpha=false -process/HDR_as_SRGB=false -process/invert_color=false process/normal_map_invert_y=false -stream=false -size_limit=0 -detect_3d=true -svg/scale=1.0 +process/hdr_as_srgb=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/3d/kinematic_character/level.tscn b/3d/kinematic_character/level.tscn index 6dc86ec6..116b3dd2 100644 --- a/3d/kinematic_character/level.tscn +++ b/3d/kinematic_character/level.tscn @@ -1,23 +1,23 @@ -[gd_scene load_steps=9 format=2] +[gd_scene load_steps=10 format=3 uid="uid://cucm487dww55a"] -[ext_resource path="res://cubelib.tres" type="MeshLibrary" id=1] -[ext_resource path="res://player/cubio.tscn" type="PackedScene" id=2] -[ext_resource path="res://models/cube.mesh" type="ArrayMesh" id=3] -[ext_resource path="res://models/mushroom.glb" type="PackedScene" id=5] +[ext_resource type="MeshLibrary" uid="uid://cnxehnqppo36s" path="res://cubelib.tres" id="1"] +[ext_resource type="PackedScene" uid="uid://c1j6vfe3s2bq8" path="res://player/cubio.tscn" id="2"] +[ext_resource type="ArrayMesh" uid="uid://ba7dqpj07mlsy" path="res://models/cube.mesh" id="3"] +[ext_resource type="PackedScene" uid="uid://d1q53hmtxcdgn" path="res://models/mushroom.glb" id="5"] +[ext_resource type="Environment" uid="uid://bupmwdx23k178" path="res://default_env.tres" id="5_3bi5f"] -[sub_resource type="BoxShape3D" id=1] +[sub_resource type="BoxShape3D" id="1"] margin = 0.001 -extents = Vector3(0.5, 0.5, 0.5) -[sub_resource type="Animation" id=2] +[sub_resource type="Animation" id="2"] length = 10.0 -loop = true +loop_mode = 1 tracks/0/type = "value" +tracks/0/imported = false +tracks/0/enabled = true tracks/0/path = NodePath(".:position") tracks/0/interp = 1 tracks/0/loop_wrap = true -tracks/0/imported = false -tracks/0/enabled = true tracks/0/keys = { "times": PackedFloat32Array(0, 1, 4, 6, 9, 10), "transitions": PackedFloat32Array(1, -2, 1, -2, 1, 1), @@ -25,15 +25,15 @@ tracks/0/keys = { "values": [Vector3(0.5, 4.5, -2.5), Vector3(0.5, 4.5, -2.5), Vector3(0.5, 8.5, -2.5), Vector3(0.5, 8.5, -2.5), Vector3(0.5, 4.5, -2.5), Vector3(0.5, 4.5, -2.5)] } -[sub_resource type="Animation" id=3] +[sub_resource type="Animation" id="3"] length = 10.0 -loop = true +loop_mode = 1 tracks/0/type = "value" +tracks/0/imported = false +tracks/0/enabled = true tracks/0/path = NodePath(".:position") tracks/0/interp = 1 tracks/0/loop_wrap = true -tracks/0/imported = false -tracks/0/enabled = true tracks/0/keys = { "times": PackedFloat32Array(0, 2, 4.5, 6, 9), "transitions": PackedFloat32Array(1, -2, 1, -2, 1), @@ -41,7 +41,7 @@ tracks/0/keys = { "values": [Vector3(-3.5, 8.5, 4.5), Vector3(-3.5, 8.5, 4.5), Vector3(3.5, 8.5, 4.5), Vector3(3.5, 8.5, 4.5), Vector3(-3.5, 8.5, 4.5)] } -[sub_resource type="BoxShape3D" id=4] +[sub_resource type="BoxShape3D" id="4"] [node name="World3D" type="Node3D"] __meta__ = { @@ -49,7 +49,7 @@ __meta__ = { } [node name="GridMap" type="GridMap" parent="."] -mesh_library = ExtResource( 1 ) +mesh_library = ExtResource( "1" ) cell_size = Vector3(1, 1, 1) data = { "cells": PackedInt32Array(0, 0, 0, 1, 0, 0, 2, 0, 0, 3, 0, 0, 4, 0, 0, 65530, 0, 0, 65531, 0, 0, 65532, 0, 0, 65533, 0, 0, 65534, 0, 0, 65535, 0, 0, 196603, 0, 0, 196604, 0, 0, 524292, 0, 0, 589820, 0, 0, 786432, 0, 0, 851967, 0, 0, 0, 1, 0, 1, 1, 0, 2, 1, 0, 3, 1, 0, 4, 1, 0, 65530, 1, 0, 65531, 1, 0, 65532, 1, 0, 65533, 1, 0, 65534, 1, 0, 65535, 1, 0, 131075, 1, 0, 196603, 1, 0, 196604, 1, 0, 524292, 1, 0, 589820, 1, 0, 786432, 1, 0, 851967, 1, 0, 0, 2, 0, 1, 2, 0, 2, 2, 0, 3, 2, 0, 4, 2, 0, 65530, 2, 0, 65531, 2, 0, 65532, 2, 0, 65533, 2, 0, 65534, 2, 0, 65535, 2, 0, 131075, 2, 0, 196603, 2, 0, 196604, 2, 0, 524292, 2, 0, 589820, 2, 0, 786432, 2, 0, 786433, 2, 0, 851966, 2, 0, 851967, 2, 0, 0, 3, 0, 1, 3, 0, 2, 3, 0, 3, 3, 0, 4, 3, 0, 65530, 3, 0, 65531, 3, 0, 65532, 3, 0, 65533, 3, 0, 65534, 3, 0, 65535, 3, 0, 196603, 3, 0, 524291, 3, 0, 524292, 3, 0, 589820, 3, 0, 786432, 3, 0, 786433, 3, 0, 851966, 3, 0, 851967, 3, 0, 0, 4, 0, 1, 4, 0, 2, 4, 0, 3, 4, 0, 4, 4, 0, 65530, 4, 0, 65531, 4, 0, 65532, 4, 0, 65533, 4, 0, 65534, 4, 0, 65535, 4, 0, 196603, 4, 0, 786432, 4, 0, 851967, 4, 0, 0, 5, 0, 1, 5, 0, 2, 5, 0, 3, 5, 0, 4, 5, 0, 65530, 5, 0, 65531, 5, 0, 65532, 5, 0, 65533, 5, 0, 65534, 5, 0, 65535, 5, 0, 131075, 5, 0, 0, 6, 0, 1, 6, 0, 2, 6, 0, 3, 6, 0, 4, 6, 0, 65530, 6, 0, 65531, 6, 0, 65532, 6, 0, 65533, 6, 0, 65534, 6, 0, 65535, 6, 0, 131075, 6, 0, 196603, 6, 0, 0, 7, 0, 1, 7, 0, 2, 7, 0, 3, 7, 0, 4, 7, 0, 65530, 7, 0, 65531, 7, 0, 65532, 7, 0, 65533, 7, 0, 65534, 7, 0, 65535, 7, 0, 131075, 7, 0, 196603, 7, 0, 0, 8, 0, 1, 8, 0, 2, 8, 0, 3, 8, 0, 4, 8, 0, 65530, 8, 0, 65531, 8, 0, 65532, 8, 0, 65533, 8, 0, 65534, 8, 0, 65535, 8, 0, 131075, 8, 0, 196603, 8, 0, 196604, 8, 0, 0, 9, 0, 1, 9, 0, 2, 9, 0, 3, 9, 0, 4, 9, 0, 65530, 9, 0, 65531, 9, 0, 65532, 9, 0, 65533, 9, 0, 65534, 9, 0, 65535, 9, 0, 131073, 9, 0, 131074, 9, 0, 131075, 9, 0, 196603, 9, 0, 196604, 9, 0, 196605, 9, 0, 196608, 9, 0, 262142, 9, 0, 0, 10, 0, 1, 10, 0, 2, 10, 0, 3, 10, 0, 4, 10, 0, 65530, 10, 0, 65531, 10, 0, 65532, 10, 0, 65533, 10, 0, 65534, 10, 0, 65535, 10, 0, 0, 11, 0, 1, 11, 0, 2, 11, 0, 3, 11, 0, 4, 11, 0, 65530, 11, 0, 65531, 11, 0, 65532, 11, 0, 65533, 11, 0, 65534, 11, 0, 65535, 11, 0, 0, 65532, 0, 1, 65532, 0, 2, 65532, 0, 3, 65532, 0, 4, 65532, 0, 65530, 65532, 0, 65531, 65532, 0, 65532, 65532, 0, 65533, 65532, 0, 65534, 65532, 0, 65535, 65532, 0, 0, 65533, 0, 1, 65533, 0, 2, 65533, 0, 3, 65533, 0, 4, 65533, 0, 65530, 65533, 0, 65531, 65533, 0, 65532, 65533, 0, 65533, 65533, 0, 65534, 65533, 0, 65535, 65533, 0, 262145, 65533, 0, 262146, 65533, 0, 262147, 65533, 0, 589822, 65533, 0, 589823, 65533, 0, 655363, 65533, 0, 655364, 65533, 0, 720897, 65533, 0, 720898, 65533, 0, 786432, 65533, 0, 851967, 65533, 0, 0, 65534, 0, 1, 65534, 0, 2, 65534, 0, 3, 65534, 0, 4, 65534, 0, 65530, 65534, 0, 65531, 65534, 0, 65532, 65534, 0, 65533, 65534, 0, 65534, 65534, 0, 65535, 65534, 0, 65536, 65534, 0, 131071, 65534, 0, 196603, 65534, 0, 196604, 65534, 0, 196605, 65534, 0, 196606, 65534, 0, 196607, 65534, 0, 589822, 65534, 0, 589828, 65534, 0, 786432, 65534, 0, 851967, 65534, 0, 0, 65535, 0, 1, 65535, 0, 2, 65535, 0, 3, 65535, 0, 4, 65535, 0, 65530, 65535, 0, 65531, 65535, 0, 65532, 65535, 0, 65533, 65535, 0, 65534, 65535, 0, 65535, 65535, 0, 196603, 65535, 0, 196604, 65535, 0, 196611, 65535, 0, 589820, 65535, 0, 589821, 65535, 0, 589822, 65535, 0, 589828, 65535, 0, 786432, 65535, 0, 851967, 65535, 0) @@ -63,14 +63,15 @@ __meta__ = { transform = Transform3D(-0.173649, 0.806707, -0.564863, 0, 0.573576, 0.819152, 0.984808, 0.142244, -0.0996007, 0, 0, 0) light_energy = 1.3 shadow_enabled = true -shadow_bias = -0.02 shadow_reverse_cull_face = true -directional_shadow_mode = 0 -directional_shadow_normal_bias = 0.0 -directional_shadow_bias_split_scale = 0.0 -directional_shadow_max_distance = 20.0 +directional_shadow_split_1 = 0.05 +directional_shadow_split_2 = 0.1 +directional_shadow_split_3 = 0.2 +directional_shadow_blend_splits = true +directional_shadow_fade_start = 0.25 +directional_shadow_max_distance = 50.0 -[node name="Cubio" parent="." instance=ExtResource( 2 )] +[node name="Cubio" parent="." instance=ExtResource( "2" )] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -1.5, 2, 4) [node name="Elevator1" type="CharacterBody3D" parent="."] @@ -78,40 +79,41 @@ transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0.5, 4.5, -2.5) input_capture_on_drag = true [node name="Mesh" type="MeshInstance3D" parent="Elevator1"] -mesh = ExtResource( 3 ) -surface_material_override/0 = null +mesh = ExtResource( "3" ) [node name="CollisionShape3D" type="CollisionShape3D" parent="Elevator1"] -shape = SubResource( 1 ) +shape = SubResource( "1" ) [node name="AnimationPlayer" type="AnimationPlayer" parent="Elevator1"] autoplay = "updown1" playback_process_mode = 0 -anims/updown1 = SubResource( 2 ) +anims/updown1 = SubResource( "2" ) [node name="Elevator2" type="CharacterBody3D" parent="."] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -3.5, 8.5, 4.5) [node name="Mesh" type="MeshInstance3D" parent="Elevator2"] -mesh = ExtResource( 3 ) -surface_material_override/0 = null +mesh = ExtResource( "3" ) [node name="CollisionShape3D" type="CollisionShape3D" parent="Elevator2"] -shape = SubResource( 1 ) +shape = SubResource( "1" ) [node name="AnimationPlayer" type="AnimationPlayer" parent="Elevator2"] autoplay = "side" playback_process_mode = 0 -anims/side = SubResource( 3 ) -anims/updown1 = SubResource( 2 ) +anims/side = SubResource( "3" ) +anims/updown1 = SubResource( "2" ) [node name="Princess" type="Area3D" parent="."] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 13.25, 3) -[node name="Mushroom" parent="Princess" instance=ExtResource( 5 )] +[node name="Mushroom" parent="Princess" instance=ExtResource( "5" )] [node name="CollisionShape3D" type="CollisionShape3D" parent="Princess"] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 1, 0) -shape = SubResource( 4 ) +shape = SubResource( "4" ) + +[node name="WorldEnvironment" type="WorldEnvironment" parent="."] +environment = ExtResource( "5_3bi5f" ) [connection signal="body_entered" from="Princess" to="Cubio" method="_on_tcube_body_entered"] diff --git a/3d/kinematic_character/models/cube.glb.import b/3d/kinematic_character/models/cube.glb.import index 2c490b1e..8705f40c 100644 --- a/3d/kinematic_character/models/cube.glb.import +++ b/3d/kinematic_character/models/cube.glb.import @@ -1,7 +1,9 @@ [remap] importer="scene" +importer_version=1 type="PackedScene" +uid="uid://r2l582daw2if" path="res://.godot/imported/cube.glb-c6bf6ebacd621473d1ca4ff4a368b9dc.scn" [deps] @@ -14,1052 +16,13 @@ dest_files=["res://.godot/imported/cube.glb-c6bf6ebacd621473d1ca4ff4a368b9dc.scn nodes/root_type="Node3D" nodes/root_name="Cube" nodes/root_scale=1.0 -nodes/custom_script="" -nodes/storage=0 -nodes/use_legacy_names=true -materials/location=1 -materials/storage=2 -materials/keep_on_reimport=true -meshes/octahedral_compression=true -meshes/compress=true meshes/ensure_tangents=true -meshes/storage=0 +meshes/generate_lods=true +meshes/create_shadow_meshes=true meshes/light_baking=0 meshes/lightmap_texel_size=0.1 skins/use_named_skins=true -external_files/store_in_subdir=false animation/import=false animation/fps=15 -animation/filter_script="" -animation/storage=false -animation/keep_custom_tracks=false -animation/optimizer/enabled=true -animation/optimizer/max_linear_error=0.05 -animation/optimizer/max_angular_error=0.01 -animation/optimizer/max_angle=22 -animation/optimizer/remove_unused_tracks=true -animation/clips/amount=0 -animation/clip_1/name="" -animation/clip_1/start_frame=0 -animation/clip_1/end_frame=0 -animation/clip_1/loops=false -animation/clip_2/name="" -animation/clip_2/start_frame=0 -animation/clip_2/end_frame=0 -animation/clip_2/loops=false -animation/clip_3/name="" -animation/clip_3/start_frame=0 -animation/clip_3/end_frame=0 -animation/clip_3/loops=false -animation/clip_4/name="" -animation/clip_4/start_frame=0 -animation/clip_4/end_frame=0 -animation/clip_4/loops=false -animation/clip_5/name="" -animation/clip_5/start_frame=0 -animation/clip_5/end_frame=0 -animation/clip_5/loops=false -animation/clip_6/name="" -animation/clip_6/start_frame=0 -animation/clip_6/end_frame=0 -animation/clip_6/loops=false -animation/clip_7/name="" -animation/clip_7/start_frame=0 -animation/clip_7/end_frame=0 -animation/clip_7/loops=false -animation/clip_8/name="" -animation/clip_8/start_frame=0 -animation/clip_8/end_frame=0 -animation/clip_8/loops=false -animation/clip_9/name="" -animation/clip_9/start_frame=0 -animation/clip_9/end_frame=0 -animation/clip_9/loops=false -animation/clip_10/name="" -animation/clip_10/start_frame=0 -animation/clip_10/end_frame=0 -animation/clip_10/loops=false -animation/clip_11/name="" -animation/clip_11/start_frame=0 -animation/clip_11/end_frame=0 -animation/clip_11/loops=false -animation/clip_12/name="" -animation/clip_12/start_frame=0 -animation/clip_12/end_frame=0 -animation/clip_12/loops=false -animation/clip_13/name="" -animation/clip_13/start_frame=0 -animation/clip_13/end_frame=0 -animation/clip_13/loops=false -animation/clip_14/name="" -animation/clip_14/start_frame=0 -animation/clip_14/end_frame=0 -animation/clip_14/loops=false -animation/clip_15/name="" -animation/clip_15/start_frame=0 -animation/clip_15/end_frame=0 -animation/clip_15/loops=false -animation/clip_16/name="" -animation/clip_16/start_frame=0 -animation/clip_16/end_frame=0 -animation/clip_16/loops=false -animation/clip_17/name="" -animation/clip_17/start_frame=0 -animation/clip_17/end_frame=0 -animation/clip_17/loops=false -animation/clip_18/name="" -animation/clip_18/start_frame=0 -animation/clip_18/end_frame=0 -animation/clip_18/loops=false -animation/clip_19/name="" -animation/clip_19/start_frame=0 -animation/clip_19/end_frame=0 -animation/clip_19/loops=false -animation/clip_20/name="" -animation/clip_20/start_frame=0 -animation/clip_20/end_frame=0 -animation/clip_20/loops=false -animation/clip_21/name="" -animation/clip_21/start_frame=0 -animation/clip_21/end_frame=0 -animation/clip_21/loops=false -animation/clip_22/name="" -animation/clip_22/start_frame=0 -animation/clip_22/end_frame=0 -animation/clip_22/loops=false -animation/clip_23/name="" -animation/clip_23/start_frame=0 -animation/clip_23/end_frame=0 -animation/clip_23/loops=false -animation/clip_24/name="" -animation/clip_24/start_frame=0 -animation/clip_24/end_frame=0 -animation/clip_24/loops=false -animation/clip_25/name="" -animation/clip_25/start_frame=0 -animation/clip_25/end_frame=0 -animation/clip_25/loops=false -animation/clip_26/name="" -animation/clip_26/start_frame=0 -animation/clip_26/end_frame=0 -animation/clip_26/loops=false -animation/clip_27/name="" -animation/clip_27/start_frame=0 -animation/clip_27/end_frame=0 -animation/clip_27/loops=false -animation/clip_28/name="" -animation/clip_28/start_frame=0 -animation/clip_28/end_frame=0 -animation/clip_28/loops=false -animation/clip_29/name="" -animation/clip_29/start_frame=0 -animation/clip_29/end_frame=0 -animation/clip_29/loops=false -animation/clip_30/name="" -animation/clip_30/start_frame=0 -animation/clip_30/end_frame=0 -animation/clip_30/loops=false -animation/clip_31/name="" -animation/clip_31/start_frame=0 -animation/clip_31/end_frame=0 -animation/clip_31/loops=false -animation/clip_32/name="" -animation/clip_32/start_frame=0 -animation/clip_32/end_frame=0 -animation/clip_32/loops=false -animation/clip_33/name="" -animation/clip_33/start_frame=0 -animation/clip_33/end_frame=0 -animation/clip_33/loops=false -animation/clip_34/name="" -animation/clip_34/start_frame=0 -animation/clip_34/end_frame=0 -animation/clip_34/loops=false -animation/clip_35/name="" -animation/clip_35/start_frame=0 -animation/clip_35/end_frame=0 -animation/clip_35/loops=false -animation/clip_36/name="" -animation/clip_36/start_frame=0 -animation/clip_36/end_frame=0 -animation/clip_36/loops=false -animation/clip_37/name="" -animation/clip_37/start_frame=0 -animation/clip_37/end_frame=0 -animation/clip_37/loops=false -animation/clip_38/name="" -animation/clip_38/start_frame=0 -animation/clip_38/end_frame=0 -animation/clip_38/loops=false -animation/clip_39/name="" -animation/clip_39/start_frame=0 -animation/clip_39/end_frame=0 -animation/clip_39/loops=false -animation/clip_40/name="" -animation/clip_40/start_frame=0 -animation/clip_40/end_frame=0 -animation/clip_40/loops=false -animation/clip_41/name="" -animation/clip_41/start_frame=0 -animation/clip_41/end_frame=0 -animation/clip_41/loops=false -animation/clip_42/name="" -animation/clip_42/start_frame=0 -animation/clip_42/end_frame=0 -animation/clip_42/loops=false -animation/clip_43/name="" -animation/clip_43/start_frame=0 -animation/clip_43/end_frame=0 -animation/clip_43/loops=false -animation/clip_44/name="" -animation/clip_44/start_frame=0 -animation/clip_44/end_frame=0 -animation/clip_44/loops=false -animation/clip_45/name="" -animation/clip_45/start_frame=0 -animation/clip_45/end_frame=0 -animation/clip_45/loops=false -animation/clip_46/name="" -animation/clip_46/start_frame=0 -animation/clip_46/end_frame=0 -animation/clip_46/loops=false -animation/clip_47/name="" -animation/clip_47/start_frame=0 -animation/clip_47/end_frame=0 -animation/clip_47/loops=false -animation/clip_48/name="" -animation/clip_48/start_frame=0 -animation/clip_48/end_frame=0 -animation/clip_48/loops=false -animation/clip_49/name="" -animation/clip_49/start_frame=0 -animation/clip_49/end_frame=0 -animation/clip_49/loops=false -animation/clip_50/name="" -animation/clip_50/start_frame=0 -animation/clip_50/end_frame=0 -animation/clip_50/loops=false -animation/clip_51/name="" -animation/clip_51/start_frame=0 -animation/clip_51/end_frame=0 -animation/clip_51/loops=false -animation/clip_52/name="" -animation/clip_52/start_frame=0 -animation/clip_52/end_frame=0 -animation/clip_52/loops=false -animation/clip_53/name="" -animation/clip_53/start_frame=0 -animation/clip_53/end_frame=0 -animation/clip_53/loops=false -animation/clip_54/name="" -animation/clip_54/start_frame=0 -animation/clip_54/end_frame=0 -animation/clip_54/loops=false -animation/clip_55/name="" -animation/clip_55/start_frame=0 -animation/clip_55/end_frame=0 -animation/clip_55/loops=false -animation/clip_56/name="" -animation/clip_56/start_frame=0 -animation/clip_56/end_frame=0 -animation/clip_56/loops=false -animation/clip_57/name="" -animation/clip_57/start_frame=0 -animation/clip_57/end_frame=0 -animation/clip_57/loops=false -animation/clip_58/name="" -animation/clip_58/start_frame=0 -animation/clip_58/end_frame=0 -animation/clip_58/loops=false -animation/clip_59/name="" -animation/clip_59/start_frame=0 -animation/clip_59/end_frame=0 -animation/clip_59/loops=false -animation/clip_60/name="" -animation/clip_60/start_frame=0 -animation/clip_60/end_frame=0 -animation/clip_60/loops=false -animation/clip_61/name="" -animation/clip_61/start_frame=0 -animation/clip_61/end_frame=0 -animation/clip_61/loops=false -animation/clip_62/name="" -animation/clip_62/start_frame=0 -animation/clip_62/end_frame=0 -animation/clip_62/loops=false -animation/clip_63/name="" -animation/clip_63/start_frame=0 -animation/clip_63/end_frame=0 -animation/clip_63/loops=false -animation/clip_64/name="" -animation/clip_64/start_frame=0 -animation/clip_64/end_frame=0 -animation/clip_64/loops=false -animation/clip_65/name="" -animation/clip_65/start_frame=0 -animation/clip_65/end_frame=0 -animation/clip_65/loops=false -animation/clip_66/name="" -animation/clip_66/start_frame=0 -animation/clip_66/end_frame=0 -animation/clip_66/loops=false -animation/clip_67/name="" -animation/clip_67/start_frame=0 -animation/clip_67/end_frame=0 -animation/clip_67/loops=false -animation/clip_68/name="" -animation/clip_68/start_frame=0 -animation/clip_68/end_frame=0 -animation/clip_68/loops=false -animation/clip_69/name="" -animation/clip_69/start_frame=0 -animation/clip_69/end_frame=0 -animation/clip_69/loops=false -animation/clip_70/name="" -animation/clip_70/start_frame=0 -animation/clip_70/end_frame=0 -animation/clip_70/loops=false -animation/clip_71/name="" -animation/clip_71/start_frame=0 -animation/clip_71/end_frame=0 -animation/clip_71/loops=false -animation/clip_72/name="" -animation/clip_72/start_frame=0 -animation/clip_72/end_frame=0 -animation/clip_72/loops=false -animation/clip_73/name="" -animation/clip_73/start_frame=0 -animation/clip_73/end_frame=0 -animation/clip_73/loops=false -animation/clip_74/name="" -animation/clip_74/start_frame=0 -animation/clip_74/end_frame=0 -animation/clip_74/loops=false -animation/clip_75/name="" -animation/clip_75/start_frame=0 -animation/clip_75/end_frame=0 -animation/clip_75/loops=false -animation/clip_76/name="" -animation/clip_76/start_frame=0 -animation/clip_76/end_frame=0 -animation/clip_76/loops=false -animation/clip_77/name="" -animation/clip_77/start_frame=0 -animation/clip_77/end_frame=0 -animation/clip_77/loops=false -animation/clip_78/name="" -animation/clip_78/start_frame=0 -animation/clip_78/end_frame=0 -animation/clip_78/loops=false -animation/clip_79/name="" -animation/clip_79/start_frame=0 -animation/clip_79/end_frame=0 -animation/clip_79/loops=false -animation/clip_80/name="" -animation/clip_80/start_frame=0 -animation/clip_80/end_frame=0 -animation/clip_80/loops=false -animation/clip_81/name="" -animation/clip_81/start_frame=0 -animation/clip_81/end_frame=0 -animation/clip_81/loops=false -animation/clip_82/name="" -animation/clip_82/start_frame=0 -animation/clip_82/end_frame=0 -animation/clip_82/loops=false -animation/clip_83/name="" -animation/clip_83/start_frame=0 -animation/clip_83/end_frame=0 -animation/clip_83/loops=false -animation/clip_84/name="" -animation/clip_84/start_frame=0 -animation/clip_84/end_frame=0 -animation/clip_84/loops=false -animation/clip_85/name="" -animation/clip_85/start_frame=0 -animation/clip_85/end_frame=0 -animation/clip_85/loops=false -animation/clip_86/name="" -animation/clip_86/start_frame=0 -animation/clip_86/end_frame=0 -animation/clip_86/loops=false -animation/clip_87/name="" -animation/clip_87/start_frame=0 -animation/clip_87/end_frame=0 -animation/clip_87/loops=false -animation/clip_88/name="" -animation/clip_88/start_frame=0 -animation/clip_88/end_frame=0 -animation/clip_88/loops=false -animation/clip_89/name="" -animation/clip_89/start_frame=0 -animation/clip_89/end_frame=0 -animation/clip_89/loops=false -animation/clip_90/name="" -animation/clip_90/start_frame=0 -animation/clip_90/end_frame=0 -animation/clip_90/loops=false -animation/clip_91/name="" -animation/clip_91/start_frame=0 -animation/clip_91/end_frame=0 -animation/clip_91/loops=false -animation/clip_92/name="" -animation/clip_92/start_frame=0 -animation/clip_92/end_frame=0 -animation/clip_92/loops=false -animation/clip_93/name="" -animation/clip_93/start_frame=0 -animation/clip_93/end_frame=0 -animation/clip_93/loops=false -animation/clip_94/name="" -animation/clip_94/start_frame=0 -animation/clip_94/end_frame=0 -animation/clip_94/loops=false -animation/clip_95/name="" -animation/clip_95/start_frame=0 -animation/clip_95/end_frame=0 -animation/clip_95/loops=false -animation/clip_96/name="" -animation/clip_96/start_frame=0 -animation/clip_96/end_frame=0 -animation/clip_96/loops=false -animation/clip_97/name="" -animation/clip_97/start_frame=0 -animation/clip_97/end_frame=0 -animation/clip_97/loops=false -animation/clip_98/name="" -animation/clip_98/start_frame=0 -animation/clip_98/end_frame=0 -animation/clip_98/loops=false -animation/clip_99/name="" -animation/clip_99/start_frame=0 -animation/clip_99/end_frame=0 -animation/clip_99/loops=false -animation/clip_100/name="" -animation/clip_100/start_frame=0 -animation/clip_100/end_frame=0 -animation/clip_100/loops=false -animation/clip_101/name="" -animation/clip_101/start_frame=0 -animation/clip_101/end_frame=0 -animation/clip_101/loops=false -animation/clip_102/name="" -animation/clip_102/start_frame=0 -animation/clip_102/end_frame=0 -animation/clip_102/loops=false -animation/clip_103/name="" -animation/clip_103/start_frame=0 -animation/clip_103/end_frame=0 -animation/clip_103/loops=false -animation/clip_104/name="" -animation/clip_104/start_frame=0 -animation/clip_104/end_frame=0 -animation/clip_104/loops=false -animation/clip_105/name="" -animation/clip_105/start_frame=0 -animation/clip_105/end_frame=0 -animation/clip_105/loops=false -animation/clip_106/name="" -animation/clip_106/start_frame=0 -animation/clip_106/end_frame=0 -animation/clip_106/loops=false -animation/clip_107/name="" -animation/clip_107/start_frame=0 -animation/clip_107/end_frame=0 -animation/clip_107/loops=false -animation/clip_108/name="" -animation/clip_108/start_frame=0 -animation/clip_108/end_frame=0 -animation/clip_108/loops=false -animation/clip_109/name="" -animation/clip_109/start_frame=0 -animation/clip_109/end_frame=0 -animation/clip_109/loops=false -animation/clip_110/name="" -animation/clip_110/start_frame=0 -animation/clip_110/end_frame=0 -animation/clip_110/loops=false -animation/clip_111/name="" -animation/clip_111/start_frame=0 -animation/clip_111/end_frame=0 -animation/clip_111/loops=false -animation/clip_112/name="" -animation/clip_112/start_frame=0 -animation/clip_112/end_frame=0 -animation/clip_112/loops=false -animation/clip_113/name="" -animation/clip_113/start_frame=0 -animation/clip_113/end_frame=0 -animation/clip_113/loops=false -animation/clip_114/name="" -animation/clip_114/start_frame=0 -animation/clip_114/end_frame=0 -animation/clip_114/loops=false -animation/clip_115/name="" -animation/clip_115/start_frame=0 -animation/clip_115/end_frame=0 -animation/clip_115/loops=false -animation/clip_116/name="" -animation/clip_116/start_frame=0 -animation/clip_116/end_frame=0 -animation/clip_116/loops=false -animation/clip_117/name="" -animation/clip_117/start_frame=0 -animation/clip_117/end_frame=0 -animation/clip_117/loops=false -animation/clip_118/name="" -animation/clip_118/start_frame=0 -animation/clip_118/end_frame=0 -animation/clip_118/loops=false -animation/clip_119/name="" -animation/clip_119/start_frame=0 -animation/clip_119/end_frame=0 -animation/clip_119/loops=false -animation/clip_120/name="" -animation/clip_120/start_frame=0 -animation/clip_120/end_frame=0 -animation/clip_120/loops=false -animation/clip_121/name="" -animation/clip_121/start_frame=0 -animation/clip_121/end_frame=0 -animation/clip_121/loops=false -animation/clip_122/name="" -animation/clip_122/start_frame=0 -animation/clip_122/end_frame=0 -animation/clip_122/loops=false -animation/clip_123/name="" -animation/clip_123/start_frame=0 -animation/clip_123/end_frame=0 -animation/clip_123/loops=false -animation/clip_124/name="" -animation/clip_124/start_frame=0 -animation/clip_124/end_frame=0 -animation/clip_124/loops=false -animation/clip_125/name="" -animation/clip_125/start_frame=0 -animation/clip_125/end_frame=0 -animation/clip_125/loops=false -animation/clip_126/name="" -animation/clip_126/start_frame=0 -animation/clip_126/end_frame=0 -animation/clip_126/loops=false -animation/clip_127/name="" -animation/clip_127/start_frame=0 -animation/clip_127/end_frame=0 -animation/clip_127/loops=false -animation/clip_128/name="" -animation/clip_128/start_frame=0 -animation/clip_128/end_frame=0 -animation/clip_128/loops=false -animation/clip_129/name="" -animation/clip_129/start_frame=0 -animation/clip_129/end_frame=0 -animation/clip_129/loops=false -animation/clip_130/name="" -animation/clip_130/start_frame=0 -animation/clip_130/end_frame=0 -animation/clip_130/loops=false -animation/clip_131/name="" -animation/clip_131/start_frame=0 -animation/clip_131/end_frame=0 -animation/clip_131/loops=false -animation/clip_132/name="" -animation/clip_132/start_frame=0 -animation/clip_132/end_frame=0 -animation/clip_132/loops=false -animation/clip_133/name="" -animation/clip_133/start_frame=0 -animation/clip_133/end_frame=0 -animation/clip_133/loops=false -animation/clip_134/name="" -animation/clip_134/start_frame=0 -animation/clip_134/end_frame=0 -animation/clip_134/loops=false -animation/clip_135/name="" -animation/clip_135/start_frame=0 -animation/clip_135/end_frame=0 -animation/clip_135/loops=false -animation/clip_136/name="" -animation/clip_136/start_frame=0 -animation/clip_136/end_frame=0 -animation/clip_136/loops=false -animation/clip_137/name="" -animation/clip_137/start_frame=0 -animation/clip_137/end_frame=0 -animation/clip_137/loops=false -animation/clip_138/name="" -animation/clip_138/start_frame=0 -animation/clip_138/end_frame=0 -animation/clip_138/loops=false -animation/clip_139/name="" -animation/clip_139/start_frame=0 -animation/clip_139/end_frame=0 -animation/clip_139/loops=false -animation/clip_140/name="" -animation/clip_140/start_frame=0 -animation/clip_140/end_frame=0 -animation/clip_140/loops=false -animation/clip_141/name="" -animation/clip_141/start_frame=0 -animation/clip_141/end_frame=0 -animation/clip_141/loops=false -animation/clip_142/name="" -animation/clip_142/start_frame=0 -animation/clip_142/end_frame=0 -animation/clip_142/loops=false -animation/clip_143/name="" -animation/clip_143/start_frame=0 -animation/clip_143/end_frame=0 -animation/clip_143/loops=false -animation/clip_144/name="" -animation/clip_144/start_frame=0 -animation/clip_144/end_frame=0 -animation/clip_144/loops=false -animation/clip_145/name="" -animation/clip_145/start_frame=0 -animation/clip_145/end_frame=0 -animation/clip_145/loops=false -animation/clip_146/name="" -animation/clip_146/start_frame=0 -animation/clip_146/end_frame=0 -animation/clip_146/loops=false -animation/clip_147/name="" -animation/clip_147/start_frame=0 -animation/clip_147/end_frame=0 -animation/clip_147/loops=false -animation/clip_148/name="" -animation/clip_148/start_frame=0 -animation/clip_148/end_frame=0 -animation/clip_148/loops=false -animation/clip_149/name="" -animation/clip_149/start_frame=0 -animation/clip_149/end_frame=0 -animation/clip_149/loops=false -animation/clip_150/name="" -animation/clip_150/start_frame=0 -animation/clip_150/end_frame=0 -animation/clip_150/loops=false -animation/clip_151/name="" -animation/clip_151/start_frame=0 -animation/clip_151/end_frame=0 -animation/clip_151/loops=false -animation/clip_152/name="" -animation/clip_152/start_frame=0 -animation/clip_152/end_frame=0 -animation/clip_152/loops=false -animation/clip_153/name="" -animation/clip_153/start_frame=0 -animation/clip_153/end_frame=0 -animation/clip_153/loops=false -animation/clip_154/name="" -animation/clip_154/start_frame=0 -animation/clip_154/end_frame=0 -animation/clip_154/loops=false -animation/clip_155/name="" -animation/clip_155/start_frame=0 -animation/clip_155/end_frame=0 -animation/clip_155/loops=false -animation/clip_156/name="" -animation/clip_156/start_frame=0 -animation/clip_156/end_frame=0 -animation/clip_156/loops=false -animation/clip_157/name="" -animation/clip_157/start_frame=0 -animation/clip_157/end_frame=0 -animation/clip_157/loops=false -animation/clip_158/name="" -animation/clip_158/start_frame=0 -animation/clip_158/end_frame=0 -animation/clip_158/loops=false -animation/clip_159/name="" -animation/clip_159/start_frame=0 -animation/clip_159/end_frame=0 -animation/clip_159/loops=false -animation/clip_160/name="" -animation/clip_160/start_frame=0 -animation/clip_160/end_frame=0 -animation/clip_160/loops=false -animation/clip_161/name="" -animation/clip_161/start_frame=0 -animation/clip_161/end_frame=0 -animation/clip_161/loops=false -animation/clip_162/name="" -animation/clip_162/start_frame=0 -animation/clip_162/end_frame=0 -animation/clip_162/loops=false -animation/clip_163/name="" -animation/clip_163/start_frame=0 -animation/clip_163/end_frame=0 -animation/clip_163/loops=false -animation/clip_164/name="" -animation/clip_164/start_frame=0 -animation/clip_164/end_frame=0 -animation/clip_164/loops=false -animation/clip_165/name="" -animation/clip_165/start_frame=0 -animation/clip_165/end_frame=0 -animation/clip_165/loops=false -animation/clip_166/name="" -animation/clip_166/start_frame=0 -animation/clip_166/end_frame=0 -animation/clip_166/loops=false -animation/clip_167/name="" -animation/clip_167/start_frame=0 -animation/clip_167/end_frame=0 -animation/clip_167/loops=false -animation/clip_168/name="" -animation/clip_168/start_frame=0 -animation/clip_168/end_frame=0 -animation/clip_168/loops=false -animation/clip_169/name="" -animation/clip_169/start_frame=0 -animation/clip_169/end_frame=0 -animation/clip_169/loops=false -animation/clip_170/name="" -animation/clip_170/start_frame=0 -animation/clip_170/end_frame=0 -animation/clip_170/loops=false -animation/clip_171/name="" -animation/clip_171/start_frame=0 -animation/clip_171/end_frame=0 -animation/clip_171/loops=false -animation/clip_172/name="" -animation/clip_172/start_frame=0 -animation/clip_172/end_frame=0 -animation/clip_172/loops=false -animation/clip_173/name="" -animation/clip_173/start_frame=0 -animation/clip_173/end_frame=0 -animation/clip_173/loops=false -animation/clip_174/name="" -animation/clip_174/start_frame=0 -animation/clip_174/end_frame=0 -animation/clip_174/loops=false -animation/clip_175/name="" -animation/clip_175/start_frame=0 -animation/clip_175/end_frame=0 -animation/clip_175/loops=false -animation/clip_176/name="" -animation/clip_176/start_frame=0 -animation/clip_176/end_frame=0 -animation/clip_176/loops=false -animation/clip_177/name="" -animation/clip_177/start_frame=0 -animation/clip_177/end_frame=0 -animation/clip_177/loops=false -animation/clip_178/name="" -animation/clip_178/start_frame=0 -animation/clip_178/end_frame=0 -animation/clip_178/loops=false -animation/clip_179/name="" -animation/clip_179/start_frame=0 -animation/clip_179/end_frame=0 -animation/clip_179/loops=false -animation/clip_180/name="" -animation/clip_180/start_frame=0 -animation/clip_180/end_frame=0 -animation/clip_180/loops=false -animation/clip_181/name="" -animation/clip_181/start_frame=0 -animation/clip_181/end_frame=0 -animation/clip_181/loops=false -animation/clip_182/name="" -animation/clip_182/start_frame=0 -animation/clip_182/end_frame=0 -animation/clip_182/loops=false -animation/clip_183/name="" -animation/clip_183/start_frame=0 -animation/clip_183/end_frame=0 -animation/clip_183/loops=false -animation/clip_184/name="" -animation/clip_184/start_frame=0 -animation/clip_184/end_frame=0 -animation/clip_184/loops=false -animation/clip_185/name="" -animation/clip_185/start_frame=0 -animation/clip_185/end_frame=0 -animation/clip_185/loops=false -animation/clip_186/name="" -animation/clip_186/start_frame=0 -animation/clip_186/end_frame=0 -animation/clip_186/loops=false -animation/clip_187/name="" -animation/clip_187/start_frame=0 -animation/clip_187/end_frame=0 -animation/clip_187/loops=false -animation/clip_188/name="" -animation/clip_188/start_frame=0 -animation/clip_188/end_frame=0 -animation/clip_188/loops=false -animation/clip_189/name="" -animation/clip_189/start_frame=0 -animation/clip_189/end_frame=0 -animation/clip_189/loops=false -animation/clip_190/name="" -animation/clip_190/start_frame=0 -animation/clip_190/end_frame=0 -animation/clip_190/loops=false -animation/clip_191/name="" -animation/clip_191/start_frame=0 -animation/clip_191/end_frame=0 -animation/clip_191/loops=false -animation/clip_192/name="" -animation/clip_192/start_frame=0 -animation/clip_192/end_frame=0 -animation/clip_192/loops=false -animation/clip_193/name="" -animation/clip_193/start_frame=0 -animation/clip_193/end_frame=0 -animation/clip_193/loops=false -animation/clip_194/name="" -animation/clip_194/start_frame=0 -animation/clip_194/end_frame=0 -animation/clip_194/loops=false -animation/clip_195/name="" -animation/clip_195/start_frame=0 -animation/clip_195/end_frame=0 -animation/clip_195/loops=false -animation/clip_196/name="" -animation/clip_196/start_frame=0 -animation/clip_196/end_frame=0 -animation/clip_196/loops=false -animation/clip_197/name="" -animation/clip_197/start_frame=0 -animation/clip_197/end_frame=0 -animation/clip_197/loops=false -animation/clip_198/name="" -animation/clip_198/start_frame=0 -animation/clip_198/end_frame=0 -animation/clip_198/loops=false -animation/clip_199/name="" -animation/clip_199/start_frame=0 -animation/clip_199/end_frame=0 -animation/clip_199/loops=false -animation/clip_200/name="" -animation/clip_200/start_frame=0 -animation/clip_200/end_frame=0 -animation/clip_200/loops=false -animation/clip_201/name="" -animation/clip_201/start_frame=0 -animation/clip_201/end_frame=0 -animation/clip_201/loops=false -animation/clip_202/name="" -animation/clip_202/start_frame=0 -animation/clip_202/end_frame=0 -animation/clip_202/loops=false -animation/clip_203/name="" -animation/clip_203/start_frame=0 -animation/clip_203/end_frame=0 -animation/clip_203/loops=false -animation/clip_204/name="" -animation/clip_204/start_frame=0 -animation/clip_204/end_frame=0 -animation/clip_204/loops=false -animation/clip_205/name="" -animation/clip_205/start_frame=0 -animation/clip_205/end_frame=0 -animation/clip_205/loops=false -animation/clip_206/name="" -animation/clip_206/start_frame=0 -animation/clip_206/end_frame=0 -animation/clip_206/loops=false -animation/clip_207/name="" -animation/clip_207/start_frame=0 -animation/clip_207/end_frame=0 -animation/clip_207/loops=false -animation/clip_208/name="" -animation/clip_208/start_frame=0 -animation/clip_208/end_frame=0 -animation/clip_208/loops=false -animation/clip_209/name="" -animation/clip_209/start_frame=0 -animation/clip_209/end_frame=0 -animation/clip_209/loops=false -animation/clip_210/name="" -animation/clip_210/start_frame=0 -animation/clip_210/end_frame=0 -animation/clip_210/loops=false -animation/clip_211/name="" -animation/clip_211/start_frame=0 -animation/clip_211/end_frame=0 -animation/clip_211/loops=false -animation/clip_212/name="" -animation/clip_212/start_frame=0 -animation/clip_212/end_frame=0 -animation/clip_212/loops=false -animation/clip_213/name="" -animation/clip_213/start_frame=0 -animation/clip_213/end_frame=0 -animation/clip_213/loops=false -animation/clip_214/name="" -animation/clip_214/start_frame=0 -animation/clip_214/end_frame=0 -animation/clip_214/loops=false -animation/clip_215/name="" -animation/clip_215/start_frame=0 -animation/clip_215/end_frame=0 -animation/clip_215/loops=false -animation/clip_216/name="" -animation/clip_216/start_frame=0 -animation/clip_216/end_frame=0 -animation/clip_216/loops=false -animation/clip_217/name="" -animation/clip_217/start_frame=0 -animation/clip_217/end_frame=0 -animation/clip_217/loops=false -animation/clip_218/name="" -animation/clip_218/start_frame=0 -animation/clip_218/end_frame=0 -animation/clip_218/loops=false -animation/clip_219/name="" -animation/clip_219/start_frame=0 -animation/clip_219/end_frame=0 -animation/clip_219/loops=false -animation/clip_220/name="" -animation/clip_220/start_frame=0 -animation/clip_220/end_frame=0 -animation/clip_220/loops=false -animation/clip_221/name="" -animation/clip_221/start_frame=0 -animation/clip_221/end_frame=0 -animation/clip_221/loops=false -animation/clip_222/name="" -animation/clip_222/start_frame=0 -animation/clip_222/end_frame=0 -animation/clip_222/loops=false -animation/clip_223/name="" -animation/clip_223/start_frame=0 -animation/clip_223/end_frame=0 -animation/clip_223/loops=false -animation/clip_224/name="" -animation/clip_224/start_frame=0 -animation/clip_224/end_frame=0 -animation/clip_224/loops=false -animation/clip_225/name="" -animation/clip_225/start_frame=0 -animation/clip_225/end_frame=0 -animation/clip_225/loops=false -animation/clip_226/name="" -animation/clip_226/start_frame=0 -animation/clip_226/end_frame=0 -animation/clip_226/loops=false -animation/clip_227/name="" -animation/clip_227/start_frame=0 -animation/clip_227/end_frame=0 -animation/clip_227/loops=false -animation/clip_228/name="" -animation/clip_228/start_frame=0 -animation/clip_228/end_frame=0 -animation/clip_228/loops=false -animation/clip_229/name="" -animation/clip_229/start_frame=0 -animation/clip_229/end_frame=0 -animation/clip_229/loops=false -animation/clip_230/name="" -animation/clip_230/start_frame=0 -animation/clip_230/end_frame=0 -animation/clip_230/loops=false -animation/clip_231/name="" -animation/clip_231/start_frame=0 -animation/clip_231/end_frame=0 -animation/clip_231/loops=false -animation/clip_232/name="" -animation/clip_232/start_frame=0 -animation/clip_232/end_frame=0 -animation/clip_232/loops=false -animation/clip_233/name="" -animation/clip_233/start_frame=0 -animation/clip_233/end_frame=0 -animation/clip_233/loops=false -animation/clip_234/name="" -animation/clip_234/start_frame=0 -animation/clip_234/end_frame=0 -animation/clip_234/loops=false -animation/clip_235/name="" -animation/clip_235/start_frame=0 -animation/clip_235/end_frame=0 -animation/clip_235/loops=false -animation/clip_236/name="" -animation/clip_236/start_frame=0 -animation/clip_236/end_frame=0 -animation/clip_236/loops=false -animation/clip_237/name="" -animation/clip_237/start_frame=0 -animation/clip_237/end_frame=0 -animation/clip_237/loops=false -animation/clip_238/name="" -animation/clip_238/start_frame=0 -animation/clip_238/end_frame=0 -animation/clip_238/loops=false -animation/clip_239/name="" -animation/clip_239/start_frame=0 -animation/clip_239/end_frame=0 -animation/clip_239/loops=false -animation/clip_240/name="" -animation/clip_240/start_frame=0 -animation/clip_240/end_frame=0 -animation/clip_240/loops=false -animation/clip_241/name="" -animation/clip_241/start_frame=0 -animation/clip_241/end_frame=0 -animation/clip_241/loops=false -animation/clip_242/name="" -animation/clip_242/start_frame=0 -animation/clip_242/end_frame=0 -animation/clip_242/loops=false -animation/clip_243/name="" -animation/clip_243/start_frame=0 -animation/clip_243/end_frame=0 -animation/clip_243/loops=false -animation/clip_244/name="" -animation/clip_244/start_frame=0 -animation/clip_244/end_frame=0 -animation/clip_244/loops=false -animation/clip_245/name="" -animation/clip_245/start_frame=0 -animation/clip_245/end_frame=0 -animation/clip_245/loops=false -animation/clip_246/name="" -animation/clip_246/start_frame=0 -animation/clip_246/end_frame=0 -animation/clip_246/loops=false -animation/clip_247/name="" -animation/clip_247/start_frame=0 -animation/clip_247/end_frame=0 -animation/clip_247/loops=false -animation/clip_248/name="" -animation/clip_248/start_frame=0 -animation/clip_248/end_frame=0 -animation/clip_248/loops=false -animation/clip_249/name="" -animation/clip_249/start_frame=0 -animation/clip_249/end_frame=0 -animation/clip_249/loops=false -animation/clip_250/name="" -animation/clip_250/start_frame=0 -animation/clip_250/end_frame=0 -animation/clip_250/loops=false -animation/clip_251/name="" -animation/clip_251/start_frame=0 -animation/clip_251/end_frame=0 -animation/clip_251/loops=false -animation/clip_252/name="" -animation/clip_252/start_frame=0 -animation/clip_252/end_frame=0 -animation/clip_252/loops=false -animation/clip_253/name="" -animation/clip_253/start_frame=0 -animation/clip_253/end_frame=0 -animation/clip_253/loops=false -animation/clip_254/name="" -animation/clip_254/start_frame=0 -animation/clip_254/end_frame=0 -animation/clip_254/loops=false -animation/clip_255/name="" -animation/clip_255/start_frame=0 -animation/clip_255/end_frame=0 -animation/clip_255/loops=false -animation/clip_256/name="" -animation/clip_256/start_frame=0 -animation/clip_256/end_frame=0 -animation/clip_256/loops=false +import_script/path="" +_subresources={} diff --git a/3d/kinematic_character/models/cube.mesh b/3d/kinematic_character/models/cube.mesh index 8e773711..1339f204 100644 Binary files a/3d/kinematic_character/models/cube.mesh and b/3d/kinematic_character/models/cube.mesh differ diff --git a/3d/kinematic_character/models/mushroom.glb.import b/3d/kinematic_character/models/mushroom.glb.import index 88bb9e12..eeb1699d 100644 --- a/3d/kinematic_character/models/mushroom.glb.import +++ b/3d/kinematic_character/models/mushroom.glb.import @@ -1,7 +1,9 @@ [remap] importer="scene" +importer_version=1 type="PackedScene" +uid="uid://d1q53hmtxcdgn" path="res://.godot/imported/mushroom.glb-32cf35844b7be6455c0c736b26eb7163.scn" [deps] @@ -14,1052 +16,13 @@ dest_files=["res://.godot/imported/mushroom.glb-32cf35844b7be6455c0c736b26eb7163 nodes/root_type="Node3D" nodes/root_name="Mushroom" nodes/root_scale=1.0 -nodes/custom_script="" -nodes/storage=0 -nodes/use_legacy_names=true -materials/location=1 -materials/storage=0 -materials/keep_on_reimport=true -meshes/octahedral_compression=true -meshes/compress=true meshes/ensure_tangents=true -meshes/storage=0 +meshes/generate_lods=true +meshes/create_shadow_meshes=true meshes/light_baking=0 meshes/lightmap_texel_size=0.1 skins/use_named_skins=true -external_files/store_in_subdir=false animation/import=true animation/fps=15 -animation/filter_script="" -animation/storage=false -animation/keep_custom_tracks=false -animation/optimizer/enabled=true -animation/optimizer/max_linear_error=0.05 -animation/optimizer/max_angular_error=0.01 -animation/optimizer/max_angle=22 -animation/optimizer/remove_unused_tracks=true -animation/clips/amount=0 -animation/clip_1/name="" -animation/clip_1/start_frame=0 -animation/clip_1/end_frame=0 -animation/clip_1/loops=false -animation/clip_2/name="" -animation/clip_2/start_frame=0 -animation/clip_2/end_frame=0 -animation/clip_2/loops=false -animation/clip_3/name="" -animation/clip_3/start_frame=0 -animation/clip_3/end_frame=0 -animation/clip_3/loops=false -animation/clip_4/name="" -animation/clip_4/start_frame=0 -animation/clip_4/end_frame=0 -animation/clip_4/loops=false -animation/clip_5/name="" -animation/clip_5/start_frame=0 -animation/clip_5/end_frame=0 -animation/clip_5/loops=false -animation/clip_6/name="" -animation/clip_6/start_frame=0 -animation/clip_6/end_frame=0 -animation/clip_6/loops=false -animation/clip_7/name="" -animation/clip_7/start_frame=0 -animation/clip_7/end_frame=0 -animation/clip_7/loops=false -animation/clip_8/name="" -animation/clip_8/start_frame=0 -animation/clip_8/end_frame=0 -animation/clip_8/loops=false -animation/clip_9/name="" -animation/clip_9/start_frame=0 -animation/clip_9/end_frame=0 -animation/clip_9/loops=false -animation/clip_10/name="" -animation/clip_10/start_frame=0 -animation/clip_10/end_frame=0 -animation/clip_10/loops=false -animation/clip_11/name="" -animation/clip_11/start_frame=0 -animation/clip_11/end_frame=0 -animation/clip_11/loops=false -animation/clip_12/name="" -animation/clip_12/start_frame=0 -animation/clip_12/end_frame=0 -animation/clip_12/loops=false -animation/clip_13/name="" -animation/clip_13/start_frame=0 -animation/clip_13/end_frame=0 -animation/clip_13/loops=false -animation/clip_14/name="" -animation/clip_14/start_frame=0 -animation/clip_14/end_frame=0 -animation/clip_14/loops=false -animation/clip_15/name="" -animation/clip_15/start_frame=0 -animation/clip_15/end_frame=0 -animation/clip_15/loops=false -animation/clip_16/name="" -animation/clip_16/start_frame=0 -animation/clip_16/end_frame=0 -animation/clip_16/loops=false -animation/clip_17/name="" -animation/clip_17/start_frame=0 -animation/clip_17/end_frame=0 -animation/clip_17/loops=false -animation/clip_18/name="" -animation/clip_18/start_frame=0 -animation/clip_18/end_frame=0 -animation/clip_18/loops=false -animation/clip_19/name="" -animation/clip_19/start_frame=0 -animation/clip_19/end_frame=0 -animation/clip_19/loops=false -animation/clip_20/name="" -animation/clip_20/start_frame=0 -animation/clip_20/end_frame=0 -animation/clip_20/loops=false -animation/clip_21/name="" -animation/clip_21/start_frame=0 -animation/clip_21/end_frame=0 -animation/clip_21/loops=false -animation/clip_22/name="" -animation/clip_22/start_frame=0 -animation/clip_22/end_frame=0 -animation/clip_22/loops=false -animation/clip_23/name="" -animation/clip_23/start_frame=0 -animation/clip_23/end_frame=0 -animation/clip_23/loops=false -animation/clip_24/name="" -animation/clip_24/start_frame=0 -animation/clip_24/end_frame=0 -animation/clip_24/loops=false -animation/clip_25/name="" -animation/clip_25/start_frame=0 -animation/clip_25/end_frame=0 -animation/clip_25/loops=false -animation/clip_26/name="" -animation/clip_26/start_frame=0 -animation/clip_26/end_frame=0 -animation/clip_26/loops=false -animation/clip_27/name="" -animation/clip_27/start_frame=0 -animation/clip_27/end_frame=0 -animation/clip_27/loops=false -animation/clip_28/name="" -animation/clip_28/start_frame=0 -animation/clip_28/end_frame=0 -animation/clip_28/loops=false -animation/clip_29/name="" -animation/clip_29/start_frame=0 -animation/clip_29/end_frame=0 -animation/clip_29/loops=false -animation/clip_30/name="" -animation/clip_30/start_frame=0 -animation/clip_30/end_frame=0 -animation/clip_30/loops=false -animation/clip_31/name="" -animation/clip_31/start_frame=0 -animation/clip_31/end_frame=0 -animation/clip_31/loops=false -animation/clip_32/name="" -animation/clip_32/start_frame=0 -animation/clip_32/end_frame=0 -animation/clip_32/loops=false -animation/clip_33/name="" -animation/clip_33/start_frame=0 -animation/clip_33/end_frame=0 -animation/clip_33/loops=false -animation/clip_34/name="" -animation/clip_34/start_frame=0 -animation/clip_34/end_frame=0 -animation/clip_34/loops=false -animation/clip_35/name="" -animation/clip_35/start_frame=0 -animation/clip_35/end_frame=0 -animation/clip_35/loops=false -animation/clip_36/name="" -animation/clip_36/start_frame=0 -animation/clip_36/end_frame=0 -animation/clip_36/loops=false -animation/clip_37/name="" -animation/clip_37/start_frame=0 -animation/clip_37/end_frame=0 -animation/clip_37/loops=false -animation/clip_38/name="" -animation/clip_38/start_frame=0 -animation/clip_38/end_frame=0 -animation/clip_38/loops=false -animation/clip_39/name="" -animation/clip_39/start_frame=0 -animation/clip_39/end_frame=0 -animation/clip_39/loops=false -animation/clip_40/name="" -animation/clip_40/start_frame=0 -animation/clip_40/end_frame=0 -animation/clip_40/loops=false -animation/clip_41/name="" -animation/clip_41/start_frame=0 -animation/clip_41/end_frame=0 -animation/clip_41/loops=false -animation/clip_42/name="" -animation/clip_42/start_frame=0 -animation/clip_42/end_frame=0 -animation/clip_42/loops=false -animation/clip_43/name="" -animation/clip_43/start_frame=0 -animation/clip_43/end_frame=0 -animation/clip_43/loops=false -animation/clip_44/name="" -animation/clip_44/start_frame=0 -animation/clip_44/end_frame=0 -animation/clip_44/loops=false -animation/clip_45/name="" -animation/clip_45/start_frame=0 -animation/clip_45/end_frame=0 -animation/clip_45/loops=false -animation/clip_46/name="" -animation/clip_46/start_frame=0 -animation/clip_46/end_frame=0 -animation/clip_46/loops=false -animation/clip_47/name="" -animation/clip_47/start_frame=0 -animation/clip_47/end_frame=0 -animation/clip_47/loops=false -animation/clip_48/name="" -animation/clip_48/start_frame=0 -animation/clip_48/end_frame=0 -animation/clip_48/loops=false -animation/clip_49/name="" -animation/clip_49/start_frame=0 -animation/clip_49/end_frame=0 -animation/clip_49/loops=false -animation/clip_50/name="" -animation/clip_50/start_frame=0 -animation/clip_50/end_frame=0 -animation/clip_50/loops=false -animation/clip_51/name="" -animation/clip_51/start_frame=0 -animation/clip_51/end_frame=0 -animation/clip_51/loops=false -animation/clip_52/name="" -animation/clip_52/start_frame=0 -animation/clip_52/end_frame=0 -animation/clip_52/loops=false -animation/clip_53/name="" -animation/clip_53/start_frame=0 -animation/clip_53/end_frame=0 -animation/clip_53/loops=false -animation/clip_54/name="" -animation/clip_54/start_frame=0 -animation/clip_54/end_frame=0 -animation/clip_54/loops=false -animation/clip_55/name="" -animation/clip_55/start_frame=0 -animation/clip_55/end_frame=0 -animation/clip_55/loops=false -animation/clip_56/name="" -animation/clip_56/start_frame=0 -animation/clip_56/end_frame=0 -animation/clip_56/loops=false -animation/clip_57/name="" -animation/clip_57/start_frame=0 -animation/clip_57/end_frame=0 -animation/clip_57/loops=false -animation/clip_58/name="" -animation/clip_58/start_frame=0 -animation/clip_58/end_frame=0 -animation/clip_58/loops=false -animation/clip_59/name="" -animation/clip_59/start_frame=0 -animation/clip_59/end_frame=0 -animation/clip_59/loops=false -animation/clip_60/name="" -animation/clip_60/start_frame=0 -animation/clip_60/end_frame=0 -animation/clip_60/loops=false -animation/clip_61/name="" -animation/clip_61/start_frame=0 -animation/clip_61/end_frame=0 -animation/clip_61/loops=false -animation/clip_62/name="" -animation/clip_62/start_frame=0 -animation/clip_62/end_frame=0 -animation/clip_62/loops=false -animation/clip_63/name="" -animation/clip_63/start_frame=0 -animation/clip_63/end_frame=0 -animation/clip_63/loops=false -animation/clip_64/name="" -animation/clip_64/start_frame=0 -animation/clip_64/end_frame=0 -animation/clip_64/loops=false -animation/clip_65/name="" -animation/clip_65/start_frame=0 -animation/clip_65/end_frame=0 -animation/clip_65/loops=false -animation/clip_66/name="" -animation/clip_66/start_frame=0 -animation/clip_66/end_frame=0 -animation/clip_66/loops=false -animation/clip_67/name="" -animation/clip_67/start_frame=0 -animation/clip_67/end_frame=0 -animation/clip_67/loops=false -animation/clip_68/name="" -animation/clip_68/start_frame=0 -animation/clip_68/end_frame=0 -animation/clip_68/loops=false -animation/clip_69/name="" -animation/clip_69/start_frame=0 -animation/clip_69/end_frame=0 -animation/clip_69/loops=false -animation/clip_70/name="" -animation/clip_70/start_frame=0 -animation/clip_70/end_frame=0 -animation/clip_70/loops=false -animation/clip_71/name="" -animation/clip_71/start_frame=0 -animation/clip_71/end_frame=0 -animation/clip_71/loops=false -animation/clip_72/name="" -animation/clip_72/start_frame=0 -animation/clip_72/end_frame=0 -animation/clip_72/loops=false -animation/clip_73/name="" -animation/clip_73/start_frame=0 -animation/clip_73/end_frame=0 -animation/clip_73/loops=false -animation/clip_74/name="" -animation/clip_74/start_frame=0 -animation/clip_74/end_frame=0 -animation/clip_74/loops=false -animation/clip_75/name="" -animation/clip_75/start_frame=0 -animation/clip_75/end_frame=0 -animation/clip_75/loops=false -animation/clip_76/name="" -animation/clip_76/start_frame=0 -animation/clip_76/end_frame=0 -animation/clip_76/loops=false -animation/clip_77/name="" -animation/clip_77/start_frame=0 -animation/clip_77/end_frame=0 -animation/clip_77/loops=false -animation/clip_78/name="" -animation/clip_78/start_frame=0 -animation/clip_78/end_frame=0 -animation/clip_78/loops=false -animation/clip_79/name="" -animation/clip_79/start_frame=0 -animation/clip_79/end_frame=0 -animation/clip_79/loops=false -animation/clip_80/name="" -animation/clip_80/start_frame=0 -animation/clip_80/end_frame=0 -animation/clip_80/loops=false -animation/clip_81/name="" -animation/clip_81/start_frame=0 -animation/clip_81/end_frame=0 -animation/clip_81/loops=false -animation/clip_82/name="" -animation/clip_82/start_frame=0 -animation/clip_82/end_frame=0 -animation/clip_82/loops=false -animation/clip_83/name="" -animation/clip_83/start_frame=0 -animation/clip_83/end_frame=0 -animation/clip_83/loops=false -animation/clip_84/name="" -animation/clip_84/start_frame=0 -animation/clip_84/end_frame=0 -animation/clip_84/loops=false -animation/clip_85/name="" -animation/clip_85/start_frame=0 -animation/clip_85/end_frame=0 -animation/clip_85/loops=false -animation/clip_86/name="" -animation/clip_86/start_frame=0 -animation/clip_86/end_frame=0 -animation/clip_86/loops=false -animation/clip_87/name="" -animation/clip_87/start_frame=0 -animation/clip_87/end_frame=0 -animation/clip_87/loops=false -animation/clip_88/name="" -animation/clip_88/start_frame=0 -animation/clip_88/end_frame=0 -animation/clip_88/loops=false -animation/clip_89/name="" -animation/clip_89/start_frame=0 -animation/clip_89/end_frame=0 -animation/clip_89/loops=false -animation/clip_90/name="" -animation/clip_90/start_frame=0 -animation/clip_90/end_frame=0 -animation/clip_90/loops=false -animation/clip_91/name="" -animation/clip_91/start_frame=0 -animation/clip_91/end_frame=0 -animation/clip_91/loops=false -animation/clip_92/name="" -animation/clip_92/start_frame=0 -animation/clip_92/end_frame=0 -animation/clip_92/loops=false -animation/clip_93/name="" -animation/clip_93/start_frame=0 -animation/clip_93/end_frame=0 -animation/clip_93/loops=false -animation/clip_94/name="" -animation/clip_94/start_frame=0 -animation/clip_94/end_frame=0 -animation/clip_94/loops=false -animation/clip_95/name="" -animation/clip_95/start_frame=0 -animation/clip_95/end_frame=0 -animation/clip_95/loops=false -animation/clip_96/name="" -animation/clip_96/start_frame=0 -animation/clip_96/end_frame=0 -animation/clip_96/loops=false -animation/clip_97/name="" -animation/clip_97/start_frame=0 -animation/clip_97/end_frame=0 -animation/clip_97/loops=false -animation/clip_98/name="" -animation/clip_98/start_frame=0 -animation/clip_98/end_frame=0 -animation/clip_98/loops=false -animation/clip_99/name="" -animation/clip_99/start_frame=0 -animation/clip_99/end_frame=0 -animation/clip_99/loops=false -animation/clip_100/name="" -animation/clip_100/start_frame=0 -animation/clip_100/end_frame=0 -animation/clip_100/loops=false -animation/clip_101/name="" -animation/clip_101/start_frame=0 -animation/clip_101/end_frame=0 -animation/clip_101/loops=false -animation/clip_102/name="" -animation/clip_102/start_frame=0 -animation/clip_102/end_frame=0 -animation/clip_102/loops=false -animation/clip_103/name="" -animation/clip_103/start_frame=0 -animation/clip_103/end_frame=0 -animation/clip_103/loops=false -animation/clip_104/name="" -animation/clip_104/start_frame=0 -animation/clip_104/end_frame=0 -animation/clip_104/loops=false -animation/clip_105/name="" -animation/clip_105/start_frame=0 -animation/clip_105/end_frame=0 -animation/clip_105/loops=false -animation/clip_106/name="" -animation/clip_106/start_frame=0 -animation/clip_106/end_frame=0 -animation/clip_106/loops=false -animation/clip_107/name="" -animation/clip_107/start_frame=0 -animation/clip_107/end_frame=0 -animation/clip_107/loops=false -animation/clip_108/name="" -animation/clip_108/start_frame=0 -animation/clip_108/end_frame=0 -animation/clip_108/loops=false -animation/clip_109/name="" -animation/clip_109/start_frame=0 -animation/clip_109/end_frame=0 -animation/clip_109/loops=false -animation/clip_110/name="" -animation/clip_110/start_frame=0 -animation/clip_110/end_frame=0 -animation/clip_110/loops=false -animation/clip_111/name="" -animation/clip_111/start_frame=0 -animation/clip_111/end_frame=0 -animation/clip_111/loops=false -animation/clip_112/name="" -animation/clip_112/start_frame=0 -animation/clip_112/end_frame=0 -animation/clip_112/loops=false -animation/clip_113/name="" -animation/clip_113/start_frame=0 -animation/clip_113/end_frame=0 -animation/clip_113/loops=false -animation/clip_114/name="" -animation/clip_114/start_frame=0 -animation/clip_114/end_frame=0 -animation/clip_114/loops=false -animation/clip_115/name="" -animation/clip_115/start_frame=0 -animation/clip_115/end_frame=0 -animation/clip_115/loops=false -animation/clip_116/name="" -animation/clip_116/start_frame=0 -animation/clip_116/end_frame=0 -animation/clip_116/loops=false -animation/clip_117/name="" -animation/clip_117/start_frame=0 -animation/clip_117/end_frame=0 -animation/clip_117/loops=false -animation/clip_118/name="" -animation/clip_118/start_frame=0 -animation/clip_118/end_frame=0 -animation/clip_118/loops=false -animation/clip_119/name="" -animation/clip_119/start_frame=0 -animation/clip_119/end_frame=0 -animation/clip_119/loops=false -animation/clip_120/name="" -animation/clip_120/start_frame=0 -animation/clip_120/end_frame=0 -animation/clip_120/loops=false -animation/clip_121/name="" -animation/clip_121/start_frame=0 -animation/clip_121/end_frame=0 -animation/clip_121/loops=false -animation/clip_122/name="" -animation/clip_122/start_frame=0 -animation/clip_122/end_frame=0 -animation/clip_122/loops=false -animation/clip_123/name="" -animation/clip_123/start_frame=0 -animation/clip_123/end_frame=0 -animation/clip_123/loops=false -animation/clip_124/name="" -animation/clip_124/start_frame=0 -animation/clip_124/end_frame=0 -animation/clip_124/loops=false -animation/clip_125/name="" -animation/clip_125/start_frame=0 -animation/clip_125/end_frame=0 -animation/clip_125/loops=false -animation/clip_126/name="" -animation/clip_126/start_frame=0 -animation/clip_126/end_frame=0 -animation/clip_126/loops=false -animation/clip_127/name="" -animation/clip_127/start_frame=0 -animation/clip_127/end_frame=0 -animation/clip_127/loops=false -animation/clip_128/name="" -animation/clip_128/start_frame=0 -animation/clip_128/end_frame=0 -animation/clip_128/loops=false -animation/clip_129/name="" -animation/clip_129/start_frame=0 -animation/clip_129/end_frame=0 -animation/clip_129/loops=false -animation/clip_130/name="" -animation/clip_130/start_frame=0 -animation/clip_130/end_frame=0 -animation/clip_130/loops=false -animation/clip_131/name="" -animation/clip_131/start_frame=0 -animation/clip_131/end_frame=0 -animation/clip_131/loops=false -animation/clip_132/name="" -animation/clip_132/start_frame=0 -animation/clip_132/end_frame=0 -animation/clip_132/loops=false -animation/clip_133/name="" -animation/clip_133/start_frame=0 -animation/clip_133/end_frame=0 -animation/clip_133/loops=false -animation/clip_134/name="" -animation/clip_134/start_frame=0 -animation/clip_134/end_frame=0 -animation/clip_134/loops=false -animation/clip_135/name="" -animation/clip_135/start_frame=0 -animation/clip_135/end_frame=0 -animation/clip_135/loops=false -animation/clip_136/name="" -animation/clip_136/start_frame=0 -animation/clip_136/end_frame=0 -animation/clip_136/loops=false -animation/clip_137/name="" -animation/clip_137/start_frame=0 -animation/clip_137/end_frame=0 -animation/clip_137/loops=false -animation/clip_138/name="" -animation/clip_138/start_frame=0 -animation/clip_138/end_frame=0 -animation/clip_138/loops=false -animation/clip_139/name="" -animation/clip_139/start_frame=0 -animation/clip_139/end_frame=0 -animation/clip_139/loops=false -animation/clip_140/name="" -animation/clip_140/start_frame=0 -animation/clip_140/end_frame=0 -animation/clip_140/loops=false -animation/clip_141/name="" -animation/clip_141/start_frame=0 -animation/clip_141/end_frame=0 -animation/clip_141/loops=false -animation/clip_142/name="" -animation/clip_142/start_frame=0 -animation/clip_142/end_frame=0 -animation/clip_142/loops=false -animation/clip_143/name="" -animation/clip_143/start_frame=0 -animation/clip_143/end_frame=0 -animation/clip_143/loops=false -animation/clip_144/name="" -animation/clip_144/start_frame=0 -animation/clip_144/end_frame=0 -animation/clip_144/loops=false -animation/clip_145/name="" -animation/clip_145/start_frame=0 -animation/clip_145/end_frame=0 -animation/clip_145/loops=false -animation/clip_146/name="" -animation/clip_146/start_frame=0 -animation/clip_146/end_frame=0 -animation/clip_146/loops=false -animation/clip_147/name="" -animation/clip_147/start_frame=0 -animation/clip_147/end_frame=0 -animation/clip_147/loops=false -animation/clip_148/name="" -animation/clip_148/start_frame=0 -animation/clip_148/end_frame=0 -animation/clip_148/loops=false -animation/clip_149/name="" -animation/clip_149/start_frame=0 -animation/clip_149/end_frame=0 -animation/clip_149/loops=false -animation/clip_150/name="" -animation/clip_150/start_frame=0 -animation/clip_150/end_frame=0 -animation/clip_150/loops=false -animation/clip_151/name="" -animation/clip_151/start_frame=0 -animation/clip_151/end_frame=0 -animation/clip_151/loops=false -animation/clip_152/name="" -animation/clip_152/start_frame=0 -animation/clip_152/end_frame=0 -animation/clip_152/loops=false -animation/clip_153/name="" -animation/clip_153/start_frame=0 -animation/clip_153/end_frame=0 -animation/clip_153/loops=false -animation/clip_154/name="" -animation/clip_154/start_frame=0 -animation/clip_154/end_frame=0 -animation/clip_154/loops=false -animation/clip_155/name="" -animation/clip_155/start_frame=0 -animation/clip_155/end_frame=0 -animation/clip_155/loops=false -animation/clip_156/name="" -animation/clip_156/start_frame=0 -animation/clip_156/end_frame=0 -animation/clip_156/loops=false -animation/clip_157/name="" -animation/clip_157/start_frame=0 -animation/clip_157/end_frame=0 -animation/clip_157/loops=false -animation/clip_158/name="" -animation/clip_158/start_frame=0 -animation/clip_158/end_frame=0 -animation/clip_158/loops=false -animation/clip_159/name="" -animation/clip_159/start_frame=0 -animation/clip_159/end_frame=0 -animation/clip_159/loops=false -animation/clip_160/name="" -animation/clip_160/start_frame=0 -animation/clip_160/end_frame=0 -animation/clip_160/loops=false -animation/clip_161/name="" -animation/clip_161/start_frame=0 -animation/clip_161/end_frame=0 -animation/clip_161/loops=false -animation/clip_162/name="" -animation/clip_162/start_frame=0 -animation/clip_162/end_frame=0 -animation/clip_162/loops=false -animation/clip_163/name="" -animation/clip_163/start_frame=0 -animation/clip_163/end_frame=0 -animation/clip_163/loops=false -animation/clip_164/name="" -animation/clip_164/start_frame=0 -animation/clip_164/end_frame=0 -animation/clip_164/loops=false -animation/clip_165/name="" -animation/clip_165/start_frame=0 -animation/clip_165/end_frame=0 -animation/clip_165/loops=false -animation/clip_166/name="" -animation/clip_166/start_frame=0 -animation/clip_166/end_frame=0 -animation/clip_166/loops=false -animation/clip_167/name="" -animation/clip_167/start_frame=0 -animation/clip_167/end_frame=0 -animation/clip_167/loops=false -animation/clip_168/name="" -animation/clip_168/start_frame=0 -animation/clip_168/end_frame=0 -animation/clip_168/loops=false -animation/clip_169/name="" -animation/clip_169/start_frame=0 -animation/clip_169/end_frame=0 -animation/clip_169/loops=false -animation/clip_170/name="" -animation/clip_170/start_frame=0 -animation/clip_170/end_frame=0 -animation/clip_170/loops=false -animation/clip_171/name="" -animation/clip_171/start_frame=0 -animation/clip_171/end_frame=0 -animation/clip_171/loops=false -animation/clip_172/name="" -animation/clip_172/start_frame=0 -animation/clip_172/end_frame=0 -animation/clip_172/loops=false -animation/clip_173/name="" -animation/clip_173/start_frame=0 -animation/clip_173/end_frame=0 -animation/clip_173/loops=false -animation/clip_174/name="" -animation/clip_174/start_frame=0 -animation/clip_174/end_frame=0 -animation/clip_174/loops=false -animation/clip_175/name="" -animation/clip_175/start_frame=0 -animation/clip_175/end_frame=0 -animation/clip_175/loops=false -animation/clip_176/name="" -animation/clip_176/start_frame=0 -animation/clip_176/end_frame=0 -animation/clip_176/loops=false -animation/clip_177/name="" -animation/clip_177/start_frame=0 -animation/clip_177/end_frame=0 -animation/clip_177/loops=false -animation/clip_178/name="" -animation/clip_178/start_frame=0 -animation/clip_178/end_frame=0 -animation/clip_178/loops=false -animation/clip_179/name="" -animation/clip_179/start_frame=0 -animation/clip_179/end_frame=0 -animation/clip_179/loops=false -animation/clip_180/name="" -animation/clip_180/start_frame=0 -animation/clip_180/end_frame=0 -animation/clip_180/loops=false -animation/clip_181/name="" -animation/clip_181/start_frame=0 -animation/clip_181/end_frame=0 -animation/clip_181/loops=false -animation/clip_182/name="" -animation/clip_182/start_frame=0 -animation/clip_182/end_frame=0 -animation/clip_182/loops=false -animation/clip_183/name="" -animation/clip_183/start_frame=0 -animation/clip_183/end_frame=0 -animation/clip_183/loops=false -animation/clip_184/name="" -animation/clip_184/start_frame=0 -animation/clip_184/end_frame=0 -animation/clip_184/loops=false -animation/clip_185/name="" -animation/clip_185/start_frame=0 -animation/clip_185/end_frame=0 -animation/clip_185/loops=false -animation/clip_186/name="" -animation/clip_186/start_frame=0 -animation/clip_186/end_frame=0 -animation/clip_186/loops=false -animation/clip_187/name="" -animation/clip_187/start_frame=0 -animation/clip_187/end_frame=0 -animation/clip_187/loops=false -animation/clip_188/name="" -animation/clip_188/start_frame=0 -animation/clip_188/end_frame=0 -animation/clip_188/loops=false -animation/clip_189/name="" -animation/clip_189/start_frame=0 -animation/clip_189/end_frame=0 -animation/clip_189/loops=false -animation/clip_190/name="" -animation/clip_190/start_frame=0 -animation/clip_190/end_frame=0 -animation/clip_190/loops=false -animation/clip_191/name="" -animation/clip_191/start_frame=0 -animation/clip_191/end_frame=0 -animation/clip_191/loops=false -animation/clip_192/name="" -animation/clip_192/start_frame=0 -animation/clip_192/end_frame=0 -animation/clip_192/loops=false -animation/clip_193/name="" -animation/clip_193/start_frame=0 -animation/clip_193/end_frame=0 -animation/clip_193/loops=false -animation/clip_194/name="" -animation/clip_194/start_frame=0 -animation/clip_194/end_frame=0 -animation/clip_194/loops=false -animation/clip_195/name="" -animation/clip_195/start_frame=0 -animation/clip_195/end_frame=0 -animation/clip_195/loops=false -animation/clip_196/name="" -animation/clip_196/start_frame=0 -animation/clip_196/end_frame=0 -animation/clip_196/loops=false -animation/clip_197/name="" -animation/clip_197/start_frame=0 -animation/clip_197/end_frame=0 -animation/clip_197/loops=false -animation/clip_198/name="" -animation/clip_198/start_frame=0 -animation/clip_198/end_frame=0 -animation/clip_198/loops=false -animation/clip_199/name="" -animation/clip_199/start_frame=0 -animation/clip_199/end_frame=0 -animation/clip_199/loops=false -animation/clip_200/name="" -animation/clip_200/start_frame=0 -animation/clip_200/end_frame=0 -animation/clip_200/loops=false -animation/clip_201/name="" -animation/clip_201/start_frame=0 -animation/clip_201/end_frame=0 -animation/clip_201/loops=false -animation/clip_202/name="" -animation/clip_202/start_frame=0 -animation/clip_202/end_frame=0 -animation/clip_202/loops=false -animation/clip_203/name="" -animation/clip_203/start_frame=0 -animation/clip_203/end_frame=0 -animation/clip_203/loops=false -animation/clip_204/name="" -animation/clip_204/start_frame=0 -animation/clip_204/end_frame=0 -animation/clip_204/loops=false -animation/clip_205/name="" -animation/clip_205/start_frame=0 -animation/clip_205/end_frame=0 -animation/clip_205/loops=false -animation/clip_206/name="" -animation/clip_206/start_frame=0 -animation/clip_206/end_frame=0 -animation/clip_206/loops=false -animation/clip_207/name="" -animation/clip_207/start_frame=0 -animation/clip_207/end_frame=0 -animation/clip_207/loops=false -animation/clip_208/name="" -animation/clip_208/start_frame=0 -animation/clip_208/end_frame=0 -animation/clip_208/loops=false -animation/clip_209/name="" -animation/clip_209/start_frame=0 -animation/clip_209/end_frame=0 -animation/clip_209/loops=false -animation/clip_210/name="" -animation/clip_210/start_frame=0 -animation/clip_210/end_frame=0 -animation/clip_210/loops=false -animation/clip_211/name="" -animation/clip_211/start_frame=0 -animation/clip_211/end_frame=0 -animation/clip_211/loops=false -animation/clip_212/name="" -animation/clip_212/start_frame=0 -animation/clip_212/end_frame=0 -animation/clip_212/loops=false -animation/clip_213/name="" -animation/clip_213/start_frame=0 -animation/clip_213/end_frame=0 -animation/clip_213/loops=false -animation/clip_214/name="" -animation/clip_214/start_frame=0 -animation/clip_214/end_frame=0 -animation/clip_214/loops=false -animation/clip_215/name="" -animation/clip_215/start_frame=0 -animation/clip_215/end_frame=0 -animation/clip_215/loops=false -animation/clip_216/name="" -animation/clip_216/start_frame=0 -animation/clip_216/end_frame=0 -animation/clip_216/loops=false -animation/clip_217/name="" -animation/clip_217/start_frame=0 -animation/clip_217/end_frame=0 -animation/clip_217/loops=false -animation/clip_218/name="" -animation/clip_218/start_frame=0 -animation/clip_218/end_frame=0 -animation/clip_218/loops=false -animation/clip_219/name="" -animation/clip_219/start_frame=0 -animation/clip_219/end_frame=0 -animation/clip_219/loops=false -animation/clip_220/name="" -animation/clip_220/start_frame=0 -animation/clip_220/end_frame=0 -animation/clip_220/loops=false -animation/clip_221/name="" -animation/clip_221/start_frame=0 -animation/clip_221/end_frame=0 -animation/clip_221/loops=false -animation/clip_222/name="" -animation/clip_222/start_frame=0 -animation/clip_222/end_frame=0 -animation/clip_222/loops=false -animation/clip_223/name="" -animation/clip_223/start_frame=0 -animation/clip_223/end_frame=0 -animation/clip_223/loops=false -animation/clip_224/name="" -animation/clip_224/start_frame=0 -animation/clip_224/end_frame=0 -animation/clip_224/loops=false -animation/clip_225/name="" -animation/clip_225/start_frame=0 -animation/clip_225/end_frame=0 -animation/clip_225/loops=false -animation/clip_226/name="" -animation/clip_226/start_frame=0 -animation/clip_226/end_frame=0 -animation/clip_226/loops=false -animation/clip_227/name="" -animation/clip_227/start_frame=0 -animation/clip_227/end_frame=0 -animation/clip_227/loops=false -animation/clip_228/name="" -animation/clip_228/start_frame=0 -animation/clip_228/end_frame=0 -animation/clip_228/loops=false -animation/clip_229/name="" -animation/clip_229/start_frame=0 -animation/clip_229/end_frame=0 -animation/clip_229/loops=false -animation/clip_230/name="" -animation/clip_230/start_frame=0 -animation/clip_230/end_frame=0 -animation/clip_230/loops=false -animation/clip_231/name="" -animation/clip_231/start_frame=0 -animation/clip_231/end_frame=0 -animation/clip_231/loops=false -animation/clip_232/name="" -animation/clip_232/start_frame=0 -animation/clip_232/end_frame=0 -animation/clip_232/loops=false -animation/clip_233/name="" -animation/clip_233/start_frame=0 -animation/clip_233/end_frame=0 -animation/clip_233/loops=false -animation/clip_234/name="" -animation/clip_234/start_frame=0 -animation/clip_234/end_frame=0 -animation/clip_234/loops=false -animation/clip_235/name="" -animation/clip_235/start_frame=0 -animation/clip_235/end_frame=0 -animation/clip_235/loops=false -animation/clip_236/name="" -animation/clip_236/start_frame=0 -animation/clip_236/end_frame=0 -animation/clip_236/loops=false -animation/clip_237/name="" -animation/clip_237/start_frame=0 -animation/clip_237/end_frame=0 -animation/clip_237/loops=false -animation/clip_238/name="" -animation/clip_238/start_frame=0 -animation/clip_238/end_frame=0 -animation/clip_238/loops=false -animation/clip_239/name="" -animation/clip_239/start_frame=0 -animation/clip_239/end_frame=0 -animation/clip_239/loops=false -animation/clip_240/name="" -animation/clip_240/start_frame=0 -animation/clip_240/end_frame=0 -animation/clip_240/loops=false -animation/clip_241/name="" -animation/clip_241/start_frame=0 -animation/clip_241/end_frame=0 -animation/clip_241/loops=false -animation/clip_242/name="" -animation/clip_242/start_frame=0 -animation/clip_242/end_frame=0 -animation/clip_242/loops=false -animation/clip_243/name="" -animation/clip_243/start_frame=0 -animation/clip_243/end_frame=0 -animation/clip_243/loops=false -animation/clip_244/name="" -animation/clip_244/start_frame=0 -animation/clip_244/end_frame=0 -animation/clip_244/loops=false -animation/clip_245/name="" -animation/clip_245/start_frame=0 -animation/clip_245/end_frame=0 -animation/clip_245/loops=false -animation/clip_246/name="" -animation/clip_246/start_frame=0 -animation/clip_246/end_frame=0 -animation/clip_246/loops=false -animation/clip_247/name="" -animation/clip_247/start_frame=0 -animation/clip_247/end_frame=0 -animation/clip_247/loops=false -animation/clip_248/name="" -animation/clip_248/start_frame=0 -animation/clip_248/end_frame=0 -animation/clip_248/loops=false -animation/clip_249/name="" -animation/clip_249/start_frame=0 -animation/clip_249/end_frame=0 -animation/clip_249/loops=false -animation/clip_250/name="" -animation/clip_250/start_frame=0 -animation/clip_250/end_frame=0 -animation/clip_250/loops=false -animation/clip_251/name="" -animation/clip_251/start_frame=0 -animation/clip_251/end_frame=0 -animation/clip_251/loops=false -animation/clip_252/name="" -animation/clip_252/start_frame=0 -animation/clip_252/end_frame=0 -animation/clip_252/loops=false -animation/clip_253/name="" -animation/clip_253/start_frame=0 -animation/clip_253/end_frame=0 -animation/clip_253/loops=false -animation/clip_254/name="" -animation/clip_254/start_frame=0 -animation/clip_254/end_frame=0 -animation/clip_254/loops=false -animation/clip_255/name="" -animation/clip_255/start_frame=0 -animation/clip_255/end_frame=0 -animation/clip_255/loops=false -animation/clip_256/name="" -animation/clip_256/start_frame=0 -animation/clip_256/end_frame=0 -animation/clip_256/loops=false +import_script/path="" +_subresources={} diff --git a/3d/kinematic_character/models/white_wood.png.import b/3d/kinematic_character/models/white_wood.png.import index ad284fef..19d52610 100644 --- a/3d/kinematic_character/models/white_wood.png.import +++ b/3d/kinematic_character/models/white_wood.png.import @@ -1,38 +1,35 @@ [remap] importer="texture" -type="StreamTexture2D" -path.s3tc="res://.godot/imported/white_wood.png-821b7bf9b3881778c9bff1c965d8a87c.s3tc.stex" -path.etc2="res://.godot/imported/white_wood.png-821b7bf9b3881778c9bff1c965d8a87c.etc2.stex" -path.etc="res://.godot/imported/white_wood.png-821b7bf9b3881778c9bff1c965d8a87c.etc.stex" +type="CompressedTexture2D" +uid="uid://b1qfd7mgvhrgu" +path.s3tc="res://.godot/imported/white_wood.png-821b7bf9b3881778c9bff1c965d8a87c.s3tc.ctex" +path.etc2="res://.godot/imported/white_wood.png-821b7bf9b3881778c9bff1c965d8a87c.etc2.ctex" metadata={ -"imported_formats": ["s3tc", "etc2", "etc"], +"imported_formats": ["s3tc", "etc2"], "vram_texture": true } [deps] source_file="res://models/white_wood.png" -dest_files=["res://.godot/imported/white_wood.png-821b7bf9b3881778c9bff1c965d8a87c.s3tc.stex", "res://.godot/imported/white_wood.png-821b7bf9b3881778c9bff1c965d8a87c.etc2.stex", "res://.godot/imported/white_wood.png-821b7bf9b3881778c9bff1c965d8a87c.etc.stex"] +dest_files=["res://.godot/imported/white_wood.png-821b7bf9b3881778c9bff1c965d8a87c.s3tc.ctex", "res://.godot/imported/white_wood.png-821b7bf9b3881778c9bff1c965d8a87c.etc2.ctex"] [params] compress/mode=2 compress/lossy_quality=0.7 -compress/hdr_mode=0 +compress/hdr_compression=1 compress/bptc_ldr=0 compress/normal_map=0 -flags/repeat=true -flags/filter=true -flags/mipmaps=true -flags/anisotropic=true -flags/srgb=1 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" process/fix_alpha_border=true process/premult_alpha=false -process/HDR_as_SRGB=false -process/invert_color=false process/normal_map_invert_y=false -stream=false -size_limit=0 -detect_3d=false -svg/scale=1.0 +process/hdr_as_srgb=false +process/size_limit=0 +detect_3d/compress_to=0 diff --git a/3d/kinematic_character/player/cubio.gd b/3d/kinematic_character/player/cubio.gd index dc37adb8..4e09cc02 100644 --- a/3d/kinematic_character/player/cubio.gd +++ b/3d/kinematic_character/player/cubio.gd @@ -8,7 +8,6 @@ const DECELERATION = 4 @onready var camera = $Target/Camera3D @onready var gravity = -ProjectSettings.get_setting("physics/3d/default_gravity") @onready var start_position = position -var velocity: Vector3 func _physics_process(delta): if Input.is_action_just_pressed(&"exit"): @@ -23,8 +22,8 @@ func _physics_process(delta): # Get the camera's transform basis, but remove the X rotation such # that the Y axis is up and Z is horizontal. var cam_basis = camera.global_transform.basis - var basis = cam_basis.rotated(cam_basis.x, -cam_basis.get_euler().x) - dir = basis * (dir) + cam_basis = cam_basis.rotated(cam_basis.x, -cam_basis.get_euler().x) + dir = cam_basis * dir # Limit the input to a length of 1. length_squared is faster to check. if dir.length_squared() > 1: diff --git a/3d/kinematic_character/player/cubio.tscn b/3d/kinematic_character/player/cubio.tscn index 27ba450e..0c3be53a 100644 --- a/3d/kinematic_character/player/cubio.tscn +++ b/3d/kinematic_character/player/cubio.tscn @@ -1,25 +1,25 @@ -[gd_scene load_steps=6 format=2] +[gd_scene load_steps=6 format=3 uid="uid://c1j6vfe3s2bq8"] -[ext_resource path="res://player/cubio.gd" type="Script" id=1] -[ext_resource path="res://models/cube.mesh" type="ArrayMesh" id=2] -[ext_resource path="res://player/follow_camera.gd" type="Script" id=3] -[ext_resource path="res://models/white_cube_material.tres" type="Material" id=4] +[ext_resource type="Script" path="res://player/cubio.gd" id="1"] +[ext_resource type="ArrayMesh" uid="uid://ba7dqpj07mlsy" path="res://models/cube.mesh" id="2"] +[ext_resource type="Script" path="res://player/follow_camera.gd" id="3"] +[ext_resource type="Material" path="res://models/white_cube_material.tres" id="4"] -[sub_resource type="BoxShape3D" id=1] +[sub_resource type="BoxShape3D" id="1"] margin = 0.001 -extents = Vector3(0.45, 0.45, 0.45) +size = Vector3(0.9, 0.9, 0.9) [node name="Cubio" type="CharacterBody3D"] -script = ExtResource( 1 ) +script = ExtResource( "1" ) [node name="BoxMesh" type="MeshInstance3D" parent="."] _import_path = NodePath("cube-col") transform = Transform3D(0.9, 0, 0, 0, 0.9, 0, 0, 0, 0.9, 0, 0, 0) -mesh = ExtResource( 2 ) -surface_material_override/0 = ExtResource( 4 ) +mesh = ExtResource( "2" ) +surface_material_override/0 = ExtResource( "4" ) [node name="CollisionShape3D" type="CollisionShape3D" parent="."] -shape = SubResource( 1 ) +shape = SubResource( "1" ) [node name="Target" type="Node3D" parent="."] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0.8, 0) @@ -29,7 +29,7 @@ transform = Transform3D(0.34202, -0.321394, 0.883022, 0, 0.939693, 0.34202, -0.9 fov = 74.0 near = 0.1 far = 50.0 -script = ExtResource( 3 ) +script = ExtResource( "3" ) [node name="WinText" type="CenterContainer" parent="."] visible = false @@ -44,8 +44,13 @@ offset_bottom = 50.0 [node name="TextLabel" type="Label" parent="WinText/Holder"] offset_left = -354.0 -offset_bottom = 14.0 -rect_scale = Vector2(2, 2) +offset_right = 354.0 +offset_bottom = 50.0 +theme_override_font_sizes/font_size = 20 text = "Thank You, Cubio! But the Princess is in Another Demo!" -align = 1 -valign = 1 +horizontal_alignment = 1 +vertical_alignment = 1 +__meta__ = { +"_edit_layout_mode": 0, +"_edit_use_custom_anchors": false +} diff --git a/3d/kinematic_character/project.godot b/3d/kinematic_character/project.godot index 38d434e7..171b5f3d 100644 --- a/3d/kinematic_character/project.godot +++ b/3d/kinematic_character/project.godot @@ -6,7 +6,7 @@ ; [section] ; section goes between [] ; param=value ; assign values to parameters -config_version=4 +config_version=5 [application] @@ -15,6 +15,7 @@ config/description="Kinematic character demo for 3D using a cube for the charact This is similar to the 3D platformer demo." run/main_scene="res://level.tscn" config/icon="res://icon.png" +config/features=PackedStringArray("4.0") [gdnative] diff --git a/3d/material_testers/backgrounds/experiment.hdr.import b/3d/material_testers/backgrounds/experiment.hdr.import index 072592f9..6383041e 100644 --- a/3d/material_testers/backgrounds/experiment.hdr.import +++ b/3d/material_testers/backgrounds/experiment.hdr.import @@ -1,35 +1,35 @@ [remap] importer="texture" -type="StreamTexture2D" -path="res://.godot/imported/experiment.hdr-6856dc9c7216ce389b450cda78cd0dd4.stex" +type="CompressedTexture2D" +uid="uid://5vtwlgoj3j4v" +path.s3tc="res://.godot/imported/experiment.hdr-6856dc9c7216ce389b450cda78cd0dd4.s3tc.ctex" +path.etc2="res://.godot/imported/experiment.hdr-6856dc9c7216ce389b450cda78cd0dd4.etc2.ctex" metadata={ -"vram_texture": false +"imported_formats": ["s3tc", "etc2"], +"vram_texture": true } [deps] source_file="res://backgrounds/experiment.hdr" -dest_files=["res://.godot/imported/experiment.hdr-6856dc9c7216ce389b450cda78cd0dd4.stex"] +dest_files=["res://.godot/imported/experiment.hdr-6856dc9c7216ce389b450cda78cd0dd4.s3tc.ctex", "res://.godot/imported/experiment.hdr-6856dc9c7216ce389b450cda78cd0dd4.etc2.ctex"] [params] -compress/mode=0 +compress/mode=2 compress/lossy_quality=0.7 -compress/hdr_mode=0 +compress/hdr_compression=1 compress/bptc_ldr=0 compress/normal_map=0 -flags/repeat=0 -flags/filter=true -flags/mipmaps=false -flags/anisotropic=false -flags/srgb=2 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" process/fix_alpha_border=true process/premult_alpha=false -process/HDR_as_SRGB=false -process/invert_color=false process/normal_map_invert_y=false -stream=false -size_limit=0 -detect_3d=true -svg/scale=1.0 +process/hdr_as_srgb=false +process/size_limit=0 +detect_3d/compress_to=0 diff --git a/3d/material_testers/backgrounds/lobby.hdr.import b/3d/material_testers/backgrounds/lobby.hdr.import index 12fb3e17..eac43692 100644 --- a/3d/material_testers/backgrounds/lobby.hdr.import +++ b/3d/material_testers/backgrounds/lobby.hdr.import @@ -1,35 +1,35 @@ [remap] importer="texture" -type="StreamTexture2D" -path="res://.godot/imported/lobby.hdr-4d3bebcac51f4f3bb35b80c08a53f6b5.stex" +type="CompressedTexture2D" +uid="uid://dp6fru2qyhpnv" +path.s3tc="res://.godot/imported/lobby.hdr-4d3bebcac51f4f3bb35b80c08a53f6b5.s3tc.ctex" +path.etc2="res://.godot/imported/lobby.hdr-4d3bebcac51f4f3bb35b80c08a53f6b5.etc2.ctex" metadata={ -"vram_texture": false +"imported_formats": ["s3tc", "etc2"], +"vram_texture": true } [deps] source_file="res://backgrounds/lobby.hdr" -dest_files=["res://.godot/imported/lobby.hdr-4d3bebcac51f4f3bb35b80c08a53f6b5.stex"] +dest_files=["res://.godot/imported/lobby.hdr-4d3bebcac51f4f3bb35b80c08a53f6b5.s3tc.ctex", "res://.godot/imported/lobby.hdr-4d3bebcac51f4f3bb35b80c08a53f6b5.etc2.ctex"] [params] -compress/mode=0 +compress/mode=2 compress/lossy_quality=0.7 -compress/hdr_mode=0 +compress/hdr_compression=1 compress/bptc_ldr=0 compress/normal_map=0 -flags/repeat=0 -flags/filter=true -flags/mipmaps=false -flags/anisotropic=false -flags/srgb=2 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" process/fix_alpha_border=true process/premult_alpha=false -process/HDR_as_SRGB=false -process/invert_color=false process/normal_map_invert_y=false -stream=false -size_limit=0 -detect_3d=true -svg/scale=1.0 +process/hdr_as_srgb=false +process/size_limit=0 +detect_3d/compress_to=0 diff --git a/3d/material_testers/backgrounds/night.hdr.import b/3d/material_testers/backgrounds/night.hdr.import index 23d496d1..dd73d1c3 100644 --- a/3d/material_testers/backgrounds/night.hdr.import +++ b/3d/material_testers/backgrounds/night.hdr.import @@ -1,35 +1,35 @@ [remap] importer="texture" -type="StreamTexture2D" -path="res://.godot/imported/night.hdr-da28dc6f2f43b1d95c11d8df7ccace96.stex" +type="CompressedTexture2D" +uid="uid://j3nvneplcglg" +path.s3tc="res://.godot/imported/night.hdr-da28dc6f2f43b1d95c11d8df7ccace96.s3tc.ctex" +path.etc2="res://.godot/imported/night.hdr-da28dc6f2f43b1d95c11d8df7ccace96.etc2.ctex" metadata={ -"vram_texture": false +"imported_formats": ["s3tc", "etc2"], +"vram_texture": true } [deps] source_file="res://backgrounds/night.hdr" -dest_files=["res://.godot/imported/night.hdr-da28dc6f2f43b1d95c11d8df7ccace96.stex"] +dest_files=["res://.godot/imported/night.hdr-da28dc6f2f43b1d95c11d8df7ccace96.s3tc.ctex", "res://.godot/imported/night.hdr-da28dc6f2f43b1d95c11d8df7ccace96.etc2.ctex"] [params] -compress/mode=0 +compress/mode=2 compress/lossy_quality=0.7 -compress/hdr_mode=0 +compress/hdr_compression=1 compress/bptc_ldr=0 compress/normal_map=0 -flags/repeat=0 -flags/filter=true -flags/mipmaps=false -flags/anisotropic=false -flags/srgb=2 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" process/fix_alpha_border=true process/premult_alpha=false -process/HDR_as_SRGB=false -process/invert_color=false process/normal_map_invert_y=false -stream=false -size_limit=0 -detect_3d=true -svg/scale=1.0 +process/hdr_as_srgb=false +process/size_limit=0 +detect_3d/compress_to=0 diff --git a/3d/material_testers/backgrounds/park.hdr.import b/3d/material_testers/backgrounds/park.hdr.import index b8f8363d..92b558b8 100644 --- a/3d/material_testers/backgrounds/park.hdr.import +++ b/3d/material_testers/backgrounds/park.hdr.import @@ -1,35 +1,35 @@ [remap] importer="texture" -type="StreamTexture2D" -path="res://.godot/imported/park.hdr-fcd9651d2de266bdfd1d7ec8a320f831.stex" +type="CompressedTexture2D" +uid="uid://cddwkc5abl0ea" +path.s3tc="res://.godot/imported/park.hdr-fcd9651d2de266bdfd1d7ec8a320f831.s3tc.ctex" +path.etc2="res://.godot/imported/park.hdr-fcd9651d2de266bdfd1d7ec8a320f831.etc2.ctex" metadata={ -"vram_texture": false +"imported_formats": ["s3tc", "etc2"], +"vram_texture": true } [deps] source_file="res://backgrounds/park.hdr" -dest_files=["res://.godot/imported/park.hdr-fcd9651d2de266bdfd1d7ec8a320f831.stex"] +dest_files=["res://.godot/imported/park.hdr-fcd9651d2de266bdfd1d7ec8a320f831.s3tc.ctex", "res://.godot/imported/park.hdr-fcd9651d2de266bdfd1d7ec8a320f831.etc2.ctex"] [params] -compress/mode=0 +compress/mode=2 compress/lossy_quality=0.7 -compress/hdr_mode=0 +compress/hdr_compression=1 compress/bptc_ldr=0 compress/normal_map=0 -flags/repeat=0 -flags/filter=true -flags/mipmaps=false -flags/anisotropic=false -flags/srgb=2 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" process/fix_alpha_border=true process/premult_alpha=false -process/HDR_as_SRGB=false -process/invert_color=false process/normal_map_invert_y=false -stream=false -size_limit=0 -detect_3d=true -svg/scale=1.0 +process/hdr_as_srgb=false +process/size_limit=0 +detect_3d/compress_to=0 diff --git a/3d/material_testers/backgrounds/schelde.hdr.import b/3d/material_testers/backgrounds/schelde.hdr.import index eb1e8743..da6a828b 100644 --- a/3d/material_testers/backgrounds/schelde.hdr.import +++ b/3d/material_testers/backgrounds/schelde.hdr.import @@ -1,35 +1,35 @@ [remap] importer="texture" -type="StreamTexture2D" -path="res://.godot/imported/schelde.hdr-6a13661ddf6710bbc9fa448634fb1bdb.stex" +type="CompressedTexture2D" +uid="uid://qxqvflsnn1ur" +path.s3tc="res://.godot/imported/schelde.hdr-6a13661ddf6710bbc9fa448634fb1bdb.s3tc.ctex" +path.etc2="res://.godot/imported/schelde.hdr-6a13661ddf6710bbc9fa448634fb1bdb.etc2.ctex" metadata={ -"vram_texture": false +"imported_formats": ["s3tc", "etc2"], +"vram_texture": true } [deps] source_file="res://backgrounds/schelde.hdr" -dest_files=["res://.godot/imported/schelde.hdr-6a13661ddf6710bbc9fa448634fb1bdb.stex"] +dest_files=["res://.godot/imported/schelde.hdr-6a13661ddf6710bbc9fa448634fb1bdb.s3tc.ctex", "res://.godot/imported/schelde.hdr-6a13661ddf6710bbc9fa448634fb1bdb.etc2.ctex"] [params] -compress/mode=0 +compress/mode=2 compress/lossy_quality=0.7 -compress/hdr_mode=0 +compress/hdr_compression=1 compress/bptc_ldr=0 compress/normal_map=0 -flags/repeat=0 -flags/filter=true -flags/mipmaps=false -flags/anisotropic=false -flags/srgb=2 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" process/fix_alpha_border=true process/premult_alpha=false -process/HDR_as_SRGB=false -process/invert_color=false process/normal_map_invert_y=false -stream=false -size_limit=0 -detect_3d=true -svg/scale=1.0 +process/hdr_as_srgb=false +process/size_limit=0 +detect_3d/compress_to=0 diff --git a/3d/material_testers/icon.png.import b/3d/material_testers/icon.png.import index 889af9df..53b42435 100644 --- a/3d/material_testers/icon.png.import +++ b/3d/material_testers/icon.png.import @@ -1,8 +1,9 @@ [remap] importer="texture" -type="StreamTexture2D" -path="res://.godot/imported/icon.png-487276ed1e3a0c39cad0279d744ee560.stex" +type="CompressedTexture2D" +uid="uid://doyw0t1ntc6ll" +path="res://.godot/imported/icon.png-487276ed1e3a0c39cad0279d744ee560.ctex" metadata={ "vram_texture": false } @@ -10,26 +11,23 @@ metadata={ [deps] source_file="res://icon.png" -dest_files=["res://.godot/imported/icon.png-487276ed1e3a0c39cad0279d744ee560.stex"] +dest_files=["res://.godot/imported/icon.png-487276ed1e3a0c39cad0279d744ee560.ctex"] [params] compress/mode=0 compress/lossy_quality=0.7 -compress/hdr_mode=0 +compress/hdr_compression=1 compress/bptc_ldr=0 compress/normal_map=0 -flags/repeat=0 -flags/filter=true -flags/mipmaps=false -flags/anisotropic=false -flags/srgb=2 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" process/fix_alpha_border=true process/premult_alpha=false -process/HDR_as_SRGB=false -process/invert_color=false process/normal_map_invert_y=false -stream=false -size_limit=0 -detect_3d=true -svg/scale=1.0 +process/hdr_as_srgb=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/3d/material_testers/material_tester.tscn b/3d/material_testers/material_tester.tscn index e3203db0..40a0dc56 100644 --- a/3d/material_testers/material_tester.tscn +++ b/3d/material_testers/material_tester.tscn @@ -1,368 +1,302 @@ -[gd_scene load_steps=50 format=2] +[gd_scene load_steps=50 format=3 uid="uid://cr0xfyxw5byn"] -[ext_resource path="res://tester.gd" type="Script" id=1] -[ext_resource path="res://default_env.tres" type="Environment" id=2] -[ext_resource path="res://models/test_bed/test_bed.tscn" type="PackedScene" id=3] -[ext_resource path="res://models/godot_ball.mesh" type="ArrayMesh" id=4] -[ext_resource path="res://test_materials/texture_wood.png" type="Texture2D" id=5] -[ext_resource path="res://test_materials/texture_cheese_albedo.png" type="Texture2D" id=6] -[ext_resource path="res://test_materials/texture_cheese_ao.png" type="Texture2D" id=7] -[ext_resource path="res://test_materials/texture_cheese_depth.png" type="Texture2D" id=8] -[ext_resource path="res://test_materials/texture_cheese_normal.png" type="Texture2D" id=9] -[ext_resource path="res://test_materials/texture_rock_albedo.png" type="Texture2D" id=10] -[ext_resource path="res://test_materials/texture_rock_ao.png" type="Texture2D" id=11] -[ext_resource path="res://test_materials/texture_rock_depth.png" type="Texture2D" id=12] -[ext_resource path="res://test_materials/texture_rock_metal.png" type="Texture2D" id=13] -[ext_resource path="res://test_materials/texture_rock_normal.png" type="Texture2D" id=14] -[ext_resource path="res://test_materials/texture_bricks.jpg" type="Texture2D" id=15] -[ext_resource path="res://test_materials/texture_bricks_depth.jpg" type="Texture2D" id=16] -[ext_resource path="res://test_materials/texture_bricks_metal.jpg" type="Texture2D" id=17] -[ext_resource path="res://test_materials/texture_bricks_normal.jpg" type="Texture2D" id=18] -[ext_resource path="res://test_materials/wool_albedo.png" type="Texture2D" id=19] -[ext_resource path="res://test_materials/wool_depth.png" type="Texture2D" id=20] -[ext_resource path="res://test_materials/wool_normal.png" type="Texture2D" id=21] -[ext_resource path="res://test_materials/aluminium_albedo.png" type="Texture2D" id=22] -[ext_resource path="res://test_materials/aluminium_normal.png" type="Texture2D" id=23] -[ext_resource path="res://test_materials/marble_albedo.png" type="Texture2D" id=24] -[ext_resource path="res://test_materials/sand_albedo.jpg" type="Texture2D" id=25] -[ext_resource path="res://test_materials/sand_metal.jpg" type="Texture2D" id=26] -[ext_resource path="res://test_materials/sand_normal.jpg" type="Texture2D" id=27] -[ext_resource path="res://test_materials/sand_rough.jpg" type="Texture2D" id=28] -[ext_resource path="res://test_materials/rock_albedo.jpg" type="Texture2D" id=29] -[ext_resource path="res://test_materials/rock_ao.jpg" type="Texture2D" id=30] -[ext_resource path="res://test_materials/rock_metal.jpg" type="Texture2D" id=31] -[ext_resource path="res://test_materials/rock_rough.jpg" type="Texture2D" id=32] +[ext_resource type="Script" path="res://tester.gd" id="1"] +[ext_resource type="Texture2D" uid="uid://qxqvflsnn1ur" path="res://backgrounds/schelde.hdr" id="2_hjmay"] +[ext_resource type="PackedScene" uid="uid://cgqfdwd4g5e14" path="res://models/test_bed/test_bed.tscn" id="3"] +[ext_resource type="ArrayMesh" uid="uid://dxsfckuirf72p" path="res://models/godot_ball.mesh" id="4"] +[ext_resource type="Texture2D" uid="uid://b3efpr0uwln6w" path="res://test_materials/texture_wood.png" id="5"] +[ext_resource type="Texture2D" uid="uid://xu18ocodkbx7" path="res://test_materials/texture_cheese_albedo.png" id="6"] +[ext_resource type="Texture2D" uid="uid://65icecsss5vf" path="res://test_materials/texture_cheese_ao.png" id="7"] +[ext_resource type="Texture2D" uid="uid://8o7dvpd64s0i" path="res://test_materials/texture_cheese_depth.png" id="8"] +[ext_resource type="Texture2D" uid="uid://7dpm3ud1syn" path="res://test_materials/texture_cheese_normal.png" id="9"] +[ext_resource type="Texture2D" uid="uid://dll713t0m0b6k" path="res://test_materials/texture_rock_albedo.png" id="10"] +[ext_resource type="Texture2D" uid="uid://cg1wtsuae0lmc" path="res://test_materials/texture_rock_ao.png" id="11"] +[ext_resource type="Texture2D" uid="uid://x5qdkxkf4tmq" path="res://test_materials/texture_rock_depth.png" id="12"] +[ext_resource type="Texture2D" uid="uid://bte0rsu3bcmxa" path="res://test_materials/texture_rock_metal.png" id="13"] +[ext_resource type="Texture2D" uid="uid://dqhvdd867nvjm" path="res://test_materials/texture_rock_normal.png" id="14"] +[ext_resource type="Texture2D" uid="uid://w5wmopu8t6ya" path="res://test_materials/texture_bricks.jpg" id="15"] +[ext_resource type="Texture2D" uid="uid://lbhnr6ww3frm" path="res://test_materials/texture_bricks_depth.jpg" id="16"] +[ext_resource type="Texture2D" uid="uid://c2d4tyfl662ra" path="res://test_materials/texture_bricks_metal.jpg" id="17"] +[ext_resource type="Texture2D" uid="uid://baces1lcbjoxv" path="res://test_materials/texture_bricks_normal.jpg" id="18"] +[ext_resource type="Texture2D" uid="uid://do34kmmykk6gf" path="res://test_materials/wool_albedo.png" id="19"] +[ext_resource type="Texture2D" uid="uid://b45auu1apiq0g" path="res://test_materials/wool_depth.png" id="20"] +[ext_resource type="Texture2D" uid="uid://cc44l0alh6gr4" path="res://test_materials/wool_normal.png" id="21"] +[ext_resource type="Texture2D" uid="uid://b8o8fe1yoym4t" path="res://test_materials/aluminium_albedo.png" id="22"] +[ext_resource type="Texture2D" uid="uid://0546okw1k04b" path="res://test_materials/aluminium_normal.png" id="23"] +[ext_resource type="Texture2D" uid="uid://c31bsq44dxyh1" path="res://test_materials/marble_albedo.png" id="24"] +[ext_resource type="Texture2D" uid="uid://babs1mrgolbcj" path="res://test_materials/sand_albedo.jpg" id="25"] +[ext_resource type="Texture2D" uid="uid://cisvmvcj8c525" path="res://test_materials/sand_metal.jpg" id="26"] +[ext_resource type="Texture2D" uid="uid://xvn1ih5tbj6g" path="res://test_materials/sand_normal.jpg" id="27"] +[ext_resource type="Texture2D" uid="uid://bld3mlnaxf768" path="res://test_materials/sand_rough.jpg" id="28"] +[ext_resource type="Texture2D" uid="uid://7d4kolmsjw8b" path="res://test_materials/rock_albedo.jpg" id="29"] +[ext_resource type="Texture2D" uid="uid://3m1hjc851lp4" path="res://test_materials/rock_ao.jpg" id="30"] +[ext_resource type="Texture2D" uid="uid://h1biny5hb4xc" path="res://test_materials/rock_metal.jpg" id="31"] +[ext_resource type="Texture2D" uid="uid://1vmbgyaaju3v" path="res://test_materials/rock_rough.jpg" id="32"] -[sub_resource type="StandardMaterial3D" id=1] +[sub_resource type="PanoramaSkyMaterial" id="PanoramaSkyMaterial_7uer8"] +panorama = ExtResource( "2_hjmay" ) + +[sub_resource type="Sky" id="Sky_ruw1w"] +sky_material = SubResource( "PanoramaSkyMaterial_7uer8" ) + +[sub_resource type="Environment" id="Environment_q1py5"] +background_mode = 2 +sky = SubResource( "Sky_ruw1w" ) +tonemap_mode = 2 +glow_enabled = true + +[sub_resource type="StandardMaterial3D" id="1"] metallic = 0.4 roughness = 0.35 -[sub_resource type="StandardMaterial3D" id=2] -albedo_color = Color(0.895294, 0.900549, 0.890078, 1) -metallic = 0.1 -roughness = 0.52 - -[sub_resource type="StandardMaterial3D" id=3] -albedo_color = Color(0.551806, 0.709299, 0.980989, 1) -metallic = 0.31 -roughness = 0.42 - -[sub_resource type="StandardMaterial3D" id=4] -albedo_color = Color(0.471216, 0.481647, 0.465961, 1) -metallic = 0.1 -roughness = 0.0 - -[sub_resource type="StandardMaterial3D" id=5] +[sub_resource type="StandardMaterial3D" id="5"] metallic = 1.0 roughness = 0.02 -[sub_resource type="StandardMaterial3D" id=6] +[sub_resource type="StandardMaterial3D" id="6"] albedo_color = Color(0.806275, 0.575882, 0.361255, 1) -albedo_texture = ExtResource( 5 ) +albedo_texture = ExtResource( "5" ) metallic = 0.48 roughness = 0.28 -[sub_resource type="StandardMaterial3D" id=7] -albedo_texture = ExtResource( 6 ) +[sub_resource type="StandardMaterial3D" id="7"] +albedo_texture = ExtResource( "6" ) roughness = 0.64 normal_enabled = true -normal_scale = 1.0 -normal_texture = ExtResource( 9 ) +normal_texture = ExtResource( "9" ) ao_enabled = true -ao_light_affect = 0.0 -ao_texture = ExtResource( 7 ) -ao_on_uv2 = false -ao_texture_channel = 0 -depth_enabled = true -depth_scale = 0.13 -depth_deep_parallax = true -depth_min_layers = 8 -depth_max_layers = 32 -depth_flip_tangent = false -depth_flip_binormal = false -depth_texture = ExtResource( 8 ) +ao_texture = ExtResource( "7" ) +heightmap_enabled = true +heightmap_scale = 0.13 +heightmap_deep_parallax = true +heightmap_min_layers = 8 +heightmap_max_layers = 32 +heightmap_texture = ExtResource( "8" ) +heightmap_flip_texture = true subsurf_scatter_enabled = true subsurf_scatter_strength = 0.37 -[sub_resource type="StandardMaterial3D" id=8] -albedo_texture = ExtResource( 10 ) +[sub_resource type="StandardMaterial3D" id="8"] +albedo_texture = ExtResource( "10" ) metallic = 0.86 -metallic_texture = ExtResource( 13 ) +metallic_texture = ExtResource( "13" ) roughness = 0.47 normal_enabled = true -normal_scale = 1.0 -normal_texture = ExtResource( 14 ) +normal_texture = ExtResource( "14" ) ao_enabled = true -ao_light_affect = 0.0 -ao_texture = ExtResource( 11 ) -ao_on_uv2 = false -ao_texture_channel = 0 -depth_enabled = true -depth_scale = 0.18 -depth_deep_parallax = true -depth_min_layers = 8 -depth_max_layers = 32 -depth_flip_tangent = false -depth_flip_binormal = false -depth_texture = ExtResource( 12 ) +ao_texture = ExtResource( "11" ) +heightmap_enabled = true +heightmap_scale = 0.18 +heightmap_deep_parallax = true +heightmap_min_layers = 8 +heightmap_max_layers = 32 +heightmap_texture = ExtResource( "12" ) +heightmap_flip_texture = true -[sub_resource type="StandardMaterial3D" id=9] -albedo_texture = ExtResource( 15 ) +[sub_resource type="StandardMaterial3D" id="9"] +albedo_texture = ExtResource( "15" ) metallic = 1.0 -metallic_texture = ExtResource( 17 ) +metallic_texture = ExtResource( "17" ) roughness = 0.56 normal_enabled = true -normal_scale = 1.0 -normal_texture = ExtResource( 18 ) -depth_enabled = true -depth_scale = 0.03 -depth_deep_parallax = true -depth_min_layers = 8 -depth_max_layers = 32 -depth_flip_tangent = false -depth_flip_binormal = false -depth_texture = ExtResource( 16 ) +normal_texture = ExtResource( "18" ) +heightmap_enabled = true +heightmap_scale = 0.03 +heightmap_deep_parallax = true +heightmap_min_layers = 8 +heightmap_max_layers = 32 +heightmap_texture = ExtResource( "16" ) +heightmap_flip_texture = true -[sub_resource type="StandardMaterial3D" id=10] -albedo_texture = ExtResource( 19 ) +[sub_resource type="StandardMaterial3D" id="10"] +albedo_texture = ExtResource( "19" ) metallic = 0.1 roughness = 0.77 normal_enabled = true normal_scale = 0.3 -normal_texture = ExtResource( 21 ) -depth_enabled = true -depth_scale = 0.01 -depth_deep_parallax = true -depth_min_layers = 8 -depth_max_layers = 32 -depth_flip_tangent = false -depth_flip_binormal = false -depth_texture = ExtResource( 20 ) +normal_texture = ExtResource( "21" ) +heightmap_enabled = true +heightmap_scale = 0.01 +heightmap_deep_parallax = true +heightmap_min_layers = 8 +heightmap_max_layers = 32 +heightmap_texture = ExtResource( "20" ) +heightmap_flip_texture = true -[sub_resource type="StandardMaterial3D" id=11] -albedo_texture = ExtResource( 22 ) +[sub_resource type="StandardMaterial3D" id="11"] +albedo_texture = ExtResource( "22" ) metallic = 0.59 roughness = 0.4 normal_enabled = true normal_scale = 0.21 -normal_texture = ExtResource( 23 ) +normal_texture = ExtResource( "23" ) anisotropy_enabled = true anisotropy = -0.99 -[sub_resource type="StandardMaterial3D" id=12] -params_diffuse_mode = 2 -albedo_texture = ExtResource( 24 ) +[sub_resource type="StandardMaterial3D" id="12"] +diffuse_mode = 2 +albedo_texture = ExtResource( "24" ) metallic = 0.1 roughness = 0.1 rim_enabled = true -rim = 1.0 rim_tint = 1.0 subsurf_scatter_enabled = true subsurf_scatter_strength = 0.1 -[sub_resource type="StandardMaterial3D" id=13] -albedo_texture = ExtResource( 25 ) +[sub_resource type="StandardMaterial3D" id="13"] +albedo_texture = ExtResource( "25" ) metallic = 1.0 -metallic_texture = ExtResource( 26 ) -roughness_texture = ExtResource( 28 ) +metallic_texture = ExtResource( "26" ) +roughness_texture = ExtResource( "28" ) normal_enabled = true normal_scale = 0.43 -normal_texture = ExtResource( 27 ) +normal_texture = ExtResource( "27" ) -[sub_resource type="StandardMaterial3D" id=14] -albedo_texture = ExtResource( 29 ) +[sub_resource type="StandardMaterial3D" id="14"] +albedo_texture = ExtResource( "29" ) metallic = 0.12 -roughness_texture = ExtResource( 32 ) +roughness_texture = ExtResource( "32" ) normal_enabled = true -normal_scale = 1.0 -normal_texture = ExtResource( 31 ) +normal_texture = ExtResource( "31" ) ao_enabled = true -ao_light_affect = 0.0 -ao_texture = ExtResource( 30 ) -ao_on_uv2 = false -ao_texture_channel = 0 +ao_texture = ExtResource( "30" ) -[sub_resource type="StandardMaterial3D" id=15] -params_depth_draw_mode = 2 +[sub_resource type="StandardMaterial3D" id="15"] albedo_color = Color(1, 1, 1, 0) -albedo_texture = ExtResource( 29 ) +albedo_texture = ExtResource( "29" ) metallic = 1.0 roughness = 0.62 normal_enabled = true -normal_scale = 1.0 -normal_texture = ExtResource( 31 ) +normal_texture = ExtResource( "31" ) ao_enabled = true -ao_light_affect = 0.0 -ao_texture = ExtResource( 30 ) -ao_on_uv2 = false -ao_texture_channel = 0 +ao_texture = ExtResource( "30" ) refraction_enabled = true refraction_scale = 0.04 -refraction_texture_channel = 0 -[sub_resource type="StandardMaterial3D" id=16] -flags_unshaded = true -params_cull_mode = 1 -params_grow = true -params_grow_amount = 0.03 +[sub_resource type="StandardMaterial3D" id="16"] +cull_mode = 1 +shading_mode = 0 albedo_color = Color(0.0261569, 0, 0, 1) +grow = true +grow_amount = 0.03 -[sub_resource type="StandardMaterial3D" id=17] -next_pass = SubResource( 16 ) -params_diffuse_mode = 4 -params_specular_mode = 3 +[sub_resource type="StandardMaterial3D" id="17"] +next_pass = SubResource( "16" ) +diffuse_mode = 4 +specular_mode = 3 albedo_color = Color(0.905765, 0.356039, 0.0994902, 1) roughness = 0.04 [node name="MaterialTester" type="Node3D"] -script = ExtResource( 1 ) +script = ExtResource( "1" ) [node name="WorldEnvironment" type="WorldEnvironment" parent="."] -environment = ExtResource( 2 ) +environment = SubResource( "Environment_q1py5" ) [node name="Testers" type="Node3D" parent="."] -[node name="White Plastic" parent="Testers" instance=ExtResource( 3 )] +[node name="White Plastic" parent="Testers" instance=ExtResource( "3" )] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -36, 0, 0) [node name="GodotBall" type="MeshInstance3D" parent="Testers/White Plastic"] transform = Transform3D(0.8, 0, 0, 0, 0.8, 0, 0, 0, 0.8, 0, 0.5, -4) -mesh = ExtResource( 4 ) -surface_material_override/0 = SubResource( 1 ) -material/1 = SubResource( 2 ) -material/2 = SubResource( 3 ) -material/3 = SubResource( 4 ) +mesh = ExtResource( "4" ) +surface_material_override/0 = SubResource( "1" ) -[node name="Mirror" parent="Testers" instance=ExtResource( 3 )] +[node name="Mirror" parent="Testers" instance=ExtResource( "3" )] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -30, 0, 0) [node name="GodotBall" type="MeshInstance3D" parent="Testers/Mirror"] transform = Transform3D(0.8, 0, 0, 0, 0.8, 0, 0, 0, 0.8, 0, 0.5, -4) -mesh = ExtResource( 4 ) -surface_material_override/0 = SubResource( 5 ) -material/1 = SubResource( 2 ) -material/2 = SubResource( 3 ) -material/3 = SubResource( 4 ) +mesh = ExtResource( "4" ) +surface_material_override/0 = SubResource( "5" ) -[node name="Dark Wood" parent="Testers" instance=ExtResource( 3 )] +[node name="Dark Wood" parent="Testers" instance=ExtResource( "3" )] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -24, 0, 0) [node name="GodotBall" type="MeshInstance3D" parent="Testers/Dark Wood"] transform = Transform3D(0.8, 0, 0, 0, 0.8, 0, 0, 0, 0.8, 0, 0.5, -4) -mesh = ExtResource( 4 ) -surface_material_override/0 = SubResource( 6 ) -material/1 = SubResource( 2 ) -material/2 = SubResource( 3 ) -material/3 = SubResource( 4 ) +mesh = ExtResource( "4" ) +surface_material_override/0 = SubResource( "6" ) -[node name="Cheese" parent="Testers" instance=ExtResource( 3 )] +[node name="Cheese" parent="Testers" instance=ExtResource( "3" )] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -18, 0, 0) [node name="GodotBall" type="MeshInstance3D" parent="Testers/Cheese"] transform = Transform3D(0.8, 0, 0, 0, 0.8, 0, 0, 0, 0.8, 0, 0.5, -4) -mesh = ExtResource( 4 ) -surface_material_override/0 = SubResource( 7 ) -material/1 = SubResource( 2 ) -material/2 = SubResource( 3 ) -material/3 = SubResource( 4 ) +mesh = ExtResource( "4" ) +surface_material_override/0 = SubResource( "7" ) -[node name="Stones" parent="Testers" instance=ExtResource( 3 )] +[node name="Stones" parent="Testers" instance=ExtResource( "3" )] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -12, 0, 0) [node name="GodotBall" type="MeshInstance3D" parent="Testers/Stones"] transform = Transform3D(0.8, 0, 0, 0, 0.8, 0, 0, 0, 0.8, 0, 0.5, -4) -mesh = ExtResource( 4 ) -surface_material_override/0 = SubResource( 8 ) -material/1 = SubResource( 2 ) -material/2 = SubResource( 3 ) -material/3 = SubResource( 4 ) +mesh = ExtResource( "4" ) +surface_material_override/0 = SubResource( "8" ) -[node name="Brick" parent="Testers" instance=ExtResource( 3 )] +[node name="Brick" parent="Testers" instance=ExtResource( "3" )] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -6, 0, 0) [node name="GodotBall" type="MeshInstance3D" parent="Testers/Brick"] transform = Transform3D(0.8, 0, 0, 0, 0.8, 0, 0, 0, 0.8, 0, 0.5, -4) -mesh = ExtResource( 4 ) -surface_material_override/0 = SubResource( 9 ) -material/1 = SubResource( 2 ) -material/2 = SubResource( 3 ) -material/3 = SubResource( 4 ) +mesh = ExtResource( "4" ) +surface_material_override/0 = SubResource( "9" ) -[node name="Wool" parent="Testers" instance=ExtResource( 3 )] +[node name="Wool" parent="Testers" instance=ExtResource( "3" )] [node name="GodotBall" type="MeshInstance3D" parent="Testers/Wool"] transform = Transform3D(0.8, 0, 0, 0, 0.8, 0, 0, 0, 0.8, 0, 0.5, -4) -mesh = ExtResource( 4 ) -surface_material_override/0 = SubResource( 10 ) -material/1 = SubResource( 2 ) -material/2 = SubResource( 3 ) -material/3 = SubResource( 4 ) +mesh = ExtResource( "4" ) +surface_material_override/0 = SubResource( "10" ) -[node name="Aluminium" parent="Testers" instance=ExtResource( 3 )] +[node name="Aluminium" parent="Testers" instance=ExtResource( "3" )] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 6, 0, 0) [node name="GodotBall" type="MeshInstance3D" parent="Testers/Aluminium"] transform = Transform3D(0.8, 0, 0, 0, 0.8, 0, 0, 0, 0.8, 0, 0.5, -4) -mesh = ExtResource( 4 ) -surface_material_override/0 = SubResource( 11 ) -material/1 = SubResource( 2 ) -material/2 = SubResource( 3 ) -material/3 = SubResource( 4 ) +mesh = ExtResource( "4" ) +surface_material_override/0 = SubResource( "11" ) -[node name="Marble" parent="Testers" instance=ExtResource( 3 )] +[node name="Marble" parent="Testers" instance=ExtResource( "3" )] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 12, 0, 0) [node name="GodotBall" type="MeshInstance3D" parent="Testers/Marble"] transform = Transform3D(0.8, 0, 0, 0, 0.8, 0, 0, 0, 0.8, 0, 0.5, -4) -mesh = ExtResource( 4 ) -surface_material_override/0 = SubResource( 12 ) -material/1 = SubResource( 2 ) -material/2 = SubResource( 3 ) -material/3 = SubResource( 4 ) +mesh = ExtResource( "4" ) +surface_material_override/0 = SubResource( "12" ) -[node name="Wet Sand" parent="Testers" instance=ExtResource( 3 )] +[node name="Wet Sand" parent="Testers" instance=ExtResource( "3" )] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 18, 0, 0) [node name="GodotBall" type="MeshInstance3D" parent="Testers/Wet Sand"] transform = Transform3D(0.8, 0, 0, 0, 0.8, 0, 0, 0, 0.8, 0, 0.5, -4) -mesh = ExtResource( 4 ) -surface_material_override/0 = SubResource( 13 ) -material/1 = SubResource( 2 ) -material/2 = SubResource( 3 ) -material/3 = SubResource( 4 ) +mesh = ExtResource( "4" ) +surface_material_override/0 = SubResource( "13" ) -[node name="Rock" parent="Testers" instance=ExtResource( 3 )] +[node name="Rock" parent="Testers" instance=ExtResource( "3" )] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 24, 0, 0) [node name="GodotBall" type="MeshInstance3D" parent="Testers/Rock"] transform = Transform3D(0.8, 0, 0, 0, 0.8, 0, 0, 0, 0.8, 0, 0.5, -4) -mesh = ExtResource( 4 ) -surface_material_override/0 = SubResource( 14 ) -material/1 = SubResource( 2 ) -material/2 = SubResource( 3 ) -material/3 = SubResource( 4 ) +mesh = ExtResource( "4" ) +surface_material_override/0 = SubResource( "14" ) -[node name="Ice" parent="Testers" instance=ExtResource( 3 )] +[node name="Ice" parent="Testers" instance=ExtResource( "3" )] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 30, 0, 0) [node name="GodotBall" type="MeshInstance3D" parent="Testers/Ice"] transform = Transform3D(0.8, 0, 0, 0, 0.8, 0, 0, 0, 0.8, 0, 0.5, -4) -mesh = ExtResource( 4 ) -surface_material_override/0 = SubResource( 15 ) -material/1 = SubResource( 2 ) -material/2 = SubResource( 3 ) -material/3 = SubResource( 4 ) +mesh = ExtResource( "4" ) +surface_material_override/0 = SubResource( "15" ) -[node name="Toon" parent="Testers" instance=ExtResource( 3 )] +[node name="Toon" parent="Testers" instance=ExtResource( "3" )] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 36, 0, 0) [node name="GodotBall" type="MeshInstance3D" parent="Testers/Toon"] transform = Transform3D(0.8, 0, 0, 0, 0.8, 0, 0, 0, 0.8, 0, 0.5, -4) -mesh = ExtResource( 4 ) -surface_material_override/0 = SubResource( 17 ) -material/1 = SubResource( 2 ) -material/2 = SubResource( 3 ) -material/3 = SubResource( 4 ) +mesh = ExtResource( "4" ) +surface_material_override/0 = SubResource( "17" ) [node name="CameraHolder" type="Node3D" parent="."] transform = Transform3D(0.877582, 0, -0.479427, 0, 1, 0, 0.479427, 0, 0.877582, -36, 2.8, -4) @@ -414,7 +348,6 @@ anchor_bottom = 1.0 offset_top = -44.0 offset_bottom = -30.0 size_flags_vertical = 0 -align = 1 [connection signal="item_selected" from="UI/Background" to="." method="_on_bg_item_selected"] [connection signal="pressed" from="UI/Previous" to="." method="_on_Previous_pressed"] diff --git a/3d/material_testers/models/godot_ball.mesh b/3d/material_testers/models/godot_ball.mesh index e37e665f..f0aa7f71 100644 Binary files a/3d/material_testers/models/godot_ball.mesh and b/3d/material_testers/models/godot_ball.mesh differ diff --git a/3d/material_testers/models/test_bed/test_bed.glb.import b/3d/material_testers/models/test_bed/test_bed.glb.import index 00a106ee..59e42922 100644 --- a/3d/material_testers/models/test_bed/test_bed.glb.import +++ b/3d/material_testers/models/test_bed/test_bed.glb.import @@ -1,7 +1,9 @@ [remap] importer="scene" +importer_version=1 type="PackedScene" +uid="uid://b60ph1cdl0xlp" path="res://.godot/imported/test_bed.glb-1dd9b9600e1c429fe8be7609006ad0c1.scn" [deps] @@ -14,1051 +16,13 @@ dest_files=["res://.godot/imported/test_bed.glb-1dd9b9600e1c429fe8be7609006ad0c1 nodes/root_type="Node3D" nodes/root_name="Scene Root" nodes/root_scale=1.0 -nodes/custom_script="" -nodes/storage=0 -nodes/use_legacy_names=false -materials/location=1 -materials/storage=2 -materials/keep_on_reimport=true -meshes/compress=true meshes/ensure_tangents=true -meshes/storage=0 +meshes/generate_lods=true +meshes/create_shadow_meshes=true meshes/light_baking=0 meshes/lightmap_texel_size=0.1 skins/use_named_skins=true -external_files/store_in_subdir=false animation/import=true animation/fps=15 -animation/filter_script="" -animation/storage=false -animation/keep_custom_tracks=false -animation/optimizer/enabled=true -animation/optimizer/max_linear_error=0.05 -animation/optimizer/max_angular_error=0.01 -animation/optimizer/max_angle=22 -animation/optimizer/remove_unused_tracks=true -animation/clips/amount=0 -animation/clip_1/name="" -animation/clip_1/start_frame=0 -animation/clip_1/end_frame=0 -animation/clip_1/loops=false -animation/clip_2/name="" -animation/clip_2/start_frame=0 -animation/clip_2/end_frame=0 -animation/clip_2/loops=false -animation/clip_3/name="" -animation/clip_3/start_frame=0 -animation/clip_3/end_frame=0 -animation/clip_3/loops=false -animation/clip_4/name="" -animation/clip_4/start_frame=0 -animation/clip_4/end_frame=0 -animation/clip_4/loops=false -animation/clip_5/name="" -animation/clip_5/start_frame=0 -animation/clip_5/end_frame=0 -animation/clip_5/loops=false -animation/clip_6/name="" -animation/clip_6/start_frame=0 -animation/clip_6/end_frame=0 -animation/clip_6/loops=false -animation/clip_7/name="" -animation/clip_7/start_frame=0 -animation/clip_7/end_frame=0 -animation/clip_7/loops=false -animation/clip_8/name="" -animation/clip_8/start_frame=0 -animation/clip_8/end_frame=0 -animation/clip_8/loops=false -animation/clip_9/name="" -animation/clip_9/start_frame=0 -animation/clip_9/end_frame=0 -animation/clip_9/loops=false -animation/clip_10/name="" -animation/clip_10/start_frame=0 -animation/clip_10/end_frame=0 -animation/clip_10/loops=false -animation/clip_11/name="" -animation/clip_11/start_frame=0 -animation/clip_11/end_frame=0 -animation/clip_11/loops=false -animation/clip_12/name="" -animation/clip_12/start_frame=0 -animation/clip_12/end_frame=0 -animation/clip_12/loops=false -animation/clip_13/name="" -animation/clip_13/start_frame=0 -animation/clip_13/end_frame=0 -animation/clip_13/loops=false -animation/clip_14/name="" -animation/clip_14/start_frame=0 -animation/clip_14/end_frame=0 -animation/clip_14/loops=false -animation/clip_15/name="" -animation/clip_15/start_frame=0 -animation/clip_15/end_frame=0 -animation/clip_15/loops=false -animation/clip_16/name="" -animation/clip_16/start_frame=0 -animation/clip_16/end_frame=0 -animation/clip_16/loops=false -animation/clip_17/name="" -animation/clip_17/start_frame=0 -animation/clip_17/end_frame=0 -animation/clip_17/loops=false -animation/clip_18/name="" -animation/clip_18/start_frame=0 -animation/clip_18/end_frame=0 -animation/clip_18/loops=false -animation/clip_19/name="" -animation/clip_19/start_frame=0 -animation/clip_19/end_frame=0 -animation/clip_19/loops=false -animation/clip_20/name="" -animation/clip_20/start_frame=0 -animation/clip_20/end_frame=0 -animation/clip_20/loops=false -animation/clip_21/name="" -animation/clip_21/start_frame=0 -animation/clip_21/end_frame=0 -animation/clip_21/loops=false -animation/clip_22/name="" -animation/clip_22/start_frame=0 -animation/clip_22/end_frame=0 -animation/clip_22/loops=false -animation/clip_23/name="" -animation/clip_23/start_frame=0 -animation/clip_23/end_frame=0 -animation/clip_23/loops=false -animation/clip_24/name="" -animation/clip_24/start_frame=0 -animation/clip_24/end_frame=0 -animation/clip_24/loops=false -animation/clip_25/name="" -animation/clip_25/start_frame=0 -animation/clip_25/end_frame=0 -animation/clip_25/loops=false -animation/clip_26/name="" -animation/clip_26/start_frame=0 -animation/clip_26/end_frame=0 -animation/clip_26/loops=false -animation/clip_27/name="" -animation/clip_27/start_frame=0 -animation/clip_27/end_frame=0 -animation/clip_27/loops=false -animation/clip_28/name="" -animation/clip_28/start_frame=0 -animation/clip_28/end_frame=0 -animation/clip_28/loops=false -animation/clip_29/name="" -animation/clip_29/start_frame=0 -animation/clip_29/end_frame=0 -animation/clip_29/loops=false -animation/clip_30/name="" -animation/clip_30/start_frame=0 -animation/clip_30/end_frame=0 -animation/clip_30/loops=false -animation/clip_31/name="" -animation/clip_31/start_frame=0 -animation/clip_31/end_frame=0 -animation/clip_31/loops=false -animation/clip_32/name="" -animation/clip_32/start_frame=0 -animation/clip_32/end_frame=0 -animation/clip_32/loops=false -animation/clip_33/name="" -animation/clip_33/start_frame=0 -animation/clip_33/end_frame=0 -animation/clip_33/loops=false -animation/clip_34/name="" -animation/clip_34/start_frame=0 -animation/clip_34/end_frame=0 -animation/clip_34/loops=false -animation/clip_35/name="" -animation/clip_35/start_frame=0 -animation/clip_35/end_frame=0 -animation/clip_35/loops=false -animation/clip_36/name="" -animation/clip_36/start_frame=0 -animation/clip_36/end_frame=0 -animation/clip_36/loops=false -animation/clip_37/name="" -animation/clip_37/start_frame=0 -animation/clip_37/end_frame=0 -animation/clip_37/loops=false -animation/clip_38/name="" -animation/clip_38/start_frame=0 -animation/clip_38/end_frame=0 -animation/clip_38/loops=false -animation/clip_39/name="" -animation/clip_39/start_frame=0 -animation/clip_39/end_frame=0 -animation/clip_39/loops=false -animation/clip_40/name="" -animation/clip_40/start_frame=0 -animation/clip_40/end_frame=0 -animation/clip_40/loops=false -animation/clip_41/name="" -animation/clip_41/start_frame=0 -animation/clip_41/end_frame=0 -animation/clip_41/loops=false -animation/clip_42/name="" -animation/clip_42/start_frame=0 -animation/clip_42/end_frame=0 -animation/clip_42/loops=false -animation/clip_43/name="" -animation/clip_43/start_frame=0 -animation/clip_43/end_frame=0 -animation/clip_43/loops=false -animation/clip_44/name="" -animation/clip_44/start_frame=0 -animation/clip_44/end_frame=0 -animation/clip_44/loops=false -animation/clip_45/name="" -animation/clip_45/start_frame=0 -animation/clip_45/end_frame=0 -animation/clip_45/loops=false -animation/clip_46/name="" -animation/clip_46/start_frame=0 -animation/clip_46/end_frame=0 -animation/clip_46/loops=false -animation/clip_47/name="" -animation/clip_47/start_frame=0 -animation/clip_47/end_frame=0 -animation/clip_47/loops=false -animation/clip_48/name="" -animation/clip_48/start_frame=0 -animation/clip_48/end_frame=0 -animation/clip_48/loops=false -animation/clip_49/name="" -animation/clip_49/start_frame=0 -animation/clip_49/end_frame=0 -animation/clip_49/loops=false -animation/clip_50/name="" -animation/clip_50/start_frame=0 -animation/clip_50/end_frame=0 -animation/clip_50/loops=false -animation/clip_51/name="" -animation/clip_51/start_frame=0 -animation/clip_51/end_frame=0 -animation/clip_51/loops=false -animation/clip_52/name="" -animation/clip_52/start_frame=0 -animation/clip_52/end_frame=0 -animation/clip_52/loops=false -animation/clip_53/name="" -animation/clip_53/start_frame=0 -animation/clip_53/end_frame=0 -animation/clip_53/loops=false -animation/clip_54/name="" -animation/clip_54/start_frame=0 -animation/clip_54/end_frame=0 -animation/clip_54/loops=false -animation/clip_55/name="" -animation/clip_55/start_frame=0 -animation/clip_55/end_frame=0 -animation/clip_55/loops=false -animation/clip_56/name="" -animation/clip_56/start_frame=0 -animation/clip_56/end_frame=0 -animation/clip_56/loops=false -animation/clip_57/name="" -animation/clip_57/start_frame=0 -animation/clip_57/end_frame=0 -animation/clip_57/loops=false -animation/clip_58/name="" -animation/clip_58/start_frame=0 -animation/clip_58/end_frame=0 -animation/clip_58/loops=false -animation/clip_59/name="" -animation/clip_59/start_frame=0 -animation/clip_59/end_frame=0 -animation/clip_59/loops=false -animation/clip_60/name="" -animation/clip_60/start_frame=0 -animation/clip_60/end_frame=0 -animation/clip_60/loops=false -animation/clip_61/name="" -animation/clip_61/start_frame=0 -animation/clip_61/end_frame=0 -animation/clip_61/loops=false -animation/clip_62/name="" -animation/clip_62/start_frame=0 -animation/clip_62/end_frame=0 -animation/clip_62/loops=false -animation/clip_63/name="" -animation/clip_63/start_frame=0 -animation/clip_63/end_frame=0 -animation/clip_63/loops=false -animation/clip_64/name="" -animation/clip_64/start_frame=0 -animation/clip_64/end_frame=0 -animation/clip_64/loops=false -animation/clip_65/name="" -animation/clip_65/start_frame=0 -animation/clip_65/end_frame=0 -animation/clip_65/loops=false -animation/clip_66/name="" -animation/clip_66/start_frame=0 -animation/clip_66/end_frame=0 -animation/clip_66/loops=false -animation/clip_67/name="" -animation/clip_67/start_frame=0 -animation/clip_67/end_frame=0 -animation/clip_67/loops=false -animation/clip_68/name="" -animation/clip_68/start_frame=0 -animation/clip_68/end_frame=0 -animation/clip_68/loops=false -animation/clip_69/name="" -animation/clip_69/start_frame=0 -animation/clip_69/end_frame=0 -animation/clip_69/loops=false -animation/clip_70/name="" -animation/clip_70/start_frame=0 -animation/clip_70/end_frame=0 -animation/clip_70/loops=false -animation/clip_71/name="" -animation/clip_71/start_frame=0 -animation/clip_71/end_frame=0 -animation/clip_71/loops=false -animation/clip_72/name="" -animation/clip_72/start_frame=0 -animation/clip_72/end_frame=0 -animation/clip_72/loops=false -animation/clip_73/name="" -animation/clip_73/start_frame=0 -animation/clip_73/end_frame=0 -animation/clip_73/loops=false -animation/clip_74/name="" -animation/clip_74/start_frame=0 -animation/clip_74/end_frame=0 -animation/clip_74/loops=false -animation/clip_75/name="" -animation/clip_75/start_frame=0 -animation/clip_75/end_frame=0 -animation/clip_75/loops=false -animation/clip_76/name="" -animation/clip_76/start_frame=0 -animation/clip_76/end_frame=0 -animation/clip_76/loops=false -animation/clip_77/name="" -animation/clip_77/start_frame=0 -animation/clip_77/end_frame=0 -animation/clip_77/loops=false -animation/clip_78/name="" -animation/clip_78/start_frame=0 -animation/clip_78/end_frame=0 -animation/clip_78/loops=false -animation/clip_79/name="" -animation/clip_79/start_frame=0 -animation/clip_79/end_frame=0 -animation/clip_79/loops=false -animation/clip_80/name="" -animation/clip_80/start_frame=0 -animation/clip_80/end_frame=0 -animation/clip_80/loops=false -animation/clip_81/name="" -animation/clip_81/start_frame=0 -animation/clip_81/end_frame=0 -animation/clip_81/loops=false -animation/clip_82/name="" -animation/clip_82/start_frame=0 -animation/clip_82/end_frame=0 -animation/clip_82/loops=false -animation/clip_83/name="" -animation/clip_83/start_frame=0 -animation/clip_83/end_frame=0 -animation/clip_83/loops=false -animation/clip_84/name="" -animation/clip_84/start_frame=0 -animation/clip_84/end_frame=0 -animation/clip_84/loops=false -animation/clip_85/name="" -animation/clip_85/start_frame=0 -animation/clip_85/end_frame=0 -animation/clip_85/loops=false -animation/clip_86/name="" -animation/clip_86/start_frame=0 -animation/clip_86/end_frame=0 -animation/clip_86/loops=false -animation/clip_87/name="" -animation/clip_87/start_frame=0 -animation/clip_87/end_frame=0 -animation/clip_87/loops=false -animation/clip_88/name="" -animation/clip_88/start_frame=0 -animation/clip_88/end_frame=0 -animation/clip_88/loops=false -animation/clip_89/name="" -animation/clip_89/start_frame=0 -animation/clip_89/end_frame=0 -animation/clip_89/loops=false -animation/clip_90/name="" -animation/clip_90/start_frame=0 -animation/clip_90/end_frame=0 -animation/clip_90/loops=false -animation/clip_91/name="" -animation/clip_91/start_frame=0 -animation/clip_91/end_frame=0 -animation/clip_91/loops=false -animation/clip_92/name="" -animation/clip_92/start_frame=0 -animation/clip_92/end_frame=0 -animation/clip_92/loops=false -animation/clip_93/name="" -animation/clip_93/start_frame=0 -animation/clip_93/end_frame=0 -animation/clip_93/loops=false -animation/clip_94/name="" -animation/clip_94/start_frame=0 -animation/clip_94/end_frame=0 -animation/clip_94/loops=false -animation/clip_95/name="" -animation/clip_95/start_frame=0 -animation/clip_95/end_frame=0 -animation/clip_95/loops=false -animation/clip_96/name="" -animation/clip_96/start_frame=0 -animation/clip_96/end_frame=0 -animation/clip_96/loops=false -animation/clip_97/name="" -animation/clip_97/start_frame=0 -animation/clip_97/end_frame=0 -animation/clip_97/loops=false -animation/clip_98/name="" -animation/clip_98/start_frame=0 -animation/clip_98/end_frame=0 -animation/clip_98/loops=false -animation/clip_99/name="" -animation/clip_99/start_frame=0 -animation/clip_99/end_frame=0 -animation/clip_99/loops=false -animation/clip_100/name="" -animation/clip_100/start_frame=0 -animation/clip_100/end_frame=0 -animation/clip_100/loops=false -animation/clip_101/name="" -animation/clip_101/start_frame=0 -animation/clip_101/end_frame=0 -animation/clip_101/loops=false -animation/clip_102/name="" -animation/clip_102/start_frame=0 -animation/clip_102/end_frame=0 -animation/clip_102/loops=false -animation/clip_103/name="" -animation/clip_103/start_frame=0 -animation/clip_103/end_frame=0 -animation/clip_103/loops=false -animation/clip_104/name="" -animation/clip_104/start_frame=0 -animation/clip_104/end_frame=0 -animation/clip_104/loops=false -animation/clip_105/name="" -animation/clip_105/start_frame=0 -animation/clip_105/end_frame=0 -animation/clip_105/loops=false -animation/clip_106/name="" -animation/clip_106/start_frame=0 -animation/clip_106/end_frame=0 -animation/clip_106/loops=false -animation/clip_107/name="" -animation/clip_107/start_frame=0 -animation/clip_107/end_frame=0 -animation/clip_107/loops=false -animation/clip_108/name="" -animation/clip_108/start_frame=0 -animation/clip_108/end_frame=0 -animation/clip_108/loops=false -animation/clip_109/name="" -animation/clip_109/start_frame=0 -animation/clip_109/end_frame=0 -animation/clip_109/loops=false -animation/clip_110/name="" -animation/clip_110/start_frame=0 -animation/clip_110/end_frame=0 -animation/clip_110/loops=false -animation/clip_111/name="" -animation/clip_111/start_frame=0 -animation/clip_111/end_frame=0 -animation/clip_111/loops=false -animation/clip_112/name="" -animation/clip_112/start_frame=0 -animation/clip_112/end_frame=0 -animation/clip_112/loops=false -animation/clip_113/name="" -animation/clip_113/start_frame=0 -animation/clip_113/end_frame=0 -animation/clip_113/loops=false -animation/clip_114/name="" -animation/clip_114/start_frame=0 -animation/clip_114/end_frame=0 -animation/clip_114/loops=false -animation/clip_115/name="" -animation/clip_115/start_frame=0 -animation/clip_115/end_frame=0 -animation/clip_115/loops=false -animation/clip_116/name="" -animation/clip_116/start_frame=0 -animation/clip_116/end_frame=0 -animation/clip_116/loops=false -animation/clip_117/name="" -animation/clip_117/start_frame=0 -animation/clip_117/end_frame=0 -animation/clip_117/loops=false -animation/clip_118/name="" -animation/clip_118/start_frame=0 -animation/clip_118/end_frame=0 -animation/clip_118/loops=false -animation/clip_119/name="" -animation/clip_119/start_frame=0 -animation/clip_119/end_frame=0 -animation/clip_119/loops=false -animation/clip_120/name="" -animation/clip_120/start_frame=0 -animation/clip_120/end_frame=0 -animation/clip_120/loops=false -animation/clip_121/name="" -animation/clip_121/start_frame=0 -animation/clip_121/end_frame=0 -animation/clip_121/loops=false -animation/clip_122/name="" -animation/clip_122/start_frame=0 -animation/clip_122/end_frame=0 -animation/clip_122/loops=false -animation/clip_123/name="" -animation/clip_123/start_frame=0 -animation/clip_123/end_frame=0 -animation/clip_123/loops=false -animation/clip_124/name="" -animation/clip_124/start_frame=0 -animation/clip_124/end_frame=0 -animation/clip_124/loops=false -animation/clip_125/name="" -animation/clip_125/start_frame=0 -animation/clip_125/end_frame=0 -animation/clip_125/loops=false -animation/clip_126/name="" -animation/clip_126/start_frame=0 -animation/clip_126/end_frame=0 -animation/clip_126/loops=false -animation/clip_127/name="" -animation/clip_127/start_frame=0 -animation/clip_127/end_frame=0 -animation/clip_127/loops=false -animation/clip_128/name="" -animation/clip_128/start_frame=0 -animation/clip_128/end_frame=0 -animation/clip_128/loops=false -animation/clip_129/name="" -animation/clip_129/start_frame=0 -animation/clip_129/end_frame=0 -animation/clip_129/loops=false -animation/clip_130/name="" -animation/clip_130/start_frame=0 -animation/clip_130/end_frame=0 -animation/clip_130/loops=false -animation/clip_131/name="" -animation/clip_131/start_frame=0 -animation/clip_131/end_frame=0 -animation/clip_131/loops=false -animation/clip_132/name="" -animation/clip_132/start_frame=0 -animation/clip_132/end_frame=0 -animation/clip_132/loops=false -animation/clip_133/name="" -animation/clip_133/start_frame=0 -animation/clip_133/end_frame=0 -animation/clip_133/loops=false -animation/clip_134/name="" -animation/clip_134/start_frame=0 -animation/clip_134/end_frame=0 -animation/clip_134/loops=false -animation/clip_135/name="" -animation/clip_135/start_frame=0 -animation/clip_135/end_frame=0 -animation/clip_135/loops=false -animation/clip_136/name="" -animation/clip_136/start_frame=0 -animation/clip_136/end_frame=0 -animation/clip_136/loops=false -animation/clip_137/name="" -animation/clip_137/start_frame=0 -animation/clip_137/end_frame=0 -animation/clip_137/loops=false -animation/clip_138/name="" -animation/clip_138/start_frame=0 -animation/clip_138/end_frame=0 -animation/clip_138/loops=false -animation/clip_139/name="" -animation/clip_139/start_frame=0 -animation/clip_139/end_frame=0 -animation/clip_139/loops=false -animation/clip_140/name="" -animation/clip_140/start_frame=0 -animation/clip_140/end_frame=0 -animation/clip_140/loops=false -animation/clip_141/name="" -animation/clip_141/start_frame=0 -animation/clip_141/end_frame=0 -animation/clip_141/loops=false -animation/clip_142/name="" -animation/clip_142/start_frame=0 -animation/clip_142/end_frame=0 -animation/clip_142/loops=false -animation/clip_143/name="" -animation/clip_143/start_frame=0 -animation/clip_143/end_frame=0 -animation/clip_143/loops=false -animation/clip_144/name="" -animation/clip_144/start_frame=0 -animation/clip_144/end_frame=0 -animation/clip_144/loops=false -animation/clip_145/name="" -animation/clip_145/start_frame=0 -animation/clip_145/end_frame=0 -animation/clip_145/loops=false -animation/clip_146/name="" -animation/clip_146/start_frame=0 -animation/clip_146/end_frame=0 -animation/clip_146/loops=false -animation/clip_147/name="" -animation/clip_147/start_frame=0 -animation/clip_147/end_frame=0 -animation/clip_147/loops=false -animation/clip_148/name="" -animation/clip_148/start_frame=0 -animation/clip_148/end_frame=0 -animation/clip_148/loops=false -animation/clip_149/name="" -animation/clip_149/start_frame=0 -animation/clip_149/end_frame=0 -animation/clip_149/loops=false -animation/clip_150/name="" -animation/clip_150/start_frame=0 -animation/clip_150/end_frame=0 -animation/clip_150/loops=false -animation/clip_151/name="" -animation/clip_151/start_frame=0 -animation/clip_151/end_frame=0 -animation/clip_151/loops=false -animation/clip_152/name="" -animation/clip_152/start_frame=0 -animation/clip_152/end_frame=0 -animation/clip_152/loops=false -animation/clip_153/name="" -animation/clip_153/start_frame=0 -animation/clip_153/end_frame=0 -animation/clip_153/loops=false -animation/clip_154/name="" -animation/clip_154/start_frame=0 -animation/clip_154/end_frame=0 -animation/clip_154/loops=false -animation/clip_155/name="" -animation/clip_155/start_frame=0 -animation/clip_155/end_frame=0 -animation/clip_155/loops=false -animation/clip_156/name="" -animation/clip_156/start_frame=0 -animation/clip_156/end_frame=0 -animation/clip_156/loops=false -animation/clip_157/name="" -animation/clip_157/start_frame=0 -animation/clip_157/end_frame=0 -animation/clip_157/loops=false -animation/clip_158/name="" -animation/clip_158/start_frame=0 -animation/clip_158/end_frame=0 -animation/clip_158/loops=false -animation/clip_159/name="" -animation/clip_159/start_frame=0 -animation/clip_159/end_frame=0 -animation/clip_159/loops=false -animation/clip_160/name="" -animation/clip_160/start_frame=0 -animation/clip_160/end_frame=0 -animation/clip_160/loops=false -animation/clip_161/name="" -animation/clip_161/start_frame=0 -animation/clip_161/end_frame=0 -animation/clip_161/loops=false -animation/clip_162/name="" -animation/clip_162/start_frame=0 -animation/clip_162/end_frame=0 -animation/clip_162/loops=false -animation/clip_163/name="" -animation/clip_163/start_frame=0 -animation/clip_163/end_frame=0 -animation/clip_163/loops=false -animation/clip_164/name="" -animation/clip_164/start_frame=0 -animation/clip_164/end_frame=0 -animation/clip_164/loops=false -animation/clip_165/name="" -animation/clip_165/start_frame=0 -animation/clip_165/end_frame=0 -animation/clip_165/loops=false -animation/clip_166/name="" -animation/clip_166/start_frame=0 -animation/clip_166/end_frame=0 -animation/clip_166/loops=false -animation/clip_167/name="" -animation/clip_167/start_frame=0 -animation/clip_167/end_frame=0 -animation/clip_167/loops=false -animation/clip_168/name="" -animation/clip_168/start_frame=0 -animation/clip_168/end_frame=0 -animation/clip_168/loops=false -animation/clip_169/name="" -animation/clip_169/start_frame=0 -animation/clip_169/end_frame=0 -animation/clip_169/loops=false -animation/clip_170/name="" -animation/clip_170/start_frame=0 -animation/clip_170/end_frame=0 -animation/clip_170/loops=false -animation/clip_171/name="" -animation/clip_171/start_frame=0 -animation/clip_171/end_frame=0 -animation/clip_171/loops=false -animation/clip_172/name="" -animation/clip_172/start_frame=0 -animation/clip_172/end_frame=0 -animation/clip_172/loops=false -animation/clip_173/name="" -animation/clip_173/start_frame=0 -animation/clip_173/end_frame=0 -animation/clip_173/loops=false -animation/clip_174/name="" -animation/clip_174/start_frame=0 -animation/clip_174/end_frame=0 -animation/clip_174/loops=false -animation/clip_175/name="" -animation/clip_175/start_frame=0 -animation/clip_175/end_frame=0 -animation/clip_175/loops=false -animation/clip_176/name="" -animation/clip_176/start_frame=0 -animation/clip_176/end_frame=0 -animation/clip_176/loops=false -animation/clip_177/name="" -animation/clip_177/start_frame=0 -animation/clip_177/end_frame=0 -animation/clip_177/loops=false -animation/clip_178/name="" -animation/clip_178/start_frame=0 -animation/clip_178/end_frame=0 -animation/clip_178/loops=false -animation/clip_179/name="" -animation/clip_179/start_frame=0 -animation/clip_179/end_frame=0 -animation/clip_179/loops=false -animation/clip_180/name="" -animation/clip_180/start_frame=0 -animation/clip_180/end_frame=0 -animation/clip_180/loops=false -animation/clip_181/name="" -animation/clip_181/start_frame=0 -animation/clip_181/end_frame=0 -animation/clip_181/loops=false -animation/clip_182/name="" -animation/clip_182/start_frame=0 -animation/clip_182/end_frame=0 -animation/clip_182/loops=false -animation/clip_183/name="" -animation/clip_183/start_frame=0 -animation/clip_183/end_frame=0 -animation/clip_183/loops=false -animation/clip_184/name="" -animation/clip_184/start_frame=0 -animation/clip_184/end_frame=0 -animation/clip_184/loops=false -animation/clip_185/name="" -animation/clip_185/start_frame=0 -animation/clip_185/end_frame=0 -animation/clip_185/loops=false -animation/clip_186/name="" -animation/clip_186/start_frame=0 -animation/clip_186/end_frame=0 -animation/clip_186/loops=false -animation/clip_187/name="" -animation/clip_187/start_frame=0 -animation/clip_187/end_frame=0 -animation/clip_187/loops=false -animation/clip_188/name="" -animation/clip_188/start_frame=0 -animation/clip_188/end_frame=0 -animation/clip_188/loops=false -animation/clip_189/name="" -animation/clip_189/start_frame=0 -animation/clip_189/end_frame=0 -animation/clip_189/loops=false -animation/clip_190/name="" -animation/clip_190/start_frame=0 -animation/clip_190/end_frame=0 -animation/clip_190/loops=false -animation/clip_191/name="" -animation/clip_191/start_frame=0 -animation/clip_191/end_frame=0 -animation/clip_191/loops=false -animation/clip_192/name="" -animation/clip_192/start_frame=0 -animation/clip_192/end_frame=0 -animation/clip_192/loops=false -animation/clip_193/name="" -animation/clip_193/start_frame=0 -animation/clip_193/end_frame=0 -animation/clip_193/loops=false -animation/clip_194/name="" -animation/clip_194/start_frame=0 -animation/clip_194/end_frame=0 -animation/clip_194/loops=false -animation/clip_195/name="" -animation/clip_195/start_frame=0 -animation/clip_195/end_frame=0 -animation/clip_195/loops=false -animation/clip_196/name="" -animation/clip_196/start_frame=0 -animation/clip_196/end_frame=0 -animation/clip_196/loops=false -animation/clip_197/name="" -animation/clip_197/start_frame=0 -animation/clip_197/end_frame=0 -animation/clip_197/loops=false -animation/clip_198/name="" -animation/clip_198/start_frame=0 -animation/clip_198/end_frame=0 -animation/clip_198/loops=false -animation/clip_199/name="" -animation/clip_199/start_frame=0 -animation/clip_199/end_frame=0 -animation/clip_199/loops=false -animation/clip_200/name="" -animation/clip_200/start_frame=0 -animation/clip_200/end_frame=0 -animation/clip_200/loops=false -animation/clip_201/name="" -animation/clip_201/start_frame=0 -animation/clip_201/end_frame=0 -animation/clip_201/loops=false -animation/clip_202/name="" -animation/clip_202/start_frame=0 -animation/clip_202/end_frame=0 -animation/clip_202/loops=false -animation/clip_203/name="" -animation/clip_203/start_frame=0 -animation/clip_203/end_frame=0 -animation/clip_203/loops=false -animation/clip_204/name="" -animation/clip_204/start_frame=0 -animation/clip_204/end_frame=0 -animation/clip_204/loops=false -animation/clip_205/name="" -animation/clip_205/start_frame=0 -animation/clip_205/end_frame=0 -animation/clip_205/loops=false -animation/clip_206/name="" -animation/clip_206/start_frame=0 -animation/clip_206/end_frame=0 -animation/clip_206/loops=false -animation/clip_207/name="" -animation/clip_207/start_frame=0 -animation/clip_207/end_frame=0 -animation/clip_207/loops=false -animation/clip_208/name="" -animation/clip_208/start_frame=0 -animation/clip_208/end_frame=0 -animation/clip_208/loops=false -animation/clip_209/name="" -animation/clip_209/start_frame=0 -animation/clip_209/end_frame=0 -animation/clip_209/loops=false -animation/clip_210/name="" -animation/clip_210/start_frame=0 -animation/clip_210/end_frame=0 -animation/clip_210/loops=false -animation/clip_211/name="" -animation/clip_211/start_frame=0 -animation/clip_211/end_frame=0 -animation/clip_211/loops=false -animation/clip_212/name="" -animation/clip_212/start_frame=0 -animation/clip_212/end_frame=0 -animation/clip_212/loops=false -animation/clip_213/name="" -animation/clip_213/start_frame=0 -animation/clip_213/end_frame=0 -animation/clip_213/loops=false -animation/clip_214/name="" -animation/clip_214/start_frame=0 -animation/clip_214/end_frame=0 -animation/clip_214/loops=false -animation/clip_215/name="" -animation/clip_215/start_frame=0 -animation/clip_215/end_frame=0 -animation/clip_215/loops=false -animation/clip_216/name="" -animation/clip_216/start_frame=0 -animation/clip_216/end_frame=0 -animation/clip_216/loops=false -animation/clip_217/name="" -animation/clip_217/start_frame=0 -animation/clip_217/end_frame=0 -animation/clip_217/loops=false -animation/clip_218/name="" -animation/clip_218/start_frame=0 -animation/clip_218/end_frame=0 -animation/clip_218/loops=false -animation/clip_219/name="" -animation/clip_219/start_frame=0 -animation/clip_219/end_frame=0 -animation/clip_219/loops=false -animation/clip_220/name="" -animation/clip_220/start_frame=0 -animation/clip_220/end_frame=0 -animation/clip_220/loops=false -animation/clip_221/name="" -animation/clip_221/start_frame=0 -animation/clip_221/end_frame=0 -animation/clip_221/loops=false -animation/clip_222/name="" -animation/clip_222/start_frame=0 -animation/clip_222/end_frame=0 -animation/clip_222/loops=false -animation/clip_223/name="" -animation/clip_223/start_frame=0 -animation/clip_223/end_frame=0 -animation/clip_223/loops=false -animation/clip_224/name="" -animation/clip_224/start_frame=0 -animation/clip_224/end_frame=0 -animation/clip_224/loops=false -animation/clip_225/name="" -animation/clip_225/start_frame=0 -animation/clip_225/end_frame=0 -animation/clip_225/loops=false -animation/clip_226/name="" -animation/clip_226/start_frame=0 -animation/clip_226/end_frame=0 -animation/clip_226/loops=false -animation/clip_227/name="" -animation/clip_227/start_frame=0 -animation/clip_227/end_frame=0 -animation/clip_227/loops=false -animation/clip_228/name="" -animation/clip_228/start_frame=0 -animation/clip_228/end_frame=0 -animation/clip_228/loops=false -animation/clip_229/name="" -animation/clip_229/start_frame=0 -animation/clip_229/end_frame=0 -animation/clip_229/loops=false -animation/clip_230/name="" -animation/clip_230/start_frame=0 -animation/clip_230/end_frame=0 -animation/clip_230/loops=false -animation/clip_231/name="" -animation/clip_231/start_frame=0 -animation/clip_231/end_frame=0 -animation/clip_231/loops=false -animation/clip_232/name="" -animation/clip_232/start_frame=0 -animation/clip_232/end_frame=0 -animation/clip_232/loops=false -animation/clip_233/name="" -animation/clip_233/start_frame=0 -animation/clip_233/end_frame=0 -animation/clip_233/loops=false -animation/clip_234/name="" -animation/clip_234/start_frame=0 -animation/clip_234/end_frame=0 -animation/clip_234/loops=false -animation/clip_235/name="" -animation/clip_235/start_frame=0 -animation/clip_235/end_frame=0 -animation/clip_235/loops=false -animation/clip_236/name="" -animation/clip_236/start_frame=0 -animation/clip_236/end_frame=0 -animation/clip_236/loops=false -animation/clip_237/name="" -animation/clip_237/start_frame=0 -animation/clip_237/end_frame=0 -animation/clip_237/loops=false -animation/clip_238/name="" -animation/clip_238/start_frame=0 -animation/clip_238/end_frame=0 -animation/clip_238/loops=false -animation/clip_239/name="" -animation/clip_239/start_frame=0 -animation/clip_239/end_frame=0 -animation/clip_239/loops=false -animation/clip_240/name="" -animation/clip_240/start_frame=0 -animation/clip_240/end_frame=0 -animation/clip_240/loops=false -animation/clip_241/name="" -animation/clip_241/start_frame=0 -animation/clip_241/end_frame=0 -animation/clip_241/loops=false -animation/clip_242/name="" -animation/clip_242/start_frame=0 -animation/clip_242/end_frame=0 -animation/clip_242/loops=false -animation/clip_243/name="" -animation/clip_243/start_frame=0 -animation/clip_243/end_frame=0 -animation/clip_243/loops=false -animation/clip_244/name="" -animation/clip_244/start_frame=0 -animation/clip_244/end_frame=0 -animation/clip_244/loops=false -animation/clip_245/name="" -animation/clip_245/start_frame=0 -animation/clip_245/end_frame=0 -animation/clip_245/loops=false -animation/clip_246/name="" -animation/clip_246/start_frame=0 -animation/clip_246/end_frame=0 -animation/clip_246/loops=false -animation/clip_247/name="" -animation/clip_247/start_frame=0 -animation/clip_247/end_frame=0 -animation/clip_247/loops=false -animation/clip_248/name="" -animation/clip_248/start_frame=0 -animation/clip_248/end_frame=0 -animation/clip_248/loops=false -animation/clip_249/name="" -animation/clip_249/start_frame=0 -animation/clip_249/end_frame=0 -animation/clip_249/loops=false -animation/clip_250/name="" -animation/clip_250/start_frame=0 -animation/clip_250/end_frame=0 -animation/clip_250/loops=false -animation/clip_251/name="" -animation/clip_251/start_frame=0 -animation/clip_251/end_frame=0 -animation/clip_251/loops=false -animation/clip_252/name="" -animation/clip_252/start_frame=0 -animation/clip_252/end_frame=0 -animation/clip_252/loops=false -animation/clip_253/name="" -animation/clip_253/start_frame=0 -animation/clip_253/end_frame=0 -animation/clip_253/loops=false -animation/clip_254/name="" -animation/clip_254/start_frame=0 -animation/clip_254/end_frame=0 -animation/clip_254/loops=false -animation/clip_255/name="" -animation/clip_255/start_frame=0 -animation/clip_255/end_frame=0 -animation/clip_255/loops=false -animation/clip_256/name="" -animation/clip_256/start_frame=0 -animation/clip_256/end_frame=0 -animation/clip_256/loops=false +import_script/path="" +_subresources={} diff --git a/3d/material_testers/models/test_bed/test_bed.tscn b/3d/material_testers/models/test_bed/test_bed.tscn index 570f9b6b..d39fad39 100644 --- a/3d/material_testers/models/test_bed/test_bed.tscn +++ b/3d/material_testers/models/test_bed/test_bed.tscn @@ -1,19 +1,21 @@ -[gd_scene load_steps=4 format=2] +[gd_scene load_steps=4 format=3 uid="uid://cgqfdwd4g5e14"] -[ext_resource path="res://models/test_bed/test_bed.glb" type="PackedScene" id=1] -[ext_resource path="res://models/test_bed/small_material.tres" type="Material" id=2] -[ext_resource path="res://models/test_bed/large_material.tres" type="Material" id=3] +[ext_resource type="PackedScene" uid="uid://b60ph1cdl0xlp" path="res://models/test_bed/test_bed.glb" id="1"] +[ext_resource type="Material" path="res://models/test_bed/small_material.tres" id="2"] +[ext_resource type="Material" path="res://models/test_bed/large_material.tres" id="3"] -[node name="TestBed" instance=ExtResource( 1 )] +[node name="TestBed" instance=ExtResource( "1" )] [node name="SmallPart" parent="." index="0"] -surface_material_override/0 = ExtResource( 2 ) +surface_material_override/0 = ExtResource( "2" ) [node name="LargePart" parent="." index="1"] -surface_material_override/0 = ExtResource( 3 ) +surface_material_override/0 = ExtResource( "3" ) [node name="SpotLight3D" type="SpotLight3D" parent="." index="2"] transform = Transform3D(1, 0, 0, 0, 0.707107, 0.707107, 0, -0.707107, 0.707107, 0, 5.5, 0) shadow_enabled = true -spot_range = 9.37954 -spot_angle = 31.8299 +spot_range = 10.0 +spot_attenuation = 0.1 +spot_angle = 35.0 +spot_angle_attenuation = 2.0 diff --git a/3d/material_testers/project.godot b/3d/material_testers/project.godot index 944df625..d182962a 100644 --- a/3d/material_testers/project.godot +++ b/3d/material_testers/project.godot @@ -6,7 +6,7 @@ ; [section] ; section goes between [] ; param=value ; assign values to parameters -config_version=4 +config_version=5 [application] @@ -17,10 +17,10 @@ for the purpose of showcasing Godot's rendering capabilities. This demo was featured at the beginning of the Godot 3.0 trailer." run/main_scene="res://material_tester.tscn" config/icon="res://icon.png" +config/features=PackedStringArray("4.0") [display] -window/dpi/allow_hidpi=true window/stretch/mode="2d" window/stretch/aspect="expand" diff --git a/3d/material_testers/test_materials/aluminium_albedo.png.import b/3d/material_testers/test_materials/aluminium_albedo.png.import index 66065c64..eaa3427d 100644 --- a/3d/material_testers/test_materials/aluminium_albedo.png.import +++ b/3d/material_testers/test_materials/aluminium_albedo.png.import @@ -1,37 +1,35 @@ [remap] importer="texture" -type="StreamTexture2D" -path.s3tc="res://.godot/imported/aluminium_albedo.png-a68e22c8a951430ab431b2a7307e8bc7.s3tc.stex" -path.etc="res://.godot/imported/aluminium_albedo.png-a68e22c8a951430ab431b2a7307e8bc7.etc.stex" +type="CompressedTexture2D" +uid="uid://b8o8fe1yoym4t" +path.s3tc="res://.godot/imported/aluminium_albedo.png-a68e22c8a951430ab431b2a7307e8bc7.s3tc.ctex" +path.etc2="res://.godot/imported/aluminium_albedo.png-a68e22c8a951430ab431b2a7307e8bc7.etc2.ctex" metadata={ -"imported_formats": ["s3tc", "etc"], +"imported_formats": ["s3tc", "etc2"], "vram_texture": true } [deps] source_file="res://test_materials/aluminium_albedo.png" -dest_files=["res://.godot/imported/aluminium_albedo.png-a68e22c8a951430ab431b2a7307e8bc7.s3tc.stex", "res://.godot/imported/aluminium_albedo.png-a68e22c8a951430ab431b2a7307e8bc7.etc.stex"] +dest_files=["res://.godot/imported/aluminium_albedo.png-a68e22c8a951430ab431b2a7307e8bc7.s3tc.ctex", "res://.godot/imported/aluminium_albedo.png-a68e22c8a951430ab431b2a7307e8bc7.etc2.ctex"] [params] compress/mode=2 compress/lossy_quality=0.7 -compress/hdr_mode=0 +compress/hdr_compression=1 compress/bptc_ldr=0 compress/normal_map=0 -flags/repeat=true -flags/filter=true -flags/mipmaps=true -flags/anisotropic=true -flags/srgb=1 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" process/fix_alpha_border=true process/premult_alpha=false -process/HDR_as_SRGB=false -process/invert_color=false process/normal_map_invert_y=false -stream=false -size_limit=0 -detect_3d=false -svg/scale=1.0 +process/hdr_as_srgb=false +process/size_limit=0 +detect_3d/compress_to=0 diff --git a/3d/material_testers/test_materials/aluminium_flow.png.import b/3d/material_testers/test_materials/aluminium_flow.png.import index 9c7d2cd4..9d893224 100644 --- a/3d/material_testers/test_materials/aluminium_flow.png.import +++ b/3d/material_testers/test_materials/aluminium_flow.png.import @@ -1,37 +1,35 @@ [remap] importer="texture" -type="StreamTexture2D" -path.s3tc="res://.godot/imported/aluminium_flow.png-93fdac7ed0fa884674e32e5ec0c6d690.s3tc.stex" -path.etc="res://.godot/imported/aluminium_flow.png-93fdac7ed0fa884674e32e5ec0c6d690.etc.stex" +type="CompressedTexture2D" +uid="uid://bebdum2tiuopj" +path.s3tc="res://.godot/imported/aluminium_flow.png-93fdac7ed0fa884674e32e5ec0c6d690.s3tc.ctex" +path.etc2="res://.godot/imported/aluminium_flow.png-93fdac7ed0fa884674e32e5ec0c6d690.etc2.ctex" metadata={ -"imported_formats": ["s3tc", "etc"], +"imported_formats": ["s3tc", "etc2"], "vram_texture": true } [deps] source_file="res://test_materials/aluminium_flow.png" -dest_files=["res://.godot/imported/aluminium_flow.png-93fdac7ed0fa884674e32e5ec0c6d690.s3tc.stex", "res://.godot/imported/aluminium_flow.png-93fdac7ed0fa884674e32e5ec0c6d690.etc.stex"] +dest_files=["res://.godot/imported/aluminium_flow.png-93fdac7ed0fa884674e32e5ec0c6d690.s3tc.ctex", "res://.godot/imported/aluminium_flow.png-93fdac7ed0fa884674e32e5ec0c6d690.etc2.ctex"] [params] compress/mode=2 compress/lossy_quality=0.7 -compress/hdr_mode=0 +compress/hdr_compression=1 compress/bptc_ldr=0 compress/normal_map=0 -flags/repeat=true -flags/filter=true -flags/mipmaps=true -flags/anisotropic=true -flags/srgb=2 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" process/fix_alpha_border=true process/premult_alpha=false -process/HDR_as_SRGB=false -process/invert_color=false process/normal_map_invert_y=false -stream=false -size_limit=0 -detect_3d=false -svg/scale=1.0 +process/hdr_as_srgb=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/3d/material_testers/test_materials/aluminium_normal.png.import b/3d/material_testers/test_materials/aluminium_normal.png.import index b81ab609..f3748dc4 100644 --- a/3d/material_testers/test_materials/aluminium_normal.png.import +++ b/3d/material_testers/test_materials/aluminium_normal.png.import @@ -1,37 +1,35 @@ [remap] importer="texture" -type="StreamTexture2D" -path.s3tc="res://.godot/imported/aluminium_normal.png-ff9bf84211f307b1d9e8bf86ebea04b1.s3tc.stex" -path.etc="res://.godot/imported/aluminium_normal.png-ff9bf84211f307b1d9e8bf86ebea04b1.etc.stex" +type="CompressedTexture2D" +uid="uid://0546okw1k04b" +path.s3tc="res://.godot/imported/aluminium_normal.png-ff9bf84211f307b1d9e8bf86ebea04b1.s3tc.ctex" +path.etc2="res://.godot/imported/aluminium_normal.png-ff9bf84211f307b1d9e8bf86ebea04b1.etc2.ctex" metadata={ -"imported_formats": ["s3tc", "etc"], +"imported_formats": ["s3tc", "etc2"], "vram_texture": true } [deps] source_file="res://test_materials/aluminium_normal.png" -dest_files=["res://.godot/imported/aluminium_normal.png-ff9bf84211f307b1d9e8bf86ebea04b1.s3tc.stex", "res://.godot/imported/aluminium_normal.png-ff9bf84211f307b1d9e8bf86ebea04b1.etc.stex"] +dest_files=["res://.godot/imported/aluminium_normal.png-ff9bf84211f307b1d9e8bf86ebea04b1.s3tc.ctex", "res://.godot/imported/aluminium_normal.png-ff9bf84211f307b1d9e8bf86ebea04b1.etc2.ctex"] [params] compress/mode=2 compress/lossy_quality=0.7 -compress/hdr_mode=0 +compress/hdr_compression=1 compress/bptc_ldr=0 compress/normal_map=1 -flags/repeat=true -flags/filter=true -flags/mipmaps=true -flags/anisotropic=true -flags/srgb=2 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" process/fix_alpha_border=true process/premult_alpha=false -process/HDR_as_SRGB=false -process/invert_color=false process/normal_map_invert_y=false -stream=false -size_limit=0 -detect_3d=false -svg/scale=1.0 +process/hdr_as_srgb=false +process/size_limit=0 +detect_3d/compress_to=0 diff --git a/3d/material_testers/test_materials/marble_albedo.png.import b/3d/material_testers/test_materials/marble_albedo.png.import index c4291a21..af5b34ce 100644 --- a/3d/material_testers/test_materials/marble_albedo.png.import +++ b/3d/material_testers/test_materials/marble_albedo.png.import @@ -1,37 +1,35 @@ [remap] importer="texture" -type="StreamTexture2D" -path.s3tc="res://.godot/imported/marble_albedo.png-47e5ec5352a78eb204ccaf317de65697.s3tc.stex" -path.etc="res://.godot/imported/marble_albedo.png-47e5ec5352a78eb204ccaf317de65697.etc.stex" +type="CompressedTexture2D" +uid="uid://c31bsq44dxyh1" +path.s3tc="res://.godot/imported/marble_albedo.png-47e5ec5352a78eb204ccaf317de65697.s3tc.ctex" +path.etc2="res://.godot/imported/marble_albedo.png-47e5ec5352a78eb204ccaf317de65697.etc2.ctex" metadata={ -"imported_formats": ["s3tc", "etc"], +"imported_formats": ["s3tc", "etc2"], "vram_texture": true } [deps] source_file="res://test_materials/marble_albedo.png" -dest_files=["res://.godot/imported/marble_albedo.png-47e5ec5352a78eb204ccaf317de65697.s3tc.stex", "res://.godot/imported/marble_albedo.png-47e5ec5352a78eb204ccaf317de65697.etc.stex"] +dest_files=["res://.godot/imported/marble_albedo.png-47e5ec5352a78eb204ccaf317de65697.s3tc.ctex", "res://.godot/imported/marble_albedo.png-47e5ec5352a78eb204ccaf317de65697.etc2.ctex"] [params] compress/mode=2 compress/lossy_quality=0.7 -compress/hdr_mode=0 +compress/hdr_compression=1 compress/bptc_ldr=0 compress/normal_map=0 -flags/repeat=true -flags/filter=true -flags/mipmaps=true -flags/anisotropic=true -flags/srgb=1 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" process/fix_alpha_border=true process/premult_alpha=false -process/HDR_as_SRGB=false -process/invert_color=false process/normal_map_invert_y=false -stream=false -size_limit=0 -detect_3d=false -svg/scale=1.0 +process/hdr_as_srgb=false +process/size_limit=0 +detect_3d/compress_to=0 diff --git a/3d/material_testers/test_materials/rock_albedo.jpg.import b/3d/material_testers/test_materials/rock_albedo.jpg.import index 184412bf..eb30dc6d 100644 --- a/3d/material_testers/test_materials/rock_albedo.jpg.import +++ b/3d/material_testers/test_materials/rock_albedo.jpg.import @@ -1,37 +1,35 @@ [remap] importer="texture" -type="StreamTexture2D" -path.s3tc="res://.godot/imported/rock_albedo.jpg-65fe78b8c7d44da07721bb783fdef67a.s3tc.stex" -path.etc="res://.godot/imported/rock_albedo.jpg-65fe78b8c7d44da07721bb783fdef67a.etc.stex" +type="CompressedTexture2D" +uid="uid://7d4kolmsjw8b" +path.s3tc="res://.godot/imported/rock_albedo.jpg-65fe78b8c7d44da07721bb783fdef67a.s3tc.ctex" +path.etc2="res://.godot/imported/rock_albedo.jpg-65fe78b8c7d44da07721bb783fdef67a.etc2.ctex" metadata={ -"imported_formats": ["s3tc", "etc"], +"imported_formats": ["s3tc", "etc2"], "vram_texture": true } [deps] source_file="res://test_materials/rock_albedo.jpg" -dest_files=["res://.godot/imported/rock_albedo.jpg-65fe78b8c7d44da07721bb783fdef67a.s3tc.stex", "res://.godot/imported/rock_albedo.jpg-65fe78b8c7d44da07721bb783fdef67a.etc.stex"] +dest_files=["res://.godot/imported/rock_albedo.jpg-65fe78b8c7d44da07721bb783fdef67a.s3tc.ctex", "res://.godot/imported/rock_albedo.jpg-65fe78b8c7d44da07721bb783fdef67a.etc2.ctex"] [params] compress/mode=2 compress/lossy_quality=0.7 -compress/hdr_mode=0 +compress/hdr_compression=1 compress/bptc_ldr=0 compress/normal_map=0 -flags/repeat=true -flags/filter=true -flags/mipmaps=true -flags/anisotropic=true -flags/srgb=1 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" process/fix_alpha_border=true process/premult_alpha=false -process/HDR_as_SRGB=false -process/invert_color=false process/normal_map_invert_y=false -stream=false -size_limit=0 -detect_3d=false -svg/scale=1.0 +process/hdr_as_srgb=false +process/size_limit=0 +detect_3d/compress_to=0 diff --git a/3d/material_testers/test_materials/rock_ao.jpg.import b/3d/material_testers/test_materials/rock_ao.jpg.import index 0eb8c26a..43d286ff 100644 --- a/3d/material_testers/test_materials/rock_ao.jpg.import +++ b/3d/material_testers/test_materials/rock_ao.jpg.import @@ -1,37 +1,35 @@ [remap] importer="texture" -type="StreamTexture2D" -path.s3tc="res://.godot/imported/rock_ao.jpg-7578b4ab1e595c076d796172ca68cfa6.s3tc.stex" -path.etc="res://.godot/imported/rock_ao.jpg-7578b4ab1e595c076d796172ca68cfa6.etc.stex" +type="CompressedTexture2D" +uid="uid://3m1hjc851lp4" +path.s3tc="res://.godot/imported/rock_ao.jpg-7578b4ab1e595c076d796172ca68cfa6.s3tc.ctex" +path.etc2="res://.godot/imported/rock_ao.jpg-7578b4ab1e595c076d796172ca68cfa6.etc2.ctex" metadata={ -"imported_formats": ["s3tc", "etc"], +"imported_formats": ["s3tc", "etc2"], "vram_texture": true } [deps] source_file="res://test_materials/rock_ao.jpg" -dest_files=["res://.godot/imported/rock_ao.jpg-7578b4ab1e595c076d796172ca68cfa6.s3tc.stex", "res://.godot/imported/rock_ao.jpg-7578b4ab1e595c076d796172ca68cfa6.etc.stex"] +dest_files=["res://.godot/imported/rock_ao.jpg-7578b4ab1e595c076d796172ca68cfa6.s3tc.ctex", "res://.godot/imported/rock_ao.jpg-7578b4ab1e595c076d796172ca68cfa6.etc2.ctex"] [params] compress/mode=2 compress/lossy_quality=0.7 -compress/hdr_mode=0 +compress/hdr_compression=1 compress/bptc_ldr=0 compress/normal_map=0 -flags/repeat=true -flags/filter=true -flags/mipmaps=true -flags/anisotropic=true -flags/srgb=2 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" process/fix_alpha_border=true process/premult_alpha=false -process/HDR_as_SRGB=false -process/invert_color=false process/normal_map_invert_y=false -stream=false -size_limit=0 -detect_3d=false -svg/scale=1.0 +process/hdr_as_srgb=false +process/size_limit=0 +detect_3d/compress_to=0 diff --git a/3d/material_testers/test_materials/rock_depth.jpg.import b/3d/material_testers/test_materials/rock_depth.jpg.import index b22c8e2f..af41f619 100644 --- a/3d/material_testers/test_materials/rock_depth.jpg.import +++ b/3d/material_testers/test_materials/rock_depth.jpg.import @@ -1,37 +1,35 @@ [remap] importer="texture" -type="StreamTexture2D" -path.s3tc="res://.godot/imported/rock_depth.jpg-4080fbc6202f837d0b0deef2c981bad4.s3tc.stex" -path.etc="res://.godot/imported/rock_depth.jpg-4080fbc6202f837d0b0deef2c981bad4.etc.stex" +type="CompressedTexture2D" +uid="uid://c0dbkcj7pe743" +path.s3tc="res://.godot/imported/rock_depth.jpg-4080fbc6202f837d0b0deef2c981bad4.s3tc.ctex" +path.etc2="res://.godot/imported/rock_depth.jpg-4080fbc6202f837d0b0deef2c981bad4.etc2.ctex" metadata={ -"imported_formats": ["s3tc", "etc"], +"imported_formats": ["s3tc", "etc2"], "vram_texture": true } [deps] source_file="res://test_materials/rock_depth.jpg" -dest_files=["res://.godot/imported/rock_depth.jpg-4080fbc6202f837d0b0deef2c981bad4.s3tc.stex", "res://.godot/imported/rock_depth.jpg-4080fbc6202f837d0b0deef2c981bad4.etc.stex"] +dest_files=["res://.godot/imported/rock_depth.jpg-4080fbc6202f837d0b0deef2c981bad4.s3tc.ctex", "res://.godot/imported/rock_depth.jpg-4080fbc6202f837d0b0deef2c981bad4.etc2.ctex"] [params] compress/mode=2 compress/lossy_quality=0.7 -compress/hdr_mode=0 +compress/hdr_compression=1 compress/bptc_ldr=0 compress/normal_map=0 -flags/repeat=true -flags/filter=true -flags/mipmaps=true -flags/anisotropic=true -flags/srgb=2 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" process/fix_alpha_border=true process/premult_alpha=false -process/HDR_as_SRGB=false -process/invert_color=false process/normal_map_invert_y=false -stream=false -size_limit=0 -detect_3d=false -svg/scale=1.0 +process/hdr_as_srgb=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/3d/material_testers/test_materials/rock_metal.jpg.import b/3d/material_testers/test_materials/rock_metal.jpg.import index 8acd829f..a2314237 100644 --- a/3d/material_testers/test_materials/rock_metal.jpg.import +++ b/3d/material_testers/test_materials/rock_metal.jpg.import @@ -1,37 +1,35 @@ [remap] importer="texture" -type="StreamTexture2D" -path.s3tc="res://.godot/imported/rock_metal.jpg-8defa2e9d8169c7a08962c4d1f3e6354.s3tc.stex" -path.etc="res://.godot/imported/rock_metal.jpg-8defa2e9d8169c7a08962c4d1f3e6354.etc.stex" +type="CompressedTexture2D" +uid="uid://h1biny5hb4xc" +path.s3tc="res://.godot/imported/rock_metal.jpg-8defa2e9d8169c7a08962c4d1f3e6354.s3tc.ctex" +path.etc2="res://.godot/imported/rock_metal.jpg-8defa2e9d8169c7a08962c4d1f3e6354.etc2.ctex" metadata={ -"imported_formats": ["s3tc", "etc"], +"imported_formats": ["s3tc", "etc2"], "vram_texture": true } [deps] source_file="res://test_materials/rock_metal.jpg" -dest_files=["res://.godot/imported/rock_metal.jpg-8defa2e9d8169c7a08962c4d1f3e6354.s3tc.stex", "res://.godot/imported/rock_metal.jpg-8defa2e9d8169c7a08962c4d1f3e6354.etc.stex"] +dest_files=["res://.godot/imported/rock_metal.jpg-8defa2e9d8169c7a08962c4d1f3e6354.s3tc.ctex", "res://.godot/imported/rock_metal.jpg-8defa2e9d8169c7a08962c4d1f3e6354.etc2.ctex"] [params] compress/mode=2 compress/lossy_quality=0.7 -compress/hdr_mode=0 +compress/hdr_compression=1 compress/bptc_ldr=0 compress/normal_map=1 -flags/repeat=true -flags/filter=true -flags/mipmaps=true -flags/anisotropic=true -flags/srgb=2 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" process/fix_alpha_border=true process/premult_alpha=false -process/HDR_as_SRGB=false -process/invert_color=false process/normal_map_invert_y=false -stream=false -size_limit=0 -detect_3d=false -svg/scale=1.0 +process/hdr_as_srgb=false +process/size_limit=0 +detect_3d/compress_to=0 diff --git a/3d/material_testers/test_materials/rock_rough.jpg.import b/3d/material_testers/test_materials/rock_rough.jpg.import index 5fd8a171..0ba720ae 100644 --- a/3d/material_testers/test_materials/rock_rough.jpg.import +++ b/3d/material_testers/test_materials/rock_rough.jpg.import @@ -1,37 +1,35 @@ [remap] importer="texture" -type="StreamTexture2D" -path.s3tc="res://.godot/imported/rock_rough.jpg-a18116680c5cb62b9f0632460fe30f62.s3tc.stex" -path.etc="res://.godot/imported/rock_rough.jpg-a18116680c5cb62b9f0632460fe30f62.etc.stex" +type="CompressedTexture2D" +uid="uid://1vmbgyaaju3v" +path.s3tc="res://.godot/imported/rock_rough.jpg-a18116680c5cb62b9f0632460fe30f62.s3tc.ctex" +path.etc2="res://.godot/imported/rock_rough.jpg-a18116680c5cb62b9f0632460fe30f62.etc2.ctex" metadata={ -"imported_formats": ["s3tc", "etc"], +"imported_formats": ["s3tc", "etc2"], "vram_texture": true } [deps] source_file="res://test_materials/rock_rough.jpg" -dest_files=["res://.godot/imported/rock_rough.jpg-a18116680c5cb62b9f0632460fe30f62.s3tc.stex", "res://.godot/imported/rock_rough.jpg-a18116680c5cb62b9f0632460fe30f62.etc.stex"] +dest_files=["res://.godot/imported/rock_rough.jpg-a18116680c5cb62b9f0632460fe30f62.s3tc.ctex", "res://.godot/imported/rock_rough.jpg-a18116680c5cb62b9f0632460fe30f62.etc2.ctex"] [params] compress/mode=2 compress/lossy_quality=0.7 -compress/hdr_mode=0 +compress/hdr_compression=1 compress/bptc_ldr=0 compress/normal_map=0 -flags/repeat=true -flags/filter=true -flags/mipmaps=true -flags/anisotropic=true -flags/srgb=2 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" process/fix_alpha_border=true process/premult_alpha=false -process/HDR_as_SRGB=false -process/invert_color=false process/normal_map_invert_y=false -stream=false -size_limit=0 -detect_3d=false -svg/scale=1.0 +process/hdr_as_srgb=false +process/size_limit=0 +detect_3d/compress_to=0 diff --git a/3d/material_testers/test_materials/sand_albedo.jpg.import b/3d/material_testers/test_materials/sand_albedo.jpg.import index 5eee8395..c86922b7 100644 --- a/3d/material_testers/test_materials/sand_albedo.jpg.import +++ b/3d/material_testers/test_materials/sand_albedo.jpg.import @@ -1,37 +1,35 @@ [remap] importer="texture" -type="StreamTexture2D" -path.s3tc="res://.godot/imported/sand_albedo.jpg-c03140f13a9e6c9b1c6fe52f92bc0e1b.s3tc.stex" -path.etc="res://.godot/imported/sand_albedo.jpg-c03140f13a9e6c9b1c6fe52f92bc0e1b.etc.stex" +type="CompressedTexture2D" +uid="uid://babs1mrgolbcj" +path.s3tc="res://.godot/imported/sand_albedo.jpg-c03140f13a9e6c9b1c6fe52f92bc0e1b.s3tc.ctex" +path.etc2="res://.godot/imported/sand_albedo.jpg-c03140f13a9e6c9b1c6fe52f92bc0e1b.etc2.ctex" metadata={ -"imported_formats": ["s3tc", "etc"], +"imported_formats": ["s3tc", "etc2"], "vram_texture": true } [deps] source_file="res://test_materials/sand_albedo.jpg" -dest_files=["res://.godot/imported/sand_albedo.jpg-c03140f13a9e6c9b1c6fe52f92bc0e1b.s3tc.stex", "res://.godot/imported/sand_albedo.jpg-c03140f13a9e6c9b1c6fe52f92bc0e1b.etc.stex"] +dest_files=["res://.godot/imported/sand_albedo.jpg-c03140f13a9e6c9b1c6fe52f92bc0e1b.s3tc.ctex", "res://.godot/imported/sand_albedo.jpg-c03140f13a9e6c9b1c6fe52f92bc0e1b.etc2.ctex"] [params] compress/mode=2 compress/lossy_quality=0.7 -compress/hdr_mode=0 +compress/hdr_compression=1 compress/bptc_ldr=0 compress/normal_map=0 -flags/repeat=true -flags/filter=true -flags/mipmaps=true -flags/anisotropic=true -flags/srgb=1 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" process/fix_alpha_border=true process/premult_alpha=false -process/HDR_as_SRGB=false -process/invert_color=false process/normal_map_invert_y=false -stream=false -size_limit=0 -detect_3d=false -svg/scale=1.0 +process/hdr_as_srgb=false +process/size_limit=0 +detect_3d/compress_to=0 diff --git a/3d/material_testers/test_materials/sand_metal.jpg.import b/3d/material_testers/test_materials/sand_metal.jpg.import index 2e159ca8..03131108 100644 --- a/3d/material_testers/test_materials/sand_metal.jpg.import +++ b/3d/material_testers/test_materials/sand_metal.jpg.import @@ -1,37 +1,35 @@ [remap] importer="texture" -type="StreamTexture2D" -path.s3tc="res://.godot/imported/sand_metal.jpg-bc79f66c3e18060c7cbaa67c44681910.s3tc.stex" -path.etc="res://.godot/imported/sand_metal.jpg-bc79f66c3e18060c7cbaa67c44681910.etc.stex" +type="CompressedTexture2D" +uid="uid://cisvmvcj8c525" +path.s3tc="res://.godot/imported/sand_metal.jpg-bc79f66c3e18060c7cbaa67c44681910.s3tc.ctex" +path.etc2="res://.godot/imported/sand_metal.jpg-bc79f66c3e18060c7cbaa67c44681910.etc2.ctex" metadata={ -"imported_formats": ["s3tc", "etc"], +"imported_formats": ["s3tc", "etc2"], "vram_texture": true } [deps] source_file="res://test_materials/sand_metal.jpg" -dest_files=["res://.godot/imported/sand_metal.jpg-bc79f66c3e18060c7cbaa67c44681910.s3tc.stex", "res://.godot/imported/sand_metal.jpg-bc79f66c3e18060c7cbaa67c44681910.etc.stex"] +dest_files=["res://.godot/imported/sand_metal.jpg-bc79f66c3e18060c7cbaa67c44681910.s3tc.ctex", "res://.godot/imported/sand_metal.jpg-bc79f66c3e18060c7cbaa67c44681910.etc2.ctex"] [params] compress/mode=2 compress/lossy_quality=0.7 -compress/hdr_mode=0 +compress/hdr_compression=1 compress/bptc_ldr=0 compress/normal_map=0 -flags/repeat=true -flags/filter=true -flags/mipmaps=true -flags/anisotropic=true -flags/srgb=2 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" process/fix_alpha_border=true process/premult_alpha=false -process/HDR_as_SRGB=false -process/invert_color=false process/normal_map_invert_y=false -stream=false -size_limit=0 -detect_3d=false -svg/scale=1.0 +process/hdr_as_srgb=false +process/size_limit=0 +detect_3d/compress_to=0 diff --git a/3d/material_testers/test_materials/sand_normal.jpg.import b/3d/material_testers/test_materials/sand_normal.jpg.import index 80a9bf87..fb35124e 100644 --- a/3d/material_testers/test_materials/sand_normal.jpg.import +++ b/3d/material_testers/test_materials/sand_normal.jpg.import @@ -1,37 +1,35 @@ [remap] importer="texture" -type="StreamTexture2D" -path.s3tc="res://.godot/imported/sand_normal.jpg-7a18b411efc93de1cffd09e24f6336b4.s3tc.stex" -path.etc="res://.godot/imported/sand_normal.jpg-7a18b411efc93de1cffd09e24f6336b4.etc.stex" +type="CompressedTexture2D" +uid="uid://xvn1ih5tbj6g" +path.s3tc="res://.godot/imported/sand_normal.jpg-7a18b411efc93de1cffd09e24f6336b4.s3tc.ctex" +path.etc2="res://.godot/imported/sand_normal.jpg-7a18b411efc93de1cffd09e24f6336b4.etc2.ctex" metadata={ -"imported_formats": ["s3tc", "etc"], +"imported_formats": ["s3tc", "etc2"], "vram_texture": true } [deps] source_file="res://test_materials/sand_normal.jpg" -dest_files=["res://.godot/imported/sand_normal.jpg-7a18b411efc93de1cffd09e24f6336b4.s3tc.stex", "res://.godot/imported/sand_normal.jpg-7a18b411efc93de1cffd09e24f6336b4.etc.stex"] +dest_files=["res://.godot/imported/sand_normal.jpg-7a18b411efc93de1cffd09e24f6336b4.s3tc.ctex", "res://.godot/imported/sand_normal.jpg-7a18b411efc93de1cffd09e24f6336b4.etc2.ctex"] [params] compress/mode=2 compress/lossy_quality=0.7 -compress/hdr_mode=0 +compress/hdr_compression=1 compress/bptc_ldr=0 compress/normal_map=1 -flags/repeat=true -flags/filter=true -flags/mipmaps=true -flags/anisotropic=true -flags/srgb=2 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" process/fix_alpha_border=true process/premult_alpha=false -process/HDR_as_SRGB=false -process/invert_color=false process/normal_map_invert_y=false -stream=false -size_limit=0 -detect_3d=false -svg/scale=1.0 +process/hdr_as_srgb=false +process/size_limit=0 +detect_3d/compress_to=0 diff --git a/3d/material_testers/test_materials/sand_rough.jpg.import b/3d/material_testers/test_materials/sand_rough.jpg.import index 5d2e5ab6..5b50aa47 100644 --- a/3d/material_testers/test_materials/sand_rough.jpg.import +++ b/3d/material_testers/test_materials/sand_rough.jpg.import @@ -1,37 +1,35 @@ [remap] importer="texture" -type="StreamTexture2D" -path.s3tc="res://.godot/imported/sand_rough.jpg-14616e257ba8a3726af90b2162c4ea2b.s3tc.stex" -path.etc="res://.godot/imported/sand_rough.jpg-14616e257ba8a3726af90b2162c4ea2b.etc.stex" +type="CompressedTexture2D" +uid="uid://bld3mlnaxf768" +path.s3tc="res://.godot/imported/sand_rough.jpg-14616e257ba8a3726af90b2162c4ea2b.s3tc.ctex" +path.etc2="res://.godot/imported/sand_rough.jpg-14616e257ba8a3726af90b2162c4ea2b.etc2.ctex" metadata={ -"imported_formats": ["s3tc", "etc"], +"imported_formats": ["s3tc", "etc2"], "vram_texture": true } [deps] source_file="res://test_materials/sand_rough.jpg" -dest_files=["res://.godot/imported/sand_rough.jpg-14616e257ba8a3726af90b2162c4ea2b.s3tc.stex", "res://.godot/imported/sand_rough.jpg-14616e257ba8a3726af90b2162c4ea2b.etc.stex"] +dest_files=["res://.godot/imported/sand_rough.jpg-14616e257ba8a3726af90b2162c4ea2b.s3tc.ctex", "res://.godot/imported/sand_rough.jpg-14616e257ba8a3726af90b2162c4ea2b.etc2.ctex"] [params] compress/mode=2 compress/lossy_quality=0.7 -compress/hdr_mode=0 +compress/hdr_compression=1 compress/bptc_ldr=0 compress/normal_map=0 -flags/repeat=true -flags/filter=true -flags/mipmaps=true -flags/anisotropic=true -flags/srgb=2 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" process/fix_alpha_border=true process/premult_alpha=false -process/HDR_as_SRGB=false -process/invert_color=false process/normal_map_invert_y=false -stream=false -size_limit=0 -detect_3d=false -svg/scale=1.0 +process/hdr_as_srgb=false +process/size_limit=0 +detect_3d/compress_to=0 diff --git a/3d/material_testers/test_materials/sand_shine.jpg.import b/3d/material_testers/test_materials/sand_shine.jpg.import index 1d59c6d6..5d912c0b 100644 --- a/3d/material_testers/test_materials/sand_shine.jpg.import +++ b/3d/material_testers/test_materials/sand_shine.jpg.import @@ -1,8 +1,9 @@ [remap] importer="texture" -type="StreamTexture2D" -path="res://.godot/imported/sand_shine.jpg-616f02f6faeaa1d08b3581323d96b4d0.stex" +type="CompressedTexture2D" +uid="uid://bk70hojw2e0np" +path="res://.godot/imported/sand_shine.jpg-616f02f6faeaa1d08b3581323d96b4d0.ctex" metadata={ "vram_texture": false } @@ -10,26 +11,23 @@ metadata={ [deps] source_file="res://test_materials/sand_shine.jpg" -dest_files=["res://.godot/imported/sand_shine.jpg-616f02f6faeaa1d08b3581323d96b4d0.stex"] +dest_files=["res://.godot/imported/sand_shine.jpg-616f02f6faeaa1d08b3581323d96b4d0.ctex"] [params] compress/mode=0 compress/lossy_quality=0.7 -compress/hdr_mode=0 +compress/hdr_compression=1 compress/bptc_ldr=0 compress/normal_map=0 -flags/repeat=0 -flags/filter=true -flags/mipmaps=false -flags/anisotropic=true -flags/srgb=2 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" process/fix_alpha_border=true process/premult_alpha=false -process/HDR_as_SRGB=false -process/invert_color=false process/normal_map_invert_y=false -stream=false -size_limit=0 -detect_3d=true -svg/scale=1.0 +process/hdr_as_srgb=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/3d/material_testers/test_materials/texture_bricks.jpg.import b/3d/material_testers/test_materials/texture_bricks.jpg.import index 8a47b13b..5b799979 100644 --- a/3d/material_testers/test_materials/texture_bricks.jpg.import +++ b/3d/material_testers/test_materials/texture_bricks.jpg.import @@ -1,37 +1,35 @@ [remap] importer="texture" -type="StreamTexture2D" -path.s3tc="res://.godot/imported/texture_bricks.jpg-c5a7a817bf05cfd9e63ae7aecdfad44c.s3tc.stex" -path.etc="res://.godot/imported/texture_bricks.jpg-c5a7a817bf05cfd9e63ae7aecdfad44c.etc.stex" +type="CompressedTexture2D" +uid="uid://w5wmopu8t6ya" +path.s3tc="res://.godot/imported/texture_bricks.jpg-c5a7a817bf05cfd9e63ae7aecdfad44c.s3tc.ctex" +path.etc2="res://.godot/imported/texture_bricks.jpg-c5a7a817bf05cfd9e63ae7aecdfad44c.etc2.ctex" metadata={ -"imported_formats": ["s3tc", "etc"], +"imported_formats": ["s3tc", "etc2"], "vram_texture": true } [deps] source_file="res://test_materials/texture_bricks.jpg" -dest_files=["res://.godot/imported/texture_bricks.jpg-c5a7a817bf05cfd9e63ae7aecdfad44c.s3tc.stex", "res://.godot/imported/texture_bricks.jpg-c5a7a817bf05cfd9e63ae7aecdfad44c.etc.stex"] +dest_files=["res://.godot/imported/texture_bricks.jpg-c5a7a817bf05cfd9e63ae7aecdfad44c.s3tc.ctex", "res://.godot/imported/texture_bricks.jpg-c5a7a817bf05cfd9e63ae7aecdfad44c.etc2.ctex"] [params] compress/mode=2 compress/lossy_quality=0.7 -compress/hdr_mode=0 +compress/hdr_compression=1 compress/bptc_ldr=0 compress/normal_map=0 -flags/repeat=true -flags/filter=true -flags/mipmaps=true -flags/anisotropic=true -flags/srgb=1 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" process/fix_alpha_border=true process/premult_alpha=false -process/HDR_as_SRGB=false -process/invert_color=false process/normal_map_invert_y=false -stream=false -size_limit=0 -detect_3d=false -svg/scale=1.0 +process/hdr_as_srgb=false +process/size_limit=0 +detect_3d/compress_to=0 diff --git a/3d/material_testers/test_materials/texture_bricks_depth.jpg.import b/3d/material_testers/test_materials/texture_bricks_depth.jpg.import index 4948d89f..ba0cb988 100644 --- a/3d/material_testers/test_materials/texture_bricks_depth.jpg.import +++ b/3d/material_testers/test_materials/texture_bricks_depth.jpg.import @@ -1,37 +1,35 @@ [remap] importer="texture" -type="StreamTexture2D" -path.s3tc="res://.godot/imported/texture_bricks_depth.jpg-fed037b05656973f46c8d8fc0dae33d5.s3tc.stex" -path.etc="res://.godot/imported/texture_bricks_depth.jpg-fed037b05656973f46c8d8fc0dae33d5.etc.stex" +type="CompressedTexture2D" +uid="uid://lbhnr6ww3frm" +path.s3tc="res://.godot/imported/texture_bricks_depth.jpg-fed037b05656973f46c8d8fc0dae33d5.s3tc.ctex" +path.etc2="res://.godot/imported/texture_bricks_depth.jpg-fed037b05656973f46c8d8fc0dae33d5.etc2.ctex" metadata={ -"imported_formats": ["s3tc", "etc"], +"imported_formats": ["s3tc", "etc2"], "vram_texture": true } [deps] source_file="res://test_materials/texture_bricks_depth.jpg" -dest_files=["res://.godot/imported/texture_bricks_depth.jpg-fed037b05656973f46c8d8fc0dae33d5.s3tc.stex", "res://.godot/imported/texture_bricks_depth.jpg-fed037b05656973f46c8d8fc0dae33d5.etc.stex"] +dest_files=["res://.godot/imported/texture_bricks_depth.jpg-fed037b05656973f46c8d8fc0dae33d5.s3tc.ctex", "res://.godot/imported/texture_bricks_depth.jpg-fed037b05656973f46c8d8fc0dae33d5.etc2.ctex"] [params] compress/mode=2 compress/lossy_quality=0.7 -compress/hdr_mode=0 +compress/hdr_compression=1 compress/bptc_ldr=0 compress/normal_map=0 -flags/repeat=true -flags/filter=true -flags/mipmaps=true -flags/anisotropic=true -flags/srgb=2 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" process/fix_alpha_border=true process/premult_alpha=false -process/HDR_as_SRGB=false -process/invert_color=false process/normal_map_invert_y=false -stream=false -size_limit=0 -detect_3d=false -svg/scale=1.0 +process/hdr_as_srgb=false +process/size_limit=0 +detect_3d/compress_to=0 diff --git a/3d/material_testers/test_materials/texture_bricks_metal.jpg.import b/3d/material_testers/test_materials/texture_bricks_metal.jpg.import index de74385b..a77475c0 100644 --- a/3d/material_testers/test_materials/texture_bricks_metal.jpg.import +++ b/3d/material_testers/test_materials/texture_bricks_metal.jpg.import @@ -1,37 +1,35 @@ [remap] importer="texture" -type="StreamTexture2D" -path.s3tc="res://.godot/imported/texture_bricks_metal.jpg-0cfc783b7a5646c7f79c1bfc856a0169.s3tc.stex" -path.etc="res://.godot/imported/texture_bricks_metal.jpg-0cfc783b7a5646c7f79c1bfc856a0169.etc.stex" +type="CompressedTexture2D" +uid="uid://c2d4tyfl662ra" +path.s3tc="res://.godot/imported/texture_bricks_metal.jpg-0cfc783b7a5646c7f79c1bfc856a0169.s3tc.ctex" +path.etc2="res://.godot/imported/texture_bricks_metal.jpg-0cfc783b7a5646c7f79c1bfc856a0169.etc2.ctex" metadata={ -"imported_formats": ["s3tc", "etc"], +"imported_formats": ["s3tc", "etc2"], "vram_texture": true } [deps] source_file="res://test_materials/texture_bricks_metal.jpg" -dest_files=["res://.godot/imported/texture_bricks_metal.jpg-0cfc783b7a5646c7f79c1bfc856a0169.s3tc.stex", "res://.godot/imported/texture_bricks_metal.jpg-0cfc783b7a5646c7f79c1bfc856a0169.etc.stex"] +dest_files=["res://.godot/imported/texture_bricks_metal.jpg-0cfc783b7a5646c7f79c1bfc856a0169.s3tc.ctex", "res://.godot/imported/texture_bricks_metal.jpg-0cfc783b7a5646c7f79c1bfc856a0169.etc2.ctex"] [params] compress/mode=2 compress/lossy_quality=0.7 -compress/hdr_mode=0 +compress/hdr_compression=1 compress/bptc_ldr=0 compress/normal_map=0 -flags/repeat=true -flags/filter=true -flags/mipmaps=true -flags/anisotropic=true -flags/srgb=2 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" process/fix_alpha_border=true process/premult_alpha=false -process/HDR_as_SRGB=false -process/invert_color=false process/normal_map_invert_y=false -stream=false -size_limit=0 -detect_3d=false -svg/scale=1.0 +process/hdr_as_srgb=false +process/size_limit=0 +detect_3d/compress_to=0 diff --git a/3d/material_testers/test_materials/texture_bricks_normal.jpg.import b/3d/material_testers/test_materials/texture_bricks_normal.jpg.import index 95fde783..9580cd91 100644 --- a/3d/material_testers/test_materials/texture_bricks_normal.jpg.import +++ b/3d/material_testers/test_materials/texture_bricks_normal.jpg.import @@ -1,37 +1,35 @@ [remap] importer="texture" -type="StreamTexture2D" -path.s3tc="res://.godot/imported/texture_bricks_normal.jpg-605ba8666210a56b09eb0b2392bd6355.s3tc.stex" -path.etc="res://.godot/imported/texture_bricks_normal.jpg-605ba8666210a56b09eb0b2392bd6355.etc.stex" +type="CompressedTexture2D" +uid="uid://baces1lcbjoxv" +path.s3tc="res://.godot/imported/texture_bricks_normal.jpg-605ba8666210a56b09eb0b2392bd6355.s3tc.ctex" +path.etc2="res://.godot/imported/texture_bricks_normal.jpg-605ba8666210a56b09eb0b2392bd6355.etc2.ctex" metadata={ -"imported_formats": ["s3tc", "etc"], +"imported_formats": ["s3tc", "etc2"], "vram_texture": true } [deps] source_file="res://test_materials/texture_bricks_normal.jpg" -dest_files=["res://.godot/imported/texture_bricks_normal.jpg-605ba8666210a56b09eb0b2392bd6355.s3tc.stex", "res://.godot/imported/texture_bricks_normal.jpg-605ba8666210a56b09eb0b2392bd6355.etc.stex"] +dest_files=["res://.godot/imported/texture_bricks_normal.jpg-605ba8666210a56b09eb0b2392bd6355.s3tc.ctex", "res://.godot/imported/texture_bricks_normal.jpg-605ba8666210a56b09eb0b2392bd6355.etc2.ctex"] [params] compress/mode=2 compress/lossy_quality=0.7 -compress/hdr_mode=0 +compress/hdr_compression=1 compress/bptc_ldr=0 compress/normal_map=1 -flags/repeat=true -flags/filter=true -flags/mipmaps=true -flags/anisotropic=true -flags/srgb=2 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" process/fix_alpha_border=true process/premult_alpha=false -process/HDR_as_SRGB=false -process/invert_color=false process/normal_map_invert_y=false -stream=false -size_limit=0 -detect_3d=false -svg/scale=1.0 +process/hdr_as_srgb=false +process/size_limit=0 +detect_3d/compress_to=0 diff --git a/3d/material_testers/test_materials/texture_cheese_albedo.png.import b/3d/material_testers/test_materials/texture_cheese_albedo.png.import index b3f979eb..93e31cc9 100644 --- a/3d/material_testers/test_materials/texture_cheese_albedo.png.import +++ b/3d/material_testers/test_materials/texture_cheese_albedo.png.import @@ -1,37 +1,35 @@ [remap] importer="texture" -type="StreamTexture2D" -path.s3tc="res://.godot/imported/texture_cheese_albedo.png-47db78359d020535d042fccfe547c563.s3tc.stex" -path.etc="res://.godot/imported/texture_cheese_albedo.png-47db78359d020535d042fccfe547c563.etc.stex" +type="CompressedTexture2D" +uid="uid://xu18ocodkbx7" +path.s3tc="res://.godot/imported/texture_cheese_albedo.png-47db78359d020535d042fccfe547c563.s3tc.ctex" +path.etc2="res://.godot/imported/texture_cheese_albedo.png-47db78359d020535d042fccfe547c563.etc2.ctex" metadata={ -"imported_formats": ["s3tc", "etc"], +"imported_formats": ["s3tc", "etc2"], "vram_texture": true } [deps] source_file="res://test_materials/texture_cheese_albedo.png" -dest_files=["res://.godot/imported/texture_cheese_albedo.png-47db78359d020535d042fccfe547c563.s3tc.stex", "res://.godot/imported/texture_cheese_albedo.png-47db78359d020535d042fccfe547c563.etc.stex"] +dest_files=["res://.godot/imported/texture_cheese_albedo.png-47db78359d020535d042fccfe547c563.s3tc.ctex", "res://.godot/imported/texture_cheese_albedo.png-47db78359d020535d042fccfe547c563.etc2.ctex"] [params] compress/mode=2 compress/lossy_quality=0.7 -compress/hdr_mode=0 +compress/hdr_compression=1 compress/bptc_ldr=0 compress/normal_map=0 -flags/repeat=true -flags/filter=true -flags/mipmaps=true -flags/anisotropic=true -flags/srgb=1 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" process/fix_alpha_border=true process/premult_alpha=false -process/HDR_as_SRGB=false -process/invert_color=false process/normal_map_invert_y=false -stream=false -size_limit=0 -detect_3d=false -svg/scale=1.0 +process/hdr_as_srgb=false +process/size_limit=0 +detect_3d/compress_to=0 diff --git a/3d/material_testers/test_materials/texture_cheese_ao.png.import b/3d/material_testers/test_materials/texture_cheese_ao.png.import index 2d4a96a3..bd36c58d 100644 --- a/3d/material_testers/test_materials/texture_cheese_ao.png.import +++ b/3d/material_testers/test_materials/texture_cheese_ao.png.import @@ -1,37 +1,35 @@ [remap] importer="texture" -type="StreamTexture2D" -path.s3tc="res://.godot/imported/texture_cheese_ao.png-db37cd87a9560149bf42629f84a8517d.s3tc.stex" -path.etc="res://.godot/imported/texture_cheese_ao.png-db37cd87a9560149bf42629f84a8517d.etc.stex" +type="CompressedTexture2D" +uid="uid://65icecsss5vf" +path.s3tc="res://.godot/imported/texture_cheese_ao.png-db37cd87a9560149bf42629f84a8517d.s3tc.ctex" +path.etc2="res://.godot/imported/texture_cheese_ao.png-db37cd87a9560149bf42629f84a8517d.etc2.ctex" metadata={ -"imported_formats": ["s3tc", "etc"], +"imported_formats": ["s3tc", "etc2"], "vram_texture": true } [deps] source_file="res://test_materials/texture_cheese_ao.png" -dest_files=["res://.godot/imported/texture_cheese_ao.png-db37cd87a9560149bf42629f84a8517d.s3tc.stex", "res://.godot/imported/texture_cheese_ao.png-db37cd87a9560149bf42629f84a8517d.etc.stex"] +dest_files=["res://.godot/imported/texture_cheese_ao.png-db37cd87a9560149bf42629f84a8517d.s3tc.ctex", "res://.godot/imported/texture_cheese_ao.png-db37cd87a9560149bf42629f84a8517d.etc2.ctex"] [params] compress/mode=2 compress/lossy_quality=0.7 -compress/hdr_mode=0 +compress/hdr_compression=1 compress/bptc_ldr=0 compress/normal_map=0 -flags/repeat=true -flags/filter=true -flags/mipmaps=true -flags/anisotropic=true -flags/srgb=2 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" process/fix_alpha_border=true process/premult_alpha=false -process/HDR_as_SRGB=false -process/invert_color=false process/normal_map_invert_y=false -stream=false -size_limit=0 -detect_3d=false -svg/scale=1.0 +process/hdr_as_srgb=false +process/size_limit=0 +detect_3d/compress_to=0 diff --git a/3d/material_testers/test_materials/texture_cheese_depth.png.import b/3d/material_testers/test_materials/texture_cheese_depth.png.import index cd8a15f8..975de3a7 100644 --- a/3d/material_testers/test_materials/texture_cheese_depth.png.import +++ b/3d/material_testers/test_materials/texture_cheese_depth.png.import @@ -1,37 +1,35 @@ [remap] importer="texture" -type="StreamTexture2D" -path.s3tc="res://.godot/imported/texture_cheese_depth.png-71cbe5ab2c9f4e2343f1082a376b299f.s3tc.stex" -path.etc="res://.godot/imported/texture_cheese_depth.png-71cbe5ab2c9f4e2343f1082a376b299f.etc.stex" +type="CompressedTexture2D" +uid="uid://8o7dvpd64s0i" +path.s3tc="res://.godot/imported/texture_cheese_depth.png-71cbe5ab2c9f4e2343f1082a376b299f.s3tc.ctex" +path.etc2="res://.godot/imported/texture_cheese_depth.png-71cbe5ab2c9f4e2343f1082a376b299f.etc2.ctex" metadata={ -"imported_formats": ["s3tc", "etc"], +"imported_formats": ["s3tc", "etc2"], "vram_texture": true } [deps] source_file="res://test_materials/texture_cheese_depth.png" -dest_files=["res://.godot/imported/texture_cheese_depth.png-71cbe5ab2c9f4e2343f1082a376b299f.s3tc.stex", "res://.godot/imported/texture_cheese_depth.png-71cbe5ab2c9f4e2343f1082a376b299f.etc.stex"] +dest_files=["res://.godot/imported/texture_cheese_depth.png-71cbe5ab2c9f4e2343f1082a376b299f.s3tc.ctex", "res://.godot/imported/texture_cheese_depth.png-71cbe5ab2c9f4e2343f1082a376b299f.etc2.ctex"] [params] compress/mode=2 compress/lossy_quality=0.7 -compress/hdr_mode=0 +compress/hdr_compression=1 compress/bptc_ldr=0 compress/normal_map=0 -flags/repeat=true -flags/filter=true -flags/mipmaps=true -flags/anisotropic=true -flags/srgb=2 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" process/fix_alpha_border=true process/premult_alpha=false -process/HDR_as_SRGB=false -process/invert_color=false process/normal_map_invert_y=false -stream=false -size_limit=0 -detect_3d=false -svg/scale=1.0 +process/hdr_as_srgb=false +process/size_limit=0 +detect_3d/compress_to=0 diff --git a/3d/material_testers/test_materials/texture_cheese_normal.png.import b/3d/material_testers/test_materials/texture_cheese_normal.png.import index 48f075af..87e0a109 100644 --- a/3d/material_testers/test_materials/texture_cheese_normal.png.import +++ b/3d/material_testers/test_materials/texture_cheese_normal.png.import @@ -1,37 +1,35 @@ [remap] importer="texture" -type="StreamTexture2D" -path.s3tc="res://.godot/imported/texture_cheese_normal.png-cfbb1f914512de34b962a84fd60e3641.s3tc.stex" -path.etc="res://.godot/imported/texture_cheese_normal.png-cfbb1f914512de34b962a84fd60e3641.etc.stex" +type="CompressedTexture2D" +uid="uid://7dpm3ud1syn" +path.s3tc="res://.godot/imported/texture_cheese_normal.png-cfbb1f914512de34b962a84fd60e3641.s3tc.ctex" +path.etc2="res://.godot/imported/texture_cheese_normal.png-cfbb1f914512de34b962a84fd60e3641.etc2.ctex" metadata={ -"imported_formats": ["s3tc", "etc"], +"imported_formats": ["s3tc", "etc2"], "vram_texture": true } [deps] source_file="res://test_materials/texture_cheese_normal.png" -dest_files=["res://.godot/imported/texture_cheese_normal.png-cfbb1f914512de34b962a84fd60e3641.s3tc.stex", "res://.godot/imported/texture_cheese_normal.png-cfbb1f914512de34b962a84fd60e3641.etc.stex"] +dest_files=["res://.godot/imported/texture_cheese_normal.png-cfbb1f914512de34b962a84fd60e3641.s3tc.ctex", "res://.godot/imported/texture_cheese_normal.png-cfbb1f914512de34b962a84fd60e3641.etc2.ctex"] [params] compress/mode=2 compress/lossy_quality=0.7 -compress/hdr_mode=0 +compress/hdr_compression=1 compress/bptc_ldr=0 compress/normal_map=1 -flags/repeat=true -flags/filter=true -flags/mipmaps=true -flags/anisotropic=true -flags/srgb=2 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" process/fix_alpha_border=true process/premult_alpha=false -process/HDR_as_SRGB=false -process/invert_color=false process/normal_map_invert_y=false -stream=false -size_limit=0 -detect_3d=false -svg/scale=1.0 +process/hdr_as_srgb=false +process/size_limit=0 +detect_3d/compress_to=0 diff --git a/3d/material_testers/test_materials/texture_rock_albedo.png.import b/3d/material_testers/test_materials/texture_rock_albedo.png.import index f20496b5..272c539e 100644 --- a/3d/material_testers/test_materials/texture_rock_albedo.png.import +++ b/3d/material_testers/test_materials/texture_rock_albedo.png.import @@ -1,37 +1,35 @@ [remap] importer="texture" -type="StreamTexture2D" -path.s3tc="res://.godot/imported/texture_rock_albedo.png-02df27b2a7e2344422e9ac7cdaec70ee.s3tc.stex" -path.etc="res://.godot/imported/texture_rock_albedo.png-02df27b2a7e2344422e9ac7cdaec70ee.etc.stex" +type="CompressedTexture2D" +uid="uid://dll713t0m0b6k" +path.s3tc="res://.godot/imported/texture_rock_albedo.png-02df27b2a7e2344422e9ac7cdaec70ee.s3tc.ctex" +path.etc2="res://.godot/imported/texture_rock_albedo.png-02df27b2a7e2344422e9ac7cdaec70ee.etc2.ctex" metadata={ -"imported_formats": ["s3tc", "etc"], +"imported_formats": ["s3tc", "etc2"], "vram_texture": true } [deps] source_file="res://test_materials/texture_rock_albedo.png" -dest_files=["res://.godot/imported/texture_rock_albedo.png-02df27b2a7e2344422e9ac7cdaec70ee.s3tc.stex", "res://.godot/imported/texture_rock_albedo.png-02df27b2a7e2344422e9ac7cdaec70ee.etc.stex"] +dest_files=["res://.godot/imported/texture_rock_albedo.png-02df27b2a7e2344422e9ac7cdaec70ee.s3tc.ctex", "res://.godot/imported/texture_rock_albedo.png-02df27b2a7e2344422e9ac7cdaec70ee.etc2.ctex"] [params] compress/mode=2 compress/lossy_quality=0.7 -compress/hdr_mode=0 +compress/hdr_compression=1 compress/bptc_ldr=0 compress/normal_map=0 -flags/repeat=true -flags/filter=true -flags/mipmaps=true -flags/anisotropic=true -flags/srgb=1 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" process/fix_alpha_border=true process/premult_alpha=false -process/HDR_as_SRGB=false -process/invert_color=false process/normal_map_invert_y=false -stream=false -size_limit=0 -detect_3d=false -svg/scale=1.0 +process/hdr_as_srgb=false +process/size_limit=0 +detect_3d/compress_to=0 diff --git a/3d/material_testers/test_materials/texture_rock_ao.png.import b/3d/material_testers/test_materials/texture_rock_ao.png.import index 4ed1480c..fe94491b 100644 --- a/3d/material_testers/test_materials/texture_rock_ao.png.import +++ b/3d/material_testers/test_materials/texture_rock_ao.png.import @@ -1,37 +1,35 @@ [remap] importer="texture" -type="StreamTexture2D" -path.s3tc="res://.godot/imported/texture_rock_ao.png-b7008000c4f1458c49be4996848f1a6e.s3tc.stex" -path.etc="res://.godot/imported/texture_rock_ao.png-b7008000c4f1458c49be4996848f1a6e.etc.stex" +type="CompressedTexture2D" +uid="uid://cg1wtsuae0lmc" +path.s3tc="res://.godot/imported/texture_rock_ao.png-b7008000c4f1458c49be4996848f1a6e.s3tc.ctex" +path.etc2="res://.godot/imported/texture_rock_ao.png-b7008000c4f1458c49be4996848f1a6e.etc2.ctex" metadata={ -"imported_formats": ["s3tc", "etc"], +"imported_formats": ["s3tc", "etc2"], "vram_texture": true } [deps] source_file="res://test_materials/texture_rock_ao.png" -dest_files=["res://.godot/imported/texture_rock_ao.png-b7008000c4f1458c49be4996848f1a6e.s3tc.stex", "res://.godot/imported/texture_rock_ao.png-b7008000c4f1458c49be4996848f1a6e.etc.stex"] +dest_files=["res://.godot/imported/texture_rock_ao.png-b7008000c4f1458c49be4996848f1a6e.s3tc.ctex", "res://.godot/imported/texture_rock_ao.png-b7008000c4f1458c49be4996848f1a6e.etc2.ctex"] [params] compress/mode=2 compress/lossy_quality=0.7 -compress/hdr_mode=0 +compress/hdr_compression=1 compress/bptc_ldr=0 compress/normal_map=0 -flags/repeat=true -flags/filter=true -flags/mipmaps=true -flags/anisotropic=true -flags/srgb=2 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" process/fix_alpha_border=true process/premult_alpha=false -process/HDR_as_SRGB=false -process/invert_color=false process/normal_map_invert_y=false -stream=false -size_limit=0 -detect_3d=false -svg/scale=1.0 +process/hdr_as_srgb=false +process/size_limit=0 +detect_3d/compress_to=0 diff --git a/3d/material_testers/test_materials/texture_rock_depth.png.import b/3d/material_testers/test_materials/texture_rock_depth.png.import index 2b240ec5..939cccc4 100644 --- a/3d/material_testers/test_materials/texture_rock_depth.png.import +++ b/3d/material_testers/test_materials/texture_rock_depth.png.import @@ -1,37 +1,35 @@ [remap] importer="texture" -type="StreamTexture2D" -path.s3tc="res://.godot/imported/texture_rock_depth.png-e02f2dbd984045ed2373ac9f5ad46460.s3tc.stex" -path.etc="res://.godot/imported/texture_rock_depth.png-e02f2dbd984045ed2373ac9f5ad46460.etc.stex" +type="CompressedTexture2D" +uid="uid://x5qdkxkf4tmq" +path.s3tc="res://.godot/imported/texture_rock_depth.png-e02f2dbd984045ed2373ac9f5ad46460.s3tc.ctex" +path.etc2="res://.godot/imported/texture_rock_depth.png-e02f2dbd984045ed2373ac9f5ad46460.etc2.ctex" metadata={ -"imported_formats": ["s3tc", "etc"], +"imported_formats": ["s3tc", "etc2"], "vram_texture": true } [deps] source_file="res://test_materials/texture_rock_depth.png" -dest_files=["res://.godot/imported/texture_rock_depth.png-e02f2dbd984045ed2373ac9f5ad46460.s3tc.stex", "res://.godot/imported/texture_rock_depth.png-e02f2dbd984045ed2373ac9f5ad46460.etc.stex"] +dest_files=["res://.godot/imported/texture_rock_depth.png-e02f2dbd984045ed2373ac9f5ad46460.s3tc.ctex", "res://.godot/imported/texture_rock_depth.png-e02f2dbd984045ed2373ac9f5ad46460.etc2.ctex"] [params] compress/mode=2 compress/lossy_quality=0.7 -compress/hdr_mode=0 +compress/hdr_compression=1 compress/bptc_ldr=0 compress/normal_map=0 -flags/repeat=true -flags/filter=true -flags/mipmaps=true -flags/anisotropic=true -flags/srgb=2 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" process/fix_alpha_border=true process/premult_alpha=false -process/HDR_as_SRGB=false -process/invert_color=false process/normal_map_invert_y=false -stream=false -size_limit=0 -detect_3d=false -svg/scale=1.0 +process/hdr_as_srgb=false +process/size_limit=0 +detect_3d/compress_to=0 diff --git a/3d/material_testers/test_materials/texture_rock_metal.png.import b/3d/material_testers/test_materials/texture_rock_metal.png.import index 63a8e150..9cb86308 100644 --- a/3d/material_testers/test_materials/texture_rock_metal.png.import +++ b/3d/material_testers/test_materials/texture_rock_metal.png.import @@ -1,37 +1,35 @@ [remap] importer="texture" -type="StreamTexture2D" -path.s3tc="res://.godot/imported/texture_rock_metal.png-53fdacd914e7bfa258d07a88f0644507.s3tc.stex" -path.etc="res://.godot/imported/texture_rock_metal.png-53fdacd914e7bfa258d07a88f0644507.etc.stex" +type="CompressedTexture2D" +uid="uid://bte0rsu3bcmxa" +path.s3tc="res://.godot/imported/texture_rock_metal.png-53fdacd914e7bfa258d07a88f0644507.s3tc.ctex" +path.etc2="res://.godot/imported/texture_rock_metal.png-53fdacd914e7bfa258d07a88f0644507.etc2.ctex" metadata={ -"imported_formats": ["s3tc", "etc"], +"imported_formats": ["s3tc", "etc2"], "vram_texture": true } [deps] source_file="res://test_materials/texture_rock_metal.png" -dest_files=["res://.godot/imported/texture_rock_metal.png-53fdacd914e7bfa258d07a88f0644507.s3tc.stex", "res://.godot/imported/texture_rock_metal.png-53fdacd914e7bfa258d07a88f0644507.etc.stex"] +dest_files=["res://.godot/imported/texture_rock_metal.png-53fdacd914e7bfa258d07a88f0644507.s3tc.ctex", "res://.godot/imported/texture_rock_metal.png-53fdacd914e7bfa258d07a88f0644507.etc2.ctex"] [params] compress/mode=2 compress/lossy_quality=0.7 -compress/hdr_mode=0 +compress/hdr_compression=1 compress/bptc_ldr=0 compress/normal_map=0 -flags/repeat=true -flags/filter=true -flags/mipmaps=true -flags/anisotropic=true -flags/srgb=2 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" process/fix_alpha_border=true process/premult_alpha=false -process/HDR_as_SRGB=false -process/invert_color=false process/normal_map_invert_y=false -stream=false -size_limit=0 -detect_3d=false -svg/scale=1.0 +process/hdr_as_srgb=false +process/size_limit=0 +detect_3d/compress_to=0 diff --git a/3d/material_testers/test_materials/texture_rock_normal.png.import b/3d/material_testers/test_materials/texture_rock_normal.png.import index 9afb11ef..1347feac 100644 --- a/3d/material_testers/test_materials/texture_rock_normal.png.import +++ b/3d/material_testers/test_materials/texture_rock_normal.png.import @@ -1,37 +1,35 @@ [remap] importer="texture" -type="StreamTexture2D" -path.s3tc="res://.godot/imported/texture_rock_normal.png-c5ae054e70e4a6414518c2178ea9b0b7.s3tc.stex" -path.etc="res://.godot/imported/texture_rock_normal.png-c5ae054e70e4a6414518c2178ea9b0b7.etc.stex" +type="CompressedTexture2D" +uid="uid://dqhvdd867nvjm" +path.s3tc="res://.godot/imported/texture_rock_normal.png-c5ae054e70e4a6414518c2178ea9b0b7.s3tc.ctex" +path.etc2="res://.godot/imported/texture_rock_normal.png-c5ae054e70e4a6414518c2178ea9b0b7.etc2.ctex" metadata={ -"imported_formats": ["s3tc", "etc"], +"imported_formats": ["s3tc", "etc2"], "vram_texture": true } [deps] source_file="res://test_materials/texture_rock_normal.png" -dest_files=["res://.godot/imported/texture_rock_normal.png-c5ae054e70e4a6414518c2178ea9b0b7.s3tc.stex", "res://.godot/imported/texture_rock_normal.png-c5ae054e70e4a6414518c2178ea9b0b7.etc.stex"] +dest_files=["res://.godot/imported/texture_rock_normal.png-c5ae054e70e4a6414518c2178ea9b0b7.s3tc.ctex", "res://.godot/imported/texture_rock_normal.png-c5ae054e70e4a6414518c2178ea9b0b7.etc2.ctex"] [params] compress/mode=2 compress/lossy_quality=0.7 -compress/hdr_mode=0 +compress/hdr_compression=1 compress/bptc_ldr=0 compress/normal_map=1 -flags/repeat=true -flags/filter=true -flags/mipmaps=true -flags/anisotropic=true -flags/srgb=2 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" process/fix_alpha_border=true process/premult_alpha=false -process/HDR_as_SRGB=false -process/invert_color=false process/normal_map_invert_y=false -stream=false -size_limit=0 -detect_3d=false -svg/scale=1.0 +process/hdr_as_srgb=false +process/size_limit=0 +detect_3d/compress_to=0 diff --git a/3d/material_testers/test_materials/texture_wood.png.import b/3d/material_testers/test_materials/texture_wood.png.import index de56da63..30fd7091 100644 --- a/3d/material_testers/test_materials/texture_wood.png.import +++ b/3d/material_testers/test_materials/texture_wood.png.import @@ -1,37 +1,35 @@ [remap] importer="texture" -type="StreamTexture2D" -path.s3tc="res://.godot/imported/texture_wood.png-e3109b4e15fb09c6edce5029c4f30771.s3tc.stex" -path.etc="res://.godot/imported/texture_wood.png-e3109b4e15fb09c6edce5029c4f30771.etc.stex" +type="CompressedTexture2D" +uid="uid://b3efpr0uwln6w" +path.s3tc="res://.godot/imported/texture_wood.png-e3109b4e15fb09c6edce5029c4f30771.s3tc.ctex" +path.etc2="res://.godot/imported/texture_wood.png-e3109b4e15fb09c6edce5029c4f30771.etc2.ctex" metadata={ -"imported_formats": ["s3tc", "etc"], +"imported_formats": ["s3tc", "etc2"], "vram_texture": true } [deps] source_file="res://test_materials/texture_wood.png" -dest_files=["res://.godot/imported/texture_wood.png-e3109b4e15fb09c6edce5029c4f30771.s3tc.stex", "res://.godot/imported/texture_wood.png-e3109b4e15fb09c6edce5029c4f30771.etc.stex"] +dest_files=["res://.godot/imported/texture_wood.png-e3109b4e15fb09c6edce5029c4f30771.s3tc.ctex", "res://.godot/imported/texture_wood.png-e3109b4e15fb09c6edce5029c4f30771.etc2.ctex"] [params] compress/mode=2 compress/lossy_quality=0.7 -compress/hdr_mode=0 +compress/hdr_compression=1 compress/bptc_ldr=0 compress/normal_map=0 -flags/repeat=true -flags/filter=true -flags/mipmaps=true -flags/anisotropic=true -flags/srgb=1 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" process/fix_alpha_border=true process/premult_alpha=false -process/HDR_as_SRGB=false -process/invert_color=false process/normal_map_invert_y=false -stream=false -size_limit=0 -detect_3d=false -svg/scale=1.0 +process/hdr_as_srgb=false +process/size_limit=0 +detect_3d/compress_to=0 diff --git a/3d/material_testers/test_materials/wool_albedo.png.import b/3d/material_testers/test_materials/wool_albedo.png.import index 50d82449..31d6eadc 100644 --- a/3d/material_testers/test_materials/wool_albedo.png.import +++ b/3d/material_testers/test_materials/wool_albedo.png.import @@ -1,37 +1,35 @@ [remap] importer="texture" -type="StreamTexture2D" -path.s3tc="res://.godot/imported/wool_albedo.png-a41e4f37762b4ccb66c8b36c42febef1.s3tc.stex" -path.etc="res://.godot/imported/wool_albedo.png-a41e4f37762b4ccb66c8b36c42febef1.etc.stex" +type="CompressedTexture2D" +uid="uid://do34kmmykk6gf" +path.s3tc="res://.godot/imported/wool_albedo.png-a41e4f37762b4ccb66c8b36c42febef1.s3tc.ctex" +path.etc2="res://.godot/imported/wool_albedo.png-a41e4f37762b4ccb66c8b36c42febef1.etc2.ctex" metadata={ -"imported_formats": ["s3tc", "etc"], +"imported_formats": ["s3tc", "etc2"], "vram_texture": true } [deps] source_file="res://test_materials/wool_albedo.png" -dest_files=["res://.godot/imported/wool_albedo.png-a41e4f37762b4ccb66c8b36c42febef1.s3tc.stex", "res://.godot/imported/wool_albedo.png-a41e4f37762b4ccb66c8b36c42febef1.etc.stex"] +dest_files=["res://.godot/imported/wool_albedo.png-a41e4f37762b4ccb66c8b36c42febef1.s3tc.ctex", "res://.godot/imported/wool_albedo.png-a41e4f37762b4ccb66c8b36c42febef1.etc2.ctex"] [params] compress/mode=2 compress/lossy_quality=0.7 -compress/hdr_mode=0 +compress/hdr_compression=1 compress/bptc_ldr=0 compress/normal_map=0 -flags/repeat=true -flags/filter=true -flags/mipmaps=true -flags/anisotropic=true -flags/srgb=1 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" process/fix_alpha_border=true process/premult_alpha=false -process/HDR_as_SRGB=false -process/invert_color=false process/normal_map_invert_y=false -stream=false -size_limit=0 -detect_3d=false -svg/scale=1.0 +process/hdr_as_srgb=false +process/size_limit=0 +detect_3d/compress_to=0 diff --git a/3d/material_testers/test_materials/wool_depth.png.import b/3d/material_testers/test_materials/wool_depth.png.import index f19c6c35..dfc06db4 100644 --- a/3d/material_testers/test_materials/wool_depth.png.import +++ b/3d/material_testers/test_materials/wool_depth.png.import @@ -1,37 +1,35 @@ [remap] importer="texture" -type="StreamTexture2D" -path.s3tc="res://.godot/imported/wool_depth.png-47d3fa1d6b4aa0857f735cbad6b1556e.s3tc.stex" -path.etc="res://.godot/imported/wool_depth.png-47d3fa1d6b4aa0857f735cbad6b1556e.etc.stex" +type="CompressedTexture2D" +uid="uid://b45auu1apiq0g" +path.s3tc="res://.godot/imported/wool_depth.png-47d3fa1d6b4aa0857f735cbad6b1556e.s3tc.ctex" +path.etc2="res://.godot/imported/wool_depth.png-47d3fa1d6b4aa0857f735cbad6b1556e.etc2.ctex" metadata={ -"imported_formats": ["s3tc", "etc"], +"imported_formats": ["s3tc", "etc2"], "vram_texture": true } [deps] source_file="res://test_materials/wool_depth.png" -dest_files=["res://.godot/imported/wool_depth.png-47d3fa1d6b4aa0857f735cbad6b1556e.s3tc.stex", "res://.godot/imported/wool_depth.png-47d3fa1d6b4aa0857f735cbad6b1556e.etc.stex"] +dest_files=["res://.godot/imported/wool_depth.png-47d3fa1d6b4aa0857f735cbad6b1556e.s3tc.ctex", "res://.godot/imported/wool_depth.png-47d3fa1d6b4aa0857f735cbad6b1556e.etc2.ctex"] [params] compress/mode=2 compress/lossy_quality=0.7 -compress/hdr_mode=0 +compress/hdr_compression=1 compress/bptc_ldr=0 compress/normal_map=0 -flags/repeat=true -flags/filter=true -flags/mipmaps=true -flags/anisotropic=true -flags/srgb=2 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" process/fix_alpha_border=true process/premult_alpha=false -process/HDR_as_SRGB=false -process/invert_color=false process/normal_map_invert_y=false -stream=false -size_limit=0 -detect_3d=false -svg/scale=1.0 +process/hdr_as_srgb=false +process/size_limit=0 +detect_3d/compress_to=0 diff --git a/3d/material_testers/test_materials/wool_normal.png.import b/3d/material_testers/test_materials/wool_normal.png.import index 742c0006..1ed60014 100644 --- a/3d/material_testers/test_materials/wool_normal.png.import +++ b/3d/material_testers/test_materials/wool_normal.png.import @@ -1,35 +1,35 @@ [remap] importer="texture" -type="StreamTexture2D" -path="res://.godot/imported/wool_normal.png-e7a5ef7bc0ad8d444a32a136bf5d4f12.stex" +type="CompressedTexture2D" +uid="uid://cc44l0alh6gr4" +path.s3tc="res://.godot/imported/wool_normal.png-e7a5ef7bc0ad8d444a32a136bf5d4f12.s3tc.ctex" +path.etc2="res://.godot/imported/wool_normal.png-e7a5ef7bc0ad8d444a32a136bf5d4f12.etc2.ctex" metadata={ -"vram_texture": false +"imported_formats": ["s3tc", "etc2"], +"vram_texture": true } [deps] source_file="res://test_materials/wool_normal.png" -dest_files=["res://.godot/imported/wool_normal.png-e7a5ef7bc0ad8d444a32a136bf5d4f12.stex"] +dest_files=["res://.godot/imported/wool_normal.png-e7a5ef7bc0ad8d444a32a136bf5d4f12.s3tc.ctex", "res://.godot/imported/wool_normal.png-e7a5ef7bc0ad8d444a32a136bf5d4f12.etc2.ctex"] [params] -compress/mode=0 +compress/mode=2 compress/lossy_quality=0.7 -compress/hdr_mode=0 +compress/hdr_compression=1 compress/bptc_ldr=0 compress/normal_map=1 -flags/repeat=true -flags/filter=true -flags/mipmaps=true -flags/anisotropic=true -flags/srgb=2 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" process/fix_alpha_border=true process/premult_alpha=false -process/HDR_as_SRGB=false -process/invert_color=false process/normal_map_invert_y=false -stream=false -size_limit=0 -detect_3d=false -svg/scale=1.0 +process/hdr_as_srgb=false +process/size_limit=0 +detect_3d/compress_to=0 diff --git a/3d/material_testers/tester.gd b/3d/material_testers/tester.gd index 2f97933f..bca52981 100644 --- a/3d/material_testers/tester.gd +++ b/3d/material_testers/tester.gd @@ -10,7 +10,7 @@ var tester_index = 0 var rot_x = -0.5 # This must be kept in sync with RotationX. var rot_y = -0.5 # This must be kept in sync with CameraHolder. var zoom = 5 -var base_height = ProjectSettings.get_setting("display/window/size/height") +var base_height = ProjectSettings.get_setting("display/window/size/viewport_height") var backgrounds = [ { path = "res://backgrounds/schelde.hdr", name = "Riverside"}, @@ -48,8 +48,8 @@ func _unhandled_input(ev): rot_x -= relative_motion.y * ROT_SPEED rot_y = clamp(rot_y, -1.6, 1.6) rot_x = clamp(rot_x, -1.4, 0.5) - camera_holder.transform.basis = Basis(Vector3(0, rot_y, 0)) - rotation_x.transform.basis = Basis(Vector3(rot_x, 0, 0)) + camera_holder.transform.basis = Basis.from_euler(Vector3(0, rot_y, 0)) + rotation_x.transform.basis = Basis.from_euler(Vector3(rot_x, 0, 0)) func _process(delta): @@ -72,4 +72,4 @@ func _on_Next_pressed(): func _on_bg_item_selected(index): - get_node(^"WorldEnvironment").environment.background_sky.panorama = load(backgrounds[index].path) + get_node(^"WorldEnvironment").environment.sky.sky_material.panorama = load(backgrounds[index].path) diff --git a/3d/navmesh/project.godot b/3d/navmesh/project.godot index 52acafde..22ab0f03 100644 --- a/3d/navmesh/project.godot +++ b/3d/navmesh/project.godot @@ -10,8 +10,8 @@ config_version=4 [application] -config/name="3D Node3D Mesh" -config/description="Node3D mesh demo for 3D scenes, with a character +config/name="3D Navigation Mesh" +config/description="Navigation mesh demo for 3D scenes, with a character able to pathfind around a complex 3D environment. The navigation path is drawn using a line. Code is provided for polyline following in 3D." diff --git a/3d/physics_tests/tests/functional/test_collision_pairs.tscn b/3d/physics_tests/tests/functional/test_collision_pairs.tscn index 300999a3..e4bd9c9a 100644 --- a/3d/physics_tests/tests/functional/test_collision_pairs.tscn +++ b/3d/physics_tests/tests/functional/test_collision_pairs.tscn @@ -34,7 +34,7 @@ __meta__ = { } [node name="OffsetX" type="HBoxContainer" parent="Controls"] -offset_right = 202.0 +offset_right = 193.0 offset_bottom = 26.0 theme_override_constants/separation = 20 alignment = 2 @@ -43,22 +43,22 @@ __meta__ = { } [node name="Label" type="Label" parent="Controls/OffsetX"] -offset_right = 62.0 +offset_left = 103.0 +offset_right = 165.0 offset_bottom = 26.0 text = "Offset X" [node name="HSlider" type="HSlider" parent="Controls/OffsetX"] -offset_left = 82.0 -offset_right = 202.0 +offset_left = 185.0 +offset_right = 193.0 offset_bottom = 16.0 -rect_min_size = Vector2(120, 0) min_value = -1.0 max_value = 1.0 step = 0.01 [node name="OffsetY" type="HBoxContainer" parent="Controls"] offset_top = 36.0 -offset_right = 202.0 +offset_right = 193.0 offset_bottom = 62.0 theme_override_constants/separation = 20 alignment = 2 @@ -67,23 +67,22 @@ __meta__ = { } [node name="Label" type="Label" parent="Controls/OffsetY"] -offset_left = 1.0 -offset_right = 62.0 +offset_left = 103.0 +offset_right = 165.0 offset_bottom = 26.0 text = "Offset Y" [node name="HSlider" type="HSlider" parent="Controls/OffsetY"] -offset_left = 82.0 -offset_right = 202.0 +offset_left = 185.0 +offset_right = 193.0 offset_bottom = 16.0 -rect_min_size = Vector2(120, 0) min_value = -1.0 max_value = 1.0 step = 0.01 [node name="OffsetZ" type="HBoxContainer" parent="Controls"] offset_top = 72.0 -offset_right = 202.0 +offset_right = 193.0 offset_bottom = 98.0 theme_override_constants/separation = 20 alignment = 2 @@ -92,16 +91,15 @@ __meta__ = { } [node name="Label" type="Label" parent="Controls/OffsetZ"] -offset_left = 1.0 -offset_right = 62.0 +offset_left = 104.0 +offset_right = 165.0 offset_bottom = 26.0 text = "Offset Z" [node name="HSlider" type="HSlider" parent="Controls/OffsetZ"] -offset_left = 82.0 -offset_right = 202.0 +offset_left = 185.0 +offset_right = 193.0 offset_bottom = 16.0 -rect_min_size = Vector2(120, 0) min_value = -1.0 max_value = 1.0 step = 0.01 diff --git a/3d/physics_tests/tests/functional/test_friction.tscn b/3d/physics_tests/tests/functional/test_friction.tscn index e1041955..a875063f 100644 --- a/3d/physics_tests/tests/functional/test_friction.tscn +++ b/3d/physics_tests/tests/functional/test_friction.tscn @@ -46,7 +46,6 @@ shape = SubResource( "4" ) offset_right = 40.0 offset_bottom = 14.0 text = "0" -align = 1 script = ExtResource( "2" ) __meta__ = { "_edit_use_anchors_": false @@ -64,7 +63,6 @@ shape = SubResource( "4" ) offset_right = 40.0 offset_bottom = 14.0 text = "0.5" -align = 1 script = ExtResource( "2" ) __meta__ = { "_edit_use_anchors_": false @@ -82,7 +80,6 @@ shape = SubResource( "4" ) offset_right = 40.0 offset_bottom = 14.0 text = "1" -align = 1 script = ExtResource( "2" ) __meta__ = { "_edit_use_anchors_": false @@ -111,7 +108,6 @@ shape = SubResource( "4" ) offset_right = 40.0 offset_bottom = 14.0 text = "0" -align = 1 script = ExtResource( "2" ) __meta__ = { "_edit_use_anchors_": false @@ -129,7 +125,6 @@ shape = SubResource( "4" ) offset_right = 40.0 offset_bottom = 14.0 text = "0.5" -align = 1 script = ExtResource( "2" ) __meta__ = { "_edit_use_anchors_": false @@ -147,7 +142,6 @@ shape = SubResource( "4" ) offset_right = 40.0 offset_bottom = 14.0 text = "1" -align = 1 script = ExtResource( "2" ) __meta__ = { "_edit_use_anchors_": false diff --git a/3d/physics_tests/tests/functional/test_moving_platform.gd b/3d/physics_tests/tests/functional/test_moving_platform.gd index 4d4e0eaa..0967699b 100644 --- a/3d/physics_tests/tests/functional/test_moving_platform.gd +++ b/3d/physics_tests/tests/functional/test_moving_platform.gd @@ -146,7 +146,7 @@ func spawn_body_key(body_key): func init_body(): if _current_body is CharacterBody3D: _current_body._stop_on_slopes = _slope - _current_body._use_snap = _snap + _current_body.use_snap = _snap elif _current_body is RigidDynamicBody3D: _current_body.physics_material_override.rough = _rough _current_body.physics_material_override.friction = 1.0 if _friction else 0.0 diff --git a/3d/physics_tests/tests/functional/test_moving_platform.tscn b/3d/physics_tests/tests/functional/test_moving_platform.tscn index 2a79714e..aa6bf48f 100644 --- a/3d/physics_tests/tests/functional/test_moving_platform.tscn +++ b/3d/physics_tests/tests/functional/test_moving_platform.tscn @@ -29,7 +29,7 @@ size = Vector3(4, 0.4, 2) [sub_resource type="Animation" id="9"] length = 9.0 -[node name="Test" type="Node3D"] +[node name="Test2" type="Node3D"] script = ExtResource( "2" ) [node name="LabelBodyType" type="Label" parent="."] @@ -54,7 +54,7 @@ transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -7, -4.18538, 0) collision_layer = 2 script = ExtResource( "4" ) _stop_on_slopes = true -_use_snap = true +use_snap = true [node name="Capsule" type="CollisionShape3D" parent="Bodies/CharacterBody3D"] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0.8, 0) @@ -118,6 +118,7 @@ anims/Move = SubResource( "9" ) [node name="Camera3D" type="Camera3D" parent="."] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 10) +current = true script = ExtResource( "1" ) [node name="OmniLight" type="OmniLight3D" parent="Camera3D"] diff --git a/3d/physics_tests/tests/functional/test_stack.tscn b/3d/physics_tests/tests/functional/test_stack.tscn index 9213a8d8..73adb9a4 100644 --- a/3d/physics_tests/tests/functional/test_stack.tscn +++ b/3d/physics_tests/tests/functional/test_stack.tscn @@ -13,4 +13,5 @@ script = ExtResource( "1" ) [node name="Camera3D" type="Camera3D" parent="."] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 4.53602, 12.2684) +current = true script = ExtResource( "4" ) diff --git a/3d/physics_tests/tests/performance/test_perf_contact_islands.tscn b/3d/physics_tests/tests/performance/test_perf_contact_islands.tscn index d7af122c..bb8169a1 100644 --- a/3d/physics_tests/tests/performance/test_perf_contact_islands.tscn +++ b/3d/physics_tests/tests/performance/test_perf_contact_islands.tscn @@ -6,15 +6,10 @@ [ext_resource type="PackedScene" uid="uid://cl2vpuxqgnylc" path="res://tests/static_scene.tscn" id="5"] [sub_resource type="BoxShape3D" id="1"] -size = Vector3(1, 1, 1) [sub_resource type="CapsuleShape3D" id="2"] -radius = 0.5 -height = 1.5 [sub_resource type="CylinderShape3D" id="3"] -radius = 0.5 -height = 1.0 [sub_resource type="ConvexPolygonShape3D" id="4"] points = PackedVector3Array(-0.7, 0, -0.7, -0.3, 0, 0.8, 0.8, 0, -0.3, 0, -1, 0) diff --git a/3d/physics_tests/tests/test_options.tscn b/3d/physics_tests/tests/test_options.tscn index e602e162..1c488715 100644 --- a/3d/physics_tests/tests/test_options.tscn +++ b/3d/physics_tests/tests/test_options.tscn @@ -9,7 +9,6 @@ offset_right = 125.0 offset_bottom = 126.719 text = "TEST OPTIONS" flat = false -align = 0 script = ExtResource( "1" ) __meta__ = { "_edit_use_anchors_": false diff --git a/3d/physics_tests/utils/characterbody_physics.gd b/3d/physics_tests/utils/characterbody_physics.gd index bab5bd88..6a211738 100644 --- a/3d/physics_tests/utils/characterbody_physics.gd +++ b/3d/physics_tests/utils/characterbody_physics.gd @@ -2,7 +2,7 @@ extends CharacterBody3D @export var _stop_on_slopes = false -@export var _use_snap = false +@export var use_snap = false var _gravity = 20.0 diff --git a/3d/physics_tests/utils/rigidbody_ground_check.gd b/3d/physics_tests/utils/rigidbody_ground_check.gd index 6f34c009..87bfe4a4 100644 --- a/3d/physics_tests/utils/rigidbody_ground_check.gd +++ b/3d/physics_tests/utils/rigidbody_ground_check.gd @@ -9,7 +9,6 @@ var _dir = 1.0 var _distance = 10.0 var _walk_spd = 100.0 var _acceleration = 22.0 -var _gravity_impulse = 30.0 var _is_on_floor = false diff --git a/3d/rigidbody_character/cubelib.tres b/3d/rigidbody_character/cubelib.tres index 05f1b8cd..04edee9d 100644 --- a/3d/rigidbody_character/cubelib.tres +++ b/3d/rigidbody_character/cubelib.tres @@ -1,27 +1,26 @@ -[gd_resource type="MeshLibrary" load_steps=5 format=2] +[gd_resource type="MeshLibrary" load_steps=5 format=3 uid="uid://dxc3y3vtd7ins"] -[ext_resource path="res://models/cube.mesh" type="ArrayMesh" id=1] +[ext_resource type="ArrayMesh" path="res://models/cube.mesh" id="1"] -[sub_resource type="Image" id=4] +[sub_resource type="Image" id="Image_jyk8h"] data = { -"data": PackedByteArray( 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 66, 41, 73, 255, 68, 42, 73, 255, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 55, 32, 61, 255, 62, 36, 68, 255, 70, 43, 77, 255, 72, 45, 78, 255, 67, 43, 73, 255, 63, 41, 68, 255, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 57, 33, 63, 255, 59, 34, 65, 255, 65, 38, 72, 255, 73, 45, 80, 255, 76, 47, 82, 255, 72, 47, 78, 255, 69, 46, 75, 255, 63, 41, 69, 255, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 59, 34, 64, 255, 61, 35, 67, 255, 63, 36, 69, 255, 66, 38, 73, 255, 75, 44, 81, 255, 78, 47, 84, 255, 76, 49, 83, 255, 75, 51, 82, 255, 69, 46, 75, 255, 62, 41, 69, 255, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 54, 32, 59, 255, 60, 35, 65, 255, 62, 36, 68, 255, 63, 37, 70, 255, 62, 36, 69, 255, 69, 40, 76, 255, 80, 48, 87, 255, 82, 50, 89, 255, 81, 52, 88, 255, 80, 54, 87, 255, 75, 51, 81, 255, 68, 46, 75, 255, 63, 42, 68, 255, 55, 35, 61, 255, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 52, 31, 57, 255, 57, 34, 63, 255, 64, 37, 70, 255, 62, 36, 69, 255, 62, 36, 69, 255, 68, 39, 75, 255, 77, 45, 84, 255, 88, 52, 94, 255, 89, 54, 96, 255, 85, 55, 92, 255, 83, 55, 90, 255, 81, 55, 87, 255, 75, 51, 81, 255, 68, 46, 74, 255, 61, 40, 67, 255, 54, 34, 59, 255, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 48, 30, 53, 255, 51, 31, 56, 255, 54, 32, 59, 255, 61, 36, 67, 255, 63, 36, 69, 255, 62, 36, 69, 255, 70, 40, 77, 255, 74, 43, 81, 255, 79, 46, 87, 255, 87, 53, 95, 255, 90, 56, 97, 255, 91, 59, 99, 255, 85, 55, 93, 255, 85, 58, 92, 255, 81, 56, 87, 255, 73, 50, 80, 255, 67, 45, 73, 255, 60, 39, 65, 255, 53, 34, 58, 255, 46, 29, 51, 255, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 46, 28, 51, 255, 50, 30, 55, 255, 54, 32, 59, 255, 59, 36, 65, 255, 64, 37, 70, 255, 65, 37, 72, 255, 72, 42, 80, 255, 76, 44, 84, 255, 76, 44, 84, 255, 82, 49, 90, 255, 94, 58, 103, 255, 97, 61, 105, 255, 95, 61, 103, 255, 91, 59, 98, 255, 88, 60, 96, 255, 86, 60, 93, 255, 79, 54, 85, 255, 72, 48, 78, 255, 67, 45, 73, 255, 60, 39, 65, 255, 52, 33, 57, 255, 45, 29, 50, 255, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 45, 28, 49, 255, 48, 29, 53, 255, 55, 33, 60, 255, 60, 36, 65, 255, 64, 39, 70, 255, 68, 40, 74, 255, 75, 44, 83, 255, 78, 46, 85, 255, 75, 44, 84, 255, 78, 46, 87, 255, 85, 51, 93, 255, 93, 58, 103, 255, 99, 62, 107, 255, 101, 66, 110, 255, 96, 63, 104, 255, 92, 61, 100, 255, 90, 61, 97, 255, 85, 59, 92, 255, 77, 52, 84, 255, 73, 49, 79, 255, 67, 45, 72, 255, 58, 38, 63, 255, 49, 31, 54, 255, 43, 27, 47, 255, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 38, 24, 41, 255, 45, 29, 49, 255, 50, 31, 54, 255, 54, 33, 59, 255, 59, 36, 64, 255, 63, 38, 69, 255, 68, 41, 74, 255, 75, 44, 82, 255, 77, 45, 85, 255, 76, 44, 84, 255, 80, 47, 88, 255, 80, 47, 89, 255, 86, 51, 95, 255, 98, 60, 106, 255, 102, 64, 110, 255, 105, 69, 114, 255, 101, 67, 110, 255, 95, 62, 103, 255, 93, 62, 100, 255, 90, 61, 97, 255, 82, 56, 89, 255, 76, 50, 82, 255, 72, 49, 78, 255, 64, 42, 69, 255, 53, 33, 58, 255, 46, 28, 50, 255, 41, 26, 45, 255, 38, 24, 42, 255, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 35, 22, 39, 255, 41, 26, 45, 255, 50, 32, 54, 255, 54, 33, 59, 255, 59, 36, 64, 255, 62, 37, 68, 255, 67, 40, 73, 255, 72, 44, 79, 255, 75, 45, 83, 255, 78, 46, 85, 255, 82, 48, 90, 255, 83, 49, 92, 255, 82, 47, 91, 255, 92, 54, 101, 255, 101, 61, 108, 255, 105, 64, 113, 255, 109, 70, 119, 255, 105, 69, 114, 255, 100, 66, 109, 255, 95, 62, 103, 255, 94, 63, 101, 255, 89, 59, 95, 255, 80, 52, 86, 255, 76, 51, 82, 255, 69, 45, 75, 255, 56, 34, 61, 255, 49, 29, 54, 255, 44, 26, 48, 255, 43, 27, 47, 255, 37, 23, 40, 255, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 29, 18, 32, 255, 34, 21, 37, 255, 37, 22, 41, 255, 44, 27, 48, 255, 51, 32, 56, 255, 57, 35, 62, 255, 61, 38, 68, 255, 66, 40, 72, 255, 71, 43, 78, 255, 73, 45, 81, 255, 77, 46, 85, 255, 82, 49, 90, 255, 88, 53, 96, 255, 85, 50, 95, 255, 86, 49, 96, 255, 94, 55, 104, 255, 102, 60, 111, 255, 104, 63, 114, 255, 112, 71, 122, 255, 110, 72, 119, 255, 104, 69, 113, 255, 99, 64, 107, 255, 93, 60, 101, 255, 92, 60, 99, 255, 87, 55, 94, 255, 81, 53, 87, 255, 73, 48, 80, 255, 62, 38, 67, 255, 53, 32, 59, 255, 48, 28, 53, 255, 46, 28, 50, 255, 43, 27, 46, 255, 35, 21, 38, 255, 30, 19, 33, 255, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 28, 17, 31, 255, 33, 21, 37, 255, 38, 23, 41, 255, 41, 24, 45, 255, 48, 28, 52, 255, 55, 33, 60, 255, 61, 38, 67, 255, 65, 40, 72, 255, 70, 43, 77, 255, 72, 44, 79, 255, 76, 46, 83, 255, 81, 49, 89, 255, 88, 52, 96, 255, 88, 52, 97, 255, 88, 51, 98, 255, 92, 53, 101, 255, 97, 57, 107, 255, 106, 63, 115, 255, 111, 68, 121, 255, 116, 74, 127, 255, 114, 75, 124, 255, 109, 72, 119, 255, 103, 67, 112, 255, 95, 60, 104, 255, 91, 58, 99, 255, 89, 57, 97, 255, 86, 55, 93, 255, 78, 51, 85, 255, 68, 43, 74, 255, 60, 37, 65, 255, 53, 31, 58, 255, 48, 29, 53, 255, 46, 29, 50, 255, 39, 24, 42, 255, 32, 20, 36, 255, 28, 17, 31, 255, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 27, 17, 29, 255, 33, 21, 36, 255, 38, 25, 42, 255, 41, 24, 45, 255, 45, 26, 50, 255, 53, 32, 58, 255, 61, 38, 67, 255, 65, 40, 71, 255, 69, 41, 75, 255, 72, 43, 79, 255, 76, 46, 84, 255, 80, 49, 88, 255, 86, 52, 94, 255, 89, 53, 98, 255, 93, 55, 102, 255, 98, 58, 108, 255, 97, 57, 107, 255, 101, 59, 111, 255, 117, 72, 127, 255, 123, 77, 134, 255, 121, 77, 131, 255, 119, 77, 129, 255, 111, 72, 121, 255, 105, 68, 115, 255, 99, 63, 108, 255, 92, 58, 101, 255, 90, 57, 98, 255, 87, 55, 94, 255, 83, 53, 90, 255, 74, 47, 81, 255, 65, 41, 71, 255, 59, 36, 65, 255, 53, 33, 59, 255, 48, 29, 53, 255, 44, 27, 48, 255, 37, 23, 41, 255, 31, 18, 34, 255, 26, 16, 28, 255, 21, 12, 23, 255, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 20, 13, 22, 255, 26, 17, 28, 255, 32, 21, 35, 255, 39, 26, 42, 255, 42, 27, 46, 255, 44, 26, 49, 255, 51, 31, 56, 255, 58, 36, 64, 255, 63, 39, 69, 255, 68, 41, 75, 255, 73, 44, 80, 255, 76, 47, 84, 255, 79, 48, 87, 255, 85, 52, 94, 255, 90, 55, 99, 255, 96, 58, 105, 255, 102, 62, 112, 255, 102, 61, 112, 255, 100, 59, 110, 255, 107, 64, 117, 255, 120, 74, 130, 255, 128, 81, 139, 255, 123, 78, 134, 255, 122, 78, 133, 255, 114, 73, 124, 255, 105, 66, 115, 255, 101, 64, 110, 255, 95, 60, 104, 255, 90, 56, 98, 255, 87, 55, 95, 255, 85, 54, 92, 255, 79, 49, 85, 255, 70, 44, 77, 255, 63, 39, 69, 255, 58, 36, 64, 255, 53, 33, 58, 255, 47, 29, 52, 255, 41, 25, 45, 255, 35, 21, 39, 255, 29, 17, 31, 255, 24, 14, 26, 255, 20, 11, 21, 255, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 19, 12, 20, 255, 25, 16, 27, 255, 31, 20, 33, 255, 38, 25, 41, 255, 45, 30, 48, 255, 47, 30, 51, 255, 50, 31, 55, 255, 57, 35, 62, 255, 61, 37, 67, 255, 67, 40, 73, 255, 73, 44, 80, 255, 77, 46, 84, 255, 79, 48, 86, 255, 85, 52, 93, 255, 91, 55, 100, 255, 96, 58, 105, 255, 103, 63, 112, 255, 106, 64, 116, 255, 103, 62, 114, 255, 106, 63, 116, 255, 111, 65, 120, 255, 122, 75, 132, 255, 129, 80, 140, 255, 128, 81, 139, 255, 124, 79, 135, 255, 119, 76, 129, 255, 110, 69, 119, 255, 102, 63, 111, 255, 97, 60, 106, 255, 91, 57, 100, 255, 87, 55, 96, 255, 85, 53, 93, 255, 82, 51, 89, 255, 74, 46, 81, 255, 66, 40, 72, 255, 61, 37, 67, 255, 57, 35, 62, 255, 50, 31, 55, 255, 45, 27, 49, 255, 39, 24, 43, 255, 33, 20, 37, 255, 28, 16, 30, 255, 23, 14, 26, 255, 18, 10, 20, 255, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 12, 7, 13, 255, 17, 11, 19, 255, 23, 16, 25, 255, 29, 19, 32, 255, 35, 24, 38, 255, 42, 29, 46, 255, 49, 33, 53, 255, 52, 33, 56, 255, 56, 35, 61, 255, 61, 38, 66, 255, 65, 40, 71, 255, 71, 43, 78, 255, 76, 46, 83, 255, 81, 49, 89, 255, 84, 51, 93, 255, 89, 54, 98, 255, 96, 58, 105, 255, 104, 63, 113, 255, 110, 66, 120, 255, 107, 64, 117, 255, 108, 64, 118, 255, 112, 67, 122, 255, 115, 68, 126, 255, 122, 73, 137, 255, 127, 76, 141, 255, 130, 81, 140, 255, 126, 79, 136, 255, 122, 76, 132, 255, 116, 73, 126, 255, 108, 66, 116, 255, 101, 62, 110, 255, 95, 59, 104, 255, 90, 56, 98, 255, 85, 53, 93, 255, 82, 51, 90, 255, 77, 48, 84, 255, 70, 44, 77, 255, 65, 40, 71, 255, 60, 36, 65, 255, 55, 33, 60, 255, 48, 29, 53, 255, 42, 25, 46, 255, 37, 22, 41, 255, 32, 19, 35, 255, 27, 16, 29, 255, 21, 13, 24, 255, 16, 9, 17, 255, 10, 6, 11, 255, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 10, 6, 11, 255, 16, 10, 17, 255, 22, 15, 23, 255, 28, 19, 30, 255, 33, 23, 36, 255, 40, 27, 43, 255, 46, 30, 50, 255, 53, 35, 58, 255, 57, 36, 62, 255, 61, 38, 67, 255, 64, 40, 70, 255, 69, 42, 75, 255, 73, 44, 80, 255, 80, 49, 88, 255, 84, 51, 92, 255, 88, 53, 96, 255, 94, 57, 103, 255, 105, 64, 114, 255, 111, 68, 122, 255, 110, 66, 120, 255, 110, 65, 120, 255, 112, 67, 123, 255, 115, 69, 127, 255, 118, 70, 131, 255, 129, 78, 143, 255, 131, 79, 144, 255, 130, 80, 140, 255, 129, 80, 139, 255, 123, 77, 133, 255, 121, 75, 130, 255, 112, 68, 120, 255, 107, 65, 116, 255, 101, 62, 110, 255, 94, 58, 102, 255, 89, 55, 97, 255, 83, 52, 91, 255, 79, 49, 86, 255, 73, 45, 80, 255, 69, 42, 75, 255, 64, 39, 70, 255, 59, 35, 64, 255, 52, 32, 57, 255, 47, 28, 51, 255, 41, 24, 45, 255, 35, 21, 38, 255, 29, 17, 32, 255, 24, 14, 26, 255, 19, 11, 21, 255, 14, 8, 15, 255, 9, 5, 10, 255, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 8, 5, 9, 255, 14, 9, 15, 255, 20, 14, 22, 255, 26, 18, 28, 255, 32, 22, 35, 255, 38, 26, 41, 255, 44, 29, 47, 255, 50, 33, 54, 255, 58, 37, 62, 255, 62, 39, 67, 255, 65, 41, 71, 255, 67, 42, 74, 255, 72, 44, 79, 255, 77, 47, 84, 255, 81, 50, 89, 255, 88, 54, 96, 255, 93, 56, 102, 255, 103, 64, 113, 255, 113, 70, 123, 255, 113, 69, 123, 255, 111, 67, 122, 255, 113, 67, 123, 255, 116, 68, 126, 255, 118, 71, 131, 255, 124, 75, 137, 255, 136, 82, 148, 255, 137, 83, 149, 255, 133, 80, 142, 255, 132, 82, 142, 255, 123, 76, 134, 255, 121, 74, 130, 255, 116, 71, 125, 255, 110, 66, 119, 255, 108, 65, 118, 255, 99, 61, 109, 255, 93, 58, 102, 255, 88, 55, 96, 255, 81, 50, 89, 255, 77, 48, 84, 255, 72, 44, 79, 255, 68, 41, 74, 255, 63, 38, 69, 255, 55, 33, 61, 255, 50, 30, 55, 255, 45, 27, 49, 255, 40, 24, 44, 255, 33, 19, 36, 255, 26, 15, 28, 255, 21, 12, 23, 255, 17, 10, 19, 255, 12, 7, 13, 255, 8, 5, 9, 255, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 12, 7, 13, 255, 18, 12, 19, 255, 24, 16, 26, 255, 31, 21, 33, 255, 37, 26, 40, 255, 43, 30, 47, 255, 49, 32, 53, 255, 56, 35, 60, 255, 61, 39, 66, 255, 65, 41, 70, 255, 68, 42, 74, 255, 71, 44, 78, 255, 74, 46, 82, 255, 78, 48, 86, 255, 84, 52, 92, 255, 92, 56, 101, 255, 103, 63, 112, 255, 110, 68, 120, 255, 115, 71, 125, 255, 114, 69, 125, 255, 115, 69, 126, 255, 117, 69, 127, 255, 119, 71, 130, 255, 122, 73, 134, 255, 129, 78, 141, 255, 138, 83, 151, 255, 137, 82, 150, 255, 133, 81, 143, 255, 132, 80, 141, 255, 127, 77, 136, 255, 123, 75, 132, 255, 118, 72, 127, 255, 113, 69, 122, 255, 109, 66, 119, 255, 105, 63, 114, 255, 96, 58, 105, 255, 88, 54, 97, 255, 83, 52, 91, 255, 78, 49, 86, 255, 74, 45, 81, 255, 71, 43, 78, 255, 66, 39, 72, 255, 59, 36, 65, 255, 52, 32, 57, 255, 47, 28, 51, 255, 43, 26, 47, 255, 39, 23, 43, 255, 32, 18, 35, 255, 24, 14, 27, 255, 19, 11, 21, 255, 15, 9, 17, 255, 11, 7, 12, 255, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 15, 10, 17, 255, 22, 14, 24, 255, 28, 19, 30, 255, 35, 24, 38, 255, 41, 28, 45, 255, 48, 32, 51, 255, 54, 35, 58, 255, 58, 37, 63, 255, 62, 39, 68, 255, 66, 41, 72, 255, 69, 43, 75, 255, 72, 45, 79, 255, 76, 48, 84, 255, 80, 49, 88, 255, 92, 56, 100, 255, 103, 63, 112, 255, 109, 67, 118, 255, 114, 71, 125, 255, 118, 73, 128, 255, 118, 72, 129, 255, 120, 72, 131, 255, 119, 70, 129, 255, 121, 72, 132, 255, 127, 76, 138, 255, 134, 81, 143, 255, 143, 86, 155, 255, 142, 86, 155, 255, 133, 81, 146, 255, 132, 80, 142, 255, 128, 77, 137, 255, 123, 74, 132, 255, 122, 74, 131, 255, 117, 71, 126, 255, 111, 67, 121, 255, 109, 66, 120, 255, 102, 61, 111, 255, 88, 53, 97, 255, 84, 51, 93, 255, 78, 48, 86, 255, 76, 47, 84, 255, 73, 45, 80, 255, 70, 43, 76, 255, 63, 38, 69, 255, 56, 34, 61, 255, 50, 31, 55, 255, 45, 27, 49, 255, 40, 24, 44, 255, 36, 21, 40, 255, 30, 17, 33, 255, 23, 13, 25, 255, 18, 10, 19, 255, 14, 8, 15, 255, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 19, 12, 21, 255, 25, 16, 28, 255, 31, 21, 34, 255, 39, 26, 42, 255, 45, 31, 49, 255, 51, 34, 55, 255, 55, 35, 60, 255, 60, 37, 65, 255, 64, 40, 69, 255, 67, 42, 73, 255, 72, 45, 79, 255, 74, 46, 82, 255, 78, 48, 85, 255, 91, 55, 99, 255, 101, 62, 110, 255, 109, 67, 118, 255, 114, 71, 124, 255, 118, 73, 129, 255, 122, 75, 132, 255, 122, 74, 133, 255, 122, 73, 133, 255, 123, 73, 133, 255, 124, 75, 135, 255, 133, 81, 143, 255, 134, 82, 144, 255, 146, 90, 160, 255, 145, 90, 160, 255, 138, 84, 152, 255, 132, 81, 146, 255, 124, 76, 135, 255, 123, 74, 132, 255, 122, 73, 130, 255, 118, 71, 128, 255, 114, 69, 125, 255, 111, 67, 121, 255, 107, 65, 117, 255, 95, 57, 104, 255, 89, 53, 97, 255, 85, 51, 93, 255, 78, 48, 86, 255, 76, 47, 84, 255, 72, 44, 79, 255, 67, 41, 74, 255, 60, 37, 66, 255, 54, 33, 59, 255, 48, 29, 53, 255, 43, 26, 48, 255, 37, 22, 41, 255, 32, 19, 36, 255, 27, 16, 30, 255, 22, 13, 24, 255, 17, 10, 19, 255, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 23, 15, 25, 255, 29, 19, 32, 255, 35, 23, 38, 255, 42, 28, 46, 255, 48, 31, 52, 255, 52, 33, 57, 255, 57, 36, 62, 255, 61, 38, 67, 255, 65, 40, 71, 255, 71, 44, 78, 255, 75, 46, 82, 255, 76, 46, 84, 255, 87, 52, 94, 255, 97, 60, 106, 255, 106, 65, 115, 255, 113, 70, 123, 255, 118, 73, 129, 255, 122, 75, 133, 255, 123, 76, 134, 255, 124, 75, 135, 255, 127, 76, 137, 255, 125, 75, 135, 255, 131, 80, 141, 255, 133, 81, 143, 255, 133, 81, 144, 255, 142, 84, 155, 255, 140, 84, 154, 255, 140, 85, 154, 255, 140, 85, 154, 255, 125, 77, 138, 255, 122, 74, 133, 255, 121, 73, 131, 255, 120, 72, 130, 255, 117, 71, 129, 255, 112, 68, 124, 255, 109, 66, 120, 255, 102, 61, 111, 255, 94, 56, 103, 255, 92, 55, 100, 255, 88, 54, 96, 255, 82, 50, 90, 255, 75, 46, 82, 255, 71, 43, 78, 255, 65, 39, 71, 255, 59, 36, 65, 255, 53, 32, 58, 255, 47, 28, 52, 255, 41, 25, 46, 255, 35, 20, 39, 255, 29, 17, 33, 255, 25, 15, 28, 255, 21, 13, 23, 255, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 27, 18, 30, 255, 33, 22, 36, 255, 40, 26, 43, 255, 46, 30, 50, 255, 51, 33, 55, 255, 55, 35, 60, 255, 59, 37, 65, 255, 63, 39, 69, 255, 69, 43, 76, 255, 74, 46, 81, 255, 74, 45, 82, 255, 82, 49, 90, 255, 93, 56, 101, 255, 103, 63, 111, 255, 110, 68, 120, 255, 117, 72, 127, 255, 120, 74, 131, 255, 121, 73, 131, 255, 124, 76, 135, 255, 129, 79, 139, 255, 131, 80, 139, 255, 130, 80, 140, 255, 133, 81, 143, 255, 133, 80, 144, 255, 135, 83, 146, 255, 143, 90, 156, 255, 143, 89, 157, 255, 138, 84, 151, 255, 139, 85, 153, 255, 133, 81, 146, 255, 121, 75, 134, 255, 122, 75, 134, 255, 120, 73, 131, 255, 120, 72, 131, 255, 119, 72, 130, 255, 112, 68, 123, 255, 107, 65, 117, 255, 97, 58, 107, 255, 97, 59, 106, 255, 94, 57, 102, 255, 91, 56, 99, 255, 84, 51, 91, 255, 74, 45, 81, 255, 68, 41, 75, 255, 63, 38, 70, 255, 57, 35, 63, 255, 51, 31, 56, 255, 46, 28, 51, 255, 39, 23, 43, 255, 33, 19, 36, 255, 28, 17, 31, 255, 25, 15, 27, 255, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 31, 20, 34, 255, 38, 25, 41, 255, 44, 29, 48, 255, 50, 33, 54, 255, 55, 35, 60, 255, 59, 37, 64, 255, 62, 39, 68, 255, 67, 42, 74, 255, 73, 45, 80, 255, 75, 45, 83, 255, 78, 47, 86, 255, 88, 53, 96, 255, 97, 59, 105, 255, 105, 64, 114, 255, 112, 69, 123, 255, 118, 72, 128, 255, 117, 71, 127, 255, 121, 74, 131, 255, 130, 81, 140, 255, 133, 82, 142, 255, 134, 82, 142, 255, 135, 82, 144, 255, 134, 82, 144, 255, 133, 82, 144, 255, 134, 83, 146, 255, 145, 91, 159, 255, 144, 90, 158, 255, 133, 82, 147, 255, 137, 84, 150, 255, 134, 81, 147, 255, 125, 77, 138, 255, 121, 75, 134, 255, 122, 75, 133, 255, 119, 74, 130, 255, 122, 74, 133, 255, 117, 70, 128, 255, 112, 68, 122, 255, 100, 60, 110, 255, 95, 57, 105, 255, 99, 60, 107, 255, 96, 59, 104, 255, 91, 56, 99, 255, 84, 52, 91, 255, 75, 46, 82, 255, 68, 41, 74, 255, 62, 37, 68, 255, 55, 33, 60, 255, 48, 29, 53, 255, 43, 26, 48, 255, 36, 21, 39, 255, 31, 18, 34, 255, 28, 17, 31, 255, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 36, 23, 39, 255, 42, 28, 46, 255, 48, 32, 52, 255, 54, 36, 59, 255, 58, 37, 64, 255, 61, 38, 66, 255, 66, 41, 72, 255, 73, 45, 80, 255, 78, 47, 85, 255, 81, 48, 89, 255, 83, 50, 91, 255, 90, 54, 98, 255, 96, 58, 106, 255, 106, 65, 116, 255, 112, 68, 122, 255, 117, 71, 128, 255, 119, 73, 129, 255, 125, 79, 136, 255, 131, 83, 143, 255, 136, 84, 145, 255, 137, 83, 145, 255, 134, 82, 144, 255, 133, 82, 144, 255, 138, 85, 149, 255, 138, 85, 150, 255, 136, 87, 151, 255, 132, 84, 147, 255, 138, 85, 152, 255, 137, 84, 150, 255, 134, 82, 147, 255, 130, 80, 143, 255, 123, 76, 136, 255, 123, 76, 135, 255, 123, 77, 134, 255, 118, 74, 129, 255, 119, 73, 130, 255, 114, 69, 125, 255, 107, 65, 117, 255, 95, 57, 106, 255, 100, 61, 109, 255, 100, 61, 109, 255, 96, 60, 105, 255, 90, 55, 98, 255, 83, 51, 90, 255, 76, 47, 82, 255, 68, 41, 74, 255, 60, 36, 66, 255, 53, 32, 58, 255, 44, 26, 49, 255, 38, 22, 43, 255, 34, 20, 37, 255, 31, 19, 34, 255, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 40, 26, 43, 255, 46, 30, 50, 255, 52, 34, 57, 255, 57, 37, 62, 255, 59, 37, 65, 255, 64, 40, 70, 255, 72, 44, 79, 255, 78, 47, 85, 255, 84, 51, 91, 255, 87, 52, 95, 255, 89, 53, 97, 255, 88, 53, 97, 255, 99, 60, 109, 255, 107, 64, 117, 255, 114, 70, 125, 255, 118, 74, 129, 255, 121, 76, 132, 255, 128, 81, 139, 255, 136, 86, 147, 255, 136, 84, 146, 255, 135, 83, 144, 255, 133, 82, 144, 255, 139, 86, 150, 255, 143, 87, 153, 255, 153, 98, 169, 255, 219, 159, 236, 255, 229, 167, 245, 255, 176, 115, 191, 255, 138, 85, 152, 255, 136, 83, 150, 255, 134, 82, 148, 255, 132, 80, 145, 255, 125, 78, 137, 255, 125, 78, 136, 255, 123, 77, 134, 255, 118, 74, 128, 255, 117, 72, 128, 255, 110, 67, 120, 255, 105, 63, 115, 255, 101, 61, 111, 255, 102, 63, 112, 255, 100, 62, 109, 255, 95, 59, 103, 255, 88, 54, 95, 255, 82, 51, 89, 255, 75, 46, 82, 255, 66, 40, 72, 255, 59, 36, 64, 255, 50, 30, 55, 255, 42, 24, 46, 255, 37, 22, 41, 255, 34, 20, 37, 255, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 43, 27, 47, 255, 49, 32, 54, 255, 56, 37, 61, 255, 59, 38, 65, 255, 64, 40, 69, 255, 70, 42, 75, 255, 75, 45, 82, 255, 81, 49, 89, 255, 87, 53, 96, 255, 91, 55, 99, 255, 94, 57, 103, 255, 96, 58, 105, 255, 105, 64, 115, 255, 110, 68, 120, 255, 114, 72, 124, 255, 119, 76, 130, 255, 125, 79, 136, 255, 130, 82, 142, 255, 134, 85, 146, 255, 134, 84, 145, 255, 135, 83, 145, 255, 139, 85, 149, 255, 141, 86, 156, 255, 175, 117, 191, 255, 162, 105, 178, 255, 166, 106, 182, 255, 168, 108, 184, 255, 178, 117, 193, 255, 198, 136, 214, 255, 150, 92, 161, 255, 137, 83, 150, 255, 138, 84, 150, 255, 133, 81, 145, 255, 126, 78, 137, 255, 125, 79, 136, 255, 123, 77, 133, 255, 119, 74, 130, 255, 113, 70, 123, 255, 109, 67, 119, 255, 105, 64, 115, 255, 103, 62, 112, 255, 103, 63, 112, 255, 99, 61, 108, 255, 92, 57, 101, 255, 85, 53, 93, 255, 79, 48, 86, 255, 72, 44, 79, 255, 64, 38, 69, 255, 56, 34, 62, 255, 47, 27, 51, 255, 40, 23, 45, 255, 38, 23, 41, 255, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 46, 29, 50, 255, 54, 35, 59, 255, 60, 39, 65, 255, 64, 40, 70, 255, 69, 43, 74, 255, 73, 44, 79, 255, 77, 46, 84, 255, 84, 50, 92, 255, 88, 53, 97, 255, 95, 57, 104, 255, 99, 60, 109, 255, 103, 63, 112, 255, 106, 66, 116, 255, 109, 69, 119, 255, 117, 74, 127, 255, 128, 82, 138, 255, 126, 79, 138, 255, 130, 83, 142, 255, 134, 85, 147, 255, 136, 84, 147, 255, 139, 85, 149, 255, 152, 93, 167, 255, 185, 122, 201, 255, 160, 98, 175, 255, 157, 98, 173, 255, 157, 98, 173, 255, 157, 98, 173, 255, 152, 94, 168, 255, 156, 96, 171, 255, 189, 124, 200, 255, 156, 95, 167, 255, 139, 84, 152, 255, 136, 83, 149, 255, 131, 81, 142, 255, 126, 78, 136, 255, 122, 76, 133, 255, 115, 71, 125, 255, 113, 70, 123, 255, 110, 68, 119, 255, 107, 66, 117, 255, 105, 64, 114, 255, 102, 63, 112, 255, 101, 62, 110, 255, 96, 59, 105, 255, 89, 55, 97, 255, 81, 50, 88, 255, 74, 45, 80, 255, 66, 40, 72, 255, 59, 35, 64, 255, 51, 30, 56, 255, 44, 26, 49, 255, 40, 24, 44, 255, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 50, 32, 55, 255, 58, 37, 63, 255, 64, 41, 69, 255, 69, 43, 74, 255, 73, 45, 79, 255, 77, 47, 83, 255, 81, 49, 89, 255, 87, 52, 95, 255, 93, 56, 102, 255, 98, 60, 108, 255, 100, 61, 109, 255, 104, 64, 113, 255, 109, 68, 118, 255, 112, 71, 122, 255, 122, 78, 133, 255, 127, 81, 138, 255, 128, 81, 140, 255, 133, 84, 146, 255, 132, 84, 145, 255, 143, 88, 157, 255, 172, 106, 187, 255, 172, 107, 187, 255, 165, 100, 180, 255, 164, 99, 179, 255, 159, 96, 174, 255, 158, 98, 173, 255, 152, 94, 167, 255, 141, 84, 156, 255, 143, 85, 157, 255, 152, 91, 164, 255, 167, 103, 177, 255, 170, 105, 179, 255, 143, 89, 153, 255, 134, 84, 147, 255, 128, 79, 139, 255, 121, 73, 130, 255, 116, 71, 125, 255, 111, 68, 120, 255, 111, 68, 120, 255, 108, 68, 118, 255, 104, 66, 114, 255, 104, 64, 114, 255, 100, 61, 109, 255, 97, 59, 105, 255, 93, 57, 101, 255, 85, 52, 92, 255, 75, 46, 82, 255, 68, 41, 75, 255, 61, 36, 67, 255, 54, 32, 59, 255, 48, 28, 53, 255, 43, 25, 47, 255, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 55, 34, 59, 255, 62, 39, 67, 255, 67, 42, 72, 255, 72, 45, 77, 255, 75, 46, 81, 255, 80, 49, 86, 255, 85, 51, 92, 255, 91, 55, 100, 255, 98, 59, 108, 255, 101, 62, 110, 255, 105, 65, 114, 255, 106, 65, 115, 255, 109, 68, 119, 255, 113, 71, 124, 255, 122, 78, 133, 255, 128, 82, 139, 255, 134, 85, 146, 255, 132, 84, 145, 255, 152, 94, 167, 255, 175, 109, 191, 255, 163, 98, 178, 255, 161, 97, 176, 255, 163, 98, 178, 255, 160, 97, 176, 255, 161, 97, 176, 255, 152, 91, 167, 255, 138, 81, 154, 255, 142, 83, 155, 255, 148, 88, 160, 255, 155, 93, 166, 255, 152, 91, 164, 255, 157, 94, 168, 255, 161, 103, 176, 255, 150, 95, 163, 255, 132, 83, 144, 255, 123, 75, 133, 255, 115, 69, 123, 255, 114, 69, 123, 255, 110, 68, 119, 255, 109, 69, 119, 255, 107, 68, 117, 255, 105, 66, 114, 255, 101, 63, 110, 255, 95, 58, 103, 255, 94, 57, 102, 255, 88, 54, 96, 255, 80, 48, 87, 255, 72, 43, 78, 255, 65, 39, 71, 255, 58, 34, 63, 255, 52, 31, 57, 255, 47, 28, 51, 255, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 58, 36, 63, 255, 65, 41, 70, 255, 70, 43, 75, 255, 73, 45, 79, 255, 78, 48, 84, 255, 83, 50, 89, 255, 86, 52, 94, 255, 94, 57, 103, 255, 97, 60, 106, 255, 102, 64, 111, 255, 103, 64, 112, 255, 104, 64, 112, 255, 110, 68, 119, 255, 115, 73, 125, 255, 125, 80, 137, 255, 135, 87, 147, 255, 137, 87, 150, 255, 160, 98, 176, 255, 168, 103, 184, 255, 159, 96, 175, 255, 154, 91, 170, 255, 158, 94, 173, 255, 164, 98, 179, 255, 164, 99, 180, 255, 149, 88, 165, 255, 138, 80, 154, 255, 143, 84, 159, 255, 150, 89, 165, 255, 152, 91, 164, 255, 146, 86, 158, 255, 142, 85, 156, 255, 141, 86, 156, 255, 147, 91, 162, 255, 159, 101, 174, 255, 148, 93, 162, 255, 128, 79, 138, 255, 118, 71, 126, 255, 114, 68, 122, 255, 114, 69, 123, 255, 110, 69, 120, 255, 111, 71, 121, 255, 110, 70, 119, 255, 103, 65, 112, 255, 99, 62, 107, 255, 95, 58, 103, 255, 90, 55, 98, 255, 83, 50, 91, 255, 76, 45, 82, 255, 68, 40, 75, 255, 63, 38, 69, 255, 56, 33, 61, 255, 52, 31, 57, 255, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 63, 40, 69, 255, 68, 43, 74, 255, 72, 45, 78, 255, 76, 46, 81, 255, 80, 48, 86, 255, 84, 50, 90, 255, 88, 54, 96, 255, 92, 58, 101, 255, 99, 62, 107, 255, 103, 64, 112, 255, 103, 63, 111, 255, 107, 65, 115, 255, 113, 69, 122, 255, 119, 76, 129, 255, 132, 85, 144, 255, 151, 97, 166, 255, 170, 107, 187, 255, 163, 100, 179, 255, 160, 97, 175, 255, 151, 89, 166, 255, 147, 86, 162, 255, 157, 95, 172, 255, 162, 97, 177, 255, 162, 97, 177, 255, 145, 85, 160, 255, 140, 81, 156, 255, 151, 89, 166, 255, 156, 93, 172, 255, 153, 91, 169, 255, 138, 82, 152, 255, 133, 81, 148, 255, 137, 84, 152, 255, 140, 86, 154, 255, 138, 85, 152, 255, 139, 87, 154, 255, 149, 93, 160, 255, 136, 84, 145, 255, 116, 70, 124, 255, 114, 69, 123, 255, 112, 71, 122, 255, 112, 71, 122, 255, 114, 73, 124, 255, 109, 69, 118, 255, 101, 64, 110, 255, 100, 63, 108, 255, 94, 58, 102, 255, 86, 52, 94, 255, 79, 47, 86, 255, 72, 43, 79, 255, 66, 39, 72, 255, 60, 36, 66, 255, 55, 32, 59, 255, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 65, 41, 70, 255, 71, 44, 76, 255, 76, 47, 82, 255, 78, 47, 83, 255, 81, 48, 87, 255, 85, 52, 93, 255, 90, 56, 98, 255, 97, 61, 106, 255, 103, 65, 113, 255, 103, 64, 112, 255, 105, 63, 112, 255, 109, 66, 117, 255, 114, 70, 123, 255, 125, 79, 135, 255, 155, 99, 170, 255, 164, 104, 181, 255, 155, 96, 173, 255, 152, 91, 168, 255, 144, 85, 159, 255, 148, 88, 163, 255, 157, 95, 172, 255, 159, 96, 174, 255, 158, 95, 173, 255, 150, 87, 165, 255, 146, 85, 161, 255, 149, 88, 164, 255, 159, 95, 174, 255, 155, 92, 170, 255, 139, 81, 154, 255, 139, 81, 154, 255, 142, 84, 156, 255, 135, 82, 149, 255, 132, 80, 146, 255, 127, 77, 142, 255, 133, 80, 145, 255, 142, 86, 152, 255, 143, 87, 153, 255, 133, 80, 145, 255, 114, 68, 122, 255, 115, 72, 125, 255, 115, 73, 125, 255, 114, 73, 125, 255, 110, 70, 120, 255, 105, 67, 114, 255, 102, 65, 111, 255, 99, 62, 106, 255, 91, 55, 98, 255, 83, 49, 90, 255, 74, 44, 81, 255, 69, 41, 76, 255, 64, 38, 70, 255, 58, 35, 64, 255, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 67, 40, 71, 255, 73, 45, 79, 255, 78, 47, 83, 255, 79, 48, 85, 255, 83, 50, 90, 255, 87, 54, 96, 255, 93, 58, 101, 255, 99, 62, 108, 255, 103, 64, 112, 255, 103, 62, 110, 255, 104, 62, 111, 255, 110, 66, 117, 255, 117, 73, 130, 255, 157, 100, 173, 255, 157, 99, 174, 255, 150, 91, 167, 255, 148, 89, 166, 255, 142, 84, 162, 255, 152, 93, 169, 255, 161, 99, 176, 255, 160, 98, 175, 255, 158, 95, 172, 255, 152, 89, 166, 255, 149, 87, 163, 255, 154, 91, 168, 255, 157, 94, 172, 255, 152, 90, 166, 255, 138, 80, 152, 255, 141, 83, 155, 255, 144, 85, 159, 255, 139, 81, 153, 255, 137, 80, 151, 255, 129, 77, 143, 255, 128, 75, 142, 255, 132, 77, 145, 255, 132, 77, 145, 255, 135, 80, 146, 255, 135, 80, 146, 255, 134, 79, 145, 255, 132, 84, 144, 255, 120, 77, 131, 255, 119, 76, 129, 255, 111, 71, 121, 255, 106, 67, 116, 255, 106, 67, 114, 255, 102, 64, 109, 255, 96, 58, 101, 255, 86, 52, 92, 255, 78, 46, 85, 255, 72, 43, 79, 255, 67, 40, 74, 255, 61, 37, 68, 255, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 70, 42, 75, 255, 75, 45, 80, 255, 78, 47, 84, 255, 77, 47, 85, 255, 83, 51, 91, 255, 87, 54, 96, 255, 94, 59, 103, 255, 101, 62, 109, 255, 104, 63, 111, 255, 105, 64, 113, 255, 107, 64, 114, 255, 116, 70, 129, 255, 134, 83, 148, 255, 148, 94, 163, 255, 155, 98, 171, 255, 161, 103, 175, 255, 162, 104, 177, 255, 157, 99, 173, 255, 157, 98, 172, 255, 154, 95, 170, 255, 151, 91, 166, 255, 148, 86, 162, 255, 144, 83, 158, 255, 150, 89, 164, 255, 155, 94, 170, 255, 152, 91, 166, 255, 146, 86, 160, 255, 143, 84, 157, 255, 143, 84, 157, 255, 144, 85, 158, 255, 151, 90, 165, 255, 144, 86, 159, 255, 130, 75, 144, 255, 127, 73, 142, 255, 128, 74, 142, 255, 130, 76, 142, 255, 131, 77, 143, 255, 130, 76, 142, 255, 132, 79, 143, 255, 147, 93, 160, 255, 142, 91, 155, 255, 126, 81, 137, 255, 117, 75, 128, 255, 110, 70, 120, 255, 105, 67, 115, 255, 103, 65, 111, 255, 98, 60, 104, 255, 90, 55, 96, 255, 80, 49, 87, 255, 76, 46, 83, 255, 72, 43, 78, 255, 67, 40, 73, 255, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 73, 44, 78, 255, 77, 47, 84, 255, 79, 49, 88, 255, 82, 50, 90, 255, 85, 52, 94, 255, 92, 57, 101, 255, 99, 61, 108, 255, 105, 65, 114, 255, 108, 67, 117, 255, 110, 67, 121, 255, 124, 76, 137, 255, 127, 78, 141, 255, 136, 87, 150, 255, 141, 91, 155, 255, 145, 94, 159, 255, 153, 98, 167, 255, 156, 99, 171, 255, 154, 97, 169, 255, 152, 94, 168, 255, 147, 90, 165, 255, 144, 89, 163, 255, 143, 86, 160, 255, 150, 89, 164, 255, 151, 91, 165, 255, 148, 89, 161, 255, 141, 83, 155, 255, 138, 80, 152, 255, 140, 82, 154, 255, 144, 85, 158, 255, 151, 91, 165, 255, 142, 84, 156, 255, 136, 81, 150, 255, 134, 79, 149, 255, 135, 80, 149, 255, 139, 84, 152, 255, 133, 80, 144, 255, 130, 77, 140, 255, 125, 72, 133, 255, 127, 75, 136, 255, 135, 82, 145, 255, 139, 87, 150, 255, 138, 87, 149, 255, 118, 73, 130, 255, 112, 71, 122, 255, 108, 68, 118, 255, 103, 65, 112, 255, 99, 61, 106, 255, 94, 57, 100, 255, 86, 53, 92, 255, 81, 50, 87, 255, 76, 46, 82, 255, 71, 43, 77, 255, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 74, 45, 81, 255, 81, 49, 89, 255, 86, 52, 95, 255, 86, 53, 94, 255, 91, 55, 100, 255, 100, 61, 109, 255, 104, 64, 113, 255, 108, 68, 118, 255, 127, 79, 139, 255, 138, 84, 151, 255, 134, 85, 148, 255, 140, 91, 154, 255, 133, 83, 146, 255, 125, 76, 139, 255, 126, 76, 139, 255, 134, 81, 148, 255, 141, 84, 156, 255, 142, 87, 159, 255, 145, 89, 162, 255, 150, 92, 165, 255, 147, 90, 163, 255, 149, 92, 165, 255, 147, 87, 161, 255, 146, 87, 160, 255, 138, 81, 152, 255, 139, 82, 154, 255, 145, 87, 159, 255, 140, 82, 153, 255, 142, 84, 155, 255, 139, 83, 153, 255, 137, 82, 151, 255, 141, 86, 155, 255, 140, 85, 154, 255, 143, 87, 157, 255, 144, 89, 158, 255, 138, 84, 152, 255, 132, 79, 143, 255, 129, 77, 138, 255, 129, 77, 138, 255, 126, 74, 135, 255, 124, 73, 133, 255, 131, 80, 143, 255, 130, 78, 147, 255, 120, 73, 133, 255, 107, 68, 117, 255, 104, 65, 113, 255, 99, 61, 106, 255, 94, 58, 101, 255, 89, 54, 96, 255, 83, 51, 90, 255, 79, 48, 85, 255, 74, 45, 80, 255, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 78, 47, 85, 255, 85, 51, 93, 255, 86, 53, 95, 255, 89, 54, 98, 255, 96, 58, 105, 255, 102, 62, 112, 255, 107, 67, 117, 255, 133, 83, 145, 255, 142, 89, 155, 255, 137, 85, 150, 255, 137, 84, 149, 255, 137, 88, 150, 255, 135, 87, 149, 255, 130, 81, 143, 255, 130, 77, 143, 255, 132, 75, 145, 255, 135, 78, 148, 255, 140, 84, 154, 255, 145, 90, 160, 255, 146, 90, 161, 255, 145, 88, 160, 255, 145, 86, 159, 255, 147, 87, 160, 255, 143, 83, 156, 255, 144, 85, 157, 255, 141, 84, 155, 255, 134, 79, 148, 255, 138, 82, 151, 255, 139, 83, 153, 255, 143, 86, 156, 255, 142, 85, 156, 255, 138, 83, 151, 255, 142, 88, 156, 255, 146, 91, 160, 255, 146, 90, 159, 255, 138, 84, 152, 255, 128, 77, 142, 255, 128, 77, 140, 255, 128, 77, 138, 255, 128, 78, 139, 255, 126, 75, 138, 255, 124, 74, 141, 255, 125, 75, 142, 255, 132, 80, 146, 255, 127, 77, 139, 255, 103, 65, 113, 255, 102, 63, 109, 255, 94, 58, 102, 255, 89, 55, 96, 255, 85, 51, 92, 255, 80, 48, 86, 255, 76, 47, 82, 255, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 80, 49, 88, 255, 85, 52, 93, 255, 87, 53, 95, 255, 91, 55, 100, 255, 98, 60, 107, 255, 116, 74, 128, 255, 136, 86, 149, 255, 136, 85, 149, 255, 135, 85, 148, 255, 138, 88, 151, 255, 143, 93, 155, 255, 144, 94, 157, 255, 143, 93, 156, 255, 136, 84, 149, 255, 132, 77, 144, 255, 133, 78, 145, 255, 136, 81, 148, 255, 140, 86, 153, 255, 142, 88, 156, 255, 139, 83, 153, 255, 139, 81, 151, 255, 142, 84, 155, 255, 147, 88, 160, 255, 149, 89, 162, 255, 140, 82, 153, 255, 133, 77, 146, 255, 137, 82, 150, 255, 138, 83, 151, 255, 140, 84, 153, 255, 137, 82, 151, 255, 136, 81, 149, 255, 141, 84, 154, 255, 145, 90, 159, 255, 148, 91, 162, 255, 141, 86, 154, 255, 132, 80, 145, 255, 131, 79, 144, 255, 130, 78, 143, 255, 129, 78, 142, 255, 128, 77, 141, 255, 125, 75, 141, 255, 124, 74, 140, 255, 126, 76, 140, 255, 129, 78, 141, 255, 130, 79, 142, 255, 126, 75, 139, 255, 108, 65, 120, 255, 99, 61, 106, 255, 92, 57, 99, 255, 86, 53, 93, 255, 81, 50, 88, 255, 77, 47, 83, 255, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 81, 49, 88, 255, 83, 51, 92, 255, 90, 55, 98, 255, 94, 57, 103, 255, 119, 76, 133, 255, 136, 88, 149, 255, 134, 87, 147, 255, 134, 86, 147, 255, 136, 88, 148, 255, 139, 90, 151, 255, 145, 98, 157, 255, 150, 103, 162, 255, 149, 102, 162, 255, 144, 94, 156, 255, 135, 82, 147, 255, 136, 84, 149, 255, 137, 85, 150, 255, 140, 87, 153, 255, 141, 87, 154, 255, 135, 82, 148, 255, 136, 81, 149, 255, 140, 83, 153, 255, 141, 84, 154, 255, 137, 80, 150, 255, 137, 82, 150, 255, 141, 87, 154, 255, 135, 84, 148, 255, 131, 79, 144, 255, 132, 79, 145, 255, 133, 79, 146, 255, 135, 81, 148, 255, 142, 88, 155, 255, 145, 92, 158, 255, 142, 89, 155, 255, 138, 85, 151, 255, 133, 81, 146, 255, 128, 77, 141, 255, 128, 77, 140, 255, 128, 75, 137, 255, 129, 75, 138, 255, 127, 76, 139, 255, 122, 73, 137, 255, 125, 75, 138, 255, 126, 76, 138, 255, 126, 77, 138, 255, 125, 75, 136, 255, 127, 77, 139, 255, 118, 73, 129, 255, 97, 60, 104, 255, 91, 56, 98, 255, 84, 52, 91, 255, 80, 49, 86, 255, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 80, 49, 88, 255, 87, 54, 96, 255, 95, 59, 103, 255, 120, 77, 135, 255, 127, 82, 144, 255, 129, 84, 143, 255, 134, 88, 144, 255, 135, 89, 146, 255, 136, 90, 148, 255, 140, 93, 152, 255, 143, 96, 154, 255, 146, 101, 158, 255, 145, 99, 157, 255, 144, 96, 156, 255, 141, 91, 154, 255, 138, 88, 151, 255, 138, 86, 150, 255, 141, 87, 153, 255, 137, 84, 150, 255, 132, 80, 145, 255, 135, 83, 148, 255, 132, 80, 144, 255, 127, 74, 139, 255, 134, 81, 146, 255, 134, 83, 147, 255, 125, 77, 138, 255, 128, 79, 141, 255, 135, 84, 148, 255, 127, 77, 139, 255, 132, 80, 145, 255, 138, 86, 150, 255, 139, 87, 152, 255, 139, 87, 152, 255, 139, 87, 151, 255, 136, 85, 149, 255, 131, 80, 143, 255, 128, 77, 140, 255, 130, 77, 141, 255, 130, 77, 141, 255, 126, 74, 135, 255, 121, 69, 128, 255, 121, 70, 130, 255, 120, 72, 133, 255, 122, 73, 134, 255, 124, 76, 135, 255, 123, 75, 134, 255, 122, 75, 133, 255, 124, 76, 135, 255, 110, 63, 121, 255, 99, 62, 108, 255, 88, 54, 95, 255, 80, 49, 87, 255, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 82, 51, 90, 255, 101, 63, 108, 255, 120, 75, 127, 255, 121, 77, 132, 255, 122, 79, 138, 255, 126, 82, 140, 255, 129, 85, 141, 255, 130, 85, 142, 255, 132, 88, 144, 255, 133, 86, 145, 255, 135, 88, 146, 255, 136, 89, 148, 255, 139, 92, 150, 255, 139, 92, 151, 255, 143, 98, 156, 255, 141, 92, 153, 255, 140, 89, 152, 255, 138, 86, 151, 255, 136, 84, 148, 255, 133, 82, 145, 255, 127, 77, 140, 255, 124, 75, 136, 255, 127, 80, 139, 255, 125, 78, 137, 255, 118, 72, 130, 255, 127, 79, 140, 255, 127, 79, 140, 255, 118, 72, 130, 255, 127, 78, 138, 255, 136, 84, 147, 255, 137, 85, 149, 255, 136, 85, 148, 255, 136, 85, 148, 255, 136, 85, 148, 255, 135, 84, 146, 255, 134, 82, 144, 255, 132, 80, 142, 255, 130, 78, 142, 255, 127, 76, 138, 255, 125, 74, 134, 255, 123, 73, 133, 255, 119, 71, 129, 255, 111, 66, 122, 255, 120, 73, 131, 255, 122, 76, 133, 255, 118, 70, 128, 255, 116, 69, 127, 255, 114, 67, 125, 255, 113, 69, 124, 255, 111, 70, 122, 255, 95, 60, 105, 255, 82, 51, 90, 255, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 102, 62, 108, 255, 116, 73, 124, 255, 116, 73, 124, 255, 119, 76, 127, 255, 123, 80, 133, 255, 127, 83, 136, 255, 130, 86, 138, 255, 130, 88, 141, 255, 133, 92, 143, 255, 134, 93, 145, 255, 134, 92, 145, 255, 134, 91, 145, 255, 135, 89, 146, 255, 134, 87, 146, 255, 136, 88, 147, 255, 139, 90, 150, 255, 138, 89, 149, 255, 136, 88, 148, 255, 133, 84, 145, 255, 129, 79, 141, 255, 123, 76, 134, 255, 121, 76, 131, 255, 117, 72, 126, 255, 119, 74, 130, 255, 122, 77, 134, 255, 112, 69, 123, 255, 112, 68, 123, 255, 127, 78, 138, 255, 133, 82, 144, 255, 136, 84, 148, 255, 136, 84, 148, 255, 134, 84, 146, 255, 134, 84, 145, 255, 133, 83, 145, 255, 131, 80, 142, 255, 132, 81, 143, 255, 130, 80, 141, 255, 125, 75, 134, 255, 124, 74, 134, 255, 125, 75, 136, 255, 122, 74, 132, 255, 117, 71, 127, 255, 117, 72, 127, 255, 118, 73, 129, 255, 116, 71, 126, 255, 114, 68, 125, 255, 111, 66, 121, 255, 108, 67, 118, 255, 106, 67, 116, 255, 101, 63, 111, 255, 109, 69, 120, 255, 90, 57, 100, 255, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 111, 69, 118, 255, 113, 71, 120, 255, 117, 75, 126, 255, 121, 79, 130, 255, 126, 83, 136, 255, 126, 85, 137, 255, 127, 87, 138, 255, 129, 90, 140, 255, 130, 91, 141, 255, 131, 92, 142, 255, 132, 92, 143, 255, 135, 91, 144, 255, 135, 89, 145, 255, 133, 87, 144, 255, 131, 85, 143, 255, 130, 83, 141, 255, 127, 80, 138, 255, 125, 78, 136, 255, 122, 76, 133, 255, 118, 74, 129, 255, 116, 72, 126, 255, 118, 74, 129, 255, 117, 73, 127, 255, 108, 66, 115, 255, 111, 67, 118, 255, 120, 73, 128, 255, 124, 76, 133, 255, 128, 78, 138, 255, 130, 80, 141, 255, 132, 82, 144, 255, 132, 81, 143, 255, 131, 81, 143, 255, 131, 81, 143, 255, 130, 80, 141, 255, 126, 77, 136, 255, 124, 75, 133, 255, 122, 74, 131, 255, 124, 76, 133, 255, 124, 77, 133, 255, 121, 75, 131, 255, 117, 72, 127, 255, 115, 71, 124, 255, 114, 70, 123, 255, 112, 69, 122, 255, 108, 68, 118, 255, 104, 66, 114, 255, 103, 65, 113, 255, 104, 66, 114, 255, 106, 67, 116, 255, 97, 61, 107, 255, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 64, 40, 70, 255, 110, 69, 117, 255, 113, 73, 123, 255, 120, 79, 130, 255, 121, 80, 131, 255, 122, 81, 132, 255, 124, 86, 134, 255, 126, 86, 136, 255, 127, 86, 136, 255, 131, 89, 138, 255, 133, 89, 139, 255, 130, 85, 137, 255, 126, 81, 136, 255, 123, 78, 134, 255, 121, 76, 132, 255, 120, 75, 131, 255, 118, 73, 127, 255, 115, 71, 123, 255, 115, 71, 124, 255, 116, 73, 127, 255, 114, 71, 124, 255, 107, 65, 116, 255, 105, 63, 115, 255, 111, 66, 120, 255, 119, 72, 126, 255, 121, 73, 128, 255, 121, 74, 129, 255, 123, 76, 132, 255, 124, 76, 135, 255, 126, 78, 137, 255, 126, 78, 137, 255, 126, 78, 137, 255, 122, 74, 132, 255, 117, 70, 125, 255, 115, 68, 121, 255, 118, 72, 125, 255, 121, 75, 129, 255, 118, 73, 126, 255, 118, 73, 126, 255, 114, 71, 123, 255, 112, 69, 121, 255, 110, 68, 119, 255, 105, 66, 115, 255, 101, 64, 111, 255, 100, 64, 110, 255, 103, 65, 113, 255, 105, 65, 114, 255, 61, 36, 67, 255, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 106, 67, 115, 255, 111, 72, 121, 255, 112, 72, 121, 255, 113, 73, 123, 255, 115, 75, 125, 255, 118, 78, 127, 255, 123, 81, 130, 255, 123, 81, 131, 255, 123, 80, 131, 255, 117, 74, 127, 255, 117, 73, 127, 255, 115, 72, 126, 255, 112, 70, 121, 255, 112, 70, 121, 255, 108, 67, 115, 255, 111, 68, 118, 255, 113, 70, 122, 255, 114, 70, 122, 255, 110, 67, 119, 255, 100, 60, 111, 255, 101, 61, 112, 255, 106, 63, 115, 255, 110, 66, 118, 255, 114, 68, 121, 255, 117, 71, 124, 255, 116, 71, 125, 255, 117, 72, 128, 255, 117, 72, 128, 255, 115, 70, 126, 255, 114, 68, 124, 255, 116, 71, 127, 255, 114, 70, 123, 255, 114, 70, 121, 255, 112, 69, 120, 255, 110, 68, 119, 255, 114, 71, 122, 255, 117, 73, 123, 255, 113, 70, 120, 255, 107, 67, 116, 255, 101, 64, 111, 255, 100, 63, 110, 255, 97, 62, 107, 255, 99, 63, 109, 255, 101, 63, 110, 255, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 99, 62, 108, 255, 108, 69, 117, 255, 111, 73, 121, 255, 111, 73, 119, 255, 110, 72, 117, 255, 110, 71, 118, 255, 112, 72, 122, 255, 113, 72, 122, 255, 114, 72, 123, 255, 112, 71, 122, 255, 107, 70, 117, 255, 107, 70, 117, 255, 110, 70, 120, 255, 108, 67, 116, 255, 108, 67, 116, 255, 106, 65, 113, 255, 108, 66, 116, 255, 109, 66, 119, 255, 108, 65, 118, 255, 105, 63, 114, 255, 102, 61, 111, 255, 96, 58, 107, 255, 99, 60, 109, 255, 96, 58, 106, 255, 102, 63, 113, 255, 107, 65, 117, 255, 106, 63, 116, 255, 106, 63, 116, 255, 111, 68, 121, 255, 111, 69, 120, 255, 110, 70, 117, 255, 106, 67, 114, 255, 105, 65, 114, 255, 109, 68, 117, 255, 109, 68, 117, 255, 107, 66, 115, 255, 105, 66, 114, 255, 103, 65, 113, 255, 104, 65, 114, 255, 100, 63, 110, 255, 98, 62, 107, 255, 97, 61, 106, 255, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 0, 0, 0, 255, 102, 65, 108, 255, 106, 70, 114, 255, 109, 72, 117, 255, 110, 74, 119, 255, 110, 73, 118, 255, 111, 72, 119, 255, 111, 72, 120, 255, 111, 73, 120, 255, 110, 72, 120, 255, 106, 69, 116, 255, 100, 65, 110, 255, 101, 64, 110, 255, 104, 64, 112, 255, 107, 66, 116, 255, 108, 66, 118, 255, 108, 66, 117, 255, 108, 66, 118, 255, 107, 65, 117, 255, 108, 65, 115, 255, 107, 65, 115, 255, 104, 64, 114, 255, 96, 59, 107, 255, 91, 56, 101, 255, 100, 62, 111, 255, 105, 64, 115, 255, 108, 66, 118, 255, 103, 64, 112, 255, 100, 63, 109, 255, 100, 63, 109, 255, 105, 67, 112, 255, 110, 70, 116, 255, 104, 65, 112, 255, 98, 61, 107, 255, 98, 62, 108, 255, 101, 64, 111, 255, 102, 64, 112, 255, 97, 62, 107, 255, 94, 59, 103, 255, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 101, 66, 108, 255, 104, 69, 112, 255, 106, 71, 114, 255, 106, 70, 114, 255, 106, 68, 115, 255, 108, 70, 117, 255, 111, 73, 120, 255, 102, 67, 112, 255, 96, 63, 105, 255, 96, 63, 105, 255, 98, 62, 107, 255, 101, 62, 110, 255, 101, 61, 110, 255, 101, 61, 111, 255, 104, 64, 114, 255, 104, 64, 114, 255, 103, 63, 112, 255, 101, 62, 112, 255, 102, 62, 113, 255, 105, 65, 115, 255, 103, 64, 113, 255, 103, 64, 112, 255, 97, 60, 107, 255, 98, 61, 107, 255, 94, 59, 104, 255, 98, 62, 107, 255, 100, 63, 107, 255, 99, 63, 106, 255, 101, 64, 108, 255, 101, 64, 108, 255, 99, 64, 106, 255, 95, 62, 102, 255, 98, 62, 107, 255, 99, 62, 108, 255, 92, 59, 101, 255, 93, 59, 102, 255, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 25, 16, 28, 255, 100, 65, 108, 255, 104, 66, 113, 255, 102, 65, 111, 255, 105, 67, 114, 255, 106, 68, 114, 255, 101, 66, 110, 255, 96, 62, 105, 255, 95, 60, 104, 255, 97, 60, 106, 255, 96, 59, 104, 255, 96, 59, 104, 255, 96, 58, 104, 255, 95, 57, 104, 255, 97, 59, 107, 255, 96, 58, 107, 255, 94, 57, 106, 255, 96, 58, 107, 255, 95, 58, 106, 255, 98, 60, 108, 255, 93, 57, 102, 255, 93, 57, 102, 255, 93, 58, 102, 255, 93, 58, 102, 255, 95, 58, 103, 255, 93, 58, 101, 255, 89, 55, 97, 255, 89, 56, 97, 255, 91, 59, 98, 255, 94, 61, 102, 255, 96, 62, 103, 255, 95, 62, 103, 255, 96, 61, 104, 255, 25, 15, 27, 255, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 93, 59, 102, 255, 96, 61, 105, 255, 100, 64, 109, 255, 102, 65, 110, 255, 101, 65, 110, 255, 99, 64, 108, 255, 99, 63, 107, 255, 99, 63, 108, 255, 98, 62, 106, 255, 95, 59, 103, 255, 95, 59, 103, 255, 94, 59, 103, 255, 93, 57, 102, 255, 94, 57, 103, 255, 96, 58, 105, 255, 96, 58, 105, 255, 96, 58, 105, 255, 95, 58, 104, 255, 94, 58, 102, 255, 95, 58, 104, 255, 92, 57, 101, 255, 84, 53, 93, 255, 80, 52, 88, 255, 82, 52, 90, 255, 85, 53, 93, 255, 84, 53, 90, 255, 83, 54, 89, 255, 86, 56, 92, 255, 89, 58, 96, 255, 94, 61, 102, 255, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 71, 45, 78, 255, 96, 60, 103, 255, 96, 61, 104, 255, 95, 61, 104, 255, 96, 61, 104, 255, 94, 59, 102, 255, 92, 58, 100, 255, 90, 57, 98, 255, 88, 55, 96, 255, 87, 54, 96, 255, 88, 55, 97, 255, 86, 53, 96, 255, 84, 52, 95, 255, 83, 51, 94, 255, 89, 54, 98, 255, 87, 54, 96, 255, 85, 54, 93, 255, 86, 54, 94, 255, 86, 54, 95, 255, 84, 53, 93, 255, 80, 51, 88, 255, 80, 51, 88, 255, 81, 50, 88, 255, 82, 50, 89, 255, 80, 49, 88, 255, 78, 49, 85, 255, 79, 51, 84, 255, 70, 43, 78, 255, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 88, 55, 96, 255, 88, 54, 96, 255, 90, 56, 97, 255, 89, 55, 96, 255, 89, 55, 96, 255, 83, 51, 92, 255, 80, 50, 90, 255, 85, 54, 94, 255, 85, 54, 93, 255, 82, 50, 91, 255, 80, 49, 90, 255, 80, 49, 89, 255, 79, 50, 88, 255, 80, 51, 88, 255, 85, 53, 93, 255, 84, 53, 92, 255, 84, 53, 92, 255, 82, 52, 89, 255, 78, 49, 86, 255, 77, 47, 84, 255, 74, 45, 82, 255, 73, 44, 81, 255, 75, 46, 83, 255, 73, 44, 80, 255, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 87, 56, 94, 255, 85, 54, 93, 255, 86, 54, 93, 255, 85, 53, 93, 255, 83, 51, 91, 255, 82, 50, 90, 255, 78, 49, 87, 255, 76, 47, 85, 255, 75, 46, 85, 255, 75, 46, 85, 255, 76, 47, 84, 255, 76, 47, 84, 255, 77, 48, 84, 255, 79, 49, 86, 255, 78, 49, 85, 255, 76, 48, 83, 255, 77, 48, 84, 255, 76, 46, 83, 255, 71, 43, 78, 255, 70, 42, 77, 255, 72, 43, 79, 255, 70, 42, 77, 255, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 0, 0, 0, 255, 77, 47, 84, 255, 78, 48, 85, 255, 79, 48, 85, 255, 79, 48, 86, 255, 78, 48, 85, 255, 76, 47, 83, 255, 71, 44, 78, 255, 73, 45, 80, 255, 71, 44, 78, 255, 71, 44, 78, 255, 71, 44, 78, 255, 71, 44, 78, 255, 69, 44, 77, 255, 72, 44, 78, 255, 74, 45, 81, 255, 75, 46, 81, 255, 73, 45, 80, 255, 73, 45, 79, 255, 0, 0, 0, 255, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 72, 44, 79, 255, 74, 45, 80, 255, 72, 44, 79, 255, 71, 43, 78, 255, 67, 41, 74, 255, 65, 41, 72, 255, 65, 40, 72, 255, 65, 41, 72, 255, 65, 40, 72, 255, 64, 40, 71, 255, 68, 41, 75, 255, 70, 42, 76, 255, 72, 44, 78, 255, 72, 45, 79, 255, 70, 44, 77, 255, 71, 44, 78, 255, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 30, 18, 33, 255, 66, 41, 73, 255, 66, 41, 73, 255, 68, 42, 77, 255, 68, 42, 77, 255, 68, 42, 77, 255, 65, 40, 72, 255, 63, 39, 69, 255, 64, 39, 71, 255, 66, 40, 72, 255, 68, 42, 74, 255, 66, 40, 73, 255, 65, 39, 71, 255, 30, 19, 33, 255, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 62, 39, 70, 255, 64, 40, 72, 255, 64, 40, 73, 255, 62, 38, 69, 255, 61, 37, 67, 255, 61, 37, 67, 255, 61, 36, 67, 255, 61, 37, 67, 255, 62, 37, 68, 255, 62, 38, 68, 255, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 57, 36, 64, 255, 56, 35, 62, 255, 58, 36, 64, 255, 58, 36, 64, 255, 56, 35, 62, 255, 57, 35, 63, 255, 57, 34, 63, 255, 57, 34, 62, 255, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 0, 0, 0, 255, 51, 32, 57, 255, 50, 30, 55, 255, 54, 33, 59, 255, 54, 33, 59, 255, 0, 0, 0, 255, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 49, 31, 54, 255, 48, 30, 53, 255, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0 ), +"data": PackedByteArray(76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 66, 41, 73, 255, 68, 42, 73, 255, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 55, 32, 61, 255, 62, 36, 68, 255, 70, 43, 77, 255, 72, 45, 78, 255, 67, 43, 73, 255, 63, 41, 68, 255, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 57, 33, 63, 255, 59, 34, 65, 255, 65, 38, 72, 255, 73, 45, 80, 255, 76, 47, 82, 255, 72, 47, 78, 255, 69, 46, 75, 255, 63, 41, 69, 255, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 59, 34, 64, 255, 61, 35, 67, 255, 63, 36, 69, 255, 66, 38, 73, 255, 75, 44, 81, 255, 78, 47, 84, 255, 76, 49, 83, 255, 75, 51, 82, 255, 69, 46, 75, 255, 62, 41, 69, 255, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 54, 32, 59, 255, 60, 35, 65, 255, 62, 36, 68, 255, 63, 37, 70, 255, 62, 36, 69, 255, 69, 40, 76, 255, 80, 48, 87, 255, 82, 50, 89, 255, 81, 52, 88, 255, 80, 54, 87, 255, 75, 51, 81, 255, 68, 46, 75, 255, 63, 42, 68, 255, 55, 35, 61, 255, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 52, 31, 57, 255, 57, 34, 63, 255, 64, 37, 70, 255, 62, 36, 69, 255, 62, 36, 69, 255, 68, 39, 75, 255, 77, 45, 84, 255, 88, 52, 94, 255, 89, 54, 96, 255, 85, 55, 92, 255, 83, 55, 90, 255, 81, 55, 87, 255, 75, 51, 81, 255, 68, 46, 74, 255, 61, 40, 67, 255, 54, 34, 59, 255, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 48, 30, 53, 255, 51, 31, 56, 255, 54, 32, 59, 255, 61, 36, 67, 255, 63, 36, 69, 255, 62, 36, 69, 255, 70, 40, 77, 255, 74, 43, 81, 255, 79, 46, 87, 255, 87, 53, 95, 255, 90, 56, 97, 255, 91, 59, 99, 255, 85, 55, 93, 255, 85, 58, 92, 255, 81, 56, 87, 255, 73, 50, 80, 255, 67, 45, 73, 255, 60, 39, 65, 255, 53, 34, 58, 255, 46, 29, 51, 255, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 46, 28, 51, 255, 50, 30, 55, 255, 54, 32, 59, 255, 59, 36, 65, 255, 64, 37, 70, 255, 65, 37, 72, 255, 72, 42, 80, 255, 76, 44, 84, 255, 76, 44, 84, 255, 82, 49, 90, 255, 94, 58, 103, 255, 97, 61, 105, 255, 95, 61, 103, 255, 91, 59, 98, 255, 88, 60, 96, 255, 86, 60, 93, 255, 79, 54, 85, 255, 72, 48, 78, 255, 67, 45, 73, 255, 60, 39, 65, 255, 52, 33, 57, 255, 45, 29, 50, 255, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 45, 28, 49, 255, 48, 29, 53, 255, 55, 33, 60, 255, 60, 36, 65, 255, 64, 39, 70, 255, 68, 40, 74, 255, 75, 44, 83, 255, 78, 46, 85, 255, 75, 44, 84, 255, 78, 46, 87, 255, 85, 51, 93, 255, 93, 58, 103, 255, 99, 62, 107, 255, 101, 66, 110, 255, 96, 63, 104, 255, 92, 61, 100, 255, 90, 61, 97, 255, 85, 59, 92, 255, 77, 52, 84, 255, 73, 49, 79, 255, 67, 45, 72, 255, 58, 38, 63, 255, 49, 31, 54, 255, 43, 27, 47, 255, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 38, 24, 41, 255, 45, 29, 49, 255, 50, 31, 54, 255, 54, 33, 59, 255, 59, 36, 64, 255, 63, 38, 69, 255, 68, 41, 74, 255, 75, 44, 82, 255, 77, 45, 85, 255, 76, 44, 84, 255, 80, 47, 88, 255, 80, 47, 89, 255, 86, 51, 95, 255, 98, 60, 106, 255, 102, 64, 110, 255, 105, 69, 114, 255, 101, 67, 110, 255, 95, 62, 103, 255, 93, 62, 100, 255, 90, 61, 97, 255, 82, 56, 89, 255, 76, 50, 82, 255, 72, 49, 78, 255, 64, 42, 69, 255, 53, 33, 58, 255, 46, 28, 50, 255, 41, 26, 45, 255, 38, 24, 42, 255, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 35, 22, 39, 255, 41, 26, 45, 255, 50, 32, 54, 255, 54, 33, 59, 255, 59, 36, 64, 255, 62, 37, 68, 255, 67, 40, 73, 255, 72, 44, 79, 255, 75, 45, 83, 255, 78, 46, 85, 255, 82, 48, 90, 255, 83, 49, 92, 255, 82, 47, 91, 255, 92, 54, 101, 255, 101, 61, 108, 255, 105, 64, 113, 255, 109, 70, 119, 255, 105, 69, 114, 255, 100, 66, 109, 255, 95, 62, 103, 255, 94, 63, 101, 255, 89, 59, 95, 255, 80, 52, 86, 255, 76, 51, 82, 255, 69, 45, 75, 255, 56, 34, 61, 255, 49, 29, 54, 255, 44, 26, 48, 255, 43, 27, 47, 255, 37, 23, 40, 255, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 29, 18, 32, 255, 34, 21, 37, 255, 37, 22, 41, 255, 44, 27, 48, 255, 51, 32, 56, 255, 57, 35, 62, 255, 61, 38, 68, 255, 66, 40, 72, 255, 71, 43, 78, 255, 73, 45, 81, 255, 77, 46, 85, 255, 82, 49, 90, 255, 88, 53, 96, 255, 85, 50, 95, 255, 86, 49, 96, 255, 94, 55, 104, 255, 102, 60, 111, 255, 104, 63, 114, 255, 112, 71, 122, 255, 110, 72, 119, 255, 104, 69, 113, 255, 99, 64, 107, 255, 93, 60, 101, 255, 92, 60, 99, 255, 87, 55, 94, 255, 81, 53, 87, 255, 73, 48, 80, 255, 62, 38, 67, 255, 53, 32, 59, 255, 48, 28, 53, 255, 46, 28, 50, 255, 43, 27, 46, 255, 35, 21, 38, 255, 30, 19, 33, 255, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 28, 17, 31, 255, 33, 21, 37, 255, 38, 23, 41, 255, 41, 24, 45, 255, 48, 28, 52, 255, 55, 33, 60, 255, 61, 38, 67, 255, 65, 40, 72, 255, 70, 43, 77, 255, 72, 44, 79, 255, 76, 46, 83, 255, 81, 49, 89, 255, 88, 52, 96, 255, 88, 52, 97, 255, 88, 51, 98, 255, 92, 53, 101, 255, 97, 57, 107, 255, 106, 63, 115, 255, 111, 68, 121, 255, 116, 74, 127, 255, 114, 75, 124, 255, 109, 72, 119, 255, 103, 67, 112, 255, 95, 60, 104, 255, 91, 58, 99, 255, 89, 57, 97, 255, 86, 55, 93, 255, 78, 51, 85, 255, 68, 43, 74, 255, 60, 37, 65, 255, 53, 31, 58, 255, 48, 29, 53, 255, 46, 29, 50, 255, 39, 24, 42, 255, 32, 20, 36, 255, 28, 17, 31, 255, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 27, 17, 29, 255, 33, 21, 36, 255, 38, 25, 42, 255, 41, 24, 45, 255, 45, 26, 50, 255, 53, 32, 58, 255, 61, 38, 67, 255, 65, 40, 71, 255, 69, 41, 75, 255, 72, 43, 79, 255, 76, 46, 84, 255, 80, 49, 88, 255, 86, 52, 94, 255, 89, 53, 98, 255, 93, 55, 102, 255, 98, 58, 108, 255, 97, 57, 107, 255, 101, 59, 111, 255, 117, 72, 127, 255, 123, 77, 134, 255, 121, 77, 131, 255, 119, 77, 129, 255, 111, 72, 121, 255, 105, 68, 115, 255, 99, 63, 108, 255, 92, 58, 101, 255, 90, 57, 98, 255, 87, 55, 94, 255, 83, 53, 90, 255, 74, 47, 81, 255, 65, 41, 71, 255, 59, 36, 65, 255, 53, 33, 59, 255, 48, 29, 53, 255, 44, 27, 48, 255, 37, 23, 41, 255, 31, 18, 34, 255, 26, 16, 28, 255, 21, 12, 23, 255, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 20, 13, 22, 255, 26, 17, 28, 255, 32, 21, 35, 255, 39, 26, 42, 255, 42, 27, 46, 255, 44, 26, 49, 255, 51, 31, 56, 255, 58, 36, 64, 255, 63, 39, 69, 255, 68, 41, 75, 255, 73, 44, 80, 255, 76, 47, 84, 255, 79, 48, 87, 255, 85, 52, 94, 255, 90, 55, 99, 255, 96, 58, 105, 255, 102, 62, 112, 255, 102, 61, 112, 255, 100, 59, 110, 255, 107, 64, 117, 255, 120, 74, 130, 255, 128, 81, 139, 255, 123, 78, 134, 255, 122, 78, 133, 255, 114, 73, 124, 255, 105, 66, 115, 255, 101, 64, 110, 255, 95, 60, 104, 255, 90, 56, 98, 255, 87, 55, 95, 255, 85, 54, 92, 255, 79, 49, 85, 255, 70, 44, 77, 255, 63, 39, 69, 255, 58, 36, 64, 255, 53, 33, 58, 255, 47, 29, 52, 255, 41, 25, 45, 255, 35, 21, 39, 255, 29, 17, 31, 255, 24, 14, 26, 255, 20, 11, 21, 255, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 19, 12, 20, 255, 25, 16, 27, 255, 31, 20, 33, 255, 38, 25, 41, 255, 45, 30, 48, 255, 47, 30, 51, 255, 50, 31, 55, 255, 57, 35, 62, 255, 61, 37, 67, 255, 67, 40, 73, 255, 73, 44, 80, 255, 77, 46, 84, 255, 79, 48, 86, 255, 85, 52, 93, 255, 91, 55, 100, 255, 96, 58, 105, 255, 103, 63, 112, 255, 106, 64, 116, 255, 103, 62, 114, 255, 106, 63, 116, 255, 111, 65, 120, 255, 122, 75, 132, 255, 129, 80, 140, 255, 128, 81, 139, 255, 124, 79, 135, 255, 119, 76, 129, 255, 110, 69, 119, 255, 102, 63, 111, 255, 97, 60, 106, 255, 91, 57, 100, 255, 87, 55, 96, 255, 85, 53, 93, 255, 82, 51, 89, 255, 74, 46, 81, 255, 66, 40, 72, 255, 61, 37, 67, 255, 57, 35, 62, 255, 50, 31, 55, 255, 45, 27, 49, 255, 39, 24, 43, 255, 33, 20, 37, 255, 28, 16, 30, 255, 23, 14, 26, 255, 18, 10, 20, 255, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 12, 7, 13, 255, 17, 11, 19, 255, 23, 16, 25, 255, 29, 19, 32, 255, 35, 24, 38, 255, 42, 29, 46, 255, 49, 33, 53, 255, 52, 33, 56, 255, 56, 35, 61, 255, 61, 38, 66, 255, 65, 40, 71, 255, 71, 43, 78, 255, 76, 46, 83, 255, 81, 49, 89, 255, 84, 51, 93, 255, 89, 54, 98, 255, 96, 58, 105, 255, 104, 63, 113, 255, 110, 66, 120, 255, 107, 64, 117, 255, 108, 64, 118, 255, 112, 67, 122, 255, 115, 68, 126, 255, 122, 73, 137, 255, 127, 76, 141, 255, 130, 81, 140, 255, 126, 79, 136, 255, 122, 76, 132, 255, 116, 73, 126, 255, 108, 66, 116, 255, 101, 62, 110, 255, 95, 59, 104, 255, 90, 56, 98, 255, 85, 53, 93, 255, 82, 51, 90, 255, 77, 48, 84, 255, 70, 44, 77, 255, 65, 40, 71, 255, 60, 36, 65, 255, 55, 33, 60, 255, 48, 29, 53, 255, 42, 25, 46, 255, 37, 22, 41, 255, 32, 19, 35, 255, 27, 16, 29, 255, 21, 13, 24, 255, 16, 9, 17, 255, 10, 6, 11, 255, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 10, 6, 11, 255, 16, 10, 17, 255, 22, 15, 23, 255, 28, 19, 30, 255, 33, 23, 36, 255, 40, 27, 43, 255, 46, 30, 50, 255, 53, 35, 58, 255, 57, 36, 62, 255, 61, 38, 67, 255, 64, 40, 70, 255, 69, 42, 75, 255, 73, 44, 80, 255, 80, 49, 88, 255, 84, 51, 92, 255, 88, 53, 96, 255, 94, 57, 103, 255, 105, 64, 114, 255, 111, 68, 122, 255, 110, 66, 120, 255, 110, 65, 120, 255, 112, 67, 123, 255, 115, 69, 127, 255, 118, 70, 131, 255, 129, 78, 143, 255, 131, 79, 144, 255, 130, 80, 140, 255, 129, 80, 139, 255, 123, 77, 133, 255, 121, 75, 130, 255, 112, 68, 120, 255, 107, 65, 116, 255, 101, 62, 110, 255, 94, 58, 102, 255, 89, 55, 97, 255, 83, 52, 91, 255, 79, 49, 86, 255, 73, 45, 80, 255, 69, 42, 75, 255, 64, 39, 70, 255, 59, 35, 64, 255, 52, 32, 57, 255, 47, 28, 51, 255, 41, 24, 45, 255, 35, 21, 38, 255, 29, 17, 32, 255, 24, 14, 26, 255, 19, 11, 21, 255, 14, 8, 15, 255, 9, 5, 10, 255, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 8, 5, 9, 255, 14, 9, 15, 255, 20, 14, 22, 255, 26, 18, 28, 255, 32, 22, 35, 255, 38, 26, 41, 255, 44, 29, 47, 255, 50, 33, 54, 255, 58, 37, 62, 255, 62, 39, 67, 255, 65, 41, 71, 255, 67, 42, 74, 255, 72, 44, 79, 255, 77, 47, 84, 255, 81, 50, 89, 255, 88, 54, 96, 255, 93, 56, 102, 255, 103, 64, 113, 255, 113, 70, 123, 255, 113, 69, 123, 255, 111, 67, 122, 255, 113, 67, 123, 255, 116, 68, 126, 255, 118, 71, 131, 255, 124, 75, 137, 255, 136, 82, 148, 255, 137, 83, 149, 255, 133, 80, 142, 255, 132, 82, 142, 255, 123, 76, 134, 255, 121, 74, 130, 255, 116, 71, 125, 255, 110, 66, 119, 255, 108, 65, 118, 255, 99, 61, 109, 255, 93, 58, 102, 255, 88, 55, 96, 255, 81, 50, 89, 255, 77, 48, 84, 255, 72, 44, 79, 255, 68, 41, 74, 255, 63, 38, 69, 255, 55, 33, 61, 255, 50, 30, 55, 255, 45, 27, 49, 255, 40, 24, 44, 255, 33, 19, 36, 255, 26, 15, 28, 255, 21, 12, 23, 255, 17, 10, 19, 255, 12, 7, 13, 255, 8, 5, 9, 255, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 12, 7, 13, 255, 18, 12, 19, 255, 24, 16, 26, 255, 31, 21, 33, 255, 37, 26, 40, 255, 43, 30, 47, 255, 49, 32, 53, 255, 56, 35, 60, 255, 61, 39, 66, 255, 65, 41, 70, 255, 68, 42, 74, 255, 71, 44, 78, 255, 74, 46, 82, 255, 78, 48, 86, 255, 84, 52, 92, 255, 92, 56, 101, 255, 103, 63, 112, 255, 110, 68, 120, 255, 115, 71, 125, 255, 114, 69, 125, 255, 115, 69, 126, 255, 117, 69, 127, 255, 119, 71, 130, 255, 122, 73, 134, 255, 129, 78, 141, 255, 138, 83, 151, 255, 137, 82, 150, 255, 133, 81, 143, 255, 132, 80, 141, 255, 127, 77, 136, 255, 123, 75, 132, 255, 118, 72, 127, 255, 113, 69, 122, 255, 109, 66, 119, 255, 105, 63, 114, 255, 96, 58, 105, 255, 88, 54, 97, 255, 83, 52, 91, 255, 78, 49, 86, 255, 74, 45, 81, 255, 71, 43, 78, 255, 66, 39, 72, 255, 59, 36, 65, 255, 52, 32, 57, 255, 47, 28, 51, 255, 43, 26, 47, 255, 39, 23, 43, 255, 32, 18, 35, 255, 24, 14, 27, 255, 19, 11, 21, 255, 15, 9, 17, 255, 11, 7, 12, 255, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 15, 10, 17, 255, 22, 14, 24, 255, 28, 19, 30, 255, 35, 24, 38, 255, 41, 28, 45, 255, 48, 32, 51, 255, 54, 35, 58, 255, 58, 37, 63, 255, 62, 39, 68, 255, 66, 41, 72, 255, 69, 43, 75, 255, 72, 45, 79, 255, 76, 48, 84, 255, 80, 49, 88, 255, 92, 56, 100, 255, 103, 63, 112, 255, 109, 67, 118, 255, 114, 71, 125, 255, 118, 73, 128, 255, 118, 72, 129, 255, 120, 72, 131, 255, 119, 70, 129, 255, 121, 72, 132, 255, 127, 76, 138, 255, 134, 81, 143, 255, 143, 86, 155, 255, 142, 86, 155, 255, 133, 81, 146, 255, 132, 80, 142, 255, 128, 77, 137, 255, 123, 74, 132, 255, 122, 74, 131, 255, 117, 71, 126, 255, 111, 67, 121, 255, 109, 66, 120, 255, 102, 61, 111, 255, 88, 53, 97, 255, 84, 51, 93, 255, 78, 48, 86, 255, 76, 47, 84, 255, 73, 45, 80, 255, 70, 43, 76, 255, 63, 38, 69, 255, 56, 34, 61, 255, 50, 31, 55, 255, 45, 27, 49, 255, 40, 24, 44, 255, 36, 21, 40, 255, 30, 17, 33, 255, 23, 13, 25, 255, 18, 10, 19, 255, 14, 8, 15, 255, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 19, 12, 21, 255, 25, 16, 28, 255, 31, 21, 34, 255, 39, 26, 42, 255, 45, 31, 49, 255, 51, 34, 55, 255, 55, 35, 60, 255, 60, 37, 65, 255, 64, 40, 69, 255, 67, 42, 73, 255, 72, 45, 79, 255, 74, 46, 82, 255, 78, 48, 85, 255, 91, 55, 99, 255, 101, 62, 110, 255, 109, 67, 118, 255, 114, 71, 124, 255, 118, 73, 129, 255, 122, 75, 132, 255, 122, 74, 133, 255, 122, 73, 133, 255, 123, 73, 133, 255, 124, 75, 135, 255, 133, 81, 143, 255, 134, 82, 144, 255, 146, 90, 160, 255, 145, 90, 160, 255, 138, 84, 152, 255, 132, 81, 146, 255, 124, 76, 135, 255, 123, 74, 132, 255, 122, 73, 130, 255, 118, 71, 128, 255, 114, 69, 125, 255, 111, 67, 121, 255, 107, 65, 117, 255, 95, 57, 104, 255, 89, 53, 97, 255, 85, 51, 93, 255, 78, 48, 86, 255, 76, 47, 84, 255, 72, 44, 79, 255, 67, 41, 74, 255, 60, 37, 66, 255, 54, 33, 59, 255, 48, 29, 53, 255, 43, 26, 48, 255, 37, 22, 41, 255, 32, 19, 36, 255, 27, 16, 30, 255, 22, 13, 24, 255, 17, 10, 19, 255, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 23, 15, 25, 255, 29, 19, 32, 255, 35, 23, 38, 255, 42, 28, 46, 255, 48, 31, 52, 255, 52, 33, 57, 255, 57, 36, 62, 255, 61, 38, 67, 255, 65, 40, 71, 255, 71, 44, 78, 255, 75, 46, 82, 255, 76, 46, 84, 255, 87, 52, 94, 255, 97, 60, 106, 255, 106, 65, 115, 255, 113, 70, 123, 255, 118, 73, 129, 255, 122, 75, 133, 255, 123, 76, 134, 255, 124, 75, 135, 255, 127, 76, 137, 255, 125, 75, 135, 255, 131, 80, 141, 255, 133, 81, 143, 255, 133, 81, 144, 255, 142, 84, 155, 255, 140, 84, 154, 255, 140, 85, 154, 255, 140, 85, 154, 255, 125, 77, 138, 255, 122, 74, 133, 255, 121, 73, 131, 255, 120, 72, 130, 255, 117, 71, 129, 255, 112, 68, 124, 255, 109, 66, 120, 255, 102, 61, 111, 255, 94, 56, 103, 255, 92, 55, 100, 255, 88, 54, 96, 255, 82, 50, 90, 255, 75, 46, 82, 255, 71, 43, 78, 255, 65, 39, 71, 255, 59, 36, 65, 255, 53, 32, 58, 255, 47, 28, 52, 255, 41, 25, 46, 255, 35, 20, 39, 255, 29, 17, 33, 255, 25, 15, 28, 255, 21, 13, 23, 255, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 27, 18, 30, 255, 33, 22, 36, 255, 40, 26, 43, 255, 46, 30, 50, 255, 51, 33, 55, 255, 55, 35, 60, 255, 59, 37, 65, 255, 63, 39, 69, 255, 69, 43, 76, 255, 74, 46, 81, 255, 74, 45, 82, 255, 82, 49, 90, 255, 93, 56, 101, 255, 103, 63, 111, 255, 110, 68, 120, 255, 117, 72, 127, 255, 120, 74, 131, 255, 121, 73, 131, 255, 124, 76, 135, 255, 129, 79, 139, 255, 131, 80, 139, 255, 130, 80, 140, 255, 133, 81, 143, 255, 133, 80, 144, 255, 135, 83, 146, 255, 143, 90, 156, 255, 143, 89, 157, 255, 138, 84, 151, 255, 139, 85, 153, 255, 133, 81, 146, 255, 121, 75, 134, 255, 122, 75, 134, 255, 120, 73, 131, 255, 120, 72, 131, 255, 119, 72, 130, 255, 112, 68, 123, 255, 107, 65, 117, 255, 97, 58, 107, 255, 97, 59, 106, 255, 94, 57, 102, 255, 91, 56, 99, 255, 84, 51, 91, 255, 74, 45, 81, 255, 68, 41, 75, 255, 63, 38, 70, 255, 57, 35, 63, 255, 51, 31, 56, 255, 46, 28, 51, 255, 39, 23, 43, 255, 33, 19, 36, 255, 28, 17, 31, 255, 25, 15, 27, 255, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 31, 20, 34, 255, 38, 25, 41, 255, 44, 29, 48, 255, 50, 33, 54, 255, 55, 35, 60, 255, 59, 37, 64, 255, 62, 39, 68, 255, 67, 42, 74, 255, 73, 45, 80, 255, 75, 45, 83, 255, 78, 47, 86, 255, 88, 53, 96, 255, 97, 59, 105, 255, 105, 64, 114, 255, 112, 69, 123, 255, 118, 72, 128, 255, 117, 71, 127, 255, 121, 74, 131, 255, 130, 81, 140, 255, 133, 82, 142, 255, 134, 82, 142, 255, 135, 82, 144, 255, 134, 82, 144, 255, 133, 82, 144, 255, 134, 83, 146, 255, 145, 91, 159, 255, 144, 90, 158, 255, 133, 82, 147, 255, 137, 84, 150, 255, 134, 81, 147, 255, 125, 77, 138, 255, 121, 75, 134, 255, 122, 75, 133, 255, 119, 74, 130, 255, 122, 74, 133, 255, 117, 70, 128, 255, 112, 68, 122, 255, 100, 60, 110, 255, 95, 57, 105, 255, 99, 60, 107, 255, 96, 59, 104, 255, 91, 56, 99, 255, 84, 52, 91, 255, 75, 46, 82, 255, 68, 41, 74, 255, 62, 37, 68, 255, 55, 33, 60, 255, 48, 29, 53, 255, 43, 26, 48, 255, 36, 21, 39, 255, 31, 18, 34, 255, 28, 17, 31, 255, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 36, 23, 39, 255, 42, 28, 46, 255, 48, 32, 52, 255, 54, 36, 59, 255, 58, 37, 64, 255, 61, 38, 66, 255, 66, 41, 72, 255, 73, 45, 80, 255, 78, 47, 85, 255, 81, 48, 89, 255, 83, 50, 91, 255, 90, 54, 98, 255, 96, 58, 106, 255, 106, 65, 116, 255, 112, 68, 122, 255, 117, 71, 128, 255, 119, 73, 129, 255, 125, 79, 136, 255, 131, 83, 143, 255, 136, 84, 145, 255, 137, 83, 145, 255, 134, 82, 144, 255, 133, 82, 144, 255, 138, 85, 149, 255, 138, 85, 150, 255, 136, 87, 151, 255, 132, 84, 147, 255, 138, 85, 152, 255, 137, 84, 150, 255, 134, 82, 147, 255, 130, 80, 143, 255, 123, 76, 136, 255, 123, 76, 135, 255, 123, 77, 134, 255, 118, 74, 129, 255, 119, 73, 130, 255, 114, 69, 125, 255, 107, 65, 117, 255, 95, 57, 106, 255, 100, 61, 109, 255, 100, 61, 109, 255, 96, 60, 105, 255, 90, 55, 98, 255, 83, 51, 90, 255, 76, 47, 82, 255, 68, 41, 74, 255, 60, 36, 66, 255, 53, 32, 58, 255, 44, 26, 49, 255, 38, 22, 43, 255, 34, 20, 37, 255, 31, 19, 34, 255, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 40, 26, 43, 255, 46, 30, 50, 255, 52, 34, 57, 255, 57, 37, 62, 255, 59, 37, 65, 255, 64, 40, 70, 255, 72, 44, 79, 255, 78, 47, 85, 255, 84, 51, 91, 255, 87, 52, 95, 255, 89, 53, 97, 255, 88, 53, 97, 255, 99, 60, 109, 255, 107, 64, 117, 255, 114, 70, 125, 255, 118, 74, 129, 255, 121, 76, 132, 255, 128, 81, 139, 255, 136, 86, 147, 255, 136, 84, 146, 255, 135, 83, 144, 255, 133, 82, 144, 255, 139, 86, 150, 255, 143, 87, 153, 255, 153, 98, 169, 255, 219, 159, 236, 255, 229, 167, 245, 255, 176, 115, 191, 255, 138, 85, 152, 255, 136, 83, 150, 255, 134, 82, 148, 255, 132, 80, 145, 255, 125, 78, 137, 255, 125, 78, 136, 255, 123, 77, 134, 255, 118, 74, 128, 255, 117, 72, 128, 255, 110, 67, 120, 255, 105, 63, 115, 255, 101, 61, 111, 255, 102, 63, 112, 255, 100, 62, 109, 255, 95, 59, 103, 255, 88, 54, 95, 255, 82, 51, 89, 255, 75, 46, 82, 255, 66, 40, 72, 255, 59, 36, 64, 255, 50, 30, 55, 255, 42, 24, 46, 255, 37, 22, 41, 255, 34, 20, 37, 255, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 43, 27, 47, 255, 49, 32, 54, 255, 56, 37, 61, 255, 59, 38, 65, 255, 64, 40, 69, 255, 70, 42, 75, 255, 75, 45, 82, 255, 81, 49, 89, 255, 87, 53, 96, 255, 91, 55, 99, 255, 94, 57, 103, 255, 96, 58, 105, 255, 105, 64, 115, 255, 110, 68, 120, 255, 114, 72, 124, 255, 119, 76, 130, 255, 125, 79, 136, 255, 130, 82, 142, 255, 134, 85, 146, 255, 134, 84, 145, 255, 135, 83, 145, 255, 139, 85, 149, 255, 141, 86, 156, 255, 175, 117, 191, 255, 162, 105, 178, 255, 166, 106, 182, 255, 168, 108, 184, 255, 178, 117, 193, 255, 198, 136, 214, 255, 150, 92, 161, 255, 137, 83, 150, 255, 138, 84, 150, 255, 133, 81, 145, 255, 126, 78, 137, 255, 125, 79, 136, 255, 123, 77, 133, 255, 119, 74, 130, 255, 113, 70, 123, 255, 109, 67, 119, 255, 105, 64, 115, 255, 103, 62, 112, 255, 103, 63, 112, 255, 99, 61, 108, 255, 92, 57, 101, 255, 85, 53, 93, 255, 79, 48, 86, 255, 72, 44, 79, 255, 64, 38, 69, 255, 56, 34, 62, 255, 47, 27, 51, 255, 40, 23, 45, 255, 38, 23, 41, 255, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 46, 29, 50, 255, 54, 35, 59, 255, 60, 39, 65, 255, 64, 40, 70, 255, 69, 43, 74, 255, 73, 44, 79, 255, 77, 46, 84, 255, 84, 50, 92, 255, 88, 53, 97, 255, 95, 57, 104, 255, 99, 60, 109, 255, 103, 63, 112, 255, 106, 66, 116, 255, 109, 69, 119, 255, 117, 74, 127, 255, 128, 82, 138, 255, 126, 79, 138, 255, 130, 83, 142, 255, 134, 85, 147, 255, 136, 84, 147, 255, 139, 85, 149, 255, 152, 93, 167, 255, 185, 122, 201, 255, 160, 98, 175, 255, 157, 98, 173, 255, 157, 98, 173, 255, 157, 98, 173, 255, 152, 94, 168, 255, 156, 96, 171, 255, 189, 124, 200, 255, 156, 95, 167, 255, 139, 84, 152, 255, 136, 83, 149, 255, 131, 81, 142, 255, 126, 78, 136, 255, 122, 76, 133, 255, 115, 71, 125, 255, 113, 70, 123, 255, 110, 68, 119, 255, 107, 66, 117, 255, 105, 64, 114, 255, 102, 63, 112, 255, 101, 62, 110, 255, 96, 59, 105, 255, 89, 55, 97, 255, 81, 50, 88, 255, 74, 45, 80, 255, 66, 40, 72, 255, 59, 35, 64, 255, 51, 30, 56, 255, 44, 26, 49, 255, 40, 24, 44, 255, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 50, 32, 55, 255, 58, 37, 63, 255, 64, 41, 69, 255, 69, 43, 74, 255, 73, 45, 79, 255, 77, 47, 83, 255, 81, 49, 89, 255, 87, 52, 95, 255, 93, 56, 102, 255, 98, 60, 108, 255, 100, 61, 109, 255, 104, 64, 113, 255, 109, 68, 118, 255, 112, 71, 122, 255, 122, 78, 133, 255, 127, 81, 138, 255, 128, 81, 140, 255, 133, 84, 146, 255, 132, 84, 145, 255, 143, 88, 157, 255, 172, 106, 187, 255, 172, 107, 187, 255, 165, 100, 180, 255, 164, 99, 179, 255, 159, 96, 174, 255, 158, 98, 173, 255, 152, 94, 167, 255, 141, 84, 156, 255, 143, 85, 157, 255, 152, 91, 164, 255, 167, 103, 177, 255, 170, 105, 179, 255, 143, 89, 153, 255, 134, 84, 147, 255, 128, 79, 139, 255, 121, 73, 130, 255, 116, 71, 125, 255, 111, 68, 120, 255, 111, 68, 120, 255, 108, 68, 118, 255, 104, 66, 114, 255, 104, 64, 114, 255, 100, 61, 109, 255, 97, 59, 105, 255, 93, 57, 101, 255, 85, 52, 92, 255, 75, 46, 82, 255, 68, 41, 75, 255, 61, 36, 67, 255, 54, 32, 59, 255, 48, 28, 53, 255, 43, 25, 47, 255, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 55, 34, 59, 255, 62, 39, 67, 255, 67, 42, 72, 255, 72, 45, 77, 255, 75, 46, 81, 255, 80, 49, 86, 255, 85, 51, 92, 255, 91, 55, 100, 255, 98, 59, 108, 255, 101, 62, 110, 255, 105, 65, 114, 255, 106, 65, 115, 255, 109, 68, 119, 255, 113, 71, 124, 255, 122, 78, 133, 255, 128, 82, 139, 255, 134, 85, 146, 255, 132, 84, 145, 255, 152, 94, 167, 255, 175, 109, 191, 255, 163, 98, 178, 255, 161, 97, 176, 255, 163, 98, 178, 255, 160, 97, 176, 255, 161, 97, 176, 255, 152, 91, 167, 255, 138, 81, 154, 255, 142, 83, 155, 255, 148, 88, 160, 255, 155, 93, 166, 255, 152, 91, 164, 255, 157, 94, 168, 255, 161, 103, 176, 255, 150, 95, 163, 255, 132, 83, 144, 255, 123, 75, 133, 255, 115, 69, 123, 255, 114, 69, 123, 255, 110, 68, 119, 255, 109, 69, 119, 255, 107, 68, 117, 255, 105, 66, 114, 255, 101, 63, 110, 255, 95, 58, 103, 255, 94, 57, 102, 255, 88, 54, 96, 255, 80, 48, 87, 255, 72, 43, 78, 255, 65, 39, 71, 255, 58, 34, 63, 255, 52, 31, 57, 255, 47, 28, 51, 255, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 58, 36, 63, 255, 65, 41, 70, 255, 70, 43, 75, 255, 73, 45, 79, 255, 78, 48, 84, 255, 83, 50, 89, 255, 86, 52, 94, 255, 94, 57, 103, 255, 97, 60, 106, 255, 102, 64, 111, 255, 103, 64, 112, 255, 104, 64, 112, 255, 110, 68, 119, 255, 115, 73, 125, 255, 125, 80, 137, 255, 135, 87, 147, 255, 137, 87, 150, 255, 160, 98, 176, 255, 168, 103, 184, 255, 159, 96, 175, 255, 154, 91, 170, 255, 158, 94, 173, 255, 164, 98, 179, 255, 164, 99, 180, 255, 149, 88, 165, 255, 138, 80, 154, 255, 143, 84, 159, 255, 150, 89, 165, 255, 152, 91, 164, 255, 146, 86, 158, 255, 142, 85, 156, 255, 141, 86, 156, 255, 147, 91, 162, 255, 159, 101, 174, 255, 148, 93, 162, 255, 128, 79, 138, 255, 118, 71, 126, 255, 114, 68, 122, 255, 114, 69, 123, 255, 110, 69, 120, 255, 111, 71, 121, 255, 110, 70, 119, 255, 103, 65, 112, 255, 99, 62, 107, 255, 95, 58, 103, 255, 90, 55, 98, 255, 83, 50, 91, 255, 76, 45, 82, 255, 68, 40, 75, 255, 63, 38, 69, 255, 56, 33, 61, 255, 52, 31, 57, 255, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 63, 40, 69, 255, 68, 43, 74, 255, 72, 45, 78, 255, 76, 46, 81, 255, 80, 48, 86, 255, 84, 50, 90, 255, 88, 54, 96, 255, 92, 58, 101, 255, 99, 62, 107, 255, 103, 64, 112, 255, 103, 63, 111, 255, 107, 65, 115, 255, 113, 69, 122, 255, 119, 76, 129, 255, 132, 85, 144, 255, 151, 97, 166, 255, 170, 107, 187, 255, 163, 100, 179, 255, 160, 97, 175, 255, 151, 89, 166, 255, 147, 86, 162, 255, 157, 95, 172, 255, 162, 97, 177, 255, 162, 97, 177, 255, 145, 85, 160, 255, 140, 81, 156, 255, 151, 89, 166, 255, 156, 93, 172, 255, 153, 91, 169, 255, 138, 82, 152, 255, 133, 81, 148, 255, 137, 84, 152, 255, 140, 86, 154, 255, 138, 85, 152, 255, 139, 87, 154, 255, 149, 93, 160, 255, 136, 84, 145, 255, 116, 70, 124, 255, 114, 69, 123, 255, 112, 71, 122, 255, 112, 71, 122, 255, 114, 73, 124, 255, 109, 69, 118, 255, 101, 64, 110, 255, 100, 63, 108, 255, 94, 58, 102, 255, 86, 52, 94, 255, 79, 47, 86, 255, 72, 43, 79, 255, 66, 39, 72, 255, 60, 36, 66, 255, 55, 32, 59, 255, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 65, 41, 70, 255, 71, 44, 76, 255, 76, 47, 82, 255, 78, 47, 83, 255, 81, 48, 87, 255, 85, 52, 93, 255, 90, 56, 98, 255, 97, 61, 106, 255, 103, 65, 113, 255, 103, 64, 112, 255, 105, 63, 112, 255, 109, 66, 117, 255, 114, 70, 123, 255, 125, 79, 135, 255, 155, 99, 170, 255, 164, 104, 181, 255, 155, 96, 173, 255, 152, 91, 168, 255, 144, 85, 159, 255, 148, 88, 163, 255, 157, 95, 172, 255, 159, 96, 174, 255, 158, 95, 173, 255, 150, 87, 165, 255, 146, 85, 161, 255, 149, 88, 164, 255, 159, 95, 174, 255, 155, 92, 170, 255, 139, 81, 154, 255, 139, 81, 154, 255, 142, 84, 156, 255, 135, 82, 149, 255, 132, 80, 146, 255, 127, 77, 142, 255, 133, 80, 145, 255, 142, 86, 152, 255, 143, 87, 153, 255, 133, 80, 145, 255, 114, 68, 122, 255, 115, 72, 125, 255, 115, 73, 125, 255, 114, 73, 125, 255, 110, 70, 120, 255, 105, 67, 114, 255, 102, 65, 111, 255, 99, 62, 106, 255, 91, 55, 98, 255, 83, 49, 90, 255, 74, 44, 81, 255, 69, 41, 76, 255, 64, 38, 70, 255, 58, 35, 64, 255, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 67, 40, 71, 255, 73, 45, 79, 255, 78, 47, 83, 255, 79, 48, 85, 255, 83, 50, 90, 255, 87, 54, 96, 255, 93, 58, 101, 255, 99, 62, 108, 255, 103, 64, 112, 255, 103, 62, 110, 255, 104, 62, 111, 255, 110, 66, 117, 255, 117, 73, 130, 255, 157, 100, 173, 255, 157, 99, 174, 255, 150, 91, 167, 255, 148, 89, 166, 255, 142, 84, 162, 255, 152, 93, 169, 255, 161, 99, 176, 255, 160, 98, 175, 255, 158, 95, 172, 255, 152, 89, 166, 255, 149, 87, 163, 255, 154, 91, 168, 255, 157, 94, 172, 255, 152, 90, 166, 255, 138, 80, 152, 255, 141, 83, 155, 255, 144, 85, 159, 255, 139, 81, 153, 255, 137, 80, 151, 255, 129, 77, 143, 255, 128, 75, 142, 255, 132, 77, 145, 255, 132, 77, 145, 255, 135, 80, 146, 255, 135, 80, 146, 255, 134, 79, 145, 255, 132, 84, 144, 255, 120, 77, 131, 255, 119, 76, 129, 255, 111, 71, 121, 255, 106, 67, 116, 255, 106, 67, 114, 255, 102, 64, 109, 255, 96, 58, 101, 255, 86, 52, 92, 255, 78, 46, 85, 255, 72, 43, 79, 255, 67, 40, 74, 255, 61, 37, 68, 255, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 70, 42, 75, 255, 75, 45, 80, 255, 78, 47, 84, 255, 77, 47, 85, 255, 83, 51, 91, 255, 87, 54, 96, 255, 94, 59, 103, 255, 101, 62, 109, 255, 104, 63, 111, 255, 105, 64, 113, 255, 107, 64, 114, 255, 116, 70, 129, 255, 134, 83, 148, 255, 148, 94, 163, 255, 155, 98, 171, 255, 161, 103, 175, 255, 162, 104, 177, 255, 157, 99, 173, 255, 157, 98, 172, 255, 154, 95, 170, 255, 151, 91, 166, 255, 148, 86, 162, 255, 144, 83, 158, 255, 150, 89, 164, 255, 155, 94, 170, 255, 152, 91, 166, 255, 146, 86, 160, 255, 143, 84, 157, 255, 143, 84, 157, 255, 144, 85, 158, 255, 151, 90, 165, 255, 144, 86, 159, 255, 130, 75, 144, 255, 127, 73, 142, 255, 128, 74, 142, 255, 130, 76, 142, 255, 131, 77, 143, 255, 130, 76, 142, 255, 132, 79, 143, 255, 147, 93, 160, 255, 142, 91, 155, 255, 126, 81, 137, 255, 117, 75, 128, 255, 110, 70, 120, 255, 105, 67, 115, 255, 103, 65, 111, 255, 98, 60, 104, 255, 90, 55, 96, 255, 80, 49, 87, 255, 76, 46, 83, 255, 72, 43, 78, 255, 67, 40, 73, 255, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 73, 44, 78, 255, 77, 47, 84, 255, 79, 49, 88, 255, 82, 50, 90, 255, 85, 52, 94, 255, 92, 57, 101, 255, 99, 61, 108, 255, 105, 65, 114, 255, 108, 67, 117, 255, 110, 67, 121, 255, 124, 76, 137, 255, 127, 78, 141, 255, 136, 87, 150, 255, 141, 91, 155, 255, 145, 94, 159, 255, 153, 98, 167, 255, 156, 99, 171, 255, 154, 97, 169, 255, 152, 94, 168, 255, 147, 90, 165, 255, 144, 89, 163, 255, 143, 86, 160, 255, 150, 89, 164, 255, 151, 91, 165, 255, 148, 89, 161, 255, 141, 83, 155, 255, 138, 80, 152, 255, 140, 82, 154, 255, 144, 85, 158, 255, 151, 91, 165, 255, 142, 84, 156, 255, 136, 81, 150, 255, 134, 79, 149, 255, 135, 80, 149, 255, 139, 84, 152, 255, 133, 80, 144, 255, 130, 77, 140, 255, 125, 72, 133, 255, 127, 75, 136, 255, 135, 82, 145, 255, 139, 87, 150, 255, 138, 87, 149, 255, 118, 73, 130, 255, 112, 71, 122, 255, 108, 68, 118, 255, 103, 65, 112, 255, 99, 61, 106, 255, 94, 57, 100, 255, 86, 53, 92, 255, 81, 50, 87, 255, 76, 46, 82, 255, 71, 43, 77, 255, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 74, 45, 81, 255, 81, 49, 89, 255, 86, 52, 95, 255, 86, 53, 94, 255, 91, 55, 100, 255, 100, 61, 109, 255, 104, 64, 113, 255, 108, 68, 118, 255, 127, 79, 139, 255, 138, 84, 151, 255, 134, 85, 148, 255, 140, 91, 154, 255, 133, 83, 146, 255, 125, 76, 139, 255, 126, 76, 139, 255, 134, 81, 148, 255, 141, 84, 156, 255, 142, 87, 159, 255, 145, 89, 162, 255, 150, 92, 165, 255, 147, 90, 163, 255, 149, 92, 165, 255, 147, 87, 161, 255, 146, 87, 160, 255, 138, 81, 152, 255, 139, 82, 154, 255, 145, 87, 159, 255, 140, 82, 153, 255, 142, 84, 155, 255, 139, 83, 153, 255, 137, 82, 151, 255, 141, 86, 155, 255, 140, 85, 154, 255, 143, 87, 157, 255, 144, 89, 158, 255, 138, 84, 152, 255, 132, 79, 143, 255, 129, 77, 138, 255, 129, 77, 138, 255, 126, 74, 135, 255, 124, 73, 133, 255, 131, 80, 143, 255, 130, 78, 147, 255, 120, 73, 133, 255, 107, 68, 117, 255, 104, 65, 113, 255, 99, 61, 106, 255, 94, 58, 101, 255, 89, 54, 96, 255, 83, 51, 90, 255, 79, 48, 85, 255, 74, 45, 80, 255, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 78, 47, 85, 255, 85, 51, 93, 255, 86, 53, 95, 255, 89, 54, 98, 255, 96, 58, 105, 255, 102, 62, 112, 255, 107, 67, 117, 255, 133, 83, 145, 255, 142, 89, 155, 255, 137, 85, 150, 255, 137, 84, 149, 255, 137, 88, 150, 255, 135, 87, 149, 255, 130, 81, 143, 255, 130, 77, 143, 255, 132, 75, 145, 255, 135, 78, 148, 255, 140, 84, 154, 255, 145, 90, 160, 255, 146, 90, 161, 255, 145, 88, 160, 255, 145, 86, 159, 255, 147, 87, 160, 255, 143, 83, 156, 255, 144, 85, 157, 255, 141, 84, 155, 255, 134, 79, 148, 255, 138, 82, 151, 255, 139, 83, 153, 255, 143, 86, 156, 255, 142, 85, 156, 255, 138, 83, 151, 255, 142, 88, 156, 255, 146, 91, 160, 255, 146, 90, 159, 255, 138, 84, 152, 255, 128, 77, 142, 255, 128, 77, 140, 255, 128, 77, 138, 255, 128, 78, 139, 255, 126, 75, 138, 255, 124, 74, 141, 255, 125, 75, 142, 255, 132, 80, 146, 255, 127, 77, 139, 255, 103, 65, 113, 255, 102, 63, 109, 255, 94, 58, 102, 255, 89, 55, 96, 255, 85, 51, 92, 255, 80, 48, 86, 255, 76, 47, 82, 255, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 80, 49, 88, 255, 85, 52, 93, 255, 87, 53, 95, 255, 91, 55, 100, 255, 98, 60, 107, 255, 116, 74, 128, 255, 136, 86, 149, 255, 136, 85, 149, 255, 135, 85, 148, 255, 138, 88, 151, 255, 143, 93, 155, 255, 144, 94, 157, 255, 143, 93, 156, 255, 136, 84, 149, 255, 132, 77, 144, 255, 133, 78, 145, 255, 136, 81, 148, 255, 140, 86, 153, 255, 142, 88, 156, 255, 139, 83, 153, 255, 139, 81, 151, 255, 142, 84, 155, 255, 147, 88, 160, 255, 149, 89, 162, 255, 140, 82, 153, 255, 133, 77, 146, 255, 137, 82, 150, 255, 138, 83, 151, 255, 140, 84, 153, 255, 137, 82, 151, 255, 136, 81, 149, 255, 141, 84, 154, 255, 145, 90, 159, 255, 148, 91, 162, 255, 141, 86, 154, 255, 132, 80, 145, 255, 131, 79, 144, 255, 130, 78, 143, 255, 129, 78, 142, 255, 128, 77, 141, 255, 125, 75, 141, 255, 124, 74, 140, 255, 126, 76, 140, 255, 129, 78, 141, 255, 130, 79, 142, 255, 126, 75, 139, 255, 108, 65, 120, 255, 99, 61, 106, 255, 92, 57, 99, 255, 86, 53, 93, 255, 81, 50, 88, 255, 77, 47, 83, 255, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 81, 49, 88, 255, 83, 51, 92, 255, 90, 55, 98, 255, 94, 57, 103, 255, 119, 76, 133, 255, 136, 88, 149, 255, 134, 87, 147, 255, 134, 86, 147, 255, 136, 88, 148, 255, 139, 90, 151, 255, 145, 98, 157, 255, 150, 103, 162, 255, 149, 102, 162, 255, 144, 94, 156, 255, 135, 82, 147, 255, 136, 84, 149, 255, 137, 85, 150, 255, 140, 87, 153, 255, 141, 87, 154, 255, 135, 82, 148, 255, 136, 81, 149, 255, 140, 83, 153, 255, 141, 84, 154, 255, 137, 80, 150, 255, 137, 82, 150, 255, 141, 87, 154, 255, 135, 84, 148, 255, 131, 79, 144, 255, 132, 79, 145, 255, 133, 79, 146, 255, 135, 81, 148, 255, 142, 88, 155, 255, 145, 92, 158, 255, 142, 89, 155, 255, 138, 85, 151, 255, 133, 81, 146, 255, 128, 77, 141, 255, 128, 77, 140, 255, 128, 75, 137, 255, 129, 75, 138, 255, 127, 76, 139, 255, 122, 73, 137, 255, 125, 75, 138, 255, 126, 76, 138, 255, 126, 77, 138, 255, 125, 75, 136, 255, 127, 77, 139, 255, 118, 73, 129, 255, 97, 60, 104, 255, 91, 56, 98, 255, 84, 52, 91, 255, 80, 49, 86, 255, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 80, 49, 88, 255, 87, 54, 96, 255, 95, 59, 103, 255, 120, 77, 135, 255, 127, 82, 144, 255, 129, 84, 143, 255, 134, 88, 144, 255, 135, 89, 146, 255, 136, 90, 148, 255, 140, 93, 152, 255, 143, 96, 154, 255, 146, 101, 158, 255, 145, 99, 157, 255, 144, 96, 156, 255, 141, 91, 154, 255, 138, 88, 151, 255, 138, 86, 150, 255, 141, 87, 153, 255, 137, 84, 150, 255, 132, 80, 145, 255, 135, 83, 148, 255, 132, 80, 144, 255, 127, 74, 139, 255, 134, 81, 146, 255, 134, 83, 147, 255, 125, 77, 138, 255, 128, 79, 141, 255, 135, 84, 148, 255, 127, 77, 139, 255, 132, 80, 145, 255, 138, 86, 150, 255, 139, 87, 152, 255, 139, 87, 152, 255, 139, 87, 151, 255, 136, 85, 149, 255, 131, 80, 143, 255, 128, 77, 140, 255, 130, 77, 141, 255, 130, 77, 141, 255, 126, 74, 135, 255, 121, 69, 128, 255, 121, 70, 130, 255, 120, 72, 133, 255, 122, 73, 134, 255, 124, 76, 135, 255, 123, 75, 134, 255, 122, 75, 133, 255, 124, 76, 135, 255, 110, 63, 121, 255, 99, 62, 108, 255, 88, 54, 95, 255, 80, 49, 87, 255, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 82, 51, 90, 255, 101, 63, 108, 255, 120, 75, 127, 255, 121, 77, 132, 255, 122, 79, 138, 255, 126, 82, 140, 255, 129, 85, 141, 255, 130, 85, 142, 255, 132, 88, 144, 255, 133, 86, 145, 255, 135, 88, 146, 255, 136, 89, 148, 255, 139, 92, 150, 255, 139, 92, 151, 255, 143, 98, 156, 255, 141, 92, 153, 255, 140, 89, 152, 255, 138, 86, 151, 255, 136, 84, 148, 255, 133, 82, 145, 255, 127, 77, 140, 255, 124, 75, 136, 255, 127, 80, 139, 255, 125, 78, 137, 255, 118, 72, 130, 255, 127, 79, 140, 255, 127, 79, 140, 255, 118, 72, 130, 255, 127, 78, 138, 255, 136, 84, 147, 255, 137, 85, 149, 255, 136, 85, 148, 255, 136, 85, 148, 255, 136, 85, 148, 255, 135, 84, 146, 255, 134, 82, 144, 255, 132, 80, 142, 255, 130, 78, 142, 255, 127, 76, 138, 255, 125, 74, 134, 255, 123, 73, 133, 255, 119, 71, 129, 255, 111, 66, 122, 255, 120, 73, 131, 255, 122, 76, 133, 255, 118, 70, 128, 255, 116, 69, 127, 255, 114, 67, 125, 255, 113, 69, 124, 255, 111, 70, 122, 255, 95, 60, 105, 255, 82, 51, 90, 255, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 102, 62, 108, 255, 116, 73, 124, 255, 116, 73, 124, 255, 119, 76, 127, 255, 123, 80, 133, 255, 127, 83, 136, 255, 130, 86, 138, 255, 130, 88, 141, 255, 133, 92, 143, 255, 134, 93, 145, 255, 134, 92, 145, 255, 134, 91, 145, 255, 135, 89, 146, 255, 134, 87, 146, 255, 136, 88, 147, 255, 139, 90, 150, 255, 138, 89, 149, 255, 136, 88, 148, 255, 133, 84, 145, 255, 129, 79, 141, 255, 123, 76, 134, 255, 121, 76, 131, 255, 117, 72, 126, 255, 119, 74, 130, 255, 122, 77, 134, 255, 112, 69, 123, 255, 112, 68, 123, 255, 127, 78, 138, 255, 133, 82, 144, 255, 136, 84, 148, 255, 136, 84, 148, 255, 134, 84, 146, 255, 134, 84, 145, 255, 133, 83, 145, 255, 131, 80, 142, 255, 132, 81, 143, 255, 130, 80, 141, 255, 125, 75, 134, 255, 124, 74, 134, 255, 125, 75, 136, 255, 122, 74, 132, 255, 117, 71, 127, 255, 117, 72, 127, 255, 118, 73, 129, 255, 116, 71, 126, 255, 114, 68, 125, 255, 111, 66, 121, 255, 108, 67, 118, 255, 106, 67, 116, 255, 101, 63, 111, 255, 109, 69, 120, 255, 90, 57, 100, 255, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 111, 69, 118, 255, 113, 71, 120, 255, 117, 75, 126, 255, 121, 79, 130, 255, 126, 83, 136, 255, 126, 85, 137, 255, 127, 87, 138, 255, 129, 90, 140, 255, 130, 91, 141, 255, 131, 92, 142, 255, 132, 92, 143, 255, 135, 91, 144, 255, 135, 89, 145, 255, 133, 87, 144, 255, 131, 85, 143, 255, 130, 83, 141, 255, 127, 80, 138, 255, 125, 78, 136, 255, 122, 76, 133, 255, 118, 74, 129, 255, 116, 72, 126, 255, 118, 74, 129, 255, 117, 73, 127, 255, 108, 66, 115, 255, 111, 67, 118, 255, 120, 73, 128, 255, 124, 76, 133, 255, 128, 78, 138, 255, 130, 80, 141, 255, 132, 82, 144, 255, 132, 81, 143, 255, 131, 81, 143, 255, 131, 81, 143, 255, 130, 80, 141, 255, 126, 77, 136, 255, 124, 75, 133, 255, 122, 74, 131, 255, 124, 76, 133, 255, 124, 77, 133, 255, 121, 75, 131, 255, 117, 72, 127, 255, 115, 71, 124, 255, 114, 70, 123, 255, 112, 69, 122, 255, 108, 68, 118, 255, 104, 66, 114, 255, 103, 65, 113, 255, 104, 66, 114, 255, 106, 67, 116, 255, 97, 61, 107, 255, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 64, 40, 70, 255, 110, 69, 117, 255, 113, 73, 123, 255, 120, 79, 130, 255, 121, 80, 131, 255, 122, 81, 132, 255, 124, 86, 134, 255, 126, 86, 136, 255, 127, 86, 136, 255, 131, 89, 138, 255, 133, 89, 139, 255, 130, 85, 137, 255, 126, 81, 136, 255, 123, 78, 134, 255, 121, 76, 132, 255, 120, 75, 131, 255, 118, 73, 127, 255, 115, 71, 123, 255, 115, 71, 124, 255, 116, 73, 127, 255, 114, 71, 124, 255, 107, 65, 116, 255, 105, 63, 115, 255, 111, 66, 120, 255, 119, 72, 126, 255, 121, 73, 128, 255, 121, 74, 129, 255, 123, 76, 132, 255, 124, 76, 135, 255, 126, 78, 137, 255, 126, 78, 137, 255, 126, 78, 137, 255, 122, 74, 132, 255, 117, 70, 125, 255, 115, 68, 121, 255, 118, 72, 125, 255, 121, 75, 129, 255, 118, 73, 126, 255, 118, 73, 126, 255, 114, 71, 123, 255, 112, 69, 121, 255, 110, 68, 119, 255, 105, 66, 115, 255, 101, 64, 111, 255, 100, 64, 110, 255, 103, 65, 113, 255, 105, 65, 114, 255, 61, 36, 67, 255, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 106, 67, 115, 255, 111, 72, 121, 255, 112, 72, 121, 255, 113, 73, 123, 255, 115, 75, 125, 255, 118, 78, 127, 255, 123, 81, 130, 255, 123, 81, 131, 255, 123, 80, 131, 255, 117, 74, 127, 255, 117, 73, 127, 255, 115, 72, 126, 255, 112, 70, 121, 255, 112, 70, 121, 255, 108, 67, 115, 255, 111, 68, 118, 255, 113, 70, 122, 255, 114, 70, 122, 255, 110, 67, 119, 255, 100, 60, 111, 255, 101, 61, 112, 255, 106, 63, 115, 255, 110, 66, 118, 255, 114, 68, 121, 255, 117, 71, 124, 255, 116, 71, 125, 255, 117, 72, 128, 255, 117, 72, 128, 255, 115, 70, 126, 255, 114, 68, 124, 255, 116, 71, 127, 255, 114, 70, 123, 255, 114, 70, 121, 255, 112, 69, 120, 255, 110, 68, 119, 255, 114, 71, 122, 255, 117, 73, 123, 255, 113, 70, 120, 255, 107, 67, 116, 255, 101, 64, 111, 255, 100, 63, 110, 255, 97, 62, 107, 255, 99, 63, 109, 255, 101, 63, 110, 255, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 99, 62, 108, 255, 108, 69, 117, 255, 111, 73, 121, 255, 111, 73, 119, 255, 110, 72, 117, 255, 110, 71, 118, 255, 112, 72, 122, 255, 113, 72, 122, 255, 114, 72, 123, 255, 112, 71, 122, 255, 107, 70, 117, 255, 107, 70, 117, 255, 110, 70, 120, 255, 108, 67, 116, 255, 108, 67, 116, 255, 106, 65, 113, 255, 108, 66, 116, 255, 109, 66, 119, 255, 108, 65, 118, 255, 105, 63, 114, 255, 102, 61, 111, 255, 96, 58, 107, 255, 99, 60, 109, 255, 96, 58, 106, 255, 102, 63, 113, 255, 107, 65, 117, 255, 106, 63, 116, 255, 106, 63, 116, 255, 111, 68, 121, 255, 111, 69, 120, 255, 110, 70, 117, 255, 106, 67, 114, 255, 105, 65, 114, 255, 109, 68, 117, 255, 109, 68, 117, 255, 107, 66, 115, 255, 105, 66, 114, 255, 103, 65, 113, 255, 104, 65, 114, 255, 100, 63, 110, 255, 98, 62, 107, 255, 97, 61, 106, 255, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 0, 0, 0, 255, 102, 65, 108, 255, 106, 70, 114, 255, 109, 72, 117, 255, 110, 74, 119, 255, 110, 73, 118, 255, 111, 72, 119, 255, 111, 72, 120, 255, 111, 73, 120, 255, 110, 72, 120, 255, 106, 69, 116, 255, 100, 65, 110, 255, 101, 64, 110, 255, 104, 64, 112, 255, 107, 66, 116, 255, 108, 66, 118, 255, 108, 66, 117, 255, 108, 66, 118, 255, 107, 65, 117, 255, 108, 65, 115, 255, 107, 65, 115, 255, 104, 64, 114, 255, 96, 59, 107, 255, 91, 56, 101, 255, 100, 62, 111, 255, 105, 64, 115, 255, 108, 66, 118, 255, 103, 64, 112, 255, 100, 63, 109, 255, 100, 63, 109, 255, 105, 67, 112, 255, 110, 70, 116, 255, 104, 65, 112, 255, 98, 61, 107, 255, 98, 62, 108, 255, 101, 64, 111, 255, 102, 64, 112, 255, 97, 62, 107, 255, 94, 59, 103, 255, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 101, 66, 108, 255, 104, 69, 112, 255, 106, 71, 114, 255, 106, 70, 114, 255, 106, 68, 115, 255, 108, 70, 117, 255, 111, 73, 120, 255, 102, 67, 112, 255, 96, 63, 105, 255, 96, 63, 105, 255, 98, 62, 107, 255, 101, 62, 110, 255, 101, 61, 110, 255, 101, 61, 111, 255, 104, 64, 114, 255, 104, 64, 114, 255, 103, 63, 112, 255, 101, 62, 112, 255, 102, 62, 113, 255, 105, 65, 115, 255, 103, 64, 113, 255, 103, 64, 112, 255, 97, 60, 107, 255, 98, 61, 107, 255, 94, 59, 104, 255, 98, 62, 107, 255, 100, 63, 107, 255, 99, 63, 106, 255, 101, 64, 108, 255, 101, 64, 108, 255, 99, 64, 106, 255, 95, 62, 102, 255, 98, 62, 107, 255, 99, 62, 108, 255, 92, 59, 101, 255, 93, 59, 102, 255, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 25, 16, 28, 255, 100, 65, 108, 255, 104, 66, 113, 255, 102, 65, 111, 255, 105, 67, 114, 255, 106, 68, 114, 255, 101, 66, 110, 255, 96, 62, 105, 255, 95, 60, 104, 255, 97, 60, 106, 255, 96, 59, 104, 255, 96, 59, 104, 255, 96, 58, 104, 255, 95, 57, 104, 255, 97, 59, 107, 255, 96, 58, 107, 255, 94, 57, 106, 255, 96, 58, 107, 255, 95, 58, 106, 255, 98, 60, 108, 255, 93, 57, 102, 255, 93, 57, 102, 255, 93, 58, 102, 255, 93, 58, 102, 255, 95, 58, 103, 255, 93, 58, 101, 255, 89, 55, 97, 255, 89, 56, 97, 255, 91, 59, 98, 255, 94, 61, 102, 255, 96, 62, 103, 255, 95, 62, 103, 255, 96, 61, 104, 255, 25, 15, 27, 255, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 93, 59, 102, 255, 96, 61, 105, 255, 100, 64, 109, 255, 102, 65, 110, 255, 101, 65, 110, 255, 99, 64, 108, 255, 99, 63, 107, 255, 99, 63, 108, 255, 98, 62, 106, 255, 95, 59, 103, 255, 95, 59, 103, 255, 94, 59, 103, 255, 93, 57, 102, 255, 94, 57, 103, 255, 96, 58, 105, 255, 96, 58, 105, 255, 96, 58, 105, 255, 95, 58, 104, 255, 94, 58, 102, 255, 95, 58, 104, 255, 92, 57, 101, 255, 84, 53, 93, 255, 80, 52, 88, 255, 82, 52, 90, 255, 85, 53, 93, 255, 84, 53, 90, 255, 83, 54, 89, 255, 86, 56, 92, 255, 89, 58, 96, 255, 94, 61, 102, 255, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 71, 45, 78, 255, 96, 60, 103, 255, 96, 61, 104, 255, 95, 61, 104, 255, 96, 61, 104, 255, 94, 59, 102, 255, 92, 58, 100, 255, 90, 57, 98, 255, 88, 55, 96, 255, 87, 54, 96, 255, 88, 55, 97, 255, 86, 53, 96, 255, 84, 52, 95, 255, 83, 51, 94, 255, 89, 54, 98, 255, 87, 54, 96, 255, 85, 54, 93, 255, 86, 54, 94, 255, 86, 54, 95, 255, 84, 53, 93, 255, 80, 51, 88, 255, 80, 51, 88, 255, 81, 50, 88, 255, 82, 50, 89, 255, 80, 49, 88, 255, 78, 49, 85, 255, 79, 51, 84, 255, 70, 43, 78, 255, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 88, 55, 96, 255, 88, 54, 96, 255, 90, 56, 97, 255, 89, 55, 96, 255, 89, 55, 96, 255, 83, 51, 92, 255, 80, 50, 90, 255, 85, 54, 94, 255, 85, 54, 93, 255, 82, 50, 91, 255, 80, 49, 90, 255, 80, 49, 89, 255, 79, 50, 88, 255, 80, 51, 88, 255, 85, 53, 93, 255, 84, 53, 92, 255, 84, 53, 92, 255, 82, 52, 89, 255, 78, 49, 86, 255, 77, 47, 84, 255, 74, 45, 82, 255, 73, 44, 81, 255, 75, 46, 83, 255, 73, 44, 80, 255, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 87, 56, 94, 255, 85, 54, 93, 255, 86, 54, 93, 255, 85, 53, 93, 255, 83, 51, 91, 255, 82, 50, 90, 255, 78, 49, 87, 255, 76, 47, 85, 255, 75, 46, 85, 255, 75, 46, 85, 255, 76, 47, 84, 255, 76, 47, 84, 255, 77, 48, 84, 255, 79, 49, 86, 255, 78, 49, 85, 255, 76, 48, 83, 255, 77, 48, 84, 255, 76, 46, 83, 255, 71, 43, 78, 255, 70, 42, 77, 255, 72, 43, 79, 255, 70, 42, 77, 255, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 0, 0, 0, 255, 77, 47, 84, 255, 78, 48, 85, 255, 79, 48, 85, 255, 79, 48, 86, 255, 78, 48, 85, 255, 76, 47, 83, 255, 71, 44, 78, 255, 73, 45, 80, 255, 71, 44, 78, 255, 71, 44, 78, 255, 71, 44, 78, 255, 71, 44, 78, 255, 69, 44, 77, 255, 72, 44, 78, 255, 74, 45, 81, 255, 75, 46, 81, 255, 73, 45, 80, 255, 73, 45, 79, 255, 0, 0, 0, 255, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 72, 44, 79, 255, 74, 45, 80, 255, 72, 44, 79, 255, 71, 43, 78, 255, 67, 41, 74, 255, 65, 41, 72, 255, 65, 40, 72, 255, 65, 41, 72, 255, 65, 40, 72, 255, 64, 40, 71, 255, 68, 41, 75, 255, 70, 42, 76, 255, 72, 44, 78, 255, 72, 45, 79, 255, 70, 44, 77, 255, 71, 44, 78, 255, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 30, 18, 33, 255, 66, 41, 73, 255, 66, 41, 73, 255, 68, 42, 77, 255, 68, 42, 77, 255, 68, 42, 77, 255, 65, 40, 72, 255, 63, 39, 69, 255, 64, 39, 71, 255, 66, 40, 72, 255, 68, 42, 74, 255, 66, 40, 73, 255, 65, 39, 71, 255, 30, 19, 33, 255, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 62, 39, 70, 255, 64, 40, 72, 255, 64, 40, 73, 255, 62, 38, 69, 255, 61, 37, 67, 255, 61, 37, 67, 255, 61, 36, 67, 255, 61, 37, 67, 255, 62, 37, 68, 255, 62, 38, 68, 255, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 57, 36, 64, 255, 56, 35, 62, 255, 58, 36, 64, 255, 58, 36, 64, 255, 56, 35, 62, 255, 57, 35, 63, 255, 57, 34, 63, 255, 57, 34, 62, 255, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 0, 0, 0, 255, 51, 32, 57, 255, 50, 30, 55, 255, 54, 33, 59, 255, 54, 33, 59, 255, 0, 0, 0, 255, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 49, 31, 54, 255, 48, 30, 53, 255, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0, 76, 76, 76, 0), "format": "RGBA8", "height": 64, "mipmaps": false, "width": 64 } -[sub_resource type="ImageTexture" id=2] -image = SubResource( 4 ) -size = Vector2( 64, 64 ) +[sub_resource type="ImageTexture" id="2"] +image = SubResource( "Image_jyk8h" ) +size = Vector2(64, 64) -[sub_resource type="BoxShape3D" id=3] -extents = Vector3( 0.5, 0.5, 0.5 ) +[sub_resource type="BoxShape3D" id="3"] [resource] item/0/name = "cube" -item/0/mesh = ExtResource( 1 ) -item/0/mesh_transform = Transform3D( 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0 ) -item/0/shapes = [ SubResource( 3 ), Transform3D( 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0 ) ] -item/0/navmesh_transform = Transform3D( 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0 ) -item/0/preview = SubResource( 2 ) +item/0/mesh = ExtResource( "1" ) +item/0/mesh_transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0) +item/0/shapes = [SubResource( "3" ), Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0)] +item/0/navmesh_transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0) +item/0/preview = SubResource( "2" ) diff --git a/3d/rigidbody_character/default_env.tres b/3d/rigidbody_character/default_env.tres index 9f432d1f..5cd11c4a 100644 --- a/3d/rigidbody_character/default_env.tres +++ b/3d/rigidbody_character/default_env.tres @@ -1,25 +1,23 @@ -[gd_resource type="Environment" load_steps=2 format=2] +[gd_resource type="Environment" load_steps=3 format=3 uid="uid://bupmwdx23k178"] -[sub_resource type="Sky" id=1] -radiance_size = 1 -sky_top_color = Color( 0.219882, 0.193725, 0.366471, 1 ) -sky_horizon_color = Color( 0.342622, 0.0655002, 0.558935, 1 ) -sky_curve = 0.0490365 -ground_bottom_color = Color( 0.0342205, 0.0333383, 0.0322154, 1 ) -ground_horizon_color = Color( 0.148289, 0.138067, 0.125119, 1 ) +[sub_resource type="ProceduralSkyMaterial" id="ProceduralSkyMaterial_fiix7"] +sky_top_color = Color(0.219608, 0.192157, 0.364706, 1) +sky_horizon_color = Color(0.341176, 0.0666667, 0.560784, 1) +ground_bottom_color = Color(0.0352941, 0.0352941, 0.0313726, 1) +ground_horizon_color = Color(0.14902, 0.137255, 0.12549, 1) ground_curve = 0.25 -sun_latitude = 55.0 -sun_longitude = -80.0 -texture_size = 0 + +[sub_resource type="Sky" id="1"] +sky_material = SubResource( "ProceduralSkyMaterial_fiix7" ) +radiance_size = 1 [resource] background_mode = 2 -background_sky = SubResource( 1 ) +sky = SubResource( "1" ) +ambient_light_energy = 5.0 tonemap_mode = 2 tonemap_white = 6.0 -ssao_blur = 1 -glow_levels/7 = true +glow_levels/7 = 1.0 glow_strength = 0.79 glow_bloom = 1.0 glow_blend_mode = 0 -glow_bicubic_upscale = true diff --git a/3d/rigidbody_character/icon.png.import b/3d/rigidbody_character/icon.png.import index 889af9df..7660c11e 100644 --- a/3d/rigidbody_character/icon.png.import +++ b/3d/rigidbody_character/icon.png.import @@ -1,8 +1,9 @@ [remap] importer="texture" -type="StreamTexture2D" -path="res://.godot/imported/icon.png-487276ed1e3a0c39cad0279d744ee560.stex" +type="CompressedTexture2D" +uid="uid://cgp8ucnt18oru" +path="res://.godot/imported/icon.png-487276ed1e3a0c39cad0279d744ee560.ctex" metadata={ "vram_texture": false } @@ -10,26 +11,23 @@ metadata={ [deps] source_file="res://icon.png" -dest_files=["res://.godot/imported/icon.png-487276ed1e3a0c39cad0279d744ee560.stex"] +dest_files=["res://.godot/imported/icon.png-487276ed1e3a0c39cad0279d744ee560.ctex"] [params] compress/mode=0 compress/lossy_quality=0.7 -compress/hdr_mode=0 +compress/hdr_compression=1 compress/bptc_ldr=0 compress/normal_map=0 -flags/repeat=0 -flags/filter=true -flags/mipmaps=false -flags/anisotropic=false -flags/srgb=2 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" process/fix_alpha_border=true process/premult_alpha=false -process/HDR_as_SRGB=false -process/invert_color=false process/normal_map_invert_y=false -stream=false -size_limit=0 -detect_3d=true -svg/scale=1.0 +process/hdr_as_srgb=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/3d/rigidbody_character/level.tscn b/3d/rigidbody_character/level.tscn index d8fa3f59..535d2d76 100644 --- a/3d/rigidbody_character/level.tscn +++ b/3d/rigidbody_character/level.tscn @@ -1,25 +1,25 @@ -[gd_scene load_steps=11 format=2] +[gd_scene load_steps=12 format=3 uid="uid://y0rsox5qdoci"] -[ext_resource path="res://cubelib.tres" type="MeshLibrary" id=1] -[ext_resource path="res://player/cubio.tscn" type="PackedScene" id=2] -[ext_resource path="res://models/cube.mesh" type="ArrayMesh" id=3] -[ext_resource path="res://models/mushroom.glb" type="PackedScene" id=5] -[ext_resource path="res://level.gd" type="Script" id=6] -[ext_resource path="res://cube_rigidbody.tscn" type="PackedScene" id=7] +[ext_resource type="MeshLibrary" uid="uid://dxc3y3vtd7ins" path="res://cubelib.tres" id="1"] +[ext_resource type="PackedScene" uid="uid://cbvuesb1ptdh4" path="res://player/cubio.tscn" id="2"] +[ext_resource type="ArrayMesh" uid="uid://h65pkfq5sgmy" path="res://models/cube.mesh" id="3"] +[ext_resource type="Environment" uid="uid://bupmwdx23k178" path="res://default_env.tres" id="3_scanf"] +[ext_resource type="PackedScene" uid="uid://bonauusmt0ss" path="res://models/mushroom.glb" id="5"] +[ext_resource type="Script" path="res://level.gd" id="6"] +[ext_resource type="PackedScene" path="res://cube_rigidbody.tscn" id="7"] -[sub_resource type="BoxShape3D" id=1] +[sub_resource type="BoxShape3D" id="1"] margin = 0.001 -extents = Vector3(0.5, 0.5, 0.5) -[sub_resource type="Animation" id=2] +[sub_resource type="Animation" id="2"] length = 10.0 -loop = true +loop_mode = 1 tracks/0/type = "value" +tracks/0/imported = false +tracks/0/enabled = true tracks/0/path = NodePath(".:position") tracks/0/interp = 1 tracks/0/loop_wrap = true -tracks/0/imported = false -tracks/0/enabled = true tracks/0/keys = { "times": PackedFloat32Array(0, 1, 4, 6, 9, 10), "transitions": PackedFloat32Array(1, -2, 1, -2, 1, 1), @@ -27,15 +27,15 @@ tracks/0/keys = { "values": [Vector3(0.5, 4.5, -2.5), Vector3(0.5, 4.5, -2.5), Vector3(0.5, 8.5, -2.5), Vector3(0.5, 8.5, -2.5), Vector3(0.5, 4.5, -2.5), Vector3(0.5, 4.5, -2.5)] } -[sub_resource type="Animation" id=3] +[sub_resource type="Animation" id="3"] length = 10.0 -loop = true +loop_mode = 1 tracks/0/type = "value" +tracks/0/imported = false +tracks/0/enabled = true tracks/0/path = NodePath(".:position") tracks/0/interp = 1 tracks/0/loop_wrap = true -tracks/0/imported = false -tracks/0/enabled = true tracks/0/keys = { "times": PackedFloat32Array(0, 2, 4.5, 6, 9), "transitions": PackedFloat32Array(1, -2, 1, -2, 1), @@ -43,16 +43,16 @@ tracks/0/keys = { "values": [Vector3(-3.5, 8.5, 4.5), Vector3(-3.5, 8.5, 4.5), Vector3(3.5, 8.5, 4.5), Vector3(3.5, 8.5, 4.5), Vector3(-3.5, 8.5, 4.5)] } -[sub_resource type="BoxShape3D" id=4] +[sub_resource type="BoxShape3D" id="4"] [node name="World3D" type="Node3D"] -script = ExtResource( 6 ) +script = ExtResource( "6" ) __meta__ = { "__editor_plugin_screen__": "3D" } [node name="GridMap" type="GridMap" parent="."] -mesh_library = ExtResource( 1 ) +mesh_library = ExtResource( "1" ) cell_size = Vector3(1, 1, 1) data = { "cells": PackedInt32Array(0, 0, 0, 1, 0, 0, 2, 0, 0, 3, 0, 0, 4, 0, 0, 65530, 0, 0, 65531, 0, 0, 65532, 0, 0, 65533, 0, 0, 65534, 0, 0, 65535, 0, 0, 196603, 0, 0, 196604, 0, 0, 524292, 0, 0, 589820, 0, 0, 786432, 0, 0, 851967, 0, 0, 0, 1, 0, 1, 1, 0, 2, 1, 0, 3, 1, 0, 4, 1, 0, 65530, 1, 0, 65531, 1, 0, 65532, 1, 0, 65533, 1, 0, 65534, 1, 0, 65535, 1, 0, 131075, 1, 0, 196603, 1, 0, 196604, 1, 0, 524292, 1, 0, 589820, 1, 0, 786432, 1, 0, 851967, 1, 0, 0, 2, 0, 1, 2, 0, 2, 2, 0, 3, 2, 0, 4, 2, 0, 65530, 2, 0, 65531, 2, 0, 65532, 2, 0, 65533, 2, 0, 65534, 2, 0, 65535, 2, 0, 131075, 2, 0, 196603, 2, 0, 196604, 2, 0, 524292, 2, 0, 589820, 2, 0, 786432, 2, 0, 786433, 2, 0, 851966, 2, 0, 851967, 2, 0, 0, 3, 0, 1, 3, 0, 2, 3, 0, 3, 3, 0, 4, 3, 0, 65530, 3, 0, 65531, 3, 0, 65532, 3, 0, 65533, 3, 0, 65534, 3, 0, 65535, 3, 0, 196603, 3, 0, 524291, 3, 0, 524292, 3, 0, 589820, 3, 0, 786432, 3, 0, 786433, 3, 0, 851966, 3, 0, 851967, 3, 0, 0, 4, 0, 1, 4, 0, 2, 4, 0, 3, 4, 0, 4, 4, 0, 65530, 4, 0, 65531, 4, 0, 65532, 4, 0, 65533, 4, 0, 65534, 4, 0, 65535, 4, 0, 196603, 4, 0, 0, 5, 0, 1, 5, 0, 2, 5, 0, 3, 5, 0, 4, 5, 0, 65530, 5, 0, 65531, 5, 0, 65532, 5, 0, 65533, 5, 0, 65534, 5, 0, 65535, 5, 0, 131075, 5, 0, 0, 6, 0, 1, 6, 0, 2, 6, 0, 3, 6, 0, 4, 6, 0, 65530, 6, 0, 65531, 6, 0, 65532, 6, 0, 65533, 6, 0, 65534, 6, 0, 65535, 6, 0, 131075, 6, 0, 196603, 6, 0, 0, 7, 0, 1, 7, 0, 2, 7, 0, 3, 7, 0, 4, 7, 0, 65530, 7, 0, 65531, 7, 0, 65532, 7, 0, 65533, 7, 0, 65534, 7, 0, 65535, 7, 0, 131075, 7, 0, 196603, 7, 0, 0, 8, 0, 1, 8, 0, 2, 8, 0, 3, 8, 0, 4, 8, 0, 65530, 8, 0, 65531, 8, 0, 65532, 8, 0, 65533, 8, 0, 65534, 8, 0, 65535, 8, 0, 131075, 8, 0, 196603, 8, 0, 196604, 8, 0, 0, 9, 0, 1, 9, 0, 2, 9, 0, 3, 9, 0, 4, 9, 0, 65530, 9, 0, 65531, 9, 0, 65532, 9, 0, 65533, 9, 0, 65534, 9, 0, 65535, 9, 0, 131073, 9, 0, 131074, 9, 0, 131075, 9, 0, 196603, 9, 0, 196604, 9, 0, 196605, 9, 0, 196608, 9, 0, 262142, 9, 0, 0, 10, 0, 1, 10, 0, 2, 10, 0, 3, 10, 0, 4, 10, 0, 65530, 10, 0, 65531, 10, 0, 65532, 10, 0, 65533, 10, 0, 65534, 10, 0, 65535, 10, 0, 0, 11, 0, 1, 11, 0, 2, 11, 0, 3, 11, 0, 4, 11, 0, 65530, 11, 0, 65531, 11, 0, 65532, 11, 0, 65533, 11, 0, 65534, 11, 0, 65535, 11, 0, 0, 65532, 0, 1, 65532, 0, 2, 65532, 0, 3, 65532, 0, 4, 65532, 0, 65530, 65532, 0, 65531, 65532, 0, 65532, 65532, 0, 65533, 65532, 0, 65534, 65532, 0, 65535, 65532, 0, 0, 65533, 0, 1, 65533, 0, 2, 65533, 0, 3, 65533, 0, 4, 65533, 0, 65530, 65533, 0, 65531, 65533, 0, 65532, 65533, 0, 65533, 65533, 0, 65534, 65533, 0, 65535, 65533, 0, 262145, 65533, 0, 262146, 65533, 0, 262147, 65533, 0, 589822, 65533, 0, 589823, 65533, 0, 655363, 65533, 0, 655364, 65533, 0, 720897, 65533, 0, 720898, 65533, 0, 786432, 65533, 0, 851967, 65533, 0, 0, 65534, 0, 1, 65534, 0, 2, 65534, 0, 3, 65534, 0, 4, 65534, 0, 65530, 65534, 0, 65531, 65534, 0, 65532, 65534, 0, 65533, 65534, 0, 65534, 65534, 0, 65535, 65534, 0, 65536, 65534, 0, 131071, 65534, 0, 196603, 65534, 0, 196604, 65534, 0, 196605, 65534, 0, 196606, 65534, 0, 196607, 65534, 0, 589822, 65534, 0, 589828, 65534, 0, 786432, 65534, 0, 851967, 65534, 0, 0, 65535, 0, 1, 65535, 0, 2, 65535, 0, 3, 65535, 0, 4, 65535, 0, 65530, 65535, 0, 65531, 65535, 0, 65532, 65535, 0, 65533, 65535, 0, 65534, 65535, 0, 65535, 65535, 0, 196603, 65535, 0, 196604, 65535, 0, 196611, 65535, 0, 589820, 65535, 0, 589821, 65535, 0, 589822, 65535, 0, 589828, 65535, 0, 786432, 65535, 0, 851967, 65535, 0) @@ -62,18 +62,21 @@ __meta__ = { "_editor_floor_": Vector3(0, 12, 0) } +[node name="WorldEnvironment" type="WorldEnvironment" parent="."] +environment = ExtResource( "3_scanf" ) + [node name="DirectionalLight3D" type="DirectionalLight3D" parent="."] transform = Transform3D(-0.173649, 0.806707, -0.564863, 0, 0.573576, 0.819152, 0.984808, 0.142244, -0.0996007, 0, 0, 0) light_energy = 1.3 shadow_enabled = true -shadow_bias = -0.02 shadow_reverse_cull_face = true -directional_shadow_mode = 0 -directional_shadow_normal_bias = 0.0 -directional_shadow_bias_split_scale = 0.0 -directional_shadow_max_distance = 20.0 +directional_shadow_split_1 = 0.05 +directional_shadow_split_2 = 0.1 +directional_shadow_split_3 = 0.2 +directional_shadow_fade_start = 0.25 +directional_shadow_max_distance = 50.0 -[node name="Cubio" parent="." instance=ExtResource( 2 )] +[node name="Cubio" parent="." instance=ExtResource( "2" )] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -1.5, 2, 4) [node name="Elevator1" type="CharacterBody3D" parent="."] @@ -81,47 +84,45 @@ transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0.5, 4.5, -2.5) input_capture_on_drag = true [node name="Mesh" type="MeshInstance3D" parent="Elevator1"] -mesh = ExtResource( 3 ) -surface_material_override/0 = null +mesh = ExtResource( "3" ) [node name="CollisionShape3D" type="CollisionShape3D" parent="Elevator1"] -shape = SubResource( 1 ) +shape = SubResource( "1" ) [node name="AnimationPlayer" type="AnimationPlayer" parent="Elevator1"] autoplay = "updown1" playback_process_mode = 0 -anims/updown1 = SubResource( 2 ) +anims/updown1 = SubResource( "2" ) [node name="Elevator2" type="CharacterBody3D" parent="."] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -3.5, 8.5, 4.5) [node name="Mesh" type="MeshInstance3D" parent="Elevator2"] -mesh = ExtResource( 3 ) -surface_material_override/0 = null +mesh = ExtResource( "3" ) [node name="CollisionShape3D" type="CollisionShape3D" parent="Elevator2"] -shape = SubResource( 1 ) +shape = SubResource( "1" ) [node name="AnimationPlayer" type="AnimationPlayer" parent="Elevator2"] autoplay = "side" playback_process_mode = 0 -anims/side = SubResource( 3 ) -anims/updown1 = SubResource( 2 ) +anims/side = SubResource( "3" ) +anims/updown1 = SubResource( "2" ) [node name="Princess" type="Area3D" parent="."] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 13.25, 3) -[node name="Mushroom" parent="Princess" instance=ExtResource( 5 )] +[node name="Mushroom" parent="Princess" instance=ExtResource( "5" )] [node name="CollisionShape3D" type="CollisionShape3D" parent="Princess"] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 1, 0) -shape = SubResource( 4 ) +shape = SubResource( "4" ) [node name="SpawnTimer" type="Timer" parent="."] wait_time = 2.0 autostart = true -[node name="cube_rigidbody" parent="." instance=ExtResource( 7 )] +[node name="cube_rigidbody" parent="." instance=ExtResource( "7" )] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0.416964, 3.3565, 2.6332) [connection signal="body_entered" from="Princess" to="Cubio" method="_on_tcube_body_entered"] diff --git a/3d/rigidbody_character/models/cube.glb.import b/3d/rigidbody_character/models/cube.glb.import index 2c490b1e..72f07b1d 100644 --- a/3d/rigidbody_character/models/cube.glb.import +++ b/3d/rigidbody_character/models/cube.glb.import @@ -1,7 +1,9 @@ [remap] importer="scene" +importer_version=1 type="PackedScene" +uid="uid://bs5gjrek8rypk" path="res://.godot/imported/cube.glb-c6bf6ebacd621473d1ca4ff4a368b9dc.scn" [deps] @@ -14,1052 +16,13 @@ dest_files=["res://.godot/imported/cube.glb-c6bf6ebacd621473d1ca4ff4a368b9dc.scn nodes/root_type="Node3D" nodes/root_name="Cube" nodes/root_scale=1.0 -nodes/custom_script="" -nodes/storage=0 -nodes/use_legacy_names=true -materials/location=1 -materials/storage=2 -materials/keep_on_reimport=true -meshes/octahedral_compression=true -meshes/compress=true meshes/ensure_tangents=true -meshes/storage=0 +meshes/generate_lods=true +meshes/create_shadow_meshes=true meshes/light_baking=0 meshes/lightmap_texel_size=0.1 skins/use_named_skins=true -external_files/store_in_subdir=false animation/import=false animation/fps=15 -animation/filter_script="" -animation/storage=false -animation/keep_custom_tracks=false -animation/optimizer/enabled=true -animation/optimizer/max_linear_error=0.05 -animation/optimizer/max_angular_error=0.01 -animation/optimizer/max_angle=22 -animation/optimizer/remove_unused_tracks=true -animation/clips/amount=0 -animation/clip_1/name="" -animation/clip_1/start_frame=0 -animation/clip_1/end_frame=0 -animation/clip_1/loops=false -animation/clip_2/name="" -animation/clip_2/start_frame=0 -animation/clip_2/end_frame=0 -animation/clip_2/loops=false -animation/clip_3/name="" -animation/clip_3/start_frame=0 -animation/clip_3/end_frame=0 -animation/clip_3/loops=false -animation/clip_4/name="" -animation/clip_4/start_frame=0 -animation/clip_4/end_frame=0 -animation/clip_4/loops=false -animation/clip_5/name="" -animation/clip_5/start_frame=0 -animation/clip_5/end_frame=0 -animation/clip_5/loops=false -animation/clip_6/name="" -animation/clip_6/start_frame=0 -animation/clip_6/end_frame=0 -animation/clip_6/loops=false -animation/clip_7/name="" -animation/clip_7/start_frame=0 -animation/clip_7/end_frame=0 -animation/clip_7/loops=false -animation/clip_8/name="" -animation/clip_8/start_frame=0 -animation/clip_8/end_frame=0 -animation/clip_8/loops=false -animation/clip_9/name="" -animation/clip_9/start_frame=0 -animation/clip_9/end_frame=0 -animation/clip_9/loops=false -animation/clip_10/name="" -animation/clip_10/start_frame=0 -animation/clip_10/end_frame=0 -animation/clip_10/loops=false -animation/clip_11/name="" -animation/clip_11/start_frame=0 -animation/clip_11/end_frame=0 -animation/clip_11/loops=false -animation/clip_12/name="" -animation/clip_12/start_frame=0 -animation/clip_12/end_frame=0 -animation/clip_12/loops=false -animation/clip_13/name="" -animation/clip_13/start_frame=0 -animation/clip_13/end_frame=0 -animation/clip_13/loops=false -animation/clip_14/name="" -animation/clip_14/start_frame=0 -animation/clip_14/end_frame=0 -animation/clip_14/loops=false -animation/clip_15/name="" -animation/clip_15/start_frame=0 -animation/clip_15/end_frame=0 -animation/clip_15/loops=false -animation/clip_16/name="" -animation/clip_16/start_frame=0 -animation/clip_16/end_frame=0 -animation/clip_16/loops=false -animation/clip_17/name="" -animation/clip_17/start_frame=0 -animation/clip_17/end_frame=0 -animation/clip_17/loops=false -animation/clip_18/name="" -animation/clip_18/start_frame=0 -animation/clip_18/end_frame=0 -animation/clip_18/loops=false -animation/clip_19/name="" -animation/clip_19/start_frame=0 -animation/clip_19/end_frame=0 -animation/clip_19/loops=false -animation/clip_20/name="" -animation/clip_20/start_frame=0 -animation/clip_20/end_frame=0 -animation/clip_20/loops=false -animation/clip_21/name="" -animation/clip_21/start_frame=0 -animation/clip_21/end_frame=0 -animation/clip_21/loops=false -animation/clip_22/name="" -animation/clip_22/start_frame=0 -animation/clip_22/end_frame=0 -animation/clip_22/loops=false -animation/clip_23/name="" -animation/clip_23/start_frame=0 -animation/clip_23/end_frame=0 -animation/clip_23/loops=false -animation/clip_24/name="" -animation/clip_24/start_frame=0 -animation/clip_24/end_frame=0 -animation/clip_24/loops=false -animation/clip_25/name="" -animation/clip_25/start_frame=0 -animation/clip_25/end_frame=0 -animation/clip_25/loops=false -animation/clip_26/name="" -animation/clip_26/start_frame=0 -animation/clip_26/end_frame=0 -animation/clip_26/loops=false -animation/clip_27/name="" -animation/clip_27/start_frame=0 -animation/clip_27/end_frame=0 -animation/clip_27/loops=false -animation/clip_28/name="" -animation/clip_28/start_frame=0 -animation/clip_28/end_frame=0 -animation/clip_28/loops=false -animation/clip_29/name="" -animation/clip_29/start_frame=0 -animation/clip_29/end_frame=0 -animation/clip_29/loops=false -animation/clip_30/name="" -animation/clip_30/start_frame=0 -animation/clip_30/end_frame=0 -animation/clip_30/loops=false -animation/clip_31/name="" -animation/clip_31/start_frame=0 -animation/clip_31/end_frame=0 -animation/clip_31/loops=false -animation/clip_32/name="" -animation/clip_32/start_frame=0 -animation/clip_32/end_frame=0 -animation/clip_32/loops=false -animation/clip_33/name="" -animation/clip_33/start_frame=0 -animation/clip_33/end_frame=0 -animation/clip_33/loops=false -animation/clip_34/name="" -animation/clip_34/start_frame=0 -animation/clip_34/end_frame=0 -animation/clip_34/loops=false -animation/clip_35/name="" -animation/clip_35/start_frame=0 -animation/clip_35/end_frame=0 -animation/clip_35/loops=false -animation/clip_36/name="" -animation/clip_36/start_frame=0 -animation/clip_36/end_frame=0 -animation/clip_36/loops=false -animation/clip_37/name="" -animation/clip_37/start_frame=0 -animation/clip_37/end_frame=0 -animation/clip_37/loops=false -animation/clip_38/name="" -animation/clip_38/start_frame=0 -animation/clip_38/end_frame=0 -animation/clip_38/loops=false -animation/clip_39/name="" -animation/clip_39/start_frame=0 -animation/clip_39/end_frame=0 -animation/clip_39/loops=false -animation/clip_40/name="" -animation/clip_40/start_frame=0 -animation/clip_40/end_frame=0 -animation/clip_40/loops=false -animation/clip_41/name="" -animation/clip_41/start_frame=0 -animation/clip_41/end_frame=0 -animation/clip_41/loops=false -animation/clip_42/name="" -animation/clip_42/start_frame=0 -animation/clip_42/end_frame=0 -animation/clip_42/loops=false -animation/clip_43/name="" -animation/clip_43/start_frame=0 -animation/clip_43/end_frame=0 -animation/clip_43/loops=false -animation/clip_44/name="" -animation/clip_44/start_frame=0 -animation/clip_44/end_frame=0 -animation/clip_44/loops=false -animation/clip_45/name="" -animation/clip_45/start_frame=0 -animation/clip_45/end_frame=0 -animation/clip_45/loops=false -animation/clip_46/name="" -animation/clip_46/start_frame=0 -animation/clip_46/end_frame=0 -animation/clip_46/loops=false -animation/clip_47/name="" -animation/clip_47/start_frame=0 -animation/clip_47/end_frame=0 -animation/clip_47/loops=false -animation/clip_48/name="" -animation/clip_48/start_frame=0 -animation/clip_48/end_frame=0 -animation/clip_48/loops=false -animation/clip_49/name="" -animation/clip_49/start_frame=0 -animation/clip_49/end_frame=0 -animation/clip_49/loops=false -animation/clip_50/name="" -animation/clip_50/start_frame=0 -animation/clip_50/end_frame=0 -animation/clip_50/loops=false -animation/clip_51/name="" -animation/clip_51/start_frame=0 -animation/clip_51/end_frame=0 -animation/clip_51/loops=false -animation/clip_52/name="" -animation/clip_52/start_frame=0 -animation/clip_52/end_frame=0 -animation/clip_52/loops=false -animation/clip_53/name="" -animation/clip_53/start_frame=0 -animation/clip_53/end_frame=0 -animation/clip_53/loops=false -animation/clip_54/name="" -animation/clip_54/start_frame=0 -animation/clip_54/end_frame=0 -animation/clip_54/loops=false -animation/clip_55/name="" -animation/clip_55/start_frame=0 -animation/clip_55/end_frame=0 -animation/clip_55/loops=false -animation/clip_56/name="" -animation/clip_56/start_frame=0 -animation/clip_56/end_frame=0 -animation/clip_56/loops=false -animation/clip_57/name="" -animation/clip_57/start_frame=0 -animation/clip_57/end_frame=0 -animation/clip_57/loops=false -animation/clip_58/name="" -animation/clip_58/start_frame=0 -animation/clip_58/end_frame=0 -animation/clip_58/loops=false -animation/clip_59/name="" -animation/clip_59/start_frame=0 -animation/clip_59/end_frame=0 -animation/clip_59/loops=false -animation/clip_60/name="" -animation/clip_60/start_frame=0 -animation/clip_60/end_frame=0 -animation/clip_60/loops=false -animation/clip_61/name="" -animation/clip_61/start_frame=0 -animation/clip_61/end_frame=0 -animation/clip_61/loops=false -animation/clip_62/name="" -animation/clip_62/start_frame=0 -animation/clip_62/end_frame=0 -animation/clip_62/loops=false -animation/clip_63/name="" -animation/clip_63/start_frame=0 -animation/clip_63/end_frame=0 -animation/clip_63/loops=false -animation/clip_64/name="" -animation/clip_64/start_frame=0 -animation/clip_64/end_frame=0 -animation/clip_64/loops=false -animation/clip_65/name="" -animation/clip_65/start_frame=0 -animation/clip_65/end_frame=0 -animation/clip_65/loops=false -animation/clip_66/name="" -animation/clip_66/start_frame=0 -animation/clip_66/end_frame=0 -animation/clip_66/loops=false -animation/clip_67/name="" -animation/clip_67/start_frame=0 -animation/clip_67/end_frame=0 -animation/clip_67/loops=false -animation/clip_68/name="" -animation/clip_68/start_frame=0 -animation/clip_68/end_frame=0 -animation/clip_68/loops=false -animation/clip_69/name="" -animation/clip_69/start_frame=0 -animation/clip_69/end_frame=0 -animation/clip_69/loops=false -animation/clip_70/name="" -animation/clip_70/start_frame=0 -animation/clip_70/end_frame=0 -animation/clip_70/loops=false -animation/clip_71/name="" -animation/clip_71/start_frame=0 -animation/clip_71/end_frame=0 -animation/clip_71/loops=false -animation/clip_72/name="" -animation/clip_72/start_frame=0 -animation/clip_72/end_frame=0 -animation/clip_72/loops=false -animation/clip_73/name="" -animation/clip_73/start_frame=0 -animation/clip_73/end_frame=0 -animation/clip_73/loops=false -animation/clip_74/name="" -animation/clip_74/start_frame=0 -animation/clip_74/end_frame=0 -animation/clip_74/loops=false -animation/clip_75/name="" -animation/clip_75/start_frame=0 -animation/clip_75/end_frame=0 -animation/clip_75/loops=false -animation/clip_76/name="" -animation/clip_76/start_frame=0 -animation/clip_76/end_frame=0 -animation/clip_76/loops=false -animation/clip_77/name="" -animation/clip_77/start_frame=0 -animation/clip_77/end_frame=0 -animation/clip_77/loops=false -animation/clip_78/name="" -animation/clip_78/start_frame=0 -animation/clip_78/end_frame=0 -animation/clip_78/loops=false -animation/clip_79/name="" -animation/clip_79/start_frame=0 -animation/clip_79/end_frame=0 -animation/clip_79/loops=false -animation/clip_80/name="" -animation/clip_80/start_frame=0 -animation/clip_80/end_frame=0 -animation/clip_80/loops=false -animation/clip_81/name="" -animation/clip_81/start_frame=0 -animation/clip_81/end_frame=0 -animation/clip_81/loops=false -animation/clip_82/name="" -animation/clip_82/start_frame=0 -animation/clip_82/end_frame=0 -animation/clip_82/loops=false -animation/clip_83/name="" -animation/clip_83/start_frame=0 -animation/clip_83/end_frame=0 -animation/clip_83/loops=false -animation/clip_84/name="" -animation/clip_84/start_frame=0 -animation/clip_84/end_frame=0 -animation/clip_84/loops=false -animation/clip_85/name="" -animation/clip_85/start_frame=0 -animation/clip_85/end_frame=0 -animation/clip_85/loops=false -animation/clip_86/name="" -animation/clip_86/start_frame=0 -animation/clip_86/end_frame=0 -animation/clip_86/loops=false -animation/clip_87/name="" -animation/clip_87/start_frame=0 -animation/clip_87/end_frame=0 -animation/clip_87/loops=false -animation/clip_88/name="" -animation/clip_88/start_frame=0 -animation/clip_88/end_frame=0 -animation/clip_88/loops=false -animation/clip_89/name="" -animation/clip_89/start_frame=0 -animation/clip_89/end_frame=0 -animation/clip_89/loops=false -animation/clip_90/name="" -animation/clip_90/start_frame=0 -animation/clip_90/end_frame=0 -animation/clip_90/loops=false -animation/clip_91/name="" -animation/clip_91/start_frame=0 -animation/clip_91/end_frame=0 -animation/clip_91/loops=false -animation/clip_92/name="" -animation/clip_92/start_frame=0 -animation/clip_92/end_frame=0 -animation/clip_92/loops=false -animation/clip_93/name="" -animation/clip_93/start_frame=0 -animation/clip_93/end_frame=0 -animation/clip_93/loops=false -animation/clip_94/name="" -animation/clip_94/start_frame=0 -animation/clip_94/end_frame=0 -animation/clip_94/loops=false -animation/clip_95/name="" -animation/clip_95/start_frame=0 -animation/clip_95/end_frame=0 -animation/clip_95/loops=false -animation/clip_96/name="" -animation/clip_96/start_frame=0 -animation/clip_96/end_frame=0 -animation/clip_96/loops=false -animation/clip_97/name="" -animation/clip_97/start_frame=0 -animation/clip_97/end_frame=0 -animation/clip_97/loops=false -animation/clip_98/name="" -animation/clip_98/start_frame=0 -animation/clip_98/end_frame=0 -animation/clip_98/loops=false -animation/clip_99/name="" -animation/clip_99/start_frame=0 -animation/clip_99/end_frame=0 -animation/clip_99/loops=false -animation/clip_100/name="" -animation/clip_100/start_frame=0 -animation/clip_100/end_frame=0 -animation/clip_100/loops=false -animation/clip_101/name="" -animation/clip_101/start_frame=0 -animation/clip_101/end_frame=0 -animation/clip_101/loops=false -animation/clip_102/name="" -animation/clip_102/start_frame=0 -animation/clip_102/end_frame=0 -animation/clip_102/loops=false -animation/clip_103/name="" -animation/clip_103/start_frame=0 -animation/clip_103/end_frame=0 -animation/clip_103/loops=false -animation/clip_104/name="" -animation/clip_104/start_frame=0 -animation/clip_104/end_frame=0 -animation/clip_104/loops=false -animation/clip_105/name="" -animation/clip_105/start_frame=0 -animation/clip_105/end_frame=0 -animation/clip_105/loops=false -animation/clip_106/name="" -animation/clip_106/start_frame=0 -animation/clip_106/end_frame=0 -animation/clip_106/loops=false -animation/clip_107/name="" -animation/clip_107/start_frame=0 -animation/clip_107/end_frame=0 -animation/clip_107/loops=false -animation/clip_108/name="" -animation/clip_108/start_frame=0 -animation/clip_108/end_frame=0 -animation/clip_108/loops=false -animation/clip_109/name="" -animation/clip_109/start_frame=0 -animation/clip_109/end_frame=0 -animation/clip_109/loops=false -animation/clip_110/name="" -animation/clip_110/start_frame=0 -animation/clip_110/end_frame=0 -animation/clip_110/loops=false -animation/clip_111/name="" -animation/clip_111/start_frame=0 -animation/clip_111/end_frame=0 -animation/clip_111/loops=false -animation/clip_112/name="" -animation/clip_112/start_frame=0 -animation/clip_112/end_frame=0 -animation/clip_112/loops=false -animation/clip_113/name="" -animation/clip_113/start_frame=0 -animation/clip_113/end_frame=0 -animation/clip_113/loops=false -animation/clip_114/name="" -animation/clip_114/start_frame=0 -animation/clip_114/end_frame=0 -animation/clip_114/loops=false -animation/clip_115/name="" -animation/clip_115/start_frame=0 -animation/clip_115/end_frame=0 -animation/clip_115/loops=false -animation/clip_116/name="" -animation/clip_116/start_frame=0 -animation/clip_116/end_frame=0 -animation/clip_116/loops=false -animation/clip_117/name="" -animation/clip_117/start_frame=0 -animation/clip_117/end_frame=0 -animation/clip_117/loops=false -animation/clip_118/name="" -animation/clip_118/start_frame=0 -animation/clip_118/end_frame=0 -animation/clip_118/loops=false -animation/clip_119/name="" -animation/clip_119/start_frame=0 -animation/clip_119/end_frame=0 -animation/clip_119/loops=false -animation/clip_120/name="" -animation/clip_120/start_frame=0 -animation/clip_120/end_frame=0 -animation/clip_120/loops=false -animation/clip_121/name="" -animation/clip_121/start_frame=0 -animation/clip_121/end_frame=0 -animation/clip_121/loops=false -animation/clip_122/name="" -animation/clip_122/start_frame=0 -animation/clip_122/end_frame=0 -animation/clip_122/loops=false -animation/clip_123/name="" -animation/clip_123/start_frame=0 -animation/clip_123/end_frame=0 -animation/clip_123/loops=false -animation/clip_124/name="" -animation/clip_124/start_frame=0 -animation/clip_124/end_frame=0 -animation/clip_124/loops=false -animation/clip_125/name="" -animation/clip_125/start_frame=0 -animation/clip_125/end_frame=0 -animation/clip_125/loops=false -animation/clip_126/name="" -animation/clip_126/start_frame=0 -animation/clip_126/end_frame=0 -animation/clip_126/loops=false -animation/clip_127/name="" -animation/clip_127/start_frame=0 -animation/clip_127/end_frame=0 -animation/clip_127/loops=false -animation/clip_128/name="" -animation/clip_128/start_frame=0 -animation/clip_128/end_frame=0 -animation/clip_128/loops=false -animation/clip_129/name="" -animation/clip_129/start_frame=0 -animation/clip_129/end_frame=0 -animation/clip_129/loops=false -animation/clip_130/name="" -animation/clip_130/start_frame=0 -animation/clip_130/end_frame=0 -animation/clip_130/loops=false -animation/clip_131/name="" -animation/clip_131/start_frame=0 -animation/clip_131/end_frame=0 -animation/clip_131/loops=false -animation/clip_132/name="" -animation/clip_132/start_frame=0 -animation/clip_132/end_frame=0 -animation/clip_132/loops=false -animation/clip_133/name="" -animation/clip_133/start_frame=0 -animation/clip_133/end_frame=0 -animation/clip_133/loops=false -animation/clip_134/name="" -animation/clip_134/start_frame=0 -animation/clip_134/end_frame=0 -animation/clip_134/loops=false -animation/clip_135/name="" -animation/clip_135/start_frame=0 -animation/clip_135/end_frame=0 -animation/clip_135/loops=false -animation/clip_136/name="" -animation/clip_136/start_frame=0 -animation/clip_136/end_frame=0 -animation/clip_136/loops=false -animation/clip_137/name="" -animation/clip_137/start_frame=0 -animation/clip_137/end_frame=0 -animation/clip_137/loops=false -animation/clip_138/name="" -animation/clip_138/start_frame=0 -animation/clip_138/end_frame=0 -animation/clip_138/loops=false -animation/clip_139/name="" -animation/clip_139/start_frame=0 -animation/clip_139/end_frame=0 -animation/clip_139/loops=false -animation/clip_140/name="" -animation/clip_140/start_frame=0 -animation/clip_140/end_frame=0 -animation/clip_140/loops=false -animation/clip_141/name="" -animation/clip_141/start_frame=0 -animation/clip_141/end_frame=0 -animation/clip_141/loops=false -animation/clip_142/name="" -animation/clip_142/start_frame=0 -animation/clip_142/end_frame=0 -animation/clip_142/loops=false -animation/clip_143/name="" -animation/clip_143/start_frame=0 -animation/clip_143/end_frame=0 -animation/clip_143/loops=false -animation/clip_144/name="" -animation/clip_144/start_frame=0 -animation/clip_144/end_frame=0 -animation/clip_144/loops=false -animation/clip_145/name="" -animation/clip_145/start_frame=0 -animation/clip_145/end_frame=0 -animation/clip_145/loops=false -animation/clip_146/name="" -animation/clip_146/start_frame=0 -animation/clip_146/end_frame=0 -animation/clip_146/loops=false -animation/clip_147/name="" -animation/clip_147/start_frame=0 -animation/clip_147/end_frame=0 -animation/clip_147/loops=false -animation/clip_148/name="" -animation/clip_148/start_frame=0 -animation/clip_148/end_frame=0 -animation/clip_148/loops=false -animation/clip_149/name="" -animation/clip_149/start_frame=0 -animation/clip_149/end_frame=0 -animation/clip_149/loops=false -animation/clip_150/name="" -animation/clip_150/start_frame=0 -animation/clip_150/end_frame=0 -animation/clip_150/loops=false -animation/clip_151/name="" -animation/clip_151/start_frame=0 -animation/clip_151/end_frame=0 -animation/clip_151/loops=false -animation/clip_152/name="" -animation/clip_152/start_frame=0 -animation/clip_152/end_frame=0 -animation/clip_152/loops=false -animation/clip_153/name="" -animation/clip_153/start_frame=0 -animation/clip_153/end_frame=0 -animation/clip_153/loops=false -animation/clip_154/name="" -animation/clip_154/start_frame=0 -animation/clip_154/end_frame=0 -animation/clip_154/loops=false -animation/clip_155/name="" -animation/clip_155/start_frame=0 -animation/clip_155/end_frame=0 -animation/clip_155/loops=false -animation/clip_156/name="" -animation/clip_156/start_frame=0 -animation/clip_156/end_frame=0 -animation/clip_156/loops=false -animation/clip_157/name="" -animation/clip_157/start_frame=0 -animation/clip_157/end_frame=0 -animation/clip_157/loops=false -animation/clip_158/name="" -animation/clip_158/start_frame=0 -animation/clip_158/end_frame=0 -animation/clip_158/loops=false -animation/clip_159/name="" -animation/clip_159/start_frame=0 -animation/clip_159/end_frame=0 -animation/clip_159/loops=false -animation/clip_160/name="" -animation/clip_160/start_frame=0 -animation/clip_160/end_frame=0 -animation/clip_160/loops=false -animation/clip_161/name="" -animation/clip_161/start_frame=0 -animation/clip_161/end_frame=0 -animation/clip_161/loops=false -animation/clip_162/name="" -animation/clip_162/start_frame=0 -animation/clip_162/end_frame=0 -animation/clip_162/loops=false -animation/clip_163/name="" -animation/clip_163/start_frame=0 -animation/clip_163/end_frame=0 -animation/clip_163/loops=false -animation/clip_164/name="" -animation/clip_164/start_frame=0 -animation/clip_164/end_frame=0 -animation/clip_164/loops=false -animation/clip_165/name="" -animation/clip_165/start_frame=0 -animation/clip_165/end_frame=0 -animation/clip_165/loops=false -animation/clip_166/name="" -animation/clip_166/start_frame=0 -animation/clip_166/end_frame=0 -animation/clip_166/loops=false -animation/clip_167/name="" -animation/clip_167/start_frame=0 -animation/clip_167/end_frame=0 -animation/clip_167/loops=false -animation/clip_168/name="" -animation/clip_168/start_frame=0 -animation/clip_168/end_frame=0 -animation/clip_168/loops=false -animation/clip_169/name="" -animation/clip_169/start_frame=0 -animation/clip_169/end_frame=0 -animation/clip_169/loops=false -animation/clip_170/name="" -animation/clip_170/start_frame=0 -animation/clip_170/end_frame=0 -animation/clip_170/loops=false -animation/clip_171/name="" -animation/clip_171/start_frame=0 -animation/clip_171/end_frame=0 -animation/clip_171/loops=false -animation/clip_172/name="" -animation/clip_172/start_frame=0 -animation/clip_172/end_frame=0 -animation/clip_172/loops=false -animation/clip_173/name="" -animation/clip_173/start_frame=0 -animation/clip_173/end_frame=0 -animation/clip_173/loops=false -animation/clip_174/name="" -animation/clip_174/start_frame=0 -animation/clip_174/end_frame=0 -animation/clip_174/loops=false -animation/clip_175/name="" -animation/clip_175/start_frame=0 -animation/clip_175/end_frame=0 -animation/clip_175/loops=false -animation/clip_176/name="" -animation/clip_176/start_frame=0 -animation/clip_176/end_frame=0 -animation/clip_176/loops=false -animation/clip_177/name="" -animation/clip_177/start_frame=0 -animation/clip_177/end_frame=0 -animation/clip_177/loops=false -animation/clip_178/name="" -animation/clip_178/start_frame=0 -animation/clip_178/end_frame=0 -animation/clip_178/loops=false -animation/clip_179/name="" -animation/clip_179/start_frame=0 -animation/clip_179/end_frame=0 -animation/clip_179/loops=false -animation/clip_180/name="" -animation/clip_180/start_frame=0 -animation/clip_180/end_frame=0 -animation/clip_180/loops=false -animation/clip_181/name="" -animation/clip_181/start_frame=0 -animation/clip_181/end_frame=0 -animation/clip_181/loops=false -animation/clip_182/name="" -animation/clip_182/start_frame=0 -animation/clip_182/end_frame=0 -animation/clip_182/loops=false -animation/clip_183/name="" -animation/clip_183/start_frame=0 -animation/clip_183/end_frame=0 -animation/clip_183/loops=false -animation/clip_184/name="" -animation/clip_184/start_frame=0 -animation/clip_184/end_frame=0 -animation/clip_184/loops=false -animation/clip_185/name="" -animation/clip_185/start_frame=0 -animation/clip_185/end_frame=0 -animation/clip_185/loops=false -animation/clip_186/name="" -animation/clip_186/start_frame=0 -animation/clip_186/end_frame=0 -animation/clip_186/loops=false -animation/clip_187/name="" -animation/clip_187/start_frame=0 -animation/clip_187/end_frame=0 -animation/clip_187/loops=false -animation/clip_188/name="" -animation/clip_188/start_frame=0 -animation/clip_188/end_frame=0 -animation/clip_188/loops=false -animation/clip_189/name="" -animation/clip_189/start_frame=0 -animation/clip_189/end_frame=0 -animation/clip_189/loops=false -animation/clip_190/name="" -animation/clip_190/start_frame=0 -animation/clip_190/end_frame=0 -animation/clip_190/loops=false -animation/clip_191/name="" -animation/clip_191/start_frame=0 -animation/clip_191/end_frame=0 -animation/clip_191/loops=false -animation/clip_192/name="" -animation/clip_192/start_frame=0 -animation/clip_192/end_frame=0 -animation/clip_192/loops=false -animation/clip_193/name="" -animation/clip_193/start_frame=0 -animation/clip_193/end_frame=0 -animation/clip_193/loops=false -animation/clip_194/name="" -animation/clip_194/start_frame=0 -animation/clip_194/end_frame=0 -animation/clip_194/loops=false -animation/clip_195/name="" -animation/clip_195/start_frame=0 -animation/clip_195/end_frame=0 -animation/clip_195/loops=false -animation/clip_196/name="" -animation/clip_196/start_frame=0 -animation/clip_196/end_frame=0 -animation/clip_196/loops=false -animation/clip_197/name="" -animation/clip_197/start_frame=0 -animation/clip_197/end_frame=0 -animation/clip_197/loops=false -animation/clip_198/name="" -animation/clip_198/start_frame=0 -animation/clip_198/end_frame=0 -animation/clip_198/loops=false -animation/clip_199/name="" -animation/clip_199/start_frame=0 -animation/clip_199/end_frame=0 -animation/clip_199/loops=false -animation/clip_200/name="" -animation/clip_200/start_frame=0 -animation/clip_200/end_frame=0 -animation/clip_200/loops=false -animation/clip_201/name="" -animation/clip_201/start_frame=0 -animation/clip_201/end_frame=0 -animation/clip_201/loops=false -animation/clip_202/name="" -animation/clip_202/start_frame=0 -animation/clip_202/end_frame=0 -animation/clip_202/loops=false -animation/clip_203/name="" -animation/clip_203/start_frame=0 -animation/clip_203/end_frame=0 -animation/clip_203/loops=false -animation/clip_204/name="" -animation/clip_204/start_frame=0 -animation/clip_204/end_frame=0 -animation/clip_204/loops=false -animation/clip_205/name="" -animation/clip_205/start_frame=0 -animation/clip_205/end_frame=0 -animation/clip_205/loops=false -animation/clip_206/name="" -animation/clip_206/start_frame=0 -animation/clip_206/end_frame=0 -animation/clip_206/loops=false -animation/clip_207/name="" -animation/clip_207/start_frame=0 -animation/clip_207/end_frame=0 -animation/clip_207/loops=false -animation/clip_208/name="" -animation/clip_208/start_frame=0 -animation/clip_208/end_frame=0 -animation/clip_208/loops=false -animation/clip_209/name="" -animation/clip_209/start_frame=0 -animation/clip_209/end_frame=0 -animation/clip_209/loops=false -animation/clip_210/name="" -animation/clip_210/start_frame=0 -animation/clip_210/end_frame=0 -animation/clip_210/loops=false -animation/clip_211/name="" -animation/clip_211/start_frame=0 -animation/clip_211/end_frame=0 -animation/clip_211/loops=false -animation/clip_212/name="" -animation/clip_212/start_frame=0 -animation/clip_212/end_frame=0 -animation/clip_212/loops=false -animation/clip_213/name="" -animation/clip_213/start_frame=0 -animation/clip_213/end_frame=0 -animation/clip_213/loops=false -animation/clip_214/name="" -animation/clip_214/start_frame=0 -animation/clip_214/end_frame=0 -animation/clip_214/loops=false -animation/clip_215/name="" -animation/clip_215/start_frame=0 -animation/clip_215/end_frame=0 -animation/clip_215/loops=false -animation/clip_216/name="" -animation/clip_216/start_frame=0 -animation/clip_216/end_frame=0 -animation/clip_216/loops=false -animation/clip_217/name="" -animation/clip_217/start_frame=0 -animation/clip_217/end_frame=0 -animation/clip_217/loops=false -animation/clip_218/name="" -animation/clip_218/start_frame=0 -animation/clip_218/end_frame=0 -animation/clip_218/loops=false -animation/clip_219/name="" -animation/clip_219/start_frame=0 -animation/clip_219/end_frame=0 -animation/clip_219/loops=false -animation/clip_220/name="" -animation/clip_220/start_frame=0 -animation/clip_220/end_frame=0 -animation/clip_220/loops=false -animation/clip_221/name="" -animation/clip_221/start_frame=0 -animation/clip_221/end_frame=0 -animation/clip_221/loops=false -animation/clip_222/name="" -animation/clip_222/start_frame=0 -animation/clip_222/end_frame=0 -animation/clip_222/loops=false -animation/clip_223/name="" -animation/clip_223/start_frame=0 -animation/clip_223/end_frame=0 -animation/clip_223/loops=false -animation/clip_224/name="" -animation/clip_224/start_frame=0 -animation/clip_224/end_frame=0 -animation/clip_224/loops=false -animation/clip_225/name="" -animation/clip_225/start_frame=0 -animation/clip_225/end_frame=0 -animation/clip_225/loops=false -animation/clip_226/name="" -animation/clip_226/start_frame=0 -animation/clip_226/end_frame=0 -animation/clip_226/loops=false -animation/clip_227/name="" -animation/clip_227/start_frame=0 -animation/clip_227/end_frame=0 -animation/clip_227/loops=false -animation/clip_228/name="" -animation/clip_228/start_frame=0 -animation/clip_228/end_frame=0 -animation/clip_228/loops=false -animation/clip_229/name="" -animation/clip_229/start_frame=0 -animation/clip_229/end_frame=0 -animation/clip_229/loops=false -animation/clip_230/name="" -animation/clip_230/start_frame=0 -animation/clip_230/end_frame=0 -animation/clip_230/loops=false -animation/clip_231/name="" -animation/clip_231/start_frame=0 -animation/clip_231/end_frame=0 -animation/clip_231/loops=false -animation/clip_232/name="" -animation/clip_232/start_frame=0 -animation/clip_232/end_frame=0 -animation/clip_232/loops=false -animation/clip_233/name="" -animation/clip_233/start_frame=0 -animation/clip_233/end_frame=0 -animation/clip_233/loops=false -animation/clip_234/name="" -animation/clip_234/start_frame=0 -animation/clip_234/end_frame=0 -animation/clip_234/loops=false -animation/clip_235/name="" -animation/clip_235/start_frame=0 -animation/clip_235/end_frame=0 -animation/clip_235/loops=false -animation/clip_236/name="" -animation/clip_236/start_frame=0 -animation/clip_236/end_frame=0 -animation/clip_236/loops=false -animation/clip_237/name="" -animation/clip_237/start_frame=0 -animation/clip_237/end_frame=0 -animation/clip_237/loops=false -animation/clip_238/name="" -animation/clip_238/start_frame=0 -animation/clip_238/end_frame=0 -animation/clip_238/loops=false -animation/clip_239/name="" -animation/clip_239/start_frame=0 -animation/clip_239/end_frame=0 -animation/clip_239/loops=false -animation/clip_240/name="" -animation/clip_240/start_frame=0 -animation/clip_240/end_frame=0 -animation/clip_240/loops=false -animation/clip_241/name="" -animation/clip_241/start_frame=0 -animation/clip_241/end_frame=0 -animation/clip_241/loops=false -animation/clip_242/name="" -animation/clip_242/start_frame=0 -animation/clip_242/end_frame=0 -animation/clip_242/loops=false -animation/clip_243/name="" -animation/clip_243/start_frame=0 -animation/clip_243/end_frame=0 -animation/clip_243/loops=false -animation/clip_244/name="" -animation/clip_244/start_frame=0 -animation/clip_244/end_frame=0 -animation/clip_244/loops=false -animation/clip_245/name="" -animation/clip_245/start_frame=0 -animation/clip_245/end_frame=0 -animation/clip_245/loops=false -animation/clip_246/name="" -animation/clip_246/start_frame=0 -animation/clip_246/end_frame=0 -animation/clip_246/loops=false -animation/clip_247/name="" -animation/clip_247/start_frame=0 -animation/clip_247/end_frame=0 -animation/clip_247/loops=false -animation/clip_248/name="" -animation/clip_248/start_frame=0 -animation/clip_248/end_frame=0 -animation/clip_248/loops=false -animation/clip_249/name="" -animation/clip_249/start_frame=0 -animation/clip_249/end_frame=0 -animation/clip_249/loops=false -animation/clip_250/name="" -animation/clip_250/start_frame=0 -animation/clip_250/end_frame=0 -animation/clip_250/loops=false -animation/clip_251/name="" -animation/clip_251/start_frame=0 -animation/clip_251/end_frame=0 -animation/clip_251/loops=false -animation/clip_252/name="" -animation/clip_252/start_frame=0 -animation/clip_252/end_frame=0 -animation/clip_252/loops=false -animation/clip_253/name="" -animation/clip_253/start_frame=0 -animation/clip_253/end_frame=0 -animation/clip_253/loops=false -animation/clip_254/name="" -animation/clip_254/start_frame=0 -animation/clip_254/end_frame=0 -animation/clip_254/loops=false -animation/clip_255/name="" -animation/clip_255/start_frame=0 -animation/clip_255/end_frame=0 -animation/clip_255/loops=false -animation/clip_256/name="" -animation/clip_256/start_frame=0 -animation/clip_256/end_frame=0 -animation/clip_256/loops=false +import_script/path="" +_subresources={} diff --git a/3d/rigidbody_character/models/cube.mesh b/3d/rigidbody_character/models/cube.mesh index 8e773711..7d075bc3 100644 Binary files a/3d/rigidbody_character/models/cube.mesh and b/3d/rigidbody_character/models/cube.mesh differ diff --git a/3d/rigidbody_character/models/mushroom.glb.import b/3d/rigidbody_character/models/mushroom.glb.import index 88bb9e12..9a26347f 100644 --- a/3d/rigidbody_character/models/mushroom.glb.import +++ b/3d/rigidbody_character/models/mushroom.glb.import @@ -1,7 +1,9 @@ [remap] importer="scene" +importer_version=1 type="PackedScene" +uid="uid://bonauusmt0ss" path="res://.godot/imported/mushroom.glb-32cf35844b7be6455c0c736b26eb7163.scn" [deps] @@ -14,1052 +16,13 @@ dest_files=["res://.godot/imported/mushroom.glb-32cf35844b7be6455c0c736b26eb7163 nodes/root_type="Node3D" nodes/root_name="Mushroom" nodes/root_scale=1.0 -nodes/custom_script="" -nodes/storage=0 -nodes/use_legacy_names=true -materials/location=1 -materials/storage=0 -materials/keep_on_reimport=true -meshes/octahedral_compression=true -meshes/compress=true meshes/ensure_tangents=true -meshes/storage=0 +meshes/generate_lods=true +meshes/create_shadow_meshes=true meshes/light_baking=0 meshes/lightmap_texel_size=0.1 skins/use_named_skins=true -external_files/store_in_subdir=false animation/import=true animation/fps=15 -animation/filter_script="" -animation/storage=false -animation/keep_custom_tracks=false -animation/optimizer/enabled=true -animation/optimizer/max_linear_error=0.05 -animation/optimizer/max_angular_error=0.01 -animation/optimizer/max_angle=22 -animation/optimizer/remove_unused_tracks=true -animation/clips/amount=0 -animation/clip_1/name="" -animation/clip_1/start_frame=0 -animation/clip_1/end_frame=0 -animation/clip_1/loops=false -animation/clip_2/name="" -animation/clip_2/start_frame=0 -animation/clip_2/end_frame=0 -animation/clip_2/loops=false -animation/clip_3/name="" -animation/clip_3/start_frame=0 -animation/clip_3/end_frame=0 -animation/clip_3/loops=false -animation/clip_4/name="" -animation/clip_4/start_frame=0 -animation/clip_4/end_frame=0 -animation/clip_4/loops=false -animation/clip_5/name="" -animation/clip_5/start_frame=0 -animation/clip_5/end_frame=0 -animation/clip_5/loops=false -animation/clip_6/name="" -animation/clip_6/start_frame=0 -animation/clip_6/end_frame=0 -animation/clip_6/loops=false -animation/clip_7/name="" -animation/clip_7/start_frame=0 -animation/clip_7/end_frame=0 -animation/clip_7/loops=false -animation/clip_8/name="" -animation/clip_8/start_frame=0 -animation/clip_8/end_frame=0 -animation/clip_8/loops=false -animation/clip_9/name="" -animation/clip_9/start_frame=0 -animation/clip_9/end_frame=0 -animation/clip_9/loops=false -animation/clip_10/name="" -animation/clip_10/start_frame=0 -animation/clip_10/end_frame=0 -animation/clip_10/loops=false -animation/clip_11/name="" -animation/clip_11/start_frame=0 -animation/clip_11/end_frame=0 -animation/clip_11/loops=false -animation/clip_12/name="" -animation/clip_12/start_frame=0 -animation/clip_12/end_frame=0 -animation/clip_12/loops=false -animation/clip_13/name="" -animation/clip_13/start_frame=0 -animation/clip_13/end_frame=0 -animation/clip_13/loops=false -animation/clip_14/name="" -animation/clip_14/start_frame=0 -animation/clip_14/end_frame=0 -animation/clip_14/loops=false -animation/clip_15/name="" -animation/clip_15/start_frame=0 -animation/clip_15/end_frame=0 -animation/clip_15/loops=false -animation/clip_16/name="" -animation/clip_16/start_frame=0 -animation/clip_16/end_frame=0 -animation/clip_16/loops=false -animation/clip_17/name="" -animation/clip_17/start_frame=0 -animation/clip_17/end_frame=0 -animation/clip_17/loops=false -animation/clip_18/name="" -animation/clip_18/start_frame=0 -animation/clip_18/end_frame=0 -animation/clip_18/loops=false -animation/clip_19/name="" -animation/clip_19/start_frame=0 -animation/clip_19/end_frame=0 -animation/clip_19/loops=false -animation/clip_20/name="" -animation/clip_20/start_frame=0 -animation/clip_20/end_frame=0 -animation/clip_20/loops=false -animation/clip_21/name="" -animation/clip_21/start_frame=0 -animation/clip_21/end_frame=0 -animation/clip_21/loops=false -animation/clip_22/name="" -animation/clip_22/start_frame=0 -animation/clip_22/end_frame=0 -animation/clip_22/loops=false -animation/clip_23/name="" -animation/clip_23/start_frame=0 -animation/clip_23/end_frame=0 -animation/clip_23/loops=false -animation/clip_24/name="" -animation/clip_24/start_frame=0 -animation/clip_24/end_frame=0 -animation/clip_24/loops=false -animation/clip_25/name="" -animation/clip_25/start_frame=0 -animation/clip_25/end_frame=0 -animation/clip_25/loops=false -animation/clip_26/name="" -animation/clip_26/start_frame=0 -animation/clip_26/end_frame=0 -animation/clip_26/loops=false -animation/clip_27/name="" -animation/clip_27/start_frame=0 -animation/clip_27/end_frame=0 -animation/clip_27/loops=false -animation/clip_28/name="" -animation/clip_28/start_frame=0 -animation/clip_28/end_frame=0 -animation/clip_28/loops=false -animation/clip_29/name="" -animation/clip_29/start_frame=0 -animation/clip_29/end_frame=0 -animation/clip_29/loops=false -animation/clip_30/name="" -animation/clip_30/start_frame=0 -animation/clip_30/end_frame=0 -animation/clip_30/loops=false -animation/clip_31/name="" -animation/clip_31/start_frame=0 -animation/clip_31/end_frame=0 -animation/clip_31/loops=false -animation/clip_32/name="" -animation/clip_32/start_frame=0 -animation/clip_32/end_frame=0 -animation/clip_32/loops=false -animation/clip_33/name="" -animation/clip_33/start_frame=0 -animation/clip_33/end_frame=0 -animation/clip_33/loops=false -animation/clip_34/name="" -animation/clip_34/start_frame=0 -animation/clip_34/end_frame=0 -animation/clip_34/loops=false -animation/clip_35/name="" -animation/clip_35/start_frame=0 -animation/clip_35/end_frame=0 -animation/clip_35/loops=false -animation/clip_36/name="" -animation/clip_36/start_frame=0 -animation/clip_36/end_frame=0 -animation/clip_36/loops=false -animation/clip_37/name="" -animation/clip_37/start_frame=0 -animation/clip_37/end_frame=0 -animation/clip_37/loops=false -animation/clip_38/name="" -animation/clip_38/start_frame=0 -animation/clip_38/end_frame=0 -animation/clip_38/loops=false -animation/clip_39/name="" -animation/clip_39/start_frame=0 -animation/clip_39/end_frame=0 -animation/clip_39/loops=false -animation/clip_40/name="" -animation/clip_40/start_frame=0 -animation/clip_40/end_frame=0 -animation/clip_40/loops=false -animation/clip_41/name="" -animation/clip_41/start_frame=0 -animation/clip_41/end_frame=0 -animation/clip_41/loops=false -animation/clip_42/name="" -animation/clip_42/start_frame=0 -animation/clip_42/end_frame=0 -animation/clip_42/loops=false -animation/clip_43/name="" -animation/clip_43/start_frame=0 -animation/clip_43/end_frame=0 -animation/clip_43/loops=false -animation/clip_44/name="" -animation/clip_44/start_frame=0 -animation/clip_44/end_frame=0 -animation/clip_44/loops=false -animation/clip_45/name="" -animation/clip_45/start_frame=0 -animation/clip_45/end_frame=0 -animation/clip_45/loops=false -animation/clip_46/name="" -animation/clip_46/start_frame=0 -animation/clip_46/end_frame=0 -animation/clip_46/loops=false -animation/clip_47/name="" -animation/clip_47/start_frame=0 -animation/clip_47/end_frame=0 -animation/clip_47/loops=false -animation/clip_48/name="" -animation/clip_48/start_frame=0 -animation/clip_48/end_frame=0 -animation/clip_48/loops=false -animation/clip_49/name="" -animation/clip_49/start_frame=0 -animation/clip_49/end_frame=0 -animation/clip_49/loops=false -animation/clip_50/name="" -animation/clip_50/start_frame=0 -animation/clip_50/end_frame=0 -animation/clip_50/loops=false -animation/clip_51/name="" -animation/clip_51/start_frame=0 -animation/clip_51/end_frame=0 -animation/clip_51/loops=false -animation/clip_52/name="" -animation/clip_52/start_frame=0 -animation/clip_52/end_frame=0 -animation/clip_52/loops=false -animation/clip_53/name="" -animation/clip_53/start_frame=0 -animation/clip_53/end_frame=0 -animation/clip_53/loops=false -animation/clip_54/name="" -animation/clip_54/start_frame=0 -animation/clip_54/end_frame=0 -animation/clip_54/loops=false -animation/clip_55/name="" -animation/clip_55/start_frame=0 -animation/clip_55/end_frame=0 -animation/clip_55/loops=false -animation/clip_56/name="" -animation/clip_56/start_frame=0 -animation/clip_56/end_frame=0 -animation/clip_56/loops=false -animation/clip_57/name="" -animation/clip_57/start_frame=0 -animation/clip_57/end_frame=0 -animation/clip_57/loops=false -animation/clip_58/name="" -animation/clip_58/start_frame=0 -animation/clip_58/end_frame=0 -animation/clip_58/loops=false -animation/clip_59/name="" -animation/clip_59/start_frame=0 -animation/clip_59/end_frame=0 -animation/clip_59/loops=false -animation/clip_60/name="" -animation/clip_60/start_frame=0 -animation/clip_60/end_frame=0 -animation/clip_60/loops=false -animation/clip_61/name="" -animation/clip_61/start_frame=0 -animation/clip_61/end_frame=0 -animation/clip_61/loops=false -animation/clip_62/name="" -animation/clip_62/start_frame=0 -animation/clip_62/end_frame=0 -animation/clip_62/loops=false -animation/clip_63/name="" -animation/clip_63/start_frame=0 -animation/clip_63/end_frame=0 -animation/clip_63/loops=false -animation/clip_64/name="" -animation/clip_64/start_frame=0 -animation/clip_64/end_frame=0 -animation/clip_64/loops=false -animation/clip_65/name="" -animation/clip_65/start_frame=0 -animation/clip_65/end_frame=0 -animation/clip_65/loops=false -animation/clip_66/name="" -animation/clip_66/start_frame=0 -animation/clip_66/end_frame=0 -animation/clip_66/loops=false -animation/clip_67/name="" -animation/clip_67/start_frame=0 -animation/clip_67/end_frame=0 -animation/clip_67/loops=false -animation/clip_68/name="" -animation/clip_68/start_frame=0 -animation/clip_68/end_frame=0 -animation/clip_68/loops=false -animation/clip_69/name="" -animation/clip_69/start_frame=0 -animation/clip_69/end_frame=0 -animation/clip_69/loops=false -animation/clip_70/name="" -animation/clip_70/start_frame=0 -animation/clip_70/end_frame=0 -animation/clip_70/loops=false -animation/clip_71/name="" -animation/clip_71/start_frame=0 -animation/clip_71/end_frame=0 -animation/clip_71/loops=false -animation/clip_72/name="" -animation/clip_72/start_frame=0 -animation/clip_72/end_frame=0 -animation/clip_72/loops=false -animation/clip_73/name="" -animation/clip_73/start_frame=0 -animation/clip_73/end_frame=0 -animation/clip_73/loops=false -animation/clip_74/name="" -animation/clip_74/start_frame=0 -animation/clip_74/end_frame=0 -animation/clip_74/loops=false -animation/clip_75/name="" -animation/clip_75/start_frame=0 -animation/clip_75/end_frame=0 -animation/clip_75/loops=false -animation/clip_76/name="" -animation/clip_76/start_frame=0 -animation/clip_76/end_frame=0 -animation/clip_76/loops=false -animation/clip_77/name="" -animation/clip_77/start_frame=0 -animation/clip_77/end_frame=0 -animation/clip_77/loops=false -animation/clip_78/name="" -animation/clip_78/start_frame=0 -animation/clip_78/end_frame=0 -animation/clip_78/loops=false -animation/clip_79/name="" -animation/clip_79/start_frame=0 -animation/clip_79/end_frame=0 -animation/clip_79/loops=false -animation/clip_80/name="" -animation/clip_80/start_frame=0 -animation/clip_80/end_frame=0 -animation/clip_80/loops=false -animation/clip_81/name="" -animation/clip_81/start_frame=0 -animation/clip_81/end_frame=0 -animation/clip_81/loops=false -animation/clip_82/name="" -animation/clip_82/start_frame=0 -animation/clip_82/end_frame=0 -animation/clip_82/loops=false -animation/clip_83/name="" -animation/clip_83/start_frame=0 -animation/clip_83/end_frame=0 -animation/clip_83/loops=false -animation/clip_84/name="" -animation/clip_84/start_frame=0 -animation/clip_84/end_frame=0 -animation/clip_84/loops=false -animation/clip_85/name="" -animation/clip_85/start_frame=0 -animation/clip_85/end_frame=0 -animation/clip_85/loops=false -animation/clip_86/name="" -animation/clip_86/start_frame=0 -animation/clip_86/end_frame=0 -animation/clip_86/loops=false -animation/clip_87/name="" -animation/clip_87/start_frame=0 -animation/clip_87/end_frame=0 -animation/clip_87/loops=false -animation/clip_88/name="" -animation/clip_88/start_frame=0 -animation/clip_88/end_frame=0 -animation/clip_88/loops=false -animation/clip_89/name="" -animation/clip_89/start_frame=0 -animation/clip_89/end_frame=0 -animation/clip_89/loops=false -animation/clip_90/name="" -animation/clip_90/start_frame=0 -animation/clip_90/end_frame=0 -animation/clip_90/loops=false -animation/clip_91/name="" -animation/clip_91/start_frame=0 -animation/clip_91/end_frame=0 -animation/clip_91/loops=false -animation/clip_92/name="" -animation/clip_92/start_frame=0 -animation/clip_92/end_frame=0 -animation/clip_92/loops=false -animation/clip_93/name="" -animation/clip_93/start_frame=0 -animation/clip_93/end_frame=0 -animation/clip_93/loops=false -animation/clip_94/name="" -animation/clip_94/start_frame=0 -animation/clip_94/end_frame=0 -animation/clip_94/loops=false -animation/clip_95/name="" -animation/clip_95/start_frame=0 -animation/clip_95/end_frame=0 -animation/clip_95/loops=false -animation/clip_96/name="" -animation/clip_96/start_frame=0 -animation/clip_96/end_frame=0 -animation/clip_96/loops=false -animation/clip_97/name="" -animation/clip_97/start_frame=0 -animation/clip_97/end_frame=0 -animation/clip_97/loops=false -animation/clip_98/name="" -animation/clip_98/start_frame=0 -animation/clip_98/end_frame=0 -animation/clip_98/loops=false -animation/clip_99/name="" -animation/clip_99/start_frame=0 -animation/clip_99/end_frame=0 -animation/clip_99/loops=false -animation/clip_100/name="" -animation/clip_100/start_frame=0 -animation/clip_100/end_frame=0 -animation/clip_100/loops=false -animation/clip_101/name="" -animation/clip_101/start_frame=0 -animation/clip_101/end_frame=0 -animation/clip_101/loops=false -animation/clip_102/name="" -animation/clip_102/start_frame=0 -animation/clip_102/end_frame=0 -animation/clip_102/loops=false -animation/clip_103/name="" -animation/clip_103/start_frame=0 -animation/clip_103/end_frame=0 -animation/clip_103/loops=false -animation/clip_104/name="" -animation/clip_104/start_frame=0 -animation/clip_104/end_frame=0 -animation/clip_104/loops=false -animation/clip_105/name="" -animation/clip_105/start_frame=0 -animation/clip_105/end_frame=0 -animation/clip_105/loops=false -animation/clip_106/name="" -animation/clip_106/start_frame=0 -animation/clip_106/end_frame=0 -animation/clip_106/loops=false -animation/clip_107/name="" -animation/clip_107/start_frame=0 -animation/clip_107/end_frame=0 -animation/clip_107/loops=false -animation/clip_108/name="" -animation/clip_108/start_frame=0 -animation/clip_108/end_frame=0 -animation/clip_108/loops=false -animation/clip_109/name="" -animation/clip_109/start_frame=0 -animation/clip_109/end_frame=0 -animation/clip_109/loops=false -animation/clip_110/name="" -animation/clip_110/start_frame=0 -animation/clip_110/end_frame=0 -animation/clip_110/loops=false -animation/clip_111/name="" -animation/clip_111/start_frame=0 -animation/clip_111/end_frame=0 -animation/clip_111/loops=false -animation/clip_112/name="" -animation/clip_112/start_frame=0 -animation/clip_112/end_frame=0 -animation/clip_112/loops=false -animation/clip_113/name="" -animation/clip_113/start_frame=0 -animation/clip_113/end_frame=0 -animation/clip_113/loops=false -animation/clip_114/name="" -animation/clip_114/start_frame=0 -animation/clip_114/end_frame=0 -animation/clip_114/loops=false -animation/clip_115/name="" -animation/clip_115/start_frame=0 -animation/clip_115/end_frame=0 -animation/clip_115/loops=false -animation/clip_116/name="" -animation/clip_116/start_frame=0 -animation/clip_116/end_frame=0 -animation/clip_116/loops=false -animation/clip_117/name="" -animation/clip_117/start_frame=0 -animation/clip_117/end_frame=0 -animation/clip_117/loops=false -animation/clip_118/name="" -animation/clip_118/start_frame=0 -animation/clip_118/end_frame=0 -animation/clip_118/loops=false -animation/clip_119/name="" -animation/clip_119/start_frame=0 -animation/clip_119/end_frame=0 -animation/clip_119/loops=false -animation/clip_120/name="" -animation/clip_120/start_frame=0 -animation/clip_120/end_frame=0 -animation/clip_120/loops=false -animation/clip_121/name="" -animation/clip_121/start_frame=0 -animation/clip_121/end_frame=0 -animation/clip_121/loops=false -animation/clip_122/name="" -animation/clip_122/start_frame=0 -animation/clip_122/end_frame=0 -animation/clip_122/loops=false -animation/clip_123/name="" -animation/clip_123/start_frame=0 -animation/clip_123/end_frame=0 -animation/clip_123/loops=false -animation/clip_124/name="" -animation/clip_124/start_frame=0 -animation/clip_124/end_frame=0 -animation/clip_124/loops=false -animation/clip_125/name="" -animation/clip_125/start_frame=0 -animation/clip_125/end_frame=0 -animation/clip_125/loops=false -animation/clip_126/name="" -animation/clip_126/start_frame=0 -animation/clip_126/end_frame=0 -animation/clip_126/loops=false -animation/clip_127/name="" -animation/clip_127/start_frame=0 -animation/clip_127/end_frame=0 -animation/clip_127/loops=false -animation/clip_128/name="" -animation/clip_128/start_frame=0 -animation/clip_128/end_frame=0 -animation/clip_128/loops=false -animation/clip_129/name="" -animation/clip_129/start_frame=0 -animation/clip_129/end_frame=0 -animation/clip_129/loops=false -animation/clip_130/name="" -animation/clip_130/start_frame=0 -animation/clip_130/end_frame=0 -animation/clip_130/loops=false -animation/clip_131/name="" -animation/clip_131/start_frame=0 -animation/clip_131/end_frame=0 -animation/clip_131/loops=false -animation/clip_132/name="" -animation/clip_132/start_frame=0 -animation/clip_132/end_frame=0 -animation/clip_132/loops=false -animation/clip_133/name="" -animation/clip_133/start_frame=0 -animation/clip_133/end_frame=0 -animation/clip_133/loops=false -animation/clip_134/name="" -animation/clip_134/start_frame=0 -animation/clip_134/end_frame=0 -animation/clip_134/loops=false -animation/clip_135/name="" -animation/clip_135/start_frame=0 -animation/clip_135/end_frame=0 -animation/clip_135/loops=false -animation/clip_136/name="" -animation/clip_136/start_frame=0 -animation/clip_136/end_frame=0 -animation/clip_136/loops=false -animation/clip_137/name="" -animation/clip_137/start_frame=0 -animation/clip_137/end_frame=0 -animation/clip_137/loops=false -animation/clip_138/name="" -animation/clip_138/start_frame=0 -animation/clip_138/end_frame=0 -animation/clip_138/loops=false -animation/clip_139/name="" -animation/clip_139/start_frame=0 -animation/clip_139/end_frame=0 -animation/clip_139/loops=false -animation/clip_140/name="" -animation/clip_140/start_frame=0 -animation/clip_140/end_frame=0 -animation/clip_140/loops=false -animation/clip_141/name="" -animation/clip_141/start_frame=0 -animation/clip_141/end_frame=0 -animation/clip_141/loops=false -animation/clip_142/name="" -animation/clip_142/start_frame=0 -animation/clip_142/end_frame=0 -animation/clip_142/loops=false -animation/clip_143/name="" -animation/clip_143/start_frame=0 -animation/clip_143/end_frame=0 -animation/clip_143/loops=false -animation/clip_144/name="" -animation/clip_144/start_frame=0 -animation/clip_144/end_frame=0 -animation/clip_144/loops=false -animation/clip_145/name="" -animation/clip_145/start_frame=0 -animation/clip_145/end_frame=0 -animation/clip_145/loops=false -animation/clip_146/name="" -animation/clip_146/start_frame=0 -animation/clip_146/end_frame=0 -animation/clip_146/loops=false -animation/clip_147/name="" -animation/clip_147/start_frame=0 -animation/clip_147/end_frame=0 -animation/clip_147/loops=false -animation/clip_148/name="" -animation/clip_148/start_frame=0 -animation/clip_148/end_frame=0 -animation/clip_148/loops=false -animation/clip_149/name="" -animation/clip_149/start_frame=0 -animation/clip_149/end_frame=0 -animation/clip_149/loops=false -animation/clip_150/name="" -animation/clip_150/start_frame=0 -animation/clip_150/end_frame=0 -animation/clip_150/loops=false -animation/clip_151/name="" -animation/clip_151/start_frame=0 -animation/clip_151/end_frame=0 -animation/clip_151/loops=false -animation/clip_152/name="" -animation/clip_152/start_frame=0 -animation/clip_152/end_frame=0 -animation/clip_152/loops=false -animation/clip_153/name="" -animation/clip_153/start_frame=0 -animation/clip_153/end_frame=0 -animation/clip_153/loops=false -animation/clip_154/name="" -animation/clip_154/start_frame=0 -animation/clip_154/end_frame=0 -animation/clip_154/loops=false -animation/clip_155/name="" -animation/clip_155/start_frame=0 -animation/clip_155/end_frame=0 -animation/clip_155/loops=false -animation/clip_156/name="" -animation/clip_156/start_frame=0 -animation/clip_156/end_frame=0 -animation/clip_156/loops=false -animation/clip_157/name="" -animation/clip_157/start_frame=0 -animation/clip_157/end_frame=0 -animation/clip_157/loops=false -animation/clip_158/name="" -animation/clip_158/start_frame=0 -animation/clip_158/end_frame=0 -animation/clip_158/loops=false -animation/clip_159/name="" -animation/clip_159/start_frame=0 -animation/clip_159/end_frame=0 -animation/clip_159/loops=false -animation/clip_160/name="" -animation/clip_160/start_frame=0 -animation/clip_160/end_frame=0 -animation/clip_160/loops=false -animation/clip_161/name="" -animation/clip_161/start_frame=0 -animation/clip_161/end_frame=0 -animation/clip_161/loops=false -animation/clip_162/name="" -animation/clip_162/start_frame=0 -animation/clip_162/end_frame=0 -animation/clip_162/loops=false -animation/clip_163/name="" -animation/clip_163/start_frame=0 -animation/clip_163/end_frame=0 -animation/clip_163/loops=false -animation/clip_164/name="" -animation/clip_164/start_frame=0 -animation/clip_164/end_frame=0 -animation/clip_164/loops=false -animation/clip_165/name="" -animation/clip_165/start_frame=0 -animation/clip_165/end_frame=0 -animation/clip_165/loops=false -animation/clip_166/name="" -animation/clip_166/start_frame=0 -animation/clip_166/end_frame=0 -animation/clip_166/loops=false -animation/clip_167/name="" -animation/clip_167/start_frame=0 -animation/clip_167/end_frame=0 -animation/clip_167/loops=false -animation/clip_168/name="" -animation/clip_168/start_frame=0 -animation/clip_168/end_frame=0 -animation/clip_168/loops=false -animation/clip_169/name="" -animation/clip_169/start_frame=0 -animation/clip_169/end_frame=0 -animation/clip_169/loops=false -animation/clip_170/name="" -animation/clip_170/start_frame=0 -animation/clip_170/end_frame=0 -animation/clip_170/loops=false -animation/clip_171/name="" -animation/clip_171/start_frame=0 -animation/clip_171/end_frame=0 -animation/clip_171/loops=false -animation/clip_172/name="" -animation/clip_172/start_frame=0 -animation/clip_172/end_frame=0 -animation/clip_172/loops=false -animation/clip_173/name="" -animation/clip_173/start_frame=0 -animation/clip_173/end_frame=0 -animation/clip_173/loops=false -animation/clip_174/name="" -animation/clip_174/start_frame=0 -animation/clip_174/end_frame=0 -animation/clip_174/loops=false -animation/clip_175/name="" -animation/clip_175/start_frame=0 -animation/clip_175/end_frame=0 -animation/clip_175/loops=false -animation/clip_176/name="" -animation/clip_176/start_frame=0 -animation/clip_176/end_frame=0 -animation/clip_176/loops=false -animation/clip_177/name="" -animation/clip_177/start_frame=0 -animation/clip_177/end_frame=0 -animation/clip_177/loops=false -animation/clip_178/name="" -animation/clip_178/start_frame=0 -animation/clip_178/end_frame=0 -animation/clip_178/loops=false -animation/clip_179/name="" -animation/clip_179/start_frame=0 -animation/clip_179/end_frame=0 -animation/clip_179/loops=false -animation/clip_180/name="" -animation/clip_180/start_frame=0 -animation/clip_180/end_frame=0 -animation/clip_180/loops=false -animation/clip_181/name="" -animation/clip_181/start_frame=0 -animation/clip_181/end_frame=0 -animation/clip_181/loops=false -animation/clip_182/name="" -animation/clip_182/start_frame=0 -animation/clip_182/end_frame=0 -animation/clip_182/loops=false -animation/clip_183/name="" -animation/clip_183/start_frame=0 -animation/clip_183/end_frame=0 -animation/clip_183/loops=false -animation/clip_184/name="" -animation/clip_184/start_frame=0 -animation/clip_184/end_frame=0 -animation/clip_184/loops=false -animation/clip_185/name="" -animation/clip_185/start_frame=0 -animation/clip_185/end_frame=0 -animation/clip_185/loops=false -animation/clip_186/name="" -animation/clip_186/start_frame=0 -animation/clip_186/end_frame=0 -animation/clip_186/loops=false -animation/clip_187/name="" -animation/clip_187/start_frame=0 -animation/clip_187/end_frame=0 -animation/clip_187/loops=false -animation/clip_188/name="" -animation/clip_188/start_frame=0 -animation/clip_188/end_frame=0 -animation/clip_188/loops=false -animation/clip_189/name="" -animation/clip_189/start_frame=0 -animation/clip_189/end_frame=0 -animation/clip_189/loops=false -animation/clip_190/name="" -animation/clip_190/start_frame=0 -animation/clip_190/end_frame=0 -animation/clip_190/loops=false -animation/clip_191/name="" -animation/clip_191/start_frame=0 -animation/clip_191/end_frame=0 -animation/clip_191/loops=false -animation/clip_192/name="" -animation/clip_192/start_frame=0 -animation/clip_192/end_frame=0 -animation/clip_192/loops=false -animation/clip_193/name="" -animation/clip_193/start_frame=0 -animation/clip_193/end_frame=0 -animation/clip_193/loops=false -animation/clip_194/name="" -animation/clip_194/start_frame=0 -animation/clip_194/end_frame=0 -animation/clip_194/loops=false -animation/clip_195/name="" -animation/clip_195/start_frame=0 -animation/clip_195/end_frame=0 -animation/clip_195/loops=false -animation/clip_196/name="" -animation/clip_196/start_frame=0 -animation/clip_196/end_frame=0 -animation/clip_196/loops=false -animation/clip_197/name="" -animation/clip_197/start_frame=0 -animation/clip_197/end_frame=0 -animation/clip_197/loops=false -animation/clip_198/name="" -animation/clip_198/start_frame=0 -animation/clip_198/end_frame=0 -animation/clip_198/loops=false -animation/clip_199/name="" -animation/clip_199/start_frame=0 -animation/clip_199/end_frame=0 -animation/clip_199/loops=false -animation/clip_200/name="" -animation/clip_200/start_frame=0 -animation/clip_200/end_frame=0 -animation/clip_200/loops=false -animation/clip_201/name="" -animation/clip_201/start_frame=0 -animation/clip_201/end_frame=0 -animation/clip_201/loops=false -animation/clip_202/name="" -animation/clip_202/start_frame=0 -animation/clip_202/end_frame=0 -animation/clip_202/loops=false -animation/clip_203/name="" -animation/clip_203/start_frame=0 -animation/clip_203/end_frame=0 -animation/clip_203/loops=false -animation/clip_204/name="" -animation/clip_204/start_frame=0 -animation/clip_204/end_frame=0 -animation/clip_204/loops=false -animation/clip_205/name="" -animation/clip_205/start_frame=0 -animation/clip_205/end_frame=0 -animation/clip_205/loops=false -animation/clip_206/name="" -animation/clip_206/start_frame=0 -animation/clip_206/end_frame=0 -animation/clip_206/loops=false -animation/clip_207/name="" -animation/clip_207/start_frame=0 -animation/clip_207/end_frame=0 -animation/clip_207/loops=false -animation/clip_208/name="" -animation/clip_208/start_frame=0 -animation/clip_208/end_frame=0 -animation/clip_208/loops=false -animation/clip_209/name="" -animation/clip_209/start_frame=0 -animation/clip_209/end_frame=0 -animation/clip_209/loops=false -animation/clip_210/name="" -animation/clip_210/start_frame=0 -animation/clip_210/end_frame=0 -animation/clip_210/loops=false -animation/clip_211/name="" -animation/clip_211/start_frame=0 -animation/clip_211/end_frame=0 -animation/clip_211/loops=false -animation/clip_212/name="" -animation/clip_212/start_frame=0 -animation/clip_212/end_frame=0 -animation/clip_212/loops=false -animation/clip_213/name="" -animation/clip_213/start_frame=0 -animation/clip_213/end_frame=0 -animation/clip_213/loops=false -animation/clip_214/name="" -animation/clip_214/start_frame=0 -animation/clip_214/end_frame=0 -animation/clip_214/loops=false -animation/clip_215/name="" -animation/clip_215/start_frame=0 -animation/clip_215/end_frame=0 -animation/clip_215/loops=false -animation/clip_216/name="" -animation/clip_216/start_frame=0 -animation/clip_216/end_frame=0 -animation/clip_216/loops=false -animation/clip_217/name="" -animation/clip_217/start_frame=0 -animation/clip_217/end_frame=0 -animation/clip_217/loops=false -animation/clip_218/name="" -animation/clip_218/start_frame=0 -animation/clip_218/end_frame=0 -animation/clip_218/loops=false -animation/clip_219/name="" -animation/clip_219/start_frame=0 -animation/clip_219/end_frame=0 -animation/clip_219/loops=false -animation/clip_220/name="" -animation/clip_220/start_frame=0 -animation/clip_220/end_frame=0 -animation/clip_220/loops=false -animation/clip_221/name="" -animation/clip_221/start_frame=0 -animation/clip_221/end_frame=0 -animation/clip_221/loops=false -animation/clip_222/name="" -animation/clip_222/start_frame=0 -animation/clip_222/end_frame=0 -animation/clip_222/loops=false -animation/clip_223/name="" -animation/clip_223/start_frame=0 -animation/clip_223/end_frame=0 -animation/clip_223/loops=false -animation/clip_224/name="" -animation/clip_224/start_frame=0 -animation/clip_224/end_frame=0 -animation/clip_224/loops=false -animation/clip_225/name="" -animation/clip_225/start_frame=0 -animation/clip_225/end_frame=0 -animation/clip_225/loops=false -animation/clip_226/name="" -animation/clip_226/start_frame=0 -animation/clip_226/end_frame=0 -animation/clip_226/loops=false -animation/clip_227/name="" -animation/clip_227/start_frame=0 -animation/clip_227/end_frame=0 -animation/clip_227/loops=false -animation/clip_228/name="" -animation/clip_228/start_frame=0 -animation/clip_228/end_frame=0 -animation/clip_228/loops=false -animation/clip_229/name="" -animation/clip_229/start_frame=0 -animation/clip_229/end_frame=0 -animation/clip_229/loops=false -animation/clip_230/name="" -animation/clip_230/start_frame=0 -animation/clip_230/end_frame=0 -animation/clip_230/loops=false -animation/clip_231/name="" -animation/clip_231/start_frame=0 -animation/clip_231/end_frame=0 -animation/clip_231/loops=false -animation/clip_232/name="" -animation/clip_232/start_frame=0 -animation/clip_232/end_frame=0 -animation/clip_232/loops=false -animation/clip_233/name="" -animation/clip_233/start_frame=0 -animation/clip_233/end_frame=0 -animation/clip_233/loops=false -animation/clip_234/name="" -animation/clip_234/start_frame=0 -animation/clip_234/end_frame=0 -animation/clip_234/loops=false -animation/clip_235/name="" -animation/clip_235/start_frame=0 -animation/clip_235/end_frame=0 -animation/clip_235/loops=false -animation/clip_236/name="" -animation/clip_236/start_frame=0 -animation/clip_236/end_frame=0 -animation/clip_236/loops=false -animation/clip_237/name="" -animation/clip_237/start_frame=0 -animation/clip_237/end_frame=0 -animation/clip_237/loops=false -animation/clip_238/name="" -animation/clip_238/start_frame=0 -animation/clip_238/end_frame=0 -animation/clip_238/loops=false -animation/clip_239/name="" -animation/clip_239/start_frame=0 -animation/clip_239/end_frame=0 -animation/clip_239/loops=false -animation/clip_240/name="" -animation/clip_240/start_frame=0 -animation/clip_240/end_frame=0 -animation/clip_240/loops=false -animation/clip_241/name="" -animation/clip_241/start_frame=0 -animation/clip_241/end_frame=0 -animation/clip_241/loops=false -animation/clip_242/name="" -animation/clip_242/start_frame=0 -animation/clip_242/end_frame=0 -animation/clip_242/loops=false -animation/clip_243/name="" -animation/clip_243/start_frame=0 -animation/clip_243/end_frame=0 -animation/clip_243/loops=false -animation/clip_244/name="" -animation/clip_244/start_frame=0 -animation/clip_244/end_frame=0 -animation/clip_244/loops=false -animation/clip_245/name="" -animation/clip_245/start_frame=0 -animation/clip_245/end_frame=0 -animation/clip_245/loops=false -animation/clip_246/name="" -animation/clip_246/start_frame=0 -animation/clip_246/end_frame=0 -animation/clip_246/loops=false -animation/clip_247/name="" -animation/clip_247/start_frame=0 -animation/clip_247/end_frame=0 -animation/clip_247/loops=false -animation/clip_248/name="" -animation/clip_248/start_frame=0 -animation/clip_248/end_frame=0 -animation/clip_248/loops=false -animation/clip_249/name="" -animation/clip_249/start_frame=0 -animation/clip_249/end_frame=0 -animation/clip_249/loops=false -animation/clip_250/name="" -animation/clip_250/start_frame=0 -animation/clip_250/end_frame=0 -animation/clip_250/loops=false -animation/clip_251/name="" -animation/clip_251/start_frame=0 -animation/clip_251/end_frame=0 -animation/clip_251/loops=false -animation/clip_252/name="" -animation/clip_252/start_frame=0 -animation/clip_252/end_frame=0 -animation/clip_252/loops=false -animation/clip_253/name="" -animation/clip_253/start_frame=0 -animation/clip_253/end_frame=0 -animation/clip_253/loops=false -animation/clip_254/name="" -animation/clip_254/start_frame=0 -animation/clip_254/end_frame=0 -animation/clip_254/loops=false -animation/clip_255/name="" -animation/clip_255/start_frame=0 -animation/clip_255/end_frame=0 -animation/clip_255/loops=false -animation/clip_256/name="" -animation/clip_256/start_frame=0 -animation/clip_256/end_frame=0 -animation/clip_256/loops=false +import_script/path="" +_subresources={} diff --git a/3d/rigidbody_character/models/white_wood.png.import b/3d/rigidbody_character/models/white_wood.png.import index ad284fef..a489954d 100644 --- a/3d/rigidbody_character/models/white_wood.png.import +++ b/3d/rigidbody_character/models/white_wood.png.import @@ -1,38 +1,35 @@ [remap] importer="texture" -type="StreamTexture2D" -path.s3tc="res://.godot/imported/white_wood.png-821b7bf9b3881778c9bff1c965d8a87c.s3tc.stex" -path.etc2="res://.godot/imported/white_wood.png-821b7bf9b3881778c9bff1c965d8a87c.etc2.stex" -path.etc="res://.godot/imported/white_wood.png-821b7bf9b3881778c9bff1c965d8a87c.etc.stex" +type="CompressedTexture2D" +uid="uid://5wiey7d4yffc" +path.s3tc="res://.godot/imported/white_wood.png-821b7bf9b3881778c9bff1c965d8a87c.s3tc.ctex" +path.etc2="res://.godot/imported/white_wood.png-821b7bf9b3881778c9bff1c965d8a87c.etc2.ctex" metadata={ -"imported_formats": ["s3tc", "etc2", "etc"], +"imported_formats": ["s3tc", "etc2"], "vram_texture": true } [deps] source_file="res://models/white_wood.png" -dest_files=["res://.godot/imported/white_wood.png-821b7bf9b3881778c9bff1c965d8a87c.s3tc.stex", "res://.godot/imported/white_wood.png-821b7bf9b3881778c9bff1c965d8a87c.etc2.stex", "res://.godot/imported/white_wood.png-821b7bf9b3881778c9bff1c965d8a87c.etc.stex"] +dest_files=["res://.godot/imported/white_wood.png-821b7bf9b3881778c9bff1c965d8a87c.s3tc.ctex", "res://.godot/imported/white_wood.png-821b7bf9b3881778c9bff1c965d8a87c.etc2.ctex"] [params] compress/mode=2 compress/lossy_quality=0.7 -compress/hdr_mode=0 +compress/hdr_compression=1 compress/bptc_ldr=0 compress/normal_map=0 -flags/repeat=true -flags/filter=true -flags/mipmaps=true -flags/anisotropic=true -flags/srgb=1 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" process/fix_alpha_border=true process/premult_alpha=false -process/HDR_as_SRGB=false -process/invert_color=false process/normal_map_invert_y=false -stream=false -size_limit=0 -detect_3d=false -svg/scale=1.0 +process/hdr_as_srgb=false +process/size_limit=0 +detect_3d/compress_to=0 diff --git a/3d/rigidbody_character/player/cubio.gd b/3d/rigidbody_character/player/cubio.gd index 014ddc88..b5cab315 100644 --- a/3d/rigidbody_character/player/cubio.gd +++ b/3d/rigidbody_character/player/cubio.gd @@ -18,14 +18,15 @@ func _physics_process(_delta): # Get the camera's transform basis, but remove the X rotation such # that the Y axis is up and Z is horizontal. var cam_basis = camera.global_transform.basis - var basis = cam_basis.rotated(cam_basis.x, -cam_basis.get_euler().x) - dir = basis * (dir) + cam_basis = cam_basis.rotated(cam_basis.x, -cam_basis.get_euler().x) + dir = cam_basis * dir - apply_central_impulse(dir.normalized() / 10) - - # Jumping code. - if on_ground() and Input.is_action_pressed(&"jump"): - apply_central_impulse(Vector3.UP) + apply_central_impulse(dir.normalized() / 20) + if on_ground(): + apply_central_impulse(dir.normalized() / 6) + # Jumping code. + if Input.is_action_pressed(&"jump"): + apply_central_impulse(Vector3.UP * 2) # Test if there is a body below the player. diff --git a/3d/rigidbody_character/player/cubio.tscn b/3d/rigidbody_character/player/cubio.tscn index f3e9487f..5039477e 100644 --- a/3d/rigidbody_character/player/cubio.tscn +++ b/3d/rigidbody_character/player/cubio.tscn @@ -1,35 +1,33 @@ -[gd_scene load_steps=6 format=2] +[gd_scene load_steps=6 format=3 uid="uid://cbvuesb1ptdh4"] -[ext_resource path="res://player/cubio.gd" type="Script" id=1] -[ext_resource path="res://player/follow_camera.gd" type="Script" id=3] -[ext_resource path="res://models/white_cube_material.tres" type="Material" id=4] +[ext_resource type="Script" path="res://player/cubio.gd" id="1"] +[ext_resource type="Script" path="res://player/follow_camera.gd" id="3"] +[ext_resource type="Material" path="res://models/white_cube_material.tres" id="4"] -[sub_resource type="CapsuleMesh" id=6] -radius = 0.5 -mid_height = 0.7 +[sub_resource type="CapsuleMesh" id="6"] +height = 1.7 -[sub_resource type="CapsuleShape3D" id=5] -radius = 0.5 -height = 0.7 +[sub_resource type="CapsuleShape3D" id="5"] +height = 1.7 [node name="RigidDynamicBody3D" type="RigidDynamicBody3D"] -can_sleep = false axis_lock_angular_x = true axis_lock_angular_y = true axis_lock_angular_z = true +center_of_mass_mode = 1 +can_sleep = false +linear_damp_mode = 1 linear_damp = 0.5 -script = ExtResource( 1 ) +script = ExtResource( "1" ) [node name="BoxMesh" type="MeshInstance3D" parent="."] _import_path = NodePath("cube-col") -transform = Transform3D(0.9, 0, 0, 0, -3.93403e-08, -0.9, 0, 0.9, -3.93403e-08, 0, 0, 0) -mesh = SubResource( 6 ) +mesh = SubResource( "6" ) skeleton = NodePath("") -surface_material_override/0 = ExtResource( 4 ) +surface_material_override/0 = ExtResource( "4" ) [node name="CollisionShape3D" type="CollisionShape3D" parent="."] -transform = Transform3D(1, 0, 0, 0, -4.37114e-08, -1, 0, 1, -4.37114e-08, 0, 0, 0) -shape = SubResource( 5 ) +shape = SubResource( "5" ) [node name="Target" type="Node3D" parent="."] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0.8, 0) @@ -39,7 +37,7 @@ transform = Transform3D(0.34202, -0.321394, 0.883022, 0, 0.939693, 0.34202, -0.9 fov = 74.0 near = 0.1 far = 50.0 -script = ExtResource( 3 ) +script = ExtResource( "3" ) [node name="WinText" type="CenterContainer" parent="."] visible = false @@ -54,11 +52,11 @@ offset_bottom = 50.0 [node name="TextLabel" type="Label" parent="WinText/Holder"] offset_left = -354.0 -offset_bottom = 14.0 -rect_scale = Vector2(2, 2) +offset_right = 354.0 +offset_bottom = 50.0 +theme_override_font_sizes/font_size = 20 text = "Thank You, Cubio! But the Princess is in Another Demo!" -align = 1 -valign = 1 +horizontal_alignment = 1 +vertical_alignment = 1 [node name="RayCast3D" type="RayCast3D" parent="."] -enabled = true diff --git a/3d/rigidbody_character/project.godot b/3d/rigidbody_character/project.godot index 43029675..d143c79f 100644 --- a/3d/rigidbody_character/project.godot +++ b/3d/rigidbody_character/project.godot @@ -6,15 +6,16 @@ ; [section] ; section goes between [] ; param=value ; assign values to parameters -config_version=4 +config_version=5 [application] -config/name="RigidDynamicBody3D Character 3D" +config/name="RigidBody Character 3D" config/description="Rigidbody character demo for 3D using a capsule for the character. " run/main_scene="res://level.tscn" config/icon="res://icon.png" +config/features=PackedStringArray("4.0") [gdnative] diff --git a/3d/truck_town/Images/cement.png.import b/3d/truck_town/Images/cement.png.import index c05b235f..09da0721 100644 --- a/3d/truck_town/Images/cement.png.import +++ b/3d/truck_town/Images/cement.png.import @@ -1,37 +1,35 @@ [remap] importer="texture" -type="StreamTexture2D" -path.s3tc="res://.godot/imported/cement.png-702c83258feb3e054c70d5eef03c8880.s3tc.stex" -path.etc="res://.godot/imported/cement.png-702c83258feb3e054c70d5eef03c8880.etc.stex" +type="CompressedTexture2D" +uid="uid://deeixbwehify0" +path.s3tc="res://.godot/imported/cement.png-702c83258feb3e054c70d5eef03c8880.s3tc.ctex" +path.etc2="res://.godot/imported/cement.png-702c83258feb3e054c70d5eef03c8880.etc2.ctex" metadata={ -"imported_formats": ["s3tc", "etc"], +"imported_formats": ["s3tc", "etc2"], "vram_texture": true } [deps] source_file="res://Images/cement.png" -dest_files=["res://.godot/imported/cement.png-702c83258feb3e054c70d5eef03c8880.s3tc.stex", "res://.godot/imported/cement.png-702c83258feb3e054c70d5eef03c8880.etc.stex"] +dest_files=["res://.godot/imported/cement.png-702c83258feb3e054c70d5eef03c8880.s3tc.ctex", "res://.godot/imported/cement.png-702c83258feb3e054c70d5eef03c8880.etc2.ctex"] [params] compress/mode=2 compress/lossy_quality=0.7 -compress/hdr_mode=0 +compress/hdr_compression=1 compress/bptc_ldr=0 compress/normal_map=0 -flags/repeat=true -flags/filter=true -flags/mipmaps=true -flags/anisotropic=true -flags/srgb=1 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" process/fix_alpha_border=true process/premult_alpha=false -process/HDR_as_SRGB=false -process/invert_color=false process/normal_map_invert_y=false -stream=false -size_limit=0 -detect_3d=false -svg/scale=1.0 +process/hdr_as_srgb=false +process/size_limit=0 +detect_3d/compress_to=0 diff --git a/3d/truck_town/Images/choose_tow.png.import b/3d/truck_town/Images/choose_tow.png.import index 81734094..9ed2d309 100644 --- a/3d/truck_town/Images/choose_tow.png.import +++ b/3d/truck_town/Images/choose_tow.png.import @@ -1,8 +1,9 @@ [remap] importer="texture" -type="StreamTexture2D" -path="res://.godot/imported/choose_tow.png-44e07473d53f066833ce9f8293b279c2.stex" +type="CompressedTexture2D" +uid="uid://de7itkxhl0u28" +path="res://.godot/imported/choose_tow.png-44e07473d53f066833ce9f8293b279c2.ctex" metadata={ "vram_texture": false } @@ -10,26 +11,23 @@ metadata={ [deps] source_file="res://Images/choose_tow.png" -dest_files=["res://.godot/imported/choose_tow.png-44e07473d53f066833ce9f8293b279c2.stex"] +dest_files=["res://.godot/imported/choose_tow.png-44e07473d53f066833ce9f8293b279c2.ctex"] [params] compress/mode=0 compress/lossy_quality=0.7 -compress/hdr_mode=0 +compress/hdr_compression=1 compress/bptc_ldr=0 compress/normal_map=0 -flags/repeat=0 -flags/filter=true -flags/mipmaps=false -flags/anisotropic=false -flags/srgb=2 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" process/fix_alpha_border=true process/premult_alpha=false -process/HDR_as_SRGB=false -process/invert_color=false process/normal_map_invert_y=false -stream=false -size_limit=0 -detect_3d=true -svg/scale=1.0 +process/hdr_as_srgb=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/3d/truck_town/Images/choose_trailer.png.import b/3d/truck_town/Images/choose_trailer.png.import index a0e0f5cf..6cc19194 100644 --- a/3d/truck_town/Images/choose_trailer.png.import +++ b/3d/truck_town/Images/choose_trailer.png.import @@ -1,8 +1,9 @@ [remap] importer="texture" -type="StreamTexture2D" -path="res://.godot/imported/choose_trailer.png-655ee091ac0a8e8db872e684d92af7c9.stex" +type="CompressedTexture2D" +uid="uid://hvkcmpdq1t0k" +path="res://.godot/imported/choose_trailer.png-655ee091ac0a8e8db872e684d92af7c9.ctex" metadata={ "vram_texture": false } @@ -10,26 +11,23 @@ metadata={ [deps] source_file="res://Images/choose_trailer.png" -dest_files=["res://.godot/imported/choose_trailer.png-655ee091ac0a8e8db872e684d92af7c9.stex"] +dest_files=["res://.godot/imported/choose_trailer.png-655ee091ac0a8e8db872e684d92af7c9.ctex"] [params] compress/mode=0 compress/lossy_quality=0.7 -compress/hdr_mode=0 +compress/hdr_compression=1 compress/bptc_ldr=0 compress/normal_map=0 -flags/repeat=0 -flags/filter=true -flags/mipmaps=false -flags/anisotropic=false -flags/srgb=2 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" process/fix_alpha_border=true process/premult_alpha=false -process/HDR_as_SRGB=false -process/invert_color=false process/normal_map_invert_y=false -stream=false -size_limit=0 -detect_3d=true -svg/scale=1.0 +process/hdr_as_srgb=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/3d/truck_town/Images/choose_van.png.import b/3d/truck_town/Images/choose_van.png.import index 673cda25..1db0dbe5 100644 --- a/3d/truck_town/Images/choose_van.png.import +++ b/3d/truck_town/Images/choose_van.png.import @@ -1,8 +1,9 @@ [remap] importer="texture" -type="StreamTexture2D" -path="res://.godot/imported/choose_van.png-7feae3acf1caead6dd28bf86a912e079.stex" +type="CompressedTexture2D" +uid="uid://bh7b4n4lg1uqt" +path="res://.godot/imported/choose_van.png-7feae3acf1caead6dd28bf86a912e079.ctex" metadata={ "vram_texture": false } @@ -10,26 +11,23 @@ metadata={ [deps] source_file="res://Images/choose_van.png" -dest_files=["res://.godot/imported/choose_van.png-7feae3acf1caead6dd28bf86a912e079.stex"] +dest_files=["res://.godot/imported/choose_van.png-7feae3acf1caead6dd28bf86a912e079.ctex"] [params] compress/mode=0 compress/lossy_quality=0.7 -compress/hdr_mode=0 +compress/hdr_compression=1 compress/bptc_ldr=0 compress/normal_map=0 -flags/repeat=0 -flags/filter=true -flags/mipmaps=false -flags/anisotropic=false -flags/srgb=2 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" process/fix_alpha_border=true process/premult_alpha=false -process/HDR_as_SRGB=false -process/invert_color=false process/normal_map_invert_y=false -stream=false -size_limit=0 -detect_3d=true -svg/scale=1.0 +process/hdr_as_srgb=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/3d/truck_town/Images/grass.png.import b/3d/truck_town/Images/grass.png.import index 1c948dd2..c302a58e 100644 --- a/3d/truck_town/Images/grass.png.import +++ b/3d/truck_town/Images/grass.png.import @@ -1,37 +1,35 @@ [remap] importer="texture" -type="StreamTexture2D" -path.s3tc="res://.godot/imported/grass.png-6ab6f9e06dc0919bf6b674e512573aeb.s3tc.stex" -path.etc="res://.godot/imported/grass.png-6ab6f9e06dc0919bf6b674e512573aeb.etc.stex" +type="CompressedTexture2D" +uid="uid://cltpie6eq33br" +path.s3tc="res://.godot/imported/grass.png-6ab6f9e06dc0919bf6b674e512573aeb.s3tc.ctex" +path.etc2="res://.godot/imported/grass.png-6ab6f9e06dc0919bf6b674e512573aeb.etc2.ctex" metadata={ -"imported_formats": ["s3tc", "etc"], +"imported_formats": ["s3tc", "etc2"], "vram_texture": true } [deps] source_file="res://Images/grass.png" -dest_files=["res://.godot/imported/grass.png-6ab6f9e06dc0919bf6b674e512573aeb.s3tc.stex", "res://.godot/imported/grass.png-6ab6f9e06dc0919bf6b674e512573aeb.etc.stex"] +dest_files=["res://.godot/imported/grass.png-6ab6f9e06dc0919bf6b674e512573aeb.s3tc.ctex", "res://.godot/imported/grass.png-6ab6f9e06dc0919bf6b674e512573aeb.etc2.ctex"] [params] compress/mode=2 compress/lossy_quality=0.7 -compress/hdr_mode=0 +compress/hdr_compression=1 compress/bptc_ldr=0 compress/normal_map=0 -flags/repeat=true -flags/filter=true -flags/mipmaps=true -flags/anisotropic=true -flags/srgb=1 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" process/fix_alpha_border=true process/premult_alpha=false -process/HDR_as_SRGB=false -process/invert_color=false process/normal_map_invert_y=false -stream=false -size_limit=0 -detect_3d=false -svg/scale=1.0 +process/hdr_as_srgb=false +process/size_limit=0 +detect_3d/compress_to=0 diff --git a/3d/truck_town/car_base.tscn b/3d/truck_town/car_base.tscn index 57dfb312..9f740460 100644 --- a/3d/truck_town/car_base.tscn +++ b/3d/truck_town/car_base.tscn @@ -1,117 +1,101 @@ -[gd_scene load_steps=13 format=2] +[gd_scene load_steps=13 format=3 uid="uid://b0r77f4cekln6"] -[ext_resource path="res://vehicle.gd" type="Script" id=1] -[ext_resource path="res://Materials/car_red_body.tres" type="Material" id=2] -[ext_resource path="res://Materials/car_window.tres" type="Material" id=3] -[ext_resource path="res://Materials/car_grill.tres" type="Material" id=4] -[ext_resource path="res://follow_camera.gd" type="Script" id=5] +[ext_resource type="Script" path="res://vehicle.gd" id="1"] +[ext_resource type="Material" path="res://Materials/car_red_body.tres" id="2"] +[ext_resource type="Material" path="res://Materials/car_window.tres" id="3"] +[ext_resource type="Material" path="res://Materials/car_grill.tres" id="4"] +[ext_resource type="Script" path="res://follow_camera.gd" id="5"] -[sub_resource type="PhysicsMaterial" id=1] +[sub_resource type="PhysicsMaterial" id="1"] friction = 0.5 -[sub_resource type="ArrayMesh" id=2] -surfaces/0 = { +[sub_resource type="ArrayMesh" id="2"] +_surfaces = [{ "aabb": AABB(-0.0614569, -0.228035, -0.228035, 0.122914, 0.45608, 0.45607), -"array_data": PackedByteArray(221, 171, 76, 51, 210, 43, 0, 60, 130, 0, 0, 0, 221, 171, 76, 51, 210, 171, 0, 60, 130, 0, 0, 0, 221, 171, 87, 49, 87, 49, 0, 60, 130, 0, 0, 0, 221, 171, 87, 49, 87, 177, 0, 60, 130, 0, 0, 0, 221, 171, 210, 43, 76, 179, 0, 60, 130, 0, 0, 0, 221, 171, 210, 171, 76, 179, 0, 60, 130, 0, 0, 0, 221, 171, 87, 177, 87, 177, 0, 60, 130, 0, 0, 0, 221, 171, 76, 179, 210, 171, 0, 60, 130, 0, 0, 0, 221, 171, 76, 179, 210, 43, 0, 60, 130, 0, 0, 0, 221, 171, 87, 177, 87, 49, 0, 60, 130, 0, 0, 0, 221, 171, 210, 171, 76, 51, 0, 60, 130, 0, 0, 0, 221, 171, 210, 43, 76, 51, 0, 60, 130, 0, 0, 0, 221, 43, 76, 51, 210, 43, 0, 60, 127, 0, 0, 0, 221, 43, 87, 49, 87, 49, 0, 60, 127, 0, 0, 0, 221, 43, 76, 51, 210, 171, 0, 60, 127, 0, 0, 0, 221, 43, 210, 43, 76, 51, 0, 60, 127, 0, 0, 0, 221, 43, 210, 171, 76, 51, 0, 60, 127, 0, 0, 0, 221, 43, 87, 177, 87, 49, 0, 60, 127, 0, 0, 0, 221, 43, 76, 179, 210, 43, 0, 60, 127, 0, 0, 0, 221, 43, 76, 179, 210, 171, 0, 60, 127, 0, 0, 0, 221, 43, 87, 177, 87, 177, 0, 60, 127, 0, 0, 0, 221, 43, 210, 171, 76, 179, 0, 60, 127, 0, 0, 0, 221, 43, 210, 43, 76, 179, 0, 60, 127, 0, 0, 0, 221, 43, 87, 49, 87, 177, 0, 60, 127, 0, 0, 0, 221, 171, 87, 177, 87, 177, 0, 60, 0, 193, 147, 0, 221, 171, 210, 171, 76, 179, 0, 60, 0, 193, 147, 0, 221, 43, 210, 171, 76, 179, 0, 60, 0, 193, 147, 0, 221, 43, 87, 177, 87, 177, 0, 60, 0, 193, 147, 0, 221, 171, 210, 43, 76, 51, 0, 60, 0, 0, 126, 0, 221, 171, 210, 171, 76, 51, 0, 60, 0, 0, 126, 0, 221, 43, 210, 171, 76, 51, 0, 60, 0, 0, 126, 0, 221, 43, 210, 43, 76, 51, 0, 60, 0, 0, 126, 0, 221, 171, 210, 171, 76, 179, 0, 60, 0, 0, 129, 0, 221, 171, 210, 43, 76, 179, 0, 60, 0, 0, 129, 0, 221, 43, 210, 43, 76, 179, 0, 60, 0, 0, 129, 0, 221, 43, 210, 171, 76, 179, 0, 60, 0, 0, 129, 0, 221, 171, 210, 171, 76, 51, 0, 60, 0, 193, 109, 0, 221, 171, 87, 177, 87, 49, 0, 60, 0, 193, 109, 0, 221, 43, 87, 177, 87, 49, 0, 60, 0, 193, 109, 0, 221, 43, 210, 171, 76, 51, 0, 60, 0, 193, 109, 0, 221, 171, 210, 43, 76, 179, 0, 60, 0, 63, 147, 0, 221, 171, 87, 49, 87, 177, 0, 60, 0, 63, 147, 0, 221, 43, 87, 49, 87, 177, 0, 60, 0, 63, 147, 0, 221, 43, 210, 43, 76, 179, 0, 60, 0, 63, 147, 0, 221, 171, 87, 177, 87, 49, 0, 60, 0, 147, 63, 0, 221, 171, 76, 179, 210, 43, 0, 60, 0, 147, 63, 0, 221, 43, 76, 179, 210, 43, 0, 60, 0, 147, 63, 0, 221, 43, 87, 177, 87, 49, 0, 60, 0, 147, 63, 0, 221, 171, 87, 49, 87, 177, 0, 60, 0, 109, 193, 0, 221, 171, 76, 51, 210, 171, 0, 60, 0, 109, 193, 0, 221, 43, 76, 51, 210, 171, 0, 60, 0, 109, 193, 0, 221, 43, 87, 49, 87, 177, 0, 60, 0, 109, 193, 0, 221, 171, 76, 179, 210, 43, 0, 60, 0, 130, 0, 0, 221, 171, 76, 179, 210, 171, 0, 60, 0, 130, 0, 0, 221, 43, 76, 179, 210, 171, 0, 60, 0, 130, 0, 0, 221, 43, 76, 179, 210, 43, 0, 60, 0, 130, 0, 0, 221, 171, 76, 51, 210, 43, 0, 60, 0, 109, 63, 0, 221, 171, 87, 49, 87, 49, 0, 60, 0, 109, 63, 0, 221, 43, 87, 49, 87, 49, 0, 60, 0, 109, 63, 0, 221, 43, 76, 51, 210, 43, 0, 60, 0, 109, 63, 0, 221, 171, 76, 51, 210, 171, 0, 60, 0, 127, 0, 0, 221, 171, 76, 51, 210, 43, 0, 60, 0, 127, 0, 0, 221, 43, 76, 51, 210, 43, 0, 60, 0, 127, 0, 0, 221, 43, 76, 51, 210, 171, 0, 60, 0, 127, 0, 0, 221, 171, 76, 179, 210, 171, 0, 60, 0, 147, 193, 0, 221, 171, 87, 177, 87, 177, 0, 60, 0, 147, 193, 0, 221, 43, 87, 177, 87, 177, 0, 60, 0, 147, 193, 0, 221, 43, 76, 179, 210, 171, 0, 60, 0, 147, 193, 0, 221, 171, 87, 49, 87, 49, 0, 60, 0, 63, 109, 0, 221, 171, 210, 43, 76, 51, 0, 60, 0, 63, 109, 0, 221, 43, 210, 43, 76, 51, 0, 60, 0, 63, 109, 0, 221, 43, 87, 49, 87, 49, 0, 60, 0, 63, 109, 0), -"array_index_data": PackedByteArray(0, 0, 2, 0, 1, 0, 1, 0, 4, 0, 3, 0, 4, 0, 6, 0, 5, 0, 6, 0, 8, 0, 7, 0, 8, 0, 10, 0, 9, 0, 10, 0, 2, 0, 11, 0, 1, 0, 2, 0, 4, 0, 4, 0, 8, 0, 6, 0, 8, 0, 2, 0, 10, 0, 4, 0, 2, 0, 8, 0, 12, 0, 14, 0, 13, 0, 13, 0, 16, 0, 15, 0, 16, 0, 18, 0, 17, 0, 18, 0, 20, 0, 19, 0, 20, 0, 22, 0, 21, 0, 22, 0, 14, 0, 23, 0, 13, 0, 14, 0, 16, 0, 16, 0, 20, 0, 18, 0, 20, 0, 14, 0, 22, 0, 16, 0, 14, 0, 20, 0, 24, 0, 26, 0, 25, 0, 24, 0, 27, 0, 26, 0, 28, 0, 30, 0, 29, 0, 28, 0, 31, 0, 30, 0, 32, 0, 34, 0, 33, 0, 32, 0, 35, 0, 34, 0, 36, 0, 38, 0, 37, 0, 36, 0, 39, 0, 38, 0, 40, 0, 42, 0, 41, 0, 40, 0, 43, 0, 42, 0, 44, 0, 46, 0, 45, 0, 44, 0, 47, 0, 46, 0, 48, 0, 50, 0, 49, 0, 48, 0, 51, 0, 50, 0, 52, 0, 54, 0, 53, 0, 52, 0, 55, 0, 54, 0, 56, 0, 58, 0, 57, 0, 56, 0, 59, 0, 58, 0, 60, 0, 62, 0, 61, 0, 60, 0, 63, 0, 62, 0, 64, 0, 66, 0, 65, 0, 64, 0, 67, 0, 66, 0, 68, 0, 70, 0, 69, 0, 68, 0, 71, 0, 70, 0), -"blend_shape_data": [], -"format": 98051, +"format": 4099, "index_count": 132, -"material": ExtResource( 2 ), +"index_data": PackedByteArray(0, 0, 2, 0, 1, 0, 1, 0, 4, 0, 3, 0, 4, 0, 6, 0, 5, 0, 6, 0, 8, 0, 7, 0, 8, 0, 10, 0, 9, 0, 10, 0, 2, 0, 11, 0, 1, 0, 2, 0, 4, 0, 4, 0, 8, 0, 6, 0, 8, 0, 2, 0, 10, 0, 4, 0, 2, 0, 8, 0, 12, 0, 14, 0, 13, 0, 13, 0, 16, 0, 15, 0, 16, 0, 18, 0, 17, 0, 18, 0, 20, 0, 19, 0, 20, 0, 22, 0, 21, 0, 22, 0, 14, 0, 23, 0, 13, 0, 14, 0, 16, 0, 16, 0, 20, 0, 18, 0, 20, 0, 14, 0, 22, 0, 16, 0, 14, 0, 20, 0, 24, 0, 26, 0, 25, 0, 24, 0, 27, 0, 26, 0, 28, 0, 30, 0, 29, 0, 28, 0, 31, 0, 30, 0, 32, 0, 34, 0, 33, 0, 32, 0, 35, 0, 34, 0, 36, 0, 38, 0, 37, 0, 36, 0, 39, 0, 38, 0, 40, 0, 42, 0, 41, 0, 40, 0, 43, 0, 42, 0, 44, 0, 46, 0, 45, 0, 44, 0, 47, 0, 46, 0, 48, 0, 50, 0, 49, 0, 48, 0, 51, 0, 50, 0, 52, 0, 54, 0, 53, 0, 52, 0, 55, 0, 54, 0, 56, 0, 58, 0, 57, 0, 56, 0, 59, 0, 58, 0, 60, 0, 62, 0, 61, 0, 60, 0, 63, 0, 62, 0, 64, 0, 66, 0, 65, 0, 64, 0, 67, 0, 66, 0, 68, 0, 70, 0, 69, 0, 68, 0, 71, 0, 70, 0), +"material": ExtResource( "2" ), "name": "Material.001", -"primitive": 4, -"skeleton_aabb": [], -"vertex_count": 72 -} +"primitive": 3, +"vertex_count": 72, +"vertex_data": PackedByteArray(0, 160, 123, 189, 0, 128, 105, 62, 0, 64, 122, 61, 0, 0, 0, 0, 0, 160, 123, 189, 0, 128, 105, 62, 0, 64, 122, 189, 0, 0, 0, 0, 0, 160, 123, 189, 0, 224, 42, 62, 0, 224, 42, 62, 0, 0, 0, 0, 0, 160, 123, 189, 0, 224, 42, 62, 0, 224, 42, 190, 0, 0, 0, 0, 0, 160, 123, 189, 0, 64, 122, 61, 0, 128, 105, 190, 0, 0, 0, 0, 0, 160, 123, 189, 0, 64, 122, 189, 0, 128, 105, 190, 0, 0, 0, 0, 0, 160, 123, 189, 0, 224, 42, 190, 0, 224, 42, 190, 0, 0, 0, 0, 0, 160, 123, 189, 0, 128, 105, 190, 0, 64, 122, 189, 0, 0, 0, 0, 0, 160, 123, 189, 0, 128, 105, 190, 0, 64, 122, 61, 0, 0, 0, 0, 0, 160, 123, 189, 0, 224, 42, 190, 0, 224, 42, 62, 0, 0, 0, 0, 0, 160, 123, 189, 0, 64, 122, 189, 0, 128, 105, 62, 0, 0, 0, 0, 0, 160, 123, 189, 0, 64, 122, 61, 0, 128, 105, 62, 0, 0, 0, 0, 0, 160, 123, 61, 0, 128, 105, 62, 0, 64, 122, 61, 254, 3, 0, 0, 0, 160, 123, 61, 0, 224, 42, 62, 0, 224, 42, 62, 254, 3, 0, 0, 0, 160, 123, 61, 0, 128, 105, 62, 0, 64, 122, 189, 254, 3, 0, 0, 0, 160, 123, 61, 0, 64, 122, 61, 0, 128, 105, 62, 254, 3, 0, 0, 0, 160, 123, 61, 0, 64, 122, 189, 0, 128, 105, 62, 254, 3, 0, 0, 0, 160, 123, 61, 0, 224, 42, 190, 0, 224, 42, 62, 254, 3, 0, 0, 0, 160, 123, 61, 0, 128, 105, 190, 0, 64, 122, 61, 254, 3, 0, 0, 0, 160, 123, 61, 0, 128, 105, 190, 0, 64, 122, 189, 254, 3, 0, 0, 0, 160, 123, 61, 0, 224, 42, 190, 0, 224, 42, 190, 254, 3, 0, 0, 0, 160, 123, 61, 0, 64, 122, 189, 0, 128, 105, 190, 254, 3, 0, 0, 0, 160, 123, 61, 0, 64, 122, 61, 0, 128, 105, 190, 254, 3, 0, 0, 0, 160, 123, 61, 0, 224, 42, 62, 0, 224, 42, 190, 254, 3, 0, 0, 0, 160, 123, 189, 0, 224, 42, 190, 0, 224, 42, 190, 0, 0, 0, 0, 0, 160, 123, 189, 0, 64, 122, 189, 0, 128, 105, 190, 0, 0, 0, 0, 0, 160, 123, 61, 0, 64, 122, 189, 0, 128, 105, 190, 0, 0, 0, 0, 0, 160, 123, 61, 0, 224, 42, 190, 0, 224, 42, 190, 0, 0, 0, 0, 0, 160, 123, 189, 0, 64, 122, 61, 0, 128, 105, 62, 0, 0, 96, 63, 0, 160, 123, 189, 0, 64, 122, 189, 0, 128, 105, 62, 0, 0, 96, 63, 0, 160, 123, 61, 0, 64, 122, 189, 0, 128, 105, 62, 0, 0, 96, 63, 0, 160, 123, 61, 0, 64, 122, 61, 0, 128, 105, 62, 0, 0, 96, 63, 0, 160, 123, 189, 0, 64, 122, 189, 0, 128, 105, 190, 0, 0, 0, 0, 0, 160, 123, 189, 0, 64, 122, 61, 0, 128, 105, 190, 0, 0, 0, 0, 0, 160, 123, 61, 0, 64, 122, 61, 0, 128, 105, 190, 0, 0, 0, 0, 0, 160, 123, 61, 0, 64, 122, 189, 0, 128, 105, 190, 0, 0, 0, 0, 0, 160, 123, 189, 0, 64, 122, 189, 0, 128, 105, 62, 0, 0, 224, 54, 0, 160, 123, 189, 0, 224, 42, 190, 0, 224, 42, 62, 0, 0, 224, 54, 0, 160, 123, 61, 0, 224, 42, 190, 0, 224, 42, 62, 0, 0, 224, 54, 0, 160, 123, 61, 0, 64, 122, 189, 0, 128, 105, 62, 0, 0, 224, 54, 0, 160, 123, 189, 0, 64, 122, 61, 0, 128, 105, 190, 0, 236, 7, 0, 0, 160, 123, 189, 0, 224, 42, 62, 0, 224, 42, 190, 0, 236, 7, 0, 0, 160, 123, 61, 0, 224, 42, 62, 0, 224, 42, 190, 0, 236, 7, 0, 0, 160, 123, 61, 0, 64, 122, 61, 0, 128, 105, 190, 0, 236, 7, 0, 0, 160, 123, 189, 0, 224, 42, 190, 0, 224, 42, 62, 0, 0, 176, 31, 0, 160, 123, 189, 0, 128, 105, 190, 0, 64, 122, 61, 0, 0, 176, 31, 0, 160, 123, 61, 0, 128, 105, 190, 0, 64, 122, 61, 0, 0, 176, 31, 0, 160, 123, 61, 0, 224, 42, 190, 0, 224, 42, 62, 0, 0, 176, 31, 0, 160, 123, 189, 0, 224, 42, 62, 0, 224, 42, 190, 0, 184, 13, 0, 0, 160, 123, 189, 0, 128, 105, 62, 0, 64, 122, 189, 0, 184, 13, 0, 0, 160, 123, 61, 0, 128, 105, 62, 0, 64, 122, 189, 0, 184, 13, 0, 0, 160, 123, 61, 0, 224, 42, 62, 0, 224, 42, 190, 0, 184, 13, 0, 0, 160, 123, 189, 0, 128, 105, 190, 0, 64, 122, 61, 0, 0, 0, 0, 0, 160, 123, 189, 0, 128, 105, 190, 0, 64, 122, 189, 0, 0, 0, 0, 0, 160, 123, 61, 0, 128, 105, 190, 0, 64, 122, 189, 0, 0, 0, 0, 0, 160, 123, 61, 0, 128, 105, 190, 0, 64, 122, 61, 0, 0, 0, 0, 0, 160, 123, 189, 0, 128, 105, 62, 0, 64, 122, 61, 0, 184, 189, 31, 0, 160, 123, 189, 0, 224, 42, 62, 0, 224, 42, 62, 0, 184, 189, 31, 0, 160, 123, 61, 0, 224, 42, 62, 0, 224, 42, 62, 0, 184, 189, 31, 0, 160, 123, 61, 0, 128, 105, 62, 0, 64, 122, 61, 0, 184, 189, 31, 0, 160, 123, 189, 0, 128, 105, 62, 0, 64, 122, 189, 0, 248, 15, 0, 0, 160, 123, 189, 0, 128, 105, 62, 0, 64, 122, 61, 0, 248, 15, 0, 0, 160, 123, 61, 0, 128, 105, 62, 0, 64, 122, 61, 0, 248, 15, 0, 0, 160, 123, 61, 0, 128, 105, 62, 0, 64, 122, 189, 0, 248, 15, 0, 0, 160, 123, 189, 0, 128, 105, 190, 0, 64, 122, 189, 0, 0, 0, 0, 0, 160, 123, 189, 0, 224, 42, 190, 0, 224, 42, 190, 0, 0, 0, 0, 0, 160, 123, 61, 0, 224, 42, 190, 0, 224, 42, 190, 0, 0, 0, 0, 0, 160, 123, 61, 0, 128, 105, 190, 0, 64, 122, 189, 0, 0, 0, 0, 0, 160, 123, 189, 0, 224, 42, 62, 0, 224, 42, 62, 0, 236, 231, 54, 0, 160, 123, 189, 0, 64, 122, 61, 0, 128, 105, 62, 0, 236, 231, 54, 0, 160, 123, 61, 0, 64, 122, 61, 0, 128, 105, 62, 0, 236, 231, 54, 0, 160, 123, 61, 0, 224, 42, 62, 0, 224, 42, 62, 0, 236, 231, 54) +}] -[sub_resource type="ArrayMesh" id=3] -surfaces/0 = { +[sub_resource type="ArrayMesh" id="3"] +_surfaces = [{ "aabb": AABB(-0.0614569, -0.228035, -0.228035, 0.122914, 0.45608, 0.45607), -"array_data": PackedByteArray(221, 171, 76, 51, 210, 43, 0, 60, 130, 0, 0, 0, 221, 171, 76, 51, 210, 171, 0, 60, 130, 0, 0, 0, 221, 171, 87, 49, 87, 49, 0, 60, 130, 0, 0, 0, 221, 171, 87, 49, 87, 177, 0, 60, 130, 0, 0, 0, 221, 171, 210, 43, 76, 179, 0, 60, 130, 0, 0, 0, 221, 171, 210, 171, 76, 179, 0, 60, 130, 0, 0, 0, 221, 171, 87, 177, 87, 177, 0, 60, 130, 0, 0, 0, 221, 171, 76, 179, 210, 171, 0, 60, 130, 0, 0, 0, 221, 171, 76, 179, 210, 43, 0, 60, 130, 0, 0, 0, 221, 171, 87, 177, 87, 49, 0, 60, 130, 0, 0, 0, 221, 171, 210, 171, 76, 51, 0, 60, 130, 0, 0, 0, 221, 171, 210, 43, 76, 51, 0, 60, 130, 0, 0, 0, 221, 43, 76, 51, 210, 43, 0, 60, 127, 0, 0, 0, 221, 43, 87, 49, 87, 49, 0, 60, 127, 0, 0, 0, 221, 43, 76, 51, 210, 171, 0, 60, 127, 0, 0, 0, 221, 43, 210, 43, 76, 51, 0, 60, 127, 0, 0, 0, 221, 43, 210, 171, 76, 51, 0, 60, 127, 0, 0, 0, 221, 43, 87, 177, 87, 49, 0, 60, 127, 0, 0, 0, 221, 43, 76, 179, 210, 43, 0, 60, 127, 0, 0, 0, 221, 43, 76, 179, 210, 171, 0, 60, 127, 0, 0, 0, 221, 43, 87, 177, 87, 177, 0, 60, 127, 0, 0, 0, 221, 43, 210, 171, 76, 179, 0, 60, 127, 0, 0, 0, 221, 43, 210, 43, 76, 179, 0, 60, 127, 0, 0, 0, 221, 43, 87, 49, 87, 177, 0, 60, 127, 0, 0, 0, 221, 171, 87, 177, 87, 177, 0, 60, 0, 193, 147, 0, 221, 171, 210, 171, 76, 179, 0, 60, 0, 193, 147, 0, 221, 43, 210, 171, 76, 179, 0, 60, 0, 193, 147, 0, 221, 43, 87, 177, 87, 177, 0, 60, 0, 193, 147, 0, 221, 171, 210, 43, 76, 51, 0, 60, 0, 0, 126, 0, 221, 171, 210, 171, 76, 51, 0, 60, 0, 0, 126, 0, 221, 43, 210, 171, 76, 51, 0, 60, 0, 0, 126, 0, 221, 43, 210, 43, 76, 51, 0, 60, 0, 0, 126, 0, 221, 171, 210, 171, 76, 179, 0, 60, 0, 0, 129, 0, 221, 171, 210, 43, 76, 179, 0, 60, 0, 0, 129, 0, 221, 43, 210, 43, 76, 179, 0, 60, 0, 0, 129, 0, 221, 43, 210, 171, 76, 179, 0, 60, 0, 0, 129, 0, 221, 171, 210, 171, 76, 51, 0, 60, 0, 193, 109, 0, 221, 171, 87, 177, 87, 49, 0, 60, 0, 193, 109, 0, 221, 43, 87, 177, 87, 49, 0, 60, 0, 193, 109, 0, 221, 43, 210, 171, 76, 51, 0, 60, 0, 193, 109, 0, 221, 171, 210, 43, 76, 179, 0, 60, 0, 63, 147, 0, 221, 171, 87, 49, 87, 177, 0, 60, 0, 63, 147, 0, 221, 43, 87, 49, 87, 177, 0, 60, 0, 63, 147, 0, 221, 43, 210, 43, 76, 179, 0, 60, 0, 63, 147, 0, 221, 171, 87, 177, 87, 49, 0, 60, 0, 147, 63, 0, 221, 171, 76, 179, 210, 43, 0, 60, 0, 147, 63, 0, 221, 43, 76, 179, 210, 43, 0, 60, 0, 147, 63, 0, 221, 43, 87, 177, 87, 49, 0, 60, 0, 147, 63, 0, 221, 171, 87, 49, 87, 177, 0, 60, 0, 109, 193, 0, 221, 171, 76, 51, 210, 171, 0, 60, 0, 109, 193, 0, 221, 43, 76, 51, 210, 171, 0, 60, 0, 109, 193, 0, 221, 43, 87, 49, 87, 177, 0, 60, 0, 109, 193, 0, 221, 171, 76, 179, 210, 43, 0, 60, 0, 130, 0, 0, 221, 171, 76, 179, 210, 171, 0, 60, 0, 130, 0, 0, 221, 43, 76, 179, 210, 171, 0, 60, 0, 130, 0, 0, 221, 43, 76, 179, 210, 43, 0, 60, 0, 130, 0, 0, 221, 171, 76, 51, 210, 43, 0, 60, 0, 109, 63, 0, 221, 171, 87, 49, 87, 49, 0, 60, 0, 109, 63, 0, 221, 43, 87, 49, 87, 49, 0, 60, 0, 109, 63, 0, 221, 43, 76, 51, 210, 43, 0, 60, 0, 109, 63, 0, 221, 171, 76, 51, 210, 171, 0, 60, 0, 127, 0, 0, 221, 171, 76, 51, 210, 43, 0, 60, 0, 127, 0, 0, 221, 43, 76, 51, 210, 43, 0, 60, 0, 127, 0, 0, 221, 43, 76, 51, 210, 171, 0, 60, 0, 127, 0, 0, 221, 171, 76, 179, 210, 171, 0, 60, 0, 147, 193, 0, 221, 171, 87, 177, 87, 177, 0, 60, 0, 147, 193, 0, 221, 43, 87, 177, 87, 177, 0, 60, 0, 147, 193, 0, 221, 43, 76, 179, 210, 171, 0, 60, 0, 147, 193, 0, 221, 171, 87, 49, 87, 49, 0, 60, 0, 63, 109, 0, 221, 171, 210, 43, 76, 51, 0, 60, 0, 63, 109, 0, 221, 43, 210, 43, 76, 51, 0, 60, 0, 63, 109, 0, 221, 43, 87, 49, 87, 49, 0, 60, 0, 63, 109, 0), -"array_index_data": PackedByteArray(0, 0, 2, 0, 1, 0, 1, 0, 4, 0, 3, 0, 4, 0, 6, 0, 5, 0, 6, 0, 8, 0, 7, 0, 8, 0, 10, 0, 9, 0, 10, 0, 2, 0, 11, 0, 1, 0, 2, 0, 4, 0, 4, 0, 8, 0, 6, 0, 8, 0, 2, 0, 10, 0, 4, 0, 2, 0, 8, 0, 12, 0, 14, 0, 13, 0, 13, 0, 16, 0, 15, 0, 16, 0, 18, 0, 17, 0, 18, 0, 20, 0, 19, 0, 20, 0, 22, 0, 21, 0, 22, 0, 14, 0, 23, 0, 13, 0, 14, 0, 16, 0, 16, 0, 20, 0, 18, 0, 20, 0, 14, 0, 22, 0, 16, 0, 14, 0, 20, 0, 24, 0, 26, 0, 25, 0, 24, 0, 27, 0, 26, 0, 28, 0, 30, 0, 29, 0, 28, 0, 31, 0, 30, 0, 32, 0, 34, 0, 33, 0, 32, 0, 35, 0, 34, 0, 36, 0, 38, 0, 37, 0, 36, 0, 39, 0, 38, 0, 40, 0, 42, 0, 41, 0, 40, 0, 43, 0, 42, 0, 44, 0, 46, 0, 45, 0, 44, 0, 47, 0, 46, 0, 48, 0, 50, 0, 49, 0, 48, 0, 51, 0, 50, 0, 52, 0, 54, 0, 53, 0, 52, 0, 55, 0, 54, 0, 56, 0, 58, 0, 57, 0, 56, 0, 59, 0, 58, 0, 60, 0, 62, 0, 61, 0, 60, 0, 63, 0, 62, 0, 64, 0, 66, 0, 65, 0, 64, 0, 67, 0, 66, 0, 68, 0, 70, 0, 69, 0, 68, 0, 71, 0, 70, 0), -"blend_shape_data": [], -"format": 98051, +"format": 4099, "index_count": 132, -"material": ExtResource( 2 ), +"index_data": PackedByteArray(0, 0, 2, 0, 1, 0, 1, 0, 4, 0, 3, 0, 4, 0, 6, 0, 5, 0, 6, 0, 8, 0, 7, 0, 8, 0, 10, 0, 9, 0, 10, 0, 2, 0, 11, 0, 1, 0, 2, 0, 4, 0, 4, 0, 8, 0, 6, 0, 8, 0, 2, 0, 10, 0, 4, 0, 2, 0, 8, 0, 12, 0, 14, 0, 13, 0, 13, 0, 16, 0, 15, 0, 16, 0, 18, 0, 17, 0, 18, 0, 20, 0, 19, 0, 20, 0, 22, 0, 21, 0, 22, 0, 14, 0, 23, 0, 13, 0, 14, 0, 16, 0, 16, 0, 20, 0, 18, 0, 20, 0, 14, 0, 22, 0, 16, 0, 14, 0, 20, 0, 24, 0, 26, 0, 25, 0, 24, 0, 27, 0, 26, 0, 28, 0, 30, 0, 29, 0, 28, 0, 31, 0, 30, 0, 32, 0, 34, 0, 33, 0, 32, 0, 35, 0, 34, 0, 36, 0, 38, 0, 37, 0, 36, 0, 39, 0, 38, 0, 40, 0, 42, 0, 41, 0, 40, 0, 43, 0, 42, 0, 44, 0, 46, 0, 45, 0, 44, 0, 47, 0, 46, 0, 48, 0, 50, 0, 49, 0, 48, 0, 51, 0, 50, 0, 52, 0, 54, 0, 53, 0, 52, 0, 55, 0, 54, 0, 56, 0, 58, 0, 57, 0, 56, 0, 59, 0, 58, 0, 60, 0, 62, 0, 61, 0, 60, 0, 63, 0, 62, 0, 64, 0, 66, 0, 65, 0, 64, 0, 67, 0, 66, 0, 68, 0, 70, 0, 69, 0, 68, 0, 71, 0, 70, 0), +"material": ExtResource( "2" ), "name": "Material.001", -"primitive": 4, -"skeleton_aabb": [], -"vertex_count": 72 -} +"primitive": 3, +"vertex_count": 72, +"vertex_data": PackedByteArray(0, 160, 123, 189, 0, 128, 105, 62, 0, 64, 122, 61, 0, 0, 0, 0, 0, 160, 123, 189, 0, 128, 105, 62, 0, 64, 122, 189, 0, 0, 0, 0, 0, 160, 123, 189, 0, 224, 42, 62, 0, 224, 42, 62, 0, 0, 0, 0, 0, 160, 123, 189, 0, 224, 42, 62, 0, 224, 42, 190, 0, 0, 0, 0, 0, 160, 123, 189, 0, 64, 122, 61, 0, 128, 105, 190, 0, 0, 0, 0, 0, 160, 123, 189, 0, 64, 122, 189, 0, 128, 105, 190, 0, 0, 0, 0, 0, 160, 123, 189, 0, 224, 42, 190, 0, 224, 42, 190, 0, 0, 0, 0, 0, 160, 123, 189, 0, 128, 105, 190, 0, 64, 122, 189, 0, 0, 0, 0, 0, 160, 123, 189, 0, 128, 105, 190, 0, 64, 122, 61, 0, 0, 0, 0, 0, 160, 123, 189, 0, 224, 42, 190, 0, 224, 42, 62, 0, 0, 0, 0, 0, 160, 123, 189, 0, 64, 122, 189, 0, 128, 105, 62, 0, 0, 0, 0, 0, 160, 123, 189, 0, 64, 122, 61, 0, 128, 105, 62, 0, 0, 0, 0, 0, 160, 123, 61, 0, 128, 105, 62, 0, 64, 122, 61, 254, 3, 0, 0, 0, 160, 123, 61, 0, 224, 42, 62, 0, 224, 42, 62, 254, 3, 0, 0, 0, 160, 123, 61, 0, 128, 105, 62, 0, 64, 122, 189, 254, 3, 0, 0, 0, 160, 123, 61, 0, 64, 122, 61, 0, 128, 105, 62, 254, 3, 0, 0, 0, 160, 123, 61, 0, 64, 122, 189, 0, 128, 105, 62, 254, 3, 0, 0, 0, 160, 123, 61, 0, 224, 42, 190, 0, 224, 42, 62, 254, 3, 0, 0, 0, 160, 123, 61, 0, 128, 105, 190, 0, 64, 122, 61, 254, 3, 0, 0, 0, 160, 123, 61, 0, 128, 105, 190, 0, 64, 122, 189, 254, 3, 0, 0, 0, 160, 123, 61, 0, 224, 42, 190, 0, 224, 42, 190, 254, 3, 0, 0, 0, 160, 123, 61, 0, 64, 122, 189, 0, 128, 105, 190, 254, 3, 0, 0, 0, 160, 123, 61, 0, 64, 122, 61, 0, 128, 105, 190, 254, 3, 0, 0, 0, 160, 123, 61, 0, 224, 42, 62, 0, 224, 42, 190, 254, 3, 0, 0, 0, 160, 123, 189, 0, 224, 42, 190, 0, 224, 42, 190, 0, 0, 0, 0, 0, 160, 123, 189, 0, 64, 122, 189, 0, 128, 105, 190, 0, 0, 0, 0, 0, 160, 123, 61, 0, 64, 122, 189, 0, 128, 105, 190, 0, 0, 0, 0, 0, 160, 123, 61, 0, 224, 42, 190, 0, 224, 42, 190, 0, 0, 0, 0, 0, 160, 123, 189, 0, 64, 122, 61, 0, 128, 105, 62, 0, 0, 96, 63, 0, 160, 123, 189, 0, 64, 122, 189, 0, 128, 105, 62, 0, 0, 96, 63, 0, 160, 123, 61, 0, 64, 122, 189, 0, 128, 105, 62, 0, 0, 96, 63, 0, 160, 123, 61, 0, 64, 122, 61, 0, 128, 105, 62, 0, 0, 96, 63, 0, 160, 123, 189, 0, 64, 122, 189, 0, 128, 105, 190, 0, 0, 0, 0, 0, 160, 123, 189, 0, 64, 122, 61, 0, 128, 105, 190, 0, 0, 0, 0, 0, 160, 123, 61, 0, 64, 122, 61, 0, 128, 105, 190, 0, 0, 0, 0, 0, 160, 123, 61, 0, 64, 122, 189, 0, 128, 105, 190, 0, 0, 0, 0, 0, 160, 123, 189, 0, 64, 122, 189, 0, 128, 105, 62, 0, 0, 224, 54, 0, 160, 123, 189, 0, 224, 42, 190, 0, 224, 42, 62, 0, 0, 224, 54, 0, 160, 123, 61, 0, 224, 42, 190, 0, 224, 42, 62, 0, 0, 224, 54, 0, 160, 123, 61, 0, 64, 122, 189, 0, 128, 105, 62, 0, 0, 224, 54, 0, 160, 123, 189, 0, 64, 122, 61, 0, 128, 105, 190, 0, 236, 7, 0, 0, 160, 123, 189, 0, 224, 42, 62, 0, 224, 42, 190, 0, 236, 7, 0, 0, 160, 123, 61, 0, 224, 42, 62, 0, 224, 42, 190, 0, 236, 7, 0, 0, 160, 123, 61, 0, 64, 122, 61, 0, 128, 105, 190, 0, 236, 7, 0, 0, 160, 123, 189, 0, 224, 42, 190, 0, 224, 42, 62, 0, 0, 176, 31, 0, 160, 123, 189, 0, 128, 105, 190, 0, 64, 122, 61, 0, 0, 176, 31, 0, 160, 123, 61, 0, 128, 105, 190, 0, 64, 122, 61, 0, 0, 176, 31, 0, 160, 123, 61, 0, 224, 42, 190, 0, 224, 42, 62, 0, 0, 176, 31, 0, 160, 123, 189, 0, 224, 42, 62, 0, 224, 42, 190, 0, 184, 13, 0, 0, 160, 123, 189, 0, 128, 105, 62, 0, 64, 122, 189, 0, 184, 13, 0, 0, 160, 123, 61, 0, 128, 105, 62, 0, 64, 122, 189, 0, 184, 13, 0, 0, 160, 123, 61, 0, 224, 42, 62, 0, 224, 42, 190, 0, 184, 13, 0, 0, 160, 123, 189, 0, 128, 105, 190, 0, 64, 122, 61, 0, 0, 0, 0, 0, 160, 123, 189, 0, 128, 105, 190, 0, 64, 122, 189, 0, 0, 0, 0, 0, 160, 123, 61, 0, 128, 105, 190, 0, 64, 122, 189, 0, 0, 0, 0, 0, 160, 123, 61, 0, 128, 105, 190, 0, 64, 122, 61, 0, 0, 0, 0, 0, 160, 123, 189, 0, 128, 105, 62, 0, 64, 122, 61, 0, 184, 189, 31, 0, 160, 123, 189, 0, 224, 42, 62, 0, 224, 42, 62, 0, 184, 189, 31, 0, 160, 123, 61, 0, 224, 42, 62, 0, 224, 42, 62, 0, 184, 189, 31, 0, 160, 123, 61, 0, 128, 105, 62, 0, 64, 122, 61, 0, 184, 189, 31, 0, 160, 123, 189, 0, 128, 105, 62, 0, 64, 122, 189, 0, 248, 15, 0, 0, 160, 123, 189, 0, 128, 105, 62, 0, 64, 122, 61, 0, 248, 15, 0, 0, 160, 123, 61, 0, 128, 105, 62, 0, 64, 122, 61, 0, 248, 15, 0, 0, 160, 123, 61, 0, 128, 105, 62, 0, 64, 122, 189, 0, 248, 15, 0, 0, 160, 123, 189, 0, 128, 105, 190, 0, 64, 122, 189, 0, 0, 0, 0, 0, 160, 123, 189, 0, 224, 42, 190, 0, 224, 42, 190, 0, 0, 0, 0, 0, 160, 123, 61, 0, 224, 42, 190, 0, 224, 42, 190, 0, 0, 0, 0, 0, 160, 123, 61, 0, 128, 105, 190, 0, 64, 122, 189, 0, 0, 0, 0, 0, 160, 123, 189, 0, 224, 42, 62, 0, 224, 42, 62, 0, 236, 231, 54, 0, 160, 123, 189, 0, 64, 122, 61, 0, 128, 105, 62, 0, 236, 231, 54, 0, 160, 123, 61, 0, 64, 122, 61, 0, 128, 105, 62, 0, 236, 231, 54, 0, 160, 123, 61, 0, 224, 42, 62, 0, 224, 42, 62, 0, 236, 231, 54) +}] -[sub_resource type="ArrayMesh" id=4] -surfaces/0 = { +[sub_resource type="ArrayMesh" id="4"] +_surfaces = [{ "aabb": AABB(-0.061457, -0.228035, -0.228035, 0.122924, 0.45608, 0.45607), -"array_data": PackedByteArray(221, 43, 76, 51, 210, 43, 0, 60, 127, 0, 0, 0, 221, 43, 87, 49, 87, 49, 0, 60, 127, 0, 0, 0, 221, 43, 76, 51, 210, 171, 0, 60, 127, 0, 0, 0, 221, 43, 210, 43, 76, 51, 0, 60, 127, 0, 0, 0, 221, 43, 210, 171, 76, 51, 0, 60, 127, 0, 0, 0, 221, 43, 87, 177, 87, 49, 0, 60, 127, 0, 0, 0, 221, 43, 76, 179, 210, 43, 0, 60, 127, 0, 0, 0, 221, 43, 76, 179, 210, 171, 0, 60, 127, 0, 0, 0, 221, 43, 87, 177, 87, 177, 0, 60, 127, 0, 0, 0, 221, 43, 210, 171, 76, 179, 0, 60, 127, 0, 0, 0, 221, 43, 210, 43, 76, 179, 0, 60, 127, 0, 0, 0, 221, 43, 87, 49, 87, 177, 0, 60, 127, 0, 0, 0, 221, 171, 76, 51, 210, 43, 0, 60, 130, 0, 0, 0, 221, 171, 76, 51, 210, 171, 0, 60, 130, 0, 0, 0, 221, 171, 87, 49, 87, 49, 0, 60, 130, 0, 0, 0, 221, 171, 87, 49, 87, 177, 0, 60, 130, 0, 0, 0, 221, 171, 210, 43, 76, 179, 0, 60, 130, 0, 0, 0, 221, 171, 210, 171, 76, 179, 0, 60, 130, 0, 0, 0, 221, 171, 87, 177, 87, 177, 0, 60, 130, 0, 0, 0, 221, 171, 76, 179, 210, 171, 0, 60, 130, 0, 0, 0, 221, 171, 76, 179, 210, 43, 0, 60, 130, 0, 0, 0, 221, 171, 87, 177, 87, 49, 0, 60, 130, 0, 0, 0, 221, 171, 210, 171, 76, 51, 0, 60, 130, 0, 0, 0, 221, 171, 210, 43, 76, 51, 0, 60, 130, 0, 0, 0, 221, 43, 87, 177, 87, 177, 0, 60, 0, 193, 147, 0, 221, 171, 87, 177, 87, 177, 0, 60, 0, 193, 147, 0, 221, 171, 210, 171, 76, 179, 0, 60, 0, 193, 147, 0, 221, 43, 210, 171, 76, 179, 0, 60, 0, 193, 147, 0, 221, 43, 210, 43, 76, 51, 0, 60, 0, 0, 126, 0, 221, 171, 210, 43, 76, 51, 0, 60, 0, 0, 126, 0, 221, 171, 210, 171, 76, 51, 0, 60, 0, 0, 126, 0, 221, 43, 210, 171, 76, 51, 0, 60, 0, 0, 126, 0, 221, 43, 210, 171, 76, 179, 0, 60, 0, 0, 129, 0, 221, 171, 210, 171, 76, 179, 0, 60, 0, 0, 129, 0, 221, 171, 210, 43, 76, 179, 0, 60, 0, 0, 129, 0, 221, 43, 210, 43, 76, 179, 0, 60, 0, 0, 129, 0, 221, 43, 210, 171, 76, 51, 0, 60, 0, 193, 109, 0, 221, 171, 210, 171, 76, 51, 0, 60, 0, 193, 109, 0, 221, 171, 87, 177, 87, 49, 0, 60, 0, 193, 109, 0, 221, 43, 87, 177, 87, 49, 0, 60, 0, 193, 109, 0, 221, 43, 210, 43, 76, 179, 0, 60, 0, 63, 147, 0, 221, 171, 210, 43, 76, 179, 0, 60, 0, 63, 147, 0, 221, 171, 87, 49, 87, 177, 0, 60, 0, 63, 147, 0, 221, 43, 87, 49, 87, 177, 0, 60, 0, 63, 147, 0, 221, 43, 87, 177, 87, 49, 0, 60, 0, 147, 63, 0, 221, 171, 87, 177, 87, 49, 0, 60, 0, 147, 63, 0, 221, 171, 76, 179, 210, 43, 0, 60, 0, 147, 63, 0, 221, 43, 76, 179, 210, 43, 0, 60, 0, 147, 63, 0, 221, 43, 87, 49, 87, 177, 0, 60, 0, 109, 193, 0, 221, 171, 87, 49, 87, 177, 0, 60, 0, 109, 193, 0, 221, 171, 76, 51, 210, 171, 0, 60, 0, 109, 193, 0, 221, 43, 76, 51, 210, 171, 0, 60, 0, 109, 193, 0, 221, 43, 76, 179, 210, 43, 0, 60, 0, 130, 0, 0, 221, 171, 76, 179, 210, 43, 0, 60, 0, 130, 0, 0, 221, 171, 76, 179, 210, 171, 0, 60, 0, 130, 0, 0, 221, 43, 76, 179, 210, 171, 0, 60, 0, 130, 0, 0, 221, 43, 76, 51, 210, 43, 0, 60, 0, 109, 63, 0, 221, 171, 76, 51, 210, 43, 0, 60, 0, 109, 63, 0, 221, 171, 87, 49, 87, 49, 0, 60, 0, 109, 63, 0, 221, 43, 87, 49, 87, 49, 0, 60, 0, 109, 63, 0, 221, 171, 76, 51, 210, 43, 0, 60, 0, 127, 0, 0, 221, 43, 76, 51, 210, 43, 0, 60, 0, 127, 0, 0, 221, 43, 76, 51, 210, 171, 0, 60, 0, 127, 0, 0, 221, 171, 76, 51, 210, 171, 0, 60, 0, 127, 0, 0, 221, 43, 76, 179, 210, 171, 0, 60, 0, 147, 193, 0, 221, 171, 76, 179, 210, 171, 0, 60, 0, 147, 193, 0, 221, 171, 87, 177, 87, 177, 0, 60, 0, 147, 193, 0, 221, 43, 87, 177, 87, 177, 0, 60, 0, 147, 193, 0, 221, 43, 87, 49, 87, 49, 0, 60, 0, 63, 109, 0, 221, 171, 87, 49, 87, 49, 0, 60, 0, 63, 109, 0, 221, 171, 210, 43, 76, 51, 0, 60, 0, 63, 109, 0, 221, 43, 210, 43, 76, 51, 0, 60, 0, 63, 109, 0), -"array_index_data": PackedByteArray(0, 0, 2, 0, 1, 0, 1, 0, 4, 0, 3, 0, 4, 0, 6, 0, 5, 0, 6, 0, 8, 0, 7, 0, 8, 0, 10, 0, 9, 0, 10, 0, 2, 0, 11, 0, 1, 0, 2, 0, 4, 0, 4, 0, 8, 0, 6, 0, 8, 0, 2, 0, 10, 0, 4, 0, 2, 0, 8, 0, 12, 0, 14, 0, 13, 0, 13, 0, 16, 0, 15, 0, 16, 0, 18, 0, 17, 0, 18, 0, 20, 0, 19, 0, 20, 0, 22, 0, 21, 0, 22, 0, 14, 0, 23, 0, 13, 0, 14, 0, 16, 0, 16, 0, 20, 0, 18, 0, 20, 0, 14, 0, 22, 0, 16, 0, 14, 0, 20, 0, 24, 0, 26, 0, 25, 0, 24, 0, 27, 0, 26, 0, 28, 0, 30, 0, 29, 0, 28, 0, 31, 0, 30, 0, 32, 0, 34, 0, 33, 0, 32, 0, 35, 0, 34, 0, 36, 0, 38, 0, 37, 0, 36, 0, 39, 0, 38, 0, 40, 0, 42, 0, 41, 0, 40, 0, 43, 0, 42, 0, 44, 0, 46, 0, 45, 0, 44, 0, 47, 0, 46, 0, 48, 0, 50, 0, 49, 0, 48, 0, 51, 0, 50, 0, 52, 0, 54, 0, 53, 0, 52, 0, 55, 0, 54, 0, 56, 0, 58, 0, 57, 0, 56, 0, 59, 0, 58, 0, 60, 0, 62, 0, 61, 0, 60, 0, 63, 0, 62, 0, 64, 0, 66, 0, 65, 0, 64, 0, 67, 0, 66, 0, 68, 0, 70, 0, 69, 0, 68, 0, 71, 0, 70, 0), -"blend_shape_data": [], -"format": 98051, +"format": 4099, "index_count": 132, -"material": ExtResource( 2 ), +"index_data": PackedByteArray(0, 0, 2, 0, 1, 0, 1, 0, 4, 0, 3, 0, 4, 0, 6, 0, 5, 0, 6, 0, 8, 0, 7, 0, 8, 0, 10, 0, 9, 0, 10, 0, 2, 0, 11, 0, 1, 0, 2, 0, 4, 0, 4, 0, 8, 0, 6, 0, 8, 0, 2, 0, 10, 0, 4, 0, 2, 0, 8, 0, 12, 0, 14, 0, 13, 0, 13, 0, 16, 0, 15, 0, 16, 0, 18, 0, 17, 0, 18, 0, 20, 0, 19, 0, 20, 0, 22, 0, 21, 0, 22, 0, 14, 0, 23, 0, 13, 0, 14, 0, 16, 0, 16, 0, 20, 0, 18, 0, 20, 0, 14, 0, 22, 0, 16, 0, 14, 0, 20, 0, 24, 0, 26, 0, 25, 0, 24, 0, 27, 0, 26, 0, 28, 0, 30, 0, 29, 0, 28, 0, 31, 0, 30, 0, 32, 0, 34, 0, 33, 0, 32, 0, 35, 0, 34, 0, 36, 0, 38, 0, 37, 0, 36, 0, 39, 0, 38, 0, 40, 0, 42, 0, 41, 0, 40, 0, 43, 0, 42, 0, 44, 0, 46, 0, 45, 0, 44, 0, 47, 0, 46, 0, 48, 0, 50, 0, 49, 0, 48, 0, 51, 0, 50, 0, 52, 0, 54, 0, 53, 0, 52, 0, 55, 0, 54, 0, 56, 0, 58, 0, 57, 0, 56, 0, 59, 0, 58, 0, 60, 0, 62, 0, 61, 0, 60, 0, 63, 0, 62, 0, 64, 0, 66, 0, 65, 0, 64, 0, 67, 0, 66, 0, 68, 0, 70, 0, 69, 0, 68, 0, 71, 0, 70, 0), +"material": ExtResource( "2" ), "name": "Material.001", -"primitive": 4, -"skeleton_aabb": [], -"vertex_count": 72 -} +"primitive": 3, +"vertex_count": 72, +"vertex_data": PackedByteArray(0, 160, 123, 61, 0, 128, 105, 62, 0, 64, 122, 61, 254, 3, 0, 0, 0, 160, 123, 61, 0, 224, 42, 62, 0, 224, 42, 62, 254, 3, 0, 0, 0, 160, 123, 61, 0, 128, 105, 62, 0, 64, 122, 189, 254, 3, 0, 0, 0, 160, 123, 61, 0, 64, 122, 61, 0, 128, 105, 62, 254, 3, 0, 0, 0, 160, 123, 61, 0, 64, 122, 189, 0, 128, 105, 62, 254, 3, 0, 0, 0, 160, 123, 61, 0, 224, 42, 190, 0, 224, 42, 62, 254, 3, 0, 0, 0, 160, 123, 61, 0, 128, 105, 190, 0, 64, 122, 61, 254, 3, 0, 0, 0, 160, 123, 61, 0, 128, 105, 190, 0, 64, 122, 189, 254, 3, 0, 0, 0, 160, 123, 61, 0, 224, 42, 190, 0, 224, 42, 190, 254, 3, 0, 0, 0, 160, 123, 61, 0, 64, 122, 189, 0, 128, 105, 190, 254, 3, 0, 0, 0, 160, 123, 61, 0, 64, 122, 61, 0, 128, 105, 190, 254, 3, 0, 0, 0, 160, 123, 61, 0, 224, 42, 62, 0, 224, 42, 190, 254, 3, 0, 0, 0, 160, 123, 189, 0, 128, 105, 62, 0, 64, 122, 61, 0, 0, 0, 0, 0, 160, 123, 189, 0, 128, 105, 62, 0, 64, 122, 189, 0, 0, 0, 0, 0, 160, 123, 189, 0, 224, 42, 62, 0, 224, 42, 62, 0, 0, 0, 0, 0, 160, 123, 189, 0, 224, 42, 62, 0, 224, 42, 190, 0, 0, 0, 0, 0, 160, 123, 189, 0, 64, 122, 61, 0, 128, 105, 190, 0, 0, 0, 0, 0, 160, 123, 189, 0, 64, 122, 189, 0, 128, 105, 190, 0, 0, 0, 0, 0, 160, 123, 189, 0, 224, 42, 190, 0, 224, 42, 190, 0, 0, 0, 0, 0, 160, 123, 189, 0, 128, 105, 190, 0, 64, 122, 189, 0, 0, 0, 0, 0, 160, 123, 189, 0, 128, 105, 190, 0, 64, 122, 61, 0, 0, 0, 0, 0, 160, 123, 189, 0, 224, 42, 190, 0, 224, 42, 62, 0, 0, 0, 0, 0, 160, 123, 189, 0, 64, 122, 189, 0, 128, 105, 62, 0, 0, 0, 0, 0, 160, 123, 189, 0, 64, 122, 61, 0, 128, 105, 62, 0, 0, 0, 0, 0, 160, 123, 61, 0, 224, 42, 190, 0, 224, 42, 190, 0, 0, 0, 0, 0, 160, 123, 189, 0, 224, 42, 190, 0, 224, 42, 190, 0, 0, 0, 0, 0, 160, 123, 189, 0, 64, 122, 189, 0, 128, 105, 190, 0, 0, 0, 0, 0, 160, 123, 61, 0, 64, 122, 189, 0, 128, 105, 190, 0, 0, 0, 0, 0, 160, 123, 61, 0, 64, 122, 61, 0, 128, 105, 62, 0, 0, 96, 63, 0, 160, 123, 189, 0, 64, 122, 61, 0, 128, 105, 62, 0, 0, 96, 63, 0, 160, 123, 189, 0, 64, 122, 189, 0, 128, 105, 62, 0, 0, 96, 63, 0, 160, 123, 61, 0, 64, 122, 189, 0, 128, 105, 62, 0, 0, 96, 63, 0, 160, 123, 61, 0, 64, 122, 189, 0, 128, 105, 190, 0, 0, 0, 0, 0, 160, 123, 189, 0, 64, 122, 189, 0, 128, 105, 190, 0, 0, 0, 0, 0, 160, 123, 189, 0, 64, 122, 61, 0, 128, 105, 190, 0, 0, 0, 0, 0, 160, 123, 61, 0, 64, 122, 61, 0, 128, 105, 190, 0, 0, 0, 0, 0, 160, 123, 61, 0, 64, 122, 189, 0, 128, 105, 62, 0, 0, 224, 54, 0, 160, 123, 189, 0, 64, 122, 189, 0, 128, 105, 62, 0, 0, 224, 54, 0, 160, 123, 189, 0, 224, 42, 190, 0, 224, 42, 62, 0, 0, 224, 54, 0, 160, 123, 61, 0, 224, 42, 190, 0, 224, 42, 62, 0, 0, 224, 54, 0, 160, 123, 61, 0, 64, 122, 61, 0, 128, 105, 190, 0, 236, 7, 0, 0, 160, 123, 189, 0, 64, 122, 61, 0, 128, 105, 190, 0, 236, 7, 0, 0, 160, 123, 189, 0, 224, 42, 62, 0, 224, 42, 190, 0, 236, 7, 0, 0, 160, 123, 61, 0, 224, 42, 62, 0, 224, 42, 190, 0, 236, 7, 0, 0, 160, 123, 61, 0, 224, 42, 190, 0, 224, 42, 62, 0, 0, 176, 31, 0, 160, 123, 189, 0, 224, 42, 190, 0, 224, 42, 62, 0, 0, 176, 31, 0, 160, 123, 189, 0, 128, 105, 190, 0, 64, 122, 61, 0, 0, 176, 31, 0, 160, 123, 61, 0, 128, 105, 190, 0, 64, 122, 61, 0, 0, 176, 31, 0, 160, 123, 61, 0, 224, 42, 62, 0, 224, 42, 190, 0, 184, 13, 0, 0, 160, 123, 189, 0, 224, 42, 62, 0, 224, 42, 190, 0, 184, 13, 0, 0, 160, 123, 189, 0, 128, 105, 62, 0, 64, 122, 189, 0, 184, 13, 0, 0, 160, 123, 61, 0, 128, 105, 62, 0, 64, 122, 189, 0, 184, 13, 0, 0, 160, 123, 61, 0, 128, 105, 190, 0, 64, 122, 61, 0, 0, 0, 0, 0, 160, 123, 189, 0, 128, 105, 190, 0, 64, 122, 61, 0, 0, 0, 0, 0, 160, 123, 189, 0, 128, 105, 190, 0, 64, 122, 189, 0, 0, 0, 0, 0, 160, 123, 61, 0, 128, 105, 190, 0, 64, 122, 189, 0, 0, 0, 0, 0, 160, 123, 61, 0, 128, 105, 62, 0, 64, 122, 61, 0, 184, 189, 31, 0, 160, 123, 189, 0, 128, 105, 62, 0, 64, 122, 61, 0, 184, 189, 31, 0, 160, 123, 189, 0, 224, 42, 62, 0, 224, 42, 62, 0, 184, 189, 31, 0, 160, 123, 61, 0, 224, 42, 62, 0, 224, 42, 62, 0, 184, 189, 31, 0, 160, 123, 189, 0, 128, 105, 62, 0, 64, 122, 61, 0, 248, 15, 0, 0, 160, 123, 61, 0, 128, 105, 62, 0, 64, 122, 61, 0, 248, 15, 0, 0, 160, 123, 61, 0, 128, 105, 62, 0, 64, 122, 189, 0, 248, 15, 0, 0, 160, 123, 189, 0, 128, 105, 62, 0, 64, 122, 189, 0, 248, 15, 0, 0, 160, 123, 61, 0, 128, 105, 190, 0, 64, 122, 189, 0, 0, 0, 0, 0, 160, 123, 189, 0, 128, 105, 190, 0, 64, 122, 189, 0, 0, 0, 0, 0, 160, 123, 189, 0, 224, 42, 190, 0, 224, 42, 190, 0, 0, 0, 0, 0, 160, 123, 61, 0, 224, 42, 190, 0, 224, 42, 190, 0, 0, 0, 0, 0, 160, 123, 61, 0, 224, 42, 62, 0, 224, 42, 62, 0, 236, 231, 54, 0, 160, 123, 189, 0, 224, 42, 62, 0, 224, 42, 62, 0, 236, 231, 54, 0, 160, 123, 189, 0, 64, 122, 61, 0, 128, 105, 62, 0, 236, 231, 54, 0, 160, 123, 61, 0, 64, 122, 61, 0, 128, 105, 62, 0, 236, 231, 54) +}] -[sub_resource type="ArrayMesh" id=5] -surfaces/0 = { +[sub_resource type="ArrayMesh" id="5"] +_surfaces = [{ "aabb": AABB(-0.061457, -0.228035, -0.228035, 0.122924, 0.45608, 0.45607), -"array_data": PackedByteArray(221, 43, 76, 51, 210, 43, 0, 60, 127, 0, 0, 0, 221, 43, 87, 49, 87, 49, 0, 60, 127, 0, 0, 0, 221, 43, 76, 51, 210, 171, 0, 60, 127, 0, 0, 0, 221, 43, 210, 43, 76, 51, 0, 60, 127, 0, 0, 0, 221, 43, 210, 171, 76, 51, 0, 60, 127, 0, 0, 0, 221, 43, 87, 177, 87, 49, 0, 60, 127, 0, 0, 0, 221, 43, 76, 179, 210, 43, 0, 60, 127, 0, 0, 0, 221, 43, 76, 179, 210, 171, 0, 60, 127, 0, 0, 0, 221, 43, 87, 177, 87, 177, 0, 60, 127, 0, 0, 0, 221, 43, 210, 171, 76, 179, 0, 60, 127, 0, 0, 0, 221, 43, 210, 43, 76, 179, 0, 60, 127, 0, 0, 0, 221, 43, 87, 49, 87, 177, 0, 60, 127, 0, 0, 0, 221, 171, 76, 51, 210, 43, 0, 60, 130, 0, 0, 0, 221, 171, 76, 51, 210, 171, 0, 60, 130, 0, 0, 0, 221, 171, 87, 49, 87, 49, 0, 60, 130, 0, 0, 0, 221, 171, 87, 49, 87, 177, 0, 60, 130, 0, 0, 0, 221, 171, 210, 43, 76, 179, 0, 60, 130, 0, 0, 0, 221, 171, 210, 171, 76, 179, 0, 60, 130, 0, 0, 0, 221, 171, 87, 177, 87, 177, 0, 60, 130, 0, 0, 0, 221, 171, 76, 179, 210, 171, 0, 60, 130, 0, 0, 0, 221, 171, 76, 179, 210, 43, 0, 60, 130, 0, 0, 0, 221, 171, 87, 177, 87, 49, 0, 60, 130, 0, 0, 0, 221, 171, 210, 171, 76, 51, 0, 60, 130, 0, 0, 0, 221, 171, 210, 43, 76, 51, 0, 60, 130, 0, 0, 0, 221, 43, 87, 177, 87, 177, 0, 60, 0, 193, 147, 0, 221, 171, 87, 177, 87, 177, 0, 60, 0, 193, 147, 0, 221, 171, 210, 171, 76, 179, 0, 60, 0, 193, 147, 0, 221, 43, 210, 171, 76, 179, 0, 60, 0, 193, 147, 0, 221, 43, 210, 43, 76, 51, 0, 60, 0, 0, 126, 0, 221, 171, 210, 43, 76, 51, 0, 60, 0, 0, 126, 0, 221, 171, 210, 171, 76, 51, 0, 60, 0, 0, 126, 0, 221, 43, 210, 171, 76, 51, 0, 60, 0, 0, 126, 0, 221, 43, 210, 171, 76, 179, 0, 60, 0, 0, 129, 0, 221, 171, 210, 171, 76, 179, 0, 60, 0, 0, 129, 0, 221, 171, 210, 43, 76, 179, 0, 60, 0, 0, 129, 0, 221, 43, 210, 43, 76, 179, 0, 60, 0, 0, 129, 0, 221, 43, 210, 171, 76, 51, 0, 60, 0, 193, 109, 0, 221, 171, 210, 171, 76, 51, 0, 60, 0, 193, 109, 0, 221, 171, 87, 177, 87, 49, 0, 60, 0, 193, 109, 0, 221, 43, 87, 177, 87, 49, 0, 60, 0, 193, 109, 0, 221, 43, 210, 43, 76, 179, 0, 60, 0, 63, 147, 0, 221, 171, 210, 43, 76, 179, 0, 60, 0, 63, 147, 0, 221, 171, 87, 49, 87, 177, 0, 60, 0, 63, 147, 0, 221, 43, 87, 49, 87, 177, 0, 60, 0, 63, 147, 0, 221, 43, 87, 177, 87, 49, 0, 60, 0, 147, 63, 0, 221, 171, 87, 177, 87, 49, 0, 60, 0, 147, 63, 0, 221, 171, 76, 179, 210, 43, 0, 60, 0, 147, 63, 0, 221, 43, 76, 179, 210, 43, 0, 60, 0, 147, 63, 0, 221, 43, 87, 49, 87, 177, 0, 60, 0, 109, 193, 0, 221, 171, 87, 49, 87, 177, 0, 60, 0, 109, 193, 0, 221, 171, 76, 51, 210, 171, 0, 60, 0, 109, 193, 0, 221, 43, 76, 51, 210, 171, 0, 60, 0, 109, 193, 0, 221, 43, 76, 179, 210, 43, 0, 60, 0, 130, 0, 0, 221, 171, 76, 179, 210, 43, 0, 60, 0, 130, 0, 0, 221, 171, 76, 179, 210, 171, 0, 60, 0, 130, 0, 0, 221, 43, 76, 179, 210, 171, 0, 60, 0, 130, 0, 0, 221, 43, 76, 51, 210, 43, 0, 60, 0, 109, 63, 0, 221, 171, 76, 51, 210, 43, 0, 60, 0, 109, 63, 0, 221, 171, 87, 49, 87, 49, 0, 60, 0, 109, 63, 0, 221, 43, 87, 49, 87, 49, 0, 60, 0, 109, 63, 0, 221, 171, 76, 51, 210, 43, 0, 60, 0, 127, 0, 0, 221, 43, 76, 51, 210, 43, 0, 60, 0, 127, 0, 0, 221, 43, 76, 51, 210, 171, 0, 60, 0, 127, 0, 0, 221, 171, 76, 51, 210, 171, 0, 60, 0, 127, 0, 0, 221, 43, 76, 179, 210, 171, 0, 60, 0, 147, 193, 0, 221, 171, 76, 179, 210, 171, 0, 60, 0, 147, 193, 0, 221, 171, 87, 177, 87, 177, 0, 60, 0, 147, 193, 0, 221, 43, 87, 177, 87, 177, 0, 60, 0, 147, 193, 0, 221, 43, 87, 49, 87, 49, 0, 60, 0, 63, 109, 0, 221, 171, 87, 49, 87, 49, 0, 60, 0, 63, 109, 0, 221, 171, 210, 43, 76, 51, 0, 60, 0, 63, 109, 0, 221, 43, 210, 43, 76, 51, 0, 60, 0, 63, 109, 0), -"array_index_data": PackedByteArray(0, 0, 2, 0, 1, 0, 1, 0, 4, 0, 3, 0, 4, 0, 6, 0, 5, 0, 6, 0, 8, 0, 7, 0, 8, 0, 10, 0, 9, 0, 10, 0, 2, 0, 11, 0, 1, 0, 2, 0, 4, 0, 4, 0, 8, 0, 6, 0, 8, 0, 2, 0, 10, 0, 4, 0, 2, 0, 8, 0, 12, 0, 14, 0, 13, 0, 13, 0, 16, 0, 15, 0, 16, 0, 18, 0, 17, 0, 18, 0, 20, 0, 19, 0, 20, 0, 22, 0, 21, 0, 22, 0, 14, 0, 23, 0, 13, 0, 14, 0, 16, 0, 16, 0, 20, 0, 18, 0, 20, 0, 14, 0, 22, 0, 16, 0, 14, 0, 20, 0, 24, 0, 26, 0, 25, 0, 24, 0, 27, 0, 26, 0, 28, 0, 30, 0, 29, 0, 28, 0, 31, 0, 30, 0, 32, 0, 34, 0, 33, 0, 32, 0, 35, 0, 34, 0, 36, 0, 38, 0, 37, 0, 36, 0, 39, 0, 38, 0, 40, 0, 42, 0, 41, 0, 40, 0, 43, 0, 42, 0, 44, 0, 46, 0, 45, 0, 44, 0, 47, 0, 46, 0, 48, 0, 50, 0, 49, 0, 48, 0, 51, 0, 50, 0, 52, 0, 54, 0, 53, 0, 52, 0, 55, 0, 54, 0, 56, 0, 58, 0, 57, 0, 56, 0, 59, 0, 58, 0, 60, 0, 62, 0, 61, 0, 60, 0, 63, 0, 62, 0, 64, 0, 66, 0, 65, 0, 64, 0, 67, 0, 66, 0, 68, 0, 70, 0, 69, 0, 68, 0, 71, 0, 70, 0), -"blend_shape_data": [], -"format": 98051, +"format": 4099, "index_count": 132, -"material": ExtResource( 2 ), +"index_data": PackedByteArray(0, 0, 2, 0, 1, 0, 1, 0, 4, 0, 3, 0, 4, 0, 6, 0, 5, 0, 6, 0, 8, 0, 7, 0, 8, 0, 10, 0, 9, 0, 10, 0, 2, 0, 11, 0, 1, 0, 2, 0, 4, 0, 4, 0, 8, 0, 6, 0, 8, 0, 2, 0, 10, 0, 4, 0, 2, 0, 8, 0, 12, 0, 14, 0, 13, 0, 13, 0, 16, 0, 15, 0, 16, 0, 18, 0, 17, 0, 18, 0, 20, 0, 19, 0, 20, 0, 22, 0, 21, 0, 22, 0, 14, 0, 23, 0, 13, 0, 14, 0, 16, 0, 16, 0, 20, 0, 18, 0, 20, 0, 14, 0, 22, 0, 16, 0, 14, 0, 20, 0, 24, 0, 26, 0, 25, 0, 24, 0, 27, 0, 26, 0, 28, 0, 30, 0, 29, 0, 28, 0, 31, 0, 30, 0, 32, 0, 34, 0, 33, 0, 32, 0, 35, 0, 34, 0, 36, 0, 38, 0, 37, 0, 36, 0, 39, 0, 38, 0, 40, 0, 42, 0, 41, 0, 40, 0, 43, 0, 42, 0, 44, 0, 46, 0, 45, 0, 44, 0, 47, 0, 46, 0, 48, 0, 50, 0, 49, 0, 48, 0, 51, 0, 50, 0, 52, 0, 54, 0, 53, 0, 52, 0, 55, 0, 54, 0, 56, 0, 58, 0, 57, 0, 56, 0, 59, 0, 58, 0, 60, 0, 62, 0, 61, 0, 60, 0, 63, 0, 62, 0, 64, 0, 66, 0, 65, 0, 64, 0, 67, 0, 66, 0, 68, 0, 70, 0, 69, 0, 68, 0, 71, 0, 70, 0), +"material": ExtResource( "2" ), "name": "Material.001", -"primitive": 4, -"skeleton_aabb": [], -"vertex_count": 72 -} +"primitive": 3, +"vertex_count": 72, +"vertex_data": PackedByteArray(0, 160, 123, 61, 0, 128, 105, 62, 0, 64, 122, 61, 254, 3, 0, 0, 0, 160, 123, 61, 0, 224, 42, 62, 0, 224, 42, 62, 254, 3, 0, 0, 0, 160, 123, 61, 0, 128, 105, 62, 0, 64, 122, 189, 254, 3, 0, 0, 0, 160, 123, 61, 0, 64, 122, 61, 0, 128, 105, 62, 254, 3, 0, 0, 0, 160, 123, 61, 0, 64, 122, 189, 0, 128, 105, 62, 254, 3, 0, 0, 0, 160, 123, 61, 0, 224, 42, 190, 0, 224, 42, 62, 254, 3, 0, 0, 0, 160, 123, 61, 0, 128, 105, 190, 0, 64, 122, 61, 254, 3, 0, 0, 0, 160, 123, 61, 0, 128, 105, 190, 0, 64, 122, 189, 254, 3, 0, 0, 0, 160, 123, 61, 0, 224, 42, 190, 0, 224, 42, 190, 254, 3, 0, 0, 0, 160, 123, 61, 0, 64, 122, 189, 0, 128, 105, 190, 254, 3, 0, 0, 0, 160, 123, 61, 0, 64, 122, 61, 0, 128, 105, 190, 254, 3, 0, 0, 0, 160, 123, 61, 0, 224, 42, 62, 0, 224, 42, 190, 254, 3, 0, 0, 0, 160, 123, 189, 0, 128, 105, 62, 0, 64, 122, 61, 0, 0, 0, 0, 0, 160, 123, 189, 0, 128, 105, 62, 0, 64, 122, 189, 0, 0, 0, 0, 0, 160, 123, 189, 0, 224, 42, 62, 0, 224, 42, 62, 0, 0, 0, 0, 0, 160, 123, 189, 0, 224, 42, 62, 0, 224, 42, 190, 0, 0, 0, 0, 0, 160, 123, 189, 0, 64, 122, 61, 0, 128, 105, 190, 0, 0, 0, 0, 0, 160, 123, 189, 0, 64, 122, 189, 0, 128, 105, 190, 0, 0, 0, 0, 0, 160, 123, 189, 0, 224, 42, 190, 0, 224, 42, 190, 0, 0, 0, 0, 0, 160, 123, 189, 0, 128, 105, 190, 0, 64, 122, 189, 0, 0, 0, 0, 0, 160, 123, 189, 0, 128, 105, 190, 0, 64, 122, 61, 0, 0, 0, 0, 0, 160, 123, 189, 0, 224, 42, 190, 0, 224, 42, 62, 0, 0, 0, 0, 0, 160, 123, 189, 0, 64, 122, 189, 0, 128, 105, 62, 0, 0, 0, 0, 0, 160, 123, 189, 0, 64, 122, 61, 0, 128, 105, 62, 0, 0, 0, 0, 0, 160, 123, 61, 0, 224, 42, 190, 0, 224, 42, 190, 0, 0, 0, 0, 0, 160, 123, 189, 0, 224, 42, 190, 0, 224, 42, 190, 0, 0, 0, 0, 0, 160, 123, 189, 0, 64, 122, 189, 0, 128, 105, 190, 0, 0, 0, 0, 0, 160, 123, 61, 0, 64, 122, 189, 0, 128, 105, 190, 0, 0, 0, 0, 0, 160, 123, 61, 0, 64, 122, 61, 0, 128, 105, 62, 0, 0, 96, 63, 0, 160, 123, 189, 0, 64, 122, 61, 0, 128, 105, 62, 0, 0, 96, 63, 0, 160, 123, 189, 0, 64, 122, 189, 0, 128, 105, 62, 0, 0, 96, 63, 0, 160, 123, 61, 0, 64, 122, 189, 0, 128, 105, 62, 0, 0, 96, 63, 0, 160, 123, 61, 0, 64, 122, 189, 0, 128, 105, 190, 0, 0, 0, 0, 0, 160, 123, 189, 0, 64, 122, 189, 0, 128, 105, 190, 0, 0, 0, 0, 0, 160, 123, 189, 0, 64, 122, 61, 0, 128, 105, 190, 0, 0, 0, 0, 0, 160, 123, 61, 0, 64, 122, 61, 0, 128, 105, 190, 0, 0, 0, 0, 0, 160, 123, 61, 0, 64, 122, 189, 0, 128, 105, 62, 0, 0, 224, 54, 0, 160, 123, 189, 0, 64, 122, 189, 0, 128, 105, 62, 0, 0, 224, 54, 0, 160, 123, 189, 0, 224, 42, 190, 0, 224, 42, 62, 0, 0, 224, 54, 0, 160, 123, 61, 0, 224, 42, 190, 0, 224, 42, 62, 0, 0, 224, 54, 0, 160, 123, 61, 0, 64, 122, 61, 0, 128, 105, 190, 0, 236, 7, 0, 0, 160, 123, 189, 0, 64, 122, 61, 0, 128, 105, 190, 0, 236, 7, 0, 0, 160, 123, 189, 0, 224, 42, 62, 0, 224, 42, 190, 0, 236, 7, 0, 0, 160, 123, 61, 0, 224, 42, 62, 0, 224, 42, 190, 0, 236, 7, 0, 0, 160, 123, 61, 0, 224, 42, 190, 0, 224, 42, 62, 0, 0, 176, 31, 0, 160, 123, 189, 0, 224, 42, 190, 0, 224, 42, 62, 0, 0, 176, 31, 0, 160, 123, 189, 0, 128, 105, 190, 0, 64, 122, 61, 0, 0, 176, 31, 0, 160, 123, 61, 0, 128, 105, 190, 0, 64, 122, 61, 0, 0, 176, 31, 0, 160, 123, 61, 0, 224, 42, 62, 0, 224, 42, 190, 0, 184, 13, 0, 0, 160, 123, 189, 0, 224, 42, 62, 0, 224, 42, 190, 0, 184, 13, 0, 0, 160, 123, 189, 0, 128, 105, 62, 0, 64, 122, 189, 0, 184, 13, 0, 0, 160, 123, 61, 0, 128, 105, 62, 0, 64, 122, 189, 0, 184, 13, 0, 0, 160, 123, 61, 0, 128, 105, 190, 0, 64, 122, 61, 0, 0, 0, 0, 0, 160, 123, 189, 0, 128, 105, 190, 0, 64, 122, 61, 0, 0, 0, 0, 0, 160, 123, 189, 0, 128, 105, 190, 0, 64, 122, 189, 0, 0, 0, 0, 0, 160, 123, 61, 0, 128, 105, 190, 0, 64, 122, 189, 0, 0, 0, 0, 0, 160, 123, 61, 0, 128, 105, 62, 0, 64, 122, 61, 0, 184, 189, 31, 0, 160, 123, 189, 0, 128, 105, 62, 0, 64, 122, 61, 0, 184, 189, 31, 0, 160, 123, 189, 0, 224, 42, 62, 0, 224, 42, 62, 0, 184, 189, 31, 0, 160, 123, 61, 0, 224, 42, 62, 0, 224, 42, 62, 0, 184, 189, 31, 0, 160, 123, 189, 0, 128, 105, 62, 0, 64, 122, 61, 0, 248, 15, 0, 0, 160, 123, 61, 0, 128, 105, 62, 0, 64, 122, 61, 0, 248, 15, 0, 0, 160, 123, 61, 0, 128, 105, 62, 0, 64, 122, 189, 0, 248, 15, 0, 0, 160, 123, 189, 0, 128, 105, 62, 0, 64, 122, 189, 0, 248, 15, 0, 0, 160, 123, 61, 0, 128, 105, 190, 0, 64, 122, 189, 0, 0, 0, 0, 0, 160, 123, 189, 0, 128, 105, 190, 0, 64, 122, 189, 0, 0, 0, 0, 0, 160, 123, 189, 0, 224, 42, 190, 0, 224, 42, 190, 0, 0, 0, 0, 0, 160, 123, 61, 0, 224, 42, 190, 0, 224, 42, 190, 0, 0, 0, 0, 0, 160, 123, 61, 0, 224, 42, 62, 0, 224, 42, 62, 0, 236, 231, 54, 0, 160, 123, 189, 0, 224, 42, 62, 0, 224, 42, 62, 0, 236, 231, 54, 0, 160, 123, 189, 0, 64, 122, 61, 0, 128, 105, 62, 0, 236, 231, 54, 0, 160, 123, 61, 0, 64, 122, 61, 0, 128, 105, 62, 0, 236, 231, 54) +}] -[sub_resource type="ArrayMesh" id=6] -surfaces/0 = { +[sub_resource type="ArrayMesh" id="6"] +_surfaces = [{ "aabb": AABB(-0.654197, 0.000773793, -1.24434, 1.30839, 1.06541, 2.67806), -"array_data": PackedByteArray(5, 56, 192, 56, 123, 53, 0, 60, 13, 125, 17, 0, 0, 0, 192, 56, 5, 55, 0, 60, 13, 125, 17, 0, 0, 0, 6, 56, 149, 61, 0, 60, 13, 125, 17, 0, 247, 51, 253, 54, 149, 61, 0, 60, 13, 125, 17, 0, 5, 56, 86, 18, 250, 188, 0, 60, 0, 14, 130, 0, 0, 0, 86, 18, 250, 188, 0, 60, 0, 14, 130, 0, 0, 0, 192, 56, 179, 188, 0, 60, 0, 14, 130, 0, 5, 56, 192, 56, 179, 188, 0, 60, 0, 14, 130, 0, 0, 0, 86, 18, 20, 181, 0, 60, 0, 130, 0, 0, 0, 0, 86, 18, 250, 188, 0, 60, 0, 130, 0, 0, 5, 56, 86, 18, 20, 181, 0, 60, 0, 130, 0, 0, 5, 56, 86, 18, 250, 188, 0, 60, 0, 130, 0, 0, 5, 56, 86, 18, 81, 188, 0, 60, 0, 130, 0, 0, 5, 56, 86, 18, 81, 188, 0, 60, 0, 0, 0, 0, 5, 56, 86, 18, 224, 183, 0, 60, 0, 0, 0, 0, 5, 56, 86, 18, 20, 181, 0, 60, 0, 0, 0, 0, 5, 56, 47, 60, 21, 50, 0, 60, 5, 126, 0, 0, 5, 56, 47, 60, 20, 181, 0, 60, 5, 126, 0, 0, 0, 0, 67, 60, 20, 181, 0, 60, 5, 126, 0, 0, 0, 0, 67, 60, 148, 52, 0, 60, 5, 126, 0, 0, 0, 0, 86, 18, 123, 53, 0, 60, 0, 130, 0, 0, 5, 56, 86, 18, 123, 53, 0, 60, 0, 130, 0, 0, 247, 51, 86, 18, 188, 61, 0, 60, 0, 130, 0, 0, 0, 0, 86, 18, 188, 61, 0, 60, 0, 130, 0, 0, 5, 56, 192, 56, 123, 53, 0, 60, 123, 5, 30, 0, 247, 51, 253, 54, 149, 61, 0, 60, 123, 5, 30, 0, 175, 52, 242, 52, 255, 60, 0, 60, 123, 5, 30, 0, 209, 53, 242, 52, 158, 59, 0, 60, 123, 5, 30, 0, 5, 56, 86, 18, 123, 53, 0, 60, 123, 0, 28, 0, 5, 56, 192, 56, 123, 53, 0, 60, 123, 0, 28, 0, 209, 53, 242, 52, 158, 59, 0, 60, 123, 0, 28, 0, 247, 51, 253, 54, 149, 61, 0, 60, 122, 2, 33, 0, 247, 51, 86, 18, 188, 61, 0, 60, 122, 2, 33, 0, 175, 52, 242, 52, 255, 60, 0, 60, 122, 2, 33, 0, 5, 56, 86, 18, 250, 188, 0, 60, 127, 0, 0, 0, 5, 56, 192, 56, 179, 188, 0, 60, 127, 0, 0, 0, 5, 56, 10, 53, 161, 187, 0, 60, 127, 0, 0, 0, 5, 56, 86, 18, 81, 188, 0, 60, 127, 0, 0, 0, 5, 56, 192, 56, 20, 181, 0, 60, 127, 0, 0, 0, 5, 56, 86, 18, 20, 181, 0, 60, 127, 0, 0, 0, 5, 56, 86, 18, 224, 183, 0, 60, 127, 0, 0, 0, 5, 56, 10, 53, 242, 184, 0, 60, 127, 0, 0, 0, 5, 56, 192, 56, 123, 53, 0, 60, 127, 0, 0, 0, 5, 56, 86, 18, 123, 53, 0, 60, 127, 0, 0, 0, 5, 56, 47, 60, 250, 188, 0, 60, 5, 126, 0, 0, 0, 0, 67, 60, 250, 188, 0, 60, 5, 126, 0, 0, 5, 56, 10, 53, 242, 184, 0, 60, 12, 52, 115, 0, 5, 56, 86, 18, 224, 183, 0, 60, 12, 52, 115, 0, 59, 57, 86, 18, 224, 183, 0, 60, 12, 52, 115, 0, 59, 57, 123, 52, 20, 185, 0, 60, 12, 52, 115, 0, 5, 56, 86, 18, 123, 53, 0, 60, 10, 114, 204, 0, 209, 53, 242, 52, 158, 59, 0, 60, 10, 114, 204, 0, 59, 57, 99, 52, 188, 59, 0, 60, 10, 114, 204, 0, 59, 57, 86, 18, 123, 53, 0, 60, 10, 114, 204, 0, 5, 56, 86, 18, 81, 188, 0, 60, 12, 52, 141, 0, 5, 56, 10, 53, 161, 187, 0, 60, 12, 52, 141, 0, 59, 57, 123, 52, 127, 187, 0, 60, 12, 52, 141, 0, 59, 57, 86, 18, 81, 188, 0, 60, 12, 52, 141, 0, 209, 53, 242, 52, 158, 59, 0, 60, 13, 126, 1, 0, 175, 52, 242, 52, 255, 60, 0, 60, 13, 126, 1, 0, 59, 57, 99, 52, 240, 60, 0, 60, 13, 126, 1, 0, 59, 57, 99, 52, 188, 59, 0, 60, 13, 126, 1, 0, 5, 56, 86, 18, 20, 181, 0, 60, 0, 127, 0, 0, 5, 56, 86, 18, 123, 53, 0, 60, 0, 127, 0, 0, 59, 57, 86, 18, 123, 53, 0, 60, 0, 127, 0, 0, 59, 57, 86, 18, 20, 181, 0, 60, 0, 127, 0, 0, 5, 56, 10, 53, 161, 187, 0, 60, 28, 123, 0, 0, 5, 56, 10, 53, 242, 184, 0, 60, 28, 123, 0, 0, 59, 57, 123, 52, 20, 185, 0, 60, 28, 123, 0, 0, 59, 57, 123, 52, 127, 187, 0, 60, 28, 123, 0, 0, 5, 56, 86, 18, 224, 183, 0, 60, 0, 127, 0, 0, 59, 57, 86, 18, 224, 183, 0, 60, 0, 127, 0, 0, 175, 52, 242, 52, 255, 60, 0, 60, 10, 63, 109, 0, 247, 51, 86, 18, 188, 61, 0, 60, 10, 63, 109, 0, 172, 54, 79, 47, 103, 61, 0, 60, 10, 63, 109, 0, 233, 54, 9, 50, 58, 61, 0, 60, 10, 63, 109, 0, 59, 57, 99, 52, 240, 60, 0, 60, 10, 63, 109, 0, 175, 52, 242, 52, 255, 60, 0, 60, 10, 63, 109, 0, 233, 54, 9, 50, 58, 61, 0, 60, 10, 63, 109, 0, 40, 56, 222, 49, 52, 61, 0, 60, 10, 63, 109, 0, 247, 51, 86, 18, 188, 61, 0, 60, 0, 74, 102, 0, 59, 57, 86, 18, 188, 61, 0, 60, 0, 74, 102, 0, 38, 56, 28, 47, 105, 61, 0, 60, 0, 74, 102, 0, 172, 54, 79, 47, 103, 61, 0, 60, 0, 74, 102, 0, 59, 57, 99, 52, 240, 60, 0, 60, 0, 74, 102, 0, 40, 56, 222, 49, 52, 61, 0, 60, 0, 74, 102, 0, 38, 56, 28, 47, 105, 61, 0, 60, 127, 255, 0, 0, 40, 56, 222, 49, 52, 61, 0, 60, 127, 255, 0, 0, 40, 56, 195, 49, 94, 61, 0, 60, 127, 255, 0, 0, 38, 56, 89, 47, 116, 61, 0, 60, 127, 255, 0, 0, 233, 54, 9, 50, 58, 61, 0, 60, 132, 26, 0, 0, 172, 54, 79, 47, 103, 61, 0, 60, 132, 26, 0, 0, 172, 54, 135, 47, 114, 61, 0, 60, 132, 26, 0, 0, 233, 54, 233, 49, 92, 61, 0, 60, 132, 26, 0, 0, 40, 56, 222, 49, 52, 61, 0, 60, 7, 126, 11, 0, 233, 54, 9, 50, 58, 61, 0, 60, 7, 126, 11, 0, 233, 54, 233, 49, 92, 61, 0, 60, 7, 126, 11, 0, 40, 56, 195, 49, 94, 61, 0, 60, 7, 126, 11, 0, 172, 54, 79, 47, 103, 61, 0, 60, 252, 137, 41, 0, 38, 56, 28, 47, 105, 61, 0, 60, 252, 137, 41, 0, 38, 56, 89, 47, 116, 61, 0, 60, 252, 137, 41, 0, 172, 54, 135, 47, 114, 61, 0, 60, 252, 137, 41, 0, 5, 184, 192, 56, 123, 53, 0, 60, 243, 125, 17, 0, 247, 179, 253, 54, 149, 61, 0, 60, 243, 125, 17, 0, 0, 0, 6, 56, 149, 61, 0, 60, 243, 125, 17, 0, 0, 0, 192, 56, 5, 55, 0, 60, 243, 125, 17, 0, 5, 184, 86, 18, 250, 188, 0, 60, 0, 14, 130, 0, 5, 184, 192, 56, 179, 188, 0, 60, 0, 14, 130, 0, 5, 184, 86, 18, 20, 181, 0, 60, 0, 130, 0, 0, 5, 184, 86, 18, 224, 183, 0, 60, 0, 0, 0, 0, 5, 184, 86, 18, 81, 188, 0, 60, 0, 0, 0, 0, 5, 184, 86, 18, 250, 188, 0, 60, 0, 0, 0, 0, 5, 184, 86, 18, 250, 188, 0, 60, 0, 130, 0, 0, 5, 184, 86, 18, 20, 181, 0, 60, 0, 0, 0, 0, 5, 184, 47, 60, 21, 50, 0, 60, 252, 126, 0, 0, 0, 0, 67, 60, 148, 52, 0, 60, 252, 126, 0, 0, 0, 0, 67, 60, 20, 181, 0, 60, 252, 126, 0, 0, 5, 184, 47, 60, 20, 181, 0, 60, 252, 126, 0, 0, 247, 179, 86, 18, 188, 61, 0, 60, 0, 130, 0, 0, 5, 184, 86, 18, 123, 53, 0, 60, 0, 130, 0, 0, 5, 184, 192, 56, 123, 53, 0, 60, 133, 5, 30, 0, 209, 181, 242, 52, 158, 59, 0, 60, 133, 5, 30, 0, 175, 180, 242, 52, 255, 60, 0, 60, 133, 5, 30, 0, 247, 179, 253, 54, 149, 61, 0, 60, 133, 5, 30, 0, 5, 184, 86, 18, 123, 53, 0, 60, 133, 0, 28, 0, 209, 181, 242, 52, 158, 59, 0, 60, 133, 0, 28, 0, 5, 184, 192, 56, 123, 53, 0, 60, 133, 0, 28, 0, 247, 179, 253, 54, 149, 61, 0, 60, 134, 2, 33, 0, 175, 180, 242, 52, 255, 60, 0, 60, 134, 2, 33, 0, 247, 179, 86, 18, 188, 61, 0, 60, 134, 2, 33, 0, 5, 184, 86, 18, 250, 188, 0, 60, 130, 0, 0, 0, 5, 184, 86, 18, 81, 188, 0, 60, 130, 0, 0, 0, 5, 184, 10, 53, 161, 187, 0, 60, 130, 0, 0, 0, 5, 184, 192, 56, 179, 188, 0, 60, 130, 0, 0, 0, 5, 184, 192, 56, 20, 181, 0, 60, 130, 0, 0, 0, 5, 184, 10, 53, 242, 184, 0, 60, 130, 0, 0, 0, 5, 184, 86, 18, 224, 183, 0, 60, 130, 0, 0, 0, 5, 184, 86, 18, 20, 181, 0, 60, 130, 0, 0, 0, 5, 184, 86, 18, 123, 53, 0, 60, 130, 0, 0, 0, 5, 184, 192, 56, 123, 53, 0, 60, 130, 0, 0, 0, 0, 0, 67, 60, 250, 188, 0, 60, 252, 126, 0, 0, 5, 184, 47, 60, 250, 188, 0, 60, 252, 126, 0, 0, 5, 184, 10, 53, 242, 184, 0, 60, 244, 52, 115, 0, 59, 185, 123, 52, 20, 185, 0, 60, 244, 52, 115, 0, 59, 185, 86, 18, 224, 183, 0, 60, 244, 52, 115, 0, 5, 184, 86, 18, 224, 183, 0, 60, 244, 52, 115, 0, 5, 184, 86, 18, 123, 53, 0, 60, 246, 114, 204, 0, 59, 185, 86, 18, 123, 53, 0, 60, 246, 114, 204, 0, 59, 185, 99, 52, 188, 59, 0, 60, 246, 114, 204, 0, 209, 181, 242, 52, 158, 59, 0, 60, 246, 114, 204, 0, 5, 184, 86, 18, 81, 188, 0, 60, 244, 52, 141, 0, 59, 185, 86, 18, 81, 188, 0, 60, 244, 52, 141, 0, 59, 185, 123, 52, 127, 187, 0, 60, 244, 52, 141, 0, 5, 184, 10, 53, 161, 187, 0, 60, 244, 52, 141, 0, 209, 181, 242, 52, 158, 59, 0, 60, 243, 126, 1, 0, 59, 185, 99, 52, 188, 59, 0, 60, 243, 126, 1, 0, 59, 185, 99, 52, 240, 60, 0, 60, 243, 126, 1, 0, 175, 180, 242, 52, 255, 60, 0, 60, 243, 126, 1, 0, 5, 184, 86, 18, 20, 181, 0, 60, 0, 127, 0, 0, 59, 185, 86, 18, 20, 181, 0, 60, 0, 127, 0, 0, 59, 185, 86, 18, 123, 53, 0, 60, 0, 127, 0, 0, 5, 184, 86, 18, 123, 53, 0, 60, 0, 127, 0, 0, 5, 184, 10, 53, 161, 187, 0, 60, 228, 123, 0, 0, 59, 185, 123, 52, 127, 187, 0, 60, 228, 123, 0, 0, 59, 185, 123, 52, 20, 185, 0, 60, 228, 123, 0, 0, 5, 184, 10, 53, 242, 184, 0, 60, 228, 123, 0, 0, 5, 184, 86, 18, 224, 183, 0, 60, 0, 127, 0, 0, 59, 185, 86, 18, 224, 183, 0, 60, 0, 127, 0, 0, 175, 180, 242, 52, 255, 60, 0, 60, 246, 63, 109, 0, 233, 182, 9, 50, 58, 61, 0, 60, 246, 63, 109, 0, 172, 182, 79, 47, 103, 61, 0, 60, 246, 63, 109, 0, 247, 179, 86, 18, 188, 61, 0, 60, 246, 63, 109, 0, 59, 185, 99, 52, 240, 60, 0, 60, 246, 63, 109, 0, 40, 184, 222, 49, 52, 61, 0, 60, 246, 63, 109, 0, 233, 182, 9, 50, 58, 61, 0, 60, 246, 63, 109, 0, 175, 180, 242, 52, 255, 60, 0, 60, 246, 63, 109, 0, 247, 179, 86, 18, 188, 61, 0, 60, 0, 74, 102, 0, 172, 182, 79, 47, 103, 61, 0, 60, 0, 74, 102, 0, 38, 184, 28, 47, 105, 61, 0, 60, 0, 74, 102, 0, 59, 185, 86, 18, 188, 61, 0, 60, 0, 74, 102, 0, 40, 184, 222, 49, 52, 61, 0, 60, 0, 74, 102, 0, 59, 185, 99, 52, 240, 60, 0, 60, 0, 74, 102, 0, 38, 184, 28, 47, 105, 61, 0, 60, 130, 255, 0, 0, 38, 184, 89, 47, 116, 61, 0, 60, 130, 255, 0, 0, 40, 184, 195, 49, 94, 61, 0, 60, 130, 255, 0, 0, 40, 184, 222, 49, 52, 61, 0, 60, 130, 255, 0, 0, 233, 182, 9, 50, 58, 61, 0, 60, 124, 26, 0, 0, 233, 182, 233, 49, 92, 61, 0, 60, 124, 26, 0, 0, 172, 182, 135, 47, 114, 61, 0, 60, 124, 26, 0, 0, 172, 182, 79, 47, 103, 61, 0, 60, 124, 26, 0, 0, 40, 184, 222, 49, 52, 61, 0, 60, 249, 126, 11, 0, 40, 184, 195, 49, 94, 61, 0, 60, 249, 126, 11, 0, 233, 182, 233, 49, 92, 61, 0, 60, 249, 126, 11, 0, 233, 182, 9, 50, 58, 61, 0, 60, 249, 126, 11, 0, 172, 182, 79, 47, 103, 61, 0, 60, 4, 137, 41, 0, 172, 182, 135, 47, 114, 61, 0, 60, 4, 137, 41, 0, 38, 184, 89, 47, 116, 61, 0, 60, 4, 137, 41, 0, 38, 184, 28, 47, 105, 61, 0, 60, 4, 137, 41, 0), -"array_index_data": PackedByteArray(0, 0, 2, 0, 1, 0, 0, 0, 3, 0, 2, 0, 4, 0, 6, 0, 5, 0, 4, 0, 7, 0, 6, 0, 8, 0, 10, 0, 9, 0, 9, 0, 12, 0, 11, 0, 13, 0, 15, 0, 14, 0, 9, 0, 10, 0, 12, 0, 16, 0, 18, 0, 17, 0, 16, 0, 19, 0, 18, 0, 20, 0, 22, 0, 21, 0, 20, 0, 23, 0, 22, 0, 24, 0, 26, 0, 25, 0, 24, 0, 27, 0, 26, 0, 28, 0, 30, 0, 29, 0, 31, 0, 33, 0, 32, 0, 34, 0, 36, 0, 35, 0, 34, 0, 37, 0, 36, 0, 38, 0, 40, 0, 39, 0, 38, 0, 41, 0, 40, 0, 38, 0, 43, 0, 42, 0, 38, 0, 39, 0, 43, 0, 17, 0, 45, 0, 44, 0, 17, 0, 18, 0, 45, 0, 20, 0, 10, 0, 8, 0, 20, 0, 21, 0, 10, 0, 46, 0, 48, 0, 47, 0, 46, 0, 49, 0, 48, 0, 50, 0, 52, 0, 51, 0, 50, 0, 53, 0, 52, 0, 35, 0, 41, 0, 38, 0, 35, 0, 36, 0, 41, 0, 54, 0, 56, 0, 55, 0, 54, 0, 57, 0, 56, 0, 58, 0, 60, 0, 59, 0, 58, 0, 61, 0, 60, 0, 62, 0, 64, 0, 63, 0, 62, 0, 65, 0, 64, 0, 66, 0, 68, 0, 67, 0, 66, 0, 69, 0, 68, 0, 70, 0, 65, 0, 62, 0, 70, 0, 71, 0, 65, 0, 72, 0, 74, 0, 73, 0, 72, 0, 75, 0, 74, 0, 76, 0, 78, 0, 77, 0, 76, 0, 79, 0, 78, 0, 80, 0, 82, 0, 81, 0, 80, 0, 83, 0, 82, 0, 81, 0, 85, 0, 84, 0, 81, 0, 82, 0, 85, 0, 86, 0, 88, 0, 87, 0, 86, 0, 89, 0, 88, 0, 90, 0, 92, 0, 91, 0, 90, 0, 93, 0, 92, 0, 94, 0, 96, 0, 95, 0, 94, 0, 97, 0, 96, 0, 98, 0, 100, 0, 99, 0, 98, 0, 101, 0, 100, 0, 102, 0, 104, 0, 103, 0, 102, 0, 105, 0, 104, 0, 6, 0, 106, 0, 5, 0, 6, 0, 107, 0, 106, 0, 8, 0, 9, 0, 108, 0, 109, 0, 111, 0, 110, 0, 108, 0, 9, 0, 112, 0, 113, 0, 111, 0, 109, 0, 114, 0, 116, 0, 115, 0, 114, 0, 117, 0, 116, 0, 20, 0, 118, 0, 23, 0, 20, 0, 119, 0, 118, 0, 120, 0, 122, 0, 121, 0, 120, 0, 123, 0, 122, 0, 124, 0, 126, 0, 125, 0, 127, 0, 129, 0, 128, 0, 130, 0, 132, 0, 131, 0, 130, 0, 133, 0, 132, 0, 134, 0, 136, 0, 135, 0, 134, 0, 137, 0, 136, 0, 134, 0, 138, 0, 137, 0, 134, 0, 139, 0, 138, 0, 117, 0, 140, 0, 116, 0, 117, 0, 141, 0, 140, 0, 20, 0, 108, 0, 119, 0, 20, 0, 8, 0, 108, 0, 142, 0, 144, 0, 143, 0, 142, 0, 145, 0, 144, 0, 146, 0, 148, 0, 147, 0, 146, 0, 149, 0, 148, 0, 133, 0, 135, 0, 132, 0, 133, 0, 134, 0, 135, 0, 150, 0, 152, 0, 151, 0, 150, 0, 153, 0, 152, 0, 154, 0, 156, 0, 155, 0, 154, 0, 157, 0, 156, 0, 158, 0, 160, 0, 159, 0, 158, 0, 161, 0, 160, 0, 162, 0, 164, 0, 163, 0, 162, 0, 165, 0, 164, 0, 166, 0, 159, 0, 167, 0, 166, 0, 158, 0, 159, 0, 168, 0, 170, 0, 169, 0, 168, 0, 171, 0, 170, 0, 172, 0, 174, 0, 173, 0, 172, 0, 175, 0, 174, 0, 176, 0, 178, 0, 177, 0, 176, 0, 179, 0, 178, 0, 179, 0, 180, 0, 178, 0, 179, 0, 181, 0, 180, 0, 182, 0, 184, 0, 183, 0, 182, 0, 185, 0, 184, 0, 186, 0, 188, 0, 187, 0, 186, 0, 189, 0, 188, 0, 190, 0, 192, 0, 191, 0, 190, 0, 193, 0, 192, 0, 194, 0, 196, 0, 195, 0, 194, 0, 197, 0, 196, 0), -"blend_shape_data": [], -"format": 98051, +"format": 4099, "index_count": 348, -"material": ExtResource( 2 ), +"index_data": PackedByteArray(0, 0, 2, 0, 1, 0, 0, 0, 3, 0, 2, 0, 4, 0, 6, 0, 5, 0, 4, 0, 7, 0, 6, 0, 8, 0, 10, 0, 9, 0, 9, 0, 12, 0, 11, 0, 13, 0, 15, 0, 14, 0, 9, 0, 10, 0, 12, 0, 16, 0, 18, 0, 17, 0, 16, 0, 19, 0, 18, 0, 20, 0, 22, 0, 21, 0, 20, 0, 23, 0, 22, 0, 24, 0, 26, 0, 25, 0, 24, 0, 27, 0, 26, 0, 28, 0, 30, 0, 29, 0, 31, 0, 33, 0, 32, 0, 34, 0, 36, 0, 35, 0, 34, 0, 37, 0, 36, 0, 38, 0, 40, 0, 39, 0, 38, 0, 41, 0, 40, 0, 38, 0, 43, 0, 42, 0, 38, 0, 39, 0, 43, 0, 17, 0, 45, 0, 44, 0, 17, 0, 18, 0, 45, 0, 20, 0, 10, 0, 8, 0, 20, 0, 21, 0, 10, 0, 46, 0, 48, 0, 47, 0, 46, 0, 49, 0, 48, 0, 50, 0, 52, 0, 51, 0, 50, 0, 53, 0, 52, 0, 35, 0, 41, 0, 38, 0, 35, 0, 36, 0, 41, 0, 54, 0, 56, 0, 55, 0, 54, 0, 57, 0, 56, 0, 58, 0, 60, 0, 59, 0, 58, 0, 61, 0, 60, 0, 62, 0, 64, 0, 63, 0, 62, 0, 65, 0, 64, 0, 66, 0, 68, 0, 67, 0, 66, 0, 69, 0, 68, 0, 70, 0, 65, 0, 62, 0, 70, 0, 71, 0, 65, 0, 72, 0, 74, 0, 73, 0, 72, 0, 75, 0, 74, 0, 76, 0, 78, 0, 77, 0, 76, 0, 79, 0, 78, 0, 80, 0, 82, 0, 81, 0, 80, 0, 83, 0, 82, 0, 81, 0, 85, 0, 84, 0, 81, 0, 82, 0, 85, 0, 86, 0, 88, 0, 87, 0, 86, 0, 89, 0, 88, 0, 90, 0, 92, 0, 91, 0, 90, 0, 93, 0, 92, 0, 94, 0, 96, 0, 95, 0, 94, 0, 97, 0, 96, 0, 98, 0, 100, 0, 99, 0, 98, 0, 101, 0, 100, 0, 102, 0, 104, 0, 103, 0, 102, 0, 105, 0, 104, 0, 6, 0, 106, 0, 5, 0, 6, 0, 107, 0, 106, 0, 8, 0, 9, 0, 108, 0, 109, 0, 111, 0, 110, 0, 108, 0, 9, 0, 112, 0, 113, 0, 111, 0, 109, 0, 114, 0, 116, 0, 115, 0, 114, 0, 117, 0, 116, 0, 20, 0, 118, 0, 23, 0, 20, 0, 119, 0, 118, 0, 120, 0, 122, 0, 121, 0, 120, 0, 123, 0, 122, 0, 124, 0, 126, 0, 125, 0, 127, 0, 129, 0, 128, 0, 130, 0, 132, 0, 131, 0, 130, 0, 133, 0, 132, 0, 134, 0, 136, 0, 135, 0, 134, 0, 137, 0, 136, 0, 134, 0, 138, 0, 137, 0, 134, 0, 139, 0, 138, 0, 117, 0, 140, 0, 116, 0, 117, 0, 141, 0, 140, 0, 20, 0, 108, 0, 119, 0, 20, 0, 8, 0, 108, 0, 142, 0, 144, 0, 143, 0, 142, 0, 145, 0, 144, 0, 146, 0, 148, 0, 147, 0, 146, 0, 149, 0, 148, 0, 133, 0, 135, 0, 132, 0, 133, 0, 134, 0, 135, 0, 150, 0, 152, 0, 151, 0, 150, 0, 153, 0, 152, 0, 154, 0, 156, 0, 155, 0, 154, 0, 157, 0, 156, 0, 158, 0, 160, 0, 159, 0, 158, 0, 161, 0, 160, 0, 162, 0, 164, 0, 163, 0, 162, 0, 165, 0, 164, 0, 166, 0, 159, 0, 167, 0, 166, 0, 158, 0, 159, 0, 168, 0, 170, 0, 169, 0, 168, 0, 171, 0, 170, 0, 172, 0, 174, 0, 173, 0, 172, 0, 175, 0, 174, 0, 176, 0, 178, 0, 177, 0, 176, 0, 179, 0, 178, 0, 179, 0, 180, 0, 178, 0, 179, 0, 181, 0, 180, 0, 182, 0, 184, 0, 183, 0, 182, 0, 185, 0, 184, 0, 186, 0, 188, 0, 187, 0, 186, 0, 189, 0, 188, 0, 190, 0, 192, 0, 191, 0, 190, 0, 193, 0, 192, 0, 194, 0, 196, 0, 195, 0, 194, 0, 197, 0, 196, 0), +"material": ExtResource( "2" ), "name": "Material.001", -"primitive": 4, -"skeleton_aabb": [], -"vertex_count": 198 -} -surfaces/1 = { +"primitive": 3, +"vertex_count": 198, +"vertex_data": PackedByteArray(0, 160, 0, 63, 0, 0, 24, 63, 0, 96, 175, 62, 104, 184, 143, 8, 0, 0, 0, 0, 0, 0, 24, 63, 0, 160, 224, 62, 104, 184, 143, 8, 0, 0, 0, 0, 0, 192, 0, 63, 0, 160, 178, 63, 104, 184, 143, 8, 0, 224, 126, 62, 0, 160, 223, 62, 0, 160, 178, 63, 104, 184, 143, 8, 0, 160, 0, 63, 0, 192, 74, 58, 0, 64, 159, 191, 0, 192, 1, 0, 0, 0, 0, 0, 0, 192, 74, 58, 0, 64, 159, 191, 0, 192, 1, 0, 0, 0, 0, 0, 0, 0, 24, 63, 0, 96, 150, 191, 0, 192, 1, 0, 0, 160, 0, 63, 0, 0, 24, 63, 0, 96, 150, 191, 0, 192, 1, 0, 0, 0, 0, 0, 0, 192, 74, 58, 0, 128, 162, 190, 0, 0, 0, 0, 0, 0, 0, 0, 0, 192, 74, 58, 0, 64, 159, 191, 0, 0, 0, 0, 0, 160, 0, 63, 0, 192, 74, 58, 0, 128, 162, 190, 0, 0, 0, 0, 0, 160, 0, 63, 0, 192, 74, 58, 0, 64, 159, 191, 0, 0, 0, 0, 0, 160, 0, 63, 0, 192, 74, 58, 0, 32, 138, 191, 0, 0, 0, 0, 0, 160, 0, 63, 0, 192, 74, 58, 0, 32, 138, 191, 0, 0, 0, 0, 0, 160, 0, 63, 0, 192, 74, 58, 0, 0, 252, 190, 0, 0, 0, 0, 0, 160, 0, 63, 0, 192, 74, 58, 0, 128, 162, 190, 0, 0, 0, 0, 0, 160, 0, 63, 0, 224, 133, 63, 0, 160, 66, 62, 40, 216, 15, 0, 0, 160, 0, 63, 0, 224, 133, 63, 0, 128, 162, 190, 40, 216, 15, 0, 0, 0, 0, 0, 0, 96, 136, 63, 0, 128, 162, 190, 40, 216, 15, 0, 0, 0, 0, 0, 0, 96, 136, 63, 0, 128, 146, 62, 40, 216, 15, 0, 0, 0, 0, 0, 0, 192, 74, 58, 0, 96, 175, 62, 0, 0, 0, 0, 0, 160, 0, 63, 0, 192, 74, 58, 0, 96, 175, 62, 0, 0, 0, 0, 0, 224, 126, 62, 0, 192, 74, 58, 0, 128, 183, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 192, 74, 58, 0, 128, 183, 63, 0, 0, 0, 0, 0, 160, 0, 63, 0, 0, 24, 63, 0, 96, 175, 62, 222, 163, 16, 15, 0, 224, 126, 62, 0, 160, 223, 62, 0, 160, 178, 63, 222, 163, 16, 15, 0, 224, 149, 62, 0, 64, 158, 62, 0, 224, 159, 63, 222, 163, 16, 15, 0, 32, 186, 62, 0, 64, 158, 62, 0, 192, 115, 63, 222, 163, 16, 15, 0, 160, 0, 63, 0, 192, 74, 58, 0, 96, 175, 62, 222, 3, 16, 14, 0, 160, 0, 63, 0, 0, 24, 63, 0, 96, 175, 62, 222, 3, 16, 14, 0, 32, 186, 62, 0, 64, 158, 62, 0, 192, 115, 63, 222, 3, 16, 14, 0, 224, 126, 62, 0, 160, 223, 62, 0, 160, 178, 63, 214, 67, 144, 16, 0, 224, 126, 62, 0, 192, 74, 58, 0, 128, 183, 63, 214, 67, 144, 16, 0, 224, 149, 62, 0, 64, 158, 62, 0, 224, 159, 63, 214, 67, 144, 16, 0, 160, 0, 63, 0, 192, 74, 58, 0, 64, 159, 191, 254, 3, 0, 0, 0, 160, 0, 63, 0, 0, 24, 63, 0, 96, 150, 191, 254, 3, 0, 0, 0, 160, 0, 63, 0, 64, 161, 62, 0, 32, 116, 191, 254, 3, 0, 0, 0, 160, 0, 63, 0, 192, 74, 58, 0, 32, 138, 191, 254, 3, 0, 0, 0, 160, 0, 63, 0, 0, 24, 63, 0, 128, 162, 190, 254, 3, 0, 0, 0, 160, 0, 63, 0, 192, 74, 58, 0, 128, 162, 190, 254, 3, 0, 0, 0, 160, 0, 63, 0, 192, 74, 58, 0, 0, 252, 190, 254, 3, 0, 0, 0, 160, 0, 63, 0, 64, 161, 62, 0, 64, 30, 191, 254, 3, 0, 0, 0, 160, 0, 63, 0, 0, 24, 63, 0, 96, 175, 62, 254, 3, 0, 0, 0, 160, 0, 63, 0, 192, 74, 58, 0, 96, 175, 62, 254, 3, 0, 0, 0, 160, 0, 63, 0, 224, 133, 63, 0, 64, 159, 191, 40, 216, 15, 0, 0, 0, 0, 0, 0, 96, 136, 63, 0, 64, 159, 191, 40, 216, 15, 0, 0, 160, 0, 63, 0, 64, 161, 62, 0, 64, 30, 191, 96, 136, 230, 57, 0, 160, 0, 63, 0, 192, 74, 58, 0, 0, 252, 190, 96, 136, 230, 57, 0, 96, 39, 63, 0, 192, 74, 58, 0, 0, 252, 190, 96, 136, 230, 57, 0, 96, 39, 63, 0, 96, 143, 62, 0, 128, 34, 191, 96, 136, 230, 57, 0, 160, 0, 63, 0, 192, 74, 58, 0, 96, 175, 62, 80, 88, 14, 0, 0, 32, 186, 62, 0, 64, 158, 62, 0, 192, 115, 63, 80, 88, 14, 0, 0, 96, 39, 63, 0, 96, 140, 62, 0, 128, 119, 63, 80, 88, 14, 0, 0, 96, 39, 63, 0, 192, 74, 58, 0, 96, 175, 62, 80, 88, 14, 0, 0, 160, 0, 63, 0, 192, 74, 58, 0, 32, 138, 191, 96, 136, 6, 0, 0, 160, 0, 63, 0, 64, 161, 62, 0, 32, 116, 191, 96, 136, 6, 0, 0, 96, 39, 63, 0, 96, 143, 62, 0, 224, 111, 191, 96, 136, 6, 0, 0, 96, 39, 63, 0, 192, 74, 58, 0, 32, 138, 191, 96, 136, 6, 0, 0, 32, 186, 62, 0, 64, 158, 62, 0, 192, 115, 63, 104, 216, 143, 0, 0, 224, 149, 62, 0, 64, 158, 62, 0, 224, 159, 63, 104, 216, 143, 0, 0, 96, 39, 63, 0, 96, 140, 62, 0, 0, 158, 63, 104, 216, 143, 0, 0, 96, 39, 63, 0, 96, 140, 62, 0, 128, 119, 63, 104, 216, 143, 0, 0, 160, 0, 63, 0, 192, 74, 58, 0, 128, 162, 190, 0, 248, 15, 0, 0, 160, 0, 63, 0, 192, 74, 58, 0, 96, 175, 62, 0, 248, 15, 0, 0, 96, 39, 63, 0, 192, 74, 58, 0, 96, 175, 62, 0, 248, 15, 0, 0, 96, 39, 63, 0, 192, 74, 58, 0, 128, 162, 190, 0, 248, 15, 0, 0, 160, 0, 63, 0, 64, 161, 62, 0, 32, 116, 191, 225, 120, 15, 0, 0, 160, 0, 63, 0, 64, 161, 62, 0, 64, 30, 191, 225, 120, 15, 0, 0, 96, 39, 63, 0, 96, 143, 62, 0, 128, 34, 191, 225, 120, 15, 0, 0, 96, 39, 63, 0, 96, 143, 62, 0, 224, 111, 191, 225, 120, 15, 0, 0, 160, 0, 63, 0, 192, 74, 58, 0, 0, 252, 190, 0, 248, 15, 0, 0, 96, 39, 63, 0, 192, 74, 58, 0, 0, 252, 190, 0, 248, 15, 0, 0, 224, 149, 62, 0, 64, 158, 62, 0, 224, 159, 63, 80, 236, 231, 54, 0, 224, 126, 62, 0, 192, 74, 58, 0, 128, 183, 63, 80, 236, 231, 54, 0, 128, 213, 62, 0, 224, 233, 61, 0, 224, 172, 63, 80, 236, 231, 54, 0, 32, 221, 62, 0, 32, 65, 62, 0, 64, 167, 63, 80, 236, 231, 54, 0, 96, 39, 63, 0, 96, 140, 62, 0, 0, 158, 63, 80, 236, 231, 54, 0, 224, 149, 62, 0, 64, 158, 62, 0, 224, 159, 63, 80, 236, 231, 54, 0, 32, 221, 62, 0, 32, 65, 62, 0, 64, 167, 63, 80, 236, 231, 54, 0, 0, 5, 63, 0, 192, 59, 62, 0, 128, 166, 63, 80, 236, 231, 54, 0, 224, 126, 62, 0, 192, 74, 58, 0, 128, 183, 63, 0, 80, 89, 51, 0, 96, 39, 63, 0, 192, 74, 58, 0, 128, 183, 63, 0, 80, 89, 51, 0, 192, 4, 63, 0, 128, 227, 61, 0, 32, 173, 63, 0, 80, 89, 51, 0, 128, 213, 62, 0, 224, 233, 61, 0, 224, 172, 63, 0, 80, 89, 51, 0, 96, 39, 63, 0, 96, 140, 62, 0, 0, 158, 63, 0, 80, 89, 51, 0, 0, 5, 63, 0, 192, 59, 62, 0, 128, 166, 63, 0, 80, 89, 51, 0, 192, 4, 63, 0, 128, 227, 61, 0, 32, 173, 63, 254, 3, 0, 0, 0, 0, 5, 63, 0, 192, 59, 62, 0, 128, 166, 63, 254, 3, 0, 0, 0, 0, 5, 63, 0, 96, 56, 62, 0, 192, 171, 63, 254, 3, 0, 0, 0, 192, 4, 63, 0, 32, 235, 61, 0, 128, 174, 63, 254, 3, 0, 0, 0, 32, 221, 62, 0, 32, 65, 62, 0, 64, 167, 63, 0, 68, 3, 0, 0, 128, 213, 62, 0, 224, 233, 61, 0, 224, 172, 63, 0, 68, 3, 0, 0, 128, 213, 62, 0, 224, 240, 61, 0, 64, 174, 63, 0, 68, 3, 0, 0, 32, 221, 62, 0, 32, 61, 62, 0, 128, 171, 63, 0, 68, 3, 0, 0, 0, 5, 63, 0, 192, 59, 62, 0, 128, 166, 63, 56, 216, 143, 5, 0, 32, 221, 62, 0, 32, 65, 62, 0, 64, 167, 63, 56, 216, 143, 5, 0, 32, 221, 62, 0, 32, 61, 62, 0, 128, 171, 63, 56, 216, 143, 5, 0, 0, 5, 63, 0, 96, 56, 62, 0, 192, 171, 63, 56, 216, 143, 5, 0, 128, 213, 62, 0, 224, 233, 61, 0, 224, 172, 63, 0, 0, 160, 20, 0, 192, 4, 63, 0, 128, 227, 61, 0, 32, 173, 63, 0, 0, 160, 20, 0, 192, 4, 63, 0, 32, 235, 61, 0, 128, 174, 63, 0, 0, 160, 20, 0, 128, 213, 62, 0, 224, 240, 61, 0, 64, 174, 63, 0, 0, 160, 20, 0, 160, 0, 191, 0, 0, 24, 63, 0, 96, 175, 62, 0, 184, 143, 8, 0, 224, 126, 190, 0, 160, 223, 62, 0, 160, 178, 63, 0, 184, 143, 8, 0, 0, 0, 0, 0, 192, 0, 63, 0, 160, 178, 63, 0, 184, 143, 8, 0, 0, 0, 0, 0, 0, 24, 63, 0, 160, 224, 62, 0, 184, 143, 8, 0, 160, 0, 191, 0, 192, 74, 58, 0, 64, 159, 191, 0, 192, 1, 0, 0, 160, 0, 191, 0, 0, 24, 63, 0, 96, 150, 191, 0, 192, 1, 0, 0, 160, 0, 191, 0, 192, 74, 58, 0, 128, 162, 190, 0, 0, 0, 0, 0, 160, 0, 191, 0, 192, 74, 58, 0, 0, 252, 190, 0, 0, 0, 0, 0, 160, 0, 191, 0, 192, 74, 58, 0, 32, 138, 191, 0, 0, 0, 0, 0, 160, 0, 191, 0, 192, 74, 58, 0, 64, 159, 191, 0, 0, 0, 0, 0, 160, 0, 191, 0, 192, 74, 58, 0, 64, 159, 191, 0, 0, 0, 0, 0, 160, 0, 191, 0, 192, 74, 58, 0, 128, 162, 190, 0, 0, 0, 0, 0, 160, 0, 191, 0, 224, 133, 63, 0, 160, 66, 62, 0, 216, 15, 0, 0, 0, 0, 0, 0, 96, 136, 63, 0, 128, 146, 62, 0, 216, 15, 0, 0, 0, 0, 0, 0, 96, 136, 63, 0, 128, 162, 190, 0, 216, 15, 0, 0, 160, 0, 191, 0, 224, 133, 63, 0, 128, 162, 190, 0, 216, 15, 0, 0, 224, 126, 190, 0, 192, 74, 58, 0, 128, 183, 63, 0, 0, 0, 0, 0, 160, 0, 191, 0, 192, 74, 58, 0, 96, 175, 62, 0, 0, 0, 0, 0, 160, 0, 191, 0, 0, 24, 63, 0, 96, 175, 62, 0, 160, 16, 15, 0, 32, 186, 190, 0, 64, 158, 62, 0, 192, 115, 63, 0, 160, 16, 15, 0, 224, 149, 190, 0, 64, 158, 62, 0, 224, 159, 63, 0, 160, 16, 15, 0, 224, 126, 190, 0, 160, 223, 62, 0, 160, 178, 63, 0, 160, 16, 15, 0, 160, 0, 191, 0, 192, 74, 58, 0, 96, 175, 62, 0, 0, 16, 14, 0, 32, 186, 190, 0, 64, 158, 62, 0, 192, 115, 63, 0, 0, 16, 14, 0, 160, 0, 191, 0, 0, 24, 63, 0, 96, 175, 62, 0, 0, 16, 14, 0, 224, 126, 190, 0, 160, 223, 62, 0, 160, 178, 63, 0, 64, 144, 16, 0, 224, 149, 190, 0, 64, 158, 62, 0, 224, 159, 63, 0, 64, 144, 16, 0, 224, 126, 190, 0, 192, 74, 58, 0, 128, 183, 63, 0, 64, 144, 16, 0, 160, 0, 191, 0, 192, 74, 58, 0, 64, 159, 191, 0, 0, 0, 0, 0, 160, 0, 191, 0, 192, 74, 58, 0, 32, 138, 191, 0, 0, 0, 0, 0, 160, 0, 191, 0, 64, 161, 62, 0, 32, 116, 191, 0, 0, 0, 0, 0, 160, 0, 191, 0, 0, 24, 63, 0, 96, 150, 191, 0, 0, 0, 0, 0, 160, 0, 191, 0, 0, 24, 63, 0, 128, 162, 190, 0, 0, 0, 0, 0, 160, 0, 191, 0, 64, 161, 62, 0, 64, 30, 191, 0, 0, 0, 0, 0, 160, 0, 191, 0, 192, 74, 58, 0, 0, 252, 190, 0, 0, 0, 0, 0, 160, 0, 191, 0, 192, 74, 58, 0, 128, 162, 190, 0, 0, 0, 0, 0, 160, 0, 191, 0, 192, 74, 58, 0, 96, 175, 62, 0, 0, 0, 0, 0, 160, 0, 191, 0, 0, 24, 63, 0, 96, 175, 62, 0, 0, 0, 0, 0, 0, 0, 0, 0, 96, 136, 63, 0, 64, 159, 191, 0, 216, 15, 0, 0, 160, 0, 191, 0, 224, 133, 63, 0, 64, 159, 191, 0, 216, 15, 0, 0, 160, 0, 191, 0, 64, 161, 62, 0, 64, 30, 191, 0, 136, 230, 57, 0, 96, 39, 191, 0, 96, 143, 62, 0, 128, 34, 191, 0, 136, 230, 57, 0, 96, 39, 191, 0, 192, 74, 58, 0, 0, 252, 190, 0, 136, 230, 57, 0, 160, 0, 191, 0, 192, 74, 58, 0, 0, 252, 190, 0, 136, 230, 57, 0, 160, 0, 191, 0, 192, 74, 58, 0, 96, 175, 62, 0, 88, 14, 0, 0, 96, 39, 191, 0, 192, 74, 58, 0, 96, 175, 62, 0, 88, 14, 0, 0, 96, 39, 191, 0, 96, 140, 62, 0, 128, 119, 63, 0, 88, 14, 0, 0, 32, 186, 190, 0, 64, 158, 62, 0, 192, 115, 63, 0, 88, 14, 0, 0, 160, 0, 191, 0, 192, 74, 58, 0, 32, 138, 191, 0, 136, 6, 0, 0, 96, 39, 191, 0, 192, 74, 58, 0, 32, 138, 191, 0, 136, 6, 0, 0, 96, 39, 191, 0, 96, 143, 62, 0, 224, 111, 191, 0, 136, 6, 0, 0, 160, 0, 191, 0, 64, 161, 62, 0, 32, 116, 191, 0, 136, 6, 0, 0, 32, 186, 190, 0, 64, 158, 62, 0, 192, 115, 63, 0, 216, 143, 0, 0, 96, 39, 191, 0, 96, 140, 62, 0, 128, 119, 63, 0, 216, 143, 0, 0, 96, 39, 191, 0, 96, 140, 62, 0, 0, 158, 63, 0, 216, 143, 0, 0, 224, 149, 190, 0, 64, 158, 62, 0, 224, 159, 63, 0, 216, 143, 0, 0, 160, 0, 191, 0, 192, 74, 58, 0, 128, 162, 190, 0, 248, 15, 0, 0, 96, 39, 191, 0, 192, 74, 58, 0, 128, 162, 190, 0, 248, 15, 0, 0, 96, 39, 191, 0, 192, 74, 58, 0, 96, 175, 62, 0, 248, 15, 0, 0, 160, 0, 191, 0, 192, 74, 58, 0, 96, 175, 62, 0, 248, 15, 0, 0, 160, 0, 191, 0, 64, 161, 62, 0, 32, 116, 191, 0, 120, 15, 0, 0, 96, 39, 191, 0, 96, 143, 62, 0, 224, 111, 191, 0, 120, 15, 0, 0, 96, 39, 191, 0, 96, 143, 62, 0, 128, 34, 191, 0, 120, 15, 0, 0, 160, 0, 191, 0, 64, 161, 62, 0, 64, 30, 191, 0, 120, 15, 0, 0, 160, 0, 191, 0, 192, 74, 58, 0, 0, 252, 190, 0, 248, 15, 0, 0, 96, 39, 191, 0, 192, 74, 58, 0, 0, 252, 190, 0, 248, 15, 0, 0, 224, 149, 190, 0, 64, 158, 62, 0, 224, 159, 63, 0, 236, 231, 54, 0, 32, 221, 190, 0, 32, 65, 62, 0, 64, 167, 63, 0, 236, 231, 54, 0, 128, 213, 190, 0, 224, 233, 61, 0, 224, 172, 63, 0, 236, 231, 54, 0, 224, 126, 190, 0, 192, 74, 58, 0, 128, 183, 63, 0, 236, 231, 54, 0, 96, 39, 191, 0, 96, 140, 62, 0, 0, 158, 63, 0, 236, 231, 54, 0, 0, 5, 191, 0, 192, 59, 62, 0, 128, 166, 63, 0, 236, 231, 54, 0, 32, 221, 190, 0, 32, 65, 62, 0, 64, 167, 63, 0, 236, 231, 54, 0, 224, 149, 190, 0, 64, 158, 62, 0, 224, 159, 63, 0, 236, 231, 54, 0, 224, 126, 190, 0, 192, 74, 58, 0, 128, 183, 63, 0, 80, 89, 51, 0, 128, 213, 190, 0, 224, 233, 61, 0, 224, 172, 63, 0, 80, 89, 51, 0, 192, 4, 191, 0, 128, 227, 61, 0, 32, 173, 63, 0, 80, 89, 51, 0, 96, 39, 191, 0, 192, 74, 58, 0, 128, 183, 63, 0, 80, 89, 51, 0, 0, 5, 191, 0, 192, 59, 62, 0, 128, 166, 63, 0, 80, 89, 51, 0, 96, 39, 191, 0, 96, 140, 62, 0, 0, 158, 63, 0, 80, 89, 51, 0, 192, 4, 191, 0, 128, 227, 61, 0, 32, 173, 63, 0, 0, 0, 0, 0, 192, 4, 191, 0, 32, 235, 61, 0, 128, 174, 63, 0, 0, 0, 0, 0, 0, 5, 191, 0, 96, 56, 62, 0, 192, 171, 63, 0, 0, 0, 0, 0, 0, 5, 191, 0, 192, 59, 62, 0, 128, 166, 63, 0, 0, 0, 0, 0, 32, 221, 190, 0, 32, 65, 62, 0, 64, 167, 63, 230, 71, 3, 0, 0, 32, 221, 190, 0, 32, 61, 62, 0, 128, 171, 63, 230, 71, 3, 0, 0, 128, 213, 190, 0, 224, 240, 61, 0, 64, 174, 63, 230, 71, 3, 0, 0, 128, 213, 190, 0, 224, 233, 61, 0, 224, 172, 63, 230, 71, 3, 0, 0, 0, 5, 191, 0, 192, 59, 62, 0, 128, 166, 63, 0, 216, 143, 5, 0, 0, 5, 191, 0, 96, 56, 62, 0, 192, 171, 63, 0, 216, 143, 5, 0, 32, 221, 190, 0, 32, 61, 62, 0, 128, 171, 63, 0, 216, 143, 5, 0, 32, 221, 190, 0, 32, 65, 62, 0, 64, 167, 63, 0, 216, 143, 5, 0, 128, 213, 190, 0, 224, 233, 61, 0, 224, 172, 63, 32, 0, 160, 20, 0, 128, 213, 190, 0, 224, 240, 61, 0, 64, 174, 63, 32, 0, 160, 20, 0, 192, 4, 191, 0, 32, 235, 61, 0, 128, 174, 63, 32, 0, 160, 20, 0, 192, 4, 191, 0, 128, 227, 61, 0, 32, 173, 63, 32, 0, 160, 20) +}, { "aabb": AABB(-0.519564, 0.114819, -1.24434, 1.03913, 0.951363, 2.60765), -"array_data": PackedByteArray(5, 56, 47, 60, 21, 50, 0, 60, 23, 39, 118, 0, 0, 0, 67, 60, 148, 52, 0, 60, 23, 39, 118, 0, 0, 0, 192, 56, 5, 55, 0, 60, 23, 39, 118, 0, 5, 56, 192, 56, 123, 53, 0, 60, 23, 39, 118, 0, 5, 56, 47, 60, 250, 188, 0, 60, 127, 0, 0, 0, 5, 56, 47, 60, 20, 181, 0, 60, 127, 0, 0, 0, 5, 56, 192, 56, 20, 181, 0, 60, 127, 0, 0, 0, 0, 0, 67, 60, 250, 188, 0, 60, 0, 238, 131, 0, 5, 56, 47, 60, 250, 188, 0, 60, 0, 238, 131, 0, 5, 56, 192, 56, 179, 188, 0, 60, 0, 238, 131, 0, 0, 0, 192, 56, 179, 188, 0, 60, 0, 238, 131, 0, 5, 56, 47, 60, 21, 50, 0, 60, 127, 0, 0, 0, 5, 56, 192, 56, 123, 53, 0, 60, 127, 0, 0, 0, 172, 54, 135, 47, 114, 61, 0, 60, 0, 39, 120, 0, 38, 56, 89, 47, 116, 61, 0, 60, 0, 39, 120, 0, 40, 56, 195, 49, 94, 61, 0, 60, 0, 39, 120, 0, 233, 54, 233, 49, 92, 61, 0, 60, 0, 39, 120, 0, 5, 56, 192, 56, 179, 188, 0, 60, 127, 0, 0, 0, 5, 184, 47, 60, 21, 50, 0, 60, 233, 39, 118, 0, 5, 184, 192, 56, 123, 53, 0, 60, 233, 39, 118, 0, 0, 0, 192, 56, 5, 55, 0, 60, 233, 39, 118, 0, 0, 0, 67, 60, 148, 52, 0, 60, 233, 39, 118, 0, 5, 184, 47, 60, 250, 188, 0, 60, 130, 0, 0, 0, 5, 184, 192, 56, 20, 181, 0, 60, 130, 0, 0, 0, 5, 184, 47, 60, 20, 181, 0, 60, 130, 0, 0, 0, 0, 0, 67, 60, 250, 188, 0, 60, 0, 238, 131, 0, 0, 0, 192, 56, 179, 188, 0, 60, 0, 238, 131, 0, 5, 184, 192, 56, 179, 188, 0, 60, 0, 238, 131, 0, 5, 184, 47, 60, 250, 188, 0, 60, 0, 238, 131, 0, 5, 184, 192, 56, 123, 53, 0, 60, 130, 0, 0, 0, 5, 184, 47, 60, 21, 50, 0, 60, 130, 0, 0, 0, 172, 182, 135, 47, 114, 61, 0, 60, 0, 39, 120, 0, 233, 182, 233, 49, 92, 61, 0, 60, 0, 39, 120, 0, 40, 184, 195, 49, 94, 61, 0, 60, 0, 39, 120, 0, 38, 184, 89, 47, 116, 61, 0, 60, 0, 39, 120, 0, 5, 184, 192, 56, 179, 188, 0, 60, 130, 0, 0, 0), -"array_index_data": PackedByteArray(0, 0, 2, 0, 1, 0, 0, 0, 3, 0, 2, 0, 4, 0, 6, 0, 5, 0, 7, 0, 9, 0, 8, 0, 7, 0, 10, 0, 9, 0, 5, 0, 12, 0, 11, 0, 5, 0, 6, 0, 12, 0, 13, 0, 15, 0, 14, 0, 13, 0, 16, 0, 15, 0, 17, 0, 6, 0, 4, 0, 18, 0, 20, 0, 19, 0, 18, 0, 21, 0, 20, 0, 22, 0, 24, 0, 23, 0, 25, 0, 27, 0, 26, 0, 25, 0, 28, 0, 27, 0, 24, 0, 29, 0, 23, 0, 24, 0, 30, 0, 29, 0, 31, 0, 33, 0, 32, 0, 31, 0, 34, 0, 33, 0, 35, 0, 22, 0, 23, 0), -"blend_shape_data": [], -"format": 98051, +"format": 4099, "index_count": 60, -"material": ExtResource( 3 ), +"index_data": PackedByteArray(0, 0, 2, 0, 1, 0, 0, 0, 3, 0, 2, 0, 4, 0, 6, 0, 5, 0, 7, 0, 9, 0, 8, 0, 7, 0, 10, 0, 9, 0, 5, 0, 12, 0, 11, 0, 5, 0, 6, 0, 12, 0, 13, 0, 15, 0, 14, 0, 13, 0, 16, 0, 15, 0, 17, 0, 6, 0, 4, 0, 18, 0, 20, 0, 19, 0, 18, 0, 21, 0, 20, 0, 22, 0, 24, 0, 23, 0, 25, 0, 27, 0, 26, 0, 25, 0, 28, 0, 27, 0, 24, 0, 29, 0, 23, 0, 24, 0, 30, 0, 29, 0, 31, 0, 33, 0, 32, 0, 31, 0, 34, 0, 33, 0, 35, 0, 22, 0, 23, 0), +"material": ExtResource( "3" ), "name": "Material.002", -"primitive": 4, -"skeleton_aabb": [], -"vertex_count": 36 -} -surfaces/2 = { +"primitive": 3, +"vertex_count": 36, +"vertex_data": PackedByteArray(0, 160, 0, 63, 0, 224, 133, 63, 0, 160, 66, 62, 185, 232, 100, 59, 0, 0, 0, 0, 0, 96, 136, 63, 0, 128, 146, 62, 185, 232, 100, 59, 0, 0, 0, 0, 0, 0, 24, 63, 0, 160, 224, 62, 185, 232, 100, 59, 0, 160, 0, 63, 0, 0, 24, 63, 0, 96, 175, 62, 185, 232, 100, 59, 0, 160, 0, 63, 0, 224, 133, 63, 0, 64, 159, 191, 254, 3, 0, 0, 0, 160, 0, 63, 0, 224, 133, 63, 0, 128, 162, 190, 254, 3, 0, 0, 0, 160, 0, 63, 0, 0, 24, 63, 0, 128, 162, 190, 254, 3, 0, 0, 0, 0, 0, 0, 0, 96, 136, 63, 0, 64, 159, 191, 0, 0, 0, 0, 0, 160, 0, 63, 0, 224, 133, 63, 0, 64, 159, 191, 0, 0, 0, 0, 0, 160, 0, 63, 0, 0, 24, 63, 0, 96, 150, 191, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 24, 63, 0, 96, 150, 191, 0, 0, 0, 0, 0, 160, 0, 63, 0, 224, 133, 63, 0, 160, 66, 62, 254, 3, 0, 0, 0, 160, 0, 63, 0, 0, 24, 63, 0, 96, 175, 62, 254, 3, 0, 0, 0, 128, 213, 62, 0, 224, 240, 61, 0, 64, 174, 63, 0, 232, 100, 60, 0, 192, 4, 63, 0, 32, 235, 61, 0, 128, 174, 63, 0, 232, 100, 60, 0, 0, 5, 63, 0, 96, 56, 62, 0, 192, 171, 63, 0, 232, 100, 60, 0, 32, 221, 62, 0, 32, 61, 62, 0, 128, 171, 63, 0, 232, 100, 60, 0, 160, 0, 63, 0, 0, 24, 63, 0, 96, 150, 191, 254, 3, 0, 0, 0, 160, 0, 191, 0, 224, 133, 63, 0, 160, 66, 62, 0, 232, 100, 59, 0, 160, 0, 191, 0, 0, 24, 63, 0, 96, 175, 62, 0, 232, 100, 59, 0, 0, 0, 0, 0, 0, 24, 63, 0, 160, 224, 62, 0, 232, 100, 59, 0, 0, 0, 0, 0, 96, 136, 63, 0, 128, 146, 62, 0, 232, 100, 59, 0, 160, 0, 191, 0, 224, 133, 63, 0, 64, 159, 191, 0, 0, 0, 0, 0, 160, 0, 191, 0, 0, 24, 63, 0, 128, 162, 190, 0, 0, 0, 0, 0, 160, 0, 191, 0, 224, 133, 63, 0, 128, 162, 190, 0, 0, 0, 0, 0, 0, 0, 0, 0, 96, 136, 63, 0, 64, 159, 191, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 24, 63, 0, 96, 150, 191, 0, 0, 0, 0, 0, 160, 0, 191, 0, 0, 24, 63, 0, 96, 150, 191, 0, 0, 0, 0, 0, 160, 0, 191, 0, 224, 133, 63, 0, 64, 159, 191, 0, 0, 0, 0, 0, 160, 0, 191, 0, 0, 24, 63, 0, 96, 175, 62, 0, 0, 0, 0, 0, 160, 0, 191, 0, 224, 133, 63, 0, 160, 66, 62, 0, 0, 0, 0, 0, 128, 213, 190, 0, 224, 240, 61, 0, 64, 174, 63, 0, 232, 100, 60, 0, 32, 221, 190, 0, 32, 61, 62, 0, 128, 171, 63, 0, 232, 100, 60, 0, 0, 5, 191, 0, 96, 56, 62, 0, 192, 171, 63, 0, 232, 100, 60, 0, 192, 4, 191, 0, 32, 235, 61, 0, 128, 174, 63, 0, 232, 100, 60, 0, 160, 0, 191, 0, 0, 24, 63, 0, 96, 150, 191, 0, 0, 0, 0) +}, { "aabb": AABB(-0.50249, 0.000773809, -1.07979, 1.00499, 0.502212, 2.51351), -"array_data": PackedByteArray(5, 56, 86, 18, 81, 188, 0, 60, 127, 0, 0, 0, 5, 56, 10, 53, 161, 187, 0, 60, 127, 0, 0, 0, 5, 56, 10, 53, 242, 184, 0, 60, 127, 0, 0, 0, 5, 56, 86, 18, 224, 183, 0, 60, 127, 0, 0, 0, 247, 51, 253, 54, 149, 61, 0, 60, 1, 10, 126, 0, 0, 0, 6, 56, 149, 61, 0, 60, 1, 10, 126, 0, 0, 0, 86, 18, 188, 61, 0, 60, 1, 10, 126, 0, 247, 51, 86, 18, 188, 61, 0, 60, 1, 10, 126, 0, 247, 51, 86, 18, 188, 61, 0, 60, 123, 0, 28, 0, 5, 56, 86, 18, 123, 53, 0, 60, 123, 0, 28, 0, 209, 53, 242, 52, 158, 59, 0, 60, 123, 0, 28, 0, 175, 52, 242, 52, 255, 60, 0, 60, 123, 0, 28, 0, 5, 184, 86, 18, 81, 188, 0, 60, 130, 0, 0, 0, 5, 184, 86, 18, 224, 183, 0, 60, 130, 0, 0, 0, 5, 184, 10, 53, 242, 184, 0, 60, 130, 0, 0, 0, 5, 184, 10, 53, 161, 187, 0, 60, 130, 0, 0, 0, 247, 179, 253, 54, 149, 61, 0, 60, 255, 10, 126, 0, 247, 179, 86, 18, 188, 61, 0, 60, 255, 10, 126, 0, 0, 0, 86, 18, 188, 61, 0, 60, 255, 10, 126, 0, 0, 0, 6, 56, 149, 61, 0, 60, 255, 10, 126, 0, 247, 179, 86, 18, 188, 61, 0, 60, 133, 0, 28, 0, 175, 180, 242, 52, 255, 60, 0, 60, 133, 0, 28, 0, 209, 181, 242, 52, 158, 59, 0, 60, 133, 0, 28, 0, 5, 184, 86, 18, 123, 53, 0, 60, 133, 0, 28, 0), -"array_index_data": PackedByteArray(0, 0, 2, 0, 1, 0, 0, 0, 3, 0, 2, 0, 4, 0, 6, 0, 5, 0, 4, 0, 7, 0, 6, 0, 8, 0, 10, 0, 9, 0, 8, 0, 11, 0, 10, 0, 12, 0, 14, 0, 13, 0, 12, 0, 15, 0, 14, 0, 16, 0, 18, 0, 17, 0, 16, 0, 19, 0, 18, 0, 20, 0, 22, 0, 21, 0, 20, 0, 23, 0, 22, 0), -"blend_shape_data": [], -"format": 98051, +"format": 4099, "index_count": 36, -"material": ExtResource( 4 ), +"index_data": PackedByteArray(0, 0, 2, 0, 1, 0, 0, 0, 3, 0, 2, 0, 4, 0, 6, 0, 5, 0, 4, 0, 7, 0, 6, 0, 8, 0, 10, 0, 9, 0, 8, 0, 11, 0, 10, 0, 12, 0, 14, 0, 13, 0, 12, 0, 15, 0, 14, 0, 16, 0, 18, 0, 17, 0, 16, 0, 19, 0, 18, 0, 20, 0, 22, 0, 21, 0, 20, 0, 23, 0, 22, 0), +"material": ExtResource( "4" ), "name": "Material.003", -"primitive": 4, -"skeleton_aabb": [], -"vertex_count": 24 -} +"primitive": 3, +"vertex_count": 24, +"vertex_data": PackedByteArray(0, 160, 0, 63, 0, 192, 74, 58, 0, 32, 138, 191, 254, 3, 0, 0, 0, 160, 0, 63, 0, 64, 161, 62, 0, 32, 116, 191, 254, 3, 0, 0, 0, 160, 0, 63, 0, 64, 161, 62, 0, 64, 30, 191, 254, 3, 0, 0, 0, 160, 0, 63, 0, 192, 74, 58, 0, 0, 252, 190, 254, 3, 0, 0, 0, 224, 126, 62, 0, 160, 223, 62, 0, 160, 178, 63, 8, 64, 97, 63, 0, 0, 0, 0, 0, 192, 0, 63, 0, 160, 178, 63, 8, 64, 97, 63, 0, 0, 0, 0, 0, 192, 74, 58, 0, 128, 183, 63, 8, 64, 97, 63, 0, 224, 126, 62, 0, 192, 74, 58, 0, 128, 183, 63, 8, 64, 97, 63, 0, 224, 126, 62, 0, 192, 74, 58, 0, 128, 183, 63, 222, 3, 16, 14, 0, 160, 0, 63, 0, 192, 74, 58, 0, 96, 175, 62, 222, 3, 16, 14, 0, 32, 186, 62, 0, 64, 158, 62, 0, 192, 115, 63, 222, 3, 16, 14, 0, 224, 149, 62, 0, 64, 158, 62, 0, 224, 159, 63, 222, 3, 16, 14, 0, 160, 0, 191, 0, 192, 74, 58, 0, 32, 138, 191, 0, 0, 0, 0, 0, 160, 0, 191, 0, 192, 74, 58, 0, 0, 252, 190, 0, 0, 0, 0, 0, 160, 0, 191, 0, 64, 161, 62, 0, 64, 30, 191, 0, 0, 0, 0, 0, 160, 0, 191, 0, 64, 161, 62, 0, 32, 116, 191, 0, 0, 0, 0, 0, 224, 126, 190, 0, 160, 223, 62, 0, 160, 178, 63, 0, 64, 97, 63, 0, 224, 126, 190, 0, 192, 74, 58, 0, 128, 183, 63, 0, 64, 97, 63, 0, 0, 0, 0, 0, 192, 74, 58, 0, 128, 183, 63, 0, 64, 97, 63, 0, 0, 0, 0, 0, 192, 0, 63, 0, 160, 178, 63, 0, 64, 97, 63, 0, 224, 126, 190, 0, 192, 74, 58, 0, 128, 183, 63, 0, 0, 16, 14, 0, 224, 149, 190, 0, 64, 158, 62, 0, 224, 159, 63, 0, 0, 16, 14, 0, 32, 186, 190, 0, 64, 158, 62, 0, 192, 115, 63, 0, 0, 16, 14, 0, 160, 0, 191, 0, 192, 74, 58, 0, 96, 175, 62, 0, 0, 16, 14) +}] -[sub_resource type="BoxShape3D" id=7] -extents = Vector3(0.477039, 0.5, 1.16331) +[sub_resource type="BoxShape3D" id="7"] +size = Vector3(0.954078, 1, 2.32662) [node name="CarBase" type="Node3D"] _import_path = NodePath(".") @@ -121,8 +105,9 @@ __meta__ = { [node name="Body" type="VehicleBody3D" parent="."] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -0.00169557, 0.222867, -0.0955184) -physics_material_override = SubResource( 1 ) -script = ExtResource( 1 ) +center_of_mass_mode = 1 +physics_material_override = SubResource( "1" ) +script = ExtResource( "1" ) [node name="Wheel1" type="VehicleWheel3D" parent="Body"] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0.573678, 0.115169, 1.10416) @@ -137,8 +122,7 @@ damping_compression = 0.88 [node name="Wheel1" type="MeshInstance3D" parent="Body/Wheel1"] _import_path = NodePath("BODY-vehicle/wheel1-wheel") -mesh = SubResource( 2 ) -surface_material_override/0 = null +mesh = SubResource( "2" ) [node name="Wheel2" type="VehicleWheel3D" parent="Body"] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0.573678, 0.115169, -0.783403) @@ -152,8 +136,7 @@ damping_compression = 0.88 [node name="Wheel2" type="MeshInstance3D" parent="Body/Wheel2"] _import_path = NodePath("BODY-vehicle/wheel2-wheel") -mesh = SubResource( 3 ) -surface_material_override/0 = null +mesh = SubResource( "3" ) [node name="Wheel3" type="VehicleWheel3D" parent="Body"] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -0.573678, 0.115169, 1.10416) @@ -168,8 +151,7 @@ damping_compression = 0.88 [node name="Wheel3" type="MeshInstance3D" parent="Body/Wheel3"] _import_path = NodePath("BODY-vehicle/wheel3-wheel") -mesh = SubResource( 4 ) -surface_material_override/0 = null +mesh = SubResource( "4" ) [node name="Wheel4" type="VehicleWheel3D" parent="Body"] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -0.573678, 0.115169, -0.783403) @@ -183,19 +165,15 @@ damping_compression = 0.88 [node name="Wheel4" type="MeshInstance3D" parent="Body/Wheel4"] _import_path = NodePath("BODY-vehicle/wheel4-wheel") -mesh = SubResource( 5 ) -surface_material_override/0 = null +mesh = SubResource( "5" ) [node name="Body" type="MeshInstance3D" parent="Body"] _import_path = NodePath("BODY-vehicle") -mesh = SubResource( 6 ) -surface_material_override/0 = null -material/1 = null -material/2 = null +mesh = SubResource( "6" ) [node name="CollisionShape3D" type="CollisionShape3D" parent="Body"] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0.588269, 0.0774262) -shape = SubResource( 7 ) +shape = SubResource( "7" ) [node name="CameraBase" type="Node3D" parent="Body"] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 1.97449, 0) @@ -205,7 +183,7 @@ transform = Transform3D(-0.709652, -0.170177, 0.683691, -2.11161e-08, 0.970391, current = true fov = 74.0 near = 0.1 -script = ExtResource( 5 ) +script = ExtResource( "5" ) min_distance = 3.0 height = 1.25 diff --git a/3d/truck_town/car_select.tscn b/3d/truck_town/car_select.tscn index 9eb3a9eb..86df0fc9 100644 --- a/3d/truck_town/car_select.tscn +++ b/3d/truck_town/car_select.tscn @@ -1,9 +1,9 @@ -[gd_scene load_steps=5 format=2] +[gd_scene load_steps=5 format=3 uid="uid://bbpqesu2qnd2j"] -[ext_resource path="res://car_select.gd" type="Script" id=1] -[ext_resource path="res://Images/choose_van.png" type="Texture2D" id=2] -[ext_resource path="res://Images/choose_trailer.png" type="Texture2D" id=3] -[ext_resource path="res://Images/choose_tow.png" type="Texture2D" id=4] +[ext_resource type="Script" path="res://car_select.gd" id="1"] +[ext_resource type="Texture2D" uid="uid://bh7b4n4lg1uqt" path="res://Images/choose_van.png" id="2"] +[ext_resource type="Texture2D" uid="uid://hvkcmpdq1t0k" path="res://Images/choose_trailer.png" id="3"] +[ext_resource type="Texture2D" uid="uid://de7itkxhl0u28" path="res://Images/choose_tow.png" id="4"] [node name="CarSelect" type="Control"] anchor_left = 0.5 @@ -16,7 +16,7 @@ offset_right = 512.0 offset_bottom = 300.0 size_flags_horizontal = 2 size_flags_vertical = 2 -script = ExtResource( 1 ) +script = ExtResource( "1" ) __meta__ = { "__editor_plugin_screen__": "2D", "_edit_use_anchors_": false @@ -29,7 +29,7 @@ offset_right = 340.0 offset_bottom = 400.0 size_flags_horizontal = 2 size_flags_vertical = 2 -icon = ExtResource( 2 ) +icon = ExtResource( "2" ) [node name="TrailerTruck" type="Button" parent="."] offset_left = 344.0 @@ -38,7 +38,7 @@ offset_right = 680.0 offset_bottom = 401.0 size_flags_horizontal = 2 size_flags_vertical = 2 -icon = ExtResource( 3 ) +icon = ExtResource( "3" ) [node name="TowTruck" type="Button" parent="."] offset_left = 684.0 @@ -47,7 +47,7 @@ offset_right = 1020.0 offset_bottom = 400.0 size_flags_horizontal = 2 size_flags_vertical = 2 -icon = ExtResource( 4 ) +icon = ExtResource( "4" ) [connection signal="pressed" from="MiniVan" to="." method="_on_MiniVan_pressed"] [connection signal="pressed" from="TrailerTruck" to="." method="_on_TrailerTruck_pressed"] diff --git a/3d/truck_town/default_env.tres b/3d/truck_town/default_env.tres index 195e240c..b7b3aba8 100644 --- a/3d/truck_town/default_env.tres +++ b/3d/truck_town/default_env.tres @@ -1,15 +1,14 @@ -[gd_resource type="Environment" load_steps=2 format=2] +[gd_resource type="Environment" load_steps=3 format=3 uid="uid://cuvs67826w51u"] -[sub_resource type="Sky" id=1] -ground_bottom_color = Color( 0.192157, 0.407843, 0.337255, 1 ) -ground_horizon_color = Color( 0.839216, 0.917647, 0.980392, 1 ) +[sub_resource type="ProceduralSkyMaterial" id="ProceduralSkyMaterial_2k12y"] +sky_horizon_color = Color(0.64625, 0.65575, 0.67075, 1) +ground_horizon_color = Color(0.64625, 0.65575, 0.67075, 1) + +[sub_resource type="Sky" id="Sky_1gf0c"] +sky_material = SubResource( "ProceduralSkyMaterial_2k12y" ) [resource] background_mode = 2 -background_sky = SubResource( 1 ) -ambient_light_color = Color( 0.347656, 0.347656, 0.347656, 1 ) -ambient_light_sky_contribution = 0.2 -fog_enabled = true -fog_color = Color( 0.686275, 0.772549, 0.815686, 1 ) -fog_sun_amount = 1.0 -fog_depth_end = 200.0 +sky = SubResource( "Sky_1gf0c" ) +tonemap_mode = 2 +glow_enabled = true diff --git a/3d/truck_town/icon.png.import b/3d/truck_town/icon.png.import index 889af9df..7f6b61d1 100644 --- a/3d/truck_town/icon.png.import +++ b/3d/truck_town/icon.png.import @@ -1,8 +1,9 @@ [remap] importer="texture" -type="StreamTexture2D" -path="res://.godot/imported/icon.png-487276ed1e3a0c39cad0279d744ee560.stex" +type="CompressedTexture2D" +uid="uid://b2w3byslm857q" +path="res://.godot/imported/icon.png-487276ed1e3a0c39cad0279d744ee560.ctex" metadata={ "vram_texture": false } @@ -10,26 +11,23 @@ metadata={ [deps] source_file="res://icon.png" -dest_files=["res://.godot/imported/icon.png-487276ed1e3a0c39cad0279d744ee560.stex"] +dest_files=["res://.godot/imported/icon.png-487276ed1e3a0c39cad0279d744ee560.ctex"] [params] compress/mode=0 compress/lossy_quality=0.7 -compress/hdr_mode=0 +compress/hdr_compression=1 compress/bptc_ldr=0 compress/normal_map=0 -flags/repeat=0 -flags/filter=true -flags/mipmaps=false -flags/anisotropic=false -flags/srgb=2 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" process/fix_alpha_border=true process/premult_alpha=false -process/HDR_as_SRGB=false -process/invert_color=false process/normal_map_invert_y=false -stream=false -size_limit=0 -detect_3d=true -svg/scale=1.0 +process/hdr_as_srgb=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/3d/truck_town/project.godot b/3d/truck_town/project.godot index 5ee83a01..99449b49 100644 --- a/3d/truck_town/project.godot +++ b/3d/truck_town/project.godot @@ -6,7 +6,7 @@ ; [section] ; section goes between [] ; param=value ; assign values to parameters -config_version=4 +config_version=5 [application] @@ -19,10 +19,10 @@ Godot's physics system is not polished and will likely be reworked in the future." run/main_scene="res://car_select.tscn" config/icon="res://icon.png" +config/features=PackedStringArray("4.0") [display] -window/dpi/allow_hidpi=true window/stretch/mode="2d" window/stretch/aspect="expand" window/height=720 diff --git a/3d/truck_town/spedometer.gd b/3d/truck_town/spedometer.gd index e9ec58f0..7551f312 100644 --- a/3d/truck_town/spedometer.gd +++ b/3d/truck_town/spedometer.gd @@ -6,7 +6,7 @@ enum SpeedUnit { MILES_PER_HOUR = 2, } -@export var speed_unit: SpeedUnit = 0 +@export var speed_unit: SpeedUnit = SpeedUnit.METERS_PER_SECOND func _process(_delta): var speed = get_parent().get_parent().get_child(1).get_child(0).linear_velocity.length() diff --git a/3d/truck_town/tow_truck.tscn b/3d/truck_town/tow_truck.tscn index 6fe0a5b0..5c944eb4 100644 --- a/3d/truck_town/tow_truck.tscn +++ b/3d/truck_town/tow_truck.tscn @@ -1,251 +1,217 @@ -[gd_scene load_steps=24 format=2] +[gd_scene load_steps=24 format=3 uid="uid://b5jfjeuqu4h5"] -[ext_resource path="res://vehicle.gd" type="Script" id=1] -[ext_resource path="res://Materials/car_yellow_body.tres" type="Material" id=2] -[ext_resource path="res://Materials/car_window.tres" type="Material" id=3] -[ext_resource path="res://Materials/car_grill.tres" type="Material" id=4] -[ext_resource path="res://follow_camera.gd" type="Script" id=5] -[ext_resource path="res://Materials/car_red_body.tres" type="Material" id=6] +[ext_resource type="Script" path="res://vehicle.gd" id="1"] +[ext_resource type="Material" path="res://Materials/car_yellow_body.tres" id="2"] +[ext_resource type="Material" path="res://Materials/car_window.tres" id="3"] +[ext_resource type="Material" path="res://Materials/car_grill.tres" id="4"] +[ext_resource type="Script" path="res://follow_camera.gd" id="5"] +[ext_resource type="Material" path="res://Materials/car_red_body.tres" id="6"] -[sub_resource type="ArrayMesh" id=1] +[sub_resource type="ArrayMesh" id="1"] resource_name = "bus.003" -surfaces/0 = { +_surfaces = [{ "aabb": AABB(-0.0614569, -0.228035, -0.228035, 0.122914, 0.45608, 0.45607), -"array_data": PackedByteArray(221, 171, 76, 51, 210, 43, 0, 60, 130, 0, 0, 0, 221, 171, 76, 51, 210, 171, 0, 60, 130, 0, 0, 0, 221, 171, 87, 49, 87, 49, 0, 60, 130, 0, 0, 0, 221, 171, 87, 49, 87, 177, 0, 60, 130, 0, 0, 0, 221, 171, 210, 43, 76, 179, 0, 60, 130, 0, 0, 0, 221, 171, 210, 171, 76, 179, 0, 60, 130, 0, 0, 0, 221, 171, 87, 177, 87, 177, 0, 60, 130, 0, 0, 0, 221, 171, 76, 179, 210, 171, 0, 60, 130, 0, 0, 0, 221, 171, 76, 179, 210, 43, 0, 60, 130, 0, 0, 0, 221, 171, 87, 177, 87, 49, 0, 60, 130, 0, 0, 0, 221, 171, 210, 171, 76, 51, 0, 60, 130, 0, 0, 0, 221, 171, 210, 43, 76, 51, 0, 60, 130, 0, 0, 0, 221, 43, 76, 51, 210, 43, 0, 60, 127, 0, 0, 0, 221, 43, 87, 49, 87, 49, 0, 60, 127, 0, 0, 0, 221, 43, 76, 51, 210, 171, 0, 60, 127, 0, 0, 0, 221, 43, 210, 43, 76, 51, 0, 60, 127, 0, 0, 0, 221, 43, 210, 171, 76, 51, 0, 60, 127, 0, 0, 0, 221, 43, 87, 177, 87, 49, 0, 60, 127, 0, 0, 0, 221, 43, 76, 179, 210, 43, 0, 60, 127, 0, 0, 0, 221, 43, 76, 179, 210, 171, 0, 60, 127, 0, 0, 0, 221, 43, 87, 177, 87, 177, 0, 60, 127, 0, 0, 0, 221, 43, 210, 171, 76, 179, 0, 60, 127, 0, 0, 0, 221, 43, 210, 43, 76, 179, 0, 60, 127, 0, 0, 0, 221, 43, 87, 49, 87, 177, 0, 60, 127, 0, 0, 0, 221, 171, 87, 177, 87, 177, 0, 60, 0, 193, 147, 0, 221, 171, 210, 171, 76, 179, 0, 60, 0, 193, 147, 0, 221, 43, 210, 171, 76, 179, 0, 60, 0, 193, 147, 0, 221, 43, 87, 177, 87, 177, 0, 60, 0, 193, 147, 0, 221, 171, 210, 43, 76, 51, 0, 60, 0, 0, 126, 0, 221, 171, 210, 171, 76, 51, 0, 60, 0, 0, 126, 0, 221, 43, 210, 171, 76, 51, 0, 60, 0, 0, 126, 0, 221, 43, 210, 43, 76, 51, 0, 60, 0, 0, 126, 0, 221, 171, 210, 171, 76, 179, 0, 60, 0, 0, 129, 0, 221, 171, 210, 43, 76, 179, 0, 60, 0, 0, 129, 0, 221, 43, 210, 43, 76, 179, 0, 60, 0, 0, 129, 0, 221, 43, 210, 171, 76, 179, 0, 60, 0, 0, 129, 0, 221, 171, 210, 171, 76, 51, 0, 60, 0, 193, 109, 0, 221, 171, 87, 177, 87, 49, 0, 60, 0, 193, 109, 0, 221, 43, 87, 177, 87, 49, 0, 60, 0, 193, 109, 0, 221, 43, 210, 171, 76, 51, 0, 60, 0, 193, 109, 0, 221, 171, 210, 43, 76, 179, 0, 60, 0, 63, 147, 0, 221, 171, 87, 49, 87, 177, 0, 60, 0, 63, 147, 0, 221, 43, 87, 49, 87, 177, 0, 60, 0, 63, 147, 0, 221, 43, 210, 43, 76, 179, 0, 60, 0, 63, 147, 0, 221, 171, 87, 177, 87, 49, 0, 60, 0, 147, 63, 0, 221, 171, 76, 179, 210, 43, 0, 60, 0, 147, 63, 0, 221, 43, 76, 179, 210, 43, 0, 60, 0, 147, 63, 0, 221, 43, 87, 177, 87, 49, 0, 60, 0, 147, 63, 0, 221, 171, 87, 49, 87, 177, 0, 60, 0, 109, 193, 0, 221, 171, 76, 51, 210, 171, 0, 60, 0, 109, 193, 0, 221, 43, 76, 51, 210, 171, 0, 60, 0, 109, 193, 0, 221, 43, 87, 49, 87, 177, 0, 60, 0, 109, 193, 0, 221, 171, 76, 179, 210, 43, 0, 60, 0, 130, 0, 0, 221, 171, 76, 179, 210, 171, 0, 60, 0, 130, 0, 0, 221, 43, 76, 179, 210, 171, 0, 60, 0, 130, 0, 0, 221, 43, 76, 179, 210, 43, 0, 60, 0, 130, 0, 0, 221, 171, 76, 51, 210, 43, 0, 60, 0, 109, 63, 0, 221, 171, 87, 49, 87, 49, 0, 60, 0, 109, 63, 0, 221, 43, 87, 49, 87, 49, 0, 60, 0, 109, 63, 0, 221, 43, 76, 51, 210, 43, 0, 60, 0, 109, 63, 0, 221, 171, 76, 51, 210, 171, 0, 60, 0, 127, 0, 0, 221, 171, 76, 51, 210, 43, 0, 60, 0, 127, 0, 0, 221, 43, 76, 51, 210, 43, 0, 60, 0, 127, 0, 0, 221, 43, 76, 51, 210, 171, 0, 60, 0, 127, 0, 0, 221, 171, 76, 179, 210, 171, 0, 60, 0, 147, 193, 0, 221, 171, 87, 177, 87, 177, 0, 60, 0, 147, 193, 0, 221, 43, 87, 177, 87, 177, 0, 60, 0, 147, 193, 0, 221, 43, 76, 179, 210, 171, 0, 60, 0, 147, 193, 0, 221, 171, 87, 49, 87, 49, 0, 60, 0, 63, 109, 0, 221, 171, 210, 43, 76, 51, 0, 60, 0, 63, 109, 0, 221, 43, 210, 43, 76, 51, 0, 60, 0, 63, 109, 0, 221, 43, 87, 49, 87, 49, 0, 60, 0, 63, 109, 0), -"array_index_data": PackedByteArray(0, 0, 2, 0, 1, 0, 1, 0, 4, 0, 3, 0, 4, 0, 6, 0, 5, 0, 6, 0, 8, 0, 7, 0, 8, 0, 10, 0, 9, 0, 10, 0, 2, 0, 11, 0, 1, 0, 2, 0, 4, 0, 4, 0, 8, 0, 6, 0, 8, 0, 2, 0, 10, 0, 4, 0, 2, 0, 8, 0, 12, 0, 14, 0, 13, 0, 13, 0, 16, 0, 15, 0, 16, 0, 18, 0, 17, 0, 18, 0, 20, 0, 19, 0, 20, 0, 22, 0, 21, 0, 22, 0, 14, 0, 23, 0, 13, 0, 14, 0, 16, 0, 16, 0, 20, 0, 18, 0, 20, 0, 14, 0, 22, 0, 16, 0, 14, 0, 20, 0, 24, 0, 26, 0, 25, 0, 24, 0, 27, 0, 26, 0, 28, 0, 30, 0, 29, 0, 28, 0, 31, 0, 30, 0, 32, 0, 34, 0, 33, 0, 32, 0, 35, 0, 34, 0, 36, 0, 38, 0, 37, 0, 36, 0, 39, 0, 38, 0, 40, 0, 42, 0, 41, 0, 40, 0, 43, 0, 42, 0, 44, 0, 46, 0, 45, 0, 44, 0, 47, 0, 46, 0, 48, 0, 50, 0, 49, 0, 48, 0, 51, 0, 50, 0, 52, 0, 54, 0, 53, 0, 52, 0, 55, 0, 54, 0, 56, 0, 58, 0, 57, 0, 56, 0, 59, 0, 58, 0, 60, 0, 62, 0, 61, 0, 60, 0, 63, 0, 62, 0, 64, 0, 66, 0, 65, 0, 64, 0, 67, 0, 66, 0, 68, 0, 70, 0, 69, 0, 68, 0, 71, 0, 70, 0), -"blend_shape_data": [], -"format": 98051, +"format": 4099, "index_count": 132, -"material": ExtResource( 2 ), +"index_data": PackedByteArray(0, 0, 2, 0, 1, 0, 1, 0, 4, 0, 3, 0, 4, 0, 6, 0, 5, 0, 6, 0, 8, 0, 7, 0, 8, 0, 10, 0, 9, 0, 10, 0, 2, 0, 11, 0, 1, 0, 2, 0, 4, 0, 4, 0, 8, 0, 6, 0, 8, 0, 2, 0, 10, 0, 4, 0, 2, 0, 8, 0, 12, 0, 14, 0, 13, 0, 13, 0, 16, 0, 15, 0, 16, 0, 18, 0, 17, 0, 18, 0, 20, 0, 19, 0, 20, 0, 22, 0, 21, 0, 22, 0, 14, 0, 23, 0, 13, 0, 14, 0, 16, 0, 16, 0, 20, 0, 18, 0, 20, 0, 14, 0, 22, 0, 16, 0, 14, 0, 20, 0, 24, 0, 26, 0, 25, 0, 24, 0, 27, 0, 26, 0, 28, 0, 30, 0, 29, 0, 28, 0, 31, 0, 30, 0, 32, 0, 34, 0, 33, 0, 32, 0, 35, 0, 34, 0, 36, 0, 38, 0, 37, 0, 36, 0, 39, 0, 38, 0, 40, 0, 42, 0, 41, 0, 40, 0, 43, 0, 42, 0, 44, 0, 46, 0, 45, 0, 44, 0, 47, 0, 46, 0, 48, 0, 50, 0, 49, 0, 48, 0, 51, 0, 50, 0, 52, 0, 54, 0, 53, 0, 52, 0, 55, 0, 54, 0, 56, 0, 58, 0, 57, 0, 56, 0, 59, 0, 58, 0, 60, 0, 62, 0, 61, 0, 60, 0, 63, 0, 62, 0, 64, 0, 66, 0, 65, 0, 64, 0, 67, 0, 66, 0, 68, 0, 70, 0, 69, 0, 68, 0, 71, 0, 70, 0), +"material": ExtResource( "2" ), "name": "Material.001", -"primitive": 4, -"skeleton_aabb": [], -"vertex_count": 72 -} +"primitive": 3, +"vertex_count": 72, +"vertex_data": PackedByteArray(0, 160, 123, 189, 0, 128, 105, 62, 0, 64, 122, 61, 0, 0, 0, 0, 0, 160, 123, 189, 0, 128, 105, 62, 0, 64, 122, 189, 0, 0, 0, 0, 0, 160, 123, 189, 0, 224, 42, 62, 0, 224, 42, 62, 0, 0, 0, 0, 0, 160, 123, 189, 0, 224, 42, 62, 0, 224, 42, 190, 0, 0, 0, 0, 0, 160, 123, 189, 0, 64, 122, 61, 0, 128, 105, 190, 0, 0, 0, 0, 0, 160, 123, 189, 0, 64, 122, 189, 0, 128, 105, 190, 0, 0, 0, 0, 0, 160, 123, 189, 0, 224, 42, 190, 0, 224, 42, 190, 0, 0, 0, 0, 0, 160, 123, 189, 0, 128, 105, 190, 0, 64, 122, 189, 0, 0, 0, 0, 0, 160, 123, 189, 0, 128, 105, 190, 0, 64, 122, 61, 0, 0, 0, 0, 0, 160, 123, 189, 0, 224, 42, 190, 0, 224, 42, 62, 0, 0, 0, 0, 0, 160, 123, 189, 0, 64, 122, 189, 0, 128, 105, 62, 0, 0, 0, 0, 0, 160, 123, 189, 0, 64, 122, 61, 0, 128, 105, 62, 0, 0, 0, 0, 0, 160, 123, 61, 0, 128, 105, 62, 0, 64, 122, 61, 254, 3, 0, 0, 0, 160, 123, 61, 0, 224, 42, 62, 0, 224, 42, 62, 254, 3, 0, 0, 0, 160, 123, 61, 0, 128, 105, 62, 0, 64, 122, 189, 254, 3, 0, 0, 0, 160, 123, 61, 0, 64, 122, 61, 0, 128, 105, 62, 254, 3, 0, 0, 0, 160, 123, 61, 0, 64, 122, 189, 0, 128, 105, 62, 254, 3, 0, 0, 0, 160, 123, 61, 0, 224, 42, 190, 0, 224, 42, 62, 254, 3, 0, 0, 0, 160, 123, 61, 0, 128, 105, 190, 0, 64, 122, 61, 254, 3, 0, 0, 0, 160, 123, 61, 0, 128, 105, 190, 0, 64, 122, 189, 254, 3, 0, 0, 0, 160, 123, 61, 0, 224, 42, 190, 0, 224, 42, 190, 254, 3, 0, 0, 0, 160, 123, 61, 0, 64, 122, 189, 0, 128, 105, 190, 254, 3, 0, 0, 0, 160, 123, 61, 0, 64, 122, 61, 0, 128, 105, 190, 254, 3, 0, 0, 0, 160, 123, 61, 0, 224, 42, 62, 0, 224, 42, 190, 254, 3, 0, 0, 0, 160, 123, 189, 0, 224, 42, 190, 0, 224, 42, 190, 0, 0, 0, 0, 0, 160, 123, 189, 0, 64, 122, 189, 0, 128, 105, 190, 0, 0, 0, 0, 0, 160, 123, 61, 0, 64, 122, 189, 0, 128, 105, 190, 0, 0, 0, 0, 0, 160, 123, 61, 0, 224, 42, 190, 0, 224, 42, 190, 0, 0, 0, 0, 0, 160, 123, 189, 0, 64, 122, 61, 0, 128, 105, 62, 0, 0, 96, 63, 0, 160, 123, 189, 0, 64, 122, 189, 0, 128, 105, 62, 0, 0, 96, 63, 0, 160, 123, 61, 0, 64, 122, 189, 0, 128, 105, 62, 0, 0, 96, 63, 0, 160, 123, 61, 0, 64, 122, 61, 0, 128, 105, 62, 0, 0, 96, 63, 0, 160, 123, 189, 0, 64, 122, 189, 0, 128, 105, 190, 0, 0, 0, 0, 0, 160, 123, 189, 0, 64, 122, 61, 0, 128, 105, 190, 0, 0, 0, 0, 0, 160, 123, 61, 0, 64, 122, 61, 0, 128, 105, 190, 0, 0, 0, 0, 0, 160, 123, 61, 0, 64, 122, 189, 0, 128, 105, 190, 0, 0, 0, 0, 0, 160, 123, 189, 0, 64, 122, 189, 0, 128, 105, 62, 0, 0, 224, 54, 0, 160, 123, 189, 0, 224, 42, 190, 0, 224, 42, 62, 0, 0, 224, 54, 0, 160, 123, 61, 0, 224, 42, 190, 0, 224, 42, 62, 0, 0, 224, 54, 0, 160, 123, 61, 0, 64, 122, 189, 0, 128, 105, 62, 0, 0, 224, 54, 0, 160, 123, 189, 0, 64, 122, 61, 0, 128, 105, 190, 0, 236, 7, 0, 0, 160, 123, 189, 0, 224, 42, 62, 0, 224, 42, 190, 0, 236, 7, 0, 0, 160, 123, 61, 0, 224, 42, 62, 0, 224, 42, 190, 0, 236, 7, 0, 0, 160, 123, 61, 0, 64, 122, 61, 0, 128, 105, 190, 0, 236, 7, 0, 0, 160, 123, 189, 0, 224, 42, 190, 0, 224, 42, 62, 0, 0, 176, 31, 0, 160, 123, 189, 0, 128, 105, 190, 0, 64, 122, 61, 0, 0, 176, 31, 0, 160, 123, 61, 0, 128, 105, 190, 0, 64, 122, 61, 0, 0, 176, 31, 0, 160, 123, 61, 0, 224, 42, 190, 0, 224, 42, 62, 0, 0, 176, 31, 0, 160, 123, 189, 0, 224, 42, 62, 0, 224, 42, 190, 0, 184, 13, 0, 0, 160, 123, 189, 0, 128, 105, 62, 0, 64, 122, 189, 0, 184, 13, 0, 0, 160, 123, 61, 0, 128, 105, 62, 0, 64, 122, 189, 0, 184, 13, 0, 0, 160, 123, 61, 0, 224, 42, 62, 0, 224, 42, 190, 0, 184, 13, 0, 0, 160, 123, 189, 0, 128, 105, 190, 0, 64, 122, 61, 0, 0, 0, 0, 0, 160, 123, 189, 0, 128, 105, 190, 0, 64, 122, 189, 0, 0, 0, 0, 0, 160, 123, 61, 0, 128, 105, 190, 0, 64, 122, 189, 0, 0, 0, 0, 0, 160, 123, 61, 0, 128, 105, 190, 0, 64, 122, 61, 0, 0, 0, 0, 0, 160, 123, 189, 0, 128, 105, 62, 0, 64, 122, 61, 0, 184, 189, 31, 0, 160, 123, 189, 0, 224, 42, 62, 0, 224, 42, 62, 0, 184, 189, 31, 0, 160, 123, 61, 0, 224, 42, 62, 0, 224, 42, 62, 0, 184, 189, 31, 0, 160, 123, 61, 0, 128, 105, 62, 0, 64, 122, 61, 0, 184, 189, 31, 0, 160, 123, 189, 0, 128, 105, 62, 0, 64, 122, 189, 0, 248, 15, 0, 0, 160, 123, 189, 0, 128, 105, 62, 0, 64, 122, 61, 0, 248, 15, 0, 0, 160, 123, 61, 0, 128, 105, 62, 0, 64, 122, 61, 0, 248, 15, 0, 0, 160, 123, 61, 0, 128, 105, 62, 0, 64, 122, 189, 0, 248, 15, 0, 0, 160, 123, 189, 0, 128, 105, 190, 0, 64, 122, 189, 0, 0, 0, 0, 0, 160, 123, 189, 0, 224, 42, 190, 0, 224, 42, 190, 0, 0, 0, 0, 0, 160, 123, 61, 0, 224, 42, 190, 0, 224, 42, 190, 0, 0, 0, 0, 0, 160, 123, 61, 0, 128, 105, 190, 0, 64, 122, 189, 0, 0, 0, 0, 0, 160, 123, 189, 0, 224, 42, 62, 0, 224, 42, 62, 0, 236, 231, 54, 0, 160, 123, 189, 0, 64, 122, 61, 0, 128, 105, 62, 0, 236, 231, 54, 0, 160, 123, 61, 0, 64, 122, 61, 0, 128, 105, 62, 0, 236, 231, 54, 0, 160, 123, 61, 0, 224, 42, 62, 0, 224, 42, 62, 0, 236, 231, 54) +}] -[sub_resource type="ArrayMesh" id=2] +[sub_resource type="ArrayMesh" id="2"] resource_name = "bus.007" -surfaces/0 = { +_surfaces = [{ "aabb": AABB(-0.0614569, -0.228035, -0.228035, 0.122914, 0.45608, 0.45607), -"array_data": PackedByteArray(221, 171, 76, 51, 210, 43, 0, 60, 130, 0, 0, 0, 221, 171, 76, 51, 210, 171, 0, 60, 130, 0, 0, 0, 221, 171, 87, 49, 87, 49, 0, 60, 130, 0, 0, 0, 221, 171, 87, 49, 87, 177, 0, 60, 130, 0, 0, 0, 221, 171, 210, 43, 76, 179, 0, 60, 130, 0, 0, 0, 221, 171, 210, 171, 76, 179, 0, 60, 130, 0, 0, 0, 221, 171, 87, 177, 87, 177, 0, 60, 130, 0, 0, 0, 221, 171, 76, 179, 210, 171, 0, 60, 130, 0, 0, 0, 221, 171, 76, 179, 210, 43, 0, 60, 130, 0, 0, 0, 221, 171, 87, 177, 87, 49, 0, 60, 130, 0, 0, 0, 221, 171, 210, 171, 76, 51, 0, 60, 130, 0, 0, 0, 221, 171, 210, 43, 76, 51, 0, 60, 130, 0, 0, 0, 221, 43, 76, 51, 210, 43, 0, 60, 127, 0, 0, 0, 221, 43, 87, 49, 87, 49, 0, 60, 127, 0, 0, 0, 221, 43, 76, 51, 210, 171, 0, 60, 127, 0, 0, 0, 221, 43, 210, 43, 76, 51, 0, 60, 127, 0, 0, 0, 221, 43, 210, 171, 76, 51, 0, 60, 127, 0, 0, 0, 221, 43, 87, 177, 87, 49, 0, 60, 127, 0, 0, 0, 221, 43, 76, 179, 210, 43, 0, 60, 127, 0, 0, 0, 221, 43, 76, 179, 210, 171, 0, 60, 127, 0, 0, 0, 221, 43, 87, 177, 87, 177, 0, 60, 127, 0, 0, 0, 221, 43, 210, 171, 76, 179, 0, 60, 127, 0, 0, 0, 221, 43, 210, 43, 76, 179, 0, 60, 127, 0, 0, 0, 221, 43, 87, 49, 87, 177, 0, 60, 127, 0, 0, 0, 221, 171, 87, 177, 87, 177, 0, 60, 0, 193, 147, 0, 221, 171, 210, 171, 76, 179, 0, 60, 0, 193, 147, 0, 221, 43, 210, 171, 76, 179, 0, 60, 0, 193, 147, 0, 221, 43, 87, 177, 87, 177, 0, 60, 0, 193, 147, 0, 221, 171, 210, 43, 76, 51, 0, 60, 0, 0, 126, 0, 221, 171, 210, 171, 76, 51, 0, 60, 0, 0, 126, 0, 221, 43, 210, 171, 76, 51, 0, 60, 0, 0, 126, 0, 221, 43, 210, 43, 76, 51, 0, 60, 0, 0, 126, 0, 221, 171, 210, 171, 76, 179, 0, 60, 0, 0, 129, 0, 221, 171, 210, 43, 76, 179, 0, 60, 0, 0, 129, 0, 221, 43, 210, 43, 76, 179, 0, 60, 0, 0, 129, 0, 221, 43, 210, 171, 76, 179, 0, 60, 0, 0, 129, 0, 221, 171, 210, 171, 76, 51, 0, 60, 0, 193, 109, 0, 221, 171, 87, 177, 87, 49, 0, 60, 0, 193, 109, 0, 221, 43, 87, 177, 87, 49, 0, 60, 0, 193, 109, 0, 221, 43, 210, 171, 76, 51, 0, 60, 0, 193, 109, 0, 221, 171, 210, 43, 76, 179, 0, 60, 0, 63, 147, 0, 221, 171, 87, 49, 87, 177, 0, 60, 0, 63, 147, 0, 221, 43, 87, 49, 87, 177, 0, 60, 0, 63, 147, 0, 221, 43, 210, 43, 76, 179, 0, 60, 0, 63, 147, 0, 221, 171, 87, 177, 87, 49, 0, 60, 0, 147, 63, 0, 221, 171, 76, 179, 210, 43, 0, 60, 0, 147, 63, 0, 221, 43, 76, 179, 210, 43, 0, 60, 0, 147, 63, 0, 221, 43, 87, 177, 87, 49, 0, 60, 0, 147, 63, 0, 221, 171, 87, 49, 87, 177, 0, 60, 0, 109, 193, 0, 221, 171, 76, 51, 210, 171, 0, 60, 0, 109, 193, 0, 221, 43, 76, 51, 210, 171, 0, 60, 0, 109, 193, 0, 221, 43, 87, 49, 87, 177, 0, 60, 0, 109, 193, 0, 221, 171, 76, 179, 210, 43, 0, 60, 0, 130, 0, 0, 221, 171, 76, 179, 210, 171, 0, 60, 0, 130, 0, 0, 221, 43, 76, 179, 210, 171, 0, 60, 0, 130, 0, 0, 221, 43, 76, 179, 210, 43, 0, 60, 0, 130, 0, 0, 221, 171, 76, 51, 210, 43, 0, 60, 0, 109, 63, 0, 221, 171, 87, 49, 87, 49, 0, 60, 0, 109, 63, 0, 221, 43, 87, 49, 87, 49, 0, 60, 0, 109, 63, 0, 221, 43, 76, 51, 210, 43, 0, 60, 0, 109, 63, 0, 221, 171, 76, 51, 210, 171, 0, 60, 0, 127, 0, 0, 221, 171, 76, 51, 210, 43, 0, 60, 0, 127, 0, 0, 221, 43, 76, 51, 210, 43, 0, 60, 0, 127, 0, 0, 221, 43, 76, 51, 210, 171, 0, 60, 0, 127, 0, 0, 221, 171, 76, 179, 210, 171, 0, 60, 0, 147, 193, 0, 221, 171, 87, 177, 87, 177, 0, 60, 0, 147, 193, 0, 221, 43, 87, 177, 87, 177, 0, 60, 0, 147, 193, 0, 221, 43, 76, 179, 210, 171, 0, 60, 0, 147, 193, 0, 221, 171, 87, 49, 87, 49, 0, 60, 0, 63, 109, 0, 221, 171, 210, 43, 76, 51, 0, 60, 0, 63, 109, 0, 221, 43, 210, 43, 76, 51, 0, 60, 0, 63, 109, 0, 221, 43, 87, 49, 87, 49, 0, 60, 0, 63, 109, 0), -"array_index_data": PackedByteArray(0, 0, 2, 0, 1, 0, 1, 0, 4, 0, 3, 0, 4, 0, 6, 0, 5, 0, 6, 0, 8, 0, 7, 0, 8, 0, 10, 0, 9, 0, 10, 0, 2, 0, 11, 0, 1, 0, 2, 0, 4, 0, 4, 0, 8, 0, 6, 0, 8, 0, 2, 0, 10, 0, 4, 0, 2, 0, 8, 0, 12, 0, 14, 0, 13, 0, 13, 0, 16, 0, 15, 0, 16, 0, 18, 0, 17, 0, 18, 0, 20, 0, 19, 0, 20, 0, 22, 0, 21, 0, 22, 0, 14, 0, 23, 0, 13, 0, 14, 0, 16, 0, 16, 0, 20, 0, 18, 0, 20, 0, 14, 0, 22, 0, 16, 0, 14, 0, 20, 0, 24, 0, 26, 0, 25, 0, 24, 0, 27, 0, 26, 0, 28, 0, 30, 0, 29, 0, 28, 0, 31, 0, 30, 0, 32, 0, 34, 0, 33, 0, 32, 0, 35, 0, 34, 0, 36, 0, 38, 0, 37, 0, 36, 0, 39, 0, 38, 0, 40, 0, 42, 0, 41, 0, 40, 0, 43, 0, 42, 0, 44, 0, 46, 0, 45, 0, 44, 0, 47, 0, 46, 0, 48, 0, 50, 0, 49, 0, 48, 0, 51, 0, 50, 0, 52, 0, 54, 0, 53, 0, 52, 0, 55, 0, 54, 0, 56, 0, 58, 0, 57, 0, 56, 0, 59, 0, 58, 0, 60, 0, 62, 0, 61, 0, 60, 0, 63, 0, 62, 0, 64, 0, 66, 0, 65, 0, 64, 0, 67, 0, 66, 0, 68, 0, 70, 0, 69, 0, 68, 0, 71, 0, 70, 0), -"blend_shape_data": [], -"format": 98051, +"format": 4099, "index_count": 132, -"material": ExtResource( 2 ), +"index_data": PackedByteArray(0, 0, 2, 0, 1, 0, 1, 0, 4, 0, 3, 0, 4, 0, 6, 0, 5, 0, 6, 0, 8, 0, 7, 0, 8, 0, 10, 0, 9, 0, 10, 0, 2, 0, 11, 0, 1, 0, 2, 0, 4, 0, 4, 0, 8, 0, 6, 0, 8, 0, 2, 0, 10, 0, 4, 0, 2, 0, 8, 0, 12, 0, 14, 0, 13, 0, 13, 0, 16, 0, 15, 0, 16, 0, 18, 0, 17, 0, 18, 0, 20, 0, 19, 0, 20, 0, 22, 0, 21, 0, 22, 0, 14, 0, 23, 0, 13, 0, 14, 0, 16, 0, 16, 0, 20, 0, 18, 0, 20, 0, 14, 0, 22, 0, 16, 0, 14, 0, 20, 0, 24, 0, 26, 0, 25, 0, 24, 0, 27, 0, 26, 0, 28, 0, 30, 0, 29, 0, 28, 0, 31, 0, 30, 0, 32, 0, 34, 0, 33, 0, 32, 0, 35, 0, 34, 0, 36, 0, 38, 0, 37, 0, 36, 0, 39, 0, 38, 0, 40, 0, 42, 0, 41, 0, 40, 0, 43, 0, 42, 0, 44, 0, 46, 0, 45, 0, 44, 0, 47, 0, 46, 0, 48, 0, 50, 0, 49, 0, 48, 0, 51, 0, 50, 0, 52, 0, 54, 0, 53, 0, 52, 0, 55, 0, 54, 0, 56, 0, 58, 0, 57, 0, 56, 0, 59, 0, 58, 0, 60, 0, 62, 0, 61, 0, 60, 0, 63, 0, 62, 0, 64, 0, 66, 0, 65, 0, 64, 0, 67, 0, 66, 0, 68, 0, 70, 0, 69, 0, 68, 0, 71, 0, 70, 0), +"material": ExtResource( "2" ), "name": "Material.001", -"primitive": 4, -"skeleton_aabb": [], -"vertex_count": 72 -} +"primitive": 3, +"vertex_count": 72, +"vertex_data": PackedByteArray(0, 160, 123, 189, 0, 128, 105, 62, 0, 64, 122, 61, 0, 0, 0, 0, 0, 160, 123, 189, 0, 128, 105, 62, 0, 64, 122, 189, 0, 0, 0, 0, 0, 160, 123, 189, 0, 224, 42, 62, 0, 224, 42, 62, 0, 0, 0, 0, 0, 160, 123, 189, 0, 224, 42, 62, 0, 224, 42, 190, 0, 0, 0, 0, 0, 160, 123, 189, 0, 64, 122, 61, 0, 128, 105, 190, 0, 0, 0, 0, 0, 160, 123, 189, 0, 64, 122, 189, 0, 128, 105, 190, 0, 0, 0, 0, 0, 160, 123, 189, 0, 224, 42, 190, 0, 224, 42, 190, 0, 0, 0, 0, 0, 160, 123, 189, 0, 128, 105, 190, 0, 64, 122, 189, 0, 0, 0, 0, 0, 160, 123, 189, 0, 128, 105, 190, 0, 64, 122, 61, 0, 0, 0, 0, 0, 160, 123, 189, 0, 224, 42, 190, 0, 224, 42, 62, 0, 0, 0, 0, 0, 160, 123, 189, 0, 64, 122, 189, 0, 128, 105, 62, 0, 0, 0, 0, 0, 160, 123, 189, 0, 64, 122, 61, 0, 128, 105, 62, 0, 0, 0, 0, 0, 160, 123, 61, 0, 128, 105, 62, 0, 64, 122, 61, 254, 3, 0, 0, 0, 160, 123, 61, 0, 224, 42, 62, 0, 224, 42, 62, 254, 3, 0, 0, 0, 160, 123, 61, 0, 128, 105, 62, 0, 64, 122, 189, 254, 3, 0, 0, 0, 160, 123, 61, 0, 64, 122, 61, 0, 128, 105, 62, 254, 3, 0, 0, 0, 160, 123, 61, 0, 64, 122, 189, 0, 128, 105, 62, 254, 3, 0, 0, 0, 160, 123, 61, 0, 224, 42, 190, 0, 224, 42, 62, 254, 3, 0, 0, 0, 160, 123, 61, 0, 128, 105, 190, 0, 64, 122, 61, 254, 3, 0, 0, 0, 160, 123, 61, 0, 128, 105, 190, 0, 64, 122, 189, 254, 3, 0, 0, 0, 160, 123, 61, 0, 224, 42, 190, 0, 224, 42, 190, 254, 3, 0, 0, 0, 160, 123, 61, 0, 64, 122, 189, 0, 128, 105, 190, 254, 3, 0, 0, 0, 160, 123, 61, 0, 64, 122, 61, 0, 128, 105, 190, 254, 3, 0, 0, 0, 160, 123, 61, 0, 224, 42, 62, 0, 224, 42, 190, 254, 3, 0, 0, 0, 160, 123, 189, 0, 224, 42, 190, 0, 224, 42, 190, 0, 0, 0, 0, 0, 160, 123, 189, 0, 64, 122, 189, 0, 128, 105, 190, 0, 0, 0, 0, 0, 160, 123, 61, 0, 64, 122, 189, 0, 128, 105, 190, 0, 0, 0, 0, 0, 160, 123, 61, 0, 224, 42, 190, 0, 224, 42, 190, 0, 0, 0, 0, 0, 160, 123, 189, 0, 64, 122, 61, 0, 128, 105, 62, 0, 0, 96, 63, 0, 160, 123, 189, 0, 64, 122, 189, 0, 128, 105, 62, 0, 0, 96, 63, 0, 160, 123, 61, 0, 64, 122, 189, 0, 128, 105, 62, 0, 0, 96, 63, 0, 160, 123, 61, 0, 64, 122, 61, 0, 128, 105, 62, 0, 0, 96, 63, 0, 160, 123, 189, 0, 64, 122, 189, 0, 128, 105, 190, 0, 0, 0, 0, 0, 160, 123, 189, 0, 64, 122, 61, 0, 128, 105, 190, 0, 0, 0, 0, 0, 160, 123, 61, 0, 64, 122, 61, 0, 128, 105, 190, 0, 0, 0, 0, 0, 160, 123, 61, 0, 64, 122, 189, 0, 128, 105, 190, 0, 0, 0, 0, 0, 160, 123, 189, 0, 64, 122, 189, 0, 128, 105, 62, 0, 0, 224, 54, 0, 160, 123, 189, 0, 224, 42, 190, 0, 224, 42, 62, 0, 0, 224, 54, 0, 160, 123, 61, 0, 224, 42, 190, 0, 224, 42, 62, 0, 0, 224, 54, 0, 160, 123, 61, 0, 64, 122, 189, 0, 128, 105, 62, 0, 0, 224, 54, 0, 160, 123, 189, 0, 64, 122, 61, 0, 128, 105, 190, 0, 236, 7, 0, 0, 160, 123, 189, 0, 224, 42, 62, 0, 224, 42, 190, 0, 236, 7, 0, 0, 160, 123, 61, 0, 224, 42, 62, 0, 224, 42, 190, 0, 236, 7, 0, 0, 160, 123, 61, 0, 64, 122, 61, 0, 128, 105, 190, 0, 236, 7, 0, 0, 160, 123, 189, 0, 224, 42, 190, 0, 224, 42, 62, 0, 0, 176, 31, 0, 160, 123, 189, 0, 128, 105, 190, 0, 64, 122, 61, 0, 0, 176, 31, 0, 160, 123, 61, 0, 128, 105, 190, 0, 64, 122, 61, 0, 0, 176, 31, 0, 160, 123, 61, 0, 224, 42, 190, 0, 224, 42, 62, 0, 0, 176, 31, 0, 160, 123, 189, 0, 224, 42, 62, 0, 224, 42, 190, 0, 184, 13, 0, 0, 160, 123, 189, 0, 128, 105, 62, 0, 64, 122, 189, 0, 184, 13, 0, 0, 160, 123, 61, 0, 128, 105, 62, 0, 64, 122, 189, 0, 184, 13, 0, 0, 160, 123, 61, 0, 224, 42, 62, 0, 224, 42, 190, 0, 184, 13, 0, 0, 160, 123, 189, 0, 128, 105, 190, 0, 64, 122, 61, 0, 0, 0, 0, 0, 160, 123, 189, 0, 128, 105, 190, 0, 64, 122, 189, 0, 0, 0, 0, 0, 160, 123, 61, 0, 128, 105, 190, 0, 64, 122, 189, 0, 0, 0, 0, 0, 160, 123, 61, 0, 128, 105, 190, 0, 64, 122, 61, 0, 0, 0, 0, 0, 160, 123, 189, 0, 128, 105, 62, 0, 64, 122, 61, 0, 184, 189, 31, 0, 160, 123, 189, 0, 224, 42, 62, 0, 224, 42, 62, 0, 184, 189, 31, 0, 160, 123, 61, 0, 224, 42, 62, 0, 224, 42, 62, 0, 184, 189, 31, 0, 160, 123, 61, 0, 128, 105, 62, 0, 64, 122, 61, 0, 184, 189, 31, 0, 160, 123, 189, 0, 128, 105, 62, 0, 64, 122, 189, 0, 248, 15, 0, 0, 160, 123, 189, 0, 128, 105, 62, 0, 64, 122, 61, 0, 248, 15, 0, 0, 160, 123, 61, 0, 128, 105, 62, 0, 64, 122, 61, 0, 248, 15, 0, 0, 160, 123, 61, 0, 128, 105, 62, 0, 64, 122, 189, 0, 248, 15, 0, 0, 160, 123, 189, 0, 128, 105, 190, 0, 64, 122, 189, 0, 0, 0, 0, 0, 160, 123, 189, 0, 224, 42, 190, 0, 224, 42, 190, 0, 0, 0, 0, 0, 160, 123, 61, 0, 224, 42, 190, 0, 224, 42, 190, 0, 0, 0, 0, 0, 160, 123, 61, 0, 128, 105, 190, 0, 64, 122, 189, 0, 0, 0, 0, 0, 160, 123, 189, 0, 224, 42, 62, 0, 224, 42, 62, 0, 236, 231, 54, 0, 160, 123, 189, 0, 64, 122, 61, 0, 128, 105, 62, 0, 236, 231, 54, 0, 160, 123, 61, 0, 64, 122, 61, 0, 128, 105, 62, 0, 236, 231, 54, 0, 160, 123, 61, 0, 224, 42, 62, 0, 224, 42, 62, 0, 236, 231, 54) +}] -[sub_resource type="ArrayMesh" id=3] +[sub_resource type="ArrayMesh" id="3"] resource_name = "bus.005" -surfaces/0 = { +_surfaces = [{ "aabb": AABB(-0.061457, -0.228035, -0.228035, 0.122924, 0.45608, 0.45607), -"array_data": PackedByteArray(221, 43, 76, 51, 210, 43, 0, 60, 127, 0, 0, 0, 221, 43, 87, 49, 87, 49, 0, 60, 127, 0, 0, 0, 221, 43, 76, 51, 210, 171, 0, 60, 127, 0, 0, 0, 221, 43, 210, 43, 76, 51, 0, 60, 127, 0, 0, 0, 221, 43, 210, 171, 76, 51, 0, 60, 127, 0, 0, 0, 221, 43, 87, 177, 87, 49, 0, 60, 127, 0, 0, 0, 221, 43, 76, 179, 210, 43, 0, 60, 127, 0, 0, 0, 221, 43, 76, 179, 210, 171, 0, 60, 127, 0, 0, 0, 221, 43, 87, 177, 87, 177, 0, 60, 127, 0, 0, 0, 221, 43, 210, 171, 76, 179, 0, 60, 127, 0, 0, 0, 221, 43, 210, 43, 76, 179, 0, 60, 127, 0, 0, 0, 221, 43, 87, 49, 87, 177, 0, 60, 127, 0, 0, 0, 221, 171, 76, 51, 210, 43, 0, 60, 130, 0, 0, 0, 221, 171, 76, 51, 210, 171, 0, 60, 130, 0, 0, 0, 221, 171, 87, 49, 87, 49, 0, 60, 130, 0, 0, 0, 221, 171, 87, 49, 87, 177, 0, 60, 130, 0, 0, 0, 221, 171, 210, 43, 76, 179, 0, 60, 130, 0, 0, 0, 221, 171, 210, 171, 76, 179, 0, 60, 130, 0, 0, 0, 221, 171, 87, 177, 87, 177, 0, 60, 130, 0, 0, 0, 221, 171, 76, 179, 210, 171, 0, 60, 130, 0, 0, 0, 221, 171, 76, 179, 210, 43, 0, 60, 130, 0, 0, 0, 221, 171, 87, 177, 87, 49, 0, 60, 130, 0, 0, 0, 221, 171, 210, 171, 76, 51, 0, 60, 130, 0, 0, 0, 221, 171, 210, 43, 76, 51, 0, 60, 130, 0, 0, 0, 221, 43, 87, 177, 87, 177, 0, 60, 0, 193, 147, 0, 221, 171, 87, 177, 87, 177, 0, 60, 0, 193, 147, 0, 221, 171, 210, 171, 76, 179, 0, 60, 0, 193, 147, 0, 221, 43, 210, 171, 76, 179, 0, 60, 0, 193, 147, 0, 221, 43, 210, 43, 76, 51, 0, 60, 0, 0, 126, 0, 221, 171, 210, 43, 76, 51, 0, 60, 0, 0, 126, 0, 221, 171, 210, 171, 76, 51, 0, 60, 0, 0, 126, 0, 221, 43, 210, 171, 76, 51, 0, 60, 0, 0, 126, 0, 221, 43, 210, 171, 76, 179, 0, 60, 0, 0, 129, 0, 221, 171, 210, 171, 76, 179, 0, 60, 0, 0, 129, 0, 221, 171, 210, 43, 76, 179, 0, 60, 0, 0, 129, 0, 221, 43, 210, 43, 76, 179, 0, 60, 0, 0, 129, 0, 221, 43, 210, 171, 76, 51, 0, 60, 0, 193, 109, 0, 221, 171, 210, 171, 76, 51, 0, 60, 0, 193, 109, 0, 221, 171, 87, 177, 87, 49, 0, 60, 0, 193, 109, 0, 221, 43, 87, 177, 87, 49, 0, 60, 0, 193, 109, 0, 221, 43, 210, 43, 76, 179, 0, 60, 0, 63, 147, 0, 221, 171, 210, 43, 76, 179, 0, 60, 0, 63, 147, 0, 221, 171, 87, 49, 87, 177, 0, 60, 0, 63, 147, 0, 221, 43, 87, 49, 87, 177, 0, 60, 0, 63, 147, 0, 221, 43, 87, 177, 87, 49, 0, 60, 0, 147, 63, 0, 221, 171, 87, 177, 87, 49, 0, 60, 0, 147, 63, 0, 221, 171, 76, 179, 210, 43, 0, 60, 0, 147, 63, 0, 221, 43, 76, 179, 210, 43, 0, 60, 0, 147, 63, 0, 221, 43, 87, 49, 87, 177, 0, 60, 0, 109, 193, 0, 221, 171, 87, 49, 87, 177, 0, 60, 0, 109, 193, 0, 221, 171, 76, 51, 210, 171, 0, 60, 0, 109, 193, 0, 221, 43, 76, 51, 210, 171, 0, 60, 0, 109, 193, 0, 221, 43, 76, 179, 210, 43, 0, 60, 0, 130, 0, 0, 221, 171, 76, 179, 210, 43, 0, 60, 0, 130, 0, 0, 221, 171, 76, 179, 210, 171, 0, 60, 0, 130, 0, 0, 221, 43, 76, 179, 210, 171, 0, 60, 0, 130, 0, 0, 221, 43, 76, 51, 210, 43, 0, 60, 0, 109, 63, 0, 221, 171, 76, 51, 210, 43, 0, 60, 0, 109, 63, 0, 221, 171, 87, 49, 87, 49, 0, 60, 0, 109, 63, 0, 221, 43, 87, 49, 87, 49, 0, 60, 0, 109, 63, 0, 221, 171, 76, 51, 210, 43, 0, 60, 0, 127, 0, 0, 221, 43, 76, 51, 210, 43, 0, 60, 0, 127, 0, 0, 221, 43, 76, 51, 210, 171, 0, 60, 0, 127, 0, 0, 221, 171, 76, 51, 210, 171, 0, 60, 0, 127, 0, 0, 221, 43, 76, 179, 210, 171, 0, 60, 0, 147, 193, 0, 221, 171, 76, 179, 210, 171, 0, 60, 0, 147, 193, 0, 221, 171, 87, 177, 87, 177, 0, 60, 0, 147, 193, 0, 221, 43, 87, 177, 87, 177, 0, 60, 0, 147, 193, 0, 221, 43, 87, 49, 87, 49, 0, 60, 0, 63, 109, 0, 221, 171, 87, 49, 87, 49, 0, 60, 0, 63, 109, 0, 221, 171, 210, 43, 76, 51, 0, 60, 0, 63, 109, 0, 221, 43, 210, 43, 76, 51, 0, 60, 0, 63, 109, 0), -"array_index_data": PackedByteArray(0, 0, 2, 0, 1, 0, 1, 0, 4, 0, 3, 0, 4, 0, 6, 0, 5, 0, 6, 0, 8, 0, 7, 0, 8, 0, 10, 0, 9, 0, 10, 0, 2, 0, 11, 0, 1, 0, 2, 0, 4, 0, 4, 0, 8, 0, 6, 0, 8, 0, 2, 0, 10, 0, 4, 0, 2, 0, 8, 0, 12, 0, 14, 0, 13, 0, 13, 0, 16, 0, 15, 0, 16, 0, 18, 0, 17, 0, 18, 0, 20, 0, 19, 0, 20, 0, 22, 0, 21, 0, 22, 0, 14, 0, 23, 0, 13, 0, 14, 0, 16, 0, 16, 0, 20, 0, 18, 0, 20, 0, 14, 0, 22, 0, 16, 0, 14, 0, 20, 0, 24, 0, 26, 0, 25, 0, 24, 0, 27, 0, 26, 0, 28, 0, 30, 0, 29, 0, 28, 0, 31, 0, 30, 0, 32, 0, 34, 0, 33, 0, 32, 0, 35, 0, 34, 0, 36, 0, 38, 0, 37, 0, 36, 0, 39, 0, 38, 0, 40, 0, 42, 0, 41, 0, 40, 0, 43, 0, 42, 0, 44, 0, 46, 0, 45, 0, 44, 0, 47, 0, 46, 0, 48, 0, 50, 0, 49, 0, 48, 0, 51, 0, 50, 0, 52, 0, 54, 0, 53, 0, 52, 0, 55, 0, 54, 0, 56, 0, 58, 0, 57, 0, 56, 0, 59, 0, 58, 0, 60, 0, 62, 0, 61, 0, 60, 0, 63, 0, 62, 0, 64, 0, 66, 0, 65, 0, 64, 0, 67, 0, 66, 0, 68, 0, 70, 0, 69, 0, 68, 0, 71, 0, 70, 0), -"blend_shape_data": [], -"format": 98051, +"format": 4099, "index_count": 132, -"material": ExtResource( 2 ), +"index_data": PackedByteArray(0, 0, 2, 0, 1, 0, 1, 0, 4, 0, 3, 0, 4, 0, 6, 0, 5, 0, 6, 0, 8, 0, 7, 0, 8, 0, 10, 0, 9, 0, 10, 0, 2, 0, 11, 0, 1, 0, 2, 0, 4, 0, 4, 0, 8, 0, 6, 0, 8, 0, 2, 0, 10, 0, 4, 0, 2, 0, 8, 0, 12, 0, 14, 0, 13, 0, 13, 0, 16, 0, 15, 0, 16, 0, 18, 0, 17, 0, 18, 0, 20, 0, 19, 0, 20, 0, 22, 0, 21, 0, 22, 0, 14, 0, 23, 0, 13, 0, 14, 0, 16, 0, 16, 0, 20, 0, 18, 0, 20, 0, 14, 0, 22, 0, 16, 0, 14, 0, 20, 0, 24, 0, 26, 0, 25, 0, 24, 0, 27, 0, 26, 0, 28, 0, 30, 0, 29, 0, 28, 0, 31, 0, 30, 0, 32, 0, 34, 0, 33, 0, 32, 0, 35, 0, 34, 0, 36, 0, 38, 0, 37, 0, 36, 0, 39, 0, 38, 0, 40, 0, 42, 0, 41, 0, 40, 0, 43, 0, 42, 0, 44, 0, 46, 0, 45, 0, 44, 0, 47, 0, 46, 0, 48, 0, 50, 0, 49, 0, 48, 0, 51, 0, 50, 0, 52, 0, 54, 0, 53, 0, 52, 0, 55, 0, 54, 0, 56, 0, 58, 0, 57, 0, 56, 0, 59, 0, 58, 0, 60, 0, 62, 0, 61, 0, 60, 0, 63, 0, 62, 0, 64, 0, 66, 0, 65, 0, 64, 0, 67, 0, 66, 0, 68, 0, 70, 0, 69, 0, 68, 0, 71, 0, 70, 0), +"material": ExtResource( "2" ), "name": "Material.001", -"primitive": 4, -"skeleton_aabb": [], -"vertex_count": 72 -} +"primitive": 3, +"vertex_count": 72, +"vertex_data": PackedByteArray(0, 160, 123, 61, 0, 128, 105, 62, 0, 64, 122, 61, 254, 3, 0, 0, 0, 160, 123, 61, 0, 224, 42, 62, 0, 224, 42, 62, 254, 3, 0, 0, 0, 160, 123, 61, 0, 128, 105, 62, 0, 64, 122, 189, 254, 3, 0, 0, 0, 160, 123, 61, 0, 64, 122, 61, 0, 128, 105, 62, 254, 3, 0, 0, 0, 160, 123, 61, 0, 64, 122, 189, 0, 128, 105, 62, 254, 3, 0, 0, 0, 160, 123, 61, 0, 224, 42, 190, 0, 224, 42, 62, 254, 3, 0, 0, 0, 160, 123, 61, 0, 128, 105, 190, 0, 64, 122, 61, 254, 3, 0, 0, 0, 160, 123, 61, 0, 128, 105, 190, 0, 64, 122, 189, 254, 3, 0, 0, 0, 160, 123, 61, 0, 224, 42, 190, 0, 224, 42, 190, 254, 3, 0, 0, 0, 160, 123, 61, 0, 64, 122, 189, 0, 128, 105, 190, 254, 3, 0, 0, 0, 160, 123, 61, 0, 64, 122, 61, 0, 128, 105, 190, 254, 3, 0, 0, 0, 160, 123, 61, 0, 224, 42, 62, 0, 224, 42, 190, 254, 3, 0, 0, 0, 160, 123, 189, 0, 128, 105, 62, 0, 64, 122, 61, 0, 0, 0, 0, 0, 160, 123, 189, 0, 128, 105, 62, 0, 64, 122, 189, 0, 0, 0, 0, 0, 160, 123, 189, 0, 224, 42, 62, 0, 224, 42, 62, 0, 0, 0, 0, 0, 160, 123, 189, 0, 224, 42, 62, 0, 224, 42, 190, 0, 0, 0, 0, 0, 160, 123, 189, 0, 64, 122, 61, 0, 128, 105, 190, 0, 0, 0, 0, 0, 160, 123, 189, 0, 64, 122, 189, 0, 128, 105, 190, 0, 0, 0, 0, 0, 160, 123, 189, 0, 224, 42, 190, 0, 224, 42, 190, 0, 0, 0, 0, 0, 160, 123, 189, 0, 128, 105, 190, 0, 64, 122, 189, 0, 0, 0, 0, 0, 160, 123, 189, 0, 128, 105, 190, 0, 64, 122, 61, 0, 0, 0, 0, 0, 160, 123, 189, 0, 224, 42, 190, 0, 224, 42, 62, 0, 0, 0, 0, 0, 160, 123, 189, 0, 64, 122, 189, 0, 128, 105, 62, 0, 0, 0, 0, 0, 160, 123, 189, 0, 64, 122, 61, 0, 128, 105, 62, 0, 0, 0, 0, 0, 160, 123, 61, 0, 224, 42, 190, 0, 224, 42, 190, 0, 0, 0, 0, 0, 160, 123, 189, 0, 224, 42, 190, 0, 224, 42, 190, 0, 0, 0, 0, 0, 160, 123, 189, 0, 64, 122, 189, 0, 128, 105, 190, 0, 0, 0, 0, 0, 160, 123, 61, 0, 64, 122, 189, 0, 128, 105, 190, 0, 0, 0, 0, 0, 160, 123, 61, 0, 64, 122, 61, 0, 128, 105, 62, 0, 0, 96, 63, 0, 160, 123, 189, 0, 64, 122, 61, 0, 128, 105, 62, 0, 0, 96, 63, 0, 160, 123, 189, 0, 64, 122, 189, 0, 128, 105, 62, 0, 0, 96, 63, 0, 160, 123, 61, 0, 64, 122, 189, 0, 128, 105, 62, 0, 0, 96, 63, 0, 160, 123, 61, 0, 64, 122, 189, 0, 128, 105, 190, 0, 0, 0, 0, 0, 160, 123, 189, 0, 64, 122, 189, 0, 128, 105, 190, 0, 0, 0, 0, 0, 160, 123, 189, 0, 64, 122, 61, 0, 128, 105, 190, 0, 0, 0, 0, 0, 160, 123, 61, 0, 64, 122, 61, 0, 128, 105, 190, 0, 0, 0, 0, 0, 160, 123, 61, 0, 64, 122, 189, 0, 128, 105, 62, 0, 0, 224, 54, 0, 160, 123, 189, 0, 64, 122, 189, 0, 128, 105, 62, 0, 0, 224, 54, 0, 160, 123, 189, 0, 224, 42, 190, 0, 224, 42, 62, 0, 0, 224, 54, 0, 160, 123, 61, 0, 224, 42, 190, 0, 224, 42, 62, 0, 0, 224, 54, 0, 160, 123, 61, 0, 64, 122, 61, 0, 128, 105, 190, 0, 236, 7, 0, 0, 160, 123, 189, 0, 64, 122, 61, 0, 128, 105, 190, 0, 236, 7, 0, 0, 160, 123, 189, 0, 224, 42, 62, 0, 224, 42, 190, 0, 236, 7, 0, 0, 160, 123, 61, 0, 224, 42, 62, 0, 224, 42, 190, 0, 236, 7, 0, 0, 160, 123, 61, 0, 224, 42, 190, 0, 224, 42, 62, 0, 0, 176, 31, 0, 160, 123, 189, 0, 224, 42, 190, 0, 224, 42, 62, 0, 0, 176, 31, 0, 160, 123, 189, 0, 128, 105, 190, 0, 64, 122, 61, 0, 0, 176, 31, 0, 160, 123, 61, 0, 128, 105, 190, 0, 64, 122, 61, 0, 0, 176, 31, 0, 160, 123, 61, 0, 224, 42, 62, 0, 224, 42, 190, 0, 184, 13, 0, 0, 160, 123, 189, 0, 224, 42, 62, 0, 224, 42, 190, 0, 184, 13, 0, 0, 160, 123, 189, 0, 128, 105, 62, 0, 64, 122, 189, 0, 184, 13, 0, 0, 160, 123, 61, 0, 128, 105, 62, 0, 64, 122, 189, 0, 184, 13, 0, 0, 160, 123, 61, 0, 128, 105, 190, 0, 64, 122, 61, 0, 0, 0, 0, 0, 160, 123, 189, 0, 128, 105, 190, 0, 64, 122, 61, 0, 0, 0, 0, 0, 160, 123, 189, 0, 128, 105, 190, 0, 64, 122, 189, 0, 0, 0, 0, 0, 160, 123, 61, 0, 128, 105, 190, 0, 64, 122, 189, 0, 0, 0, 0, 0, 160, 123, 61, 0, 128, 105, 62, 0, 64, 122, 61, 0, 184, 189, 31, 0, 160, 123, 189, 0, 128, 105, 62, 0, 64, 122, 61, 0, 184, 189, 31, 0, 160, 123, 189, 0, 224, 42, 62, 0, 224, 42, 62, 0, 184, 189, 31, 0, 160, 123, 61, 0, 224, 42, 62, 0, 224, 42, 62, 0, 184, 189, 31, 0, 160, 123, 189, 0, 128, 105, 62, 0, 64, 122, 61, 0, 248, 15, 0, 0, 160, 123, 61, 0, 128, 105, 62, 0, 64, 122, 61, 0, 248, 15, 0, 0, 160, 123, 61, 0, 128, 105, 62, 0, 64, 122, 189, 0, 248, 15, 0, 0, 160, 123, 189, 0, 128, 105, 62, 0, 64, 122, 189, 0, 248, 15, 0, 0, 160, 123, 61, 0, 128, 105, 190, 0, 64, 122, 189, 0, 0, 0, 0, 0, 160, 123, 189, 0, 128, 105, 190, 0, 64, 122, 189, 0, 0, 0, 0, 0, 160, 123, 189, 0, 224, 42, 190, 0, 224, 42, 190, 0, 0, 0, 0, 0, 160, 123, 61, 0, 224, 42, 190, 0, 224, 42, 190, 0, 0, 0, 0, 0, 160, 123, 61, 0, 224, 42, 62, 0, 224, 42, 62, 0, 236, 231, 54, 0, 160, 123, 189, 0, 224, 42, 62, 0, 224, 42, 62, 0, 236, 231, 54, 0, 160, 123, 189, 0, 64, 122, 61, 0, 128, 105, 62, 0, 236, 231, 54, 0, 160, 123, 61, 0, 64, 122, 61, 0, 128, 105, 62, 0, 236, 231, 54) +}] -[sub_resource type="ArrayMesh" id=4] +[sub_resource type="ArrayMesh" id="4"] resource_name = "bus.006" -surfaces/0 = { +_surfaces = [{ "aabb": AABB(-0.061457, -0.228035, -0.228035, 0.122924, 0.45608, 0.45607), -"array_data": PackedByteArray(221, 43, 76, 51, 210, 43, 0, 60, 127, 0, 0, 0, 221, 43, 87, 49, 87, 49, 0, 60, 127, 0, 0, 0, 221, 43, 76, 51, 210, 171, 0, 60, 127, 0, 0, 0, 221, 43, 210, 43, 76, 51, 0, 60, 127, 0, 0, 0, 221, 43, 210, 171, 76, 51, 0, 60, 127, 0, 0, 0, 221, 43, 87, 177, 87, 49, 0, 60, 127, 0, 0, 0, 221, 43, 76, 179, 210, 43, 0, 60, 127, 0, 0, 0, 221, 43, 76, 179, 210, 171, 0, 60, 127, 0, 0, 0, 221, 43, 87, 177, 87, 177, 0, 60, 127, 0, 0, 0, 221, 43, 210, 171, 76, 179, 0, 60, 127, 0, 0, 0, 221, 43, 210, 43, 76, 179, 0, 60, 127, 0, 0, 0, 221, 43, 87, 49, 87, 177, 0, 60, 127, 0, 0, 0, 221, 171, 76, 51, 210, 43, 0, 60, 130, 0, 0, 0, 221, 171, 76, 51, 210, 171, 0, 60, 130, 0, 0, 0, 221, 171, 87, 49, 87, 49, 0, 60, 130, 0, 0, 0, 221, 171, 87, 49, 87, 177, 0, 60, 130, 0, 0, 0, 221, 171, 210, 43, 76, 179, 0, 60, 130, 0, 0, 0, 221, 171, 210, 171, 76, 179, 0, 60, 130, 0, 0, 0, 221, 171, 87, 177, 87, 177, 0, 60, 130, 0, 0, 0, 221, 171, 76, 179, 210, 171, 0, 60, 130, 0, 0, 0, 221, 171, 76, 179, 210, 43, 0, 60, 130, 0, 0, 0, 221, 171, 87, 177, 87, 49, 0, 60, 130, 0, 0, 0, 221, 171, 210, 171, 76, 51, 0, 60, 130, 0, 0, 0, 221, 171, 210, 43, 76, 51, 0, 60, 130, 0, 0, 0, 221, 43, 87, 177, 87, 177, 0, 60, 0, 193, 147, 0, 221, 171, 87, 177, 87, 177, 0, 60, 0, 193, 147, 0, 221, 171, 210, 171, 76, 179, 0, 60, 0, 193, 147, 0, 221, 43, 210, 171, 76, 179, 0, 60, 0, 193, 147, 0, 221, 43, 210, 43, 76, 51, 0, 60, 0, 0, 126, 0, 221, 171, 210, 43, 76, 51, 0, 60, 0, 0, 126, 0, 221, 171, 210, 171, 76, 51, 0, 60, 0, 0, 126, 0, 221, 43, 210, 171, 76, 51, 0, 60, 0, 0, 126, 0, 221, 43, 210, 171, 76, 179, 0, 60, 0, 0, 129, 0, 221, 171, 210, 171, 76, 179, 0, 60, 0, 0, 129, 0, 221, 171, 210, 43, 76, 179, 0, 60, 0, 0, 129, 0, 221, 43, 210, 43, 76, 179, 0, 60, 0, 0, 129, 0, 221, 43, 210, 171, 76, 51, 0, 60, 0, 193, 109, 0, 221, 171, 210, 171, 76, 51, 0, 60, 0, 193, 109, 0, 221, 171, 87, 177, 87, 49, 0, 60, 0, 193, 109, 0, 221, 43, 87, 177, 87, 49, 0, 60, 0, 193, 109, 0, 221, 43, 210, 43, 76, 179, 0, 60, 0, 63, 147, 0, 221, 171, 210, 43, 76, 179, 0, 60, 0, 63, 147, 0, 221, 171, 87, 49, 87, 177, 0, 60, 0, 63, 147, 0, 221, 43, 87, 49, 87, 177, 0, 60, 0, 63, 147, 0, 221, 43, 87, 177, 87, 49, 0, 60, 0, 147, 63, 0, 221, 171, 87, 177, 87, 49, 0, 60, 0, 147, 63, 0, 221, 171, 76, 179, 210, 43, 0, 60, 0, 147, 63, 0, 221, 43, 76, 179, 210, 43, 0, 60, 0, 147, 63, 0, 221, 43, 87, 49, 87, 177, 0, 60, 0, 109, 193, 0, 221, 171, 87, 49, 87, 177, 0, 60, 0, 109, 193, 0, 221, 171, 76, 51, 210, 171, 0, 60, 0, 109, 193, 0, 221, 43, 76, 51, 210, 171, 0, 60, 0, 109, 193, 0, 221, 43, 76, 179, 210, 43, 0, 60, 0, 130, 0, 0, 221, 171, 76, 179, 210, 43, 0, 60, 0, 130, 0, 0, 221, 171, 76, 179, 210, 171, 0, 60, 0, 130, 0, 0, 221, 43, 76, 179, 210, 171, 0, 60, 0, 130, 0, 0, 221, 43, 76, 51, 210, 43, 0, 60, 0, 109, 63, 0, 221, 171, 76, 51, 210, 43, 0, 60, 0, 109, 63, 0, 221, 171, 87, 49, 87, 49, 0, 60, 0, 109, 63, 0, 221, 43, 87, 49, 87, 49, 0, 60, 0, 109, 63, 0, 221, 171, 76, 51, 210, 43, 0, 60, 0, 127, 0, 0, 221, 43, 76, 51, 210, 43, 0, 60, 0, 127, 0, 0, 221, 43, 76, 51, 210, 171, 0, 60, 0, 127, 0, 0, 221, 171, 76, 51, 210, 171, 0, 60, 0, 127, 0, 0, 221, 43, 76, 179, 210, 171, 0, 60, 0, 147, 193, 0, 221, 171, 76, 179, 210, 171, 0, 60, 0, 147, 193, 0, 221, 171, 87, 177, 87, 177, 0, 60, 0, 147, 193, 0, 221, 43, 87, 177, 87, 177, 0, 60, 0, 147, 193, 0, 221, 43, 87, 49, 87, 49, 0, 60, 0, 63, 109, 0, 221, 171, 87, 49, 87, 49, 0, 60, 0, 63, 109, 0, 221, 171, 210, 43, 76, 51, 0, 60, 0, 63, 109, 0, 221, 43, 210, 43, 76, 51, 0, 60, 0, 63, 109, 0), -"array_index_data": PackedByteArray(0, 0, 2, 0, 1, 0, 1, 0, 4, 0, 3, 0, 4, 0, 6, 0, 5, 0, 6, 0, 8, 0, 7, 0, 8, 0, 10, 0, 9, 0, 10, 0, 2, 0, 11, 0, 1, 0, 2, 0, 4, 0, 4, 0, 8, 0, 6, 0, 8, 0, 2, 0, 10, 0, 4, 0, 2, 0, 8, 0, 12, 0, 14, 0, 13, 0, 13, 0, 16, 0, 15, 0, 16, 0, 18, 0, 17, 0, 18, 0, 20, 0, 19, 0, 20, 0, 22, 0, 21, 0, 22, 0, 14, 0, 23, 0, 13, 0, 14, 0, 16, 0, 16, 0, 20, 0, 18, 0, 20, 0, 14, 0, 22, 0, 16, 0, 14, 0, 20, 0, 24, 0, 26, 0, 25, 0, 24, 0, 27, 0, 26, 0, 28, 0, 30, 0, 29, 0, 28, 0, 31, 0, 30, 0, 32, 0, 34, 0, 33, 0, 32, 0, 35, 0, 34, 0, 36, 0, 38, 0, 37, 0, 36, 0, 39, 0, 38, 0, 40, 0, 42, 0, 41, 0, 40, 0, 43, 0, 42, 0, 44, 0, 46, 0, 45, 0, 44, 0, 47, 0, 46, 0, 48, 0, 50, 0, 49, 0, 48, 0, 51, 0, 50, 0, 52, 0, 54, 0, 53, 0, 52, 0, 55, 0, 54, 0, 56, 0, 58, 0, 57, 0, 56, 0, 59, 0, 58, 0, 60, 0, 62, 0, 61, 0, 60, 0, 63, 0, 62, 0, 64, 0, 66, 0, 65, 0, 64, 0, 67, 0, 66, 0, 68, 0, 70, 0, 69, 0, 68, 0, 71, 0, 70, 0), -"blend_shape_data": [], -"format": 98051, +"format": 4099, "index_count": 132, -"material": ExtResource( 2 ), +"index_data": PackedByteArray(0, 0, 2, 0, 1, 0, 1, 0, 4, 0, 3, 0, 4, 0, 6, 0, 5, 0, 6, 0, 8, 0, 7, 0, 8, 0, 10, 0, 9, 0, 10, 0, 2, 0, 11, 0, 1, 0, 2, 0, 4, 0, 4, 0, 8, 0, 6, 0, 8, 0, 2, 0, 10, 0, 4, 0, 2, 0, 8, 0, 12, 0, 14, 0, 13, 0, 13, 0, 16, 0, 15, 0, 16, 0, 18, 0, 17, 0, 18, 0, 20, 0, 19, 0, 20, 0, 22, 0, 21, 0, 22, 0, 14, 0, 23, 0, 13, 0, 14, 0, 16, 0, 16, 0, 20, 0, 18, 0, 20, 0, 14, 0, 22, 0, 16, 0, 14, 0, 20, 0, 24, 0, 26, 0, 25, 0, 24, 0, 27, 0, 26, 0, 28, 0, 30, 0, 29, 0, 28, 0, 31, 0, 30, 0, 32, 0, 34, 0, 33, 0, 32, 0, 35, 0, 34, 0, 36, 0, 38, 0, 37, 0, 36, 0, 39, 0, 38, 0, 40, 0, 42, 0, 41, 0, 40, 0, 43, 0, 42, 0, 44, 0, 46, 0, 45, 0, 44, 0, 47, 0, 46, 0, 48, 0, 50, 0, 49, 0, 48, 0, 51, 0, 50, 0, 52, 0, 54, 0, 53, 0, 52, 0, 55, 0, 54, 0, 56, 0, 58, 0, 57, 0, 56, 0, 59, 0, 58, 0, 60, 0, 62, 0, 61, 0, 60, 0, 63, 0, 62, 0, 64, 0, 66, 0, 65, 0, 64, 0, 67, 0, 66, 0, 68, 0, 70, 0, 69, 0, 68, 0, 71, 0, 70, 0), +"material": ExtResource( "2" ), "name": "Material.001", -"primitive": 4, -"skeleton_aabb": [], -"vertex_count": 72 -} +"primitive": 3, +"vertex_count": 72, +"vertex_data": PackedByteArray(0, 160, 123, 61, 0, 128, 105, 62, 0, 64, 122, 61, 254, 3, 0, 0, 0, 160, 123, 61, 0, 224, 42, 62, 0, 224, 42, 62, 254, 3, 0, 0, 0, 160, 123, 61, 0, 128, 105, 62, 0, 64, 122, 189, 254, 3, 0, 0, 0, 160, 123, 61, 0, 64, 122, 61, 0, 128, 105, 62, 254, 3, 0, 0, 0, 160, 123, 61, 0, 64, 122, 189, 0, 128, 105, 62, 254, 3, 0, 0, 0, 160, 123, 61, 0, 224, 42, 190, 0, 224, 42, 62, 254, 3, 0, 0, 0, 160, 123, 61, 0, 128, 105, 190, 0, 64, 122, 61, 254, 3, 0, 0, 0, 160, 123, 61, 0, 128, 105, 190, 0, 64, 122, 189, 254, 3, 0, 0, 0, 160, 123, 61, 0, 224, 42, 190, 0, 224, 42, 190, 254, 3, 0, 0, 0, 160, 123, 61, 0, 64, 122, 189, 0, 128, 105, 190, 254, 3, 0, 0, 0, 160, 123, 61, 0, 64, 122, 61, 0, 128, 105, 190, 254, 3, 0, 0, 0, 160, 123, 61, 0, 224, 42, 62, 0, 224, 42, 190, 254, 3, 0, 0, 0, 160, 123, 189, 0, 128, 105, 62, 0, 64, 122, 61, 0, 0, 0, 0, 0, 160, 123, 189, 0, 128, 105, 62, 0, 64, 122, 189, 0, 0, 0, 0, 0, 160, 123, 189, 0, 224, 42, 62, 0, 224, 42, 62, 0, 0, 0, 0, 0, 160, 123, 189, 0, 224, 42, 62, 0, 224, 42, 190, 0, 0, 0, 0, 0, 160, 123, 189, 0, 64, 122, 61, 0, 128, 105, 190, 0, 0, 0, 0, 0, 160, 123, 189, 0, 64, 122, 189, 0, 128, 105, 190, 0, 0, 0, 0, 0, 160, 123, 189, 0, 224, 42, 190, 0, 224, 42, 190, 0, 0, 0, 0, 0, 160, 123, 189, 0, 128, 105, 190, 0, 64, 122, 189, 0, 0, 0, 0, 0, 160, 123, 189, 0, 128, 105, 190, 0, 64, 122, 61, 0, 0, 0, 0, 0, 160, 123, 189, 0, 224, 42, 190, 0, 224, 42, 62, 0, 0, 0, 0, 0, 160, 123, 189, 0, 64, 122, 189, 0, 128, 105, 62, 0, 0, 0, 0, 0, 160, 123, 189, 0, 64, 122, 61, 0, 128, 105, 62, 0, 0, 0, 0, 0, 160, 123, 61, 0, 224, 42, 190, 0, 224, 42, 190, 0, 0, 0, 0, 0, 160, 123, 189, 0, 224, 42, 190, 0, 224, 42, 190, 0, 0, 0, 0, 0, 160, 123, 189, 0, 64, 122, 189, 0, 128, 105, 190, 0, 0, 0, 0, 0, 160, 123, 61, 0, 64, 122, 189, 0, 128, 105, 190, 0, 0, 0, 0, 0, 160, 123, 61, 0, 64, 122, 61, 0, 128, 105, 62, 0, 0, 96, 63, 0, 160, 123, 189, 0, 64, 122, 61, 0, 128, 105, 62, 0, 0, 96, 63, 0, 160, 123, 189, 0, 64, 122, 189, 0, 128, 105, 62, 0, 0, 96, 63, 0, 160, 123, 61, 0, 64, 122, 189, 0, 128, 105, 62, 0, 0, 96, 63, 0, 160, 123, 61, 0, 64, 122, 189, 0, 128, 105, 190, 0, 0, 0, 0, 0, 160, 123, 189, 0, 64, 122, 189, 0, 128, 105, 190, 0, 0, 0, 0, 0, 160, 123, 189, 0, 64, 122, 61, 0, 128, 105, 190, 0, 0, 0, 0, 0, 160, 123, 61, 0, 64, 122, 61, 0, 128, 105, 190, 0, 0, 0, 0, 0, 160, 123, 61, 0, 64, 122, 189, 0, 128, 105, 62, 0, 0, 224, 54, 0, 160, 123, 189, 0, 64, 122, 189, 0, 128, 105, 62, 0, 0, 224, 54, 0, 160, 123, 189, 0, 224, 42, 190, 0, 224, 42, 62, 0, 0, 224, 54, 0, 160, 123, 61, 0, 224, 42, 190, 0, 224, 42, 62, 0, 0, 224, 54, 0, 160, 123, 61, 0, 64, 122, 61, 0, 128, 105, 190, 0, 236, 7, 0, 0, 160, 123, 189, 0, 64, 122, 61, 0, 128, 105, 190, 0, 236, 7, 0, 0, 160, 123, 189, 0, 224, 42, 62, 0, 224, 42, 190, 0, 236, 7, 0, 0, 160, 123, 61, 0, 224, 42, 62, 0, 224, 42, 190, 0, 236, 7, 0, 0, 160, 123, 61, 0, 224, 42, 190, 0, 224, 42, 62, 0, 0, 176, 31, 0, 160, 123, 189, 0, 224, 42, 190, 0, 224, 42, 62, 0, 0, 176, 31, 0, 160, 123, 189, 0, 128, 105, 190, 0, 64, 122, 61, 0, 0, 176, 31, 0, 160, 123, 61, 0, 128, 105, 190, 0, 64, 122, 61, 0, 0, 176, 31, 0, 160, 123, 61, 0, 224, 42, 62, 0, 224, 42, 190, 0, 184, 13, 0, 0, 160, 123, 189, 0, 224, 42, 62, 0, 224, 42, 190, 0, 184, 13, 0, 0, 160, 123, 189, 0, 128, 105, 62, 0, 64, 122, 189, 0, 184, 13, 0, 0, 160, 123, 61, 0, 128, 105, 62, 0, 64, 122, 189, 0, 184, 13, 0, 0, 160, 123, 61, 0, 128, 105, 190, 0, 64, 122, 61, 0, 0, 0, 0, 0, 160, 123, 189, 0, 128, 105, 190, 0, 64, 122, 61, 0, 0, 0, 0, 0, 160, 123, 189, 0, 128, 105, 190, 0, 64, 122, 189, 0, 0, 0, 0, 0, 160, 123, 61, 0, 128, 105, 190, 0, 64, 122, 189, 0, 0, 0, 0, 0, 160, 123, 61, 0, 128, 105, 62, 0, 64, 122, 61, 0, 184, 189, 31, 0, 160, 123, 189, 0, 128, 105, 62, 0, 64, 122, 61, 0, 184, 189, 31, 0, 160, 123, 189, 0, 224, 42, 62, 0, 224, 42, 62, 0, 184, 189, 31, 0, 160, 123, 61, 0, 224, 42, 62, 0, 224, 42, 62, 0, 184, 189, 31, 0, 160, 123, 189, 0, 128, 105, 62, 0, 64, 122, 61, 0, 248, 15, 0, 0, 160, 123, 61, 0, 128, 105, 62, 0, 64, 122, 61, 0, 248, 15, 0, 0, 160, 123, 61, 0, 128, 105, 62, 0, 64, 122, 189, 0, 248, 15, 0, 0, 160, 123, 189, 0, 128, 105, 62, 0, 64, 122, 189, 0, 248, 15, 0, 0, 160, 123, 61, 0, 128, 105, 190, 0, 64, 122, 189, 0, 0, 0, 0, 0, 160, 123, 189, 0, 128, 105, 190, 0, 64, 122, 189, 0, 0, 0, 0, 0, 160, 123, 189, 0, 224, 42, 190, 0, 224, 42, 190, 0, 0, 0, 0, 0, 160, 123, 61, 0, 224, 42, 190, 0, 224, 42, 190, 0, 0, 0, 0, 0, 160, 123, 61, 0, 224, 42, 62, 0, 224, 42, 62, 0, 236, 231, 54, 0, 160, 123, 189, 0, 224, 42, 62, 0, 224, 42, 62, 0, 236, 231, 54, 0, 160, 123, 189, 0, 64, 122, 61, 0, 128, 105, 62, 0, 236, 231, 54, 0, 160, 123, 61, 0, 64, 122, 61, 0, 128, 105, 62, 0, 236, 231, 54) +}] -[sub_resource type="ArrayMesh" id=5] +[sub_resource type="ArrayMesh" id="5"] resource_name = "bus.002" -surfaces/0 = { +_surfaces = [{ "aabb": AABB(-0.654197, 0.000773793, -1.40378, 1.30839, 1.20137, 2.83751), -"array_data": PackedByteArray(5, 56, 192, 56, 123, 53, 0, 60, 13, 125, 17, 0, 0, 0, 192, 56, 5, 55, 0, 60, 13, 125, 17, 0, 0, 0, 6, 56, 149, 61, 0, 60, 13, 125, 17, 0, 247, 51, 253, 54, 149, 61, 0, 60, 13, 125, 17, 0, 0, 0, 8, 53, 179, 188, 0, 60, 0, 27, 132, 0, 161, 54, 8, 53, 179, 188, 0, 60, 0, 27, 132, 0, 0, 0, 86, 18, 250, 188, 0, 60, 0, 27, 132, 0, 5, 56, 8, 53, 179, 188, 0, 60, 0, 27, 132, 0, 5, 56, 86, 18, 250, 188, 0, 60, 0, 27, 132, 0, 0, 0, 86, 18, 20, 181, 0, 60, 0, 130, 0, 0, 0, 0, 86, 18, 250, 188, 0, 60, 0, 130, 0, 0, 5, 56, 86, 18, 20, 181, 0, 60, 0, 130, 0, 0, 5, 56, 86, 18, 250, 188, 0, 60, 0, 130, 0, 0, 5, 56, 86, 18, 81, 188, 0, 60, 0, 130, 0, 0, 5, 56, 86, 18, 81, 188, 0, 60, 0, 0, 0, 0, 5, 56, 86, 18, 224, 183, 0, 60, 0, 0, 0, 0, 5, 56, 86, 18, 20, 181, 0, 60, 0, 0, 0, 0, 5, 56, 47, 60, 21, 50, 0, 60, 5, 126, 0, 0, 5, 56, 47, 60, 20, 181, 0, 60, 5, 126, 0, 0, 0, 0, 67, 60, 20, 181, 0, 60, 5, 126, 0, 0, 0, 0, 67, 60, 148, 52, 0, 60, 5, 126, 0, 0, 0, 0, 86, 18, 123, 53, 0, 60, 0, 130, 0, 0, 5, 56, 86, 18, 123, 53, 0, 60, 0, 130, 0, 0, 247, 51, 86, 18, 188, 61, 0, 60, 0, 130, 0, 0, 0, 0, 86, 18, 188, 61, 0, 60, 0, 130, 0, 0, 5, 56, 192, 56, 123, 53, 0, 60, 123, 5, 30, 0, 247, 51, 253, 54, 149, 61, 0, 60, 123, 5, 30, 0, 175, 52, 242, 52, 255, 60, 0, 60, 123, 5, 30, 0, 209, 53, 242, 52, 158, 59, 0, 60, 123, 5, 30, 0, 5, 56, 86, 18, 123, 53, 0, 60, 123, 0, 28, 0, 5, 56, 192, 56, 123, 53, 0, 60, 123, 0, 28, 0, 209, 53, 242, 52, 158, 59, 0, 60, 123, 0, 28, 0, 247, 51, 253, 54, 149, 61, 0, 60, 122, 2, 33, 0, 247, 51, 86, 18, 188, 61, 0, 60, 122, 2, 33, 0, 175, 52, 242, 52, 255, 60, 0, 60, 122, 2, 33, 0, 5, 56, 86, 18, 250, 188, 0, 60, 127, 0, 0, 0, 5, 56, 8, 53, 179, 188, 0, 60, 127, 0, 0, 0, 5, 56, 10, 53, 161, 187, 0, 60, 127, 0, 0, 0, 5, 56, 86, 18, 81, 188, 0, 60, 127, 0, 0, 0, 161, 182, 10, 53, 161, 187, 0, 60, 127, 0, 0, 0, 161, 182, 8, 53, 179, 188, 0, 60, 127, 0, 0, 0, 161, 182, 121, 60, 157, 189, 0, 60, 127, 0, 0, 0, 161, 182, 122, 60, 45, 189, 0, 60, 127, 0, 0, 0, 5, 56, 192, 56, 20, 181, 0, 60, 127, 0, 0, 0, 5, 56, 192, 56, 123, 53, 0, 60, 127, 0, 0, 0, 5, 56, 5, 53, 20, 181, 0, 60, 127, 0, 0, 0, 5, 56, 86, 18, 123, 53, 0, 60, 127, 0, 0, 0, 5, 56, 86, 18, 20, 181, 0, 60, 127, 0, 0, 0, 5, 56, 10, 53, 242, 184, 0, 60, 12, 52, 115, 0, 5, 56, 86, 18, 224, 183, 0, 60, 12, 52, 115, 0, 59, 57, 86, 18, 224, 183, 0, 60, 12, 52, 115, 0, 59, 57, 123, 52, 20, 185, 0, 60, 12, 52, 115, 0, 5, 56, 86, 18, 123, 53, 0, 60, 10, 114, 204, 0, 209, 53, 242, 52, 158, 59, 0, 60, 10, 114, 204, 0, 59, 57, 99, 52, 188, 59, 0, 60, 10, 114, 204, 0, 59, 57, 86, 18, 123, 53, 0, 60, 10, 114, 204, 0, 0, 0, 8, 53, 179, 188, 0, 60, 0, 127, 0, 0, 161, 182, 8, 53, 179, 188, 0, 60, 0, 127, 0, 0, 161, 182, 10, 53, 161, 187, 0, 60, 0, 127, 0, 0, 0, 0, 10, 53, 161, 187, 0, 60, 0, 127, 0, 0, 5, 56, 86, 18, 81, 188, 0, 60, 12, 52, 141, 0, 5, 56, 10, 53, 161, 187, 0, 60, 12, 52, 141, 0, 59, 57, 123, 52, 127, 187, 0, 60, 12, 52, 141, 0, 59, 57, 86, 18, 81, 188, 0, 60, 12, 52, 141, 0, 209, 53, 242, 52, 158, 59, 0, 60, 13, 126, 1, 0, 175, 52, 242, 52, 255, 60, 0, 60, 13, 126, 1, 0, 59, 57, 99, 52, 240, 60, 0, 60, 13, 126, 1, 0, 59, 57, 99, 52, 188, 59, 0, 60, 13, 126, 1, 0, 5, 56, 86, 18, 20, 181, 0, 60, 0, 127, 0, 0, 5, 56, 86, 18, 123, 53, 0, 60, 0, 127, 0, 0, 59, 57, 86, 18, 123, 53, 0, 60, 0, 127, 0, 0, 59, 57, 86, 18, 20, 181, 0, 60, 0, 127, 0, 0, 5, 56, 10, 53, 161, 187, 0, 60, 28, 123, 0, 0, 5, 56, 10, 53, 242, 184, 0, 60, 28, 123, 0, 0, 59, 57, 123, 52, 20, 185, 0, 60, 28, 123, 0, 0, 59, 57, 123, 52, 127, 187, 0, 60, 28, 123, 0, 0, 5, 56, 86, 18, 224, 183, 0, 60, 0, 127, 0, 0, 59, 57, 86, 18, 224, 183, 0, 60, 0, 127, 0, 0, 175, 52, 242, 52, 255, 60, 0, 60, 10, 63, 109, 0, 247, 51, 86, 18, 188, 61, 0, 60, 10, 63, 109, 0, 172, 54, 79, 47, 103, 61, 0, 60, 10, 63, 109, 0, 233, 54, 9, 50, 58, 61, 0, 60, 10, 63, 109, 0, 59, 57, 99, 52, 240, 60, 0, 60, 10, 63, 109, 0, 175, 52, 242, 52, 255, 60, 0, 60, 10, 63, 109, 0, 233, 54, 9, 50, 58, 61, 0, 60, 10, 63, 109, 0, 40, 56, 222, 49, 52, 61, 0, 60, 10, 63, 109, 0, 247, 51, 86, 18, 188, 61, 0, 60, 0, 74, 102, 0, 59, 57, 86, 18, 188, 61, 0, 60, 0, 74, 102, 0, 38, 56, 28, 47, 105, 61, 0, 60, 0, 74, 102, 0, 172, 54, 79, 47, 103, 61, 0, 60, 0, 74, 102, 0, 59, 57, 99, 52, 240, 60, 0, 60, 0, 74, 102, 0, 40, 56, 222, 49, 52, 61, 0, 60, 0, 74, 102, 0, 38, 56, 28, 47, 105, 61, 0, 60, 127, 255, 0, 0, 40, 56, 222, 49, 52, 61, 0, 60, 127, 255, 0, 0, 40, 56, 195, 49, 94, 61, 0, 60, 127, 255, 0, 0, 38, 56, 89, 47, 116, 61, 0, 60, 127, 255, 0, 0, 233, 54, 9, 50, 58, 61, 0, 60, 132, 26, 0, 0, 172, 54, 79, 47, 103, 61, 0, 60, 132, 26, 0, 0, 172, 54, 135, 47, 114, 61, 0, 60, 132, 26, 0, 0, 233, 54, 233, 49, 92, 61, 0, 60, 132, 26, 0, 0, 40, 56, 222, 49, 52, 61, 0, 60, 7, 126, 11, 0, 233, 54, 9, 50, 58, 61, 0, 60, 7, 126, 11, 0, 233, 54, 233, 49, 92, 61, 0, 60, 7, 126, 11, 0, 40, 56, 195, 49, 94, 61, 0, 60, 7, 126, 11, 0, 172, 54, 79, 47, 103, 61, 0, 60, 252, 137, 41, 0, 38, 56, 28, 47, 105, 61, 0, 60, 252, 137, 41, 0, 38, 56, 89, 47, 116, 61, 0, 60, 252, 137, 41, 0, 172, 54, 135, 47, 114, 61, 0, 60, 252, 137, 41, 0, 5, 184, 192, 56, 123, 53, 0, 60, 243, 125, 17, 0, 247, 179, 253, 54, 149, 61, 0, 60, 243, 125, 17, 0, 0, 0, 6, 56, 149, 61, 0, 60, 243, 125, 17, 0, 0, 0, 192, 56, 5, 55, 0, 60, 243, 125, 17, 0, 161, 182, 8, 53, 179, 188, 0, 60, 0, 27, 132, 0, 5, 184, 86, 18, 250, 188, 0, 60, 0, 27, 132, 0, 5, 184, 8, 53, 179, 188, 0, 60, 0, 27, 132, 0, 5, 184, 86, 18, 20, 181, 0, 60, 0, 130, 0, 0, 5, 184, 86, 18, 224, 183, 0, 60, 0, 0, 0, 0, 5, 184, 86, 18, 81, 188, 0, 60, 0, 0, 0, 0, 5, 184, 86, 18, 250, 188, 0, 60, 0, 0, 0, 0, 5, 184, 86, 18, 250, 188, 0, 60, 0, 130, 0, 0, 5, 184, 86, 18, 20, 181, 0, 60, 0, 0, 0, 0, 5, 184, 47, 60, 21, 50, 0, 60, 252, 126, 0, 0, 0, 0, 67, 60, 148, 52, 0, 60, 252, 126, 0, 0, 0, 0, 67, 60, 20, 181, 0, 60, 252, 126, 0, 0, 5, 184, 47, 60, 20, 181, 0, 60, 252, 126, 0, 0, 247, 179, 86, 18, 188, 61, 0, 60, 0, 130, 0, 0, 5, 184, 86, 18, 123, 53, 0, 60, 0, 130, 0, 0, 5, 184, 192, 56, 123, 53, 0, 60, 133, 5, 30, 0, 209, 181, 242, 52, 158, 59, 0, 60, 133, 5, 30, 0, 175, 180, 242, 52, 255, 60, 0, 60, 133, 5, 30, 0, 247, 179, 253, 54, 149, 61, 0, 60, 133, 5, 30, 0, 5, 184, 86, 18, 123, 53, 0, 60, 133, 0, 28, 0, 209, 181, 242, 52, 158, 59, 0, 60, 133, 0, 28, 0, 5, 184, 192, 56, 123, 53, 0, 60, 133, 0, 28, 0, 247, 179, 253, 54, 149, 61, 0, 60, 134, 2, 33, 0, 175, 180, 242, 52, 255, 60, 0, 60, 134, 2, 33, 0, 247, 179, 86, 18, 188, 61, 0, 60, 134, 2, 33, 0, 5, 184, 86, 18, 250, 188, 0, 60, 130, 0, 0, 0, 5, 184, 86, 18, 81, 188, 0, 60, 130, 0, 0, 0, 5, 184, 10, 53, 161, 187, 0, 60, 130, 0, 0, 0, 5, 184, 8, 53, 179, 188, 0, 60, 130, 0, 0, 0, 5, 184, 5, 53, 20, 181, 0, 60, 130, 0, 0, 0, 5, 184, 10, 53, 242, 184, 0, 60, 130, 0, 0, 0, 5, 184, 86, 18, 224, 183, 0, 60, 130, 0, 0, 0, 5, 184, 86, 18, 20, 181, 0, 60, 130, 0, 0, 0, 5, 184, 192, 56, 20, 181, 0, 60, 130, 0, 0, 0, 5, 184, 192, 56, 123, 53, 0, 60, 130, 0, 0, 0, 5, 184, 86, 18, 123, 53, 0, 60, 130, 0, 0, 0, 5, 184, 10, 53, 242, 184, 0, 60, 244, 52, 115, 0, 59, 185, 123, 52, 20, 185, 0, 60, 244, 52, 115, 0, 59, 185, 86, 18, 224, 183, 0, 60, 244, 52, 115, 0, 5, 184, 86, 18, 224, 183, 0, 60, 244, 52, 115, 0, 5, 184, 86, 18, 123, 53, 0, 60, 246, 114, 204, 0, 59, 185, 86, 18, 123, 53, 0, 60, 246, 114, 204, 0, 59, 185, 99, 52, 188, 59, 0, 60, 246, 114, 204, 0, 209, 181, 242, 52, 158, 59, 0, 60, 246, 114, 204, 0, 5, 56, 86, 18, 224, 183, 0, 60, 127, 0, 0, 0, 5, 56, 10, 53, 242, 184, 0, 60, 127, 0, 0, 0, 5, 184, 86, 18, 81, 188, 0, 60, 244, 52, 141, 0, 59, 185, 86, 18, 81, 188, 0, 60, 244, 52, 141, 0, 59, 185, 123, 52, 127, 187, 0, 60, 244, 52, 141, 0, 5, 184, 10, 53, 161, 187, 0, 60, 244, 52, 141, 0, 209, 181, 242, 52, 158, 59, 0, 60, 243, 126, 1, 0, 59, 185, 99, 52, 188, 59, 0, 60, 243, 126, 1, 0, 59, 185, 99, 52, 240, 60, 0, 60, 243, 126, 1, 0, 175, 180, 242, 52, 255, 60, 0, 60, 243, 126, 1, 0, 5, 184, 86, 18, 20, 181, 0, 60, 0, 127, 0, 0, 59, 185, 86, 18, 20, 181, 0, 60, 0, 127, 0, 0, 59, 185, 86, 18, 123, 53, 0, 60, 0, 127, 0, 0, 5, 184, 86, 18, 123, 53, 0, 60, 0, 127, 0, 0, 5, 184, 10, 53, 161, 187, 0, 60, 228, 123, 0, 0, 59, 185, 123, 52, 127, 187, 0, 60, 228, 123, 0, 0, 59, 185, 123, 52, 20, 185, 0, 60, 228, 123, 0, 0, 5, 184, 10, 53, 242, 184, 0, 60, 228, 123, 0, 0, 5, 184, 86, 18, 224, 183, 0, 60, 0, 127, 0, 0, 59, 185, 86, 18, 224, 183, 0, 60, 0, 127, 0, 0, 175, 180, 242, 52, 255, 60, 0, 60, 246, 63, 109, 0, 233, 182, 9, 50, 58, 61, 0, 60, 246, 63, 109, 0, 172, 182, 79, 47, 103, 61, 0, 60, 246, 63, 109, 0, 247, 179, 86, 18, 188, 61, 0, 60, 246, 63, 109, 0, 59, 185, 99, 52, 240, 60, 0, 60, 246, 63, 109, 0, 40, 184, 222, 49, 52, 61, 0, 60, 246, 63, 109, 0, 233, 182, 9, 50, 58, 61, 0, 60, 246, 63, 109, 0, 175, 180, 242, 52, 255, 60, 0, 60, 246, 63, 109, 0, 247, 179, 86, 18, 188, 61, 0, 60, 0, 74, 102, 0, 172, 182, 79, 47, 103, 61, 0, 60, 0, 74, 102, 0, 38, 184, 28, 47, 105, 61, 0, 60, 0, 74, 102, 0, 59, 185, 86, 18, 188, 61, 0, 60, 0, 74, 102, 0, 40, 184, 222, 49, 52, 61, 0, 60, 0, 74, 102, 0, 59, 185, 99, 52, 240, 60, 0, 60, 0, 74, 102, 0, 38, 184, 28, 47, 105, 61, 0, 60, 130, 255, 0, 0, 38, 184, 89, 47, 116, 61, 0, 60, 130, 255, 0, 0, 40, 184, 195, 49, 94, 61, 0, 60, 130, 255, 0, 0, 40, 184, 222, 49, 52, 61, 0, 60, 130, 255, 0, 0, 233, 182, 9, 50, 58, 61, 0, 60, 124, 26, 0, 0, 233, 182, 233, 49, 92, 61, 0, 60, 124, 26, 0, 0, 172, 182, 135, 47, 114, 61, 0, 60, 124, 26, 0, 0, 172, 182, 79, 47, 103, 61, 0, 60, 124, 26, 0, 0, 40, 184, 222, 49, 52, 61, 0, 60, 249, 126, 11, 0, 40, 184, 195, 49, 94, 61, 0, 60, 249, 126, 11, 0, 233, 182, 233, 49, 92, 61, 0, 60, 249, 126, 11, 0, 233, 182, 9, 50, 58, 61, 0, 60, 249, 126, 11, 0, 172, 182, 79, 47, 103, 61, 0, 60, 4, 137, 41, 0, 172, 182, 135, 47, 114, 61, 0, 60, 4, 137, 41, 0, 38, 184, 89, 47, 116, 61, 0, 60, 4, 137, 41, 0, 38, 184, 28, 47, 105, 61, 0, 60, 4, 137, 41, 0, 5, 56, 47, 60, 20, 181, 0, 60, 0, 0, 129, 0, 5, 56, 192, 56, 20, 181, 0, 60, 0, 0, 129, 0, 5, 184, 192, 56, 20, 181, 0, 60, 0, 0, 129, 0, 5, 184, 47, 60, 20, 181, 0, 60, 0, 0, 129, 0, 161, 54, 10, 53, 161, 187, 0, 60, 0, 127, 0, 0, 161, 54, 8, 53, 179, 188, 0, 60, 0, 127, 0, 0, 5, 184, 10, 53, 242, 184, 0, 60, 0, 127, 0, 0, 5, 56, 10, 53, 242, 184, 0, 60, 0, 127, 0, 0, 5, 184, 10, 53, 161, 187, 0, 60, 0, 127, 0, 0, 5, 56, 10, 53, 161, 187, 0, 60, 0, 127, 0, 0, 161, 54, 10, 53, 161, 187, 0, 60, 0, 127, 0, 0, 161, 54, 10, 53, 161, 187, 0, 60, 0, 0, 0, 0, 0, 0, 10, 53, 161, 187, 0, 60, 0, 0, 0, 0, 161, 182, 10, 53, 161, 187, 0, 60, 0, 0, 0, 0, 161, 182, 10, 53, 161, 187, 0, 60, 0, 127, 0, 0, 5, 184, 5, 53, 20, 181, 0, 60, 0, 127, 0, 0, 5, 56, 5, 53, 20, 181, 0, 60, 0, 127, 0, 0, 5, 56, 10, 53, 242, 184, 0, 60, 0, 127, 0, 0, 5, 184, 10, 53, 242, 184, 0, 60, 0, 127, 0, 0, 5, 56, 5, 53, 20, 181, 0, 60, 0, 0, 129, 0, 5, 184, 5, 53, 20, 181, 0, 60, 0, 0, 129, 0, 161, 54, 8, 53, 179, 188, 0, 60, 130, 0, 0, 0, 161, 54, 10, 53, 161, 187, 0, 60, 130, 0, 0, 0, 161, 54, 122, 60, 45, 189, 0, 60, 130, 0, 0, 0, 161, 54, 121, 60, 157, 189, 0, 60, 130, 0, 0, 0, 161, 182, 8, 53, 179, 188, 0, 60, 0, 222, 134, 0, 5, 184, 8, 53, 179, 188, 0, 60, 0, 222, 134, 0, 5, 184, 121, 60, 157, 189, 0, 60, 0, 222, 134, 0, 161, 182, 121, 60, 157, 189, 0, 60, 0, 222, 134, 0, 5, 56, 8, 53, 179, 188, 0, 60, 0, 222, 134, 0, 161, 54, 8, 53, 179, 188, 0, 60, 0, 222, 134, 0, 161, 54, 121, 60, 157, 189, 0, 60, 0, 222, 134, 0, 5, 56, 121, 60, 157, 189, 0, 60, 0, 222, 134, 0, 161, 54, 10, 53, 161, 187, 0, 60, 0, 49, 116, 0, 5, 56, 10, 53, 161, 187, 0, 60, 0, 49, 116, 0, 5, 56, 122, 60, 45, 189, 0, 60, 0, 49, 116, 0, 161, 54, 122, 60, 45, 189, 0, 60, 0, 49, 116, 0, 5, 184, 122, 60, 45, 189, 0, 60, 130, 0, 0, 0, 5, 184, 121, 60, 157, 189, 0, 60, 130, 0, 0, 0, 5, 184, 10, 53, 161, 187, 0, 60, 0, 49, 116, 0, 161, 182, 10, 53, 161, 187, 0, 60, 0, 49, 116, 0, 161, 182, 122, 60, 45, 189, 0, 60, 0, 49, 116, 0, 5, 184, 122, 60, 45, 189, 0, 60, 0, 49, 116, 0, 5, 56, 121, 60, 157, 189, 0, 60, 127, 0, 0, 0, 5, 56, 122, 60, 45, 189, 0, 60, 127, 0, 0, 0, 5, 184, 206, 60, 45, 189, 0, 60, 0, 127, 0, 0, 161, 182, 206, 60, 45, 189, 0, 60, 0, 127, 0, 0, 161, 182, 206, 60, 157, 189, 0, 60, 0, 127, 0, 0, 5, 184, 206, 60, 157, 189, 0, 60, 0, 127, 0, 0, 161, 54, 206, 60, 157, 189, 0, 60, 0, 127, 0, 0, 161, 54, 206, 60, 45, 189, 0, 60, 0, 127, 0, 0, 161, 182, 121, 60, 157, 189, 0, 60, 0, 0, 129, 0, 5, 184, 121, 60, 157, 189, 0, 60, 0, 0, 129, 0, 5, 184, 206, 60, 157, 189, 0, 60, 0, 0, 129, 0, 161, 182, 206, 60, 157, 189, 0, 60, 0, 0, 129, 0, 5, 56, 121, 60, 157, 189, 0, 60, 0, 0, 129, 0, 161, 54, 121, 60, 157, 189, 0, 60, 0, 0, 129, 0, 161, 54, 206, 60, 157, 189, 0, 60, 0, 0, 129, 0, 5, 56, 206, 60, 157, 189, 0, 60, 0, 0, 129, 0, 161, 54, 122, 60, 45, 189, 0, 60, 0, 0, 126, 0, 5, 56, 122, 60, 45, 189, 0, 60, 0, 0, 126, 0, 5, 56, 206, 60, 45, 189, 0, 60, 0, 0, 126, 0, 161, 54, 206, 60, 45, 189, 0, 60, 0, 0, 126, 0, 5, 184, 206, 60, 45, 189, 0, 60, 130, 0, 0, 0, 5, 184, 206, 60, 157, 189, 0, 60, 130, 0, 0, 0, 5, 184, 122, 60, 45, 189, 0, 60, 0, 0, 126, 0, 161, 182, 122, 60, 45, 189, 0, 60, 0, 0, 126, 0, 161, 182, 206, 60, 45, 189, 0, 60, 0, 0, 126, 0, 5, 184, 206, 60, 45, 189, 0, 60, 0, 0, 126, 0, 5, 56, 206, 60, 157, 189, 0, 60, 127, 0, 0, 0, 5, 56, 206, 60, 45, 189, 0, 60, 127, 0, 0, 0, 5, 56, 206, 60, 157, 189, 0, 60, 0, 127, 0, 0, 5, 56, 206, 60, 45, 189, 0, 60, 0, 127, 0, 0, 71, 169, 121, 60, 157, 189, 0, 60, 0, 0, 129, 0, 161, 54, 121, 60, 157, 189, 0, 60, 0, 0, 0, 0, 71, 41, 121, 60, 157, 189, 0, 60, 0, 0, 0, 0, 0, 0, 121, 60, 157, 189, 0, 60, 0, 0, 0, 0, 0, 0, 121, 60, 157, 189, 0, 60, 0, 0, 129, 0, 71, 169, 122, 60, 45, 189, 0, 60, 0, 0, 0, 0, 0, 0, 122, 60, 45, 189, 0, 60, 0, 0, 0, 0, 71, 41, 122, 60, 45, 189, 0, 60, 0, 0, 0, 0, 71, 41, 122, 60, 45, 189, 0, 60, 0, 0, 126, 0, 71, 169, 122, 60, 45, 189, 0, 60, 0, 0, 126, 0, 161, 54, 122, 60, 45, 189, 0, 60, 0, 130, 0, 0, 71, 41, 122, 60, 45, 189, 0, 60, 0, 130, 0, 0, 71, 41, 121, 60, 157, 189, 0, 60, 0, 130, 0, 0, 161, 54, 121, 60, 157, 189, 0, 60, 0, 130, 0, 0, 71, 169, 121, 60, 157, 189, 0, 60, 0, 130, 0, 0, 71, 169, 122, 60, 45, 189, 0, 60, 0, 130, 0, 0, 161, 182, 122, 60, 45, 189, 0, 60, 0, 130, 0, 0, 161, 182, 121, 60, 157, 189, 0, 60, 0, 130, 0, 0, 71, 41, 121, 60, 157, 189, 0, 60, 127, 0, 0, 0, 71, 41, 122, 60, 45, 189, 0, 60, 127, 0, 0, 0, 71, 41, 47, 60, 45, 189, 0, 60, 127, 0, 0, 0, 71, 41, 46, 60, 157, 189, 0, 60, 127, 0, 0, 0, 0, 0, 122, 60, 45, 189, 0, 60, 0, 0, 126, 0, 0, 0, 47, 60, 45, 189, 0, 60, 0, 0, 126, 0, 71, 41, 47, 60, 45, 189, 0, 60, 0, 0, 126, 0, 71, 41, 121, 60, 157, 189, 0, 60, 0, 0, 129, 0, 71, 41, 46, 60, 157, 189, 0, 60, 0, 0, 129, 0, 0, 0, 46, 60, 157, 189, 0, 60, 0, 0, 129, 0, 71, 169, 122, 60, 45, 189, 0, 60, 130, 0, 0, 0, 71, 169, 121, 60, 157, 189, 0, 60, 130, 0, 0, 0, 71, 169, 46, 60, 157, 189, 0, 60, 130, 0, 0, 0, 71, 169, 47, 60, 45, 189, 0, 60, 130, 0, 0, 0, 71, 169, 46, 60, 157, 189, 0, 60, 0, 0, 129, 0, 71, 169, 47, 60, 45, 189, 0, 60, 0, 0, 126, 0, 71, 169, 47, 60, 45, 189, 0, 60, 0, 130, 0, 0, 71, 169, 46, 60, 157, 189, 0, 60, 0, 130, 0, 0, 0, 0, 47, 60, 45, 189, 0, 60, 0, 130, 0, 0, 71, 169, 46, 60, 157, 189, 0, 60, 0, 0, 0, 0, 0, 0, 46, 60, 157, 189, 0, 60, 0, 0, 0, 0, 71, 41, 46, 60, 157, 189, 0, 60, 0, 0, 0, 0, 71, 41, 46, 60, 157, 189, 0, 60, 0, 130, 0, 0, 71, 41, 47, 60, 45, 189, 0, 60, 0, 130, 0, 0), -"array_index_data": PackedByteArray(0, 0, 2, 0, 1, 0, 0, 0, 3, 0, 2, 0, 4, 0, 6, 0, 5, 0, 5, 0, 8, 0, 7, 0, 5, 0, 6, 0, 8, 0, 9, 0, 11, 0, 10, 0, 10, 0, 13, 0, 12, 0, 14, 0, 16, 0, 15, 0, 10, 0, 11, 0, 13, 0, 17, 0, 19, 0, 18, 0, 17, 0, 20, 0, 19, 0, 21, 0, 23, 0, 22, 0, 21, 0, 24, 0, 23, 0, 25, 0, 27, 0, 26, 0, 25, 0, 28, 0, 27, 0, 29, 0, 31, 0, 30, 0, 32, 0, 34, 0, 33, 0, 35, 0, 37, 0, 36, 0, 35, 0, 38, 0, 37, 0, 39, 0, 41, 0, 40, 0, 39, 0, 42, 0, 41, 0, 43, 0, 45, 0, 44, 0, 44, 0, 47, 0, 46, 0, 44, 0, 45, 0, 47, 0, 21, 0, 11, 0, 9, 0, 21, 0, 22, 0, 11, 0, 48, 0, 50, 0, 49, 0, 48, 0, 51, 0, 50, 0, 52, 0, 54, 0, 53, 0, 52, 0, 55, 0, 54, 0, 56, 0, 58, 0, 57, 0, 56, 0, 59, 0, 58, 0, 60, 0, 62, 0, 61, 0, 60, 0, 63, 0, 62, 0, 64, 0, 66, 0, 65, 0, 64, 0, 67, 0, 66, 0, 68, 0, 70, 0, 69, 0, 68, 0, 71, 0, 70, 0, 72, 0, 74, 0, 73, 0, 72, 0, 75, 0, 74, 0, 76, 0, 71, 0, 68, 0, 76, 0, 77, 0, 71, 0, 78, 0, 80, 0, 79, 0, 78, 0, 81, 0, 80, 0, 82, 0, 84, 0, 83, 0, 82, 0, 85, 0, 84, 0, 86, 0, 88, 0, 87, 0, 86, 0, 89, 0, 88, 0, 87, 0, 91, 0, 90, 0, 87, 0, 88, 0, 91, 0, 92, 0, 94, 0, 93, 0, 92, 0, 95, 0, 94, 0, 96, 0, 98, 0, 97, 0, 96, 0, 99, 0, 98, 0, 100, 0, 102, 0, 101, 0, 100, 0, 103, 0, 102, 0, 104, 0, 106, 0, 105, 0, 104, 0, 107, 0, 106, 0, 108, 0, 110, 0, 109, 0, 108, 0, 111, 0, 110, 0, 4, 0, 112, 0, 6, 0, 6, 0, 114, 0, 113, 0, 6, 0, 112, 0, 114, 0, 9, 0, 10, 0, 115, 0, 116, 0, 118, 0, 117, 0, 115, 0, 10, 0, 119, 0, 120, 0, 118, 0, 116, 0, 121, 0, 123, 0, 122, 0, 121, 0, 124, 0, 123, 0, 21, 0, 125, 0, 24, 0, 21, 0, 126, 0, 125, 0, 127, 0, 129, 0, 128, 0, 127, 0, 130, 0, 129, 0, 131, 0, 133, 0, 132, 0, 134, 0, 136, 0, 135, 0, 137, 0, 139, 0, 138, 0, 137, 0, 140, 0, 139, 0, 141, 0, 143, 0, 142, 0, 141, 0, 144, 0, 143, 0, 145, 0, 146, 0, 141, 0, 141, 0, 147, 0, 144, 0, 141, 0, 146, 0, 147, 0, 21, 0, 115, 0, 126, 0, 21, 0, 9, 0, 115, 0, 148, 0, 150, 0, 149, 0, 148, 0, 151, 0, 150, 0, 152, 0, 154, 0, 153, 0, 152, 0, 155, 0, 154, 0, 47, 0, 157, 0, 156, 0, 47, 0, 45, 0, 157, 0, 158, 0, 160, 0, 159, 0, 158, 0, 161, 0, 160, 0, 162, 0, 164, 0, 163, 0, 162, 0, 165, 0, 164, 0, 166, 0, 168, 0, 167, 0, 166, 0, 169, 0, 168, 0, 170, 0, 172, 0, 171, 0, 170, 0, 173, 0, 172, 0, 174, 0, 167, 0, 175, 0, 174, 0, 166, 0, 167, 0, 176, 0, 178, 0, 177, 0, 176, 0, 179, 0, 178, 0, 180, 0, 182, 0, 181, 0, 180, 0, 183, 0, 182, 0, 184, 0, 186, 0, 185, 0, 184, 0, 187, 0, 186, 0, 187, 0, 188, 0, 186, 0, 187, 0, 189, 0, 188, 0, 190, 0, 192, 0, 191, 0, 190, 0, 193, 0, 192, 0, 194, 0, 196, 0, 195, 0, 194, 0, 197, 0, 196, 0, 198, 0, 200, 0, 199, 0, 198, 0, 201, 0, 200, 0, 202, 0, 204, 0, 203, 0, 202, 0, 205, 0, 204, 0, 206, 0, 208, 0, 207, 0, 206, 0, 209, 0, 208, 0, 59, 0, 211, 0, 210, 0, 59, 0, 56, 0, 211, 0, 212, 0, 214, 0, 213, 0, 213, 0, 216, 0, 215, 0, 217, 0, 219, 0, 218, 0, 213, 0, 214, 0, 220, 0, 213, 0, 220, 0, 216, 0, 221, 0, 223, 0, 222, 0, 221, 0, 224, 0, 223, 0, 207, 0, 226, 0, 225, 0, 207, 0, 208, 0, 226, 0, 227, 0, 229, 0, 228, 0, 227, 0, 230, 0, 229, 0, 231, 0, 233, 0, 232, 0, 231, 0, 234, 0, 233, 0, 235, 0, 237, 0, 236, 0, 235, 0, 238, 0, 237, 0, 239, 0, 241, 0, 240, 0, 239, 0, 242, 0, 241, 0, 140, 0, 243, 0, 139, 0, 140, 0, 244, 0, 243, 0, 245, 0, 247, 0, 246, 0, 245, 0, 248, 0, 247, 0, 37, 0, 249, 0, 36, 0, 37, 0, 250, 0, 249, 0, 251, 0, 253, 0, 252, 0, 251, 0, 254, 0, 253, 0, 255, 0, 252, 0, 253, 0, 255, 0, 0, 1, 252, 0, 1, 1, 3, 1, 2, 1, 1, 1, 4, 1, 3, 1, 5, 1, 7, 1, 6, 1, 5, 1, 8, 1, 7, 1, 9, 1, 11, 1, 10, 1, 9, 1, 12, 1, 11, 1, 244, 0, 13, 1, 243, 0, 244, 0, 14, 1, 13, 1, 15, 1, 17, 1, 16, 1, 15, 1, 18, 1, 17, 1, 250, 0, 19, 1, 249, 0, 250, 0, 20, 1, 19, 1, 21, 1, 0, 1, 255, 0, 21, 1, 22, 1, 0, 1, 1, 1, 23, 1, 4, 1, 4, 1, 6, 1, 7, 1, 24, 1, 26, 1, 25, 1, 4, 1, 23, 1, 27, 1, 4, 1, 27, 1, 6, 1, 17, 1, 12, 1, 16, 1, 28, 1, 30, 1, 29, 1, 31, 1, 12, 1, 9, 1, 16, 1, 12, 1, 32, 1, 32, 1, 12, 1, 31, 1, 33, 1, 35, 1, 34, 1, 33, 1, 36, 1, 35, 1, 37, 1, 39, 1, 38, 1, 37, 1, 40, 1, 39, 1, 41, 1, 43, 1, 42, 1, 41, 1, 44, 1, 43, 1, 31, 1, 46, 1, 45, 1, 31, 1, 47, 1, 46, 1, 27, 1, 49, 1, 48, 1, 27, 1, 50, 1, 49, 1, 51, 1, 53, 1, 52, 1, 51, 1, 54, 1, 53, 1, 23, 1, 50, 1, 27, 1, 23, 1, 55, 1, 50, 1, 45, 1, 56, 1, 32, 1, 45, 1, 46, 1, 56, 1, 57, 1, 59, 1, 58, 1, 60, 1, 62, 1, 61, 1, 63, 1, 59, 1, 64, 1, 58, 1, 59, 1, 63, 1), -"blend_shape_data": [], -"format": 98051, +"format": 4099, "index_count": 573, -"material": ExtResource( 2 ), +"index_data": PackedByteArray(0, 0, 2, 0, 1, 0, 0, 0, 3, 0, 2, 0, 4, 0, 6, 0, 5, 0, 5, 0, 8, 0, 7, 0, 5, 0, 6, 0, 8, 0, 9, 0, 11, 0, 10, 0, 10, 0, 13, 0, 12, 0, 14, 0, 16, 0, 15, 0, 10, 0, 11, 0, 13, 0, 17, 0, 19, 0, 18, 0, 17, 0, 20, 0, 19, 0, 21, 0, 23, 0, 22, 0, 21, 0, 24, 0, 23, 0, 25, 0, 27, 0, 26, 0, 25, 0, 28, 0, 27, 0, 29, 0, 31, 0, 30, 0, 32, 0, 34, 0, 33, 0, 35, 0, 37, 0, 36, 0, 35, 0, 38, 0, 37, 0, 39, 0, 41, 0, 40, 0, 39, 0, 42, 0, 41, 0, 43, 0, 45, 0, 44, 0, 44, 0, 47, 0, 46, 0, 44, 0, 45, 0, 47, 0, 21, 0, 11, 0, 9, 0, 21, 0, 22, 0, 11, 0, 48, 0, 50, 0, 49, 0, 48, 0, 51, 0, 50, 0, 52, 0, 54, 0, 53, 0, 52, 0, 55, 0, 54, 0, 56, 0, 58, 0, 57, 0, 56, 0, 59, 0, 58, 0, 60, 0, 62, 0, 61, 0, 60, 0, 63, 0, 62, 0, 64, 0, 66, 0, 65, 0, 64, 0, 67, 0, 66, 0, 68, 0, 70, 0, 69, 0, 68, 0, 71, 0, 70, 0, 72, 0, 74, 0, 73, 0, 72, 0, 75, 0, 74, 0, 76, 0, 71, 0, 68, 0, 76, 0, 77, 0, 71, 0, 78, 0, 80, 0, 79, 0, 78, 0, 81, 0, 80, 0, 82, 0, 84, 0, 83, 0, 82, 0, 85, 0, 84, 0, 86, 0, 88, 0, 87, 0, 86, 0, 89, 0, 88, 0, 87, 0, 91, 0, 90, 0, 87, 0, 88, 0, 91, 0, 92, 0, 94, 0, 93, 0, 92, 0, 95, 0, 94, 0, 96, 0, 98, 0, 97, 0, 96, 0, 99, 0, 98, 0, 100, 0, 102, 0, 101, 0, 100, 0, 103, 0, 102, 0, 104, 0, 106, 0, 105, 0, 104, 0, 107, 0, 106, 0, 108, 0, 110, 0, 109, 0, 108, 0, 111, 0, 110, 0, 4, 0, 112, 0, 6, 0, 6, 0, 114, 0, 113, 0, 6, 0, 112, 0, 114, 0, 9, 0, 10, 0, 115, 0, 116, 0, 118, 0, 117, 0, 115, 0, 10, 0, 119, 0, 120, 0, 118, 0, 116, 0, 121, 0, 123, 0, 122, 0, 121, 0, 124, 0, 123, 0, 21, 0, 125, 0, 24, 0, 21, 0, 126, 0, 125, 0, 127, 0, 129, 0, 128, 0, 127, 0, 130, 0, 129, 0, 131, 0, 133, 0, 132, 0, 134, 0, 136, 0, 135, 0, 137, 0, 139, 0, 138, 0, 137, 0, 140, 0, 139, 0, 141, 0, 143, 0, 142, 0, 141, 0, 144, 0, 143, 0, 145, 0, 146, 0, 141, 0, 141, 0, 147, 0, 144, 0, 141, 0, 146, 0, 147, 0, 21, 0, 115, 0, 126, 0, 21, 0, 9, 0, 115, 0, 148, 0, 150, 0, 149, 0, 148, 0, 151, 0, 150, 0, 152, 0, 154, 0, 153, 0, 152, 0, 155, 0, 154, 0, 47, 0, 157, 0, 156, 0, 47, 0, 45, 0, 157, 0, 158, 0, 160, 0, 159, 0, 158, 0, 161, 0, 160, 0, 162, 0, 164, 0, 163, 0, 162, 0, 165, 0, 164, 0, 166, 0, 168, 0, 167, 0, 166, 0, 169, 0, 168, 0, 170, 0, 172, 0, 171, 0, 170, 0, 173, 0, 172, 0, 174, 0, 167, 0, 175, 0, 174, 0, 166, 0, 167, 0, 176, 0, 178, 0, 177, 0, 176, 0, 179, 0, 178, 0, 180, 0, 182, 0, 181, 0, 180, 0, 183, 0, 182, 0, 184, 0, 186, 0, 185, 0, 184, 0, 187, 0, 186, 0, 187, 0, 188, 0, 186, 0, 187, 0, 189, 0, 188, 0, 190, 0, 192, 0, 191, 0, 190, 0, 193, 0, 192, 0, 194, 0, 196, 0, 195, 0, 194, 0, 197, 0, 196, 0, 198, 0, 200, 0, 199, 0, 198, 0, 201, 0, 200, 0, 202, 0, 204, 0, 203, 0, 202, 0, 205, 0, 204, 0, 206, 0, 208, 0, 207, 0, 206, 0, 209, 0, 208, 0, 59, 0, 211, 0, 210, 0, 59, 0, 56, 0, 211, 0, 212, 0, 214, 0, 213, 0, 213, 0, 216, 0, 215, 0, 217, 0, 219, 0, 218, 0, 213, 0, 214, 0, 220, 0, 213, 0, 220, 0, 216, 0, 221, 0, 223, 0, 222, 0, 221, 0, 224, 0, 223, 0, 207, 0, 226, 0, 225, 0, 207, 0, 208, 0, 226, 0, 227, 0, 229, 0, 228, 0, 227, 0, 230, 0, 229, 0, 231, 0, 233, 0, 232, 0, 231, 0, 234, 0, 233, 0, 235, 0, 237, 0, 236, 0, 235, 0, 238, 0, 237, 0, 239, 0, 241, 0, 240, 0, 239, 0, 242, 0, 241, 0, 140, 0, 243, 0, 139, 0, 140, 0, 244, 0, 243, 0, 245, 0, 247, 0, 246, 0, 245, 0, 248, 0, 247, 0, 37, 0, 249, 0, 36, 0, 37, 0, 250, 0, 249, 0, 251, 0, 253, 0, 252, 0, 251, 0, 254, 0, 253, 0, 255, 0, 252, 0, 253, 0, 255, 0, 0, 1, 252, 0, 1, 1, 3, 1, 2, 1, 1, 1, 4, 1, 3, 1, 5, 1, 7, 1, 6, 1, 5, 1, 8, 1, 7, 1, 9, 1, 11, 1, 10, 1, 9, 1, 12, 1, 11, 1, 244, 0, 13, 1, 243, 0, 244, 0, 14, 1, 13, 1, 15, 1, 17, 1, 16, 1, 15, 1, 18, 1, 17, 1, 250, 0, 19, 1, 249, 0, 250, 0, 20, 1, 19, 1, 21, 1, 0, 1, 255, 0, 21, 1, 22, 1, 0, 1, 1, 1, 23, 1, 4, 1, 4, 1, 6, 1, 7, 1, 24, 1, 26, 1, 25, 1, 4, 1, 23, 1, 27, 1, 4, 1, 27, 1, 6, 1, 17, 1, 12, 1, 16, 1, 28, 1, 30, 1, 29, 1, 31, 1, 12, 1, 9, 1, 16, 1, 12, 1, 32, 1, 32, 1, 12, 1, 31, 1, 33, 1, 35, 1, 34, 1, 33, 1, 36, 1, 35, 1, 37, 1, 39, 1, 38, 1, 37, 1, 40, 1, 39, 1, 41, 1, 43, 1, 42, 1, 41, 1, 44, 1, 43, 1, 31, 1, 46, 1, 45, 1, 31, 1, 47, 1, 46, 1, 27, 1, 49, 1, 48, 1, 27, 1, 50, 1, 49, 1, 51, 1, 53, 1, 52, 1, 51, 1, 54, 1, 53, 1, 23, 1, 50, 1, 27, 1, 23, 1, 55, 1, 50, 1, 45, 1, 56, 1, 32, 1, 45, 1, 46, 1, 56, 1, 57, 1, 59, 1, 58, 1, 60, 1, 62, 1, 61, 1, 63, 1, 59, 1, 64, 1, 58, 1, 59, 1, 63, 1), +"material": ExtResource( "2" ), "name": "Material.001", -"primitive": 4, -"skeleton_aabb": [], -"vertex_count": 321 -} -surfaces/1 = { +"primitive": 3, +"vertex_count": 321, +"vertex_data": PackedByteArray(0, 160, 0, 63, 0, 0, 24, 63, 0, 96, 175, 62, 104, 184, 143, 8, 0, 0, 0, 0, 0, 0, 24, 63, 0, 160, 224, 62, 104, 184, 143, 8, 0, 0, 0, 0, 0, 192, 0, 63, 0, 160, 178, 63, 104, 184, 143, 8, 0, 224, 126, 62, 0, 160, 223, 62, 0, 160, 178, 63, 104, 184, 143, 8, 0, 0, 0, 0, 0, 0, 161, 62, 0, 96, 150, 191, 0, 100, 3, 0, 0, 32, 212, 62, 0, 0, 161, 62, 0, 96, 150, 191, 0, 100, 3, 0, 0, 0, 0, 0, 0, 192, 74, 58, 0, 64, 159, 191, 0, 100, 3, 0, 0, 160, 0, 63, 0, 0, 161, 62, 0, 96, 150, 191, 0, 100, 3, 0, 0, 160, 0, 63, 0, 192, 74, 58, 0, 64, 159, 191, 0, 100, 3, 0, 0, 0, 0, 0, 0, 192, 74, 58, 0, 128, 162, 190, 0, 0, 0, 0, 0, 0, 0, 0, 0, 192, 74, 58, 0, 64, 159, 191, 0, 0, 0, 0, 0, 160, 0, 63, 0, 192, 74, 58, 0, 128, 162, 190, 0, 0, 0, 0, 0, 160, 0, 63, 0, 192, 74, 58, 0, 64, 159, 191, 0, 0, 0, 0, 0, 160, 0, 63, 0, 192, 74, 58, 0, 32, 138, 191, 0, 0, 0, 0, 0, 160, 0, 63, 0, 192, 74, 58, 0, 32, 138, 191, 0, 0, 0, 0, 0, 160, 0, 63, 0, 192, 74, 58, 0, 0, 252, 190, 0, 0, 0, 0, 0, 160, 0, 63, 0, 192, 74, 58, 0, 128, 162, 190, 0, 0, 0, 0, 0, 160, 0, 63, 0, 224, 133, 63, 0, 160, 66, 62, 40, 216, 15, 0, 0, 160, 0, 63, 0, 224, 133, 63, 0, 128, 162, 190, 40, 216, 15, 0, 0, 0, 0, 0, 0, 96, 136, 63, 0, 128, 162, 190, 40, 216, 15, 0, 0, 0, 0, 0, 0, 96, 136, 63, 0, 128, 146, 62, 40, 216, 15, 0, 0, 0, 0, 0, 0, 192, 74, 58, 0, 96, 175, 62, 0, 0, 0, 0, 0, 160, 0, 63, 0, 192, 74, 58, 0, 96, 175, 62, 0, 0, 0, 0, 0, 224, 126, 62, 0, 192, 74, 58, 0, 128, 183, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 192, 74, 58, 0, 128, 183, 63, 0, 0, 0, 0, 0, 160, 0, 63, 0, 0, 24, 63, 0, 96, 175, 62, 222, 163, 16, 15, 0, 224, 126, 62, 0, 160, 223, 62, 0, 160, 178, 63, 222, 163, 16, 15, 0, 224, 149, 62, 0, 64, 158, 62, 0, 224, 159, 63, 222, 163, 16, 15, 0, 32, 186, 62, 0, 64, 158, 62, 0, 192, 115, 63, 222, 163, 16, 15, 0, 160, 0, 63, 0, 192, 74, 58, 0, 96, 175, 62, 222, 3, 16, 14, 0, 160, 0, 63, 0, 0, 24, 63, 0, 96, 175, 62, 222, 3, 16, 14, 0, 32, 186, 62, 0, 64, 158, 62, 0, 192, 115, 63, 222, 3, 16, 14, 0, 224, 126, 62, 0, 160, 223, 62, 0, 160, 178, 63, 214, 67, 144, 16, 0, 224, 126, 62, 0, 192, 74, 58, 0, 128, 183, 63, 214, 67, 144, 16, 0, 224, 149, 62, 0, 64, 158, 62, 0, 224, 159, 63, 214, 67, 144, 16, 0, 160, 0, 63, 0, 192, 74, 58, 0, 64, 159, 191, 254, 3, 0, 0, 0, 160, 0, 63, 0, 0, 161, 62, 0, 96, 150, 191, 254, 3, 0, 0, 0, 160, 0, 63, 0, 64, 161, 62, 0, 32, 116, 191, 254, 3, 0, 0, 0, 160, 0, 63, 0, 192, 74, 58, 0, 32, 138, 191, 254, 3, 0, 0, 0, 32, 212, 190, 0, 64, 161, 62, 0, 32, 116, 191, 254, 3, 0, 0, 0, 32, 212, 190, 0, 0, 161, 62, 0, 96, 150, 191, 254, 3, 0, 0, 0, 32, 212, 190, 0, 32, 143, 63, 0, 160, 179, 191, 254, 3, 0, 0, 0, 32, 212, 190, 0, 64, 143, 63, 0, 160, 165, 191, 254, 3, 0, 0, 0, 160, 0, 63, 0, 0, 24, 63, 0, 128, 162, 190, 254, 3, 0, 0, 0, 160, 0, 63, 0, 0, 24, 63, 0, 96, 175, 62, 254, 3, 0, 0, 0, 160, 0, 63, 0, 160, 160, 62, 0, 128, 162, 190, 254, 3, 0, 0, 0, 160, 0, 63, 0, 192, 74, 58, 0, 96, 175, 62, 254, 3, 0, 0, 0, 160, 0, 63, 0, 192, 74, 58, 0, 128, 162, 190, 254, 3, 0, 0, 0, 160, 0, 63, 0, 64, 161, 62, 0, 64, 30, 191, 96, 136, 230, 57, 0, 160, 0, 63, 0, 192, 74, 58, 0, 0, 252, 190, 96, 136, 230, 57, 0, 96, 39, 63, 0, 192, 74, 58, 0, 0, 252, 190, 96, 136, 230, 57, 0, 96, 39, 63, 0, 96, 143, 62, 0, 128, 34, 191, 96, 136, 230, 57, 0, 160, 0, 63, 0, 192, 74, 58, 0, 96, 175, 62, 80, 88, 14, 0, 0, 32, 186, 62, 0, 64, 158, 62, 0, 192, 115, 63, 80, 88, 14, 0, 0, 96, 39, 63, 0, 96, 140, 62, 0, 128, 119, 63, 80, 88, 14, 0, 0, 96, 39, 63, 0, 192, 74, 58, 0, 96, 175, 62, 80, 88, 14, 0, 0, 0, 0, 0, 0, 0, 161, 62, 0, 96, 150, 191, 0, 248, 15, 0, 0, 32, 212, 190, 0, 0, 161, 62, 0, 96, 150, 191, 0, 248, 15, 0, 0, 32, 212, 190, 0, 64, 161, 62, 0, 32, 116, 191, 0, 248, 15, 0, 0, 0, 0, 0, 0, 64, 161, 62, 0, 32, 116, 191, 0, 248, 15, 0, 0, 160, 0, 63, 0, 192, 74, 58, 0, 32, 138, 191, 96, 136, 6, 0, 0, 160, 0, 63, 0, 64, 161, 62, 0, 32, 116, 191, 96, 136, 6, 0, 0, 96, 39, 63, 0, 96, 143, 62, 0, 224, 111, 191, 96, 136, 6, 0, 0, 96, 39, 63, 0, 192, 74, 58, 0, 32, 138, 191, 96, 136, 6, 0, 0, 32, 186, 62, 0, 64, 158, 62, 0, 192, 115, 63, 104, 216, 143, 0, 0, 224, 149, 62, 0, 64, 158, 62, 0, 224, 159, 63, 104, 216, 143, 0, 0, 96, 39, 63, 0, 96, 140, 62, 0, 0, 158, 63, 104, 216, 143, 0, 0, 96, 39, 63, 0, 96, 140, 62, 0, 128, 119, 63, 104, 216, 143, 0, 0, 160, 0, 63, 0, 192, 74, 58, 0, 128, 162, 190, 0, 248, 15, 0, 0, 160, 0, 63, 0, 192, 74, 58, 0, 96, 175, 62, 0, 248, 15, 0, 0, 96, 39, 63, 0, 192, 74, 58, 0, 96, 175, 62, 0, 248, 15, 0, 0, 96, 39, 63, 0, 192, 74, 58, 0, 128, 162, 190, 0, 248, 15, 0, 0, 160, 0, 63, 0, 64, 161, 62, 0, 32, 116, 191, 225, 120, 15, 0, 0, 160, 0, 63, 0, 64, 161, 62, 0, 64, 30, 191, 225, 120, 15, 0, 0, 96, 39, 63, 0, 96, 143, 62, 0, 128, 34, 191, 225, 120, 15, 0, 0, 96, 39, 63, 0, 96, 143, 62, 0, 224, 111, 191, 225, 120, 15, 0, 0, 160, 0, 63, 0, 192, 74, 58, 0, 0, 252, 190, 0, 248, 15, 0, 0, 96, 39, 63, 0, 192, 74, 58, 0, 0, 252, 190, 0, 248, 15, 0, 0, 224, 149, 62, 0, 64, 158, 62, 0, 224, 159, 63, 80, 236, 231, 54, 0, 224, 126, 62, 0, 192, 74, 58, 0, 128, 183, 63, 80, 236, 231, 54, 0, 128, 213, 62, 0, 224, 233, 61, 0, 224, 172, 63, 80, 236, 231, 54, 0, 32, 221, 62, 0, 32, 65, 62, 0, 64, 167, 63, 80, 236, 231, 54, 0, 96, 39, 63, 0, 96, 140, 62, 0, 0, 158, 63, 80, 236, 231, 54, 0, 224, 149, 62, 0, 64, 158, 62, 0, 224, 159, 63, 80, 236, 231, 54, 0, 32, 221, 62, 0, 32, 65, 62, 0, 64, 167, 63, 80, 236, 231, 54, 0, 0, 5, 63, 0, 192, 59, 62, 0, 128, 166, 63, 80, 236, 231, 54, 0, 224, 126, 62, 0, 192, 74, 58, 0, 128, 183, 63, 0, 80, 89, 51, 0, 96, 39, 63, 0, 192, 74, 58, 0, 128, 183, 63, 0, 80, 89, 51, 0, 192, 4, 63, 0, 128, 227, 61, 0, 32, 173, 63, 0, 80, 89, 51, 0, 128, 213, 62, 0, 224, 233, 61, 0, 224, 172, 63, 0, 80, 89, 51, 0, 96, 39, 63, 0, 96, 140, 62, 0, 0, 158, 63, 0, 80, 89, 51, 0, 0, 5, 63, 0, 192, 59, 62, 0, 128, 166, 63, 0, 80, 89, 51, 0, 192, 4, 63, 0, 128, 227, 61, 0, 32, 173, 63, 254, 3, 0, 0, 0, 0, 5, 63, 0, 192, 59, 62, 0, 128, 166, 63, 254, 3, 0, 0, 0, 0, 5, 63, 0, 96, 56, 62, 0, 192, 171, 63, 254, 3, 0, 0, 0, 192, 4, 63, 0, 32, 235, 61, 0, 128, 174, 63, 254, 3, 0, 0, 0, 32, 221, 62, 0, 32, 65, 62, 0, 64, 167, 63, 0, 68, 3, 0, 0, 128, 213, 62, 0, 224, 233, 61, 0, 224, 172, 63, 0, 68, 3, 0, 0, 128, 213, 62, 0, 224, 240, 61, 0, 64, 174, 63, 0, 68, 3, 0, 0, 32, 221, 62, 0, 32, 61, 62, 0, 128, 171, 63, 0, 68, 3, 0, 0, 0, 5, 63, 0, 192, 59, 62, 0, 128, 166, 63, 56, 216, 143, 5, 0, 32, 221, 62, 0, 32, 65, 62, 0, 64, 167, 63, 56, 216, 143, 5, 0, 32, 221, 62, 0, 32, 61, 62, 0, 128, 171, 63, 56, 216, 143, 5, 0, 0, 5, 63, 0, 96, 56, 62, 0, 192, 171, 63, 56, 216, 143, 5, 0, 128, 213, 62, 0, 224, 233, 61, 0, 224, 172, 63, 0, 0, 160, 20, 0, 192, 4, 63, 0, 128, 227, 61, 0, 32, 173, 63, 0, 0, 160, 20, 0, 192, 4, 63, 0, 32, 235, 61, 0, 128, 174, 63, 0, 0, 160, 20, 0, 128, 213, 62, 0, 224, 240, 61, 0, 64, 174, 63, 0, 0, 160, 20, 0, 160, 0, 191, 0, 0, 24, 63, 0, 96, 175, 62, 0, 184, 143, 8, 0, 224, 126, 190, 0, 160, 223, 62, 0, 160, 178, 63, 0, 184, 143, 8, 0, 0, 0, 0, 0, 192, 0, 63, 0, 160, 178, 63, 0, 184, 143, 8, 0, 0, 0, 0, 0, 0, 24, 63, 0, 160, 224, 62, 0, 184, 143, 8, 0, 32, 212, 190, 0, 0, 161, 62, 0, 96, 150, 191, 0, 100, 3, 0, 0, 160, 0, 191, 0, 192, 74, 58, 0, 64, 159, 191, 0, 100, 3, 0, 0, 160, 0, 191, 0, 0, 161, 62, 0, 96, 150, 191, 0, 100, 3, 0, 0, 160, 0, 191, 0, 192, 74, 58, 0, 128, 162, 190, 0, 0, 0, 0, 0, 160, 0, 191, 0, 192, 74, 58, 0, 0, 252, 190, 0, 0, 0, 0, 0, 160, 0, 191, 0, 192, 74, 58, 0, 32, 138, 191, 0, 0, 0, 0, 0, 160, 0, 191, 0, 192, 74, 58, 0, 64, 159, 191, 0, 0, 0, 0, 0, 160, 0, 191, 0, 192, 74, 58, 0, 64, 159, 191, 0, 0, 0, 0, 0, 160, 0, 191, 0, 192, 74, 58, 0, 128, 162, 190, 0, 0, 0, 0, 0, 160, 0, 191, 0, 224, 133, 63, 0, 160, 66, 62, 0, 216, 15, 0, 0, 0, 0, 0, 0, 96, 136, 63, 0, 128, 146, 62, 0, 216, 15, 0, 0, 0, 0, 0, 0, 96, 136, 63, 0, 128, 162, 190, 0, 216, 15, 0, 0, 160, 0, 191, 0, 224, 133, 63, 0, 128, 162, 190, 0, 216, 15, 0, 0, 224, 126, 190, 0, 192, 74, 58, 0, 128, 183, 63, 0, 0, 0, 0, 0, 160, 0, 191, 0, 192, 74, 58, 0, 96, 175, 62, 0, 0, 0, 0, 0, 160, 0, 191, 0, 0, 24, 63, 0, 96, 175, 62, 0, 160, 16, 15, 0, 32, 186, 190, 0, 64, 158, 62, 0, 192, 115, 63, 0, 160, 16, 15, 0, 224, 149, 190, 0, 64, 158, 62, 0, 224, 159, 63, 0, 160, 16, 15, 0, 224, 126, 190, 0, 160, 223, 62, 0, 160, 178, 63, 0, 160, 16, 15, 0, 160, 0, 191, 0, 192, 74, 58, 0, 96, 175, 62, 0, 0, 16, 14, 0, 32, 186, 190, 0, 64, 158, 62, 0, 192, 115, 63, 0, 0, 16, 14, 0, 160, 0, 191, 0, 0, 24, 63, 0, 96, 175, 62, 0, 0, 16, 14, 0, 224, 126, 190, 0, 160, 223, 62, 0, 160, 178, 63, 0, 64, 144, 16, 0, 224, 149, 190, 0, 64, 158, 62, 0, 224, 159, 63, 0, 64, 144, 16, 0, 224, 126, 190, 0, 192, 74, 58, 0, 128, 183, 63, 0, 64, 144, 16, 0, 160, 0, 191, 0, 192, 74, 58, 0, 64, 159, 191, 0, 0, 0, 0, 0, 160, 0, 191, 0, 192, 74, 58, 0, 32, 138, 191, 0, 0, 0, 0, 0, 160, 0, 191, 0, 64, 161, 62, 0, 32, 116, 191, 0, 0, 0, 0, 0, 160, 0, 191, 0, 0, 161, 62, 0, 96, 150, 191, 0, 0, 0, 0, 0, 160, 0, 191, 0, 160, 160, 62, 0, 128, 162, 190, 0, 0, 0, 0, 0, 160, 0, 191, 0, 64, 161, 62, 0, 64, 30, 191, 0, 0, 0, 0, 0, 160, 0, 191, 0, 192, 74, 58, 0, 0, 252, 190, 0, 0, 0, 0, 0, 160, 0, 191, 0, 192, 74, 58, 0, 128, 162, 190, 0, 0, 0, 0, 0, 160, 0, 191, 0, 0, 24, 63, 0, 128, 162, 190, 0, 0, 0, 0, 0, 160, 0, 191, 0, 0, 24, 63, 0, 96, 175, 62, 0, 0, 0, 0, 0, 160, 0, 191, 0, 192, 74, 58, 0, 96, 175, 62, 0, 0, 0, 0, 0, 160, 0, 191, 0, 64, 161, 62, 0, 64, 30, 191, 0, 136, 230, 57, 0, 96, 39, 191, 0, 96, 143, 62, 0, 128, 34, 191, 0, 136, 230, 57, 0, 96, 39, 191, 0, 192, 74, 58, 0, 0, 252, 190, 0, 136, 230, 57, 0, 160, 0, 191, 0, 192, 74, 58, 0, 0, 252, 190, 0, 136, 230, 57, 0, 160, 0, 191, 0, 192, 74, 58, 0, 96, 175, 62, 0, 88, 14, 0, 0, 96, 39, 191, 0, 192, 74, 58, 0, 96, 175, 62, 0, 88, 14, 0, 0, 96, 39, 191, 0, 96, 140, 62, 0, 128, 119, 63, 0, 88, 14, 0, 0, 32, 186, 190, 0, 64, 158, 62, 0, 192, 115, 63, 0, 88, 14, 0, 0, 160, 0, 63, 0, 192, 74, 58, 0, 0, 252, 190, 254, 3, 0, 0, 0, 160, 0, 63, 0, 64, 161, 62, 0, 64, 30, 191, 254, 3, 0, 0, 0, 160, 0, 191, 0, 192, 74, 58, 0, 32, 138, 191, 0, 136, 6, 0, 0, 96, 39, 191, 0, 192, 74, 58, 0, 32, 138, 191, 0, 136, 6, 0, 0, 96, 39, 191, 0, 96, 143, 62, 0, 224, 111, 191, 0, 136, 6, 0, 0, 160, 0, 191, 0, 64, 161, 62, 0, 32, 116, 191, 0, 136, 6, 0, 0, 32, 186, 190, 0, 64, 158, 62, 0, 192, 115, 63, 0, 216, 143, 0, 0, 96, 39, 191, 0, 96, 140, 62, 0, 128, 119, 63, 0, 216, 143, 0, 0, 96, 39, 191, 0, 96, 140, 62, 0, 0, 158, 63, 0, 216, 143, 0, 0, 224, 149, 190, 0, 64, 158, 62, 0, 224, 159, 63, 0, 216, 143, 0, 0, 160, 0, 191, 0, 192, 74, 58, 0, 128, 162, 190, 0, 248, 15, 0, 0, 96, 39, 191, 0, 192, 74, 58, 0, 128, 162, 190, 0, 248, 15, 0, 0, 96, 39, 191, 0, 192, 74, 58, 0, 96, 175, 62, 0, 248, 15, 0, 0, 160, 0, 191, 0, 192, 74, 58, 0, 96, 175, 62, 0, 248, 15, 0, 0, 160, 0, 191, 0, 64, 161, 62, 0, 32, 116, 191, 0, 120, 15, 0, 0, 96, 39, 191, 0, 96, 143, 62, 0, 224, 111, 191, 0, 120, 15, 0, 0, 96, 39, 191, 0, 96, 143, 62, 0, 128, 34, 191, 0, 120, 15, 0, 0, 160, 0, 191, 0, 64, 161, 62, 0, 64, 30, 191, 0, 120, 15, 0, 0, 160, 0, 191, 0, 192, 74, 58, 0, 0, 252, 190, 0, 248, 15, 0, 0, 96, 39, 191, 0, 192, 74, 58, 0, 0, 252, 190, 0, 248, 15, 0, 0, 224, 149, 190, 0, 64, 158, 62, 0, 224, 159, 63, 0, 236, 231, 54, 0, 32, 221, 190, 0, 32, 65, 62, 0, 64, 167, 63, 0, 236, 231, 54, 0, 128, 213, 190, 0, 224, 233, 61, 0, 224, 172, 63, 0, 236, 231, 54, 0, 224, 126, 190, 0, 192, 74, 58, 0, 128, 183, 63, 0, 236, 231, 54, 0, 96, 39, 191, 0, 96, 140, 62, 0, 0, 158, 63, 0, 236, 231, 54, 0, 0, 5, 191, 0, 192, 59, 62, 0, 128, 166, 63, 0, 236, 231, 54, 0, 32, 221, 190, 0, 32, 65, 62, 0, 64, 167, 63, 0, 236, 231, 54, 0, 224, 149, 190, 0, 64, 158, 62, 0, 224, 159, 63, 0, 236, 231, 54, 0, 224, 126, 190, 0, 192, 74, 58, 0, 128, 183, 63, 0, 80, 89, 51, 0, 128, 213, 190, 0, 224, 233, 61, 0, 224, 172, 63, 0, 80, 89, 51, 0, 192, 4, 191, 0, 128, 227, 61, 0, 32, 173, 63, 0, 80, 89, 51, 0, 96, 39, 191, 0, 192, 74, 58, 0, 128, 183, 63, 0, 80, 89, 51, 0, 0, 5, 191, 0, 192, 59, 62, 0, 128, 166, 63, 0, 80, 89, 51, 0, 96, 39, 191, 0, 96, 140, 62, 0, 0, 158, 63, 0, 80, 89, 51, 0, 192, 4, 191, 0, 128, 227, 61, 0, 32, 173, 63, 0, 0, 0, 0, 0, 192, 4, 191, 0, 32, 235, 61, 0, 128, 174, 63, 0, 0, 0, 0, 0, 0, 5, 191, 0, 96, 56, 62, 0, 192, 171, 63, 0, 0, 0, 0, 0, 0, 5, 191, 0, 192, 59, 62, 0, 128, 166, 63, 0, 0, 0, 0, 0, 32, 221, 190, 0, 32, 65, 62, 0, 64, 167, 63, 230, 71, 3, 0, 0, 32, 221, 190, 0, 32, 61, 62, 0, 128, 171, 63, 230, 71, 3, 0, 0, 128, 213, 190, 0, 224, 240, 61, 0, 64, 174, 63, 230, 71, 3, 0, 0, 128, 213, 190, 0, 224, 233, 61, 0, 224, 172, 63, 230, 71, 3, 0, 0, 0, 5, 191, 0, 192, 59, 62, 0, 128, 166, 63, 0, 216, 143, 5, 0, 0, 5, 191, 0, 96, 56, 62, 0, 192, 171, 63, 0, 216, 143, 5, 0, 32, 221, 190, 0, 32, 61, 62, 0, 128, 171, 63, 0, 216, 143, 5, 0, 32, 221, 190, 0, 32, 65, 62, 0, 64, 167, 63, 0, 216, 143, 5, 0, 128, 213, 190, 0, 224, 233, 61, 0, 224, 172, 63, 32, 0, 160, 20, 0, 128, 213, 190, 0, 224, 240, 61, 0, 64, 174, 63, 32, 0, 160, 20, 0, 192, 4, 191, 0, 32, 235, 61, 0, 128, 174, 63, 32, 0, 160, 20, 0, 192, 4, 191, 0, 128, 227, 61, 0, 32, 173, 63, 32, 0, 160, 20, 0, 160, 0, 63, 0, 224, 133, 63, 0, 128, 162, 190, 0, 0, 0, 0, 0, 160, 0, 63, 0, 0, 24, 63, 0, 128, 162, 190, 0, 0, 0, 0, 0, 160, 0, 191, 0, 0, 24, 63, 0, 128, 162, 190, 0, 0, 0, 0, 0, 160, 0, 191, 0, 224, 133, 63, 0, 128, 162, 190, 0, 0, 0, 0, 0, 32, 212, 62, 0, 64, 161, 62, 0, 32, 116, 191, 0, 248, 15, 0, 0, 32, 212, 62, 0, 0, 161, 62, 0, 96, 150, 191, 0, 248, 15, 0, 0, 160, 0, 191, 0, 64, 161, 62, 0, 64, 30, 191, 0, 248, 15, 0, 0, 160, 0, 63, 0, 64, 161, 62, 0, 64, 30, 191, 0, 248, 15, 0, 0, 160, 0, 191, 0, 64, 161, 62, 0, 32, 116, 191, 0, 248, 15, 0, 0, 160, 0, 63, 0, 64, 161, 62, 0, 32, 116, 191, 0, 248, 15, 0, 0, 32, 212, 62, 0, 64, 161, 62, 0, 32, 116, 191, 0, 248, 15, 0, 0, 32, 212, 62, 0, 64, 161, 62, 0, 32, 116, 191, 0, 0, 0, 0, 0, 0, 0, 0, 0, 64, 161, 62, 0, 32, 116, 191, 0, 0, 0, 0, 0, 32, 212, 190, 0, 64, 161, 62, 0, 32, 116, 191, 0, 0, 0, 0, 0, 32, 212, 190, 0, 64, 161, 62, 0, 32, 116, 191, 0, 248, 15, 0, 0, 160, 0, 191, 0, 160, 160, 62, 0, 128, 162, 190, 0, 248, 15, 0, 0, 160, 0, 63, 0, 160, 160, 62, 0, 128, 162, 190, 0, 248, 15, 0, 0, 160, 0, 63, 0, 64, 161, 62, 0, 64, 30, 191, 0, 248, 15, 0, 0, 160, 0, 191, 0, 64, 161, 62, 0, 64, 30, 191, 0, 248, 15, 0, 0, 160, 0, 63, 0, 160, 160, 62, 0, 128, 162, 190, 0, 0, 0, 0, 0, 160, 0, 191, 0, 160, 160, 62, 0, 128, 162, 190, 0, 0, 0, 0, 0, 32, 212, 62, 0, 0, 161, 62, 0, 96, 150, 191, 0, 0, 0, 0, 0, 32, 212, 62, 0, 64, 161, 62, 0, 32, 116, 191, 0, 0, 0, 0, 0, 32, 212, 62, 0, 64, 143, 63, 0, 160, 165, 191, 0, 0, 0, 0, 0, 32, 212, 62, 0, 32, 143, 63, 0, 160, 179, 191, 0, 0, 0, 0, 0, 32, 212, 190, 0, 0, 161, 62, 0, 96, 150, 191, 0, 0, 0, 0, 0, 160, 0, 191, 0, 0, 161, 62, 0, 96, 150, 191, 0, 0, 0, 0, 0, 160, 0, 191, 0, 32, 143, 63, 0, 160, 179, 191, 0, 0, 0, 0, 0, 32, 212, 190, 0, 32, 143, 63, 0, 160, 179, 191, 0, 0, 0, 0, 0, 160, 0, 63, 0, 0, 161, 62, 0, 96, 150, 191, 0, 0, 0, 0, 0, 32, 212, 62, 0, 0, 161, 62, 0, 96, 150, 191, 0, 0, 0, 0, 0, 32, 212, 62, 0, 32, 143, 63, 0, 160, 179, 191, 0, 0, 0, 0, 0, 160, 0, 63, 0, 32, 143, 63, 0, 160, 179, 191, 0, 0, 0, 0, 0, 32, 212, 62, 0, 64, 161, 62, 0, 32, 116, 191, 0, 40, 102, 58, 0, 160, 0, 63, 0, 64, 161, 62, 0, 32, 116, 191, 0, 40, 102, 58, 0, 160, 0, 63, 0, 64, 143, 63, 0, 160, 165, 191, 0, 40, 102, 58, 0, 32, 212, 62, 0, 64, 143, 63, 0, 160, 165, 191, 0, 40, 102, 58, 0, 160, 0, 191, 0, 64, 143, 63, 0, 160, 165, 191, 0, 0, 0, 0, 0, 160, 0, 191, 0, 32, 143, 63, 0, 160, 179, 191, 0, 0, 0, 0, 0, 160, 0, 191, 0, 64, 161, 62, 0, 32, 116, 191, 0, 40, 102, 58, 0, 32, 212, 190, 0, 64, 161, 62, 0, 32, 116, 191, 0, 40, 102, 58, 0, 32, 212, 190, 0, 64, 143, 63, 0, 160, 165, 191, 0, 40, 102, 58, 0, 160, 0, 191, 0, 64, 143, 63, 0, 160, 165, 191, 0, 40, 102, 58, 0, 160, 0, 63, 0, 32, 143, 63, 0, 160, 179, 191, 254, 3, 0, 0, 0, 160, 0, 63, 0, 64, 143, 63, 0, 160, 165, 191, 254, 3, 0, 0, 0, 160, 0, 191, 0, 192, 153, 63, 0, 160, 165, 191, 0, 248, 15, 0, 0, 32, 212, 190, 0, 192, 153, 63, 0, 160, 165, 191, 0, 248, 15, 0, 0, 32, 212, 190, 0, 192, 153, 63, 0, 160, 179, 191, 0, 248, 15, 0, 0, 160, 0, 191, 0, 192, 153, 63, 0, 160, 179, 191, 0, 248, 15, 0, 0, 32, 212, 62, 0, 192, 153, 63, 0, 160, 179, 191, 0, 248, 15, 0, 0, 32, 212, 62, 0, 192, 153, 63, 0, 160, 165, 191, 0, 248, 15, 0, 0, 32, 212, 190, 0, 32, 143, 63, 0, 160, 179, 191, 0, 0, 0, 0, 0, 160, 0, 191, 0, 32, 143, 63, 0, 160, 179, 191, 0, 0, 0, 0, 0, 160, 0, 191, 0, 192, 153, 63, 0, 160, 179, 191, 0, 0, 0, 0, 0, 32, 212, 190, 0, 192, 153, 63, 0, 160, 179, 191, 0, 0, 0, 0, 0, 160, 0, 63, 0, 32, 143, 63, 0, 160, 179, 191, 0, 0, 0, 0, 0, 32, 212, 62, 0, 32, 143, 63, 0, 160, 179, 191, 0, 0, 0, 0, 0, 32, 212, 62, 0, 192, 153, 63, 0, 160, 179, 191, 0, 0, 0, 0, 0, 160, 0, 63, 0, 192, 153, 63, 0, 160, 179, 191, 0, 0, 0, 0, 0, 32, 212, 62, 0, 64, 143, 63, 0, 160, 165, 191, 0, 0, 96, 63, 0, 160, 0, 63, 0, 64, 143, 63, 0, 160, 165, 191, 0, 0, 96, 63, 0, 160, 0, 63, 0, 192, 153, 63, 0, 160, 165, 191, 0, 0, 96, 63, 0, 32, 212, 62, 0, 192, 153, 63, 0, 160, 165, 191, 0, 0, 96, 63, 0, 160, 0, 191, 0, 192, 153, 63, 0, 160, 165, 191, 0, 0, 0, 0, 0, 160, 0, 191, 0, 192, 153, 63, 0, 160, 179, 191, 0, 0, 0, 0, 0, 160, 0, 191, 0, 64, 143, 63, 0, 160, 165, 191, 0, 0, 96, 63, 0, 32, 212, 190, 0, 64, 143, 63, 0, 160, 165, 191, 0, 0, 96, 63, 0, 32, 212, 190, 0, 192, 153, 63, 0, 160, 165, 191, 0, 0, 96, 63, 0, 160, 0, 191, 0, 192, 153, 63, 0, 160, 165, 191, 0, 0, 96, 63, 0, 160, 0, 63, 0, 192, 153, 63, 0, 160, 179, 191, 254, 3, 0, 0, 0, 160, 0, 63, 0, 192, 153, 63, 0, 160, 165, 191, 254, 3, 0, 0, 0, 160, 0, 63, 0, 192, 153, 63, 0, 160, 179, 191, 0, 248, 15, 0, 0, 160, 0, 63, 0, 192, 153, 63, 0, 160, 165, 191, 0, 248, 15, 0, 0, 224, 40, 189, 0, 32, 143, 63, 0, 160, 179, 191, 0, 0, 0, 0, 0, 32, 212, 62, 0, 32, 143, 63, 0, 160, 179, 191, 0, 0, 0, 0, 0, 224, 40, 61, 0, 32, 143, 63, 0, 160, 179, 191, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 143, 63, 0, 160, 179, 191, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 143, 63, 0, 160, 179, 191, 0, 0, 0, 0, 0, 224, 40, 189, 0, 64, 143, 63, 0, 160, 165, 191, 0, 0, 0, 0, 0, 0, 0, 0, 0, 64, 143, 63, 0, 160, 165, 191, 0, 0, 0, 0, 0, 224, 40, 61, 0, 64, 143, 63, 0, 160, 165, 191, 0, 0, 0, 0, 0, 224, 40, 61, 0, 64, 143, 63, 0, 160, 165, 191, 0, 0, 96, 63, 0, 224, 40, 189, 0, 64, 143, 63, 0, 160, 165, 191, 0, 0, 96, 63, 0, 32, 212, 62, 0, 64, 143, 63, 0, 160, 165, 191, 0, 0, 0, 0, 0, 224, 40, 61, 0, 64, 143, 63, 0, 160, 165, 191, 0, 0, 0, 0, 0, 224, 40, 61, 0, 32, 143, 63, 0, 160, 179, 191, 0, 0, 0, 0, 0, 32, 212, 62, 0, 32, 143, 63, 0, 160, 179, 191, 0, 0, 0, 0, 0, 224, 40, 189, 0, 32, 143, 63, 0, 160, 179, 191, 0, 0, 0, 0, 0, 224, 40, 189, 0, 64, 143, 63, 0, 160, 165, 191, 0, 0, 0, 0, 0, 32, 212, 190, 0, 64, 143, 63, 0, 160, 165, 191, 0, 0, 0, 0, 0, 32, 212, 190, 0, 32, 143, 63, 0, 160, 179, 191, 0, 0, 0, 0, 0, 224, 40, 61, 0, 32, 143, 63, 0, 160, 179, 191, 254, 3, 0, 0, 0, 224, 40, 61, 0, 64, 143, 63, 0, 160, 165, 191, 254, 3, 0, 0, 0, 224, 40, 61, 0, 224, 133, 63, 0, 160, 165, 191, 254, 3, 0, 0, 0, 224, 40, 61, 0, 192, 133, 63, 0, 160, 179, 191, 254, 3, 0, 0, 0, 0, 0, 0, 0, 64, 143, 63, 0, 160, 165, 191, 0, 0, 96, 63, 0, 0, 0, 0, 0, 224, 133, 63, 0, 160, 165, 191, 0, 0, 96, 63, 0, 224, 40, 61, 0, 224, 133, 63, 0, 160, 165, 191, 0, 0, 96, 63, 0, 224, 40, 61, 0, 32, 143, 63, 0, 160, 179, 191, 0, 0, 0, 0, 0, 224, 40, 61, 0, 192, 133, 63, 0, 160, 179, 191, 0, 0, 0, 0, 0, 0, 0, 0, 0, 192, 133, 63, 0, 160, 179, 191, 0, 0, 0, 0, 0, 224, 40, 189, 0, 64, 143, 63, 0, 160, 165, 191, 0, 0, 0, 0, 0, 224, 40, 189, 0, 32, 143, 63, 0, 160, 179, 191, 0, 0, 0, 0, 0, 224, 40, 189, 0, 192, 133, 63, 0, 160, 179, 191, 0, 0, 0, 0, 0, 224, 40, 189, 0, 224, 133, 63, 0, 160, 165, 191, 0, 0, 0, 0, 0, 224, 40, 189, 0, 192, 133, 63, 0, 160, 179, 191, 0, 0, 0, 0, 0, 224, 40, 189, 0, 224, 133, 63, 0, 160, 165, 191, 0, 0, 96, 63, 0, 224, 40, 189, 0, 224, 133, 63, 0, 160, 165, 191, 0, 0, 0, 0, 0, 224, 40, 189, 0, 192, 133, 63, 0, 160, 179, 191, 0, 0, 0, 0, 0, 0, 0, 0, 0, 224, 133, 63, 0, 160, 165, 191, 0, 0, 0, 0, 0, 224, 40, 189, 0, 192, 133, 63, 0, 160, 179, 191, 0, 0, 0, 0, 0, 0, 0, 0, 0, 192, 133, 63, 0, 160, 179, 191, 0, 0, 0, 0, 0, 224, 40, 61, 0, 192, 133, 63, 0, 160, 179, 191, 0, 0, 0, 0, 0, 224, 40, 61, 0, 192, 133, 63, 0, 160, 179, 191, 0, 0, 0, 0, 0, 224, 40, 61, 0, 224, 133, 63, 0, 160, 165, 191, 0, 0, 0, 0) +}, { "aabb": AABB(-0.519564, 0.114819, -0.317414, 1.03913, 0.951363, 1.68073), -"array_data": PackedByteArray(5, 56, 47, 60, 21, 50, 0, 60, 23, 39, 118, 0, 0, 0, 67, 60, 148, 52, 0, 60, 23, 39, 118, 0, 0, 0, 192, 56, 5, 55, 0, 60, 23, 39, 118, 0, 5, 56, 192, 56, 123, 53, 0, 60, 23, 39, 118, 0, 5, 56, 47, 60, 20, 181, 0, 60, 127, 0, 0, 0, 5, 56, 47, 60, 21, 50, 0, 60, 127, 0, 0, 0, 5, 56, 192, 56, 123, 53, 0, 60, 127, 0, 0, 0, 5, 56, 192, 56, 20, 181, 0, 60, 127, 0, 0, 0, 172, 54, 135, 47, 114, 61, 0, 60, 0, 39, 120, 0, 38, 56, 89, 47, 116, 61, 0, 60, 0, 39, 120, 0, 40, 56, 195, 49, 94, 61, 0, 60, 0, 39, 120, 0, 233, 54, 233, 49, 92, 61, 0, 60, 0, 39, 120, 0, 5, 184, 47, 60, 21, 50, 0, 60, 233, 39, 118, 0, 5, 184, 192, 56, 123, 53, 0, 60, 233, 39, 118, 0, 0, 0, 192, 56, 5, 55, 0, 60, 233, 39, 118, 0, 0, 0, 67, 60, 148, 52, 0, 60, 233, 39, 118, 0, 5, 184, 47, 60, 20, 181, 0, 60, 130, 0, 0, 0, 5, 184, 192, 56, 20, 181, 0, 60, 130, 0, 0, 0, 5, 184, 192, 56, 123, 53, 0, 60, 130, 0, 0, 0, 5, 184, 47, 60, 21, 50, 0, 60, 130, 0, 0, 0, 172, 182, 135, 47, 114, 61, 0, 60, 0, 39, 120, 0, 233, 182, 233, 49, 92, 61, 0, 60, 0, 39, 120, 0, 40, 184, 195, 49, 94, 61, 0, 60, 0, 39, 120, 0, 38, 184, 89, 47, 116, 61, 0, 60, 0, 39, 120, 0), -"array_index_data": PackedByteArray(0, 0, 2, 0, 1, 0, 0, 0, 3, 0, 2, 0, 4, 0, 6, 0, 5, 0, 4, 0, 7, 0, 6, 0, 8, 0, 10, 0, 9, 0, 8, 0, 11, 0, 10, 0, 12, 0, 14, 0, 13, 0, 12, 0, 15, 0, 14, 0, 16, 0, 18, 0, 17, 0, 16, 0, 19, 0, 18, 0, 20, 0, 22, 0, 21, 0, 20, 0, 23, 0, 22, 0), -"blend_shape_data": [], -"format": 98051, +"format": 4099, "index_count": 36, -"material": ExtResource( 3 ), +"index_data": PackedByteArray(0, 0, 2, 0, 1, 0, 0, 0, 3, 0, 2, 0, 4, 0, 6, 0, 5, 0, 4, 0, 7, 0, 6, 0, 8, 0, 10, 0, 9, 0, 8, 0, 11, 0, 10, 0, 12, 0, 14, 0, 13, 0, 12, 0, 15, 0, 14, 0, 16, 0, 18, 0, 17, 0, 16, 0, 19, 0, 18, 0, 20, 0, 22, 0, 21, 0, 20, 0, 23, 0, 22, 0), +"material": ExtResource( "3" ), "name": "Material.002", -"primitive": 4, -"skeleton_aabb": [], -"vertex_count": 24 -} -surfaces/2 = { +"primitive": 3, +"vertex_count": 24, +"vertex_data": PackedByteArray(0, 160, 0, 63, 0, 224, 133, 63, 0, 160, 66, 62, 185, 232, 100, 59, 0, 0, 0, 0, 0, 96, 136, 63, 0, 128, 146, 62, 185, 232, 100, 59, 0, 0, 0, 0, 0, 0, 24, 63, 0, 160, 224, 62, 185, 232, 100, 59, 0, 160, 0, 63, 0, 0, 24, 63, 0, 96, 175, 62, 185, 232, 100, 59, 0, 160, 0, 63, 0, 224, 133, 63, 0, 128, 162, 190, 254, 3, 0, 0, 0, 160, 0, 63, 0, 224, 133, 63, 0, 160, 66, 62, 254, 3, 0, 0, 0, 160, 0, 63, 0, 0, 24, 63, 0, 96, 175, 62, 254, 3, 0, 0, 0, 160, 0, 63, 0, 0, 24, 63, 0, 128, 162, 190, 254, 3, 0, 0, 0, 128, 213, 62, 0, 224, 240, 61, 0, 64, 174, 63, 0, 232, 100, 60, 0, 192, 4, 63, 0, 32, 235, 61, 0, 128, 174, 63, 0, 232, 100, 60, 0, 0, 5, 63, 0, 96, 56, 62, 0, 192, 171, 63, 0, 232, 100, 60, 0, 32, 221, 62, 0, 32, 61, 62, 0, 128, 171, 63, 0, 232, 100, 60, 0, 160, 0, 191, 0, 224, 133, 63, 0, 160, 66, 62, 0, 232, 100, 59, 0, 160, 0, 191, 0, 0, 24, 63, 0, 96, 175, 62, 0, 232, 100, 59, 0, 0, 0, 0, 0, 0, 24, 63, 0, 160, 224, 62, 0, 232, 100, 59, 0, 0, 0, 0, 0, 96, 136, 63, 0, 128, 146, 62, 0, 232, 100, 59, 0, 160, 0, 191, 0, 224, 133, 63, 0, 128, 162, 190, 0, 0, 0, 0, 0, 160, 0, 191, 0, 0, 24, 63, 0, 128, 162, 190, 0, 0, 0, 0, 0, 160, 0, 191, 0, 0, 24, 63, 0, 96, 175, 62, 0, 0, 0, 0, 0, 160, 0, 191, 0, 224, 133, 63, 0, 160, 66, 62, 0, 0, 0, 0, 0, 128, 213, 190, 0, 224, 240, 61, 0, 64, 174, 63, 0, 232, 100, 60, 0, 32, 221, 190, 0, 32, 61, 62, 0, 128, 171, 63, 0, 232, 100, 60, 0, 0, 5, 191, 0, 96, 56, 62, 0, 192, 171, 63, 0, 232, 100, 60, 0, 192, 4, 191, 0, 32, 235, 61, 0, 128, 174, 63, 0, 232, 100, 60) +}, { "aabb": AABB(-0.50249, 0.000773809, -1.07979, 1.00499, 0.502212, 2.51351), -"array_data": PackedByteArray(5, 56, 86, 18, 81, 188, 0, 60, 127, 0, 0, 0, 5, 56, 10, 53, 161, 187, 0, 60, 127, 0, 0, 0, 5, 56, 10, 53, 242, 184, 0, 60, 127, 0, 0, 0, 5, 56, 86, 18, 224, 183, 0, 60, 127, 0, 0, 0, 247, 51, 253, 54, 149, 61, 0, 60, 1, 10, 126, 0, 0, 0, 6, 56, 149, 61, 0, 60, 1, 10, 126, 0, 0, 0, 86, 18, 188, 61, 0, 60, 1, 10, 126, 0, 247, 51, 86, 18, 188, 61, 0, 60, 1, 10, 126, 0, 247, 51, 86, 18, 188, 61, 0, 60, 123, 0, 28, 0, 5, 56, 86, 18, 123, 53, 0, 60, 123, 0, 28, 0, 209, 53, 242, 52, 158, 59, 0, 60, 123, 0, 28, 0, 175, 52, 242, 52, 255, 60, 0, 60, 123, 0, 28, 0, 5, 184, 86, 18, 81, 188, 0, 60, 130, 0, 0, 0, 5, 184, 86, 18, 224, 183, 0, 60, 130, 0, 0, 0, 5, 184, 10, 53, 242, 184, 0, 60, 130, 0, 0, 0, 5, 184, 10, 53, 161, 187, 0, 60, 130, 0, 0, 0, 247, 179, 253, 54, 149, 61, 0, 60, 255, 10, 126, 0, 247, 179, 86, 18, 188, 61, 0, 60, 255, 10, 126, 0, 0, 0, 86, 18, 188, 61, 0, 60, 255, 10, 126, 0, 0, 0, 6, 56, 149, 61, 0, 60, 255, 10, 126, 0, 247, 179, 86, 18, 188, 61, 0, 60, 133, 0, 28, 0, 175, 180, 242, 52, 255, 60, 0, 60, 133, 0, 28, 0, 209, 181, 242, 52, 158, 59, 0, 60, 133, 0, 28, 0, 5, 184, 86, 18, 123, 53, 0, 60, 133, 0, 28, 0), -"array_index_data": PackedByteArray(0, 0, 2, 0, 1, 0, 0, 0, 3, 0, 2, 0, 4, 0, 6, 0, 5, 0, 4, 0, 7, 0, 6, 0, 8, 0, 10, 0, 9, 0, 8, 0, 11, 0, 10, 0, 12, 0, 14, 0, 13, 0, 12, 0, 15, 0, 14, 0, 16, 0, 18, 0, 17, 0, 16, 0, 19, 0, 18, 0, 20, 0, 22, 0, 21, 0, 20, 0, 23, 0, 22, 0), -"blend_shape_data": [], -"format": 98051, +"format": 4099, "index_count": 36, -"material": ExtResource( 4 ), +"index_data": PackedByteArray(0, 0, 2, 0, 1, 0, 0, 0, 3, 0, 2, 0, 4, 0, 6, 0, 5, 0, 4, 0, 7, 0, 6, 0, 8, 0, 10, 0, 9, 0, 8, 0, 11, 0, 10, 0, 12, 0, 14, 0, 13, 0, 12, 0, 15, 0, 14, 0, 16, 0, 18, 0, 17, 0, 16, 0, 19, 0, 18, 0, 20, 0, 22, 0, 21, 0, 20, 0, 23, 0, 22, 0), +"material": ExtResource( "4" ), "name": "Material.003", -"primitive": 4, -"skeleton_aabb": [], -"vertex_count": 24 -} +"primitive": 3, +"vertex_count": 24, +"vertex_data": PackedByteArray(0, 160, 0, 63, 0, 192, 74, 58, 0, 32, 138, 191, 254, 3, 0, 0, 0, 160, 0, 63, 0, 64, 161, 62, 0, 32, 116, 191, 254, 3, 0, 0, 0, 160, 0, 63, 0, 64, 161, 62, 0, 64, 30, 191, 254, 3, 0, 0, 0, 160, 0, 63, 0, 192, 74, 58, 0, 0, 252, 190, 254, 3, 0, 0, 0, 224, 126, 62, 0, 160, 223, 62, 0, 160, 178, 63, 8, 64, 97, 63, 0, 0, 0, 0, 0, 192, 0, 63, 0, 160, 178, 63, 8, 64, 97, 63, 0, 0, 0, 0, 0, 192, 74, 58, 0, 128, 183, 63, 8, 64, 97, 63, 0, 224, 126, 62, 0, 192, 74, 58, 0, 128, 183, 63, 8, 64, 97, 63, 0, 224, 126, 62, 0, 192, 74, 58, 0, 128, 183, 63, 222, 3, 16, 14, 0, 160, 0, 63, 0, 192, 74, 58, 0, 96, 175, 62, 222, 3, 16, 14, 0, 32, 186, 62, 0, 64, 158, 62, 0, 192, 115, 63, 222, 3, 16, 14, 0, 224, 149, 62, 0, 64, 158, 62, 0, 224, 159, 63, 222, 3, 16, 14, 0, 160, 0, 191, 0, 192, 74, 58, 0, 32, 138, 191, 0, 0, 0, 0, 0, 160, 0, 191, 0, 192, 74, 58, 0, 0, 252, 190, 0, 0, 0, 0, 0, 160, 0, 191, 0, 64, 161, 62, 0, 64, 30, 191, 0, 0, 0, 0, 0, 160, 0, 191, 0, 64, 161, 62, 0, 32, 116, 191, 0, 0, 0, 0, 0, 224, 126, 190, 0, 160, 223, 62, 0, 160, 178, 63, 0, 64, 97, 63, 0, 224, 126, 190, 0, 192, 74, 58, 0, 128, 183, 63, 0, 64, 97, 63, 0, 0, 0, 0, 0, 192, 74, 58, 0, 128, 183, 63, 0, 64, 97, 63, 0, 0, 0, 0, 0, 192, 0, 63, 0, 160, 178, 63, 0, 64, 97, 63, 0, 224, 126, 190, 0, 192, 74, 58, 0, 128, 183, 63, 0, 0, 16, 14, 0, 224, 149, 190, 0, 64, 158, 62, 0, 224, 159, 63, 0, 0, 16, 14, 0, 32, 186, 190, 0, 64, 158, 62, 0, 192, 115, 63, 0, 0, 16, 14, 0, 160, 0, 191, 0, 192, 74, 58, 0, 96, 175, 62, 0, 0, 16, 14) +}] -[sub_resource type="BoxShape3D" id=6] -extents = Vector3(0.588119, 0.34815, 1.11998) +[sub_resource type="BoxShape3D" id="6"] +size = Vector3(1.17624, 0.6963, 2.23996) -[sub_resource type="ArrayMesh" id=7] +[sub_resource type="ArrayMesh" id="7"] resource_name = "Sphere" -surfaces/0 = { +_surfaces = [{ "aabb": AABB(-1, -5.59462, -0.866026, 2, 11.2628, 1.73205), -"array_data": PackedByteArray(0, 188, 171, 68, 0, 0, 0, 60, 132, 23, 0, 0, 168, 185, 96, 69, 0, 0, 0, 60, 160, 82, 0, 0, 168, 181, 96, 69, 230, 184, 0, 60, 208, 82, 173, 0, 255, 183, 171, 68, 237, 186, 0, 60, 194, 23, 148, 0, 168, 53, 96, 69, 230, 184, 0, 60, 48, 82, 173, 0, 0, 56, 171, 68, 237, 186, 0, 60, 62, 23, 148, 0, 168, 57, 96, 69, 0, 0, 0, 60, 96, 82, 0, 0, 0, 60, 171, 68, 0, 0, 0, 60, 124, 23, 0, 0, 168, 53, 96, 69, 230, 56, 0, 60, 48, 82, 83, 0, 255, 55, 171, 68, 237, 58, 0, 60, 62, 23, 107, 0, 168, 181, 96, 69, 230, 56, 0, 60, 208, 82, 83, 0, 0, 184, 171, 68, 237, 58, 0, 60, 194, 23, 107, 0, 0, 0, 171, 69, 0, 0, 0, 60, 0, 127, 0, 0, 255, 183, 152, 196, 237, 186, 0, 60, 194, 233, 148, 0, 0, 188, 152, 196, 0, 0, 0, 60, 132, 233, 0, 0, 0, 56, 152, 196, 237, 186, 0, 60, 62, 233, 148, 0, 0, 60, 152, 196, 0, 0, 0, 60, 124, 233, 0, 0, 255, 55, 152, 196, 237, 58, 0, 60, 62, 233, 107, 0, 0, 184, 152, 196, 237, 58, 0, 60, 194, 233, 107, 0, 168, 185, 77, 197, 0, 0, 0, 60, 160, 174, 0, 0, 168, 181, 77, 197, 230, 184, 0, 60, 208, 174, 173, 0, 168, 53, 77, 197, 230, 184, 0, 60, 48, 174, 173, 0, 168, 57, 77, 197, 0, 0, 0, 60, 96, 174, 0, 0, 168, 53, 77, 197, 230, 56, 0, 60, 48, 174, 83, 0, 168, 181, 77, 197, 230, 56, 0, 60, 208, 174, 83, 0, 0, 0, 152, 197, 0, 0, 0, 60, 0, 130, 0, 0), -"array_index_data": PackedByteArray(0, 0, 2, 0, 1, 0, 0, 0, 3, 0, 2, 0, 3, 0, 4, 0, 2, 0, 3, 0, 5, 0, 4, 0, 5, 0, 6, 0, 4, 0, 5, 0, 7, 0, 6, 0, 7, 0, 8, 0, 6, 0, 7, 0, 9, 0, 8, 0, 9, 0, 10, 0, 8, 0, 9, 0, 11, 0, 10, 0, 1, 0, 2, 0, 12, 0, 0, 0, 13, 0, 3, 0, 0, 0, 14, 0, 13, 0, 2, 0, 4, 0, 12, 0, 3, 0, 15, 0, 5, 0, 3, 0, 13, 0, 15, 0, 4, 0, 6, 0, 12, 0, 5, 0, 16, 0, 7, 0, 5, 0, 15, 0, 16, 0, 6, 0, 8, 0, 12, 0, 7, 0, 17, 0, 9, 0, 7, 0, 16, 0, 17, 0, 8, 0, 10, 0, 12, 0, 9, 0, 18, 0, 11, 0, 9, 0, 17, 0, 18, 0, 11, 0, 14, 0, 0, 0, 11, 0, 18, 0, 14, 0, 1, 0, 11, 0, 0, 0, 1, 0, 10, 0, 11, 0, 10, 0, 1, 0, 12, 0, 19, 0, 13, 0, 14, 0, 19, 0, 20, 0, 13, 0, 20, 0, 15, 0, 13, 0, 20, 0, 21, 0, 15, 0, 21, 0, 16, 0, 15, 0, 21, 0, 22, 0, 16, 0, 22, 0, 17, 0, 16, 0, 22, 0, 23, 0, 17, 0, 23, 0, 18, 0, 17, 0, 23, 0, 24, 0, 18, 0, 25, 0, 20, 0, 19, 0, 25, 0, 21, 0, 20, 0, 25, 0, 22, 0, 21, 0, 25, 0, 23, 0, 22, 0, 25, 0, 24, 0, 23, 0, 25, 0, 19, 0, 24, 0, 24, 0, 14, 0, 18, 0, 24, 0, 19, 0, 14, 0), -"blend_shape_data": [], -"format": 98051, +"format": 4099, "index_count": 144, -"primitive": 4, -"skeleton_aabb": [], -"vertex_count": 26 -} +"index_data": PackedByteArray(0, 0, 2, 0, 1, 0, 0, 0, 3, 0, 2, 0, 3, 0, 4, 0, 2, 0, 3, 0, 5, 0, 4, 0, 5, 0, 6, 0, 4, 0, 5, 0, 7, 0, 6, 0, 7, 0, 8, 0, 6, 0, 7, 0, 9, 0, 8, 0, 9, 0, 10, 0, 8, 0, 9, 0, 11, 0, 10, 0, 1, 0, 2, 0, 12, 0, 0, 0, 13, 0, 3, 0, 0, 0, 14, 0, 13, 0, 2, 0, 4, 0, 12, 0, 3, 0, 15, 0, 5, 0, 3, 0, 13, 0, 15, 0, 4, 0, 6, 0, 12, 0, 5, 0, 16, 0, 7, 0, 5, 0, 15, 0, 16, 0, 6, 0, 8, 0, 12, 0, 7, 0, 17, 0, 9, 0, 7, 0, 16, 0, 17, 0, 8, 0, 10, 0, 12, 0, 9, 0, 18, 0, 11, 0, 9, 0, 17, 0, 18, 0, 11, 0, 14, 0, 0, 0, 11, 0, 18, 0, 14, 0, 1, 0, 11, 0, 0, 0, 1, 0, 10, 0, 11, 0, 10, 0, 1, 0, 12, 0, 19, 0, 13, 0, 14, 0, 19, 0, 20, 0, 13, 0, 20, 0, 15, 0, 13, 0, 20, 0, 21, 0, 15, 0, 21, 0, 16, 0, 15, 0, 21, 0, 22, 0, 16, 0, 22, 0, 17, 0, 16, 0, 22, 0, 23, 0, 17, 0, 23, 0, 18, 0, 17, 0, 23, 0, 24, 0, 18, 0, 25, 0, 20, 0, 19, 0, 25, 0, 21, 0, 20, 0, 25, 0, 22, 0, 21, 0, 25, 0, 23, 0, 22, 0, 25, 0, 24, 0, 23, 0, 25, 0, 19, 0, 24, 0, 24, 0, 14, 0, 18, 0, 24, 0, 19, 0, 14, 0), +"primitive": 3, +"vertex_count": 26, +"vertex_data": PackedByteArray(0, 0, 128, 191, 0, 96, 149, 64, 0, 0, 0, 0, 0, 228, 2, 0, 0, 0, 53, 191, 0, 0, 172, 64, 0, 0, 0, 0, 0, 80, 10, 0, 0, 0, 181, 190, 0, 0, 172, 64, 0, 192, 28, 191, 0, 80, 10, 0, 0, 224, 255, 190, 0, 96, 149, 64, 0, 160, 93, 191, 0, 228, 2, 0, 0, 0, 181, 62, 0, 0, 172, 64, 0, 192, 28, 191, 130, 81, 10, 0, 0, 0, 0, 63, 0, 96, 149, 64, 0, 160, 93, 191, 243, 229, 2, 0, 0, 0, 53, 63, 0, 0, 172, 64, 0, 0, 0, 0, 5, 83, 10, 0, 0, 0, 128, 63, 0, 96, 149, 64, 0, 0, 0, 0, 230, 231, 2, 0, 0, 0, 181, 62, 0, 0, 172, 64, 0, 192, 28, 63, 130, 81, 202, 41, 0, 224, 255, 62, 0, 96, 149, 64, 0, 160, 93, 63, 243, 229, 210, 53, 0, 0, 181, 190, 0, 0, 172, 64, 0, 192, 28, 63, 0, 80, 202, 41, 0, 0, 0, 191, 0, 96, 149, 64, 0, 160, 93, 63, 0, 228, 210, 53, 0, 0, 0, 0, 0, 96, 181, 64, 0, 0, 0, 0, 0, 248, 15, 0, 0, 224, 255, 190, 0, 0, 147, 192, 0, 160, 93, 191, 0, 0, 0, 0, 0, 0, 128, 191, 0, 0, 147, 192, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 147, 192, 0, 160, 93, 191, 243, 1, 0, 0, 0, 0, 128, 63, 0, 0, 147, 192, 0, 0, 0, 0, 230, 3, 0, 0, 0, 224, 255, 62, 0, 0, 147, 192, 0, 160, 93, 63, 243, 1, 208, 53, 0, 0, 0, 191, 0, 0, 147, 192, 0, 160, 93, 63, 0, 0, 208, 53, 0, 0, 53, 191, 0, 160, 169, 192, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 181, 190, 0, 160, 169, 192, 0, 192, 28, 191, 0, 0, 0, 0, 0, 0, 181, 62, 0, 160, 169, 192, 0, 192, 28, 191, 130, 1, 0, 0, 0, 0, 53, 63, 0, 160, 169, 192, 0, 0, 0, 0, 5, 3, 0, 0, 0, 0, 181, 62, 0, 160, 169, 192, 0, 192, 28, 63, 130, 1, 192, 41, 0, 0, 181, 190, 0, 160, 169, 192, 0, 192, 28, 63, 0, 0, 192, 41, 0, 0, 0, 0, 0, 0, 179, 192, 0, 0, 0, 0, 0, 0, 0, 0) +}] -[sub_resource type="CapsuleShape3D" id=8] +[sub_resource type="CapsuleShape3D" id="8"] radius = 0.05 height = 0.3 -[sub_resource type="PhysicsMaterial" id=9] +[sub_resource type="PhysicsMaterial" id="9"] friction = 0.5 -[sub_resource type="ArrayMesh" id=10] -surfaces/0 = { +[sub_resource type="ArrayMesh" id="10"] +_surfaces = [{ "aabb": AABB(-0.0614569, -0.228035, -0.228035, 0.122914, 0.45608, 0.45607), -"array_data": PackedByteArray(221, 171, 76, 51, 210, 43, 0, 60, 130, 0, 0, 0, 221, 171, 76, 51, 210, 171, 0, 60, 130, 0, 0, 0, 221, 171, 87, 49, 87, 49, 0, 60, 130, 0, 0, 0, 221, 171, 87, 49, 87, 177, 0, 60, 130, 0, 0, 0, 221, 171, 210, 43, 76, 179, 0, 60, 130, 0, 0, 0, 221, 171, 210, 171, 76, 179, 0, 60, 130, 0, 0, 0, 221, 171, 87, 177, 87, 177, 0, 60, 130, 0, 0, 0, 221, 171, 76, 179, 210, 171, 0, 60, 130, 0, 0, 0, 221, 171, 76, 179, 210, 43, 0, 60, 130, 0, 0, 0, 221, 171, 87, 177, 87, 49, 0, 60, 130, 0, 0, 0, 221, 171, 210, 171, 76, 51, 0, 60, 130, 0, 0, 0, 221, 171, 210, 43, 76, 51, 0, 60, 130, 0, 0, 0, 221, 43, 76, 51, 210, 43, 0, 60, 127, 0, 0, 0, 221, 43, 87, 49, 87, 49, 0, 60, 127, 0, 0, 0, 221, 43, 76, 51, 210, 171, 0, 60, 127, 0, 0, 0, 221, 43, 210, 43, 76, 51, 0, 60, 127, 0, 0, 0, 221, 43, 210, 171, 76, 51, 0, 60, 127, 0, 0, 0, 221, 43, 87, 177, 87, 49, 0, 60, 127, 0, 0, 0, 221, 43, 76, 179, 210, 43, 0, 60, 127, 0, 0, 0, 221, 43, 76, 179, 210, 171, 0, 60, 127, 0, 0, 0, 221, 43, 87, 177, 87, 177, 0, 60, 127, 0, 0, 0, 221, 43, 210, 171, 76, 179, 0, 60, 127, 0, 0, 0, 221, 43, 210, 43, 76, 179, 0, 60, 127, 0, 0, 0, 221, 43, 87, 49, 87, 177, 0, 60, 127, 0, 0, 0, 221, 171, 87, 177, 87, 177, 0, 60, 0, 193, 147, 0, 221, 171, 210, 171, 76, 179, 0, 60, 0, 193, 147, 0, 221, 43, 210, 171, 76, 179, 0, 60, 0, 193, 147, 0, 221, 43, 87, 177, 87, 177, 0, 60, 0, 193, 147, 0, 221, 171, 210, 43, 76, 51, 0, 60, 0, 0, 126, 0, 221, 171, 210, 171, 76, 51, 0, 60, 0, 0, 126, 0, 221, 43, 210, 171, 76, 51, 0, 60, 0, 0, 126, 0, 221, 43, 210, 43, 76, 51, 0, 60, 0, 0, 126, 0, 221, 171, 210, 171, 76, 179, 0, 60, 0, 0, 129, 0, 221, 171, 210, 43, 76, 179, 0, 60, 0, 0, 129, 0, 221, 43, 210, 43, 76, 179, 0, 60, 0, 0, 129, 0, 221, 43, 210, 171, 76, 179, 0, 60, 0, 0, 129, 0, 221, 171, 210, 171, 76, 51, 0, 60, 0, 193, 109, 0, 221, 171, 87, 177, 87, 49, 0, 60, 0, 193, 109, 0, 221, 43, 87, 177, 87, 49, 0, 60, 0, 193, 109, 0, 221, 43, 210, 171, 76, 51, 0, 60, 0, 193, 109, 0, 221, 171, 210, 43, 76, 179, 0, 60, 0, 63, 147, 0, 221, 171, 87, 49, 87, 177, 0, 60, 0, 63, 147, 0, 221, 43, 87, 49, 87, 177, 0, 60, 0, 63, 147, 0, 221, 43, 210, 43, 76, 179, 0, 60, 0, 63, 147, 0, 221, 171, 87, 177, 87, 49, 0, 60, 0, 147, 63, 0, 221, 171, 76, 179, 210, 43, 0, 60, 0, 147, 63, 0, 221, 43, 76, 179, 210, 43, 0, 60, 0, 147, 63, 0, 221, 43, 87, 177, 87, 49, 0, 60, 0, 147, 63, 0, 221, 171, 87, 49, 87, 177, 0, 60, 0, 109, 193, 0, 221, 171, 76, 51, 210, 171, 0, 60, 0, 109, 193, 0, 221, 43, 76, 51, 210, 171, 0, 60, 0, 109, 193, 0, 221, 43, 87, 49, 87, 177, 0, 60, 0, 109, 193, 0, 221, 171, 76, 179, 210, 43, 0, 60, 0, 130, 0, 0, 221, 171, 76, 179, 210, 171, 0, 60, 0, 130, 0, 0, 221, 43, 76, 179, 210, 171, 0, 60, 0, 130, 0, 0, 221, 43, 76, 179, 210, 43, 0, 60, 0, 130, 0, 0, 221, 171, 76, 51, 210, 43, 0, 60, 0, 109, 63, 0, 221, 171, 87, 49, 87, 49, 0, 60, 0, 109, 63, 0, 221, 43, 87, 49, 87, 49, 0, 60, 0, 109, 63, 0, 221, 43, 76, 51, 210, 43, 0, 60, 0, 109, 63, 0, 221, 171, 76, 51, 210, 171, 0, 60, 0, 127, 0, 0, 221, 171, 76, 51, 210, 43, 0, 60, 0, 127, 0, 0, 221, 43, 76, 51, 210, 43, 0, 60, 0, 127, 0, 0, 221, 43, 76, 51, 210, 171, 0, 60, 0, 127, 0, 0, 221, 171, 76, 179, 210, 171, 0, 60, 0, 147, 193, 0, 221, 171, 87, 177, 87, 177, 0, 60, 0, 147, 193, 0, 221, 43, 87, 177, 87, 177, 0, 60, 0, 147, 193, 0, 221, 43, 76, 179, 210, 171, 0, 60, 0, 147, 193, 0, 221, 171, 87, 49, 87, 49, 0, 60, 0, 63, 109, 0, 221, 171, 210, 43, 76, 51, 0, 60, 0, 63, 109, 0, 221, 43, 210, 43, 76, 51, 0, 60, 0, 63, 109, 0, 221, 43, 87, 49, 87, 49, 0, 60, 0, 63, 109, 0), -"array_index_data": PackedByteArray(0, 0, 2, 0, 1, 0, 1, 0, 4, 0, 3, 0, 4, 0, 6, 0, 5, 0, 6, 0, 8, 0, 7, 0, 8, 0, 10, 0, 9, 0, 10, 0, 2, 0, 11, 0, 1, 0, 2, 0, 4, 0, 4, 0, 8, 0, 6, 0, 8, 0, 2, 0, 10, 0, 4, 0, 2, 0, 8, 0, 12, 0, 14, 0, 13, 0, 13, 0, 16, 0, 15, 0, 16, 0, 18, 0, 17, 0, 18, 0, 20, 0, 19, 0, 20, 0, 22, 0, 21, 0, 22, 0, 14, 0, 23, 0, 13, 0, 14, 0, 16, 0, 16, 0, 20, 0, 18, 0, 20, 0, 14, 0, 22, 0, 16, 0, 14, 0, 20, 0, 24, 0, 26, 0, 25, 0, 24, 0, 27, 0, 26, 0, 28, 0, 30, 0, 29, 0, 28, 0, 31, 0, 30, 0, 32, 0, 34, 0, 33, 0, 32, 0, 35, 0, 34, 0, 36, 0, 38, 0, 37, 0, 36, 0, 39, 0, 38, 0, 40, 0, 42, 0, 41, 0, 40, 0, 43, 0, 42, 0, 44, 0, 46, 0, 45, 0, 44, 0, 47, 0, 46, 0, 48, 0, 50, 0, 49, 0, 48, 0, 51, 0, 50, 0, 52, 0, 54, 0, 53, 0, 52, 0, 55, 0, 54, 0, 56, 0, 58, 0, 57, 0, 56, 0, 59, 0, 58, 0, 60, 0, 62, 0, 61, 0, 60, 0, 63, 0, 62, 0, 64, 0, 66, 0, 65, 0, 64, 0, 67, 0, 66, 0, 68, 0, 70, 0, 69, 0, 68, 0, 71, 0, 70, 0), -"blend_shape_data": [], -"format": 98051, +"format": 4099, "index_count": 132, -"material": ExtResource( 6 ), +"index_data": PackedByteArray(0, 0, 2, 0, 1, 0, 1, 0, 4, 0, 3, 0, 4, 0, 6, 0, 5, 0, 6, 0, 8, 0, 7, 0, 8, 0, 10, 0, 9, 0, 10, 0, 2, 0, 11, 0, 1, 0, 2, 0, 4, 0, 4, 0, 8, 0, 6, 0, 8, 0, 2, 0, 10, 0, 4, 0, 2, 0, 8, 0, 12, 0, 14, 0, 13, 0, 13, 0, 16, 0, 15, 0, 16, 0, 18, 0, 17, 0, 18, 0, 20, 0, 19, 0, 20, 0, 22, 0, 21, 0, 22, 0, 14, 0, 23, 0, 13, 0, 14, 0, 16, 0, 16, 0, 20, 0, 18, 0, 20, 0, 14, 0, 22, 0, 16, 0, 14, 0, 20, 0, 24, 0, 26, 0, 25, 0, 24, 0, 27, 0, 26, 0, 28, 0, 30, 0, 29, 0, 28, 0, 31, 0, 30, 0, 32, 0, 34, 0, 33, 0, 32, 0, 35, 0, 34, 0, 36, 0, 38, 0, 37, 0, 36, 0, 39, 0, 38, 0, 40, 0, 42, 0, 41, 0, 40, 0, 43, 0, 42, 0, 44, 0, 46, 0, 45, 0, 44, 0, 47, 0, 46, 0, 48, 0, 50, 0, 49, 0, 48, 0, 51, 0, 50, 0, 52, 0, 54, 0, 53, 0, 52, 0, 55, 0, 54, 0, 56, 0, 58, 0, 57, 0, 56, 0, 59, 0, 58, 0, 60, 0, 62, 0, 61, 0, 60, 0, 63, 0, 62, 0, 64, 0, 66, 0, 65, 0, 64, 0, 67, 0, 66, 0, 68, 0, 70, 0, 69, 0, 68, 0, 71, 0, 70, 0), +"material": ExtResource( "6" ), "name": "Material.001", -"primitive": 4, -"skeleton_aabb": [], -"vertex_count": 72 -} +"primitive": 3, +"vertex_count": 72, +"vertex_data": PackedByteArray(0, 160, 123, 189, 0, 128, 105, 62, 0, 64, 122, 61, 0, 0, 0, 0, 0, 160, 123, 189, 0, 128, 105, 62, 0, 64, 122, 189, 0, 0, 0, 0, 0, 160, 123, 189, 0, 224, 42, 62, 0, 224, 42, 62, 0, 0, 0, 0, 0, 160, 123, 189, 0, 224, 42, 62, 0, 224, 42, 190, 0, 0, 0, 0, 0, 160, 123, 189, 0, 64, 122, 61, 0, 128, 105, 190, 0, 0, 0, 0, 0, 160, 123, 189, 0, 64, 122, 189, 0, 128, 105, 190, 0, 0, 0, 0, 0, 160, 123, 189, 0, 224, 42, 190, 0, 224, 42, 190, 0, 0, 0, 0, 0, 160, 123, 189, 0, 128, 105, 190, 0, 64, 122, 189, 0, 0, 0, 0, 0, 160, 123, 189, 0, 128, 105, 190, 0, 64, 122, 61, 0, 0, 0, 0, 0, 160, 123, 189, 0, 224, 42, 190, 0, 224, 42, 62, 0, 0, 0, 0, 0, 160, 123, 189, 0, 64, 122, 189, 0, 128, 105, 62, 0, 0, 0, 0, 0, 160, 123, 189, 0, 64, 122, 61, 0, 128, 105, 62, 0, 0, 0, 0, 0, 160, 123, 61, 0, 128, 105, 62, 0, 64, 122, 61, 254, 3, 0, 0, 0, 160, 123, 61, 0, 224, 42, 62, 0, 224, 42, 62, 254, 3, 0, 0, 0, 160, 123, 61, 0, 128, 105, 62, 0, 64, 122, 189, 254, 3, 0, 0, 0, 160, 123, 61, 0, 64, 122, 61, 0, 128, 105, 62, 254, 3, 0, 0, 0, 160, 123, 61, 0, 64, 122, 189, 0, 128, 105, 62, 254, 3, 0, 0, 0, 160, 123, 61, 0, 224, 42, 190, 0, 224, 42, 62, 254, 3, 0, 0, 0, 160, 123, 61, 0, 128, 105, 190, 0, 64, 122, 61, 254, 3, 0, 0, 0, 160, 123, 61, 0, 128, 105, 190, 0, 64, 122, 189, 254, 3, 0, 0, 0, 160, 123, 61, 0, 224, 42, 190, 0, 224, 42, 190, 254, 3, 0, 0, 0, 160, 123, 61, 0, 64, 122, 189, 0, 128, 105, 190, 254, 3, 0, 0, 0, 160, 123, 61, 0, 64, 122, 61, 0, 128, 105, 190, 254, 3, 0, 0, 0, 160, 123, 61, 0, 224, 42, 62, 0, 224, 42, 190, 254, 3, 0, 0, 0, 160, 123, 189, 0, 224, 42, 190, 0, 224, 42, 190, 0, 0, 0, 0, 0, 160, 123, 189, 0, 64, 122, 189, 0, 128, 105, 190, 0, 0, 0, 0, 0, 160, 123, 61, 0, 64, 122, 189, 0, 128, 105, 190, 0, 0, 0, 0, 0, 160, 123, 61, 0, 224, 42, 190, 0, 224, 42, 190, 0, 0, 0, 0, 0, 160, 123, 189, 0, 64, 122, 61, 0, 128, 105, 62, 0, 0, 96, 63, 0, 160, 123, 189, 0, 64, 122, 189, 0, 128, 105, 62, 0, 0, 96, 63, 0, 160, 123, 61, 0, 64, 122, 189, 0, 128, 105, 62, 0, 0, 96, 63, 0, 160, 123, 61, 0, 64, 122, 61, 0, 128, 105, 62, 0, 0, 96, 63, 0, 160, 123, 189, 0, 64, 122, 189, 0, 128, 105, 190, 0, 0, 0, 0, 0, 160, 123, 189, 0, 64, 122, 61, 0, 128, 105, 190, 0, 0, 0, 0, 0, 160, 123, 61, 0, 64, 122, 61, 0, 128, 105, 190, 0, 0, 0, 0, 0, 160, 123, 61, 0, 64, 122, 189, 0, 128, 105, 190, 0, 0, 0, 0, 0, 160, 123, 189, 0, 64, 122, 189, 0, 128, 105, 62, 0, 0, 224, 54, 0, 160, 123, 189, 0, 224, 42, 190, 0, 224, 42, 62, 0, 0, 224, 54, 0, 160, 123, 61, 0, 224, 42, 190, 0, 224, 42, 62, 0, 0, 224, 54, 0, 160, 123, 61, 0, 64, 122, 189, 0, 128, 105, 62, 0, 0, 224, 54, 0, 160, 123, 189, 0, 64, 122, 61, 0, 128, 105, 190, 0, 236, 7, 0, 0, 160, 123, 189, 0, 224, 42, 62, 0, 224, 42, 190, 0, 236, 7, 0, 0, 160, 123, 61, 0, 224, 42, 62, 0, 224, 42, 190, 0, 236, 7, 0, 0, 160, 123, 61, 0, 64, 122, 61, 0, 128, 105, 190, 0, 236, 7, 0, 0, 160, 123, 189, 0, 224, 42, 190, 0, 224, 42, 62, 0, 0, 176, 31, 0, 160, 123, 189, 0, 128, 105, 190, 0, 64, 122, 61, 0, 0, 176, 31, 0, 160, 123, 61, 0, 128, 105, 190, 0, 64, 122, 61, 0, 0, 176, 31, 0, 160, 123, 61, 0, 224, 42, 190, 0, 224, 42, 62, 0, 0, 176, 31, 0, 160, 123, 189, 0, 224, 42, 62, 0, 224, 42, 190, 0, 184, 13, 0, 0, 160, 123, 189, 0, 128, 105, 62, 0, 64, 122, 189, 0, 184, 13, 0, 0, 160, 123, 61, 0, 128, 105, 62, 0, 64, 122, 189, 0, 184, 13, 0, 0, 160, 123, 61, 0, 224, 42, 62, 0, 224, 42, 190, 0, 184, 13, 0, 0, 160, 123, 189, 0, 128, 105, 190, 0, 64, 122, 61, 0, 0, 0, 0, 0, 160, 123, 189, 0, 128, 105, 190, 0, 64, 122, 189, 0, 0, 0, 0, 0, 160, 123, 61, 0, 128, 105, 190, 0, 64, 122, 189, 0, 0, 0, 0, 0, 160, 123, 61, 0, 128, 105, 190, 0, 64, 122, 61, 0, 0, 0, 0, 0, 160, 123, 189, 0, 128, 105, 62, 0, 64, 122, 61, 0, 184, 189, 31, 0, 160, 123, 189, 0, 224, 42, 62, 0, 224, 42, 62, 0, 184, 189, 31, 0, 160, 123, 61, 0, 224, 42, 62, 0, 224, 42, 62, 0, 184, 189, 31, 0, 160, 123, 61, 0, 128, 105, 62, 0, 64, 122, 61, 0, 184, 189, 31, 0, 160, 123, 189, 0, 128, 105, 62, 0, 64, 122, 189, 0, 248, 15, 0, 0, 160, 123, 189, 0, 128, 105, 62, 0, 64, 122, 61, 0, 248, 15, 0, 0, 160, 123, 61, 0, 128, 105, 62, 0, 64, 122, 61, 0, 248, 15, 0, 0, 160, 123, 61, 0, 128, 105, 62, 0, 64, 122, 189, 0, 248, 15, 0, 0, 160, 123, 189, 0, 128, 105, 190, 0, 64, 122, 189, 0, 0, 0, 0, 0, 160, 123, 189, 0, 224, 42, 190, 0, 224, 42, 190, 0, 0, 0, 0, 0, 160, 123, 61, 0, 224, 42, 190, 0, 224, 42, 190, 0, 0, 0, 0, 0, 160, 123, 61, 0, 128, 105, 190, 0, 64, 122, 189, 0, 0, 0, 0, 0, 160, 123, 189, 0, 224, 42, 62, 0, 224, 42, 62, 0, 236, 231, 54, 0, 160, 123, 189, 0, 64, 122, 61, 0, 128, 105, 62, 0, 236, 231, 54, 0, 160, 123, 61, 0, 64, 122, 61, 0, 128, 105, 62, 0, 236, 231, 54, 0, 160, 123, 61, 0, 224, 42, 62, 0, 224, 42, 62, 0, 236, 231, 54) +}] -[sub_resource type="ArrayMesh" id=11] -surfaces/0 = { +[sub_resource type="ArrayMesh" id="11"] +_surfaces = [{ "aabb": AABB(-0.0614569, -0.228035, -0.228035, 0.122914, 0.45608, 0.45607), -"array_data": PackedByteArray(221, 171, 76, 51, 210, 43, 0, 60, 130, 0, 0, 0, 221, 171, 76, 51, 210, 171, 0, 60, 130, 0, 0, 0, 221, 171, 87, 49, 87, 49, 0, 60, 130, 0, 0, 0, 221, 171, 87, 49, 87, 177, 0, 60, 130, 0, 0, 0, 221, 171, 210, 43, 76, 179, 0, 60, 130, 0, 0, 0, 221, 171, 210, 171, 76, 179, 0, 60, 130, 0, 0, 0, 221, 171, 87, 177, 87, 177, 0, 60, 130, 0, 0, 0, 221, 171, 76, 179, 210, 171, 0, 60, 130, 0, 0, 0, 221, 171, 76, 179, 210, 43, 0, 60, 130, 0, 0, 0, 221, 171, 87, 177, 87, 49, 0, 60, 130, 0, 0, 0, 221, 171, 210, 171, 76, 51, 0, 60, 130, 0, 0, 0, 221, 171, 210, 43, 76, 51, 0, 60, 130, 0, 0, 0, 221, 43, 76, 51, 210, 43, 0, 60, 127, 0, 0, 0, 221, 43, 87, 49, 87, 49, 0, 60, 127, 0, 0, 0, 221, 43, 76, 51, 210, 171, 0, 60, 127, 0, 0, 0, 221, 43, 210, 43, 76, 51, 0, 60, 127, 0, 0, 0, 221, 43, 210, 171, 76, 51, 0, 60, 127, 0, 0, 0, 221, 43, 87, 177, 87, 49, 0, 60, 127, 0, 0, 0, 221, 43, 76, 179, 210, 43, 0, 60, 127, 0, 0, 0, 221, 43, 76, 179, 210, 171, 0, 60, 127, 0, 0, 0, 221, 43, 87, 177, 87, 177, 0, 60, 127, 0, 0, 0, 221, 43, 210, 171, 76, 179, 0, 60, 127, 0, 0, 0, 221, 43, 210, 43, 76, 179, 0, 60, 127, 0, 0, 0, 221, 43, 87, 49, 87, 177, 0, 60, 127, 0, 0, 0, 221, 171, 87, 177, 87, 177, 0, 60, 0, 193, 147, 0, 221, 171, 210, 171, 76, 179, 0, 60, 0, 193, 147, 0, 221, 43, 210, 171, 76, 179, 0, 60, 0, 193, 147, 0, 221, 43, 87, 177, 87, 177, 0, 60, 0, 193, 147, 0, 221, 171, 210, 43, 76, 51, 0, 60, 0, 0, 126, 0, 221, 171, 210, 171, 76, 51, 0, 60, 0, 0, 126, 0, 221, 43, 210, 171, 76, 51, 0, 60, 0, 0, 126, 0, 221, 43, 210, 43, 76, 51, 0, 60, 0, 0, 126, 0, 221, 171, 210, 171, 76, 179, 0, 60, 0, 0, 129, 0, 221, 171, 210, 43, 76, 179, 0, 60, 0, 0, 129, 0, 221, 43, 210, 43, 76, 179, 0, 60, 0, 0, 129, 0, 221, 43, 210, 171, 76, 179, 0, 60, 0, 0, 129, 0, 221, 171, 210, 171, 76, 51, 0, 60, 0, 193, 109, 0, 221, 171, 87, 177, 87, 49, 0, 60, 0, 193, 109, 0, 221, 43, 87, 177, 87, 49, 0, 60, 0, 193, 109, 0, 221, 43, 210, 171, 76, 51, 0, 60, 0, 193, 109, 0, 221, 171, 210, 43, 76, 179, 0, 60, 0, 63, 147, 0, 221, 171, 87, 49, 87, 177, 0, 60, 0, 63, 147, 0, 221, 43, 87, 49, 87, 177, 0, 60, 0, 63, 147, 0, 221, 43, 210, 43, 76, 179, 0, 60, 0, 63, 147, 0, 221, 171, 87, 177, 87, 49, 0, 60, 0, 147, 63, 0, 221, 171, 76, 179, 210, 43, 0, 60, 0, 147, 63, 0, 221, 43, 76, 179, 210, 43, 0, 60, 0, 147, 63, 0, 221, 43, 87, 177, 87, 49, 0, 60, 0, 147, 63, 0, 221, 171, 87, 49, 87, 177, 0, 60, 0, 109, 193, 0, 221, 171, 76, 51, 210, 171, 0, 60, 0, 109, 193, 0, 221, 43, 76, 51, 210, 171, 0, 60, 0, 109, 193, 0, 221, 43, 87, 49, 87, 177, 0, 60, 0, 109, 193, 0, 221, 171, 76, 179, 210, 43, 0, 60, 0, 130, 0, 0, 221, 171, 76, 179, 210, 171, 0, 60, 0, 130, 0, 0, 221, 43, 76, 179, 210, 171, 0, 60, 0, 130, 0, 0, 221, 43, 76, 179, 210, 43, 0, 60, 0, 130, 0, 0, 221, 171, 76, 51, 210, 43, 0, 60, 0, 109, 63, 0, 221, 171, 87, 49, 87, 49, 0, 60, 0, 109, 63, 0, 221, 43, 87, 49, 87, 49, 0, 60, 0, 109, 63, 0, 221, 43, 76, 51, 210, 43, 0, 60, 0, 109, 63, 0, 221, 171, 76, 51, 210, 171, 0, 60, 0, 127, 0, 0, 221, 171, 76, 51, 210, 43, 0, 60, 0, 127, 0, 0, 221, 43, 76, 51, 210, 43, 0, 60, 0, 127, 0, 0, 221, 43, 76, 51, 210, 171, 0, 60, 0, 127, 0, 0, 221, 171, 76, 179, 210, 171, 0, 60, 0, 147, 193, 0, 221, 171, 87, 177, 87, 177, 0, 60, 0, 147, 193, 0, 221, 43, 87, 177, 87, 177, 0, 60, 0, 147, 193, 0, 221, 43, 76, 179, 210, 171, 0, 60, 0, 147, 193, 0, 221, 171, 87, 49, 87, 49, 0, 60, 0, 63, 109, 0, 221, 171, 210, 43, 76, 51, 0, 60, 0, 63, 109, 0, 221, 43, 210, 43, 76, 51, 0, 60, 0, 63, 109, 0, 221, 43, 87, 49, 87, 49, 0, 60, 0, 63, 109, 0), -"array_index_data": PackedByteArray(0, 0, 2, 0, 1, 0, 1, 0, 4, 0, 3, 0, 4, 0, 6, 0, 5, 0, 6, 0, 8, 0, 7, 0, 8, 0, 10, 0, 9, 0, 10, 0, 2, 0, 11, 0, 1, 0, 2, 0, 4, 0, 4, 0, 8, 0, 6, 0, 8, 0, 2, 0, 10, 0, 4, 0, 2, 0, 8, 0, 12, 0, 14, 0, 13, 0, 13, 0, 16, 0, 15, 0, 16, 0, 18, 0, 17, 0, 18, 0, 20, 0, 19, 0, 20, 0, 22, 0, 21, 0, 22, 0, 14, 0, 23, 0, 13, 0, 14, 0, 16, 0, 16, 0, 20, 0, 18, 0, 20, 0, 14, 0, 22, 0, 16, 0, 14, 0, 20, 0, 24, 0, 26, 0, 25, 0, 24, 0, 27, 0, 26, 0, 28, 0, 30, 0, 29, 0, 28, 0, 31, 0, 30, 0, 32, 0, 34, 0, 33, 0, 32, 0, 35, 0, 34, 0, 36, 0, 38, 0, 37, 0, 36, 0, 39, 0, 38, 0, 40, 0, 42, 0, 41, 0, 40, 0, 43, 0, 42, 0, 44, 0, 46, 0, 45, 0, 44, 0, 47, 0, 46, 0, 48, 0, 50, 0, 49, 0, 48, 0, 51, 0, 50, 0, 52, 0, 54, 0, 53, 0, 52, 0, 55, 0, 54, 0, 56, 0, 58, 0, 57, 0, 56, 0, 59, 0, 58, 0, 60, 0, 62, 0, 61, 0, 60, 0, 63, 0, 62, 0, 64, 0, 66, 0, 65, 0, 64, 0, 67, 0, 66, 0, 68, 0, 70, 0, 69, 0, 68, 0, 71, 0, 70, 0), -"blend_shape_data": [], -"format": 98051, +"format": 4099, "index_count": 132, -"material": ExtResource( 6 ), +"index_data": PackedByteArray(0, 0, 2, 0, 1, 0, 1, 0, 4, 0, 3, 0, 4, 0, 6, 0, 5, 0, 6, 0, 8, 0, 7, 0, 8, 0, 10, 0, 9, 0, 10, 0, 2, 0, 11, 0, 1, 0, 2, 0, 4, 0, 4, 0, 8, 0, 6, 0, 8, 0, 2, 0, 10, 0, 4, 0, 2, 0, 8, 0, 12, 0, 14, 0, 13, 0, 13, 0, 16, 0, 15, 0, 16, 0, 18, 0, 17, 0, 18, 0, 20, 0, 19, 0, 20, 0, 22, 0, 21, 0, 22, 0, 14, 0, 23, 0, 13, 0, 14, 0, 16, 0, 16, 0, 20, 0, 18, 0, 20, 0, 14, 0, 22, 0, 16, 0, 14, 0, 20, 0, 24, 0, 26, 0, 25, 0, 24, 0, 27, 0, 26, 0, 28, 0, 30, 0, 29, 0, 28, 0, 31, 0, 30, 0, 32, 0, 34, 0, 33, 0, 32, 0, 35, 0, 34, 0, 36, 0, 38, 0, 37, 0, 36, 0, 39, 0, 38, 0, 40, 0, 42, 0, 41, 0, 40, 0, 43, 0, 42, 0, 44, 0, 46, 0, 45, 0, 44, 0, 47, 0, 46, 0, 48, 0, 50, 0, 49, 0, 48, 0, 51, 0, 50, 0, 52, 0, 54, 0, 53, 0, 52, 0, 55, 0, 54, 0, 56, 0, 58, 0, 57, 0, 56, 0, 59, 0, 58, 0, 60, 0, 62, 0, 61, 0, 60, 0, 63, 0, 62, 0, 64, 0, 66, 0, 65, 0, 64, 0, 67, 0, 66, 0, 68, 0, 70, 0, 69, 0, 68, 0, 71, 0, 70, 0), +"material": ExtResource( "6" ), "name": "Material.001", -"primitive": 4, -"skeleton_aabb": [], -"vertex_count": 72 -} +"primitive": 3, +"vertex_count": 72, +"vertex_data": PackedByteArray(0, 160, 123, 189, 0, 128, 105, 62, 0, 64, 122, 61, 0, 0, 0, 0, 0, 160, 123, 189, 0, 128, 105, 62, 0, 64, 122, 189, 0, 0, 0, 0, 0, 160, 123, 189, 0, 224, 42, 62, 0, 224, 42, 62, 0, 0, 0, 0, 0, 160, 123, 189, 0, 224, 42, 62, 0, 224, 42, 190, 0, 0, 0, 0, 0, 160, 123, 189, 0, 64, 122, 61, 0, 128, 105, 190, 0, 0, 0, 0, 0, 160, 123, 189, 0, 64, 122, 189, 0, 128, 105, 190, 0, 0, 0, 0, 0, 160, 123, 189, 0, 224, 42, 190, 0, 224, 42, 190, 0, 0, 0, 0, 0, 160, 123, 189, 0, 128, 105, 190, 0, 64, 122, 189, 0, 0, 0, 0, 0, 160, 123, 189, 0, 128, 105, 190, 0, 64, 122, 61, 0, 0, 0, 0, 0, 160, 123, 189, 0, 224, 42, 190, 0, 224, 42, 62, 0, 0, 0, 0, 0, 160, 123, 189, 0, 64, 122, 189, 0, 128, 105, 62, 0, 0, 0, 0, 0, 160, 123, 189, 0, 64, 122, 61, 0, 128, 105, 62, 0, 0, 0, 0, 0, 160, 123, 61, 0, 128, 105, 62, 0, 64, 122, 61, 254, 3, 0, 0, 0, 160, 123, 61, 0, 224, 42, 62, 0, 224, 42, 62, 254, 3, 0, 0, 0, 160, 123, 61, 0, 128, 105, 62, 0, 64, 122, 189, 254, 3, 0, 0, 0, 160, 123, 61, 0, 64, 122, 61, 0, 128, 105, 62, 254, 3, 0, 0, 0, 160, 123, 61, 0, 64, 122, 189, 0, 128, 105, 62, 254, 3, 0, 0, 0, 160, 123, 61, 0, 224, 42, 190, 0, 224, 42, 62, 254, 3, 0, 0, 0, 160, 123, 61, 0, 128, 105, 190, 0, 64, 122, 61, 254, 3, 0, 0, 0, 160, 123, 61, 0, 128, 105, 190, 0, 64, 122, 189, 254, 3, 0, 0, 0, 160, 123, 61, 0, 224, 42, 190, 0, 224, 42, 190, 254, 3, 0, 0, 0, 160, 123, 61, 0, 64, 122, 189, 0, 128, 105, 190, 254, 3, 0, 0, 0, 160, 123, 61, 0, 64, 122, 61, 0, 128, 105, 190, 254, 3, 0, 0, 0, 160, 123, 61, 0, 224, 42, 62, 0, 224, 42, 190, 254, 3, 0, 0, 0, 160, 123, 189, 0, 224, 42, 190, 0, 224, 42, 190, 0, 0, 0, 0, 0, 160, 123, 189, 0, 64, 122, 189, 0, 128, 105, 190, 0, 0, 0, 0, 0, 160, 123, 61, 0, 64, 122, 189, 0, 128, 105, 190, 0, 0, 0, 0, 0, 160, 123, 61, 0, 224, 42, 190, 0, 224, 42, 190, 0, 0, 0, 0, 0, 160, 123, 189, 0, 64, 122, 61, 0, 128, 105, 62, 0, 0, 96, 63, 0, 160, 123, 189, 0, 64, 122, 189, 0, 128, 105, 62, 0, 0, 96, 63, 0, 160, 123, 61, 0, 64, 122, 189, 0, 128, 105, 62, 0, 0, 96, 63, 0, 160, 123, 61, 0, 64, 122, 61, 0, 128, 105, 62, 0, 0, 96, 63, 0, 160, 123, 189, 0, 64, 122, 189, 0, 128, 105, 190, 0, 0, 0, 0, 0, 160, 123, 189, 0, 64, 122, 61, 0, 128, 105, 190, 0, 0, 0, 0, 0, 160, 123, 61, 0, 64, 122, 61, 0, 128, 105, 190, 0, 0, 0, 0, 0, 160, 123, 61, 0, 64, 122, 189, 0, 128, 105, 190, 0, 0, 0, 0, 0, 160, 123, 189, 0, 64, 122, 189, 0, 128, 105, 62, 0, 0, 224, 54, 0, 160, 123, 189, 0, 224, 42, 190, 0, 224, 42, 62, 0, 0, 224, 54, 0, 160, 123, 61, 0, 224, 42, 190, 0, 224, 42, 62, 0, 0, 224, 54, 0, 160, 123, 61, 0, 64, 122, 189, 0, 128, 105, 62, 0, 0, 224, 54, 0, 160, 123, 189, 0, 64, 122, 61, 0, 128, 105, 190, 0, 236, 7, 0, 0, 160, 123, 189, 0, 224, 42, 62, 0, 224, 42, 190, 0, 236, 7, 0, 0, 160, 123, 61, 0, 224, 42, 62, 0, 224, 42, 190, 0, 236, 7, 0, 0, 160, 123, 61, 0, 64, 122, 61, 0, 128, 105, 190, 0, 236, 7, 0, 0, 160, 123, 189, 0, 224, 42, 190, 0, 224, 42, 62, 0, 0, 176, 31, 0, 160, 123, 189, 0, 128, 105, 190, 0, 64, 122, 61, 0, 0, 176, 31, 0, 160, 123, 61, 0, 128, 105, 190, 0, 64, 122, 61, 0, 0, 176, 31, 0, 160, 123, 61, 0, 224, 42, 190, 0, 224, 42, 62, 0, 0, 176, 31, 0, 160, 123, 189, 0, 224, 42, 62, 0, 224, 42, 190, 0, 184, 13, 0, 0, 160, 123, 189, 0, 128, 105, 62, 0, 64, 122, 189, 0, 184, 13, 0, 0, 160, 123, 61, 0, 128, 105, 62, 0, 64, 122, 189, 0, 184, 13, 0, 0, 160, 123, 61, 0, 224, 42, 62, 0, 224, 42, 190, 0, 184, 13, 0, 0, 160, 123, 189, 0, 128, 105, 190, 0, 64, 122, 61, 0, 0, 0, 0, 0, 160, 123, 189, 0, 128, 105, 190, 0, 64, 122, 189, 0, 0, 0, 0, 0, 160, 123, 61, 0, 128, 105, 190, 0, 64, 122, 189, 0, 0, 0, 0, 0, 160, 123, 61, 0, 128, 105, 190, 0, 64, 122, 61, 0, 0, 0, 0, 0, 160, 123, 189, 0, 128, 105, 62, 0, 64, 122, 61, 0, 184, 189, 31, 0, 160, 123, 189, 0, 224, 42, 62, 0, 224, 42, 62, 0, 184, 189, 31, 0, 160, 123, 61, 0, 224, 42, 62, 0, 224, 42, 62, 0, 184, 189, 31, 0, 160, 123, 61, 0, 128, 105, 62, 0, 64, 122, 61, 0, 184, 189, 31, 0, 160, 123, 189, 0, 128, 105, 62, 0, 64, 122, 189, 0, 248, 15, 0, 0, 160, 123, 189, 0, 128, 105, 62, 0, 64, 122, 61, 0, 248, 15, 0, 0, 160, 123, 61, 0, 128, 105, 62, 0, 64, 122, 61, 0, 248, 15, 0, 0, 160, 123, 61, 0, 128, 105, 62, 0, 64, 122, 189, 0, 248, 15, 0, 0, 160, 123, 189, 0, 128, 105, 190, 0, 64, 122, 189, 0, 0, 0, 0, 0, 160, 123, 189, 0, 224, 42, 190, 0, 224, 42, 190, 0, 0, 0, 0, 0, 160, 123, 61, 0, 224, 42, 190, 0, 224, 42, 190, 0, 0, 0, 0, 0, 160, 123, 61, 0, 128, 105, 190, 0, 64, 122, 189, 0, 0, 0, 0, 0, 160, 123, 189, 0, 224, 42, 62, 0, 224, 42, 62, 0, 236, 231, 54, 0, 160, 123, 189, 0, 64, 122, 61, 0, 128, 105, 62, 0, 236, 231, 54, 0, 160, 123, 61, 0, 64, 122, 61, 0, 128, 105, 62, 0, 236, 231, 54, 0, 160, 123, 61, 0, 224, 42, 62, 0, 224, 42, 62, 0, 236, 231, 54) +}] -[sub_resource type="ArrayMesh" id=12] -surfaces/0 = { +[sub_resource type="ArrayMesh" id="12"] +_surfaces = [{ "aabb": AABB(-0.061457, -0.228035, -0.228035, 0.122924, 0.45608, 0.45607), -"array_data": PackedByteArray(221, 43, 76, 51, 210, 43, 0, 60, 127, 0, 0, 0, 221, 43, 87, 49, 87, 49, 0, 60, 127, 0, 0, 0, 221, 43, 76, 51, 210, 171, 0, 60, 127, 0, 0, 0, 221, 43, 210, 43, 76, 51, 0, 60, 127, 0, 0, 0, 221, 43, 210, 171, 76, 51, 0, 60, 127, 0, 0, 0, 221, 43, 87, 177, 87, 49, 0, 60, 127, 0, 0, 0, 221, 43, 76, 179, 210, 43, 0, 60, 127, 0, 0, 0, 221, 43, 76, 179, 210, 171, 0, 60, 127, 0, 0, 0, 221, 43, 87, 177, 87, 177, 0, 60, 127, 0, 0, 0, 221, 43, 210, 171, 76, 179, 0, 60, 127, 0, 0, 0, 221, 43, 210, 43, 76, 179, 0, 60, 127, 0, 0, 0, 221, 43, 87, 49, 87, 177, 0, 60, 127, 0, 0, 0, 221, 171, 76, 51, 210, 43, 0, 60, 130, 0, 0, 0, 221, 171, 76, 51, 210, 171, 0, 60, 130, 0, 0, 0, 221, 171, 87, 49, 87, 49, 0, 60, 130, 0, 0, 0, 221, 171, 87, 49, 87, 177, 0, 60, 130, 0, 0, 0, 221, 171, 210, 43, 76, 179, 0, 60, 130, 0, 0, 0, 221, 171, 210, 171, 76, 179, 0, 60, 130, 0, 0, 0, 221, 171, 87, 177, 87, 177, 0, 60, 130, 0, 0, 0, 221, 171, 76, 179, 210, 171, 0, 60, 130, 0, 0, 0, 221, 171, 76, 179, 210, 43, 0, 60, 130, 0, 0, 0, 221, 171, 87, 177, 87, 49, 0, 60, 130, 0, 0, 0, 221, 171, 210, 171, 76, 51, 0, 60, 130, 0, 0, 0, 221, 171, 210, 43, 76, 51, 0, 60, 130, 0, 0, 0, 221, 43, 87, 177, 87, 177, 0, 60, 0, 193, 147, 0, 221, 171, 87, 177, 87, 177, 0, 60, 0, 193, 147, 0, 221, 171, 210, 171, 76, 179, 0, 60, 0, 193, 147, 0, 221, 43, 210, 171, 76, 179, 0, 60, 0, 193, 147, 0, 221, 43, 210, 43, 76, 51, 0, 60, 0, 0, 126, 0, 221, 171, 210, 43, 76, 51, 0, 60, 0, 0, 126, 0, 221, 171, 210, 171, 76, 51, 0, 60, 0, 0, 126, 0, 221, 43, 210, 171, 76, 51, 0, 60, 0, 0, 126, 0, 221, 43, 210, 171, 76, 179, 0, 60, 0, 0, 129, 0, 221, 171, 210, 171, 76, 179, 0, 60, 0, 0, 129, 0, 221, 171, 210, 43, 76, 179, 0, 60, 0, 0, 129, 0, 221, 43, 210, 43, 76, 179, 0, 60, 0, 0, 129, 0, 221, 43, 210, 171, 76, 51, 0, 60, 0, 193, 109, 0, 221, 171, 210, 171, 76, 51, 0, 60, 0, 193, 109, 0, 221, 171, 87, 177, 87, 49, 0, 60, 0, 193, 109, 0, 221, 43, 87, 177, 87, 49, 0, 60, 0, 193, 109, 0, 221, 43, 210, 43, 76, 179, 0, 60, 0, 63, 147, 0, 221, 171, 210, 43, 76, 179, 0, 60, 0, 63, 147, 0, 221, 171, 87, 49, 87, 177, 0, 60, 0, 63, 147, 0, 221, 43, 87, 49, 87, 177, 0, 60, 0, 63, 147, 0, 221, 43, 87, 177, 87, 49, 0, 60, 0, 147, 63, 0, 221, 171, 87, 177, 87, 49, 0, 60, 0, 147, 63, 0, 221, 171, 76, 179, 210, 43, 0, 60, 0, 147, 63, 0, 221, 43, 76, 179, 210, 43, 0, 60, 0, 147, 63, 0, 221, 43, 87, 49, 87, 177, 0, 60, 0, 109, 193, 0, 221, 171, 87, 49, 87, 177, 0, 60, 0, 109, 193, 0, 221, 171, 76, 51, 210, 171, 0, 60, 0, 109, 193, 0, 221, 43, 76, 51, 210, 171, 0, 60, 0, 109, 193, 0, 221, 43, 76, 179, 210, 43, 0, 60, 0, 130, 0, 0, 221, 171, 76, 179, 210, 43, 0, 60, 0, 130, 0, 0, 221, 171, 76, 179, 210, 171, 0, 60, 0, 130, 0, 0, 221, 43, 76, 179, 210, 171, 0, 60, 0, 130, 0, 0, 221, 43, 76, 51, 210, 43, 0, 60, 0, 109, 63, 0, 221, 171, 76, 51, 210, 43, 0, 60, 0, 109, 63, 0, 221, 171, 87, 49, 87, 49, 0, 60, 0, 109, 63, 0, 221, 43, 87, 49, 87, 49, 0, 60, 0, 109, 63, 0, 221, 171, 76, 51, 210, 43, 0, 60, 0, 127, 0, 0, 221, 43, 76, 51, 210, 43, 0, 60, 0, 127, 0, 0, 221, 43, 76, 51, 210, 171, 0, 60, 0, 127, 0, 0, 221, 171, 76, 51, 210, 171, 0, 60, 0, 127, 0, 0, 221, 43, 76, 179, 210, 171, 0, 60, 0, 147, 193, 0, 221, 171, 76, 179, 210, 171, 0, 60, 0, 147, 193, 0, 221, 171, 87, 177, 87, 177, 0, 60, 0, 147, 193, 0, 221, 43, 87, 177, 87, 177, 0, 60, 0, 147, 193, 0, 221, 43, 87, 49, 87, 49, 0, 60, 0, 63, 109, 0, 221, 171, 87, 49, 87, 49, 0, 60, 0, 63, 109, 0, 221, 171, 210, 43, 76, 51, 0, 60, 0, 63, 109, 0, 221, 43, 210, 43, 76, 51, 0, 60, 0, 63, 109, 0), -"array_index_data": PackedByteArray(0, 0, 2, 0, 1, 0, 1, 0, 4, 0, 3, 0, 4, 0, 6, 0, 5, 0, 6, 0, 8, 0, 7, 0, 8, 0, 10, 0, 9, 0, 10, 0, 2, 0, 11, 0, 1, 0, 2, 0, 4, 0, 4, 0, 8, 0, 6, 0, 8, 0, 2, 0, 10, 0, 4, 0, 2, 0, 8, 0, 12, 0, 14, 0, 13, 0, 13, 0, 16, 0, 15, 0, 16, 0, 18, 0, 17, 0, 18, 0, 20, 0, 19, 0, 20, 0, 22, 0, 21, 0, 22, 0, 14, 0, 23, 0, 13, 0, 14, 0, 16, 0, 16, 0, 20, 0, 18, 0, 20, 0, 14, 0, 22, 0, 16, 0, 14, 0, 20, 0, 24, 0, 26, 0, 25, 0, 24, 0, 27, 0, 26, 0, 28, 0, 30, 0, 29, 0, 28, 0, 31, 0, 30, 0, 32, 0, 34, 0, 33, 0, 32, 0, 35, 0, 34, 0, 36, 0, 38, 0, 37, 0, 36, 0, 39, 0, 38, 0, 40, 0, 42, 0, 41, 0, 40, 0, 43, 0, 42, 0, 44, 0, 46, 0, 45, 0, 44, 0, 47, 0, 46, 0, 48, 0, 50, 0, 49, 0, 48, 0, 51, 0, 50, 0, 52, 0, 54, 0, 53, 0, 52, 0, 55, 0, 54, 0, 56, 0, 58, 0, 57, 0, 56, 0, 59, 0, 58, 0, 60, 0, 62, 0, 61, 0, 60, 0, 63, 0, 62, 0, 64, 0, 66, 0, 65, 0, 64, 0, 67, 0, 66, 0, 68, 0, 70, 0, 69, 0, 68, 0, 71, 0, 70, 0), -"blend_shape_data": [], -"format": 98051, +"format": 4099, "index_count": 132, -"material": ExtResource( 6 ), +"index_data": PackedByteArray(0, 0, 2, 0, 1, 0, 1, 0, 4, 0, 3, 0, 4, 0, 6, 0, 5, 0, 6, 0, 8, 0, 7, 0, 8, 0, 10, 0, 9, 0, 10, 0, 2, 0, 11, 0, 1, 0, 2, 0, 4, 0, 4, 0, 8, 0, 6, 0, 8, 0, 2, 0, 10, 0, 4, 0, 2, 0, 8, 0, 12, 0, 14, 0, 13, 0, 13, 0, 16, 0, 15, 0, 16, 0, 18, 0, 17, 0, 18, 0, 20, 0, 19, 0, 20, 0, 22, 0, 21, 0, 22, 0, 14, 0, 23, 0, 13, 0, 14, 0, 16, 0, 16, 0, 20, 0, 18, 0, 20, 0, 14, 0, 22, 0, 16, 0, 14, 0, 20, 0, 24, 0, 26, 0, 25, 0, 24, 0, 27, 0, 26, 0, 28, 0, 30, 0, 29, 0, 28, 0, 31, 0, 30, 0, 32, 0, 34, 0, 33, 0, 32, 0, 35, 0, 34, 0, 36, 0, 38, 0, 37, 0, 36, 0, 39, 0, 38, 0, 40, 0, 42, 0, 41, 0, 40, 0, 43, 0, 42, 0, 44, 0, 46, 0, 45, 0, 44, 0, 47, 0, 46, 0, 48, 0, 50, 0, 49, 0, 48, 0, 51, 0, 50, 0, 52, 0, 54, 0, 53, 0, 52, 0, 55, 0, 54, 0, 56, 0, 58, 0, 57, 0, 56, 0, 59, 0, 58, 0, 60, 0, 62, 0, 61, 0, 60, 0, 63, 0, 62, 0, 64, 0, 66, 0, 65, 0, 64, 0, 67, 0, 66, 0, 68, 0, 70, 0, 69, 0, 68, 0, 71, 0, 70, 0), +"material": ExtResource( "6" ), "name": "Material.001", -"primitive": 4, -"skeleton_aabb": [], -"vertex_count": 72 -} +"primitive": 3, +"vertex_count": 72, +"vertex_data": PackedByteArray(0, 160, 123, 61, 0, 128, 105, 62, 0, 64, 122, 61, 254, 3, 0, 0, 0, 160, 123, 61, 0, 224, 42, 62, 0, 224, 42, 62, 254, 3, 0, 0, 0, 160, 123, 61, 0, 128, 105, 62, 0, 64, 122, 189, 254, 3, 0, 0, 0, 160, 123, 61, 0, 64, 122, 61, 0, 128, 105, 62, 254, 3, 0, 0, 0, 160, 123, 61, 0, 64, 122, 189, 0, 128, 105, 62, 254, 3, 0, 0, 0, 160, 123, 61, 0, 224, 42, 190, 0, 224, 42, 62, 254, 3, 0, 0, 0, 160, 123, 61, 0, 128, 105, 190, 0, 64, 122, 61, 254, 3, 0, 0, 0, 160, 123, 61, 0, 128, 105, 190, 0, 64, 122, 189, 254, 3, 0, 0, 0, 160, 123, 61, 0, 224, 42, 190, 0, 224, 42, 190, 254, 3, 0, 0, 0, 160, 123, 61, 0, 64, 122, 189, 0, 128, 105, 190, 254, 3, 0, 0, 0, 160, 123, 61, 0, 64, 122, 61, 0, 128, 105, 190, 254, 3, 0, 0, 0, 160, 123, 61, 0, 224, 42, 62, 0, 224, 42, 190, 254, 3, 0, 0, 0, 160, 123, 189, 0, 128, 105, 62, 0, 64, 122, 61, 0, 0, 0, 0, 0, 160, 123, 189, 0, 128, 105, 62, 0, 64, 122, 189, 0, 0, 0, 0, 0, 160, 123, 189, 0, 224, 42, 62, 0, 224, 42, 62, 0, 0, 0, 0, 0, 160, 123, 189, 0, 224, 42, 62, 0, 224, 42, 190, 0, 0, 0, 0, 0, 160, 123, 189, 0, 64, 122, 61, 0, 128, 105, 190, 0, 0, 0, 0, 0, 160, 123, 189, 0, 64, 122, 189, 0, 128, 105, 190, 0, 0, 0, 0, 0, 160, 123, 189, 0, 224, 42, 190, 0, 224, 42, 190, 0, 0, 0, 0, 0, 160, 123, 189, 0, 128, 105, 190, 0, 64, 122, 189, 0, 0, 0, 0, 0, 160, 123, 189, 0, 128, 105, 190, 0, 64, 122, 61, 0, 0, 0, 0, 0, 160, 123, 189, 0, 224, 42, 190, 0, 224, 42, 62, 0, 0, 0, 0, 0, 160, 123, 189, 0, 64, 122, 189, 0, 128, 105, 62, 0, 0, 0, 0, 0, 160, 123, 189, 0, 64, 122, 61, 0, 128, 105, 62, 0, 0, 0, 0, 0, 160, 123, 61, 0, 224, 42, 190, 0, 224, 42, 190, 0, 0, 0, 0, 0, 160, 123, 189, 0, 224, 42, 190, 0, 224, 42, 190, 0, 0, 0, 0, 0, 160, 123, 189, 0, 64, 122, 189, 0, 128, 105, 190, 0, 0, 0, 0, 0, 160, 123, 61, 0, 64, 122, 189, 0, 128, 105, 190, 0, 0, 0, 0, 0, 160, 123, 61, 0, 64, 122, 61, 0, 128, 105, 62, 0, 0, 96, 63, 0, 160, 123, 189, 0, 64, 122, 61, 0, 128, 105, 62, 0, 0, 96, 63, 0, 160, 123, 189, 0, 64, 122, 189, 0, 128, 105, 62, 0, 0, 96, 63, 0, 160, 123, 61, 0, 64, 122, 189, 0, 128, 105, 62, 0, 0, 96, 63, 0, 160, 123, 61, 0, 64, 122, 189, 0, 128, 105, 190, 0, 0, 0, 0, 0, 160, 123, 189, 0, 64, 122, 189, 0, 128, 105, 190, 0, 0, 0, 0, 0, 160, 123, 189, 0, 64, 122, 61, 0, 128, 105, 190, 0, 0, 0, 0, 0, 160, 123, 61, 0, 64, 122, 61, 0, 128, 105, 190, 0, 0, 0, 0, 0, 160, 123, 61, 0, 64, 122, 189, 0, 128, 105, 62, 0, 0, 224, 54, 0, 160, 123, 189, 0, 64, 122, 189, 0, 128, 105, 62, 0, 0, 224, 54, 0, 160, 123, 189, 0, 224, 42, 190, 0, 224, 42, 62, 0, 0, 224, 54, 0, 160, 123, 61, 0, 224, 42, 190, 0, 224, 42, 62, 0, 0, 224, 54, 0, 160, 123, 61, 0, 64, 122, 61, 0, 128, 105, 190, 0, 236, 7, 0, 0, 160, 123, 189, 0, 64, 122, 61, 0, 128, 105, 190, 0, 236, 7, 0, 0, 160, 123, 189, 0, 224, 42, 62, 0, 224, 42, 190, 0, 236, 7, 0, 0, 160, 123, 61, 0, 224, 42, 62, 0, 224, 42, 190, 0, 236, 7, 0, 0, 160, 123, 61, 0, 224, 42, 190, 0, 224, 42, 62, 0, 0, 176, 31, 0, 160, 123, 189, 0, 224, 42, 190, 0, 224, 42, 62, 0, 0, 176, 31, 0, 160, 123, 189, 0, 128, 105, 190, 0, 64, 122, 61, 0, 0, 176, 31, 0, 160, 123, 61, 0, 128, 105, 190, 0, 64, 122, 61, 0, 0, 176, 31, 0, 160, 123, 61, 0, 224, 42, 62, 0, 224, 42, 190, 0, 184, 13, 0, 0, 160, 123, 189, 0, 224, 42, 62, 0, 224, 42, 190, 0, 184, 13, 0, 0, 160, 123, 189, 0, 128, 105, 62, 0, 64, 122, 189, 0, 184, 13, 0, 0, 160, 123, 61, 0, 128, 105, 62, 0, 64, 122, 189, 0, 184, 13, 0, 0, 160, 123, 61, 0, 128, 105, 190, 0, 64, 122, 61, 0, 0, 0, 0, 0, 160, 123, 189, 0, 128, 105, 190, 0, 64, 122, 61, 0, 0, 0, 0, 0, 160, 123, 189, 0, 128, 105, 190, 0, 64, 122, 189, 0, 0, 0, 0, 0, 160, 123, 61, 0, 128, 105, 190, 0, 64, 122, 189, 0, 0, 0, 0, 0, 160, 123, 61, 0, 128, 105, 62, 0, 64, 122, 61, 0, 184, 189, 31, 0, 160, 123, 189, 0, 128, 105, 62, 0, 64, 122, 61, 0, 184, 189, 31, 0, 160, 123, 189, 0, 224, 42, 62, 0, 224, 42, 62, 0, 184, 189, 31, 0, 160, 123, 61, 0, 224, 42, 62, 0, 224, 42, 62, 0, 184, 189, 31, 0, 160, 123, 189, 0, 128, 105, 62, 0, 64, 122, 61, 0, 248, 15, 0, 0, 160, 123, 61, 0, 128, 105, 62, 0, 64, 122, 61, 0, 248, 15, 0, 0, 160, 123, 61, 0, 128, 105, 62, 0, 64, 122, 189, 0, 248, 15, 0, 0, 160, 123, 189, 0, 128, 105, 62, 0, 64, 122, 189, 0, 248, 15, 0, 0, 160, 123, 61, 0, 128, 105, 190, 0, 64, 122, 189, 0, 0, 0, 0, 0, 160, 123, 189, 0, 128, 105, 190, 0, 64, 122, 189, 0, 0, 0, 0, 0, 160, 123, 189, 0, 224, 42, 190, 0, 224, 42, 190, 0, 0, 0, 0, 0, 160, 123, 61, 0, 224, 42, 190, 0, 224, 42, 190, 0, 0, 0, 0, 0, 160, 123, 61, 0, 224, 42, 62, 0, 224, 42, 62, 0, 236, 231, 54, 0, 160, 123, 189, 0, 224, 42, 62, 0, 224, 42, 62, 0, 236, 231, 54, 0, 160, 123, 189, 0, 64, 122, 61, 0, 128, 105, 62, 0, 236, 231, 54, 0, 160, 123, 61, 0, 64, 122, 61, 0, 128, 105, 62, 0, 236, 231, 54) +}] -[sub_resource type="ArrayMesh" id=13] -surfaces/0 = { +[sub_resource type="ArrayMesh" id="13"] +_surfaces = [{ "aabb": AABB(-0.061457, -0.228035, -0.228035, 0.122924, 0.45608, 0.45607), -"array_data": PackedByteArray(221, 43, 76, 51, 210, 43, 0, 60, 127, 0, 0, 0, 221, 43, 87, 49, 87, 49, 0, 60, 127, 0, 0, 0, 221, 43, 76, 51, 210, 171, 0, 60, 127, 0, 0, 0, 221, 43, 210, 43, 76, 51, 0, 60, 127, 0, 0, 0, 221, 43, 210, 171, 76, 51, 0, 60, 127, 0, 0, 0, 221, 43, 87, 177, 87, 49, 0, 60, 127, 0, 0, 0, 221, 43, 76, 179, 210, 43, 0, 60, 127, 0, 0, 0, 221, 43, 76, 179, 210, 171, 0, 60, 127, 0, 0, 0, 221, 43, 87, 177, 87, 177, 0, 60, 127, 0, 0, 0, 221, 43, 210, 171, 76, 179, 0, 60, 127, 0, 0, 0, 221, 43, 210, 43, 76, 179, 0, 60, 127, 0, 0, 0, 221, 43, 87, 49, 87, 177, 0, 60, 127, 0, 0, 0, 221, 171, 76, 51, 210, 43, 0, 60, 130, 0, 0, 0, 221, 171, 76, 51, 210, 171, 0, 60, 130, 0, 0, 0, 221, 171, 87, 49, 87, 49, 0, 60, 130, 0, 0, 0, 221, 171, 87, 49, 87, 177, 0, 60, 130, 0, 0, 0, 221, 171, 210, 43, 76, 179, 0, 60, 130, 0, 0, 0, 221, 171, 210, 171, 76, 179, 0, 60, 130, 0, 0, 0, 221, 171, 87, 177, 87, 177, 0, 60, 130, 0, 0, 0, 221, 171, 76, 179, 210, 171, 0, 60, 130, 0, 0, 0, 221, 171, 76, 179, 210, 43, 0, 60, 130, 0, 0, 0, 221, 171, 87, 177, 87, 49, 0, 60, 130, 0, 0, 0, 221, 171, 210, 171, 76, 51, 0, 60, 130, 0, 0, 0, 221, 171, 210, 43, 76, 51, 0, 60, 130, 0, 0, 0, 221, 43, 87, 177, 87, 177, 0, 60, 0, 193, 147, 0, 221, 171, 87, 177, 87, 177, 0, 60, 0, 193, 147, 0, 221, 171, 210, 171, 76, 179, 0, 60, 0, 193, 147, 0, 221, 43, 210, 171, 76, 179, 0, 60, 0, 193, 147, 0, 221, 43, 210, 43, 76, 51, 0, 60, 0, 0, 126, 0, 221, 171, 210, 43, 76, 51, 0, 60, 0, 0, 126, 0, 221, 171, 210, 171, 76, 51, 0, 60, 0, 0, 126, 0, 221, 43, 210, 171, 76, 51, 0, 60, 0, 0, 126, 0, 221, 43, 210, 171, 76, 179, 0, 60, 0, 0, 129, 0, 221, 171, 210, 171, 76, 179, 0, 60, 0, 0, 129, 0, 221, 171, 210, 43, 76, 179, 0, 60, 0, 0, 129, 0, 221, 43, 210, 43, 76, 179, 0, 60, 0, 0, 129, 0, 221, 43, 210, 171, 76, 51, 0, 60, 0, 193, 109, 0, 221, 171, 210, 171, 76, 51, 0, 60, 0, 193, 109, 0, 221, 171, 87, 177, 87, 49, 0, 60, 0, 193, 109, 0, 221, 43, 87, 177, 87, 49, 0, 60, 0, 193, 109, 0, 221, 43, 210, 43, 76, 179, 0, 60, 0, 63, 147, 0, 221, 171, 210, 43, 76, 179, 0, 60, 0, 63, 147, 0, 221, 171, 87, 49, 87, 177, 0, 60, 0, 63, 147, 0, 221, 43, 87, 49, 87, 177, 0, 60, 0, 63, 147, 0, 221, 43, 87, 177, 87, 49, 0, 60, 0, 147, 63, 0, 221, 171, 87, 177, 87, 49, 0, 60, 0, 147, 63, 0, 221, 171, 76, 179, 210, 43, 0, 60, 0, 147, 63, 0, 221, 43, 76, 179, 210, 43, 0, 60, 0, 147, 63, 0, 221, 43, 87, 49, 87, 177, 0, 60, 0, 109, 193, 0, 221, 171, 87, 49, 87, 177, 0, 60, 0, 109, 193, 0, 221, 171, 76, 51, 210, 171, 0, 60, 0, 109, 193, 0, 221, 43, 76, 51, 210, 171, 0, 60, 0, 109, 193, 0, 221, 43, 76, 179, 210, 43, 0, 60, 0, 130, 0, 0, 221, 171, 76, 179, 210, 43, 0, 60, 0, 130, 0, 0, 221, 171, 76, 179, 210, 171, 0, 60, 0, 130, 0, 0, 221, 43, 76, 179, 210, 171, 0, 60, 0, 130, 0, 0, 221, 43, 76, 51, 210, 43, 0, 60, 0, 109, 63, 0, 221, 171, 76, 51, 210, 43, 0, 60, 0, 109, 63, 0, 221, 171, 87, 49, 87, 49, 0, 60, 0, 109, 63, 0, 221, 43, 87, 49, 87, 49, 0, 60, 0, 109, 63, 0, 221, 171, 76, 51, 210, 43, 0, 60, 0, 127, 0, 0, 221, 43, 76, 51, 210, 43, 0, 60, 0, 127, 0, 0, 221, 43, 76, 51, 210, 171, 0, 60, 0, 127, 0, 0, 221, 171, 76, 51, 210, 171, 0, 60, 0, 127, 0, 0, 221, 43, 76, 179, 210, 171, 0, 60, 0, 147, 193, 0, 221, 171, 76, 179, 210, 171, 0, 60, 0, 147, 193, 0, 221, 171, 87, 177, 87, 177, 0, 60, 0, 147, 193, 0, 221, 43, 87, 177, 87, 177, 0, 60, 0, 147, 193, 0, 221, 43, 87, 49, 87, 49, 0, 60, 0, 63, 109, 0, 221, 171, 87, 49, 87, 49, 0, 60, 0, 63, 109, 0, 221, 171, 210, 43, 76, 51, 0, 60, 0, 63, 109, 0, 221, 43, 210, 43, 76, 51, 0, 60, 0, 63, 109, 0), -"array_index_data": PackedByteArray(0, 0, 2, 0, 1, 0, 1, 0, 4, 0, 3, 0, 4, 0, 6, 0, 5, 0, 6, 0, 8, 0, 7, 0, 8, 0, 10, 0, 9, 0, 10, 0, 2, 0, 11, 0, 1, 0, 2, 0, 4, 0, 4, 0, 8, 0, 6, 0, 8, 0, 2, 0, 10, 0, 4, 0, 2, 0, 8, 0, 12, 0, 14, 0, 13, 0, 13, 0, 16, 0, 15, 0, 16, 0, 18, 0, 17, 0, 18, 0, 20, 0, 19, 0, 20, 0, 22, 0, 21, 0, 22, 0, 14, 0, 23, 0, 13, 0, 14, 0, 16, 0, 16, 0, 20, 0, 18, 0, 20, 0, 14, 0, 22, 0, 16, 0, 14, 0, 20, 0, 24, 0, 26, 0, 25, 0, 24, 0, 27, 0, 26, 0, 28, 0, 30, 0, 29, 0, 28, 0, 31, 0, 30, 0, 32, 0, 34, 0, 33, 0, 32, 0, 35, 0, 34, 0, 36, 0, 38, 0, 37, 0, 36, 0, 39, 0, 38, 0, 40, 0, 42, 0, 41, 0, 40, 0, 43, 0, 42, 0, 44, 0, 46, 0, 45, 0, 44, 0, 47, 0, 46, 0, 48, 0, 50, 0, 49, 0, 48, 0, 51, 0, 50, 0, 52, 0, 54, 0, 53, 0, 52, 0, 55, 0, 54, 0, 56, 0, 58, 0, 57, 0, 56, 0, 59, 0, 58, 0, 60, 0, 62, 0, 61, 0, 60, 0, 63, 0, 62, 0, 64, 0, 66, 0, 65, 0, 64, 0, 67, 0, 66, 0, 68, 0, 70, 0, 69, 0, 68, 0, 71, 0, 70, 0), -"blend_shape_data": [], -"format": 98051, +"format": 4099, "index_count": 132, -"material": ExtResource( 6 ), +"index_data": PackedByteArray(0, 0, 2, 0, 1, 0, 1, 0, 4, 0, 3, 0, 4, 0, 6, 0, 5, 0, 6, 0, 8, 0, 7, 0, 8, 0, 10, 0, 9, 0, 10, 0, 2, 0, 11, 0, 1, 0, 2, 0, 4, 0, 4, 0, 8, 0, 6, 0, 8, 0, 2, 0, 10, 0, 4, 0, 2, 0, 8, 0, 12, 0, 14, 0, 13, 0, 13, 0, 16, 0, 15, 0, 16, 0, 18, 0, 17, 0, 18, 0, 20, 0, 19, 0, 20, 0, 22, 0, 21, 0, 22, 0, 14, 0, 23, 0, 13, 0, 14, 0, 16, 0, 16, 0, 20, 0, 18, 0, 20, 0, 14, 0, 22, 0, 16, 0, 14, 0, 20, 0, 24, 0, 26, 0, 25, 0, 24, 0, 27, 0, 26, 0, 28, 0, 30, 0, 29, 0, 28, 0, 31, 0, 30, 0, 32, 0, 34, 0, 33, 0, 32, 0, 35, 0, 34, 0, 36, 0, 38, 0, 37, 0, 36, 0, 39, 0, 38, 0, 40, 0, 42, 0, 41, 0, 40, 0, 43, 0, 42, 0, 44, 0, 46, 0, 45, 0, 44, 0, 47, 0, 46, 0, 48, 0, 50, 0, 49, 0, 48, 0, 51, 0, 50, 0, 52, 0, 54, 0, 53, 0, 52, 0, 55, 0, 54, 0, 56, 0, 58, 0, 57, 0, 56, 0, 59, 0, 58, 0, 60, 0, 62, 0, 61, 0, 60, 0, 63, 0, 62, 0, 64, 0, 66, 0, 65, 0, 64, 0, 67, 0, 66, 0, 68, 0, 70, 0, 69, 0, 68, 0, 71, 0, 70, 0), +"material": ExtResource( "6" ), "name": "Material.001", -"primitive": 4, -"skeleton_aabb": [], -"vertex_count": 72 -} +"primitive": 3, +"vertex_count": 72, +"vertex_data": PackedByteArray(0, 160, 123, 61, 0, 128, 105, 62, 0, 64, 122, 61, 254, 3, 0, 0, 0, 160, 123, 61, 0, 224, 42, 62, 0, 224, 42, 62, 254, 3, 0, 0, 0, 160, 123, 61, 0, 128, 105, 62, 0, 64, 122, 189, 254, 3, 0, 0, 0, 160, 123, 61, 0, 64, 122, 61, 0, 128, 105, 62, 254, 3, 0, 0, 0, 160, 123, 61, 0, 64, 122, 189, 0, 128, 105, 62, 254, 3, 0, 0, 0, 160, 123, 61, 0, 224, 42, 190, 0, 224, 42, 62, 254, 3, 0, 0, 0, 160, 123, 61, 0, 128, 105, 190, 0, 64, 122, 61, 254, 3, 0, 0, 0, 160, 123, 61, 0, 128, 105, 190, 0, 64, 122, 189, 254, 3, 0, 0, 0, 160, 123, 61, 0, 224, 42, 190, 0, 224, 42, 190, 254, 3, 0, 0, 0, 160, 123, 61, 0, 64, 122, 189, 0, 128, 105, 190, 254, 3, 0, 0, 0, 160, 123, 61, 0, 64, 122, 61, 0, 128, 105, 190, 254, 3, 0, 0, 0, 160, 123, 61, 0, 224, 42, 62, 0, 224, 42, 190, 254, 3, 0, 0, 0, 160, 123, 189, 0, 128, 105, 62, 0, 64, 122, 61, 0, 0, 0, 0, 0, 160, 123, 189, 0, 128, 105, 62, 0, 64, 122, 189, 0, 0, 0, 0, 0, 160, 123, 189, 0, 224, 42, 62, 0, 224, 42, 62, 0, 0, 0, 0, 0, 160, 123, 189, 0, 224, 42, 62, 0, 224, 42, 190, 0, 0, 0, 0, 0, 160, 123, 189, 0, 64, 122, 61, 0, 128, 105, 190, 0, 0, 0, 0, 0, 160, 123, 189, 0, 64, 122, 189, 0, 128, 105, 190, 0, 0, 0, 0, 0, 160, 123, 189, 0, 224, 42, 190, 0, 224, 42, 190, 0, 0, 0, 0, 0, 160, 123, 189, 0, 128, 105, 190, 0, 64, 122, 189, 0, 0, 0, 0, 0, 160, 123, 189, 0, 128, 105, 190, 0, 64, 122, 61, 0, 0, 0, 0, 0, 160, 123, 189, 0, 224, 42, 190, 0, 224, 42, 62, 0, 0, 0, 0, 0, 160, 123, 189, 0, 64, 122, 189, 0, 128, 105, 62, 0, 0, 0, 0, 0, 160, 123, 189, 0, 64, 122, 61, 0, 128, 105, 62, 0, 0, 0, 0, 0, 160, 123, 61, 0, 224, 42, 190, 0, 224, 42, 190, 0, 0, 0, 0, 0, 160, 123, 189, 0, 224, 42, 190, 0, 224, 42, 190, 0, 0, 0, 0, 0, 160, 123, 189, 0, 64, 122, 189, 0, 128, 105, 190, 0, 0, 0, 0, 0, 160, 123, 61, 0, 64, 122, 189, 0, 128, 105, 190, 0, 0, 0, 0, 0, 160, 123, 61, 0, 64, 122, 61, 0, 128, 105, 62, 0, 0, 96, 63, 0, 160, 123, 189, 0, 64, 122, 61, 0, 128, 105, 62, 0, 0, 96, 63, 0, 160, 123, 189, 0, 64, 122, 189, 0, 128, 105, 62, 0, 0, 96, 63, 0, 160, 123, 61, 0, 64, 122, 189, 0, 128, 105, 62, 0, 0, 96, 63, 0, 160, 123, 61, 0, 64, 122, 189, 0, 128, 105, 190, 0, 0, 0, 0, 0, 160, 123, 189, 0, 64, 122, 189, 0, 128, 105, 190, 0, 0, 0, 0, 0, 160, 123, 189, 0, 64, 122, 61, 0, 128, 105, 190, 0, 0, 0, 0, 0, 160, 123, 61, 0, 64, 122, 61, 0, 128, 105, 190, 0, 0, 0, 0, 0, 160, 123, 61, 0, 64, 122, 189, 0, 128, 105, 62, 0, 0, 224, 54, 0, 160, 123, 189, 0, 64, 122, 189, 0, 128, 105, 62, 0, 0, 224, 54, 0, 160, 123, 189, 0, 224, 42, 190, 0, 224, 42, 62, 0, 0, 224, 54, 0, 160, 123, 61, 0, 224, 42, 190, 0, 224, 42, 62, 0, 0, 224, 54, 0, 160, 123, 61, 0, 64, 122, 61, 0, 128, 105, 190, 0, 236, 7, 0, 0, 160, 123, 189, 0, 64, 122, 61, 0, 128, 105, 190, 0, 236, 7, 0, 0, 160, 123, 189, 0, 224, 42, 62, 0, 224, 42, 190, 0, 236, 7, 0, 0, 160, 123, 61, 0, 224, 42, 62, 0, 224, 42, 190, 0, 236, 7, 0, 0, 160, 123, 61, 0, 224, 42, 190, 0, 224, 42, 62, 0, 0, 176, 31, 0, 160, 123, 189, 0, 224, 42, 190, 0, 224, 42, 62, 0, 0, 176, 31, 0, 160, 123, 189, 0, 128, 105, 190, 0, 64, 122, 61, 0, 0, 176, 31, 0, 160, 123, 61, 0, 128, 105, 190, 0, 64, 122, 61, 0, 0, 176, 31, 0, 160, 123, 61, 0, 224, 42, 62, 0, 224, 42, 190, 0, 184, 13, 0, 0, 160, 123, 189, 0, 224, 42, 62, 0, 224, 42, 190, 0, 184, 13, 0, 0, 160, 123, 189, 0, 128, 105, 62, 0, 64, 122, 189, 0, 184, 13, 0, 0, 160, 123, 61, 0, 128, 105, 62, 0, 64, 122, 189, 0, 184, 13, 0, 0, 160, 123, 61, 0, 128, 105, 190, 0, 64, 122, 61, 0, 0, 0, 0, 0, 160, 123, 189, 0, 128, 105, 190, 0, 64, 122, 61, 0, 0, 0, 0, 0, 160, 123, 189, 0, 128, 105, 190, 0, 64, 122, 189, 0, 0, 0, 0, 0, 160, 123, 61, 0, 128, 105, 190, 0, 64, 122, 189, 0, 0, 0, 0, 0, 160, 123, 61, 0, 128, 105, 62, 0, 64, 122, 61, 0, 184, 189, 31, 0, 160, 123, 189, 0, 128, 105, 62, 0, 64, 122, 61, 0, 184, 189, 31, 0, 160, 123, 189, 0, 224, 42, 62, 0, 224, 42, 62, 0, 184, 189, 31, 0, 160, 123, 61, 0, 224, 42, 62, 0, 224, 42, 62, 0, 184, 189, 31, 0, 160, 123, 189, 0, 128, 105, 62, 0, 64, 122, 61, 0, 248, 15, 0, 0, 160, 123, 61, 0, 128, 105, 62, 0, 64, 122, 61, 0, 248, 15, 0, 0, 160, 123, 61, 0, 128, 105, 62, 0, 64, 122, 189, 0, 248, 15, 0, 0, 160, 123, 189, 0, 128, 105, 62, 0, 64, 122, 189, 0, 248, 15, 0, 0, 160, 123, 61, 0, 128, 105, 190, 0, 64, 122, 189, 0, 0, 0, 0, 0, 160, 123, 189, 0, 128, 105, 190, 0, 64, 122, 189, 0, 0, 0, 0, 0, 160, 123, 189, 0, 224, 42, 190, 0, 224, 42, 190, 0, 0, 0, 0, 0, 160, 123, 61, 0, 224, 42, 190, 0, 224, 42, 190, 0, 0, 0, 0, 0, 160, 123, 61, 0, 224, 42, 62, 0, 224, 42, 62, 0, 236, 231, 54, 0, 160, 123, 189, 0, 224, 42, 62, 0, 224, 42, 62, 0, 236, 231, 54, 0, 160, 123, 189, 0, 64, 122, 61, 0, 128, 105, 62, 0, 236, 231, 54, 0, 160, 123, 61, 0, 64, 122, 61, 0, 128, 105, 62, 0, 236, 231, 54) +}] -[sub_resource type="StandardMaterial3D" id=14] +[sub_resource type="StandardMaterial3D" id="14"] roughness = 0.0 -[sub_resource type="StandardMaterial3D" id=15] +[sub_resource type="StandardMaterial3D" id="15"] roughness = 0.0 -[sub_resource type="ArrayMesh" id=16] -surfaces/0 = { +[sub_resource type="ArrayMesh" id="16"] +_surfaces = [{ "aabb": AABB(-0.654197, 0.000773793, -1.24434, 1.30839, 1.06541, 2.67806), -"array_data": PackedByteArray(5, 56, 192, 56, 123, 53, 0, 60, 13, 125, 17, 0, 0, 0, 192, 56, 5, 55, 0, 60, 13, 125, 17, 0, 0, 0, 6, 56, 149, 61, 0, 60, 13, 125, 17, 0, 247, 51, 253, 54, 149, 61, 0, 60, 13, 125, 17, 0, 5, 56, 86, 18, 250, 188, 0, 60, 0, 14, 130, 0, 0, 0, 86, 18, 250, 188, 0, 60, 0, 14, 130, 0, 0, 0, 192, 56, 179, 188, 0, 60, 0, 14, 130, 0, 5, 56, 192, 56, 179, 188, 0, 60, 0, 14, 130, 0, 0, 0, 86, 18, 20, 181, 0, 60, 0, 130, 0, 0, 0, 0, 86, 18, 250, 188, 0, 60, 0, 130, 0, 0, 5, 56, 86, 18, 20, 181, 0, 60, 0, 130, 0, 0, 5, 56, 86, 18, 250, 188, 0, 60, 0, 130, 0, 0, 5, 56, 86, 18, 81, 188, 0, 60, 0, 130, 0, 0, 5, 56, 86, 18, 81, 188, 0, 60, 0, 0, 0, 0, 5, 56, 86, 18, 224, 183, 0, 60, 0, 0, 0, 0, 5, 56, 86, 18, 20, 181, 0, 60, 0, 0, 0, 0, 5, 56, 47, 60, 21, 50, 0, 60, 5, 126, 0, 0, 5, 56, 47, 60, 20, 181, 0, 60, 5, 126, 0, 0, 0, 0, 67, 60, 20, 181, 0, 60, 5, 126, 0, 0, 0, 0, 67, 60, 148, 52, 0, 60, 5, 126, 0, 0, 0, 0, 86, 18, 123, 53, 0, 60, 0, 130, 0, 0, 5, 56, 86, 18, 123, 53, 0, 60, 0, 130, 0, 0, 247, 51, 86, 18, 188, 61, 0, 60, 0, 130, 0, 0, 0, 0, 86, 18, 188, 61, 0, 60, 0, 130, 0, 0, 5, 56, 192, 56, 123, 53, 0, 60, 123, 5, 30, 0, 247, 51, 253, 54, 149, 61, 0, 60, 123, 5, 30, 0, 175, 52, 242, 52, 255, 60, 0, 60, 123, 5, 30, 0, 209, 53, 242, 52, 158, 59, 0, 60, 123, 5, 30, 0, 5, 56, 86, 18, 123, 53, 0, 60, 123, 0, 28, 0, 5, 56, 192, 56, 123, 53, 0, 60, 123, 0, 28, 0, 209, 53, 242, 52, 158, 59, 0, 60, 123, 0, 28, 0, 247, 51, 253, 54, 149, 61, 0, 60, 122, 2, 33, 0, 247, 51, 86, 18, 188, 61, 0, 60, 122, 2, 33, 0, 175, 52, 242, 52, 255, 60, 0, 60, 122, 2, 33, 0, 5, 56, 86, 18, 250, 188, 0, 60, 127, 0, 0, 0, 5, 56, 192, 56, 179, 188, 0, 60, 127, 0, 0, 0, 5, 56, 10, 53, 161, 187, 0, 60, 127, 0, 0, 0, 5, 56, 86, 18, 81, 188, 0, 60, 127, 0, 0, 0, 5, 56, 192, 56, 20, 181, 0, 60, 127, 0, 0, 0, 5, 56, 86, 18, 20, 181, 0, 60, 127, 0, 0, 0, 5, 56, 86, 18, 224, 183, 0, 60, 127, 0, 0, 0, 5, 56, 10, 53, 242, 184, 0, 60, 127, 0, 0, 0, 5, 56, 192, 56, 123, 53, 0, 60, 127, 0, 0, 0, 5, 56, 86, 18, 123, 53, 0, 60, 127, 0, 0, 0, 5, 56, 47, 60, 250, 188, 0, 60, 5, 126, 0, 0, 0, 0, 67, 60, 250, 188, 0, 60, 5, 126, 0, 0, 5, 56, 10, 53, 242, 184, 0, 60, 12, 52, 115, 0, 5, 56, 86, 18, 224, 183, 0, 60, 12, 52, 115, 0, 59, 57, 86, 18, 224, 183, 0, 60, 12, 52, 115, 0, 59, 57, 123, 52, 20, 185, 0, 60, 12, 52, 115, 0, 5, 56, 86, 18, 123, 53, 0, 60, 10, 114, 204, 0, 209, 53, 242, 52, 158, 59, 0, 60, 10, 114, 204, 0, 59, 57, 99, 52, 188, 59, 0, 60, 10, 114, 204, 0, 59, 57, 86, 18, 123, 53, 0, 60, 10, 114, 204, 0, 5, 56, 86, 18, 81, 188, 0, 60, 12, 52, 141, 0, 5, 56, 10, 53, 161, 187, 0, 60, 12, 52, 141, 0, 59, 57, 123, 52, 127, 187, 0, 60, 12, 52, 141, 0, 59, 57, 86, 18, 81, 188, 0, 60, 12, 52, 141, 0, 209, 53, 242, 52, 158, 59, 0, 60, 13, 126, 1, 0, 175, 52, 242, 52, 255, 60, 0, 60, 13, 126, 1, 0, 59, 57, 99, 52, 240, 60, 0, 60, 13, 126, 1, 0, 59, 57, 99, 52, 188, 59, 0, 60, 13, 126, 1, 0, 5, 56, 86, 18, 20, 181, 0, 60, 0, 127, 0, 0, 5, 56, 86, 18, 123, 53, 0, 60, 0, 127, 0, 0, 59, 57, 86, 18, 123, 53, 0, 60, 0, 127, 0, 0, 59, 57, 86, 18, 20, 181, 0, 60, 0, 127, 0, 0, 5, 56, 10, 53, 161, 187, 0, 60, 28, 123, 0, 0, 5, 56, 10, 53, 242, 184, 0, 60, 28, 123, 0, 0, 59, 57, 123, 52, 20, 185, 0, 60, 28, 123, 0, 0, 59, 57, 123, 52, 127, 187, 0, 60, 28, 123, 0, 0, 5, 56, 86, 18, 224, 183, 0, 60, 0, 127, 0, 0, 59, 57, 86, 18, 224, 183, 0, 60, 0, 127, 0, 0, 175, 52, 242, 52, 255, 60, 0, 60, 10, 63, 109, 0, 247, 51, 86, 18, 188, 61, 0, 60, 10, 63, 109, 0, 172, 54, 79, 47, 103, 61, 0, 60, 10, 63, 109, 0, 233, 54, 9, 50, 58, 61, 0, 60, 10, 63, 109, 0, 59, 57, 99, 52, 240, 60, 0, 60, 10, 63, 109, 0, 175, 52, 242, 52, 255, 60, 0, 60, 10, 63, 109, 0, 233, 54, 9, 50, 58, 61, 0, 60, 10, 63, 109, 0, 40, 56, 222, 49, 52, 61, 0, 60, 10, 63, 109, 0, 247, 51, 86, 18, 188, 61, 0, 60, 0, 74, 102, 0, 59, 57, 86, 18, 188, 61, 0, 60, 0, 74, 102, 0, 38, 56, 28, 47, 105, 61, 0, 60, 0, 74, 102, 0, 172, 54, 79, 47, 103, 61, 0, 60, 0, 74, 102, 0, 59, 57, 99, 52, 240, 60, 0, 60, 0, 74, 102, 0, 40, 56, 222, 49, 52, 61, 0, 60, 0, 74, 102, 0, 38, 56, 28, 47, 105, 61, 0, 60, 127, 255, 0, 0, 40, 56, 222, 49, 52, 61, 0, 60, 127, 255, 0, 0, 40, 56, 195, 49, 94, 61, 0, 60, 127, 255, 0, 0, 38, 56, 89, 47, 116, 61, 0, 60, 127, 255, 0, 0, 233, 54, 9, 50, 58, 61, 0, 60, 132, 26, 0, 0, 172, 54, 79, 47, 103, 61, 0, 60, 132, 26, 0, 0, 172, 54, 135, 47, 114, 61, 0, 60, 132, 26, 0, 0, 233, 54, 233, 49, 92, 61, 0, 60, 132, 26, 0, 0, 40, 56, 222, 49, 52, 61, 0, 60, 7, 126, 11, 0, 233, 54, 9, 50, 58, 61, 0, 60, 7, 126, 11, 0, 233, 54, 233, 49, 92, 61, 0, 60, 7, 126, 11, 0, 40, 56, 195, 49, 94, 61, 0, 60, 7, 126, 11, 0, 172, 54, 79, 47, 103, 61, 0, 60, 252, 137, 41, 0, 38, 56, 28, 47, 105, 61, 0, 60, 252, 137, 41, 0, 38, 56, 89, 47, 116, 61, 0, 60, 252, 137, 41, 0, 172, 54, 135, 47, 114, 61, 0, 60, 252, 137, 41, 0, 5, 184, 192, 56, 123, 53, 0, 60, 243, 125, 17, 0, 247, 179, 253, 54, 149, 61, 0, 60, 243, 125, 17, 0, 0, 0, 6, 56, 149, 61, 0, 60, 243, 125, 17, 0, 0, 0, 192, 56, 5, 55, 0, 60, 243, 125, 17, 0, 5, 184, 86, 18, 250, 188, 0, 60, 0, 14, 130, 0, 5, 184, 192, 56, 179, 188, 0, 60, 0, 14, 130, 0, 5, 184, 86, 18, 20, 181, 0, 60, 0, 130, 0, 0, 5, 184, 86, 18, 224, 183, 0, 60, 0, 0, 0, 0, 5, 184, 86, 18, 81, 188, 0, 60, 0, 0, 0, 0, 5, 184, 86, 18, 250, 188, 0, 60, 0, 0, 0, 0, 5, 184, 86, 18, 250, 188, 0, 60, 0, 130, 0, 0, 5, 184, 86, 18, 20, 181, 0, 60, 0, 0, 0, 0, 5, 184, 47, 60, 21, 50, 0, 60, 252, 126, 0, 0, 0, 0, 67, 60, 148, 52, 0, 60, 252, 126, 0, 0, 0, 0, 67, 60, 20, 181, 0, 60, 252, 126, 0, 0, 5, 184, 47, 60, 20, 181, 0, 60, 252, 126, 0, 0, 247, 179, 86, 18, 188, 61, 0, 60, 0, 130, 0, 0, 5, 184, 86, 18, 123, 53, 0, 60, 0, 130, 0, 0, 5, 184, 192, 56, 123, 53, 0, 60, 133, 5, 30, 0, 209, 181, 242, 52, 158, 59, 0, 60, 133, 5, 30, 0, 175, 180, 242, 52, 255, 60, 0, 60, 133, 5, 30, 0, 247, 179, 253, 54, 149, 61, 0, 60, 133, 5, 30, 0, 5, 184, 86, 18, 123, 53, 0, 60, 133, 0, 28, 0, 209, 181, 242, 52, 158, 59, 0, 60, 133, 0, 28, 0, 5, 184, 192, 56, 123, 53, 0, 60, 133, 0, 28, 0, 247, 179, 253, 54, 149, 61, 0, 60, 134, 2, 33, 0, 175, 180, 242, 52, 255, 60, 0, 60, 134, 2, 33, 0, 247, 179, 86, 18, 188, 61, 0, 60, 134, 2, 33, 0, 5, 184, 86, 18, 250, 188, 0, 60, 130, 0, 0, 0, 5, 184, 86, 18, 81, 188, 0, 60, 130, 0, 0, 0, 5, 184, 10, 53, 161, 187, 0, 60, 130, 0, 0, 0, 5, 184, 192, 56, 179, 188, 0, 60, 130, 0, 0, 0, 5, 184, 192, 56, 20, 181, 0, 60, 130, 0, 0, 0, 5, 184, 10, 53, 242, 184, 0, 60, 130, 0, 0, 0, 5, 184, 86, 18, 224, 183, 0, 60, 130, 0, 0, 0, 5, 184, 86, 18, 20, 181, 0, 60, 130, 0, 0, 0, 5, 184, 86, 18, 123, 53, 0, 60, 130, 0, 0, 0, 5, 184, 192, 56, 123, 53, 0, 60, 130, 0, 0, 0, 0, 0, 67, 60, 250, 188, 0, 60, 252, 126, 0, 0, 5, 184, 47, 60, 250, 188, 0, 60, 252, 126, 0, 0, 5, 184, 10, 53, 242, 184, 0, 60, 244, 52, 115, 0, 59, 185, 123, 52, 20, 185, 0, 60, 244, 52, 115, 0, 59, 185, 86, 18, 224, 183, 0, 60, 244, 52, 115, 0, 5, 184, 86, 18, 224, 183, 0, 60, 244, 52, 115, 0, 5, 184, 86, 18, 123, 53, 0, 60, 246, 114, 204, 0, 59, 185, 86, 18, 123, 53, 0, 60, 246, 114, 204, 0, 59, 185, 99, 52, 188, 59, 0, 60, 246, 114, 204, 0, 209, 181, 242, 52, 158, 59, 0, 60, 246, 114, 204, 0, 5, 184, 86, 18, 81, 188, 0, 60, 244, 52, 141, 0, 59, 185, 86, 18, 81, 188, 0, 60, 244, 52, 141, 0, 59, 185, 123, 52, 127, 187, 0, 60, 244, 52, 141, 0, 5, 184, 10, 53, 161, 187, 0, 60, 244, 52, 141, 0, 209, 181, 242, 52, 158, 59, 0, 60, 243, 126, 1, 0, 59, 185, 99, 52, 188, 59, 0, 60, 243, 126, 1, 0, 59, 185, 99, 52, 240, 60, 0, 60, 243, 126, 1, 0, 175, 180, 242, 52, 255, 60, 0, 60, 243, 126, 1, 0, 5, 184, 86, 18, 20, 181, 0, 60, 0, 127, 0, 0, 59, 185, 86, 18, 20, 181, 0, 60, 0, 127, 0, 0, 59, 185, 86, 18, 123, 53, 0, 60, 0, 127, 0, 0, 5, 184, 86, 18, 123, 53, 0, 60, 0, 127, 0, 0, 5, 184, 10, 53, 161, 187, 0, 60, 228, 123, 0, 0, 59, 185, 123, 52, 127, 187, 0, 60, 228, 123, 0, 0, 59, 185, 123, 52, 20, 185, 0, 60, 228, 123, 0, 0, 5, 184, 10, 53, 242, 184, 0, 60, 228, 123, 0, 0, 5, 184, 86, 18, 224, 183, 0, 60, 0, 127, 0, 0, 59, 185, 86, 18, 224, 183, 0, 60, 0, 127, 0, 0, 175, 180, 242, 52, 255, 60, 0, 60, 246, 63, 109, 0, 233, 182, 9, 50, 58, 61, 0, 60, 246, 63, 109, 0, 172, 182, 79, 47, 103, 61, 0, 60, 246, 63, 109, 0, 247, 179, 86, 18, 188, 61, 0, 60, 246, 63, 109, 0, 59, 185, 99, 52, 240, 60, 0, 60, 246, 63, 109, 0, 40, 184, 222, 49, 52, 61, 0, 60, 246, 63, 109, 0, 233, 182, 9, 50, 58, 61, 0, 60, 246, 63, 109, 0, 175, 180, 242, 52, 255, 60, 0, 60, 246, 63, 109, 0, 247, 179, 86, 18, 188, 61, 0, 60, 0, 74, 102, 0, 172, 182, 79, 47, 103, 61, 0, 60, 0, 74, 102, 0, 38, 184, 28, 47, 105, 61, 0, 60, 0, 74, 102, 0, 59, 185, 86, 18, 188, 61, 0, 60, 0, 74, 102, 0, 40, 184, 222, 49, 52, 61, 0, 60, 0, 74, 102, 0, 59, 185, 99, 52, 240, 60, 0, 60, 0, 74, 102, 0, 38, 184, 28, 47, 105, 61, 0, 60, 130, 255, 0, 0, 38, 184, 89, 47, 116, 61, 0, 60, 130, 255, 0, 0, 40, 184, 195, 49, 94, 61, 0, 60, 130, 255, 0, 0, 40, 184, 222, 49, 52, 61, 0, 60, 130, 255, 0, 0, 233, 182, 9, 50, 58, 61, 0, 60, 124, 26, 0, 0, 233, 182, 233, 49, 92, 61, 0, 60, 124, 26, 0, 0, 172, 182, 135, 47, 114, 61, 0, 60, 124, 26, 0, 0, 172, 182, 79, 47, 103, 61, 0, 60, 124, 26, 0, 0, 40, 184, 222, 49, 52, 61, 0, 60, 249, 126, 11, 0, 40, 184, 195, 49, 94, 61, 0, 60, 249, 126, 11, 0, 233, 182, 233, 49, 92, 61, 0, 60, 249, 126, 11, 0, 233, 182, 9, 50, 58, 61, 0, 60, 249, 126, 11, 0, 172, 182, 79, 47, 103, 61, 0, 60, 4, 137, 41, 0, 172, 182, 135, 47, 114, 61, 0, 60, 4, 137, 41, 0, 38, 184, 89, 47, 116, 61, 0, 60, 4, 137, 41, 0, 38, 184, 28, 47, 105, 61, 0, 60, 4, 137, 41, 0), -"array_index_data": PackedByteArray(0, 0, 2, 0, 1, 0, 0, 0, 3, 0, 2, 0, 4, 0, 6, 0, 5, 0, 4, 0, 7, 0, 6, 0, 8, 0, 10, 0, 9, 0, 9, 0, 12, 0, 11, 0, 13, 0, 15, 0, 14, 0, 9, 0, 10, 0, 12, 0, 16, 0, 18, 0, 17, 0, 16, 0, 19, 0, 18, 0, 20, 0, 22, 0, 21, 0, 20, 0, 23, 0, 22, 0, 24, 0, 26, 0, 25, 0, 24, 0, 27, 0, 26, 0, 28, 0, 30, 0, 29, 0, 31, 0, 33, 0, 32, 0, 34, 0, 36, 0, 35, 0, 34, 0, 37, 0, 36, 0, 38, 0, 40, 0, 39, 0, 38, 0, 41, 0, 40, 0, 38, 0, 43, 0, 42, 0, 38, 0, 39, 0, 43, 0, 17, 0, 45, 0, 44, 0, 17, 0, 18, 0, 45, 0, 20, 0, 10, 0, 8, 0, 20, 0, 21, 0, 10, 0, 46, 0, 48, 0, 47, 0, 46, 0, 49, 0, 48, 0, 50, 0, 52, 0, 51, 0, 50, 0, 53, 0, 52, 0, 35, 0, 41, 0, 38, 0, 35, 0, 36, 0, 41, 0, 54, 0, 56, 0, 55, 0, 54, 0, 57, 0, 56, 0, 58, 0, 60, 0, 59, 0, 58, 0, 61, 0, 60, 0, 62, 0, 64, 0, 63, 0, 62, 0, 65, 0, 64, 0, 66, 0, 68, 0, 67, 0, 66, 0, 69, 0, 68, 0, 70, 0, 65, 0, 62, 0, 70, 0, 71, 0, 65, 0, 72, 0, 74, 0, 73, 0, 72, 0, 75, 0, 74, 0, 76, 0, 78, 0, 77, 0, 76, 0, 79, 0, 78, 0, 80, 0, 82, 0, 81, 0, 80, 0, 83, 0, 82, 0, 81, 0, 85, 0, 84, 0, 81, 0, 82, 0, 85, 0, 86, 0, 88, 0, 87, 0, 86, 0, 89, 0, 88, 0, 90, 0, 92, 0, 91, 0, 90, 0, 93, 0, 92, 0, 94, 0, 96, 0, 95, 0, 94, 0, 97, 0, 96, 0, 98, 0, 100, 0, 99, 0, 98, 0, 101, 0, 100, 0, 102, 0, 104, 0, 103, 0, 102, 0, 105, 0, 104, 0, 6, 0, 106, 0, 5, 0, 6, 0, 107, 0, 106, 0, 8, 0, 9, 0, 108, 0, 109, 0, 111, 0, 110, 0, 108, 0, 9, 0, 112, 0, 113, 0, 111, 0, 109, 0, 114, 0, 116, 0, 115, 0, 114, 0, 117, 0, 116, 0, 20, 0, 118, 0, 23, 0, 20, 0, 119, 0, 118, 0, 120, 0, 122, 0, 121, 0, 120, 0, 123, 0, 122, 0, 124, 0, 126, 0, 125, 0, 127, 0, 129, 0, 128, 0, 130, 0, 132, 0, 131, 0, 130, 0, 133, 0, 132, 0, 134, 0, 136, 0, 135, 0, 134, 0, 137, 0, 136, 0, 134, 0, 138, 0, 137, 0, 134, 0, 139, 0, 138, 0, 117, 0, 140, 0, 116, 0, 117, 0, 141, 0, 140, 0, 20, 0, 108, 0, 119, 0, 20, 0, 8, 0, 108, 0, 142, 0, 144, 0, 143, 0, 142, 0, 145, 0, 144, 0, 146, 0, 148, 0, 147, 0, 146, 0, 149, 0, 148, 0, 133, 0, 135, 0, 132, 0, 133, 0, 134, 0, 135, 0, 150, 0, 152, 0, 151, 0, 150, 0, 153, 0, 152, 0, 154, 0, 156, 0, 155, 0, 154, 0, 157, 0, 156, 0, 158, 0, 160, 0, 159, 0, 158, 0, 161, 0, 160, 0, 162, 0, 164, 0, 163, 0, 162, 0, 165, 0, 164, 0, 166, 0, 159, 0, 167, 0, 166, 0, 158, 0, 159, 0, 168, 0, 170, 0, 169, 0, 168, 0, 171, 0, 170, 0, 172, 0, 174, 0, 173, 0, 172, 0, 175, 0, 174, 0, 176, 0, 178, 0, 177, 0, 176, 0, 179, 0, 178, 0, 179, 0, 180, 0, 178, 0, 179, 0, 181, 0, 180, 0, 182, 0, 184, 0, 183, 0, 182, 0, 185, 0, 184, 0, 186, 0, 188, 0, 187, 0, 186, 0, 189, 0, 188, 0, 190, 0, 192, 0, 191, 0, 190, 0, 193, 0, 192, 0, 194, 0, 196, 0, 195, 0, 194, 0, 197, 0, 196, 0), -"blend_shape_data": [], -"format": 98051, +"format": 4099, "index_count": 348, -"material": ExtResource( 6 ), +"index_data": PackedByteArray(0, 0, 2, 0, 1, 0, 0, 0, 3, 0, 2, 0, 4, 0, 6, 0, 5, 0, 4, 0, 7, 0, 6, 0, 8, 0, 10, 0, 9, 0, 9, 0, 12, 0, 11, 0, 13, 0, 15, 0, 14, 0, 9, 0, 10, 0, 12, 0, 16, 0, 18, 0, 17, 0, 16, 0, 19, 0, 18, 0, 20, 0, 22, 0, 21, 0, 20, 0, 23, 0, 22, 0, 24, 0, 26, 0, 25, 0, 24, 0, 27, 0, 26, 0, 28, 0, 30, 0, 29, 0, 31, 0, 33, 0, 32, 0, 34, 0, 36, 0, 35, 0, 34, 0, 37, 0, 36, 0, 38, 0, 40, 0, 39, 0, 38, 0, 41, 0, 40, 0, 38, 0, 43, 0, 42, 0, 38, 0, 39, 0, 43, 0, 17, 0, 45, 0, 44, 0, 17, 0, 18, 0, 45, 0, 20, 0, 10, 0, 8, 0, 20, 0, 21, 0, 10, 0, 46, 0, 48, 0, 47, 0, 46, 0, 49, 0, 48, 0, 50, 0, 52, 0, 51, 0, 50, 0, 53, 0, 52, 0, 35, 0, 41, 0, 38, 0, 35, 0, 36, 0, 41, 0, 54, 0, 56, 0, 55, 0, 54, 0, 57, 0, 56, 0, 58, 0, 60, 0, 59, 0, 58, 0, 61, 0, 60, 0, 62, 0, 64, 0, 63, 0, 62, 0, 65, 0, 64, 0, 66, 0, 68, 0, 67, 0, 66, 0, 69, 0, 68, 0, 70, 0, 65, 0, 62, 0, 70, 0, 71, 0, 65, 0, 72, 0, 74, 0, 73, 0, 72, 0, 75, 0, 74, 0, 76, 0, 78, 0, 77, 0, 76, 0, 79, 0, 78, 0, 80, 0, 82, 0, 81, 0, 80, 0, 83, 0, 82, 0, 81, 0, 85, 0, 84, 0, 81, 0, 82, 0, 85, 0, 86, 0, 88, 0, 87, 0, 86, 0, 89, 0, 88, 0, 90, 0, 92, 0, 91, 0, 90, 0, 93, 0, 92, 0, 94, 0, 96, 0, 95, 0, 94, 0, 97, 0, 96, 0, 98, 0, 100, 0, 99, 0, 98, 0, 101, 0, 100, 0, 102, 0, 104, 0, 103, 0, 102, 0, 105, 0, 104, 0, 6, 0, 106, 0, 5, 0, 6, 0, 107, 0, 106, 0, 8, 0, 9, 0, 108, 0, 109, 0, 111, 0, 110, 0, 108, 0, 9, 0, 112, 0, 113, 0, 111, 0, 109, 0, 114, 0, 116, 0, 115, 0, 114, 0, 117, 0, 116, 0, 20, 0, 118, 0, 23, 0, 20, 0, 119, 0, 118, 0, 120, 0, 122, 0, 121, 0, 120, 0, 123, 0, 122, 0, 124, 0, 126, 0, 125, 0, 127, 0, 129, 0, 128, 0, 130, 0, 132, 0, 131, 0, 130, 0, 133, 0, 132, 0, 134, 0, 136, 0, 135, 0, 134, 0, 137, 0, 136, 0, 134, 0, 138, 0, 137, 0, 134, 0, 139, 0, 138, 0, 117, 0, 140, 0, 116, 0, 117, 0, 141, 0, 140, 0, 20, 0, 108, 0, 119, 0, 20, 0, 8, 0, 108, 0, 142, 0, 144, 0, 143, 0, 142, 0, 145, 0, 144, 0, 146, 0, 148, 0, 147, 0, 146, 0, 149, 0, 148, 0, 133, 0, 135, 0, 132, 0, 133, 0, 134, 0, 135, 0, 150, 0, 152, 0, 151, 0, 150, 0, 153, 0, 152, 0, 154, 0, 156, 0, 155, 0, 154, 0, 157, 0, 156, 0, 158, 0, 160, 0, 159, 0, 158, 0, 161, 0, 160, 0, 162, 0, 164, 0, 163, 0, 162, 0, 165, 0, 164, 0, 166, 0, 159, 0, 167, 0, 166, 0, 158, 0, 159, 0, 168, 0, 170, 0, 169, 0, 168, 0, 171, 0, 170, 0, 172, 0, 174, 0, 173, 0, 172, 0, 175, 0, 174, 0, 176, 0, 178, 0, 177, 0, 176, 0, 179, 0, 178, 0, 179, 0, 180, 0, 178, 0, 179, 0, 181, 0, 180, 0, 182, 0, 184, 0, 183, 0, 182, 0, 185, 0, 184, 0, 186, 0, 188, 0, 187, 0, 186, 0, 189, 0, 188, 0, 190, 0, 192, 0, 191, 0, 190, 0, 193, 0, 192, 0, 194, 0, 196, 0, 195, 0, 194, 0, 197, 0, 196, 0), +"material": ExtResource( "6" ), "name": "Material.001", -"primitive": 4, -"skeleton_aabb": [], -"vertex_count": 198 -} -surfaces/1 = { +"primitive": 3, +"vertex_count": 198, +"vertex_data": PackedByteArray(0, 160, 0, 63, 0, 0, 24, 63, 0, 96, 175, 62, 104, 184, 143, 8, 0, 0, 0, 0, 0, 0, 24, 63, 0, 160, 224, 62, 104, 184, 143, 8, 0, 0, 0, 0, 0, 192, 0, 63, 0, 160, 178, 63, 104, 184, 143, 8, 0, 224, 126, 62, 0, 160, 223, 62, 0, 160, 178, 63, 104, 184, 143, 8, 0, 160, 0, 63, 0, 192, 74, 58, 0, 64, 159, 191, 0, 192, 1, 0, 0, 0, 0, 0, 0, 192, 74, 58, 0, 64, 159, 191, 0, 192, 1, 0, 0, 0, 0, 0, 0, 0, 24, 63, 0, 96, 150, 191, 0, 192, 1, 0, 0, 160, 0, 63, 0, 0, 24, 63, 0, 96, 150, 191, 0, 192, 1, 0, 0, 0, 0, 0, 0, 192, 74, 58, 0, 128, 162, 190, 0, 0, 0, 0, 0, 0, 0, 0, 0, 192, 74, 58, 0, 64, 159, 191, 0, 0, 0, 0, 0, 160, 0, 63, 0, 192, 74, 58, 0, 128, 162, 190, 0, 0, 0, 0, 0, 160, 0, 63, 0, 192, 74, 58, 0, 64, 159, 191, 0, 0, 0, 0, 0, 160, 0, 63, 0, 192, 74, 58, 0, 32, 138, 191, 0, 0, 0, 0, 0, 160, 0, 63, 0, 192, 74, 58, 0, 32, 138, 191, 0, 0, 0, 0, 0, 160, 0, 63, 0, 192, 74, 58, 0, 0, 252, 190, 0, 0, 0, 0, 0, 160, 0, 63, 0, 192, 74, 58, 0, 128, 162, 190, 0, 0, 0, 0, 0, 160, 0, 63, 0, 224, 133, 63, 0, 160, 66, 62, 40, 216, 15, 0, 0, 160, 0, 63, 0, 224, 133, 63, 0, 128, 162, 190, 40, 216, 15, 0, 0, 0, 0, 0, 0, 96, 136, 63, 0, 128, 162, 190, 40, 216, 15, 0, 0, 0, 0, 0, 0, 96, 136, 63, 0, 128, 146, 62, 40, 216, 15, 0, 0, 0, 0, 0, 0, 192, 74, 58, 0, 96, 175, 62, 0, 0, 0, 0, 0, 160, 0, 63, 0, 192, 74, 58, 0, 96, 175, 62, 0, 0, 0, 0, 0, 224, 126, 62, 0, 192, 74, 58, 0, 128, 183, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 192, 74, 58, 0, 128, 183, 63, 0, 0, 0, 0, 0, 160, 0, 63, 0, 0, 24, 63, 0, 96, 175, 62, 222, 163, 16, 15, 0, 224, 126, 62, 0, 160, 223, 62, 0, 160, 178, 63, 222, 163, 16, 15, 0, 224, 149, 62, 0, 64, 158, 62, 0, 224, 159, 63, 222, 163, 16, 15, 0, 32, 186, 62, 0, 64, 158, 62, 0, 192, 115, 63, 222, 163, 16, 15, 0, 160, 0, 63, 0, 192, 74, 58, 0, 96, 175, 62, 222, 3, 16, 14, 0, 160, 0, 63, 0, 0, 24, 63, 0, 96, 175, 62, 222, 3, 16, 14, 0, 32, 186, 62, 0, 64, 158, 62, 0, 192, 115, 63, 222, 3, 16, 14, 0, 224, 126, 62, 0, 160, 223, 62, 0, 160, 178, 63, 214, 67, 144, 16, 0, 224, 126, 62, 0, 192, 74, 58, 0, 128, 183, 63, 214, 67, 144, 16, 0, 224, 149, 62, 0, 64, 158, 62, 0, 224, 159, 63, 214, 67, 144, 16, 0, 160, 0, 63, 0, 192, 74, 58, 0, 64, 159, 191, 254, 3, 0, 0, 0, 160, 0, 63, 0, 0, 24, 63, 0, 96, 150, 191, 254, 3, 0, 0, 0, 160, 0, 63, 0, 64, 161, 62, 0, 32, 116, 191, 254, 3, 0, 0, 0, 160, 0, 63, 0, 192, 74, 58, 0, 32, 138, 191, 254, 3, 0, 0, 0, 160, 0, 63, 0, 0, 24, 63, 0, 128, 162, 190, 254, 3, 0, 0, 0, 160, 0, 63, 0, 192, 74, 58, 0, 128, 162, 190, 254, 3, 0, 0, 0, 160, 0, 63, 0, 192, 74, 58, 0, 0, 252, 190, 254, 3, 0, 0, 0, 160, 0, 63, 0, 64, 161, 62, 0, 64, 30, 191, 254, 3, 0, 0, 0, 160, 0, 63, 0, 0, 24, 63, 0, 96, 175, 62, 254, 3, 0, 0, 0, 160, 0, 63, 0, 192, 74, 58, 0, 96, 175, 62, 254, 3, 0, 0, 0, 160, 0, 63, 0, 224, 133, 63, 0, 64, 159, 191, 40, 216, 15, 0, 0, 0, 0, 0, 0, 96, 136, 63, 0, 64, 159, 191, 40, 216, 15, 0, 0, 160, 0, 63, 0, 64, 161, 62, 0, 64, 30, 191, 96, 136, 230, 57, 0, 160, 0, 63, 0, 192, 74, 58, 0, 0, 252, 190, 96, 136, 230, 57, 0, 96, 39, 63, 0, 192, 74, 58, 0, 0, 252, 190, 96, 136, 230, 57, 0, 96, 39, 63, 0, 96, 143, 62, 0, 128, 34, 191, 96, 136, 230, 57, 0, 160, 0, 63, 0, 192, 74, 58, 0, 96, 175, 62, 80, 88, 14, 0, 0, 32, 186, 62, 0, 64, 158, 62, 0, 192, 115, 63, 80, 88, 14, 0, 0, 96, 39, 63, 0, 96, 140, 62, 0, 128, 119, 63, 80, 88, 14, 0, 0, 96, 39, 63, 0, 192, 74, 58, 0, 96, 175, 62, 80, 88, 14, 0, 0, 160, 0, 63, 0, 192, 74, 58, 0, 32, 138, 191, 96, 136, 6, 0, 0, 160, 0, 63, 0, 64, 161, 62, 0, 32, 116, 191, 96, 136, 6, 0, 0, 96, 39, 63, 0, 96, 143, 62, 0, 224, 111, 191, 96, 136, 6, 0, 0, 96, 39, 63, 0, 192, 74, 58, 0, 32, 138, 191, 96, 136, 6, 0, 0, 32, 186, 62, 0, 64, 158, 62, 0, 192, 115, 63, 104, 216, 143, 0, 0, 224, 149, 62, 0, 64, 158, 62, 0, 224, 159, 63, 104, 216, 143, 0, 0, 96, 39, 63, 0, 96, 140, 62, 0, 0, 158, 63, 104, 216, 143, 0, 0, 96, 39, 63, 0, 96, 140, 62, 0, 128, 119, 63, 104, 216, 143, 0, 0, 160, 0, 63, 0, 192, 74, 58, 0, 128, 162, 190, 0, 248, 15, 0, 0, 160, 0, 63, 0, 192, 74, 58, 0, 96, 175, 62, 0, 248, 15, 0, 0, 96, 39, 63, 0, 192, 74, 58, 0, 96, 175, 62, 0, 248, 15, 0, 0, 96, 39, 63, 0, 192, 74, 58, 0, 128, 162, 190, 0, 248, 15, 0, 0, 160, 0, 63, 0, 64, 161, 62, 0, 32, 116, 191, 225, 120, 15, 0, 0, 160, 0, 63, 0, 64, 161, 62, 0, 64, 30, 191, 225, 120, 15, 0, 0, 96, 39, 63, 0, 96, 143, 62, 0, 128, 34, 191, 225, 120, 15, 0, 0, 96, 39, 63, 0, 96, 143, 62, 0, 224, 111, 191, 225, 120, 15, 0, 0, 160, 0, 63, 0, 192, 74, 58, 0, 0, 252, 190, 0, 248, 15, 0, 0, 96, 39, 63, 0, 192, 74, 58, 0, 0, 252, 190, 0, 248, 15, 0, 0, 224, 149, 62, 0, 64, 158, 62, 0, 224, 159, 63, 80, 236, 231, 54, 0, 224, 126, 62, 0, 192, 74, 58, 0, 128, 183, 63, 80, 236, 231, 54, 0, 128, 213, 62, 0, 224, 233, 61, 0, 224, 172, 63, 80, 236, 231, 54, 0, 32, 221, 62, 0, 32, 65, 62, 0, 64, 167, 63, 80, 236, 231, 54, 0, 96, 39, 63, 0, 96, 140, 62, 0, 0, 158, 63, 80, 236, 231, 54, 0, 224, 149, 62, 0, 64, 158, 62, 0, 224, 159, 63, 80, 236, 231, 54, 0, 32, 221, 62, 0, 32, 65, 62, 0, 64, 167, 63, 80, 236, 231, 54, 0, 0, 5, 63, 0, 192, 59, 62, 0, 128, 166, 63, 80, 236, 231, 54, 0, 224, 126, 62, 0, 192, 74, 58, 0, 128, 183, 63, 0, 80, 89, 51, 0, 96, 39, 63, 0, 192, 74, 58, 0, 128, 183, 63, 0, 80, 89, 51, 0, 192, 4, 63, 0, 128, 227, 61, 0, 32, 173, 63, 0, 80, 89, 51, 0, 128, 213, 62, 0, 224, 233, 61, 0, 224, 172, 63, 0, 80, 89, 51, 0, 96, 39, 63, 0, 96, 140, 62, 0, 0, 158, 63, 0, 80, 89, 51, 0, 0, 5, 63, 0, 192, 59, 62, 0, 128, 166, 63, 0, 80, 89, 51, 0, 192, 4, 63, 0, 128, 227, 61, 0, 32, 173, 63, 254, 3, 0, 0, 0, 0, 5, 63, 0, 192, 59, 62, 0, 128, 166, 63, 254, 3, 0, 0, 0, 0, 5, 63, 0, 96, 56, 62, 0, 192, 171, 63, 254, 3, 0, 0, 0, 192, 4, 63, 0, 32, 235, 61, 0, 128, 174, 63, 254, 3, 0, 0, 0, 32, 221, 62, 0, 32, 65, 62, 0, 64, 167, 63, 0, 68, 3, 0, 0, 128, 213, 62, 0, 224, 233, 61, 0, 224, 172, 63, 0, 68, 3, 0, 0, 128, 213, 62, 0, 224, 240, 61, 0, 64, 174, 63, 0, 68, 3, 0, 0, 32, 221, 62, 0, 32, 61, 62, 0, 128, 171, 63, 0, 68, 3, 0, 0, 0, 5, 63, 0, 192, 59, 62, 0, 128, 166, 63, 56, 216, 143, 5, 0, 32, 221, 62, 0, 32, 65, 62, 0, 64, 167, 63, 56, 216, 143, 5, 0, 32, 221, 62, 0, 32, 61, 62, 0, 128, 171, 63, 56, 216, 143, 5, 0, 0, 5, 63, 0, 96, 56, 62, 0, 192, 171, 63, 56, 216, 143, 5, 0, 128, 213, 62, 0, 224, 233, 61, 0, 224, 172, 63, 0, 0, 160, 20, 0, 192, 4, 63, 0, 128, 227, 61, 0, 32, 173, 63, 0, 0, 160, 20, 0, 192, 4, 63, 0, 32, 235, 61, 0, 128, 174, 63, 0, 0, 160, 20, 0, 128, 213, 62, 0, 224, 240, 61, 0, 64, 174, 63, 0, 0, 160, 20, 0, 160, 0, 191, 0, 0, 24, 63, 0, 96, 175, 62, 0, 184, 143, 8, 0, 224, 126, 190, 0, 160, 223, 62, 0, 160, 178, 63, 0, 184, 143, 8, 0, 0, 0, 0, 0, 192, 0, 63, 0, 160, 178, 63, 0, 184, 143, 8, 0, 0, 0, 0, 0, 0, 24, 63, 0, 160, 224, 62, 0, 184, 143, 8, 0, 160, 0, 191, 0, 192, 74, 58, 0, 64, 159, 191, 0, 192, 1, 0, 0, 160, 0, 191, 0, 0, 24, 63, 0, 96, 150, 191, 0, 192, 1, 0, 0, 160, 0, 191, 0, 192, 74, 58, 0, 128, 162, 190, 0, 0, 0, 0, 0, 160, 0, 191, 0, 192, 74, 58, 0, 0, 252, 190, 0, 0, 0, 0, 0, 160, 0, 191, 0, 192, 74, 58, 0, 32, 138, 191, 0, 0, 0, 0, 0, 160, 0, 191, 0, 192, 74, 58, 0, 64, 159, 191, 0, 0, 0, 0, 0, 160, 0, 191, 0, 192, 74, 58, 0, 64, 159, 191, 0, 0, 0, 0, 0, 160, 0, 191, 0, 192, 74, 58, 0, 128, 162, 190, 0, 0, 0, 0, 0, 160, 0, 191, 0, 224, 133, 63, 0, 160, 66, 62, 0, 216, 15, 0, 0, 0, 0, 0, 0, 96, 136, 63, 0, 128, 146, 62, 0, 216, 15, 0, 0, 0, 0, 0, 0, 96, 136, 63, 0, 128, 162, 190, 0, 216, 15, 0, 0, 160, 0, 191, 0, 224, 133, 63, 0, 128, 162, 190, 0, 216, 15, 0, 0, 224, 126, 190, 0, 192, 74, 58, 0, 128, 183, 63, 0, 0, 0, 0, 0, 160, 0, 191, 0, 192, 74, 58, 0, 96, 175, 62, 0, 0, 0, 0, 0, 160, 0, 191, 0, 0, 24, 63, 0, 96, 175, 62, 0, 160, 16, 15, 0, 32, 186, 190, 0, 64, 158, 62, 0, 192, 115, 63, 0, 160, 16, 15, 0, 224, 149, 190, 0, 64, 158, 62, 0, 224, 159, 63, 0, 160, 16, 15, 0, 224, 126, 190, 0, 160, 223, 62, 0, 160, 178, 63, 0, 160, 16, 15, 0, 160, 0, 191, 0, 192, 74, 58, 0, 96, 175, 62, 0, 0, 16, 14, 0, 32, 186, 190, 0, 64, 158, 62, 0, 192, 115, 63, 0, 0, 16, 14, 0, 160, 0, 191, 0, 0, 24, 63, 0, 96, 175, 62, 0, 0, 16, 14, 0, 224, 126, 190, 0, 160, 223, 62, 0, 160, 178, 63, 0, 64, 144, 16, 0, 224, 149, 190, 0, 64, 158, 62, 0, 224, 159, 63, 0, 64, 144, 16, 0, 224, 126, 190, 0, 192, 74, 58, 0, 128, 183, 63, 0, 64, 144, 16, 0, 160, 0, 191, 0, 192, 74, 58, 0, 64, 159, 191, 0, 0, 0, 0, 0, 160, 0, 191, 0, 192, 74, 58, 0, 32, 138, 191, 0, 0, 0, 0, 0, 160, 0, 191, 0, 64, 161, 62, 0, 32, 116, 191, 0, 0, 0, 0, 0, 160, 0, 191, 0, 0, 24, 63, 0, 96, 150, 191, 0, 0, 0, 0, 0, 160, 0, 191, 0, 0, 24, 63, 0, 128, 162, 190, 0, 0, 0, 0, 0, 160, 0, 191, 0, 64, 161, 62, 0, 64, 30, 191, 0, 0, 0, 0, 0, 160, 0, 191, 0, 192, 74, 58, 0, 0, 252, 190, 0, 0, 0, 0, 0, 160, 0, 191, 0, 192, 74, 58, 0, 128, 162, 190, 0, 0, 0, 0, 0, 160, 0, 191, 0, 192, 74, 58, 0, 96, 175, 62, 0, 0, 0, 0, 0, 160, 0, 191, 0, 0, 24, 63, 0, 96, 175, 62, 0, 0, 0, 0, 0, 0, 0, 0, 0, 96, 136, 63, 0, 64, 159, 191, 0, 216, 15, 0, 0, 160, 0, 191, 0, 224, 133, 63, 0, 64, 159, 191, 0, 216, 15, 0, 0, 160, 0, 191, 0, 64, 161, 62, 0, 64, 30, 191, 0, 136, 230, 57, 0, 96, 39, 191, 0, 96, 143, 62, 0, 128, 34, 191, 0, 136, 230, 57, 0, 96, 39, 191, 0, 192, 74, 58, 0, 0, 252, 190, 0, 136, 230, 57, 0, 160, 0, 191, 0, 192, 74, 58, 0, 0, 252, 190, 0, 136, 230, 57, 0, 160, 0, 191, 0, 192, 74, 58, 0, 96, 175, 62, 0, 88, 14, 0, 0, 96, 39, 191, 0, 192, 74, 58, 0, 96, 175, 62, 0, 88, 14, 0, 0, 96, 39, 191, 0, 96, 140, 62, 0, 128, 119, 63, 0, 88, 14, 0, 0, 32, 186, 190, 0, 64, 158, 62, 0, 192, 115, 63, 0, 88, 14, 0, 0, 160, 0, 191, 0, 192, 74, 58, 0, 32, 138, 191, 0, 136, 6, 0, 0, 96, 39, 191, 0, 192, 74, 58, 0, 32, 138, 191, 0, 136, 6, 0, 0, 96, 39, 191, 0, 96, 143, 62, 0, 224, 111, 191, 0, 136, 6, 0, 0, 160, 0, 191, 0, 64, 161, 62, 0, 32, 116, 191, 0, 136, 6, 0, 0, 32, 186, 190, 0, 64, 158, 62, 0, 192, 115, 63, 0, 216, 143, 0, 0, 96, 39, 191, 0, 96, 140, 62, 0, 128, 119, 63, 0, 216, 143, 0, 0, 96, 39, 191, 0, 96, 140, 62, 0, 0, 158, 63, 0, 216, 143, 0, 0, 224, 149, 190, 0, 64, 158, 62, 0, 224, 159, 63, 0, 216, 143, 0, 0, 160, 0, 191, 0, 192, 74, 58, 0, 128, 162, 190, 0, 248, 15, 0, 0, 96, 39, 191, 0, 192, 74, 58, 0, 128, 162, 190, 0, 248, 15, 0, 0, 96, 39, 191, 0, 192, 74, 58, 0, 96, 175, 62, 0, 248, 15, 0, 0, 160, 0, 191, 0, 192, 74, 58, 0, 96, 175, 62, 0, 248, 15, 0, 0, 160, 0, 191, 0, 64, 161, 62, 0, 32, 116, 191, 0, 120, 15, 0, 0, 96, 39, 191, 0, 96, 143, 62, 0, 224, 111, 191, 0, 120, 15, 0, 0, 96, 39, 191, 0, 96, 143, 62, 0, 128, 34, 191, 0, 120, 15, 0, 0, 160, 0, 191, 0, 64, 161, 62, 0, 64, 30, 191, 0, 120, 15, 0, 0, 160, 0, 191, 0, 192, 74, 58, 0, 0, 252, 190, 0, 248, 15, 0, 0, 96, 39, 191, 0, 192, 74, 58, 0, 0, 252, 190, 0, 248, 15, 0, 0, 224, 149, 190, 0, 64, 158, 62, 0, 224, 159, 63, 0, 236, 231, 54, 0, 32, 221, 190, 0, 32, 65, 62, 0, 64, 167, 63, 0, 236, 231, 54, 0, 128, 213, 190, 0, 224, 233, 61, 0, 224, 172, 63, 0, 236, 231, 54, 0, 224, 126, 190, 0, 192, 74, 58, 0, 128, 183, 63, 0, 236, 231, 54, 0, 96, 39, 191, 0, 96, 140, 62, 0, 0, 158, 63, 0, 236, 231, 54, 0, 0, 5, 191, 0, 192, 59, 62, 0, 128, 166, 63, 0, 236, 231, 54, 0, 32, 221, 190, 0, 32, 65, 62, 0, 64, 167, 63, 0, 236, 231, 54, 0, 224, 149, 190, 0, 64, 158, 62, 0, 224, 159, 63, 0, 236, 231, 54, 0, 224, 126, 190, 0, 192, 74, 58, 0, 128, 183, 63, 0, 80, 89, 51, 0, 128, 213, 190, 0, 224, 233, 61, 0, 224, 172, 63, 0, 80, 89, 51, 0, 192, 4, 191, 0, 128, 227, 61, 0, 32, 173, 63, 0, 80, 89, 51, 0, 96, 39, 191, 0, 192, 74, 58, 0, 128, 183, 63, 0, 80, 89, 51, 0, 0, 5, 191, 0, 192, 59, 62, 0, 128, 166, 63, 0, 80, 89, 51, 0, 96, 39, 191, 0, 96, 140, 62, 0, 0, 158, 63, 0, 80, 89, 51, 0, 192, 4, 191, 0, 128, 227, 61, 0, 32, 173, 63, 0, 0, 0, 0, 0, 192, 4, 191, 0, 32, 235, 61, 0, 128, 174, 63, 0, 0, 0, 0, 0, 0, 5, 191, 0, 96, 56, 62, 0, 192, 171, 63, 0, 0, 0, 0, 0, 0, 5, 191, 0, 192, 59, 62, 0, 128, 166, 63, 0, 0, 0, 0, 0, 32, 221, 190, 0, 32, 65, 62, 0, 64, 167, 63, 230, 71, 3, 0, 0, 32, 221, 190, 0, 32, 61, 62, 0, 128, 171, 63, 230, 71, 3, 0, 0, 128, 213, 190, 0, 224, 240, 61, 0, 64, 174, 63, 230, 71, 3, 0, 0, 128, 213, 190, 0, 224, 233, 61, 0, 224, 172, 63, 230, 71, 3, 0, 0, 0, 5, 191, 0, 192, 59, 62, 0, 128, 166, 63, 0, 216, 143, 5, 0, 0, 5, 191, 0, 96, 56, 62, 0, 192, 171, 63, 0, 216, 143, 5, 0, 32, 221, 190, 0, 32, 61, 62, 0, 128, 171, 63, 0, 216, 143, 5, 0, 32, 221, 190, 0, 32, 65, 62, 0, 64, 167, 63, 0, 216, 143, 5, 0, 128, 213, 190, 0, 224, 233, 61, 0, 224, 172, 63, 32, 0, 160, 20, 0, 128, 213, 190, 0, 224, 240, 61, 0, 64, 174, 63, 32, 0, 160, 20, 0, 192, 4, 191, 0, 32, 235, 61, 0, 128, 174, 63, 32, 0, 160, 20, 0, 192, 4, 191, 0, 128, 227, 61, 0, 32, 173, 63, 32, 0, 160, 20) +}, { "aabb": AABB(-0.519564, 0.114819, -1.24434, 1.03913, 0.951363, 2.60765), -"array_data": PackedByteArray(5, 56, 47, 60, 21, 50, 0, 60, 23, 39, 118, 0, 0, 0, 67, 60, 148, 52, 0, 60, 23, 39, 118, 0, 0, 0, 192, 56, 5, 55, 0, 60, 23, 39, 118, 0, 5, 56, 192, 56, 123, 53, 0, 60, 23, 39, 118, 0, 5, 56, 47, 60, 250, 188, 0, 60, 127, 0, 0, 0, 5, 56, 47, 60, 20, 181, 0, 60, 127, 0, 0, 0, 5, 56, 192, 56, 20, 181, 0, 60, 127, 0, 0, 0, 0, 0, 67, 60, 250, 188, 0, 60, 0, 238, 131, 0, 5, 56, 47, 60, 250, 188, 0, 60, 0, 238, 131, 0, 5, 56, 192, 56, 179, 188, 0, 60, 0, 238, 131, 0, 0, 0, 192, 56, 179, 188, 0, 60, 0, 238, 131, 0, 5, 56, 47, 60, 21, 50, 0, 60, 127, 0, 0, 0, 5, 56, 192, 56, 123, 53, 0, 60, 127, 0, 0, 0, 172, 54, 135, 47, 114, 61, 0, 60, 0, 39, 120, 0, 38, 56, 89, 47, 116, 61, 0, 60, 0, 39, 120, 0, 40, 56, 195, 49, 94, 61, 0, 60, 0, 39, 120, 0, 233, 54, 233, 49, 92, 61, 0, 60, 0, 39, 120, 0, 5, 56, 192, 56, 179, 188, 0, 60, 127, 0, 0, 0, 5, 184, 47, 60, 21, 50, 0, 60, 233, 39, 118, 0, 5, 184, 192, 56, 123, 53, 0, 60, 233, 39, 118, 0, 0, 0, 192, 56, 5, 55, 0, 60, 233, 39, 118, 0, 0, 0, 67, 60, 148, 52, 0, 60, 233, 39, 118, 0, 5, 184, 47, 60, 250, 188, 0, 60, 130, 0, 0, 0, 5, 184, 192, 56, 20, 181, 0, 60, 130, 0, 0, 0, 5, 184, 47, 60, 20, 181, 0, 60, 130, 0, 0, 0, 0, 0, 67, 60, 250, 188, 0, 60, 0, 238, 131, 0, 0, 0, 192, 56, 179, 188, 0, 60, 0, 238, 131, 0, 5, 184, 192, 56, 179, 188, 0, 60, 0, 238, 131, 0, 5, 184, 47, 60, 250, 188, 0, 60, 0, 238, 131, 0, 5, 184, 192, 56, 123, 53, 0, 60, 130, 0, 0, 0, 5, 184, 47, 60, 21, 50, 0, 60, 130, 0, 0, 0, 172, 182, 135, 47, 114, 61, 0, 60, 0, 39, 120, 0, 233, 182, 233, 49, 92, 61, 0, 60, 0, 39, 120, 0, 40, 184, 195, 49, 94, 61, 0, 60, 0, 39, 120, 0, 38, 184, 89, 47, 116, 61, 0, 60, 0, 39, 120, 0, 5, 184, 192, 56, 179, 188, 0, 60, 130, 0, 0, 0), -"array_index_data": PackedByteArray(0, 0, 2, 0, 1, 0, 0, 0, 3, 0, 2, 0, 4, 0, 6, 0, 5, 0, 7, 0, 9, 0, 8, 0, 7, 0, 10, 0, 9, 0, 5, 0, 12, 0, 11, 0, 5, 0, 6, 0, 12, 0, 13, 0, 15, 0, 14, 0, 13, 0, 16, 0, 15, 0, 17, 0, 6, 0, 4, 0, 18, 0, 20, 0, 19, 0, 18, 0, 21, 0, 20, 0, 22, 0, 24, 0, 23, 0, 25, 0, 27, 0, 26, 0, 25, 0, 28, 0, 27, 0, 24, 0, 29, 0, 23, 0, 24, 0, 30, 0, 29, 0, 31, 0, 33, 0, 32, 0, 31, 0, 34, 0, 33, 0, 35, 0, 22, 0, 23, 0), -"blend_shape_data": [], -"format": 98051, +"format": 4099, "index_count": 60, -"material": SubResource( 14 ), +"index_data": PackedByteArray(0, 0, 2, 0, 1, 0, 0, 0, 3, 0, 2, 0, 4, 0, 6, 0, 5, 0, 7, 0, 9, 0, 8, 0, 7, 0, 10, 0, 9, 0, 5, 0, 12, 0, 11, 0, 5, 0, 6, 0, 12, 0, 13, 0, 15, 0, 14, 0, 13, 0, 16, 0, 15, 0, 17, 0, 6, 0, 4, 0, 18, 0, 20, 0, 19, 0, 18, 0, 21, 0, 20, 0, 22, 0, 24, 0, 23, 0, 25, 0, 27, 0, 26, 0, 25, 0, 28, 0, 27, 0, 24, 0, 29, 0, 23, 0, 24, 0, 30, 0, 29, 0, 31, 0, 33, 0, 32, 0, 31, 0, 34, 0, 33, 0, 35, 0, 22, 0, 23, 0), +"material": SubResource( "14" ), "name": "Material.002", -"primitive": 4, -"skeleton_aabb": [], -"vertex_count": 36 -} -surfaces/2 = { +"primitive": 3, +"vertex_count": 36, +"vertex_data": PackedByteArray(0, 160, 0, 63, 0, 224, 133, 63, 0, 160, 66, 62, 185, 232, 100, 59, 0, 0, 0, 0, 0, 96, 136, 63, 0, 128, 146, 62, 185, 232, 100, 59, 0, 0, 0, 0, 0, 0, 24, 63, 0, 160, 224, 62, 185, 232, 100, 59, 0, 160, 0, 63, 0, 0, 24, 63, 0, 96, 175, 62, 185, 232, 100, 59, 0, 160, 0, 63, 0, 224, 133, 63, 0, 64, 159, 191, 254, 3, 0, 0, 0, 160, 0, 63, 0, 224, 133, 63, 0, 128, 162, 190, 254, 3, 0, 0, 0, 160, 0, 63, 0, 0, 24, 63, 0, 128, 162, 190, 254, 3, 0, 0, 0, 0, 0, 0, 0, 96, 136, 63, 0, 64, 159, 191, 0, 0, 0, 0, 0, 160, 0, 63, 0, 224, 133, 63, 0, 64, 159, 191, 0, 0, 0, 0, 0, 160, 0, 63, 0, 0, 24, 63, 0, 96, 150, 191, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 24, 63, 0, 96, 150, 191, 0, 0, 0, 0, 0, 160, 0, 63, 0, 224, 133, 63, 0, 160, 66, 62, 254, 3, 0, 0, 0, 160, 0, 63, 0, 0, 24, 63, 0, 96, 175, 62, 254, 3, 0, 0, 0, 128, 213, 62, 0, 224, 240, 61, 0, 64, 174, 63, 0, 232, 100, 60, 0, 192, 4, 63, 0, 32, 235, 61, 0, 128, 174, 63, 0, 232, 100, 60, 0, 0, 5, 63, 0, 96, 56, 62, 0, 192, 171, 63, 0, 232, 100, 60, 0, 32, 221, 62, 0, 32, 61, 62, 0, 128, 171, 63, 0, 232, 100, 60, 0, 160, 0, 63, 0, 0, 24, 63, 0, 96, 150, 191, 254, 3, 0, 0, 0, 160, 0, 191, 0, 224, 133, 63, 0, 160, 66, 62, 0, 232, 100, 59, 0, 160, 0, 191, 0, 0, 24, 63, 0, 96, 175, 62, 0, 232, 100, 59, 0, 0, 0, 0, 0, 0, 24, 63, 0, 160, 224, 62, 0, 232, 100, 59, 0, 0, 0, 0, 0, 96, 136, 63, 0, 128, 146, 62, 0, 232, 100, 59, 0, 160, 0, 191, 0, 224, 133, 63, 0, 64, 159, 191, 0, 0, 0, 0, 0, 160, 0, 191, 0, 0, 24, 63, 0, 128, 162, 190, 0, 0, 0, 0, 0, 160, 0, 191, 0, 224, 133, 63, 0, 128, 162, 190, 0, 0, 0, 0, 0, 0, 0, 0, 0, 96, 136, 63, 0, 64, 159, 191, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 24, 63, 0, 96, 150, 191, 0, 0, 0, 0, 0, 160, 0, 191, 0, 0, 24, 63, 0, 96, 150, 191, 0, 0, 0, 0, 0, 160, 0, 191, 0, 224, 133, 63, 0, 64, 159, 191, 0, 0, 0, 0, 0, 160, 0, 191, 0, 0, 24, 63, 0, 96, 175, 62, 0, 0, 0, 0, 0, 160, 0, 191, 0, 224, 133, 63, 0, 160, 66, 62, 0, 0, 0, 0, 0, 128, 213, 190, 0, 224, 240, 61, 0, 64, 174, 63, 0, 232, 100, 60, 0, 32, 221, 190, 0, 32, 61, 62, 0, 128, 171, 63, 0, 232, 100, 60, 0, 0, 5, 191, 0, 96, 56, 62, 0, 192, 171, 63, 0, 232, 100, 60, 0, 192, 4, 191, 0, 32, 235, 61, 0, 128, 174, 63, 0, 232, 100, 60, 0, 160, 0, 191, 0, 0, 24, 63, 0, 96, 150, 191, 0, 0, 0, 0) +}, { "aabb": AABB(-0.50249, 0.000773809, -1.07979, 1.00499, 0.502212, 2.51351), -"array_data": PackedByteArray(5, 56, 86, 18, 81, 188, 0, 60, 127, 0, 0, 0, 5, 56, 10, 53, 161, 187, 0, 60, 127, 0, 0, 0, 5, 56, 10, 53, 242, 184, 0, 60, 127, 0, 0, 0, 5, 56, 86, 18, 224, 183, 0, 60, 127, 0, 0, 0, 247, 51, 253, 54, 149, 61, 0, 60, 1, 10, 126, 0, 0, 0, 6, 56, 149, 61, 0, 60, 1, 10, 126, 0, 0, 0, 86, 18, 188, 61, 0, 60, 1, 10, 126, 0, 247, 51, 86, 18, 188, 61, 0, 60, 1, 10, 126, 0, 247, 51, 86, 18, 188, 61, 0, 60, 123, 0, 28, 0, 5, 56, 86, 18, 123, 53, 0, 60, 123, 0, 28, 0, 209, 53, 242, 52, 158, 59, 0, 60, 123, 0, 28, 0, 175, 52, 242, 52, 255, 60, 0, 60, 123, 0, 28, 0, 5, 184, 86, 18, 81, 188, 0, 60, 130, 0, 0, 0, 5, 184, 86, 18, 224, 183, 0, 60, 130, 0, 0, 0, 5, 184, 10, 53, 242, 184, 0, 60, 130, 0, 0, 0, 5, 184, 10, 53, 161, 187, 0, 60, 130, 0, 0, 0, 247, 179, 253, 54, 149, 61, 0, 60, 255, 10, 126, 0, 247, 179, 86, 18, 188, 61, 0, 60, 255, 10, 126, 0, 0, 0, 86, 18, 188, 61, 0, 60, 255, 10, 126, 0, 0, 0, 6, 56, 149, 61, 0, 60, 255, 10, 126, 0, 247, 179, 86, 18, 188, 61, 0, 60, 133, 0, 28, 0, 175, 180, 242, 52, 255, 60, 0, 60, 133, 0, 28, 0, 209, 181, 242, 52, 158, 59, 0, 60, 133, 0, 28, 0, 5, 184, 86, 18, 123, 53, 0, 60, 133, 0, 28, 0), -"array_index_data": PackedByteArray(0, 0, 2, 0, 1, 0, 0, 0, 3, 0, 2, 0, 4, 0, 6, 0, 5, 0, 4, 0, 7, 0, 6, 0, 8, 0, 10, 0, 9, 0, 8, 0, 11, 0, 10, 0, 12, 0, 14, 0, 13, 0, 12, 0, 15, 0, 14, 0, 16, 0, 18, 0, 17, 0, 16, 0, 19, 0, 18, 0, 20, 0, 22, 0, 21, 0, 20, 0, 23, 0, 22, 0), -"blend_shape_data": [], -"format": 98051, +"format": 4099, "index_count": 36, -"material": SubResource( 15 ), +"index_data": PackedByteArray(0, 0, 2, 0, 1, 0, 0, 0, 3, 0, 2, 0, 4, 0, 6, 0, 5, 0, 4, 0, 7, 0, 6, 0, 8, 0, 10, 0, 9, 0, 8, 0, 11, 0, 10, 0, 12, 0, 14, 0, 13, 0, 12, 0, 15, 0, 14, 0, 16, 0, 18, 0, 17, 0, 16, 0, 19, 0, 18, 0, 20, 0, 22, 0, 21, 0, 20, 0, 23, 0, 22, 0), +"material": SubResource( "15" ), "name": "Material.003", -"primitive": 4, -"skeleton_aabb": [], -"vertex_count": 24 -} +"primitive": 3, +"vertex_count": 24, +"vertex_data": PackedByteArray(0, 160, 0, 63, 0, 192, 74, 58, 0, 32, 138, 191, 254, 3, 0, 0, 0, 160, 0, 63, 0, 64, 161, 62, 0, 32, 116, 191, 254, 3, 0, 0, 0, 160, 0, 63, 0, 64, 161, 62, 0, 64, 30, 191, 254, 3, 0, 0, 0, 160, 0, 63, 0, 192, 74, 58, 0, 0, 252, 190, 254, 3, 0, 0, 0, 224, 126, 62, 0, 160, 223, 62, 0, 160, 178, 63, 8, 64, 97, 63, 0, 0, 0, 0, 0, 192, 0, 63, 0, 160, 178, 63, 8, 64, 97, 63, 0, 0, 0, 0, 0, 192, 74, 58, 0, 128, 183, 63, 8, 64, 97, 63, 0, 224, 126, 62, 0, 192, 74, 58, 0, 128, 183, 63, 8, 64, 97, 63, 0, 224, 126, 62, 0, 192, 74, 58, 0, 128, 183, 63, 222, 3, 16, 14, 0, 160, 0, 63, 0, 192, 74, 58, 0, 96, 175, 62, 222, 3, 16, 14, 0, 32, 186, 62, 0, 64, 158, 62, 0, 192, 115, 63, 222, 3, 16, 14, 0, 224, 149, 62, 0, 64, 158, 62, 0, 224, 159, 63, 222, 3, 16, 14, 0, 160, 0, 191, 0, 192, 74, 58, 0, 32, 138, 191, 0, 0, 0, 0, 0, 160, 0, 191, 0, 192, 74, 58, 0, 0, 252, 190, 0, 0, 0, 0, 0, 160, 0, 191, 0, 64, 161, 62, 0, 64, 30, 191, 0, 0, 0, 0, 0, 160, 0, 191, 0, 64, 161, 62, 0, 32, 116, 191, 0, 0, 0, 0, 0, 224, 126, 190, 0, 160, 223, 62, 0, 160, 178, 63, 0, 64, 97, 63, 0, 224, 126, 190, 0, 192, 74, 58, 0, 128, 183, 63, 0, 64, 97, 63, 0, 0, 0, 0, 0, 192, 74, 58, 0, 128, 183, 63, 0, 64, 97, 63, 0, 0, 0, 0, 0, 192, 0, 63, 0, 160, 178, 63, 0, 64, 97, 63, 0, 224, 126, 190, 0, 192, 74, 58, 0, 128, 183, 63, 0, 0, 16, 14, 0, 224, 149, 190, 0, 64, 158, 62, 0, 224, 159, 63, 0, 0, 16, 14, 0, 32, 186, 190, 0, 64, 158, 62, 0, 192, 115, 63, 0, 0, 16, 14, 0, 160, 0, 191, 0, 192, 74, 58, 0, 96, 175, 62, 0, 0, 16, 14) +}] -[sub_resource type="BoxShape3D" id=17] -extents = Vector3(0.477039, 0.5, 1.16331) +[sub_resource type="BoxShape3D" id="17"] +size = Vector3(0.954078, 1, 2.32662) [node name="TowTruck" type="Node3D"] _import_path = NodePath(".") @@ -255,7 +221,8 @@ __meta__ = { [node name="Body" type="VehicleBody3D" parent="."] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -0.00169557, 0.222867, -0.0955184) -script = ExtResource( 1 ) +center_of_mass_mode = 1 +script = ExtResource( "1" ) [node name="Wheel1" type="VehicleWheel3D" parent="Body"] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0.573678, 0.000773743, 1.10416) @@ -269,9 +236,8 @@ damping_compression = 0.88 [node name="Wheel1" type="MeshInstance3D" parent="Body/Wheel1"] _import_path = NodePath("BODY-vehicle/wheel1-wheel") -use_in_baked_light = true -mesh = SubResource( 1 ) -surface_material_override/0 = null +gi_mode = 1 +mesh = SubResource( "1" ) [node name="Wheel2" type="VehicleWheel3D" parent="Body"] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0.573678, 0.000773743, -0.783403) @@ -284,9 +250,8 @@ damping_compression = 0.88 [node name="Wheel2" type="MeshInstance3D" parent="Body/Wheel2"] _import_path = NodePath("BODY-vehicle/wheel2-wheel") -use_in_baked_light = true -mesh = SubResource( 2 ) -surface_material_override/0 = null +gi_mode = 1 +mesh = SubResource( "2" ) [node name="Wheel3" type="VehicleWheel3D" parent="Body"] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -0.573678, 0.000773743, 1.10416) @@ -300,9 +265,8 @@ damping_compression = 0.88 [node name="Wheel3" type="MeshInstance3D" parent="Body/Wheel3"] _import_path = NodePath("BODY-vehicle/wheel3-wheel") -use_in_baked_light = true -mesh = SubResource( 3 ) -surface_material_override/0 = null +gi_mode = 1 +mesh = SubResource( "3" ) [node name="Wheel4" type="VehicleWheel3D" parent="Body"] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -0.573678, 0.000773743, -0.783403) @@ -315,17 +279,13 @@ damping_compression = 0.88 [node name="Wheel4" type="MeshInstance3D" parent="Body/Wheel4"] _import_path = NodePath("BODY-vehicle/wheel4-wheel") -use_in_baked_light = true -mesh = SubResource( 4 ) -surface_material_override/0 = null +gi_mode = 1 +mesh = SubResource( "4" ) [node name="Body" type="MeshInstance3D" parent="Body"] _import_path = NodePath("BODY-vehicle") -use_in_baked_light = true -mesh = SubResource( 5 ) -surface_material_override/0 = null -material/1 = null -material/2 = null +gi_mode = 1 +mesh = SubResource( "5" ) [node name="CameraBase" type="Node3D" parent="Body"] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 1.97449, 0) @@ -335,14 +295,14 @@ transform = Transform3D(-0.709652, -0.170177, 0.683691, -2.11161e-08, 0.970391, current = true fov = 74.0 near = 0.1 -script = ExtResource( 5 ) +script = ExtResource( "5" ) min_distance = 5.0 max_distance = 7.0 height = 1.75 [node name="CollisionShape3D" type="CollisionShape3D" parent="Body"] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0.391365, 0.158069) -shape = SubResource( 6 ) +shape = SubResource( "6" ) [node name="AnimationPlayer" type="AnimationPlayer" parent="."] _import_path = NodePath("AnimationPlayer") @@ -353,13 +313,12 @@ transform = Transform3D(1, 0, 0, 0, 0.846248, -0.53279, 0, 0.53279, 0.846248, 0, [node name="Chain1" type="MeshInstance3D" parent="ChainB1"] _import_path = NodePath("chain1") transform = Transform3D(0.0355859, 0, 0, 0, 0.0355859, 0, 0, 0, 0.0355859, 0, 0, 0) -use_in_baked_light = true -mesh = SubResource( 7 ) -surface_material_override/0 = null +gi_mode = 1 +mesh = SubResource( "7" ) [node name="CollisionShape3D" type="CollisionShape3D" parent="ChainB1"] transform = Transform3D(1, 0, 0, 0, -4.37114e-08, 1, 0, -1, -4.37114e-08, 0, 0, 0) -shape = SubResource( 8 ) +shape = SubResource( "8" ) [node name="ChainB2" type="RigidDynamicBody3D" parent="."] transform = Transform3D(1, 0, 0, 0, 0.846248, -0.53279, 0, 0.53279, 0.846248, 0, 0.803378, -1.75806) @@ -367,13 +326,12 @@ transform = Transform3D(1, 0, 0, 0, 0.846248, -0.53279, 0, 0.53279, 0.846248, 0, [node name="Chain1" type="MeshInstance3D" parent="ChainB2"] _import_path = NodePath("chain1") transform = Transform3D(0.0355859, 0, 0, 0, 0.0355859, 0, 0, 0, 0.0355859, 0, 0, 0) -use_in_baked_light = true -mesh = SubResource( 7 ) -surface_material_override/0 = null +gi_mode = 1 +mesh = SubResource( "7" ) [node name="CollisionShape3D" type="CollisionShape3D" parent="ChainB2"] transform = Transform3D(1, 0, 0, 0, -4.37114e-08, 1, 0, -1, -4.37114e-08, 0, 0, 0) -shape = SubResource( 8 ) +shape = SubResource( "8" ) [node name="ChainB3" type="RigidDynamicBody3D" parent="."] transform = Transform3D(1, 0, 0, 0, 0.846248, -0.53279, 0, 0.53279, 0.846248, 0, 0.490045, -1.96106) @@ -381,13 +339,12 @@ transform = Transform3D(1, 0, 0, 0, 0.846248, -0.53279, 0, 0.53279, 0.846248, 0, [node name="Chain1" type="MeshInstance3D" parent="ChainB3"] _import_path = NodePath("chain1") transform = Transform3D(0.0355859, 0, 0, 0, 0.0355859, 0, 0, 0, 0.0355859, 0, 0, 0) -use_in_baked_light = true -mesh = SubResource( 7 ) -surface_material_override/0 = null +gi_mode = 1 +mesh = SubResource( "7" ) [node name="CollisionShape3D" type="CollisionShape3D" parent="ChainB3"] transform = Transform3D(1, 0, 0, 0, -4.37114e-08, 1, 0, -1, -4.37114e-08, 0, 0, 0) -shape = SubResource( 8 ) +shape = SubResource( "8" ) [node name="ChainB4" type="RigidDynamicBody3D" parent="."] transform = Transform3D(1, 0, 0, 0, 0.447167, -0.894451, 0, 0.894451, 0.447167, 0, 0.290326, -2.19413) @@ -395,13 +352,12 @@ transform = Transform3D(1, 0, 0, 0, 0.447167, -0.894451, 0, 0.894451, 0.447167, [node name="Chain1" type="MeshInstance3D" parent="ChainB4"] _import_path = NodePath("chain1") transform = Transform3D(0.0355859, 0, 0, 0, 0.0355859, 0, 0, 0, 0.0355859, 0, 0, 0) -use_in_baked_light = true -mesh = SubResource( 7 ) -surface_material_override/0 = null +gi_mode = 1 +mesh = SubResource( "7" ) [node name="CollisionShape3D" type="CollisionShape3D" parent="ChainB4"] transform = Transform3D(1, 0, 0, 0, -4.37114e-08, 1, 0, -1, -4.37114e-08, 0, 0, 0) -shape = SubResource( 8 ) +shape = SubResource( "8" ) [node name="ChainB5" type="RigidDynamicBody3D" parent="."] transform = Transform3D(1, 0, 0, 0, 0.0993884, -0.995049, 0, 0.995049, 0.0993884, 0, 0.205717, -2.50193) @@ -409,13 +365,12 @@ transform = Transform3D(1, 0, 0, 0, 0.0993884, -0.995049, 0, 0.995049, 0.0993884 [node name="Chain1" type="MeshInstance3D" parent="ChainB5"] _import_path = NodePath("chain1") transform = Transform3D(0.0355859, 0, 0, 0, 0.0355859, 0, 0, 0, 0.0355859, 0, 0, 0) -use_in_baked_light = true -mesh = SubResource( 7 ) -surface_material_override/0 = null +gi_mode = 1 +mesh = SubResource( "7" ) [node name="CollisionShape3D" type="CollisionShape3D" parent="ChainB5"] transform = Transform3D(1, 0, 0, 0, -4.37114e-08, 1, 0, -1, -4.37114e-08, 0, 0, 0) -shape = SubResource( 8 ) +shape = SubResource( "8" ) [node name="PinJoint1" type="PinJoint3D" parent="."] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 1.28044, -1.4153) @@ -453,7 +408,8 @@ params/bias = 0.5 [node name="Body2" type="VehicleBody3D" parent="."] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -0.00169557, 0.222867, -3.97518) mass = 10.0 -physics_material_override = SubResource( 9 ) +center_of_mass_mode = 1 +physics_material_override = SubResource( "9" ) [node name="Wheel1" type="VehicleWheel3D" parent="Body2"] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0.573678, 0.115169, 1.10416) @@ -468,8 +424,7 @@ damping_compression = 0.88 [node name="Wheel1" type="MeshInstance3D" parent="Body2/Wheel1"] _import_path = NodePath("BODY-vehicle/wheel1-wheel") -mesh = SubResource( 10 ) -surface_material_override/0 = null +mesh = SubResource( "10" ) [node name="Wheel2" type="VehicleWheel3D" parent="Body2"] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0.573678, 0.115169, -0.783403) @@ -483,8 +438,7 @@ damping_compression = 0.88 [node name="Wheel2" type="MeshInstance3D" parent="Body2/Wheel2"] _import_path = NodePath("BODY-vehicle/wheel2-wheel") -mesh = SubResource( 11 ) -surface_material_override/0 = null +mesh = SubResource( "11" ) [node name="Wheel3" type="VehicleWheel3D" parent="Body2"] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -0.573678, 0.115169, 1.10416) @@ -499,8 +453,7 @@ damping_compression = 0.88 [node name="Wheel3" type="MeshInstance3D" parent="Body2/Wheel3"] _import_path = NodePath("BODY-vehicle/wheel3-wheel") -mesh = SubResource( 12 ) -surface_material_override/0 = null +mesh = SubResource( "12" ) [node name="Wheel4" type="VehicleWheel3D" parent="Body2"] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -0.573678, 0.115169, -0.783403) @@ -514,19 +467,15 @@ damping_compression = 0.88 [node name="Wheel4" type="MeshInstance3D" parent="Body2/Wheel4"] _import_path = NodePath("BODY-vehicle/wheel4-wheel") -mesh = SubResource( 13 ) -surface_material_override/0 = null +mesh = SubResource( "13" ) [node name="Body" type="MeshInstance3D" parent="Body2"] _import_path = NodePath("BODY-vehicle") -mesh = SubResource( 16 ) -surface_material_override/0 = null -material/1 = null -material/2 = null +mesh = SubResource( "16" ) [node name="CollisionShape3D" type="CollisionShape3D" parent="Body2"] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0.588269, 0.0774262) -shape = SubResource( 17 ) +shape = SubResource( "17" ) [node name="PinJoint6" type="PinJoint3D" parent="."] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0.148269, -2.64894) diff --git a/3d/truck_town/town_mesh.tscn b/3d/truck_town/town_mesh.tscn index 16b2efc0..cc348f0e 100644 --- a/3d/truck_town/town_mesh.tscn +++ b/3d/truck_town/town_mesh.tscn @@ -1,533 +1,475 @@ -[gd_scene load_steps=52 format=2] +[gd_scene load_steps=52 format=3 uid="uid://dom2qigc1hn32"] -[ext_resource path="res://Materials/roof.tres" type="Material" id=1] -[ext_resource path="res://Materials/roof2.tres" type="Material" id=2] -[ext_resource path="res://Materials/cement.tres" type="Material" id=3] -[ext_resource path="res://Materials/grass.tres" type="Material" id=4] -[ext_resource path="res://Materials/house.tres" type="Material" id=5] -[ext_resource path="res://Materials/windows.tres" type="Material" id=6] -[ext_resource path="res://Materials/door.tres" type="Material" id=7] +[ext_resource type="Material" path="res://Materials/roof.tres" id="1"] +[ext_resource type="Material" path="res://Materials/roof2.tres" id="2"] +[ext_resource type="Material" path="res://Materials/cement.tres" id="3"] +[ext_resource type="Material" path="res://Materials/grass.tres" id="4"] +[ext_resource type="Material" path="res://Materials/house.tres" id="5"] +[ext_resource type="Material" path="res://Materials/windows.tres" id="6"] +[ext_resource type="Material" path="res://Materials/door.tres" id="7"] -[sub_resource type="ArrayMesh" id=1] +[sub_resource type="ArrayMesh" id="1"] resource_name = "Cube.003" -surfaces/0 = { +_surfaces = [{ "aabb": AABB(-0.0682448, 0.111142, -0.0442622, 0.1365, 0.03583, 0.0885243), -"array_data": PackedByteArray(94, 44, 28, 47, 170, 169, 0, 60, 0, 96, 174, 0, 94, 172, 28, 47, 170, 169, 0, 60, 0, 96, 174, 0, 71, 169, 179, 48, 20, 153, 0, 60, 0, 96, 174, 0, 71, 41, 179, 48, 20, 153, 0, 60, 0, 96, 174, 0, 71, 41, 179, 48, 20, 25, 0, 60, 0, 127, 0, 0, 71, 41, 179, 48, 20, 153, 0, 60, 0, 127, 0, 0, 71, 169, 179, 48, 20, 153, 0, 60, 0, 127, 0, 0, 71, 169, 179, 48, 20, 25, 0, 60, 0, 127, 0, 0, 94, 44, 28, 47, 170, 41, 0, 60, 101, 76, 0, 0, 94, 44, 28, 47, 170, 169, 0, 60, 101, 76, 0, 0, 71, 41, 179, 48, 20, 153, 0, 60, 101, 76, 0, 0, 71, 41, 179, 48, 20, 25, 0, 60, 101, 76, 0, 0, 94, 172, 28, 47, 170, 41, 0, 60, 0, 96, 82, 0, 94, 44, 28, 47, 170, 41, 0, 60, 0, 96, 82, 0, 71, 41, 179, 48, 20, 25, 0, 60, 0, 96, 82, 0, 71, 169, 179, 48, 20, 25, 0, 60, 0, 96, 82, 0, 94, 172, 28, 47, 170, 169, 0, 60, 155, 76, 0, 0, 94, 172, 28, 47, 170, 41, 0, 60, 155, 76, 0, 0, 71, 169, 179, 48, 20, 25, 0, 60, 155, 76, 0, 0, 71, 169, 179, 48, 20, 153, 0, 60, 155, 76, 0, 0), -"array_index_data": PackedByteArray(0, 0, 2, 0, 1, 0, 0, 0, 3, 0, 2, 0, 4, 0, 6, 0, 5, 0, 4, 0, 7, 0, 6, 0, 8, 0, 10, 0, 9, 0, 8, 0, 11, 0, 10, 0, 12, 0, 14, 0, 13, 0, 12, 0, 15, 0, 14, 0, 16, 0, 18, 0, 17, 0, 16, 0, 19, 0, 18, 0), -"blend_shape_data": [], -"format": 98051, +"format": 4099, "index_count": 30, -"material": ExtResource( 1 ), +"index_data": PackedByteArray(0, 0, 2, 0, 1, 0, 0, 0, 3, 0, 2, 0, 4, 0, 6, 0, 5, 0, 4, 0, 7, 0, 6, 0, 8, 0, 10, 0, 9, 0, 8, 0, 11, 0, 10, 0, 12, 0, 14, 0, 13, 0, 12, 0, 15, 0, 14, 0, 16, 0, 18, 0, 17, 0, 16, 0, 19, 0, 18, 0), +"material": ExtResource( "1" ), "name": "Material", -"primitive": 4, -"skeleton_aabb": [], -"vertex_count": 20 -} +"primitive": 3, +"vertex_count": 20, +"vertex_data": PackedByteArray(0, 192, 139, 61, 0, 128, 227, 61, 0, 64, 53, 189, 0, 20, 12, 0, 0, 192, 139, 189, 0, 128, 227, 61, 0, 64, 53, 189, 0, 20, 12, 0, 0, 224, 40, 189, 0, 96, 22, 62, 0, 128, 34, 187, 0, 20, 12, 0, 0, 224, 40, 61, 0, 96, 22, 62, 0, 128, 34, 187, 0, 20, 12, 0, 0, 224, 40, 61, 0, 96, 22, 62, 0, 128, 34, 59, 0, 248, 15, 0, 0, 224, 40, 61, 0, 96, 22, 62, 0, 128, 34, 187, 0, 248, 15, 0, 0, 224, 40, 189, 0, 96, 22, 62, 0, 128, 34, 187, 0, 248, 15, 0, 0, 224, 40, 189, 0, 96, 22, 62, 0, 128, 34, 59, 0, 248, 15, 0, 0, 192, 139, 61, 0, 128, 227, 61, 0, 64, 53, 61, 45, 147, 9, 0, 0, 192, 139, 61, 0, 128, 227, 61, 0, 64, 53, 189, 45, 147, 9, 0, 0, 224, 40, 61, 0, 96, 22, 62, 0, 128, 34, 187, 45, 147, 9, 0, 0, 224, 40, 61, 0, 96, 22, 62, 0, 128, 34, 59, 45, 147, 9, 0, 0, 192, 139, 189, 0, 128, 227, 61, 0, 64, 53, 61, 0, 20, 76, 41, 0, 192, 139, 61, 0, 128, 227, 61, 0, 64, 53, 61, 0, 20, 76, 41, 0, 224, 40, 61, 0, 96, 22, 62, 0, 128, 34, 59, 0, 20, 76, 41, 0, 224, 40, 189, 0, 96, 22, 62, 0, 128, 34, 59, 0, 20, 76, 41, 0, 192, 139, 189, 0, 128, 227, 61, 0, 64, 53, 189, 0, 144, 9, 0, 0, 192, 139, 189, 0, 128, 227, 61, 0, 64, 53, 61, 0, 144, 9, 0, 0, 224, 40, 189, 0, 96, 22, 62, 0, 128, 34, 59, 0, 144, 9, 0, 0, 224, 40, 189, 0, 96, 22, 62, 0, 128, 34, 187, 0, 144, 9, 0) +}] -[sub_resource type="ArrayMesh" id=2] +[sub_resource type="ArrayMesh" id="2"] resource_name = "Plane.019" -surfaces/0 = { +_surfaces = [{ "aabb": AABB(-0.0780794, 0.0630034, -0.0535349, 0.144954, 0.0248694, 0.120409), -"array_data": PackedByteArray(83, 170, 159, 45, 38, 40, 0, 60, 0, 127, 0, 0, 228, 40, 159, 45, 38, 40, 0, 60, 0, 127, 0, 0, 228, 40, 159, 45, 173, 39, 0, 60, 0, 127, 0, 0, 16, 170, 159, 45, 173, 39, 0, 60, 0, 127, 0, 0, 16, 170, 159, 45, 94, 166, 0, 60, 0, 127, 0, 0, 83, 170, 159, 45, 94, 166, 0, 60, 0, 127, 0, 0, 71, 44, 8, 44, 71, 44, 0, 60, 83, 95, 0, 0, 71, 44, 8, 44, 141, 156, 0, 60, 83, 95, 0, 0, 228, 40, 159, 45, 173, 39, 0, 60, 83, 95, 0, 0, 228, 40, 159, 45, 38, 40, 0, 60, 83, 95, 0, 0, 16, 170, 159, 45, 173, 39, 0, 60, 0, 102, 182, 0, 228, 40, 159, 45, 173, 39, 0, 60, 0, 102, 182, 0, 71, 44, 8, 44, 141, 156, 0, 60, 0, 102, 182, 0, 203, 164, 8, 44, 141, 156, 0, 60, 0, 102, 182, 0, 16, 170, 159, 45, 94, 166, 0, 60, 83, 95, 0, 0, 16, 170, 159, 45, 173, 39, 0, 60, 83, 95, 0, 0, 203, 164, 8, 44, 141, 156, 0, 60, 83, 95, 0, 0, 203, 164, 8, 44, 218, 170, 0, 60, 83, 95, 0, 0, 83, 170, 159, 45, 94, 166, 0, 60, 0, 95, 173, 0, 16, 170, 159, 45, 94, 166, 0, 60, 0, 95, 173, 0, 203, 164, 8, 44, 218, 170, 0, 60, 0, 95, 173, 0, 255, 172, 8, 44, 218, 170, 0, 60, 0, 95, 173, 0, 255, 172, 8, 44, 71, 44, 0, 60, 0, 102, 74, 0, 71, 44, 8, 44, 71, 44, 0, 60, 0, 102, 74, 0, 228, 40, 159, 45, 38, 40, 0, 60, 0, 102, 74, 0, 83, 170, 159, 45, 38, 40, 0, 60, 0, 102, 74, 0, 83, 170, 159, 45, 38, 40, 0, 60, 173, 95, 0, 0, 83, 170, 159, 45, 94, 166, 0, 60, 173, 95, 0, 0, 255, 172, 8, 44, 218, 170, 0, 60, 173, 95, 0, 0, 255, 172, 8, 44, 71, 44, 0, 60, 173, 95, 0, 0), -"array_index_data": PackedByteArray(0, 0, 2, 0, 1, 0, 0, 0, 3, 0, 2, 0, 0, 0, 4, 0, 3, 0, 0, 0, 5, 0, 4, 0, 6, 0, 8, 0, 7, 0, 6, 0, 9, 0, 8, 0, 10, 0, 12, 0, 11, 0, 10, 0, 13, 0, 12, 0, 14, 0, 16, 0, 15, 0, 14, 0, 17, 0, 16, 0, 18, 0, 20, 0, 19, 0, 18, 0, 21, 0, 20, 0, 22, 0, 24, 0, 23, 0, 22, 0, 25, 0, 24, 0, 26, 0, 28, 0, 27, 0, 26, 0, 29, 0, 28, 0), -"blend_shape_data": [], -"format": 98051, +"format": 4099, "index_count": 48, -"material": ExtResource( 1 ), +"index_data": PackedByteArray(0, 0, 2, 0, 1, 0, 0, 0, 3, 0, 2, 0, 0, 0, 4, 0, 3, 0, 0, 0, 5, 0, 4, 0, 6, 0, 8, 0, 7, 0, 6, 0, 9, 0, 8, 0, 10, 0, 12, 0, 11, 0, 10, 0, 13, 0, 12, 0, 14, 0, 16, 0, 15, 0, 14, 0, 17, 0, 16, 0, 18, 0, 20, 0, 19, 0, 18, 0, 21, 0, 20, 0, 22, 0, 24, 0, 23, 0, 22, 0, 25, 0, 24, 0, 26, 0, 28, 0, 27, 0, 26, 0, 29, 0, 28, 0), +"material": ExtResource( "1" ), "name": "Material", -"primitive": 4, -"skeleton_aabb": [], -"vertex_count": 30 -} +"primitive": 3, +"vertex_count": 30, +"vertex_data": PackedByteArray(0, 96, 74, 189, 0, 224, 179, 61, 0, 192, 4, 61, 0, 248, 15, 0, 0, 128, 28, 61, 0, 224, 179, 61, 0, 192, 4, 61, 0, 248, 15, 0, 0, 128, 28, 61, 0, 224, 179, 61, 0, 160, 245, 60, 0, 248, 15, 0, 0, 0, 66, 189, 0, 224, 179, 61, 0, 160, 245, 60, 0, 248, 15, 0, 0, 0, 66, 189, 0, 224, 179, 61, 0, 192, 203, 188, 0, 248, 15, 0, 0, 96, 74, 189, 0, 224, 179, 61, 0, 192, 203, 188, 0, 248, 15, 0, 0, 224, 136, 61, 0, 0, 129, 61, 0, 224, 136, 61, 156, 246, 11, 0, 0, 224, 136, 61, 0, 0, 129, 61, 0, 160, 145, 187, 156, 246, 11, 0, 0, 128, 28, 61, 0, 224, 179, 61, 0, 160, 245, 60, 156, 246, 11, 0, 0, 128, 28, 61, 0, 224, 179, 61, 0, 192, 4, 61, 156, 246, 11, 0, 0, 0, 66, 189, 0, 224, 179, 61, 0, 160, 245, 60, 0, 212, 12, 0, 0, 128, 28, 61, 0, 224, 179, 61, 0, 160, 245, 60, 0, 212, 12, 0, 0, 224, 136, 61, 0, 0, 129, 61, 0, 160, 145, 187, 0, 212, 12, 0, 0, 96, 153, 188, 0, 0, 129, 61, 0, 160, 145, 187, 0, 212, 12, 0, 0, 0, 66, 189, 0, 224, 179, 61, 0, 192, 203, 188, 156, 246, 11, 0, 0, 0, 66, 189, 0, 224, 179, 61, 0, 160, 245, 60, 156, 246, 11, 0, 0, 96, 153, 188, 0, 0, 129, 61, 0, 160, 145, 187, 156, 246, 11, 0, 0, 96, 153, 188, 0, 0, 129, 61, 0, 64, 91, 189, 156, 246, 11, 0, 0, 96, 74, 189, 0, 224, 179, 61, 0, 192, 203, 188, 0, 244, 11, 0, 0, 0, 66, 189, 0, 224, 179, 61, 0, 192, 203, 188, 0, 244, 11, 0, 0, 96, 153, 188, 0, 0, 129, 61, 0, 64, 91, 189, 0, 244, 11, 0, 0, 224, 159, 189, 0, 0, 129, 61, 0, 64, 91, 189, 0, 244, 11, 0, 0, 224, 159, 189, 0, 0, 129, 61, 0, 224, 136, 61, 0, 212, 76, 37, 0, 224, 136, 61, 0, 0, 129, 61, 0, 224, 136, 61, 0, 212, 76, 37, 0, 128, 28, 61, 0, 224, 179, 61, 0, 192, 4, 61, 0, 212, 76, 37, 0, 96, 74, 189, 0, 224, 179, 61, 0, 192, 4, 61, 0, 212, 76, 37, 0, 96, 74, 189, 0, 224, 179, 61, 0, 192, 4, 61, 0, 244, 11, 0, 0, 96, 74, 189, 0, 224, 179, 61, 0, 192, 203, 188, 0, 244, 11, 0, 0, 224, 159, 189, 0, 0, 129, 61, 0, 64, 91, 189, 0, 244, 11, 0, 0, 224, 159, 189, 0, 0, 129, 61, 0, 224, 136, 61, 0, 244, 11, 0) +}] -[sub_resource type="ArrayMesh" id=3] +[sub_resource type="ArrayMesh" id="3"] resource_name = "Plane.014" -surfaces/0 = { +_surfaces = [{ "aabb": AABB(-0.176551, 0.11168, -0.0164296, 0.243426, 0.035774, 0.0833038), -"array_data": PackedByteArray(109, 175, 183, 48, 197, 42, 0, 60, 0, 127, 0, 0, 109, 175, 183, 48, 153, 41, 0, 60, 0, 127, 0, 0, 33, 176, 183, 48, 153, 41, 0, 60, 0, 127, 0, 0, 33, 176, 183, 48, 197, 42, 0, 60, 0, 127, 0, 0, 33, 176, 27, 48, 153, 41, 0, 60, 130, 0, 0, 0, 33, 176, 194, 47, 197, 42, 0, 60, 130, 0, 0, 0, 33, 176, 183, 48, 197, 42, 0, 60, 130, 0, 0, 0, 33, 176, 183, 48, 153, 41, 0, 60, 130, 0, 0, 0, 109, 175, 27, 48, 153, 41, 0, 60, 0, 0, 129, 0, 33, 176, 27, 48, 153, 41, 0, 60, 0, 0, 129, 0, 33, 176, 183, 48, 153, 41, 0, 60, 0, 0, 129, 0, 109, 175, 183, 48, 153, 41, 0, 60, 0, 0, 129, 0, 109, 175, 194, 47, 197, 42, 0, 60, 127, 0, 0, 0, 109, 175, 27, 48, 153, 41, 0, 60, 127, 0, 0, 0, 109, 175, 183, 48, 153, 41, 0, 60, 127, 0, 0, 0, 109, 175, 183, 48, 197, 42, 0, 60, 127, 0, 0, 0, 33, 176, 194, 47, 197, 42, 0, 60, 0, 0, 126, 0, 109, 175, 194, 47, 197, 42, 0, 60, 0, 0, 126, 0, 109, 175, 183, 48, 197, 42, 0, 60, 0, 0, 126, 0, 33, 176, 183, 48, 197, 42, 0, 60, 0, 0, 126, 0, 37, 37, 183, 48, 197, 42, 0, 60, 0, 127, 0, 0, 37, 37, 183, 48, 153, 41, 0, 60, 0, 127, 0, 0, 58, 31, 183, 48, 153, 41, 0, 60, 0, 127, 0, 0, 58, 31, 183, 48, 197, 42, 0, 60, 0, 127, 0, 0, 58, 31, 27, 48, 153, 41, 0, 60, 130, 0, 0, 0, 58, 31, 194, 47, 197, 42, 0, 60, 130, 0, 0, 0, 58, 31, 183, 48, 197, 42, 0, 60, 130, 0, 0, 0, 58, 31, 183, 48, 153, 41, 0, 60, 130, 0, 0, 0, 37, 37, 27, 48, 153, 41, 0, 60, 0, 0, 129, 0, 58, 31, 27, 48, 153, 41, 0, 60, 0, 0, 129, 0, 58, 31, 183, 48, 153, 41, 0, 60, 0, 0, 129, 0, 37, 37, 183, 48, 153, 41, 0, 60, 0, 0, 129, 0, 37, 37, 194, 47, 197, 42, 0, 60, 127, 0, 0, 0, 37, 37, 27, 48, 153, 41, 0, 60, 127, 0, 0, 0, 37, 37, 183, 48, 153, 41, 0, 60, 127, 0, 0, 0, 37, 37, 183, 48, 197, 42, 0, 60, 127, 0, 0, 0, 58, 31, 194, 47, 197, 42, 0, 60, 0, 0, 126, 0, 37, 37, 194, 47, 197, 42, 0, 60, 0, 0, 126, 0, 37, 37, 183, 48, 197, 42, 0, 60, 0, 0, 126, 0, 58, 31, 183, 48, 197, 42, 0, 60, 0, 0, 126, 0, 161, 176, 94, 48, 48, 40, 0, 60, 0, 127, 0, 0, 125, 40, 94, 48, 48, 40, 0, 60, 0, 127, 0, 0, 52, 40, 94, 48, 154, 39, 0, 60, 0, 127, 0, 0, 161, 176, 94, 48, 154, 39, 0, 60, 0, 127, 0, 0, 125, 40, 94, 48, 220, 35, 0, 60, 0, 127, 0, 0, 52, 40, 94, 48, 220, 35, 0, 60, 0, 127, 0, 0, 161, 176, 94, 48, 48, 40, 0, 60, 178, 100, 0, 0, 161, 176, 94, 48, 154, 39, 0, 60, 178, 100, 0, 0, 166, 177, 37, 47, 141, 156, 0, 60, 178, 100, 0, 0, 166, 177, 37, 47, 71, 44, 0, 60, 178, 100, 0, 0, 161, 176, 94, 48, 154, 39, 0, 60, 0, 102, 182, 0, 52, 40, 94, 48, 154, 39, 0, 60, 0, 102, 182, 0, 82, 20, 37, 47, 141, 156, 0, 60, 0, 102, 182, 0, 166, 177, 37, 47, 141, 156, 0, 60, 0, 102, 182, 0, 52, 40, 94, 48, 220, 35, 0, 60, 0, 100, 178, 0, 125, 40, 94, 48, 220, 35, 0, 60, 0, 100, 178, 0, 71, 44, 37, 47, 52, 164, 0, 60, 0, 100, 178, 0, 82, 20, 37, 47, 52, 164, 0, 60, 0, 100, 178, 0, 52, 40, 94, 48, 154, 39, 0, 60, 178, 100, 0, 0, 52, 40, 94, 48, 220, 35, 0, 60, 178, 100, 0, 0, 82, 20, 37, 47, 52, 164, 0, 60, 178, 100, 0, 0, 82, 20, 37, 47, 141, 156, 0, 60, 178, 100, 0, 0, 125, 40, 94, 48, 220, 35, 0, 60, 78, 100, 0, 0, 125, 40, 94, 48, 48, 40, 0, 60, 78, 100, 0, 0, 71, 44, 37, 47, 71, 44, 0, 60, 78, 100, 0, 0, 71, 44, 37, 47, 52, 164, 0, 60, 78, 100, 0, 0, 125, 40, 94, 48, 48, 40, 0, 60, 0, 102, 74, 0, 161, 176, 94, 48, 48, 40, 0, 60, 0, 102, 74, 0, 166, 177, 37, 47, 71, 44, 0, 60, 0, 102, 74, 0, 71, 44, 37, 47, 71, 44, 0, 60, 0, 102, 74, 0, 134, 177, 37, 47, 251, 144, 0, 60, 0, 130, 0, 0, 134, 177, 37, 47, 8, 44, 0, 60, 0, 130, 0, 0, 166, 177, 37, 47, 71, 44, 0, 60, 0, 130, 0, 0, 166, 177, 37, 47, 141, 156, 0, 60, 0, 130, 0, 0, 2, 29, 37, 47, 251, 144, 0, 60, 0, 130, 0, 0, 82, 20, 37, 47, 141, 156, 0, 60, 0, 130, 0, 0, 8, 44, 37, 47, 114, 162, 0, 60, 0, 130, 0, 0, 2, 29, 37, 47, 114, 162, 0, 60, 0, 130, 0, 0, 82, 20, 37, 47, 52, 164, 0, 60, 0, 130, 0, 0, 71, 44, 37, 47, 52, 164, 0, 60, 0, 130, 0, 0, 8, 44, 37, 47, 8, 44, 0, 60, 0, 130, 0, 0, 71, 44, 37, 47, 71, 44, 0, 60, 0, 130, 0, 0), -"array_index_data": PackedByteArray(0, 0, 2, 0, 1, 0, 0, 0, 3, 0, 2, 0, 4, 0, 6, 0, 5, 0, 4, 0, 7, 0, 6, 0, 8, 0, 10, 0, 9, 0, 8, 0, 11, 0, 10, 0, 12, 0, 14, 0, 13, 0, 12, 0, 15, 0, 14, 0, 16, 0, 18, 0, 17, 0, 16, 0, 19, 0, 18, 0, 20, 0, 22, 0, 21, 0, 20, 0, 23, 0, 22, 0, 24, 0, 26, 0, 25, 0, 24, 0, 27, 0, 26, 0, 28, 0, 30, 0, 29, 0, 28, 0, 31, 0, 30, 0, 32, 0, 34, 0, 33, 0, 32, 0, 35, 0, 34, 0, 36, 0, 38, 0, 37, 0, 36, 0, 39, 0, 38, 0, 40, 0, 42, 0, 41, 0, 40, 0, 43, 0, 42, 0, 42, 0, 44, 0, 41, 0, 42, 0, 45, 0, 44, 0, 46, 0, 48, 0, 47, 0, 46, 0, 49, 0, 48, 0, 50, 0, 52, 0, 51, 0, 50, 0, 53, 0, 52, 0, 54, 0, 56, 0, 55, 0, 54, 0, 57, 0, 56, 0, 58, 0, 60, 0, 59, 0, 58, 0, 61, 0, 60, 0, 62, 0, 64, 0, 63, 0, 62, 0, 65, 0, 64, 0, 66, 0, 68, 0, 67, 0, 66, 0, 69, 0, 68, 0, 70, 0, 72, 0, 71, 0, 70, 0, 73, 0, 72, 0, 74, 0, 73, 0, 70, 0, 74, 0, 75, 0, 73, 0, 76, 0, 78, 0, 77, 0, 76, 0, 79, 0, 78, 0, 77, 0, 75, 0, 74, 0, 77, 0, 78, 0, 75, 0, 80, 0, 79, 0, 76, 0, 80, 0, 81, 0, 79, 0, 71, 0, 81, 0, 80, 0, 71, 0, 72, 0, 81, 0), -"blend_shape_data": [], -"format": 98051, +"format": 4099, "index_count": 144, -"material": ExtResource( 1 ), +"index_data": PackedByteArray(0, 0, 2, 0, 1, 0, 0, 0, 3, 0, 2, 0, 4, 0, 6, 0, 5, 0, 4, 0, 7, 0, 6, 0, 8, 0, 10, 0, 9, 0, 8, 0, 11, 0, 10, 0, 12, 0, 14, 0, 13, 0, 12, 0, 15, 0, 14, 0, 16, 0, 18, 0, 17, 0, 16, 0, 19, 0, 18, 0, 20, 0, 22, 0, 21, 0, 20, 0, 23, 0, 22, 0, 24, 0, 26, 0, 25, 0, 24, 0, 27, 0, 26, 0, 28, 0, 30, 0, 29, 0, 28, 0, 31, 0, 30, 0, 32, 0, 34, 0, 33, 0, 32, 0, 35, 0, 34, 0, 36, 0, 38, 0, 37, 0, 36, 0, 39, 0, 38, 0, 40, 0, 42, 0, 41, 0, 40, 0, 43, 0, 42, 0, 42, 0, 44, 0, 41, 0, 42, 0, 45, 0, 44, 0, 46, 0, 48, 0, 47, 0, 46, 0, 49, 0, 48, 0, 50, 0, 52, 0, 51, 0, 50, 0, 53, 0, 52, 0, 54, 0, 56, 0, 55, 0, 54, 0, 57, 0, 56, 0, 58, 0, 60, 0, 59, 0, 58, 0, 61, 0, 60, 0, 62, 0, 64, 0, 63, 0, 62, 0, 65, 0, 64, 0, 66, 0, 68, 0, 67, 0, 66, 0, 69, 0, 68, 0, 70, 0, 72, 0, 71, 0, 70, 0, 73, 0, 72, 0, 74, 0, 73, 0, 70, 0, 74, 0, 75, 0, 73, 0, 76, 0, 78, 0, 77, 0, 76, 0, 79, 0, 78, 0, 77, 0, 75, 0, 74, 0, 77, 0, 78, 0, 75, 0, 80, 0, 79, 0, 76, 0, 80, 0, 81, 0, 79, 0, 71, 0, 81, 0, 80, 0, 71, 0, 72, 0, 81, 0), +"material": ExtResource( "1" ), "name": "Material", -"primitive": 4, -"skeleton_aabb": [], -"vertex_count": 82 -} +"primitive": 3, +"vertex_count": 82, +"vertex_data": PackedByteArray(0, 160, 237, 189, 0, 224, 22, 62, 0, 160, 88, 61, 0, 248, 15, 0, 0, 160, 237, 189, 0, 224, 22, 62, 0, 32, 51, 61, 0, 248, 15, 0, 0, 32, 4, 190, 0, 224, 22, 62, 0, 32, 51, 61, 0, 248, 15, 0, 0, 32, 4, 190, 0, 224, 22, 62, 0, 160, 88, 61, 0, 248, 15, 0, 0, 32, 4, 190, 0, 96, 3, 62, 0, 32, 51, 61, 0, 0, 0, 0, 0, 32, 4, 190, 0, 64, 248, 61, 0, 160, 88, 61, 0, 0, 0, 0, 0, 32, 4, 190, 0, 224, 22, 62, 0, 160, 88, 61, 0, 0, 0, 0, 0, 32, 4, 190, 0, 224, 22, 62, 0, 32, 51, 61, 0, 0, 0, 0, 0, 160, 237, 189, 0, 96, 3, 62, 0, 32, 51, 61, 0, 0, 0, 0, 0, 32, 4, 190, 0, 96, 3, 62, 0, 32, 51, 61, 0, 0, 0, 0, 0, 32, 4, 190, 0, 224, 22, 62, 0, 32, 51, 61, 0, 0, 0, 0, 0, 160, 237, 189, 0, 224, 22, 62, 0, 32, 51, 61, 0, 0, 0, 0, 0, 160, 237, 189, 0, 64, 248, 61, 0, 160, 88, 61, 254, 3, 0, 0, 0, 160, 237, 189, 0, 96, 3, 62, 0, 32, 51, 61, 254, 3, 0, 0, 0, 160, 237, 189, 0, 224, 22, 62, 0, 32, 51, 61, 254, 3, 0, 0, 0, 160, 237, 189, 0, 224, 22, 62, 0, 160, 88, 61, 254, 3, 0, 0, 0, 32, 4, 190, 0, 64, 248, 61, 0, 160, 88, 61, 0, 0, 96, 63, 0, 160, 237, 189, 0, 64, 248, 61, 0, 160, 88, 61, 0, 0, 96, 63, 0, 160, 237, 189, 0, 224, 22, 62, 0, 160, 88, 61, 0, 0, 96, 63, 0, 32, 4, 190, 0, 224, 22, 62, 0, 160, 88, 61, 0, 0, 96, 63, 0, 160, 164, 60, 0, 224, 22, 62, 0, 160, 88, 61, 0, 248, 15, 0, 0, 160, 164, 60, 0, 224, 22, 62, 0, 32, 51, 61, 0, 248, 15, 0, 0, 64, 231, 59, 0, 224, 22, 62, 0, 32, 51, 61, 0, 248, 15, 0, 0, 64, 231, 59, 0, 224, 22, 62, 0, 160, 88, 61, 0, 248, 15, 0, 0, 64, 231, 59, 0, 96, 3, 62, 0, 32, 51, 61, 0, 0, 0, 0, 0, 64, 231, 59, 0, 64, 248, 61, 0, 160, 88, 61, 0, 0, 0, 0, 0, 64, 231, 59, 0, 224, 22, 62, 0, 160, 88, 61, 0, 0, 0, 0, 0, 64, 231, 59, 0, 224, 22, 62, 0, 32, 51, 61, 0, 0, 0, 0, 0, 160, 164, 60, 0, 96, 3, 62, 0, 32, 51, 61, 0, 0, 0, 0, 0, 64, 231, 59, 0, 96, 3, 62, 0, 32, 51, 61, 0, 0, 0, 0, 0, 64, 231, 59, 0, 224, 22, 62, 0, 32, 51, 61, 0, 0, 0, 0, 0, 160, 164, 60, 0, 224, 22, 62, 0, 32, 51, 61, 0, 0, 0, 0, 0, 160, 164, 60, 0, 64, 248, 61, 0, 160, 88, 61, 254, 3, 0, 0, 0, 160, 164, 60, 0, 96, 3, 62, 0, 32, 51, 61, 254, 3, 0, 0, 0, 160, 164, 60, 0, 224, 22, 62, 0, 32, 51, 61, 254, 3, 0, 0, 0, 160, 164, 60, 0, 224, 22, 62, 0, 160, 88, 61, 254, 3, 0, 0, 0, 64, 231, 59, 0, 64, 248, 61, 0, 160, 88, 61, 0, 0, 96, 63, 0, 160, 164, 60, 0, 64, 248, 61, 0, 160, 88, 61, 0, 0, 96, 63, 0, 160, 164, 60, 0, 224, 22, 62, 0, 160, 88, 61, 0, 0, 96, 63, 0, 64, 231, 59, 0, 224, 22, 62, 0, 160, 88, 61, 0, 0, 96, 63, 0, 32, 20, 190, 0, 192, 11, 62, 0, 0, 6, 61, 0, 248, 15, 0, 0, 160, 15, 61, 0, 192, 11, 62, 0, 0, 6, 61, 0, 248, 15, 0, 0, 128, 6, 61, 0, 192, 11, 62, 0, 64, 243, 60, 0, 248, 15, 0, 0, 32, 20, 190, 0, 192, 11, 62, 0, 64, 243, 60, 0, 248, 15, 0, 0, 160, 15, 61, 0, 192, 11, 62, 0, 128, 123, 60, 0, 248, 15, 0, 0, 128, 6, 61, 0, 192, 11, 62, 0, 128, 123, 60, 0, 248, 15, 0, 0, 32, 20, 190, 0, 192, 11, 62, 0, 0, 6, 61, 0, 148, 12, 0, 0, 32, 20, 190, 0, 192, 11, 62, 0, 64, 243, 60, 0, 148, 12, 0, 0, 192, 52, 190, 0, 160, 228, 61, 0, 160, 145, 187, 0, 148, 12, 0, 0, 192, 52, 190, 0, 160, 228, 61, 0, 224, 136, 61, 0, 148, 12, 0, 0, 32, 20, 190, 0, 192, 11, 62, 0, 64, 243, 60, 0, 212, 12, 0, 0, 128, 6, 61, 0, 192, 11, 62, 0, 64, 243, 60, 0, 212, 12, 0, 0, 64, 138, 58, 0, 160, 228, 61, 0, 160, 145, 187, 0, 212, 12, 0, 0, 192, 52, 190, 0, 160, 228, 61, 0, 160, 145, 187, 0, 212, 12, 0, 0, 128, 6, 61, 0, 192, 11, 62, 0, 128, 123, 60, 0, 148, 12, 0, 0, 160, 15, 61, 0, 192, 11, 62, 0, 128, 123, 60, 0, 148, 12, 0, 0, 224, 136, 61, 0, 160, 228, 61, 0, 128, 134, 188, 0, 148, 12, 0, 0, 64, 138, 58, 0, 160, 228, 61, 0, 128, 134, 188, 0, 148, 12, 0, 0, 128, 6, 61, 0, 192, 11, 62, 0, 64, 243, 60, 0, 148, 12, 0, 0, 128, 6, 61, 0, 192, 11, 62, 0, 128, 123, 60, 0, 148, 12, 0, 0, 64, 138, 58, 0, 160, 228, 61, 0, 128, 134, 188, 0, 148, 12, 0, 0, 64, 138, 58, 0, 160, 228, 61, 0, 160, 145, 187, 0, 148, 12, 0, 0, 160, 15, 61, 0, 192, 11, 62, 0, 128, 123, 60, 116, 150, 12, 0, 0, 160, 15, 61, 0, 192, 11, 62, 0, 0, 6, 61, 116, 150, 12, 0, 0, 224, 136, 61, 0, 160, 228, 61, 0, 224, 136, 61, 116, 150, 12, 0, 0, 224, 136, 61, 0, 160, 228, 61, 0, 128, 134, 188, 116, 150, 12, 0, 0, 160, 15, 61, 0, 192, 11, 62, 0, 0, 6, 61, 0, 212, 76, 37, 0, 32, 20, 190, 0, 192, 11, 62, 0, 0, 6, 61, 0, 212, 76, 37, 0, 192, 52, 190, 0, 160, 228, 61, 0, 224, 136, 61, 0, 212, 76, 37, 0, 224, 136, 61, 0, 160, 228, 61, 0, 224, 136, 61, 0, 212, 76, 37, 0, 192, 48, 190, 0, 160, 228, 61, 0, 96, 31, 186, 0, 0, 0, 0, 0, 192, 48, 190, 0, 160, 228, 61, 0, 0, 129, 61, 0, 0, 0, 0, 0, 192, 52, 190, 0, 160, 228, 61, 0, 224, 136, 61, 0, 0, 0, 0, 0, 192, 52, 190, 0, 160, 228, 61, 0, 160, 145, 187, 0, 0, 0, 0, 0, 64, 160, 59, 0, 160, 228, 61, 0, 96, 31, 186, 0, 0, 0, 0, 0, 64, 138, 58, 0, 160, 228, 61, 0, 160, 145, 187, 0, 0, 0, 0, 0, 0, 129, 61, 0, 160, 228, 61, 0, 64, 78, 188, 0, 0, 0, 0, 0, 64, 160, 59, 0, 160, 228, 61, 0, 64, 78, 188, 0, 0, 0, 0, 0, 64, 138, 58, 0, 160, 228, 61, 0, 128, 134, 188, 0, 0, 0, 0, 0, 224, 136, 61, 0, 160, 228, 61, 0, 128, 134, 188, 0, 0, 0, 0, 0, 0, 129, 61, 0, 160, 228, 61, 0, 0, 129, 61, 0, 0, 0, 0, 0, 224, 136, 61, 0, 160, 228, 61, 0, 224, 136, 61, 0, 0, 0, 0) +}] -[sub_resource type="ArrayMesh" id=4] +[sub_resource type="ArrayMesh" id="4"] resource_name = "Plane.013" -surfaces/0 = { +_surfaces = [{ "aabb": AABB(-0.0780794, 0.110198, -0.0535349, 0.144954, 0.035774, 0.120409), -"array_data": PackedByteArray(37, 37, 171, 48, 127, 42, 0, 60, 0, 127, 0, 0, 37, 37, 171, 48, 83, 41, 0, 60, 0, 127, 0, 0, 58, 31, 171, 48, 83, 41, 0, 60, 0, 127, 0, 0, 58, 31, 171, 48, 127, 42, 0, 60, 0, 127, 0, 0, 58, 31, 27, 48, 83, 41, 0, 60, 130, 0, 0, 0, 58, 31, 197, 47, 127, 42, 0, 60, 130, 0, 0, 0, 58, 31, 171, 48, 127, 42, 0, 60, 130, 0, 0, 0, 58, 31, 171, 48, 83, 41, 0, 60, 130, 0, 0, 0, 37, 37, 27, 48, 83, 41, 0, 60, 0, 0, 129, 0, 58, 31, 27, 48, 83, 41, 0, 60, 0, 0, 129, 0, 58, 31, 171, 48, 83, 41, 0, 60, 0, 0, 129, 0, 37, 37, 171, 48, 83, 41, 0, 60, 0, 0, 129, 0, 37, 37, 197, 47, 127, 42, 0, 60, 127, 0, 0, 0, 37, 37, 27, 48, 83, 41, 0, 60, 127, 0, 0, 0, 37, 37, 171, 48, 83, 41, 0, 60, 127, 0, 0, 0, 37, 37, 171, 48, 127, 42, 0, 60, 127, 0, 0, 0, 58, 31, 197, 47, 127, 42, 0, 60, 0, 0, 126, 0, 37, 37, 197, 47, 127, 42, 0, 60, 0, 0, 126, 0, 37, 37, 171, 48, 127, 42, 0, 60, 0, 0, 126, 0, 58, 31, 171, 48, 127, 42, 0, 60, 0, 0, 126, 0, 83, 170, 82, 48, 38, 40, 0, 60, 0, 127, 0, 0, 228, 40, 82, 48, 38, 40, 0, 60, 0, 127, 0, 0, 228, 40, 82, 48, 173, 39, 0, 60, 0, 127, 0, 0, 16, 170, 82, 48, 173, 39, 0, 60, 0, 127, 0, 0, 16, 170, 82, 48, 94, 166, 0, 60, 0, 127, 0, 0, 83, 170, 82, 48, 94, 166, 0, 60, 0, 127, 0, 0, 200, 43, 13, 47, 200, 43, 0, 60, 0, 130, 0, 0, 200, 43, 13, 47, 165, 22, 0, 60, 0, 130, 0, 0, 71, 44, 13, 47, 141, 156, 0, 60, 0, 130, 0, 0, 71, 44, 13, 47, 71, 44, 0, 60, 0, 130, 0, 0, 88, 166, 13, 47, 165, 22, 0, 60, 0, 130, 0, 0, 203, 164, 13, 47, 141, 156, 0, 60, 0, 130, 0, 0, 88, 166, 13, 47, 19, 170, 0, 60, 0, 130, 0, 0, 203, 164, 13, 47, 218, 170, 0, 60, 0, 130, 0, 0, 155, 172, 13, 47, 19, 170, 0, 60, 0, 130, 0, 0, 255, 172, 13, 47, 218, 170, 0, 60, 0, 130, 0, 0, 155, 172, 13, 47, 200, 43, 0, 60, 0, 130, 0, 0, 255, 172, 13, 47, 71, 44, 0, 60, 0, 130, 0, 0, 228, 40, 82, 48, 173, 39, 0, 60, 83, 95, 0, 0, 228, 40, 82, 48, 38, 40, 0, 60, 83, 95, 0, 0, 71, 44, 13, 47, 71, 44, 0, 60, 83, 95, 0, 0, 71, 44, 13, 47, 141, 156, 0, 60, 83, 95, 0, 0, 16, 170, 82, 48, 173, 39, 0, 60, 0, 102, 182, 0, 228, 40, 82, 48, 173, 39, 0, 60, 0, 102, 182, 0, 71, 44, 13, 47, 141, 156, 0, 60, 0, 102, 182, 0, 203, 164, 13, 47, 141, 156, 0, 60, 0, 102, 182, 0, 16, 170, 82, 48, 94, 166, 0, 60, 83, 95, 0, 0, 16, 170, 82, 48, 173, 39, 0, 60, 83, 95, 0, 0, 203, 164, 13, 47, 141, 156, 0, 60, 83, 95, 0, 0, 203, 164, 13, 47, 218, 170, 0, 60, 83, 95, 0, 0, 83, 170, 82, 48, 94, 166, 0, 60, 0, 95, 173, 0, 16, 170, 82, 48, 94, 166, 0, 60, 0, 95, 173, 0, 203, 164, 13, 47, 218, 170, 0, 60, 0, 95, 173, 0, 255, 172, 13, 47, 218, 170, 0, 60, 0, 95, 173, 0, 228, 40, 82, 48, 38, 40, 0, 60, 0, 102, 74, 0, 83, 170, 82, 48, 38, 40, 0, 60, 0, 102, 74, 0, 255, 172, 13, 47, 71, 44, 0, 60, 0, 102, 74, 0, 71, 44, 13, 47, 71, 44, 0, 60, 0, 102, 74, 0, 83, 170, 82, 48, 38, 40, 0, 60, 173, 95, 0, 0, 83, 170, 82, 48, 94, 166, 0, 60, 173, 95, 0, 0, 255, 172, 13, 47, 218, 170, 0, 60, 173, 95, 0, 0, 255, 172, 13, 47, 71, 44, 0, 60, 173, 95, 0, 0), -"array_index_data": PackedByteArray(0, 0, 2, 0, 1, 0, 0, 0, 3, 0, 2, 0, 4, 0, 6, 0, 5, 0, 4, 0, 7, 0, 6, 0, 8, 0, 10, 0, 9, 0, 8, 0, 11, 0, 10, 0, 12, 0, 14, 0, 13, 0, 12, 0, 15, 0, 14, 0, 16, 0, 18, 0, 17, 0, 16, 0, 19, 0, 18, 0, 20, 0, 22, 0, 21, 0, 20, 0, 23, 0, 22, 0, 20, 0, 24, 0, 23, 0, 20, 0, 25, 0, 24, 0, 26, 0, 28, 0, 27, 0, 26, 0, 29, 0, 28, 0, 27, 0, 31, 0, 30, 0, 27, 0, 28, 0, 31, 0, 30, 0, 33, 0, 32, 0, 30, 0, 31, 0, 33, 0, 32, 0, 35, 0, 34, 0, 32, 0, 33, 0, 35, 0, 36, 0, 29, 0, 26, 0, 36, 0, 37, 0, 29, 0, 34, 0, 37, 0, 36, 0, 34, 0, 35, 0, 37, 0, 38, 0, 40, 0, 39, 0, 38, 0, 41, 0, 40, 0, 42, 0, 44, 0, 43, 0, 42, 0, 45, 0, 44, 0, 46, 0, 48, 0, 47, 0, 46, 0, 49, 0, 48, 0, 50, 0, 52, 0, 51, 0, 50, 0, 53, 0, 52, 0, 54, 0, 56, 0, 55, 0, 54, 0, 57, 0, 56, 0, 58, 0, 60, 0, 59, 0, 58, 0, 61, 0, 60, 0), -"blend_shape_data": [], -"format": 98051, +"format": 4099, "index_count": 114, -"material": ExtResource( 1 ), +"index_data": PackedByteArray(0, 0, 2, 0, 1, 0, 0, 0, 3, 0, 2, 0, 4, 0, 6, 0, 5, 0, 4, 0, 7, 0, 6, 0, 8, 0, 10, 0, 9, 0, 8, 0, 11, 0, 10, 0, 12, 0, 14, 0, 13, 0, 12, 0, 15, 0, 14, 0, 16, 0, 18, 0, 17, 0, 16, 0, 19, 0, 18, 0, 20, 0, 22, 0, 21, 0, 20, 0, 23, 0, 22, 0, 20, 0, 24, 0, 23, 0, 20, 0, 25, 0, 24, 0, 26, 0, 28, 0, 27, 0, 26, 0, 29, 0, 28, 0, 27, 0, 31, 0, 30, 0, 27, 0, 28, 0, 31, 0, 30, 0, 33, 0, 32, 0, 30, 0, 31, 0, 33, 0, 32, 0, 35, 0, 34, 0, 32, 0, 33, 0, 35, 0, 36, 0, 29, 0, 26, 0, 36, 0, 37, 0, 29, 0, 34, 0, 37, 0, 36, 0, 34, 0, 35, 0, 37, 0, 38, 0, 40, 0, 39, 0, 38, 0, 41, 0, 40, 0, 42, 0, 44, 0, 43, 0, 42, 0, 45, 0, 44, 0, 46, 0, 48, 0, 47, 0, 46, 0, 49, 0, 48, 0, 50, 0, 52, 0, 51, 0, 50, 0, 53, 0, 52, 0, 54, 0, 56, 0, 55, 0, 54, 0, 57, 0, 56, 0, 58, 0, 60, 0, 59, 0, 58, 0, 61, 0, 60, 0), +"material": ExtResource( "1" ), "name": "Material", -"primitive": 4, -"skeleton_aabb": [], -"vertex_count": 62 -} +"primitive": 3, +"vertex_count": 62, +"vertex_data": PackedByteArray(0, 160, 164, 60, 0, 96, 21, 62, 0, 224, 79, 61, 0, 248, 15, 0, 0, 160, 164, 60, 0, 96, 21, 62, 0, 96, 42, 61, 0, 248, 15, 0, 0, 64, 231, 59, 0, 96, 21, 62, 0, 96, 42, 61, 0, 248, 15, 0, 0, 64, 231, 59, 0, 96, 21, 62, 0, 224, 79, 61, 0, 248, 15, 0, 0, 64, 231, 59, 0, 96, 3, 62, 0, 96, 42, 61, 0, 0, 0, 0, 0, 64, 231, 59, 0, 160, 248, 61, 0, 224, 79, 61, 0, 0, 0, 0, 0, 64, 231, 59, 0, 96, 21, 62, 0, 224, 79, 61, 0, 0, 0, 0, 0, 64, 231, 59, 0, 96, 21, 62, 0, 96, 42, 61, 0, 0, 0, 0, 0, 160, 164, 60, 0, 96, 3, 62, 0, 96, 42, 61, 0, 0, 0, 0, 0, 64, 231, 59, 0, 96, 3, 62, 0, 96, 42, 61, 0, 0, 0, 0, 0, 64, 231, 59, 0, 96, 21, 62, 0, 96, 42, 61, 0, 0, 0, 0, 0, 160, 164, 60, 0, 96, 21, 62, 0, 96, 42, 61, 0, 0, 0, 0, 0, 160, 164, 60, 0, 160, 248, 61, 0, 224, 79, 61, 254, 3, 0, 0, 0, 160, 164, 60, 0, 96, 3, 62, 0, 96, 42, 61, 254, 3, 0, 0, 0, 160, 164, 60, 0, 96, 21, 62, 0, 96, 42, 61, 254, 3, 0, 0, 0, 160, 164, 60, 0, 96, 21, 62, 0, 224, 79, 61, 254, 3, 0, 0, 0, 64, 231, 59, 0, 160, 248, 61, 0, 224, 79, 61, 0, 0, 96, 63, 0, 160, 164, 60, 0, 160, 248, 61, 0, 224, 79, 61, 0, 0, 96, 63, 0, 160, 164, 60, 0, 96, 21, 62, 0, 224, 79, 61, 0, 0, 96, 63, 0, 64, 231, 59, 0, 96, 21, 62, 0, 224, 79, 61, 0, 0, 96, 63, 0, 96, 74, 189, 0, 64, 10, 62, 0, 192, 4, 61, 0, 248, 15, 0, 0, 128, 28, 61, 0, 64, 10, 62, 0, 192, 4, 61, 0, 248, 15, 0, 0, 128, 28, 61, 0, 64, 10, 62, 0, 160, 245, 60, 0, 248, 15, 0, 0, 0, 66, 189, 0, 64, 10, 62, 0, 160, 245, 60, 0, 248, 15, 0, 0, 0, 66, 189, 0, 64, 10, 62, 0, 192, 203, 188, 0, 248, 15, 0, 0, 96, 74, 189, 0, 64, 10, 62, 0, 192, 203, 188, 0, 248, 15, 0, 0, 0, 121, 61, 0, 160, 225, 61, 0, 0, 121, 61, 0, 0, 0, 0, 0, 0, 121, 61, 0, 160, 225, 61, 0, 160, 212, 58, 0, 0, 0, 0, 0, 224, 136, 61, 0, 160, 225, 61, 0, 160, 145, 187, 0, 0, 0, 0, 0, 224, 136, 61, 0, 160, 225, 61, 0, 224, 136, 61, 0, 0, 0, 0, 0, 0, 203, 188, 0, 160, 225, 61, 0, 160, 212, 58, 0, 0, 0, 0, 0, 96, 153, 188, 0, 160, 225, 61, 0, 160, 145, 187, 0, 0, 0, 0, 0, 0, 203, 188, 0, 160, 225, 61, 0, 96, 66, 189, 0, 0, 0, 0, 0, 96, 153, 188, 0, 160, 225, 61, 0, 64, 91, 189, 0, 0, 0, 0, 0, 96, 147, 189, 0, 160, 225, 61, 0, 96, 66, 189, 0, 0, 0, 0, 0, 224, 159, 189, 0, 160, 225, 61, 0, 64, 91, 189, 0, 0, 0, 0, 0, 96, 147, 189, 0, 160, 225, 61, 0, 0, 121, 61, 0, 0, 0, 0, 0, 224, 159, 189, 0, 160, 225, 61, 0, 224, 136, 61, 0, 0, 0, 0, 0, 128, 28, 61, 0, 64, 10, 62, 0, 160, 245, 60, 156, 246, 11, 0, 0, 128, 28, 61, 0, 64, 10, 62, 0, 192, 4, 61, 156, 246, 11, 0, 0, 224, 136, 61, 0, 160, 225, 61, 0, 224, 136, 61, 156, 246, 11, 0, 0, 224, 136, 61, 0, 160, 225, 61, 0, 160, 145, 187, 156, 246, 11, 0, 0, 0, 66, 189, 0, 64, 10, 62, 0, 160, 245, 60, 0, 212, 12, 0, 0, 128, 28, 61, 0, 64, 10, 62, 0, 160, 245, 60, 0, 212, 12, 0, 0, 224, 136, 61, 0, 160, 225, 61, 0, 160, 145, 187, 0, 212, 12, 0, 0, 96, 153, 188, 0, 160, 225, 61, 0, 160, 145, 187, 0, 212, 12, 0, 0, 0, 66, 189, 0, 64, 10, 62, 0, 192, 203, 188, 156, 246, 11, 0, 0, 0, 66, 189, 0, 64, 10, 62, 0, 160, 245, 60, 156, 246, 11, 0, 0, 96, 153, 188, 0, 160, 225, 61, 0, 160, 145, 187, 156, 246, 11, 0, 0, 96, 153, 188, 0, 160, 225, 61, 0, 64, 91, 189, 156, 246, 11, 0, 0, 96, 74, 189, 0, 64, 10, 62, 0, 192, 203, 188, 0, 244, 11, 0, 0, 0, 66, 189, 0, 64, 10, 62, 0, 192, 203, 188, 0, 244, 11, 0, 0, 96, 153, 188, 0, 160, 225, 61, 0, 64, 91, 189, 0, 244, 11, 0, 0, 224, 159, 189, 0, 160, 225, 61, 0, 64, 91, 189, 0, 244, 11, 0, 0, 128, 28, 61, 0, 64, 10, 62, 0, 192, 4, 61, 0, 212, 76, 37, 0, 96, 74, 189, 0, 64, 10, 62, 0, 192, 4, 61, 0, 212, 76, 37, 0, 224, 159, 189, 0, 160, 225, 61, 0, 224, 136, 61, 0, 212, 76, 37, 0, 224, 136, 61, 0, 160, 225, 61, 0, 224, 136, 61, 0, 212, 76, 37, 0, 96, 74, 189, 0, 64, 10, 62, 0, 192, 4, 61, 0, 244, 11, 0, 0, 96, 74, 189, 0, 64, 10, 62, 0, 192, 203, 188, 0, 244, 11, 0, 0, 224, 159, 189, 0, 160, 225, 61, 0, 64, 91, 189, 0, 244, 11, 0, 0, 224, 159, 189, 0, 160, 225, 61, 0, 224, 136, 61, 0, 244, 11, 0) +}] -[sub_resource type="ArrayMesh" id=5] +[sub_resource type="ArrayMesh" id="5"] resource_name = "Plane.012" -surfaces/0 = { +_surfaces = [{ "aabb": AABB(-0.084406, 0.111386, -0.00444621, 0.22265, 0.03583, 0.220882), -"array_data": PackedByteArray(196, 42, 181, 48, 2, 48, 0, 60, 0, 127, 0, 0, 240, 43, 181, 48, 2, 48, 0, 60, 0, 127, 0, 0, 240, 43, 181, 48, 46, 47, 0, 60, 0, 127, 0, 0, 196, 42, 181, 48, 46, 47, 0, 60, 0, 127, 0, 0, 240, 43, 236, 47, 46, 47, 0, 60, 0, 0, 129, 0, 196, 42, 118, 47, 46, 47, 0, 60, 0, 0, 129, 0, 196, 42, 181, 48, 46, 47, 0, 60, 0, 0, 129, 0, 240, 43, 181, 48, 46, 47, 0, 60, 0, 0, 129, 0, 240, 43, 236, 47, 2, 48, 0, 60, 127, 0, 0, 0, 240, 43, 236, 47, 46, 47, 0, 60, 127, 0, 0, 0, 240, 43, 181, 48, 46, 47, 0, 60, 127, 0, 0, 0, 240, 43, 181, 48, 2, 48, 0, 60, 127, 0, 0, 0, 196, 42, 118, 47, 2, 48, 0, 60, 0, 0, 126, 0, 240, 43, 236, 47, 2, 48, 0, 60, 0, 0, 126, 0, 240, 43, 181, 48, 2, 48, 0, 60, 0, 0, 126, 0, 196, 42, 181, 48, 2, 48, 0, 60, 0, 0, 126, 0, 196, 42, 118, 47, 46, 47, 0, 60, 130, 0, 0, 0, 196, 42, 118, 47, 2, 48, 0, 60, 130, 0, 0, 0, 196, 42, 181, 48, 2, 48, 0, 60, 130, 0, 0, 0, 196, 42, 181, 48, 46, 47, 0, 60, 130, 0, 0, 0, 16, 169, 181, 48, 182, 41, 0, 60, 177, 99, 0, 0, 16, 169, 181, 48, 93, 41, 0, 60, 177, 99, 0, 0, 102, 173, 32, 47, 141, 156, 0, 60, 177, 99, 0, 0, 102, 173, 32, 47, 58, 46, 0, 60, 177, 99, 0, 0, 16, 169, 181, 48, 93, 41, 0, 60, 0, 100, 179, 0, 97, 44, 181, 48, 92, 41, 0, 60, 0, 100, 179, 0, 142, 45, 32, 47, 141, 156, 0, 60, 0, 100, 179, 0, 102, 173, 32, 47, 141, 156, 0, 60, 0, 100, 179, 0, 224, 172, 32, 47, 176, 27, 0, 60, 0, 127, 0, 0, 102, 173, 32, 47, 141, 156, 0, 60, 0, 127, 0, 0, 102, 173, 32, 47, 58, 46, 0, 60, 0, 127, 0, 0, 224, 172, 32, 47, 180, 45, 0, 60, 0, 127, 0, 0, 209, 45, 181, 48, 125, 49, 0, 60, 177, 99, 0, 0, 209, 45, 181, 48, 116, 44, 0, 60, 177, 99, 0, 0, 228, 41, 32, 47, 58, 46, 0, 60, 177, 99, 0, 0, 228, 41, 32, 47, 237, 50, 0, 60, 177, 99, 0, 0, 228, 41, 32, 47, 58, 46, 0, 60, 0, 105, 71, 0, 73, 44, 181, 48, 182, 41, 0, 60, 0, 105, 71, 0, 16, 169, 181, 48, 182, 41, 0, 60, 0, 105, 71, 0, 102, 173, 32, 47, 58, 46, 0, 60, 0, 105, 71, 0, 228, 41, 32, 47, 58, 46, 0, 60, 0, 127, 0, 0, 241, 42, 32, 47, 180, 45, 0, 60, 0, 127, 0, 0, 228, 41, 32, 47, 58, 46, 0, 60, 204, 104, 50, 0, 209, 45, 181, 48, 116, 44, 0, 60, 204, 104, 50, 0, 73, 44, 181, 48, 182, 41, 0, 60, 204, 104, 50, 0, 87, 45, 32, 47, 176, 27, 0, 60, 0, 127, 0, 0, 142, 45, 32, 47, 141, 156, 0, 60, 0, 127, 0, 0, 41, 48, 32, 47, 169, 50, 0, 60, 0, 127, 0, 0, 108, 48, 32, 47, 237, 50, 0, 60, 0, 127, 0, 0, 108, 48, 32, 47, 209, 41, 0, 60, 0, 127, 0, 0, 41, 48, 32, 47, 67, 42, 0, 60, 0, 127, 0, 0, 228, 41, 32, 47, 237, 50, 0, 60, 0, 127, 0, 0, 241, 42, 32, 47, 169, 50, 0, 60, 0, 127, 0, 0, 250, 45, 176, 48, 97, 44, 0, 60, 17, 125, 0, 0, 209, 45, 181, 48, 116, 44, 0, 60, 17, 125, 0, 0, 209, 45, 181, 48, 125, 49, 0, 60, 17, 125, 0, 0, 250, 45, 181, 48, 125, 49, 0, 60, 17, 125, 0, 0, 209, 45, 181, 48, 116, 44, 0, 60, 12, 125, 246, 0, 250, 45, 176, 48, 97, 44, 0, 60, 12, 125, 246, 0, 97, 44, 181, 48, 92, 41, 0, 60, 12, 125, 246, 0, 73, 44, 181, 48, 182, 41, 0, 60, 12, 125, 246, 0, 97, 44, 181, 48, 92, 41, 0, 60, 54, 101, 203, 0, 250, 45, 176, 48, 97, 44, 0, 60, 54, 101, 203, 0, 108, 48, 32, 47, 209, 41, 0, 60, 54, 101, 203, 0, 142, 45, 32, 47, 141, 156, 0, 60, 54, 101, 203, 0, 250, 45, 176, 48, 97, 44, 0, 60, 78, 99, 0, 0, 250, 45, 181, 48, 125, 49, 0, 60, 78, 99, 0, 0, 108, 48, 32, 47, 237, 50, 0, 60, 78, 99, 0, 0, 108, 48, 32, 47, 209, 41, 0, 60, 78, 99, 0, 0, 250, 45, 181, 48, 125, 49, 0, 60, 0, 99, 79, 0, 209, 45, 181, 48, 125, 49, 0, 60, 0, 99, 79, 0, 228, 41, 32, 47, 237, 50, 0, 60, 0, 99, 79, 0, 108, 48, 32, 47, 237, 50, 0, 60, 0, 99, 79, 0, 97, 44, 181, 48, 92, 41, 0, 60, 0, 127, 0, 0, 16, 169, 181, 48, 93, 41, 0, 60, 0, 127, 0, 0, 16, 169, 181, 48, 182, 41, 0, 60, 0, 127, 0, 0, 73, 44, 181, 48, 182, 41, 0, 60, 0, 127, 0, 0), -"array_index_data": PackedByteArray(0, 0, 2, 0, 1, 0, 0, 0, 3, 0, 2, 0, 4, 0, 6, 0, 5, 0, 4, 0, 7, 0, 6, 0, 8, 0, 10, 0, 9, 0, 8, 0, 11, 0, 10, 0, 12, 0, 14, 0, 13, 0, 12, 0, 15, 0, 14, 0, 16, 0, 18, 0, 17, 0, 16, 0, 19, 0, 18, 0, 20, 0, 22, 0, 21, 0, 20, 0, 23, 0, 22, 0, 24, 0, 26, 0, 25, 0, 24, 0, 27, 0, 26, 0, 28, 0, 30, 0, 29, 0, 28, 0, 31, 0, 30, 0, 32, 0, 34, 0, 33, 0, 32, 0, 35, 0, 34, 0, 36, 0, 38, 0, 37, 0, 36, 0, 39, 0, 38, 0, 31, 0, 40, 0, 30, 0, 31, 0, 41, 0, 40, 0, 42, 0, 44, 0, 43, 0, 45, 0, 29, 0, 46, 0, 45, 0, 28, 0, 29, 0, 47, 0, 49, 0, 48, 0, 47, 0, 50, 0, 49, 0, 41, 0, 51, 0, 40, 0, 41, 0, 52, 0, 51, 0, 52, 0, 48, 0, 51, 0, 52, 0, 47, 0, 48, 0, 53, 0, 55, 0, 54, 0, 53, 0, 56, 0, 55, 0, 57, 0, 59, 0, 58, 0, 57, 0, 60, 0, 59, 0, 61, 0, 63, 0, 62, 0, 61, 0, 64, 0, 63, 0, 50, 0, 46, 0, 49, 0, 50, 0, 45, 0, 46, 0, 65, 0, 67, 0, 66, 0, 65, 0, 68, 0, 67, 0, 69, 0, 71, 0, 70, 0, 69, 0, 72, 0, 71, 0, 73, 0, 75, 0, 74, 0, 73, 0, 76, 0, 75, 0), -"blend_shape_data": [], -"format": 98051, +"format": 4099, "index_count": 135, -"material": ExtResource( 1 ), +"index_data": PackedByteArray(0, 0, 2, 0, 1, 0, 0, 0, 3, 0, 2, 0, 4, 0, 6, 0, 5, 0, 4, 0, 7, 0, 6, 0, 8, 0, 10, 0, 9, 0, 8, 0, 11, 0, 10, 0, 12, 0, 14, 0, 13, 0, 12, 0, 15, 0, 14, 0, 16, 0, 18, 0, 17, 0, 16, 0, 19, 0, 18, 0, 20, 0, 22, 0, 21, 0, 20, 0, 23, 0, 22, 0, 24, 0, 26, 0, 25, 0, 24, 0, 27, 0, 26, 0, 28, 0, 30, 0, 29, 0, 28, 0, 31, 0, 30, 0, 32, 0, 34, 0, 33, 0, 32, 0, 35, 0, 34, 0, 36, 0, 38, 0, 37, 0, 36, 0, 39, 0, 38, 0, 31, 0, 40, 0, 30, 0, 31, 0, 41, 0, 40, 0, 42, 0, 44, 0, 43, 0, 45, 0, 29, 0, 46, 0, 45, 0, 28, 0, 29, 0, 47, 0, 49, 0, 48, 0, 47, 0, 50, 0, 49, 0, 41, 0, 51, 0, 40, 0, 41, 0, 52, 0, 51, 0, 52, 0, 48, 0, 51, 0, 52, 0, 47, 0, 48, 0, 53, 0, 55, 0, 54, 0, 53, 0, 56, 0, 55, 0, 57, 0, 59, 0, 58, 0, 57, 0, 60, 0, 59, 0, 61, 0, 63, 0, 62, 0, 61, 0, 64, 0, 63, 0, 50, 0, 46, 0, 49, 0, 50, 0, 45, 0, 46, 0, 65, 0, 67, 0, 66, 0, 65, 0, 68, 0, 67, 0, 69, 0, 71, 0, 70, 0, 69, 0, 72, 0, 71, 0, 73, 0, 75, 0, 74, 0, 73, 0, 76, 0, 75, 0), +"material": ExtResource( "1" ), "name": "Material", -"primitive": 4, -"skeleton_aabb": [], -"vertex_count": 77 -} +"primitive": 3, +"vertex_count": 77, +"vertex_data": PackedByteArray(0, 128, 88, 61, 0, 160, 22, 62, 0, 64, 0, 62, 0, 248, 15, 0, 0, 0, 126, 61, 0, 160, 22, 62, 0, 64, 0, 62, 0, 248, 15, 0, 0, 0, 126, 61, 0, 160, 22, 62, 0, 192, 229, 61, 0, 248, 15, 0, 0, 128, 88, 61, 0, 160, 22, 62, 0, 192, 229, 61, 0, 248, 15, 0, 0, 0, 126, 61, 0, 128, 253, 61, 0, 192, 229, 61, 0, 0, 0, 0, 0, 128, 88, 61, 0, 192, 238, 61, 0, 192, 229, 61, 0, 0, 0, 0, 0, 128, 88, 61, 0, 160, 22, 62, 0, 192, 229, 61, 0, 0, 0, 0, 0, 0, 126, 61, 0, 160, 22, 62, 0, 192, 229, 61, 0, 0, 0, 0, 0, 0, 126, 61, 0, 128, 253, 61, 0, 64, 0, 62, 254, 3, 0, 0, 0, 0, 126, 61, 0, 128, 253, 61, 0, 192, 229, 61, 254, 3, 0, 0, 0, 0, 126, 61, 0, 160, 22, 62, 0, 192, 229, 61, 254, 3, 0, 0, 0, 0, 126, 61, 0, 160, 22, 62, 0, 64, 0, 62, 254, 3, 0, 0, 0, 128, 88, 61, 0, 192, 238, 61, 0, 64, 0, 62, 0, 0, 96, 63, 0, 0, 126, 61, 0, 128, 253, 61, 0, 64, 0, 62, 0, 0, 96, 63, 0, 0, 126, 61, 0, 160, 22, 62, 0, 64, 0, 62, 0, 0, 96, 63, 0, 128, 88, 61, 0, 160, 22, 62, 0, 64, 0, 62, 0, 0, 96, 63, 0, 128, 88, 61, 0, 192, 238, 61, 0, 192, 229, 61, 0, 0, 0, 0, 0, 128, 88, 61, 0, 192, 238, 61, 0, 64, 0, 62, 0, 0, 0, 0, 0, 128, 88, 61, 0, 160, 22, 62, 0, 64, 0, 62, 0, 0, 0, 0, 0, 128, 88, 61, 0, 160, 22, 62, 0, 192, 229, 61, 0, 0, 0, 0, 0, 0, 34, 189, 0, 160, 22, 62, 0, 192, 54, 61, 0, 116, 12, 0, 0, 0, 34, 189, 0, 160, 22, 62, 0, 160, 43, 61, 0, 116, 12, 0, 0, 192, 172, 189, 0, 0, 228, 61, 0, 160, 145, 187, 0, 116, 12, 0, 0, 192, 172, 189, 0, 0, 228, 61, 0, 64, 199, 61, 0, 116, 12, 0, 0, 0, 34, 189, 0, 160, 22, 62, 0, 160, 43, 61, 0, 148, 12, 0, 0, 32, 140, 61, 0, 160, 22, 62, 0, 128, 43, 61, 0, 148, 12, 0, 0, 192, 177, 61, 0, 0, 228, 61, 0, 160, 145, 187, 0, 148, 12, 0, 0, 192, 172, 189, 0, 0, 228, 61, 0, 160, 145, 187, 0, 148, 12, 0, 0, 0, 156, 189, 0, 0, 228, 61, 0, 0, 118, 59, 0, 248, 15, 0, 0, 192, 172, 189, 0, 0, 228, 61, 0, 160, 145, 187, 0, 248, 15, 0, 0, 192, 172, 189, 0, 0, 228, 61, 0, 64, 199, 61, 0, 248, 15, 0, 0, 0, 156, 189, 0, 0, 228, 61, 0, 128, 182, 61, 0, 248, 15, 0, 0, 32, 186, 61, 0, 160, 22, 62, 0, 160, 47, 62, 0, 116, 12, 0, 0, 32, 186, 61, 0, 160, 22, 62, 0, 128, 142, 61, 0, 116, 12, 0, 0, 128, 60, 61, 0, 0, 228, 61, 0, 64, 199, 61, 0, 116, 12, 0, 0, 128, 60, 61, 0, 0, 228, 61, 0, 160, 93, 62, 0, 116, 12, 0, 0, 128, 60, 61, 0, 0, 228, 61, 0, 64, 199, 61, 0, 52, 189, 35, 0, 32, 137, 61, 0, 160, 22, 62, 0, 192, 54, 61, 0, 52, 189, 35, 0, 0, 34, 189, 0, 160, 22, 62, 0, 192, 54, 61, 0, 52, 189, 35, 0, 192, 172, 189, 0, 0, 228, 61, 0, 64, 199, 61, 0, 52, 189, 35, 0, 128, 60, 61, 0, 0, 228, 61, 0, 64, 199, 61, 0, 248, 15, 0, 0, 32, 94, 61, 0, 0, 228, 61, 0, 128, 182, 61, 0, 248, 15, 0, 0, 128, 60, 61, 0, 0, 228, 61, 0, 64, 199, 61, 0, 20, 45, 25, 0, 32, 186, 61, 0, 160, 22, 62, 0, 128, 142, 61, 0, 20, 45, 25, 0, 32, 137, 61, 0, 160, 22, 62, 0, 192, 54, 61, 0, 20, 45, 25, 0, 224, 170, 61, 0, 0, 228, 61, 0, 0, 118, 59, 0, 248, 15, 0, 0, 192, 177, 61, 0, 0, 228, 61, 0, 160, 145, 187, 0, 248, 15, 0, 0, 32, 5, 62, 0, 0, 228, 61, 0, 32, 85, 62, 0, 248, 15, 0, 0, 128, 13, 62, 0, 0, 228, 61, 0, 160, 93, 62, 0, 248, 15, 0, 0, 128, 13, 62, 0, 0, 228, 61, 0, 32, 58, 61, 0, 248, 15, 0, 0, 32, 5, 62, 0, 0, 228, 61, 0, 96, 72, 61, 0, 248, 15, 0, 0, 128, 60, 61, 0, 0, 228, 61, 0, 160, 93, 62, 0, 248, 15, 0, 0, 32, 94, 61, 0, 0, 228, 61, 0, 32, 85, 62, 0, 248, 15, 0, 0, 64, 191, 61, 0, 0, 22, 62, 0, 32, 140, 61, 136, 184, 15, 0, 0, 32, 186, 61, 0, 160, 22, 62, 0, 128, 142, 61, 136, 184, 15, 0, 0, 32, 186, 61, 0, 160, 22, 62, 0, 160, 47, 62, 136, 184, 15, 0, 0, 64, 191, 61, 0, 160, 22, 62, 0, 160, 47, 62, 136, 184, 15, 0, 0, 32, 186, 61, 0, 160, 22, 62, 0, 128, 142, 61, 96, 184, 15, 0, 0, 64, 191, 61, 0, 0, 22, 62, 0, 32, 140, 61, 96, 184, 15, 0, 0, 32, 140, 61, 0, 160, 22, 62, 0, 128, 43, 61, 96, 184, 15, 0, 0, 32, 137, 61, 0, 160, 22, 62, 0, 192, 54, 61, 96, 184, 15, 0, 0, 32, 140, 61, 0, 160, 22, 62, 0, 128, 43, 61, 178, 181, 12, 0, 0, 64, 191, 61, 0, 0, 22, 62, 0, 32, 140, 61, 178, 181, 12, 0, 0, 128, 13, 62, 0, 0, 228, 61, 0, 32, 58, 61, 178, 181, 12, 0, 0, 192, 177, 61, 0, 0, 228, 61, 0, 160, 145, 187, 178, 181, 12, 0, 0, 64, 191, 61, 0, 0, 22, 62, 0, 32, 140, 61, 116, 118, 12, 0, 0, 64, 191, 61, 0, 160, 22, 62, 0, 160, 47, 62, 116, 118, 12, 0, 0, 128, 13, 62, 0, 0, 228, 61, 0, 160, 93, 62, 116, 118, 12, 0, 0, 128, 13, 62, 0, 0, 228, 61, 0, 32, 58, 61, 116, 118, 12, 0, 0, 64, 191, 61, 0, 160, 22, 62, 0, 160, 47, 62, 0, 116, 204, 39, 0, 32, 186, 61, 0, 160, 22, 62, 0, 160, 47, 62, 0, 116, 204, 39, 0, 128, 60, 61, 0, 0, 228, 61, 0, 160, 93, 62, 0, 116, 204, 39, 0, 128, 13, 62, 0, 0, 228, 61, 0, 160, 93, 62, 0, 116, 204, 39, 0, 32, 140, 61, 0, 160, 22, 62, 0, 128, 43, 61, 0, 248, 15, 0, 0, 0, 34, 189, 0, 160, 22, 62, 0, 160, 43, 61, 0, 248, 15, 0, 0, 0, 34, 189, 0, 160, 22, 62, 0, 192, 54, 61, 0, 248, 15, 0, 0, 32, 137, 61, 0, 160, 22, 62, 0, 192, 54, 61, 0, 248, 15, 0) +}] -[sub_resource type="ArrayMesh" id=6] +[sub_resource type="ArrayMesh" id="6"] resource_name = "Plane.011" -surfaces/0 = { +_surfaces = [{ "aabb": AABB(-0.084406, 0.0630034, -0.00444621, 0.22265, 0.0358301, 0.220882), -"array_data": PackedByteArray(102, 173, 8, 44, 141, 156, 0, 60, 177, 99, 0, 0, 102, 173, 8, 44, 58, 46, 0, 60, 177, 99, 0, 0, 16, 169, 83, 46, 182, 41, 0, 60, 177, 99, 0, 0, 16, 169, 83, 46, 93, 41, 0, 60, 177, 99, 0, 0, 16, 169, 83, 46, 93, 41, 0, 60, 0, 100, 179, 0, 97, 44, 83, 46, 92, 41, 0, 60, 0, 100, 179, 0, 142, 45, 8, 44, 141, 156, 0, 60, 0, 100, 179, 0, 102, 173, 8, 44, 141, 156, 0, 60, 0, 100, 179, 0, 209, 45, 83, 46, 125, 49, 0, 60, 177, 99, 0, 0, 209, 45, 83, 46, 116, 44, 0, 60, 177, 99, 0, 0, 228, 41, 8, 44, 58, 46, 0, 60, 177, 99, 0, 0, 228, 41, 8, 44, 237, 50, 0, 60, 177, 99, 0, 0, 16, 169, 83, 46, 182, 41, 0, 60, 0, 105, 71, 0, 102, 173, 8, 44, 58, 46, 0, 60, 0, 105, 71, 0, 228, 41, 8, 44, 58, 46, 0, 60, 0, 105, 71, 0, 73, 44, 83, 46, 182, 41, 0, 60, 0, 105, 71, 0, 228, 41, 8, 44, 58, 46, 0, 60, 204, 104, 50, 0, 209, 45, 83, 46, 116, 44, 0, 60, 204, 104, 50, 0, 73, 44, 83, 46, 182, 41, 0, 60, 204, 104, 50, 0, 250, 45, 71, 46, 97, 44, 0, 60, 17, 125, 0, 0, 209, 45, 83, 46, 116, 44, 0, 60, 17, 125, 0, 0, 209, 45, 83, 46, 125, 49, 0, 60, 17, 125, 0, 0, 250, 45, 83, 46, 125, 49, 0, 60, 17, 125, 0, 0, 209, 45, 83, 46, 116, 44, 0, 60, 12, 125, 246, 0, 250, 45, 71, 46, 97, 44, 0, 60, 12, 125, 246, 0, 97, 44, 83, 46, 92, 41, 0, 60, 12, 125, 246, 0, 73, 44, 83, 46, 182, 41, 0, 60, 12, 125, 246, 0, 97, 44, 83, 46, 92, 41, 0, 60, 54, 101, 203, 0, 250, 45, 71, 46, 97, 44, 0, 60, 54, 101, 203, 0, 108, 48, 8, 44, 209, 41, 0, 60, 54, 101, 203, 0, 142, 45, 8, 44, 141, 156, 0, 60, 54, 101, 203, 0, 250, 45, 71, 46, 97, 44, 0, 60, 78, 99, 0, 0, 250, 45, 83, 46, 125, 49, 0, 60, 78, 99, 0, 0, 108, 48, 8, 44, 237, 50, 0, 60, 78, 99, 0, 0, 108, 48, 8, 44, 209, 41, 0, 60, 78, 99, 0, 0, 250, 45, 83, 46, 125, 49, 0, 60, 0, 99, 79, 0, 209, 45, 83, 46, 125, 49, 0, 60, 0, 99, 79, 0, 228, 41, 8, 44, 237, 50, 0, 60, 0, 99, 79, 0, 108, 48, 8, 44, 237, 50, 0, 60, 0, 99, 79, 0, 97, 44, 83, 46, 92, 41, 0, 60, 0, 127, 0, 0, 16, 169, 83, 46, 93, 41, 0, 60, 0, 127, 0, 0, 16, 169, 83, 46, 182, 41, 0, 60, 0, 127, 0, 0, 73, 44, 83, 46, 182, 41, 0, 60, 0, 127, 0, 0), -"array_index_data": PackedByteArray(0, 0, 2, 0, 1, 0, 0, 0, 3, 0, 2, 0, 4, 0, 6, 0, 5, 0, 4, 0, 7, 0, 6, 0, 8, 0, 10, 0, 9, 0, 8, 0, 11, 0, 10, 0, 12, 0, 14, 0, 13, 0, 12, 0, 15, 0, 14, 0, 16, 0, 18, 0, 17, 0, 19, 0, 21, 0, 20, 0, 19, 0, 22, 0, 21, 0, 23, 0, 25, 0, 24, 0, 23, 0, 26, 0, 25, 0, 27, 0, 29, 0, 28, 0, 27, 0, 30, 0, 29, 0, 31, 0, 33, 0, 32, 0, 31, 0, 34, 0, 33, 0, 35, 0, 37, 0, 36, 0, 35, 0, 38, 0, 37, 0, 39, 0, 41, 0, 40, 0, 39, 0, 42, 0, 41, 0), -"blend_shape_data": [], -"format": 98051, +"format": 4099, "index_count": 63, -"material": ExtResource( 1 ), +"index_data": PackedByteArray(0, 0, 2, 0, 1, 0, 0, 0, 3, 0, 2, 0, 4, 0, 6, 0, 5, 0, 4, 0, 7, 0, 6, 0, 8, 0, 10, 0, 9, 0, 8, 0, 11, 0, 10, 0, 12, 0, 14, 0, 13, 0, 12, 0, 15, 0, 14, 0, 16, 0, 18, 0, 17, 0, 19, 0, 21, 0, 20, 0, 19, 0, 22, 0, 21, 0, 23, 0, 25, 0, 24, 0, 23, 0, 26, 0, 25, 0, 27, 0, 29, 0, 28, 0, 27, 0, 30, 0, 29, 0, 31, 0, 33, 0, 32, 0, 31, 0, 34, 0, 33, 0, 35, 0, 37, 0, 36, 0, 35, 0, 38, 0, 37, 0, 39, 0, 41, 0, 40, 0, 39, 0, 42, 0, 41, 0), +"material": ExtResource( "1" ), "name": "Material", -"primitive": 4, -"skeleton_aabb": [], -"vertex_count": 43 -} +"primitive": 3, +"vertex_count": 43, +"vertex_data": PackedByteArray(0, 192, 172, 189, 0, 0, 129, 61, 0, 160, 145, 187, 0, 116, 12, 0, 0, 192, 172, 189, 0, 0, 129, 61, 0, 64, 199, 61, 0, 116, 12, 0, 0, 0, 34, 189, 0, 96, 202, 61, 0, 192, 54, 61, 0, 116, 12, 0, 0, 0, 34, 189, 0, 96, 202, 61, 0, 160, 43, 61, 0, 116, 12, 0, 0, 0, 34, 189, 0, 96, 202, 61, 0, 160, 43, 61, 0, 148, 12, 0, 0, 32, 140, 61, 0, 96, 202, 61, 0, 128, 43, 61, 0, 148, 12, 0, 0, 192, 177, 61, 0, 0, 129, 61, 0, 160, 145, 187, 0, 148, 12, 0, 0, 192, 172, 189, 0, 0, 129, 61, 0, 160, 145, 187, 0, 148, 12, 0, 0, 32, 186, 61, 0, 96, 202, 61, 0, 160, 47, 62, 0, 116, 12, 0, 0, 32, 186, 61, 0, 96, 202, 61, 0, 128, 142, 61, 0, 116, 12, 0, 0, 128, 60, 61, 0, 0, 129, 61, 0, 64, 199, 61, 0, 116, 12, 0, 0, 128, 60, 61, 0, 0, 129, 61, 0, 160, 93, 62, 0, 116, 12, 0, 0, 0, 34, 189, 0, 96, 202, 61, 0, 192, 54, 61, 0, 52, 189, 35, 0, 192, 172, 189, 0, 0, 129, 61, 0, 64, 199, 61, 0, 52, 189, 35, 0, 128, 60, 61, 0, 0, 129, 61, 0, 64, 199, 61, 0, 52, 189, 35, 0, 32, 137, 61, 0, 96, 202, 61, 0, 192, 54, 61, 0, 52, 189, 35, 0, 128, 60, 61, 0, 0, 129, 61, 0, 64, 199, 61, 0, 20, 45, 25, 0, 32, 186, 61, 0, 96, 202, 61, 0, 128, 142, 61, 0, 20, 45, 25, 0, 32, 137, 61, 0, 96, 202, 61, 0, 192, 54, 61, 0, 20, 45, 25, 0, 64, 191, 61, 0, 224, 200, 61, 0, 32, 140, 61, 136, 184, 15, 0, 0, 32, 186, 61, 0, 96, 202, 61, 0, 128, 142, 61, 136, 184, 15, 0, 0, 32, 186, 61, 0, 96, 202, 61, 0, 160, 47, 62, 136, 184, 15, 0, 0, 64, 191, 61, 0, 96, 202, 61, 0, 160, 47, 62, 136, 184, 15, 0, 0, 32, 186, 61, 0, 96, 202, 61, 0, 128, 142, 61, 96, 184, 15, 0, 0, 64, 191, 61, 0, 224, 200, 61, 0, 32, 140, 61, 96, 184, 15, 0, 0, 32, 140, 61, 0, 96, 202, 61, 0, 128, 43, 61, 96, 184, 15, 0, 0, 32, 137, 61, 0, 96, 202, 61, 0, 192, 54, 61, 96, 184, 15, 0, 0, 32, 140, 61, 0, 96, 202, 61, 0, 128, 43, 61, 178, 181, 12, 0, 0, 64, 191, 61, 0, 224, 200, 61, 0, 32, 140, 61, 178, 181, 12, 0, 0, 128, 13, 62, 0, 0, 129, 61, 0, 32, 58, 61, 178, 181, 12, 0, 0, 192, 177, 61, 0, 0, 129, 61, 0, 160, 145, 187, 178, 181, 12, 0, 0, 64, 191, 61, 0, 224, 200, 61, 0, 32, 140, 61, 116, 118, 12, 0, 0, 64, 191, 61, 0, 96, 202, 61, 0, 160, 47, 62, 116, 118, 12, 0, 0, 128, 13, 62, 0, 0, 129, 61, 0, 160, 93, 62, 116, 118, 12, 0, 0, 128, 13, 62, 0, 0, 129, 61, 0, 32, 58, 61, 116, 118, 12, 0, 0, 64, 191, 61, 0, 96, 202, 61, 0, 160, 47, 62, 0, 116, 204, 39, 0, 32, 186, 61, 0, 96, 202, 61, 0, 160, 47, 62, 0, 116, 204, 39, 0, 128, 60, 61, 0, 0, 129, 61, 0, 160, 93, 62, 0, 116, 204, 39, 0, 128, 13, 62, 0, 0, 129, 61, 0, 160, 93, 62, 0, 116, 204, 39, 0, 32, 140, 61, 0, 96, 202, 61, 0, 128, 43, 61, 0, 248, 15, 0, 0, 0, 34, 189, 0, 96, 202, 61, 0, 160, 43, 61, 0, 248, 15, 0, 0, 0, 34, 189, 0, 96, 202, 61, 0, 192, 54, 61, 0, 248, 15, 0, 0, 32, 137, 61, 0, 96, 202, 61, 0, 192, 54, 61, 0, 248, 15, 0) +}] -[sub_resource type="ArrayMesh" id=7] +[sub_resource type="ArrayMesh" id="7"] resource_name = "Cube.002" -surfaces/0 = { +_surfaces = [{ "aabb": AABB(-0.0682448, 0.0630034, -0.0442622, 0.1365, 0.0358301, 0.0885243), -"array_data": PackedByteArray(94, 44, 8, 44, 170, 169, 0, 60, 0, 96, 174, 0, 94, 172, 8, 44, 170, 169, 0, 60, 0, 96, 174, 0, 71, 169, 83, 46, 20, 153, 0, 60, 0, 96, 174, 0, 71, 41, 83, 46, 20, 153, 0, 60, 0, 96, 174, 0, 71, 41, 83, 46, 20, 25, 0, 60, 0, 127, 0, 0, 71, 41, 83, 46, 20, 153, 0, 60, 0, 127, 0, 0, 71, 169, 83, 46, 20, 153, 0, 60, 0, 127, 0, 0, 71, 169, 83, 46, 20, 25, 0, 60, 0, 127, 0, 0, 94, 44, 8, 44, 170, 41, 0, 60, 101, 76, 0, 0, 94, 44, 8, 44, 170, 169, 0, 60, 101, 76, 0, 0, 71, 41, 83, 46, 20, 153, 0, 60, 101, 76, 0, 0, 71, 41, 83, 46, 20, 25, 0, 60, 101, 76, 0, 0, 94, 172, 8, 44, 170, 41, 0, 60, 0, 96, 82, 0, 94, 44, 8, 44, 170, 41, 0, 60, 0, 96, 82, 0, 71, 41, 83, 46, 20, 25, 0, 60, 0, 96, 82, 0, 71, 169, 83, 46, 20, 25, 0, 60, 0, 96, 82, 0, 94, 172, 8, 44, 170, 169, 0, 60, 155, 76, 0, 0, 94, 172, 8, 44, 170, 41, 0, 60, 155, 76, 0, 0, 71, 169, 83, 46, 20, 25, 0, 60, 155, 76, 0, 0, 71, 169, 83, 46, 20, 153, 0, 60, 155, 76, 0, 0), -"array_index_data": PackedByteArray(0, 0, 2, 0, 1, 0, 0, 0, 3, 0, 2, 0, 4, 0, 6, 0, 5, 0, 4, 0, 7, 0, 6, 0, 8, 0, 10, 0, 9, 0, 8, 0, 11, 0, 10, 0, 12, 0, 14, 0, 13, 0, 12, 0, 15, 0, 14, 0, 16, 0, 18, 0, 17, 0, 16, 0, 19, 0, 18, 0), -"blend_shape_data": [], -"format": 98051, +"format": 4099, "index_count": 30, -"material": ExtResource( 1 ), +"index_data": PackedByteArray(0, 0, 2, 0, 1, 0, 0, 0, 3, 0, 2, 0, 4, 0, 6, 0, 5, 0, 4, 0, 7, 0, 6, 0, 8, 0, 10, 0, 9, 0, 8, 0, 11, 0, 10, 0, 12, 0, 14, 0, 13, 0, 12, 0, 15, 0, 14, 0, 16, 0, 18, 0, 17, 0, 16, 0, 19, 0, 18, 0), +"material": ExtResource( "1" ), "name": "Material", -"primitive": 4, -"skeleton_aabb": [], -"vertex_count": 20 -} +"primitive": 3, +"vertex_count": 20, +"vertex_data": PackedByteArray(0, 192, 139, 61, 0, 0, 129, 61, 0, 64, 53, 189, 0, 20, 12, 0, 0, 192, 139, 189, 0, 0, 129, 61, 0, 64, 53, 189, 0, 20, 12, 0, 0, 224, 40, 189, 0, 96, 202, 61, 0, 128, 34, 187, 0, 20, 12, 0, 0, 224, 40, 61, 0, 96, 202, 61, 0, 128, 34, 187, 0, 20, 12, 0, 0, 224, 40, 61, 0, 96, 202, 61, 0, 128, 34, 59, 0, 248, 15, 0, 0, 224, 40, 61, 0, 96, 202, 61, 0, 128, 34, 187, 0, 248, 15, 0, 0, 224, 40, 189, 0, 96, 202, 61, 0, 128, 34, 187, 0, 248, 15, 0, 0, 224, 40, 189, 0, 96, 202, 61, 0, 128, 34, 59, 0, 248, 15, 0, 0, 192, 139, 61, 0, 0, 129, 61, 0, 64, 53, 61, 45, 147, 9, 0, 0, 192, 139, 61, 0, 0, 129, 61, 0, 64, 53, 189, 45, 147, 9, 0, 0, 224, 40, 61, 0, 96, 202, 61, 0, 128, 34, 187, 45, 147, 9, 0, 0, 224, 40, 61, 0, 96, 202, 61, 0, 128, 34, 59, 45, 147, 9, 0, 0, 192, 139, 189, 0, 0, 129, 61, 0, 64, 53, 61, 0, 20, 76, 41, 0, 192, 139, 61, 0, 0, 129, 61, 0, 64, 53, 61, 0, 20, 76, 41, 0, 224, 40, 61, 0, 96, 202, 61, 0, 128, 34, 59, 0, 20, 76, 41, 0, 224, 40, 189, 0, 96, 202, 61, 0, 128, 34, 59, 0, 20, 76, 41, 0, 192, 139, 189, 0, 0, 129, 61, 0, 64, 53, 189, 0, 144, 9, 0, 0, 192, 139, 189, 0, 0, 129, 61, 0, 64, 53, 61, 0, 144, 9, 0, 0, 224, 40, 189, 0, 96, 202, 61, 0, 128, 34, 59, 0, 144, 9, 0, 0, 224, 40, 189, 0, 96, 202, 61, 0, 128, 34, 187, 0, 144, 9, 0) +}] -[sub_resource type="ArrayMesh" id=8] +[sub_resource type="ArrayMesh" id="8"] resource_name = "Plane.010" -surfaces/0 = { +_surfaces = [{ "aabb": AABB(-0.084406, 0.106392, -0.00444621, 0.15128, 0.0358301, 0.131846), -"array_data": PackedByteArray(242, 26, 140, 48, 118, 45, 0, 60, 0, 127, 0, 0, 242, 26, 140, 48, 224, 44, 0, 60, 0, 127, 0, 0, 240, 160, 140, 48, 224, 44, 0, 60, 0, 127, 0, 0, 240, 160, 140, 48, 118, 45, 0, 60, 0, 127, 0, 0, 240, 160, 196, 47, 224, 44, 0, 60, 130, 0, 0, 0, 240, 160, 81, 47, 118, 45, 0, 60, 130, 0, 0, 0, 240, 160, 140, 48, 118, 45, 0, 60, 130, 0, 0, 0, 240, 160, 140, 48, 224, 44, 0, 60, 130, 0, 0, 0, 242, 26, 196, 47, 224, 44, 0, 60, 0, 0, 129, 0, 240, 160, 196, 47, 224, 44, 0, 60, 0, 0, 129, 0, 240, 160, 140, 48, 224, 44, 0, 60, 0, 0, 129, 0, 242, 26, 140, 48, 224, 44, 0, 60, 0, 0, 129, 0, 242, 26, 81, 47, 118, 45, 0, 60, 127, 0, 0, 0, 242, 26, 196, 47, 224, 44, 0, 60, 127, 0, 0, 0, 242, 26, 140, 48, 224, 44, 0, 60, 127, 0, 0, 0, 242, 26, 140, 48, 118, 45, 0, 60, 127, 0, 0, 0, 240, 160, 81, 47, 118, 45, 0, 60, 0, 0, 126, 0, 242, 26, 81, 47, 118, 45, 0, 60, 0, 0, 126, 0, 242, 26, 140, 48, 118, 45, 0, 60, 0, 0, 126, 0, 240, 160, 140, 48, 118, 45, 0, 60, 0, 0, 126, 0, 16, 169, 141, 48, 4, 42, 0, 60, 0, 127, 0, 0, 77, 169, 141, 48, 4, 42, 0, 60, 0, 127, 0, 0, 77, 169, 141, 48, 44, 46, 0, 60, 0, 127, 0, 0, 16, 169, 141, 48, 44, 46, 0, 60, 0, 127, 0, 0, 153, 40, 141, 48, 173, 41, 0, 60, 0, 127, 0, 0, 153, 40, 141, 48, 4, 42, 0, 60, 0, 127, 0, 0, 215, 170, 141, 48, 173, 41, 0, 60, 0, 127, 0, 0, 215, 170, 141, 48, 4, 42, 0, 60, 0, 127, 0, 0, 215, 170, 141, 48, 4, 42, 0, 60, 160, 83, 0, 0, 215, 170, 141, 48, 173, 41, 0, 60, 160, 83, 0, 0, 102, 173, 207, 46, 141, 156, 0, 60, 160, 83, 0, 0, 102, 173, 207, 46, 58, 46, 0, 60, 160, 83, 0, 0, 77, 169, 141, 48, 44, 46, 0, 60, 160, 83, 0, 0, 77, 169, 141, 48, 4, 42, 0, 60, 160, 83, 0, 0, 161, 172, 207, 46, 58, 46, 0, 60, 160, 83, 0, 0, 161, 172, 207, 46, 19, 48, 0, 60, 160, 83, 0, 0, 153, 40, 141, 48, 173, 41, 0, 60, 96, 83, 0, 0, 153, 40, 141, 48, 4, 42, 0, 60, 96, 83, 0, 0, 71, 44, 207, 46, 58, 46, 0, 60, 96, 83, 0, 0, 71, 44, 207, 46, 141, 156, 0, 60, 96, 83, 0, 0, 16, 169, 141, 48, 4, 42, 0, 60, 96, 83, 0, 0, 16, 169, 141, 48, 44, 46, 0, 60, 96, 83, 0, 0, 104, 160, 207, 46, 19, 48, 0, 60, 96, 83, 0, 0, 104, 160, 207, 46, 58, 46, 0, 60, 96, 83, 0, 0, 16, 169, 141, 48, 44, 46, 0, 60, 0, 83, 96, 0, 77, 169, 141, 48, 44, 46, 0, 60, 0, 83, 96, 0, 161, 172, 207, 46, 19, 48, 0, 60, 0, 83, 96, 0, 104, 160, 207, 46, 19, 48, 0, 60, 0, 83, 96, 0, 77, 169, 141, 48, 4, 42, 0, 60, 0, 103, 73, 0, 215, 170, 141, 48, 4, 42, 0, 60, 0, 103, 73, 0, 102, 173, 207, 46, 58, 46, 0, 60, 0, 103, 73, 0, 161, 172, 207, 46, 58, 46, 0, 60, 0, 103, 73, 0, 153, 40, 141, 48, 4, 42, 0, 60, 0, 103, 73, 0, 16, 169, 141, 48, 4, 42, 0, 60, 0, 103, 73, 0, 104, 160, 207, 46, 58, 46, 0, 60, 0, 103, 73, 0, 71, 44, 207, 46, 58, 46, 0, 60, 0, 103, 73, 0, 215, 170, 141, 48, 173, 41, 0, 60, 0, 102, 181, 0, 153, 40, 141, 48, 173, 41, 0, 60, 0, 102, 181, 0, 71, 44, 207, 46, 141, 156, 0, 60, 0, 102, 181, 0, 102, 173, 207, 46, 141, 156, 0, 60, 0, 102, 181, 0, 254, 172, 207, 46, 240, 23, 0, 60, 0, 130, 0, 0, 254, 172, 207, 46, 210, 45, 0, 60, 0, 130, 0, 0, 102, 173, 207, 46, 58, 46, 0, 60, 0, 130, 0, 0, 102, 173, 207, 46, 141, 156, 0, 60, 0, 130, 0, 0, 57, 172, 207, 46, 210, 45, 0, 60, 0, 130, 0, 0, 57, 172, 207, 46, 190, 47, 0, 60, 0, 130, 0, 0, 161, 172, 207, 46, 19, 48, 0, 60, 0, 130, 0, 0, 161, 172, 207, 46, 58, 46, 0, 60, 0, 130, 0, 0, 190, 43, 207, 46, 210, 45, 0, 60, 0, 130, 0, 0, 190, 43, 207, 46, 240, 23, 0, 60, 0, 130, 0, 0, 71, 44, 207, 46, 141, 156, 0, 60, 0, 130, 0, 0, 71, 44, 207, 46, 58, 46, 0, 60, 0, 130, 0, 0, 173, 163, 207, 46, 190, 47, 0, 60, 0, 130, 0, 0, 173, 163, 207, 46, 210, 45, 0, 60, 0, 130, 0, 0, 104, 160, 207, 46, 58, 46, 0, 60, 0, 130, 0, 0, 104, 160, 207, 46, 19, 48, 0, 60, 0, 130, 0, 0), -"array_index_data": PackedByteArray(0, 0, 2, 0, 1, 0, 0, 0, 3, 0, 2, 0, 4, 0, 6, 0, 5, 0, 4, 0, 7, 0, 6, 0, 8, 0, 10, 0, 9, 0, 8, 0, 11, 0, 10, 0, 12, 0, 14, 0, 13, 0, 12, 0, 15, 0, 14, 0, 16, 0, 18, 0, 17, 0, 16, 0, 19, 0, 18, 0, 20, 0, 22, 0, 21, 0, 20, 0, 23, 0, 22, 0, 24, 0, 25, 0, 20, 0, 26, 0, 20, 0, 21, 0, 26, 0, 24, 0, 20, 0, 27, 0, 26, 0, 21, 0, 28, 0, 30, 0, 29, 0, 28, 0, 31, 0, 30, 0, 32, 0, 34, 0, 33, 0, 32, 0, 35, 0, 34, 0, 36, 0, 38, 0, 37, 0, 36, 0, 39, 0, 38, 0, 40, 0, 42, 0, 41, 0, 40, 0, 43, 0, 42, 0, 44, 0, 46, 0, 45, 0, 44, 0, 47, 0, 46, 0, 48, 0, 50, 0, 49, 0, 48, 0, 51, 0, 50, 0, 52, 0, 54, 0, 53, 0, 52, 0, 55, 0, 54, 0, 56, 0, 58, 0, 57, 0, 56, 0, 59, 0, 58, 0, 60, 0, 62, 0, 61, 0, 60, 0, 63, 0, 62, 0, 64, 0, 66, 0, 65, 0, 64, 0, 67, 0, 66, 0, 68, 0, 70, 0, 69, 0, 68, 0, 71, 0, 70, 0, 72, 0, 74, 0, 73, 0, 72, 0, 75, 0, 74, 0, 65, 0, 75, 0, 72, 0, 65, 0, 66, 0, 75, 0, 61, 0, 67, 0, 64, 0, 61, 0, 62, 0, 67, 0, 73, 0, 71, 0, 68, 0, 73, 0, 74, 0, 71, 0, 69, 0, 63, 0, 60, 0, 69, 0, 70, 0, 63, 0), -"blend_shape_data": [], -"format": 98051, +"format": 4099, "index_count": 144, -"material": ExtResource( 1 ), +"index_data": PackedByteArray(0, 0, 2, 0, 1, 0, 0, 0, 3, 0, 2, 0, 4, 0, 6, 0, 5, 0, 4, 0, 7, 0, 6, 0, 8, 0, 10, 0, 9, 0, 8, 0, 11, 0, 10, 0, 12, 0, 14, 0, 13, 0, 12, 0, 15, 0, 14, 0, 16, 0, 18, 0, 17, 0, 16, 0, 19, 0, 18, 0, 20, 0, 22, 0, 21, 0, 20, 0, 23, 0, 22, 0, 24, 0, 25, 0, 20, 0, 26, 0, 20, 0, 21, 0, 26, 0, 24, 0, 20, 0, 27, 0, 26, 0, 21, 0, 28, 0, 30, 0, 29, 0, 28, 0, 31, 0, 30, 0, 32, 0, 34, 0, 33, 0, 32, 0, 35, 0, 34, 0, 36, 0, 38, 0, 37, 0, 36, 0, 39, 0, 38, 0, 40, 0, 42, 0, 41, 0, 40, 0, 43, 0, 42, 0, 44, 0, 46, 0, 45, 0, 44, 0, 47, 0, 46, 0, 48, 0, 50, 0, 49, 0, 48, 0, 51, 0, 50, 0, 52, 0, 54, 0, 53, 0, 52, 0, 55, 0, 54, 0, 56, 0, 58, 0, 57, 0, 56, 0, 59, 0, 58, 0, 60, 0, 62, 0, 61, 0, 60, 0, 63, 0, 62, 0, 64, 0, 66, 0, 65, 0, 64, 0, 67, 0, 66, 0, 68, 0, 70, 0, 69, 0, 68, 0, 71, 0, 70, 0, 72, 0, 74, 0, 73, 0, 72, 0, 75, 0, 74, 0, 65, 0, 75, 0, 72, 0, 65, 0, 66, 0, 75, 0, 61, 0, 67, 0, 64, 0, 61, 0, 62, 0, 67, 0, 73, 0, 71, 0, 68, 0, 73, 0, 74, 0, 71, 0, 69, 0, 63, 0, 60, 0, 69, 0, 70, 0, 63, 0), +"material": ExtResource( "1" ), "name": "Material", -"primitive": 4, -"skeleton_aabb": [], -"vertex_count": 76 -} +"primitive": 3, +"vertex_count": 76, +"vertex_data": PackedByteArray(0, 64, 94, 59, 0, 128, 17, 62, 0, 192, 174, 61, 0, 248, 15, 0, 0, 64, 94, 59, 0, 128, 17, 62, 0, 0, 156, 61, 0, 248, 15, 0, 0, 0, 30, 188, 0, 128, 17, 62, 0, 0, 156, 61, 0, 248, 15, 0, 0, 0, 30, 188, 0, 128, 17, 62, 0, 192, 174, 61, 0, 248, 15, 0, 0, 0, 30, 188, 0, 128, 248, 61, 0, 0, 156, 61, 0, 0, 0, 0, 0, 0, 30, 188, 0, 32, 234, 61, 0, 192, 174, 61, 0, 0, 0, 0, 0, 0, 30, 188, 0, 128, 17, 62, 0, 192, 174, 61, 0, 0, 0, 0, 0, 0, 30, 188, 0, 128, 17, 62, 0, 0, 156, 61, 0, 0, 0, 0, 0, 64, 94, 59, 0, 128, 248, 61, 0, 0, 156, 61, 0, 0, 0, 0, 0, 0, 30, 188, 0, 128, 248, 61, 0, 0, 156, 61, 0, 0, 0, 0, 0, 0, 30, 188, 0, 128, 17, 62, 0, 0, 156, 61, 0, 0, 0, 0, 0, 64, 94, 59, 0, 128, 17, 62, 0, 0, 156, 61, 0, 0, 0, 0, 0, 64, 94, 59, 0, 32, 234, 61, 0, 192, 174, 61, 254, 3, 0, 0, 0, 64, 94, 59, 0, 128, 248, 61, 0, 0, 156, 61, 254, 3, 0, 0, 0, 64, 94, 59, 0, 128, 17, 62, 0, 0, 156, 61, 254, 3, 0, 0, 0, 64, 94, 59, 0, 128, 17, 62, 0, 192, 174, 61, 254, 3, 0, 0, 0, 0, 30, 188, 0, 32, 234, 61, 0, 192, 174, 61, 0, 0, 96, 63, 0, 64, 94, 59, 0, 32, 234, 61, 0, 192, 174, 61, 0, 0, 96, 63, 0, 64, 94, 59, 0, 128, 17, 62, 0, 192, 174, 61, 0, 0, 96, 63, 0, 0, 30, 188, 0, 128, 17, 62, 0, 192, 174, 61, 0, 0, 96, 63, 0, 0, 34, 189, 0, 160, 17, 62, 0, 128, 64, 61, 0, 248, 15, 0, 0, 160, 41, 189, 0, 160, 17, 62, 0, 128, 64, 61, 0, 248, 15, 0, 0, 160, 41, 189, 0, 160, 17, 62, 0, 128, 197, 61, 0, 248, 15, 0, 0, 0, 34, 189, 0, 160, 17, 62, 0, 128, 197, 61, 0, 248, 15, 0, 0, 32, 19, 61, 0, 160, 17, 62, 0, 160, 53, 61, 0, 248, 15, 0, 0, 32, 19, 61, 0, 160, 17, 62, 0, 128, 64, 61, 0, 248, 15, 0, 0, 224, 90, 189, 0, 160, 17, 62, 0, 160, 53, 61, 0, 248, 15, 0, 0, 224, 90, 189, 0, 160, 17, 62, 0, 128, 64, 61, 0, 248, 15, 0, 0, 224, 90, 189, 0, 160, 17, 62, 0, 128, 64, 61, 0, 112, 10, 0, 0, 224, 90, 189, 0, 160, 17, 62, 0, 160, 53, 61, 0, 112, 10, 0, 0, 192, 172, 189, 0, 224, 217, 61, 0, 160, 145, 187, 0, 112, 10, 0, 0, 192, 172, 189, 0, 224, 217, 61, 0, 64, 199, 61, 0, 112, 10, 0, 0, 160, 41, 189, 0, 160, 17, 62, 0, 128, 197, 61, 0, 112, 10, 0, 0, 160, 41, 189, 0, 160, 17, 62, 0, 128, 64, 61, 0, 112, 10, 0, 0, 32, 148, 189, 0, 224, 217, 61, 0, 64, 199, 61, 0, 112, 10, 0, 0, 32, 148, 189, 0, 224, 217, 61, 0, 96, 2, 62, 0, 112, 10, 0, 0, 32, 19, 61, 0, 160, 17, 62, 0, 160, 53, 61, 5, 115, 10, 0, 0, 32, 19, 61, 0, 160, 17, 62, 0, 128, 64, 61, 5, 115, 10, 0, 0, 224, 136, 61, 0, 224, 217, 61, 0, 64, 199, 61, 5, 115, 10, 0, 0, 224, 136, 61, 0, 224, 217, 61, 0, 160, 145, 187, 5, 115, 10, 0, 0, 0, 34, 189, 0, 160, 17, 62, 0, 128, 64, 61, 5, 115, 10, 0, 0, 0, 34, 189, 0, 160, 17, 62, 0, 128, 197, 61, 5, 115, 10, 0, 0, 0, 13, 188, 0, 224, 217, 61, 0, 96, 2, 62, 5, 115, 10, 0, 0, 0, 13, 188, 0, 224, 217, 61, 0, 64, 199, 61, 5, 115, 10, 0, 0, 0, 34, 189, 0, 160, 17, 62, 0, 128, 197, 61, 0, 112, 90, 48, 0, 160, 41, 189, 0, 160, 17, 62, 0, 128, 197, 61, 0, 112, 90, 48, 0, 32, 148, 189, 0, 224, 217, 61, 0, 96, 2, 62, 0, 112, 90, 48, 0, 0, 13, 188, 0, 224, 217, 61, 0, 96, 2, 62, 0, 112, 90, 48, 0, 160, 41, 189, 0, 160, 17, 62, 0, 128, 64, 61, 0, 244, 204, 36, 0, 224, 90, 189, 0, 160, 17, 62, 0, 128, 64, 61, 0, 244, 204, 36, 0, 192, 172, 189, 0, 224, 217, 61, 0, 64, 199, 61, 0, 244, 204, 36, 0, 32, 148, 189, 0, 224, 217, 61, 0, 64, 199, 61, 0, 244, 204, 36, 0, 32, 19, 61, 0, 160, 17, 62, 0, 128, 64, 61, 0, 244, 204, 36, 0, 0, 34, 189, 0, 160, 17, 62, 0, 128, 64, 61, 0, 244, 204, 36, 0, 0, 13, 188, 0, 224, 217, 61, 0, 64, 199, 61, 0, 244, 204, 36, 0, 224, 136, 61, 0, 224, 217, 61, 0, 64, 199, 61, 0, 244, 204, 36, 0, 224, 90, 189, 0, 160, 17, 62, 0, 160, 53, 61, 0, 212, 12, 0, 0, 32, 19, 61, 0, 160, 17, 62, 0, 160, 53, 61, 0, 212, 12, 0, 0, 224, 136, 61, 0, 224, 217, 61, 0, 160, 145, 187, 0, 212, 12, 0, 0, 192, 172, 189, 0, 224, 217, 61, 0, 160, 145, 187, 0, 212, 12, 0, 0, 192, 159, 189, 0, 224, 217, 61, 0, 0, 254, 58, 0, 0, 0, 0, 0, 192, 159, 189, 0, 224, 217, 61, 0, 64, 186, 61, 0, 0, 0, 0, 0, 192, 172, 189, 0, 224, 217, 61, 0, 64, 199, 61, 0, 0, 0, 0, 0, 192, 172, 189, 0, 224, 217, 61, 0, 160, 145, 187, 0, 0, 0, 0, 0, 32, 135, 189, 0, 224, 217, 61, 0, 64, 186, 61, 0, 0, 0, 0, 0, 32, 135, 189, 0, 224, 217, 61, 0, 192, 247, 61, 0, 0, 0, 0, 0, 32, 148, 189, 0, 224, 217, 61, 0, 96, 2, 62, 0, 0, 0, 0, 0, 32, 148, 189, 0, 224, 217, 61, 0, 64, 199, 61, 0, 0, 0, 0, 0, 192, 119, 61, 0, 224, 217, 61, 0, 64, 186, 61, 0, 0, 0, 0, 0, 192, 119, 61, 0, 224, 217, 61, 0, 0, 254, 58, 0, 0, 0, 0, 0, 224, 136, 61, 0, 224, 217, 61, 0, 160, 145, 187, 0, 0, 0, 0, 0, 224, 136, 61, 0, 224, 217, 61, 0, 64, 199, 61, 0, 0, 0, 0, 0, 160, 117, 188, 0, 224, 217, 61, 0, 192, 247, 61, 0, 0, 0, 0, 0, 160, 117, 188, 0, 224, 217, 61, 0, 64, 186, 61, 0, 0, 0, 0, 0, 0, 13, 188, 0, 224, 217, 61, 0, 64, 199, 61, 0, 0, 0, 0, 0, 0, 13, 188, 0, 224, 217, 61, 0, 96, 2, 62, 0, 0, 0, 0) +}] -[sub_resource type="ArrayMesh" id=9] +[sub_resource type="ArrayMesh" id="9"] resource_name = "Plane.009" -surfaces/0 = { +_surfaces = [{ "aabb": AABB(-0.176551, 0.0630034, -0.0164296, 0.243426, 0.0248694, 0.0833038), -"array_data": PackedByteArray(161, 176, 159, 45, 48, 40, 0, 60, 0, 127, 0, 0, 125, 40, 159, 45, 48, 40, 0, 60, 0, 127, 0, 0, 52, 40, 159, 45, 154, 39, 0, 60, 0, 127, 0, 0, 161, 176, 159, 45, 154, 39, 0, 60, 0, 127, 0, 0, 125, 40, 159, 45, 220, 35, 0, 60, 0, 127, 0, 0, 52, 40, 159, 45, 220, 35, 0, 60, 0, 127, 0, 0, 161, 176, 159, 45, 48, 40, 0, 60, 178, 100, 0, 0, 161, 176, 159, 45, 154, 39, 0, 60, 178, 100, 0, 0, 166, 177, 8, 44, 141, 156, 0, 60, 178, 100, 0, 0, 166, 177, 8, 44, 71, 44, 0, 60, 178, 100, 0, 0, 161, 176, 159, 45, 154, 39, 0, 60, 0, 102, 182, 0, 52, 40, 159, 45, 154, 39, 0, 60, 0, 102, 182, 0, 82, 20, 8, 44, 141, 156, 0, 60, 0, 102, 182, 0, 166, 177, 8, 44, 141, 156, 0, 60, 0, 102, 182, 0, 52, 40, 159, 45, 220, 35, 0, 60, 0, 100, 178, 0, 125, 40, 159, 45, 220, 35, 0, 60, 0, 100, 178, 0, 71, 44, 8, 44, 52, 164, 0, 60, 0, 100, 178, 0, 82, 20, 8, 44, 52, 164, 0, 60, 0, 100, 178, 0, 52, 40, 159, 45, 154, 39, 0, 60, 178, 100, 0, 0, 52, 40, 159, 45, 220, 35, 0, 60, 178, 100, 0, 0, 82, 20, 8, 44, 52, 164, 0, 60, 178, 100, 0, 0, 82, 20, 8, 44, 141, 156, 0, 60, 178, 100, 0, 0, 125, 40, 159, 45, 220, 35, 0, 60, 78, 100, 0, 0, 125, 40, 159, 45, 48, 40, 0, 60, 78, 100, 0, 0, 71, 44, 8, 44, 71, 44, 0, 60, 78, 100, 0, 0, 71, 44, 8, 44, 52, 164, 0, 60, 78, 100, 0, 0, 125, 40, 159, 45, 48, 40, 0, 60, 0, 102, 74, 0, 161, 176, 159, 45, 48, 40, 0, 60, 0, 102, 74, 0, 166, 177, 8, 44, 71, 44, 0, 60, 0, 102, 74, 0, 71, 44, 8, 44, 71, 44, 0, 60, 0, 102, 74, 0), -"array_index_data": PackedByteArray(0, 0, 2, 0, 1, 0, 0, 0, 3, 0, 2, 0, 2, 0, 4, 0, 1, 0, 2, 0, 5, 0, 4, 0, 6, 0, 8, 0, 7, 0, 6, 0, 9, 0, 8, 0, 10, 0, 12, 0, 11, 0, 10, 0, 13, 0, 12, 0, 14, 0, 16, 0, 15, 0, 14, 0, 17, 0, 16, 0, 18, 0, 20, 0, 19, 0, 18, 0, 21, 0, 20, 0, 22, 0, 24, 0, 23, 0, 22, 0, 25, 0, 24, 0, 26, 0, 28, 0, 27, 0, 26, 0, 29, 0, 28, 0), -"blend_shape_data": [], -"format": 98051, +"format": 4099, "index_count": 48, -"material": ExtResource( 1 ), +"index_data": PackedByteArray(0, 0, 2, 0, 1, 0, 0, 0, 3, 0, 2, 0, 2, 0, 4, 0, 1, 0, 2, 0, 5, 0, 4, 0, 6, 0, 8, 0, 7, 0, 6, 0, 9, 0, 8, 0, 10, 0, 12, 0, 11, 0, 10, 0, 13, 0, 12, 0, 14, 0, 16, 0, 15, 0, 14, 0, 17, 0, 16, 0, 18, 0, 20, 0, 19, 0, 18, 0, 21, 0, 20, 0, 22, 0, 24, 0, 23, 0, 22, 0, 25, 0, 24, 0, 26, 0, 28, 0, 27, 0, 26, 0, 29, 0, 28, 0), +"material": ExtResource( "1" ), "name": "Material", -"primitive": 4, -"skeleton_aabb": [], -"vertex_count": 30 -} +"primitive": 3, +"vertex_count": 30, +"vertex_data": PackedByteArray(0, 32, 20, 190, 0, 224, 179, 61, 0, 0, 6, 61, 0, 248, 15, 0, 0, 160, 15, 61, 0, 224, 179, 61, 0, 0, 6, 61, 0, 248, 15, 0, 0, 128, 6, 61, 0, 224, 179, 61, 0, 64, 243, 60, 0, 248, 15, 0, 0, 32, 20, 190, 0, 224, 179, 61, 0, 64, 243, 60, 0, 248, 15, 0, 0, 160, 15, 61, 0, 224, 179, 61, 0, 128, 123, 60, 0, 248, 15, 0, 0, 128, 6, 61, 0, 224, 179, 61, 0, 128, 123, 60, 0, 248, 15, 0, 0, 32, 20, 190, 0, 224, 179, 61, 0, 0, 6, 61, 0, 148, 12, 0, 0, 32, 20, 190, 0, 224, 179, 61, 0, 64, 243, 60, 0, 148, 12, 0, 0, 192, 52, 190, 0, 0, 129, 61, 0, 160, 145, 187, 0, 148, 12, 0, 0, 192, 52, 190, 0, 0, 129, 61, 0, 224, 136, 61, 0, 148, 12, 0, 0, 32, 20, 190, 0, 224, 179, 61, 0, 64, 243, 60, 0, 212, 12, 0, 0, 128, 6, 61, 0, 224, 179, 61, 0, 64, 243, 60, 0, 212, 12, 0, 0, 64, 138, 58, 0, 0, 129, 61, 0, 160, 145, 187, 0, 212, 12, 0, 0, 192, 52, 190, 0, 0, 129, 61, 0, 160, 145, 187, 0, 212, 12, 0, 0, 128, 6, 61, 0, 224, 179, 61, 0, 128, 123, 60, 0, 148, 12, 0, 0, 160, 15, 61, 0, 224, 179, 61, 0, 128, 123, 60, 0, 148, 12, 0, 0, 224, 136, 61, 0, 0, 129, 61, 0, 128, 134, 188, 0, 148, 12, 0, 0, 64, 138, 58, 0, 0, 129, 61, 0, 128, 134, 188, 0, 148, 12, 0, 0, 128, 6, 61, 0, 224, 179, 61, 0, 64, 243, 60, 0, 148, 12, 0, 0, 128, 6, 61, 0, 224, 179, 61, 0, 128, 123, 60, 0, 148, 12, 0, 0, 64, 138, 58, 0, 0, 129, 61, 0, 128, 134, 188, 0, 148, 12, 0, 0, 64, 138, 58, 0, 0, 129, 61, 0, 160, 145, 187, 0, 148, 12, 0, 0, 160, 15, 61, 0, 224, 179, 61, 0, 128, 123, 60, 116, 150, 12, 0, 0, 160, 15, 61, 0, 224, 179, 61, 0, 0, 6, 61, 116, 150, 12, 0, 0, 224, 136, 61, 0, 0, 129, 61, 0, 224, 136, 61, 116, 150, 12, 0, 0, 224, 136, 61, 0, 0, 129, 61, 0, 128, 134, 188, 116, 150, 12, 0, 0, 160, 15, 61, 0, 224, 179, 61, 0, 0, 6, 61, 0, 212, 76, 37, 0, 32, 20, 190, 0, 224, 179, 61, 0, 0, 6, 61, 0, 212, 76, 37, 0, 192, 52, 190, 0, 0, 129, 61, 0, 224, 136, 61, 0, 212, 76, 37, 0, 224, 136, 61, 0, 0, 129, 61, 0, 224, 136, 61, 0, 212, 76, 37) +}] -[sub_resource type="ArrayMesh" id=10] +[sub_resource type="ArrayMesh" id="10"] resource_name = "Plane.008" -surfaces/0 = { +_surfaces = [{ "aabb": AABB(-0.084406, 0.0630034, -0.00444621, 0.15128, 0.03584, 0.131846), -"array_data": PackedByteArray(153, 40, 83, 46, 173, 41, 0, 60, 0, 127, 0, 0, 16, 169, 83, 46, 4, 42, 0, 60, 0, 127, 0, 0, 153, 40, 83, 46, 4, 42, 0, 60, 0, 127, 0, 0, 215, 170, 83, 46, 173, 41, 0, 60, 0, 127, 0, 0, 77, 169, 83, 46, 4, 42, 0, 60, 0, 127, 0, 0, 215, 170, 83, 46, 4, 42, 0, 60, 0, 127, 0, 0, 215, 170, 83, 46, 4, 42, 0, 60, 160, 83, 0, 0, 215, 170, 83, 46, 173, 41, 0, 60, 160, 83, 0, 0, 102, 173, 8, 44, 141, 156, 0, 60, 160, 83, 0, 0, 102, 173, 8, 44, 58, 46, 0, 60, 160, 83, 0, 0, 77, 169, 83, 46, 44, 46, 0, 60, 160, 83, 0, 0, 77, 169, 83, 46, 4, 42, 0, 60, 160, 83, 0, 0, 161, 172, 8, 44, 58, 46, 0, 60, 160, 83, 0, 0, 161, 172, 8, 44, 19, 48, 0, 60, 160, 83, 0, 0, 71, 44, 8, 44, 58, 46, 0, 60, 96, 83, 0, 0, 71, 44, 8, 44, 141, 156, 0, 60, 96, 83, 0, 0, 153, 40, 83, 46, 173, 41, 0, 60, 96, 83, 0, 0, 153, 40, 83, 46, 4, 42, 0, 60, 96, 83, 0, 0, 16, 169, 83, 46, 4, 42, 0, 60, 96, 83, 0, 0, 16, 169, 83, 46, 44, 46, 0, 60, 96, 83, 0, 0, 104, 160, 8, 44, 19, 48, 0, 60, 96, 83, 0, 0, 104, 160, 8, 44, 58, 46, 0, 60, 96, 83, 0, 0, 16, 169, 83, 46, 44, 46, 0, 60, 0, 83, 96, 0, 77, 169, 83, 46, 44, 46, 0, 60, 0, 83, 96, 0, 161, 172, 8, 44, 19, 48, 0, 60, 0, 83, 96, 0, 104, 160, 8, 44, 19, 48, 0, 60, 0, 83, 96, 0, 77, 169, 83, 46, 4, 42, 0, 60, 0, 103, 73, 0, 215, 170, 83, 46, 4, 42, 0, 60, 0, 103, 73, 0, 102, 173, 8, 44, 58, 46, 0, 60, 0, 103, 73, 0, 161, 172, 8, 44, 58, 46, 0, 60, 0, 103, 73, 0, 104, 160, 8, 44, 58, 46, 0, 60, 0, 103, 73, 0, 71, 44, 8, 44, 58, 46, 0, 60, 0, 103, 73, 0, 153, 40, 83, 46, 4, 42, 0, 60, 0, 103, 73, 0, 16, 169, 83, 46, 4, 42, 0, 60, 0, 103, 73, 0, 215, 170, 83, 46, 173, 41, 0, 60, 0, 102, 181, 0, 153, 40, 83, 46, 173, 41, 0, 60, 0, 102, 181, 0, 71, 44, 8, 44, 141, 156, 0, 60, 0, 102, 181, 0, 102, 173, 8, 44, 141, 156, 0, 60, 0, 102, 181, 0), -"array_index_data": PackedByteArray(0, 0, 2, 0, 1, 0, 3, 0, 1, 0, 4, 0, 3, 0, 0, 0, 1, 0, 5, 0, 3, 0, 4, 0, 6, 0, 8, 0, 7, 0, 6, 0, 9, 0, 8, 0, 10, 0, 12, 0, 11, 0, 10, 0, 13, 0, 12, 0, 14, 0, 16, 0, 15, 0, 14, 0, 17, 0, 16, 0, 18, 0, 20, 0, 19, 0, 18, 0, 21, 0, 20, 0, 22, 0, 24, 0, 23, 0, 22, 0, 25, 0, 24, 0, 26, 0, 28, 0, 27, 0, 26, 0, 29, 0, 28, 0, 30, 0, 32, 0, 31, 0, 30, 0, 33, 0, 32, 0, 34, 0, 36, 0, 35, 0, 34, 0, 37, 0, 36, 0), -"blend_shape_data": [], -"format": 98051, +"format": 4099, "index_count": 60, -"material": ExtResource( 2 ), +"index_data": PackedByteArray(0, 0, 2, 0, 1, 0, 3, 0, 1, 0, 4, 0, 3, 0, 0, 0, 1, 0, 5, 0, 3, 0, 4, 0, 6, 0, 8, 0, 7, 0, 6, 0, 9, 0, 8, 0, 10, 0, 12, 0, 11, 0, 10, 0, 13, 0, 12, 0, 14, 0, 16, 0, 15, 0, 14, 0, 17, 0, 16, 0, 18, 0, 20, 0, 19, 0, 18, 0, 21, 0, 20, 0, 22, 0, 24, 0, 23, 0, 22, 0, 25, 0, 24, 0, 26, 0, 28, 0, 27, 0, 26, 0, 29, 0, 28, 0, 30, 0, 32, 0, 31, 0, 30, 0, 33, 0, 32, 0, 34, 0, 36, 0, 35, 0, 34, 0, 37, 0, 36, 0), +"material": ExtResource( "2" ), "name": "vertexColorBIBase", -"primitive": 4, -"skeleton_aabb": [], -"vertex_count": 38 -} +"primitive": 3, +"vertex_count": 38, +"vertex_data": PackedByteArray(0, 32, 19, 61, 0, 96, 202, 61, 0, 160, 53, 61, 0, 248, 15, 0, 0, 0, 34, 189, 0, 96, 202, 61, 0, 128, 64, 61, 0, 248, 15, 0, 0, 32, 19, 61, 0, 96, 202, 61, 0, 128, 64, 61, 0, 248, 15, 0, 0, 224, 90, 189, 0, 96, 202, 61, 0, 160, 53, 61, 0, 248, 15, 0, 0, 160, 41, 189, 0, 96, 202, 61, 0, 128, 64, 61, 0, 248, 15, 0, 0, 224, 90, 189, 0, 96, 202, 61, 0, 128, 64, 61, 0, 248, 15, 0, 0, 224, 90, 189, 0, 96, 202, 61, 0, 128, 64, 61, 0, 112, 10, 0, 0, 224, 90, 189, 0, 96, 202, 61, 0, 160, 53, 61, 0, 112, 10, 0, 0, 192, 172, 189, 0, 0, 129, 61, 0, 160, 145, 187, 0, 112, 10, 0, 0, 192, 172, 189, 0, 0, 129, 61, 0, 64, 199, 61, 0, 112, 10, 0, 0, 160, 41, 189, 0, 96, 202, 61, 0, 128, 197, 61, 0, 112, 10, 0, 0, 160, 41, 189, 0, 96, 202, 61, 0, 128, 64, 61, 0, 112, 10, 0, 0, 32, 148, 189, 0, 0, 129, 61, 0, 64, 199, 61, 0, 112, 10, 0, 0, 32, 148, 189, 0, 0, 129, 61, 0, 96, 2, 62, 0, 112, 10, 0, 0, 224, 136, 61, 0, 0, 129, 61, 0, 64, 199, 61, 5, 115, 10, 0, 0, 224, 136, 61, 0, 0, 129, 61, 0, 160, 145, 187, 5, 115, 10, 0, 0, 32, 19, 61, 0, 96, 202, 61, 0, 160, 53, 61, 5, 115, 10, 0, 0, 32, 19, 61, 0, 96, 202, 61, 0, 128, 64, 61, 5, 115, 10, 0, 0, 0, 34, 189, 0, 96, 202, 61, 0, 128, 64, 61, 5, 115, 10, 0, 0, 0, 34, 189, 0, 96, 202, 61, 0, 128, 197, 61, 5, 115, 10, 0, 0, 0, 13, 188, 0, 0, 129, 61, 0, 96, 2, 62, 5, 115, 10, 0, 0, 0, 13, 188, 0, 0, 129, 61, 0, 64, 199, 61, 5, 115, 10, 0, 0, 0, 34, 189, 0, 96, 202, 61, 0, 128, 197, 61, 0, 112, 90, 48, 0, 160, 41, 189, 0, 96, 202, 61, 0, 128, 197, 61, 0, 112, 90, 48, 0, 32, 148, 189, 0, 0, 129, 61, 0, 96, 2, 62, 0, 112, 90, 48, 0, 0, 13, 188, 0, 0, 129, 61, 0, 96, 2, 62, 0, 112, 90, 48, 0, 160, 41, 189, 0, 96, 202, 61, 0, 128, 64, 61, 0, 244, 204, 36, 0, 224, 90, 189, 0, 96, 202, 61, 0, 128, 64, 61, 0, 244, 204, 36, 0, 192, 172, 189, 0, 0, 129, 61, 0, 64, 199, 61, 0, 244, 204, 36, 0, 32, 148, 189, 0, 0, 129, 61, 0, 64, 199, 61, 0, 244, 204, 36, 0, 0, 13, 188, 0, 0, 129, 61, 0, 64, 199, 61, 0, 244, 204, 36, 0, 224, 136, 61, 0, 0, 129, 61, 0, 64, 199, 61, 0, 244, 204, 36, 0, 32, 19, 61, 0, 96, 202, 61, 0, 128, 64, 61, 0, 244, 204, 36, 0, 0, 34, 189, 0, 96, 202, 61, 0, 128, 64, 61, 0, 244, 204, 36, 0, 224, 90, 189, 0, 96, 202, 61, 0, 160, 53, 61, 0, 212, 12, 0, 0, 32, 19, 61, 0, 96, 202, 61, 0, 160, 53, 61, 0, 212, 12, 0, 0, 224, 136, 61, 0, 0, 129, 61, 0, 160, 145, 187, 0, 212, 12, 0, 0, 192, 172, 189, 0, 0, 129, 61, 0, 160, 145, 187, 0, 212, 12, 0) +}] -[sub_resource type="ArrayMesh" id=11] +[sub_resource type="ArrayMesh" id="11"] resource_name = "Cube.001" -[sub_resource type="ArrayMesh" id=12] +[sub_resource type="ArrayMesh" id="12"] resource_name = "Plane.003" -surfaces/0 = { +_surfaces = [{ "aabb": AABB(-23.4864, -1.39063, -17.2952, 29.7602, 3.83163, 20.1453), -"array_data": PackedByteArray(0, 188, 67, 57, 174, 197, 0, 60, 0, 133, 226, 0, 152, 7, 111, 59, 0, 188, 191, 59, 242, 198, 0, 60, 0, 135, 221, 0, 169, 52, 101, 59, 0, 60, 191, 59, 242, 198, 0, 60, 0, 135, 221, 0, 176, 52, 179, 55, 0, 60, 67, 57, 174, 197, 0, 60, 0, 133, 226, 0, 148, 7, 162, 55, 0, 188, 1, 61, 206, 199, 0, 60, 0, 136, 217, 0, 235, 55, 109, 59, 0, 60, 1, 61, 206, 199, 0, 60, 0, 136, 217, 0, 236, 55, 164, 55, 100, 197, 220, 60, 171, 197, 0, 60, 0, 132, 235, 0, 158, 7, 122, 53, 100, 197, 107, 61, 119, 198, 0, 60, 0, 130, 245, 0, 127, 50, 184, 53, 21, 196, 107, 61, 119, 198, 0, 60, 0, 130, 245, 0, 66, 50, 113, 42, 21, 196, 220, 60, 171, 197, 0, 60, 0, 132, 235, 0, 148, 7, 75, 44, 100, 197, 110, 61, 10, 199, 0, 60, 0, 130, 4, 0, 239, 52, 182, 53, 21, 196, 110, 61, 10, 199, 0, 60, 0, 130, 4, 0, 206, 52, 66, 42, 100, 197, 74, 61, 115, 199, 0, 60, 0, 130, 13, 0, 120, 54, 179, 53, 21, 196, 74, 61, 115, 199, 0, 60, 0, 130, 13, 0, 86, 54, 14, 42, 100, 197, 233, 60, 18, 200, 0, 60, 0, 131, 15, 0, 195, 56, 153, 53, 21, 196, 233, 60, 18, 200, 0, 60, 0, 131, 15, 0, 182, 56, 140, 42, 100, 197, 162, 60, 98, 200, 0, 60, 0, 130, 13, 0, 255, 57, 100, 53, 21, 196, 162, 60, 98, 200, 0, 60, 0, 130, 13, 0, 255, 57, 7, 44, 0, 188, 0, 0, 0, 60, 0, 60, 0, 124, 25, 0, 18, 65, 58, 64, 0, 60, 0, 0, 0, 60, 0, 60, 0, 124, 25, 0, 220, 65, 221, 63, 0, 60, 240, 158, 40, 186, 0, 60, 0, 126, 10, 0, 153, 65, 120, 62, 0, 188, 240, 158, 40, 186, 0, 60, 0, 126, 10, 0, 207, 64, 17, 63, 0, 60, 52, 45, 42, 189, 0, 60, 0, 123, 29, 0, 132, 65, 13, 62, 0, 188, 52, 45, 42, 189, 0, 60, 0, 123, 29, 0, 187, 64, 166, 62, 0, 60, 169, 52, 203, 191, 0, 60, 0, 119, 43, 0, 106, 65, 130, 61, 0, 188, 169, 52, 203, 191, 0, 60, 0, 119, 43, 0, 160, 64, 27, 62, 0, 60, 205, 57, 245, 193, 0, 60, 0, 119, 43, 0, 63, 65, 161, 60, 0, 188, 205, 57, 245, 193, 0, 60, 0, 119, 43, 0, 118, 64, 57, 61, 29, 61, 109, 59, 61, 195, 0, 60, 254, 126, 8, 0, 66, 65, 4, 60, 29, 189, 109, 59, 61, 195, 0, 60, 0, 126, 11, 0, 64, 64, 199, 60, 29, 61, 109, 59, 67, 197, 0, 60, 254, 126, 2, 0, 3, 65, 113, 57, 29, 189, 109, 59, 67, 197, 0, 60, 0, 126, 3, 0, 1, 64, 247, 58, 0, 60, 213, 59, 174, 197, 0, 60, 0, 125, 21, 0, 215, 64, 242, 56, 0, 188, 213, 59, 174, 197, 0, 60, 0, 125, 21, 0, 13, 64, 35, 58, 0, 188, 74, 62, 206, 199, 0, 60, 0, 121, 37, 0, 115, 63, 83, 53, 0, 60, 74, 62, 206, 199, 0, 60, 0, 121, 37, 0, 131, 64, 227, 49, 184, 60, 189, 62, 25, 200, 0, 60, 0, 126, 10, 0, 134, 64, 200, 45, 184, 188, 189, 62, 25, 200, 0, 60, 0, 126, 14, 0, 48, 63, 65, 52, 184, 60, 189, 62, 2, 201, 0, 60, 0, 127, 0, 0, 64, 64, 74, 180, 184, 188, 189, 62, 2, 201, 0, 60, 0, 127, 0, 0, 165, 62, 233, 173, 152, 62, 189, 62, 52, 200, 0, 60, 250, 126, 251, 0, 173, 64, 193, 34, 152, 62, 189, 62, 230, 200, 0, 60, 253, 126, 253, 0, 120, 64, 43, 180, 32, 66, 3, 64, 53, 200, 0, 60, 244, 124, 236, 0, 64, 65, 181, 173, 180, 65, 189, 62, 229, 200, 0, 60, 249, 126, 245, 0, 242, 64, 148, 181, 60, 68, 3, 64, 110, 200, 0, 60, 242, 123, 231, 0, 164, 65, 65, 180, 53, 67, 189, 62, 13, 201, 0, 60, 249, 125, 243, 0, 49, 65, 118, 183, 84, 69, 3, 64, 224, 200, 0, 60, 235, 123, 237, 0, 240, 65, 44, 184, 51, 68, 189, 62, 72, 201, 0, 60, 245, 125, 245, 0, 92, 65, 206, 184, 1, 70, 3, 64, 106, 201, 0, 60, 239, 123, 234, 0, 12, 66, 69, 186, 162, 68, 189, 62, 135, 201, 0, 60, 245, 125, 244, 0, 117, 65, 215, 185, 40, 70, 189, 62, 221, 201, 0, 60, 251, 126, 243, 0, 245, 65, 217, 187, 196, 68, 189, 62, 221, 201, 0, 60, 253, 126, 249, 0, 105, 65, 252, 186, 40, 70, 189, 62, 112, 202, 0, 60, 0, 127, 0, 0, 200, 65, 210, 188, 196, 68, 189, 62, 113, 202, 0, 60, 0, 127, 0, 0, 60, 65, 103, 188, 171, 190, 109, 59, 28, 197, 0, 60, 0, 127, 0, 0, 193, 63, 113, 59, 171, 190, 109, 59, 140, 195, 0, 60, 0, 127, 0, 0, 19, 64, 197, 60, 95, 193, 109, 59, 28, 197, 0, 60, 8, 126, 0, 0, 243, 62, 6, 60, 95, 193, 109, 59, 140, 195, 0, 60, 8, 126, 0, 0, 89, 63, 19, 61, 27, 194, 213, 59, 28, 197, 0, 60, 40, 120, 0, 0, 168, 62, 34, 60, 27, 194, 213, 59, 140, 195, 0, 60, 40, 120, 0, 0, 14, 63, 48, 61, 52, 195, 41, 61, 28, 197, 0, 60, 42, 119, 0, 0, 41, 62, 82, 60, 52, 195, 41, 61, 140, 195, 0, 60, 42, 119, 0, 0, 143, 62, 96, 61, 250, 195, 116, 61, 45, 197, 0, 60, 8, 126, 0, 0, 212, 61, 99, 60, 250, 195, 116, 61, 99, 195, 0, 60, 6, 126, 0, 0, 70, 62, 142, 61, 125, 197, 116, 61, 45, 197, 0, 60, 0, 127, 0, 0, 160, 60, 215, 60, 125, 197, 116, 61, 99, 195, 0, 60, 0, 127, 0, 0, 23, 61, 1, 62, 21, 196, 116, 61, 84, 197, 0, 60, 0, 126, 10, 0, 180, 61, 75, 60, 100, 197, 116, 61, 84, 197, 0, 60, 0, 126, 10, 0, 169, 60, 176, 60, 21, 196, 188, 61, 171, 197, 0, 60, 0, 124, 23, 0, 153, 61, 3, 60, 100, 197, 188, 61, 171, 197, 0, 60, 0, 124, 23, 0, 144, 60, 105, 60, 100, 197, 130, 61, 98, 200, 0, 60, 0, 122, 223, 0, 137, 58, 98, 56, 21, 196, 130, 61, 98, 200, 0, 60, 0, 122, 223, 0, 37, 60, 16, 54, 21, 196, 137, 60, 167, 200, 0, 60, 0, 120, 216, 0, 177, 59, 142, 52, 100, 197, 137, 60, 167, 200, 0, 60, 0, 120, 216, 0, 211, 57, 48, 55, 241, 195, 73, 60, 198, 200, 0, 60, 250, 126, 245, 0, 154, 59, 80, 51, 129, 197, 73, 60, 198, 200, 0, 60, 0, 126, 247, 0, 115, 57, 174, 54, 241, 195, 73, 60, 106, 201, 0, 60, 233, 124, 2, 0, 105, 58, 3, 37, 129, 197, 73, 60, 106, 201, 0, 60, 0, 127, 0, 0, 104, 56, 89, 50, 173, 197, 73, 60, 92, 201, 0, 60, 4, 126, 0, 0, 68, 56, 135, 51, 173, 197, 73, 60, 213, 200, 0, 60, 4, 126, 0, 0, 31, 57, 163, 54, 39, 198, 116, 60, 94, 201, 0, 60, 28, 123, 1, 0, 67, 55, 119, 52, 61, 198, 116, 60, 216, 200, 0, 60, 28, 123, 2, 0, 80, 56, 113, 55, 99, 198, 210, 60, 97, 201, 0, 60, 54, 114, 4, 0, 143, 54, 202, 52, 121, 198, 210, 60, 218, 200, 0, 60, 54, 114, 4, 0, 232, 55, 199, 55, 173, 198, 125, 61, 100, 201, 0, 60, 50, 116, 4, 0, 161, 53, 52, 53, 195, 198, 125, 61, 221, 200, 0, 60, 48, 117, 4, 0, 239, 54, 29, 56, 255, 198, 241, 61, 105, 201, 0, 60, 21, 125, 2, 0, 172, 52, 143, 53, 55, 199, 241, 61, 192, 200, 0, 60, 18, 125, 2, 0, 243, 53, 201, 56, 67, 199, 4, 62, 122, 201, 0, 60, 2, 127, 0, 0, 168, 51, 142, 53, 132, 199, 4, 62, 189, 200, 0, 60, 3, 127, 0, 0, 32, 53, 10, 57, 65, 200, 4, 62, 217, 200, 0, 60, 0, 127, 0, 0, 213, 47, 58, 57, 162, 200, 4, 62, 177, 201, 0, 60, 0, 127, 0, 0, 43, 175, 200, 54, 195, 200, 4, 62, 245, 200, 0, 60, 0, 127, 0, 0, 230, 171, 106, 57, 77, 199, 4, 62, 149, 201, 0, 60, 2, 126, 244, 0, 239, 50, 13, 53, 146, 200, 4, 62, 200, 201, 0, 60, 2, 126, 244, 0, 176, 174, 47, 54, 64, 199, 202, 61, 180, 201, 0, 60, 8, 120, 216, 0, 159, 50, 94, 52, 139, 200, 202, 61, 230, 201, 0, 60, 8, 120, 216, 0, 72, 175, 130, 53, 47, 199, 53, 61, 219, 201, 0, 60, 14, 106, 189, 0, 43, 50, 208, 50, 131, 200, 53, 61, 14, 202, 0, 60, 14, 106, 189, 0, 2, 176, 149, 52, 36, 199, 121, 60, 246, 201, 0, 60, 14, 107, 190, 0, 205, 49, 72, 49, 125, 200, 121, 60, 40, 202, 0, 60, 14, 107, 190, 0, 84, 176, 173, 51, 26, 199, 44, 60, 12, 202, 0, 60, 6, 122, 225, 0, 140, 49, 60, 48, 121, 200, 44, 60, 62, 202, 0, 60, 6, 122, 225, 0, 138, 176, 174, 50, 9, 199, 10, 60, 52, 202, 0, 60, 1, 126, 250, 0, 26, 49, 239, 44, 112, 200, 10, 60, 102, 202, 0, 60, 1, 126, 250, 0, 2, 177, 254, 48, 209, 198, 10, 60, 184, 202, 0, 60, 0, 127, 0, 0, 213, 46, 220, 174, 87, 200, 10, 60, 217, 202, 0, 60, 0, 127, 0, 0, 155, 178, 47, 146, 196, 198, 10, 60, 3, 203, 0, 60, 0, 124, 230, 0, 89, 44, 111, 178, 83, 200, 10, 60, 2, 203, 0, 60, 0, 124, 232, 0, 77, 179, 157, 170, 196, 198, 130, 58, 63, 203, 0, 60, 0, 120, 216, 0, 35, 39, 121, 180, 83, 200, 130, 58, 61, 203, 0, 60, 0, 120, 216, 0, 66, 180, 48, 176, 196, 198, 127, 57, 126, 203, 0, 60, 0, 126, 242, 0, 73, 162, 189, 181, 83, 200, 127, 57, 124, 203, 0, 60, 0, 126, 242, 0, 232, 180, 184, 178, 176, 198, 127, 57, 162, 203, 0, 60, 0, 127, 0, 0, 161, 165, 135, 182, 93, 200, 127, 57, 160, 203, 0, 60, 0, 127, 0, 0, 122, 181, 231, 179, 176, 198, 127, 57, 78, 204, 0, 60, 0, 127, 0, 0, 22, 177, 172, 185, 93, 200, 127, 57, 78, 204, 0, 60, 0, 127, 0, 0, 132, 183, 134, 184, 114, 200, 127, 57, 71, 204, 0, 60, 246, 126, 0, 0, 216, 183, 80, 184, 114, 200, 127, 57, 172, 203, 0, 60, 245, 126, 0, 0, 1, 182, 254, 179, 159, 200, 211, 56, 66, 204, 0, 60, 216, 120, 0, 0, 84, 184, 12, 184, 160, 200, 244, 56, 172, 203, 0, 60, 216, 120, 0, 0, 248, 182, 50, 179, 194, 200, 178, 55, 71, 204, 0, 60, 189, 107, 0, 0, 193, 184, 253, 183, 194, 200, 184, 55, 172, 203, 0, 60, 191, 108, 0, 0, 198, 183, 179, 178, 224, 200, 191, 52, 82, 204, 0, 60, 196, 111, 0, 0, 59, 185, 23, 184, 237, 200, 243, 51, 172, 203, 0, 60, 196, 111, 0, 0, 111, 184, 32, 178, 34, 201, 233, 45, 71, 204, 0, 60, 227, 123, 0, 0, 226, 185, 52, 183, 34, 201, 233, 45, 172, 203, 0, 60, 229, 124, 0, 0, 3, 185, 78, 177, 187, 197, 116, 61, 7, 197, 0, 60, 249, 126, 0, 0, 120, 60, 9, 61, 187, 197, 116, 61, 174, 195, 0, 60, 249, 126, 0, 0, 219, 60, 247, 61, 1, 198, 74, 61, 7, 197, 0, 60, 214, 119, 0, 0, 58, 60, 33, 61, 1, 198, 74, 61, 174, 195, 0, 60, 214, 119, 0, 0, 165, 60, 13, 62, 78, 198, 147, 60, 7, 197, 0, 60, 193, 109, 0, 0, 240, 59, 72, 61, 78, 198, 147, 60, 174, 195, 0, 60, 193, 109, 0, 0, 102, 60, 40, 62, 197, 198, 18, 59, 7, 197, 0, 60, 202, 114, 0, 0, 44, 59, 131, 61, 197, 198, 18, 59, 174, 195, 0, 60, 202, 114, 0, 0, 9, 60, 85, 62, 91, 199, 63, 57, 7, 197, 0, 60, 217, 120, 0, 0, 92, 58, 200, 61, 91, 199, 63, 57, 174, 195, 0, 60, 217, 120, 0, 0, 70, 59, 141, 62, 26, 200, 219, 54, 7, 197, 0, 60, 225, 122, 0, 0, 68, 57, 37, 62, 26, 200, 219, 54, 174, 195, 0, 60, 225, 122, 0, 0, 48, 58, 225, 62, 138, 200, 176, 50, 7, 197, 0, 60, 230, 124, 0, 0, 46, 56, 129, 62, 138, 200, 176, 50, 174, 195, 0, 60, 230, 124, 0, 0, 24, 57, 58, 63, 10, 201, 232, 40, 7, 197, 0, 60, 242, 126, 0, 0, 236, 53, 229, 62, 10, 201, 232, 40, 174, 195, 0, 60, 242, 126, 0, 0, 176, 55, 159, 63, 183, 201, 137, 170, 151, 197, 0, 60, 254, 127, 0, 0, 146, 47, 16, 63, 183, 201, 137, 170, 142, 194, 0, 60, 254, 127, 0, 0, 26, 53, 61, 64, 217, 201, 137, 170, 64, 193, 0, 60, 0, 127, 0, 0, 87, 53, 125, 64, 217, 201, 137, 170, 62, 198, 0, 60, 0, 127, 0, 0, 234, 37, 198, 62, 252, 201, 137, 170, 110, 198, 0, 60, 0, 127, 0, 0, 18, 168, 194, 62, 252, 201, 137, 170, 224, 192, 0, 60, 0, 127, 0, 0, 236, 52, 151, 64, 186, 203, 137, 170, 110, 198, 0, 60, 0, 127, 1, 0, 149, 184, 191, 63, 186, 203, 137, 170, 224, 192, 0, 60, 0, 127, 0, 0, 99, 180, 48, 65, 253, 203, 137, 170, 36, 198, 0, 60, 0, 127, 0, 0, 24, 185, 10, 64, 253, 203, 137, 170, 116, 193, 0, 60, 0, 127, 0, 0, 35, 182, 44, 65, 25, 204, 137, 170, 142, 197, 0, 60, 0, 127, 0, 0, 81, 185, 74, 64, 25, 204, 137, 170, 161, 194, 0, 60, 0, 127, 0, 0, 253, 183, 9, 65, 56, 204, 137, 170, 63, 197, 0, 60, 0, 127, 0, 0, 196, 185, 118, 64, 56, 204, 137, 170, 62, 195, 0, 60, 0, 127, 0, 0, 207, 184, 1, 65, 109, 204, 137, 170, 63, 197, 0, 60, 22, 124, 252, 0, 225, 186, 148, 64, 109, 204, 137, 170, 62, 195, 0, 60, 22, 124, 252, 0, 235, 185, 32, 65, 127, 204, 137, 170, 62, 197, 0, 60, 38, 119, 241, 0, 70, 187, 159, 64, 139, 204, 174, 51, 65, 195, 0, 60, 38, 120, 241, 0, 171, 186, 54, 65, 145, 204, 137, 170, 80, 197, 0, 60, 25, 121, 228, 0, 179, 187, 162, 64, 182, 204, 70, 55, 149, 195, 0, 60, 25, 121, 228, 0, 177, 187, 67, 65, 161, 204, 137, 170, 112, 197, 0, 60, 20, 121, 225, 0, 12, 188, 160, 64, 220, 204, 70, 55, 27, 196, 0, 60, 21, 121, 225, 0, 87, 188, 59, 65, 175, 204, 137, 170, 153, 197, 0, 60, 20, 121, 225, 0, 62, 188, 153, 64, 2, 205, 70, 55, 158, 196, 0, 60, 20, 121, 224, 0, 225, 188, 35, 65, 188, 204, 137, 170, 222, 197, 0, 60, 11, 120, 219, 0, 116, 188, 137, 64, 32, 205, 174, 51, 109, 197, 0, 60, 10, 120, 218, 0, 104, 189, 232, 64, 195, 204, 137, 170, 17, 198, 0, 60, 2, 124, 232, 0, 148, 188, 123, 64, 43, 205, 137, 170, 18, 198, 0, 60, 2, 125, 237, 0, 178, 189, 176, 64, 195, 204, 137, 170, 126, 199, 0, 60, 0, 126, 11, 0, 245, 188, 252, 63, 43, 205, 137, 170, 128, 199, 0, 60, 0, 126, 11, 0, 15, 190, 52, 64, 195, 204, 231, 39, 237, 199, 0, 60, 0, 121, 35, 0, 19, 189, 175, 63, 43, 205, 231, 39, 238, 199, 0, 60, 0, 121, 35, 0, 44, 190, 14, 64, 195, 204, 186, 51, 56, 200, 0, 60, 0, 113, 56, 0, 59, 189, 80, 63, 43, 205, 186, 51, 57, 200, 0, 60, 0, 113, 57, 0, 81, 190, 189, 63, 195, 204, 22, 56, 113, 200, 0, 60, 0, 114, 55, 0, 98, 189, 251, 62, 43, 205, 22, 56, 114, 200, 0, 60, 0, 114, 55, 0, 115, 190, 99, 63, 195, 204, 149, 57, 176, 200, 0, 60, 0, 122, 31, 0, 133, 189, 165, 62, 43, 205, 149, 57, 177, 200, 0, 60, 0, 122, 31, 0, 148, 190, 8, 63, 195, 204, 61, 58, 250, 200, 0, 60, 0, 126, 7, 0, 167, 189, 69, 62, 43, 205, 61, 58, 250, 200, 0, 60, 0, 126, 7, 0, 182, 190, 166, 62, 189, 204, 61, 58, 13, 201, 0, 60, 0, 127, 0, 0, 161, 189, 39, 62, 48, 205, 61, 58, 14, 201, 0, 60, 0, 127, 0, 0, 206, 190, 145, 62, 48, 205, 61, 58, 201, 201, 0, 60, 0, 127, 0, 0, 31, 191, 162, 61, 189, 204, 61, 58, 107, 201, 0, 60, 0, 127, 0, 0, 200, 189, 166, 61, 189, 204, 61, 58, 200, 201, 0, 60, 0, 127, 0, 0, 247, 189, 41, 61, 200, 204, 61, 58, 218, 201, 0, 60, 0, 127, 0, 0, 30, 190, 29, 61, 37, 205, 61, 58, 219, 201, 0, 60, 0, 127, 0, 0, 12, 191, 127, 61, 200, 204, 61, 58, 41, 202, 0, 60, 0, 127, 0, 0, 74, 190, 181, 60, 37, 205, 61, 58, 42, 202, 0, 60, 0, 127, 0, 0, 53, 191, 32, 61, 194, 204, 61, 58, 80, 202, 0, 60, 0, 127, 0, 0, 84, 190, 126, 60, 29, 205, 61, 58, 118, 202, 0, 60, 0, 127, 0, 0, 75, 191, 190, 60, 188, 204, 61, 58, 99, 202, 0, 60, 0, 127, 0, 0, 81, 190, 95, 60, 4, 205, 61, 58, 217, 202, 0, 60, 0, 127, 0, 0, 75, 191, 51, 60, 175, 204, 61, 58, 118, 202, 0, 60, 0, 127, 0, 0, 64, 190, 54, 60, 221, 204, 61, 58, 24, 203, 0, 60, 0, 127, 0, 0, 30, 191, 125, 59, 159, 204, 61, 58, 130, 202, 0, 60, 0, 127, 0, 0, 36, 190, 17, 60, 174, 204, 61, 58, 58, 203, 0, 60, 0, 127, 0, 0, 212, 190, 184, 58, 134, 204, 61, 58, 138, 202, 0, 60, 242, 126, 0, 0, 239, 189, 192, 59, 134, 204, 61, 58, 69, 203, 0, 60, 241, 125, 0, 0, 141, 190, 44, 58, 204, 200, 4, 62, 186, 201, 0, 60, 14, 126, 2, 0, 93, 177, 245, 54, 237, 200, 4, 62, 254, 200, 0, 60, 14, 126, 2, 0, 134, 175, 125, 57, 41, 201, 184, 62, 207, 201, 0, 60, 38, 120, 6, 0, 164, 180, 99, 55, 73, 201, 184, 62, 18, 201, 0, 60, 37, 121, 6, 0, 176, 179, 150, 57, 134, 201, 240, 63, 228, 201, 0, 60, 46, 117, 6, 0, 140, 182, 239, 55, 166, 201, 240, 63, 39, 201, 0, 60, 46, 117, 6, 0, 179, 181, 168, 57, 244, 201, 153, 64, 252, 201, 0, 60, 34, 122, 2, 0, 78, 184, 71, 56, 1, 202, 153, 64, 61, 201, 0, 60, 36, 121, 3, 0, 88, 183, 191, 57, 89, 202, 225, 64, 17, 202, 0, 60, 9, 126, 0, 0, 28, 185, 153, 56, 89, 202, 225, 64, 81, 201, 0, 60, 11, 126, 0, 0, 103, 184, 239, 57, 107, 202, 225, 64, 27, 202, 0, 60, 0, 127, 0, 0, 73, 185, 159, 56, 107, 202, 225, 64, 71, 201, 0, 60, 0, 127, 0, 0, 131, 184, 8, 58, 58, 203, 225, 64, 27, 202, 0, 60, 0, 127, 0, 0, 107, 186, 131, 57, 58, 203, 225, 64, 71, 201, 0, 60, 0, 127, 0, 0, 174, 185, 143, 58, 17, 204, 225, 64, 27, 202, 0, 60, 0, 127, 0, 0, 61, 187, 98, 58, 17, 204, 225, 64, 71, 201, 0, 60, 0, 127, 0, 0, 150, 186, 239, 58, 115, 204, 211, 58, 138, 202, 0, 60, 233, 124, 0, 0, 197, 189, 119, 59, 115, 204, 211, 58, 69, 203, 0, 60, 233, 124, 0, 0, 101, 190, 236, 57, 78, 204, 115, 59, 138, 202, 0, 60, 4, 126, 0, 0, 115, 189, 243, 58, 79, 204, 115, 59, 69, 203, 0, 60, 4, 126, 0, 0, 28, 190, 114, 57, 49, 204, 171, 58, 138, 202, 0, 60, 34, 122, 0, 0, 42, 189, 147, 58, 49, 204, 171, 58, 69, 203, 0, 60, 35, 121, 0, 0, 223, 189, 3, 57, 252, 203, 84, 56, 153, 202, 0, 60, 46, 117, 0, 0, 190, 188, 96, 57, 252, 203, 84, 56, 84, 203, 0, 60, 48, 117, 0, 0, 156, 189, 33, 56, 184, 203, 233, 52, 181, 202, 0, 60, 46, 118, 0, 0, 189, 188, 133, 56, 184, 203, 233, 52, 112, 203, 0, 60, 42, 119, 0, 0, 125, 189, 134, 54, 126, 203, 116, 49, 222, 202, 0, 60, 49, 116, 0, 0, 172, 188, 131, 55, 126, 203, 116, 49, 153, 203, 0, 60, 60, 111, 0, 0, 118, 189, 248, 52, 79, 203, 80, 173, 248, 202, 0, 60, 68, 106, 255, 0, 159, 188, 64, 54, 79, 203, 80, 173, 179, 203, 0, 60, 66, 108, 255, 0, 92, 189, 41, 51, 3, 203, 77, 182, 29, 203, 0, 60, 44, 118, 255, 0, 126, 188, 140, 52, 23, 203, 7, 182, 214, 203, 0, 60, 35, 121, 255, 0, 56, 189, 82, 47, 189, 202, 128, 183, 53, 203, 0, 60, 10, 126, 0, 0, 78, 188, 167, 50, 215, 202, 37, 183, 238, 203, 0, 60, 7, 126, 0, 0, 0, 189, 199, 38, 85, 202, 99, 183, 106, 203, 0, 60, 252, 126, 2, 0, 236, 187, 105, 45, 107, 202, 24, 183, 17, 204, 0, 60, 250, 126, 2, 0, 147, 188, 48, 176, 186, 201, 140, 181, 154, 203, 0, 60, 220, 121, 3, 0, 169, 186, 230, 171, 210, 201, 57, 181, 48, 204, 0, 60, 213, 119, 3, 0, 166, 187, 213, 180, 70, 70, 189, 62, 156, 202, 0, 60, 0, 127, 0, 0, 198, 65, 32, 189, 167, 68, 189, 62, 157, 202, 0, 60, 0, 127, 0, 0, 36, 65, 164, 188, 70, 70, 189, 62, 71, 203, 0, 60, 0, 127, 0, 0, 147, 65, 44, 190, 167, 68, 189, 62, 72, 203, 0, 60, 0, 127, 0, 0, 240, 64, 176, 189, 70, 70, 189, 62, 221, 203, 0, 60, 0, 127, 0, 0, 102, 65, 24, 191, 167, 68, 189, 62, 222, 203, 0, 60, 0, 127, 0, 0, 196, 64, 156, 190, 76, 67, 182, 59, 240, 197, 0, 60, 0, 127, 0, 0, 217, 65, 240, 53, 1, 63, 151, 59, 237, 197, 0, 60, 254, 127, 0, 0, 26, 65, 30, 56, 1, 63, 151, 59, 61, 194, 0, 60, 254, 127, 0, 0, 133, 65, 69, 60, 76, 67, 182, 59, 66, 194, 0, 60, 0, 127, 0, 0, 68, 66, 100, 59, 46, 68, 182, 59, 66, 194, 0, 60, 54, 114, 0, 0, 121, 66, 19, 59, 46, 68, 182, 59, 240, 197, 0, 60, 54, 114, 0, 0, 14, 66, 77, 53, 71, 68, 188, 58, 66, 194, 0, 60, 107, 67, 0, 0, 137, 66, 251, 58, 71, 68, 188, 58, 240, 197, 0, 60, 107, 67, 0, 0, 30, 66, 30, 53, 100, 68, 201, 56, 66, 194, 0, 60, 115, 53, 0, 0, 164, 66, 210, 58, 100, 68, 201, 56, 240, 197, 0, 60, 115, 53, 0, 0, 57, 66, 204, 52, 0, 60, 41, 61, 242, 198, 0, 60, 0, 122, 34, 0, 165, 64, 202, 53, 0, 188, 41, 61, 242, 198, 0, 60, 0, 122, 34, 0, 184, 63, 22, 56, 120, 201, 53, 42, 62, 204, 0, 60, 223, 122, 1, 0, 183, 186, 46, 182, 120, 201, 53, 42, 175, 203, 0, 60, 216, 120, 2, 0, 219, 185, 161, 175, 70, 64, 186, 62, 9, 204, 0, 60, 0, 127, 0, 0, 109, 63, 47, 190, 55, 183, 180, 62, 186, 203, 0, 60, 0, 127, 0, 0, 153, 61, 223, 188, 8, 188, 219, 62, 89, 202, 0, 60, 1, 127, 0, 0, 251, 61, 17, 185, 248, 189, 149, 60, 243, 200, 0, 60, 0, 127, 255, 0, 67, 61, 152, 175, 241, 189, 149, 60, 89, 202, 0, 60, 0, 127, 0, 0, 237, 59, 156, 184, 148, 195, 149, 60, 214, 201, 0, 60, 253, 126, 4, 0, 225, 57, 128, 176, 149, 195, 149, 60, 255, 200, 0, 60, 234, 124, 0, 0, 112, 59, 67, 48, 188, 189, 149, 60, 46, 200, 0, 60, 0, 127, 255, 0, 5, 62, 2, 48, 119, 195, 149, 60, 58, 200, 0, 60, 0, 127, 255, 0, 121, 60, 9, 54, 195, 193, 199, 60, 33, 200, 0, 60, 0, 127, 255, 0, 31, 61, 245, 52, 21, 196, 76, 62, 119, 198, 0, 60, 0, 126, 11, 0, 76, 61, 147, 58, 100, 197, 76, 62, 119, 198, 0, 60, 0, 126, 11, 0, 84, 60, 116, 59, 100, 197, 78, 62, 14, 199, 0, 60, 0, 126, 251, 0, 54, 60, 202, 58, 21, 196, 78, 62, 14, 199, 0, 60, 0, 126, 251, 0, 34, 61, 225, 57, 100, 197, 41, 62, 120, 199, 0, 60, 0, 126, 242, 0, 19, 60, 60, 58, 21, 196, 41, 62, 120, 199, 0, 60, 0, 126, 242, 0, 248, 60, 63, 57, 100, 197, 201, 61, 18, 200, 0, 60, 0, 125, 241, 0, 102, 59, 61, 57, 21, 196, 201, 61, 18, 200, 0, 60, 0, 125, 241, 0, 140, 60, 247, 55, 78, 198, 149, 60, 254, 201, 0, 60, 255, 126, 10, 0, 140, 52, 253, 45, 57, 198, 73, 60, 132, 201, 0, 60, 255, 126, 10, 0, 129, 54, 197, 51, 125, 198, 148, 57, 204, 203, 0, 60, 250, 126, 0, 0, 121, 163, 143, 183, 127, 198, 148, 57, 234, 203, 0, 60, 250, 126, 0, 0, 23, 168, 17, 184, 36, 204, 225, 64, 210, 201, 0, 60, 0, 127, 0, 0, 26, 187, 178, 58, 35, 204, 225, 64, 144, 201, 0, 60, 0, 127, 0, 0, 233, 186, 217, 58, 252, 201, 137, 170, 175, 200, 0, 60, 0, 127, 0, 0, 20, 180, 40, 61, 186, 203, 137, 170, 175, 200, 0, 60, 0, 127, 1, 0, 27, 186, 225, 61, 114, 201, 137, 170, 154, 198, 0, 60, 0, 127, 0, 0, 199, 46, 76, 62, 107, 201, 137, 170, 188, 199, 0, 60, 0, 127, 0, 0, 203, 35, 171, 61, 100, 201, 137, 170, 122, 200, 0, 60, 0, 127, 0, 0, 214, 172, 5, 61, 109, 204, 26, 41, 144, 200, 0, 60, 0, 126, 3, 0, 120, 188, 139, 62, 151, 204, 173, 169, 43, 200, 0, 60, 0, 126, 3, 0, 181, 188, 63, 63, 154, 204, 137, 170, 141, 199, 0, 60, 0, 126, 3, 0, 140, 188, 200, 63, 150, 204, 101, 171, 235, 198, 0, 60, 0, 126, 3, 0, 85, 188, 25, 64, 128, 204, 137, 170, 35, 198, 0, 60, 0, 126, 3, 0, 203, 187, 81, 64, 19, 204, 197, 176, 48, 198, 0, 60, 0, 126, 3, 0, 143, 185, 17, 64, 117, 197, 116, 61, 57, 195, 0, 60, 0, 127, 0, 0, 36, 61, 16, 62, 230, 195, 116, 61, 57, 195, 0, 60, 0, 127, 0, 0, 84, 62, 156, 61, 117, 197, 116, 61, 20, 194, 0, 60, 0, 127, 0, 0, 80, 61, 131, 62, 230, 195, 116, 61, 20, 194, 0, 60, 0, 127, 0, 0, 128, 62, 15, 62, 89, 199, 116, 61, 234, 193, 0, 60, 0, 127, 0, 0, 177, 59, 37, 63, 15, 195, 116, 61, 234, 193, 0, 60, 0, 127, 0, 0, 219, 62, 0, 62, 205, 194, 116, 61, 196, 190, 0, 60, 0, 127, 0, 0, 86, 63, 245, 62, 151, 199, 116, 61, 159, 190, 0, 60, 0, 127, 0, 0, 11, 60, 31, 64, 89, 199, 116, 61, 51, 182, 0, 60, 0, 127, 0, 0, 157, 60, 149, 64, 15, 195, 116, 61, 51, 182, 0, 60, 0, 127, 0, 0, 160, 63, 3, 64, 193, 203, 137, 170, 131, 182, 0, 60, 0, 127, 0, 0, 211, 174, 224, 65, 252, 201, 137, 170, 24, 184, 0, 60, 0, 127, 0, 0, 149, 55, 57, 65, 17, 201, 137, 170, 24, 184, 0, 60, 0, 127, 0, 0, 43, 58, 230, 64, 17, 201, 137, 170, 224, 192, 0, 60, 0, 127, 0, 0, 206, 56, 70, 64, 17, 201, 137, 170, 23, 194, 0, 60, 0, 127, 0, 0, 97, 56, 20, 64, 60, 205, 61, 58, 201, 201, 0, 60, 0, 127, 0, 0, 62, 191, 172, 61, 60, 205, 61, 58, 14, 201, 0, 60, 0, 127, 0, 0, 236, 190, 155, 62, 223, 205, 61, 58, 201, 201, 0, 60, 0, 127, 0, 0, 110, 192, 58, 62, 223, 205, 61, 58, 14, 201, 0, 60, 0, 127, 0, 0, 69, 192, 41, 63, 60, 205, 61, 58, 1, 200, 0, 60, 0, 127, 0, 0, 118, 190, 243, 63, 223, 205, 61, 58, 232, 197, 0, 60, 0, 127, 0, 0, 160, 191, 236, 64, 60, 205, 61, 58, 232, 197, 0, 60, 0, 127, 0, 0, 1, 190, 165, 64, 60, 205, 61, 58, 41, 199, 0, 60, 0, 127, 0, 0, 57, 190, 79, 64, 63, 205, 61, 58, 240, 201, 0, 60, 0, 127, 0, 0, 87, 191, 126, 61, 176, 205, 61, 58, 240, 201, 0, 60, 0, 127, 0, 0, 59, 192, 224, 61, 63, 205, 61, 58, 223, 202, 0, 60, 0, 127, 0, 0, 191, 191, 77, 60, 176, 205, 61, 58, 223, 202, 0, 60, 0, 127, 0, 0, 112, 192, 175, 60, 63, 205, 61, 58, 208, 203, 0, 60, 0, 127, 0, 0, 20, 192, 50, 58, 176, 205, 61, 58, 208, 203, 0, 60, 0, 127, 0, 0, 164, 192, 248, 58, 45, 205, 61, 58, 223, 202, 0, 60, 0, 127, 0, 0, 144, 191, 61, 60, 45, 205, 61, 58, 208, 203, 0, 60, 0, 127, 0, 0, 250, 191, 18, 58, 45, 205, 61, 58, 240, 201, 0, 60, 0, 127, 0, 0, 40, 191, 110, 61, 0, 188, 237, 171, 144, 60, 0, 60, 0, 97, 81, 0, 24, 65, 74, 64, 0, 60, 237, 171, 144, 60, 0, 60, 0, 97, 81, 0, 226, 65, 252, 63, 0, 188, 152, 180, 43, 61, 0, 60, 0, 37, 121, 0, 35, 65, 101, 64, 0, 60, 152, 180, 43, 61, 0, 60, 0, 37, 121, 0, 236, 65, 25, 64, 0, 188, 144, 189, 43, 61, 0, 60, 0, 89, 89, 0, 77, 65, 213, 64, 0, 60, 144, 189, 43, 61, 0, 60, 0, 89, 89, 0, 22, 66, 136, 64, 0, 188, 144, 189, 39, 65, 0, 60, 0, 89, 167, 0, 126, 65, 86, 65, 0, 60, 144, 189, 39, 65, 0, 60, 0, 89, 167, 0, 71, 66, 10, 65, 0, 188, 80, 181, 39, 65, 0, 60, 0, 109, 192, 0, 166, 65, 193, 65, 0, 60, 80, 181, 39, 65, 0, 60, 0, 109, 192, 0, 112, 66, 116, 65, 0, 188, 177, 183, 179, 65, 0, 60, 0, 111, 60, 0, 178, 65, 224, 65, 0, 60, 177, 183, 179, 65, 0, 60, 0, 111, 60, 0, 124, 66, 148, 65, 30, 204, 162, 64, 86, 201, 0, 60, 156, 36, 68, 0, 189, 186, 254, 58, 35, 204, 225, 64, 144, 201, 0, 60, 131, 11, 14, 0, 233, 186, 217, 58, 35, 204, 105, 59, 144, 201, 0, 60, 130, 0, 11, 0, 108, 187, 181, 59, 30, 204, 105, 59, 86, 201, 0, 60, 154, 0, 73, 0, 15, 187, 219, 59, 36, 204, 225, 64, 210, 201, 0, 60, 131, 11, 242, 0, 26, 187, 178, 58, 30, 204, 162, 64, 12, 202, 0, 60, 156, 36, 188, 0, 70, 187, 140, 58, 30, 204, 105, 59, 12, 202, 0, 60, 153, 0, 183, 0, 37, 188, 52, 59, 36, 204, 105, 59, 210, 201, 0, 60, 130, 0, 245, 0, 215, 187, 123, 59, 17, 204, 225, 64, 27, 202, 0, 60, 180, 41, 164, 0, 61, 187, 98, 58, 17, 204, 105, 59, 27, 202, 0, 60, 194, 0, 146, 0, 81, 188, 9, 59, 17, 204, 225, 64, 71, 201, 0, 60, 215, 22, 117, 0, 150, 186, 239, 58, 17, 204, 105, 59, 71, 201, 0, 60, 194, 0, 110, 0, 224, 186, 234, 59, 17, 204, 17, 188, 71, 201, 0, 60, 0, 0, 126, 0, 90, 187, 225, 60, 58, 203, 17, 188, 71, 201, 0, 60, 0, 0, 126, 0, 47, 185, 204, 60, 58, 203, 225, 64, 71, 201, 0, 60, 0, 0, 126, 0, 174, 185, 143, 58, 107, 202, 17, 188, 71, 201, 0, 60, 32, 0, 122, 0, 204, 182, 139, 60, 107, 202, 225, 64, 71, 201, 0, 60, 32, 0, 122, 0, 131, 184, 8, 58, 89, 202, 17, 188, 81, 201, 0, 60, 17, 0, 125, 0, 136, 182, 128, 60, 89, 202, 225, 64, 81, 201, 0, 60, 21, 0, 125, 0, 103, 184, 239, 57, 1, 202, 17, 188, 61, 201, 0, 60, 228, 0, 123, 0, 51, 181, 108, 60, 1, 202, 153, 64, 61, 201, 0, 60, 228, 0, 123, 0, 88, 183, 191, 57, 166, 201, 17, 188, 39, 201, 0, 60, 228, 0, 123, 0, 144, 179, 87, 60, 166, 201, 240, 63, 39, 201, 0, 60, 228, 0, 123, 0, 179, 181, 168, 57, 73, 201, 17, 188, 18, 201, 0, 60, 229, 0, 123, 0, 170, 176, 60, 60, 73, 201, 184, 62, 18, 201, 0, 60, 229, 0, 123, 0, 176, 179, 150, 57, 237, 200, 4, 62, 254, 200, 0, 60, 229, 0, 123, 0, 134, 175, 125, 57, 237, 200, 139, 187, 254, 200, 0, 60, 229, 0, 123, 0, 10, 171, 34, 60, 184, 60, 189, 62, 25, 200, 0, 60, 115, 0, 52, 0, 239, 56, 154, 54, 0, 60, 74, 62, 206, 199, 0, 60, 115, 0, 52, 0, 34, 56, 136, 54, 0, 60, 1, 61, 206, 199, 0, 60, 115, 0, 52, 0, 236, 55, 164, 55, 0, 188, 74, 62, 206, 199, 0, 60, 130, 0, 0, 0, 33, 56, 252, 59, 0, 188, 1, 61, 206, 199, 0, 60, 130, 0, 0, 0, 235, 55, 109, 59, 0, 188, 191, 59, 242, 198, 0, 60, 130, 0, 0, 0, 169, 52, 101, 59, 0, 188, 41, 61, 242, 198, 0, 60, 130, 0, 0, 0, 250, 52, 244, 59, 0, 60, 41, 61, 242, 198, 0, 60, 127, 0, 0, 0, 1, 53, 151, 54, 0, 60, 191, 59, 242, 198, 0, 60, 127, 0, 0, 0, 176, 52, 179, 55, 0, 60, 1, 61, 206, 199, 0, 60, 127, 0, 0, 0, 236, 55, 164, 55, 0, 60, 74, 62, 206, 199, 0, 60, 127, 0, 0, 0, 34, 56, 136, 54, 100, 197, 201, 61, 18, 200, 0, 60, 130, 0, 0, 0, 164, 56, 78, 54, 100, 197, 233, 60, 18, 200, 0, 60, 130, 0, 0, 0, 195, 56, 153, 53, 100, 197, 74, 61, 115, 199, 0, 60, 130, 0, 0, 0, 120, 54, 179, 53, 100, 197, 41, 62, 120, 199, 0, 60, 130, 0, 0, 0, 103, 54, 116, 54, 21, 196, 41, 62, 120, 199, 0, 60, 127, 0, 0, 0, 64, 54, 135, 8, 21, 196, 74, 61, 115, 199, 0, 60, 127, 0, 0, 0, 86, 54, 14, 42, 21, 196, 233, 60, 18, 200, 0, 60, 127, 0, 0, 0, 182, 56, 140, 42, 21, 196, 201, 61, 18, 200, 0, 60, 127, 0, 0, 0, 149, 56, 67, 30, 100, 197, 130, 61, 98, 200, 0, 60, 130, 0, 0, 0, 218, 57, 11, 54, 100, 197, 162, 60, 98, 200, 0, 60, 130, 0, 0, 0, 255, 57, 100, 53, 21, 196, 162, 60, 98, 200, 0, 60, 127, 0, 0, 0, 255, 57, 7, 44, 21, 196, 130, 61, 98, 200, 0, 60, 127, 0, 0, 0, 215, 57, 91, 37, 0, 60, 213, 59, 174, 197, 0, 60, 127, 0, 0, 0, 211, 36, 127, 54, 0, 60, 67, 57, 174, 197, 0, 60, 127, 0, 0, 0, 148, 7, 162, 55, 0, 188, 67, 57, 174, 197, 0, 60, 130, 0, 0, 0, 152, 7, 111, 59, 0, 188, 213, 59, 174, 197, 0, 60, 130, 0, 0, 0, 199, 36, 255, 59, 21, 196, 78, 62, 14, 199, 0, 60, 127, 0, 0, 0, 222, 52, 149, 7, 21, 196, 110, 61, 10, 199, 0, 60, 127, 0, 0, 0, 206, 52, 66, 42, 100, 197, 110, 61, 10, 199, 0, 60, 130, 0, 0, 0, 239, 52, 182, 53, 100, 197, 78, 62, 14, 199, 0, 60, 130, 0, 0, 0, 5, 53, 126, 54, 21, 196, 76, 62, 119, 198, 0, 60, 127, 0, 0, 0, 179, 50, 129, 29, 21, 196, 107, 61, 119, 198, 0, 60, 127, 0, 0, 0, 66, 50, 113, 42, 100, 197, 107, 61, 119, 198, 0, 60, 130, 0, 0, 0, 127, 50, 184, 53, 100, 197, 76, 62, 119, 198, 0, 60, 130, 0, 0, 0, 248, 50, 115, 54, 21, 196, 188, 61, 171, 197, 0, 60, 127, 0, 0, 0, 131, 36, 140, 38, 21, 196, 220, 60, 171, 197, 0, 60, 127, 0, 0, 0, 148, 7, 75, 44, 100, 197, 220, 60, 171, 197, 0, 60, 130, 0, 0, 0, 158, 7, 122, 53, 100, 197, 188, 61, 171, 197, 0, 60, 130, 0, 0, 0, 221, 36, 42, 54), -"array_index_data": PackedByteArray(0, 0, 2, 0, 1, 0, 0, 0, 3, 0, 2, 0, 1, 0, 5, 0, 4, 0, 1, 0, 2, 0, 5, 0, 6, 0, 8, 0, 7, 0, 6, 0, 9, 0, 8, 0, 7, 0, 11, 0, 10, 0, 7, 0, 8, 0, 11, 0, 10, 0, 13, 0, 12, 0, 10, 0, 11, 0, 13, 0, 12, 0, 15, 0, 14, 0, 12, 0, 13, 0, 15, 0, 14, 0, 17, 0, 16, 0, 14, 0, 15, 0, 17, 0, 18, 0, 20, 0, 19, 0, 18, 0, 21, 0, 20, 0, 21, 0, 22, 0, 20, 0, 21, 0, 23, 0, 22, 0, 23, 0, 24, 0, 22, 0, 23, 0, 25, 0, 24, 0, 25, 0, 26, 0, 24, 0, 25, 0, 27, 0, 26, 0, 27, 0, 28, 0, 26, 0, 27, 0, 29, 0, 28, 0, 29, 0, 30, 0, 28, 0, 29, 0, 31, 0, 30, 0, 31, 0, 32, 0, 30, 0, 31, 0, 33, 0, 32, 0, 34, 0, 36, 0, 35, 0, 34, 0, 37, 0, 36, 0, 37, 0, 38, 0, 36, 0, 37, 0, 39, 0, 38, 0, 38, 0, 40, 0, 36, 0, 38, 0, 41, 0, 40, 0, 41, 0, 42, 0, 40, 0, 41, 0, 43, 0, 42, 0, 43, 0, 44, 0, 42, 0, 43, 0, 45, 0, 44, 0, 45, 0, 46, 0, 44, 0, 45, 0, 47, 0, 46, 0, 47, 0, 48, 0, 46, 0, 47, 0, 49, 0, 48, 0, 49, 0, 50, 0, 48, 0, 49, 0, 51, 0, 50, 0, 51, 0, 52, 0, 50, 0, 51, 0, 53, 0, 52, 0, 29, 0, 54, 0, 31, 0, 29, 0, 55, 0, 54, 0, 55, 0, 56, 0, 54, 0, 55, 0, 57, 0, 56, 0, 57, 0, 58, 0, 56, 0, 57, 0, 59, 0, 58, 0, 59, 0, 60, 0, 58, 0, 59, 0, 61, 0, 60, 0, 61, 0, 62, 0, 60, 0, 61, 0, 63, 0, 62, 0, 63, 0, 64, 0, 62, 0, 63, 0, 65, 0, 64, 0, 64, 0, 66, 0, 62, 0, 64, 0, 67, 0, 66, 0, 67, 0, 68, 0, 66, 0, 67, 0, 69, 0, 68, 0, 70, 0, 72, 0, 71, 0, 70, 0, 73, 0, 72, 0, 73, 0, 74, 0, 72, 0, 73, 0, 75, 0, 74, 0, 75, 0, 76, 0, 74, 0, 75, 0, 77, 0, 76, 0, 75, 0, 78, 0, 77, 0, 75, 0, 79, 0, 78, 0, 79, 0, 80, 0, 78, 0, 79, 0, 81, 0, 80, 0, 81, 0, 82, 0, 80, 0, 81, 0, 83, 0, 82, 0, 83, 0, 84, 0, 82, 0, 83, 0, 85, 0, 84, 0, 85, 0, 86, 0, 84, 0, 85, 0, 87, 0, 86, 0, 87, 0, 88, 0, 86, 0, 87, 0, 89, 0, 88, 0, 89, 0, 90, 0, 88, 0, 88, 0, 92, 0, 91, 0, 88, 0, 90, 0, 92, 0, 91, 0, 93, 0, 88, 0, 91, 0, 94, 0, 93, 0, 94, 0, 95, 0, 93, 0, 94, 0, 96, 0, 95, 0, 96, 0, 97, 0, 95, 0, 96, 0, 98, 0, 97, 0, 98, 0, 99, 0, 97, 0, 98, 0, 100, 0, 99, 0, 100, 0, 101, 0, 99, 0, 100, 0, 102, 0, 101, 0, 102, 0, 103, 0, 101, 0, 102, 0, 104, 0, 103, 0, 104, 0, 105, 0, 103, 0, 104, 0, 106, 0, 105, 0, 106, 0, 107, 0, 105, 0, 106, 0, 108, 0, 107, 0, 108, 0, 109, 0, 107, 0, 108, 0, 110, 0, 109, 0, 110, 0, 111, 0, 109, 0, 110, 0, 112, 0, 111, 0, 112, 0, 113, 0, 111, 0, 112, 0, 114, 0, 113, 0, 114, 0, 115, 0, 113, 0, 114, 0, 116, 0, 115, 0, 114, 0, 117, 0, 116, 0, 114, 0, 118, 0, 117, 0, 118, 0, 119, 0, 117, 0, 118, 0, 120, 0, 119, 0, 120, 0, 121, 0, 119, 0, 120, 0, 122, 0, 121, 0, 122, 0, 123, 0, 121, 0, 122, 0, 124, 0, 123, 0, 124, 0, 125, 0, 123, 0, 124, 0, 126, 0, 125, 0, 65, 0, 127, 0, 64, 0, 65, 0, 128, 0, 127, 0, 128, 0, 129, 0, 127, 0, 128, 0, 130, 0, 129, 0, 130, 0, 131, 0, 129, 0, 130, 0, 132, 0, 131, 0, 132, 0, 133, 0, 131, 0, 132, 0, 134, 0, 133, 0, 134, 0, 135, 0, 133, 0, 134, 0, 136, 0, 135, 0, 136, 0, 137, 0, 135, 0, 136, 0, 138, 0, 137, 0, 138, 0, 139, 0, 137, 0, 138, 0, 140, 0, 139, 0, 140, 0, 141, 0, 139, 0, 140, 0, 142, 0, 141, 0, 142, 0, 143, 0, 141, 0, 142, 0, 144, 0, 143, 0, 145, 0, 147, 0, 146, 0, 145, 0, 148, 0, 147, 0, 148, 0, 149, 0, 147, 0, 148, 0, 150, 0, 149, 0, 150, 0, 151, 0, 149, 0, 150, 0, 152, 0, 151, 0, 152, 0, 153, 0, 151, 0, 152, 0, 154, 0, 153, 0, 144, 0, 146, 0, 143, 0, 144, 0, 145, 0, 146, 0, 154, 0, 155, 0, 153, 0, 154, 0, 156, 0, 155, 0, 156, 0, 157, 0, 155, 0, 156, 0, 158, 0, 157, 0, 158, 0, 159, 0, 157, 0, 158, 0, 160, 0, 159, 0, 160, 0, 161, 0, 159, 0, 160, 0, 162, 0, 161, 0, 162, 0, 163, 0, 161, 0, 162, 0, 164, 0, 163, 0, 164, 0, 165, 0, 163, 0, 164, 0, 166, 0, 165, 0, 166, 0, 167, 0, 165, 0, 166, 0, 168, 0, 167, 0, 168, 0, 169, 0, 167, 0, 168, 0, 170, 0, 169, 0, 170, 0, 171, 0, 169, 0, 170, 0, 172, 0, 171, 0, 172, 0, 173, 0, 171, 0, 172, 0, 174, 0, 173, 0, 174, 0, 175, 0, 173, 0, 174, 0, 176, 0, 175, 0, 176, 0, 177, 0, 175, 0, 176, 0, 178, 0, 177, 0, 178, 0, 179, 0, 177, 0, 178, 0, 180, 0, 179, 0, 180, 0, 181, 0, 179, 0, 180, 0, 182, 0, 181, 0, 182, 0, 183, 0, 181, 0, 182, 0, 184, 0, 183, 0, 184, 0, 185, 0, 183, 0, 183, 0, 187, 0, 186, 0, 183, 0, 185, 0, 187, 0, 185, 0, 188, 0, 187, 0, 185, 0, 189, 0, 188, 0, 189, 0, 190, 0, 188, 0, 189, 0, 191, 0, 190, 0, 191, 0, 192, 0, 190, 0, 191, 0, 193, 0, 192, 0, 193, 0, 194, 0, 192, 0, 193, 0, 195, 0, 194, 0, 195, 0, 196, 0, 194, 0, 195, 0, 197, 0, 196, 0, 197, 0, 198, 0, 196, 0, 197, 0, 199, 0, 198, 0, 199, 0, 200, 0, 198, 0, 199, 0, 201, 0, 200, 0, 92, 0, 202, 0, 91, 0, 92, 0, 203, 0, 202, 0, 203, 0, 204, 0, 202, 0, 203, 0, 205, 0, 204, 0, 205, 0, 206, 0, 204, 0, 205, 0, 207, 0, 206, 0, 207, 0, 208, 0, 206, 0, 207, 0, 209, 0, 208, 0, 209, 0, 210, 0, 208, 0, 209, 0, 211, 0, 210, 0, 211, 0, 212, 0, 210, 0, 211, 0, 213, 0, 212, 0, 213, 0, 214, 0, 212, 0, 213, 0, 215, 0, 214, 0, 215, 0, 216, 0, 214, 0, 215, 0, 217, 0, 216, 0, 201, 0, 218, 0, 200, 0, 201, 0, 219, 0, 218, 0, 219, 0, 220, 0, 218, 0, 219, 0, 221, 0, 220, 0, 221, 0, 222, 0, 220, 0, 221, 0, 223, 0, 222, 0, 223, 0, 224, 0, 222, 0, 223, 0, 225, 0, 224, 0, 225, 0, 226, 0, 224, 0, 225, 0, 227, 0, 226, 0, 227, 0, 228, 0, 226, 0, 227, 0, 229, 0, 228, 0, 229, 0, 230, 0, 228, 0, 229, 0, 231, 0, 230, 0, 231, 0, 232, 0, 230, 0, 231, 0, 233, 0, 232, 0, 233, 0, 234, 0, 232, 0, 233, 0, 235, 0, 234, 0, 235, 0, 236, 0, 234, 0, 235, 0, 237, 0, 236, 0, 237, 0, 238, 0, 236, 0, 237, 0, 239, 0, 238, 0, 53, 0, 240, 0, 52, 0, 53, 0, 241, 0, 240, 0, 241, 0, 242, 0, 240, 0, 241, 0, 243, 0, 242, 0, 243, 0, 244, 0, 242, 0, 243, 0, 245, 0, 244, 0, 246, 0, 248, 0, 247, 0, 246, 0, 249, 0, 248, 0, 246, 0, 250, 0, 249, 0, 246, 0, 251, 0, 250, 0, 251, 0, 252, 0, 250, 0, 251, 0, 253, 0, 252, 0, 253, 0, 254, 0, 252, 0, 253, 0, 255, 0, 254, 0, 32, 0, 1, 1, 0, 1, 32, 0, 33, 0, 1, 1, 35, 0, 1, 1, 34, 0, 35, 0, 0, 1, 1, 1, 28, 0, 247, 0, 248, 0, 28, 0, 30, 0, 247, 0, 126, 0, 2, 1, 125, 0, 126, 0, 3, 1, 2, 1, 243, 0, 4, 1, 245, 0, 243, 0, 5, 1, 4, 1, 241, 0, 5, 1, 243, 0, 53, 0, 5, 1, 241, 0, 51, 0, 5, 1, 53, 0, 49, 0, 5, 1, 51, 0, 47, 0, 5, 1, 49, 0, 45, 0, 5, 1, 47, 0, 43, 0, 5, 1, 45, 0, 41, 0, 5, 1, 43, 0, 38, 0, 5, 1, 41, 0, 39, 0, 5, 1, 38, 0, 39, 0, 6, 1, 5, 1, 7, 1, 9, 1, 8, 1, 7, 1, 10, 1, 9, 1, 7, 1, 11, 1, 10, 1, 10, 1, 13, 1, 12, 1, 10, 1, 11, 1, 13, 1, 14, 1, 69, 0, 15, 1, 14, 1, 68, 0, 69, 0, 16, 1, 14, 1, 15, 1, 16, 1, 17, 1, 14, 1, 18, 1, 17, 1, 16, 1, 18, 1, 19, 1, 17, 1, 20, 1, 19, 1, 18, 1, 20, 1, 21, 1, 19, 1, 71, 0, 20, 1, 70, 0, 71, 0, 21, 1, 20, 1, 74, 0, 9, 1, 10, 1, 74, 0, 76, 0, 9, 1, 76, 0, 22, 1, 9, 1, 76, 0, 23, 1, 22, 1, 115, 0, 24, 1, 113, 0, 115, 0, 25, 1, 24, 1, 239, 0, 3, 1, 238, 0, 239, 0, 2, 1, 3, 1, 217, 0, 26, 1, 216, 0, 217, 0, 27, 1, 26, 1, 147, 0, 29, 1, 28, 1, 147, 0, 149, 0, 29, 1, 147, 0, 28, 1, 30, 1, 31, 1, 28, 1, 32, 1, 30, 1, 28, 1, 31, 1, 29, 1, 149, 0, 33, 1, 33, 1, 35, 1, 34, 1, 35, 1, 37, 1, 36, 1, 37, 1, 149, 0, 38, 1, 33, 1, 149, 0, 35, 1, 35, 1, 149, 0, 37, 1, 63, 0, 39, 1, 65, 0, 63, 0, 40, 1, 39, 1, 40, 1, 41, 1, 39, 1, 40, 1, 42, 1, 41, 1, 42, 1, 43, 1, 41, 1, 42, 1, 44, 1, 43, 1, 44, 1, 45, 1, 43, 1, 43, 1, 47, 1, 46, 1, 47, 1, 45, 1, 48, 1, 43, 1, 45, 1, 47, 1, 148, 0, 49, 1, 150, 0, 148, 0, 50, 1, 49, 1, 148, 0, 51, 1, 50, 1, 148, 0, 52, 1, 51, 1, 145, 0, 52, 1, 148, 0, 145, 0, 53, 1, 52, 1, 184, 0, 54, 1, 185, 0, 184, 0, 55, 1, 54, 1, 55, 1, 56, 1, 54, 1, 55, 1, 57, 1, 56, 1, 55, 1, 58, 1, 57, 1, 57, 1, 60, 1, 59, 1, 60, 1, 58, 1, 61, 1, 57, 1, 58, 1, 60, 1, 56, 1, 62, 1, 54, 1, 56, 1, 63, 1, 62, 1, 63, 1, 64, 1, 62, 1, 63, 1, 65, 1, 64, 1, 65, 1, 66, 1, 64, 1, 65, 1, 67, 1, 66, 1, 66, 1, 68, 1, 64, 1, 66, 1, 69, 1, 68, 1, 64, 1, 70, 1, 62, 1, 64, 1, 68, 1, 70, 1, 19, 0, 71, 1, 18, 0, 19, 0, 72, 1, 71, 1, 72, 1, 73, 1, 71, 1, 72, 1, 74, 1, 73, 1, 74, 1, 75, 1, 73, 1, 74, 1, 76, 1, 75, 1, 76, 1, 77, 1, 75, 1, 76, 1, 78, 1, 77, 1, 78, 1, 79, 1, 77, 1, 78, 1, 80, 1, 79, 1, 80, 1, 81, 1, 79, 1, 80, 1, 82, 1, 81, 1, 83, 1, 85, 1, 84, 1, 83, 1, 86, 1, 85, 1, 87, 1, 89, 1, 88, 1, 87, 1, 90, 1, 89, 1, 84, 1, 90, 1, 87, 1, 84, 1, 85, 1, 90, 1, 88, 1, 92, 1, 91, 1, 88, 1, 89, 1, 92, 1, 93, 1, 86, 1, 83, 1, 93, 1, 94, 1, 86, 1, 83, 1, 84, 1, 93, 1, 88, 1, 91, 1, 87, 1, 93, 1, 96, 1, 95, 1, 93, 1, 97, 1, 96, 1, 97, 1, 98, 1, 96, 1, 97, 1, 99, 1, 98, 1, 99, 1, 100, 1, 98, 1, 99, 1, 101, 1, 100, 1, 101, 1, 102, 1, 100, 1, 101, 1, 103, 1, 102, 1, 103, 1, 104, 1, 102, 1, 103, 1, 105, 1, 104, 1, 105, 1, 106, 1, 104, 1, 105, 1, 107, 1, 106, 1, 108, 1, 106, 1, 107, 1, 108, 1, 109, 1, 106, 1, 110, 1, 112, 1, 111, 1, 113, 1, 115, 1, 114, 1, 113, 1, 116, 1, 115, 1, 117, 1, 119, 1, 118, 1, 117, 1, 120, 1, 119, 1, 121, 1, 123, 1, 122, 1, 121, 1, 124, 1, 123, 1, 125, 1, 127, 1, 126, 1, 125, 1, 128, 1, 127, 1, 129, 1, 122, 1, 130, 1, 129, 1, 121, 1, 122, 1, 128, 1, 131, 1, 127, 1, 128, 1, 132, 1, 131, 1, 133, 1, 118, 1, 134, 1, 133, 1, 117, 1, 118, 1, 116, 1, 135, 1, 115, 1, 116, 1, 136, 1, 135, 1, 137, 1, 126, 1, 138, 1, 137, 1, 125, 1, 126, 1, 124, 1, 139, 1, 123, 1, 124, 1, 140, 1, 139, 1, 141, 1, 138, 1, 142, 1, 141, 1, 137, 1, 138, 1, 140, 1, 143, 1, 139, 1, 140, 1, 144, 1, 143, 1, 145, 1, 142, 1, 146, 1, 145, 1, 141, 1, 142, 1, 144, 1, 147, 1, 143, 1, 144, 1, 148, 1, 147, 1), -"blend_shape_data": [], -"format": 98067, +"attribute_data": PackedByteArray(0, 0, 243, 56, 0, 224, 109, 63, 0, 32, 149, 62, 0, 160, 108, 63, 0, 0, 150, 62, 0, 96, 246, 62, 0, 128, 242, 56, 0, 64, 244, 62, 0, 96, 253, 62, 0, 160, 109, 63, 0, 128, 253, 62, 0, 128, 244, 62, 0, 192, 243, 56, 0, 64, 175, 62, 0, 224, 79, 62, 0, 0, 183, 62, 0, 64, 72, 62, 0, 32, 78, 61, 0, 128, 242, 56, 0, 96, 137, 61, 0, 224, 157, 62, 0, 192, 182, 62, 0, 192, 153, 62, 0, 64, 72, 61, 0, 0, 207, 62, 0, 96, 182, 62, 0, 192, 202, 62, 0, 192, 65, 61, 0, 96, 24, 63, 0, 32, 179, 62, 0, 192, 22, 63, 0, 128, 81, 61, 0, 224, 63, 63, 0, 128, 172, 62, 0, 224, 63, 63, 0, 224, 128, 61, 0, 64, 34, 64, 0, 64, 7, 64, 0, 128, 59, 64, 0, 160, 251, 63, 0, 32, 51, 64, 0, 0, 207, 63, 0, 224, 25, 64, 0, 32, 226, 63, 0, 128, 48, 64, 0, 160, 193, 63, 0, 96, 23, 64, 0, 192, 212, 63, 0, 64, 45, 64, 0, 64, 176, 63, 0, 0, 20, 64, 0, 96, 195, 63, 0, 224, 39, 64, 0, 32, 148, 63, 0, 192, 14, 64, 0, 32, 167, 63, 0, 64, 40, 64, 0, 128, 128, 63, 0, 0, 8, 64, 0, 224, 152, 63, 0, 96, 32, 64, 0, 32, 46, 63, 0, 32, 0, 64, 0, 224, 94, 63, 0, 224, 26, 64, 0, 64, 30, 63, 0, 160, 1, 64, 0, 96, 68, 63, 0, 96, 238, 63, 0, 96, 170, 62, 0, 96, 16, 64, 0, 96, 60, 62, 0, 192, 16, 64, 0, 0, 185, 61, 0, 0, 230, 63, 0, 32, 136, 62, 0, 0, 8, 64, 0, 64, 137, 190, 0, 160, 212, 63, 0, 32, 189, 189, 0, 160, 21, 64, 0, 32, 88, 60, 0, 0, 15, 64, 0, 96, 133, 190, 0, 0, 40, 64, 0, 160, 182, 189, 0, 64, 30, 64, 0, 128, 178, 190, 0, 128, 52, 64, 0, 32, 136, 190, 0, 32, 38, 64, 0, 192, 238, 190, 0, 0, 62, 64, 0, 128, 5, 191, 0, 128, 43, 64, 0, 192, 25, 191, 0, 128, 65, 64, 0, 160, 72, 191, 0, 160, 46, 64, 0, 224, 58, 191, 0, 160, 62, 64, 0, 32, 123, 191, 0, 32, 45, 64, 0, 128, 95, 191, 0, 0, 57, 64, 0, 64, 154, 191, 0, 128, 39, 64, 0, 224, 140, 191, 0, 32, 248, 63, 0, 32, 110, 63, 0, 96, 2, 64, 0, 160, 152, 63, 0, 96, 222, 63, 0, 192, 128, 63, 0, 32, 235, 63, 0, 96, 162, 63, 0, 0, 213, 63, 0, 64, 132, 63, 0, 192, 225, 63, 0, 0, 166, 63, 0, 32, 197, 63, 0, 64, 138, 63, 0, 224, 209, 63, 0, 0, 172, 63, 0, 128, 186, 63, 0, 96, 140, 63, 0, 192, 200, 63, 0, 192, 177, 63, 0, 0, 148, 63, 0, 224, 154, 63, 0, 224, 162, 63, 0, 32, 192, 63, 0, 128, 182, 63, 0, 96, 137, 63, 0, 32, 149, 63, 0, 0, 150, 63, 0, 32, 179, 63, 0, 96, 128, 63, 0, 0, 146, 63, 0, 32, 141, 63, 0, 32, 81, 63, 0, 64, 12, 63, 0, 160, 132, 63, 0, 0, 194, 62, 0, 32, 118, 63, 0, 192, 145, 62, 0, 96, 58, 63, 0, 0, 230, 62, 0, 64, 115, 63, 0, 0, 106, 62, 0, 96, 46, 63, 0, 192, 213, 62, 0, 32, 77, 63, 0, 96, 160, 60, 0, 0, 13, 63, 0, 32, 75, 62, 0, 128, 8, 63, 0, 224, 112, 62, 0, 224, 35, 63, 0, 96, 212, 62, 0, 96, 232, 62, 0, 224, 142, 62, 0, 0, 10, 63, 0, 32, 238, 62, 0, 224, 209, 62, 0, 64, 153, 62, 0, 0, 253, 62, 0, 224, 248, 62, 0, 32, 180, 62, 0, 128, 166, 62, 0, 224, 221, 62, 0, 160, 3, 63, 0, 128, 149, 62, 0, 224, 177, 62, 0, 96, 190, 62, 0, 32, 25, 63, 0, 0, 117, 62, 0, 192, 177, 62, 0, 0, 164, 62, 0, 64, 33, 63, 0, 160, 250, 61, 0, 64, 39, 63, 0, 96, 229, 189, 0, 0, 217, 62, 0, 192, 124, 189, 0, 64, 45, 63, 0, 224, 93, 62, 0, 160, 161, 62, 0, 0, 214, 189, 0, 224, 197, 62, 0, 224, 83, 62, 0, 192, 139, 62, 0, 0, 233, 189, 0, 64, 176, 62, 0, 96, 69, 62, 0, 0, 90, 62, 0, 64, 0, 190, 0, 160, 146, 62, 0, 160, 57, 62, 0, 0, 41, 62, 0, 128, 10, 190, 0, 160, 117, 62, 0, 128, 49, 62, 0, 128, 7, 62, 0, 64, 17, 190, 0, 192, 85, 62, 0, 64, 35, 62, 0, 224, 157, 61, 0, 64, 32, 190, 0, 192, 31, 62, 0, 160, 218, 61, 0, 128, 219, 189, 0, 96, 83, 190, 0, 224, 69, 186, 0, 32, 139, 61, 0, 224, 77, 190, 0, 160, 105, 190, 0, 160, 83, 189, 0, 96, 228, 60, 0, 32, 143, 190, 0, 64, 136, 190, 0, 0, 6, 190, 0, 32, 73, 188, 0, 160, 183, 190, 0, 0, 157, 190, 0, 0, 87, 190, 0, 32, 180, 188, 0, 224, 208, 190, 0, 64, 175, 190, 0, 224, 124, 190, 0, 192, 34, 190, 0, 128, 53, 191, 0, 128, 240, 190, 0, 192, 16, 191, 0, 0, 251, 190, 0, 0, 10, 191, 0, 32, 192, 190, 0, 192, 127, 190, 0, 128, 10, 191, 0, 128, 1, 191, 0, 0, 223, 190, 0, 64, 102, 190, 0, 32, 24, 191, 0, 160, 255, 190, 0, 192, 248, 190, 0, 96, 86, 190, 0, 96, 39, 191, 0, 224, 2, 191, 0, 224, 13, 191, 0, 0, 68, 190, 0, 64, 60, 191, 0, 128, 230, 190, 0, 96, 32, 191, 0, 192, 41, 190, 0, 0, 143, 63, 0, 32, 161, 63, 0, 96, 155, 63, 0, 224, 190, 63, 0, 64, 135, 63, 0, 32, 164, 63, 0, 160, 148, 63, 0, 160, 193, 63, 0, 0, 126, 63, 0, 0, 169, 63, 0, 192, 140, 63, 0, 0, 197, 63, 0, 128, 101, 63, 0, 96, 176, 63, 0, 32, 129, 63, 0, 160, 202, 63, 0, 128, 75, 63, 0, 0, 185, 63, 0, 192, 104, 63, 0, 160, 209, 63, 0, 128, 40, 63, 0, 160, 196, 63, 0, 0, 70, 63, 0, 32, 220, 63, 0, 192, 5, 63, 0, 32, 208, 63, 0, 0, 35, 63, 0, 64, 231, 63, 0, 128, 189, 62, 0, 160, 220, 63, 0, 0, 246, 62, 0, 224, 243, 63, 0, 64, 242, 61, 0, 0, 226, 63, 0, 64, 163, 62, 0, 160, 7, 64, 0, 224, 170, 62, 0, 160, 15, 64, 0, 64, 189, 60, 0, 192, 216, 63, 0, 64, 2, 189, 0, 64, 216, 63, 0, 128, 157, 62, 0, 224, 18, 64, 0, 160, 18, 191, 0, 224, 247, 63, 0, 96, 140, 190, 0, 0, 38, 64, 0, 0, 35, 191, 0, 64, 1, 64, 0, 96, 196, 190, 0, 128, 37, 64, 0, 32, 42, 191, 0, 64, 9, 64, 0, 160, 255, 190, 0, 32, 33, 64, 0, 128, 56, 191, 0, 192, 14, 64, 0, 224, 25, 191, 0, 32, 32, 64, 0, 32, 92, 191, 0, 128, 18, 64, 0, 96, 61, 191, 0, 0, 36, 64, 0, 192, 104, 191, 0, 224, 19, 64, 0, 96, 85, 191, 0, 192, 38, 64, 0, 96, 118, 191, 0, 64, 20, 64, 0, 32, 118, 191, 0, 96, 40, 64, 0, 128, 129, 191, 0, 0, 20, 64, 0, 224, 138, 191, 0, 96, 39, 64, 0, 192, 135, 191, 0, 32, 19, 64, 0, 32, 156, 191, 0, 96, 36, 64, 0, 128, 142, 191, 0, 32, 17, 64, 0, 0, 173, 191, 0, 0, 29, 64, 0, 128, 146, 191, 0, 96, 15, 64, 0, 64, 182, 191, 0, 0, 22, 64, 0, 160, 158, 191, 0, 128, 255, 63, 0, 224, 193, 191, 0, 128, 6, 64, 0, 96, 162, 191, 0, 224, 245, 63, 0, 128, 197, 191, 0, 192, 1, 64, 0, 96, 167, 191, 0, 0, 234, 63, 0, 32, 202, 191, 0, 160, 247, 63, 0, 64, 172, 191, 0, 96, 223, 63, 0, 96, 206, 191, 0, 96, 236, 63, 0, 160, 176, 191, 0, 160, 212, 63, 0, 128, 210, 191, 0, 0, 225, 63, 0, 224, 180, 191, 0, 160, 200, 63, 0, 192, 214, 191, 0, 192, 212, 63, 0, 32, 180, 191, 0, 224, 196, 63, 0, 192, 217, 191, 0, 32, 210, 63, 0, 224, 227, 191, 0, 64, 180, 63, 0, 0, 185, 191, 0, 192, 180, 63, 0, 224, 190, 191, 0, 32, 165, 63, 0, 192, 195, 191, 0, 160, 163, 63, 0, 128, 225, 191, 0, 224, 175, 63, 0, 64, 201, 191, 0, 160, 150, 63, 0, 160, 230, 191, 0, 0, 164, 63, 0, 128, 202, 191, 0, 192, 143, 63, 0, 96, 233, 191, 0, 192, 151, 63, 0, 32, 202, 191, 0, 224, 139, 63, 0, 96, 233, 191, 0, 96, 134, 63, 0, 0, 200, 191, 0, 192, 134, 63, 0, 192, 227, 191, 0, 160, 111, 63, 0, 128, 196, 191, 0, 32, 130, 63, 0, 128, 218, 191, 0, 0, 87, 63, 0, 224, 189, 191, 0, 0, 120, 63, 0, 160, 209, 191, 0, 128, 69, 63, 0, 160, 43, 190, 0, 160, 222, 62, 0, 192, 240, 189, 0, 160, 47, 63, 0, 128, 148, 190, 0, 96, 236, 62, 0, 0, 118, 190, 0, 192, 50, 63, 0, 128, 209, 190, 0, 224, 253, 62, 0, 96, 182, 190, 0, 0, 53, 63, 0, 192, 9, 191, 0, 224, 8, 63, 0, 0, 235, 190, 0, 224, 55, 63, 0, 128, 35, 191, 0, 32, 19, 63, 0, 224, 12, 191, 0, 224, 61, 63, 0, 32, 41, 191, 0, 224, 19, 63, 0, 96, 16, 191, 0, 0, 65, 63, 0, 96, 77, 191, 0, 96, 48, 63, 0, 192, 53, 191, 0, 224, 81, 63, 0, 160, 103, 191, 0, 64, 76, 63, 0, 192, 82, 191, 0, 224, 93, 63, 0, 160, 184, 191, 0, 224, 110, 63, 0, 160, 204, 191, 0, 128, 61, 63, 0, 96, 174, 191, 0, 96, 94, 63, 0, 128, 195, 191, 0, 64, 46, 63, 0, 64, 165, 191, 0, 96, 82, 63, 0, 224, 187, 191, 0, 96, 32, 63, 0, 192, 151, 191, 0, 0, 44, 63, 0, 128, 179, 191, 0, 32, 4, 63, 0, 160, 151, 191, 0, 160, 16, 63, 0, 160, 175, 191, 0, 192, 208, 62, 0, 128, 149, 191, 0, 96, 240, 62, 0, 192, 174, 191, 0, 0, 159, 62, 0, 224, 147, 191, 0, 0, 200, 62, 0, 128, 171, 191, 0, 32, 101, 62, 0, 192, 143, 191, 0, 128, 145, 62, 0, 0, 167, 191, 0, 64, 234, 61, 0, 192, 137, 191, 0, 224, 84, 62, 0, 0, 160, 191, 0, 224, 216, 60, 0, 128, 125, 191, 0, 32, 173, 61, 0, 96, 146, 191, 0, 0, 6, 190, 0, 32, 85, 191, 0, 192, 124, 189, 0, 192, 116, 191, 0, 160, 154, 190, 0, 192, 56, 64, 0, 0, 164, 191, 0, 128, 36, 64, 0, 128, 148, 191, 0, 96, 50, 64, 0, 128, 197, 191, 0, 0, 30, 64, 0, 0, 182, 191, 0, 192, 44, 64, 0, 0, 227, 191, 0, 128, 24, 64, 0, 128, 211, 191, 0, 32, 59, 64, 0, 0, 190, 62, 0, 64, 35, 64, 0, 192, 3, 63, 0, 160, 48, 64, 0, 160, 136, 63, 0, 128, 72, 64, 0, 128, 108, 63, 0, 32, 79, 64, 0, 96, 98, 63, 0, 192, 65, 64, 0, 160, 169, 62, 0, 32, 81, 64, 0, 96, 95, 63, 0, 192, 67, 64, 0, 192, 163, 62, 0, 128, 84, 64, 0, 64, 90, 63, 0, 32, 71, 64, 0, 128, 153, 62, 0, 160, 20, 64, 0, 64, 185, 62, 0, 0, 247, 63, 0, 192, 2, 63, 0, 224, 86, 191, 0, 192, 197, 190, 0, 96, 59, 191, 0, 32, 244, 189, 0, 160, 237, 63, 0, 224, 197, 191, 0, 32, 179, 63, 0, 224, 155, 191, 0, 96, 191, 63, 0, 32, 34, 191, 0, 96, 168, 63, 0, 0, 243, 189, 0, 160, 125, 63, 0, 128, 19, 191, 0, 32, 60, 63, 0, 0, 16, 190, 0, 0, 110, 63, 0, 96, 8, 62, 0, 160, 192, 63, 0, 64, 0, 62, 0, 32, 143, 63, 0, 32, 193, 62, 0, 224, 163, 63, 0, 160, 158, 62, 0, 128, 169, 63, 0, 96, 82, 63, 0, 128, 138, 63, 0, 128, 110, 63, 0, 192, 134, 63, 0, 64, 89, 63, 0, 64, 164, 63, 0, 32, 60, 63, 0, 96, 130, 63, 0, 128, 71, 63, 0, 0, 159, 63, 0, 224, 39, 63, 0, 192, 108, 63, 0, 160, 39, 63, 0, 128, 145, 63, 0, 224, 254, 62, 0, 128, 145, 62, 0, 160, 191, 61, 0, 32, 208, 62, 0, 160, 120, 62, 0, 32, 111, 188, 0, 224, 241, 190, 0, 224, 2, 189, 0, 32, 2, 191, 0, 64, 99, 191, 0, 64, 86, 63, 0, 32, 93, 191, 0, 32, 91, 63, 0, 128, 130, 190, 0, 0, 165, 63, 0, 96, 67, 191, 0, 32, 188, 63, 0, 224, 216, 61, 0, 128, 201, 63, 0, 96, 121, 60, 0, 96, 181, 63, 0, 192, 154, 189, 0, 160, 160, 63, 0, 0, 143, 191, 0, 96, 209, 63, 0, 160, 150, 191, 0, 224, 231, 63, 0, 128, 145, 191, 0, 0, 249, 63, 0, 160, 138, 191, 0, 32, 3, 64, 0, 96, 121, 191, 0, 32, 10, 64, 0, 224, 49, 191, 0, 32, 2, 64, 0, 128, 164, 63, 0, 0, 194, 63, 0, 128, 202, 63, 0, 128, 179, 63, 0, 0, 170, 63, 0, 96, 208, 63, 0, 0, 208, 63, 0, 224, 193, 63, 0, 32, 118, 63, 0, 160, 228, 63, 0, 96, 219, 63, 0, 0, 192, 63, 0, 192, 234, 63, 0, 160, 222, 63, 0, 96, 129, 63, 0, 224, 3, 64, 0, 160, 147, 63, 0, 160, 18, 64, 0, 0, 244, 63, 0, 96, 0, 64, 0, 96, 218, 189, 0, 0, 60, 64, 0, 160, 242, 62, 0, 32, 39, 64, 0, 96, 69, 63, 0, 192, 28, 64, 0, 192, 25, 63, 0, 192, 8, 64, 0, 32, 12, 63, 0, 128, 2, 64, 0, 192, 231, 191, 0, 128, 181, 63, 0, 128, 221, 191, 0, 96, 211, 63, 0, 192, 13, 192, 0, 64, 199, 63, 0, 160, 8, 192, 0, 32, 229, 63, 0, 192, 206, 191, 0, 96, 254, 63, 0, 0, 244, 191, 0, 128, 29, 64, 0, 32, 192, 191, 0, 160, 20, 64, 0, 32, 199, 191, 0, 224, 9, 64, 0, 224, 234, 191, 0, 192, 175, 63, 0, 96, 7, 192, 0, 0, 188, 63, 0, 224, 247, 191, 0, 160, 137, 63, 0, 0, 14, 192, 0, 224, 149, 63, 0, 128, 2, 192, 0, 64, 70, 63, 0, 128, 20, 192, 0, 0, 95, 63, 0, 0, 242, 191, 0, 160, 135, 63, 0, 64, 255, 191, 0, 64, 66, 63, 0, 0, 229, 191, 0, 192, 173, 63, 0, 0, 35, 64, 0, 64, 9, 64, 0, 64, 60, 64, 0, 128, 255, 63, 0, 96, 36, 64, 0, 160, 12, 64, 0, 128, 61, 64, 0, 32, 3, 64, 0, 160, 41, 64, 0, 160, 26, 64, 0, 192, 66, 64, 0, 0, 17, 64, 0, 192, 47, 64, 0, 192, 42, 64, 0, 224, 72, 64, 0, 64, 33, 64, 0, 192, 52, 64, 0, 32, 56, 64, 0, 0, 78, 64, 0, 128, 46, 64, 0, 64, 54, 64, 0, 0, 60, 64, 0, 128, 79, 64, 0, 128, 50, 64, 0, 160, 87, 191, 0, 192, 95, 63, 0, 32, 93, 191, 0, 32, 91, 63, 0, 128, 109, 191, 0, 160, 118, 63, 0, 224, 97, 191, 0, 96, 123, 63, 0, 64, 99, 191, 0, 64, 86, 63, 0, 192, 104, 191, 0, 128, 81, 63, 0, 160, 132, 191, 0, 128, 102, 63, 0, 224, 122, 191, 0, 96, 111, 63, 0, 160, 103, 191, 0, 64, 76, 63, 0, 32, 138, 191, 0, 32, 97, 63, 0, 192, 82, 191, 0, 224, 93, 63, 0, 0, 92, 191, 0, 64, 125, 63, 0, 64, 107, 191, 0, 32, 156, 63, 0, 224, 37, 191, 0, 128, 153, 63, 0, 192, 53, 191, 0, 224, 81, 63, 0, 128, 217, 190, 0, 96, 145, 63, 0, 96, 16, 191, 0, 0, 65, 63, 0, 0, 209, 190, 0, 0, 144, 63, 0, 224, 12, 191, 0, 224, 61, 63, 0, 96, 166, 190, 0, 128, 141, 63, 0, 0, 235, 190, 0, 224, 55, 63, 0, 0, 114, 190, 0, 224, 138, 63, 0, 96, 182, 190, 0, 0, 53, 63, 0, 64, 21, 190, 0, 128, 135, 63, 0, 0, 118, 190, 0, 192, 50, 63, 0, 192, 240, 189, 0, 160, 47, 63, 0, 64, 97, 189, 0, 64, 132, 63, 0, 224, 29, 63, 0, 64, 211, 62, 0, 64, 4, 63, 0, 0, 209, 62, 0, 128, 253, 62, 0, 128, 244, 62, 0, 32, 4, 63, 0, 128, 127, 63, 0, 96, 253, 62, 0, 160, 109, 63, 0, 32, 149, 62, 0, 160, 108, 63, 0, 64, 159, 62, 0, 128, 126, 63, 0, 32, 160, 62, 0, 224, 210, 62, 0, 0, 150, 62, 0, 96, 246, 62, 0, 128, 253, 62, 0, 128, 244, 62, 0, 64, 4, 63, 0, 0, 209, 62, 0, 128, 20, 63, 0, 192, 201, 62, 0, 96, 24, 63, 0, 32, 179, 62, 0, 0, 207, 62, 0, 96, 182, 62, 0, 224, 204, 62, 0, 128, 206, 62, 0, 0, 200, 62, 0, 224, 16, 57, 0, 192, 202, 62, 0, 192, 65, 61, 0, 192, 22, 63, 0, 128, 81, 61, 0, 160, 18, 63, 0, 96, 200, 59, 0, 64, 59, 63, 0, 96, 193, 62, 0, 224, 63, 63, 0, 128, 172, 62, 0, 224, 63, 63, 0, 224, 128, 61, 0, 224, 58, 63, 0, 96, 171, 60, 0, 96, 154, 60, 0, 224, 207, 62, 0, 128, 242, 56, 0, 64, 244, 62, 0, 0, 243, 56, 0, 224, 109, 63, 0, 224, 152, 60, 0, 224, 127, 63, 0, 192, 155, 62, 0, 160, 242, 56, 0, 192, 153, 62, 0, 64, 72, 61, 0, 224, 157, 62, 0, 192, 182, 62, 0, 160, 160, 62, 0, 192, 207, 62, 0, 96, 86, 62, 0, 32, 176, 59, 0, 64, 72, 62, 0, 32, 78, 61, 0, 224, 79, 62, 0, 0, 183, 62, 0, 0, 95, 62, 0, 96, 206, 62, 0, 96, 144, 60, 0, 128, 209, 60, 0, 128, 242, 56, 0, 96, 137, 61, 0, 192, 243, 56, 0, 64, 175, 62, 0, 160, 155, 60, 0, 64, 197, 62), +"format": 4115, "index_count": 1206, -"material": ExtResource( 3 ), +"index_data": PackedByteArray(0, 0, 2, 0, 1, 0, 0, 0, 3, 0, 2, 0, 1, 0, 5, 0, 4, 0, 1, 0, 2, 0, 5, 0, 6, 0, 8, 0, 7, 0, 6, 0, 9, 0, 8, 0, 7, 0, 11, 0, 10, 0, 7, 0, 8, 0, 11, 0, 10, 0, 13, 0, 12, 0, 10, 0, 11, 0, 13, 0, 12, 0, 15, 0, 14, 0, 12, 0, 13, 0, 15, 0, 14, 0, 17, 0, 16, 0, 14, 0, 15, 0, 17, 0, 18, 0, 20, 0, 19, 0, 18, 0, 21, 0, 20, 0, 21, 0, 22, 0, 20, 0, 21, 0, 23, 0, 22, 0, 23, 0, 24, 0, 22, 0, 23, 0, 25, 0, 24, 0, 25, 0, 26, 0, 24, 0, 25, 0, 27, 0, 26, 0, 27, 0, 28, 0, 26, 0, 27, 0, 29, 0, 28, 0, 29, 0, 30, 0, 28, 0, 29, 0, 31, 0, 30, 0, 31, 0, 32, 0, 30, 0, 31, 0, 33, 0, 32, 0, 34, 0, 36, 0, 35, 0, 34, 0, 37, 0, 36, 0, 37, 0, 38, 0, 36, 0, 37, 0, 39, 0, 38, 0, 38, 0, 40, 0, 36, 0, 38, 0, 41, 0, 40, 0, 41, 0, 42, 0, 40, 0, 41, 0, 43, 0, 42, 0, 43, 0, 44, 0, 42, 0, 43, 0, 45, 0, 44, 0, 45, 0, 46, 0, 44, 0, 45, 0, 47, 0, 46, 0, 47, 0, 48, 0, 46, 0, 47, 0, 49, 0, 48, 0, 49, 0, 50, 0, 48, 0, 49, 0, 51, 0, 50, 0, 51, 0, 52, 0, 50, 0, 51, 0, 53, 0, 52, 0, 29, 0, 54, 0, 31, 0, 29, 0, 55, 0, 54, 0, 55, 0, 56, 0, 54, 0, 55, 0, 57, 0, 56, 0, 57, 0, 58, 0, 56, 0, 57, 0, 59, 0, 58, 0, 59, 0, 60, 0, 58, 0, 59, 0, 61, 0, 60, 0, 61, 0, 62, 0, 60, 0, 61, 0, 63, 0, 62, 0, 63, 0, 64, 0, 62, 0, 63, 0, 65, 0, 64, 0, 64, 0, 66, 0, 62, 0, 64, 0, 67, 0, 66, 0, 67, 0, 68, 0, 66, 0, 67, 0, 69, 0, 68, 0, 70, 0, 72, 0, 71, 0, 70, 0, 73, 0, 72, 0, 73, 0, 74, 0, 72, 0, 73, 0, 75, 0, 74, 0, 75, 0, 76, 0, 74, 0, 75, 0, 77, 0, 76, 0, 75, 0, 78, 0, 77, 0, 75, 0, 79, 0, 78, 0, 79, 0, 80, 0, 78, 0, 79, 0, 81, 0, 80, 0, 81, 0, 82, 0, 80, 0, 81, 0, 83, 0, 82, 0, 83, 0, 84, 0, 82, 0, 83, 0, 85, 0, 84, 0, 85, 0, 86, 0, 84, 0, 85, 0, 87, 0, 86, 0, 87, 0, 88, 0, 86, 0, 87, 0, 89, 0, 88, 0, 89, 0, 90, 0, 88, 0, 88, 0, 92, 0, 91, 0, 88, 0, 90, 0, 92, 0, 91, 0, 93, 0, 88, 0, 91, 0, 94, 0, 93, 0, 94, 0, 95, 0, 93, 0, 94, 0, 96, 0, 95, 0, 96, 0, 97, 0, 95, 0, 96, 0, 98, 0, 97, 0, 98, 0, 99, 0, 97, 0, 98, 0, 100, 0, 99, 0, 100, 0, 101, 0, 99, 0, 100, 0, 102, 0, 101, 0, 102, 0, 103, 0, 101, 0, 102, 0, 104, 0, 103, 0, 104, 0, 105, 0, 103, 0, 104, 0, 106, 0, 105, 0, 106, 0, 107, 0, 105, 0, 106, 0, 108, 0, 107, 0, 108, 0, 109, 0, 107, 0, 108, 0, 110, 0, 109, 0, 110, 0, 111, 0, 109, 0, 110, 0, 112, 0, 111, 0, 112, 0, 113, 0, 111, 0, 112, 0, 114, 0, 113, 0, 114, 0, 115, 0, 113, 0, 114, 0, 116, 0, 115, 0, 114, 0, 117, 0, 116, 0, 114, 0, 118, 0, 117, 0, 118, 0, 119, 0, 117, 0, 118, 0, 120, 0, 119, 0, 120, 0, 121, 0, 119, 0, 120, 0, 122, 0, 121, 0, 122, 0, 123, 0, 121, 0, 122, 0, 124, 0, 123, 0, 124, 0, 125, 0, 123, 0, 124, 0, 126, 0, 125, 0, 65, 0, 127, 0, 64, 0, 65, 0, 128, 0, 127, 0, 128, 0, 129, 0, 127, 0, 128, 0, 130, 0, 129, 0, 130, 0, 131, 0, 129, 0, 130, 0, 132, 0, 131, 0, 132, 0, 133, 0, 131, 0, 132, 0, 134, 0, 133, 0, 134, 0, 135, 0, 133, 0, 134, 0, 136, 0, 135, 0, 136, 0, 137, 0, 135, 0, 136, 0, 138, 0, 137, 0, 138, 0, 139, 0, 137, 0, 138, 0, 140, 0, 139, 0, 140, 0, 141, 0, 139, 0, 140, 0, 142, 0, 141, 0, 142, 0, 143, 0, 141, 0, 142, 0, 144, 0, 143, 0, 145, 0, 147, 0, 146, 0, 145, 0, 148, 0, 147, 0, 148, 0, 149, 0, 147, 0, 148, 0, 150, 0, 149, 0, 150, 0, 151, 0, 149, 0, 150, 0, 152, 0, 151, 0, 152, 0, 153, 0, 151, 0, 152, 0, 154, 0, 153, 0, 144, 0, 146, 0, 143, 0, 144, 0, 145, 0, 146, 0, 154, 0, 155, 0, 153, 0, 154, 0, 156, 0, 155, 0, 156, 0, 157, 0, 155, 0, 156, 0, 158, 0, 157, 0, 158, 0, 159, 0, 157, 0, 158, 0, 160, 0, 159, 0, 160, 0, 161, 0, 159, 0, 160, 0, 162, 0, 161, 0, 162, 0, 163, 0, 161, 0, 162, 0, 164, 0, 163, 0, 164, 0, 165, 0, 163, 0, 164, 0, 166, 0, 165, 0, 166, 0, 167, 0, 165, 0, 166, 0, 168, 0, 167, 0, 168, 0, 169, 0, 167, 0, 168, 0, 170, 0, 169, 0, 170, 0, 171, 0, 169, 0, 170, 0, 172, 0, 171, 0, 172, 0, 173, 0, 171, 0, 172, 0, 174, 0, 173, 0, 174, 0, 175, 0, 173, 0, 174, 0, 176, 0, 175, 0, 176, 0, 177, 0, 175, 0, 176, 0, 178, 0, 177, 0, 178, 0, 179, 0, 177, 0, 178, 0, 180, 0, 179, 0, 180, 0, 181, 0, 179, 0, 180, 0, 182, 0, 181, 0, 182, 0, 183, 0, 181, 0, 182, 0, 184, 0, 183, 0, 184, 0, 185, 0, 183, 0, 183, 0, 187, 0, 186, 0, 183, 0, 185, 0, 187, 0, 185, 0, 188, 0, 187, 0, 185, 0, 189, 0, 188, 0, 189, 0, 190, 0, 188, 0, 189, 0, 191, 0, 190, 0, 191, 0, 192, 0, 190, 0, 191, 0, 193, 0, 192, 0, 193, 0, 194, 0, 192, 0, 193, 0, 195, 0, 194, 0, 195, 0, 196, 0, 194, 0, 195, 0, 197, 0, 196, 0, 197, 0, 198, 0, 196, 0, 197, 0, 199, 0, 198, 0, 199, 0, 200, 0, 198, 0, 199, 0, 201, 0, 200, 0, 92, 0, 202, 0, 91, 0, 92, 0, 203, 0, 202, 0, 203, 0, 204, 0, 202, 0, 203, 0, 205, 0, 204, 0, 205, 0, 206, 0, 204, 0, 205, 0, 207, 0, 206, 0, 207, 0, 208, 0, 206, 0, 207, 0, 209, 0, 208, 0, 209, 0, 210, 0, 208, 0, 209, 0, 211, 0, 210, 0, 211, 0, 212, 0, 210, 0, 211, 0, 213, 0, 212, 0, 213, 0, 214, 0, 212, 0, 213, 0, 215, 0, 214, 0, 215, 0, 216, 0, 214, 0, 215, 0, 217, 0, 216, 0, 201, 0, 218, 0, 200, 0, 201, 0, 219, 0, 218, 0, 219, 0, 220, 0, 218, 0, 219, 0, 221, 0, 220, 0, 221, 0, 222, 0, 220, 0, 221, 0, 223, 0, 222, 0, 223, 0, 224, 0, 222, 0, 223, 0, 225, 0, 224, 0, 225, 0, 226, 0, 224, 0, 225, 0, 227, 0, 226, 0, 227, 0, 228, 0, 226, 0, 227, 0, 229, 0, 228, 0, 229, 0, 230, 0, 228, 0, 229, 0, 231, 0, 230, 0, 231, 0, 232, 0, 230, 0, 231, 0, 233, 0, 232, 0, 233, 0, 234, 0, 232, 0, 233, 0, 235, 0, 234, 0, 235, 0, 236, 0, 234, 0, 235, 0, 237, 0, 236, 0, 237, 0, 238, 0, 236, 0, 237, 0, 239, 0, 238, 0, 53, 0, 240, 0, 52, 0, 53, 0, 241, 0, 240, 0, 241, 0, 242, 0, 240, 0, 241, 0, 243, 0, 242, 0, 243, 0, 244, 0, 242, 0, 243, 0, 245, 0, 244, 0, 246, 0, 248, 0, 247, 0, 246, 0, 249, 0, 248, 0, 246, 0, 250, 0, 249, 0, 246, 0, 251, 0, 250, 0, 251, 0, 252, 0, 250, 0, 251, 0, 253, 0, 252, 0, 253, 0, 254, 0, 252, 0, 253, 0, 255, 0, 254, 0, 32, 0, 1, 1, 0, 1, 32, 0, 33, 0, 1, 1, 35, 0, 1, 1, 34, 0, 35, 0, 0, 1, 1, 1, 28, 0, 247, 0, 248, 0, 28, 0, 30, 0, 247, 0, 126, 0, 2, 1, 125, 0, 126, 0, 3, 1, 2, 1, 243, 0, 4, 1, 245, 0, 243, 0, 5, 1, 4, 1, 241, 0, 5, 1, 243, 0, 53, 0, 5, 1, 241, 0, 51, 0, 5, 1, 53, 0, 49, 0, 5, 1, 51, 0, 47, 0, 5, 1, 49, 0, 45, 0, 5, 1, 47, 0, 43, 0, 5, 1, 45, 0, 41, 0, 5, 1, 43, 0, 38, 0, 5, 1, 41, 0, 39, 0, 5, 1, 38, 0, 39, 0, 6, 1, 5, 1, 7, 1, 9, 1, 8, 1, 7, 1, 10, 1, 9, 1, 7, 1, 11, 1, 10, 1, 10, 1, 13, 1, 12, 1, 10, 1, 11, 1, 13, 1, 14, 1, 69, 0, 15, 1, 14, 1, 68, 0, 69, 0, 16, 1, 14, 1, 15, 1, 16, 1, 17, 1, 14, 1, 18, 1, 17, 1, 16, 1, 18, 1, 19, 1, 17, 1, 20, 1, 19, 1, 18, 1, 20, 1, 21, 1, 19, 1, 71, 0, 20, 1, 70, 0, 71, 0, 21, 1, 20, 1, 74, 0, 9, 1, 10, 1, 74, 0, 76, 0, 9, 1, 76, 0, 22, 1, 9, 1, 76, 0, 23, 1, 22, 1, 115, 0, 24, 1, 113, 0, 115, 0, 25, 1, 24, 1, 239, 0, 3, 1, 238, 0, 239, 0, 2, 1, 3, 1, 217, 0, 26, 1, 216, 0, 217, 0, 27, 1, 26, 1, 147, 0, 29, 1, 28, 1, 147, 0, 149, 0, 29, 1, 147, 0, 28, 1, 30, 1, 31, 1, 28, 1, 32, 1, 30, 1, 28, 1, 31, 1, 29, 1, 149, 0, 33, 1, 33, 1, 35, 1, 34, 1, 35, 1, 37, 1, 36, 1, 37, 1, 149, 0, 38, 1, 33, 1, 149, 0, 35, 1, 35, 1, 149, 0, 37, 1, 63, 0, 39, 1, 65, 0, 63, 0, 40, 1, 39, 1, 40, 1, 41, 1, 39, 1, 40, 1, 42, 1, 41, 1, 42, 1, 43, 1, 41, 1, 42, 1, 44, 1, 43, 1, 44, 1, 45, 1, 43, 1, 43, 1, 47, 1, 46, 1, 47, 1, 45, 1, 48, 1, 43, 1, 45, 1, 47, 1, 148, 0, 49, 1, 150, 0, 148, 0, 50, 1, 49, 1, 148, 0, 51, 1, 50, 1, 148, 0, 52, 1, 51, 1, 145, 0, 52, 1, 148, 0, 145, 0, 53, 1, 52, 1, 184, 0, 54, 1, 185, 0, 184, 0, 55, 1, 54, 1, 55, 1, 56, 1, 54, 1, 55, 1, 57, 1, 56, 1, 55, 1, 58, 1, 57, 1, 57, 1, 60, 1, 59, 1, 60, 1, 58, 1, 61, 1, 57, 1, 58, 1, 60, 1, 56, 1, 62, 1, 54, 1, 56, 1, 63, 1, 62, 1, 63, 1, 64, 1, 62, 1, 63, 1, 65, 1, 64, 1, 65, 1, 66, 1, 64, 1, 65, 1, 67, 1, 66, 1, 66, 1, 68, 1, 64, 1, 66, 1, 69, 1, 68, 1, 64, 1, 70, 1, 62, 1, 64, 1, 68, 1, 70, 1, 19, 0, 71, 1, 18, 0, 19, 0, 72, 1, 71, 1, 72, 1, 73, 1, 71, 1, 72, 1, 74, 1, 73, 1, 74, 1, 75, 1, 73, 1, 74, 1, 76, 1, 75, 1, 76, 1, 77, 1, 75, 1, 76, 1, 78, 1, 77, 1, 78, 1, 79, 1, 77, 1, 78, 1, 80, 1, 79, 1, 80, 1, 81, 1, 79, 1, 80, 1, 82, 1, 81, 1, 83, 1, 85, 1, 84, 1, 83, 1, 86, 1, 85, 1, 87, 1, 89, 1, 88, 1, 87, 1, 90, 1, 89, 1, 84, 1, 90, 1, 87, 1, 84, 1, 85, 1, 90, 1, 88, 1, 92, 1, 91, 1, 88, 1, 89, 1, 92, 1, 93, 1, 86, 1, 83, 1, 93, 1, 94, 1, 86, 1, 83, 1, 84, 1, 93, 1, 88, 1, 91, 1, 87, 1, 93, 1, 96, 1, 95, 1, 93, 1, 97, 1, 96, 1, 97, 1, 98, 1, 96, 1, 97, 1, 99, 1, 98, 1, 99, 1, 100, 1, 98, 1, 99, 1, 101, 1, 100, 1, 101, 1, 102, 1, 100, 1, 101, 1, 103, 1, 102, 1, 103, 1, 104, 1, 102, 1, 103, 1, 105, 1, 104, 1, 105, 1, 106, 1, 104, 1, 105, 1, 107, 1, 106, 1, 108, 1, 106, 1, 107, 1, 108, 1, 109, 1, 106, 1, 110, 1, 112, 1, 111, 1, 113, 1, 115, 1, 114, 1, 113, 1, 116, 1, 115, 1, 117, 1, 119, 1, 118, 1, 117, 1, 120, 1, 119, 1, 121, 1, 123, 1, 122, 1, 121, 1, 124, 1, 123, 1, 125, 1, 127, 1, 126, 1, 125, 1, 128, 1, 127, 1, 129, 1, 122, 1, 130, 1, 129, 1, 121, 1, 122, 1, 128, 1, 131, 1, 127, 1, 128, 1, 132, 1, 131, 1, 133, 1, 118, 1, 134, 1, 133, 1, 117, 1, 118, 1, 116, 1, 135, 1, 115, 1, 116, 1, 136, 1, 135, 1, 137, 1, 126, 1, 138, 1, 137, 1, 125, 1, 126, 1, 124, 1, 139, 1, 123, 1, 124, 1, 140, 1, 139, 1, 141, 1, 138, 1, 142, 1, 141, 1, 137, 1, 138, 1, 140, 1, 143, 1, 139, 1, 140, 1, 144, 1, 143, 1, 145, 1, 142, 1, 146, 1, 145, 1, 141, 1, 142, 1, 144, 1, 147, 1, 143, 1, 144, 1, 148, 1, 147, 1), +"material": ExtResource( "3" ), "name": "Cement", -"primitive": 4, -"skeleton_aabb": [], -"vertex_count": 405 -} +"primitive": 3, +"vertex_count": 405, +"vertex_data": PackedByteArray(0, 0, 128, 191, 0, 96, 40, 63, 0, 192, 181, 192, 0, 0, 0, 0, 0, 0, 128, 191, 0, 224, 119, 63, 0, 64, 222, 192, 0, 0, 0, 0, 0, 0, 128, 63, 0, 224, 119, 63, 0, 64, 222, 192, 0, 0, 0, 0, 0, 0, 128, 63, 0, 96, 40, 63, 0, 192, 181, 192, 0, 0, 0, 0, 0, 0, 128, 191, 0, 32, 160, 63, 0, 192, 249, 192, 0, 0, 0, 0, 0, 0, 128, 63, 0, 32, 160, 63, 0, 192, 249, 192, 0, 0, 0, 0, 0, 128, 172, 192, 0, 128, 155, 63, 0, 96, 181, 192, 0, 0, 0, 0, 0, 128, 172, 192, 0, 96, 173, 63, 0, 224, 206, 192, 0, 0, 0, 0, 0, 160, 130, 192, 0, 96, 173, 63, 0, 224, 206, 192, 0, 0, 0, 0, 0, 160, 130, 192, 0, 128, 155, 63, 0, 96, 181, 192, 0, 0, 0, 0, 0, 128, 172, 192, 0, 192, 173, 63, 0, 64, 225, 192, 0, 0, 0, 2, 0, 160, 130, 192, 0, 192, 173, 63, 0, 64, 225, 192, 0, 0, 0, 2, 0, 128, 172, 192, 0, 64, 169, 63, 0, 96, 238, 192, 0, 0, 128, 6, 0, 160, 130, 192, 0, 64, 169, 63, 0, 96, 238, 192, 0, 0, 128, 6, 0, 128, 172, 192, 0, 32, 157, 63, 0, 64, 2, 193, 0, 0, 128, 7, 0, 160, 130, 192, 0, 32, 157, 63, 0, 64, 2, 193, 0, 0, 128, 7, 0, 128, 172, 192, 0, 64, 148, 63, 0, 64, 12, 193, 0, 0, 128, 6, 0, 160, 130, 192, 0, 64, 148, 63, 0, 64, 12, 193, 0, 0, 128, 6, 0, 0, 128, 191, 0, 0, 0, 0, 0, 0, 128, 63, 0, 152, 159, 12, 0, 0, 128, 63, 0, 0, 0, 0, 0, 0, 128, 63, 0, 152, 159, 12, 0, 0, 128, 63, 0, 0, 222, 187, 0, 0, 69, 191, 0, 216, 15, 5, 0, 0, 128, 191, 0, 0, 222, 187, 0, 0, 69, 191, 0, 216, 15, 5, 0, 0, 128, 63, 0, 128, 166, 61, 0, 64, 165, 191, 0, 120, 159, 14, 0, 0, 128, 191, 0, 128, 166, 61, 0, 64, 165, 191, 0, 120, 159, 14, 0, 0, 128, 63, 0, 32, 149, 62, 0, 96, 249, 191, 0, 248, 174, 21, 0, 0, 128, 191, 0, 32, 149, 62, 0, 96, 249, 191, 0, 248, 174, 21, 0, 0, 128, 63, 0, 160, 57, 63, 0, 160, 62, 192, 0, 248, 174, 21, 0, 0, 128, 191, 0, 160, 57, 63, 0, 160, 62, 192, 0, 248, 174, 21, 0, 160, 163, 63, 0, 160, 109, 63, 0, 160, 103, 192, 0, 216, 15, 4, 0, 160, 163, 191, 0, 160, 109, 63, 0, 160, 103, 192, 0, 216, 143, 5, 0, 160, 163, 63, 0, 160, 109, 63, 0, 96, 168, 192, 0, 216, 15, 1, 0, 160, 163, 191, 0, 160, 109, 63, 0, 96, 168, 192, 0, 216, 143, 1, 0, 0, 128, 63, 0, 160, 122, 63, 0, 192, 181, 192, 0, 184, 159, 10, 0, 0, 128, 191, 0, 160, 122, 63, 0, 192, 181, 192, 0, 184, 159, 10, 0, 0, 128, 191, 0, 64, 201, 63, 0, 192, 249, 192, 0, 56, 175, 18, 0, 0, 128, 63, 0, 64, 201, 63, 0, 192, 249, 192, 0, 56, 175, 18, 0, 0, 151, 63, 0, 160, 215, 63, 0, 32, 3, 193, 0, 216, 15, 5, 0, 0, 151, 191, 0, 160, 215, 63, 0, 32, 3, 193, 0, 216, 15, 7, 0, 0, 151, 63, 0, 160, 215, 63, 0, 64, 32, 193, 0, 248, 15, 0, 0, 0, 151, 191, 0, 160, 215, 63, 0, 64, 32, 193, 0, 248, 15, 0, 0, 0, 211, 63, 0, 160, 215, 63, 0, 128, 6, 193, 0, 216, 15, 0, 0, 0, 211, 63, 0, 160, 215, 63, 0, 192, 28, 193, 0, 216, 15, 0, 0, 0, 68, 64, 0, 96, 0, 64, 0, 160, 6, 193, 0, 152, 15, 0, 0, 128, 54, 64, 0, 160, 215, 63, 0, 160, 28, 193, 0, 216, 15, 0, 0, 128, 135, 64, 0, 96, 0, 64, 0, 192, 13, 193, 0, 120, 15, 0, 0, 160, 102, 64, 0, 160, 215, 63, 0, 160, 33, 193, 0, 184, 15, 0, 0, 128, 170, 64, 0, 96, 0, 64, 0, 0, 28, 193, 0, 120, 15, 0, 0, 96, 134, 64, 0, 160, 215, 63, 0, 0, 41, 193, 0, 184, 15, 0, 0, 32, 192, 64, 0, 96, 0, 64, 0, 64, 45, 193, 0, 120, 15, 0, 0, 64, 148, 64, 0, 160, 215, 63, 0, 224, 48, 193, 0, 184, 15, 0, 0, 0, 197, 64, 0, 160, 215, 63, 0, 160, 59, 193, 0, 216, 15, 0, 0, 128, 152, 64, 0, 160, 215, 63, 0, 160, 59, 193, 0, 216, 15, 0, 0, 0, 197, 64, 0, 160, 215, 63, 0, 0, 78, 193, 0, 248, 15, 0, 0, 128, 152, 64, 0, 160, 215, 63, 0, 32, 78, 193, 0, 248, 15, 0, 0, 96, 213, 191, 0, 160, 109, 63, 0, 128, 163, 192, 0, 248, 15, 0, 0, 96, 213, 191, 0, 160, 109, 63, 0, 128, 113, 192, 0, 248, 15, 0, 0, 224, 43, 192, 0, 160, 109, 63, 0, 128, 163, 192, 64, 216, 15, 0, 0, 224, 43, 192, 0, 160, 109, 63, 0, 128, 113, 192, 64, 216, 15, 0, 0, 96, 67, 192, 0, 160, 122, 63, 0, 128, 163, 192, 66, 25, 15, 0, 0, 96, 67, 192, 0, 160, 122, 63, 0, 128, 113, 192, 66, 25, 15, 0, 0, 128, 102, 192, 0, 32, 165, 63, 0, 128, 163, 192, 82, 249, 14, 0, 0, 128, 102, 192, 0, 32, 165, 63, 0, 128, 113, 192, 82, 249, 14, 0, 0, 64, 127, 192, 0, 128, 174, 63, 0, 160, 165, 192, 64, 216, 15, 0, 0, 64, 127, 192, 0, 128, 174, 63, 0, 96, 108, 192, 48, 216, 15, 0, 0, 160, 175, 192, 0, 128, 174, 63, 0, 160, 165, 192, 0, 248, 15, 0, 0, 160, 175, 192, 0, 128, 174, 63, 0, 96, 108, 192, 0, 248, 15, 0, 0, 160, 130, 192, 0, 128, 174, 63, 0, 128, 170, 192, 0, 216, 15, 5, 0, 128, 172, 192, 0, 128, 174, 63, 0, 128, 170, 192, 0, 216, 15, 5, 0, 160, 130, 192, 0, 128, 183, 63, 0, 96, 181, 192, 0, 152, 159, 11, 0, 128, 172, 192, 0, 128, 183, 63, 0, 96, 181, 192, 0, 152, 159, 11, 0, 128, 172, 192, 0, 64, 176, 63, 0, 64, 12, 193, 0, 88, 15, 0, 0, 160, 130, 192, 0, 64, 176, 63, 0, 64, 12, 193, 0, 88, 15, 0, 0, 160, 130, 192, 0, 32, 145, 63, 0, 224, 20, 193, 0, 24, 15, 0, 0, 128, 172, 192, 0, 32, 145, 63, 0, 224, 20, 193, 0, 24, 15, 0, 0, 32, 126, 192, 0, 32, 137, 63, 0, 192, 24, 193, 0, 216, 15, 0, 0, 32, 176, 192, 0, 32, 137, 63, 0, 192, 24, 193, 0, 216, 15, 0, 0, 32, 126, 192, 0, 32, 137, 63, 0, 64, 45, 193, 0, 152, 15, 1, 0, 32, 176, 192, 0, 32, 137, 63, 0, 64, 45, 193, 0, 248, 15, 0, 0, 160, 181, 192, 0, 32, 137, 63, 0, 128, 43, 193, 32, 216, 15, 0, 0, 160, 181, 192, 0, 32, 137, 63, 0, 160, 26, 193, 32, 216, 15, 0, 0, 224, 196, 192, 0, 128, 142, 63, 0, 192, 43, 193, 225, 120, 143, 0, 0, 160, 199, 192, 0, 128, 142, 63, 0, 0, 27, 193, 225, 120, 15, 1, 0, 96, 204, 192, 0, 64, 154, 63, 0, 32, 44, 193, 178, 89, 14, 2, 0, 32, 207, 192, 0, 64, 154, 63, 0, 64, 27, 193, 178, 89, 14, 2, 0, 160, 213, 192, 0, 160, 175, 63, 0, 128, 44, 193, 146, 153, 14, 2, 0, 96, 216, 192, 0, 160, 175, 63, 0, 160, 27, 193, 130, 185, 14, 2, 0, 224, 223, 192, 0, 32, 190, 63, 0, 32, 45, 193, 169, 184, 15, 1, 0, 224, 230, 192, 0, 32, 190, 63, 0, 0, 24, 193, 144, 184, 15, 1, 0, 96, 232, 192, 0, 128, 192, 63, 0, 64, 47, 193, 16, 248, 15, 0, 0, 128, 240, 192, 0, 128, 192, 63, 0, 160, 23, 193, 24, 248, 15, 0, 0, 32, 8, 193, 0, 128, 192, 63, 0, 32, 27, 193, 0, 248, 15, 0, 0, 64, 20, 193, 0, 128, 192, 63, 0, 32, 54, 193, 0, 248, 15, 0, 0, 96, 24, 193, 0, 128, 192, 63, 0, 160, 30, 193, 0, 248, 15, 0, 0, 160, 233, 192, 0, 128, 192, 63, 0, 160, 50, 193, 16, 216, 15, 0, 0, 64, 18, 193, 0, 128, 192, 63, 0, 0, 57, 193, 16, 216, 15, 0, 0, 0, 232, 192, 0, 64, 185, 63, 0, 128, 54, 193, 64, 24, 15, 0, 0, 96, 17, 193, 0, 64, 185, 63, 0, 192, 60, 193, 64, 24, 15, 0, 0, 224, 229, 192, 0, 160, 166, 63, 0, 96, 59, 193, 112, 84, 13, 0, 0, 96, 16, 193, 0, 160, 166, 63, 0, 192, 65, 193, 112, 84, 13, 0, 0, 128, 228, 192, 0, 32, 143, 63, 0, 192, 62, 193, 112, 116, 13, 0, 0, 160, 15, 193, 0, 32, 143, 63, 0, 0, 69, 193, 112, 116, 13, 0, 0, 64, 227, 192, 0, 128, 133, 63, 0, 128, 65, 193, 48, 88, 15, 0, 0, 32, 15, 193, 0, 128, 133, 63, 0, 192, 71, 193, 48, 88, 15, 0, 0, 32, 225, 192, 0, 64, 129, 63, 0, 128, 70, 193, 8, 216, 15, 0, 0, 0, 14, 193, 0, 64, 129, 63, 0, 192, 76, 193, 8, 216, 15, 0, 0, 32, 218, 192, 0, 64, 129, 63, 0, 0, 87, 193, 0, 248, 15, 0, 0, 224, 10, 193, 0, 64, 129, 63, 0, 32, 91, 193, 0, 248, 15, 0, 0, 128, 216, 192, 0, 64, 129, 63, 0, 96, 96, 193, 0, 152, 15, 0, 0, 96, 10, 193, 0, 64, 129, 63, 0, 64, 96, 193, 0, 152, 15, 0, 0, 128, 216, 192, 0, 64, 80, 63, 0, 224, 103, 193, 0, 24, 15, 0, 0, 96, 10, 193, 0, 64, 80, 63, 0, 160, 103, 193, 0, 24, 15, 0, 0, 128, 216, 192, 0, 224, 47, 63, 0, 192, 111, 193, 0, 216, 15, 0, 0, 96, 10, 193, 0, 224, 47, 63, 0, 128, 111, 193, 0, 216, 15, 0, 0, 0, 214, 192, 0, 224, 47, 63, 0, 64, 116, 193, 0, 248, 15, 0, 0, 160, 11, 193, 0, 224, 47, 63, 0, 0, 116, 193, 0, 248, 15, 0, 0, 0, 214, 192, 0, 224, 47, 63, 0, 192, 137, 193, 0, 248, 15, 0, 0, 160, 11, 193, 0, 224, 47, 63, 0, 192, 137, 193, 0, 248, 15, 0, 0, 64, 14, 193, 0, 224, 47, 63, 0, 224, 136, 193, 0, 216, 15, 0, 0, 64, 14, 193, 0, 224, 47, 63, 0, 128, 117, 193, 0, 216, 15, 0, 0, 224, 19, 193, 0, 96, 26, 63, 0, 64, 136, 193, 0, 24, 15, 0, 0, 0, 20, 193, 0, 128, 30, 63, 0, 128, 117, 193, 0, 24, 15, 0, 0, 64, 24, 193, 0, 64, 246, 62, 0, 224, 136, 193, 0, 116, 13, 0, 0, 64, 24, 193, 0, 0, 247, 62, 0, 128, 117, 193, 0, 148, 13, 0, 0, 0, 28, 193, 0, 224, 151, 62, 0, 64, 138, 193, 0, 248, 13, 0, 0, 160, 29, 193, 0, 96, 126, 62, 0, 128, 117, 193, 0, 248, 13, 0, 0, 64, 36, 193, 0, 32, 189, 61, 0, 224, 136, 193, 0, 120, 15, 0, 0, 64, 36, 193, 0, 32, 189, 61, 0, 128, 117, 193, 0, 152, 15, 0, 0, 96, 183, 192, 0, 128, 174, 63, 0, 224, 160, 192, 0, 216, 15, 0, 0, 96, 183, 192, 0, 128, 174, 63, 0, 192, 117, 192, 0, 216, 15, 0, 0, 32, 192, 192, 0, 64, 169, 63, 0, 224, 160, 192, 0, 248, 14, 0, 0, 32, 192, 192, 0, 64, 169, 63, 0, 192, 117, 192, 0, 248, 14, 0, 0, 192, 201, 192, 0, 96, 146, 63, 0, 224, 160, 192, 0, 184, 13, 0, 0, 192, 201, 192, 0, 96, 146, 63, 0, 192, 117, 192, 0, 184, 13, 0, 0, 160, 216, 192, 0, 64, 98, 63, 0, 224, 160, 192, 0, 88, 14, 0, 0, 160, 216, 192, 0, 64, 98, 63, 0, 192, 117, 192, 0, 88, 14, 0, 0, 96, 235, 192, 0, 224, 39, 63, 0, 224, 160, 192, 0, 24, 15, 0, 0, 96, 235, 192, 0, 224, 39, 63, 0, 192, 117, 192, 0, 24, 15, 0, 0, 64, 3, 193, 0, 96, 219, 62, 0, 224, 160, 192, 0, 88, 15, 0, 0, 64, 3, 193, 0, 96, 219, 62, 0, 192, 117, 192, 0, 88, 15, 0, 0, 64, 17, 193, 0, 0, 86, 62, 0, 224, 160, 192, 0, 152, 15, 0, 0, 64, 17, 193, 0, 0, 86, 62, 0, 192, 117, 192, 0, 152, 15, 0, 0, 64, 33, 193, 0, 0, 29, 61, 0, 224, 160, 192, 0, 216, 15, 0, 0, 64, 33, 193, 0, 0, 29, 61, 0, 192, 117, 192, 0, 216, 15, 0, 0, 224, 54, 193, 0, 32, 81, 189, 0, 224, 178, 192, 0, 248, 15, 0, 0, 224, 54, 193, 0, 32, 81, 189, 0, 192, 81, 192, 0, 248, 15, 0, 0, 32, 59, 193, 0, 32, 81, 189, 0, 0, 40, 192, 0, 248, 15, 0, 0, 32, 59, 193, 0, 32, 81, 189, 0, 192, 199, 192, 0, 248, 15, 0, 0, 128, 63, 193, 0, 32, 81, 189, 0, 192, 205, 192, 0, 248, 15, 0, 0, 128, 63, 193, 0, 32, 81, 189, 0, 0, 28, 192, 0, 248, 15, 0, 0, 64, 119, 193, 0, 32, 81, 189, 0, 192, 205, 192, 0, 248, 143, 0, 0, 64, 119, 193, 0, 32, 81, 189, 0, 0, 28, 192, 0, 248, 15, 0, 0, 160, 127, 193, 0, 32, 81, 189, 0, 128, 196, 192, 0, 248, 15, 0, 0, 160, 127, 193, 0, 32, 81, 189, 0, 128, 46, 192, 0, 248, 15, 0, 0, 32, 131, 193, 0, 32, 81, 189, 0, 192, 177, 192, 0, 248, 15, 0, 0, 32, 131, 193, 0, 32, 81, 189, 0, 32, 84, 192, 0, 248, 15, 0, 0, 0, 135, 193, 0, 32, 81, 189, 0, 224, 167, 192, 0, 248, 15, 0, 0, 0, 135, 193, 0, 32, 81, 189, 0, 192, 103, 192, 0, 248, 15, 0, 0, 160, 141, 193, 0, 32, 81, 189, 0, 224, 167, 192, 177, 152, 15, 0, 0, 160, 141, 193, 0, 32, 81, 189, 0, 192, 103, 192, 177, 152, 15, 0, 0, 224, 143, 193, 0, 32, 81, 189, 0, 192, 167, 192, 50, 249, 14, 0, 0, 96, 145, 193, 0, 192, 117, 62, 0, 32, 104, 192, 50, 25, 15, 0, 0, 32, 146, 193, 0, 32, 81, 189, 0, 0, 170, 192, 201, 56, 15, 0, 0, 192, 150, 193, 0, 192, 232, 62, 0, 160, 114, 192, 201, 56, 15, 0, 0, 32, 148, 193, 0, 32, 81, 189, 0, 0, 174, 192, 161, 56, 15, 0, 0, 128, 155, 193, 0, 192, 232, 62, 0, 96, 131, 192, 169, 56, 15, 0, 0, 224, 149, 193, 0, 32, 81, 189, 0, 32, 179, 192, 161, 56, 15, 0, 0, 64, 160, 193, 0, 192, 232, 62, 0, 192, 147, 192, 161, 56, 15, 0, 0, 128, 151, 193, 0, 32, 81, 189, 0, 192, 187, 192, 88, 24, 15, 0, 0, 0, 164, 193, 0, 192, 117, 62, 0, 160, 173, 192, 80, 24, 15, 0, 0, 96, 152, 193, 0, 32, 81, 189, 0, 32, 194, 192, 16, 152, 15, 0, 0, 96, 165, 193, 0, 32, 81, 189, 0, 64, 194, 192, 16, 184, 15, 0, 0, 96, 152, 193, 0, 32, 81, 189, 0, 192, 239, 192, 0, 216, 143, 5, 0, 96, 165, 193, 0, 32, 81, 189, 0, 0, 240, 192, 0, 216, 143, 5, 0, 96, 152, 193, 0, 224, 252, 60, 0, 160, 253, 192, 0, 56, 159, 17, 0, 96, 165, 193, 0, 224, 252, 60, 0, 192, 253, 192, 0, 56, 159, 17, 0, 96, 152, 193, 0, 64, 119, 62, 0, 0, 7, 193, 0, 56, 62, 28, 0, 96, 165, 193, 0, 64, 119, 62, 0, 32, 7, 193, 0, 56, 190, 28, 0, 96, 152, 193, 0, 192, 2, 63, 0, 32, 14, 193, 0, 88, 190, 27, 0, 96, 165, 193, 0, 192, 2, 63, 0, 64, 14, 193, 0, 88, 190, 27, 0, 96, 152, 193, 0, 160, 50, 63, 0, 0, 22, 193, 0, 88, 159, 15, 0, 96, 165, 193, 0, 160, 50, 63, 0, 32, 22, 193, 0, 88, 159, 15, 0, 96, 152, 193, 0, 160, 71, 63, 0, 64, 31, 193, 0, 216, 143, 3, 0, 96, 165, 193, 0, 160, 71, 63, 0, 64, 31, 193, 0, 216, 143, 3, 0, 160, 151, 193, 0, 160, 71, 63, 0, 160, 33, 193, 0, 248, 15, 0, 0, 0, 166, 193, 0, 160, 71, 63, 0, 192, 33, 193, 0, 248, 15, 0, 0, 0, 166, 193, 0, 160, 71, 63, 0, 32, 57, 193, 0, 248, 15, 0, 0, 160, 151, 193, 0, 160, 71, 63, 0, 96, 45, 193, 0, 248, 15, 0, 0, 160, 151, 193, 0, 160, 71, 63, 0, 0, 57, 193, 0, 248, 15, 0, 0, 0, 153, 193, 0, 160, 71, 63, 0, 64, 59, 193, 0, 248, 15, 0, 0, 160, 164, 193, 0, 160, 71, 63, 0, 96, 59, 193, 0, 248, 15, 0, 0, 0, 153, 193, 0, 160, 71, 63, 0, 32, 69, 193, 0, 248, 15, 0, 0, 160, 164, 193, 0, 160, 71, 63, 0, 64, 69, 193, 0, 248, 15, 0, 0, 64, 152, 193, 0, 160, 71, 63, 0, 0, 74, 193, 0, 248, 15, 0, 0, 160, 163, 193, 0, 160, 71, 63, 0, 192, 78, 193, 0, 248, 15, 0, 0, 128, 151, 193, 0, 160, 71, 63, 0, 96, 76, 193, 0, 248, 15, 0, 0, 128, 160, 193, 0, 160, 71, 63, 0, 32, 91, 193, 0, 248, 15, 0, 0, 224, 149, 193, 0, 160, 71, 63, 0, 192, 78, 193, 0, 248, 15, 0, 0, 160, 155, 193, 0, 160, 71, 63, 0, 0, 99, 193, 0, 248, 15, 0, 0, 224, 147, 193, 0, 160, 71, 63, 0, 64, 80, 193, 0, 248, 15, 0, 0, 192, 149, 193, 0, 160, 71, 63, 0, 64, 103, 193, 0, 248, 15, 0, 0, 192, 144, 193, 0, 160, 71, 63, 0, 64, 81, 193, 0, 216, 15, 0, 0, 192, 144, 193, 0, 160, 71, 63, 0, 160, 104, 193, 0, 184, 15, 0, 0, 128, 25, 193, 0, 128, 192, 63, 0, 64, 55, 193, 112, 216, 15, 1, 0, 160, 29, 193, 0, 128, 192, 63, 0, 192, 31, 193, 112, 216, 15, 1, 0, 32, 37, 193, 0, 0, 215, 63, 0, 224, 57, 193, 50, 25, 15, 3, 0, 32, 41, 193, 0, 0, 215, 63, 0, 64, 34, 193, 42, 57, 15, 3, 0, 192, 48, 193, 0, 0, 254, 63, 0, 128, 60, 193, 114, 185, 14, 3, 0, 192, 52, 193, 0, 0, 254, 63, 0, 224, 36, 193, 114, 185, 14, 3, 0, 128, 62, 193, 0, 32, 19, 64, 0, 128, 63, 193, 17, 89, 15, 1, 0, 32, 64, 193, 0, 32, 19, 64, 0, 160, 39, 193, 33, 57, 143, 1, 0, 32, 75, 193, 0, 32, 28, 64, 0, 32, 66, 193, 72, 216, 15, 0, 0, 32, 75, 193, 0, 32, 28, 64, 0, 32, 42, 193, 88, 216, 15, 0, 0, 96, 77, 193, 0, 32, 28, 64, 0, 96, 67, 193, 0, 248, 15, 0, 0, 96, 77, 193, 0, 32, 28, 64, 0, 224, 40, 193, 0, 248, 15, 0, 0, 64, 103, 193, 0, 32, 28, 64, 0, 96, 67, 193, 0, 248, 15, 0, 0, 64, 103, 193, 0, 32, 28, 64, 0, 224, 40, 193, 0, 248, 15, 0, 0, 32, 130, 193, 0, 32, 28, 64, 0, 96, 67, 193, 0, 248, 15, 0, 0, 32, 130, 193, 0, 32, 28, 64, 0, 224, 40, 193, 0, 248, 15, 0, 0, 96, 142, 193, 0, 96, 90, 63, 0, 64, 81, 193, 0, 152, 15, 0, 0, 96, 142, 193, 0, 96, 90, 63, 0, 160, 104, 193, 0, 152, 15, 0, 0, 192, 137, 193, 0, 96, 110, 63, 0, 64, 81, 193, 32, 216, 15, 0, 0, 224, 137, 193, 0, 96, 110, 63, 0, 160, 104, 193, 32, 216, 15, 0, 0, 32, 134, 193, 0, 96, 85, 63, 0, 64, 81, 193, 17, 89, 15, 0, 0, 32, 134, 193, 0, 96, 85, 63, 0, 160, 104, 193, 25, 57, 15, 0, 0, 128, 127, 193, 0, 128, 10, 63, 0, 32, 83, 193, 114, 185, 14, 0, 0, 128, 127, 193, 0, 128, 10, 63, 0, 128, 106, 193, 130, 185, 14, 0, 0, 0, 119, 193, 0, 32, 157, 62, 0, 160, 86, 193, 114, 217, 14, 0, 0, 0, 119, 193, 0, 32, 157, 62, 0, 0, 110, 193, 82, 249, 14, 0, 0, 192, 111, 193, 0, 128, 46, 62, 0, 192, 91, 193, 138, 153, 14, 0, 0, 192, 111, 193, 0, 128, 46, 62, 0, 32, 115, 193, 227, 249, 13, 0, 0, 224, 105, 193, 0, 0, 170, 189, 0, 0, 95, 193, 35, 86, 13, 0, 0, 224, 105, 193, 0, 0, 170, 189, 0, 96, 118, 193, 19, 150, 13, 0, 0, 96, 96, 193, 0, 160, 201, 190, 0, 160, 99, 193, 98, 217, 14, 0, 0, 224, 98, 193, 0, 224, 192, 190, 0, 192, 122, 193, 25, 57, 15, 0, 0, 160, 87, 193, 0, 0, 240, 190, 0, 160, 102, 193, 80, 216, 15, 0, 0, 224, 90, 193, 0, 160, 228, 190, 0, 192, 125, 193, 56, 216, 15, 0, 0, 160, 74, 193, 0, 96, 236, 190, 0, 64, 109, 193, 0, 216, 15, 1, 0, 96, 77, 193, 0, 0, 227, 190, 0, 32, 130, 193, 0, 216, 15, 1, 0, 64, 55, 193, 0, 128, 177, 190, 0, 64, 115, 193, 0, 56, 143, 1, 0, 64, 58, 193, 0, 32, 167, 190, 0, 0, 134, 193, 0, 248, 142, 1, 0, 192, 200, 64, 0, 160, 215, 63, 0, 128, 83, 193, 0, 248, 15, 0, 0, 224, 148, 64, 0, 160, 215, 63, 0, 160, 83, 193, 0, 248, 15, 0, 0, 192, 200, 64, 0, 160, 215, 63, 0, 224, 104, 193, 0, 248, 15, 0, 0, 224, 148, 64, 0, 160, 215, 63, 0, 0, 105, 193, 0, 248, 15, 0, 0, 192, 200, 64, 0, 160, 215, 63, 0, 160, 123, 193, 0, 248, 15, 0, 0, 224, 148, 64, 0, 160, 215, 63, 0, 192, 123, 193, 0, 248, 15, 0, 0, 128, 105, 64, 0, 192, 118, 63, 0, 0, 190, 192, 0, 248, 15, 0, 0, 32, 224, 63, 0, 224, 114, 63, 0, 160, 189, 192, 0, 248, 15, 0, 0, 32, 224, 63, 0, 224, 114, 63, 0, 160, 71, 192, 0, 248, 15, 0, 0, 128, 105, 64, 0, 192, 118, 63, 0, 64, 72, 192, 0, 248, 15, 0, 0, 192, 133, 64, 0, 192, 118, 63, 0, 64, 72, 192, 178, 89, 14, 0, 0, 192, 133, 64, 0, 192, 118, 63, 0, 0, 190, 192, 178, 89, 14, 0, 0, 224, 136, 64, 0, 128, 87, 63, 0, 64, 72, 192, 93, 111, 8, 0, 0, 224, 136, 64, 0, 128, 87, 63, 0, 0, 190, 192, 93, 111, 8, 0, 0, 128, 140, 64, 0, 32, 25, 63, 0, 64, 72, 192, 158, 171, 6, 0, 0, 128, 140, 64, 0, 32, 25, 63, 0, 0, 190, 192, 158, 171, 6, 0, 0, 0, 128, 63, 0, 32, 165, 63, 0, 64, 222, 192, 0, 88, 31, 17, 0, 0, 128, 191, 0, 32, 165, 63, 0, 64, 222, 192, 0, 88, 31, 17, 0, 0, 47, 193, 0, 160, 70, 61, 0, 192, 135, 193, 0, 88, 143, 0, 0, 0, 47, 193, 0, 160, 70, 61, 0, 224, 117, 193, 0, 24, 15, 1, 0, 192, 8, 64, 0, 64, 215, 63, 0, 32, 129, 193, 0, 248, 15, 0, 0, 224, 230, 190, 0, 128, 214, 63, 0, 64, 119, 193, 0, 248, 15, 0, 0, 0, 129, 191, 0, 96, 219, 63, 0, 32, 75, 193, 8, 248, 15, 0, 0, 0, 191, 191, 0, 160, 146, 63, 0, 96, 30, 193, 0, 248, 15, 0, 0, 32, 190, 191, 0, 160, 146, 63, 0, 32, 75, 193, 0, 248, 15, 0, 0, 128, 114, 192, 0, 160, 146, 63, 0, 192, 58, 193, 0, 216, 15, 2, 0, 160, 114, 192, 0, 160, 146, 63, 0, 224, 31, 193, 0, 152, 15, 0, 0, 128, 183, 191, 0, 160, 146, 63, 0, 192, 5, 193, 0, 248, 15, 0, 0, 224, 110, 192, 0, 160, 146, 63, 0, 64, 7, 193, 0, 248, 15, 0, 0, 96, 56, 192, 0, 224, 152, 63, 0, 32, 4, 193, 0, 248, 15, 0, 0, 160, 130, 192, 0, 128, 201, 63, 0, 224, 206, 192, 0, 216, 143, 5, 0, 128, 172, 192, 0, 128, 201, 63, 0, 224, 206, 192, 0, 216, 143, 5, 0, 128, 172, 192, 0, 192, 201, 63, 0, 192, 225, 192, 0, 216, 15, 0, 0, 160, 130, 192, 0, 192, 201, 63, 0, 192, 225, 192, 0, 216, 15, 0, 0, 128, 172, 192, 0, 32, 197, 63, 0, 0, 239, 192, 0, 216, 15, 0, 0, 160, 130, 192, 0, 32, 197, 63, 0, 0, 239, 192, 0, 216, 15, 0, 0, 128, 172, 192, 0, 32, 185, 63, 0, 64, 2, 193, 0, 184, 15, 0, 0, 160, 130, 192, 0, 32, 185, 63, 0, 64, 2, 193, 0, 184, 15, 0, 0, 192, 201, 192, 0, 160, 146, 63, 0, 192, 63, 193, 0, 216, 15, 5, 0, 32, 199, 192, 0, 32, 137, 63, 0, 128, 48, 193, 0, 216, 15, 5, 0, 160, 207, 192, 0, 128, 50, 63, 0, 128, 121, 193, 0, 216, 15, 0, 0, 224, 207, 192, 0, 128, 50, 63, 0, 64, 125, 193, 0, 216, 15, 0, 0, 128, 132, 193, 0, 32, 28, 64, 0, 64, 58, 193, 0, 248, 15, 0, 0, 96, 132, 193, 0, 32, 28, 64, 0, 0, 50, 193, 0, 248, 15, 0, 0, 128, 63, 193, 0, 32, 81, 189, 0, 224, 21, 193, 0, 248, 15, 0, 0, 64, 119, 193, 0, 32, 81, 189, 0, 224, 21, 193, 0, 248, 143, 0, 0, 64, 46, 193, 0, 32, 81, 189, 0, 64, 211, 192, 0, 248, 15, 0, 0, 96, 45, 193, 0, 32, 81, 189, 0, 128, 247, 192, 0, 248, 15, 0, 0, 128, 44, 193, 0, 32, 81, 189, 0, 64, 15, 193, 0, 248, 15, 0, 0, 160, 141, 193, 0, 64, 35, 61, 0, 0, 18, 193, 0, 216, 143, 1, 0, 224, 146, 193, 0, 160, 53, 189, 0, 96, 5, 193, 0, 216, 143, 1, 0, 64, 147, 193, 0, 32, 81, 189, 0, 160, 241, 192, 0, 216, 143, 1, 0, 192, 146, 193, 0, 160, 108, 189, 0, 96, 221, 192, 0, 216, 143, 1, 0, 0, 144, 193, 0, 32, 81, 189, 0, 96, 196, 192, 0, 216, 143, 1, 0, 96, 130, 193, 0, 160, 24, 190, 0, 0, 198, 192, 0, 216, 143, 1, 0, 160, 174, 192, 0, 128, 174, 63, 0, 32, 103, 192, 0, 248, 15, 0, 0, 192, 124, 192, 0, 128, 174, 63, 0, 32, 103, 192, 0, 248, 15, 0, 0, 160, 174, 192, 0, 128, 174, 63, 0, 128, 66, 192, 0, 248, 15, 0, 0, 192, 124, 192, 0, 128, 174, 63, 0, 128, 66, 192, 0, 248, 15, 0, 0, 32, 235, 192, 0, 128, 174, 63, 0, 64, 61, 192, 0, 248, 15, 0, 0, 224, 97, 192, 0, 128, 174, 63, 0, 64, 61, 192, 0, 248, 15, 0, 0, 160, 89, 192, 0, 128, 174, 63, 0, 128, 216, 191, 0, 248, 15, 0, 0, 224, 242, 192, 0, 128, 174, 63, 0, 224, 211, 191, 0, 248, 15, 0, 0, 32, 235, 192, 0, 128, 174, 63, 0, 96, 198, 190, 0, 248, 15, 0, 0, 224, 97, 192, 0, 128, 174, 63, 0, 96, 198, 190, 0, 248, 15, 0, 0, 32, 120, 193, 0, 32, 81, 189, 0, 96, 208, 190, 0, 248, 15, 0, 0, 128, 63, 193, 0, 32, 81, 189, 0, 0, 3, 191, 0, 248, 15, 0, 0, 32, 34, 193, 0, 32, 81, 189, 0, 0, 3, 191, 0, 248, 15, 0, 0, 32, 34, 193, 0, 32, 81, 189, 0, 0, 28, 192, 0, 248, 15, 0, 0, 32, 34, 193, 0, 32, 81, 189, 0, 224, 66, 192, 0, 248, 15, 0, 0, 128, 167, 193, 0, 160, 71, 63, 0, 32, 57, 193, 0, 248, 15, 0, 0, 128, 167, 193, 0, 160, 71, 63, 0, 192, 33, 193, 0, 248, 15, 0, 0, 224, 187, 193, 0, 160, 71, 63, 0, 32, 57, 193, 0, 248, 15, 0, 0, 224, 187, 193, 0, 160, 71, 63, 0, 192, 33, 193, 0, 248, 15, 0, 0, 128, 167, 193, 0, 160, 71, 63, 0, 32, 0, 193, 0, 248, 15, 0, 0, 224, 187, 193, 0, 160, 71, 63, 0, 0, 189, 192, 0, 248, 15, 0, 0, 128, 167, 193, 0, 160, 71, 63, 0, 0, 189, 192, 0, 248, 15, 0, 0, 128, 167, 193, 0, 160, 71, 63, 0, 32, 229, 192, 0, 248, 15, 0, 0, 224, 167, 193, 0, 160, 71, 63, 0, 0, 62, 193, 0, 248, 15, 0, 0, 0, 182, 193, 0, 160, 71, 63, 0, 0, 62, 193, 0, 248, 15, 0, 0, 224, 167, 193, 0, 160, 71, 63, 0, 224, 91, 193, 0, 248, 15, 0, 0, 0, 182, 193, 0, 160, 71, 63, 0, 224, 91, 193, 0, 248, 15, 0, 0, 224, 167, 193, 0, 160, 71, 63, 0, 0, 122, 193, 0, 248, 15, 0, 0, 0, 182, 193, 0, 160, 71, 63, 0, 0, 122, 193, 0, 248, 15, 0, 0, 160, 165, 193, 0, 160, 71, 63, 0, 224, 91, 193, 0, 248, 15, 0, 0, 160, 165, 193, 0, 160, 71, 63, 0, 0, 122, 193, 0, 248, 15, 0, 0, 160, 165, 193, 0, 160, 71, 63, 0, 0, 62, 193, 0, 248, 15, 0, 0, 0, 128, 191, 0, 160, 125, 189, 0, 0, 146, 63, 0, 52, 204, 40, 0, 0, 128, 63, 0, 160, 125, 189, 0, 0, 146, 63, 0, 52, 204, 40, 0, 0, 128, 191, 0, 0, 147, 190, 0, 96, 165, 63, 0, 168, 228, 60, 0, 0, 128, 63, 0, 0, 147, 190, 0, 96, 165, 63, 0, 168, 228, 60, 0, 0, 128, 191, 0, 0, 178, 191, 0, 96, 165, 63, 0, 48, 203, 44, 0, 0, 128, 63, 0, 0, 178, 191, 0, 96, 165, 63, 0, 48, 203, 44, 0, 0, 128, 191, 0, 0, 178, 191, 0, 224, 36, 64, 0, 48, 11, 0, 0, 0, 128, 63, 0, 0, 178, 191, 0, 224, 36, 64, 0, 48, 11, 0, 0, 0, 128, 191, 0, 0, 170, 190, 0, 224, 36, 64, 0, 184, 13, 0, 0, 0, 128, 63, 0, 0, 170, 190, 0, 224, 36, 64, 0, 184, 13, 0, 0, 0, 128, 191, 0, 32, 246, 190, 0, 96, 54, 64, 0, 248, 61, 30, 0, 0, 128, 63, 0, 32, 246, 190, 0, 96, 54, 64, 0, 248, 61, 30, 0, 192, 131, 193, 0, 64, 20, 64, 0, 192, 42, 193, 0, 132, 52, 34, 0, 96, 132, 193, 0, 32, 28, 64, 0, 0, 50, 193, 0, 96, 1, 7, 0, 96, 132, 193, 0, 32, 109, 63, 0, 0, 50, 193, 0, 0, 128, 5, 0, 192, 131, 193, 0, 32, 109, 63, 0, 192, 42, 193, 0, 0, 192, 36, 0, 128, 132, 193, 0, 32, 28, 64, 0, 64, 58, 193, 0, 96, 1, 0, 0, 192, 131, 193, 0, 64, 20, 64, 0, 128, 65, 193, 0, 132, 4, 0, 0, 192, 131, 193, 0, 32, 109, 63, 0, 128, 65, 193, 0, 0, 0, 0, 0, 128, 132, 193, 0, 32, 109, 63, 0, 64, 58, 193, 0, 0, 0, 0, 0, 32, 130, 193, 0, 32, 28, 64, 0, 96, 67, 193, 0, 40, 5, 0, 0, 32, 130, 193, 0, 32, 109, 63, 0, 96, 67, 193, 0, 0, 0, 0, 0, 32, 130, 193, 0, 32, 28, 64, 0, 224, 40, 193, 0, 196, 226, 58, 0, 32, 130, 193, 0, 32, 109, 63, 0, 224, 40, 193, 0, 0, 96, 55, 0, 32, 130, 193, 0, 32, 130, 191, 0, 224, 40, 193, 0, 0, 96, 63, 0, 64, 103, 193, 0, 32, 130, 191, 0, 224, 40, 193, 0, 0, 96, 63, 0, 64, 103, 193, 0, 32, 28, 64, 0, 224, 40, 193, 0, 0, 96, 63, 0, 96, 77, 193, 0, 32, 130, 191, 0, 224, 40, 193, 1, 1, 96, 61, 0, 96, 77, 193, 0, 32, 28, 64, 0, 224, 40, 193, 1, 1, 96, 61, 0, 32, 75, 193, 0, 32, 130, 191, 0, 32, 42, 193, 136, 0, 224, 62, 0, 32, 75, 193, 0, 32, 28, 64, 0, 32, 42, 193, 169, 0, 224, 62, 0, 32, 64, 193, 0, 32, 130, 191, 0, 160, 39, 193, 0, 0, 224, 61, 0, 32, 64, 193, 0, 32, 19, 64, 0, 160, 39, 193, 0, 0, 224, 61, 0, 192, 52, 193, 0, 32, 130, 191, 0, 224, 36, 193, 0, 0, 224, 61, 0, 192, 52, 193, 0, 0, 254, 63, 0, 224, 36, 193, 0, 0, 224, 61, 0, 32, 41, 193, 0, 32, 130, 191, 0, 64, 34, 193, 0, 0, 224, 61, 0, 32, 41, 193, 0, 0, 215, 63, 0, 64, 34, 193, 0, 0, 224, 61, 0, 160, 29, 193, 0, 128, 192, 63, 0, 192, 31, 193, 0, 0, 224, 61, 0, 160, 29, 193, 0, 96, 113, 191, 0, 192, 31, 193, 0, 0, 224, 61, 0, 0, 151, 63, 0, 160, 215, 63, 0, 32, 3, 193, 158, 3, 32, 26, 0, 0, 128, 63, 0, 64, 201, 63, 0, 192, 249, 192, 158, 3, 32, 26, 0, 0, 128, 63, 0, 32, 160, 63, 0, 192, 249, 192, 158, 3, 32, 26, 0, 0, 128, 191, 0, 64, 201, 63, 0, 192, 249, 192, 0, 0, 0, 0, 0, 0, 128, 191, 0, 32, 160, 63, 0, 192, 249, 192, 0, 0, 0, 0, 0, 0, 128, 191, 0, 224, 119, 63, 0, 64, 222, 192, 0, 0, 0, 0, 0, 0, 128, 191, 0, 32, 165, 63, 0, 64, 222, 192, 0, 0, 0, 0, 0, 0, 128, 63, 0, 32, 165, 63, 0, 64, 222, 192, 254, 3, 0, 0, 0, 0, 128, 63, 0, 224, 119, 63, 0, 64, 222, 192, 254, 3, 0, 0, 0, 0, 128, 63, 0, 32, 160, 63, 0, 192, 249, 192, 254, 3, 0, 0, 0, 0, 128, 63, 0, 64, 201, 63, 0, 192, 249, 192, 254, 3, 0, 0, 0, 128, 172, 192, 0, 32, 185, 63, 0, 64, 2, 193, 0, 0, 0, 0, 0, 128, 172, 192, 0, 32, 157, 63, 0, 64, 2, 193, 0, 0, 0, 0, 0, 128, 172, 192, 0, 64, 169, 63, 0, 96, 238, 192, 0, 0, 0, 0, 0, 128, 172, 192, 0, 32, 197, 63, 0, 0, 239, 192, 0, 0, 0, 0, 0, 160, 130, 192, 0, 32, 197, 63, 0, 0, 239, 192, 254, 3, 0, 0, 0, 160, 130, 192, 0, 64, 169, 63, 0, 96, 238, 192, 254, 3, 0, 0, 0, 160, 130, 192, 0, 32, 157, 63, 0, 64, 2, 193, 254, 3, 0, 0, 0, 160, 130, 192, 0, 32, 185, 63, 0, 64, 2, 193, 254, 3, 0, 0, 0, 128, 172, 192, 0, 64, 176, 63, 0, 64, 12, 193, 0, 0, 0, 0, 0, 128, 172, 192, 0, 64, 148, 63, 0, 64, 12, 193, 0, 0, 0, 0, 0, 160, 130, 192, 0, 64, 148, 63, 0, 64, 12, 193, 254, 3, 0, 0, 0, 160, 130, 192, 0, 64, 176, 63, 0, 64, 12, 193, 254, 3, 0, 0, 0, 0, 128, 63, 0, 160, 122, 63, 0, 192, 181, 192, 254, 3, 0, 0, 0, 0, 128, 63, 0, 96, 40, 63, 0, 192, 181, 192, 254, 3, 0, 0, 0, 0, 128, 191, 0, 96, 40, 63, 0, 192, 181, 192, 0, 0, 0, 0, 0, 0, 128, 191, 0, 160, 122, 63, 0, 192, 181, 192, 0, 0, 0, 0, 0, 160, 130, 192, 0, 192, 201, 63, 0, 192, 225, 192, 254, 3, 0, 0, 0, 160, 130, 192, 0, 192, 173, 63, 0, 64, 225, 192, 254, 3, 0, 0, 0, 128, 172, 192, 0, 192, 173, 63, 0, 64, 225, 192, 0, 0, 0, 0, 0, 128, 172, 192, 0, 192, 201, 63, 0, 192, 225, 192, 0, 0, 0, 0, 0, 160, 130, 192, 0, 128, 201, 63, 0, 224, 206, 192, 254, 3, 0, 0, 0, 160, 130, 192, 0, 96, 173, 63, 0, 224, 206, 192, 254, 3, 0, 0, 0, 128, 172, 192, 0, 96, 173, 63, 0, 224, 206, 192, 0, 0, 0, 0, 0, 128, 172, 192, 0, 128, 201, 63, 0, 224, 206, 192, 0, 0, 0, 0, 0, 160, 130, 192, 0, 128, 183, 63, 0, 96, 181, 192, 254, 3, 0, 0, 0, 160, 130, 192, 0, 128, 155, 63, 0, 96, 181, 192, 254, 3, 0, 0, 0, 128, 172, 192, 0, 128, 155, 63, 0, 96, 181, 192, 0, 0, 0, 0, 0, 128, 172, 192, 0, 128, 183, 63, 0, 96, 181, 192, 0, 0, 0, 0) +}] -[sub_resource type="ConcavePolygonShape3D" id=13] +[sub_resource type="ConcavePolygonShape3D" id="13"] data = PackedVector3Array(-0.9999, 0.6579, -5.6816, 1, 0.9686, -6.9468, -0.9999, 0.9686, -6.9468, -0.9999, 0.6579, -5.6816, 1, 0.6579, -5.6816, 1, 0.9686, -6.9468, -0.9999, 0.9686, -6.9468, 1, 1.251, -7.8054, -0.9999, 1.251, -7.8054, -0.9999, 0.9686, -6.9468, 1, 0.9686, -6.9468, 1, 1.251, -7.8054, -5.3917, 1.2149, -5.6707, -4.0858, 1.355, -6.4661, -5.3917, 1.355, -6.4661, -5.3917, 1.2149, -5.6707, -4.0858, 1.2149, -5.6707, -4.0858, 1.355, -6.4661, -5.3917, 1.355, -6.4661, -4.0858, 1.358, -7.04, -5.3917, 1.358, -7.04, -5.3917, 1.355, -6.4661, -4.0858, 1.355, -6.4661, -4.0858, 1.358, -7.04, -5.3917, 1.358, -7.04, -4.0858, 1.3224, -7.4527, -5.3917, 1.3224, -7.4527, -5.3917, 1.358, -7.04, -4.0858, 1.358, -7.04, -4.0858, 1.3224, -7.4527, -5.3917, 1.3224, -7.4527, -4.0858, 1.2279, -8.1415, -5.3917, 1.2279, -8.1415, -5.3917, 1.3224, -7.4527, -4.0858, 1.3224, -7.4527, -4.0858, 1.2279, -8.1415, -5.3917, 1.2279, -8.1415, -4.0858, 1.1584, -8.7722, -5.3917, 1.1584, -8.7722, -5.3917, 1.2279, -8.1415, -4.0858, 1.2279, -8.1415, -4.0858, 1.1584, -8.7722, -0.9999, 0, 1, 1, -0.0067, -0.7694, 1, 0, 1, -0.9999, 0, 1, -0.9999, -0.0067, -0.7694, 1, -0.0067, -0.7694, -0.9999, -0.0067, -0.7694, 1, 0.0813, -1.2914, 1, -0.0067, -0.7694, -0.9999, -0.0067, -0.7694, -0.9999, 0.0813, -1.2914, 1, 0.0813, -1.2914, -0.9999, 0.0813, -1.2914, 1, 0.2915, -1.9489, 1, 0.0813, -1.2914, -0.9999, 0.0813, -1.2914, -0.9999, 0.2915, -1.9489, 1, 0.2915, -1.9489, -0.9999, 0.2915, -1.9489, 1, 0.7253, -2.9792, 1, 0.2915, -1.9489, -0.9999, 0.2915, -1.9489, -0.9999, 0.7253, -2.9792, 1, 0.7253, -2.9792, -0.9999, 0.7253, -2.9792, 1.2785, 0.9286, -3.6199, 1, 0.7253, -2.9792, -0.9999, 0.7253, -2.9792, -1.2784, 0.9286, -3.6199, 1.2785, 0.9286, -3.6199, -1.2784, 0.9286, -3.6199, 1.2785, 0.9286, -5.2645, 1.2785, 0.9286, -3.6199, -1.2784, 0.9286, -3.6199, -1.2784, 0.9286, -5.2645, 1.2785, 0.9286, -5.2645, -1.2784, 0.9286, -5.2645, 1, 0.9795, -5.6816, 1.2785, 0.9286, -5.2645, -1.2784, 0.9286, -5.2645, -0.9999, 0.9795, -5.6816, 1, 0.9795, -5.6816, -0.9999, 1.5725, -7.8054, 1.1805, 1.6855, -8.1972, 1, 1.5725, -7.8054, -0.9999, 1.5725, -7.8054, -1.1804, 1.6855, -8.1972, 1.1805, 1.6855, -8.1972, -1.1804, 1.6855, -8.1972, 1.1805, 1.6855, -10.0175, 1.1805, 1.6855, -8.1972, -1.1804, 1.6855, -8.1972, -1.1804, 1.6855, -10.0175, 1.1805, 1.6855, -10.0175, 1.1805, 1.6855, -10.0175, 1.649, 1.6855, -8.4123, 1.1805, 1.6855, -8.1972, 1.1805, 1.6855, -10.0175, 1.649, 1.6855, -9.8024, 1.649, 1.6855, -8.4123, 1.649, 1.6855, -9.8024, 3.0627, 2.0061, -8.4203, 1.649, 1.6855, -8.4123, 1.649, 1.6855, -9.8024, 2.8532, 1.6855, -9.7945, 3.0627, 2.0061, -8.4203, 2.8532, 1.6855, -9.7945, 4.2351, 2.0061, -8.8669, 3.0627, 2.0061, -8.4203, 2.8532, 1.6855, -9.7945, 3.6043, 1.6855, -10.1056, 4.2351, 2.0061, -8.8669, 3.6043, 1.6855, -10.1056, 5.3289, 2.0061, -9.7504, 4.2351, 2.0061, -8.8669, 3.6043, 1.6855, -10.1056, 4.2009, 1.6855, -10.5628, 5.3289, 2.0061, -9.7504, 4.2009, 1.6855, -10.5628, 6.0044, 2.0061, -10.8302, 5.3289, 2.0061, -9.7504, 4.2009, 1.6855, -10.5628, 4.6329, 1.6855, -11.0568, 6.0044, 2.0061, -10.8302, 4.6329, 1.6855, -11.0568, 6.1594, 1.6855, -11.7289, 6.0044, 2.0061, -10.8302, 4.6329, 1.6855, -11.0568, 4.7693, 1.6855, -11.7318, 6.1594, 1.6855, -11.7289, 4.7693, 1.6855, -11.7318, 6.1594, 1.6855, -12.8814, 6.1594, 1.6855, -11.7289, 4.7693, 1.6855, -11.7318, 4.7693, 1.6855, -12.8843, 6.1594, 1.6855, -12.8814, -1.2784, 0.9286, -3.6199, -1.667, 0.9286, -5.1102, -1.2784, 0.9286, -5.2645, -1.2784, 0.9286, -3.6199, -1.667, 0.9286, -3.7743, -1.667, 0.9286, -5.1102, -1.667, 0.9286, -3.7743, -2.687, 0.9286, -5.1102, -1.667, 0.9286, -5.1102, -1.667, 0.9286, -3.7743, -2.687, 0.9286, -3.7743, -2.687, 0.9286, -5.1102, -2.687, 0.9286, -3.7743, -3.0541, 0.9795, -5.1102, -2.687, 0.9286, -5.1102, -2.687, 0.9286, -3.7743, -3.0541, 0.9795, -3.7743, -3.0541, 0.9795, -5.1102, -3.0541, 0.9795, -3.7743, -3.6019, 1.2901, -5.1102, -3.0541, 0.9795, -5.1102, -3.0541, 0.9795, -3.7743, -3.6019, 1.2901, -3.7743, -3.6019, 1.2901, -5.1102, -3.6019, 1.2901, -3.7743, -3.9891, 1.3635, -5.1767, -3.6019, 1.2901, -5.1102, -3.6019, 1.2901, -3.7743, -3.9891, 1.3635, -3.6935, -3.9891, 1.3635, -5.1767, -3.9891, 1.3635, -3.6935, -5.4884, 1.3635, -5.1767, -3.9891, 1.3635, -5.1767, -3.9891, 1.3635, -3.6935, -5.4884, 1.3635, -3.6935, -5.4884, 1.3635, -5.1767, -5.4884, 1.3635, -5.1767, -4.0858, 1.3635, -5.3319, -3.9891, 1.3635, -5.1767, -5.4884, 1.3635, -5.1767, -5.3917, 1.3635, -5.3319, -4.0858, 1.3635, -5.3319, -5.3917, 1.3635, -5.3319, -4.0858, 1.4341, -5.6707, -4.0858, 1.3635, -5.3319, -5.3917, 1.3635, -5.3319, -5.3917, 1.4341, -5.6707, -4.0858, 1.4341, -5.6707, -5.3917, 1.3776, -8.7722, -4.0858, 1.1338, -9.3106, -4.0858, 1.3776, -8.7722, -5.3917, 1.3776, -8.7722, -5.3917, 1.1338, -9.3106, -4.0858, 1.1338, -9.3106, -5.3917, 1.1338, -9.3106, -3.9708, 1.0717, -9.552, -4.0858, 1.1338, -9.3106, -5.3917, 1.1338, -9.3106, -5.5067, 1.0717, -9.552, -3.9708, 1.0717, -9.552, -5.5067, 1.0717, -9.552, -3.9708, 1.0717, -10.8336, -3.9708, 1.0717, -9.552, -5.5067, 1.0717, -9.552, -5.5067, 1.0717, -10.8336, -3.9708, 1.0717, -10.8336, -5.5067, 1.0717, -9.552, -5.6775, 1.0717, -10.7195, -5.5067, 1.0717, -10.8336, -5.5067, 1.0717, -9.552, -5.6775, 1.0717, -9.6661, -5.6775, 1.0717, -10.7195, -5.6775, 1.0717, -9.6661, -6.154, 1.1141, -10.7388, -5.6775, 1.0717, -10.7195, -5.6775, 1.0717, -9.6661, -6.2402, 1.1141, -9.6889, -6.154, 1.1141, -10.7388, -6.2402, 1.1141, -9.6889, -6.3885, 1.2052, -10.758, -6.154, 1.1141, -10.7388, -6.2402, 1.1141, -9.6889, -6.4747, 1.2052, -9.7082, -6.3885, 1.2052, -10.758, -6.4747, 1.2052, -9.7082, -6.6793, 1.3729, -10.7819, -6.3885, 1.2052, -10.758, -6.4747, 1.2052, -9.7082, -6.7655, 1.3729, -9.732, -6.6793, 1.3729, -10.7819, -6.7655, 1.3729, -9.732, -6.9971, 1.4858, -10.8249, -6.6793, 1.3729, -10.7819, -6.7655, 1.3729, -9.732, -7.2182, 1.4858, -9.5038, -6.9971, 1.4858, -10.8249, -7.2182, 1.4858, -9.5038, -7.2618, 1.5047, -10.9558, -6.9971, 1.4858, -10.8249, -7.2182, 1.4858, -9.5038, -7.5155, 1.5047, -9.4828, -7.2618, 1.5047, -10.9558, -7.5155, 1.5047, -9.4828, -8.5098, 1.5047, -9.6963, -7.2618, 1.5047, -10.9558, -7.2618, 1.5047, -10.9558, -9.5245, 1.5047, -9.9141, -9.2708, 1.5047, -11.3872, -7.2618, 1.5047, -10.9558, -8.5098, 1.5047, -9.6963, -9.5245, 1.5047, -9.9141, -9.2708, 1.5047, -11.3872, -7.3035, 1.5047, -11.1709, -7.2618, 1.5047, -10.9558, -9.2708, 1.5047, -11.3872, -9.1444, 1.5047, -11.5662, -7.3035, 1.5047, -11.1709, -9.1444, 1.5047, -11.5662, -7.2525, 1.4482, -11.4084, -7.3035, 1.5047, -11.1709, -9.1444, 1.5047, -11.5662, -9.0935, 1.4482, -11.8036, -7.2525, 1.4482, -11.4084, -9.0935, 1.4482, -11.8036, -7.1863, 1.3023, -11.7166, -7.2525, 1.4482, -11.4084, -9.0935, 1.4482, -11.8036, -9.0273, 1.3023, -12.1119, -7.1863, 1.3023, -11.7166, -9.0273, 1.3023, -12.1119, -7.1419, 1.1188, -11.9236, -7.1863, 1.3023, -11.7166, -9.0273, 1.3023, -12.1119, -8.9828, 1.1188, -12.3189, -7.1419, 1.1188, -11.9236, -8.9828, 1.1188, -12.3189, -7.1053, 1.0435, -12.0938, -7.1419, 1.1188, -11.9236, -8.9828, 1.1188, -12.3189, -8.9463, 1.0435, -12.4891, -7.1053, 1.0435, -12.0938, -8.9463, 1.0435, -12.4891, -7.0382, 1.0106, -12.4067, -7.1053, 1.0435, -12.0938, -8.9463, 1.0435, -12.4891, -8.8791, 1.0106, -12.8019, -7.0382, 1.0106, -12.4067, -8.8791, 1.0106, -12.8019, -6.8179, 1.0106, -13.4447, -7.0382, 1.0106, -12.4067, -8.8791, 1.0106, -12.8019, -8.6831, 1.0106, -13.7024, -6.8179, 1.0106, -13.4447, -8.6831, 1.0106, -13.7024, -6.767, 1.0106, -14.0294, -6.8179, 1.0106, -13.4447, -8.6831, 1.0106, -13.7024, -8.6498, 1.0106, -14.0169, -6.767, 1.0106, -14.0294, -8.6498, 1.0106, -14.0169, -6.767, 0.8139, -14.493, -6.767, 1.0106, -14.0294, -8.6498, 1.0106, -14.0169, -8.6498, 0.8139, -14.4805, -6.767, 0.8139, -14.493, -8.6498, 0.8139, -14.4805, -6.767, 0.6875, -14.9847, -6.767, 0.8139, -14.493, -8.6498, 0.8139, -14.4805, -8.6498, 0.6875, -14.9722, -6.767, 0.6875, -14.9847, -8.6498, 0.6875, -14.9722, -6.6899, 0.6875, -15.2657, -6.767, 0.6875, -14.9847, -8.6498, 0.6875, -14.9722, -8.7269, 0.6875, -15.2532, -6.6899, 0.6875, -15.2657, -8.7269, 0.6875, -15.2532, -6.6899, 0.6875, -17.2328, -6.6899, 0.6875, -15.2657, -8.7269, 0.6875, -15.2532, -8.7269, 0.6875, -17.2203, -6.6899, 0.6875, -17.2328, -8.7269, 0.6875, -15.2532, -8.8963, 0.6875, -17.1222, -8.7269, 0.6875, -17.2203, -8.7269, 0.6875, -15.2532, -8.8963, 0.6875, -15.3512, -8.8963, 0.6875, -17.1222, -8.8963, 0.6875, -15.3512, -9.2422, 0.603, -17.0465, -8.8963, 0.6875, -17.1222, -8.8963, 0.6875, -15.3512, -9.2573, 0.6192, -15.3512, -9.2422, 0.603, -17.0465, -9.2573, 0.6192, -15.3512, -9.523, 0.481, -17.1161, -9.2422, 0.603, -17.0465, -9.2573, 0.6192, -15.3512, -9.5207, 0.4826, -15.3512, -9.523, 0.481, -17.1161, -9.5207, 0.4826, -15.3512, -9.7518, 0.2968, -17.2951, -9.523, 0.481, -17.1161, -9.5207, 0.4826, -15.3512, -9.8524, 0.2484, -15.3512, -9.7518, 0.2968, -17.2951, -9.8524, 0.2484, -15.3512, -10.2719, 0.0923, -17.1222, -9.7518, 0.2968, -17.2951, -9.8524, 0.2484, -15.3512, -10.2719, 0.0923, -15.3512, -10.2719, 0.0923, -17.1222, -5.4884, 1.3635, -3.6935, -5.7311, 1.3635, -5.0294, -5.4884, 1.3635, -5.1767, -5.4884, 1.3635, -3.6935, -5.7311, 1.3635, -3.8408, -5.7311, 1.3635, -5.0294, -5.7311, 1.3635, -3.8408, -6.0076, 1.3229, -5.0294, -5.7311, 1.3635, -5.0294, -5.7311, 1.3635, -3.8408, -6.0076, 1.3229, -3.8408, -6.0076, 1.3229, -5.0294, -6.0076, 1.3229, -3.8408, -6.3084, 1.144, -5.0294, -6.0076, 1.3229, -5.0294, -6.0076, 1.3229, -3.8408, -6.3084, 1.144, -3.8408, -6.3084, 1.144, -5.0294, -6.3084, 1.144, -3.8408, -6.7717, 0.8839, -5.0294, -6.3084, 1.144, -5.0294, -6.3084, 1.144, -3.8408, -6.7717, 0.8839, -3.8408, -6.7717, 0.8839, -5.0294, -6.7717, 0.8839, -3.8408, -7.3571, 0.6562, -5.0294, -6.7717, 0.8839, -5.0294, -6.7717, 0.8839, -3.8408, -7.3571, 0.6562, -3.8408, -7.3571, 0.6562, -5.0294, -7.3571, 0.6562, -3.8408, -8.2107, 0.4286, -5.0294, -7.3571, 0.6562, -5.0294, -7.3571, 0.6562, -3.8408, -8.2107, 0.4286, -3.8408, -8.2107, 0.4286, -5.0294, -8.2107, 0.4286, -3.8408, -9.0806, 0.2091, -5.0294, -8.2107, 0.4286, -5.0294, -8.2107, 0.4286, -3.8408, -9.0806, 0.2091, -3.8408, -9.0806, 0.2091, -5.0294, -9.0806, 0.2091, -3.8408, -10.0806, 0.0384, -5.0294, -9.0806, 0.2091, -5.0294, -9.0806, 0.2091, -3.8408, -10.0806, 0.0384, -3.8408, -10.0806, 0.0384, -5.0294, -10.0806, 0.0384, -3.8408, -11.4301, -0.051, -5.5915, -10.0806, 0.0384, -5.0294, -10.0806, 0.0384, -3.8408, -11.4301, -0.051, -3.2787, -11.4301, -0.051, -5.5915, -11.702, -0.051, -2.6257, -11.9739, -0.051, -6.4308, -11.702, -0.051, -6.2445, -11.702, -0.051, -2.6257, -11.9739, -0.051, -2.4393, -11.9739, -0.051, -6.4308, -11.9739, -0.051, -2.4393, -15.4547, -0.051, -6.4308, -11.9739, -0.051, -6.4308, -11.9739, -0.051, -2.4393, -15.4547, -0.051, -2.4393, -15.4547, -0.051, -6.4308, -15.4547, -0.051, -2.4393, -15.9806, -0.051, -6.1428, -15.4547, -0.051, -6.4308, -15.4547, -0.051, -2.4393, -15.9806, -0.051, -2.7274, -15.9806, -0.051, -6.1428, -15.9806, -0.051, -2.7274, -16.4054, -0.051, -5.5547, -15.9806, -0.051, -6.1428, -15.9806, -0.051, -2.7274, -16.4054, -0.051, -3.3155, -16.4054, -0.051, -5.5547, -11.4301, -0.051, -3.2787, -11.702, -0.051, -6.2445, -11.4301, -0.051, -5.5915, -11.4301, -0.051, -3.2787, -11.702, -0.051, -2.6257, -11.702, -0.051, -6.2445, -16.4054, -0.051, -3.3155, -16.8774, -0.051, -5.2478, -16.4054, -0.051, -5.5547, -16.4054, -0.051, -3.3155, -16.8774, -0.051, -3.6223, -16.8774, -0.051, -5.2478, -16.8774, -0.051, -3.6223, -17.7034, -0.051, -5.2478, -16.8774, -0.051, -5.2478, -16.8774, -0.051, -3.6223, -17.7034, -0.051, -3.6223, -17.7034, -0.051, -5.2478, -17.7034, -0.051, -3.6223, -17.9954, -0.051, -5.2422, -17.7034, -0.051, -5.2478, -17.7034, -0.051, -3.6223, -18.1869, 0.24, -3.628, -17.9954, -0.051, -5.2422, -18.1869, 0.24, -3.628, -18.2779, -0.051, -5.3141, -17.9954, -0.051, -5.2422, -18.1869, 0.24, -3.628, -18.8484, 0.4546, -3.792, -18.2779, -0.051, -5.3141, -18.8484, 0.4546, -3.792, -18.5195, -0.051, -5.4388, -18.2779, -0.051, -5.3141, -18.8484, 0.4546, -3.792, -19.4496, 0.4546, -4.1057, -18.5195, -0.051, -5.4388, -19.4496, 0.4546, -4.1057, -18.7416, -0.051, -5.6005, -18.5195, -0.051, -5.4388, -19.4496, 0.4546, -4.1057, -20.0368, 0.4546, -4.6183, -18.7416, -0.051, -5.6005, -20.0368, 0.4546, -4.6183, -18.9441, -0.051, -5.8695, -18.7416, -0.051, -5.6005, -20.0368, 0.4546, -4.6183, -20.5085, 0.24, -5.4282, -18.9441, -0.051, -5.8695, -20.5085, 0.24, -5.4282, -19.0484, -0.051, -6.0678, -18.9441, -0.051, -5.8695, -20.5085, 0.24, -5.4282, -20.6739, -0.051, -6.0727, -19.0484, -0.051, -6.0678, -20.6739, -0.051, -6.0727, -19.0484, -0.051, -7.4951, -19.0484, -0.051, -6.0678, -20.6739, -0.051, -6.0727, -20.6739, -0.051, -7.5001, -19.0484, -0.051, -7.4951, -20.6739, -0.051, -7.5001, -19.0484, 0.0309, -7.9282, -19.0484, -0.051, -7.4951, -20.6739, -0.051, -7.5001, -20.6739, 0.0309, -7.9332, -19.0484, 0.0309, -7.9282, -20.6739, 0.0309, -7.9332, -19.0484, 0.2416, -8.4432, -19.0484, 0.0309, -7.9282, -20.6739, 0.0309, -7.9332, -20.6739, 0.2416, -8.4482, -19.0484, 0.2416, -8.4432, -20.6739, 0.2416, -8.4482, -19.0484, 0.5108, -8.888, -19.0484, 0.2416, -8.4432, -20.6739, 0.2416, -8.4482, -20.6739, 0.5108, -8.893, -19.0484, 0.5108, -8.888, -20.6739, 0.5108, -8.893, -19.0484, 0.6981, -9.3797, -19.0484, 0.5108, -8.888, -20.6739, 0.5108, -8.893, -20.6739, 0.6981, -9.3846, -19.0484, 0.6981, -9.3797, -20.6739, 0.6981, -9.3846, -19.0484, 0.78, -9.9532, -19.0484, 0.6981, -9.3797, -20.6739, 0.6981, -9.3846, -20.6739, 0.78, -9.9582, -19.0484, 0.78, -9.9532, -20.6739, 0.78, -9.9582, -18.9605, 0.78, -10.1051, -19.0484, 0.78, -9.9532, -20.6739, 0.78, -9.9582, -20.7618, 0.78, -10.1106, -18.9605, 0.78, -10.1051, -20.7618, 0.78, -10.1106, -20.7618, 0.78, -11.5738, -18.9605, 0.78, -10.1051, -18.9605, 0.78, -10.1051, -18.9605, 0.78, -11.5683, -18.9605, 0.78, -10.8367, -18.9605, 0.78, -10.1051, -20.7618, 0.78, -11.5738, -18.9605, 0.78, -11.5683, -20.7618, 0.78, -11.5738, -19.1327, 0.78, -11.7093, -18.9605, 0.78, -11.5683, -20.7618, 0.78, -11.5738, -20.5896, 0.78, -11.7138, -19.1327, 0.78, -11.7093, -20.5896, 0.78, -11.7138, -19.1327, 0.78, -12.3273, -19.1327, 0.78, -11.7093, -20.5896, 0.78, -11.7138, -20.5896, 0.78, -12.3318, -19.1327, 0.78, -12.3273, -20.5896, 0.78, -12.3318, -19.0409, 0.78, -12.6287, -19.1327, 0.78, -12.3273, -20.5896, 0.78, -12.3318, -20.4668, 0.78, -12.9278, -19.0409, 0.78, -12.6287, -20.4668, 0.78, -12.9278, -18.945, 0.78, -12.7769, -19.0409, 0.78, -12.6287, -20.4668, 0.78, -12.9278, -20.0751, 0.78, -13.6965, -18.945, 0.78, -12.7769, -20.0751, 0.78, -13.6965, -18.7395, 0.78, -12.9258, -18.945, 0.78, -12.7769, -20.0751, 0.78, -13.6965, -19.4613, 0.78, -14.1914, -18.7395, 0.78, -12.9258, -19.4613, 0.78, -14.1914, -18.4951, 0.78, -13.0185, -18.7395, 0.78, -12.9258, -19.4613, 0.78, -14.1914, -18.7302, 0.78, -14.4563, -18.4951, 0.78, -13.0185, -18.7302, 0.78, -14.4563, -18.1005, 0.78, -13.0821, -18.4951, 0.78, -13.0185, -18.7302, 0.78, -14.4563, -18.1007, 0.78, -14.539, -18.1005, 0.78, -13.0821, -9.5245, 1.5047, -9.9141, -9.5985, 1.5047, -11.4574, -9.2708, 1.5047, -11.3872, -9.5245, 1.5047, -9.9141, -9.8522, 1.5047, -9.9844, -9.5985, 1.5047, -11.4574, -9.8522, 1.5047, -9.9844, -10.3242, 1.6802, -11.6213, -9.5985, 1.5047, -11.4574, -9.8522, 1.5047, -9.9844, -10.5779, 1.6802, -10.1482, -10.3242, 1.6802, -11.6213, -10.5779, 1.6802, -10.1482, -11.0498, 1.9845, -11.7851, -10.3242, 1.6802, -11.6213, -10.5779, 1.6802, -10.1482, -11.3036, 1.9845, -10.3121, -11.0498, 1.9845, -11.7851, -11.3036, 1.9845, -10.3121, -11.9125, 2.3005, -11.9746, -11.0498, 1.9845, -11.7851, -11.3036, 1.9845, -10.3121, -12.0093, 2.3005, -10.4785, -11.9125, 2.3005, -11.9746, -12.0093, 2.3005, -10.4785, -12.6998, 2.441, -12.138, -11.9125, 2.3005, -11.9746, -12.0093, 2.3005, -10.4785, -12.6968, 2.441, -10.6381, -12.6998, 2.441, -12.138, -12.6968, 2.441, -10.6381, -12.8404, 2.441, -12.2164, -12.6998, 2.441, -12.138, -12.6968, 2.441, -10.6381, -12.837, 2.441, -10.5596, -12.8404, 2.441, -12.2164, -12.837, 2.441, -10.5596, -14.4577, 2.441, -12.2164, -12.8404, 2.441, -12.2164, -12.837, 2.441, -10.5596, -14.4544, 2.441, -10.5596, -14.4577, 2.441, -12.2164, -14.4544, 2.441, -10.5596, -16.2694, 2.441, -12.2164, -14.4577, 2.441, -12.2164, -14.4544, 2.441, -10.5596, -16.2661, 2.441, -10.5596, -16.2694, 2.441, -12.2164, -18.1007, 0.78, -14.539, -17.7998, 0.8532, -13.0821, -18.1005, 0.78, -13.0821, -18.1007, 0.78, -14.539, -17.8, 0.8532, -14.539, -17.7998, 0.8532, -13.0821, -17.8, 0.8532, -14.539, -17.2342, 0.9312, -13.0821, -17.7998, 0.8532, -13.0821, -17.8, 0.8532, -14.539, -17.2343, 0.9312, -14.539, -17.2342, 0.9312, -13.0821, -17.2343, 0.9312, -14.539, -16.7661, 0.8337, -13.0821, -17.2342, 0.9312, -13.0821, -17.2343, 0.9312, -14.539, -16.7662, 0.8337, -14.539, -16.7661, 0.8337, -13.0821, -16.7662, 0.8337, -14.539, -15.9761, 0.5411, -13.2, -16.7661, 0.8337, -13.0821, -16.7662, 0.8337, -14.539, -15.9763, 0.5411, -14.657, -15.9761, 0.5411, -13.2, -15.9763, 0.5411, -14.657, -15.4397, 0.307, -13.4191, -15.9761, 0.5411, -13.2, -15.9763, 0.5411, -14.657, -15.4399, 0.307, -14.8761, -15.4397, 0.307, -13.4191, -15.4399, 0.307, -14.8761, -14.9911, 0.1705, -13.7393, -15.4397, 0.307, -13.4191, -15.4399, 0.307, -14.8761, -14.9913, 0.1705, -15.1962, -14.9911, 0.1705, -13.7393, -14.9913, 0.1705, -15.1962, -14.6205, -0.083, -13.9415, -14.9911, 0.1705, -13.7393, -14.9913, 0.1705, -15.1962, -14.6207, -0.083, -15.3985, -14.6205, -0.083, -13.9415, -14.6207, -0.083, -15.3985, -14.0249, -0.3937, -14.2287, -14.6205, -0.083, -13.9415, -14.6207, -0.083, -15.3985, -14.1851, -0.3768, -15.6767, -14.0249, -0.3937, -14.2287, -14.1851, -0.3768, -15.6767, -13.477, -0.4687, -14.4211, -14.0249, -0.3937, -14.2287, -14.1851, -0.3768, -15.6767, -13.6872, -0.4465, -15.8626, -13.477, -0.4687, -14.4211, -13.6872, -0.4465, -15.8626, -12.6695, -0.4616, -14.8297, -13.477, -0.4687, -14.4211, -13.6872, -0.4465, -15.8626, -12.8417, -0.4435, -16.2763, -12.6695, -0.4616, -14.8297, -12.8417, -0.4435, -16.2763, -11.4552, -0.3467, -15.2036, -12.6695, -0.4616, -14.8297, -12.8417, -0.4435, -16.2763, -11.6479, -0.3264, -16.7534, -11.4552, -0.3467, -15.2036, 4.7693, 1.6855, -12.8843, 6.2739, 1.6855, -13.2249, 6.1594, 1.6855, -12.8814, 4.7693, 1.6855, -12.8843, 4.6549, 1.6855, -13.2283, 6.2739, 1.6855, -13.2249, 4.6549, 1.6855, -13.2283, 6.2739, 1.6855, -14.5595, 6.2739, 1.6855, -13.2249, 4.6549, 1.6855, -13.2283, 4.6549, 1.6855, -14.5629, 6.2739, 1.6855, -14.5595, 4.6549, 1.6855, -14.5629, 6.2739, 1.6855, -15.7323, 6.2739, 1.6855, -14.5595, 4.6549, 1.6855, -14.5629, 4.6549, 1.6855, -15.7357, 6.2739, 1.6855, -15.7323, 3.6493, 0.9641, -5.9375, 1.7517, 0.9491, -3.1194, 1.7517, 0.9491, -5.9269, 3.6493, 0.9641, -5.9375, 3.6493, 0.9641, -3.13, 1.7517, 0.9491, -3.1194, 3.6493, 0.9641, -5.9375, 4.1827, 0.9641, -3.13, 3.6493, 0.9641, -3.13, 3.6493, 0.9641, -5.9375, 4.1827, 0.9641, -5.9375, 4.1827, 0.9641, -3.13, 4.1827, 0.9641, -5.9375, 4.2802, 0.8422, -3.13, 4.1827, 0.9641, -3.13, 4.1827, 0.9641, -5.9375, 4.2802, 0.8422, -5.9375, 4.2802, 0.8422, -3.13, 4.2802, 0.8422, -5.9375, 4.3939, 0.5985, -3.13, 4.2802, 0.8422, -3.13, 4.2802, 0.8422, -5.9375, 4.3939, 0.5985, -5.9375, 4.3939, 0.5985, -3.13, 1, 0.9795, -5.6816, -0.9999, 1.2901, -6.9468, 1, 1.2901, -6.9468, 1, 0.9795, -5.6816, -0.9999, 0.9795, -5.6816, -0.9999, 1.2901, -6.9468, 1, 1.5725, -7.8054, -0.9999, 1.2901, -6.9468, -0.9999, 1.5725, -7.8054, 1, 1.5725, -7.8054, 1, 1.2901, -6.9468, -0.9999, 1.2901, -6.9468, 1.2785, 0.9286, -3.6199, 1.7517, 0.9491, -5.9269, 1.7517, 0.9491, -3.1194, 1.2785, 0.9286, -3.6199, 1.2785, 0.9286, -5.2645, 1.7517, 0.9491, -5.9269, -10.2719, 0.0923, -15.3512, -10.9397, 0.0485, -16.9841, -10.2719, 0.0923, -17.1222, -10.2719, 0.0923, -15.3512, -10.9396, 0.0485, -15.3701, -10.9397, 0.0485, -16.9841, 4.6549, 1.6855, -14.5629, 2.1381, 1.6818, -16.1482, 4.6549, 1.6855, -15.7357, 4.6549, 1.6855, -14.5629, -0.4508, 1.6765, -15.4572, 2.1381, 1.6818, -16.1482, 4.6549, 1.6855, -13.2283, -0.4508, 1.6765, -15.4572, 4.6549, 1.6855, -14.5629, 4.7693, 1.6855, -12.8843, -0.4508, 1.6765, -15.4572, 4.6549, 1.6855, -13.2283, 4.7693, 1.6855, -11.7318, -0.4508, 1.6765, -15.4572, 4.7693, 1.6855, -12.8843, 4.6329, 1.6855, -11.0568, -0.4508, 1.6765, -15.4572, 4.7693, 1.6855, -11.7318, 4.2009, 1.6855, -10.5628, -0.4508, 1.6765, -15.4572, 4.6329, 1.6855, -11.0568, 3.6043, 1.6855, -10.1056, -0.4508, 1.6765, -15.4572, 4.2009, 1.6855, -10.5628, 2.8532, 1.6855, -9.7945, -0.4508, 1.6765, -15.4572, 3.6043, 1.6855, -10.1056, 1.649, 1.6855, -9.8024, -0.4508, 1.6765, -15.4572, 2.8532, 1.6855, -9.7945, 1.1805, 1.6855, -10.0175, -0.4508, 1.6765, -15.4572, 1.649, 1.6855, -9.8024, -1.1804, 1.6855, -10.0175, -0.4508, 1.6765, -15.4572, 1.1805, 1.6855, -10.0175, -1.1804, 1.6855, -10.0175, -1.0085, 1.714, -12.7027, -0.4508, 1.6765, -15.4572, -1.4922, 1.1455, -9.9006, -3.7892, 1.1457, -11.6764, -1.486, 1.1457, -12.7027, -1.4922, 1.1455, -9.9006, -3.7919, 1.1455, -9.998, -3.7892, 1.1457, -11.6764, -1.4922, 1.1455, -9.9006, -1.4337, 1.1455, -8.361, -3.7919, 1.1455, -9.998, -3.7919, 1.1455, -9.998, -2.8818, 1.1945, -8.265, -3.7334, 1.1455, -8.4584, -3.7919, 1.1455, -9.998, -1.4337, 1.1455, -8.361, -2.8818, 1.1945, -8.265, -4.0858, 1.5742, -6.4661, -5.3917, 1.4341, -5.6707, -5.3917, 1.5742, -6.4661, -4.0858, 1.5742, -6.4661, -4.0858, 1.4341, -5.6707, -5.3917, 1.4341, -5.6707, -5.3917, 1.5766, -7.0564, -4.0858, 1.5742, -6.4661, -5.3917, 1.5742, -6.4661, -5.3917, 1.5766, -7.0564, -4.0858, 1.5766, -7.0564, -4.0858, 1.5742, -6.4661, -5.3917, 1.541, -7.4691, -4.0858, 1.5766, -7.0564, -5.3917, 1.5766, -7.0564, -5.3917, 1.541, -7.4691, -4.0858, 1.541, -7.4691, -4.0858, 1.5766, -7.0564, -5.3917, 1.4472, -8.1415, -4.0858, 1.541, -7.4691, -5.3917, 1.541, -7.4691, -5.3917, 1.4472, -8.1415, -4.0858, 1.4472, -8.1415, -4.0858, 1.541, -7.4691, -4.0858, 1.3776, -8.7722, -5.3917, 1.4472, -8.1415, -5.3917, 1.3776, -8.7722, -4.0858, 1.3776, -8.7722, -4.0858, 1.4472, -8.1415, -5.3917, 1.4472, -8.1415, -3.9708, 1.0717, -9.552, -3.7892, 1.1457, -11.6764, -3.7919, 1.1455, -9.998, -3.9708, 1.0717, -9.552, -3.9708, 1.0717, -10.8336, -3.7892, 1.1457, -11.6764, -3.9708, 1.0717, -10.8336, -6.3053, 1.1457, -11.9909, -3.7892, 1.1457, -11.6764, -3.9708, 1.0717, -10.8336, -6.2256, 1.0717, -11.0342, -6.3053, 1.1457, -11.9909, -6.6899, 0.6875, -17.2328, -6.4916, 0.6976, -15.5959, -6.6899, 0.6875, -15.2657, -6.6899, 0.6875, -17.2328, -6.4971, 0.6976, -15.833, -6.4916, 0.6976, -15.5959, -11.6479, -0.3264, -16.7534, -10.9396, 0.0485, -15.3701, -11.4552, -0.3467, -15.2036, -11.6479, -0.3264, -16.7534, -10.9397, 0.0485, -16.9841, -10.9396, 0.0485, -15.3701, -16.2661, 2.441, -10.5596, -16.5632, 2.441, -11.6465, -16.2694, 2.441, -12.2164, -16.2661, 2.441, -10.5596, -16.5621, 2.441, -11.1296, -16.5632, 2.441, -11.6465, -11.9739, -0.051, -6.4308, -15.4547, -0.051, -9.3677, -11.9739, -0.051, -9.3677, -11.9739, -0.051, -6.4308, -15.4547, -0.051, -6.4308, -15.4547, -0.051, -9.3677, -11.9739, -0.051, -6.4308, -11.9739, -0.051, -9.3677, -10.8981, -0.051, -6.6053, -10.8423, -0.051, -7.7351, -11.9739, -0.051, -9.3677, -10.7817, -0.051, -8.9606, -10.8981, -0.051, -6.6053, -11.9739, -0.051, -9.3677, -10.8423, -0.051, -7.7351, -15.4547, -0.051, -9.3677, -15.4547, -0.051, -6.4308, -17.7038, 0.0399, -9.1318, -17.7038, 0.0399, -9.1318, -18.4192, -0.051, -7.5538, -18.3661, -0.0443, -8.3373, -18.4192, -0.051, -7.5538, -18.0135, -0.051, -6.1401, -18.3505, -0.0577, -6.9208, -18.0135, -0.051, -6.1401, -15.4547, -0.051, -6.4308, -16.3046, -0.149, -6.1892, -17.7038, 0.0399, -9.1318, -15.4547, -0.051, -6.4308, -18.4192, -0.051, -7.5538, -18.4192, -0.051, -7.5538, -15.4547, -0.051, -6.4308, -18.0135, -0.051, -6.1401, -3.9891, 1.3635, -3.6935, -5.458, 1.3635, -3.6117, -5.4884, 1.3635, -3.6935, -3.9891, 1.3635, -3.6935, -3.9494, 1.3635, -3.6117, -5.458, 1.3635, -3.6117, -3.9494, 1.3635, -3.6117, -5.458, 1.3635, -3.0393, -5.458, 1.3635, -3.6117, -3.9494, 1.3635, -3.6117, -3.9494, 1.3635, -3.0393, -5.458, 1.3635, -3.0393, -3.9494, 1.3635, -3.0393, -7.3486, 1.3635, -2.9575, -5.458, 1.3635, -3.0393, -3.9494, 1.3635, -3.0393, -3.5306, 1.3635, -2.9575, -7.3486, 1.3635, -2.9575, -3.5306, 1.3635, -2.9575, -3.4008, 1.3635, -1.692, -7.3486, 1.3635, -2.9575, -7.3486, 1.3635, -2.9575, -7.3486, 1.3635, -0.3875, -7.592, 1.3635, -1.6554, -7.3486, 1.3635, -0.3875, -3.4008, 1.3635, -1.692, -3.5306, 1.3635, -0.3875, -7.3486, 1.3635, -2.9575, -3.4008, 1.3635, -1.692, -7.3486, 1.3635, -0.3875, -11.9739, -0.051, -2.4393, -15.5131, -0.051, -0.4069, -15.4547, -0.051, -2.4393, -11.9739, -0.051, -2.4393, -11.9739, -0.051, -0.512, -15.5131, -0.051, -0.4069, -11.9739, -0.051, -2.4393, -10.14, -0.051, -0.512, -11.9739, -0.051, -0.512, -11.9739, -0.051, -2.4393, -10.14, -0.051, -2.4393, -10.14, -0.051, -0.512, -11.702, -0.051, -2.6257, -10.14, -0.051, -2.4393, -11.9739, -0.051, -2.4393, -11.702, -0.051, -2.6257, -10.14, -0.051, -3.0467, -10.14, -0.051, -2.4393, -20.7618, 0.78, -10.1106, -20.9468, 0.78, -11.5738, -20.7618, 0.78, -11.5738, -20.7618, 0.78, -10.1106, -20.9468, 0.78, -10.1106, -20.9468, 0.78, -11.5738, -20.9468, 0.78, -10.1106, -23.4863, 0.78, -11.5738, -20.9468, 0.78, -11.5738, -20.9468, 0.78, -10.1106, -23.4863, 0.78, -10.1106, -23.4863, 0.78, -11.5738, -20.9468, 0.78, -10.1106, -20.9468, 0.78, -8.0085, -23.4863, 0.78, -10.1106, -23.4863, 0.78, -10.1106, -20.9468, 0.78, -5.9063, -23.4863, 0.78, -5.9063, -20.9468, 0.78, -5.9063, -20.9468, 0.78, -8.0085, -20.9468, 0.78, -7.1601, -23.4863, 0.78, -10.1106, -20.9468, 0.78, -8.0085, -20.9468, 0.78, -5.9063, -23.4863, 0.78, -11.5738, -20.997, 0.78, -11.8765, -20.9468, 0.78, -11.5738, -23.4863, 0.78, -11.5738, -22.7634, 0.78, -11.8765, -20.997, 0.78, -11.8765, -22.7634, 0.78, -11.8765, -20.997, 0.78, -13.7433, -20.997, 0.78, -11.8765, -22.7634, 0.78, -11.8765, -22.7634, 0.78, -13.7433, -20.997, 0.78, -13.7433, -22.7634, 0.78, -13.7433, -20.997, 0.78, -15.6268, -20.997, 0.78, -13.7433, -22.7634, 0.78, -13.7433, -22.7634, 0.78, -15.6268, -20.997, 0.78, -15.6268, -20.997, 0.78, -15.6268, -20.7111, 0.78, -13.7433, -20.997, 0.78, -13.7433, -20.997, 0.78, -15.6268, -20.7111, 0.78, -15.6268, -20.7111, 0.78, -13.7433, -20.997, 0.78, -13.7433, -20.7111, 0.78, -11.8765, -20.997, 0.78, -11.8765, -20.997, 0.78, -13.7433, -20.7111, 0.78, -13.7433, -20.7111, 0.78, -11.8765, 1, 0, 1, -0.9999, -0.0618, 1.1408, -0.9999, 0, 1, 1, 0, 1, 1, -0.0618, 1.1408, -0.9999, -0.0618, 1.1408, 1, -0.0618, 1.1408, -0.9999, -0.287, 1.2928, -0.9999, -0.0618, 1.1408, 1, -0.0618, 1.1408, 1, -0.287, 1.2928, -0.9999, -0.287, 1.2928, 1, -0.287, 1.2928, -0.9999, -1.3905, 1.2928, -0.9999, -0.287, 1.2928, 1, -0.287, 1.2928, 1, -1.3905, 1.2928, -0.9999, -1.3905, 1.2928, 1, -1.3905, 1.2928, -0.9999, -1.3905, 2.5764, -0.9999, -1.3905, 1.2928, 1, -1.3905, 1.2928, 1, -1.3905, 2.5764, -0.9999, -1.3905, 2.5764, 1, -1.3905, 2.5764, -0.9999, -0.3321, 2.5764, -0.9999, -1.3905, 2.5764, 1, -1.3905, 2.5764, 1, -0.3321, 2.5764, -0.9999, -0.3321, 2.5764, 1, -0.3321, 2.5764, -0.9999, -0.4806, 2.8501, -0.9999, -0.3321, 2.5764, 1, -0.3321, 2.5764, 1, -0.4806, 2.8501, -0.9999, -0.4806, 2.8501, -16.4769, 2.317, -10.6781, -16.5621, 0.9264, -11.1296, -16.5621, 2.441, -11.1296, -16.4769, 2.317, -10.6781, -16.4769, 0.9264, -10.6781, -16.5621, 0.9264, -11.1296, -16.5632, 2.441, -11.6465, -16.4798, 0.9264, -12.0979, -16.4798, 2.317, -12.0979, -16.5632, 2.441, -11.6465, -16.5632, 0.9264, -11.6465, -16.4798, 0.9264, -12.0979, -16.5621, 2.441, -11.1296, -16.5632, 0.9264, -11.6465, -16.5632, 2.441, -11.6465, -16.5621, 2.441, -11.1296, -16.5621, 0.9264, -11.1296, -16.5632, 0.9264, -11.6465, -16.4798, 2.317, -12.0979, -16.2694, 0.9264, -12.2164, -16.2694, 2.441, -12.2164, -16.4798, 2.317, -12.0979, -16.4798, 0.9264, -12.0979, -16.2694, 0.9264, -12.2164, -16.2661, 2.441, -10.5596, -16.4769, 0.9264, -10.6781, -16.4769, 2.317, -10.6781, -16.2661, 2.441, -10.5596, -16.2661, 0.9264, -10.5596, -16.4769, 0.9264, -10.6781, -16.4769, 2.317, -10.6781, -16.5621, 2.441, -11.1296, -16.2661, 2.441, -10.5596, -16.4798, 2.317, -12.0979, -16.2694, 2.441, -12.2164, -16.5632, 2.441, -11.6465, -16.2661, 2.441, -10.5596, -14.4544, -1.017, -10.5596, -16.2661, -1.017, -10.5596, -16.2661, 2.441, -10.5596, -14.4544, 2.441, -10.5596, -14.4544, -1.017, -10.5596, -14.4544, 2.441, -10.5596, -12.837, -1.017, -10.5596, -14.4544, -1.017, -10.5596, -14.4544, 2.441, -10.5596, -12.837, 2.441, -10.5596, -12.837, -1.017, -10.5596, -12.837, 2.441, -10.5596, -12.6968, -1.017, -10.6381, -12.837, -1.017, -10.5596, -12.837, 2.441, -10.5596, -12.6968, 2.441, -10.6381, -12.6968, -1.017, -10.6381, -12.6968, 2.441, -10.6381, -12.0093, -1.017, -10.4785, -12.6968, -1.017, -10.6381, -12.6968, 2.441, -10.6381, -12.0093, 2.3005, -10.4785, -12.0093, -1.017, -10.4785, -12.0093, 2.3005, -10.4785, -11.3036, -1.017, -10.3121, -12.0093, -1.017, -10.4785, -12.0093, 2.3005, -10.4785, -11.3036, 1.9845, -10.3121, -11.3036, -1.017, -10.3121, -11.3036, 1.9845, -10.3121, -10.5779, -1.017, -10.1482, -11.3036, -1.017, -10.3121, -11.3036, 1.9845, -10.3121, -10.5779, 1.6802, -10.1482, -10.5779, -1.017, -10.1482, -9.8522, 1.5047, -9.9844, -10.5779, -1.017, -10.1482, -10.5779, 1.6802, -10.1482, -9.8522, 1.5047, -9.9844, -9.8522, -0.9429, -9.9844, -10.5779, -1.017, -10.1482, 1.1805, 1.6855, -8.1972, 1, 1.251, -7.8054, 1, 1.5725, -7.8054, -0.9999, 1.5725, -7.8054, -0.9999, 0.9686, -6.9468, -0.9999, 1.251, -7.8054, -0.9999, 1.5725, -7.8054, -0.9999, 1.2901, -6.9468, -0.9999, 0.9686, -6.9468, 1, 1.2901, -6.9468, 1, 1.251, -7.8054, 1, 0.9686, -6.9468, 1, 1.2901, -6.9468, 1, 1.5725, -7.8054, 1, 1.251, -7.8054, -5.3917, 1.4472, -8.1415, -5.3917, 1.3224, -7.4527, -5.3917, 1.2279, -8.1415, -5.3917, 1.4472, -8.1415, -5.3917, 1.541, -7.4691, -5.3917, 1.3224, -7.4527, -4.0858, 1.541, -7.4691, -4.0858, 1.2279, -8.1415, -4.0858, 1.3224, -7.4527, -4.0858, 1.541, -7.4691, -4.0858, 1.4472, -8.1415, -4.0858, 1.2279, -8.1415, -5.3917, 1.3776, -8.7722, -5.3917, 1.2279, -8.1415, -5.3917, 1.1584, -8.7722, -5.3917, 1.3776, -8.7722, -5.3917, 1.4472, -8.1415, -5.3917, 1.2279, -8.1415, -4.0858, 1.4472, -8.1415, -4.0858, 1.1584, -8.7722, -4.0858, 1.2279, -8.1415, -4.0858, 1.4472, -8.1415, -4.0858, 1.3776, -8.7722, -4.0858, 1.1584, -8.7722, 1, 0.9795, -5.6816, 1, 0.9686, -6.9468, 1, 0.6579, -5.6816, 1, 0.9795, -5.6816, 1, 1.2901, -6.9468, 1, 0.9686, -6.9468, -0.9999, 1.2901, -6.9468, -0.9999, 0.6579, -5.6816, -0.9999, 0.9686, -6.9468, -0.9999, 1.2901, -6.9468, -0.9999, 0.9795, -5.6816, -0.9999, 0.6579, -5.6816, -4.0858, 1.5766, -7.0564, -4.0858, 1.3224, -7.4527, -4.0858, 1.358, -7.04, -4.0858, 1.5766, -7.0564, -4.0858, 1.541, -7.4691, -4.0858, 1.3224, -7.4527, -5.3917, 1.541, -7.4691, -5.3917, 1.358, -7.04, -5.3917, 1.3224, -7.4527, -5.3917, 1.541, -7.4691, -5.3917, 1.5766, -7.0564, -5.3917, 1.358, -7.04, -4.0858, 1.5742, -6.4661, -4.0858, 1.358, -7.04, -4.0858, 1.355, -6.4661, -4.0858, 1.5742, -6.4661, -4.0858, 1.5766, -7.0564, -4.0858, 1.358, -7.04, -5.3917, 1.5766, -7.0564, -5.3917, 1.355, -6.4661, -5.3917, 1.358, -7.04, -5.3917, 1.5766, -7.0564, -5.3917, 1.5742, -6.4661, -5.3917, 1.355, -6.4661, -4.0858, 1.4341, -5.6707, -4.0858, 1.355, -6.4661, -4.0858, 1.2149, -5.6707, -4.0858, 1.4341, -5.6707, -4.0858, 1.5742, -6.4661, -4.0858, 1.355, -6.4661, -5.3917, 1.5742, -6.4661, -5.3917, 1.2149, -5.6707, -5.3917, 1.355, -6.4661, -5.3917, 1.5742, -6.4661, -5.3917, 1.4341, -5.6707, -5.3917, 1.2149, -5.6707) -[sub_resource type="ArrayMesh" id=14] +[sub_resource type="ArrayMesh" id="14"] resource_name = "Plane" -surfaces/0 = { +_surfaces = [{ "aabb": AABB(-25.4449, -1.7162, -21.7653, 33.6262, 4.31067, 26.3872), -"array_data": PackedByteArray(21, 196, 130, 61, 98, 200, 0, 60, 74, 0, 154, 0, 251, 184, 33, 59, 21, 196, 162, 60, 98, 200, 0, 60, 44, 116, 236, 0, 233, 184, 116, 59, 100, 197, 162, 60, 98, 200, 0, 60, 214, 117, 237, 0, 149, 186, 222, 58, 100, 197, 130, 61, 98, 200, 0, 60, 190, 32, 153, 0, 103, 186, 178, 58, 38, 69, 189, 62, 255, 203, 0, 60, 244, 86, 164, 0, 206, 56, 58, 57, 38, 69, 69, 62, 255, 203, 0, 60, 240, 45, 139, 0, 216, 56, 37, 57, 200, 68, 69, 62, 242, 203, 0, 60, 186, 39, 158, 0, 147, 56, 13, 57, 200, 68, 189, 62, 242, 203, 0, 60, 203, 81, 175, 0, 144, 56, 33, 57, 36, 70, 189, 62, 242, 203, 0, 60, 47, 86, 176, 0, 83, 57, 171, 57, 36, 70, 69, 62, 242, 203, 0, 60, 66, 40, 156, 0, 102, 57, 161, 57, 199, 69, 69, 62, 255, 203, 0, 60, 16, 45, 139, 0, 58, 57, 107, 57, 199, 69, 189, 62, 255, 203, 0, 60, 12, 86, 164, 0, 44, 57, 123, 57, 40, 70, 189, 62, 112, 202, 0, 60, 92, 83, 23, 0, 77, 56, 169, 59, 40, 70, 189, 62, 221, 201, 0, 60, 97, 81, 250, 0, 177, 55, 59, 60, 182, 70, 34, 60, 210, 201, 0, 60, 90, 89, 249, 0, 104, 56, 109, 60, 182, 70, 34, 60, 118, 202, 0, 60, 91, 87, 11, 0, 233, 56, 248, 59, 1, 70, 3, 64, 106, 201, 0, 60, 90, 85, 22, 0, 166, 54, 126, 60, 138, 70, 144, 61, 82, 201, 0, 60, 84, 93, 13, 0, 142, 55, 178, 60, 84, 69, 3, 64, 224, 200, 0, 60, 70, 84, 63, 0, 42, 53, 193, 60, 201, 69, 144, 61, 184, 200, 0, 60, 62, 95, 54, 0, 208, 53, 3, 61, 60, 68, 3, 64, 110, 200, 0, 60, 47, 82, 84, 0, 122, 50, 231, 60, 145, 68, 144, 61, 57, 200, 0, 60, 42, 94, 73, 0, 20, 51, 49, 61, 32, 66, 3, 64, 53, 200, 0, 60, 9, 78, 99, 0, 206, 45, 230, 60, 133, 66, 144, 61, 244, 199, 0, 60, 5, 89, 89, 0, 125, 45, 50, 61, 152, 62, 189, 62, 52, 200, 0, 60, 10, 73, 102, 0, 136, 169, 187, 60, 187, 62, 34, 60, 242, 199, 0, 60, 2, 80, 98, 0, 203, 172, 19, 61, 162, 71, 234, 51, 160, 201, 0, 60, 109, 64, 254, 0, 21, 57, 205, 60, 162, 71, 234, 51, 91, 202, 0, 60, 107, 63, 233, 0, 162, 57, 77, 60, 112, 71, 60, 57, 14, 201, 0, 60, 99, 74, 26, 0, 83, 56, 21, 61, 148, 70, 60, 57, 94, 200, 0, 60, 76, 74, 67, 0, 184, 54, 117, 61, 49, 69, 60, 57, 158, 199, 0, 60, 51, 74, 89, 0, 12, 52, 172, 61, 104, 67, 60, 57, 13, 199, 0, 60, 12, 72, 103, 0, 36, 46, 171, 61, 163, 63, 234, 51, 10, 199, 0, 60, 250, 67, 107, 0, 210, 173, 147, 61, 251, 71, 40, 187, 144, 201, 0, 60, 120, 38, 3, 0, 225, 57, 25, 61, 251, 71, 40, 187, 86, 202, 0, 60, 118, 44, 242, 0, 131, 58, 135, 60, 197, 71, 109, 183, 246, 200, 0, 60, 116, 39, 32, 0, 250, 56, 108, 61, 221, 70, 109, 183, 60, 200, 0, 60, 88, 54, 73, 0, 160, 55, 225, 61, 101, 69, 109, 183, 74, 199, 0, 60, 56, 63, 93, 0, 108, 52, 43, 62, 166, 67, 109, 183, 176, 198, 0, 60, 15, 73, 102, 0, 59, 45, 45, 62, 180, 63, 40, 187, 174, 198, 0, 60, 253, 91, 87, 0, 254, 175, 10, 62, 197, 71, 211, 186, 196, 200, 0, 60, 108, 56, 34, 0, 6, 57, 168, 61, 251, 71, 102, 187, 95, 201, 0, 60, 119, 40, 14, 0, 184, 57, 63, 61, 221, 70, 211, 186, 11, 200, 0, 60, 65, 93, 56, 0, 148, 55, 32, 62, 101, 69, 211, 186, 231, 198, 0, 60, 36, 102, 65, 0, 61, 52, 108, 62, 166, 67, 211, 186, 77, 198, 0, 60, 7, 107, 67, 0, 18, 44, 106, 62, 180, 63, 102, 187, 74, 198, 0, 60, 255, 115, 53, 0, 87, 176, 51, 62, 197, 71, 108, 188, 110, 200, 0, 60, 75, 99, 21, 0, 219, 56, 248, 61, 251, 71, 181, 188, 9, 201, 0, 60, 111, 59, 12, 0, 145, 57, 141, 61, 221, 70, 108, 188, 106, 199, 0, 60, 37, 119, 21, 0, 54, 55, 114, 62, 101, 69, 108, 188, 58, 198, 0, 60, 19, 123, 234, 0, 152, 51, 192, 62, 166, 67, 108, 188, 234, 197, 0, 60, 1, 116, 207, 0, 17, 42, 156, 62, 180, 63, 181, 188, 231, 197, 0, 60, 1, 120, 216, 0, 184, 176, 98, 62, 227, 62, 166, 186, 199, 197, 0, 60, 5, 32, 134, 0, 181, 177, 129, 62, 61, 67, 19, 186, 202, 197, 0, 60, 0, 28, 133, 0, 144, 35, 190, 62, 227, 62, 208, 165, 169, 197, 0, 60, 5, 220, 135, 0, 127, 178, 212, 62, 61, 67, 67, 42, 172, 197, 0, 60, 0, 219, 135, 0, 172, 161, 23, 63, 227, 62, 113, 52, 238, 197, 0, 60, 246, 205, 141, 0, 238, 178, 255, 62, 61, 67, 151, 53, 241, 197, 0, 60, 0, 196, 145, 0, 221, 165, 66, 63, 1, 63, 26, 58, 15, 198, 0, 60, 230, 15, 133, 0, 54, 179, 52, 63, 76, 67, 172, 58, 18, 198, 0, 60, 0, 31, 134, 0, 157, 168, 122, 63, 1, 63, 151, 59, 237, 197, 0, 60, 232, 75, 157, 0, 142, 179, 75, 63, 76, 67, 182, 59, 240, 197, 0, 60, 255, 87, 164, 0, 101, 169, 142, 63, 46, 68, 182, 59, 240, 197, 0, 60, 35, 88, 172, 0, 51, 35, 159, 63, 46, 68, 172, 58, 18, 198, 0, 60, 31, 44, 142, 0, 172, 36, 139, 63, 39, 68, 151, 53, 241, 197, 0, 60, 230, 205, 144, 0, 148, 40, 83, 63, 39, 68, 67, 42, 172, 197, 0, 60, 223, 213, 142, 0, 141, 41, 38, 63, 71, 68, 188, 58, 240, 197, 0, 60, 92, 63, 196, 0, 200, 39, 152, 63, 71, 68, 179, 57, 18, 198, 0, 60, 46, 21, 140, 0, 56, 40, 131, 63, 64, 68, 72, 51, 241, 197, 0, 60, 185, 212, 162, 0, 182, 42, 74, 63, 64, 68, 170, 172, 172, 197, 0, 60, 197, 236, 147, 0, 91, 43, 30, 63, 100, 68, 201, 56, 240, 197, 0, 60, 56, 98, 200, 0, 12, 43, 135, 63, 100, 68, 128, 55, 18, 198, 0, 60, 245, 16, 131, 0, 101, 43, 113, 63, 93, 68, 34, 164, 241, 197, 0, 60, 196, 201, 160, 0, 215, 44, 56, 63, 93, 68, 16, 181, 172, 197, 0, 60, 231, 255, 132, 0, 33, 45, 10, 63, 90, 69, 27, 55, 6, 198, 0, 60, 31, 109, 200, 0, 46, 49, 139, 63, 96, 69, 180, 57, 159, 196, 0, 60, 27, 124, 0, 0, 28, 49, 12, 64, 90, 69, 8, 53, 41, 198, 0, 60, 8, 38, 136, 0, 82, 49, 121, 63, 82, 69, 116, 177, 8, 198, 0, 60, 234, 200, 145, 0, 200, 49, 69, 63, 82, 69, 137, 183, 195, 197, 0, 60, 238, 239, 132, 0, 41, 50, 25, 63, 90, 69, 27, 55, 112, 194, 0, 60, 34, 107, 57, 0, 168, 49, 86, 64, 231, 69, 96, 49, 112, 194, 0, 60, 50, 105, 48, 0, 194, 51, 85, 64, 8, 70, 110, 54, 159, 196, 0, 60, 62, 110, 0, 0, 110, 51, 10, 64, 231, 69, 96, 49, 6, 198, 0, 60, 55, 101, 204, 0, 23, 51, 135, 63, 231, 69, 232, 40, 41, 198, 0, 60, 17, 32, 135, 0, 66, 51, 117, 63, 224, 69, 37, 183, 8, 198, 0, 60, 227, 199, 147, 0, 228, 51, 67, 63, 224, 69, 250, 185, 195, 197, 0, 60, 242, 21, 132, 0, 54, 52, 26, 63, 229, 70, 5, 182, 112, 194, 0, 60, 71, 102, 19, 0, 214, 53, 80, 64, 226, 70, 38, 180, 159, 196, 0, 60, 78, 100, 0, 0, 113, 53, 5, 64, 229, 70, 5, 182, 6, 198, 0, 60, 74, 91, 209, 0, 58, 53, 132, 63, 229, 70, 12, 184, 41, 198, 0, 60, 46, 24, 141, 0, 75, 53, 115, 63, 221, 70, 237, 187, 8, 198, 0, 60, 2, 196, 145, 0, 186, 53, 78, 63, 221, 70, 42, 189, 195, 197, 0, 60, 25, 62, 149, 0, 52, 54, 46, 63, 100, 68, 201, 56, 66, 194, 0, 60, 30, 83, 90, 0, 121, 44, 100, 64, 63, 50, 22, 186, 226, 197, 0, 60, 255, 29, 133, 0, 148, 181, 83, 62, 63, 50, 201, 172, 200, 197, 0, 60, 253, 13, 130, 0, 238, 181, 158, 62, 230, 53, 56, 188, 253, 197, 0, 60, 0, 121, 218, 0, 39, 181, 46, 62, 230, 53, 185, 186, 81, 198, 0, 60, 255, 120, 40, 0, 230, 180, 2, 62, 230, 53, 132, 186, 166, 198, 0, 60, 254, 99, 79, 0, 174, 180, 214, 61, 172, 53, 241, 48, 244, 198, 0, 60, 255, 67, 107, 0, 39, 180, 105, 61, 48, 49, 147, 58, 185, 199, 0, 60, 251, 54, 114, 0, 66, 179, 255, 60, 63, 50, 22, 186, 226, 197, 0, 60, 255, 29, 133, 0, 151, 181, 83, 62, 99, 189, 229, 186, 198, 197, 0, 60, 250, 29, 133, 0, 46, 184, 34, 62, 99, 189, 170, 7, 166, 197, 0, 60, 241, 29, 134, 0, 93, 184, 128, 62, 230, 53, 56, 188, 253, 197, 0, 60, 0, 121, 218, 0, 42, 181, 46, 62, 132, 188, 236, 188, 232, 197, 0, 60, 245, 119, 214, 0, 214, 183, 254, 61, 230, 53, 185, 186, 81, 198, 0, 60, 255, 120, 40, 0, 233, 180, 1, 62, 132, 188, 178, 187, 82, 198, 0, 60, 250, 120, 40, 0, 137, 183, 202, 61, 230, 53, 132, 186, 166, 198, 0, 60, 254, 99, 79, 0, 177, 180, 214, 61, 132, 188, 111, 187, 188, 198, 0, 60, 248, 99, 78, 0, 80, 183, 158, 61, 172, 53, 241, 48, 244, 198, 0, 60, 255, 67, 107, 0, 47, 180, 104, 61, 150, 188, 156, 52, 30, 199, 0, 60, 252, 70, 105, 0, 118, 182, 22, 61, 48, 49, 147, 58, 185, 199, 0, 60, 251, 54, 114, 0, 78, 179, 253, 60, 142, 189, 129, 60, 10, 200, 0, 60, 218, 90, 80, 0, 243, 181, 133, 60, 189, 193, 52, 187, 189, 197, 0, 60, 14, 31, 134, 0, 103, 185, 241, 61, 189, 193, 100, 39, 154, 197, 0, 60, 19, 35, 136, 0, 171, 185, 83, 62, 166, 193, 50, 189, 226, 197, 0, 60, 12, 118, 214, 0, 61, 185, 202, 61, 166, 193, 8, 188, 84, 198, 0, 60, 5, 119, 42, 0, 37, 185, 147, 61, 166, 193, 201, 187, 198, 198, 0, 60, 5, 100, 77, 0, 10, 185, 100, 61, 167, 193, 110, 53, 48, 199, 0, 60, 0, 73, 103, 0, 174, 184, 207, 60, 195, 193, 199, 60, 33, 200, 0, 60, 251, 104, 72, 0, 81, 184, 67, 60, 106, 195, 86, 186, 240, 197, 0, 60, 19, 31, 135, 0, 40, 186, 205, 61, 106, 195, 163, 170, 212, 197, 0, 60, 23, 24, 134, 0, 108, 186, 38, 62, 87, 195, 111, 188, 13, 198, 0, 60, 19, 120, 221, 0, 0, 186, 165, 61, 87, 195, 5, 187, 104, 198, 0, 60, 6, 120, 40, 0, 229, 185, 112, 61, 87, 195, 204, 186, 194, 198, 0, 60, 5, 98, 79, 0, 202, 185, 68, 61, 88, 195, 64, 50, 23, 199, 0, 60, 254, 69, 106, 0, 124, 185, 193, 60, 109, 195, 82, 59, 235, 199, 0, 60, 245, 106, 67, 0, 38, 185, 66, 60, 0, 60, 1, 61, 206, 199, 0, 60, 25, 13, 123, 0, 184, 176, 232, 60, 184, 60, 189, 62, 25, 200, 0, 60, 43, 70, 96, 0, 78, 174, 183, 60, 0, 60, 1, 61, 206, 199, 0, 60, 25, 13, 123, 0, 190, 176, 230, 60, 0, 188, 1, 61, 206, 199, 0, 60, 201, 11, 113, 0, 244, 180, 160, 60, 0, 60, 67, 57, 174, 197, 0, 60, 225, 24, 136, 0, 241, 180, 16, 63, 0, 60, 213, 59, 174, 197, 0, 60, 227, 97, 181, 0, 30, 181, 50, 63, 0, 188, 67, 57, 174, 197, 0, 60, 198, 23, 147, 0, 43, 184, 206, 62, 0, 188, 213, 59, 174, 197, 0, 60, 164, 30, 175, 0, 44, 184, 239, 62, 29, 189, 109, 59, 67, 197, 0, 60, 189, 41, 157, 0, 148, 184, 234, 62, 171, 190, 109, 59, 28, 197, 0, 60, 239, 58, 145, 0, 233, 184, 227, 62, 95, 193, 109, 59, 28, 197, 0, 60, 18, 65, 149, 0, 182, 185, 199, 62, 29, 61, 109, 59, 67, 197, 0, 60, 8, 126, 9, 0, 30, 181, 107, 63, 0, 60, 205, 57, 245, 193, 0, 60, 242, 113, 54, 0, 235, 180, 174, 64, 0, 60, 169, 52, 203, 191, 0, 60, 33, 106, 60, 0, 37, 180, 238, 64, 26, 63, 164, 176, 203, 191, 0, 60, 57, 94, 62, 0, 244, 176, 234, 64, 26, 63, 231, 57, 62, 193, 0, 60, 21, 94, 81, 0, 191, 178, 176, 64, 0, 60, 52, 45, 42, 189, 0, 60, 60, 108, 26, 0, 176, 179, 23, 65, 26, 63, 174, 181, 42, 189, 0, 60, 71, 102, 24, 0, 97, 176, 17, 65, 0, 60, 240, 158, 40, 186, 0, 60, 62, 110, 9, 0, 72, 179, 55, 65, 26, 63, 23, 183, 40, 186, 0, 60, 72, 103, 8, 0, 247, 175, 48, 65, 0, 60, 0, 0, 0, 60, 0, 60, 61, 108, 25, 0, 9, 178, 160, 65, 26, 63, 252, 182, 0, 60, 0, 60, 68, 105, 244, 0, 70, 173, 150, 65, 208, 64, 109, 185, 203, 191, 0, 60, 50, 95, 66, 0, 61, 172, 234, 64, 208, 64, 137, 50, 62, 193, 0, 60, 37, 71, 98, 0, 124, 175, 180, 64, 208, 64, 28, 187, 42, 189, 0, 60, 58, 109, 26, 0, 13, 170, 13, 65, 208, 64, 208, 187, 40, 186, 0, 60, 59, 111, 9, 0, 89, 168, 41, 65, 208, 64, 194, 187, 0, 60, 0, 60, 58, 111, 240, 0, 44, 30, 135, 65, 250, 65, 201, 186, 203, 191, 0, 60, 17, 103, 71, 0, 253, 157, 229, 64, 250, 65, 106, 40, 62, 193, 0, 60, 12, 71, 104, 0, 105, 170, 173, 64, 250, 65, 59, 188, 42, 189, 0, 60, 20, 121, 29, 0, 72, 35, 7, 65, 250, 65, 150, 188, 40, 186, 0, 60, 21, 124, 10, 0, 55, 39, 34, 65, 250, 65, 143, 188, 0, 60, 0, 60, 21, 123, 238, 0, 95, 44, 127, 65, 205, 66, 251, 186, 203, 191, 0, 60, 246, 104, 71, 0, 120, 40, 223, 64, 205, 66, 62, 33, 62, 193, 0, 60, 252, 75, 101, 0, 232, 158, 165, 64, 205, 66, 84, 188, 42, 189, 0, 60, 244, 122, 29, 0, 38, 43, 1, 65, 205, 66, 175, 188, 40, 186, 0, 60, 243, 125, 10, 0, 128, 44, 29, 65, 205, 66, 168, 188, 0, 60, 0, 60, 244, 124, 238, 0, 27, 47, 122, 65, 26, 68, 109, 185, 203, 191, 0, 60, 253, 101, 75, 0, 220, 46, 204, 64, 26, 68, 137, 50, 62, 193, 0, 60, 4, 87, 91, 0, 240, 43, 142, 64, 26, 68, 28, 187, 42, 189, 0, 60, 253, 123, 30, 0, 52, 48, 243, 64, 26, 68, 208, 187, 40, 186, 0, 60, 253, 126, 10, 0, 186, 48, 17, 65, 26, 68, 194, 187, 0, 60, 0, 60, 252, 125, 237, 0, 24, 50, 116, 65, 144, 68, 52, 186, 203, 191, 0, 60, 23, 101, 72, 0, 36, 49, 198, 64, 144, 68, 221, 46, 62, 193, 0, 60, 20, 91, 85, 0, 84, 47, 137, 64, 144, 68, 226, 187, 42, 189, 0, 60, 27, 120, 29, 0, 225, 49, 237, 64, 144, 68, 75, 188, 40, 186, 0, 60, 28, 123, 10, 0, 98, 50, 11, 65, 144, 68, 68, 188, 0, 60, 0, 60, 27, 122, 234, 0, 193, 51, 111, 65, 217, 69, 93, 188, 203, 191, 0, 60, 20, 106, 66, 0, 237, 52, 182, 64, 217, 69, 168, 178, 62, 193, 0, 60, 26, 92, 82, 0, 44, 52, 124, 64, 217, 69, 52, 189, 42, 189, 0, 60, 19, 123, 21, 0, 73, 53, 221, 64, 217, 69, 142, 189, 40, 186, 0, 60, 17, 125, 10, 0, 135, 53, 250, 64, 217, 69, 135, 189, 0, 60, 0, 60, 26, 123, 244, 0, 64, 54, 96, 65, 217, 69, 25, 25, 227, 193, 0, 60, 31, 98, 73, 0, 235, 51, 103, 64, 144, 68, 21, 53, 227, 193, 0, 60, 22, 92, 83, 0, 131, 46, 115, 64, 26, 68, 163, 54, 227, 193, 0, 60, 14, 74, 101, 0, 27, 42, 120, 64, 205, 66, 89, 56, 227, 193, 0, 60, 2, 60, 111, 0, 83, 168, 131, 64, 250, 65, 138, 56, 227, 193, 0, 60, 10, 54, 114, 0, 7, 173, 140, 64, 208, 64, 230, 57, 227, 193, 0, 60, 20, 77, 98, 0, 198, 176, 146, 64, 26, 63, 150, 59, 227, 193, 0, 60, 8, 117, 47, 0, 248, 178, 155, 64, 1, 63, 151, 59, 61, 194, 0, 60, 247, 121, 34, 0, 101, 179, 147, 64, 29, 61, 109, 59, 61, 195, 0, 60, 225, 120, 24, 0, 224, 180, 131, 64, 76, 67, 182, 59, 66, 194, 0, 60, 4, 46, 117, 0, 143, 167, 100, 64, 46, 68, 182, 59, 66, 194, 0, 60, 18, 40, 118, 0, 4, 39, 87, 64, 71, 68, 188, 58, 66, 194, 0, 60, 45, 30, 114, 0, 167, 41, 90, 64, 70, 70, 189, 62, 221, 203, 0, 60, 47, 105, 205, 0, 93, 57, 207, 57, 70, 70, 189, 62, 71, 203, 0, 60, 58, 112, 0, 0, 2, 57, 141, 58, 122, 70, 80, 62, 71, 203, 0, 60, 86, 92, 0, 0, 40, 57, 162, 58, 122, 70, 80, 62, 221, 203, 0, 60, 63, 103, 219, 0, 134, 57, 225, 57, 70, 70, 189, 62, 156, 202, 0, 60, 74, 98, 29, 0, 130, 56, 113, 59, 122, 70, 80, 62, 156, 202, 0, 60, 87, 89, 22, 0, 170, 56, 134, 59, 232, 70, 3, 59, 71, 203, 0, 60, 109, 64, 0, 0, 183, 57, 237, 58, 232, 70, 3, 59, 221, 203, 0, 60, 106, 67, 245, 0, 24, 58, 27, 58, 232, 70, 3, 59, 156, 202, 0, 60, 103, 73, 0, 0, 52, 57, 221, 59, 158, 71, 159, 181, 71, 203, 0, 60, 113, 57, 0, 0, 183, 58, 110, 59, 158, 71, 159, 181, 221, 203, 0, 60, 112, 59, 251, 0, 36, 59, 146, 58, 158, 71, 159, 181, 156, 202, 0, 60, 112, 53, 231, 0, 52, 58, 49, 60, 7, 72, 114, 189, 71, 203, 0, 60, 107, 66, 0, 0, 130, 59, 216, 59, 7, 72, 114, 189, 221, 203, 0, 60, 107, 68, 255, 0, 250, 59, 251, 58, 7, 72, 114, 189, 156, 202, 0, 60, 115, 51, 250, 0, 246, 58, 93, 60, 7, 72, 114, 189, 66, 204, 0, 60, 106, 69, 0, 0, 63, 60, 246, 57, 158, 71, 234, 184, 66, 204, 0, 60, 109, 63, 252, 0, 204, 59, 162, 57, 19, 71, 144, 52, 58, 204, 0, 60, 98, 77, 238, 0, 234, 58, 92, 57, 157, 70, 101, 59, 40, 204, 0, 60, 75, 93, 217, 0, 51, 58, 88, 57, 7, 72, 114, 189, 162, 204, 0, 60, 107, 66, 0, 0, 136, 60, 190, 56, 203, 71, 238, 185, 158, 204, 0, 60, 105, 70, 253, 0, 63, 60, 141, 56, 54, 71, 2, 173, 142, 204, 0, 60, 81, 96, 242, 0, 171, 59, 108, 56, 170, 70, 67, 53, 129, 204, 0, 60, 51, 109, 216, 0, 11, 59, 85, 56, 36, 70, 118, 61, 4, 204, 0, 60, 27, 103, 189, 0, 138, 57, 125, 57, 199, 69, 118, 61, 10, 204, 0, 60, 8, 102, 182, 0, 90, 57, 67, 57, 167, 68, 189, 62, 222, 203, 0, 60, 214, 40, 144, 0, 96, 56, 40, 57, 70, 70, 222, 61, 232, 203, 0, 60, 38, 83, 169, 0, 128, 57, 180, 57, 167, 68, 69, 62, 222, 203, 0, 60, 215, 48, 147, 0, 103, 56, 13, 57, 38, 69, 118, 61, 10, 204, 0, 60, 245, 100, 180, 0, 244, 56, 249, 56, 200, 68, 118, 61, 4, 204, 0, 60, 207, 93, 187, 0, 172, 56, 221, 56, 167, 68, 118, 61, 244, 203, 0, 60, 222, 98, 184, 0, 133, 56, 225, 56, 14, 70, 244, 58, 76, 204, 0, 60, 21, 114, 206, 0, 26, 58, 170, 56, 177, 69, 82, 59, 75, 204, 0, 60, 6, 117, 208, 0, 216, 57, 128, 56, 38, 69, 129, 59, 63, 204, 0, 60, 245, 116, 206, 0, 98, 57, 92, 56, 200, 68, 129, 59, 57, 204, 0, 60, 233, 114, 208, 0, 23, 57, 64, 56, 167, 68, 129, 59, 47, 204, 0, 60, 234, 113, 204, 0, 237, 56, 73, 56, 7, 70, 184, 54, 142, 204, 0, 60, 32, 112, 208, 0, 168, 58, 200, 55, 199, 69, 145, 55, 153, 204, 0, 60, 21, 115, 208, 0, 138, 58, 75, 55, 76, 69, 189, 55, 146, 204, 0, 60, 238, 115, 207, 0, 38, 58, 247, 54, 212, 68, 123, 55, 135, 204, 0, 60, 236, 114, 205, 0, 190, 57, 184, 54, 99, 68, 104, 55, 130, 204, 0, 60, 251, 114, 202, 0, 99, 57, 104, 54, 84, 70, 230, 57, 88, 204, 0, 60, 34, 111, 207, 0, 101, 58, 170, 56, 78, 70, 91, 51, 158, 204, 0, 60, 28, 114, 208, 0, 5, 59, 164, 55, 235, 68, 149, 42, 185, 204, 0, 60, 231, 110, 201, 0, 58, 58, 136, 53, 96, 68, 24, 40, 176, 204, 0, 60, 250, 112, 198, 0, 197, 57, 43, 53, 228, 70, 220, 179, 216, 204, 0, 60, 19, 116, 210, 0, 248, 59, 198, 54, 126, 70, 6, 180, 223, 204, 0, 60, 20, 112, 202, 0, 186, 59, 56, 54, 86, 71, 19, 179, 219, 204, 0, 60, 62, 104, 220, 0, 38, 60, 41, 55, 234, 68, 93, 178, 219, 204, 0, 60, 229, 108, 197, 0, 133, 58, 173, 52, 101, 68, 168, 179, 215, 204, 0, 60, 249, 112, 198, 0, 29, 58, 54, 52, 169, 69, 165, 44, 216, 204, 0, 60, 0, 112, 197, 0, 252, 58, 182, 53, 194, 70, 253, 186, 51, 205, 0, 60, 7, 111, 196, 0, 90, 60, 99, 52, 34, 70, 244, 186, 37, 205, 0, 60, 3, 107, 189, 0, 16, 60, 255, 51, 200, 68, 244, 186, 32, 205, 0, 60, 231, 111, 201, 0, 17, 59, 83, 49, 167, 68, 244, 186, 22, 205, 0, 60, 240, 111, 197, 0, 225, 58, 116, 49, 203, 71, 49, 188, 238, 204, 0, 60, 94, 82, 240, 0, 147, 60, 53, 55, 86, 71, 68, 187, 43, 205, 0, 60, 38, 114, 217, 0, 140, 60, 46, 53, 14, 71, 253, 186, 38, 205, 0, 60, 10, 114, 203, 0, 105, 60, 3, 53, 7, 72, 219, 188, 242, 204, 0, 60, 99, 79, 253, 0, 182, 60, 82, 55, 38, 69, 244, 186, 38, 205, 0, 60, 249, 108, 191, 0, 100, 59, 211, 49, 73, 64, 114, 62, 9, 204, 0, 60, 250, 56, 143, 0, 100, 53, 181, 55, 55, 183, 180, 62, 186, 203, 0, 60, 219, 115, 221, 0, 67, 44, 122, 54, 70, 64, 186, 62, 9, 204, 0, 60, 249, 0, 130, 0, 87, 53, 205, 55, 97, 66, 244, 186, 41, 205, 0, 60, 1, 112, 197, 0, 233, 57, 176, 42, 93, 66, 187, 179, 221, 204, 0, 60, 255, 113, 199, 0, 61, 57, 201, 49, 93, 66, 152, 39, 180, 204, 0, 60, 255, 112, 198, 0, 233, 56, 220, 51, 93, 66, 104, 55, 136, 204, 0, 60, 255, 113, 199, 0, 135, 56, 41, 53, 97, 66, 129, 59, 66, 204, 0, 60, 2, 112, 197, 0, 249, 55, 238, 54, 8, 63, 244, 186, 15, 205, 0, 60, 0, 112, 198, 0, 157, 56, 172, 147, 98, 63, 187, 179, 211, 204, 0, 60, 0, 113, 199, 0, 37, 56, 82, 47, 104, 63, 152, 39, 172, 204, 0, 60, 0, 112, 197, 0, 175, 55, 187, 49, 98, 63, 104, 55, 126, 204, 0, 60, 0, 114, 201, 0, 235, 54, 36, 52, 8, 63, 129, 59, 40, 204, 0, 60, 249, 107, 189, 0, 144, 53, 41, 54, 183, 57, 244, 186, 35, 205, 0, 60, 2, 111, 196, 0, 208, 55, 206, 173, 126, 58, 187, 179, 219, 204, 0, 60, 7, 112, 198, 0, 194, 54, 164, 41, 143, 58, 152, 39, 179, 204, 0, 60, 7, 112, 198, 0, 42, 54, 45, 47, 126, 58, 104, 55, 134, 204, 0, 60, 6, 113, 201, 0, 107, 53, 40, 50, 183, 57, 129, 59, 60, 204, 0, 60, 0, 113, 200, 0, 52, 52, 241, 52, 180, 50, 244, 186, 30, 205, 0, 60, 9, 109, 193, 0, 240, 54, 86, 175, 126, 165, 86, 179, 225, 204, 0, 60, 10, 114, 203, 0, 122, 53, 125, 161, 26, 169, 100, 37, 187, 204, 0, 60, 13, 111, 198, 0, 229, 52, 208, 42, 126, 165, 110, 55, 142, 204, 0, 60, 13, 112, 200, 0, 53, 52, 101, 48, 180, 50, 129, 59, 55, 204, 0, 60, 4, 115, 205, 0, 201, 50, 158, 52, 229, 189, 244, 186, 66, 205, 0, 60, 0, 104, 184, 0, 151, 52, 57, 180, 229, 189, 236, 172, 242, 204, 0, 60, 2, 118, 210, 0, 117, 50, 31, 175, 229, 189, 236, 172, 216, 204, 0, 60, 2, 118, 211, 0, 201, 49, 106, 172, 229, 189, 145, 55, 181, 204, 0, 60, 0, 107, 189, 0, 145, 48, 179, 33, 229, 189, 129, 59, 91, 204, 0, 60, 251, 121, 220, 0, 20, 45, 246, 48, 110, 192, 244, 186, 51, 205, 0, 60, 0, 102, 181, 0, 66, 50, 158, 180, 110, 192, 236, 172, 227, 204, 0, 60, 246, 122, 224, 0, 15, 47, 19, 176, 110, 192, 236, 172, 201, 204, 0, 60, 10, 111, 196, 0, 224, 45, 99, 173, 110, 192, 145, 55, 166, 204, 0, 60, 195, 101, 211, 0, 73, 43, 56, 152, 110, 192, 129, 59, 76, 204, 0, 60, 173, 95, 0, 0, 115, 29, 124, 48, 8, 188, 219, 62, 89, 202, 0, 60, 216, 120, 251, 0, 147, 175, 33, 57, 178, 186, 109, 62, 132, 203, 0, 60, 167, 77, 210, 0, 107, 32, 220, 54, 218, 188, 139, 62, 89, 202, 0, 60, 167, 89, 246, 0, 127, 176, 12, 57, 184, 188, 189, 62, 2, 201, 0, 60, 211, 118, 0, 0, 9, 180, 66, 59, 138, 189, 110, 62, 2, 201, 0, 60, 164, 86, 0, 0, 107, 180, 50, 59, 123, 187, 78, 61, 121, 203, 0, 60, 151, 69, 248, 0, 56, 165, 152, 54, 92, 189, 105, 61, 89, 202, 0, 60, 142, 52, 244, 0, 114, 177, 234, 56, 12, 190, 150, 60, 2, 201, 0, 60, 142, 53, 0, 0, 73, 181, 13, 59, 48, 188, 106, 60, 109, 203, 0, 60, 158, 80, 4, 0, 89, 170, 132, 54, 241, 189, 149, 60, 89, 202, 0, 60, 184, 103, 249, 0, 64, 178, 206, 56, 248, 189, 149, 60, 243, 200, 0, 60, 148, 65, 255, 0, 152, 181, 66, 59, 0, 188, 74, 62, 206, 199, 0, 60, 154, 38, 64, 0, 181, 180, 139, 60, 188, 189, 149, 60, 46, 200, 0, 60, 168, 86, 28, 0, 16, 182, 94, 60, 184, 188, 189, 62, 25, 200, 0, 60, 143, 41, 38, 0, 192, 180, 95, 60, 119, 195, 149, 60, 58, 200, 0, 60, 231, 117, 39, 0, 218, 184, 10, 60, 238, 196, 86, 186, 2, 198, 0, 60, 2, 30, 133, 0, 84, 187, 151, 61, 235, 196, 163, 170, 230, 197, 0, 60, 254, 24, 132, 0, 143, 187, 244, 61, 231, 196, 111, 188, 32, 198, 0, 60, 0, 121, 219, 0, 52, 187, 111, 61, 239, 196, 5, 187, 122, 198, 0, 60, 0, 120, 40, 0, 26, 187, 56, 61, 246, 196, 204, 186, 213, 198, 0, 60, 0, 98, 80, 0, 6, 187, 13, 61, 254, 196, 64, 50, 41, 199, 0, 60, 0, 73, 103, 0, 183, 186, 132, 60, 61, 197, 238, 57, 4, 200, 0, 60, 6, 108, 65, 0, 169, 186, 230, 59, 96, 198, 86, 186, 251, 197, 0, 60, 243, 27, 133, 0, 95, 188, 97, 61, 101, 198, 163, 170, 223, 197, 0, 60, 242, 45, 139, 0, 119, 188, 186, 61, 82, 198, 111, 188, 22, 198, 0, 60, 234, 117, 213, 0, 78, 188, 56, 61, 65, 198, 5, 187, 111, 198, 0, 60, 244, 120, 38, 0, 49, 188, 7, 61, 48, 198, 204, 186, 200, 198, 0, 60, 241, 100, 76, 0, 29, 188, 222, 60, 33, 198, 64, 50, 27, 199, 0, 60, 252, 68, 106, 0, 199, 187, 97, 60, 4, 198, 82, 59, 237, 199, 0, 60, 8, 112, 58, 0, 121, 187, 191, 59, 100, 197, 188, 61, 171, 197, 0, 60, 174, 37, 89, 0, 47, 188, 154, 62, 100, 197, 220, 60, 171, 197, 0, 60, 149, 41, 203, 0, 44, 188, 128, 62, 21, 196, 220, 60, 171, 197, 0, 60, 77, 57, 174, 0, 30, 187, 176, 62, 21, 196, 188, 61, 171, 197, 0, 60, 90, 53, 71, 0, 56, 187, 199, 62, 21, 196, 137, 60, 167, 200, 0, 60, 38, 120, 246, 0, 59, 184, 1, 59, 241, 195, 73, 60, 198, 200, 0, 60, 225, 123, 0, 0, 218, 183, 245, 58, 149, 195, 149, 60, 255, 200, 0, 60, 212, 118, 1, 0, 161, 182, 206, 58, 241, 195, 73, 60, 106, 201, 0, 60, 0, 127, 0, 0, 168, 184, 146, 57, 57, 198, 73, 60, 132, 201, 0, 60, 238, 120, 220, 0, 69, 186, 96, 56, 129, 197, 73, 60, 106, 201, 0, 60, 1, 127, 254, 0, 209, 185, 220, 56, 39, 198, 116, 60, 94, 201, 0, 60, 23, 123, 238, 0, 91, 186, 162, 56, 173, 197, 73, 60, 92, 201, 0, 60, 6, 126, 245, 0, 0, 186, 222, 56, 78, 198, 149, 60, 254, 201, 0, 60, 200, 113, 2, 0, 209, 185, 75, 55, 179, 198, 239, 58, 254, 201, 0, 60, 251, 126, 11, 0, 54, 186, 215, 54, 159, 198, 87, 58, 132, 201, 0, 60, 247, 115, 204, 0, 132, 186, 30, 56, 99, 198, 210, 60, 97, 201, 0, 60, 10, 93, 172, 0, 139, 186, 131, 56, 173, 198, 125, 61, 100, 201, 0, 60, 19, 60, 146, 0, 212, 186, 116, 56, 255, 198, 241, 61, 105, 201, 0, 60, 58, 41, 152, 0, 21, 187, 81, 56, 251, 198, 40, 60, 236, 201, 0, 60, 59, 112, 248, 0, 140, 186, 198, 54, 15, 199, 53, 59, 125, 201, 0, 60, 71, 84, 194, 0, 195, 186, 1, 56, 77, 199, 4, 62, 149, 201, 0, 60, 112, 56, 238, 0, 59, 187, 190, 55, 67, 199, 4, 62, 122, 201, 0, 60, 92, 34, 176, 0, 71, 187, 22, 56, 36, 199, 121, 60, 246, 201, 0, 60, 59, 107, 226, 0, 173, 186, 125, 54, 47, 199, 53, 61, 219, 201, 0, 60, 87, 84, 221, 0, 230, 186, 207, 54, 25, 199, 234, 60, 214, 201, 0, 60, 104, 70, 238, 0, 207, 186, 247, 54, 13, 199, 46, 60, 240, 201, 0, 60, 43, 113, 220, 0, 151, 186, 165, 54, 64, 199, 202, 61, 180, 201, 0, 60, 99, 78, 4, 0, 33, 187, 74, 55, 42, 199, 127, 61, 174, 201, 0, 60, 107, 66, 11, 0, 9, 187, 105, 55, 135, 198, 239, 58, 80, 202, 0, 60, 235, 124, 2, 0, 205, 185, 233, 53, 214, 198, 40, 60, 90, 202, 0, 60, 18, 125, 1, 0, 12, 186, 123, 53, 106, 198, 239, 58, 162, 202, 0, 60, 195, 108, 232, 0, 109, 185, 248, 52, 184, 198, 40, 60, 172, 202, 0, 60, 38, 120, 245, 0, 174, 185, 144, 52, 84, 198, 149, 60, 196, 202, 0, 60, 194, 93, 198, 0, 27, 185, 247, 52, 71, 191, 149, 60, 210, 202, 0, 60, 246, 122, 226, 0, 213, 177, 200, 55, 148, 195, 149, 60, 214, 201, 0, 60, 0, 127, 0, 0, 174, 183, 213, 56, 121, 196, 149, 60, 202, 202, 0, 60, 243, 110, 196, 0, 109, 183, 22, 54, 26, 199, 44, 60, 12, 202, 0, 60, 11, 126, 253, 0, 137, 186, 63, 54, 209, 198, 10, 60, 184, 202, 0, 60, 75, 101, 246, 0, 183, 185, 80, 52, 9, 199, 10, 60, 52, 202, 0, 60, 225, 122, 247, 0, 89, 186, 200, 53, 115, 198, 148, 57, 230, 202, 0, 60, 17, 117, 211, 0, 38, 185, 5, 52, 184, 198, 65, 58, 3, 203, 0, 60, 87, 91, 245, 0, 83, 185, 195, 50, 125, 198, 148, 57, 204, 203, 0, 60, 0, 127, 255, 0, 150, 184, 189, 41, 182, 196, 148, 57, 212, 202, 0, 60, 244, 98, 177, 0, 140, 183, 51, 53, 102, 196, 148, 57, 129, 203, 0, 60, 28, 123, 11, 0, 11, 182, 75, 50, 76, 196, 148, 57, 84, 204, 0, 60, 16, 125, 0, 0, 38, 180, 211, 165, 97, 196, 148, 57, 222, 204, 0, 60, 14, 116, 208, 0, 16, 177, 99, 179, 210, 197, 148, 57, 236, 204, 0, 60, 255, 112, 198, 0, 129, 180, 61, 181, 74, 199, 148, 57, 216, 204, 0, 60, 201, 108, 220, 0, 227, 182, 1, 182, 82, 199, 148, 57, 131, 204, 0, 60, 223, 119, 229, 0, 32, 184, 43, 180, 127, 198, 148, 57, 234, 203, 0, 60, 0, 127, 0, 0, 127, 184, 22, 37, 136, 198, 148, 57, 85, 204, 0, 60, 253, 127, 1, 0, 186, 183, 112, 176, 176, 198, 127, 57, 162, 203, 0, 60, 245, 126, 253, 0, 227, 184, 156, 44, 196, 198, 127, 57, 126, 203, 0, 60, 195, 107, 230, 0, 15, 185, 93, 46, 196, 198, 130, 58, 63, 203, 0, 60, 50, 116, 253, 0, 55, 185, 6, 49, 196, 198, 10, 60, 3, 203, 0, 60, 115, 51, 246, 0, 137, 185, 124, 50, 176, 198, 127, 57, 78, 204, 0, 60, 251, 126, 2, 0, 9, 184, 108, 176, 176, 198, 127, 57, 78, 204, 0, 60, 251, 126, 2, 0, 156, 66, 126, 188, 82, 199, 148, 57, 131, 204, 0, 60, 223, 119, 229, 0, 120, 66, 222, 188, 93, 200, 127, 57, 78, 204, 0, 60, 215, 95, 184, 0, 38, 66, 126, 188, 82, 199, 4, 54, 153, 204, 0, 60, 163, 80, 226, 0, 116, 66, 18, 189, 93, 200, 219, 53, 99, 204, 0, 60, 211, 101, 195, 0, 33, 66, 179, 188, 227, 199, 183, 170, 220, 204, 0, 60, 201, 98, 199, 0, 89, 66, 152, 189, 114, 200, 228, 32, 189, 204, 0, 60, 56, 100, 204, 0, 24, 66, 117, 189, 227, 199, 183, 170, 220, 204, 0, 60, 201, 98, 199, 0, 225, 183, 88, 183, 82, 199, 4, 54, 153, 204, 0, 60, 163, 80, 226, 0, 47, 184, 7, 181, 210, 201, 57, 181, 48, 204, 0, 60, 227, 123, 5, 0, 127, 65, 53, 188, 210, 201, 244, 180, 71, 204, 0, 60, 237, 117, 44, 0, 126, 65, 93, 188, 107, 202, 211, 182, 41, 204, 0, 60, 13, 118, 43, 0, 62, 65, 43, 188, 107, 202, 24, 183, 17, 204, 0, 60, 254, 126, 5, 0, 61, 65, 2, 188, 215, 202, 224, 182, 14, 204, 0, 60, 24, 117, 41, 0, 14, 65, 4, 188, 215, 202, 37, 183, 238, 203, 0, 60, 13, 126, 5, 0, 12, 65, 183, 187, 23, 203, 195, 181, 3, 204, 0, 60, 56, 107, 37, 0, 243, 64, 240, 187, 23, 203, 7, 182, 214, 203, 0, 60, 54, 114, 5, 0, 238, 64, 162, 187, 79, 203, 61, 172, 226, 203, 0, 60, 81, 91, 32, 0, 211, 64, 218, 187, 79, 203, 80, 173, 179, 203, 0, 60, 73, 103, 4, 0, 205, 64, 138, 187, 126, 203, 254, 49, 200, 203, 0, 60, 73, 96, 37, 0, 184, 64, 209, 187, 126, 203, 116, 49, 153, 203, 0, 60, 52, 115, 5, 0, 177, 64, 127, 187, 184, 203, 46, 53, 159, 203, 0, 60, 58, 107, 34, 0, 152, 64, 170, 187, 184, 203, 233, 52, 112, 203, 0, 60, 48, 117, 5, 0, 146, 64, 89, 187, 252, 203, 118, 56, 131, 203, 0, 60, 54, 108, 37, 0, 117, 64, 165, 187, 252, 203, 84, 56, 84, 203, 0, 60, 48, 117, 5, 0, 110, 64, 84, 187, 49, 204, 205, 58, 116, 203, 0, 60, 42, 111, 43, 0, 70, 64, 204, 187, 49, 204, 171, 58, 69, 203, 0, 60, 40, 119, 13, 0, 62, 64, 124, 187, 34, 201, 233, 45, 71, 204, 0, 60, 234, 124, 5, 0, 204, 65, 119, 188, 34, 201, 252, 46, 95, 204, 0, 60, 237, 117, 45, 0, 200, 65, 158, 188, 120, 201, 46, 44, 86, 204, 0, 60, 236, 116, 46, 0, 165, 65, 134, 188, 120, 201, 53, 42, 62, 204, 0, 60, 219, 121, 5, 0, 168, 65, 93, 188, 224, 200, 191, 52, 82, 204, 0, 60, 11, 124, 234, 0, 234, 65, 151, 188, 237, 200, 62, 52, 95, 204, 0, 60, 6, 108, 65, 0, 226, 65, 173, 188, 210, 201, 54, 33, 97, 204, 0, 60, 6, 85, 93, 0, 126, 65, 145, 188, 107, 202, 215, 174, 67, 204, 0, 60, 35, 81, 90, 0, 61, 65, 100, 188, 215, 202, 10, 175, 40, 204, 0, 60, 43, 80, 88, 0, 13, 65, 61, 188, 23, 203, 40, 169, 28, 204, 0, 60, 65, 73, 80, 0, 241, 64, 45, 188, 79, 203, 14, 52, 11, 204, 0, 60, 84, 62, 70, 0, 209, 64, 38, 188, 126, 203, 14, 56, 252, 203, 0, 60, 79, 64, 75, 0, 182, 64, 35, 188, 184, 203, 38, 57, 211, 203, 0, 60, 70, 71, 77, 0, 152, 64, 14, 188, 252, 203, 5, 59, 183, 203, 0, 60, 54, 76, 85, 0, 118, 64, 11, 188, 49, 204, 174, 60, 168, 203, 0, 60, 44, 77, 89, 0, 75, 64, 28, 188, 34, 201, 221, 54, 121, 204, 0, 60, 248, 84, 94, 0, 197, 65, 210, 188, 120, 201, 41, 54, 112, 204, 0, 60, 2, 82, 96, 0, 163, 65, 191, 188, 237, 200, 174, 56, 121, 204, 0, 60, 9, 71, 104, 0, 217, 65, 232, 188, 210, 201, 2, 53, 109, 204, 0, 60, 20, 57, 111, 0, 126, 65, 182, 188, 107, 202, 70, 50, 79, 204, 0, 60, 42, 55, 105, 0, 59, 65, 139, 188, 215, 202, 44, 50, 52, 204, 0, 60, 49, 55, 102, 0, 9, 65, 100, 188, 23, 203, 51, 52, 40, 204, 0, 60, 67, 50, 95, 0, 237, 64, 83, 188, 79, 203, 115, 56, 22, 204, 0, 60, 81, 42, 86, 0, 204, 64, 76, 188, 126, 203, 123, 58, 9, 204, 0, 60, 77, 42, 90, 0, 177, 64, 72, 188, 184, 203, 146, 59, 234, 203, 0, 60, 70, 46, 94, 0, 148, 64, 51, 188, 252, 203, 185, 60, 206, 203, 0, 60, 49, 51, 104, 0, 116, 64, 48, 188, 49, 204, 228, 61, 191, 203, 0, 60, 43, 52, 106, 0, 76, 64, 62, 188, 34, 201, 219, 57, 133, 204, 0, 60, 0, 56, 113, 0, 194, 65, 243, 188, 120, 201, 129, 57, 124, 204, 0, 60, 15, 53, 114, 0, 163, 65, 227, 188, 237, 200, 26, 59, 133, 204, 0, 60, 0, 51, 115, 0, 210, 65, 8, 189, 210, 201, 86, 60, 127, 204, 0, 60, 254, 100, 77, 0, 126, 65, 16, 189, 97, 202, 151, 59, 102, 204, 0, 60, 22, 104, 69, 0, 58, 65, 238, 188, 206, 202, 130, 59, 78, 204, 0, 60, 39, 100, 66, 0, 3, 65, 203, 188, 21, 203, 38, 60, 62, 204, 0, 60, 69, 89, 58, 0, 220, 64, 180, 188, 79, 203, 79, 61, 41, 204, 0, 60, 82, 80, 52, 0, 184, 64, 158, 188, 126, 203, 83, 62, 28, 204, 0, 60, 72, 92, 48, 0, 159, 64, 149, 188, 184, 203, 223, 62, 7, 204, 0, 60, 70, 84, 62, 0, 134, 64, 128, 188, 252, 203, 207, 63, 243, 203, 0, 60, 55, 88, 72, 0, 107, 64, 121, 188, 49, 204, 125, 64, 228, 203, 0, 60, 32, 104, 64, 0, 75, 64, 127, 188, 34, 201, 3, 62, 151, 204, 0, 60, 237, 100, 74, 0, 189, 65, 53, 189, 120, 201, 214, 61, 142, 204, 0, 60, 243, 106, 67, 0, 163, 65, 44, 189, 237, 200, 163, 62, 151, 204, 0, 60, 254, 104, 71, 0, 202, 65, 61, 189, 224, 201, 116, 60, 163, 204, 0, 60, 209, 105, 204, 0, 122, 65, 77, 189, 98, 202, 213, 59, 138, 204, 0, 60, 225, 111, 204, 0, 62, 65, 47, 189, 205, 202, 188, 59, 113, 204, 0, 60, 240, 113, 202, 0, 7, 65, 17, 189, 21, 203, 66, 60, 97, 204, 0, 60, 7, 111, 196, 0, 224, 64, 252, 188, 77, 203, 57, 61, 81, 204, 0, 60, 28, 107, 195, 0, 192, 64, 226, 188, 128, 203, 44, 62, 66, 204, 0, 60, 17, 109, 195, 0, 166, 64, 207, 188, 186, 203, 231, 62, 48, 204, 0, 60, 18, 110, 197, 0, 139, 64, 189, 188, 252, 203, 9, 64, 34, 204, 0, 60, 34, 110, 204, 0, 110, 64, 175, 188, 49, 204, 159, 64, 27, 204, 0, 60, 253, 113, 200, 0, 79, 64, 170, 188, 34, 201, 72, 62, 192, 204, 0, 60, 219, 105, 197, 0, 189, 65, 96, 189, 121, 201, 132, 61, 181, 204, 0, 60, 212, 105, 202, 0, 163, 65, 92, 189, 237, 200, 232, 62, 192, 204, 0, 60, 2, 116, 206, 0, 202, 65, 92, 189, 224, 201, 93, 52, 203, 204, 0, 60, 206, 78, 170, 0, 117, 65, 184, 189, 98, 202, 39, 49, 175, 204, 0, 60, 214, 80, 168, 0, 59, 65, 162, 189, 205, 202, 195, 48, 151, 204, 0, 60, 224, 83, 167, 0, 10, 65, 138, 189, 21, 203, 236, 51, 135, 204, 0, 60, 241, 86, 164, 0, 232, 64, 117, 189, 77, 203, 188, 55, 119, 204, 0, 60, 249, 85, 163, 0, 205, 64, 86, 189, 129, 203, 192, 57, 104, 204, 0, 60, 239, 83, 162, 0, 179, 64, 57, 189, 186, 203, 31, 59, 87, 204, 0, 60, 244, 83, 162, 0, 151, 64, 35, 189, 252, 203, 236, 60, 67, 204, 0, 60, 5, 80, 158, 0, 121, 64, 1, 189, 49, 204, 24, 62, 59, 204, 0, 60, 236, 78, 159, 0, 82, 64, 241, 188, 34, 201, 66, 58, 224, 204, 0, 60, 223, 79, 163, 0, 192, 65, 167, 189, 121, 201, 66, 56, 221, 204, 0, 60, 210, 79, 169, 0, 160, 65, 185, 189, 237, 200, 130, 59, 224, 204, 0, 60, 20, 75, 157, 0, 209, 65, 151, 189, 210, 201, 234, 183, 2, 205, 0, 60, 221, 108, 202, 0, 126, 65, 45, 190, 94, 202, 165, 181, 213, 204, 0, 60, 235, 112, 202, 0, 64, 65, 247, 189, 202, 202, 95, 181, 188, 204, 0, 60, 225, 110, 202, 0, 15, 65, 221, 189, 20, 203, 121, 179, 171, 204, 0, 60, 249, 107, 190, 0, 238, 64, 198, 189, 77, 203, 195, 160, 155, 204, 0, 60, 13, 103, 184, 0, 211, 64, 169, 189, 129, 203, 65, 50, 141, 204, 0, 60, 252, 102, 182, 0, 186, 64, 143, 189, 184, 203, 112, 48, 138, 204, 0, 60, 255, 105, 185, 0, 163, 64, 150, 189, 252, 203, 246, 53, 124, 204, 0, 60, 9, 98, 178, 0, 131, 64, 125, 189, 49, 204, 82, 57, 116, 204, 0, 60, 237, 93, 172, 0, 87, 64, 105, 189, 34, 201, 220, 172, 25, 205, 0, 60, 247, 96, 174, 0, 203, 65, 27, 190, 120, 201, 170, 175, 17, 205, 0, 60, 214, 98, 189, 0, 168, 65, 31, 190, 237, 200, 32, 45, 25, 205, 0, 60, 39, 87, 173, 0, 224, 65, 8, 190, 207, 200, 87, 62, 151, 204, 0, 60, 47, 93, 71, 0, 209, 65, 61, 189, 207, 200, 156, 62, 192, 204, 0, 60, 57, 101, 206, 0, 208, 65, 90, 189, 175, 200, 121, 61, 151, 204, 0, 60, 83, 70, 64, 0, 218, 65, 60, 189, 175, 200, 190, 61, 192, 204, 0, 60, 93, 68, 205, 0, 216, 65, 92, 189, 150, 200, 20, 58, 151, 204, 0, 60, 104, 52, 49, 0, 240, 65, 47, 189, 150, 200, 158, 58, 192, 204, 0, 60, 109, 48, 215, 0, 238, 65, 103, 189, 194, 200, 178, 55, 71, 204, 0, 60, 247, 86, 165, 0, 247, 65, 121, 188, 179, 200, 3, 174, 107, 204, 0, 60, 18, 125, 8, 0, 254, 65, 195, 188, 159, 200, 211, 56, 66, 204, 0, 60, 226, 86, 169, 0, 7, 66, 107, 188, 114, 200, 127, 57, 71, 204, 0, 60, 214, 85, 173, 0, 29, 66, 113, 188, 131, 200, 85, 50, 136, 204, 0, 60, 37, 118, 27, 0, 14, 66, 1, 189, 120, 201, 53, 42, 175, 203, 0, 60, 224, 120, 22, 0, 141, 191, 172, 160, 120, 201, 119, 169, 137, 203, 0, 60, 216, 108, 204, 0, 136, 191, 46, 36, 34, 201, 173, 165, 135, 203, 0, 60, 234, 118, 216, 0, 84, 191, 147, 148, 34, 201, 233, 45, 172, 203, 0, 60, 222, 118, 30, 0, 90, 191, 1, 166, 186, 201, 140, 181, 154, 203, 0, 60, 209, 114, 227, 0, 189, 191, 165, 36, 186, 201, 74, 179, 116, 203, 0, 60, 210, 92, 184, 0, 179, 191, 50, 41, 85, 202, 99, 183, 106, 203, 0, 60, 228, 108, 197, 0, 7, 192, 7, 45, 85, 202, 129, 180, 68, 203, 0, 60, 219, 86, 171, 0, 1, 192, 155, 46, 189, 202, 128, 183, 53, 203, 0, 60, 232, 107, 193, 0, 31, 192, 54, 48, 189, 202, 143, 180, 16, 203, 0, 60, 223, 85, 169, 0, 25, 192, 251, 48, 3, 203, 77, 182, 29, 203, 0, 60, 4, 113, 199, 0, 47, 192, 82, 49, 3, 203, 255, 179, 247, 202, 0, 60, 249, 97, 175, 0, 40, 192, 12, 50, 120, 201, 69, 54, 107, 203, 0, 60, 234, 66, 150, 0, 115, 191, 228, 42, 34, 201, 154, 54, 104, 203, 0, 60, 10, 77, 157, 0, 65, 191, 2, 40, 186, 201, 158, 50, 85, 203, 0, 60, 216, 58, 151, 0, 157, 191, 158, 44, 85, 202, 229, 48, 37, 203, 0, 60, 214, 52, 149, 0, 235, 191, 84, 48, 189, 202, 202, 48, 241, 202, 0, 60, 212, 48, 148, 0, 14, 192, 248, 49, 3, 203, 234, 49, 217, 202, 0, 60, 209, 49, 149, 0, 29, 192, 13, 51, 117, 201, 69, 61, 24, 203, 0, 60, 0, 81, 159, 0, 72, 191, 34, 48, 33, 201, 90, 61, 7, 203, 0, 60, 49, 92, 185, 0, 24, 191, 78, 47, 185, 201, 135, 60, 14, 203, 0, 60, 230, 65, 151, 0, 113, 191, 142, 48, 91, 202, 80, 60, 249, 202, 0, 60, 224, 49, 144, 0, 192, 191, 76, 50, 189, 202, 77, 60, 200, 202, 0, 60, 214, 36, 143, 0, 236, 191, 200, 51, 3, 203, 113, 60, 175, 202, 0, 60, 198, 34, 150, 0, 3, 192, 109, 52, 118, 201, 152, 64, 168, 202, 0, 60, 24, 107, 194, 0, 31, 191, 166, 50, 60, 201, 75, 64, 80, 202, 0, 60, 52, 108, 216, 0, 229, 190, 32, 51, 188, 201, 133, 64, 171, 202, 0, 60, 247, 107, 189, 0, 62, 191, 63, 51, 94, 202, 128, 64, 178, 202, 0, 60, 242, 99, 179, 0, 141, 191, 93, 52, 189, 202, 127, 64, 164, 202, 0, 60, 228, 90, 172, 0, 180, 191, 220, 52, 3, 203, 131, 64, 139, 202, 0, 60, 194, 95, 202, 0, 204, 191, 65, 53, 209, 200, 92, 62, 81, 202, 0, 60, 74, 97, 225, 0, 174, 190, 138, 49, 200, 200, 176, 60, 162, 202, 0, 60, 49, 109, 217, 0, 197, 190, 143, 47, 227, 200, 61, 58, 252, 202, 0, 60, 26, 110, 201, 0, 245, 190, 136, 44, 237, 200, 243, 51, 172, 203, 0, 60, 192, 108, 15, 0, 56, 191, 104, 168, 208, 200, 167, 53, 108, 203, 0, 60, 217, 109, 205, 0, 24, 191, 122, 152, 194, 200, 184, 55, 172, 203, 0, 60, 192, 108, 14, 0, 25, 191, 170, 169, 160, 200, 244, 56, 172, 203, 0, 60, 197, 112, 251, 0, 2, 191, 139, 170, 168, 200, 122, 57, 69, 203, 0, 60, 240, 117, 212, 0, 236, 190, 22, 34, 114, 200, 127, 57, 172, 203, 0, 60, 230, 124, 251, 0, 231, 190, 228, 171, 93, 200, 127, 57, 160, 203, 0, 60, 0, 127, 0, 0, 215, 190, 166, 171, 83, 200, 127, 57, 124, 203, 0, 60, 250, 125, 242, 0, 201, 190, 98, 169, 83, 200, 10, 60, 2, 203, 0, 60, 238, 118, 215, 0, 164, 190, 236, 38, 83, 200, 130, 58, 61, 203, 0, 60, 237, 118, 216, 0, 183, 190, 190, 158, 87, 200, 10, 60, 217, 202, 0, 60, 254, 123, 227, 0, 155, 190, 108, 42, 112, 200, 10, 60, 102, 202, 0, 60, 53, 113, 235, 0, 128, 190, 103, 47, 121, 200, 44, 60, 62, 202, 0, 60, 71, 102, 236, 0, 116, 190, 99, 48, 125, 200, 121, 60, 40, 202, 0, 60, 73, 99, 227, 0, 111, 190, 212, 48, 196, 200, 219, 61, 48, 202, 0, 60, 74, 94, 217, 0, 152, 190, 192, 49, 185, 200, 118, 62, 24, 202, 0, 60, 73, 89, 205, 0, 141, 190, 59, 50, 131, 200, 53, 61, 14, 202, 0, 60, 70, 87, 198, 0, 107, 190, 131, 49, 193, 200, 11, 63, 241, 201, 0, 60, 75, 99, 236, 0, 134, 190, 5, 51, 139, 200, 202, 61, 230, 201, 0, 60, 77, 98, 237, 0, 98, 190, 87, 50, 200, 200, 69, 63, 210, 201, 0, 60, 49, 99, 61, 0, 127, 190, 151, 51, 146, 200, 4, 62, 200, 201, 0, 60, 58, 107, 34, 0, 90, 190, 236, 50, 43, 201, 89, 64, 65, 202, 0, 60, 61, 103, 216, 0, 216, 190, 52, 51, 37, 201, 99, 64, 41, 202, 0, 60, 59, 101, 210, 0, 206, 190, 129, 51, 41, 201, 174, 64, 5, 202, 0, 60, 57, 109, 227, 0, 195, 190, 15, 52, 48, 201, 203, 64, 231, 201, 0, 60, 27, 106, 63, 0, 192, 190, 79, 52, 197, 201, 152, 64, 136, 202, 0, 60, 6, 123, 229, 0, 55, 191, 218, 51, 152, 201, 48, 65, 16, 202, 0, 60, 8, 119, 41, 0, 250, 190, 161, 52, 74, 202, 152, 64, 143, 202, 0, 60, 254, 124, 231, 0, 121, 191, 138, 52, 17, 202, 48, 65, 28, 202, 0, 60, 250, 122, 34, 0, 55, 191, 43, 53, 144, 202, 200, 64, 63, 202, 0, 60, 239, 117, 213, 0, 133, 191, 137, 53, 204, 200, 4, 62, 186, 201, 0, 60, 9, 71, 104, 0, 101, 190, 7, 52, 162, 200, 4, 62, 177, 201, 0, 60, 20, 91, 85, 0, 83, 190, 109, 51, 41, 201, 184, 62, 207, 201, 0, 60, 246, 43, 118, 0, 145, 190, 189, 52, 134, 201, 240, 63, 228, 201, 0, 60, 239, 51, 114, 0, 206, 190, 47, 53, 244, 201, 153, 64, 252, 201, 0, 60, 251, 73, 103, 0, 26, 191, 113, 53, 107, 202, 225, 64, 27, 202, 0, 60, 232, 124, 255, 0, 101, 191, 163, 53, 89, 202, 225, 64, 17, 202, 0, 60, 246, 88, 90, 0, 88, 191, 162, 53, 58, 203, 225, 64, 27, 202, 0, 60, 243, 59, 145, 0, 208, 191, 165, 54, 59, 203, 91, 63, 64, 202, 0, 60, 210, 69, 162, 0, 240, 191, 255, 53, 60, 203, 194, 60, 142, 202, 0, 60, 189, 42, 158, 0, 13, 192, 6, 53, 60, 203, 20, 56, 162, 202, 0, 60, 203, 41, 149, 0, 33, 192, 100, 52, 67, 203, 136, 43, 191, 202, 0, 60, 248, 96, 174, 0, 47, 192, 219, 51, 79, 203, 80, 173, 248, 202, 0, 60, 38, 111, 210, 0, 61, 192, 248, 50, 126, 203, 116, 49, 222, 202, 0, 60, 39, 117, 230, 0, 69, 192, 16, 52, 222, 203, 44, 56, 101, 202, 0, 60, 0, 105, 185, 0, 71, 192, 174, 53, 184, 203, 233, 52, 181, 202, 0, 60, 17, 121, 223, 0, 76, 192, 195, 52, 252, 203, 84, 56, 153, 202, 0, 60, 40, 116, 226, 0, 89, 192, 115, 53, 209, 203, 157, 59, 80, 202, 0, 60, 194, 50, 158, 0, 55, 192, 21, 54, 17, 204, 225, 64, 27, 202, 0, 60, 240, 21, 133, 0, 31, 192, 25, 56, 238, 203, 193, 61, 40, 202, 0, 60, 219, 26, 138, 0, 48, 192, 225, 54, 30, 204, 105, 59, 86, 201, 0, 60, 183, 73, 71, 0, 49, 192, 75, 56, 35, 204, 105, 59, 144, 201, 0, 60, 167, 89, 8, 0, 63, 192, 27, 56, 46, 204, 16, 58, 144, 201, 0, 60, 190, 107, 6, 0, 71, 192, 50, 56, 41, 204, 16, 58, 86, 201, 0, 60, 199, 102, 48, 0, 56, 192, 109, 56, 36, 204, 105, 59, 210, 201, 0, 60, 167, 89, 248, 0, 73, 192, 170, 55, 30, 204, 105, 59, 12, 202, 0, 60, 183, 74, 185, 0, 79, 192, 29, 55, 41, 204, 16, 58, 12, 202, 0, 60, 199, 102, 209, 0, 88, 192, 56, 55, 46, 204, 16, 58, 210, 201, 0, 60, 190, 107, 251, 0, 82, 192, 204, 55, 71, 204, 241, 56, 144, 201, 0, 60, 238, 125, 1, 0, 87, 192, 85, 56, 66, 204, 241, 56, 86, 201, 0, 60, 238, 118, 41, 0, 74, 192, 160, 56, 66, 204, 241, 56, 12, 202, 0, 60, 240, 124, 235, 0, 103, 192, 126, 55, 71, 204, 241, 56, 210, 201, 0, 60, 238, 125, 255, 0, 97, 192, 6, 56, 17, 204, 105, 59, 27, 202, 0, 60, 211, 71, 162, 0, 76, 192, 211, 54, 28, 204, 16, 58, 27, 202, 0, 60, 200, 102, 207, 0, 84, 192, 239, 54, 17, 204, 105, 59, 71, 201, 0, 60, 225, 31, 118, 0, 41, 192, 66, 56, 27, 204, 16, 58, 71, 201, 0, 60, 232, 31, 120, 0, 44, 192, 103, 56, 53, 204, 241, 56, 27, 202, 0, 60, 230, 123, 240, 0, 99, 192, 54, 55, 52, 204, 241, 56, 71, 201, 0, 60, 245, 74, 101, 0, 60, 192, 161, 56, 248, 203, 216, 58, 45, 202, 0, 60, 225, 72, 157, 0, 68, 192, 111, 54, 15, 204, 84, 58, 82, 202, 0, 60, 11, 124, 232, 0, 86, 192, 82, 54, 49, 204, 171, 58, 138, 202, 0, 60, 15, 125, 11, 0, 114, 192, 46, 54, 78, 204, 115, 59, 138, 202, 0, 60, 17, 121, 32, 0, 131, 192, 112, 54, 84, 204, 1, 57, 12, 202, 0, 60, 71, 104, 4, 0, 113, 192, 174, 55, 89, 204, 1, 57, 210, 201, 0, 60, 74, 102, 5, 0, 107, 192, 27, 56, 89, 204, 1, 57, 144, 201, 0, 60, 74, 102, 251, 0, 98, 192, 103, 56, 84, 204, 1, 57, 86, 201, 0, 60, 74, 99, 24, 0, 88, 192, 182, 56, 96, 204, 32, 60, 12, 202, 0, 60, 90, 89, 249, 0, 128, 192, 238, 55, 99, 204, 32, 60, 210, 201, 0, 60, 95, 83, 6, 0, 122, 192, 54, 56, 99, 204, 32, 60, 144, 201, 0, 60, 95, 83, 250, 0, 115, 192, 128, 56, 96, 204, 32, 60, 86, 201, 0, 60, 92, 85, 16, 0, 109, 192, 196, 56, 120, 204, 9, 61, 12, 202, 0, 60, 31, 119, 228, 0, 141, 192, 17, 56, 123, 204, 9, 61, 210, 201, 0, 60, 31, 122, 1, 0, 137, 192, 78, 56, 123, 204, 9, 61, 144, 201, 0, 60, 31, 122, 255, 0, 131, 192, 149, 56, 120, 204, 9, 61, 86, 201, 0, 60, 32, 119, 27, 0, 124, 192, 208, 56, 145, 204, 0, 61, 12, 202, 0, 60, 216, 116, 226, 0, 154, 192, 35, 56, 148, 204, 0, 61, 210, 201, 0, 60, 210, 117, 254, 0, 151, 192, 97, 56, 148, 204, 0, 61, 144, 201, 0, 60, 210, 117, 2, 0, 144, 192, 169, 56, 145, 204, 0, 61, 86, 201, 0, 60, 216, 115, 31, 0, 137, 192, 226, 56, 177, 204, 144, 58, 12, 202, 0, 60, 209, 117, 249, 0, 177, 192, 53, 56, 180, 204, 144, 58, 210, 201, 0, 60, 202, 114, 255, 0, 174, 192, 125, 56, 180, 204, 144, 58, 144, 201, 0, 60, 197, 112, 2, 0, 168, 192, 204, 56, 177, 204, 144, 58, 86, 201, 0, 60, 207, 114, 21, 0, 161, 192, 19, 57, 120, 204, 157, 60, 38, 202, 0, 60, 27, 107, 194, 0, 143, 192, 229, 55, 140, 204, 108, 60, 41, 202, 0, 60, 234, 107, 192, 0, 155, 192, 245, 55, 96, 204, 104, 59, 38, 202, 0, 60, 71, 101, 231, 0, 129, 192, 172, 55, 120, 204, 71, 59, 87, 202, 0, 60, 16, 120, 219, 0, 148, 192, 92, 55, 145, 204, 55, 59, 87, 202, 0, 60, 235, 116, 211, 0, 164, 192, 135, 55, 96, 204, 118, 57, 87, 202, 0, 60, 35, 121, 2, 0, 132, 192, 32, 55, 73, 204, 123, 56, 40, 202, 0, 60, 9, 125, 14, 0, 112, 192, 83, 55, 115, 204, 211, 58, 138, 202, 0, 60, 4, 126, 6, 0, 151, 192, 213, 54, 134, 204, 61, 58, 138, 202, 0, 60, 240, 121, 225, 0, 163, 192, 243, 54, 159, 204, 61, 58, 130, 202, 0, 60, 241, 123, 231, 0, 177, 192, 48, 55, 165, 204, 208, 58, 59, 202, 0, 60, 220, 118, 228, 0, 174, 192, 232, 55, 175, 204, 61, 58, 118, 202, 0, 60, 248, 125, 240, 0, 185, 192, 100, 55, 188, 204, 61, 58, 99, 202, 0, 60, 243, 125, 244, 0, 192, 192, 165, 55, 194, 204, 61, 58, 80, 202, 0, 60, 240, 125, 249, 0, 194, 192, 220, 55, 200, 204, 61, 58, 41, 202, 0, 60, 241, 125, 255, 0, 194, 192, 33, 56, 200, 204, 61, 58, 218, 201, 0, 60, 240, 125, 2, 0, 187, 192, 129, 56, 189, 204, 61, 58, 200, 201, 0, 60, 230, 124, 1, 0, 179, 192, 143, 56, 189, 204, 61, 58, 107, 201, 0, 60, 228, 123, 0, 0, 170, 192, 0, 57, 189, 204, 61, 58, 13, 201, 0, 60, 85, 87, 34, 0, 164, 192, 119, 57, 177, 204, 64, 57, 49, 201, 0, 60, 12, 114, 53, 0, 156, 192, 73, 57, 145, 204, 88, 60, 49, 201, 0, 60, 213, 108, 49, 0, 134, 192, 17, 57, 120, 204, 96, 60, 49, 201, 0, 60, 30, 111, 51, 0, 120, 192, 255, 56, 96, 204, 240, 58, 49, 201, 0, 60, 91, 80, 36, 0, 102, 192, 243, 56, 84, 204, 98, 55, 49, 201, 0, 60, 76, 85, 54, 0, 81, 192, 246, 56, 177, 204, 55, 56, 2, 201, 0, 60, 16, 111, 58, 0, 151, 192, 134, 57, 145, 204, 168, 59, 2, 201, 0, 60, 216, 105, 58, 0, 129, 192, 73, 57, 120, 204, 185, 59, 2, 201, 0, 60, 29, 108, 59, 0, 115, 192, 54, 57, 96, 204, 231, 57, 2, 201, 0, 60, 86, 80, 46, 0, 98, 192, 51, 57, 84, 204, 81, 53, 2, 201, 0, 60, 96, 64, 51, 0, 78, 192, 65, 57, 177, 204, 13, 52, 217, 200, 0, 60, 26, 108, 59, 0, 145, 192, 195, 57, 145, 204, 119, 57, 217, 200, 0, 60, 221, 93, 77, 0, 125, 192, 136, 57, 120, 204, 136, 57, 217, 200, 0, 60, 24, 93, 81, 0, 110, 192, 118, 57, 96, 204, 109, 55, 217, 200, 0, 60, 82, 78, 56, 0, 91, 192, 119, 57, 84, 204, 123, 43, 217, 200, 0, 60, 107, 62, 24, 0, 72, 192, 141, 57, 177, 204, 103, 50, 179, 200, 0, 60, 45, 108, 47, 0, 142, 192, 239, 57, 145, 204, 54, 54, 179, 200, 0, 60, 226, 105, 62, 0, 121, 192, 205, 57, 120, 204, 68, 54, 179, 200, 0, 60, 24, 98, 75, 0, 105, 192, 189, 57, 96, 204, 173, 52, 179, 200, 0, 60, 70, 81, 66, 0, 88, 192, 178, 57, 84, 204, 90, 47, 179, 200, 0, 60, 90, 79, 38, 0, 77, 192, 188, 57, 195, 204, 61, 58, 250, 200, 0, 60, 98, 73, 30, 0, 167, 192, 146, 57, 195, 204, 149, 57, 176, 200, 0, 60, 107, 64, 21, 0, 165, 192, 244, 57, 195, 204, 22, 56, 113, 200, 0, 60, 97, 77, 24, 0, 157, 192, 69, 58, 128, 204, 137, 170, 35, 198, 0, 60, 50, 114, 24, 0, 86, 192, 250, 59, 105, 204, 43, 173, 231, 197, 0, 60, 4, 123, 28, 0, 68, 192, 13, 60, 28, 204, 246, 173, 240, 197, 0, 60, 241, 125, 247, 0, 16, 192, 1, 60, 19, 204, 197, 176, 48, 198, 0, 60, 243, 124, 234, 0, 12, 192, 209, 59, 25, 204, 137, 170, 142, 197, 0, 60, 206, 109, 217, 0, 13, 192, 36, 60, 253, 203, 137, 170, 36, 198, 0, 60, 231, 117, 215, 0, 250, 191, 213, 59, 186, 203, 137, 170, 110, 198, 0, 60, 229, 113, 207, 0, 206, 191, 151, 59, 120, 204, 132, 179, 156, 197, 0, 60, 9, 126, 253, 0, 77, 192, 44, 60, 43, 204, 234, 179, 165, 197, 0, 60, 230, 123, 250, 0, 27, 192, 30, 60, 109, 204, 137, 170, 63, 197, 0, 60, 2, 113, 200, 0, 67, 192, 79, 60, 56, 204, 137, 170, 63, 197, 0, 60, 241, 113, 202, 0, 31, 192, 70, 60, 145, 204, 137, 170, 80, 197, 0, 60, 18, 117, 213, 0, 94, 192, 77, 60, 127, 204, 137, 170, 62, 197, 0, 60, 6, 114, 202, 0, 80, 192, 82, 60, 175, 204, 137, 170, 153, 197, 0, 60, 10, 126, 255, 0, 116, 192, 55, 60, 161, 204, 137, 170, 112, 197, 0, 60, 23, 118, 218, 0, 105, 192, 68, 60, 148, 204, 137, 170, 221, 197, 0, 60, 11, 114, 53, 0, 99, 192, 24, 60, 171, 204, 47, 171, 26, 198, 0, 60, 233, 121, 28, 0, 117, 192, 13, 60, 188, 204, 137, 170, 222, 197, 0, 60, 0, 127, 255, 0, 127, 192, 32, 60, 150, 204, 101, 171, 235, 198, 0, 60, 93, 82, 232, 0, 98, 192, 120, 59, 163, 204, 160, 50, 206, 198, 0, 60, 71, 102, 236, 0, 111, 192, 148, 59, 144, 204, 215, 50, 35, 198, 0, 60, 72, 100, 28, 0, 99, 192, 243, 59, 109, 204, 26, 41, 144, 200, 0, 60, 63, 102, 41, 0, 90, 192, 246, 57, 125, 204, 170, 52, 140, 200, 0, 60, 37, 104, 61, 0, 105, 192, 247, 57, 165, 204, 14, 51, 48, 200, 0, 60, 54, 112, 20, 0, 122, 192, 143, 58, 151, 204, 173, 169, 43, 200, 0, 60, 88, 80, 42, 0, 107, 192, 146, 58, 167, 204, 181, 51, 198, 198, 0, 60, 231, 124, 7, 0, 114, 192, 154, 59, 149, 204, 236, 51, 35, 198, 0, 60, 251, 118, 44, 0, 102, 192, 243, 59, 149, 204, 236, 51, 137, 200, 0, 60, 225, 121, 20, 0, 120, 192, 13, 58, 170, 204, 17, 52, 51, 200, 0, 60, 225, 122, 247, 0, 126, 192, 142, 58, 176, 204, 170, 44, 192, 198, 0, 60, 187, 104, 17, 0, 122, 192, 165, 59, 164, 204, 170, 44, 35, 198, 0, 60, 197, 96, 57, 0, 112, 192, 2, 60, 164, 204, 170, 44, 137, 200, 0, 60, 249, 125, 18, 0, 132, 192, 31, 58, 184, 204, 24, 45, 65, 200, 0, 60, 20, 125, 6, 0, 138, 192, 131, 58, 169, 204, 215, 50, 141, 199, 0, 60, 74, 103, 255, 0, 119, 192, 27, 59, 154, 204, 137, 170, 141, 199, 0, 60, 95, 83, 255, 0, 104, 192, 18, 59, 190, 204, 170, 44, 141, 199, 0, 60, 172, 93, 7, 0, 135, 192, 36, 59, 175, 204, 236, 51, 141, 199, 0, 60, 235, 125, 3, 0, 122, 192, 29, 59, 195, 204, 137, 170, 17, 198, 0, 60, 236, 124, 11, 0, 131, 192, 14, 60, 195, 204, 137, 170, 126, 199, 0, 60, 176, 97, 8, 0, 140, 192, 50, 59, 195, 204, 231, 39, 237, 199, 0, 60, 213, 119, 1, 0, 141, 192, 234, 58, 195, 204, 186, 51, 56, 200, 0, 60, 91, 82, 29, 0, 148, 192, 146, 58, 233, 198, 20, 187, 229, 197, 0, 60, 237, 26, 134, 0, 157, 188, 78, 61, 239, 198, 101, 36, 196, 197, 0, 60, 238, 56, 144, 0, 183, 188, 179, 61, 215, 198, 22, 189, 6, 198, 0, 60, 216, 110, 210, 0, 144, 188, 35, 61, 195, 198, 234, 187, 114, 198, 0, 60, 227, 117, 36, 0, 110, 188, 244, 60, 174, 198, 165, 187, 223, 198, 0, 60, 217, 97, 70, 0, 88, 188, 200, 60, 156, 198, 24, 53, 69, 199, 0, 60, 233, 69, 103, 0, 20, 188, 60, 60, 120, 198, 200, 60, 34, 200, 0, 60, 12, 118, 42, 0, 216, 187, 75, 59, 202, 199, 54, 188, 209, 197, 0, 60, 2, 29, 133, 0, 243, 188, 49, 61, 210, 199, 137, 48, 165, 197, 0, 60, 252, 74, 154, 0, 28, 189, 165, 61, 179, 199, 66, 190, 253, 197, 0, 60, 240, 117, 211, 0, 225, 188, 4, 61, 151, 199, 195, 188, 141, 198, 0, 60, 236, 119, 38, 0, 193, 188, 210, 60, 124, 199, 149, 188, 29, 199, 0, 60, 229, 99, 74, 0, 172, 188, 161, 60, 100, 199, 83, 56, 163, 199, 0, 60, 236, 73, 101, 0, 97, 188, 252, 59, 53, 199, 207, 62, 123, 200, 0, 60, 20, 123, 21, 0, 64, 188, 156, 58, 160, 200, 58, 188, 12, 198, 0, 60, 53, 31, 146, 0, 108, 189, 254, 60, 164, 200, 162, 48, 224, 197, 0, 60, 37, 90, 176, 0, 174, 189, 92, 61, 148, 200, 73, 190, 56, 198, 0, 60, 29, 115, 214, 0, 78, 189, 218, 60, 135, 200, 201, 188, 201, 198, 0, 60, 247, 118, 44, 0, 61, 189, 161, 60, 121, 200, 154, 188, 90, 199, 0, 60, 242, 104, 69, 0, 47, 189, 109, 60, 109, 200, 94, 56, 225, 199, 0, 60, 215, 69, 97, 0, 241, 188, 158, 59, 85, 200, 220, 62, 155, 200, 0, 60, 230, 121, 26, 0, 191, 188, 101, 58, 24, 201, 87, 187, 221, 198, 0, 60, 107, 28, 195, 0, 189, 189, 176, 60, 32, 201, 74, 41, 189, 198, 0, 60, 55, 97, 196, 0, 11, 190, 235, 60, 10, 201, 80, 189, 250, 198, 0, 60, 63, 109, 248, 0, 153, 189, 154, 60, 240, 200, 29, 188, 100, 199, 0, 60, 238, 118, 41, 0, 138, 189, 104, 60, 215, 200, 240, 187, 205, 199, 0, 60, 228, 105, 64, 0, 125, 189, 62, 60, 191, 200, 201, 53, 24, 200, 0, 60, 175, 61, 74, 0, 52, 189, 118, 59, 137, 200, 45, 61, 150, 200, 0, 60, 190, 95, 49, 0, 244, 188, 112, 58, 67, 201, 105, 185, 31, 200, 0, 60, 116, 38, 224, 0, 2, 190, 32, 60, 72, 201, 103, 176, 22, 200, 0, 60, 97, 77, 234, 0, 64, 190, 70, 60, 59, 201, 65, 187, 39, 200, 0, 60, 20, 124, 13, 0, 229, 189, 27, 60, 45, 201, 233, 185, 69, 200, 0, 60, 240, 125, 11, 0, 232, 189, 219, 59, 30, 201, 191, 185, 98, 200, 0, 60, 152, 59, 41, 0, 217, 189, 157, 59, 17, 201, 105, 41, 126, 200, 0, 60, 148, 53, 39, 0, 151, 189, 8, 59, 243, 200, 135, 56, 197, 200, 0, 60, 149, 58, 34, 0, 118, 189, 95, 58, 100, 201, 137, 170, 122, 200, 0, 60, 90, 16, 169, 0, 117, 190, 249, 59, 100, 201, 242, 187, 122, 200, 0, 60, 20, 108, 195, 0, 49, 190, 96, 59, 252, 201, 242, 187, 175, 200, 0, 60, 13, 93, 172, 0, 175, 190, 244, 58, 252, 201, 137, 170, 175, 200, 0, 60, 20, 0, 131, 0, 207, 190, 140, 59, 186, 203, 232, 187, 175, 200, 0, 60, 253, 91, 168, 0, 213, 191, 79, 58, 186, 203, 137, 170, 175, 200, 0, 60, 250, 0, 130, 0, 235, 191, 232, 58, 73, 201, 17, 188, 18, 201, 0, 60, 190, 108, 2, 0, 49, 190, 107, 58, 166, 201, 17, 188, 39, 201, 0, 60, 0, 127, 254, 0, 110, 190, 90, 58, 1, 202, 17, 188, 61, 201, 0, 60, 0, 127, 254, 0, 164, 190, 52, 58, 89, 202, 17, 188, 81, 201, 0, 60, 0, 127, 0, 0, 216, 190, 251, 57, 107, 202, 17, 188, 71, 201, 0, 60, 0, 127, 254, 0, 229, 190, 2, 58, 17, 204, 17, 188, 71, 201, 0, 60, 8, 117, 47, 0, 252, 191, 105, 57, 32, 201, 51, 29, 202, 200, 0, 60, 143, 56, 7, 0, 187, 189, 152, 58, 47, 201, 92, 182, 196, 200, 0, 60, 136, 37, 16, 0, 229, 189, 200, 58, 252, 200, 132, 52, 220, 200, 0, 60, 145, 60, 0, 0, 156, 189, 84, 58, 32, 201, 93, 39, 21, 201, 0, 60, 150, 69, 0, 0, 211, 189, 40, 58, 49, 201, 237, 181, 22, 201, 0, 60, 135, 37, 2, 0, 248, 189, 72, 58, 246, 200, 196, 52, 21, 201, 0, 60, 143, 56, 249, 0, 174, 189, 255, 57, 65, 200, 4, 62, 217, 200, 0, 60, 244, 124, 234, 0, 187, 188, 6, 58, 195, 200, 4, 62, 245, 200, 0, 60, 190, 83, 69, 0, 26, 189, 208, 57, 237, 200, 4, 62, 254, 200, 0, 60, 162, 52, 66, 0, 52, 189, 168, 57, 132, 199, 4, 62, 189, 200, 0, 60, 7, 117, 208, 0, 88, 188, 40, 58, 55, 199, 241, 61, 192, 200, 0, 60, 39, 117, 229, 0, 57, 188, 42, 58, 195, 198, 125, 61, 221, 200, 0, 60, 62, 110, 251, 0, 7, 188, 7, 58, 121, 198, 210, 60, 218, 200, 0, 60, 55, 114, 0, 0, 202, 187, 16, 58, 61, 198, 116, 60, 216, 200, 0, 60, 69, 99, 36, 0, 151, 187, 22, 58, 173, 197, 73, 60, 213, 200, 0, 60, 209, 40, 110, 0, 36, 187, 14, 58, 239, 197, 35, 58, 213, 200, 0, 60, 18, 100, 75, 0, 82, 187, 61, 58, 195, 197, 35, 58, 198, 200, 0, 60, 211, 114, 32, 0, 56, 187, 68, 58, 129, 197, 73, 60, 198, 200, 0, 60, 168, 75, 50, 0, 252, 186, 34, 58, 166, 197, 162, 58, 167, 200, 0, 60, 205, 115, 251, 0, 29, 187, 102, 58, 100, 197, 137, 60, 167, 200, 0, 60, 148, 65, 7, 0, 211, 186, 77, 58, 52, 204, 92, 186, 71, 201, 0, 60, 59, 18, 110, 0, 22, 192, 106, 57, 27, 204, 61, 185, 71, 201, 0, 60, 6, 15, 125, 0, 12, 192, 63, 57, 68, 204, 56, 180, 134, 200, 0, 60, 115, 51, 15, 0, 62, 192, 1, 58, 69, 204, 31, 181, 217, 200, 0, 60, 123, 30, 7, 0, 56, 192, 164, 57, 69, 204, 234, 169, 2, 201, 0, 60, 103, 37, 63, 0, 58, 192, 93, 57, 67, 204, 77, 185, 134, 200, 0, 60, 105, 0, 186, 0, 47, 192, 9, 58, 68, 204, 192, 185, 217, 200, 0, 60, 85, 167, 228, 0, 45, 192, 186, 57, 68, 204, 31, 183, 2, 201, 0, 60, 107, 214, 52, 0, 44, 192, 134, 57, 89, 204, 146, 185, 179, 200, 0, 60, 46, 159, 190, 0, 39, 192, 211, 57, 89, 204, 5, 186, 217, 200, 0, 60, 15, 135, 223, 0, 39, 192, 189, 57, 89, 204, 169, 183, 2, 201, 0, 60, 36, 140, 35, 0, 38, 192, 166, 57, 59, 204, 134, 183, 24, 201, 0, 60, 108, 243, 64, 0, 38, 192, 112, 57, 62, 204, 231, 51, 24, 201, 0, 60, 87, 55, 73, 0, 61, 192, 25, 57, 69, 204, 220, 187, 33, 201, 0, 60, 52, 81, 82, 0, 26, 192, 151, 57, 156, 204, 102, 187, 225, 200, 0, 60, 122, 33, 1, 0, 35, 192, 185, 57, 41, 204, 185, 187, 150, 200, 0, 60, 15, 121, 223, 0, 29, 192, 56, 58, 109, 204, 37, 187, 144, 200, 0, 60, 243, 0, 130, 0, 71, 192, 244, 57, 109, 204, 26, 41, 144, 200, 0, 60, 63, 102, 41, 0, 82, 192, 140, 58, 107, 201, 137, 170, 188, 199, 0, 60, 2, 126, 250, 0, 84, 190, 127, 60, 114, 201, 137, 170, 154, 198, 0, 60, 234, 122, 232, 0, 84, 190, 248, 60, 71, 201, 167, 53, 229, 197, 0, 60, 239, 125, 0, 0, 49, 190, 71, 61, 207, 200, 167, 53, 122, 197, 0, 60, 2, 126, 9, 0, 222, 189, 128, 61, 87, 200, 164, 49, 112, 197, 0, 60, 254, 123, 229, 0, 124, 189, 157, 61, 183, 201, 137, 170, 151, 197, 0, 60, 221, 121, 5, 0, 147, 190, 89, 61, 217, 201, 137, 170, 62, 198, 0, 60, 241, 125, 248, 0, 168, 190, 21, 61, 252, 201, 137, 170, 110, 198, 0, 60, 0, 127, 0, 0, 194, 190, 255, 60, 10, 201, 232, 40, 7, 197, 0, 60, 236, 114, 51, 0, 25, 190, 172, 61, 138, 200, 176, 50, 7, 197, 0, 60, 251, 125, 15, 0, 178, 189, 188, 61, 26, 200, 219, 54, 7, 197, 0, 60, 241, 110, 197, 0, 89, 189, 221, 61, 91, 199, 63, 57, 7, 197, 0, 60, 241, 93, 172, 0, 8, 189, 6, 62, 197, 198, 18, 59, 7, 197, 0, 60, 227, 77, 160, 0, 212, 188, 46, 62, 143, 198, 169, 53, 130, 197, 0, 60, 229, 79, 161, 0, 160, 188, 238, 61, 35, 197, 66, 56, 203, 197, 0, 60, 232, 20, 134, 0, 242, 187, 52, 62, 40, 195, 123, 59, 109, 197, 0, 60, 50, 71, 165, 0, 128, 186, 166, 62, 189, 195, 130, 57, 152, 197, 0, 60, 55, 52, 155, 0, 180, 186, 126, 62, 21, 196, 116, 61, 84, 197, 0, 60, 70, 70, 178, 0, 247, 186, 215, 62, 52, 195, 41, 61, 28, 197, 0, 60, 47, 86, 176, 0, 131, 186, 221, 62, 250, 195, 116, 61, 45, 197, 0, 60, 48, 90, 181, 0, 217, 186, 228, 62, 27, 194, 213, 59, 28, 197, 0, 60, 37, 78, 164, 0, 5, 186, 198, 62, 251, 194, 40, 54, 185, 197, 0, 60, 40, 44, 145, 0, 80, 186, 97, 62, 106, 194, 166, 56, 126, 197, 0, 60, 37, 56, 149, 0, 25, 186, 135, 62, 1, 198, 74, 61, 7, 197, 0, 60, 234, 71, 154, 0, 152, 188, 116, 62, 5, 198, 238, 57, 110, 197, 0, 60, 232, 63, 149, 0, 115, 188, 46, 62, 82, 198, 127, 56, 110, 197, 0, 60, 229, 70, 154, 0, 143, 188, 15, 62, 78, 198, 147, 60, 7, 197, 0, 60, 216, 68, 158, 0, 174, 188, 87, 62, 187, 197, 116, 61, 7, 197, 0, 60, 210, 73, 164, 0, 129, 188, 134, 62, 190, 197, 65, 58, 110, 197, 0, 60, 207, 39, 146, 0, 87, 188, 65, 62, 146, 197, 142, 60, 108, 197, 0, 60, 165, 48, 183, 0, 81, 188, 113, 62, 125, 197, 116, 61, 45, 197, 0, 60, 175, 74, 194, 0, 102, 188, 145, 62, 100, 197, 116, 61, 84, 197, 0, 60, 158, 70, 219, 0, 83, 188, 147, 62, 205, 194, 116, 61, 196, 190, 0, 60, 60, 111, 0, 0, 21, 56, 108, 192, 15, 195, 116, 61, 51, 182, 0, 60, 38, 114, 37, 0, 120, 55, 41, 192, 163, 194, 255, 60, 51, 182, 0, 60, 86, 89, 24, 0, 222, 55, 39, 192, 97, 194, 255, 60, 196, 190, 0, 60, 92, 87, 0, 0, 72, 56, 105, 192, 15, 195, 116, 61, 234, 193, 0, 60, 45, 100, 194, 0, 75, 56, 176, 192, 163, 194, 255, 60, 234, 193, 0, 60, 79, 88, 213, 0, 124, 56, 172, 192, 105, 194, 23, 60, 51, 182, 0, 60, 110, 60, 19, 0, 34, 56, 35, 192, 39, 194, 23, 60, 196, 190, 0, 60, 109, 63, 1, 0, 124, 56, 101, 192, 105, 194, 23, 60, 234, 193, 0, 60, 106, 69, 0, 0, 181, 56, 171, 192, 41, 193, 52, 17, 51, 182, 0, 60, 76, 98, 26, 0, 30, 57, 14, 192, 231, 192, 52, 17, 196, 190, 0, 60, 67, 106, 10, 0, 113, 57, 84, 192, 41, 193, 16, 52, 154, 193, 0, 60, 62, 103, 39, 0, 117, 57, 143, 192, 27, 194, 213, 59, 140, 195, 0, 60, 38, 111, 46, 0, 18, 57, 216, 192, 41, 193, 141, 57, 125, 194, 0, 60, 34, 108, 54, 0, 103, 57, 177, 192, 8, 192, 157, 56, 125, 194, 0, 60, 245, 102, 74, 0, 234, 57, 172, 192, 95, 193, 109, 59, 140, 195, 0, 60, 16, 114, 52, 0, 96, 57, 211, 192, 171, 190, 109, 59, 140, 195, 0, 60, 230, 115, 44, 0, 214, 187, 48, 65, 8, 192, 157, 56, 125, 194, 0, 60, 245, 102, 74, 0, 188, 187, 92, 65, 127, 189, 67, 59, 125, 194, 0, 60, 236, 110, 58, 0, 82, 187, 59, 65, 29, 189, 109, 59, 61, 195, 0, 60, 229, 117, 38, 0, 118, 187, 39, 65, 8, 192, 111, 175, 51, 182, 0, 60, 240, 122, 27, 0, 157, 57, 10, 192, 140, 191, 111, 175, 196, 190, 0, 60, 237, 124, 13, 0, 234, 57, 78, 192, 8, 192, 100, 48, 154, 193, 0, 60, 243, 111, 58, 0, 237, 57, 139, 192, 140, 191, 111, 175, 196, 190, 0, 60, 237, 124, 13, 0, 142, 186, 166, 65, 8, 192, 111, 175, 51, 182, 0, 60, 240, 122, 27, 0, 180, 185, 224, 65, 127, 189, 223, 50, 51, 182, 0, 60, 253, 125, 19, 0, 70, 185, 191, 65, 250, 188, 223, 50, 196, 190, 0, 60, 231, 121, 25, 0, 24, 186, 132, 65, 8, 192, 100, 48, 154, 193, 0, 60, 243, 111, 58, 0, 105, 187, 123, 65, 127, 189, 126, 55, 154, 193, 0, 60, 219, 107, 55, 0, 254, 186, 88, 65, 171, 190, 109, 59, 140, 195, 0, 60, 230, 115, 44, 0, 69, 58, 206, 192, 250, 195, 116, 61, 99, 195, 0, 60, 65, 106, 19, 0, 54, 56, 229, 192, 230, 195, 116, 61, 57, 195, 0, 60, 104, 59, 217, 0, 52, 56, 224, 192, 85, 195, 89, 60, 142, 194, 0, 60, 60, 109, 235, 0, 111, 56, 199, 192, 230, 195, 116, 61, 20, 194, 0, 60, 58, 101, 208, 0, 10, 56, 194, 192, 52, 195, 41, 61, 140, 195, 0, 60, 44, 108, 48, 0, 143, 56, 228, 192, 59, 194, 95, 58, 132, 194, 0, 60, 58, 110, 23, 0, 239, 56, 187, 192, 0, 188, 205, 57, 245, 193, 0, 60, 249, 114, 55, 0, 226, 186, 59, 65, 0, 188, 169, 52, 203, 191, 0, 60, 230, 117, 39, 0, 34, 186, 109, 65, 0, 188, 52, 45, 42, 189, 0, 60, 53, 114, 14, 0, 158, 185, 137, 65, 0, 188, 240, 158, 40, 186, 0, 60, 57, 112, 8, 0, 60, 185, 158, 65, 151, 199, 116, 61, 159, 190, 0, 60, 233, 124, 0, 0, 82, 162, 65, 192, 89, 199, 116, 61, 234, 193, 0, 60, 240, 94, 174, 0, 169, 171, 130, 192, 193, 199, 36, 61, 234, 193, 0, 60, 202, 101, 203, 0, 250, 173, 117, 192, 0, 200, 36, 61, 159, 190, 0, 60, 185, 104, 0, 0, 138, 170, 55, 192, 89, 199, 116, 61, 51, 182, 0, 60, 242, 119, 39, 0, 7, 44, 8, 192, 193, 199, 36, 61, 51, 182, 0, 60, 195, 107, 29, 0, 224, 37, 1, 192, 42, 200, 244, 55, 217, 193, 0, 60, 165, 86, 243, 0, 220, 177, 97, 192, 73, 200, 244, 55, 126, 190, 0, 60, 158, 80, 0, 0, 102, 176, 30, 192, 42, 200, 244, 55, 176, 181, 0, 60, 160, 77, 27, 0, 209, 171, 202, 191, 145, 200, 95, 182, 246, 193, 0, 60, 189, 107, 10, 0, 145, 180, 69, 192, 176, 200, 95, 182, 183, 190, 0, 60, 199, 113, 0, 0, 18, 180, 5, 192, 145, 200, 95, 182, 149, 182, 0, 60, 191, 104, 30, 0, 215, 177, 139, 191, 194, 200, 118, 183, 5, 194, 0, 60, 3, 126, 13, 0, 21, 181, 63, 192, 225, 200, 118, 183, 213, 190, 0, 60, 25, 124, 0, 0, 172, 180, 255, 191, 194, 200, 118, 183, 11, 183, 0, 60, 16, 122, 27, 0, 60, 179, 126, 191, 230, 200, 248, 180, 16, 194, 0, 60, 64, 109, 2, 0, 141, 181, 60, 192, 5, 201, 248, 180, 236, 190, 0, 60, 93, 86, 0, 0, 43, 181, 247, 191, 230, 200, 248, 180, 104, 183, 0, 60, 67, 106, 18, 0, 53, 180, 120, 191, 193, 203, 137, 170, 131, 182, 0, 60, 233, 116, 43, 0, 180, 186, 155, 190, 186, 203, 137, 170, 224, 192, 0, 60, 236, 125, 0, 0, 121, 187, 90, 191, 237, 203, 137, 170, 81, 192, 0, 60, 226, 122, 245, 0, 165, 187, 43, 191, 237, 203, 137, 170, 223, 185, 0, 60, 218, 120, 14, 0, 20, 187, 169, 190, 17, 201, 137, 170, 24, 184, 0, 60, 54, 110, 28, 0, 248, 180, 115, 191, 17, 201, 137, 170, 224, 192, 0, 60, 92, 85, 9, 0, 237, 181, 25, 192, 17, 201, 137, 170, 23, 194, 0, 60, 53, 115, 2, 0, 56, 182, 56, 192, 26, 200, 219, 54, 174, 195, 0, 60, 211, 117, 244, 0, 46, 179, 141, 192, 138, 200, 176, 50, 174, 195, 0, 60, 209, 105, 51, 0, 237, 180, 119, 192, 116, 200, 229, 41, 196, 194, 0, 60, 181, 98, 28, 0, 88, 180, 99, 192, 3, 200, 209, 57, 175, 194, 0, 60, 203, 107, 215, 0, 74, 177, 127, 192, 91, 199, 63, 57, 174, 195, 0, 60, 227, 119, 226, 0, 241, 176, 173, 192, 125, 199, 249, 57, 160, 194, 0, 60, 225, 102, 189, 0, 247, 175, 148, 192, 197, 198, 18, 59, 174, 195, 0, 60, 207, 115, 242, 0, 184, 174, 195, 192, 192, 198, 136, 59, 139, 194, 0, 60, 230, 107, 194, 0, 206, 171, 172, 192, 78, 198, 147, 60, 174, 195, 0, 60, 212, 115, 27, 0, 1, 172, 214, 192, 184, 197, 118, 60, 108, 194, 0, 60, 217, 115, 221, 0, 88, 37, 206, 192, 1, 198, 74, 61, 174, 195, 0, 60, 213, 106, 53, 0, 146, 168, 228, 192, 125, 197, 116, 61, 99, 195, 0, 60, 211, 113, 32, 0, 68, 37, 236, 192, 187, 197, 116, 61, 174, 195, 0, 60, 234, 116, 45, 0, 42, 161, 236, 192, 117, 197, 116, 61, 20, 194, 0, 60, 199, 100, 206, 0, 202, 43, 207, 192, 117, 197, 116, 61, 57, 195, 0, 60, 173, 95, 3, 0, 26, 39, 233, 192, 10, 201, 232, 40, 174, 195, 0, 60, 5, 112, 58, 0, 103, 182, 94, 192, 15, 201, 211, 176, 205, 194, 0, 60, 26, 121, 26, 0, 27, 182, 73, 192, 213, 200, 138, 182, 194, 194, 0, 60, 24, 115, 45, 0, 113, 181, 77, 192, 173, 200, 240, 181, 191, 194, 0, 60, 224, 106, 60, 0, 10, 181, 81, 192, 183, 201, 137, 170, 142, 194, 0, 60, 5, 126, 7, 0, 24, 184, 53, 192, 217, 201, 137, 170, 64, 193, 0, 60, 5, 126, 7, 0, 47, 184, 19, 192, 17, 201, 137, 180, 159, 164, 0, 60, 30, 107, 60, 0, 151, 180, 61, 191, 230, 200, 88, 184, 234, 39, 0, 60, 42, 108, 49, 0, 171, 179, 61, 191, 252, 201, 137, 170, 24, 184, 0, 60, 0, 114, 53, 0, 215, 183, 42, 191, 252, 201, 137, 180, 159, 164, 0, 60, 0, 110, 62, 0, 130, 183, 242, 190, 237, 203, 137, 180, 174, 179, 0, 60, 213, 105, 56, 0, 234, 186, 115, 190, 193, 203, 137, 180, 146, 45, 0, 60, 228, 106, 63, 0, 138, 186, 100, 190, 194, 200, 151, 185, 224, 42, 0, 60, 3, 122, 34, 0, 142, 178, 66, 191, 145, 200, 11, 185, 70, 45, 0, 60, 199, 109, 29, 0, 82, 177, 79, 191, 42, 200, 60, 52, 109, 48, 0, 60, 167, 78, 43, 0, 38, 170, 142, 191, 193, 199, 54, 60, 207, 46, 0, 60, 199, 93, 63, 0, 75, 40, 204, 191, 89, 199, 134, 60, 207, 46, 0, 60, 247, 102, 74, 0, 192, 44, 215, 191, 8, 192, 148, 181, 207, 46, 0, 60, 242, 108, 64, 0, 101, 185, 250, 65, 127, 189, 136, 164, 207, 46, 0, 60, 201, 105, 43, 0, 233, 184, 216, 65, 41, 193, 107, 179, 207, 46, 0, 60, 66, 91, 56, 0, 30, 57, 222, 191, 8, 192, 148, 181, 207, 46, 0, 60, 242, 108, 64, 0, 156, 57, 218, 191, 105, 194, 82, 58, 207, 46, 0, 60, 104, 59, 41, 0, 39, 56, 6, 192, 163, 194, 17, 60, 207, 46, 0, 60, 80, 79, 58, 0, 237, 55, 11, 192, 15, 195, 134, 60, 207, 46, 0, 60, 25, 101, 71, 0, 139, 55, 13, 192, 93, 201, 248, 184, 196, 55, 0, 60, 5, 110, 62, 0, 32, 181, 230, 190, 0, 201, 188, 185, 63, 56, 0, 60, 13, 116, 49, 0, 180, 179, 252, 190, 252, 201, 172, 184, 175, 54, 0, 60, 0, 108, 65, 0, 47, 183, 188, 190, 237, 203, 172, 184, 69, 50, 0, 60, 213, 100, 63, 0, 198, 186, 61, 190, 193, 203, 172, 184, 47, 56, 0, 60, 229, 106, 63, 0, 101, 186, 46, 190, 190, 200, 223, 185, 127, 56, 0, 60, 242, 123, 25, 0, 228, 177, 12, 191, 125, 200, 99, 184, 179, 56, 0, 60, 195, 106, 32, 0, 252, 175, 35, 191, 44, 200, 159, 167, 204, 56, 0, 60, 185, 86, 58, 0, 23, 169, 79, 191, 193, 199, 184, 56, 86, 56, 0, 60, 209, 83, 83, 0, 164, 40, 138, 191, 89, 199, 68, 57, 86, 56, 0, 60, 248, 86, 92, 0, 33, 45, 146, 191, 8, 192, 33, 185, 86, 56, 0, 60, 250, 110, 61, 0, 35, 185, 21, 66, 127, 189, 156, 181, 86, 56, 0, 60, 168, 75, 50, 0, 170, 184, 247, 65, 41, 193, 79, 184, 86, 56, 0, 60, 64, 97, 50, 0, 41, 57, 166, 191, 8, 192, 33, 185, 86, 56, 0, 60, 250, 110, 61, 0, 160, 57, 162, 191, 105, 194, 190, 53, 86, 56, 0, 60, 84, 72, 60, 0, 73, 56, 204, 191, 163, 194, 120, 56, 86, 56, 0, 60, 63, 77, 78, 0, 27, 56, 214, 191, 15, 195, 68, 57, 86, 56, 0, 60, 18, 87, 89, 0, 207, 55, 215, 191, 112, 201, 255, 186, 39, 60, 0, 60, 0, 119, 43, 0, 0, 181, 160, 190, 9, 201, 69, 187, 93, 60, 0, 60, 0, 121, 36, 0, 62, 179, 184, 190, 252, 201, 15, 187, 194, 59, 0, 60, 0, 117, 48, 0, 208, 182, 124, 190, 237, 203, 15, 187, 252, 57, 0, 60, 217, 109, 49, 0, 153, 186, 254, 189, 193, 203, 15, 187, 76, 60, 0, 60, 236, 116, 47, 0, 56, 186, 237, 189, 189, 200, 17, 187, 130, 60, 0, 60, 235, 120, 32, 0, 47, 177, 203, 190, 118, 200, 178, 185, 157, 60, 0, 60, 210, 111, 39, 0, 89, 174, 225, 190, 33, 200, 4, 182, 170, 60, 0, 60, 207, 100, 59, 0, 224, 164, 3, 191, 98, 199, 49, 165, 155, 60, 0, 60, 231, 96, 78, 0, 79, 45, 43, 191, 13, 198, 110, 48, 131, 60, 0, 60, 252, 100, 77, 0, 92, 51, 79, 191, 8, 192, 115, 187, 96, 60, 0, 60, 6, 118, 44, 0, 207, 184, 52, 66, 127, 189, 118, 185, 96, 60, 0, 60, 173, 84, 44, 0, 87, 184, 24, 66, 30, 193, 242, 184, 130, 60, 0, 60, 67, 101, 35, 0, 35, 57, 103, 191, 8, 192, 115, 187, 96, 60, 0, 60, 6, 118, 44, 0, 170, 57, 97, 191, 49, 194, 2, 178, 154, 60, 0, 60, 69, 93, 50, 0, 137, 56, 115, 191, 46, 195, 123, 41, 164, 60, 0, 60, 32, 97, 75, 0, 10, 56, 118, 191, 102, 196, 157, 48, 163, 60, 0, 60, 4, 101, 75, 0, 152, 54, 109, 191, 112, 201, 45, 188, 167, 62, 0, 60, 254, 124, 26, 0, 158, 180, 91, 190, 9, 201, 69, 188, 14, 63, 0, 60, 254, 124, 23, 0, 115, 178, 110, 190, 252, 201, 27, 188, 159, 61, 0, 60, 255, 123, 31, 0, 139, 182, 77, 190, 237, 203, 27, 188, 188, 60, 0, 60, 226, 118, 32, 0, 115, 186, 208, 189, 193, 203, 27, 188, 11, 62, 0, 60, 243, 122, 30, 0, 20, 186, 190, 189, 189, 200, 42, 188, 62, 63, 0, 60, 238, 123, 25, 0, 104, 176, 126, 190, 117, 200, 69, 187, 92, 63, 0, 60, 221, 117, 30, 0, 220, 172, 146, 190, 28, 200, 93, 185, 107, 63, 0, 60, 220, 114, 40, 0, 249, 25, 174, 190, 67, 199, 203, 182, 91, 63, 0, 60, 238, 113, 52, 0, 21, 47, 209, 190, 201, 197, 94, 180, 16, 63, 0, 60, 251, 112, 58, 0, 95, 52, 255, 190, 8, 192, 67, 188, 31, 62, 0, 60, 13, 121, 33, 0, 141, 184, 74, 66, 127, 189, 239, 186, 31, 62, 0, 60, 172, 90, 25, 0, 23, 184, 47, 66, 25, 193, 126, 186, 15, 63, 0, 60, 60, 107, 31, 0, 41, 57, 30, 191, 8, 192, 67, 188, 31, 62, 0, 60, 13, 121, 33, 0, 172, 57, 49, 191, 42, 194, 83, 184, 92, 63, 0, 60, 50, 108, 42, 0, 163, 56, 27, 191, 81, 195, 193, 181, 116, 63, 0, 60, 24, 112, 52, 0, 24, 56, 24, 191, 134, 196, 105, 180, 106, 63, 0, 60, 3, 113, 57, 0, 158, 54, 13, 191, 93, 201, 173, 188, 11, 65, 0, 60, 0, 126, 11, 0, 194, 179, 6, 190, 0, 201, 189, 188, 58, 65, 0, 60, 1, 126, 13, 0, 66, 177, 21, 190, 252, 201, 209, 188, 157, 64, 0, 60, 255, 126, 13, 0, 5, 182, 239, 189, 237, 203, 209, 188, 43, 64, 0, 60, 240, 125, 13, 0, 39, 186, 116, 189, 193, 203, 209, 188, 210, 64, 0, 60, 253, 126, 10, 0, 195, 185, 98, 189, 190, 200, 179, 188, 81, 65, 0, 60, 245, 125, 18, 0, 3, 175, 34, 190, 123, 200, 91, 188, 96, 65, 0, 60, 229, 122, 22, 0, 220, 170, 49, 190, 33, 200, 69, 187, 108, 65, 0, 60, 226, 120, 25, 0, 14, 38, 73, 190, 98, 199, 217, 185, 99, 65, 0, 60, 240, 121, 31, 0, 155, 47, 104, 190, 13, 198, 39, 185, 66, 65, 0, 60, 253, 120, 40, 0, 49, 52, 143, 190, 8, 192, 235, 188, 220, 64, 0, 60, 10, 125, 17, 0, 6, 184, 117, 66, 127, 189, 103, 188, 220, 64, 0, 60, 174, 94, 18, 0, 15, 183, 91, 66, 30, 193, 16, 188, 66, 65, 0, 60, 44, 116, 21, 0, 50, 57, 189, 190, 8, 192, 235, 188, 220, 64, 0, 60, 10, 125, 17, 0, 174, 57, 209, 190, 49, 194, 122, 186, 99, 65, 0, 60, 41, 116, 29, 0, 181, 56, 183, 190, 46, 195, 123, 185, 109, 65, 0, 60, 21, 120, 35, 0, 67, 56, 178, 190, 102, 196, 12, 185, 105, 65, 0, 60, 2, 120, 40, 0, 25, 55, 167, 190, 17, 201, 224, 188, 28, 67, 0, 60, 3, 125, 17, 0, 190, 176, 173, 189, 230, 200, 23, 189, 54, 67, 0, 60, 3, 125, 20, 0, 29, 175, 178, 189, 252, 201, 224, 188, 28, 67, 0, 60, 0, 125, 18, 0, 84, 181, 110, 189, 237, 203, 224, 188, 171, 66, 0, 60, 198, 102, 46, 0, 184, 185, 4, 189, 193, 203, 224, 188, 82, 67, 0, 60, 206, 105, 48, 0, 102, 185, 234, 188, 194, 200, 56, 189, 65, 67, 0, 60, 254, 125, 20, 0, 62, 173, 187, 189, 145, 200, 41, 189, 80, 67, 0, 60, 241, 123, 25, 0, 75, 169, 193, 189, 42, 200, 109, 188, 109, 67, 0, 60, 227, 119, 30, 0, 212, 41, 217, 189, 193, 199, 142, 187, 92, 67, 0, 60, 242, 119, 40, 0, 182, 46, 241, 189, 89, 199, 109, 187, 92, 67, 0, 60, 254, 117, 47, 0, 183, 48, 252, 189, 8, 192, 238, 188, 92, 67, 0, 60, 3, 124, 26, 0, 150, 182, 178, 66, 127, 189, 168, 188, 92, 67, 0, 60, 41, 116, 26, 0, 161, 181, 154, 66, 41, 193, 213, 188, 92, 67, 0, 60, 32, 120, 24, 0, 58, 57, 74, 190, 8, 192, 238, 188, 92, 67, 0, 60, 3, 124, 26, 0, 177, 57, 79, 190, 105, 194, 253, 187, 92, 67, 0, 60, 39, 117, 25, 0, 186, 56, 72, 190, 163, 194, 157, 187, 92, 67, 0, 60, 17, 118, 42, 0, 156, 56, 71, 190, 15, 195, 109, 187, 92, 67, 0, 60, 3, 117, 49, 0, 110, 56, 69, 190, 45, 205, 61, 58, 208, 203, 0, 60, 0, 119, 214, 0, 195, 62, 185, 188, 45, 205, 61, 58, 223, 202, 0, 60, 0, 127, 0, 0, 191, 62, 195, 187, 254, 204, 61, 58, 208, 203, 0, 60, 48, 113, 228, 0, 20, 63, 179, 188, 2, 205, 61, 58, 237, 202, 0, 60, 4, 126, 251, 0, 13, 63, 217, 187, 0, 205, 61, 58, 78, 203, 0, 60, 23, 124, 245, 0, 18, 63, 67, 188, 2, 205, 70, 55, 158, 196, 0, 60, 20, 120, 223, 0, 244, 189, 119, 191, 32, 205, 174, 51, 109, 197, 0, 60, 38, 116, 225, 0, 72, 190, 180, 191, 69, 205, 5, 53, 109, 197, 0, 60, 23, 122, 21, 0, 140, 190, 159, 191, 28, 205, 156, 56, 111, 196, 0, 60, 253, 125, 239, 0, 19, 190, 80, 191, 220, 204, 70, 55, 27, 196, 0, 60, 20, 121, 226, 0, 163, 189, 96, 191, 239, 204, 156, 56, 161, 195, 0, 60, 6, 126, 248, 0, 180, 189, 53, 191, 182, 204, 70, 55, 149, 195, 0, 60, 31, 120, 230, 0, 91, 189, 88, 191, 192, 204, 156, 56, 223, 194, 0, 60, 22, 124, 2, 0, 96, 189, 46, 191, 139, 204, 174, 51, 65, 195, 0, 60, 54, 113, 237, 0, 16, 189, 93, 191, 141, 204, 17, 53, 121, 194, 0, 60, 52, 113, 20, 0, 10, 189, 52, 191, 109, 204, 137, 170, 62, 195, 0, 60, 43, 119, 0, 0, 213, 188, 108, 191, 103, 204, 150, 168, 117, 194, 0, 60, 36, 119, 23, 0, 192, 188, 68, 191, 78, 205, 140, 52, 43, 197, 0, 60, 223, 121, 17, 0, 148, 190, 121, 191, 42, 205, 90, 56, 48, 196, 0, 60, 212, 117, 20, 0, 28, 190, 47, 191, 252, 204, 90, 56, 35, 195, 0, 60, 230, 118, 38, 0, 190, 189, 20, 191, 206, 204, 90, 56, 96, 194, 0, 60, 254, 115, 52, 0, 107, 189, 15, 191, 154, 204, 140, 52, 251, 193, 0, 60, 33, 100, 69, 0, 21, 189, 20, 191, 117, 204, 93, 172, 247, 193, 0, 60, 36, 98, 71, 0, 204, 188, 32, 191, 101, 205, 39, 167, 244, 196, 0, 60, 219, 95, 75, 0, 178, 190, 61, 191, 62, 205, 244, 51, 210, 195, 0, 60, 196, 105, 35, 0, 51, 190, 254, 190, 14, 205, 244, 51, 128, 194, 0, 60, 217, 105, 57, 0, 203, 189, 224, 190, 220, 204, 244, 51, 177, 193, 0, 60, 245, 103, 72, 0, 111, 189, 220, 190, 166, 204, 39, 167, 69, 193, 0, 60, 29, 91, 82, 0, 15, 189, 224, 190, 126, 204, 114, 182, 65, 193, 0, 60, 10, 99, 78, 0, 192, 188, 231, 190, 130, 205, 201, 181, 199, 196, 0, 60, 213, 99, 66, 0, 217, 190, 5, 191, 86, 205, 139, 170, 54, 195, 0, 60, 206, 113, 25, 0, 77, 190, 197, 190, 32, 205, 139, 170, 186, 193, 0, 60, 224, 113, 47, 0, 214, 189, 165, 190, 232, 204, 139, 170, 210, 192, 0, 60, 252, 111, 60, 0, 109, 189, 161, 190, 171, 204, 201, 181, 88, 192, 0, 60, 37, 101, 66, 0, 255, 188, 165, 190, 126, 204, 67, 186, 84, 192, 0, 60, 236, 109, 61, 0, 170, 188, 171, 190, 191, 205, 146, 186, 137, 196, 0, 60, 207, 99, 61, 0, 43, 191, 174, 190, 136, 205, 228, 182, 31, 194, 0, 60, 205, 112, 25, 0, 127, 190, 96, 190, 68, 205, 228, 182, 65, 192, 0, 60, 224, 113, 46, 0, 234, 189, 59, 190, 254, 204, 228, 182, 59, 190, 0, 60, 251, 113, 57, 0, 103, 189, 56, 190, 177, 204, 146, 186, 9, 189, 0, 60, 33, 107, 58, 0, 229, 188, 65, 190, 120, 204, 103, 189, 254, 188, 0, 60, 197, 110, 18, 0, 147, 188, 78, 190, 11, 204, 230, 188, 71, 63, 0, 60, 226, 122, 16, 0, 126, 186, 127, 189, 11, 204, 242, 188, 181, 65, 0, 60, 232, 124, 5, 0, 32, 186, 24, 189, 11, 204, 79, 188, 76, 60, 0, 60, 225, 118, 32, 0, 190, 186, 203, 189, 11, 204, 170, 187, 182, 57, 0, 60, 225, 112, 49, 0, 220, 186, 241, 189, 11, 204, 177, 185, 30, 52, 0, 60, 227, 105, 63, 0, 1, 187, 37, 190, 11, 204, 102, 183, 155, 174, 0, 60, 227, 106, 63, 0, 31, 187, 82, 190, 11, 204, 83, 180, 24, 184, 0, 60, 217, 116, 32, 0, 67, 187, 127, 190, 11, 204, 83, 180, 195, 190, 0, 60, 205, 116, 0, 0, 190, 187, 236, 190, 44, 204, 167, 189, 244, 63, 0, 60, 234, 124, 12, 0, 218, 186, 86, 189, 44, 204, 182, 189, 81, 66, 0, 60, 229, 123, 0, 0, 115, 186, 226, 188, 44, 204, 253, 188, 147, 60, 0, 60, 237, 121, 31, 0, 32, 187, 171, 189, 44, 204, 114, 188, 226, 57, 0, 60, 239, 115, 49, 0, 65, 187, 213, 189, 44, 204, 169, 186, 252, 50, 0, 60, 240, 107, 65, 0, 106, 187, 16, 190, 44, 204, 103, 184, 21, 178, 0, 60, 241, 109, 62, 0, 140, 187, 65, 190, 44, 204, 83, 181, 57, 185, 0, 60, 239, 124, 20, 0, 179, 187, 115, 190, 43, 204, 242, 182, 235, 191, 0, 60, 229, 123, 2, 0, 31, 188, 236, 190, 82, 204, 203, 189, 33, 64, 0, 60, 248, 126, 12, 0, 72, 187, 53, 189, 82, 204, 218, 189, 152, 66, 0, 60, 249, 126, 1, 0, 220, 186, 187, 188, 82, 204, 24, 189, 180, 60, 0, 60, 245, 123, 28, 0, 148, 187, 143, 189, 82, 204, 134, 188, 246, 57, 0, 60, 236, 115, 48, 0, 183, 187, 190, 189, 82, 204, 177, 186, 106, 50, 0, 60, 233, 106, 65, 0, 225, 187, 253, 189, 82, 204, 81, 184, 89, 179, 0, 60, 226, 110, 53, 0, 0, 188, 48, 190, 82, 204, 247, 180, 189, 185, 0, 60, 226, 122, 15, 0, 17, 188, 97, 190, 80, 204, 199, 184, 50, 192, 0, 60, 247, 125, 13, 0, 93, 188, 215, 190, 56, 204, 137, 170, 62, 195, 0, 60, 1, 121, 35, 0, 129, 188, 138, 191, 73, 204, 173, 181, 117, 193, 0, 60, 8, 118, 43, 0, 114, 188, 30, 191, 23, 204, 81, 181, 47, 193, 0, 60, 218, 117, 27, 0, 30, 188, 55, 191, 25, 204, 137, 170, 161, 194, 0, 60, 229, 116, 41, 0, 68, 188, 130, 191, 253, 203, 137, 170, 116, 193, 0, 60, 207, 97, 64, 0, 250, 187, 97, 191, 93, 204, 54, 179, 145, 193, 0, 60, 11, 114, 53, 0, 152, 188, 24, 191, 105, 204, 210, 183, 84, 192, 0, 60, 211, 113, 34, 0, 135, 188, 203, 190, 116, 204, 101, 185, 85, 188, 0, 60, 171, 93, 252, 0, 88, 188, 95, 190, 169, 204, 212, 189, 213, 173, 0, 60, 228, 123, 1, 0, 146, 188, 209, 189, 165, 204, 53, 189, 189, 44, 0, 60, 202, 114, 255, 0, 121, 188, 200, 189, 185, 205, 252, 188, 157, 191, 0, 60, 222, 120, 18, 0, 152, 190, 175, 189, 117, 205, 252, 188, 196, 187, 0, 60, 236, 121, 29, 0, 252, 189, 139, 189, 46, 205, 252, 188, 102, 182, 0, 60, 250, 121, 34, 0, 115, 189, 139, 189, 225, 204, 88, 189, 126, 174, 0, 60, 14, 121, 34, 0, 235, 188, 167, 189, 162, 204, 67, 190, 33, 64, 0, 60, 249, 126, 12, 0, 32, 188, 253, 188, 162, 204, 82, 190, 152, 66, 0, 60, 251, 126, 255, 0, 208, 187, 132, 188, 162, 204, 143, 189, 180, 60, 0, 60, 245, 125, 13, 0, 73, 188, 88, 189, 225, 204, 97, 190, 33, 64, 0, 60, 0, 126, 12, 0, 128, 188, 207, 188, 225, 204, 112, 190, 152, 66, 0, 60, 0, 127, 253, 0, 71, 188, 88, 188, 225, 204, 173, 189, 180, 60, 0, 60, 0, 126, 14, 0, 171, 188, 41, 189, 36, 205, 67, 190, 33, 64, 0, 60, 1, 126, 12, 0, 232, 188, 157, 188, 36, 205, 82, 190, 152, 66, 0, 60, 1, 127, 254, 0, 173, 188, 38, 188, 36, 205, 143, 189, 180, 60, 0, 60, 1, 125, 17, 0, 20, 189, 246, 188, 101, 205, 67, 190, 33, 64, 0, 60, 2, 126, 12, 0, 73, 189, 109, 188, 101, 205, 82, 190, 152, 66, 0, 60, 2, 127, 255, 0, 13, 189, 237, 187, 101, 205, 143, 189, 180, 60, 0, 60, 0, 126, 15, 0, 118, 189, 196, 188, 212, 205, 243, 189, 33, 64, 0, 60, 0, 126, 12, 0, 240, 189, 22, 188, 212, 205, 2, 190, 152, 66, 0, 60, 0, 127, 0, 0, 179, 189, 67, 187, 212, 205, 64, 189, 180, 60, 0, 60, 0, 126, 10, 0, 30, 190, 109, 188, 29, 206, 27, 190, 33, 64, 0, 60, 253, 126, 9, 0, 93, 190, 187, 187, 29, 206, 42, 190, 152, 66, 0, 60, 0, 127, 0, 0, 31, 190, 210, 186, 29, 206, 103, 189, 180, 60, 0, 60, 250, 126, 5, 0, 137, 190, 51, 188, 249, 205, 173, 189, 98, 188, 0, 60, 247, 126, 254, 0, 206, 190, 40, 189, 180, 205, 173, 189, 57, 177, 0, 60, 252, 126, 2, 0, 52, 190, 7, 189, 1, 206, 102, 190, 223, 194, 0, 60, 224, 121, 19, 0, 94, 191, 254, 189, 55, 206, 44, 190, 191, 192, 0, 60, 254, 127, 254, 0, 112, 191, 108, 189, 52, 205, 174, 55, 134, 200, 0, 60, 63, 107, 23, 0, 159, 190, 172, 192, 43, 205, 22, 56, 114, 200, 0, 60, 49, 113, 26, 0, 134, 190, 168, 192, 43, 205, 149, 57, 177, 200, 0, 60, 193, 102, 38, 0, 154, 190, 197, 192, 48, 205, 61, 58, 14, 201, 0, 60, 241, 121, 33, 0, 185, 190, 236, 192, 60, 205, 61, 58, 14, 201, 0, 60, 21, 120, 31, 0, 206, 190, 233, 192, 43, 205, 61, 58, 250, 200, 0, 60, 206, 112, 28, 0, 170, 190, 229, 192, 60, 205, 61, 58, 1, 200, 0, 60, 118, 44, 0, 0, 188, 190, 109, 192, 55, 205, 70, 56, 5, 200, 0, 60, 116, 50, 4, 0, 158, 190, 112, 192, 43, 205, 186, 51, 57, 200, 0, 60, 98, 78, 13, 0, 120, 190, 138, 192, 53, 205, 35, 56, 168, 199, 0, 60, 119, 43, 0, 0, 152, 190, 90, 192, 43, 205, 231, 39, 238, 199, 0, 60, 120, 41, 4, 0, 93, 190, 108, 192, 52, 205, 104, 56, 245, 198, 0, 60, 121, 38, 5, 0, 148, 190, 51, 192, 43, 205, 137, 170, 128, 199, 0, 60, 121, 37, 2, 0, 81, 190, 82, 192, 57, 205, 171, 53, 146, 198, 0, 60, 121, 37, 4, 0, 129, 190, 27, 192, 43, 205, 137, 170, 18, 198, 0, 60, 102, 75, 248, 0, 72, 190, 1, 192, 53, 205, 240, 53, 15, 198, 0, 60, 114, 55, 254, 0, 126, 190, 249, 191, 60, 205, 61, 58, 41, 199, 0, 60, 117, 47, 255, 0, 181, 190, 60, 192, 60, 205, 61, 58, 232, 197, 0, 60, 96, 63, 52, 0, 176, 190, 233, 191, 223, 205, 61, 58, 232, 197, 0, 60, 3, 111, 59, 0, 169, 191, 111, 191, 223, 205, 215, 51, 99, 197, 0, 60, 247, 82, 95, 0, 138, 191, 39, 191, 134, 205, 252, 50, 3, 197, 0, 60, 250, 75, 101, 0, 242, 190, 68, 191, 239, 205, 90, 58, 232, 197, 0, 60, 231, 115, 45, 0, 191, 191, 97, 191, 239, 205, 37, 52, 99, 197, 0, 60, 233, 79, 96, 0, 163, 191, 33, 191, 176, 205, 61, 58, 223, 202, 0, 60, 6, 126, 0, 0, 150, 61, 28, 188, 176, 205, 61, 58, 208, 203, 0, 60, 4, 119, 214, 0, 226, 61, 219, 188, 193, 205, 90, 58, 208, 203, 0, 60, 230, 120, 227, 0, 200, 61, 226, 188, 193, 205, 90, 58, 223, 202, 0, 60, 227, 123, 0, 0, 124, 61, 39, 188, 176, 205, 61, 58, 240, 201, 0, 60, 6, 126, 3, 0, 72, 61, 165, 186, 193, 205, 90, 58, 240, 201, 0, 60, 239, 125, 254, 0, 44, 61, 184, 186, 223, 205, 61, 58, 201, 201, 0, 60, 6, 126, 10, 0, 238, 60, 150, 186, 239, 205, 90, 58, 201, 201, 0, 60, 210, 115, 230, 0, 213, 60, 168, 186, 223, 205, 61, 58, 14, 201, 0, 60, 6, 126, 0, 0, 109, 192, 69, 192, 239, 205, 90, 58, 14, 201, 0, 60, 220, 121, 254, 0, 118, 192, 59, 192, 223, 205, 61, 58, 14, 201, 0, 60, 6, 126, 0, 0, 170, 60, 119, 185, 239, 205, 90, 58, 14, 201, 0, 60, 220, 121, 254, 0, 145, 60, 142, 185, 8, 206, 143, 56, 232, 197, 0, 60, 178, 91, 40, 0, 220, 191, 66, 191, 8, 206, 119, 40, 99, 197, 0, 60, 196, 64, 91, 0, 193, 191, 1, 191, 218, 205, 143, 56, 208, 203, 0, 60, 179, 98, 235, 0, 157, 61, 244, 188, 218, 205, 143, 56, 223, 202, 0, 60, 174, 96, 254, 0, 77, 61, 58, 188, 230, 205, 99, 55, 38, 202, 0, 60, 176, 95, 235, 0, 243, 60, 84, 187, 8, 206, 143, 56, 14, 201, 0, 60, 167, 89, 249, 0, 134, 192, 42, 192, 253, 205, 66, 55, 169, 201, 0, 60, 167, 86, 232, 0, 162, 60, 167, 186, 8, 206, 143, 56, 14, 201, 0, 60, 167, 89, 249, 0, 99, 60, 182, 185, 30, 206, 20, 45, 232, 197, 0, 60, 156, 70, 33, 0, 253, 191, 20, 191, 30, 206, 74, 183, 99, 197, 0, 60, 183, 69, 76, 0, 227, 191, 204, 190, 240, 205, 20, 45, 208, 203, 0, 60, 161, 83, 249, 0, 101, 61, 18, 189, 240, 205, 20, 45, 223, 202, 0, 60, 155, 75, 249, 0, 15, 61, 86, 188, 3, 206, 23, 168, 52, 202, 0, 60, 162, 81, 234, 0, 179, 60, 177, 187, 30, 206, 20, 45, 14, 201, 0, 60, 155, 75, 250, 0, 154, 192, 19, 192, 26, 206, 135, 173, 171, 201, 0, 60, 161, 81, 236, 0, 94, 60, 241, 186, 30, 206, 20, 45, 14, 201, 0, 60, 155, 75, 250, 0, 40, 60, 242, 185, 74, 206, 83, 187, 232, 197, 0, 60, 153, 67, 28, 0, 35, 192, 176, 190, 74, 206, 205, 189, 99, 197, 0, 60, 184, 98, 34, 0, 22, 192, 106, 190, 28, 206, 83, 187, 208, 203, 0, 60, 167, 87, 18, 0, 236, 60, 73, 189, 28, 206, 83, 187, 223, 202, 0, 60, 170, 92, 246, 0, 151, 60, 143, 188, 34, 206, 255, 184, 66, 202, 0, 60, 170, 89, 232, 0, 106, 60, 10, 188, 74, 206, 83, 187, 14, 201, 0, 60, 148, 65, 255, 0, 194, 192, 204, 191, 74, 206, 83, 187, 201, 201, 0, 60, 154, 73, 246, 0, 242, 59, 143, 187, 74, 206, 83, 187, 14, 201, 0, 60, 148, 65, 255, 0, 98, 59, 107, 186, 81, 204, 242, 56, 99, 204, 0, 60, 204, 83, 177, 0, 58, 64, 92, 189, 81, 204, 232, 61, 42, 204, 0, 60, 202, 71, 167, 0, 57, 64, 231, 188, 81, 204, 135, 64, 9, 204, 0, 60, 215, 111, 212, 0, 61, 64, 160, 188, 81, 204, 101, 64, 194, 203, 0, 60, 8, 101, 76, 0, 55, 64, 118, 188, 81, 204, 180, 61, 157, 203, 0, 60, 32, 56, 108, 0, 49, 64, 52, 188, 130, 204, 106, 53, 83, 204, 0, 60, 202, 85, 180, 0, 15, 64, 94, 189, 130, 204, 201, 60, 26, 204, 0, 60, 188, 72, 178, 0, 19, 64, 226, 188, 130, 204, 240, 63, 244, 203, 0, 60, 182, 94, 218, 0, 32, 64, 156, 188, 130, 204, 171, 63, 162, 203, 0, 60, 210, 91, 74, 0, 26, 64, 111, 188, 130, 204, 149, 60, 126, 203, 0, 60, 247, 66, 107, 0, 6, 64, 53, 188, 171, 204, 31, 51, 70, 204, 0, 60, 198, 92, 193, 0, 213, 63, 85, 189, 171, 204, 93, 57, 13, 204, 0, 60, 177, 77, 195, 0, 209, 63, 232, 188, 171, 204, 83, 60, 219, 203, 0, 60, 161, 77, 225, 0, 220, 63, 163, 188, 171, 204, 47, 60, 137, 203, 0, 60, 193, 97, 51, 0, 204, 63, 93, 188, 171, 204, 39, 57, 100, 203, 0, 60, 62, 101, 43, 0, 196, 63, 49, 188, 76, 204, 35, 60, 119, 203, 0, 60, 20, 104, 69, 0, 46, 64, 0, 188, 79, 204, 115, 59, 69, 203, 0, 60, 8, 123, 25, 0, 35, 64, 169, 187, 115, 204, 211, 58, 69, 203, 0, 60, 234, 121, 30, 0, 3, 64, 215, 187, 123, 204, 91, 59, 115, 203, 0, 60, 241, 101, 74, 0, 6, 64, 24, 188, 134, 204, 61, 58, 69, 203, 0, 60, 232, 116, 43, 0, 226, 63, 0, 188, 174, 204, 61, 58, 58, 203, 0, 60, 250, 123, 229, 0, 164, 63, 36, 188, 213, 204, 55, 32, 12, 204, 0, 60, 218, 115, 221, 0, 117, 63, 10, 189, 213, 204, 182, 54, 215, 203, 0, 60, 202, 107, 218, 0, 114, 63, 191, 188, 213, 204, 38, 54, 134, 203, 0, 60, 214, 118, 242, 0, 106, 63, 117, 188, 230, 204, 103, 157, 11, 204, 0, 60, 26, 103, 188, 0, 88, 63, 16, 189, 230, 204, 126, 54, 214, 203, 0, 60, 49, 110, 219, 0, 79, 63, 193, 188, 230, 204, 238, 53, 132, 203, 0, 60, 37, 120, 241, 0, 77, 63, 119, 188, 221, 204, 61, 58, 24, 203, 0, 60, 251, 123, 227, 0, 79, 63, 17, 188, 4, 205, 61, 58, 217, 202, 0, 60, 0, 127, 0, 0, 8, 63, 181, 187, 29, 205, 61, 58, 118, 202, 0, 60, 0, 127, 0, 0, 217, 62, 7, 187, 45, 205, 61, 58, 240, 201, 0, 60, 0, 127, 0, 0, 186, 62, 24, 186, 37, 205, 61, 58, 219, 201, 0, 60, 0, 127, 0, 0, 200, 62, 242, 185, 37, 205, 61, 58, 42, 202, 0, 60, 0, 127, 0, 0, 201, 62, 128, 186, 48, 205, 61, 58, 201, 201, 0, 60, 0, 127, 0, 0, 180, 62, 211, 185, 63, 205, 61, 58, 240, 201, 0, 60, 0, 127, 0, 0, 154, 62, 26, 186, 60, 205, 61, 58, 201, 201, 0, 60, 0, 127, 0, 0, 159, 62, 212, 185, 196, 205, 31, 53, 29, 204, 0, 60, 233, 95, 176, 0, 211, 61, 70, 189, 221, 205, 36, 46, 29, 204, 0, 60, 196, 94, 197, 0, 167, 61, 90, 189, 180, 205, 230, 52, 29, 204, 0, 60, 2, 93, 171, 0, 238, 61, 67, 189, 1, 205, 230, 52, 29, 204, 0, 60, 45, 84, 174, 0, 25, 63, 24, 189, 48, 205, 230, 52, 29, 204, 0, 60, 0, 94, 171, 0, 204, 62, 36, 189, 63, 205, 61, 58, 208, 203, 0, 60, 0, 110, 194, 0, 164, 62, 189, 188, 67, 205, 230, 52, 29, 204, 0, 60, 0, 94, 171, 0, 173, 62, 40, 189, 203, 205, 166, 184, 70, 204, 0, 60, 234, 91, 171, 0, 205, 61, 194, 189, 229, 205, 113, 186, 70, 204, 0, 60, 213, 103, 197, 0, 157, 61, 215, 189, 187, 205, 195, 184, 70, 204, 0, 60, 2, 93, 171, 0, 235, 61, 192, 189, 9, 205, 195, 184, 70, 204, 0, 60, 243, 98, 177, 0, 37, 63, 144, 189, 56, 205, 195, 184, 70, 204, 0, 60, 0, 93, 171, 0, 210, 62, 157, 189, 74, 205, 195, 184, 70, 204, 0, 60, 0, 93, 171, 0, 179, 62, 162, 189, 206, 205, 37, 187, 104, 204, 0, 60, 228, 115, 213, 0, 213, 61, 12, 190, 231, 205, 120, 188, 104, 204, 0, 60, 226, 114, 212, 0, 164, 61, 30, 190, 190, 205, 66, 187, 104, 204, 0, 60, 3, 119, 213, 0, 242, 61, 8, 190, 11, 205, 66, 187, 104, 204, 0, 60, 242, 117, 210, 0, 42, 63, 214, 189, 58, 205, 66, 187, 104, 204, 0, 60, 0, 119, 213, 0, 217, 62, 227, 189, 77, 205, 66, 187, 104, 204, 0, 60, 0, 119, 213, 0, 185, 62, 232, 189, 206, 205, 127, 188, 185, 204, 0, 60, 241, 124, 239, 0, 240, 61, 157, 190, 231, 205, 101, 189, 185, 204, 0, 60, 232, 123, 244, 0, 191, 61, 171, 190, 190, 205, 141, 188, 185, 204, 0, 60, 3, 125, 237, 0, 12, 62, 152, 190, 12, 205, 141, 188, 185, 204, 0, 60, 249, 124, 233, 0, 65, 63, 99, 190, 59, 205, 141, 188, 185, 204, 0, 60, 0, 125, 237, 0, 239, 62, 113, 190, 77, 205, 141, 188, 185, 204, 0, 60, 0, 125, 237, 0, 208, 62, 118, 190, 135, 204, 169, 183, 134, 204, 0, 60, 210, 101, 196, 0, 10, 64, 215, 189, 176, 204, 193, 184, 122, 204, 0, 60, 219, 107, 200, 0, 203, 63, 209, 189, 87, 204, 91, 178, 150, 204, 0, 60, 207, 98, 194, 0, 56, 64, 214, 189, 54, 204, 220, 176, 167, 204, 0, 60, 229, 108, 197, 0, 88, 64, 229, 189, 146, 204, 100, 188, 239, 204, 0, 60, 225, 117, 221, 0, 17, 64, 152, 190, 187, 204, 218, 188, 227, 204, 0, 60, 242, 122, 229, 0, 215, 63, 146, 190, 97, 204, 138, 186, 255, 204, 0, 60, 212, 109, 211, 0, 63, 64, 151, 190, 64, 204, 42, 186, 16, 205, 0, 60, 221, 112, 210, 0, 94, 64, 166, 190, 33, 203, 247, 186, 249, 204, 0, 60, 250, 123, 227, 0, 242, 64, 87, 190, 90, 203, 44, 185, 233, 204, 0, 60, 36, 115, 218, 0, 216, 64, 63, 190, 143, 203, 18, 183, 219, 204, 0, 60, 6, 120, 215, 0, 191, 64, 40, 190, 198, 203, 250, 183, 216, 204, 0, 60, 9, 121, 221, 0, 168, 64, 43, 190, 5, 204, 60, 180, 202, 204, 0, 60, 5, 118, 211, 0, 135, 64, 22, 190, 38, 203, 229, 187, 57, 205, 0, 60, 251, 113, 199, 0, 248, 64, 195, 190, 95, 203, 25, 186, 41, 205, 0, 60, 24, 115, 211, 0, 219, 64, 169, 190, 147, 203, 118, 184, 27, 205, 0, 60, 10, 119, 215, 0, 196, 64, 144, 190, 202, 203, 234, 184, 23, 205, 0, 60, 4, 117, 207, 0, 173, 64, 151, 190, 7, 204, 22, 182, 9, 205, 0, 60, 1, 120, 215, 0, 141, 64, 129, 190, 224, 201, 86, 185, 37, 205, 0, 60, 238, 110, 197, 0, 128, 65, 108, 190, 107, 202, 51, 184, 34, 205, 0, 60, 3, 116, 206, 0, 69, 65, 118, 190, 215, 202, 16, 184, 32, 205, 0, 60, 229, 115, 211, 0, 26, 65, 128, 190, 39, 201, 31, 184, 73, 205, 0, 60, 7, 96, 174, 0, 212, 65, 113, 190, 124, 201, 121, 184, 64, 205, 0, 60, 230, 101, 185, 0, 176, 65, 119, 190, 210, 199, 233, 185, 18, 205, 0, 60, 208, 99, 195, 0, 97, 66, 13, 190, 105, 200, 105, 185, 242, 204, 0, 60, 34, 100, 187, 0, 41, 66, 229, 189, 199, 199, 173, 188, 79, 205, 0, 60, 234, 105, 189, 0, 104, 66, 131, 190, 100, 200, 109, 188, 47, 205, 0, 60, 17, 106, 190, 0, 46, 66, 85, 190, 121, 196, 164, 183, 29, 205, 0, 60, 10, 100, 179, 0, 158, 172, 25, 182, 234, 197, 164, 183, 43, 205, 0, 60, 254, 102, 182, 0, 189, 178, 180, 183, 98, 199, 164, 183, 23, 205, 0, 60, 209, 94, 186, 0, 19, 182, 83, 184, 131, 196, 72, 186, 73, 205, 0, 60, 8, 102, 182, 0, 39, 168, 95, 183, 244, 197, 72, 186, 87, 205, 0, 60, 254, 96, 173, 0, 125, 177, 125, 184, 108, 199, 72, 186, 67, 205, 0, 60, 218, 98, 187, 0, 97, 181, 241, 184, 210, 199, 233, 185, 18, 205, 0, 60, 208, 99, 195, 0, 231, 182, 159, 184, 199, 199, 173, 188, 79, 205, 0, 60, 234, 105, 189, 0, 184, 181, 115, 185, 215, 194, 32, 55, 132, 203, 0, 60, 50, 115, 19, 0, 110, 180, 72, 51, 163, 194, 32, 55, 85, 204, 0, 60, 56, 113, 0, 0, 46, 177, 212, 38, 204, 194, 32, 55, 223, 204, 0, 60, 42, 111, 213, 0, 35, 171, 224, 177, 105, 193, 91, 175, 133, 203, 0, 60, 250, 124, 21, 0, 113, 178, 75, 52, 53, 193, 91, 175, 86, 204, 0, 60, 231, 124, 5, 0, 73, 173, 151, 44, 94, 193, 91, 175, 224, 204, 0, 60, 37, 116, 222, 0, 101, 42, 194, 176, 81, 191, 207, 57, 28, 203, 0, 60, 205, 73, 167, 0, 57, 177, 158, 54, 13, 196, 32, 56, 24, 203, 0, 60, 23, 113, 204, 0, 0, 182, 241, 52, 111, 191, 179, 50, 59, 203, 0, 60, 196, 102, 212, 0, 44, 177, 200, 53, 204, 195, 201, 175, 66, 203, 0, 60, 40, 115, 224, 0, 158, 180, 135, 52, 170, 190, 224, 58, 207, 203, 0, 60, 174, 92, 28, 0, 183, 170, 193, 52, 66, 191, 17, 60, 13, 204, 0, 60, 182, 102, 7, 0, 168, 164, 195, 51, 0, 60, 144, 189, 43, 61, 0, 60, 130, 0, 0, 0, 172, 180, 194, 65, 0, 60, 144, 189, 39, 65, 0, 60, 130, 0, 0, 0, 71, 180, 12, 66, 0, 60, 80, 181, 39, 65, 0, 60, 253, 123, 29, 0, 193, 176, 1, 66, 0, 60, 152, 180, 43, 61, 0, 60, 254, 102, 74, 0, 98, 177, 183, 65, 0, 188, 152, 180, 43, 61, 0, 60, 2, 106, 69, 0, 179, 183, 2, 66, 0, 188, 80, 181, 39, 65, 0, 60, 10, 122, 31, 0, 228, 181, 53, 66, 0, 188, 144, 189, 39, 65, 0, 60, 127, 0, 0, 0, 139, 180, 6, 66, 0, 188, 144, 189, 43, 61, 0, 60, 127, 0, 0, 0, 76, 182, 210, 65, 201, 188, 99, 182, 31, 61, 0, 60, 158, 71, 36, 0, 4, 184, 12, 66, 201, 188, 28, 183, 33, 65, 0, 60, 160, 79, 23, 0, 47, 182, 62, 66, 0, 188, 237, 171, 144, 60, 0, 60, 201, 90, 68, 0, 223, 183, 243, 65, 201, 188, 146, 177, 132, 60, 0, 60, 169, 70, 57, 0, 21, 184, 252, 65, 0, 188, 0, 0, 0, 60, 0, 60, 234, 121, 28, 0, 6, 184, 235, 65, 201, 188, 46, 175, 232, 59, 0, 60, 178, 94, 29, 0, 43, 184, 245, 65, 216, 188, 127, 47, 100, 178, 0, 60, 17, 123, 24, 0, 6, 185, 193, 65, 203, 66, 30, 188, 200, 61, 0, 60, 245, 111, 197, 0, 173, 47, 147, 65, 25, 68, 175, 186, 200, 61, 0, 60, 255, 111, 196, 0, 95, 50, 143, 65, 247, 65, 5, 188, 200, 61, 0, 60, 18, 110, 197, 0, 234, 44, 152, 65, 205, 64, 175, 186, 200, 61, 0, 60, 53, 101, 203, 0, 4, 35, 161, 65, 22, 63, 212, 180, 200, 61, 0, 60, 43, 112, 217, 0, 208, 172, 178, 65, 194, 66, 62, 186, 242, 62, 0, 60, 244, 115, 205, 0, 19, 48, 169, 65, 21, 68, 176, 184, 242, 62, 0, 60, 0, 117, 209, 0, 140, 50, 164, 65, 239, 65, 12, 186, 242, 62, 0, 60, 20, 115, 207, 0, 41, 45, 174, 65, 197, 64, 176, 184, 242, 62, 0, 60, 58, 103, 212, 0, 39, 34, 182, 65, 5, 63, 195, 170, 242, 62, 0, 60, 10, 124, 232, 0, 95, 172, 199, 65, 196, 66, 235, 185, 86, 64, 0, 60, 243, 126, 7, 0, 100, 48, 194, 65, 22, 68, 94, 184, 86, 64, 0, 60, 1, 126, 8, 0, 217, 50, 185, 65, 241, 65, 185, 185, 86, 64, 0, 60, 21, 124, 6, 0, 221, 45, 199, 65, 199, 64, 94, 184, 86, 64, 0, 60, 61, 111, 5, 0, 89, 38, 207, 65, 8, 63, 94, 162, 86, 64, 0, 60, 5, 126, 6, 0, 162, 171, 220, 65, 212, 66, 137, 187, 62, 66, 0, 60, 245, 105, 69, 0, 117, 49, 248, 65, 30, 68, 251, 185, 62, 66, 0, 60, 7, 111, 60, 0, 162, 51, 231, 65, 1, 66, 87, 187, 62, 66, 0, 60, 18, 105, 67, 0, 1, 48, 255, 65, 215, 64, 251, 185, 62, 66, 0, 60, 54, 96, 61, 0, 45, 43, 6, 66, 41, 63, 220, 178, 62, 66, 0, 60, 0, 110, 62, 0, 19, 167, 6, 66, 250, 66, 221, 190, 113, 67, 0, 60, 251, 118, 45, 0, 197, 50, 42, 66, 49, 68, 22, 190, 113, 67, 0, 60, 1, 120, 40, 0, 152, 52, 26, 66, 39, 66, 196, 190, 113, 67, 0, 60, 15, 117, 46, 0, 125, 49, 47, 66, 253, 64, 22, 190, 113, 67, 0, 60, 43, 105, 56, 0, 16, 47, 55, 66, 117, 63, 232, 187, 113, 67, 0, 60, 0, 98, 79, 0, 96, 36, 55, 66, 200, 60, 120, 183, 46, 65, 0, 60, 251, 122, 34, 0, 160, 175, 0, 66, 200, 60, 191, 182, 58, 61, 0, 60, 11, 124, 24, 0, 142, 176, 184, 65, 0, 60, 237, 171, 144, 60, 0, 60, 52, 90, 71, 0, 218, 177, 169, 65, 200, 60, 74, 178, 159, 60, 0, 60, 40, 107, 53, 0, 232, 176, 168, 65, 0, 60, 177, 183, 179, 65, 0, 60, 38, 90, 80, 0, 85, 176, 19, 66, 200, 60, 236, 184, 186, 65, 0, 60, 242, 93, 84, 0, 216, 174, 20, 66, 201, 188, 190, 184, 173, 65, 0, 60, 163, 64, 55, 0, 233, 181, 77, 66, 0, 188, 177, 183, 179, 65, 0, 60, 219, 89, 81, 0, 151, 181, 68, 66, 0, 60, 236, 188, 245, 66, 0, 60, 25, 100, 73, 0, 163, 173, 74, 66, 200, 60, 118, 189, 253, 66, 0, 60, 248, 105, 69, 0, 8, 172, 73, 66, 201, 188, 95, 189, 239, 66, 0, 60, 13, 116, 47, 0, 100, 181, 135, 66, 0, 188, 236, 188, 245, 66, 0, 60, 231, 100, 72, 0, 4, 181, 126, 66, 200, 60, 237, 189, 4, 68, 0, 60, 252, 122, 32, 0, 202, 168, 99, 66, 117, 63, 93, 189, 63, 68, 0, 60, 3, 116, 49, 0, 210, 41, 91, 66, 127, 189, 160, 189, 52, 68, 0, 60, 15, 123, 25, 0, 240, 180, 182, 66, 201, 188, 228, 189, 252, 67, 0, 60, 29, 121, 21, 0, 206, 180, 164, 66, 255, 59, 186, 189, 1, 68, 0, 60, 15, 123, 27, 0, 180, 171, 103, 66, 0, 188, 186, 189, 1, 68, 0, 60, 234, 117, 41, 0, 120, 180, 158, 66, 39, 66, 105, 190, 63, 68, 0, 60, 12, 126, 247, 0, 221, 49, 74, 66, 250, 66, 114, 190, 63, 68, 0, 60, 0, 124, 230, 0, 69, 51, 70, 66, 253, 64, 40, 190, 63, 68, 0, 60, 25, 123, 11, 0, 213, 47, 84, 66, 8, 192, 186, 189, 52, 68, 0, 60, 1, 121, 37, 0, 0, 182, 205, 66, 162, 69, 2, 188, 57, 63, 0, 60, 51, 116, 254, 0, 253, 53, 148, 65, 191, 70, 128, 190, 23, 65, 0, 60, 13, 125, 10, 0, 71, 56, 172, 65, 23, 72, 10, 190, 159, 68, 0, 60, 253, 126, 252, 0, 18, 58, 11, 66, 20, 70, 10, 190, 159, 68, 0, 60, 0, 126, 250, 0, 61, 56, 44, 66, 244, 67, 10, 190, 159, 68, 0, 60, 250, 126, 244, 0, 181, 52, 83, 66, 129, 63, 10, 190, 159, 68, 0, 60, 0, 122, 31, 0, 22, 44, 114, 66, 53, 179, 10, 190, 159, 68, 0, 60, 0, 126, 14, 0, 21, 177, 169, 66, 167, 192, 10, 190, 159, 68, 0, 60, 9, 119, 41, 0, 21, 182, 236, 66, 167, 192, 10, 190, 159, 68, 0, 60, 9, 119, 41, 0, 136, 57, 231, 189, 8, 192, 186, 189, 52, 68, 0, 60, 1, 121, 37, 0, 189, 57, 21, 190, 109, 196, 10, 190, 159, 68, 0, 60, 0, 108, 66, 0, 173, 55, 191, 189, 135, 198, 10, 190, 159, 68, 0, 60, 0, 108, 66, 0, 29, 52, 149, 189, 80, 200, 10, 190, 159, 68, 0, 60, 246, 118, 44, 0, 18, 41, 105, 189, 93, 201, 10, 190, 159, 68, 0, 60, 0, 122, 32, 0, 134, 177, 39, 189, 106, 202, 10, 190, 159, 68, 0, 60, 0, 122, 34, 0, 27, 182, 224, 188, 119, 203, 10, 190, 159, 68, 0, 60, 253, 122, 32, 0, 185, 184, 152, 188, 66, 204, 10, 190, 159, 68, 0, 60, 250, 126, 6, 0, 63, 186, 71, 188, 200, 204, 10, 190, 159, 68, 0, 60, 254, 126, 250, 0, 205, 187, 212, 187, 79, 205, 10, 190, 159, 68, 0, 60, 1, 126, 251, 0, 174, 188, 16, 187, 213, 205, 10, 190, 159, 68, 0, 60, 0, 127, 254, 0, 117, 189, 70, 186, 92, 206, 10, 190, 159, 68, 0, 60, 0, 127, 0, 0, 58, 190, 119, 185, 92, 206, 10, 190, 242, 65, 0, 60, 1, 127, 2, 0, 140, 190, 173, 186, 92, 206, 10, 190, 75, 61, 0, 60, 247, 126, 3, 0, 223, 190, 227, 187, 92, 206, 10, 190, 53, 181, 0, 60, 244, 126, 253, 0, 55, 191, 139, 188, 92, 206, 10, 190, 63, 195, 0, 60, 5, 126, 2, 0, 237, 191, 192, 189, 92, 206, 10, 190, 230, 191, 0, 60, 7, 126, 0, 0, 145, 191, 38, 189, 92, 206, 10, 190, 69, 197, 0, 60, 195, 110, 6, 0, 32, 192, 84, 190, 92, 206, 10, 190, 236, 198, 0, 60, 143, 56, 2, 0, 96, 192, 195, 190, 92, 206, 10, 190, 73, 200, 0, 60, 142, 53, 0, 0, 158, 192, 51, 191, 92, 206, 10, 190, 73, 200, 0, 60, 142, 53, 0, 0, 72, 58, 119, 185, 92, 206, 10, 190, 239, 201, 0, 60, 142, 53, 0, 0, 139, 59, 5, 188, 92, 206, 10, 190, 28, 201, 0, 60, 142, 53, 0, 0, 234, 58, 193, 186, 92, 206, 10, 190, 194, 202, 0, 60, 182, 101, 245, 0, 22, 60, 171, 188, 92, 206, 10, 190, 149, 203, 0, 60, 192, 109, 0, 0, 98, 60, 85, 189, 92, 206, 10, 190, 52, 204, 0, 60, 193, 107, 236, 0, 187, 60, 252, 189, 92, 206, 10, 190, 157, 204, 0, 60, 234, 122, 234, 0, 237, 60, 167, 190, 92, 206, 10, 190, 7, 205, 0, 60, 245, 126, 0, 0, 20, 61, 91, 191, 92, 206, 10, 190, 112, 205, 0, 60, 245, 126, 251, 0, 59, 61, 8, 192, 213, 205, 10, 190, 112, 205, 0, 60, 251, 126, 244, 0, 33, 62, 223, 191, 79, 205, 10, 190, 112, 205, 0, 60, 0, 125, 240, 0, 7, 63, 180, 191, 200, 204, 10, 190, 112, 205, 0, 60, 253, 125, 237, 0, 237, 63, 138, 191, 66, 204, 10, 190, 112, 205, 0, 60, 240, 115, 205, 0, 106, 64, 95, 191, 119, 203, 10, 190, 112, 205, 0, 60, 1, 106, 187, 0, 222, 64, 63, 191, 106, 202, 10, 190, 112, 205, 0, 60, 251, 98, 176, 0, 82, 65, 30, 191, 93, 201, 10, 190, 112, 205, 0, 60, 0, 93, 171, 0, 197, 65, 246, 190, 80, 200, 10, 190, 112, 205, 0, 60, 7, 104, 185, 0, 58, 66, 207, 190, 135, 198, 10, 190, 112, 205, 0, 60, 245, 79, 158, 0, 177, 66, 194, 190, 135, 198, 10, 190, 112, 205, 0, 60, 245, 79, 158, 0, 251, 177, 115, 185, 109, 196, 10, 190, 112, 205, 0, 60, 7, 85, 163, 0, 152, 40, 114, 184, 167, 192, 10, 190, 112, 205, 0, 60, 1, 97, 175, 0, 27, 52, 176, 182, 53, 179, 10, 190, 112, 205, 0, 60, 5, 109, 192, 0, 154, 55, 153, 180, 129, 63, 10, 190, 112, 205, 0, 60, 255, 114, 201, 0, 133, 57, 12, 177, 244, 67, 10, 190, 112, 205, 0, 60, 1, 112, 197, 0, 51, 59, 97, 165, 20, 70, 10, 190, 112, 205, 0, 60, 254, 109, 193, 0, 103, 60, 158, 47, 23, 72, 10, 190, 112, 205, 0, 60, 36, 114, 214, 0, 54, 61, 44, 52, 23, 72, 10, 190, 7, 205, 0, 60, 115, 52, 0, 0, 232, 60, 3, 55, 23, 72, 10, 190, 157, 204, 0, 60, 103, 74, 1, 0, 153, 60, 224, 56, 23, 72, 10, 190, 52, 204, 0, 60, 97, 81, 0, 0, 71, 60, 56, 58, 23, 72, 10, 190, 149, 203, 0, 60, 97, 81, 0, 0, 230, 59, 124, 59, 23, 72, 10, 190, 194, 202, 0, 60, 101, 75, 255, 0, 53, 59, 83, 60, 23, 72, 10, 190, 239, 201, 0, 60, 120, 40, 255, 0, 176, 58, 244, 60, 23, 72, 10, 190, 28, 201, 0, 60, 110, 61, 7, 0, 238, 57, 149, 61, 23, 72, 10, 190, 73, 200, 0, 60, 67, 107, 11, 0, 43, 57, 54, 62, 23, 72, 10, 190, 236, 198, 0, 60, 35, 121, 9, 0, 152, 56, 225, 62, 23, 72, 10, 190, 69, 197, 0, 60, 74, 101, 240, 0, 37, 56, 144, 63, 23, 72, 10, 190, 63, 195, 0, 60, 85, 93, 1, 0, 113, 56, 45, 64, 23, 72, 10, 190, 230, 191, 0, 60, 41, 116, 26, 0, 139, 56, 147, 64, 23, 72, 10, 190, 53, 181, 0, 60, 9, 126, 5, 0, 237, 56, 242, 64, 23, 72, 10, 190, 75, 61, 0, 60, 2, 126, 5, 0, 72, 57, 81, 65, 23, 72, 10, 190, 242, 65, 0, 60, 250, 126, 3, 0, 170, 57, 174, 65), -"array_index_data": PackedByteArray(0, 0, 2, 0, 1, 0, 0, 0, 3, 0, 2, 0, 4, 0, 6, 0, 5, 0, 4, 0, 7, 0, 6, 0, 8, 0, 10, 0, 9, 0, 8, 0, 11, 0, 10, 0, 12, 0, 14, 0, 13, 0, 12, 0, 15, 0, 14, 0, 13, 0, 17, 0, 16, 0, 13, 0, 14, 0, 17, 0, 16, 0, 19, 0, 18, 0, 16, 0, 17, 0, 19, 0, 18, 0, 21, 0, 20, 0, 18, 0, 19, 0, 21, 0, 20, 0, 23, 0, 22, 0, 20, 0, 21, 0, 23, 0, 22, 0, 25, 0, 24, 0, 22, 0, 23, 0, 25, 0, 15, 0, 26, 0, 14, 0, 15, 0, 27, 0, 26, 0, 14, 0, 28, 0, 17, 0, 14, 0, 26, 0, 28, 0, 17, 0, 29, 0, 19, 0, 17, 0, 28, 0, 29, 0, 19, 0, 30, 0, 21, 0, 19, 0, 29, 0, 30, 0, 21, 0, 31, 0, 23, 0, 21, 0, 30, 0, 31, 0, 23, 0, 32, 0, 25, 0, 23, 0, 31, 0, 32, 0, 27, 0, 33, 0, 26, 0, 27, 0, 34, 0, 33, 0, 26, 0, 35, 0, 28, 0, 26, 0, 33, 0, 35, 0, 28, 0, 36, 0, 29, 0, 28, 0, 35, 0, 36, 0, 29, 0, 37, 0, 30, 0, 29, 0, 36, 0, 37, 0, 30, 0, 38, 0, 31, 0, 30, 0, 37, 0, 38, 0, 31, 0, 39, 0, 32, 0, 31, 0, 38, 0, 39, 0, 33, 0, 40, 0, 35, 0, 33, 0, 41, 0, 40, 0, 35, 0, 42, 0, 36, 0, 35, 0, 40, 0, 42, 0, 36, 0, 43, 0, 37, 0, 36, 0, 42, 0, 43, 0, 37, 0, 44, 0, 38, 0, 37, 0, 43, 0, 44, 0, 38, 0, 45, 0, 39, 0, 38, 0, 44, 0, 45, 0, 41, 0, 46, 0, 40, 0, 41, 0, 47, 0, 46, 0, 40, 0, 48, 0, 42, 0, 40, 0, 46, 0, 48, 0, 42, 0, 49, 0, 43, 0, 42, 0, 48, 0, 49, 0, 43, 0, 50, 0, 44, 0, 43, 0, 49, 0, 50, 0, 44, 0, 51, 0, 45, 0, 44, 0, 50, 0, 51, 0, 50, 0, 52, 0, 51, 0, 50, 0, 53, 0, 52, 0, 53, 0, 54, 0, 52, 0, 53, 0, 55, 0, 54, 0, 55, 0, 56, 0, 54, 0, 55, 0, 57, 0, 56, 0, 57, 0, 58, 0, 56, 0, 57, 0, 59, 0, 58, 0, 59, 0, 60, 0, 58, 0, 59, 0, 61, 0, 60, 0, 59, 0, 62, 0, 61, 0, 59, 0, 63, 0, 62, 0, 57, 0, 63, 0, 59, 0, 57, 0, 64, 0, 63, 0, 55, 0, 64, 0, 57, 0, 55, 0, 65, 0, 64, 0, 63, 0, 66, 0, 62, 0, 63, 0, 67, 0, 66, 0, 64, 0, 67, 0, 63, 0, 64, 0, 68, 0, 67, 0, 65, 0, 68, 0, 64, 0, 65, 0, 69, 0, 68, 0, 67, 0, 70, 0, 66, 0, 67, 0, 71, 0, 70, 0, 68, 0, 71, 0, 67, 0, 68, 0, 72, 0, 71, 0, 69, 0, 72, 0, 68, 0, 69, 0, 73, 0, 72, 0, 74, 0, 75, 0, 70, 0, 71, 0, 74, 0, 70, 0, 71, 0, 76, 0, 74, 0, 72, 0, 76, 0, 71, 0, 72, 0, 77, 0, 76, 0, 73, 0, 77, 0, 72, 0, 73, 0, 78, 0, 77, 0, 75, 0, 80, 0, 79, 0, 75, 0, 81, 0, 80, 0, 76, 0, 82, 0, 74, 0, 76, 0, 83, 0, 82, 0, 77, 0, 83, 0, 76, 0, 77, 0, 84, 0, 83, 0, 78, 0, 84, 0, 77, 0, 78, 0, 85, 0, 84, 0, 81, 0, 86, 0, 80, 0, 81, 0, 87, 0, 86, 0, 83, 0, 88, 0, 82, 0, 83, 0, 89, 0, 88, 0, 84, 0, 89, 0, 83, 0, 84, 0, 90, 0, 89, 0, 85, 0, 90, 0, 84, 0, 85, 0, 91, 0, 90, 0, 50, 0, 78, 0, 73, 0, 50, 0, 49, 0, 78, 0, 53, 0, 50, 0, 65, 0, 65, 0, 73, 0, 69, 0, 65, 0, 50, 0, 73, 0, 55, 0, 53, 0, 65, 0, 78, 0, 49, 0, 85, 0, 49, 0, 91, 0, 85, 0, 49, 0, 48, 0, 91, 0, 74, 0, 81, 0, 75, 0, 74, 0, 82, 0, 81, 0, 82, 0, 87, 0, 81, 0, 82, 0, 88, 0, 87, 0, 79, 0, 92, 0, 75, 0, 70, 0, 75, 0, 92, 0, 54, 0, 93, 0, 52, 0, 54, 0, 94, 0, 93, 0, 52, 0, 95, 0, 51, 0, 52, 0, 93, 0, 95, 0, 51, 0, 96, 0, 45, 0, 51, 0, 95, 0, 96, 0, 45, 0, 97, 0, 39, 0, 45, 0, 96, 0, 97, 0, 39, 0, 98, 0, 32, 0, 39, 0, 97, 0, 98, 0, 32, 0, 99, 0, 25, 0, 32, 0, 98, 0, 99, 0, 94, 0, 101, 0, 100, 0, 94, 0, 102, 0, 101, 0, 100, 0, 104, 0, 103, 0, 100, 0, 101, 0, 104, 0, 103, 0, 106, 0, 105, 0, 103, 0, 104, 0, 106, 0, 105, 0, 108, 0, 107, 0, 105, 0, 106, 0, 108, 0, 107, 0, 110, 0, 109, 0, 107, 0, 108, 0, 110, 0, 109, 0, 112, 0, 111, 0, 109, 0, 110, 0, 112, 0, 102, 0, 113, 0, 101, 0, 102, 0, 114, 0, 113, 0, 101, 0, 115, 0, 104, 0, 101, 0, 113, 0, 115, 0, 104, 0, 116, 0, 106, 0, 104, 0, 115, 0, 116, 0, 106, 0, 117, 0, 108, 0, 106, 0, 116, 0, 117, 0, 108, 0, 118, 0, 110, 0, 108, 0, 117, 0, 118, 0, 110, 0, 119, 0, 112, 0, 110, 0, 118, 0, 119, 0, 114, 0, 120, 0, 113, 0, 114, 0, 121, 0, 120, 0, 113, 0, 122, 0, 115, 0, 113, 0, 120, 0, 122, 0, 115, 0, 123, 0, 116, 0, 115, 0, 122, 0, 123, 0, 116, 0, 124, 0, 117, 0, 116, 0, 123, 0, 124, 0, 117, 0, 125, 0, 118, 0, 117, 0, 124, 0, 125, 0, 118, 0, 126, 0, 119, 0, 118, 0, 125, 0, 126, 0, 25, 0, 99, 0, 127, 0, 24, 0, 127, 0, 128, 0, 24, 0, 25, 0, 127, 0, 112, 0, 129, 0, 111, 0, 112, 0, 130, 0, 129, 0, 54, 0, 56, 0, 94, 0, 131, 0, 94, 0, 56, 0, 58, 0, 131, 0, 56, 0, 60, 0, 131, 0, 58, 0, 60, 0, 132, 0, 131, 0, 102, 0, 131, 0, 133, 0, 102, 0, 94, 0, 131, 0, 134, 0, 102, 0, 133, 0, 134, 0, 135, 0, 102, 0, 136, 0, 102, 0, 135, 0, 136, 0, 114, 0, 102, 0, 136, 0, 137, 0, 114, 0, 132, 0, 60, 0, 138, 0, 139, 0, 141, 0, 140, 0, 139, 0, 142, 0, 141, 0, 140, 0, 144, 0, 143, 0, 140, 0, 141, 0, 144, 0, 143, 0, 146, 0, 145, 0, 143, 0, 144, 0, 146, 0, 145, 0, 148, 0, 147, 0, 145, 0, 146, 0, 148, 0, 142, 0, 149, 0, 141, 0, 142, 0, 150, 0, 149, 0, 141, 0, 151, 0, 144, 0, 141, 0, 149, 0, 151, 0, 144, 0, 152, 0, 146, 0, 144, 0, 151, 0, 152, 0, 146, 0, 153, 0, 148, 0, 146, 0, 152, 0, 153, 0, 150, 0, 154, 0, 149, 0, 150, 0, 155, 0, 154, 0, 149, 0, 156, 0, 151, 0, 149, 0, 154, 0, 156, 0, 151, 0, 157, 0, 152, 0, 151, 0, 156, 0, 157, 0, 152, 0, 158, 0, 153, 0, 152, 0, 157, 0, 158, 0, 155, 0, 159, 0, 154, 0, 155, 0, 160, 0, 159, 0, 154, 0, 161, 0, 156, 0, 154, 0, 159, 0, 161, 0, 156, 0, 162, 0, 157, 0, 156, 0, 161, 0, 162, 0, 157, 0, 163, 0, 158, 0, 157, 0, 162, 0, 163, 0, 160, 0, 164, 0, 159, 0, 160, 0, 165, 0, 164, 0, 159, 0, 166, 0, 161, 0, 159, 0, 164, 0, 166, 0, 161, 0, 167, 0, 162, 0, 161, 0, 166, 0, 167, 0, 162, 0, 168, 0, 163, 0, 162, 0, 167, 0, 168, 0, 165, 0, 169, 0, 164, 0, 165, 0, 170, 0, 169, 0, 164, 0, 171, 0, 166, 0, 164, 0, 169, 0, 171, 0, 166, 0, 172, 0, 167, 0, 166, 0, 171, 0, 172, 0, 167, 0, 173, 0, 168, 0, 167, 0, 172, 0, 173, 0, 170, 0, 174, 0, 169, 0, 170, 0, 175, 0, 174, 0, 169, 0, 176, 0, 171, 0, 169, 0, 174, 0, 176, 0, 171, 0, 177, 0, 172, 0, 171, 0, 176, 0, 177, 0, 172, 0, 178, 0, 173, 0, 172, 0, 177, 0, 178, 0, 170, 0, 179, 0, 175, 0, 170, 0, 180, 0, 179, 0, 165, 0, 180, 0, 170, 0, 165, 0, 181, 0, 180, 0, 160, 0, 181, 0, 165, 0, 160, 0, 182, 0, 181, 0, 155, 0, 182, 0, 160, 0, 155, 0, 183, 0, 182, 0, 150, 0, 183, 0, 155, 0, 150, 0, 184, 0, 183, 0, 142, 0, 184, 0, 150, 0, 142, 0, 185, 0, 184, 0, 142, 0, 186, 0, 185, 0, 142, 0, 139, 0, 186, 0, 139, 0, 187, 0, 186, 0, 183, 0, 188, 0, 182, 0, 183, 0, 184, 0, 188, 0, 185, 0, 186, 0, 184, 0, 186, 0, 188, 0, 184, 0, 188, 0, 181, 0, 182, 0, 188, 0, 189, 0, 181, 0, 190, 0, 181, 0, 189, 0, 92, 0, 181, 0, 190, 0, 92, 0, 180, 0, 181, 0, 92, 0, 79, 0, 180, 0, 79, 0, 179, 0, 180, 0, 79, 0, 80, 0, 179, 0, 191, 0, 193, 0, 192, 0, 191, 0, 194, 0, 193, 0, 192, 0, 196, 0, 195, 0, 192, 0, 193, 0, 196, 0, 194, 0, 197, 0, 193, 0, 194, 0, 198, 0, 197, 0, 193, 0, 199, 0, 196, 0, 193, 0, 197, 0, 199, 0, 198, 0, 200, 0, 197, 0, 198, 0, 201, 0, 200, 0, 197, 0, 202, 0, 199, 0, 197, 0, 200, 0, 202, 0, 195, 0, 15, 0, 12, 0, 195, 0, 196, 0, 15, 0, 27, 0, 196, 0, 199, 0, 27, 0, 15, 0, 196, 0, 34, 0, 199, 0, 202, 0, 34, 0, 27, 0, 199, 0, 201, 0, 203, 0, 200, 0, 201, 0, 204, 0, 203, 0, 200, 0, 205, 0, 202, 0, 200, 0, 203, 0, 205, 0, 202, 0, 205, 0, 34, 0, 201, 0, 206, 0, 204, 0, 201, 0, 207, 0, 206, 0, 198, 0, 207, 0, 201, 0, 198, 0, 208, 0, 207, 0, 194, 0, 208, 0, 198, 0, 194, 0, 209, 0, 208, 0, 207, 0, 210, 0, 206, 0, 207, 0, 211, 0, 210, 0, 208, 0, 211, 0, 207, 0, 208, 0, 212, 0, 211, 0, 209, 0, 212, 0, 208, 0, 209, 0, 213, 0, 212, 0, 9, 0, 215, 0, 214, 0, 9, 0, 10, 0, 215, 0, 216, 0, 7, 0, 191, 0, 191, 0, 11, 0, 8, 0, 11, 0, 7, 0, 4, 0, 191, 0, 7, 0, 11, 0, 11, 0, 5, 0, 10, 0, 11, 0, 4, 0, 5, 0, 191, 0, 9, 0, 217, 0, 191, 0, 8, 0, 9, 0, 7, 0, 218, 0, 6, 0, 7, 0, 216, 0, 218, 0, 5, 0, 220, 0, 219, 0, 5, 0, 6, 0, 220, 0, 194, 0, 217, 0, 209, 0, 194, 0, 191, 0, 217, 0, 10, 0, 219, 0, 215, 0, 10, 0, 5, 0, 219, 0, 6, 0, 221, 0, 220, 0, 6, 0, 218, 0, 221, 0, 214, 0, 223, 0, 222, 0, 214, 0, 215, 0, 223, 0, 219, 0, 225, 0, 224, 0, 219, 0, 220, 0, 225, 0, 215, 0, 224, 0, 223, 0, 215, 0, 219, 0, 224, 0, 220, 0, 226, 0, 225, 0, 220, 0, 221, 0, 226, 0, 222, 0, 228, 0, 227, 0, 222, 0, 223, 0, 228, 0, 224, 0, 230, 0, 229, 0, 224, 0, 225, 0, 230, 0, 223, 0, 229, 0, 228, 0, 223, 0, 224, 0, 229, 0, 225, 0, 231, 0, 230, 0, 225, 0, 226, 0, 231, 0, 232, 0, 227, 0, 233, 0, 232, 0, 222, 0, 227, 0, 230, 0, 235, 0, 234, 0, 230, 0, 231, 0, 235, 0, 233, 0, 213, 0, 232, 0, 213, 0, 237, 0, 236, 0, 213, 0, 233, 0, 237, 0, 213, 0, 238, 0, 212, 0, 213, 0, 236, 0, 238, 0, 212, 0, 238, 0, 211, 0, 234, 0, 240, 0, 239, 0, 234, 0, 235, 0, 240, 0, 217, 0, 9, 0, 214, 0, 217, 0, 222, 0, 232, 0, 217, 0, 214, 0, 222, 0, 233, 0, 241, 0, 237, 0, 237, 0, 243, 0, 242, 0, 237, 0, 241, 0, 243, 0, 239, 0, 245, 0, 244, 0, 239, 0, 240, 0, 245, 0, 238, 0, 246, 0, 211, 0, 238, 0, 247, 0, 246, 0, 236, 0, 242, 0, 248, 0, 236, 0, 237, 0, 242, 0, 236, 0, 247, 0, 238, 0, 236, 0, 248, 0, 247, 0, 211, 0, 249, 0, 210, 0, 211, 0, 246, 0, 249, 0, 213, 0, 209, 0, 232, 0, 217, 0, 232, 0, 209, 0, 227, 0, 228, 0, 241, 0, 229, 0, 234, 0, 241, 0, 229, 0, 230, 0, 234, 0, 228, 0, 229, 0, 241, 0, 233, 0, 227, 0, 241, 0, 241, 0, 234, 0, 239, 0, 241, 0, 250, 0, 243, 0, 241, 0, 244, 0, 250, 0, 241, 0, 239, 0, 244, 0, 251, 0, 253, 0, 252, 0, 218, 0, 253, 0, 251, 0, 218, 0, 216, 0, 253, 0, 245, 0, 255, 0, 254, 0, 245, 0, 240, 0, 255, 0, 240, 0, 0, 1, 255, 0, 240, 0, 235, 0, 0, 1, 235, 0, 1, 1, 0, 1, 235, 0, 231, 0, 1, 1, 231, 0, 2, 1, 1, 1, 231, 0, 226, 0, 2, 1, 254, 0, 4, 1, 3, 1, 254, 0, 255, 0, 4, 1, 255, 0, 5, 1, 4, 1, 255, 0, 0, 1, 5, 1, 0, 1, 6, 1, 5, 1, 0, 1, 1, 1, 6, 1, 1, 1, 7, 1, 6, 1, 1, 1, 2, 1, 7, 1, 3, 1, 9, 1, 8, 1, 3, 1, 4, 1, 9, 1, 4, 1, 10, 1, 9, 1, 4, 1, 5, 1, 10, 1, 5, 1, 11, 1, 10, 1, 5, 1, 6, 1, 11, 1, 6, 1, 12, 1, 11, 1, 6, 1, 7, 1, 12, 1, 8, 1, 14, 1, 13, 1, 8, 1, 9, 1, 14, 1, 9, 1, 15, 1, 14, 1, 9, 1, 10, 1, 15, 1, 10, 1, 16, 1, 15, 1, 10, 1, 11, 1, 16, 1, 11, 1, 17, 1, 16, 1, 11, 1, 12, 1, 17, 1, 13, 1, 19, 1, 18, 1, 13, 1, 14, 1, 19, 1, 14, 1, 20, 1, 19, 1, 14, 1, 15, 1, 20, 1, 15, 1, 21, 1, 20, 1, 15, 1, 16, 1, 21, 1, 16, 1, 22, 1, 21, 1, 16, 1, 17, 1, 22, 1, 18, 1, 24, 1, 23, 1, 18, 1, 19, 1, 24, 1, 19, 1, 25, 1, 24, 1, 19, 1, 20, 1, 25, 1, 20, 1, 26, 1, 25, 1, 20, 1, 21, 1, 26, 1, 21, 1, 27, 1, 26, 1, 21, 1, 22, 1, 27, 1, 226, 0, 221, 0, 2, 1, 221, 0, 251, 0, 2, 1, 221, 0, 218, 0, 251, 0, 2, 1, 251, 0, 7, 1, 252, 0, 7, 1, 251, 0, 252, 0, 12, 1, 7, 1, 12, 1, 252, 0, 17, 1, 22, 1, 17, 1, 252, 0, 28, 1, 29, 1, 252, 0, 28, 1, 30, 1, 29, 1, 31, 1, 30, 1, 28, 1, 31, 1, 32, 1, 30, 1, 30, 1, 33, 1, 29, 1, 30, 1, 34, 1, 33, 1, 32, 1, 34, 1, 30, 1, 32, 1, 35, 1, 34, 1, 34, 1, 36, 1, 33, 1, 34, 1, 37, 1, 36, 1, 35, 1, 37, 1, 34, 1, 35, 1, 38, 1, 37, 1, 130, 0, 40, 1, 39, 1, 130, 0, 112, 0, 40, 1, 39, 1, 40, 1, 41, 1, 31, 1, 41, 1, 32, 1, 35, 1, 41, 1, 40, 1, 35, 1, 32, 1, 41, 1, 112, 0, 119, 0, 40, 1, 42, 1, 119, 0, 126, 0, 121, 0, 43, 1, 120, 0, 121, 0, 44, 1, 43, 1, 120, 0, 45, 1, 122, 0, 120, 0, 43, 1, 45, 1, 122, 0, 46, 1, 123, 0, 122, 0, 45, 1, 46, 1, 123, 0, 47, 1, 124, 0, 123, 0, 46, 1, 47, 1, 124, 0, 48, 1, 125, 0, 124, 0, 47, 1, 48, 1, 125, 0, 49, 1, 126, 0, 125, 0, 48, 1, 49, 1, 44, 1, 50, 1, 43, 1, 44, 1, 51, 1, 50, 1, 43, 1, 52, 1, 45, 1, 43, 1, 50, 1, 52, 1, 45, 1, 53, 1, 46, 1, 45, 1, 52, 1, 53, 1, 46, 1, 54, 1, 47, 1, 46, 1, 53, 1, 54, 1, 47, 1, 55, 1, 48, 1, 47, 1, 54, 1, 55, 1, 48, 1, 56, 1, 49, 1, 48, 1, 55, 1, 56, 1, 57, 1, 59, 1, 58, 1, 57, 1, 60, 1, 59, 1, 2, 0, 126, 0, 49, 1, 2, 0, 1, 0, 126, 0, 42, 1, 126, 0, 1, 0, 0, 0, 61, 1, 1, 0, 61, 1, 42, 1, 1, 0, 61, 1, 62, 1, 42, 1, 42, 1, 62, 1, 63, 1, 64, 1, 66, 1, 65, 1, 66, 1, 67, 1, 65, 1, 66, 1, 68, 1, 67, 1, 65, 1, 70, 1, 69, 1, 65, 1, 71, 1, 70, 1, 72, 1, 71, 1, 65, 1, 72, 1, 73, 1, 71, 1, 72, 1, 65, 1, 67, 1, 74, 1, 71, 1, 73, 1, 71, 1, 75, 1, 70, 1, 71, 1, 76, 1, 75, 1, 71, 1, 74, 1, 76, 1, 74, 1, 77, 1, 76, 1, 74, 1, 78, 1, 77, 1, 79, 1, 81, 1, 80, 1, 79, 1, 82, 1, 81, 1, 80, 1, 84, 1, 83, 1, 80, 1, 81, 1, 84, 1, 83, 1, 76, 1, 77, 1, 83, 1, 84, 1, 76, 1, 75, 1, 84, 1, 81, 1, 75, 1, 76, 1, 84, 1, 81, 1, 82, 1, 75, 1, 75, 1, 85, 1, 70, 1, 75, 1, 86, 1, 85, 1, 86, 1, 87, 1, 85, 1, 86, 1, 88, 1, 87, 1, 89, 1, 85, 1, 87, 1, 69, 1, 85, 1, 89, 1, 69, 1, 70, 1, 85, 1, 37, 1, 91, 1, 90, 1, 92, 1, 69, 1, 89, 1, 90, 1, 91, 1, 69, 1, 90, 1, 69, 1, 92, 1, 79, 1, 93, 1, 82, 1, 82, 1, 86, 1, 75, 1, 82, 1, 93, 1, 86, 1, 93, 1, 94, 1, 86, 1, 93, 1, 95, 1, 94, 1, 86, 1, 94, 1, 88, 1, 88, 1, 96, 1, 87, 1, 88, 1, 97, 1, 96, 1, 98, 1, 99, 1, 96, 1, 99, 1, 101, 1, 100, 1, 101, 1, 103, 1, 102, 1, 103, 1, 105, 1, 104, 1, 106, 1, 99, 1, 98, 1, 99, 1, 103, 1, 101, 1, 107, 1, 105, 1, 103, 1, 107, 1, 99, 1, 106, 1, 107, 1, 103, 1, 99, 1, 87, 1, 96, 1, 89, 1, 96, 1, 92, 1, 89, 1, 96, 1, 99, 1, 92, 1, 108, 1, 98, 1, 109, 1, 109, 1, 98, 1, 110, 1, 96, 1, 110, 1, 98, 1, 96, 1, 97, 1, 110, 1, 94, 1, 97, 1, 88, 1, 94, 1, 111, 1, 97, 1, 110, 1, 97, 1, 111, 1, 106, 1, 112, 1, 107, 1, 113, 1, 115, 1, 114, 1, 105, 1, 107, 1, 112, 1, 115, 1, 116, 1, 114, 1, 115, 1, 117, 1, 116, 1, 117, 1, 118, 1, 116, 1, 117, 1, 119, 1, 118, 1, 104, 1, 121, 1, 120, 1, 104, 1, 105, 1, 121, 1, 122, 1, 124, 1, 123, 1, 122, 1, 125, 1, 124, 1, 125, 1, 126, 1, 124, 1, 125, 1, 127, 1, 126, 1, 127, 1, 128, 1, 126, 1, 127, 1, 129, 1, 128, 1, 129, 1, 130, 1, 128, 1, 129, 1, 131, 1, 130, 1, 131, 1, 132, 1, 130, 1, 131, 1, 133, 1, 132, 1, 133, 1, 134, 1, 132, 1, 133, 1, 135, 1, 134, 1, 135, 1, 136, 1, 134, 1, 135, 1, 137, 1, 136, 1, 137, 1, 138, 1, 136, 1, 137, 1, 139, 1, 138, 1, 140, 1, 142, 1, 141, 1, 140, 1, 143, 1, 142, 1, 144, 1, 141, 1, 145, 1, 144, 1, 140, 1, 141, 1, 123, 1, 147, 1, 146, 1, 123, 1, 124, 1, 147, 1, 124, 1, 148, 1, 147, 1, 124, 1, 126, 1, 148, 1, 126, 1, 149, 1, 148, 1, 126, 1, 128, 1, 149, 1, 128, 1, 150, 1, 149, 1, 128, 1, 130, 1, 150, 1, 130, 1, 151, 1, 150, 1, 130, 1, 132, 1, 151, 1, 132, 1, 152, 1, 151, 1, 132, 1, 134, 1, 152, 1, 134, 1, 153, 1, 152, 1, 134, 1, 136, 1, 153, 1, 136, 1, 154, 1, 153, 1, 136, 1, 138, 1, 154, 1, 141, 1, 156, 1, 155, 1, 141, 1, 142, 1, 156, 1, 145, 1, 155, 1, 157, 1, 145, 1, 141, 1, 155, 1, 146, 1, 159, 1, 158, 1, 146, 1, 147, 1, 159, 1, 147, 1, 160, 1, 159, 1, 147, 1, 148, 1, 160, 1, 148, 1, 161, 1, 160, 1, 148, 1, 149, 1, 161, 1, 149, 1, 162, 1, 161, 1, 149, 1, 150, 1, 162, 1, 150, 1, 163, 1, 162, 1, 150, 1, 151, 1, 163, 1, 151, 1, 164, 1, 163, 1, 151, 1, 152, 1, 164, 1, 152, 1, 165, 1, 164, 1, 152, 1, 153, 1, 165, 1, 153, 1, 166, 1, 165, 1, 153, 1, 154, 1, 166, 1, 155, 1, 168, 1, 167, 1, 155, 1, 156, 1, 168, 1, 157, 1, 167, 1, 169, 1, 157, 1, 155, 1, 167, 1, 158, 1, 171, 1, 170, 1, 158, 1, 159, 1, 171, 1, 159, 1, 172, 1, 171, 1, 159, 1, 160, 1, 172, 1, 160, 1, 173, 1, 172, 1, 160, 1, 161, 1, 173, 1, 161, 1, 174, 1, 173, 1, 161, 1, 162, 1, 174, 1, 162, 1, 175, 1, 174, 1, 162, 1, 163, 1, 175, 1, 163, 1, 176, 1, 175, 1, 163, 1, 164, 1, 176, 1, 164, 1, 177, 1, 176, 1, 164, 1, 165, 1, 177, 1, 165, 1, 178, 1, 177, 1, 165, 1, 166, 1, 178, 1, 167, 1, 180, 1, 179, 1, 167, 1, 168, 1, 180, 1, 169, 1, 179, 1, 181, 1, 169, 1, 167, 1, 179, 1, 170, 1, 183, 1, 182, 1, 170, 1, 171, 1, 183, 1, 171, 1, 184, 1, 183, 1, 171, 1, 172, 1, 184, 1, 172, 1, 185, 1, 184, 1, 172, 1, 173, 1, 185, 1, 173, 1, 186, 1, 185, 1, 173, 1, 174, 1, 186, 1, 174, 1, 187, 1, 186, 1, 174, 1, 175, 1, 187, 1, 175, 1, 188, 1, 187, 1, 175, 1, 176, 1, 188, 1, 176, 1, 189, 1, 188, 1, 176, 1, 177, 1, 189, 1, 177, 1, 190, 1, 189, 1, 177, 1, 178, 1, 190, 1, 179, 1, 192, 1, 191, 1, 179, 1, 180, 1, 192, 1, 181, 1, 191, 1, 193, 1, 181, 1, 179, 1, 191, 1, 182, 1, 195, 1, 194, 1, 182, 1, 183, 1, 195, 1, 183, 1, 196, 1, 195, 1, 183, 1, 184, 1, 196, 1, 184, 1, 197, 1, 196, 1, 184, 1, 185, 1, 197, 1, 185, 1, 198, 1, 197, 1, 185, 1, 186, 1, 198, 1, 186, 1, 199, 1, 198, 1, 186, 1, 187, 1, 199, 1, 187, 1, 200, 1, 199, 1, 187, 1, 188, 1, 200, 1, 188, 1, 201, 1, 200, 1, 188, 1, 189, 1, 201, 1, 189, 1, 202, 1, 201, 1, 189, 1, 190, 1, 202, 1, 191, 1, 204, 1, 203, 1, 191, 1, 192, 1, 204, 1, 193, 1, 203, 1, 205, 1, 193, 1, 191, 1, 203, 1, 194, 1, 207, 1, 206, 1, 194, 1, 195, 1, 207, 1, 195, 1, 208, 1, 207, 1, 195, 1, 196, 1, 208, 1, 196, 1, 209, 1, 208, 1, 196, 1, 197, 1, 209, 1, 197, 1, 210, 1, 209, 1, 197, 1, 198, 1, 210, 1, 198, 1, 211, 1, 210, 1, 198, 1, 199, 1, 211, 1, 199, 1, 212, 1, 211, 1, 199, 1, 200, 1, 212, 1, 200, 1, 213, 1, 212, 1, 200, 1, 201, 1, 213, 1, 201, 1, 214, 1, 213, 1, 201, 1, 202, 1, 214, 1, 203, 1, 216, 1, 215, 1, 203, 1, 204, 1, 216, 1, 205, 1, 215, 1, 217, 1, 205, 1, 203, 1, 215, 1, 192, 1, 194, 1, 204, 1, 192, 1, 182, 1, 194, 1, 142, 1, 146, 1, 156, 1, 142, 1, 123, 1, 146, 1, 156, 1, 158, 1, 168, 1, 156, 1, 146, 1, 158, 1, 168, 1, 170, 1, 180, 1, 168, 1, 158, 1, 170, 1, 180, 1, 182, 1, 192, 1, 180, 1, 170, 1, 182, 1, 204, 1, 206, 1, 216, 1, 204, 1, 194, 1, 206, 1, 143, 1, 123, 1, 142, 1, 143, 1, 122, 1, 123, 1, 181, 1, 219, 1, 218, 1, 181, 1, 193, 1, 219, 1, 218, 1, 221, 1, 220, 1, 218, 1, 219, 1, 221, 1, 220, 1, 223, 1, 222, 1, 220, 1, 221, 1, 223, 1, 181, 1, 218, 1, 169, 1, 169, 1, 220, 1, 157, 1, 169, 1, 218, 1, 220, 1, 157, 1, 222, 1, 145, 1, 157, 1, 220, 1, 222, 1, 224, 1, 144, 1, 225, 1, 224, 1, 225, 1, 226, 1, 226, 1, 225, 1, 227, 1, 227, 1, 117, 1, 115, 1, 227, 1, 225, 1, 117, 1, 144, 1, 222, 1, 225, 1, 144, 1, 145, 1, 222, 1, 222, 1, 223, 1, 119, 1, 223, 1, 221, 1, 205, 1, 205, 1, 219, 1, 193, 1, 205, 1, 221, 1, 219, 1, 205, 1, 217, 1, 223, 1, 225, 1, 228, 1, 117, 1, 225, 1, 222, 1, 228, 1, 222, 1, 119, 1, 228, 1, 117, 1, 228, 1, 119, 1, 229, 1, 231, 1, 230, 1, 229, 1, 232, 1, 231, 1, 233, 1, 230, 1, 234, 1, 233, 1, 229, 1, 230, 1, 235, 1, 234, 1, 236, 1, 235, 1, 233, 1, 234, 1, 237, 1, 236, 1, 238, 1, 237, 1, 235, 1, 236, 1, 239, 1, 238, 1, 240, 1, 239, 1, 237, 1, 238, 1, 230, 1, 242, 1, 241, 1, 230, 1, 231, 1, 242, 1, 234, 1, 241, 1, 243, 1, 234, 1, 230, 1, 241, 1, 236, 1, 243, 1, 244, 1, 236, 1, 234, 1, 243, 1, 238, 1, 244, 1, 245, 1, 238, 1, 236, 1, 244, 1, 240, 1, 245, 1, 246, 1, 240, 1, 238, 1, 245, 1, 241, 1, 248, 1, 247, 1, 241, 1, 242, 1, 248, 1, 243, 1, 247, 1, 249, 1, 243, 1, 241, 1, 247, 1, 244, 1, 249, 1, 250, 1, 244, 1, 243, 1, 249, 1, 245, 1, 250, 1, 251, 1, 245, 1, 244, 1, 250, 1, 246, 1, 251, 1, 252, 1, 246, 1, 245, 1, 251, 1, 247, 1, 254, 1, 253, 1, 247, 1, 248, 1, 254, 1, 249, 1, 253, 1, 255, 1, 249, 1, 247, 1, 253, 1, 250, 1, 255, 1, 0, 2, 250, 1, 249, 1, 255, 1, 251, 1, 0, 2, 1, 2, 251, 1, 250, 1, 0, 2, 252, 1, 1, 2, 2, 2, 252, 1, 251, 1, 1, 2, 254, 1, 248, 1, 3, 2, 3, 2, 5, 2, 4, 2, 3, 2, 248, 1, 5, 2, 6, 2, 231, 1, 232, 1, 6, 2, 7, 2, 231, 1, 8, 2, 7, 2, 6, 2, 9, 2, 7, 2, 8, 2, 9, 2, 10, 2, 7, 2, 9, 2, 11, 2, 10, 2, 12, 2, 10, 2, 11, 2, 12, 2, 13, 2, 10, 2, 14, 2, 13, 2, 15, 2, 14, 2, 10, 2, 13, 2, 231, 1, 10, 2, 242, 1, 231, 1, 7, 2, 10, 2, 242, 1, 5, 2, 248, 1, 242, 1, 10, 2, 5, 2, 10, 2, 14, 2, 5, 2, 14, 2, 4, 2, 5, 2, 14, 2, 16, 2, 4, 2, 17, 2, 4, 2, 16, 2, 18, 2, 4, 2, 17, 2, 18, 2, 3, 2, 4, 2, 19, 2, 21, 2, 20, 2, 19, 2, 22, 2, 21, 2, 22, 2, 23, 2, 21, 2, 22, 2, 24, 2, 23, 2, 24, 2, 25, 2, 23, 2, 24, 2, 26, 2, 25, 2, 20, 2, 28, 2, 27, 2, 20, 2, 21, 2, 28, 2, 21, 2, 29, 2, 28, 2, 21, 2, 23, 2, 29, 2, 23, 2, 30, 2, 29, 2, 23, 2, 25, 2, 30, 2, 19, 2, 3, 2, 18, 2, 19, 2, 20, 2, 3, 2, 3, 2, 27, 2, 254, 1, 3, 2, 20, 2, 27, 2, 253, 1, 32, 2, 31, 2, 253, 1, 254, 1, 32, 2, 31, 2, 34, 2, 33, 2, 31, 2, 32, 2, 34, 2, 253, 1, 31, 2, 255, 1, 255, 1, 33, 2, 0, 2, 255, 1, 31, 2, 33, 2, 0, 2, 33, 2, 1, 2, 2, 2, 1, 2, 35, 2, 35, 2, 33, 2, 34, 2, 35, 2, 1, 2, 33, 2, 29, 2, 32, 2, 28, 2, 29, 2, 30, 2, 32, 2, 28, 2, 254, 1, 27, 2, 28, 2, 32, 2, 254, 1, 26, 2, 36, 2, 25, 2, 26, 2, 37, 2, 36, 2, 38, 2, 25, 2, 36, 2, 38, 2, 30, 2, 25, 2, 38, 2, 32, 2, 30, 2, 38, 2, 39, 2, 32, 2, 40, 2, 32, 2, 39, 2, 40, 2, 34, 2, 32, 2, 40, 2, 41, 2, 34, 2, 40, 2, 42, 2, 41, 2, 34, 2, 41, 2, 35, 2, 43, 2, 35, 2, 41, 2, 43, 2, 44, 2, 35, 2, 2, 2, 35, 2, 44, 2, 252, 1, 44, 2, 45, 2, 252, 1, 2, 2, 44, 2, 246, 1, 45, 2, 46, 2, 246, 1, 252, 1, 45, 2, 246, 1, 47, 2, 240, 1, 246, 1, 46, 2, 47, 2, 48, 2, 240, 1, 47, 2, 48, 2, 239, 1, 240, 1, 48, 2, 47, 2, 49, 2, 47, 2, 50, 2, 49, 2, 49, 2, 50, 2, 51, 2, 51, 2, 50, 2, 52, 2, 50, 2, 46, 2, 53, 2, 50, 2, 47, 2, 46, 2, 54, 2, 44, 2, 43, 2, 54, 2, 55, 2, 44, 2, 44, 2, 53, 2, 45, 2, 44, 2, 55, 2, 53, 2, 46, 2, 45, 2, 53, 2, 56, 2, 58, 2, 57, 2, 56, 2, 59, 2, 58, 2, 60, 2, 62, 2, 61, 2, 60, 2, 63, 2, 62, 2, 59, 2, 64, 2, 58, 2, 59, 2, 65, 2, 64, 2, 63, 2, 66, 2, 62, 2, 63, 2, 67, 2, 66, 2, 57, 2, 63, 2, 60, 2, 57, 2, 58, 2, 63, 2, 61, 2, 69, 2, 68, 2, 61, 2, 62, 2, 69, 2, 70, 2, 59, 2, 56, 2, 70, 2, 71, 2, 59, 2, 58, 2, 67, 2, 63, 2, 58, 2, 64, 2, 67, 2, 62, 2, 72, 2, 69, 2, 62, 2, 66, 2, 72, 2, 71, 2, 65, 2, 59, 2, 71, 2, 73, 2, 65, 2, 55, 2, 74, 2, 53, 2, 55, 2, 68, 2, 74, 2, 55, 2, 54, 2, 68, 2, 53, 2, 74, 2, 50, 2, 50, 2, 74, 2, 52, 2, 52, 2, 68, 2, 75, 2, 52, 2, 74, 2, 68, 2, 52, 2, 75, 2, 76, 2, 68, 2, 69, 2, 75, 2, 69, 2, 76, 2, 75, 2, 69, 2, 72, 2, 76, 2, 76, 2, 72, 2, 77, 2, 67, 2, 78, 2, 66, 2, 67, 2, 79, 2, 78, 2, 65, 2, 80, 2, 64, 2, 65, 2, 81, 2, 80, 2, 64, 2, 79, 2, 67, 2, 64, 2, 80, 2, 79, 2, 79, 2, 82, 2, 78, 2, 79, 2, 83, 2, 82, 2, 81, 2, 84, 2, 80, 2, 81, 2, 85, 2, 84, 2, 80, 2, 83, 2, 79, 2, 80, 2, 84, 2, 83, 2, 83, 2, 86, 2, 82, 2, 83, 2, 87, 2, 86, 2, 85, 2, 88, 2, 84, 2, 85, 2, 89, 2, 88, 2, 84, 2, 87, 2, 83, 2, 84, 2, 88, 2, 87, 2, 87, 2, 90, 2, 86, 2, 87, 2, 91, 2, 90, 2, 89, 2, 92, 2, 88, 2, 89, 2, 93, 2, 92, 2, 88, 2, 91, 2, 87, 2, 88, 2, 92, 2, 91, 2, 91, 2, 94, 2, 90, 2, 91, 2, 95, 2, 94, 2, 93, 2, 96, 2, 92, 2, 93, 2, 97, 2, 96, 2, 92, 2, 95, 2, 91, 2, 92, 2, 96, 2, 95, 2, 90, 2, 98, 2, 86, 2, 90, 2, 99, 2, 98, 2, 86, 2, 100, 2, 82, 2, 86, 2, 98, 2, 100, 2, 99, 2, 101, 2, 98, 2, 99, 2, 102, 2, 101, 2, 98, 2, 103, 2, 100, 2, 98, 2, 101, 2, 103, 2, 66, 2, 104, 2, 72, 2, 66, 2, 78, 2, 104, 2, 72, 2, 104, 2, 77, 2, 78, 2, 100, 2, 104, 2, 78, 2, 82, 2, 100, 2, 100, 2, 77, 2, 104, 2, 100, 2, 103, 2, 77, 2, 105, 2, 103, 2, 101, 2, 105, 2, 77, 2, 103, 2, 106, 2, 101, 2, 102, 2, 106, 2, 105, 2, 101, 2, 106, 2, 108, 2, 107, 2, 106, 2, 102, 2, 108, 2, 107, 2, 108, 2, 109, 2, 109, 2, 108, 2, 110, 2, 110, 2, 108, 2, 111, 2, 111, 2, 108, 2, 112, 2, 99, 2, 108, 2, 102, 2, 99, 2, 90, 2, 108, 2, 94, 2, 108, 2, 90, 2, 112, 2, 94, 2, 113, 2, 108, 2, 94, 2, 112, 2, 114, 2, 94, 2, 95, 2, 114, 2, 113, 2, 94, 2, 115, 2, 95, 2, 96, 2, 115, 2, 114, 2, 95, 2, 97, 2, 115, 2, 96, 2, 97, 2, 116, 2, 115, 2, 93, 2, 117, 2, 97, 2, 93, 2, 118, 2, 117, 2, 89, 2, 118, 2, 93, 2, 89, 2, 119, 2, 118, 2, 85, 2, 119, 2, 89, 2, 85, 2, 120, 2, 119, 2, 81, 2, 120, 2, 85, 2, 81, 2, 121, 2, 120, 2, 118, 2, 122, 2, 117, 2, 118, 2, 123, 2, 122, 2, 119, 2, 123, 2, 118, 2, 119, 2, 124, 2, 123, 2, 120, 2, 124, 2, 119, 2, 120, 2, 125, 2, 124, 2, 121, 2, 125, 2, 120, 2, 121, 2, 126, 2, 125, 2, 123, 2, 127, 2, 122, 2, 123, 2, 128, 2, 127, 2, 124, 2, 128, 2, 123, 2, 124, 2, 129, 2, 128, 2, 125, 2, 129, 2, 124, 2, 125, 2, 130, 2, 129, 2, 126, 2, 130, 2, 125, 2, 126, 2, 131, 2, 130, 2, 128, 2, 132, 2, 127, 2, 128, 2, 133, 2, 132, 2, 129, 2, 133, 2, 128, 2, 129, 2, 134, 2, 133, 2, 130, 2, 134, 2, 129, 2, 130, 2, 135, 2, 134, 2, 131, 2, 135, 2, 130, 2, 131, 2, 136, 2, 135, 2, 116, 2, 97, 2, 117, 2, 137, 2, 117, 2, 122, 2, 137, 2, 116, 2, 117, 2, 138, 2, 122, 2, 127, 2, 138, 2, 137, 2, 122, 2, 139, 2, 127, 2, 132, 2, 139, 2, 138, 2, 127, 2, 140, 2, 142, 2, 141, 2, 140, 2, 143, 2, 142, 2, 144, 2, 143, 2, 145, 2, 144, 2, 142, 2, 143, 2, 146, 2, 145, 2, 143, 2, 141, 2, 148, 2, 147, 2, 141, 2, 142, 2, 148, 2, 149, 2, 148, 2, 150, 2, 149, 2, 147, 2, 148, 2, 150, 2, 142, 2, 144, 2, 150, 2, 148, 2, 142, 2, 149, 2, 151, 2, 147, 2, 149, 2, 152, 2, 151, 2, 151, 2, 153, 2, 147, 2, 151, 2, 154, 2, 153, 2, 153, 2, 156, 2, 155, 2, 153, 2, 157, 2, 156, 2, 153, 2, 155, 2, 147, 2, 140, 2, 147, 2, 155, 2, 140, 2, 141, 2, 147, 2, 158, 2, 160, 2, 159, 2, 158, 2, 140, 2, 160, 2, 161, 2, 163, 2, 162, 2, 161, 2, 164, 2, 163, 2, 159, 2, 166, 2, 165, 2, 159, 2, 160, 2, 166, 2, 162, 2, 168, 2, 167, 2, 162, 2, 163, 2, 168, 2, 165, 2, 170, 2, 169, 2, 165, 2, 166, 2, 170, 2, 167, 2, 172, 2, 171, 2, 167, 2, 168, 2, 172, 2, 164, 2, 173, 2, 163, 2, 164, 2, 174, 2, 173, 2, 168, 2, 175, 2, 172, 2, 168, 2, 176, 2, 175, 2, 163, 2, 176, 2, 168, 2, 163, 2, 173, 2, 176, 2, 176, 2, 169, 2, 175, 2, 176, 2, 165, 2, 169, 2, 173, 2, 165, 2, 176, 2, 173, 2, 159, 2, 165, 2, 174, 2, 159, 2, 173, 2, 174, 2, 158, 2, 159, 2, 166, 2, 160, 2, 155, 2, 155, 2, 160, 2, 140, 2, 166, 2, 155, 2, 170, 2, 155, 2, 156, 2, 170, 2, 177, 2, 156, 2, 157, 2, 170, 2, 177, 2, 169, 2, 170, 2, 156, 2, 177, 2, 178, 2, 169, 2, 177, 2, 178, 2, 175, 2, 169, 2, 179, 2, 175, 2, 178, 2, 175, 2, 179, 2, 172, 2, 179, 2, 180, 2, 172, 2, 180, 2, 139, 2, 172, 2, 172, 2, 132, 2, 171, 2, 172, 2, 139, 2, 132, 2, 133, 2, 171, 2, 132, 2, 133, 2, 167, 2, 171, 2, 134, 2, 167, 2, 133, 2, 134, 2, 162, 2, 167, 2, 135, 2, 162, 2, 134, 2, 135, 2, 161, 2, 162, 2, 136, 2, 161, 2, 135, 2, 50, 1, 182, 2, 181, 2, 50, 1, 51, 1, 182, 2, 52, 1, 181, 2, 183, 2, 52, 1, 50, 1, 181, 2, 53, 1, 183, 2, 184, 2, 53, 1, 52, 1, 183, 2, 54, 1, 184, 2, 185, 2, 54, 1, 53, 1, 184, 2, 55, 1, 185, 2, 186, 2, 55, 1, 54, 1, 185, 2, 56, 1, 186, 2, 187, 2, 56, 1, 55, 1, 186, 2, 181, 2, 189, 2, 188, 2, 181, 2, 182, 2, 189, 2, 183, 2, 188, 2, 190, 2, 183, 2, 181, 2, 188, 2, 184, 2, 190, 2, 191, 2, 184, 2, 183, 2, 190, 2, 185, 2, 191, 2, 192, 2, 185, 2, 184, 2, 191, 2, 186, 2, 192, 2, 193, 2, 186, 2, 185, 2, 192, 2, 187, 2, 193, 2, 194, 2, 187, 2, 186, 2, 193, 2, 188, 2, 196, 2, 195, 2, 188, 2, 189, 2, 196, 2, 190, 2, 195, 2, 197, 2, 190, 2, 188, 2, 195, 2, 191, 2, 197, 2, 198, 2, 191, 2, 190, 2, 197, 2, 192, 2, 198, 2, 199, 2, 192, 2, 191, 2, 198, 2, 193, 2, 199, 2, 200, 2, 193, 2, 192, 2, 199, 2, 194, 2, 200, 2, 201, 2, 194, 2, 193, 2, 200, 2, 195, 2, 203, 2, 202, 2, 195, 2, 196, 2, 203, 2, 197, 2, 202, 2, 204, 2, 197, 2, 195, 2, 202, 2, 198, 2, 204, 2, 205, 2, 198, 2, 197, 2, 204, 2, 199, 2, 205, 2, 206, 2, 199, 2, 198, 2, 205, 2, 200, 2, 206, 2, 207, 2, 200, 2, 199, 2, 206, 2, 201, 2, 207, 2, 208, 2, 201, 2, 200, 2, 207, 2, 202, 2, 210, 2, 209, 2, 202, 2, 203, 2, 210, 2, 204, 2, 209, 2, 211, 2, 204, 2, 202, 2, 209, 2, 205, 2, 211, 2, 212, 2, 205, 2, 204, 2, 211, 2, 206, 2, 212, 2, 213, 2, 206, 2, 205, 2, 212, 2, 207, 2, 213, 2, 214, 2, 207, 2, 206, 2, 213, 2, 208, 2, 214, 2, 215, 2, 208, 2, 207, 2, 214, 2, 216, 2, 218, 2, 217, 2, 216, 2, 219, 2, 218, 2, 219, 2, 220, 2, 218, 2, 219, 2, 221, 2, 220, 2, 222, 2, 218, 2, 223, 2, 222, 2, 217, 2, 218, 2, 224, 2, 218, 2, 220, 2, 224, 2, 223, 2, 218, 2, 225, 2, 224, 2, 226, 2, 227, 2, 226, 2, 220, 2, 220, 2, 226, 2, 224, 2, 210, 2, 217, 2, 209, 2, 210, 2, 216, 2, 217, 2, 212, 2, 217, 2, 222, 2, 212, 2, 209, 2, 217, 2, 212, 2, 211, 2, 209, 2, 214, 2, 229, 2, 228, 2, 214, 2, 213, 2, 229, 2, 215, 2, 228, 2, 230, 2, 215, 2, 214, 2, 228, 2, 228, 2, 232, 2, 231, 2, 228, 2, 229, 2, 232, 2, 230, 2, 231, 2, 233, 2, 230, 2, 228, 2, 231, 2, 232, 2, 229, 2, 222, 2, 213, 2, 222, 2, 229, 2, 213, 2, 212, 2, 222, 2, 208, 2, 234, 2, 201, 2, 208, 2, 235, 2, 234, 2, 230, 2, 233, 2, 236, 2, 230, 2, 236, 2, 215, 2, 235, 2, 215, 2, 236, 2, 235, 2, 208, 2, 215, 2, 237, 2, 201, 2, 234, 2, 237, 2, 194, 2, 201, 2, 238, 2, 194, 2, 237, 2, 239, 2, 194, 2, 238, 2, 239, 2, 187, 2, 194, 2, 240, 2, 187, 2, 239, 2, 241, 2, 187, 2, 240, 2, 242, 2, 244, 2, 243, 2, 242, 2, 245, 2, 244, 2, 245, 2, 246, 2, 244, 2, 245, 2, 247, 2, 246, 2, 242, 2, 243, 2, 241, 2, 244, 2, 187, 2, 243, 2, 244, 2, 246, 2, 187, 2, 187, 2, 241, 2, 243, 2, 56, 1, 2, 0, 49, 1, 56, 1, 246, 2, 2, 0, 56, 1, 187, 2, 246, 2, 2, 0, 247, 2, 3, 0, 2, 0, 246, 2, 247, 2, 71, 2, 248, 2, 73, 2, 71, 2, 249, 2, 248, 2, 131, 2, 250, 2, 136, 2, 131, 2, 251, 2, 250, 2, 126, 2, 251, 2, 131, 2, 126, 2, 252, 2, 251, 2, 251, 2, 253, 2, 250, 2, 251, 2, 254, 2, 253, 2, 252, 2, 254, 2, 251, 2, 252, 2, 255, 2, 254, 2, 254, 2, 0, 3, 253, 2, 254, 2, 1, 3, 0, 3, 255, 2, 1, 3, 254, 2, 255, 2, 2, 3, 1, 3, 252, 2, 3, 3, 255, 2, 252, 2, 4, 3, 3, 3, 73, 2, 3, 3, 4, 3, 73, 2, 248, 2, 3, 3, 126, 2, 4, 3, 252, 2, 126, 2, 121, 2, 4, 3, 65, 2, 121, 2, 81, 2, 65, 2, 4, 3, 121, 2, 73, 2, 4, 3, 65, 2, 71, 2, 227, 2, 249, 2, 71, 2, 70, 2, 227, 2, 5, 3, 3, 3, 248, 2, 249, 2, 5, 3, 248, 2, 249, 2, 227, 2, 5, 3, 255, 2, 5, 3, 2, 3, 3, 3, 5, 3, 255, 2, 6, 3, 2, 3, 5, 3, 220, 2, 7, 3, 227, 2, 227, 2, 6, 3, 5, 3, 227, 2, 7, 3, 6, 3, 1, 3, 6, 3, 0, 3, 2, 3, 6, 3, 1, 3, 253, 2, 6, 3, 7, 3, 253, 2, 0, 3, 6, 3, 221, 2, 8, 3, 220, 2, 221, 2, 9, 3, 8, 3, 161, 2, 136, 2, 250, 2, 216, 2, 210, 2, 10, 3, 10, 3, 203, 2, 11, 3, 10, 3, 210, 2, 203, 2, 203, 2, 12, 3, 11, 3, 196, 2, 12, 3, 203, 2, 196, 2, 13, 3, 12, 3, 189, 2, 13, 3, 196, 2, 189, 2, 14, 3, 13, 3, 15, 3, 11, 3, 12, 3, 15, 3, 16, 3, 11, 3, 17, 3, 11, 3, 16, 3, 18, 3, 12, 3, 13, 3, 18, 3, 15, 3, 12, 3, 19, 3, 13, 3, 14, 3, 19, 3, 18, 3, 13, 3, 19, 3, 189, 2, 20, 3, 19, 3, 14, 3, 189, 2, 20, 3, 182, 2, 21, 3, 20, 3, 189, 2, 182, 2, 21, 3, 182, 2, 22, 3, 22, 3, 51, 1, 23, 3, 22, 3, 182, 2, 51, 1, 121, 0, 59, 1, 44, 1, 44, 1, 58, 1, 24, 3, 44, 1, 59, 1, 58, 1, 25, 3, 27, 3, 26, 3, 26, 3, 60, 1, 59, 1, 26, 3, 27, 3, 60, 1, 28, 3, 27, 3, 25, 3, 28, 3, 29, 3, 27, 3, 28, 3, 25, 3, 30, 3, 121, 0, 26, 3, 59, 1, 121, 0, 31, 3, 26, 3, 25, 3, 31, 3, 32, 3, 25, 3, 26, 3, 31, 3, 114, 0, 31, 3, 121, 0, 114, 0, 32, 3, 31, 3, 114, 0, 137, 0, 32, 3, 137, 0, 25, 3, 32, 3, 137, 0, 30, 3, 25, 3, 33, 3, 35, 3, 34, 3, 33, 3, 36, 3, 35, 3, 37, 3, 34, 3, 38, 3, 37, 3, 33, 3, 34, 3, 22, 3, 35, 3, 36, 3, 51, 1, 22, 3, 23, 3, 51, 1, 35, 3, 22, 3, 51, 1, 34, 3, 35, 3, 51, 1, 44, 1, 34, 3, 34, 3, 24, 3, 38, 3, 34, 3, 44, 1, 24, 3, 58, 1, 38, 3, 24, 3, 58, 1, 39, 3, 38, 3, 40, 3, 38, 3, 39, 3, 40, 3, 37, 3, 38, 3, 40, 3, 39, 3, 41, 3, 58, 1, 41, 3, 39, 3, 58, 1, 57, 1, 41, 3, 42, 3, 44, 3, 43, 3, 42, 3, 45, 3, 44, 3, 46, 3, 45, 3, 42, 3, 46, 3, 47, 3, 45, 3, 45, 3, 48, 3, 44, 3, 45, 3, 49, 3, 48, 3, 47, 3, 49, 3, 45, 3, 47, 3, 50, 3, 49, 3, 49, 3, 51, 3, 48, 3, 49, 3, 52, 3, 51, 3, 50, 3, 52, 3, 49, 3, 50, 3, 53, 3, 52, 3, 54, 3, 56, 3, 55, 3, 54, 3, 57, 3, 56, 3, 58, 3, 60, 3, 59, 3, 58, 3, 61, 3, 60, 3, 52, 3, 62, 3, 51, 3, 52, 3, 63, 3, 62, 3, 53, 3, 63, 3, 52, 3, 53, 3, 64, 3, 63, 3, 65, 3, 67, 3, 66, 3, 65, 3, 68, 3, 67, 3, 69, 3, 68, 3, 65, 3, 69, 3, 70, 3, 68, 3, 69, 3, 60, 3, 70, 3, 69, 3, 59, 3, 60, 3, 53, 3, 56, 3, 64, 3, 53, 3, 55, 3, 56, 3, 71, 3, 56, 3, 57, 3, 72, 3, 74, 3, 73, 3, 73, 3, 74, 3, 75, 3, 75, 3, 74, 3, 46, 3, 72, 3, 76, 3, 74, 3, 76, 3, 77, 3, 74, 3, 76, 3, 54, 3, 77, 3, 46, 3, 77, 3, 47, 3, 46, 3, 74, 3, 77, 3, 47, 3, 77, 3, 50, 3, 55, 3, 77, 3, 54, 3, 50, 3, 55, 3, 53, 3, 50, 3, 77, 3, 55, 3, 61, 3, 70, 3, 60, 3, 61, 3, 78, 3, 70, 3, 78, 3, 68, 3, 70, 3, 78, 3, 79, 3, 68, 3, 80, 3, 68, 3, 79, 3, 81, 3, 68, 3, 80, 3, 81, 3, 67, 3, 68, 3, 82, 3, 84, 3, 83, 3, 82, 3, 85, 3, 84, 3, 86, 3, 85, 3, 82, 3, 86, 3, 87, 3, 85, 3, 85, 3, 88, 3, 84, 3, 85, 3, 89, 3, 88, 3, 87, 3, 89, 3, 85, 3, 87, 3, 90, 3, 89, 3, 89, 3, 91, 3, 88, 3, 89, 3, 92, 3, 91, 3, 90, 3, 92, 3, 89, 3, 90, 3, 93, 3, 92, 3, 92, 3, 94, 3, 91, 3, 92, 3, 95, 3, 94, 3, 93, 3, 95, 3, 92, 3, 93, 3, 96, 3, 95, 3, 95, 3, 97, 3, 94, 3, 95, 3, 98, 3, 97, 3, 96, 3, 98, 3, 95, 3, 96, 3, 99, 3, 98, 3, 100, 3, 102, 3, 101, 3, 100, 3, 103, 3, 102, 3, 104, 3, 98, 3, 99, 3, 105, 3, 98, 3, 104, 3, 97, 3, 105, 3, 106, 3, 97, 3, 98, 3, 105, 3, 107, 3, 109, 3, 108, 3, 107, 3, 110, 3, 109, 3, 111, 3, 110, 3, 107, 3, 111, 3, 112, 3, 110, 3, 113, 3, 112, 3, 111, 3, 113, 3, 114, 3, 112, 3, 115, 3, 114, 3, 113, 3, 114, 3, 115, 3, 116, 3, 115, 3, 117, 3, 116, 3, 118, 3, 117, 3, 119, 3, 118, 3, 116, 3, 117, 3, 118, 3, 120, 3, 116, 3, 118, 3, 121, 3, 120, 3, 120, 3, 114, 3, 116, 3, 120, 3, 83, 3, 114, 3, 83, 3, 112, 3, 114, 3, 83, 3, 84, 3, 112, 3, 84, 3, 110, 3, 112, 3, 84, 3, 88, 3, 110, 3, 88, 3, 109, 3, 110, 3, 88, 3, 91, 3, 109, 3, 122, 3, 124, 3, 123, 3, 122, 3, 108, 3, 124, 3, 124, 3, 108, 3, 125, 3, 108, 3, 109, 3, 125, 3, 94, 3, 109, 3, 91, 3, 94, 3, 125, 3, 109, 3, 97, 3, 125, 3, 94, 3, 97, 3, 124, 3, 125, 3, 106, 3, 124, 3, 97, 3, 106, 3, 123, 3, 124, 3, 122, 3, 123, 3, 126, 3, 126, 3, 106, 3, 127, 3, 126, 3, 123, 3, 106, 3, 99, 3, 128, 3, 104, 3, 99, 3, 129, 3, 128, 3, 104, 3, 131, 3, 130, 3, 104, 3, 128, 3, 131, 3, 100, 3, 132, 3, 103, 3, 100, 3, 133, 3, 132, 3, 130, 3, 133, 3, 100, 3, 130, 3, 131, 3, 133, 3, 96, 3, 129, 3, 99, 3, 96, 3, 134, 3, 129, 3, 93, 3, 134, 3, 96, 3, 93, 3, 135, 3, 134, 3, 90, 3, 135, 3, 93, 3, 90, 3, 136, 3, 135, 3, 87, 3, 136, 3, 90, 3, 87, 3, 137, 3, 136, 3, 86, 3, 137, 3, 87, 3, 86, 3, 138, 3, 137, 3, 67, 3, 139, 3, 66, 3, 67, 3, 140, 3, 139, 3, 62, 3, 141, 3, 51, 3, 62, 3, 142, 3, 141, 3, 51, 3, 143, 3, 48, 3, 51, 3, 141, 3, 143, 3, 48, 3, 144, 3, 44, 3, 48, 3, 143, 3, 144, 3, 44, 3, 145, 3, 43, 3, 44, 3, 144, 3, 145, 3, 43, 3, 138, 3, 86, 3, 43, 3, 145, 3, 138, 3, 129, 3, 146, 3, 128, 3, 129, 3, 147, 3, 146, 3, 128, 3, 148, 3, 131, 3, 128, 3, 146, 3, 148, 3, 133, 3, 149, 3, 132, 3, 133, 3, 150, 3, 149, 3, 131, 3, 150, 3, 133, 3, 131, 3, 148, 3, 150, 3, 134, 3, 147, 3, 129, 3, 134, 3, 151, 3, 147, 3, 135, 3, 151, 3, 134, 3, 135, 3, 152, 3, 151, 3, 136, 3, 152, 3, 135, 3, 136, 3, 153, 3, 152, 3, 137, 3, 153, 3, 136, 3, 137, 3, 154, 3, 153, 3, 138, 3, 154, 3, 137, 3, 138, 3, 155, 3, 154, 3, 140, 3, 156, 3, 139, 3, 140, 3, 157, 3, 156, 3, 142, 3, 158, 3, 141, 3, 142, 3, 159, 3, 158, 3, 141, 3, 160, 3, 143, 3, 141, 3, 158, 3, 160, 3, 143, 3, 161, 3, 144, 3, 143, 3, 160, 3, 161, 3, 144, 3, 162, 3, 145, 3, 144, 3, 161, 3, 162, 3, 145, 3, 155, 3, 138, 3, 145, 3, 162, 3, 155, 3, 147, 3, 163, 3, 146, 3, 147, 3, 164, 3, 163, 3, 146, 3, 165, 3, 148, 3, 146, 3, 163, 3, 165, 3, 150, 3, 166, 3, 149, 3, 150, 3, 167, 3, 166, 3, 148, 3, 167, 3, 150, 3, 148, 3, 165, 3, 167, 3, 151, 3, 164, 3, 147, 3, 151, 3, 168, 3, 164, 3, 152, 3, 168, 3, 151, 3, 152, 3, 169, 3, 168, 3, 153, 3, 169, 3, 152, 3, 153, 3, 170, 3, 169, 3, 154, 3, 170, 3, 153, 3, 154, 3, 171, 3, 170, 3, 155, 3, 171, 3, 154, 3, 155, 3, 172, 3, 171, 3, 157, 3, 173, 3, 156, 3, 157, 3, 174, 3, 173, 3, 159, 3, 175, 3, 158, 3, 159, 3, 176, 3, 175, 3, 158, 3, 177, 3, 160, 3, 158, 3, 175, 3, 177, 3, 160, 3, 178, 3, 161, 3, 160, 3, 177, 3, 178, 3, 161, 3, 179, 3, 162, 3, 161, 3, 178, 3, 179, 3, 162, 3, 172, 3, 155, 3, 162, 3, 179, 3, 172, 3, 164, 3, 180, 3, 163, 3, 164, 3, 181, 3, 180, 3, 163, 3, 182, 3, 165, 3, 163, 3, 180, 3, 182, 3, 167, 3, 183, 3, 166, 3, 167, 3, 184, 3, 183, 3, 165, 3, 184, 3, 167, 3, 165, 3, 182, 3, 184, 3, 168, 3, 181, 3, 164, 3, 168, 3, 185, 3, 181, 3, 169, 3, 185, 3, 168, 3, 169, 3, 186, 3, 185, 3, 170, 3, 186, 3, 169, 3, 170, 3, 187, 3, 186, 3, 171, 3, 187, 3, 170, 3, 171, 3, 188, 3, 187, 3, 172, 3, 188, 3, 171, 3, 172, 3, 189, 3, 188, 3, 174, 3, 190, 3, 173, 3, 174, 3, 191, 3, 190, 3, 176, 3, 192, 3, 175, 3, 176, 3, 193, 3, 192, 3, 175, 3, 194, 3, 177, 3, 175, 3, 192, 3, 194, 3, 177, 3, 195, 3, 178, 3, 177, 3, 194, 3, 195, 3, 178, 3, 196, 3, 179, 3, 178, 3, 195, 3, 196, 3, 179, 3, 189, 3, 172, 3, 179, 3, 196, 3, 189, 3, 181, 3, 197, 3, 180, 3, 181, 3, 198, 3, 197, 3, 180, 3, 199, 3, 182, 3, 180, 3, 197, 3, 199, 3, 184, 3, 200, 3, 183, 3, 184, 3, 201, 3, 200, 3, 182, 3, 201, 3, 184, 3, 182, 3, 199, 3, 201, 3, 185, 3, 198, 3, 181, 3, 185, 3, 202, 3, 198, 3, 186, 3, 202, 3, 185, 3, 186, 3, 203, 3, 202, 3, 187, 3, 203, 3, 186, 3, 187, 3, 204, 3, 203, 3, 188, 3, 204, 3, 187, 3, 188, 3, 205, 3, 204, 3, 189, 3, 205, 3, 188, 3, 189, 3, 206, 3, 205, 3, 191, 3, 207, 3, 190, 3, 191, 3, 208, 3, 207, 3, 193, 3, 209, 3, 192, 3, 193, 3, 210, 3, 209, 3, 192, 3, 211, 3, 194, 3, 192, 3, 209, 3, 211, 3, 194, 3, 212, 3, 195, 3, 194, 3, 211, 3, 212, 3, 195, 3, 213, 3, 196, 3, 195, 3, 212, 3, 213, 3, 196, 3, 206, 3, 189, 3, 196, 3, 213, 3, 206, 3, 198, 3, 214, 3, 197, 3, 198, 3, 215, 3, 214, 3, 197, 3, 216, 3, 199, 3, 197, 3, 214, 3, 216, 3, 201, 3, 217, 3, 200, 3, 201, 3, 218, 3, 217, 3, 199, 3, 218, 3, 201, 3, 199, 3, 216, 3, 218, 3, 202, 3, 215, 3, 198, 3, 202, 3, 219, 3, 215, 3, 203, 3, 219, 3, 202, 3, 203, 3, 220, 3, 219, 3, 204, 3, 220, 3, 203, 3, 204, 3, 221, 3, 220, 3, 205, 3, 221, 3, 204, 3, 205, 3, 222, 3, 221, 3, 206, 3, 222, 3, 205, 3, 206, 3, 223, 3, 222, 3, 208, 3, 224, 3, 207, 3, 208, 3, 225, 3, 224, 3, 210, 3, 226, 3, 209, 3, 210, 3, 227, 3, 226, 3, 209, 3, 228, 3, 211, 3, 209, 3, 226, 3, 228, 3, 211, 3, 229, 3, 212, 3, 211, 3, 228, 3, 229, 3, 212, 3, 230, 3, 213, 3, 212, 3, 229, 3, 230, 3, 213, 3, 223, 3, 206, 3, 213, 3, 230, 3, 223, 3, 231, 3, 233, 3, 232, 3, 232, 3, 235, 3, 234, 3, 232, 3, 233, 3, 235, 3, 236, 3, 238, 3, 237, 3, 236, 3, 239, 3, 238, 3, 240, 3, 239, 3, 236, 3, 240, 3, 241, 3, 239, 3, 242, 3, 241, 3, 240, 3, 242, 3, 243, 3, 241, 3, 244, 3, 243, 3, 242, 3, 244, 3, 245, 3, 243, 3, 246, 3, 245, 3, 244, 3, 246, 3, 247, 3, 245, 3, 239, 3, 248, 3, 238, 3, 239, 3, 249, 3, 248, 3, 241, 3, 249, 3, 239, 3, 241, 3, 250, 3, 249, 3, 243, 3, 250, 3, 241, 3, 243, 3, 251, 3, 250, 3, 245, 3, 251, 3, 243, 3, 245, 3, 252, 3, 251, 3, 247, 3, 252, 3, 245, 3, 247, 3, 253, 3, 252, 3, 249, 3, 254, 3, 248, 3, 249, 3, 255, 3, 254, 3, 250, 3, 255, 3, 249, 3, 250, 3, 0, 4, 255, 3, 251, 3, 0, 4, 250, 3, 251, 3, 1, 4, 0, 4, 252, 3, 1, 4, 251, 3, 252, 3, 2, 4, 1, 4, 253, 3, 2, 4, 252, 3, 253, 3, 3, 4, 2, 4, 255, 3, 4, 4, 254, 3, 255, 3, 5, 4, 4, 4, 0, 4, 5, 4, 255, 3, 0, 4, 6, 4, 5, 4, 1, 4, 6, 4, 0, 4, 1, 4, 7, 4, 6, 4, 2, 4, 7, 4, 1, 4, 2, 4, 8, 4, 7, 4, 3, 4, 8, 4, 2, 4, 3, 4, 9, 4, 8, 4, 5, 4, 10, 4, 4, 4, 5, 4, 11, 4, 10, 4, 6, 4, 11, 4, 5, 4, 6, 4, 12, 4, 11, 4, 7, 4, 12, 4, 6, 4, 7, 4, 13, 4, 12, 4, 8, 4, 13, 4, 7, 4, 8, 4, 14, 4, 13, 4, 9, 4, 14, 4, 8, 4, 9, 4, 15, 4, 14, 4, 217, 3, 16, 4, 200, 3, 217, 3, 17, 4, 16, 4, 200, 3, 18, 4, 183, 3, 200, 3, 16, 4, 18, 4, 183, 3, 19, 4, 166, 3, 183, 3, 18, 4, 19, 4, 166, 3, 20, 4, 149, 3, 166, 3, 19, 4, 20, 4, 149, 3, 21, 4, 132, 3, 149, 3, 20, 4, 21, 4, 132, 3, 22, 4, 103, 3, 132, 3, 21, 4, 22, 4, 103, 3, 23, 4, 102, 3, 103, 3, 22, 4, 23, 4, 17, 4, 24, 4, 16, 4, 17, 4, 25, 4, 24, 4, 16, 4, 26, 4, 18, 4, 16, 4, 24, 4, 26, 4, 18, 4, 27, 4, 19, 4, 18, 4, 26, 4, 27, 4, 19, 4, 28, 4, 20, 4, 19, 4, 27, 4, 28, 4, 20, 4, 29, 4, 21, 4, 20, 4, 28, 4, 29, 4, 21, 4, 30, 4, 22, 4, 21, 4, 29, 4, 30, 4, 22, 4, 31, 4, 23, 4, 22, 4, 30, 4, 31, 4, 25, 4, 32, 4, 24, 4, 25, 4, 33, 4, 32, 4, 24, 4, 34, 4, 26, 4, 24, 4, 32, 4, 34, 4, 26, 4, 35, 4, 27, 4, 26, 4, 34, 4, 35, 4, 27, 4, 36, 4, 28, 4, 27, 4, 35, 4, 36, 4, 28, 4, 37, 4, 29, 4, 28, 4, 36, 4, 37, 4, 29, 4, 38, 4, 30, 4, 29, 4, 37, 4, 38, 4, 30, 4, 39, 4, 31, 4, 30, 4, 38, 4, 39, 4, 40, 4, 42, 4, 41, 4, 40, 4, 43, 4, 42, 4, 44, 4, 42, 4, 43, 4, 101, 3, 42, 4, 44, 4, 41, 4, 45, 4, 40, 4, 40, 4, 247, 3, 246, 3, 40, 4, 45, 4, 247, 3, 247, 3, 45, 4, 253, 3, 102, 3, 42, 4, 101, 3, 102, 3, 31, 4, 42, 4, 102, 3, 23, 4, 31, 4, 39, 4, 42, 4, 31, 4, 39, 4, 41, 4, 42, 4, 45, 4, 39, 4, 46, 4, 45, 4, 41, 4, 39, 4, 38, 4, 46, 4, 39, 4, 38, 4, 47, 4, 46, 4, 15, 4, 46, 4, 47, 4, 15, 4, 9, 4, 46, 4, 9, 4, 45, 4, 46, 4, 9, 4, 3, 4, 45, 4, 253, 3, 45, 4, 3, 4, 47, 4, 48, 4, 15, 4, 47, 4, 49, 4, 48, 4, 12, 4, 50, 4, 11, 4, 12, 4, 51, 4, 50, 4, 13, 4, 51, 4, 12, 4, 13, 4, 52, 4, 51, 4, 14, 4, 52, 4, 13, 4, 14, 4, 53, 4, 52, 4, 15, 4, 53, 4, 14, 4, 15, 4, 48, 4, 53, 4, 38, 4, 49, 4, 47, 4, 38, 4, 37, 4, 49, 4, 36, 4, 49, 4, 37, 4, 35, 4, 49, 4, 36, 4, 34, 4, 49, 4, 35, 4, 33, 4, 54, 4, 32, 4, 33, 4, 55, 4, 54, 4, 32, 4, 56, 4, 34, 4, 32, 4, 54, 4, 56, 4, 55, 4, 57, 4, 54, 4, 55, 4, 58, 4, 57, 4, 54, 4, 59, 4, 56, 4, 54, 4, 57, 4, 59, 4, 58, 4, 60, 4, 57, 4, 58, 4, 61, 4, 60, 4, 57, 4, 62, 4, 59, 4, 57, 4, 60, 4, 62, 4, 61, 4, 63, 4, 60, 4, 61, 4, 64, 4, 63, 4, 60, 4, 65, 4, 62, 4, 60, 4, 63, 4, 65, 4, 49, 4, 34, 4, 56, 4, 48, 4, 56, 4, 59, 4, 48, 4, 49, 4, 56, 4, 48, 4, 59, 4, 53, 4, 52, 4, 59, 4, 62, 4, 52, 4, 53, 4, 59, 4, 51, 4, 62, 4, 65, 4, 51, 4, 52, 4, 62, 4, 64, 4, 66, 4, 63, 4, 64, 4, 67, 4, 66, 4, 63, 4, 68, 4, 65, 4, 63, 4, 66, 4, 68, 4, 67, 4, 69, 4, 66, 4, 67, 4, 70, 4, 69, 4, 66, 4, 71, 4, 68, 4, 66, 4, 69, 4, 71, 4, 51, 4, 72, 4, 50, 4, 51, 4, 73, 4, 72, 4, 51, 4, 68, 4, 73, 4, 51, 4, 65, 4, 68, 4, 68, 4, 72, 4, 73, 4, 68, 4, 71, 4, 72, 4, 10, 4, 50, 4, 74, 4, 10, 4, 11, 4, 50, 4, 72, 4, 74, 4, 50, 4, 72, 4, 75, 4, 74, 4, 72, 4, 71, 4, 75, 4, 76, 4, 78, 4, 77, 4, 79, 4, 76, 4, 80, 4, 81, 4, 76, 4, 79, 4, 82, 4, 80, 4, 83, 4, 76, 4, 83, 4, 80, 4, 77, 4, 83, 4, 76, 4, 77, 4, 84, 4, 83, 4, 84, 4, 85, 4, 83, 4, 84, 4, 86, 4, 85, 4, 86, 4, 87, 4, 85, 4, 86, 4, 88, 4, 87, 4, 88, 4, 89, 4, 87, 4, 88, 4, 90, 4, 89, 4, 91, 4, 89, 4, 90, 4, 83, 4, 92, 4, 82, 4, 83, 4, 85, 4, 92, 4, 85, 4, 87, 4, 92, 4, 89, 4, 92, 4, 87, 4, 89, 4, 93, 4, 92, 4, 89, 4, 91, 4, 93, 4, 90, 4, 238, 3, 91, 4, 90, 4, 237, 3, 238, 3, 91, 4, 238, 3, 93, 4, 93, 4, 238, 3, 94, 4, 94, 4, 96, 4, 95, 4, 94, 4, 238, 3, 96, 4, 10, 4, 95, 4, 4, 4, 95, 4, 96, 4, 4, 4, 4, 4, 96, 4, 254, 3, 254, 3, 96, 4, 248, 3, 238, 3, 248, 3, 96, 4, 95, 4, 97, 4, 94, 4, 95, 4, 98, 4, 97, 4, 99, 4, 101, 4, 100, 4, 99, 4, 102, 4, 101, 4, 103, 4, 102, 4, 99, 4, 103, 4, 104, 4, 102, 4, 105, 4, 104, 4, 103, 4, 105, 4, 106, 4, 104, 4, 94, 4, 108, 4, 107, 4, 94, 4, 97, 4, 108, 4, 109, 4, 106, 4, 105, 4, 109, 4, 110, 4, 106, 4, 98, 4, 111, 4, 97, 4, 98, 4, 112, 4, 111, 4, 102, 4, 113, 4, 101, 4, 102, 4, 114, 4, 113, 4, 104, 4, 114, 4, 102, 4, 104, 4, 115, 4, 114, 4, 97, 4, 116, 4, 108, 4, 97, 4, 111, 4, 116, 4, 110, 4, 117, 4, 106, 4, 110, 4, 118, 4, 117, 4, 106, 4, 115, 4, 104, 4, 106, 4, 117, 4, 115, 4, 112, 4, 119, 4, 111, 4, 112, 4, 120, 4, 119, 4, 114, 4, 121, 4, 113, 4, 114, 4, 122, 4, 121, 4, 115, 4, 122, 4, 114, 4, 115, 4, 123, 4, 122, 4, 111, 4, 124, 4, 116, 4, 111, 4, 119, 4, 124, 4, 118, 4, 125, 4, 117, 4, 118, 4, 126, 4, 125, 4, 117, 4, 123, 4, 115, 4, 117, 4, 125, 4, 123, 4, 120, 4, 127, 4, 119, 4, 120, 4, 128, 4, 127, 4, 122, 4, 129, 4, 121, 4, 122, 4, 130, 4, 129, 4, 123, 4, 130, 4, 122, 4, 123, 4, 131, 4, 130, 4, 119, 4, 132, 4, 124, 4, 119, 4, 127, 4, 132, 4, 126, 4, 133, 4, 125, 4, 126, 4, 134, 4, 133, 4, 125, 4, 131, 4, 123, 4, 125, 4, 133, 4, 131, 4, 112, 4, 10, 4, 120, 4, 95, 4, 112, 4, 98, 4, 95, 4, 10, 4, 112, 4, 10, 4, 128, 4, 120, 4, 10, 4, 74, 4, 128, 4, 202, 1, 135, 4, 214, 1, 202, 1, 136, 4, 135, 4, 190, 1, 136, 4, 202, 1, 190, 1, 137, 4, 136, 4, 178, 1, 137, 4, 190, 1, 178, 1, 138, 4, 137, 4, 166, 1, 138, 4, 178, 1, 166, 1, 139, 4, 138, 4, 136, 4, 140, 4, 135, 4, 136, 4, 141, 4, 140, 4, 137, 4, 141, 4, 136, 4, 137, 4, 142, 4, 141, 4, 138, 4, 142, 4, 137, 4, 138, 4, 143, 4, 142, 4, 139, 4, 143, 4, 138, 4, 139, 4, 144, 4, 143, 4, 141, 4, 145, 4, 140, 4, 141, 4, 146, 4, 145, 4, 142, 4, 146, 4, 141, 4, 142, 4, 147, 4, 146, 4, 143, 4, 147, 4, 142, 4, 143, 4, 148, 4, 147, 4, 144, 4, 148, 4, 143, 4, 144, 4, 149, 4, 148, 4, 154, 1, 138, 1, 150, 4, 154, 1, 139, 4, 166, 1, 154, 1, 150, 4, 139, 4, 151, 4, 138, 1, 139, 1, 151, 4, 150, 4, 138, 1, 152, 4, 150, 4, 151, 4, 152, 4, 153, 4, 150, 4, 144, 4, 150, 4, 153, 4, 144, 4, 139, 4, 150, 4, 154, 4, 153, 4, 152, 4, 144, 4, 154, 4, 149, 4, 144, 4, 153, 4, 154, 4, 154, 4, 155, 4, 149, 4, 147, 4, 156, 4, 146, 4, 147, 4, 157, 4, 156, 4, 148, 4, 157, 4, 147, 4, 148, 4, 158, 4, 157, 4, 157, 4, 159, 4, 156, 4, 157, 4, 160, 4, 159, 4, 158, 4, 160, 4, 157, 4, 158, 4, 161, 4, 160, 4, 149, 4, 155, 4, 148, 4, 155, 4, 158, 4, 148, 4, 155, 4, 162, 4, 158, 4, 158, 4, 162, 4, 161, 4, 234, 3, 162, 4, 163, 4, 234, 3, 161, 4, 162, 4, 234, 3, 235, 3, 161, 4, 233, 3, 161, 4, 235, 3, 233, 3, 160, 4, 161, 4, 163, 4, 232, 3, 234, 3, 163, 4, 164, 4, 232, 3, 165, 4, 167, 4, 166, 4, 167, 4, 232, 3, 164, 4, 232, 3, 167, 4, 165, 4, 168, 4, 165, 4, 166, 4, 168, 4, 169, 4, 165, 4, 168, 4, 170, 4, 169, 4, 113, 4, 171, 4, 101, 4, 113, 4, 172, 4, 171, 4, 101, 4, 173, 4, 100, 4, 101, 4, 171, 4, 173, 4, 231, 3, 174, 4, 233, 3, 231, 3, 175, 4, 174, 4, 176, 4, 175, 4, 231, 3, 176, 4, 177, 4, 175, 4, 100, 4, 177, 4, 176, 4, 100, 4, 173, 4, 177, 4, 172, 4, 178, 4, 171, 4, 172, 4, 179, 4, 178, 4, 171, 4, 180, 4, 173, 4, 171, 4, 178, 4, 180, 4, 175, 4, 181, 4, 174, 4, 175, 4, 182, 4, 181, 4, 177, 4, 182, 4, 175, 4, 177, 4, 183, 4, 182, 4, 173, 4, 183, 4, 177, 4, 173, 4, 180, 4, 183, 4, 179, 4, 184, 4, 178, 4, 179, 4, 185, 4, 184, 4, 178, 4, 186, 4, 180, 4, 178, 4, 184, 4, 186, 4, 182, 4, 187, 4, 181, 4, 182, 4, 188, 4, 187, 4, 183, 4, 188, 4, 182, 4, 183, 4, 189, 4, 188, 4, 180, 4, 189, 4, 183, 4, 180, 4, 186, 4, 189, 4, 185, 4, 190, 4, 184, 4, 185, 4, 191, 4, 190, 4, 184, 4, 192, 4, 186, 4, 184, 4, 190, 4, 192, 4, 188, 4, 193, 4, 187, 4, 188, 4, 194, 4, 193, 4, 189, 4, 194, 4, 188, 4, 189, 4, 195, 4, 194, 4, 186, 4, 195, 4, 189, 4, 186, 4, 192, 4, 195, 4, 145, 4, 196, 4, 140, 4, 145, 4, 197, 4, 196, 4, 140, 4, 198, 4, 135, 4, 140, 4, 196, 4, 198, 4, 135, 4, 199, 4, 214, 1, 135, 4, 198, 4, 199, 4, 197, 4, 200, 4, 196, 4, 197, 4, 201, 4, 200, 4, 196, 4, 202, 4, 198, 4, 196, 4, 200, 4, 202, 4, 198, 4, 203, 4, 199, 4, 198, 4, 202, 4, 203, 4, 210, 1, 204, 4, 209, 1, 210, 1, 205, 4, 204, 4, 211, 1, 205, 4, 210, 1, 211, 1, 206, 4, 205, 4, 212, 1, 206, 4, 211, 1, 212, 1, 207, 4, 206, 4, 213, 1, 207, 4, 212, 1, 213, 1, 208, 4, 207, 4, 205, 4, 209, 4, 204, 4, 205, 4, 210, 4, 209, 4, 206, 4, 210, 4, 205, 4, 206, 4, 211, 4, 210, 4, 207, 4, 211, 4, 206, 4, 207, 4, 212, 4, 211, 4, 208, 4, 212, 4, 207, 4, 208, 4, 213, 4, 212, 4, 199, 4, 213, 4, 208, 4, 199, 4, 203, 4, 213, 4, 213, 1, 199, 4, 208, 4, 213, 1, 214, 1, 199, 4, 159, 4, 233, 3, 174, 4, 159, 4, 160, 4, 233, 3, 145, 4, 146, 4, 156, 4, 156, 4, 159, 4, 145, 4, 174, 4, 181, 4, 159, 4, 145, 4, 181, 4, 197, 4, 145, 4, 159, 4, 181, 4, 181, 4, 187, 4, 197, 4, 187, 4, 201, 4, 197, 4, 187, 4, 193, 4, 201, 4, 207, 1, 214, 4, 206, 1, 207, 1, 215, 4, 214, 4, 208, 1, 215, 4, 207, 1, 208, 1, 216, 4, 215, 4, 216, 4, 204, 4, 209, 4, 209, 1, 216, 4, 208, 1, 209, 1, 204, 4, 216, 4, 216, 1, 217, 4, 215, 1, 216, 1, 218, 4, 217, 4, 216, 1, 214, 4, 218, 4, 216, 1, 206, 1, 214, 4, 119, 1, 219, 4, 118, 1, 119, 1, 220, 4, 219, 4, 220, 4, 221, 4, 219, 4, 220, 4, 222, 4, 221, 4, 119, 1, 217, 1, 220, 4, 119, 1, 223, 1, 217, 1, 220, 4, 217, 1, 222, 4, 217, 1, 217, 4, 222, 4, 217, 1, 215, 1, 217, 4, 103, 1, 223, 4, 102, 1, 103, 1, 224, 4, 223, 4, 104, 1, 224, 4, 103, 1, 104, 1, 225, 4, 224, 4, 224, 4, 226, 4, 223, 4, 224, 4, 227, 4, 226, 4, 225, 4, 227, 4, 224, 4, 225, 4, 228, 4, 227, 4, 104, 1, 229, 4, 225, 4, 104, 1, 120, 1, 229, 4, 229, 4, 228, 4, 225, 4, 229, 4, 230, 4, 228, 4, 101, 1, 231, 4, 100, 1, 101, 1, 232, 4, 231, 4, 102, 1, 232, 4, 101, 1, 102, 1, 233, 4, 232, 4, 232, 4, 234, 4, 231, 4, 232, 4, 235, 4, 234, 4, 233, 4, 235, 4, 232, 4, 233, 4, 236, 4, 235, 4, 92, 1, 237, 4, 90, 1, 92, 1, 238, 4, 237, 4, 238, 4, 239, 4, 237, 4, 238, 4, 240, 4, 239, 4, 99, 1, 100, 1, 238, 4, 92, 1, 99, 1, 238, 4, 100, 1, 240, 4, 238, 4, 100, 1, 231, 4, 240, 4, 234, 4, 240, 4, 231, 4, 234, 4, 239, 4, 240, 4, 36, 1, 37, 1, 90, 1, 90, 1, 237, 4, 36, 1, 239, 4, 36, 1, 237, 4, 36, 1, 241, 4, 33, 1, 29, 1, 33, 1, 252, 0, 33, 1, 241, 4, 252, 0, 241, 4, 242, 4, 252, 0, 22, 1, 242, 4, 27, 1, 22, 1, 252, 0, 242, 4, 36, 1, 239, 4, 241, 4, 239, 4, 234, 4, 241, 4, 234, 4, 242, 4, 241, 4, 234, 4, 235, 4, 242, 4, 242, 4, 235, 4, 27, 1, 27, 1, 236, 4, 26, 1, 27, 1, 235, 4, 236, 4, 25, 1, 26, 1, 236, 4, 24, 1, 25, 1, 236, 4, 102, 1, 23, 1, 233, 4, 102, 1, 223, 4, 23, 1, 23, 1, 24, 1, 236, 4, 236, 4, 233, 4, 23, 1, 243, 4, 245, 4, 244, 4, 243, 4, 246, 4, 245, 4, 247, 4, 249, 4, 248, 4, 247, 4, 250, 4, 249, 4, 248, 4, 251, 4, 247, 4, 248, 4, 252, 4, 251, 4, 247, 4, 254, 4, 253, 4, 247, 4, 251, 4, 254, 4, 253, 4, 0, 5, 255, 4, 253, 4, 254, 4, 0, 5, 255, 4, 1, 5, 81, 3, 255, 4, 0, 5, 1, 5, 67, 3, 81, 3, 1, 5, 67, 3, 1, 5, 140, 3, 1, 5, 0, 5, 140, 3, 140, 3, 0, 5, 157, 3, 157, 3, 0, 5, 174, 3, 0, 5, 254, 4, 174, 3, 191, 3, 254, 4, 251, 4, 191, 3, 174, 3, 254, 4, 251, 4, 252, 4, 191, 3, 191, 3, 252, 4, 208, 3, 168, 0, 2, 5, 163, 0, 168, 0, 3, 5, 2, 5, 163, 0, 4, 5, 158, 0, 163, 0, 2, 5, 4, 5, 158, 0, 5, 5, 153, 0, 158, 0, 4, 5, 5, 5, 153, 0, 6, 5, 148, 0, 153, 0, 5, 5, 6, 5, 3, 5, 7, 5, 2, 5, 3, 5, 8, 5, 7, 5, 2, 5, 9, 5, 4, 5, 2, 5, 7, 5, 9, 5, 4, 5, 10, 5, 5, 5, 4, 5, 9, 5, 10, 5, 5, 5, 11, 5, 6, 5, 5, 5, 10, 5, 11, 5, 8, 5, 12, 5, 7, 5, 8, 5, 13, 5, 12, 5, 7, 5, 14, 5, 9, 5, 7, 5, 12, 5, 14, 5, 9, 5, 15, 5, 10, 5, 9, 5, 14, 5, 15, 5, 10, 5, 16, 5, 11, 5, 10, 5, 15, 5, 16, 5, 13, 5, 17, 5, 12, 5, 13, 5, 18, 5, 17, 5, 12, 5, 19, 5, 14, 5, 12, 5, 17, 5, 19, 5, 14, 5, 20, 5, 15, 5, 14, 5, 19, 5, 20, 5, 15, 5, 21, 5, 16, 5, 15, 5, 20, 5, 21, 5, 18, 5, 22, 5, 17, 5, 18, 5, 23, 5, 22, 5, 17, 5, 24, 5, 19, 5, 17, 5, 22, 5, 24, 5, 19, 5, 25, 5, 20, 5, 19, 5, 24, 5, 25, 5, 20, 5, 26, 5, 21, 5, 20, 5, 25, 5, 26, 5, 246, 4, 27, 5, 245, 4, 246, 4, 28, 5, 27, 5, 29, 5, 28, 5, 246, 4, 29, 5, 30, 5, 28, 5, 147, 0, 30, 5, 29, 5, 147, 0, 148, 0, 30, 5, 6, 5, 30, 5, 148, 0, 16, 5, 28, 5, 11, 5, 6, 5, 28, 5, 30, 5, 6, 5, 11, 5, 28, 5, 21, 5, 28, 5, 16, 5, 21, 5, 27, 5, 28, 5, 27, 5, 31, 5, 245, 4, 27, 5, 32, 5, 31, 5, 248, 4, 33, 5, 252, 4, 248, 4, 34, 5, 33, 5, 32, 5, 35, 5, 31, 5, 32, 5, 36, 5, 35, 5, 34, 5, 37, 5, 33, 5, 34, 5, 38, 5, 37, 5, 31, 5, 38, 5, 34, 5, 31, 5, 35, 5, 38, 5, 252, 4, 33, 5, 208, 3, 33, 5, 37, 5, 208, 3, 208, 3, 37, 5, 225, 3, 27, 5, 21, 5, 32, 5, 21, 5, 36, 5, 32, 5, 21, 5, 26, 5, 36, 5, 26, 5, 39, 5, 36, 5, 26, 5, 40, 5, 39, 5, 37, 5, 41, 5, 225, 3, 37, 5, 42, 5, 41, 5, 36, 5, 43, 5, 35, 5, 36, 5, 39, 5, 43, 5, 38, 5, 42, 5, 37, 5, 38, 5, 44, 5, 42, 5, 35, 5, 44, 5, 38, 5, 35, 5, 43, 5, 44, 5, 22, 5, 45, 5, 24, 5, 22, 5, 46, 5, 45, 5, 24, 5, 47, 5, 25, 5, 24, 5, 45, 5, 47, 5, 25, 5, 40, 5, 26, 5, 25, 5, 47, 5, 40, 5, 225, 3, 48, 5, 224, 3, 225, 3, 41, 5, 48, 5, 178, 0, 50, 5, 49, 5, 178, 0, 49, 5, 173, 0, 173, 0, 49, 5, 168, 0, 3, 5, 49, 5, 8, 5, 168, 0, 49, 5, 3, 5, 8, 5, 49, 5, 13, 5, 13, 5, 49, 5, 18, 5, 23, 5, 49, 5, 50, 5, 23, 5, 18, 5, 49, 5, 51, 5, 23, 5, 50, 5, 51, 5, 52, 5, 23, 5, 22, 5, 52, 5, 53, 5, 22, 5, 23, 5, 52, 5, 22, 5, 53, 5, 46, 5, 53, 5, 54, 5, 46, 5, 45, 5, 54, 5, 47, 5, 45, 5, 46, 5, 54, 5, 47, 5, 39, 5, 40, 5, 47, 5, 54, 5, 39, 5, 43, 5, 54, 5, 55, 5, 43, 5, 39, 5, 54, 5, 43, 5, 55, 5, 44, 5, 44, 5, 55, 5, 42, 5, 42, 5, 55, 5, 41, 5, 41, 5, 56, 5, 48, 5, 41, 5, 55, 5, 56, 5, 226, 3, 58, 5, 57, 5, 226, 3, 227, 3, 58, 5, 229, 3, 226, 3, 57, 5, 229, 3, 228, 3, 226, 3, 230, 3, 57, 5, 59, 5, 230, 3, 229, 3, 57, 5, 230, 3, 60, 5, 223, 3, 230, 3, 59, 5, 60, 5, 222, 3, 60, 5, 61, 5, 222, 3, 223, 3, 60, 5, 222, 3, 220, 3, 221, 3, 222, 3, 61, 5, 220, 3, 220, 3, 215, 3, 219, 3, 220, 3, 61, 5, 215, 3, 215, 3, 62, 5, 214, 3, 215, 3, 61, 5, 62, 5, 216, 3, 62, 5, 63, 5, 216, 3, 214, 3, 62, 5, 216, 3, 64, 5, 218, 3, 216, 3, 63, 5, 64, 5, 218, 3, 17, 4, 217, 3, 218, 3, 64, 5, 17, 4, 64, 5, 65, 5, 17, 4, 17, 4, 65, 5, 25, 4, 25, 4, 65, 5, 33, 4, 33, 4, 66, 5, 55, 4, 33, 4, 65, 5, 66, 5, 58, 4, 66, 5, 67, 5, 58, 4, 55, 4, 66, 5, 58, 4, 64, 4, 61, 4, 58, 4, 67, 5, 64, 4, 64, 4, 68, 5, 67, 4, 64, 4, 67, 5, 68, 5, 70, 4, 68, 5, 69, 5, 70, 4, 67, 4, 68, 5, 69, 5, 69, 4, 70, 4, 69, 5, 70, 5, 69, 4, 71, 4, 70, 5, 71, 5, 71, 4, 69, 4, 70, 5, 71, 4, 72, 5, 75, 4, 71, 4, 71, 5, 72, 5, 72, 5, 73, 5, 75, 4, 72, 5, 74, 5, 73, 5, 75, 4, 128, 4, 74, 4, 75, 4, 73, 5, 128, 4, 73, 5, 75, 5, 128, 4, 128, 4, 76, 5, 127, 4, 128, 4, 75, 5, 76, 5, 132, 4, 76, 5, 77, 5, 132, 4, 127, 4, 76, 5, 78, 5, 79, 5, 134, 4, 78, 5, 80, 5, 79, 5, 134, 4, 81, 5, 133, 4, 134, 4, 79, 5, 81, 5, 133, 4, 130, 4, 131, 4, 133, 4, 81, 5, 130, 4, 129, 4, 81, 5, 82, 5, 129, 4, 130, 4, 81, 5, 82, 5, 83, 5, 129, 4, 129, 4, 83, 5, 121, 4, 121, 4, 172, 4, 113, 4, 121, 4, 83, 5, 172, 4, 179, 4, 83, 5, 84, 5, 179, 4, 172, 4, 83, 5, 179, 4, 84, 5, 185, 4, 185, 4, 84, 5, 191, 4, 84, 5, 85, 5, 191, 4, 86, 5, 191, 4, 85, 5, 86, 5, 190, 4, 191, 4, 86, 5, 87, 5, 190, 4, 190, 4, 87, 5, 192, 4, 195, 4, 87, 5, 88, 5, 195, 4, 192, 4, 87, 5, 195, 4, 88, 5, 194, 4, 194, 4, 88, 5, 193, 4, 193, 4, 89, 5, 201, 4, 193, 4, 88, 5, 89, 5, 200, 4, 89, 5, 90, 5, 200, 4, 201, 4, 89, 5, 200, 4, 90, 5, 202, 4, 202, 4, 90, 5, 203, 4, 213, 4, 203, 4, 90, 5, 213, 4, 91, 5, 212, 4, 213, 4, 90, 5, 91, 5, 212, 4, 210, 4, 211, 4, 212, 4, 91, 5, 210, 4, 209, 4, 91, 5, 92, 5, 209, 4, 210, 4, 91, 5, 216, 4, 209, 4, 92, 5, 216, 4, 214, 4, 215, 4, 216, 4, 92, 5, 214, 4, 217, 4, 218, 4, 93, 5, 93, 5, 214, 4, 92, 5, 93, 5, 218, 4, 214, 4, 222, 4, 93, 5, 94, 5, 222, 4, 217, 4, 93, 5, 222, 4, 95, 5, 221, 4, 222, 4, 94, 5, 95, 5, 227, 4, 230, 4, 96, 5, 227, 4, 228, 4, 230, 4, 226, 4, 96, 5, 97, 5, 226, 4, 227, 4, 96, 5, 223, 4, 226, 4, 23, 1, 98, 5, 226, 4, 97, 5, 98, 5, 23, 1, 226, 4, 18, 1, 98, 5, 99, 5, 18, 1, 23, 1, 98, 5, 13, 1, 18, 1, 99, 5, 13, 1, 100, 5, 8, 1, 13, 1, 99, 5, 100, 5, 254, 0, 8, 1, 100, 5, 254, 0, 3, 1, 8, 1, 100, 5, 101, 5, 254, 0, 254, 0, 101, 5, 245, 0, 245, 0, 101, 5, 244, 0, 244, 0, 102, 5, 250, 0, 244, 0, 101, 5, 102, 5, 250, 0, 102, 5, 243, 0, 242, 0, 102, 5, 103, 5, 242, 0, 243, 0, 102, 5, 247, 0, 242, 0, 103, 5, 247, 0, 248, 0, 242, 0, 249, 0, 247, 0, 103, 5, 249, 0, 246, 0, 247, 0, 103, 5, 104, 5, 249, 0, 210, 0, 104, 5, 105, 5, 210, 0, 249, 0, 104, 5, 210, 0, 106, 5, 206, 0, 210, 0, 105, 5, 106, 5, 204, 0, 106, 5, 107, 5, 204, 0, 206, 0, 106, 5, 204, 0, 108, 5, 203, 0, 204, 0, 107, 5, 108, 5, 203, 0, 108, 5, 205, 0, 34, 0, 108, 5, 109, 5, 34, 0, 205, 0, 108, 5, 34, 0, 110, 5, 33, 0, 34, 0, 109, 5, 110, 5, 33, 0, 47, 0, 41, 0, 33, 0, 110, 5, 47, 0, 46, 0, 110, 5, 111, 5, 46, 0, 47, 0, 110, 5, 46, 0, 112, 5, 48, 0, 46, 0, 111, 5, 112, 5, 91, 0, 112, 5, 113, 5, 91, 0, 48, 0, 112, 5, 91, 0, 113, 5, 90, 0, 90, 0, 113, 5, 89, 0, 89, 0, 113, 5, 88, 0, 88, 0, 113, 5, 87, 0, 87, 0, 114, 5, 86, 0, 87, 0, 113, 5, 114, 5, 179, 0, 115, 5, 175, 0, 86, 0, 115, 5, 80, 0, 114, 5, 115, 5, 86, 0, 80, 0, 115, 5, 179, 0, 175, 0, 115, 5, 174, 0, 174, 0, 116, 5, 176, 0, 174, 0, 115, 5, 116, 5, 176, 0, 116, 5, 177, 0, 178, 0, 116, 5, 117, 5, 178, 0, 177, 0, 116, 5, 117, 5, 50, 5, 178, 0, 117, 5, 118, 5, 50, 5, 51, 5, 50, 5, 118, 5), -"blend_shape_data": [], -"format": 98067, +"attribute_data": PackedByteArray(0, 96, 31, 191, 0, 32, 100, 63, 0, 32, 29, 191, 0, 128, 110, 63, 0, 160, 82, 191, 0, 192, 91, 63, 0, 224, 76, 191, 0, 64, 86, 63, 0, 192, 25, 63, 0, 64, 39, 63, 0, 0, 27, 63, 0, 160, 36, 63, 0, 96, 18, 63, 0, 160, 33, 63, 0, 0, 18, 63, 0, 32, 36, 63, 0, 96, 42, 63, 0, 96, 53, 63, 0, 192, 44, 63, 0, 32, 52, 63, 0, 64, 39, 63, 0, 96, 45, 63, 0, 128, 37, 63, 0, 96, 47, 63, 0, 160, 9, 63, 0, 32, 117, 63, 0, 32, 246, 62, 0, 96, 135, 63, 0, 0, 13, 63, 0, 160, 141, 63, 0, 32, 29, 63, 0, 0, 127, 63, 0, 192, 212, 62, 0, 192, 143, 63, 0, 192, 241, 62, 0, 64, 150, 63, 0, 64, 165, 62, 0, 32, 152, 63, 0, 0, 186, 62, 0, 96, 160, 63, 0, 64, 79, 62, 0, 224, 156, 63, 0, 128, 98, 62, 0, 32, 166, 63, 0, 192, 185, 61, 0, 192, 156, 63, 0, 160, 175, 61, 0, 64, 166, 63, 0, 0, 49, 189, 0, 96, 151, 63, 0, 96, 153, 189, 0, 96, 162, 63, 0, 160, 34, 63, 0, 160, 153, 63, 0, 64, 52, 63, 0, 160, 137, 63, 0, 96, 10, 63, 0, 160, 162, 63, 0, 0, 215, 62, 0, 160, 174, 63, 0, 128, 129, 62, 0, 128, 181, 63, 0, 128, 196, 61, 0, 96, 181, 63, 0, 64, 186, 189, 0, 96, 178, 63, 0, 32, 60, 63, 0, 32, 163, 63, 0, 96, 80, 63, 0, 224, 144, 63, 0, 64, 31, 63, 0, 128, 173, 63, 0, 0, 244, 62, 0, 32, 188, 63, 0, 128, 141, 62, 0, 96, 197, 63, 0, 96, 167, 61, 0, 160, 197, 63, 0, 192, 255, 189, 0, 64, 193, 63, 0, 192, 32, 63, 0, 0, 181, 63, 0, 0, 55, 63, 0, 224, 167, 63, 0, 128, 242, 62, 0, 0, 196, 63, 0, 160, 135, 62, 0, 128, 205, 63, 0, 64, 130, 61, 0, 64, 205, 63, 0, 224, 10, 190, 0, 96, 198, 63, 0, 96, 27, 63, 0, 0, 191, 63, 0, 32, 50, 63, 0, 160, 177, 63, 0, 192, 230, 62, 0, 64, 206, 63, 0, 0, 115, 62, 0, 0, 216, 63, 0, 32, 66, 61, 0, 128, 211, 63, 0, 0, 23, 190, 0, 64, 204, 63, 0, 160, 54, 190, 0, 32, 208, 63, 0, 0, 114, 60, 0, 192, 215, 63, 0, 224, 79, 190, 0, 128, 218, 63, 0, 128, 53, 188, 0, 224, 226, 63, 0, 192, 93, 190, 0, 224, 223, 63, 0, 160, 187, 188, 0, 64, 232, 63, 0, 192, 102, 190, 0, 128, 230, 63, 0, 160, 19, 189, 0, 64, 239, 63, 0, 192, 113, 190, 0, 96, 233, 63, 0, 160, 44, 189, 0, 192, 241, 63, 0, 96, 102, 60, 0, 224, 243, 63, 0, 128, 149, 60, 0, 96, 241, 63, 0, 128, 18, 61, 0, 96, 234, 63, 0, 160, 49, 61, 0, 192, 228, 63, 0, 0, 249, 60, 0, 0, 243, 63, 0, 0, 7, 61, 0, 96, 240, 63, 0, 192, 86, 61, 0, 64, 233, 63, 0, 96, 107, 61, 0, 192, 227, 63, 0, 128, 97, 61, 0, 224, 240, 63, 0, 160, 108, 61, 0, 32, 238, 63, 0, 224, 154, 61, 0, 0, 231, 63, 0, 32, 164, 61, 0, 64, 225, 63, 0, 192, 37, 62, 0, 96, 241, 63, 0, 128, 35, 62, 0, 128, 1, 64, 0, 64, 42, 62, 0, 32, 239, 63, 0, 0, 57, 62, 0, 160, 232, 63, 0, 32, 69, 62, 0, 32, 227, 63, 0, 0, 53, 62, 0, 192, 10, 64, 0, 64, 120, 62, 0, 160, 10, 64, 0, 192, 109, 62, 0, 64, 1, 64, 0, 224, 98, 62, 0, 224, 240, 63, 0, 64, 104, 62, 0, 160, 238, 63, 0, 128, 124, 62, 0, 96, 232, 63, 0, 192, 134, 62, 0, 64, 227, 63, 0, 192, 186, 62, 0, 0, 10, 64, 0, 32, 174, 62, 0, 160, 0, 64, 0, 64, 167, 62, 0, 128, 240, 63, 0, 96, 169, 62, 0, 96, 238, 63, 0, 64, 183, 62, 0, 192, 233, 63, 0, 128, 198, 62, 0, 192, 229, 63, 0, 32, 143, 61, 0, 128, 12, 64, 0, 128, 178, 190, 0, 96, 202, 63, 0, 192, 189, 190, 0, 192, 211, 63, 0, 224, 164, 190, 0, 192, 197, 63, 0, 192, 156, 190, 0, 64, 192, 63, 0, 192, 149, 190, 0, 192, 186, 63, 0, 224, 132, 190, 0, 32, 173, 63, 0, 64, 104, 190, 0, 224, 159, 63, 0, 224, 178, 190, 0, 96, 202, 63, 0, 192, 5, 191, 0, 64, 196, 63, 0, 160, 11, 191, 0, 0, 208, 63, 0, 64, 165, 190, 0, 192, 197, 63, 0, 192, 250, 190, 0, 192, 191, 63, 0, 32, 157, 190, 0, 32, 192, 63, 0, 32, 241, 190, 0, 64, 185, 63, 0, 32, 150, 190, 0, 192, 186, 63, 0, 0, 234, 190, 0, 192, 179, 63, 0, 224, 133, 190, 0, 0, 173, 63, 0, 192, 206, 190, 0, 192, 162, 63, 0, 192, 105, 190, 0, 160, 159, 63, 0, 96, 190, 190, 0, 160, 144, 63, 0, 224, 44, 191, 0, 32, 190, 63, 0, 96, 53, 191, 0, 96, 202, 63, 0, 160, 39, 191, 0, 64, 185, 63, 0, 160, 36, 191, 0, 96, 178, 63, 0, 64, 33, 191, 0, 128, 172, 63, 0, 192, 21, 191, 0, 224, 153, 63, 0, 32, 10, 191, 0, 96, 136, 63, 0, 0, 69, 191, 0, 160, 185, 63, 0, 128, 77, 191, 0, 192, 196, 63, 0, 0, 64, 191, 0, 160, 180, 63, 0, 160, 60, 191, 0, 0, 174, 63, 0, 64, 57, 191, 0, 128, 168, 63, 0, 128, 47, 191, 0, 32, 152, 63, 0, 192, 36, 191, 0, 64, 136, 63, 0, 0, 23, 190, 0, 0, 157, 63, 0, 192, 201, 189, 0, 224, 150, 63, 0, 192, 23, 190, 0, 192, 156, 63, 0, 128, 158, 190, 0, 0, 148, 63, 0, 32, 158, 190, 0, 0, 226, 63, 0, 192, 163, 190, 0, 64, 230, 63, 0, 96, 5, 191, 0, 192, 217, 63, 0, 128, 5, 191, 0, 224, 221, 63, 0, 128, 18, 191, 0, 64, 221, 63, 0, 32, 29, 191, 0, 96, 220, 63, 0, 192, 54, 191, 0, 224, 216, 63, 0, 192, 163, 190, 0, 96, 237, 63, 0, 96, 157, 190, 0, 192, 21, 64, 0, 160, 132, 190, 0, 192, 29, 64, 0, 128, 30, 190, 0, 64, 29, 64, 0, 224, 87, 190, 0, 0, 22, 64, 0, 0, 118, 190, 0, 224, 34, 64, 0, 32, 12, 190, 0, 32, 34, 64, 0, 0, 105, 190, 0, 224, 38, 64, 0, 224, 254, 189, 0, 0, 38, 64, 0, 32, 65, 190, 0, 0, 52, 64, 0, 192, 168, 189, 0, 192, 50, 64, 0, 160, 135, 189, 0, 64, 29, 64, 0, 128, 239, 189, 0, 128, 22, 64, 0, 160, 65, 189, 0, 160, 33, 64, 0, 32, 11, 189, 0, 32, 37, 64, 0, 128, 197, 59, 0, 224, 48, 64, 0, 160, 191, 187, 0, 160, 28, 64, 0, 32, 77, 189, 0, 160, 21, 64, 0, 0, 105, 60, 0, 224, 32, 64, 0, 224, 230, 60, 0, 64, 36, 64, 0, 224, 139, 61, 0, 224, 47, 64, 0, 0, 15, 61, 0, 224, 27, 64, 0, 0, 221, 187, 0, 160, 20, 64, 0, 192, 100, 61, 0, 32, 32, 64, 0, 0, 144, 61, 0, 160, 35, 64, 0, 96, 227, 61, 0, 64, 47, 64, 0, 128, 219, 61, 0, 128, 25, 64, 0, 0, 126, 61, 0, 192, 17, 64, 0, 128, 6, 62, 0, 96, 30, 64, 0, 64, 23, 62, 0, 32, 34, 64, 0, 0, 67, 62, 0, 128, 46, 64, 0, 128, 36, 62, 0, 192, 24, 64, 0, 128, 234, 61, 0, 32, 17, 64, 0, 32, 60, 62, 0, 160, 29, 64, 0, 64, 76, 62, 0, 96, 33, 64, 0, 32, 120, 62, 0, 224, 45, 64, 0, 160, 157, 62, 0, 192, 22, 64, 0, 128, 133, 62, 0, 128, 15, 64, 0, 32, 169, 62, 0, 160, 27, 64, 0, 224, 176, 62, 0, 64, 31, 64, 0, 0, 200, 62, 0, 0, 44, 64, 0, 96, 125, 62, 0, 224, 12, 64, 0, 96, 208, 61, 0, 96, 14, 64, 0, 96, 67, 61, 0, 0, 15, 64, 0, 96, 10, 189, 0, 96, 16, 64, 0, 224, 160, 189, 0, 128, 17, 64, 0, 192, 24, 190, 0, 64, 18, 64, 0, 0, 95, 190, 0, 96, 19, 64, 0, 160, 108, 190, 0, 96, 18, 64, 0, 0, 156, 190, 0, 96, 16, 64, 0, 224, 241, 188, 0, 128, 12, 64, 0, 128, 224, 60, 0, 224, 10, 64, 0, 224, 52, 61, 0, 64, 11, 64, 0, 160, 43, 63, 0, 224, 57, 63, 0, 64, 32, 63, 0, 160, 81, 63, 0, 0, 37, 63, 0, 64, 84, 63, 0, 192, 48, 63, 0, 32, 60, 63, 0, 64, 16, 63, 0, 32, 110, 63, 0, 64, 21, 63, 0, 192, 112, 63, 0, 224, 54, 63, 0, 160, 93, 63, 0, 0, 67, 63, 0, 96, 67, 63, 0, 128, 38, 63, 0, 160, 123, 63, 0, 224, 86, 63, 0, 192, 109, 63, 0, 128, 100, 63, 0, 64, 82, 63, 0, 128, 70, 63, 0, 32, 134, 63, 0, 64, 112, 63, 0, 0, 123, 63, 0, 64, 127, 63, 0, 96, 95, 63, 0, 192, 94, 63, 0, 160, 139, 63, 0, 224, 135, 63, 0, 192, 62, 63, 0, 128, 121, 63, 0, 64, 52, 63, 0, 64, 93, 63, 0, 128, 43, 63, 0, 96, 70, 63, 0, 0, 43, 63, 0, 0, 145, 63, 0, 192, 23, 63, 0, 224, 135, 63, 0, 160, 17, 63, 0, 96, 117, 63, 0, 128, 13, 63, 0, 96, 97, 63, 0, 160, 10, 63, 0, 64, 49, 63, 0, 160, 47, 63, 0, 64, 43, 63, 0, 96, 40, 63, 0, 0, 12, 63, 0, 0, 37, 63, 0, 0, 48, 63, 0, 128, 54, 63, 0, 224, 12, 63, 0, 160, 33, 63, 0, 128, 30, 63, 0, 32, 31, 63, 0, 128, 21, 63, 0, 160, 27, 63, 0, 160, 16, 63, 0, 32, 28, 63, 0, 64, 67, 63, 0, 64, 21, 63, 0, 0, 59, 63, 0, 0, 16, 63, 0, 64, 44, 63, 0, 128, 11, 63, 0, 224, 34, 63, 0, 0, 8, 63, 0, 160, 29, 63, 0, 32, 9, 63, 0, 0, 85, 63, 0, 0, 249, 62, 0, 64, 81, 63, 0, 96, 233, 62, 0, 192, 68, 63, 0, 224, 222, 62, 0, 192, 55, 63, 0, 0, 215, 62, 0, 96, 44, 63, 0, 0, 205, 62, 0, 160, 76, 63, 0, 64, 21, 63, 0, 160, 96, 63, 0, 128, 244, 62, 0, 64, 71, 63, 0, 0, 177, 62, 0, 160, 56, 63, 0, 96, 165, 62, 0, 0, 127, 63, 0, 192, 216, 62, 0, 64, 119, 63, 0, 0, 199, 62, 0, 192, 132, 63, 0, 32, 229, 62, 0, 160, 80, 63, 0, 160, 149, 62, 0, 160, 67, 63, 0, 192, 134, 62, 0, 128, 95, 63, 0, 192, 182, 62, 0, 64, 139, 63, 0, 96, 140, 62, 0, 0, 130, 63, 0, 224, 127, 62, 0, 32, 98, 63, 0, 96, 42, 62, 0, 32, 92, 63, 0, 128, 46, 62, 0, 96, 146, 63, 0, 160, 230, 62, 0, 128, 145, 63, 0, 192, 165, 62, 0, 32, 141, 63, 0, 96, 160, 62, 0, 192, 150, 63, 0, 64, 234, 62, 0, 128, 108, 63, 0, 96, 58, 62, 0, 128, 172, 62, 0, 160, 246, 62, 0, 96, 136, 61, 0, 64, 207, 62, 0, 224, 170, 62, 0, 160, 249, 62, 0, 32, 61, 63, 0, 0, 86, 61, 0, 160, 39, 63, 0, 32, 57, 62, 0, 32, 29, 63, 0, 128, 123, 62, 0, 224, 16, 63, 0, 32, 165, 62, 0, 32, 255, 62, 0, 192, 221, 62, 0, 160, 19, 63, 0, 128, 117, 186, 0, 160, 4, 63, 0, 64, 234, 61, 0, 224, 245, 62, 0, 96, 55, 62, 0, 96, 221, 62, 0, 128, 132, 62, 0, 0, 178, 62, 0, 32, 197, 62, 0, 0, 250, 62, 0, 192, 185, 189, 0, 64, 216, 62, 0, 128, 52, 61, 0, 64, 197, 62, 0, 160, 229, 61, 0, 96, 173, 62, 0, 0, 69, 62, 0, 128, 134, 62, 0, 32, 158, 62, 0, 0, 222, 62, 0, 192, 234, 189, 0, 64, 175, 62, 0, 160, 47, 188, 0, 160, 156, 62, 0, 0, 90, 61, 0, 160, 134, 62, 0, 160, 12, 62, 0, 32, 89, 62, 0, 192, 147, 62, 0, 224, 146, 62, 0, 32, 135, 190, 0, 160, 78, 62, 0, 224, 227, 189, 0, 32, 57, 62, 0, 64, 141, 189, 0, 32, 18, 62, 0, 96, 54, 60, 0, 128, 162, 61, 0, 192, 30, 62, 0, 64, 72, 62, 0, 192, 147, 190, 0, 224, 225, 61, 0, 96, 2, 190, 0, 0, 188, 61, 0, 96, 172, 189, 0, 32, 105, 61, 0, 0, 7, 187, 0, 96, 174, 59, 0, 128, 15, 62, 0, 96, 242, 189, 0, 32, 36, 63, 0, 96, 13, 60, 0, 128, 219, 62, 0, 224, 15, 190, 0, 128, 33, 63, 0, 32, 129, 190, 0, 64, 104, 63, 0, 96, 141, 190, 0, 64, 102, 63, 0, 0, 167, 188, 0, 0, 211, 62, 0, 64, 46, 190, 0, 64, 29, 63, 0, 32, 169, 190, 0, 160, 97, 63, 0, 32, 75, 189, 0, 128, 208, 62, 0, 0, 72, 190, 0, 192, 25, 63, 0, 0, 179, 190, 0, 64, 104, 63, 0, 160, 150, 190, 0, 96, 145, 63, 0, 0, 194, 190, 0, 192, 139, 63, 0, 0, 152, 190, 0, 224, 139, 63, 0, 64, 27, 191, 0, 64, 129, 63, 0, 128, 106, 191, 0, 224, 178, 63, 0, 224, 113, 191, 0, 128, 190, 63, 0, 128, 102, 191, 0, 224, 173, 63, 0, 64, 99, 191, 0, 0, 167, 63, 0, 192, 96, 191, 0, 160, 161, 63, 0, 224, 86, 191, 0, 128, 144, 63, 0, 32, 85, 191, 0, 192, 124, 63, 0, 224, 139, 191, 0, 32, 172, 63, 0, 224, 142, 191, 0, 64, 183, 63, 0, 192, 137, 191, 0, 0, 167, 63, 0, 32, 134, 191, 0, 224, 160, 63, 0, 160, 131, 191, 0, 192, 155, 63, 0, 224, 120, 191, 0, 32, 140, 63, 0, 32, 111, 191, 0, 224, 119, 63, 0, 224, 133, 191, 0, 64, 211, 63, 0, 128, 133, 191, 0, 0, 208, 63, 0, 192, 99, 191, 0, 0, 214, 63, 0, 0, 103, 191, 0, 224, 216, 63, 0, 96, 7, 191, 0, 32, 96, 63, 0, 64, 251, 190, 0, 160, 94, 63, 0, 32, 212, 190, 0, 192, 89, 63, 0, 0, 21, 191, 0, 64, 50, 63, 0, 160, 72, 191, 0, 0, 12, 63, 0, 32, 58, 191, 0, 128, 27, 63, 0, 96, 75, 191, 0, 64, 20, 63, 0, 0, 64, 191, 0, 192, 27, 63, 0, 32, 58, 191, 0, 96, 233, 62, 0, 192, 70, 191, 0, 224, 218, 62, 0, 128, 80, 191, 0, 192, 3, 63, 0, 96, 81, 191, 0, 96, 16, 63, 0, 128, 90, 191, 0, 128, 14, 63, 0, 160, 98, 191, 0, 32, 10, 63, 0, 128, 81, 191, 0, 192, 216, 62, 0, 96, 88, 191, 0, 32, 0, 63, 0, 96, 103, 191, 0, 192, 247, 62, 0, 224, 104, 191, 0, 192, 2, 63, 0, 160, 85, 191, 0, 160, 207, 62, 0, 192, 92, 191, 0, 224, 217, 62, 0, 224, 89, 191, 0, 224, 222, 62, 0, 224, 82, 191, 0, 160, 212, 62, 0, 32, 100, 191, 0, 64, 233, 62, 0, 32, 97, 191, 0, 32, 237, 62, 0, 160, 57, 191, 0, 32, 189, 62, 0, 128, 65, 191, 0, 96, 175, 62, 0, 160, 45, 191, 0, 0, 159, 62, 0, 192, 53, 191, 0, 0, 146, 62, 0, 96, 35, 191, 0, 224, 158, 62, 0, 160, 58, 190, 0, 0, 249, 62, 0, 192, 245, 190, 0, 160, 26, 63, 0, 160, 237, 190, 0, 192, 194, 62, 0, 32, 81, 191, 0, 224, 199, 62, 0, 224, 54, 191, 0, 0, 138, 62, 0, 32, 75, 191, 0, 0, 185, 62, 0, 192, 36, 191, 0, 160, 128, 62, 0, 96, 42, 191, 0, 96, 88, 62, 0, 192, 18, 191, 0, 160, 55, 61, 0, 128, 241, 190, 0, 96, 166, 62, 0, 96, 193, 190, 0, 96, 73, 62, 0, 192, 132, 190, 0, 96, 186, 188, 0, 0, 34, 190, 0, 96, 108, 190, 0, 32, 144, 190, 0, 160, 167, 190, 0, 96, 220, 190, 0, 32, 192, 190, 0, 0, 4, 191, 0, 96, 133, 190, 0, 224, 15, 191, 0, 192, 162, 60, 0, 64, 247, 190, 0, 0, 14, 190, 0, 96, 28, 191, 0, 128, 147, 61, 0, 224, 33, 191, 0, 160, 203, 61, 0, 224, 38, 191, 0, 192, 32, 62, 0, 32, 49, 191, 0, 128, 79, 62, 0, 32, 1, 191, 0, 128, 13, 190, 0, 128, 83, 64, 0, 192, 143, 191, 0, 0, 79, 64, 0, 192, 155, 191, 0, 192, 68, 64, 0, 192, 143, 191, 0, 128, 78, 64, 0, 64, 162, 191, 0, 32, 68, 64, 0, 96, 150, 191, 0, 32, 75, 64, 0, 0, 179, 191, 0, 0, 67, 64, 0, 160, 174, 191, 0, 32, 252, 190, 0, 0, 235, 190, 0, 224, 5, 191, 0, 224, 160, 190, 0, 224, 47, 64, 0, 160, 134, 191, 0, 192, 47, 64, 0, 160, 139, 191, 0, 192, 39, 64, 0, 96, 133, 191, 0, 160, 39, 64, 0, 64, 128, 191, 0, 192, 33, 64, 0, 128, 128, 191, 0, 128, 33, 64, 0, 224, 118, 191, 0, 96, 30, 64, 0, 0, 126, 191, 0, 192, 29, 64, 0, 64, 116, 191, 0, 96, 26, 64, 0, 64, 123, 191, 0, 160, 25, 64, 0, 64, 113, 191, 0, 0, 23, 64, 0, 32, 122, 191, 0, 32, 22, 64, 0, 224, 111, 191, 0, 0, 19, 64, 0, 64, 117, 191, 0, 64, 18, 64, 0, 32, 107, 191, 0, 160, 14, 64, 0, 160, 116, 191, 0, 192, 13, 64, 0, 128, 106, 191, 0, 192, 8, 64, 0, 128, 121, 191, 0, 192, 7, 64, 0, 128, 111, 191, 0, 128, 57, 64, 0, 224, 142, 191, 0, 0, 57, 64, 0, 192, 147, 191, 0, 160, 52, 64, 0, 192, 144, 191, 0, 0, 53, 64, 0, 160, 139, 191, 0, 64, 61, 64, 0, 224, 146, 191, 0, 64, 60, 64, 0, 160, 149, 191, 0, 192, 47, 64, 0, 32, 146, 191, 0, 160, 39, 64, 0, 128, 140, 191, 0, 160, 33, 64, 0, 160, 135, 191, 0, 32, 30, 64, 0, 160, 133, 191, 0, 32, 26, 64, 0, 192, 132, 191, 0, 192, 22, 64, 0, 96, 132, 191, 0, 0, 19, 64, 0, 192, 129, 191, 0, 192, 14, 64, 0, 96, 129, 191, 0, 96, 9, 64, 0, 128, 131, 191, 0, 160, 56, 64, 0, 64, 154, 191, 0, 96, 52, 64, 0, 224, 151, 191, 0, 32, 59, 64, 0, 0, 157, 191, 0, 192, 47, 64, 0, 192, 150, 191, 0, 96, 39, 64, 0, 96, 145, 191, 0, 32, 33, 64, 0, 128, 140, 191, 0, 160, 29, 64, 0, 96, 138, 191, 0, 128, 25, 64, 0, 128, 137, 191, 0, 32, 22, 64, 0, 0, 137, 191, 0, 128, 18, 64, 0, 96, 134, 191, 0, 128, 14, 64, 0, 0, 134, 191, 0, 128, 9, 64, 0, 192, 135, 191, 0, 64, 56, 64, 0, 96, 158, 191, 0, 96, 52, 64, 0, 96, 156, 191, 0, 64, 58, 64, 0, 0, 161, 191, 0, 192, 47, 64, 0, 0, 162, 191, 0, 64, 39, 64, 0, 192, 157, 191, 0, 96, 32, 64, 0, 96, 153, 191, 0, 128, 27, 64, 0, 128, 150, 191, 0, 0, 23, 64, 0, 192, 147, 191, 0, 224, 19, 64, 0, 160, 146, 191, 0, 192, 16, 64, 0, 0, 144, 191, 0, 96, 13, 64, 0, 32, 143, 191, 0, 96, 9, 64, 0, 224, 143, 191, 0, 160, 55, 64, 0, 160, 166, 191, 0, 96, 52, 64, 0, 128, 165, 191, 0, 64, 57, 64, 0, 160, 167, 191, 0, 64, 47, 64, 0, 160, 169, 191, 0, 192, 39, 64, 0, 224, 165, 191, 0, 224, 32, 64, 0, 32, 162, 191, 0, 0, 28, 64, 0, 128, 159, 191, 0, 0, 24, 64, 0, 64, 156, 191, 0, 192, 20, 64, 0, 224, 153, 191, 0, 96, 17, 64, 0, 160, 151, 191, 0, 192, 13, 64, 0, 224, 149, 191, 0, 224, 9, 64, 0, 64, 149, 191, 0, 160, 55, 64, 0, 0, 172, 191, 0, 96, 52, 64, 0, 128, 171, 191, 0, 64, 57, 64, 0, 128, 171, 191, 0, 160, 46, 64, 0, 0, 183, 191, 0, 96, 39, 64, 0, 64, 180, 191, 0, 64, 33, 64, 0, 64, 177, 191, 0, 0, 29, 64, 0, 160, 174, 191, 0, 160, 25, 64, 0, 192, 170, 191, 0, 96, 22, 64, 0, 32, 167, 191, 0, 224, 18, 64, 0, 96, 164, 191, 0, 32, 15, 64, 0, 32, 160, 191, 0, 64, 10, 64, 0, 32, 158, 191, 0, 0, 56, 64, 0, 224, 180, 191, 0, 0, 52, 64, 0, 32, 183, 191, 0, 32, 58, 64, 0, 224, 178, 191, 0, 192, 47, 64, 0, 160, 197, 191, 0, 0, 40, 64, 0, 224, 190, 191, 0, 224, 33, 64, 0, 160, 187, 191, 0, 192, 29, 64, 0, 192, 184, 191, 0, 96, 26, 64, 0, 32, 181, 191, 0, 64, 23, 64, 0, 224, 177, 191, 0, 96, 20, 64, 0, 192, 178, 191, 0, 96, 16, 64, 0, 160, 175, 191, 0, 224, 10, 64, 0, 32, 173, 191, 0, 96, 57, 64, 0, 96, 195, 191, 0, 0, 53, 64, 0, 224, 195, 191, 0, 0, 60, 64, 0, 0, 193, 191, 0, 32, 58, 64, 0, 160, 167, 191, 0, 0, 58, 64, 0, 64, 171, 191, 0, 64, 59, 64, 0, 128, 167, 191, 0, 0, 59, 64, 0, 128, 171, 191, 0, 0, 62, 64, 0, 224, 165, 191, 0, 192, 61, 64, 0, 224, 172, 191, 0, 224, 62, 64, 0, 32, 143, 191, 0, 192, 63, 64, 0, 96, 152, 191, 0, 224, 64, 64, 0, 96, 141, 191, 0, 160, 67, 64, 0, 32, 142, 191, 0, 192, 65, 64, 0, 32, 160, 191, 0, 160, 241, 191, 0, 128, 21, 188, 0, 0, 241, 191, 0, 192, 133, 60, 0, 128, 234, 191, 0, 96, 146, 186, 0, 64, 235, 191, 0, 32, 192, 188, 0, 160, 247, 191, 0, 160, 148, 60, 0, 96, 246, 191, 0, 64, 38, 61, 0, 224, 0, 192, 0, 224, 160, 61, 0, 32, 0, 192, 0, 96, 211, 61, 0, 224, 3, 192, 0, 192, 6, 62, 0, 32, 3, 192, 0, 96, 31, 62, 0, 224, 5, 192, 0, 64, 42, 62, 0, 0, 5, 192, 0, 128, 65, 62, 0, 96, 238, 191, 0, 128, 92, 61, 0, 32, 232, 191, 0, 64, 0, 61, 0, 160, 243, 191, 0, 192, 147, 61, 0, 96, 253, 191, 0, 128, 10, 62, 0, 192, 1, 192, 0, 0, 63, 62, 0, 160, 3, 192, 0, 160, 97, 62, 0, 0, 233, 191, 0, 64, 4, 62, 0, 0, 227, 191, 0, 192, 233, 61, 0, 32, 238, 191, 0, 192, 17, 62, 0, 0, 248, 191, 0, 128, 73, 62, 0, 128, 253, 191, 0, 0, 121, 62, 0, 96, 0, 192, 0, 160, 141, 62, 0, 224, 227, 191, 0, 192, 84, 62, 0, 160, 220, 191, 0, 0, 100, 62, 0, 192, 231, 191, 0, 224, 103, 62, 0, 160, 241, 191, 0, 160, 139, 62, 0, 128, 246, 191, 0, 128, 155, 62, 0, 128, 249, 191, 0, 32, 168, 62, 0, 192, 213, 191, 0, 64, 49, 62, 0, 160, 216, 191, 0, 224, 241, 61, 0, 160, 222, 191, 0, 0, 145, 61, 0, 0, 231, 191, 0, 0, 13, 189, 0, 0, 227, 191, 0, 64, 15, 187, 0, 32, 227, 191, 0, 64, 53, 189, 0, 64, 224, 191, 0, 96, 81, 189, 0, 128, 221, 191, 0, 192, 66, 60, 0, 224, 220, 191, 0, 128, 124, 189, 0, 224, 218, 191, 0, 192, 116, 189, 0, 32, 217, 191, 0, 64, 44, 189, 0, 128, 212, 191, 0, 128, 221, 60, 0, 224, 214, 191, 0, 192, 215, 187, 0, 96, 211, 191, 0, 128, 77, 61, 0, 0, 208, 191, 0, 224, 236, 61, 0, 128, 206, 191, 0, 96, 12, 62, 0, 224, 205, 191, 0, 128, 26, 62, 0, 0, 211, 191, 0, 0, 56, 62, 0, 160, 209, 191, 0, 96, 71, 62, 0, 96, 205, 191, 0, 96, 48, 62, 0, 192, 208, 191, 0, 160, 96, 62, 0, 64, 204, 191, 0, 224, 74, 62, 0, 224, 207, 191, 0, 224, 114, 62, 0, 64, 203, 191, 0, 128, 93, 62, 0, 0, 219, 191, 0, 128, 102, 62, 0, 192, 217, 191, 0, 32, 112, 62, 0, 96, 216, 191, 0, 224, 129, 62, 0, 0, 216, 191, 0, 224, 137, 62, 0, 224, 230, 191, 0, 64, 123, 62, 0, 64, 223, 191, 0, 32, 148, 62, 0, 32, 239, 191, 0, 64, 145, 62, 0, 224, 230, 191, 0, 96, 165, 62, 0, 160, 240, 191, 0, 32, 177, 62, 0, 160, 204, 191, 0, 224, 128, 62, 0, 96, 202, 191, 0, 160, 109, 62, 0, 32, 210, 191, 0, 160, 151, 62, 0, 192, 217, 191, 0, 224, 165, 62, 0, 64, 227, 191, 0, 32, 174, 62, 0, 160, 236, 191, 0, 96, 180, 62, 0, 0, 235, 191, 0, 64, 180, 62, 0, 0, 250, 191, 0, 160, 212, 62, 0, 0, 254, 191, 0, 224, 191, 62, 0, 160, 1, 192, 0, 192, 160, 62, 0, 32, 4, 192, 0, 128, 140, 62, 0, 224, 5, 192, 0, 96, 123, 62, 0, 160, 7, 192, 0, 0, 95, 62, 0, 160, 8, 192, 0, 0, 130, 62, 0, 224, 8, 192, 0, 192, 181, 62, 0, 128, 9, 192, 0, 96, 152, 62, 0, 32, 11, 192, 0, 96, 174, 62, 0, 224, 6, 192, 0, 160, 194, 62, 0, 224, 3, 192, 0, 32, 3, 63, 0, 0, 6, 192, 0, 32, 220, 62, 0, 32, 6, 192, 0, 96, 9, 63, 0, 224, 7, 192, 0, 96, 3, 63, 0, 224, 8, 192, 0, 64, 6, 63, 0, 0, 7, 192, 0, 160, 13, 63, 0, 32, 9, 192, 0, 64, 245, 62, 0, 224, 9, 192, 0, 160, 227, 62, 0, 0, 11, 192, 0, 0, 231, 62, 0, 64, 10, 192, 0, 128, 249, 62, 0, 224, 10, 192, 0, 160, 10, 63, 0, 64, 9, 192, 0, 0, 20, 63, 0, 224, 12, 192, 0, 192, 239, 62, 0, 32, 12, 192, 0, 192, 0, 63, 0, 128, 9, 192, 0, 96, 218, 62, 0, 128, 10, 192, 0, 224, 221, 62, 0, 32, 5, 192, 0, 64, 8, 63, 0, 128, 5, 192, 0, 224, 12, 63, 0, 96, 12, 192, 0, 192, 230, 62, 0, 128, 7, 192, 0, 32, 20, 63, 0, 128, 8, 192, 0, 224, 205, 62, 0, 192, 10, 192, 0, 64, 202, 62, 0, 64, 14, 192, 0, 192, 197, 62, 0, 96, 16, 192, 0, 0, 206, 62, 0, 32, 14, 192, 0, 192, 245, 62, 0, 96, 13, 192, 0, 96, 3, 63, 0, 64, 12, 192, 0, 224, 12, 63, 0, 0, 11, 192, 0, 192, 22, 63, 0, 0, 16, 192, 0, 192, 253, 62, 0, 64, 15, 192, 0, 192, 6, 63, 0, 96, 14, 192, 0, 0, 16, 63, 0, 160, 13, 192, 0, 128, 24, 63, 0, 160, 17, 192, 0, 32, 2, 63, 0, 32, 17, 192, 0, 192, 9, 63, 0, 96, 16, 192, 0, 160, 18, 63, 0, 128, 15, 192, 0, 0, 26, 63, 0, 64, 19, 192, 0, 96, 4, 63, 0, 224, 18, 192, 0, 32, 12, 63, 0, 0, 18, 192, 0, 32, 21, 63, 0, 32, 17, 192, 0, 64, 28, 63, 0, 32, 22, 192, 0, 160, 6, 63, 0, 192, 21, 192, 0, 160, 15, 63, 0, 0, 21, 192, 0, 128, 25, 63, 0, 32, 20, 192, 0, 96, 34, 63, 0, 224, 17, 192, 0, 160, 252, 62, 0, 96, 19, 192, 0, 160, 254, 62, 0, 32, 16, 192, 0, 128, 245, 62, 0, 128, 18, 192, 0, 128, 235, 62, 0, 128, 20, 192, 0, 224, 240, 62, 0, 128, 16, 192, 0, 0, 228, 62, 0, 0, 14, 192, 0, 96, 234, 62, 0, 224, 18, 192, 0, 160, 218, 62, 0, 96, 20, 192, 0, 96, 222, 62, 0, 32, 22, 192, 0, 0, 230, 62, 0, 192, 21, 192, 0, 0, 253, 62, 0, 32, 23, 192, 0, 128, 236, 62, 0, 0, 24, 192, 0, 160, 244, 62, 0, 64, 24, 192, 0, 128, 251, 62, 0, 64, 24, 192, 0, 32, 4, 63, 0, 96, 23, 192, 0, 32, 16, 63, 0, 96, 22, 192, 0, 224, 17, 63, 0, 64, 21, 192, 0, 0, 32, 63, 0, 128, 20, 192, 0, 224, 46, 63, 0, 128, 19, 192, 0, 32, 41, 63, 0, 192, 16, 192, 0, 32, 34, 63, 0, 0, 15, 192, 0, 224, 31, 63, 0, 192, 12, 192, 0, 96, 30, 63, 0, 32, 10, 192, 0, 192, 30, 63, 0, 224, 18, 192, 0, 192, 48, 63, 0, 32, 16, 192, 0, 32, 41, 63, 0, 96, 14, 192, 0, 192, 38, 63, 0, 64, 12, 192, 0, 96, 38, 63, 0, 192, 9, 192, 0, 32, 40, 63, 0, 32, 18, 192, 0, 96, 56, 63, 0, 160, 15, 192, 0, 0, 49, 63, 0, 192, 13, 192, 0, 192, 46, 63, 0, 96, 11, 192, 0, 224, 46, 63, 0, 0, 9, 192, 0, 160, 49, 63, 0, 192, 17, 192, 0, 224, 61, 63, 0, 32, 15, 192, 0, 160, 57, 63, 0, 32, 13, 192, 0, 160, 55, 63, 0, 0, 11, 192, 0, 64, 54, 63, 0, 160, 9, 192, 0, 128, 55, 63, 0, 224, 20, 192, 0, 64, 50, 63, 0, 160, 20, 192, 0, 128, 62, 63, 0, 160, 19, 192, 0, 160, 72, 63, 0, 192, 10, 192, 0, 64, 127, 63, 0, 128, 8, 192, 0, 160, 129, 63, 0, 0, 2, 192, 0, 32, 128, 63, 0, 128, 1, 192, 0, 32, 122, 63, 0, 160, 1, 192, 0, 128, 132, 63, 0, 64, 255, 191, 0, 160, 122, 63, 0, 192, 249, 191, 0, 224, 114, 63, 0, 160, 9, 192, 0, 128, 133, 63, 0, 96, 3, 192, 0, 192, 131, 63, 0, 96, 8, 192, 0, 224, 137, 63, 0, 224, 3, 192, 0, 192, 136, 63, 0, 192, 11, 192, 0, 160, 137, 63, 0, 0, 10, 192, 0, 64, 138, 63, 0, 128, 14, 192, 0, 224, 134, 63, 0, 32, 13, 192, 0, 128, 136, 63, 0, 96, 12, 192, 0, 0, 131, 63, 0, 160, 14, 192, 0, 160, 129, 63, 0, 224, 15, 192, 0, 0, 132, 63, 0, 64, 12, 192, 0, 0, 111, 63, 0, 224, 13, 192, 0, 128, 114, 63, 0, 96, 12, 192, 0, 96, 126, 63, 0, 64, 11, 192, 0, 192, 62, 63, 0, 32, 13, 192, 0, 224, 62, 63, 0, 64, 15, 192, 0, 224, 81, 63, 0, 96, 13, 192, 0, 64, 82, 63, 0, 64, 14, 192, 0, 64, 115, 63, 0, 192, 12, 192, 0, 96, 126, 63, 0, 0, 15, 192, 0, 160, 65, 63, 0, 192, 15, 192, 0, 192, 81, 63, 0, 64, 15, 192, 0, 160, 116, 63, 0, 0, 14, 192, 0, 64, 128, 63, 0, 128, 16, 192, 0, 224, 67, 63, 0, 64, 17, 192, 0, 96, 80, 63, 0, 224, 14, 192, 0, 96, 99, 63, 0, 0, 13, 192, 0, 64, 98, 63, 0, 224, 16, 192, 0, 128, 100, 63, 0, 64, 15, 192, 0, 160, 99, 63, 0, 96, 16, 192, 0, 192, 129, 63, 0, 128, 17, 192, 0, 64, 102, 63, 0, 160, 17, 192, 0, 64, 93, 63, 0, 128, 18, 192, 0, 64, 82, 63, 0, 160, 147, 191, 0, 192, 169, 63, 0, 224, 150, 191, 0, 96, 182, 63, 0, 0, 146, 191, 0, 96, 164, 63, 0, 192, 141, 191, 0, 128, 158, 63, 0, 0, 139, 191, 0, 0, 153, 63, 0, 128, 130, 191, 0, 128, 135, 63, 0, 0, 123, 191, 0, 96, 105, 63, 0, 96, 158, 191, 0, 32, 166, 63, 0, 128, 163, 191, 0, 160, 180, 63, 0, 32, 156, 191, 0, 128, 160, 63, 0, 32, 152, 191, 0, 64, 154, 63, 0, 128, 149, 191, 0, 32, 148, 63, 0, 32, 140, 191, 0, 128, 127, 63, 0, 0, 136, 191, 0, 128, 83, 63, 0, 128, 173, 191, 0, 192, 159, 63, 0, 192, 181, 191, 0, 128, 171, 63, 0, 192, 169, 191, 0, 64, 155, 63, 0, 160, 167, 191, 0, 32, 148, 63, 0, 224, 165, 191, 0, 160, 141, 63, 0, 32, 158, 191, 0, 192, 115, 63, 0, 224, 151, 191, 0, 160, 76, 63, 0, 160, 183, 191, 0, 0, 150, 63, 0, 96, 193, 191, 0, 96, 157, 63, 0, 32, 179, 191, 0, 64, 147, 63, 0, 64, 177, 191, 0, 0, 141, 63, 0, 160, 175, 191, 0, 192, 135, 63, 0, 128, 166, 191, 0, 192, 110, 63, 0, 128, 158, 191, 0, 0, 78, 63, 0, 64, 192, 191, 0, 0, 132, 63, 0, 0, 200, 191, 0, 192, 136, 63, 0, 160, 188, 191, 0, 96, 131, 63, 0, 0, 189, 191, 0, 96, 123, 63, 0, 32, 187, 191, 0, 160, 115, 63, 0, 224, 178, 191, 0, 0, 97, 63, 0, 192, 174, 191, 0, 224, 75, 63, 0, 160, 206, 191, 0, 32, 127, 63, 0, 32, 198, 191, 0, 0, 108, 63, 0, 224, 213, 191, 0, 128, 94, 63, 0, 224, 217, 191, 0, 128, 113, 63, 0, 160, 250, 191, 0, 224, 73, 63, 0, 96, 253, 191, 0, 0, 93, 63, 0, 32, 198, 191, 0, 96, 77, 63, 0, 192, 205, 191, 0, 64, 75, 63, 0, 128, 212, 191, 0, 128, 70, 63, 0, 0, 219, 191, 0, 96, 63, 63, 0, 160, 220, 191, 0, 64, 64, 63, 0, 128, 255, 191, 0, 32, 45, 63, 0, 96, 183, 191, 0, 0, 83, 63, 0, 160, 188, 191, 0, 0, 89, 63, 0, 128, 179, 191, 0, 128, 74, 63, 0, 96, 186, 191, 0, 0, 69, 63, 0, 0, 191, 191, 0, 0, 73, 63, 0, 192, 181, 191, 0, 224, 63, 63, 0, 96, 151, 191, 0, 192, 64, 63, 0, 64, 163, 191, 0, 0, 58, 63, 0, 128, 166, 191, 0, 0, 53, 63, 0, 0, 139, 191, 0, 0, 69, 63, 0, 32, 135, 191, 0, 64, 69, 63, 0, 224, 128, 191, 0, 224, 64, 63, 0, 64, 121, 191, 0, 0, 66, 63, 0, 224, 114, 191, 0, 192, 66, 63, 0, 128, 100, 191, 0, 192, 65, 63, 0, 64, 106, 191, 0, 160, 71, 63, 0, 0, 103, 191, 0, 128, 72, 63, 0, 128, 95, 191, 0, 64, 68, 63, 0, 160, 99, 191, 0, 192, 76, 63, 0, 96, 90, 191, 0, 160, 73, 63, 0, 192, 2, 192, 0, 64, 45, 63, 0, 128, 1, 192, 0, 224, 39, 63, 0, 192, 7, 192, 0, 32, 64, 63, 0, 0, 7, 192, 0, 128, 52, 63, 0, 64, 7, 192, 0, 160, 43, 63, 0, 224, 5, 192, 0, 32, 65, 63, 0, 160, 5, 192, 0, 64, 55, 63, 0, 128, 5, 192, 0, 192, 48, 63, 0, 224, 4, 192, 0, 96, 58, 63, 0, 224, 4, 192, 0, 160, 55, 63, 0, 192, 4, 192, 0, 192, 52, 63, 0, 192, 4, 192, 0, 0, 46, 63, 0, 160, 7, 192, 0, 32, 35, 63, 0, 64, 3, 192, 0, 224, 50, 63, 0, 96, 4, 192, 0, 32, 55, 63, 0, 160, 3, 192, 0, 0, 71, 63, 0, 224, 8, 192, 0, 128, 62, 63, 0, 64, 10, 192, 0, 128, 81, 63, 0, 128, 202, 191, 0, 224, 143, 63, 0, 128, 202, 191, 0, 0, 159, 63, 0, 32, 198, 191, 0, 224, 168, 63, 0, 192, 187, 191, 0, 0, 176, 63, 0, 128, 175, 191, 0, 160, 179, 63, 0, 96, 210, 191, 0, 32, 171, 63, 0, 0, 213, 191, 0, 160, 162, 63, 0, 64, 216, 191, 0, 224, 159, 63, 0, 32, 195, 191, 0, 128, 181, 63, 0, 64, 182, 191, 0, 128, 183, 63, 0, 32, 171, 191, 0, 160, 187, 63, 0, 0, 161, 191, 0, 192, 192, 63, 0, 128, 154, 191, 0, 192, 197, 63, 0, 0, 148, 191, 0, 192, 189, 63, 0, 64, 126, 191, 0, 128, 198, 63, 0, 0, 80, 191, 0, 192, 212, 63, 0, 128, 86, 191, 0, 192, 207, 63, 0, 224, 94, 191, 0, 224, 218, 63, 0, 96, 80, 191, 0, 160, 219, 63, 0, 32, 91, 191, 0, 128, 220, 63, 0, 160, 64, 191, 0, 192, 216, 63, 0, 0, 74, 191, 0, 32, 204, 63, 0, 32, 67, 191, 0, 224, 208, 63, 0, 0, 147, 191, 0, 128, 206, 63, 0, 96, 142, 191, 0, 192, 197, 63, 0, 224, 145, 191, 0, 224, 193, 63, 0, 192, 149, 191, 0, 224, 202, 63, 0, 32, 144, 191, 0, 192, 208, 63, 0, 224, 138, 191, 0, 32, 200, 63, 0, 32, 138, 191, 0, 32, 206, 63, 0, 192, 140, 191, 0, 32, 210, 63, 0, 96, 138, 191, 0, 96, 210, 63, 0, 160, 2, 63, 0, 128, 13, 192, 0, 0, 239, 62, 0, 32, 5, 192, 0, 192, 251, 62, 0, 224, 4, 192, 0, 0, 9, 63, 0, 32, 13, 192, 0, 96, 9, 63, 0, 0, 22, 192, 0, 128, 15, 63, 0, 128, 21, 192, 0, 64, 4, 63, 0, 96, 4, 192, 0, 128, 15, 63, 0, 160, 12, 192, 0, 160, 22, 63, 0, 96, 21, 192, 0, 192, 35, 63, 0, 192, 1, 192, 0, 32, 46, 63, 0, 128, 10, 192, 0, 160, 46, 63, 0, 224, 17, 192, 0, 64, 34, 63, 0, 0, 27, 192, 0, 224, 44, 63, 0, 32, 22, 192, 0, 64, 61, 63, 0, 128, 21, 192, 0, 0, 44, 63, 0, 96, 26, 192, 0, 192, 122, 191, 0, 0, 38, 64, 0, 128, 119, 191, 0, 128, 43, 64, 0, 64, 106, 191, 0, 96, 39, 64, 0, 192, 110, 191, 0, 224, 36, 64, 0, 160, 51, 63, 0, 64, 1, 192, 0, 64, 61, 63, 0, 192, 9, 192, 0, 160, 61, 63, 0, 96, 17, 192, 0, 192, 81, 191, 0, 192, 52, 64, 0, 128, 54, 191, 0, 0, 60, 64, 0, 192, 40, 191, 0, 224, 55, 64, 0, 0, 67, 191, 0, 128, 48, 64, 0, 32, 109, 191, 0, 96, 47, 64, 0, 192, 95, 191, 0, 0, 43, 64, 0, 160, 72, 63, 0, 192, 25, 192, 0, 192, 6, 63, 0, 160, 28, 192, 0, 128, 6, 63, 0, 0, 28, 192, 0, 224, 13, 63, 0, 224, 24, 192, 0, 64, 1, 63, 0, 64, 24, 192, 0, 224, 17, 63, 0, 128, 28, 192, 0, 224, 29, 63, 0, 96, 23, 192, 0, 64, 92, 191, 0, 96, 39, 64, 0, 64, 68, 191, 0, 160, 45, 64, 0, 192, 51, 191, 0, 32, 49, 64, 0, 128, 39, 191, 0, 192, 51, 64, 0, 64, 74, 188, 0, 32, 8, 192, 0, 32, 117, 189, 0, 64, 16, 192, 0, 64, 191, 189, 0, 160, 14, 192, 0, 64, 81, 189, 0, 224, 6, 192, 0, 224, 128, 61, 0, 0, 1, 192, 0, 0, 188, 60, 0, 32, 0, 192, 0, 128, 59, 190, 0, 32, 12, 192, 0, 192, 12, 190, 0, 192, 3, 192, 0, 32, 122, 189, 0, 64, 249, 191, 0, 32, 146, 190, 0, 160, 8, 192, 0, 64, 130, 190, 0, 160, 0, 192, 0, 224, 58, 190, 0, 96, 241, 191, 0, 160, 162, 190, 0, 224, 7, 192, 0, 128, 149, 190, 0, 224, 255, 191, 0, 128, 103, 190, 0, 192, 239, 191, 0, 160, 177, 190, 0, 128, 7, 192, 0, 96, 165, 190, 0, 224, 254, 191, 0, 160, 134, 190, 0, 0, 239, 191, 0, 128, 86, 191, 0, 96, 211, 191, 0, 32, 111, 191, 0, 64, 235, 191, 0, 160, 116, 191, 0, 96, 229, 191, 0, 128, 98, 191, 0, 32, 213, 191, 0, 0, 159, 190, 0, 96, 238, 191, 0, 160, 189, 190, 0, 32, 3, 192, 0, 0, 199, 190, 0, 0, 7, 192, 0, 192, 101, 190, 0, 160, 17, 192, 0, 160, 157, 190, 0, 224, 14, 192, 0, 0, 139, 190, 0, 96, 12, 192, 0, 64, 41, 190, 0, 224, 15, 192, 0, 32, 30, 190, 0, 160, 21, 192, 0, 224, 254, 189, 0, 128, 18, 192, 0, 0, 215, 189, 0, 96, 24, 192, 0, 192, 121, 189, 0, 128, 21, 192, 0, 32, 128, 189, 0, 192, 26, 192, 0, 0, 171, 60, 0, 192, 25, 192, 0, 64, 18, 189, 0, 128, 28, 192, 0, 128, 168, 60, 0, 128, 29, 192, 0, 64, 37, 188, 0, 128, 29, 192, 0, 64, 121, 61, 0, 224, 25, 192, 0, 64, 227, 60, 0, 32, 29, 192, 0, 224, 204, 190, 0, 192, 11, 192, 0, 96, 195, 190, 0, 32, 9, 192, 0, 32, 174, 190, 0, 160, 9, 192, 0, 64, 161, 190, 0, 32, 10, 192, 0, 0, 3, 191, 0, 160, 6, 192, 0, 224, 5, 191, 0, 96, 2, 192, 0, 224, 146, 190, 0, 160, 231, 191, 0, 96, 117, 190, 0, 160, 231, 191, 0, 224, 250, 190, 0, 64, 229, 191, 0, 64, 240, 190, 0, 64, 222, 191, 0, 64, 93, 191, 0, 96, 206, 191, 0, 64, 81, 191, 0, 128, 204, 191, 0, 192, 81, 190, 0, 64, 232, 191, 0, 64, 42, 190, 0, 224, 233, 191, 0, 192, 68, 189, 0, 192, 241, 191, 0, 96, 9, 61, 0, 128, 249, 191, 0, 0, 152, 61, 0, 224, 250, 191, 0, 160, 44, 191, 0, 64, 63, 64, 0, 32, 29, 191, 0, 0, 59, 64, 0, 192, 35, 63, 0, 192, 251, 191, 0, 128, 51, 63, 0, 64, 251, 191, 0, 224, 4, 63, 0, 192, 0, 192, 0, 160, 253, 62, 0, 96, 1, 192, 0, 96, 241, 62, 0, 160, 1, 192, 0, 0, 164, 190, 0, 192, 220, 191, 0, 128, 118, 190, 0, 128, 223, 191, 0, 224, 229, 190, 0, 128, 215, 191, 0, 192, 88, 191, 0, 160, 199, 191, 0, 160, 76, 191, 0, 192, 197, 191, 0, 128, 60, 190, 0, 128, 225, 191, 0, 128, 255, 189, 0, 96, 228, 191, 0, 224, 34, 189, 0, 224, 233, 191, 0, 128, 20, 61, 0, 64, 241, 191, 0, 32, 164, 61, 0, 64, 242, 191, 0, 96, 36, 191, 0, 160, 66, 64, 0, 64, 21, 191, 0, 224, 62, 64, 0, 32, 37, 63, 0, 192, 244, 191, 0, 0, 52, 63, 0, 64, 244, 191, 0, 32, 9, 63, 0, 128, 249, 191, 0, 96, 3, 63, 0, 192, 250, 191, 0, 224, 249, 62, 0, 224, 250, 191, 0, 0, 160, 190, 0, 0, 212, 191, 0, 192, 103, 190, 0, 0, 215, 191, 0, 0, 218, 190, 0, 128, 207, 191, 0, 32, 83, 191, 0, 192, 191, 191, 0, 0, 71, 191, 0, 160, 189, 191, 0, 224, 37, 190, 0, 96, 217, 191, 0, 32, 203, 189, 0, 32, 220, 191, 0, 0, 156, 188, 0, 96, 224, 191, 0, 224, 169, 61, 0, 96, 229, 191, 0, 128, 107, 62, 0, 224, 233, 191, 0, 224, 25, 191, 0, 128, 70, 64, 0, 224, 10, 191, 0, 0, 67, 64, 0, 96, 36, 63, 0, 224, 236, 191, 0, 64, 53, 63, 0, 32, 236, 191, 0, 32, 17, 63, 0, 96, 238, 191, 0, 64, 1, 63, 0, 192, 238, 191, 0, 0, 211, 62, 0, 160, 237, 191, 0, 192, 147, 190, 0, 96, 203, 191, 0, 96, 78, 190, 0, 192, 205, 191, 0, 96, 209, 190, 0, 160, 201, 191, 0, 96, 78, 191, 0, 0, 186, 191, 0, 128, 66, 191, 0, 192, 183, 191, 0, 0, 13, 190, 0, 192, 207, 191, 0, 128, 155, 189, 0, 64, 210, 191, 0, 32, 63, 59, 0, 192, 213, 191, 0, 160, 226, 61, 0, 32, 218, 191, 0, 224, 139, 62, 0, 224, 223, 191, 0, 160, 17, 191, 0, 64, 73, 64, 0, 224, 2, 191, 0, 224, 69, 64, 0, 32, 37, 63, 0, 192, 227, 191, 0, 128, 53, 63, 0, 32, 230, 191, 0, 96, 20, 63, 0, 96, 227, 191, 0, 0, 3, 63, 0, 0, 227, 191, 0, 192, 211, 62, 0, 160, 225, 191, 0, 64, 120, 190, 0, 192, 192, 191, 0, 64, 40, 190, 0, 160, 194, 191, 0, 160, 192, 190, 0, 224, 189, 191, 0, 224, 68, 191, 0, 128, 174, 191, 0, 96, 56, 191, 0, 64, 172, 191, 0, 96, 224, 189, 0, 64, 196, 191, 0, 128, 91, 189, 0, 32, 198, 191, 0, 192, 193, 60, 0, 32, 201, 191, 0, 96, 243, 61, 0, 0, 205, 191, 0, 32, 134, 62, 0, 224, 209, 191, 0, 192, 0, 191, 0, 160, 78, 64, 0, 224, 225, 190, 0, 96, 75, 64, 0, 64, 38, 63, 0, 160, 215, 191, 0, 192, 53, 63, 0, 32, 218, 191, 0, 160, 22, 63, 0, 224, 214, 191, 0, 96, 8, 63, 0, 64, 214, 191, 0, 32, 227, 62, 0, 224, 212, 191, 0, 192, 23, 190, 0, 160, 181, 191, 0, 160, 227, 189, 0, 64, 182, 191, 0, 128, 170, 190, 0, 192, 173, 191, 0, 0, 55, 191, 0, 128, 160, 191, 0, 192, 44, 191, 0, 64, 157, 191, 0, 192, 167, 189, 0, 96, 183, 191, 0, 96, 41, 189, 0, 32, 184, 191, 0, 128, 58, 61, 0, 32, 187, 191, 0, 192, 214, 61, 0, 32, 190, 191, 0, 224, 22, 62, 0, 128, 191, 191, 0, 192, 210, 190, 0, 64, 86, 64, 0, 32, 180, 190, 0, 64, 83, 64, 0, 64, 39, 63, 0, 64, 201, 191, 0, 32, 54, 63, 0, 224, 201, 191, 0, 64, 23, 63, 0, 0, 201, 191, 0, 128, 19, 63, 0, 224, 200, 191, 0, 192, 13, 63, 0, 160, 200, 191, 0, 96, 216, 63, 0, 32, 151, 191, 0, 224, 215, 63, 0, 96, 120, 191, 0, 128, 226, 63, 0, 96, 150, 191, 0, 160, 225, 63, 0, 32, 123, 191, 0, 64, 226, 63, 0, 96, 136, 191, 0, 128, 190, 191, 0, 224, 238, 191, 0, 0, 201, 191, 0, 128, 246, 191, 0, 128, 209, 191, 0, 224, 243, 191, 0, 96, 194, 191, 0, 0, 234, 191, 0, 96, 180, 191, 0, 0, 236, 191, 0, 128, 182, 191, 0, 160, 230, 191, 0, 96, 171, 191, 0, 0, 235, 191, 0, 0, 172, 191, 0, 192, 229, 191, 0, 0, 162, 191, 0, 160, 235, 191, 0, 64, 161, 191, 0, 128, 230, 191, 0, 160, 154, 191, 0, 128, 237, 191, 0, 0, 152, 191, 0, 128, 232, 191, 0, 128, 210, 191, 0, 32, 239, 191, 0, 128, 195, 191, 0, 224, 229, 191, 0, 192, 183, 191, 0, 128, 226, 191, 0, 96, 173, 191, 0, 224, 225, 191, 0, 160, 162, 191, 0, 128, 226, 191, 0, 128, 153, 191, 0, 0, 228, 191, 0, 64, 214, 191, 0, 160, 231, 191, 0, 96, 198, 191, 0, 192, 223, 191, 0, 96, 185, 191, 0, 0, 220, 191, 0, 224, 173, 191, 0, 128, 219, 191, 0, 224, 161, 191, 0, 0, 220, 191, 0, 0, 152, 191, 0, 224, 220, 191, 0, 32, 219, 191, 0, 160, 224, 191, 0, 160, 201, 191, 0, 160, 216, 191, 0, 192, 186, 191, 0, 160, 212, 191, 0, 160, 173, 191, 0, 32, 212, 191, 0, 224, 159, 191, 0, 160, 212, 191, 0, 64, 149, 191, 0, 96, 213, 191, 0, 96, 229, 191, 0, 192, 213, 191, 0, 224, 207, 191, 0, 0, 204, 191, 0, 64, 189, 191, 0, 96, 199, 191, 0, 224, 172, 191, 0, 0, 199, 191, 0, 160, 156, 191, 0, 32, 200, 191, 0, 96, 146, 191, 0, 192, 201, 191, 0, 192, 79, 191, 0, 224, 175, 191, 0, 0, 68, 191, 0, 0, 163, 191, 0, 192, 87, 191, 0, 96, 185, 191, 0, 128, 91, 191, 0, 32, 190, 191, 0, 32, 96, 191, 0, 160, 196, 191, 0, 224, 99, 191, 0, 64, 202, 191, 0, 96, 104, 191, 0, 224, 207, 191, 0, 192, 119, 191, 0, 128, 221, 191, 0, 64, 91, 191, 0, 192, 170, 191, 0, 96, 78, 191, 0, 64, 156, 191, 0, 0, 100, 191, 0, 96, 181, 191, 0, 32, 104, 191, 0, 160, 186, 191, 0, 64, 109, 191, 0, 0, 194, 191, 0, 128, 113, 191, 0, 32, 200, 191, 0, 96, 118, 191, 0, 96, 206, 191, 0, 224, 131, 191, 0, 128, 221, 191, 0, 0, 105, 191, 0, 160, 166, 191, 0, 128, 91, 191, 0, 96, 151, 191, 0, 128, 114, 191, 0, 224, 177, 191, 0, 224, 118, 191, 0, 192, 183, 191, 0, 32, 124, 191, 0, 160, 191, 191, 0, 0, 128, 191, 0, 0, 198, 191, 0, 32, 130, 191, 0, 32, 204, 191, 0, 160, 139, 191, 0, 224, 218, 191, 0, 32, 144, 191, 0, 64, 241, 191, 0, 64, 142, 191, 0, 192, 227, 191, 0, 192, 131, 191, 0, 224, 230, 191, 0, 128, 136, 191, 0, 64, 240, 191, 0, 64, 127, 191, 0, 32, 236, 191, 0, 0, 147, 191, 0, 0, 227, 191, 0, 224, 144, 191, 0, 96, 217, 191, 0, 0, 139, 191, 0, 224, 203, 191, 0, 64, 146, 191, 0, 32, 186, 191, 0, 32, 143, 191, 0, 0, 185, 191, 0, 0, 211, 191, 0, 224, 181, 191, 0, 128, 191, 191, 0, 96, 177, 191, 0, 96, 174, 191, 0, 96, 177, 191, 0, 96, 157, 191, 0, 224, 180, 191, 0, 0, 132, 191, 0, 160, 159, 191, 0, 0, 122, 191, 0, 128, 144, 191, 0, 32, 137, 191, 0, 0, 171, 191, 0, 0, 144, 191, 0, 224, 153, 191, 0, 224, 136, 191, 0, 0, 139, 191, 0, 96, 149, 191, 0, 32, 165, 191, 0, 0, 157, 191, 0, 160, 147, 191, 0, 160, 149, 191, 0, 192, 132, 191, 0, 128, 162, 191, 0, 192, 158, 191, 0, 32, 169, 191, 0, 160, 141, 191, 0, 160, 161, 191, 0, 160, 125, 191, 0, 192, 174, 191, 0, 128, 152, 191, 0, 0, 190, 191, 0, 192, 130, 191, 0, 96, 182, 191, 0, 96, 104, 191, 0, 192, 195, 191, 0, 160, 141, 191, 0, 160, 203, 191, 0, 96, 119, 191, 0, 224, 195, 191, 0, 64, 90, 191, 0, 32, 209, 191, 0, 96, 134, 191, 0, 192, 217, 191, 0, 0, 165, 191, 0, 128, 198, 191, 0, 224, 160, 191, 0, 192, 235, 191, 0, 192, 191, 191, 0, 0, 238, 191, 0, 128, 173, 191, 0, 224, 211, 191, 0, 128, 21, 192, 0, 192, 208, 191, 0, 0, 21, 192, 0, 64, 211, 191, 0, 160, 24, 192, 0, 32, 215, 191, 0, 128, 29, 192, 0, 192, 217, 191, 0, 32, 29, 192, 0, 64, 213, 191, 0, 160, 28, 192, 0, 128, 215, 191, 0, 160, 13, 192, 0, 192, 211, 191, 0, 0, 14, 192, 0, 0, 207, 191, 0, 64, 17, 192, 0, 0, 211, 191, 0, 64, 11, 192, 0, 160, 203, 191, 0, 128, 13, 192, 0, 128, 210, 191, 0, 96, 6, 192, 0, 32, 202, 191, 0, 64, 10, 192, 0, 32, 208, 191, 0, 96, 3, 192, 0, 0, 201, 191, 0, 32, 0, 192, 0, 192, 207, 191, 0, 32, 255, 191, 0, 160, 214, 191, 0, 128, 7, 192, 0, 0, 214, 191, 0, 32, 253, 191, 0, 32, 245, 191, 0, 224, 237, 191, 0, 64, 241, 191, 0, 224, 228, 191, 0, 64, 222, 191, 0, 128, 232, 191, 0, 224, 247, 191, 0, 32, 236, 191, 0, 96, 244, 191, 0, 32, 228, 191, 0, 192, 178, 63, 0, 128, 131, 191, 0, 64, 188, 63, 0, 96, 155, 191, 0, 0, 185, 63, 0, 64, 156, 191, 0, 128, 175, 63, 0, 224, 132, 191, 0, 0, 169, 63, 0, 160, 84, 191, 0, 128, 165, 63, 0, 0, 87, 191, 0, 192, 157, 63, 0, 192, 82, 191, 0, 160, 154, 63, 0, 0, 85, 191, 0, 160, 13, 192, 0, 160, 8, 192, 0, 192, 14, 192, 0, 96, 7, 192, 0, 64, 149, 63, 0, 224, 46, 191, 0, 32, 146, 63, 0, 192, 49, 191, 0, 128, 251, 191, 0, 64, 232, 191, 0, 32, 248, 191, 0, 32, 224, 191, 0, 160, 179, 63, 0, 128, 158, 191, 0, 160, 169, 63, 0, 64, 135, 191, 0, 96, 158, 63, 0, 128, 106, 191, 0, 192, 16, 192, 0, 64, 5, 192, 0, 64, 148, 63, 0, 224, 84, 191, 0, 96, 140, 63, 0, 192, 54, 191, 0, 160, 255, 191, 0, 128, 226, 191, 0, 96, 252, 191, 0, 128, 217, 191, 0, 160, 172, 63, 0, 64, 162, 191, 0, 224, 161, 63, 0, 192, 138, 191, 0, 96, 150, 63, 0, 32, 118, 191, 0, 64, 19, 192, 0, 96, 2, 192, 0, 192, 139, 63, 0, 32, 94, 191, 0, 0, 133, 63, 0, 64, 62, 191, 0, 96, 4, 192, 0, 0, 214, 191, 0, 192, 2, 192, 0, 64, 205, 191, 0, 128, 157, 63, 0, 32, 169, 191, 0, 224, 146, 63, 0, 224, 145, 191, 0, 64, 141, 63, 0, 64, 129, 191, 0, 64, 24, 192, 0, 128, 249, 191, 0, 64, 126, 63, 0, 224, 113, 191, 0, 64, 108, 63, 0, 96, 77, 191, 0, 64, 7, 64, 0, 128, 171, 191, 0, 32, 7, 64, 0, 224, 156, 191, 0, 160, 7, 64, 0, 0, 148, 191, 0, 224, 6, 64, 0, 192, 142, 191, 0, 32, 6, 64, 0, 128, 134, 191, 0, 224, 1, 64, 0, 192, 171, 191, 0, 96, 2, 64, 0, 64, 156, 191, 0, 0, 4, 64, 0, 128, 147, 191, 0, 64, 3, 64, 0, 224, 141, 191, 0, 192, 0, 64, 0, 160, 134, 191, 0, 160, 250, 63, 0, 160, 170, 191, 0, 32, 250, 63, 0, 0, 157, 191, 0, 128, 251, 63, 0, 96, 148, 191, 0, 128, 249, 63, 0, 160, 139, 191, 0, 128, 248, 63, 0, 32, 134, 191, 0, 192, 5, 64, 0, 0, 128, 191, 0, 96, 4, 64, 0, 32, 117, 191, 0, 96, 0, 64, 0, 224, 122, 191, 0, 192, 0, 64, 0, 0, 131, 191, 0, 64, 252, 63, 0, 0, 128, 191, 0, 128, 244, 63, 0, 128, 132, 191, 0, 160, 238, 63, 0, 64, 161, 191, 0, 64, 238, 63, 0, 224, 151, 191, 0, 64, 237, 63, 0, 160, 142, 191, 0, 0, 235, 63, 0, 0, 162, 191, 0, 224, 233, 63, 0, 32, 152, 191, 0, 160, 233, 63, 0, 224, 142, 191, 0, 224, 233, 63, 0, 32, 130, 191, 0, 0, 225, 63, 0, 160, 118, 191, 0, 32, 219, 63, 0, 224, 96, 191, 0, 64, 215, 63, 0, 0, 67, 191, 0, 0, 217, 63, 0, 64, 62, 191, 0, 32, 217, 63, 0, 0, 80, 191, 0, 128, 214, 63, 0, 96, 58, 191, 0, 64, 211, 63, 0, 64, 67, 191, 0, 224, 211, 63, 0, 128, 58, 191, 0, 96, 186, 63, 0, 192, 168, 191, 0, 224, 180, 63, 0, 64, 171, 191, 0, 192, 189, 63, 0, 96, 168, 191, 0, 32, 227, 63, 0, 0, 163, 191, 0, 128, 217, 63, 0, 128, 164, 191, 0, 128, 212, 63, 0, 160, 151, 191, 0, 160, 213, 63, 0, 0, 165, 191, 0, 160, 185, 63, 0, 64, 184, 191, 0, 160, 179, 63, 0, 224, 186, 191, 0, 96, 189, 63, 0, 0, 184, 191, 0, 160, 228, 63, 0, 0, 178, 191, 0, 64, 218, 63, 0, 160, 179, 191, 0, 96, 214, 63, 0, 64, 180, 191, 0, 160, 186, 63, 0, 128, 193, 191, 0, 128, 180, 63, 0, 192, 195, 191, 0, 64, 190, 63, 0, 0, 193, 191, 0, 64, 229, 63, 0, 192, 186, 191, 0, 32, 219, 63, 0, 96, 188, 191, 0, 32, 215, 63, 0, 0, 189, 191, 0, 0, 190, 63, 0, 160, 211, 191, 0, 224, 183, 63, 0, 96, 213, 191, 0, 128, 193, 63, 0, 0, 211, 191, 0, 32, 232, 63, 0, 96, 204, 191, 0, 224, 221, 63, 0, 32, 206, 191, 0, 0, 218, 63, 0, 192, 206, 191, 0, 64, 1, 64, 0, 224, 186, 191, 0, 96, 249, 63, 0, 32, 186, 191, 0, 0, 7, 64, 0, 192, 186, 191, 0, 0, 11, 64, 0, 160, 188, 191, 0, 32, 2, 64, 0, 0, 211, 191, 0, 224, 250, 63, 0, 64, 210, 191, 0, 224, 7, 64, 0, 224, 210, 191, 0, 192, 11, 64, 0, 192, 212, 191, 0, 64, 30, 64, 0, 224, 202, 191, 0, 0, 27, 64, 0, 224, 199, 191, 0, 224, 23, 64, 0, 0, 197, 191, 0, 0, 21, 64, 0, 96, 197, 191, 0, 224, 16, 64, 0, 192, 194, 191, 0, 0, 31, 64, 0, 96, 216, 191, 0, 96, 27, 64, 0, 32, 213, 191, 0, 128, 24, 64, 0, 0, 210, 191, 0, 160, 21, 64, 0, 224, 210, 191, 0, 160, 17, 64, 0, 32, 208, 191, 0, 0, 48, 64, 0, 128, 205, 191, 0, 160, 40, 64, 0, 192, 206, 191, 0, 64, 35, 64, 0, 0, 208, 191, 0, 128, 58, 64, 0, 32, 206, 191, 0, 0, 54, 64, 0, 224, 206, 191, 0, 32, 76, 64, 0, 160, 193, 191, 0, 32, 69, 64, 0, 160, 188, 191, 0, 0, 77, 64, 0, 96, 208, 191, 0, 192, 69, 64, 0, 160, 202, 191, 0, 192, 147, 189, 0, 32, 195, 190, 0, 160, 87, 190, 0, 128, 246, 190, 0, 96, 194, 190, 0, 96, 10, 191, 0, 224, 4, 189, 0, 224, 235, 190, 0, 160, 47, 190, 0, 160, 15, 191, 0, 32, 172, 190, 0, 32, 30, 191, 0, 224, 220, 190, 0, 224, 19, 191, 0, 0, 183, 190, 0, 96, 46, 191, 0, 192, 141, 190, 0, 0, 105, 62, 0, 192, 37, 190, 0, 128, 218, 60, 0, 96, 100, 189, 0, 0, 60, 190, 0, 32, 78, 190, 0, 96, 137, 62, 0, 32, 169, 189, 0, 224, 146, 61, 0, 160, 76, 61, 0, 64, 24, 190, 0, 32, 39, 190, 0, 192, 211, 62, 0, 0, 192, 190, 0, 32, 158, 62, 0, 128, 37, 190, 0, 0, 185, 62, 0, 192, 147, 190, 0, 224, 144, 62, 0, 224, 86, 189, 0, 32, 152, 62, 0, 0, 149, 188, 0, 96, 120, 62, 0, 128, 149, 190, 0, 64, 56, 64, 0, 224, 136, 190, 0, 128, 65, 64, 0, 32, 24, 190, 0, 32, 64, 64, 0, 64, 44, 190, 0, 224, 54, 64, 0, 96, 246, 190, 0, 64, 64, 64, 0, 128, 188, 190, 0, 160, 70, 64, 0, 96, 145, 190, 0, 192, 64, 64, 0, 128, 201, 190, 0, 64, 58, 64, 0, 128, 0, 191, 0, 128, 65, 64, 0, 224, 197, 190, 0, 192, 71, 64, 0, 224, 251, 190, 0, 96, 62, 64, 0, 160, 2, 191, 0, 128, 63, 64, 0, 192, 0, 191, 0, 96, 61, 64, 0, 96, 5, 191, 0, 160, 62, 64, 0, 192, 32, 191, 0, 32, 56, 64, 0, 160, 245, 61, 0, 96, 50, 64, 0, 224, 75, 62, 0, 224, 49, 64, 0, 64, 157, 61, 0, 0, 51, 64, 0, 128, 96, 60, 0, 32, 52, 64, 0, 0, 154, 189, 0, 64, 54, 64, 0, 96, 2, 62, 0, 32, 53, 64, 0, 128, 81, 62, 0, 128, 52, 64, 0, 32, 165, 61, 0, 192, 53, 64, 0, 224, 68, 60, 0, 192, 54, 64, 0, 224, 139, 189, 0, 224, 56, 64, 0, 128, 12, 62, 0, 64, 56, 64, 0, 32, 91, 62, 0, 32, 55, 64, 0, 160, 187, 61, 0, 224, 56, 64, 0, 32, 203, 60, 0, 224, 57, 64, 0, 64, 116, 189, 0, 128, 59, 64, 0, 160, 46, 62, 0, 0, 63, 64, 0, 64, 116, 62, 0, 224, 60, 64, 0, 32, 0, 62, 0, 224, 63, 64, 0, 160, 101, 61, 0, 192, 64, 64, 0, 96, 226, 188, 0, 192, 64, 64, 0, 160, 88, 62, 0, 64, 69, 64, 0, 0, 147, 62, 0, 64, 67, 64, 0, 160, 47, 62, 0, 224, 69, 64, 0, 0, 226, 61, 0, 224, 70, 64, 0, 0, 140, 60, 0, 224, 70, 64, 0, 0, 244, 189, 0, 0, 64, 64, 0, 192, 17, 190, 0, 0, 55, 64, 0, 64, 59, 190, 0, 32, 53, 64, 0, 0, 29, 190, 0, 0, 53, 64, 0, 160, 10, 190, 0, 96, 66, 64, 0, 0, 219, 189, 0, 128, 66, 64, 0, 32, 189, 190, 0, 160, 73, 64, 0, 224, 178, 190, 0, 128, 72, 64, 0, 96, 180, 189, 0, 64, 73, 64, 0, 0, 129, 189, 0, 32, 73, 64, 0, 128, 172, 190, 0, 224, 80, 64, 0, 128, 160, 190, 0, 192, 79, 64, 0, 64, 25, 189, 0, 96, 76, 64, 0, 64, 58, 61, 0, 96, 75, 64, 0, 0, 158, 190, 0, 192, 86, 64, 0, 192, 153, 190, 0, 128, 84, 64, 0, 128, 118, 189, 0, 224, 76, 64, 0, 0, 143, 190, 0, 192, 83, 64, 0, 160, 59, 62, 0, 64, 73, 64, 0, 160, 104, 62, 0, 192, 72, 64, 0, 160, 250, 61, 0, 128, 74, 64, 0, 0, 192, 190, 0, 160, 89, 64, 0, 160, 191, 62, 0, 128, 50, 64, 0, 224, 8, 63, 0, 128, 53, 64, 0, 64, 66, 63, 0, 96, 65, 64, 0, 160, 7, 63, 0, 128, 69, 64, 0, 160, 150, 62, 0, 96, 74, 64, 0, 192, 130, 61, 0, 64, 78, 64, 0, 160, 34, 190, 0, 32, 85, 64, 0, 160, 194, 190, 0, 128, 93, 64, 0, 0, 49, 63, 0, 224, 188, 191, 0, 160, 55, 63, 0, 160, 194, 191, 0, 160, 245, 62, 0, 224, 183, 191, 0, 160, 131, 62, 0, 160, 178, 191, 0, 64, 34, 61, 0, 32, 173, 191, 0, 192, 48, 190, 0, 224, 164, 191, 0, 96, 195, 190, 0, 0, 156, 191, 0, 32, 23, 191, 0, 0, 147, 191, 0, 224, 71, 191, 0, 224, 136, 191, 0, 160, 121, 191, 0, 128, 122, 191, 0, 192, 149, 191, 0, 0, 98, 191, 0, 160, 174, 191, 0, 192, 72, 191, 0, 64, 199, 191, 0, 224, 46, 191, 0, 128, 209, 191, 0, 160, 85, 191, 0, 224, 219, 191, 0, 96, 124, 191, 0, 224, 230, 191, 0, 96, 145, 191, 0, 160, 253, 191, 0, 0, 184, 191, 0, 32, 242, 191, 0, 192, 164, 191, 0, 0, 4, 192, 0, 128, 202, 191, 0, 0, 12, 192, 0, 96, 216, 191, 0, 192, 19, 192, 0, 96, 230, 191, 0, 0, 73, 63, 0, 224, 46, 191, 0, 96, 113, 63, 0, 160, 128, 191, 0, 64, 93, 63, 0, 32, 88, 191, 0, 192, 130, 63, 0, 96, 149, 191, 0, 64, 140, 63, 0, 160, 170, 191, 0, 96, 151, 63, 0, 128, 191, 191, 0, 160, 157, 63, 0, 224, 212, 191, 0, 128, 162, 63, 0, 96, 235, 191, 0, 96, 167, 63, 0, 0, 1, 192, 0, 32, 196, 63, 0, 224, 251, 191, 0, 224, 224, 63, 0, 128, 246, 191, 0, 160, 253, 63, 0, 64, 241, 191, 0, 64, 13, 64, 0, 224, 235, 191, 0, 192, 27, 64, 0, 224, 231, 191, 0, 64, 42, 64, 0, 192, 227, 191, 0, 160, 56, 64, 0, 192, 222, 191, 0, 64, 71, 64, 0, 224, 217, 191, 0, 32, 86, 64, 0, 64, 216, 191, 0, 96, 63, 190, 0, 96, 46, 191, 0, 0, 19, 61, 0, 64, 14, 191, 0, 96, 131, 62, 0, 0, 214, 190, 0, 64, 243, 62, 0, 32, 147, 190, 0, 160, 48, 63, 0, 128, 33, 190, 0, 96, 102, 63, 0, 32, 172, 188, 0, 224, 140, 63, 0, 192, 243, 61, 0, 192, 166, 63, 0, 128, 133, 62, 0, 0, 157, 63, 0, 96, 224, 62, 0, 32, 147, 63, 0, 0, 28, 63, 0, 224, 136, 63, 0, 0, 71, 63, 0, 192, 124, 63, 0, 128, 111, 63, 0, 160, 102, 63, 0, 96, 138, 63, 0, 0, 86, 63, 0, 128, 158, 63, 0, 192, 61, 63, 0, 160, 178, 63, 0, 96, 37, 63, 0, 192, 198, 63, 0, 0, 19, 63, 0, 32, 220, 63, 0, 160, 4, 63, 0, 0, 242, 63, 0, 32, 14, 63, 0, 160, 5, 64, 0, 96, 17, 63, 0, 96, 18, 64, 0, 160, 29, 63, 0, 64, 30, 64, 0, 0, 41, 63, 0, 32, 42, 64, 0, 64, 53, 63, 0, 192, 53, 64), +"format": 4115, "index_count": 7062, -"material": ExtResource( 4 ), +"index_data": PackedByteArray(0, 0, 2, 0, 1, 0, 0, 0, 3, 0, 2, 0, 4, 0, 6, 0, 5, 0, 4, 0, 7, 0, 6, 0, 8, 0, 10, 0, 9, 0, 8, 0, 11, 0, 10, 0, 12, 0, 14, 0, 13, 0, 12, 0, 15, 0, 14, 0, 13, 0, 17, 0, 16, 0, 13, 0, 14, 0, 17, 0, 16, 0, 19, 0, 18, 0, 16, 0, 17, 0, 19, 0, 18, 0, 21, 0, 20, 0, 18, 0, 19, 0, 21, 0, 20, 0, 23, 0, 22, 0, 20, 0, 21, 0, 23, 0, 22, 0, 25, 0, 24, 0, 22, 0, 23, 0, 25, 0, 15, 0, 26, 0, 14, 0, 15, 0, 27, 0, 26, 0, 14, 0, 28, 0, 17, 0, 14, 0, 26, 0, 28, 0, 17, 0, 29, 0, 19, 0, 17, 0, 28, 0, 29, 0, 19, 0, 30, 0, 21, 0, 19, 0, 29, 0, 30, 0, 21, 0, 31, 0, 23, 0, 21, 0, 30, 0, 31, 0, 23, 0, 32, 0, 25, 0, 23, 0, 31, 0, 32, 0, 27, 0, 33, 0, 26, 0, 27, 0, 34, 0, 33, 0, 26, 0, 35, 0, 28, 0, 26, 0, 33, 0, 35, 0, 28, 0, 36, 0, 29, 0, 28, 0, 35, 0, 36, 0, 29, 0, 37, 0, 30, 0, 29, 0, 36, 0, 37, 0, 30, 0, 38, 0, 31, 0, 30, 0, 37, 0, 38, 0, 31, 0, 39, 0, 32, 0, 31, 0, 38, 0, 39, 0, 33, 0, 40, 0, 35, 0, 33, 0, 41, 0, 40, 0, 35, 0, 42, 0, 36, 0, 35, 0, 40, 0, 42, 0, 36, 0, 43, 0, 37, 0, 36, 0, 42, 0, 43, 0, 37, 0, 44, 0, 38, 0, 37, 0, 43, 0, 44, 0, 38, 0, 45, 0, 39, 0, 38, 0, 44, 0, 45, 0, 41, 0, 46, 0, 40, 0, 41, 0, 47, 0, 46, 0, 40, 0, 48, 0, 42, 0, 40, 0, 46, 0, 48, 0, 42, 0, 49, 0, 43, 0, 42, 0, 48, 0, 49, 0, 43, 0, 50, 0, 44, 0, 43, 0, 49, 0, 50, 0, 44, 0, 51, 0, 45, 0, 44, 0, 50, 0, 51, 0, 50, 0, 52, 0, 51, 0, 50, 0, 53, 0, 52, 0, 53, 0, 54, 0, 52, 0, 53, 0, 55, 0, 54, 0, 55, 0, 56, 0, 54, 0, 55, 0, 57, 0, 56, 0, 57, 0, 58, 0, 56, 0, 57, 0, 59, 0, 58, 0, 59, 0, 60, 0, 58, 0, 59, 0, 61, 0, 60, 0, 59, 0, 62, 0, 61, 0, 59, 0, 63, 0, 62, 0, 57, 0, 63, 0, 59, 0, 57, 0, 64, 0, 63, 0, 55, 0, 64, 0, 57, 0, 55, 0, 65, 0, 64, 0, 63, 0, 66, 0, 62, 0, 63, 0, 67, 0, 66, 0, 64, 0, 67, 0, 63, 0, 64, 0, 68, 0, 67, 0, 65, 0, 68, 0, 64, 0, 65, 0, 69, 0, 68, 0, 67, 0, 70, 0, 66, 0, 67, 0, 71, 0, 70, 0, 68, 0, 71, 0, 67, 0, 68, 0, 72, 0, 71, 0, 69, 0, 72, 0, 68, 0, 69, 0, 73, 0, 72, 0, 74, 0, 75, 0, 70, 0, 71, 0, 74, 0, 70, 0, 71, 0, 76, 0, 74, 0, 72, 0, 76, 0, 71, 0, 72, 0, 77, 0, 76, 0, 73, 0, 77, 0, 72, 0, 73, 0, 78, 0, 77, 0, 75, 0, 80, 0, 79, 0, 75, 0, 81, 0, 80, 0, 76, 0, 82, 0, 74, 0, 76, 0, 83, 0, 82, 0, 77, 0, 83, 0, 76, 0, 77, 0, 84, 0, 83, 0, 78, 0, 84, 0, 77, 0, 78, 0, 85, 0, 84, 0, 81, 0, 86, 0, 80, 0, 81, 0, 87, 0, 86, 0, 83, 0, 88, 0, 82, 0, 83, 0, 89, 0, 88, 0, 84, 0, 89, 0, 83, 0, 84, 0, 90, 0, 89, 0, 85, 0, 90, 0, 84, 0, 85, 0, 91, 0, 90, 0, 50, 0, 78, 0, 73, 0, 50, 0, 49, 0, 78, 0, 53, 0, 50, 0, 65, 0, 65, 0, 73, 0, 69, 0, 65, 0, 50, 0, 73, 0, 55, 0, 53, 0, 65, 0, 78, 0, 49, 0, 85, 0, 49, 0, 91, 0, 85, 0, 49, 0, 48, 0, 91, 0, 74, 0, 81, 0, 75, 0, 74, 0, 82, 0, 81, 0, 82, 0, 87, 0, 81, 0, 82, 0, 88, 0, 87, 0, 79, 0, 92, 0, 75, 0, 70, 0, 75, 0, 92, 0, 54, 0, 93, 0, 52, 0, 54, 0, 94, 0, 93, 0, 52, 0, 95, 0, 51, 0, 52, 0, 93, 0, 95, 0, 51, 0, 96, 0, 45, 0, 51, 0, 95, 0, 96, 0, 45, 0, 97, 0, 39, 0, 45, 0, 96, 0, 97, 0, 39, 0, 98, 0, 32, 0, 39, 0, 97, 0, 98, 0, 32, 0, 99, 0, 25, 0, 32, 0, 98, 0, 99, 0, 94, 0, 101, 0, 100, 0, 94, 0, 102, 0, 101, 0, 100, 0, 104, 0, 103, 0, 100, 0, 101, 0, 104, 0, 103, 0, 106, 0, 105, 0, 103, 0, 104, 0, 106, 0, 105, 0, 108, 0, 107, 0, 105, 0, 106, 0, 108, 0, 107, 0, 110, 0, 109, 0, 107, 0, 108, 0, 110, 0, 109, 0, 112, 0, 111, 0, 109, 0, 110, 0, 112, 0, 102, 0, 113, 0, 101, 0, 102, 0, 114, 0, 113, 0, 101, 0, 115, 0, 104, 0, 101, 0, 113, 0, 115, 0, 104, 0, 116, 0, 106, 0, 104, 0, 115, 0, 116, 0, 106, 0, 117, 0, 108, 0, 106, 0, 116, 0, 117, 0, 108, 0, 118, 0, 110, 0, 108, 0, 117, 0, 118, 0, 110, 0, 119, 0, 112, 0, 110, 0, 118, 0, 119, 0, 114, 0, 120, 0, 113, 0, 114, 0, 121, 0, 120, 0, 113, 0, 122, 0, 115, 0, 113, 0, 120, 0, 122, 0, 115, 0, 123, 0, 116, 0, 115, 0, 122, 0, 123, 0, 116, 0, 124, 0, 117, 0, 116, 0, 123, 0, 124, 0, 117, 0, 125, 0, 118, 0, 117, 0, 124, 0, 125, 0, 118, 0, 126, 0, 119, 0, 118, 0, 125, 0, 126, 0, 25, 0, 99, 0, 127, 0, 24, 0, 127, 0, 128, 0, 24, 0, 25, 0, 127, 0, 112, 0, 129, 0, 111, 0, 112, 0, 130, 0, 129, 0, 54, 0, 56, 0, 94, 0, 131, 0, 94, 0, 56, 0, 58, 0, 131, 0, 56, 0, 60, 0, 131, 0, 58, 0, 60, 0, 132, 0, 131, 0, 102, 0, 131, 0, 133, 0, 102, 0, 94, 0, 131, 0, 134, 0, 102, 0, 133, 0, 134, 0, 135, 0, 102, 0, 136, 0, 102, 0, 135, 0, 136, 0, 114, 0, 102, 0, 136, 0, 137, 0, 114, 0, 132, 0, 60, 0, 138, 0, 139, 0, 141, 0, 140, 0, 139, 0, 142, 0, 141, 0, 140, 0, 144, 0, 143, 0, 140, 0, 141, 0, 144, 0, 143, 0, 146, 0, 145, 0, 143, 0, 144, 0, 146, 0, 145, 0, 148, 0, 147, 0, 145, 0, 146, 0, 148, 0, 142, 0, 149, 0, 141, 0, 142, 0, 150, 0, 149, 0, 141, 0, 151, 0, 144, 0, 141, 0, 149, 0, 151, 0, 144, 0, 152, 0, 146, 0, 144, 0, 151, 0, 152, 0, 146, 0, 153, 0, 148, 0, 146, 0, 152, 0, 153, 0, 150, 0, 154, 0, 149, 0, 150, 0, 155, 0, 154, 0, 149, 0, 156, 0, 151, 0, 149, 0, 154, 0, 156, 0, 151, 0, 157, 0, 152, 0, 151, 0, 156, 0, 157, 0, 152, 0, 158, 0, 153, 0, 152, 0, 157, 0, 158, 0, 155, 0, 159, 0, 154, 0, 155, 0, 160, 0, 159, 0, 154, 0, 161, 0, 156, 0, 154, 0, 159, 0, 161, 0, 156, 0, 162, 0, 157, 0, 156, 0, 161, 0, 162, 0, 157, 0, 163, 0, 158, 0, 157, 0, 162, 0, 163, 0, 160, 0, 164, 0, 159, 0, 160, 0, 165, 0, 164, 0, 159, 0, 166, 0, 161, 0, 159, 0, 164, 0, 166, 0, 161, 0, 167, 0, 162, 0, 161, 0, 166, 0, 167, 0, 162, 0, 168, 0, 163, 0, 162, 0, 167, 0, 168, 0, 165, 0, 169, 0, 164, 0, 165, 0, 170, 0, 169, 0, 164, 0, 171, 0, 166, 0, 164, 0, 169, 0, 171, 0, 166, 0, 172, 0, 167, 0, 166, 0, 171, 0, 172, 0, 167, 0, 173, 0, 168, 0, 167, 0, 172, 0, 173, 0, 170, 0, 174, 0, 169, 0, 170, 0, 175, 0, 174, 0, 169, 0, 176, 0, 171, 0, 169, 0, 174, 0, 176, 0, 171, 0, 177, 0, 172, 0, 171, 0, 176, 0, 177, 0, 172, 0, 178, 0, 173, 0, 172, 0, 177, 0, 178, 0, 170, 0, 179, 0, 175, 0, 170, 0, 180, 0, 179, 0, 165, 0, 180, 0, 170, 0, 165, 0, 181, 0, 180, 0, 160, 0, 181, 0, 165, 0, 160, 0, 182, 0, 181, 0, 155, 0, 182, 0, 160, 0, 155, 0, 183, 0, 182, 0, 150, 0, 183, 0, 155, 0, 150, 0, 184, 0, 183, 0, 142, 0, 184, 0, 150, 0, 142, 0, 185, 0, 184, 0, 142, 0, 186, 0, 185, 0, 142, 0, 139, 0, 186, 0, 139, 0, 187, 0, 186, 0, 183, 0, 188, 0, 182, 0, 183, 0, 184, 0, 188, 0, 185, 0, 186, 0, 184, 0, 186, 0, 188, 0, 184, 0, 188, 0, 181, 0, 182, 0, 188, 0, 189, 0, 181, 0, 190, 0, 181, 0, 189, 0, 92, 0, 181, 0, 190, 0, 92, 0, 180, 0, 181, 0, 92, 0, 79, 0, 180, 0, 79, 0, 179, 0, 180, 0, 79, 0, 80, 0, 179, 0, 191, 0, 193, 0, 192, 0, 191, 0, 194, 0, 193, 0, 192, 0, 196, 0, 195, 0, 192, 0, 193, 0, 196, 0, 194, 0, 197, 0, 193, 0, 194, 0, 198, 0, 197, 0, 193, 0, 199, 0, 196, 0, 193, 0, 197, 0, 199, 0, 198, 0, 200, 0, 197, 0, 198, 0, 201, 0, 200, 0, 197, 0, 202, 0, 199, 0, 197, 0, 200, 0, 202, 0, 195, 0, 15, 0, 12, 0, 195, 0, 196, 0, 15, 0, 27, 0, 196, 0, 199, 0, 27, 0, 15, 0, 196, 0, 34, 0, 199, 0, 202, 0, 34, 0, 27, 0, 199, 0, 201, 0, 203, 0, 200, 0, 201, 0, 204, 0, 203, 0, 200, 0, 205, 0, 202, 0, 200, 0, 203, 0, 205, 0, 202, 0, 205, 0, 34, 0, 201, 0, 206, 0, 204, 0, 201, 0, 207, 0, 206, 0, 198, 0, 207, 0, 201, 0, 198, 0, 208, 0, 207, 0, 194, 0, 208, 0, 198, 0, 194, 0, 209, 0, 208, 0, 207, 0, 210, 0, 206, 0, 207, 0, 211, 0, 210, 0, 208, 0, 211, 0, 207, 0, 208, 0, 212, 0, 211, 0, 209, 0, 212, 0, 208, 0, 209, 0, 213, 0, 212, 0, 9, 0, 215, 0, 214, 0, 9, 0, 10, 0, 215, 0, 216, 0, 7, 0, 191, 0, 191, 0, 11, 0, 8, 0, 11, 0, 7, 0, 4, 0, 191, 0, 7, 0, 11, 0, 11, 0, 5, 0, 10, 0, 11, 0, 4, 0, 5, 0, 191, 0, 9, 0, 217, 0, 191, 0, 8, 0, 9, 0, 7, 0, 218, 0, 6, 0, 7, 0, 216, 0, 218, 0, 5, 0, 220, 0, 219, 0, 5, 0, 6, 0, 220, 0, 194, 0, 217, 0, 209, 0, 194, 0, 191, 0, 217, 0, 10, 0, 219, 0, 215, 0, 10, 0, 5, 0, 219, 0, 6, 0, 221, 0, 220, 0, 6, 0, 218, 0, 221, 0, 214, 0, 223, 0, 222, 0, 214, 0, 215, 0, 223, 0, 219, 0, 225, 0, 224, 0, 219, 0, 220, 0, 225, 0, 215, 0, 224, 0, 223, 0, 215, 0, 219, 0, 224, 0, 220, 0, 226, 0, 225, 0, 220, 0, 221, 0, 226, 0, 222, 0, 228, 0, 227, 0, 222, 0, 223, 0, 228, 0, 224, 0, 230, 0, 229, 0, 224, 0, 225, 0, 230, 0, 223, 0, 229, 0, 228, 0, 223, 0, 224, 0, 229, 0, 225, 0, 231, 0, 230, 0, 225, 0, 226, 0, 231, 0, 232, 0, 227, 0, 233, 0, 232, 0, 222, 0, 227, 0, 230, 0, 235, 0, 234, 0, 230, 0, 231, 0, 235, 0, 233, 0, 213, 0, 232, 0, 213, 0, 237, 0, 236, 0, 213, 0, 233, 0, 237, 0, 213, 0, 238, 0, 212, 0, 213, 0, 236, 0, 238, 0, 212, 0, 238, 0, 211, 0, 234, 0, 240, 0, 239, 0, 234, 0, 235, 0, 240, 0, 217, 0, 9, 0, 214, 0, 217, 0, 222, 0, 232, 0, 217, 0, 214, 0, 222, 0, 233, 0, 241, 0, 237, 0, 237, 0, 243, 0, 242, 0, 237, 0, 241, 0, 243, 0, 239, 0, 245, 0, 244, 0, 239, 0, 240, 0, 245, 0, 238, 0, 246, 0, 211, 0, 238, 0, 247, 0, 246, 0, 236, 0, 242, 0, 248, 0, 236, 0, 237, 0, 242, 0, 236, 0, 247, 0, 238, 0, 236, 0, 248, 0, 247, 0, 211, 0, 249, 0, 210, 0, 211, 0, 246, 0, 249, 0, 213, 0, 209, 0, 232, 0, 217, 0, 232, 0, 209, 0, 227, 0, 228, 0, 241, 0, 229, 0, 234, 0, 241, 0, 229, 0, 230, 0, 234, 0, 228, 0, 229, 0, 241, 0, 233, 0, 227, 0, 241, 0, 241, 0, 234, 0, 239, 0, 241, 0, 250, 0, 243, 0, 241, 0, 244, 0, 250, 0, 241, 0, 239, 0, 244, 0, 251, 0, 253, 0, 252, 0, 218, 0, 253, 0, 251, 0, 218, 0, 216, 0, 253, 0, 245, 0, 255, 0, 254, 0, 245, 0, 240, 0, 255, 0, 240, 0, 0, 1, 255, 0, 240, 0, 235, 0, 0, 1, 235, 0, 1, 1, 0, 1, 235, 0, 231, 0, 1, 1, 231, 0, 2, 1, 1, 1, 231, 0, 226, 0, 2, 1, 254, 0, 4, 1, 3, 1, 254, 0, 255, 0, 4, 1, 255, 0, 5, 1, 4, 1, 255, 0, 0, 1, 5, 1, 0, 1, 6, 1, 5, 1, 0, 1, 1, 1, 6, 1, 1, 1, 7, 1, 6, 1, 1, 1, 2, 1, 7, 1, 3, 1, 9, 1, 8, 1, 3, 1, 4, 1, 9, 1, 4, 1, 10, 1, 9, 1, 4, 1, 5, 1, 10, 1, 5, 1, 11, 1, 10, 1, 5, 1, 6, 1, 11, 1, 6, 1, 12, 1, 11, 1, 6, 1, 7, 1, 12, 1, 8, 1, 14, 1, 13, 1, 8, 1, 9, 1, 14, 1, 9, 1, 15, 1, 14, 1, 9, 1, 10, 1, 15, 1, 10, 1, 16, 1, 15, 1, 10, 1, 11, 1, 16, 1, 11, 1, 17, 1, 16, 1, 11, 1, 12, 1, 17, 1, 13, 1, 19, 1, 18, 1, 13, 1, 14, 1, 19, 1, 14, 1, 20, 1, 19, 1, 14, 1, 15, 1, 20, 1, 15, 1, 21, 1, 20, 1, 15, 1, 16, 1, 21, 1, 16, 1, 22, 1, 21, 1, 16, 1, 17, 1, 22, 1, 18, 1, 24, 1, 23, 1, 18, 1, 19, 1, 24, 1, 19, 1, 25, 1, 24, 1, 19, 1, 20, 1, 25, 1, 20, 1, 26, 1, 25, 1, 20, 1, 21, 1, 26, 1, 21, 1, 27, 1, 26, 1, 21, 1, 22, 1, 27, 1, 226, 0, 221, 0, 2, 1, 221, 0, 251, 0, 2, 1, 221, 0, 218, 0, 251, 0, 2, 1, 251, 0, 7, 1, 252, 0, 7, 1, 251, 0, 252, 0, 12, 1, 7, 1, 12, 1, 252, 0, 17, 1, 22, 1, 17, 1, 252, 0, 28, 1, 29, 1, 252, 0, 28, 1, 30, 1, 29, 1, 31, 1, 30, 1, 28, 1, 31, 1, 32, 1, 30, 1, 30, 1, 33, 1, 29, 1, 30, 1, 34, 1, 33, 1, 32, 1, 34, 1, 30, 1, 32, 1, 35, 1, 34, 1, 34, 1, 36, 1, 33, 1, 34, 1, 37, 1, 36, 1, 35, 1, 37, 1, 34, 1, 35, 1, 38, 1, 37, 1, 130, 0, 40, 1, 39, 1, 130, 0, 112, 0, 40, 1, 39, 1, 40, 1, 41, 1, 31, 1, 41, 1, 32, 1, 35, 1, 41, 1, 40, 1, 35, 1, 32, 1, 41, 1, 112, 0, 119, 0, 40, 1, 42, 1, 119, 0, 126, 0, 121, 0, 43, 1, 120, 0, 121, 0, 44, 1, 43, 1, 120, 0, 45, 1, 122, 0, 120, 0, 43, 1, 45, 1, 122, 0, 46, 1, 123, 0, 122, 0, 45, 1, 46, 1, 123, 0, 47, 1, 124, 0, 123, 0, 46, 1, 47, 1, 124, 0, 48, 1, 125, 0, 124, 0, 47, 1, 48, 1, 125, 0, 49, 1, 126, 0, 125, 0, 48, 1, 49, 1, 44, 1, 50, 1, 43, 1, 44, 1, 51, 1, 50, 1, 43, 1, 52, 1, 45, 1, 43, 1, 50, 1, 52, 1, 45, 1, 53, 1, 46, 1, 45, 1, 52, 1, 53, 1, 46, 1, 54, 1, 47, 1, 46, 1, 53, 1, 54, 1, 47, 1, 55, 1, 48, 1, 47, 1, 54, 1, 55, 1, 48, 1, 56, 1, 49, 1, 48, 1, 55, 1, 56, 1, 57, 1, 59, 1, 58, 1, 57, 1, 60, 1, 59, 1, 2, 0, 126, 0, 49, 1, 2, 0, 1, 0, 126, 0, 42, 1, 126, 0, 1, 0, 0, 0, 61, 1, 1, 0, 61, 1, 42, 1, 1, 0, 61, 1, 62, 1, 42, 1, 42, 1, 62, 1, 63, 1, 64, 1, 66, 1, 65, 1, 66, 1, 67, 1, 65, 1, 66, 1, 68, 1, 67, 1, 65, 1, 70, 1, 69, 1, 65, 1, 71, 1, 70, 1, 72, 1, 71, 1, 65, 1, 72, 1, 73, 1, 71, 1, 72, 1, 65, 1, 67, 1, 74, 1, 71, 1, 73, 1, 71, 1, 75, 1, 70, 1, 71, 1, 76, 1, 75, 1, 71, 1, 74, 1, 76, 1, 74, 1, 77, 1, 76, 1, 74, 1, 78, 1, 77, 1, 79, 1, 81, 1, 80, 1, 79, 1, 82, 1, 81, 1, 80, 1, 84, 1, 83, 1, 80, 1, 81, 1, 84, 1, 83, 1, 76, 1, 77, 1, 83, 1, 84, 1, 76, 1, 75, 1, 84, 1, 81, 1, 75, 1, 76, 1, 84, 1, 81, 1, 82, 1, 75, 1, 75, 1, 85, 1, 70, 1, 75, 1, 86, 1, 85, 1, 86, 1, 87, 1, 85, 1, 86, 1, 88, 1, 87, 1, 89, 1, 85, 1, 87, 1, 69, 1, 85, 1, 89, 1, 69, 1, 70, 1, 85, 1, 37, 1, 91, 1, 90, 1, 92, 1, 69, 1, 89, 1, 90, 1, 91, 1, 69, 1, 90, 1, 69, 1, 92, 1, 79, 1, 93, 1, 82, 1, 82, 1, 86, 1, 75, 1, 82, 1, 93, 1, 86, 1, 93, 1, 94, 1, 86, 1, 93, 1, 95, 1, 94, 1, 86, 1, 94, 1, 88, 1, 88, 1, 96, 1, 87, 1, 88, 1, 97, 1, 96, 1, 98, 1, 99, 1, 96, 1, 99, 1, 101, 1, 100, 1, 101, 1, 103, 1, 102, 1, 103, 1, 105, 1, 104, 1, 106, 1, 99, 1, 98, 1, 99, 1, 103, 1, 101, 1, 107, 1, 105, 1, 103, 1, 107, 1, 99, 1, 106, 1, 107, 1, 103, 1, 99, 1, 87, 1, 96, 1, 89, 1, 96, 1, 92, 1, 89, 1, 96, 1, 99, 1, 92, 1, 108, 1, 98, 1, 109, 1, 109, 1, 98, 1, 110, 1, 96, 1, 110, 1, 98, 1, 96, 1, 97, 1, 110, 1, 94, 1, 97, 1, 88, 1, 94, 1, 111, 1, 97, 1, 110, 1, 97, 1, 111, 1, 106, 1, 112, 1, 107, 1, 113, 1, 115, 1, 114, 1, 105, 1, 107, 1, 112, 1, 115, 1, 116, 1, 114, 1, 115, 1, 117, 1, 116, 1, 117, 1, 118, 1, 116, 1, 117, 1, 119, 1, 118, 1, 104, 1, 121, 1, 120, 1, 104, 1, 105, 1, 121, 1, 122, 1, 124, 1, 123, 1, 122, 1, 125, 1, 124, 1, 125, 1, 126, 1, 124, 1, 125, 1, 127, 1, 126, 1, 127, 1, 128, 1, 126, 1, 127, 1, 129, 1, 128, 1, 129, 1, 130, 1, 128, 1, 129, 1, 131, 1, 130, 1, 131, 1, 132, 1, 130, 1, 131, 1, 133, 1, 132, 1, 133, 1, 134, 1, 132, 1, 133, 1, 135, 1, 134, 1, 135, 1, 136, 1, 134, 1, 135, 1, 137, 1, 136, 1, 137, 1, 138, 1, 136, 1, 137, 1, 139, 1, 138, 1, 140, 1, 142, 1, 141, 1, 140, 1, 143, 1, 142, 1, 144, 1, 141, 1, 145, 1, 144, 1, 140, 1, 141, 1, 123, 1, 147, 1, 146, 1, 123, 1, 124, 1, 147, 1, 124, 1, 148, 1, 147, 1, 124, 1, 126, 1, 148, 1, 126, 1, 149, 1, 148, 1, 126, 1, 128, 1, 149, 1, 128, 1, 150, 1, 149, 1, 128, 1, 130, 1, 150, 1, 130, 1, 151, 1, 150, 1, 130, 1, 132, 1, 151, 1, 132, 1, 152, 1, 151, 1, 132, 1, 134, 1, 152, 1, 134, 1, 153, 1, 152, 1, 134, 1, 136, 1, 153, 1, 136, 1, 154, 1, 153, 1, 136, 1, 138, 1, 154, 1, 141, 1, 156, 1, 155, 1, 141, 1, 142, 1, 156, 1, 145, 1, 155, 1, 157, 1, 145, 1, 141, 1, 155, 1, 146, 1, 159, 1, 158, 1, 146, 1, 147, 1, 159, 1, 147, 1, 160, 1, 159, 1, 147, 1, 148, 1, 160, 1, 148, 1, 161, 1, 160, 1, 148, 1, 149, 1, 161, 1, 149, 1, 162, 1, 161, 1, 149, 1, 150, 1, 162, 1, 150, 1, 163, 1, 162, 1, 150, 1, 151, 1, 163, 1, 151, 1, 164, 1, 163, 1, 151, 1, 152, 1, 164, 1, 152, 1, 165, 1, 164, 1, 152, 1, 153, 1, 165, 1, 153, 1, 166, 1, 165, 1, 153, 1, 154, 1, 166, 1, 155, 1, 168, 1, 167, 1, 155, 1, 156, 1, 168, 1, 157, 1, 167, 1, 169, 1, 157, 1, 155, 1, 167, 1, 158, 1, 171, 1, 170, 1, 158, 1, 159, 1, 171, 1, 159, 1, 172, 1, 171, 1, 159, 1, 160, 1, 172, 1, 160, 1, 173, 1, 172, 1, 160, 1, 161, 1, 173, 1, 161, 1, 174, 1, 173, 1, 161, 1, 162, 1, 174, 1, 162, 1, 175, 1, 174, 1, 162, 1, 163, 1, 175, 1, 163, 1, 176, 1, 175, 1, 163, 1, 164, 1, 176, 1, 164, 1, 177, 1, 176, 1, 164, 1, 165, 1, 177, 1, 165, 1, 178, 1, 177, 1, 165, 1, 166, 1, 178, 1, 167, 1, 180, 1, 179, 1, 167, 1, 168, 1, 180, 1, 169, 1, 179, 1, 181, 1, 169, 1, 167, 1, 179, 1, 170, 1, 183, 1, 182, 1, 170, 1, 171, 1, 183, 1, 171, 1, 184, 1, 183, 1, 171, 1, 172, 1, 184, 1, 172, 1, 185, 1, 184, 1, 172, 1, 173, 1, 185, 1, 173, 1, 186, 1, 185, 1, 173, 1, 174, 1, 186, 1, 174, 1, 187, 1, 186, 1, 174, 1, 175, 1, 187, 1, 175, 1, 188, 1, 187, 1, 175, 1, 176, 1, 188, 1, 176, 1, 189, 1, 188, 1, 176, 1, 177, 1, 189, 1, 177, 1, 190, 1, 189, 1, 177, 1, 178, 1, 190, 1, 179, 1, 192, 1, 191, 1, 179, 1, 180, 1, 192, 1, 181, 1, 191, 1, 193, 1, 181, 1, 179, 1, 191, 1, 182, 1, 195, 1, 194, 1, 182, 1, 183, 1, 195, 1, 183, 1, 196, 1, 195, 1, 183, 1, 184, 1, 196, 1, 184, 1, 197, 1, 196, 1, 184, 1, 185, 1, 197, 1, 185, 1, 198, 1, 197, 1, 185, 1, 186, 1, 198, 1, 186, 1, 199, 1, 198, 1, 186, 1, 187, 1, 199, 1, 187, 1, 200, 1, 199, 1, 187, 1, 188, 1, 200, 1, 188, 1, 201, 1, 200, 1, 188, 1, 189, 1, 201, 1, 189, 1, 202, 1, 201, 1, 189, 1, 190, 1, 202, 1, 191, 1, 204, 1, 203, 1, 191, 1, 192, 1, 204, 1, 193, 1, 203, 1, 205, 1, 193, 1, 191, 1, 203, 1, 194, 1, 207, 1, 206, 1, 194, 1, 195, 1, 207, 1, 195, 1, 208, 1, 207, 1, 195, 1, 196, 1, 208, 1, 196, 1, 209, 1, 208, 1, 196, 1, 197, 1, 209, 1, 197, 1, 210, 1, 209, 1, 197, 1, 198, 1, 210, 1, 198, 1, 211, 1, 210, 1, 198, 1, 199, 1, 211, 1, 199, 1, 212, 1, 211, 1, 199, 1, 200, 1, 212, 1, 200, 1, 213, 1, 212, 1, 200, 1, 201, 1, 213, 1, 201, 1, 214, 1, 213, 1, 201, 1, 202, 1, 214, 1, 203, 1, 216, 1, 215, 1, 203, 1, 204, 1, 216, 1, 205, 1, 215, 1, 217, 1, 205, 1, 203, 1, 215, 1, 192, 1, 194, 1, 204, 1, 192, 1, 182, 1, 194, 1, 142, 1, 146, 1, 156, 1, 142, 1, 123, 1, 146, 1, 156, 1, 158, 1, 168, 1, 156, 1, 146, 1, 158, 1, 168, 1, 170, 1, 180, 1, 168, 1, 158, 1, 170, 1, 180, 1, 182, 1, 192, 1, 180, 1, 170, 1, 182, 1, 204, 1, 206, 1, 216, 1, 204, 1, 194, 1, 206, 1, 143, 1, 123, 1, 142, 1, 143, 1, 122, 1, 123, 1, 181, 1, 219, 1, 218, 1, 181, 1, 193, 1, 219, 1, 218, 1, 221, 1, 220, 1, 218, 1, 219, 1, 221, 1, 220, 1, 223, 1, 222, 1, 220, 1, 221, 1, 223, 1, 181, 1, 218, 1, 169, 1, 169, 1, 220, 1, 157, 1, 169, 1, 218, 1, 220, 1, 157, 1, 222, 1, 145, 1, 157, 1, 220, 1, 222, 1, 224, 1, 144, 1, 225, 1, 224, 1, 225, 1, 226, 1, 226, 1, 225, 1, 227, 1, 227, 1, 117, 1, 115, 1, 227, 1, 225, 1, 117, 1, 144, 1, 222, 1, 225, 1, 144, 1, 145, 1, 222, 1, 222, 1, 223, 1, 119, 1, 223, 1, 221, 1, 205, 1, 205, 1, 219, 1, 193, 1, 205, 1, 221, 1, 219, 1, 205, 1, 217, 1, 223, 1, 225, 1, 228, 1, 117, 1, 225, 1, 222, 1, 228, 1, 222, 1, 119, 1, 228, 1, 117, 1, 228, 1, 119, 1, 229, 1, 231, 1, 230, 1, 229, 1, 232, 1, 231, 1, 233, 1, 230, 1, 234, 1, 233, 1, 229, 1, 230, 1, 235, 1, 234, 1, 236, 1, 235, 1, 233, 1, 234, 1, 237, 1, 236, 1, 238, 1, 237, 1, 235, 1, 236, 1, 239, 1, 238, 1, 240, 1, 239, 1, 237, 1, 238, 1, 230, 1, 242, 1, 241, 1, 230, 1, 231, 1, 242, 1, 234, 1, 241, 1, 243, 1, 234, 1, 230, 1, 241, 1, 236, 1, 243, 1, 244, 1, 236, 1, 234, 1, 243, 1, 238, 1, 244, 1, 245, 1, 238, 1, 236, 1, 244, 1, 240, 1, 245, 1, 246, 1, 240, 1, 238, 1, 245, 1, 241, 1, 248, 1, 247, 1, 241, 1, 242, 1, 248, 1, 243, 1, 247, 1, 249, 1, 243, 1, 241, 1, 247, 1, 244, 1, 249, 1, 250, 1, 244, 1, 243, 1, 249, 1, 245, 1, 250, 1, 251, 1, 245, 1, 244, 1, 250, 1, 246, 1, 251, 1, 252, 1, 246, 1, 245, 1, 251, 1, 247, 1, 254, 1, 253, 1, 247, 1, 248, 1, 254, 1, 249, 1, 253, 1, 255, 1, 249, 1, 247, 1, 253, 1, 250, 1, 255, 1, 0, 2, 250, 1, 249, 1, 255, 1, 251, 1, 0, 2, 1, 2, 251, 1, 250, 1, 0, 2, 252, 1, 1, 2, 2, 2, 252, 1, 251, 1, 1, 2, 254, 1, 248, 1, 3, 2, 3, 2, 5, 2, 4, 2, 3, 2, 248, 1, 5, 2, 6, 2, 231, 1, 232, 1, 6, 2, 7, 2, 231, 1, 8, 2, 7, 2, 6, 2, 9, 2, 7, 2, 8, 2, 9, 2, 10, 2, 7, 2, 9, 2, 11, 2, 10, 2, 12, 2, 10, 2, 11, 2, 12, 2, 13, 2, 10, 2, 14, 2, 13, 2, 15, 2, 14, 2, 10, 2, 13, 2, 231, 1, 10, 2, 242, 1, 231, 1, 7, 2, 10, 2, 242, 1, 5, 2, 248, 1, 242, 1, 10, 2, 5, 2, 10, 2, 14, 2, 5, 2, 14, 2, 4, 2, 5, 2, 14, 2, 16, 2, 4, 2, 17, 2, 4, 2, 16, 2, 18, 2, 4, 2, 17, 2, 18, 2, 3, 2, 4, 2, 19, 2, 21, 2, 20, 2, 19, 2, 22, 2, 21, 2, 22, 2, 23, 2, 21, 2, 22, 2, 24, 2, 23, 2, 24, 2, 25, 2, 23, 2, 24, 2, 26, 2, 25, 2, 20, 2, 28, 2, 27, 2, 20, 2, 21, 2, 28, 2, 21, 2, 29, 2, 28, 2, 21, 2, 23, 2, 29, 2, 23, 2, 30, 2, 29, 2, 23, 2, 25, 2, 30, 2, 19, 2, 3, 2, 18, 2, 19, 2, 20, 2, 3, 2, 3, 2, 27, 2, 254, 1, 3, 2, 20, 2, 27, 2, 253, 1, 32, 2, 31, 2, 253, 1, 254, 1, 32, 2, 31, 2, 34, 2, 33, 2, 31, 2, 32, 2, 34, 2, 253, 1, 31, 2, 255, 1, 255, 1, 33, 2, 0, 2, 255, 1, 31, 2, 33, 2, 0, 2, 33, 2, 1, 2, 2, 2, 1, 2, 35, 2, 35, 2, 33, 2, 34, 2, 35, 2, 1, 2, 33, 2, 29, 2, 32, 2, 28, 2, 29, 2, 30, 2, 32, 2, 28, 2, 254, 1, 27, 2, 28, 2, 32, 2, 254, 1, 26, 2, 36, 2, 25, 2, 26, 2, 37, 2, 36, 2, 38, 2, 25, 2, 36, 2, 38, 2, 30, 2, 25, 2, 38, 2, 32, 2, 30, 2, 38, 2, 39, 2, 32, 2, 40, 2, 32, 2, 39, 2, 40, 2, 34, 2, 32, 2, 40, 2, 41, 2, 34, 2, 40, 2, 42, 2, 41, 2, 34, 2, 41, 2, 35, 2, 43, 2, 35, 2, 41, 2, 43, 2, 44, 2, 35, 2, 2, 2, 35, 2, 44, 2, 252, 1, 44, 2, 45, 2, 252, 1, 2, 2, 44, 2, 246, 1, 45, 2, 46, 2, 246, 1, 252, 1, 45, 2, 246, 1, 47, 2, 240, 1, 246, 1, 46, 2, 47, 2, 48, 2, 240, 1, 47, 2, 48, 2, 239, 1, 240, 1, 48, 2, 47, 2, 49, 2, 47, 2, 50, 2, 49, 2, 49, 2, 50, 2, 51, 2, 51, 2, 50, 2, 52, 2, 50, 2, 46, 2, 53, 2, 50, 2, 47, 2, 46, 2, 54, 2, 44, 2, 43, 2, 54, 2, 55, 2, 44, 2, 44, 2, 53, 2, 45, 2, 44, 2, 55, 2, 53, 2, 46, 2, 45, 2, 53, 2, 56, 2, 58, 2, 57, 2, 56, 2, 59, 2, 58, 2, 60, 2, 62, 2, 61, 2, 60, 2, 63, 2, 62, 2, 59, 2, 64, 2, 58, 2, 59, 2, 65, 2, 64, 2, 63, 2, 66, 2, 62, 2, 63, 2, 67, 2, 66, 2, 57, 2, 63, 2, 60, 2, 57, 2, 58, 2, 63, 2, 61, 2, 69, 2, 68, 2, 61, 2, 62, 2, 69, 2, 70, 2, 59, 2, 56, 2, 70, 2, 71, 2, 59, 2, 58, 2, 67, 2, 63, 2, 58, 2, 64, 2, 67, 2, 62, 2, 72, 2, 69, 2, 62, 2, 66, 2, 72, 2, 71, 2, 65, 2, 59, 2, 71, 2, 73, 2, 65, 2, 55, 2, 74, 2, 53, 2, 55, 2, 68, 2, 74, 2, 55, 2, 54, 2, 68, 2, 53, 2, 74, 2, 50, 2, 50, 2, 74, 2, 52, 2, 52, 2, 68, 2, 75, 2, 52, 2, 74, 2, 68, 2, 52, 2, 75, 2, 76, 2, 68, 2, 69, 2, 75, 2, 69, 2, 76, 2, 75, 2, 69, 2, 72, 2, 76, 2, 76, 2, 72, 2, 77, 2, 67, 2, 78, 2, 66, 2, 67, 2, 79, 2, 78, 2, 65, 2, 80, 2, 64, 2, 65, 2, 81, 2, 80, 2, 64, 2, 79, 2, 67, 2, 64, 2, 80, 2, 79, 2, 79, 2, 82, 2, 78, 2, 79, 2, 83, 2, 82, 2, 81, 2, 84, 2, 80, 2, 81, 2, 85, 2, 84, 2, 80, 2, 83, 2, 79, 2, 80, 2, 84, 2, 83, 2, 83, 2, 86, 2, 82, 2, 83, 2, 87, 2, 86, 2, 85, 2, 88, 2, 84, 2, 85, 2, 89, 2, 88, 2, 84, 2, 87, 2, 83, 2, 84, 2, 88, 2, 87, 2, 87, 2, 90, 2, 86, 2, 87, 2, 91, 2, 90, 2, 89, 2, 92, 2, 88, 2, 89, 2, 93, 2, 92, 2, 88, 2, 91, 2, 87, 2, 88, 2, 92, 2, 91, 2, 91, 2, 94, 2, 90, 2, 91, 2, 95, 2, 94, 2, 93, 2, 96, 2, 92, 2, 93, 2, 97, 2, 96, 2, 92, 2, 95, 2, 91, 2, 92, 2, 96, 2, 95, 2, 90, 2, 98, 2, 86, 2, 90, 2, 99, 2, 98, 2, 86, 2, 100, 2, 82, 2, 86, 2, 98, 2, 100, 2, 99, 2, 101, 2, 98, 2, 99, 2, 102, 2, 101, 2, 98, 2, 103, 2, 100, 2, 98, 2, 101, 2, 103, 2, 66, 2, 104, 2, 72, 2, 66, 2, 78, 2, 104, 2, 72, 2, 104, 2, 77, 2, 78, 2, 100, 2, 104, 2, 78, 2, 82, 2, 100, 2, 100, 2, 77, 2, 104, 2, 100, 2, 103, 2, 77, 2, 105, 2, 103, 2, 101, 2, 105, 2, 77, 2, 103, 2, 106, 2, 101, 2, 102, 2, 106, 2, 105, 2, 101, 2, 106, 2, 108, 2, 107, 2, 106, 2, 102, 2, 108, 2, 107, 2, 108, 2, 109, 2, 109, 2, 108, 2, 110, 2, 110, 2, 108, 2, 111, 2, 111, 2, 108, 2, 112, 2, 99, 2, 108, 2, 102, 2, 99, 2, 90, 2, 108, 2, 94, 2, 108, 2, 90, 2, 112, 2, 94, 2, 113, 2, 108, 2, 94, 2, 112, 2, 114, 2, 94, 2, 95, 2, 114, 2, 113, 2, 94, 2, 115, 2, 95, 2, 96, 2, 115, 2, 114, 2, 95, 2, 97, 2, 115, 2, 96, 2, 97, 2, 116, 2, 115, 2, 93, 2, 117, 2, 97, 2, 93, 2, 118, 2, 117, 2, 89, 2, 118, 2, 93, 2, 89, 2, 119, 2, 118, 2, 85, 2, 119, 2, 89, 2, 85, 2, 120, 2, 119, 2, 81, 2, 120, 2, 85, 2, 81, 2, 121, 2, 120, 2, 118, 2, 122, 2, 117, 2, 118, 2, 123, 2, 122, 2, 119, 2, 123, 2, 118, 2, 119, 2, 124, 2, 123, 2, 120, 2, 124, 2, 119, 2, 120, 2, 125, 2, 124, 2, 121, 2, 125, 2, 120, 2, 121, 2, 126, 2, 125, 2, 123, 2, 127, 2, 122, 2, 123, 2, 128, 2, 127, 2, 124, 2, 128, 2, 123, 2, 124, 2, 129, 2, 128, 2, 125, 2, 129, 2, 124, 2, 125, 2, 130, 2, 129, 2, 126, 2, 130, 2, 125, 2, 126, 2, 131, 2, 130, 2, 128, 2, 132, 2, 127, 2, 128, 2, 133, 2, 132, 2, 129, 2, 133, 2, 128, 2, 129, 2, 134, 2, 133, 2, 130, 2, 134, 2, 129, 2, 130, 2, 135, 2, 134, 2, 131, 2, 135, 2, 130, 2, 131, 2, 136, 2, 135, 2, 116, 2, 97, 2, 117, 2, 137, 2, 117, 2, 122, 2, 137, 2, 116, 2, 117, 2, 138, 2, 122, 2, 127, 2, 138, 2, 137, 2, 122, 2, 139, 2, 127, 2, 132, 2, 139, 2, 138, 2, 127, 2, 140, 2, 142, 2, 141, 2, 140, 2, 143, 2, 142, 2, 144, 2, 143, 2, 145, 2, 144, 2, 142, 2, 143, 2, 146, 2, 145, 2, 143, 2, 141, 2, 148, 2, 147, 2, 141, 2, 142, 2, 148, 2, 149, 2, 148, 2, 150, 2, 149, 2, 147, 2, 148, 2, 150, 2, 142, 2, 144, 2, 150, 2, 148, 2, 142, 2, 149, 2, 151, 2, 147, 2, 149, 2, 152, 2, 151, 2, 151, 2, 153, 2, 147, 2, 151, 2, 154, 2, 153, 2, 153, 2, 156, 2, 155, 2, 153, 2, 157, 2, 156, 2, 153, 2, 155, 2, 147, 2, 140, 2, 147, 2, 155, 2, 140, 2, 141, 2, 147, 2, 158, 2, 160, 2, 159, 2, 158, 2, 140, 2, 160, 2, 161, 2, 163, 2, 162, 2, 161, 2, 164, 2, 163, 2, 159, 2, 166, 2, 165, 2, 159, 2, 160, 2, 166, 2, 162, 2, 168, 2, 167, 2, 162, 2, 163, 2, 168, 2, 165, 2, 170, 2, 169, 2, 165, 2, 166, 2, 170, 2, 167, 2, 172, 2, 171, 2, 167, 2, 168, 2, 172, 2, 164, 2, 173, 2, 163, 2, 164, 2, 174, 2, 173, 2, 168, 2, 175, 2, 172, 2, 168, 2, 176, 2, 175, 2, 163, 2, 176, 2, 168, 2, 163, 2, 173, 2, 176, 2, 176, 2, 169, 2, 175, 2, 176, 2, 165, 2, 169, 2, 173, 2, 165, 2, 176, 2, 173, 2, 159, 2, 165, 2, 174, 2, 159, 2, 173, 2, 174, 2, 158, 2, 159, 2, 166, 2, 160, 2, 155, 2, 155, 2, 160, 2, 140, 2, 166, 2, 155, 2, 170, 2, 155, 2, 156, 2, 170, 2, 177, 2, 156, 2, 157, 2, 170, 2, 177, 2, 169, 2, 170, 2, 156, 2, 177, 2, 178, 2, 169, 2, 177, 2, 178, 2, 175, 2, 169, 2, 179, 2, 175, 2, 178, 2, 175, 2, 179, 2, 172, 2, 179, 2, 180, 2, 172, 2, 180, 2, 139, 2, 172, 2, 172, 2, 132, 2, 171, 2, 172, 2, 139, 2, 132, 2, 133, 2, 171, 2, 132, 2, 133, 2, 167, 2, 171, 2, 134, 2, 167, 2, 133, 2, 134, 2, 162, 2, 167, 2, 135, 2, 162, 2, 134, 2, 135, 2, 161, 2, 162, 2, 136, 2, 161, 2, 135, 2, 50, 1, 182, 2, 181, 2, 50, 1, 51, 1, 182, 2, 52, 1, 181, 2, 183, 2, 52, 1, 50, 1, 181, 2, 53, 1, 183, 2, 184, 2, 53, 1, 52, 1, 183, 2, 54, 1, 184, 2, 185, 2, 54, 1, 53, 1, 184, 2, 55, 1, 185, 2, 186, 2, 55, 1, 54, 1, 185, 2, 56, 1, 186, 2, 187, 2, 56, 1, 55, 1, 186, 2, 181, 2, 189, 2, 188, 2, 181, 2, 182, 2, 189, 2, 183, 2, 188, 2, 190, 2, 183, 2, 181, 2, 188, 2, 184, 2, 190, 2, 191, 2, 184, 2, 183, 2, 190, 2, 185, 2, 191, 2, 192, 2, 185, 2, 184, 2, 191, 2, 186, 2, 192, 2, 193, 2, 186, 2, 185, 2, 192, 2, 187, 2, 193, 2, 194, 2, 187, 2, 186, 2, 193, 2, 188, 2, 196, 2, 195, 2, 188, 2, 189, 2, 196, 2, 190, 2, 195, 2, 197, 2, 190, 2, 188, 2, 195, 2, 191, 2, 197, 2, 198, 2, 191, 2, 190, 2, 197, 2, 192, 2, 198, 2, 199, 2, 192, 2, 191, 2, 198, 2, 193, 2, 199, 2, 200, 2, 193, 2, 192, 2, 199, 2, 194, 2, 200, 2, 201, 2, 194, 2, 193, 2, 200, 2, 195, 2, 203, 2, 202, 2, 195, 2, 196, 2, 203, 2, 197, 2, 202, 2, 204, 2, 197, 2, 195, 2, 202, 2, 198, 2, 204, 2, 205, 2, 198, 2, 197, 2, 204, 2, 199, 2, 205, 2, 206, 2, 199, 2, 198, 2, 205, 2, 200, 2, 206, 2, 207, 2, 200, 2, 199, 2, 206, 2, 201, 2, 207, 2, 208, 2, 201, 2, 200, 2, 207, 2, 202, 2, 210, 2, 209, 2, 202, 2, 203, 2, 210, 2, 204, 2, 209, 2, 211, 2, 204, 2, 202, 2, 209, 2, 205, 2, 211, 2, 212, 2, 205, 2, 204, 2, 211, 2, 206, 2, 212, 2, 213, 2, 206, 2, 205, 2, 212, 2, 207, 2, 213, 2, 214, 2, 207, 2, 206, 2, 213, 2, 208, 2, 214, 2, 215, 2, 208, 2, 207, 2, 214, 2, 216, 2, 218, 2, 217, 2, 216, 2, 219, 2, 218, 2, 219, 2, 220, 2, 218, 2, 219, 2, 221, 2, 220, 2, 222, 2, 218, 2, 223, 2, 222, 2, 217, 2, 218, 2, 224, 2, 218, 2, 220, 2, 224, 2, 223, 2, 218, 2, 225, 2, 224, 2, 226, 2, 227, 2, 226, 2, 220, 2, 220, 2, 226, 2, 224, 2, 210, 2, 217, 2, 209, 2, 210, 2, 216, 2, 217, 2, 212, 2, 217, 2, 222, 2, 212, 2, 209, 2, 217, 2, 212, 2, 211, 2, 209, 2, 214, 2, 229, 2, 228, 2, 214, 2, 213, 2, 229, 2, 215, 2, 228, 2, 230, 2, 215, 2, 214, 2, 228, 2, 228, 2, 232, 2, 231, 2, 228, 2, 229, 2, 232, 2, 230, 2, 231, 2, 233, 2, 230, 2, 228, 2, 231, 2, 232, 2, 229, 2, 222, 2, 213, 2, 222, 2, 229, 2, 213, 2, 212, 2, 222, 2, 208, 2, 234, 2, 201, 2, 208, 2, 235, 2, 234, 2, 230, 2, 233, 2, 236, 2, 230, 2, 236, 2, 215, 2, 235, 2, 215, 2, 236, 2, 235, 2, 208, 2, 215, 2, 237, 2, 201, 2, 234, 2, 237, 2, 194, 2, 201, 2, 238, 2, 194, 2, 237, 2, 239, 2, 194, 2, 238, 2, 239, 2, 187, 2, 194, 2, 240, 2, 187, 2, 239, 2, 241, 2, 187, 2, 240, 2, 242, 2, 244, 2, 243, 2, 242, 2, 245, 2, 244, 2, 245, 2, 246, 2, 244, 2, 245, 2, 247, 2, 246, 2, 242, 2, 243, 2, 241, 2, 244, 2, 187, 2, 243, 2, 244, 2, 246, 2, 187, 2, 187, 2, 241, 2, 243, 2, 56, 1, 2, 0, 49, 1, 56, 1, 246, 2, 2, 0, 56, 1, 187, 2, 246, 2, 2, 0, 247, 2, 3, 0, 2, 0, 246, 2, 247, 2, 71, 2, 248, 2, 73, 2, 71, 2, 249, 2, 248, 2, 131, 2, 250, 2, 136, 2, 131, 2, 251, 2, 250, 2, 126, 2, 251, 2, 131, 2, 126, 2, 252, 2, 251, 2, 251, 2, 253, 2, 250, 2, 251, 2, 254, 2, 253, 2, 252, 2, 254, 2, 251, 2, 252, 2, 255, 2, 254, 2, 254, 2, 0, 3, 253, 2, 254, 2, 1, 3, 0, 3, 255, 2, 1, 3, 254, 2, 255, 2, 2, 3, 1, 3, 252, 2, 3, 3, 255, 2, 252, 2, 4, 3, 3, 3, 73, 2, 3, 3, 4, 3, 73, 2, 248, 2, 3, 3, 126, 2, 4, 3, 252, 2, 126, 2, 121, 2, 4, 3, 65, 2, 121, 2, 81, 2, 65, 2, 4, 3, 121, 2, 73, 2, 4, 3, 65, 2, 71, 2, 227, 2, 249, 2, 71, 2, 70, 2, 227, 2, 5, 3, 3, 3, 248, 2, 249, 2, 5, 3, 248, 2, 249, 2, 227, 2, 5, 3, 255, 2, 5, 3, 2, 3, 3, 3, 5, 3, 255, 2, 6, 3, 2, 3, 5, 3, 220, 2, 7, 3, 227, 2, 227, 2, 6, 3, 5, 3, 227, 2, 7, 3, 6, 3, 1, 3, 6, 3, 0, 3, 2, 3, 6, 3, 1, 3, 253, 2, 6, 3, 7, 3, 253, 2, 0, 3, 6, 3, 221, 2, 8, 3, 220, 2, 221, 2, 9, 3, 8, 3, 161, 2, 136, 2, 250, 2, 216, 2, 210, 2, 10, 3, 10, 3, 203, 2, 11, 3, 10, 3, 210, 2, 203, 2, 203, 2, 12, 3, 11, 3, 196, 2, 12, 3, 203, 2, 196, 2, 13, 3, 12, 3, 189, 2, 13, 3, 196, 2, 189, 2, 14, 3, 13, 3, 15, 3, 11, 3, 12, 3, 15, 3, 16, 3, 11, 3, 17, 3, 11, 3, 16, 3, 18, 3, 12, 3, 13, 3, 18, 3, 15, 3, 12, 3, 19, 3, 13, 3, 14, 3, 19, 3, 18, 3, 13, 3, 19, 3, 189, 2, 20, 3, 19, 3, 14, 3, 189, 2, 20, 3, 182, 2, 21, 3, 20, 3, 189, 2, 182, 2, 21, 3, 182, 2, 22, 3, 22, 3, 51, 1, 23, 3, 22, 3, 182, 2, 51, 1, 121, 0, 59, 1, 44, 1, 44, 1, 58, 1, 24, 3, 44, 1, 59, 1, 58, 1, 25, 3, 27, 3, 26, 3, 26, 3, 60, 1, 59, 1, 26, 3, 27, 3, 60, 1, 28, 3, 27, 3, 25, 3, 28, 3, 29, 3, 27, 3, 28, 3, 25, 3, 30, 3, 121, 0, 26, 3, 59, 1, 121, 0, 31, 3, 26, 3, 25, 3, 31, 3, 32, 3, 25, 3, 26, 3, 31, 3, 114, 0, 31, 3, 121, 0, 114, 0, 32, 3, 31, 3, 114, 0, 137, 0, 32, 3, 137, 0, 25, 3, 32, 3, 137, 0, 30, 3, 25, 3, 33, 3, 35, 3, 34, 3, 33, 3, 36, 3, 35, 3, 37, 3, 34, 3, 38, 3, 37, 3, 33, 3, 34, 3, 22, 3, 35, 3, 36, 3, 51, 1, 22, 3, 23, 3, 51, 1, 35, 3, 22, 3, 51, 1, 34, 3, 35, 3, 51, 1, 44, 1, 34, 3, 34, 3, 24, 3, 38, 3, 34, 3, 44, 1, 24, 3, 58, 1, 38, 3, 24, 3, 58, 1, 39, 3, 38, 3, 40, 3, 38, 3, 39, 3, 40, 3, 37, 3, 38, 3, 40, 3, 39, 3, 41, 3, 58, 1, 41, 3, 39, 3, 58, 1, 57, 1, 41, 3, 42, 3, 44, 3, 43, 3, 42, 3, 45, 3, 44, 3, 46, 3, 45, 3, 42, 3, 46, 3, 47, 3, 45, 3, 45, 3, 48, 3, 44, 3, 45, 3, 49, 3, 48, 3, 47, 3, 49, 3, 45, 3, 47, 3, 50, 3, 49, 3, 49, 3, 51, 3, 48, 3, 49, 3, 52, 3, 51, 3, 50, 3, 52, 3, 49, 3, 50, 3, 53, 3, 52, 3, 54, 3, 56, 3, 55, 3, 54, 3, 57, 3, 56, 3, 58, 3, 60, 3, 59, 3, 58, 3, 61, 3, 60, 3, 52, 3, 62, 3, 51, 3, 52, 3, 63, 3, 62, 3, 53, 3, 63, 3, 52, 3, 53, 3, 64, 3, 63, 3, 65, 3, 67, 3, 66, 3, 65, 3, 68, 3, 67, 3, 69, 3, 68, 3, 65, 3, 69, 3, 70, 3, 68, 3, 69, 3, 60, 3, 70, 3, 69, 3, 59, 3, 60, 3, 53, 3, 56, 3, 64, 3, 53, 3, 55, 3, 56, 3, 71, 3, 56, 3, 57, 3, 72, 3, 74, 3, 73, 3, 73, 3, 74, 3, 75, 3, 75, 3, 74, 3, 46, 3, 72, 3, 76, 3, 74, 3, 76, 3, 77, 3, 74, 3, 76, 3, 54, 3, 77, 3, 46, 3, 77, 3, 47, 3, 46, 3, 74, 3, 77, 3, 47, 3, 77, 3, 50, 3, 55, 3, 77, 3, 54, 3, 50, 3, 55, 3, 53, 3, 50, 3, 77, 3, 55, 3, 61, 3, 70, 3, 60, 3, 61, 3, 78, 3, 70, 3, 78, 3, 68, 3, 70, 3, 78, 3, 79, 3, 68, 3, 80, 3, 68, 3, 79, 3, 81, 3, 68, 3, 80, 3, 81, 3, 67, 3, 68, 3, 82, 3, 84, 3, 83, 3, 82, 3, 85, 3, 84, 3, 86, 3, 85, 3, 82, 3, 86, 3, 87, 3, 85, 3, 85, 3, 88, 3, 84, 3, 85, 3, 89, 3, 88, 3, 87, 3, 89, 3, 85, 3, 87, 3, 90, 3, 89, 3, 89, 3, 91, 3, 88, 3, 89, 3, 92, 3, 91, 3, 90, 3, 92, 3, 89, 3, 90, 3, 93, 3, 92, 3, 92, 3, 94, 3, 91, 3, 92, 3, 95, 3, 94, 3, 93, 3, 95, 3, 92, 3, 93, 3, 96, 3, 95, 3, 95, 3, 97, 3, 94, 3, 95, 3, 98, 3, 97, 3, 96, 3, 98, 3, 95, 3, 96, 3, 99, 3, 98, 3, 100, 3, 102, 3, 101, 3, 100, 3, 103, 3, 102, 3, 104, 3, 98, 3, 99, 3, 105, 3, 98, 3, 104, 3, 97, 3, 105, 3, 106, 3, 97, 3, 98, 3, 105, 3, 107, 3, 109, 3, 108, 3, 107, 3, 110, 3, 109, 3, 111, 3, 110, 3, 107, 3, 111, 3, 112, 3, 110, 3, 113, 3, 112, 3, 111, 3, 113, 3, 114, 3, 112, 3, 115, 3, 114, 3, 113, 3, 114, 3, 115, 3, 116, 3, 115, 3, 117, 3, 116, 3, 118, 3, 117, 3, 119, 3, 118, 3, 116, 3, 117, 3, 118, 3, 120, 3, 116, 3, 118, 3, 121, 3, 120, 3, 120, 3, 114, 3, 116, 3, 120, 3, 83, 3, 114, 3, 83, 3, 112, 3, 114, 3, 83, 3, 84, 3, 112, 3, 84, 3, 110, 3, 112, 3, 84, 3, 88, 3, 110, 3, 88, 3, 109, 3, 110, 3, 88, 3, 91, 3, 109, 3, 122, 3, 124, 3, 123, 3, 122, 3, 108, 3, 124, 3, 124, 3, 108, 3, 125, 3, 108, 3, 109, 3, 125, 3, 94, 3, 109, 3, 91, 3, 94, 3, 125, 3, 109, 3, 97, 3, 125, 3, 94, 3, 97, 3, 124, 3, 125, 3, 106, 3, 124, 3, 97, 3, 106, 3, 123, 3, 124, 3, 122, 3, 123, 3, 126, 3, 126, 3, 106, 3, 127, 3, 126, 3, 123, 3, 106, 3, 99, 3, 128, 3, 104, 3, 99, 3, 129, 3, 128, 3, 104, 3, 131, 3, 130, 3, 104, 3, 128, 3, 131, 3, 100, 3, 132, 3, 103, 3, 100, 3, 133, 3, 132, 3, 130, 3, 133, 3, 100, 3, 130, 3, 131, 3, 133, 3, 96, 3, 129, 3, 99, 3, 96, 3, 134, 3, 129, 3, 93, 3, 134, 3, 96, 3, 93, 3, 135, 3, 134, 3, 90, 3, 135, 3, 93, 3, 90, 3, 136, 3, 135, 3, 87, 3, 136, 3, 90, 3, 87, 3, 137, 3, 136, 3, 86, 3, 137, 3, 87, 3, 86, 3, 138, 3, 137, 3, 67, 3, 139, 3, 66, 3, 67, 3, 140, 3, 139, 3, 62, 3, 141, 3, 51, 3, 62, 3, 142, 3, 141, 3, 51, 3, 143, 3, 48, 3, 51, 3, 141, 3, 143, 3, 48, 3, 144, 3, 44, 3, 48, 3, 143, 3, 144, 3, 44, 3, 145, 3, 43, 3, 44, 3, 144, 3, 145, 3, 43, 3, 138, 3, 86, 3, 43, 3, 145, 3, 138, 3, 129, 3, 146, 3, 128, 3, 129, 3, 147, 3, 146, 3, 128, 3, 148, 3, 131, 3, 128, 3, 146, 3, 148, 3, 133, 3, 149, 3, 132, 3, 133, 3, 150, 3, 149, 3, 131, 3, 150, 3, 133, 3, 131, 3, 148, 3, 150, 3, 134, 3, 147, 3, 129, 3, 134, 3, 151, 3, 147, 3, 135, 3, 151, 3, 134, 3, 135, 3, 152, 3, 151, 3, 136, 3, 152, 3, 135, 3, 136, 3, 153, 3, 152, 3, 137, 3, 153, 3, 136, 3, 137, 3, 154, 3, 153, 3, 138, 3, 154, 3, 137, 3, 138, 3, 155, 3, 154, 3, 140, 3, 156, 3, 139, 3, 140, 3, 157, 3, 156, 3, 142, 3, 158, 3, 141, 3, 142, 3, 159, 3, 158, 3, 141, 3, 160, 3, 143, 3, 141, 3, 158, 3, 160, 3, 143, 3, 161, 3, 144, 3, 143, 3, 160, 3, 161, 3, 144, 3, 162, 3, 145, 3, 144, 3, 161, 3, 162, 3, 145, 3, 155, 3, 138, 3, 145, 3, 162, 3, 155, 3, 147, 3, 163, 3, 146, 3, 147, 3, 164, 3, 163, 3, 146, 3, 165, 3, 148, 3, 146, 3, 163, 3, 165, 3, 150, 3, 166, 3, 149, 3, 150, 3, 167, 3, 166, 3, 148, 3, 167, 3, 150, 3, 148, 3, 165, 3, 167, 3, 151, 3, 164, 3, 147, 3, 151, 3, 168, 3, 164, 3, 152, 3, 168, 3, 151, 3, 152, 3, 169, 3, 168, 3, 153, 3, 169, 3, 152, 3, 153, 3, 170, 3, 169, 3, 154, 3, 170, 3, 153, 3, 154, 3, 171, 3, 170, 3, 155, 3, 171, 3, 154, 3, 155, 3, 172, 3, 171, 3, 157, 3, 173, 3, 156, 3, 157, 3, 174, 3, 173, 3, 159, 3, 175, 3, 158, 3, 159, 3, 176, 3, 175, 3, 158, 3, 177, 3, 160, 3, 158, 3, 175, 3, 177, 3, 160, 3, 178, 3, 161, 3, 160, 3, 177, 3, 178, 3, 161, 3, 179, 3, 162, 3, 161, 3, 178, 3, 179, 3, 162, 3, 172, 3, 155, 3, 162, 3, 179, 3, 172, 3, 164, 3, 180, 3, 163, 3, 164, 3, 181, 3, 180, 3, 163, 3, 182, 3, 165, 3, 163, 3, 180, 3, 182, 3, 167, 3, 183, 3, 166, 3, 167, 3, 184, 3, 183, 3, 165, 3, 184, 3, 167, 3, 165, 3, 182, 3, 184, 3, 168, 3, 181, 3, 164, 3, 168, 3, 185, 3, 181, 3, 169, 3, 185, 3, 168, 3, 169, 3, 186, 3, 185, 3, 170, 3, 186, 3, 169, 3, 170, 3, 187, 3, 186, 3, 171, 3, 187, 3, 170, 3, 171, 3, 188, 3, 187, 3, 172, 3, 188, 3, 171, 3, 172, 3, 189, 3, 188, 3, 174, 3, 190, 3, 173, 3, 174, 3, 191, 3, 190, 3, 176, 3, 192, 3, 175, 3, 176, 3, 193, 3, 192, 3, 175, 3, 194, 3, 177, 3, 175, 3, 192, 3, 194, 3, 177, 3, 195, 3, 178, 3, 177, 3, 194, 3, 195, 3, 178, 3, 196, 3, 179, 3, 178, 3, 195, 3, 196, 3, 179, 3, 189, 3, 172, 3, 179, 3, 196, 3, 189, 3, 181, 3, 197, 3, 180, 3, 181, 3, 198, 3, 197, 3, 180, 3, 199, 3, 182, 3, 180, 3, 197, 3, 199, 3, 184, 3, 200, 3, 183, 3, 184, 3, 201, 3, 200, 3, 182, 3, 201, 3, 184, 3, 182, 3, 199, 3, 201, 3, 185, 3, 198, 3, 181, 3, 185, 3, 202, 3, 198, 3, 186, 3, 202, 3, 185, 3, 186, 3, 203, 3, 202, 3, 187, 3, 203, 3, 186, 3, 187, 3, 204, 3, 203, 3, 188, 3, 204, 3, 187, 3, 188, 3, 205, 3, 204, 3, 189, 3, 205, 3, 188, 3, 189, 3, 206, 3, 205, 3, 191, 3, 207, 3, 190, 3, 191, 3, 208, 3, 207, 3, 193, 3, 209, 3, 192, 3, 193, 3, 210, 3, 209, 3, 192, 3, 211, 3, 194, 3, 192, 3, 209, 3, 211, 3, 194, 3, 212, 3, 195, 3, 194, 3, 211, 3, 212, 3, 195, 3, 213, 3, 196, 3, 195, 3, 212, 3, 213, 3, 196, 3, 206, 3, 189, 3, 196, 3, 213, 3, 206, 3, 198, 3, 214, 3, 197, 3, 198, 3, 215, 3, 214, 3, 197, 3, 216, 3, 199, 3, 197, 3, 214, 3, 216, 3, 201, 3, 217, 3, 200, 3, 201, 3, 218, 3, 217, 3, 199, 3, 218, 3, 201, 3, 199, 3, 216, 3, 218, 3, 202, 3, 215, 3, 198, 3, 202, 3, 219, 3, 215, 3, 203, 3, 219, 3, 202, 3, 203, 3, 220, 3, 219, 3, 204, 3, 220, 3, 203, 3, 204, 3, 221, 3, 220, 3, 205, 3, 221, 3, 204, 3, 205, 3, 222, 3, 221, 3, 206, 3, 222, 3, 205, 3, 206, 3, 223, 3, 222, 3, 208, 3, 224, 3, 207, 3, 208, 3, 225, 3, 224, 3, 210, 3, 226, 3, 209, 3, 210, 3, 227, 3, 226, 3, 209, 3, 228, 3, 211, 3, 209, 3, 226, 3, 228, 3, 211, 3, 229, 3, 212, 3, 211, 3, 228, 3, 229, 3, 212, 3, 230, 3, 213, 3, 212, 3, 229, 3, 230, 3, 213, 3, 223, 3, 206, 3, 213, 3, 230, 3, 223, 3, 231, 3, 233, 3, 232, 3, 232, 3, 235, 3, 234, 3, 232, 3, 233, 3, 235, 3, 236, 3, 238, 3, 237, 3, 236, 3, 239, 3, 238, 3, 240, 3, 239, 3, 236, 3, 240, 3, 241, 3, 239, 3, 242, 3, 241, 3, 240, 3, 242, 3, 243, 3, 241, 3, 244, 3, 243, 3, 242, 3, 244, 3, 245, 3, 243, 3, 246, 3, 245, 3, 244, 3, 246, 3, 247, 3, 245, 3, 239, 3, 248, 3, 238, 3, 239, 3, 249, 3, 248, 3, 241, 3, 249, 3, 239, 3, 241, 3, 250, 3, 249, 3, 243, 3, 250, 3, 241, 3, 243, 3, 251, 3, 250, 3, 245, 3, 251, 3, 243, 3, 245, 3, 252, 3, 251, 3, 247, 3, 252, 3, 245, 3, 247, 3, 253, 3, 252, 3, 249, 3, 254, 3, 248, 3, 249, 3, 255, 3, 254, 3, 250, 3, 255, 3, 249, 3, 250, 3, 0, 4, 255, 3, 251, 3, 0, 4, 250, 3, 251, 3, 1, 4, 0, 4, 252, 3, 1, 4, 251, 3, 252, 3, 2, 4, 1, 4, 253, 3, 2, 4, 252, 3, 253, 3, 3, 4, 2, 4, 255, 3, 4, 4, 254, 3, 255, 3, 5, 4, 4, 4, 0, 4, 5, 4, 255, 3, 0, 4, 6, 4, 5, 4, 1, 4, 6, 4, 0, 4, 1, 4, 7, 4, 6, 4, 2, 4, 7, 4, 1, 4, 2, 4, 8, 4, 7, 4, 3, 4, 8, 4, 2, 4, 3, 4, 9, 4, 8, 4, 5, 4, 10, 4, 4, 4, 5, 4, 11, 4, 10, 4, 6, 4, 11, 4, 5, 4, 6, 4, 12, 4, 11, 4, 7, 4, 12, 4, 6, 4, 7, 4, 13, 4, 12, 4, 8, 4, 13, 4, 7, 4, 8, 4, 14, 4, 13, 4, 9, 4, 14, 4, 8, 4, 9, 4, 15, 4, 14, 4, 217, 3, 16, 4, 200, 3, 217, 3, 17, 4, 16, 4, 200, 3, 18, 4, 183, 3, 200, 3, 16, 4, 18, 4, 183, 3, 19, 4, 166, 3, 183, 3, 18, 4, 19, 4, 166, 3, 20, 4, 149, 3, 166, 3, 19, 4, 20, 4, 149, 3, 21, 4, 132, 3, 149, 3, 20, 4, 21, 4, 132, 3, 22, 4, 103, 3, 132, 3, 21, 4, 22, 4, 103, 3, 23, 4, 102, 3, 103, 3, 22, 4, 23, 4, 17, 4, 24, 4, 16, 4, 17, 4, 25, 4, 24, 4, 16, 4, 26, 4, 18, 4, 16, 4, 24, 4, 26, 4, 18, 4, 27, 4, 19, 4, 18, 4, 26, 4, 27, 4, 19, 4, 28, 4, 20, 4, 19, 4, 27, 4, 28, 4, 20, 4, 29, 4, 21, 4, 20, 4, 28, 4, 29, 4, 21, 4, 30, 4, 22, 4, 21, 4, 29, 4, 30, 4, 22, 4, 31, 4, 23, 4, 22, 4, 30, 4, 31, 4, 25, 4, 32, 4, 24, 4, 25, 4, 33, 4, 32, 4, 24, 4, 34, 4, 26, 4, 24, 4, 32, 4, 34, 4, 26, 4, 35, 4, 27, 4, 26, 4, 34, 4, 35, 4, 27, 4, 36, 4, 28, 4, 27, 4, 35, 4, 36, 4, 28, 4, 37, 4, 29, 4, 28, 4, 36, 4, 37, 4, 29, 4, 38, 4, 30, 4, 29, 4, 37, 4, 38, 4, 30, 4, 39, 4, 31, 4, 30, 4, 38, 4, 39, 4, 40, 4, 42, 4, 41, 4, 40, 4, 43, 4, 42, 4, 44, 4, 42, 4, 43, 4, 101, 3, 42, 4, 44, 4, 41, 4, 45, 4, 40, 4, 40, 4, 247, 3, 246, 3, 40, 4, 45, 4, 247, 3, 247, 3, 45, 4, 253, 3, 102, 3, 42, 4, 101, 3, 102, 3, 31, 4, 42, 4, 102, 3, 23, 4, 31, 4, 39, 4, 42, 4, 31, 4, 39, 4, 41, 4, 42, 4, 45, 4, 39, 4, 46, 4, 45, 4, 41, 4, 39, 4, 38, 4, 46, 4, 39, 4, 38, 4, 47, 4, 46, 4, 15, 4, 46, 4, 47, 4, 15, 4, 9, 4, 46, 4, 9, 4, 45, 4, 46, 4, 9, 4, 3, 4, 45, 4, 253, 3, 45, 4, 3, 4, 47, 4, 48, 4, 15, 4, 47, 4, 49, 4, 48, 4, 12, 4, 50, 4, 11, 4, 12, 4, 51, 4, 50, 4, 13, 4, 51, 4, 12, 4, 13, 4, 52, 4, 51, 4, 14, 4, 52, 4, 13, 4, 14, 4, 53, 4, 52, 4, 15, 4, 53, 4, 14, 4, 15, 4, 48, 4, 53, 4, 38, 4, 49, 4, 47, 4, 38, 4, 37, 4, 49, 4, 36, 4, 49, 4, 37, 4, 35, 4, 49, 4, 36, 4, 34, 4, 49, 4, 35, 4, 33, 4, 54, 4, 32, 4, 33, 4, 55, 4, 54, 4, 32, 4, 56, 4, 34, 4, 32, 4, 54, 4, 56, 4, 55, 4, 57, 4, 54, 4, 55, 4, 58, 4, 57, 4, 54, 4, 59, 4, 56, 4, 54, 4, 57, 4, 59, 4, 58, 4, 60, 4, 57, 4, 58, 4, 61, 4, 60, 4, 57, 4, 62, 4, 59, 4, 57, 4, 60, 4, 62, 4, 61, 4, 63, 4, 60, 4, 61, 4, 64, 4, 63, 4, 60, 4, 65, 4, 62, 4, 60, 4, 63, 4, 65, 4, 49, 4, 34, 4, 56, 4, 48, 4, 56, 4, 59, 4, 48, 4, 49, 4, 56, 4, 48, 4, 59, 4, 53, 4, 52, 4, 59, 4, 62, 4, 52, 4, 53, 4, 59, 4, 51, 4, 62, 4, 65, 4, 51, 4, 52, 4, 62, 4, 64, 4, 66, 4, 63, 4, 64, 4, 67, 4, 66, 4, 63, 4, 68, 4, 65, 4, 63, 4, 66, 4, 68, 4, 67, 4, 69, 4, 66, 4, 67, 4, 70, 4, 69, 4, 66, 4, 71, 4, 68, 4, 66, 4, 69, 4, 71, 4, 51, 4, 72, 4, 50, 4, 51, 4, 73, 4, 72, 4, 51, 4, 68, 4, 73, 4, 51, 4, 65, 4, 68, 4, 68, 4, 72, 4, 73, 4, 68, 4, 71, 4, 72, 4, 10, 4, 50, 4, 74, 4, 10, 4, 11, 4, 50, 4, 72, 4, 74, 4, 50, 4, 72, 4, 75, 4, 74, 4, 72, 4, 71, 4, 75, 4, 76, 4, 78, 4, 77, 4, 79, 4, 76, 4, 80, 4, 81, 4, 76, 4, 79, 4, 82, 4, 80, 4, 83, 4, 76, 4, 83, 4, 80, 4, 77, 4, 83, 4, 76, 4, 77, 4, 84, 4, 83, 4, 84, 4, 85, 4, 83, 4, 84, 4, 86, 4, 85, 4, 86, 4, 87, 4, 85, 4, 86, 4, 88, 4, 87, 4, 88, 4, 89, 4, 87, 4, 88, 4, 90, 4, 89, 4, 91, 4, 89, 4, 90, 4, 83, 4, 92, 4, 82, 4, 83, 4, 85, 4, 92, 4, 85, 4, 87, 4, 92, 4, 89, 4, 92, 4, 87, 4, 89, 4, 93, 4, 92, 4, 89, 4, 91, 4, 93, 4, 90, 4, 238, 3, 91, 4, 90, 4, 237, 3, 238, 3, 91, 4, 238, 3, 93, 4, 93, 4, 238, 3, 94, 4, 94, 4, 96, 4, 95, 4, 94, 4, 238, 3, 96, 4, 10, 4, 95, 4, 4, 4, 95, 4, 96, 4, 4, 4, 4, 4, 96, 4, 254, 3, 254, 3, 96, 4, 248, 3, 238, 3, 248, 3, 96, 4, 95, 4, 97, 4, 94, 4, 95, 4, 98, 4, 97, 4, 99, 4, 101, 4, 100, 4, 99, 4, 102, 4, 101, 4, 103, 4, 102, 4, 99, 4, 103, 4, 104, 4, 102, 4, 105, 4, 104, 4, 103, 4, 105, 4, 106, 4, 104, 4, 94, 4, 108, 4, 107, 4, 94, 4, 97, 4, 108, 4, 109, 4, 106, 4, 105, 4, 109, 4, 110, 4, 106, 4, 98, 4, 111, 4, 97, 4, 98, 4, 112, 4, 111, 4, 102, 4, 113, 4, 101, 4, 102, 4, 114, 4, 113, 4, 104, 4, 114, 4, 102, 4, 104, 4, 115, 4, 114, 4, 97, 4, 116, 4, 108, 4, 97, 4, 111, 4, 116, 4, 110, 4, 117, 4, 106, 4, 110, 4, 118, 4, 117, 4, 106, 4, 115, 4, 104, 4, 106, 4, 117, 4, 115, 4, 112, 4, 119, 4, 111, 4, 112, 4, 120, 4, 119, 4, 114, 4, 121, 4, 113, 4, 114, 4, 122, 4, 121, 4, 115, 4, 122, 4, 114, 4, 115, 4, 123, 4, 122, 4, 111, 4, 124, 4, 116, 4, 111, 4, 119, 4, 124, 4, 118, 4, 125, 4, 117, 4, 118, 4, 126, 4, 125, 4, 117, 4, 123, 4, 115, 4, 117, 4, 125, 4, 123, 4, 120, 4, 127, 4, 119, 4, 120, 4, 128, 4, 127, 4, 122, 4, 129, 4, 121, 4, 122, 4, 130, 4, 129, 4, 123, 4, 130, 4, 122, 4, 123, 4, 131, 4, 130, 4, 119, 4, 132, 4, 124, 4, 119, 4, 127, 4, 132, 4, 126, 4, 133, 4, 125, 4, 126, 4, 134, 4, 133, 4, 125, 4, 131, 4, 123, 4, 125, 4, 133, 4, 131, 4, 112, 4, 10, 4, 120, 4, 95, 4, 112, 4, 98, 4, 95, 4, 10, 4, 112, 4, 10, 4, 128, 4, 120, 4, 10, 4, 74, 4, 128, 4, 202, 1, 135, 4, 214, 1, 202, 1, 136, 4, 135, 4, 190, 1, 136, 4, 202, 1, 190, 1, 137, 4, 136, 4, 178, 1, 137, 4, 190, 1, 178, 1, 138, 4, 137, 4, 166, 1, 138, 4, 178, 1, 166, 1, 139, 4, 138, 4, 136, 4, 140, 4, 135, 4, 136, 4, 141, 4, 140, 4, 137, 4, 141, 4, 136, 4, 137, 4, 142, 4, 141, 4, 138, 4, 142, 4, 137, 4, 138, 4, 143, 4, 142, 4, 139, 4, 143, 4, 138, 4, 139, 4, 144, 4, 143, 4, 141, 4, 145, 4, 140, 4, 141, 4, 146, 4, 145, 4, 142, 4, 146, 4, 141, 4, 142, 4, 147, 4, 146, 4, 143, 4, 147, 4, 142, 4, 143, 4, 148, 4, 147, 4, 144, 4, 148, 4, 143, 4, 144, 4, 149, 4, 148, 4, 154, 1, 138, 1, 150, 4, 154, 1, 139, 4, 166, 1, 154, 1, 150, 4, 139, 4, 151, 4, 138, 1, 139, 1, 151, 4, 150, 4, 138, 1, 152, 4, 150, 4, 151, 4, 152, 4, 153, 4, 150, 4, 144, 4, 150, 4, 153, 4, 144, 4, 139, 4, 150, 4, 154, 4, 153, 4, 152, 4, 144, 4, 154, 4, 149, 4, 144, 4, 153, 4, 154, 4, 154, 4, 155, 4, 149, 4, 147, 4, 156, 4, 146, 4, 147, 4, 157, 4, 156, 4, 148, 4, 157, 4, 147, 4, 148, 4, 158, 4, 157, 4, 157, 4, 159, 4, 156, 4, 157, 4, 160, 4, 159, 4, 158, 4, 160, 4, 157, 4, 158, 4, 161, 4, 160, 4, 149, 4, 155, 4, 148, 4, 155, 4, 158, 4, 148, 4, 155, 4, 162, 4, 158, 4, 158, 4, 162, 4, 161, 4, 234, 3, 162, 4, 163, 4, 234, 3, 161, 4, 162, 4, 234, 3, 235, 3, 161, 4, 233, 3, 161, 4, 235, 3, 233, 3, 160, 4, 161, 4, 163, 4, 232, 3, 234, 3, 163, 4, 164, 4, 232, 3, 165, 4, 167, 4, 166, 4, 167, 4, 232, 3, 164, 4, 232, 3, 167, 4, 165, 4, 168, 4, 165, 4, 166, 4, 168, 4, 169, 4, 165, 4, 168, 4, 170, 4, 169, 4, 113, 4, 171, 4, 101, 4, 113, 4, 172, 4, 171, 4, 101, 4, 173, 4, 100, 4, 101, 4, 171, 4, 173, 4, 231, 3, 174, 4, 233, 3, 231, 3, 175, 4, 174, 4, 176, 4, 175, 4, 231, 3, 176, 4, 177, 4, 175, 4, 100, 4, 177, 4, 176, 4, 100, 4, 173, 4, 177, 4, 172, 4, 178, 4, 171, 4, 172, 4, 179, 4, 178, 4, 171, 4, 180, 4, 173, 4, 171, 4, 178, 4, 180, 4, 175, 4, 181, 4, 174, 4, 175, 4, 182, 4, 181, 4, 177, 4, 182, 4, 175, 4, 177, 4, 183, 4, 182, 4, 173, 4, 183, 4, 177, 4, 173, 4, 180, 4, 183, 4, 179, 4, 184, 4, 178, 4, 179, 4, 185, 4, 184, 4, 178, 4, 186, 4, 180, 4, 178, 4, 184, 4, 186, 4, 182, 4, 187, 4, 181, 4, 182, 4, 188, 4, 187, 4, 183, 4, 188, 4, 182, 4, 183, 4, 189, 4, 188, 4, 180, 4, 189, 4, 183, 4, 180, 4, 186, 4, 189, 4, 185, 4, 190, 4, 184, 4, 185, 4, 191, 4, 190, 4, 184, 4, 192, 4, 186, 4, 184, 4, 190, 4, 192, 4, 188, 4, 193, 4, 187, 4, 188, 4, 194, 4, 193, 4, 189, 4, 194, 4, 188, 4, 189, 4, 195, 4, 194, 4, 186, 4, 195, 4, 189, 4, 186, 4, 192, 4, 195, 4, 145, 4, 196, 4, 140, 4, 145, 4, 197, 4, 196, 4, 140, 4, 198, 4, 135, 4, 140, 4, 196, 4, 198, 4, 135, 4, 199, 4, 214, 1, 135, 4, 198, 4, 199, 4, 197, 4, 200, 4, 196, 4, 197, 4, 201, 4, 200, 4, 196, 4, 202, 4, 198, 4, 196, 4, 200, 4, 202, 4, 198, 4, 203, 4, 199, 4, 198, 4, 202, 4, 203, 4, 210, 1, 204, 4, 209, 1, 210, 1, 205, 4, 204, 4, 211, 1, 205, 4, 210, 1, 211, 1, 206, 4, 205, 4, 212, 1, 206, 4, 211, 1, 212, 1, 207, 4, 206, 4, 213, 1, 207, 4, 212, 1, 213, 1, 208, 4, 207, 4, 205, 4, 209, 4, 204, 4, 205, 4, 210, 4, 209, 4, 206, 4, 210, 4, 205, 4, 206, 4, 211, 4, 210, 4, 207, 4, 211, 4, 206, 4, 207, 4, 212, 4, 211, 4, 208, 4, 212, 4, 207, 4, 208, 4, 213, 4, 212, 4, 199, 4, 213, 4, 208, 4, 199, 4, 203, 4, 213, 4, 213, 1, 199, 4, 208, 4, 213, 1, 214, 1, 199, 4, 159, 4, 233, 3, 174, 4, 159, 4, 160, 4, 233, 3, 145, 4, 146, 4, 156, 4, 156, 4, 159, 4, 145, 4, 174, 4, 181, 4, 159, 4, 145, 4, 181, 4, 197, 4, 145, 4, 159, 4, 181, 4, 181, 4, 187, 4, 197, 4, 187, 4, 201, 4, 197, 4, 187, 4, 193, 4, 201, 4, 207, 1, 214, 4, 206, 1, 207, 1, 215, 4, 214, 4, 208, 1, 215, 4, 207, 1, 208, 1, 216, 4, 215, 4, 216, 4, 204, 4, 209, 4, 209, 1, 216, 4, 208, 1, 209, 1, 204, 4, 216, 4, 216, 1, 217, 4, 215, 1, 216, 1, 218, 4, 217, 4, 216, 1, 214, 4, 218, 4, 216, 1, 206, 1, 214, 4, 119, 1, 219, 4, 118, 1, 119, 1, 220, 4, 219, 4, 220, 4, 221, 4, 219, 4, 220, 4, 222, 4, 221, 4, 119, 1, 217, 1, 220, 4, 119, 1, 223, 1, 217, 1, 220, 4, 217, 1, 222, 4, 217, 1, 217, 4, 222, 4, 217, 1, 215, 1, 217, 4, 103, 1, 223, 4, 102, 1, 103, 1, 224, 4, 223, 4, 104, 1, 224, 4, 103, 1, 104, 1, 225, 4, 224, 4, 224, 4, 226, 4, 223, 4, 224, 4, 227, 4, 226, 4, 225, 4, 227, 4, 224, 4, 225, 4, 228, 4, 227, 4, 104, 1, 229, 4, 225, 4, 104, 1, 120, 1, 229, 4, 229, 4, 228, 4, 225, 4, 229, 4, 230, 4, 228, 4, 101, 1, 231, 4, 100, 1, 101, 1, 232, 4, 231, 4, 102, 1, 232, 4, 101, 1, 102, 1, 233, 4, 232, 4, 232, 4, 234, 4, 231, 4, 232, 4, 235, 4, 234, 4, 233, 4, 235, 4, 232, 4, 233, 4, 236, 4, 235, 4, 92, 1, 237, 4, 90, 1, 92, 1, 238, 4, 237, 4, 238, 4, 239, 4, 237, 4, 238, 4, 240, 4, 239, 4, 99, 1, 100, 1, 238, 4, 92, 1, 99, 1, 238, 4, 100, 1, 240, 4, 238, 4, 100, 1, 231, 4, 240, 4, 234, 4, 240, 4, 231, 4, 234, 4, 239, 4, 240, 4, 36, 1, 37, 1, 90, 1, 90, 1, 237, 4, 36, 1, 239, 4, 36, 1, 237, 4, 36, 1, 241, 4, 33, 1, 29, 1, 33, 1, 252, 0, 33, 1, 241, 4, 252, 0, 241, 4, 242, 4, 252, 0, 22, 1, 242, 4, 27, 1, 22, 1, 252, 0, 242, 4, 36, 1, 239, 4, 241, 4, 239, 4, 234, 4, 241, 4, 234, 4, 242, 4, 241, 4, 234, 4, 235, 4, 242, 4, 242, 4, 235, 4, 27, 1, 27, 1, 236, 4, 26, 1, 27, 1, 235, 4, 236, 4, 25, 1, 26, 1, 236, 4, 24, 1, 25, 1, 236, 4, 102, 1, 23, 1, 233, 4, 102, 1, 223, 4, 23, 1, 23, 1, 24, 1, 236, 4, 236, 4, 233, 4, 23, 1, 243, 4, 245, 4, 244, 4, 243, 4, 246, 4, 245, 4, 247, 4, 249, 4, 248, 4, 247, 4, 250, 4, 249, 4, 248, 4, 251, 4, 247, 4, 248, 4, 252, 4, 251, 4, 247, 4, 254, 4, 253, 4, 247, 4, 251, 4, 254, 4, 253, 4, 0, 5, 255, 4, 253, 4, 254, 4, 0, 5, 255, 4, 1, 5, 81, 3, 255, 4, 0, 5, 1, 5, 67, 3, 81, 3, 1, 5, 67, 3, 1, 5, 140, 3, 1, 5, 0, 5, 140, 3, 140, 3, 0, 5, 157, 3, 157, 3, 0, 5, 174, 3, 0, 5, 254, 4, 174, 3, 191, 3, 254, 4, 251, 4, 191, 3, 174, 3, 254, 4, 251, 4, 252, 4, 191, 3, 191, 3, 252, 4, 208, 3, 168, 0, 2, 5, 163, 0, 168, 0, 3, 5, 2, 5, 163, 0, 4, 5, 158, 0, 163, 0, 2, 5, 4, 5, 158, 0, 5, 5, 153, 0, 158, 0, 4, 5, 5, 5, 153, 0, 6, 5, 148, 0, 153, 0, 5, 5, 6, 5, 3, 5, 7, 5, 2, 5, 3, 5, 8, 5, 7, 5, 2, 5, 9, 5, 4, 5, 2, 5, 7, 5, 9, 5, 4, 5, 10, 5, 5, 5, 4, 5, 9, 5, 10, 5, 5, 5, 11, 5, 6, 5, 5, 5, 10, 5, 11, 5, 8, 5, 12, 5, 7, 5, 8, 5, 13, 5, 12, 5, 7, 5, 14, 5, 9, 5, 7, 5, 12, 5, 14, 5, 9, 5, 15, 5, 10, 5, 9, 5, 14, 5, 15, 5, 10, 5, 16, 5, 11, 5, 10, 5, 15, 5, 16, 5, 13, 5, 17, 5, 12, 5, 13, 5, 18, 5, 17, 5, 12, 5, 19, 5, 14, 5, 12, 5, 17, 5, 19, 5, 14, 5, 20, 5, 15, 5, 14, 5, 19, 5, 20, 5, 15, 5, 21, 5, 16, 5, 15, 5, 20, 5, 21, 5, 18, 5, 22, 5, 17, 5, 18, 5, 23, 5, 22, 5, 17, 5, 24, 5, 19, 5, 17, 5, 22, 5, 24, 5, 19, 5, 25, 5, 20, 5, 19, 5, 24, 5, 25, 5, 20, 5, 26, 5, 21, 5, 20, 5, 25, 5, 26, 5, 246, 4, 27, 5, 245, 4, 246, 4, 28, 5, 27, 5, 29, 5, 28, 5, 246, 4, 29, 5, 30, 5, 28, 5, 147, 0, 30, 5, 29, 5, 147, 0, 148, 0, 30, 5, 6, 5, 30, 5, 148, 0, 16, 5, 28, 5, 11, 5, 6, 5, 28, 5, 30, 5, 6, 5, 11, 5, 28, 5, 21, 5, 28, 5, 16, 5, 21, 5, 27, 5, 28, 5, 27, 5, 31, 5, 245, 4, 27, 5, 32, 5, 31, 5, 248, 4, 33, 5, 252, 4, 248, 4, 34, 5, 33, 5, 32, 5, 35, 5, 31, 5, 32, 5, 36, 5, 35, 5, 34, 5, 37, 5, 33, 5, 34, 5, 38, 5, 37, 5, 31, 5, 38, 5, 34, 5, 31, 5, 35, 5, 38, 5, 252, 4, 33, 5, 208, 3, 33, 5, 37, 5, 208, 3, 208, 3, 37, 5, 225, 3, 27, 5, 21, 5, 32, 5, 21, 5, 36, 5, 32, 5, 21, 5, 26, 5, 36, 5, 26, 5, 39, 5, 36, 5, 26, 5, 40, 5, 39, 5, 37, 5, 41, 5, 225, 3, 37, 5, 42, 5, 41, 5, 36, 5, 43, 5, 35, 5, 36, 5, 39, 5, 43, 5, 38, 5, 42, 5, 37, 5, 38, 5, 44, 5, 42, 5, 35, 5, 44, 5, 38, 5, 35, 5, 43, 5, 44, 5, 22, 5, 45, 5, 24, 5, 22, 5, 46, 5, 45, 5, 24, 5, 47, 5, 25, 5, 24, 5, 45, 5, 47, 5, 25, 5, 40, 5, 26, 5, 25, 5, 47, 5, 40, 5, 225, 3, 48, 5, 224, 3, 225, 3, 41, 5, 48, 5, 178, 0, 50, 5, 49, 5, 178, 0, 49, 5, 173, 0, 173, 0, 49, 5, 168, 0, 3, 5, 49, 5, 8, 5, 168, 0, 49, 5, 3, 5, 8, 5, 49, 5, 13, 5, 13, 5, 49, 5, 18, 5, 23, 5, 49, 5, 50, 5, 23, 5, 18, 5, 49, 5, 51, 5, 23, 5, 50, 5, 51, 5, 52, 5, 23, 5, 22, 5, 52, 5, 53, 5, 22, 5, 23, 5, 52, 5, 22, 5, 53, 5, 46, 5, 53, 5, 54, 5, 46, 5, 45, 5, 54, 5, 47, 5, 45, 5, 46, 5, 54, 5, 47, 5, 39, 5, 40, 5, 47, 5, 54, 5, 39, 5, 43, 5, 54, 5, 55, 5, 43, 5, 39, 5, 54, 5, 43, 5, 55, 5, 44, 5, 44, 5, 55, 5, 42, 5, 42, 5, 55, 5, 41, 5, 41, 5, 56, 5, 48, 5, 41, 5, 55, 5, 56, 5, 226, 3, 58, 5, 57, 5, 226, 3, 227, 3, 58, 5, 229, 3, 226, 3, 57, 5, 229, 3, 228, 3, 226, 3, 230, 3, 57, 5, 59, 5, 230, 3, 229, 3, 57, 5, 230, 3, 60, 5, 223, 3, 230, 3, 59, 5, 60, 5, 222, 3, 60, 5, 61, 5, 222, 3, 223, 3, 60, 5, 222, 3, 220, 3, 221, 3, 222, 3, 61, 5, 220, 3, 220, 3, 215, 3, 219, 3, 220, 3, 61, 5, 215, 3, 215, 3, 62, 5, 214, 3, 215, 3, 61, 5, 62, 5, 216, 3, 62, 5, 63, 5, 216, 3, 214, 3, 62, 5, 216, 3, 64, 5, 218, 3, 216, 3, 63, 5, 64, 5, 218, 3, 17, 4, 217, 3, 218, 3, 64, 5, 17, 4, 64, 5, 65, 5, 17, 4, 17, 4, 65, 5, 25, 4, 25, 4, 65, 5, 33, 4, 33, 4, 66, 5, 55, 4, 33, 4, 65, 5, 66, 5, 58, 4, 66, 5, 67, 5, 58, 4, 55, 4, 66, 5, 58, 4, 64, 4, 61, 4, 58, 4, 67, 5, 64, 4, 64, 4, 68, 5, 67, 4, 64, 4, 67, 5, 68, 5, 70, 4, 68, 5, 69, 5, 70, 4, 67, 4, 68, 5, 69, 5, 69, 4, 70, 4, 69, 5, 70, 5, 69, 4, 71, 4, 70, 5, 71, 5, 71, 4, 69, 4, 70, 5, 71, 4, 72, 5, 75, 4, 71, 4, 71, 5, 72, 5, 72, 5, 73, 5, 75, 4, 72, 5, 74, 5, 73, 5, 75, 4, 128, 4, 74, 4, 75, 4, 73, 5, 128, 4, 73, 5, 75, 5, 128, 4, 128, 4, 76, 5, 127, 4, 128, 4, 75, 5, 76, 5, 132, 4, 76, 5, 77, 5, 132, 4, 127, 4, 76, 5, 78, 5, 79, 5, 134, 4, 78, 5, 80, 5, 79, 5, 134, 4, 81, 5, 133, 4, 134, 4, 79, 5, 81, 5, 133, 4, 130, 4, 131, 4, 133, 4, 81, 5, 130, 4, 129, 4, 81, 5, 82, 5, 129, 4, 130, 4, 81, 5, 82, 5, 83, 5, 129, 4, 129, 4, 83, 5, 121, 4, 121, 4, 172, 4, 113, 4, 121, 4, 83, 5, 172, 4, 179, 4, 83, 5, 84, 5, 179, 4, 172, 4, 83, 5, 179, 4, 84, 5, 185, 4, 185, 4, 84, 5, 191, 4, 84, 5, 85, 5, 191, 4, 86, 5, 191, 4, 85, 5, 86, 5, 190, 4, 191, 4, 86, 5, 87, 5, 190, 4, 190, 4, 87, 5, 192, 4, 195, 4, 87, 5, 88, 5, 195, 4, 192, 4, 87, 5, 195, 4, 88, 5, 194, 4, 194, 4, 88, 5, 193, 4, 193, 4, 89, 5, 201, 4, 193, 4, 88, 5, 89, 5, 200, 4, 89, 5, 90, 5, 200, 4, 201, 4, 89, 5, 200, 4, 90, 5, 202, 4, 202, 4, 90, 5, 203, 4, 213, 4, 203, 4, 90, 5, 213, 4, 91, 5, 212, 4, 213, 4, 90, 5, 91, 5, 212, 4, 210, 4, 211, 4, 212, 4, 91, 5, 210, 4, 209, 4, 91, 5, 92, 5, 209, 4, 210, 4, 91, 5, 216, 4, 209, 4, 92, 5, 216, 4, 214, 4, 215, 4, 216, 4, 92, 5, 214, 4, 217, 4, 218, 4, 93, 5, 93, 5, 214, 4, 92, 5, 93, 5, 218, 4, 214, 4, 222, 4, 93, 5, 94, 5, 222, 4, 217, 4, 93, 5, 222, 4, 95, 5, 221, 4, 222, 4, 94, 5, 95, 5, 227, 4, 230, 4, 96, 5, 227, 4, 228, 4, 230, 4, 226, 4, 96, 5, 97, 5, 226, 4, 227, 4, 96, 5, 223, 4, 226, 4, 23, 1, 98, 5, 226, 4, 97, 5, 98, 5, 23, 1, 226, 4, 18, 1, 98, 5, 99, 5, 18, 1, 23, 1, 98, 5, 13, 1, 18, 1, 99, 5, 13, 1, 100, 5, 8, 1, 13, 1, 99, 5, 100, 5, 254, 0, 8, 1, 100, 5, 254, 0, 3, 1, 8, 1, 100, 5, 101, 5, 254, 0, 254, 0, 101, 5, 245, 0, 245, 0, 101, 5, 244, 0, 244, 0, 102, 5, 250, 0, 244, 0, 101, 5, 102, 5, 250, 0, 102, 5, 243, 0, 242, 0, 102, 5, 103, 5, 242, 0, 243, 0, 102, 5, 247, 0, 242, 0, 103, 5, 247, 0, 248, 0, 242, 0, 249, 0, 247, 0, 103, 5, 249, 0, 246, 0, 247, 0, 103, 5, 104, 5, 249, 0, 210, 0, 104, 5, 105, 5, 210, 0, 249, 0, 104, 5, 210, 0, 106, 5, 206, 0, 210, 0, 105, 5, 106, 5, 204, 0, 106, 5, 107, 5, 204, 0, 206, 0, 106, 5, 204, 0, 108, 5, 203, 0, 204, 0, 107, 5, 108, 5, 203, 0, 108, 5, 205, 0, 34, 0, 108, 5, 109, 5, 34, 0, 205, 0, 108, 5, 34, 0, 110, 5, 33, 0, 34, 0, 109, 5, 110, 5, 33, 0, 47, 0, 41, 0, 33, 0, 110, 5, 47, 0, 46, 0, 110, 5, 111, 5, 46, 0, 47, 0, 110, 5, 46, 0, 112, 5, 48, 0, 46, 0, 111, 5, 112, 5, 91, 0, 112, 5, 113, 5, 91, 0, 48, 0, 112, 5, 91, 0, 113, 5, 90, 0, 90, 0, 113, 5, 89, 0, 89, 0, 113, 5, 88, 0, 88, 0, 113, 5, 87, 0, 87, 0, 114, 5, 86, 0, 87, 0, 113, 5, 114, 5, 179, 0, 115, 5, 175, 0, 86, 0, 115, 5, 80, 0, 114, 5, 115, 5, 86, 0, 80, 0, 115, 5, 179, 0, 175, 0, 115, 5, 174, 0, 174, 0, 116, 5, 176, 0, 174, 0, 115, 5, 116, 5, 176, 0, 116, 5, 177, 0, 178, 0, 116, 5, 117, 5, 178, 0, 177, 0, 116, 5, 117, 5, 50, 5, 178, 0, 117, 5, 118, 5, 50, 5, 51, 5, 50, 5, 118, 5), +"material": ExtResource( "4" ), "name": "Grass", -"primitive": 4, -"skeleton_aabb": [], -"vertex_count": 1399 -} +"primitive": 3, +"vertex_count": 1399, +"vertex_data": PackedByteArray(0, 160, 130, 192, 0, 64, 176, 63, 0, 64, 12, 193, 84, 2, 0, 0, 0, 160, 130, 192, 0, 64, 148, 63, 0, 64, 12, 193, 98, 153, 14, 0, 0, 128, 172, 192, 0, 64, 148, 63, 0, 64, 12, 193, 0, 184, 14, 0, 0, 128, 172, 192, 0, 64, 176, 63, 0, 64, 12, 193, 0, 4, 4, 0, 0, 192, 164, 64, 0, 160, 215, 63, 0, 224, 127, 193, 0, 208, 10, 0, 0, 192, 164, 64, 0, 160, 200, 63, 0, 224, 127, 193, 0, 168, 5, 0, 0, 0, 153, 64, 0, 160, 200, 63, 0, 64, 126, 193, 0, 232, 4, 0, 0, 0, 153, 64, 0, 160, 215, 63, 0, 64, 126, 193, 0, 48, 10, 0, 0, 128, 196, 64, 0, 160, 215, 63, 0, 64, 126, 193, 122, 209, 10, 0, 0, 128, 196, 64, 0, 160, 200, 63, 0, 64, 126, 193, 19, 10, 5, 0, 0, 224, 184, 64, 0, 160, 200, 63, 0, 224, 127, 193, 128, 168, 5, 0, 0, 224, 184, 64, 0, 160, 215, 63, 0, 224, 127, 193, 96, 208, 10, 0, 0, 0, 197, 64, 0, 160, 215, 63, 0, 0, 78, 193, 229, 114, 154, 11, 0, 0, 197, 64, 0, 160, 215, 63, 0, 160, 59, 193, 13, 51, 10, 0, 0, 192, 214, 64, 0, 64, 132, 63, 0, 64, 58, 193, 212, 50, 11, 0, 0, 192, 214, 64, 0, 64, 132, 63, 0, 192, 78, 193, 221, 242, 138, 5, 0, 32, 192, 64, 0, 96, 0, 64, 0, 64, 45, 193, 212, 178, 26, 11, 0, 64, 209, 64, 0, 0, 178, 63, 0, 64, 42, 193, 164, 182, 139, 6, 0, 128, 170, 64, 0, 96, 0, 64, 0, 0, 28, 193, 51, 146, 186, 31, 0, 32, 185, 64, 0, 0, 178, 63, 0, 0, 23, 193, 243, 245, 43, 27, 0, 128, 135, 64, 0, 96, 0, 64, 0, 192, 13, 193, 122, 81, 74, 42, 0, 32, 146, 64, 0, 0, 178, 63, 0, 32, 7, 193, 82, 213, 203, 36, 0, 0, 68, 64, 0, 96, 0, 64, 0, 160, 6, 193, 72, 208, 217, 49, 0, 160, 80, 64, 0, 0, 178, 63, 0, 128, 254, 192, 40, 48, 203, 44, 0, 0, 211, 63, 0, 160, 215, 63, 0, 128, 6, 193, 80, 48, 89, 51, 0, 96, 215, 63, 0, 64, 132, 63, 0, 64, 254, 192, 16, 16, 90, 49, 0, 64, 244, 64, 0, 64, 125, 62, 0, 0, 52, 193, 110, 15, 8, 0, 0, 64, 244, 64, 0, 64, 125, 62, 0, 96, 75, 193, 93, 239, 7, 0, 0, 0, 238, 64, 0, 128, 39, 63, 0, 192, 33, 193, 29, 83, 25, 13, 0, 128, 210, 64, 0, 128, 39, 63, 0, 192, 11, 193, 100, 82, 185, 33, 0, 32, 166, 64, 0, 128, 39, 63, 0, 192, 243, 192, 154, 81, 201, 44, 0, 0, 109, 64, 0, 128, 39, 63, 0, 160, 225, 192, 96, 12, 217, 51, 0, 96, 244, 63, 0, 64, 125, 62, 0, 64, 225, 192, 0, 108, 216, 53, 0, 96, 255, 64, 0, 0, 101, 191, 0, 0, 50, 193, 198, 203, 132, 1, 0, 96, 255, 64, 0, 0, 101, 191, 0, 192, 74, 193, 182, 139, 5, 0, 0, 160, 248, 64, 0, 160, 237, 190, 0, 192, 30, 193, 166, 235, 20, 16, 0, 160, 219, 64, 0, 160, 237, 190, 0, 128, 7, 193, 196, 202, 198, 36, 0, 160, 172, 64, 0, 160, 237, 190, 0, 64, 233, 192, 195, 237, 215, 46, 0, 192, 116, 64, 0, 160, 237, 190, 0, 0, 214, 192, 120, 48, 89, 51, 0, 128, 246, 63, 0, 0, 101, 191, 0, 192, 213, 192, 0, 116, 203, 43, 0, 160, 248, 64, 0, 96, 90, 191, 0, 128, 24, 193, 101, 15, 23, 17, 0, 96, 255, 64, 0, 192, 108, 191, 0, 224, 43, 193, 190, 11, 5, 7, 0, 160, 219, 64, 0, 96, 90, 191, 0, 96, 1, 193, 11, 182, 59, 28, 0, 160, 172, 64, 0, 96, 90, 191, 0, 224, 220, 192, 33, 213, 188, 32, 0, 192, 116, 64, 0, 96, 90, 191, 0, 160, 201, 192, 56, 116, 189, 33, 0, 128, 246, 63, 0, 192, 108, 191, 0, 64, 201, 192, 0, 120, 174, 26, 0, 160, 248, 64, 0, 128, 141, 191, 0, 192, 13, 193, 92, 118, 156, 10, 0, 96, 255, 64, 0, 160, 150, 191, 0, 32, 33, 193, 126, 111, 7, 6, 0, 160, 219, 64, 0, 128, 141, 191, 0, 64, 237, 192, 42, 249, 158, 10, 0, 160, 172, 64, 0, 128, 141, 191, 0, 64, 199, 192, 153, 120, 15, 0, 0, 192, 116, 64, 0, 128, 141, 191, 0, 64, 189, 192, 8, 152, 14, 0, 0, 128, 246, 63, 0, 160, 150, 191, 0, 224, 188, 192, 8, 24, 15, 0, 0, 96, 220, 63, 0, 192, 84, 191, 0, 224, 184, 192, 40, 4, 4, 0, 0, 160, 103, 64, 0, 96, 66, 191, 0, 64, 185, 192, 0, 132, 3, 0, 0, 96, 220, 63, 0, 0, 186, 188, 0, 32, 181, 192, 40, 0, 0, 0, 0, 160, 103, 64, 0, 96, 72, 61, 0, 128, 181, 192, 0, 0, 0, 0, 0, 96, 220, 63, 0, 32, 142, 62, 0, 192, 189, 192, 0, 0, 0, 0, 0, 160, 103, 64, 0, 224, 178, 62, 0, 32, 190, 192, 0, 0, 0, 0, 0, 32, 224, 63, 0, 64, 67, 63, 0, 224, 193, 192, 0, 224, 1, 0, 0, 128, 105, 64, 0, 128, 85, 63, 0, 64, 194, 192, 0, 228, 3, 0, 0, 32, 224, 63, 0, 224, 114, 63, 0, 160, 189, 192, 0, 112, 9, 0, 0, 128, 105, 64, 0, 192, 118, 63, 0, 0, 190, 192, 0, 240, 10, 0, 0, 192, 133, 64, 0, 192, 118, 63, 0, 0, 190, 192, 25, 17, 11, 0, 0, 192, 133, 64, 0, 128, 85, 63, 0, 64, 194, 192, 249, 136, 5, 0, 0, 224, 132, 64, 0, 224, 178, 62, 0, 32, 190, 192, 0, 0, 0, 0, 0, 224, 132, 64, 0, 96, 72, 61, 0, 128, 181, 192, 0, 0, 0, 0, 0, 224, 136, 64, 0, 128, 87, 63, 0, 0, 190, 192, 229, 238, 7, 0, 0, 224, 136, 64, 0, 96, 54, 63, 0, 64, 194, 192, 114, 165, 2, 0, 0, 0, 136, 64, 0, 0, 105, 62, 0, 32, 190, 192, 0, 0, 0, 0, 0, 0, 136, 64, 0, 64, 149, 189, 0, 128, 181, 192, 0, 0, 0, 0, 0, 128, 140, 64, 0, 32, 25, 63, 0, 0, 190, 192, 195, 85, 12, 0, 0, 128, 140, 64, 0, 0, 240, 62, 0, 64, 194, 192, 0, 0, 2, 0, 0, 160, 139, 64, 0, 64, 132, 188, 0, 32, 190, 192, 0, 0, 0, 0, 0, 160, 139, 64, 0, 0, 162, 190, 0, 128, 181, 192, 0, 0, 0, 0, 0, 64, 171, 64, 0, 96, 227, 62, 0, 192, 192, 192, 249, 184, 13, 0, 0, 0, 172, 64, 0, 128, 54, 63, 0, 224, 147, 192, 217, 152, 15, 0, 0, 64, 171, 64, 0, 0, 161, 62, 0, 32, 197, 192, 64, 200, 4, 0, 0, 64, 170, 64, 0, 128, 46, 190, 0, 0, 193, 192, 0, 0, 0, 0, 0, 64, 170, 64, 0, 32, 241, 190, 0, 96, 184, 192, 0, 0, 0, 0, 0, 64, 171, 64, 0, 96, 227, 62, 0, 0, 78, 192, 17, 117, 189, 28, 0, 224, 188, 64, 0, 0, 44, 62, 0, 0, 78, 192, 146, 53, 45, 24, 0, 0, 193, 64, 0, 192, 205, 62, 0, 224, 147, 192, 243, 217, 13, 0, 0, 224, 188, 64, 0, 0, 44, 62, 0, 192, 192, 192, 187, 181, 12, 0, 0, 224, 188, 64, 0, 0, 29, 61, 0, 32, 197, 192, 136, 4, 4, 0, 0, 0, 188, 64, 0, 160, 228, 190, 0, 0, 193, 192, 0, 0, 0, 0, 0, 0, 188, 64, 0, 64, 63, 191, 0, 96, 184, 192, 0, 164, 2, 0, 0, 160, 220, 64, 0, 160, 192, 190, 0, 0, 78, 192, 59, 214, 156, 9, 0, 64, 220, 64, 0, 192, 132, 190, 0, 224, 147, 192, 116, 150, 12, 0, 0, 160, 220, 64, 0, 160, 192, 190, 0, 192, 192, 192, 84, 118, 11, 0, 0, 160, 220, 64, 0, 128, 1, 191, 0, 32, 197, 192, 114, 5, 3, 0, 0, 160, 219, 64, 0, 160, 125, 191, 0, 0, 193, 192, 16, 0, 0, 0, 0, 160, 219, 64, 0, 64, 165, 191, 0, 96, 184, 192, 201, 204, 7, 0, 0, 128, 140, 64, 0, 32, 25, 63, 0, 64, 72, 192, 241, 112, 74, 45, 0, 224, 71, 62, 0, 192, 66, 191, 0, 64, 188, 192, 0, 164, 3, 0, 0, 224, 71, 62, 0, 32, 153, 189, 0, 0, 185, 192, 0, 160, 1, 0, 0, 192, 188, 62, 0, 0, 135, 191, 0, 160, 191, 192, 0, 56, 15, 0, 0, 192, 188, 62, 0, 32, 87, 191, 0, 32, 202, 192, 0, 24, 47, 20, 0, 192, 188, 62, 0, 128, 80, 191, 0, 192, 212, 192, 0, 116, 204, 39, 0, 128, 181, 62, 0, 32, 30, 62, 0, 128, 222, 192, 0, 108, 216, 53, 0, 0, 38, 62, 0, 96, 82, 63, 0, 32, 247, 192, 0, 200, 102, 57, 0, 224, 71, 62, 0, 192, 66, 191, 0, 64, 188, 192, 0, 164, 3, 0, 0, 96, 172, 191, 0, 160, 92, 191, 0, 192, 184, 192, 0, 164, 3, 0, 0, 96, 172, 191, 0, 64, 245, 56, 0, 192, 180, 192, 0, 164, 3, 0, 0, 192, 188, 62, 0, 0, 135, 191, 0, 160, 191, 192, 0, 56, 15, 0, 0, 128, 144, 191, 0, 128, 157, 191, 0, 0, 189, 192, 0, 248, 14, 0, 0, 192, 188, 62, 0, 32, 87, 191, 0, 32, 202, 192, 0, 24, 47, 20, 0, 128, 144, 191, 0, 64, 118, 191, 0, 64, 202, 192, 0, 24, 47, 20, 0, 192, 188, 62, 0, 128, 80, 191, 0, 192, 212, 192, 0, 116, 204, 39, 0, 128, 144, 191, 0, 224, 109, 191, 0, 128, 215, 192, 0, 116, 76, 39, 0, 128, 181, 62, 0, 32, 30, 62, 0, 128, 222, 192, 0, 108, 216, 53, 0, 192, 146, 191, 0, 128, 147, 62, 0, 192, 227, 192, 0, 204, 216, 52, 0, 0, 38, 62, 0, 96, 82, 63, 0, 32, 247, 192, 0, 200, 102, 57, 0, 192, 177, 191, 0, 32, 144, 63, 0, 64, 1, 193, 0, 80, 75, 40, 0, 160, 55, 192, 0, 128, 102, 191, 0, 160, 183, 192, 112, 228, 3, 0, 0, 160, 55, 192, 0, 128, 236, 60, 0, 64, 179, 192, 153, 100, 4, 0, 0, 192, 52, 192, 0, 64, 166, 191, 0, 64, 188, 192, 96, 216, 14, 0, 0, 192, 52, 192, 0, 0, 129, 191, 0, 128, 202, 192, 40, 248, 46, 21, 0, 192, 52, 192, 0, 32, 121, 191, 0, 192, 216, 192, 40, 148, 204, 38, 0, 224, 52, 192, 0, 192, 173, 62, 0, 0, 230, 192, 0, 48, 217, 51, 0, 96, 56, 192, 0, 224, 152, 63, 0, 32, 4, 193, 0, 20, 61, 36, 0, 64, 109, 192, 0, 192, 74, 191, 0, 0, 190, 192, 153, 228, 3, 0, 0, 64, 109, 192, 0, 96, 84, 189, 0, 128, 186, 192, 185, 4, 3, 0, 0, 224, 106, 192, 0, 224, 141, 191, 0, 160, 193, 192, 153, 24, 15, 0, 0, 224, 106, 192, 0, 160, 96, 191, 0, 0, 205, 192, 48, 24, 47, 20, 0, 224, 106, 192, 0, 128, 89, 191, 0, 64, 216, 192, 40, 84, 204, 39, 0, 0, 107, 192, 0, 0, 72, 62, 0, 224, 226, 192, 0, 172, 88, 53, 0, 160, 109, 192, 0, 64, 106, 63, 0, 96, 253, 192, 0, 84, 189, 33, 0, 0, 128, 63, 0, 32, 160, 63, 0, 192, 249, 192, 201, 160, 225, 61, 0, 0, 151, 63, 0, 160, 215, 63, 0, 32, 3, 193, 90, 205, 88, 48, 0, 0, 128, 63, 0, 32, 160, 63, 0, 192, 249, 192, 201, 160, 225, 61, 0, 0, 128, 191, 0, 32, 160, 63, 0, 192, 249, 192, 0, 96, 225, 56, 0, 0, 128, 63, 0, 96, 40, 63, 0, 192, 181, 192, 0, 4, 3, 0, 0, 0, 128, 63, 0, 160, 122, 63, 0, 192, 181, 192, 0, 52, 12, 0, 0, 0, 128, 191, 0, 96, 40, 63, 0, 192, 181, 192, 0, 228, 2, 0, 0, 0, 128, 191, 0, 160, 122, 63, 0, 192, 181, 192, 0, 196, 3, 0, 0, 160, 163, 191, 0, 160, 109, 63, 0, 96, 168, 192, 0, 40, 5, 0, 0, 96, 213, 191, 0, 160, 109, 63, 0, 128, 163, 192, 0, 76, 7, 0, 0, 224, 43, 192, 0, 160, 109, 63, 0, 128, 163, 192, 144, 44, 8, 0, 0, 160, 163, 63, 0, 160, 109, 63, 0, 96, 168, 192, 64, 216, 143, 4, 0, 0, 128, 63, 0, 160, 57, 63, 0, 160, 62, 192, 0, 56, 46, 27, 0, 0, 128, 63, 0, 32, 149, 62, 0, 96, 249, 191, 9, 85, 61, 30, 0, 64, 227, 63, 0, 128, 20, 190, 0, 96, 249, 191, 203, 213, 59, 31, 0, 64, 227, 63, 0, 224, 60, 63, 0, 192, 39, 192, 169, 212, 203, 40, 0, 0, 128, 63, 0, 128, 166, 61, 0, 64, 165, 191, 227, 149, 29, 13, 0, 64, 227, 63, 0, 192, 181, 190, 0, 64, 165, 191, 59, 214, 28, 12, 0, 0, 128, 63, 0, 0, 222, 187, 0, 0, 69, 191, 243, 217, 141, 4, 0, 64, 227, 63, 0, 224, 226, 190, 0, 0, 69, 191, 67, 246, 12, 4, 0, 0, 128, 63, 0, 0, 0, 0, 0, 0, 128, 63, 235, 149, 157, 12, 0, 64, 227, 63, 0, 128, 223, 190, 0, 0, 128, 63, 35, 54, 13, 0, 0, 0, 26, 64, 0, 160, 45, 191, 0, 96, 249, 191, 146, 245, 59, 33, 0, 0, 26, 64, 0, 32, 81, 62, 0, 192, 39, 192, 42, 237, 88, 49, 0, 0, 26, 64, 0, 128, 99, 191, 0, 64, 165, 191, 211, 185, 29, 13, 0, 0, 26, 64, 0, 0, 122, 191, 0, 0, 69, 191, 219, 249, 141, 4, 0, 0, 26, 64, 0, 64, 120, 191, 0, 0, 128, 63, 211, 249, 13, 0, 0, 64, 63, 64, 0, 32, 89, 191, 0, 96, 249, 191, 136, 244, 188, 35, 0, 64, 63, 64, 0, 64, 13, 61, 0, 192, 39, 192, 96, 236, 88, 52, 0, 64, 63, 64, 0, 96, 135, 191, 0, 64, 165, 191, 161, 56, 159, 14, 0, 64, 63, 64, 0, 192, 146, 191, 0, 0, 69, 191, 169, 152, 15, 5, 0, 64, 63, 64, 0, 224, 145, 191, 0, 0, 128, 63, 169, 120, 15, 0, 0, 160, 89, 64, 0, 96, 95, 191, 0, 96, 249, 191, 0, 20, 189, 35, 0, 160, 89, 64, 0, 192, 39, 60, 0, 192, 39, 192, 0, 112, 217, 50, 0, 160, 89, 64, 0, 128, 138, 191, 0, 64, 165, 191, 0, 88, 159, 14, 0, 160, 89, 64, 0, 224, 149, 191, 0, 0, 69, 191, 0, 184, 15, 5, 0, 160, 89, 64, 0, 0, 149, 191, 0, 0, 128, 63, 0, 152, 15, 0, 0, 64, 131, 64, 0, 160, 45, 191, 0, 96, 249, 191, 0, 180, 204, 37, 0, 64, 131, 64, 0, 32, 81, 62, 0, 192, 39, 192, 32, 240, 218, 45, 0, 64, 131, 64, 0, 128, 99, 191, 0, 64, 165, 191, 0, 120, 31, 15, 0, 64, 131, 64, 0, 0, 122, 191, 0, 0, 69, 191, 0, 216, 15, 5, 0, 64, 131, 64, 0, 64, 120, 191, 0, 0, 128, 63, 0, 184, 15, 0, 0, 0, 146, 64, 0, 128, 70, 191, 0, 96, 249, 191, 185, 180, 60, 36, 0, 0, 146, 64, 0, 160, 219, 61, 0, 192, 39, 192, 161, 116, 203, 42, 0, 0, 146, 64, 0, 64, 124, 191, 0, 64, 165, 191, 217, 24, 159, 14, 0, 0, 146, 64, 0, 96, 137, 191, 0, 0, 69, 191, 225, 120, 15, 5, 0, 0, 146, 64, 0, 128, 136, 191, 0, 0, 128, 63, 217, 88, 15, 0, 0, 32, 187, 64, 0, 160, 139, 191, 0, 96, 249, 191, 161, 84, 61, 33, 0, 32, 187, 64, 0, 0, 85, 190, 0, 192, 39, 192, 209, 148, 75, 41, 0, 32, 187, 64, 0, 128, 166, 191, 0, 64, 165, 191, 153, 120, 159, 10, 0, 32, 187, 64, 0, 192, 177, 191, 0, 0, 69, 191, 136, 184, 15, 5, 0, 32, 187, 64, 0, 224, 176, 191, 0, 0, 128, 63, 209, 120, 15, 0, 0, 32, 187, 64, 0, 32, 35, 59, 0, 96, 60, 192, 249, 84, 204, 36, 0, 0, 146, 64, 0, 160, 162, 62, 0, 96, 60, 192, 177, 148, 203, 41, 0, 64, 131, 64, 0, 96, 212, 62, 0, 96, 60, 192, 112, 80, 217, 50, 0, 160, 89, 64, 0, 32, 11, 63, 0, 96, 60, 192, 16, 140, 231, 55, 0, 64, 63, 64, 0, 64, 17, 63, 0, 96, 60, 192, 80, 200, 102, 57, 0, 0, 26, 64, 0, 192, 60, 63, 0, 96, 60, 192, 161, 176, 89, 49, 0, 64, 227, 63, 0, 192, 114, 63, 0, 96, 60, 192, 64, 184, 174, 23, 0, 32, 224, 63, 0, 224, 114, 63, 0, 160, 71, 192, 0, 56, 31, 17, 0, 160, 163, 63, 0, 160, 109, 63, 0, 160, 103, 192, 0, 24, 31, 12, 0, 128, 105, 64, 0, 192, 118, 63, 0, 64, 72, 192, 32, 200, 229, 58, 0, 192, 133, 64, 0, 192, 118, 63, 0, 64, 72, 192, 144, 8, 101, 59, 0, 224, 136, 64, 0, 128, 87, 63, 0, 64, 72, 192, 106, 197, 99, 57, 0, 192, 200, 64, 0, 160, 215, 63, 0, 160, 123, 193, 122, 53, 13, 0, 0, 192, 200, 64, 0, 160, 215, 63, 0, 224, 104, 193, 211, 25, 14, 0, 0, 64, 207, 64, 0, 0, 202, 63, 0, 224, 104, 193, 180, 150, 11, 0, 0, 64, 207, 64, 0, 0, 202, 63, 0, 160, 123, 193, 251, 245, 12, 0, 0, 192, 200, 64, 0, 160, 215, 63, 0, 128, 83, 193, 84, 86, 156, 14, 0, 64, 207, 64, 0, 0, 202, 63, 0, 128, 83, 193, 188, 50, 27, 11, 0, 0, 221, 64, 0, 96, 96, 63, 0, 224, 104, 193, 110, 15, 8, 0, 0, 0, 221, 64, 0, 96, 96, 63, 0, 160, 123, 193, 85, 111, 8, 0, 0, 0, 221, 64, 0, 96, 96, 63, 0, 128, 83, 193, 61, 51, 9, 0, 0, 192, 243, 64, 0, 224, 179, 190, 0, 224, 104, 193, 142, 47, 7, 0, 0, 192, 243, 64, 0, 224, 179, 190, 0, 160, 123, 193, 134, 111, 7, 0, 0, 192, 243, 64, 0, 224, 179, 190, 0, 128, 83, 193, 134, 171, 6, 0, 0, 224, 0, 65, 0, 64, 174, 191, 0, 224, 104, 193, 93, 79, 8, 0, 0, 224, 0, 65, 0, 64, 174, 191, 0, 160, 123, 193, 93, 143, 8, 0, 0, 224, 0, 65, 0, 64, 174, 191, 0, 128, 83, 193, 158, 107, 6, 0, 0, 224, 0, 65, 0, 64, 174, 191, 0, 64, 136, 193, 85, 175, 8, 0, 0, 192, 243, 64, 0, 64, 29, 191, 0, 64, 136, 193, 110, 239, 7, 0, 0, 96, 226, 64, 0, 0, 146, 62, 0, 64, 135, 193, 21, 179, 9, 0, 0, 160, 211, 64, 0, 160, 108, 63, 0, 0, 133, 193, 92, 182, 11, 0, 0, 224, 0, 65, 0, 64, 174, 191, 0, 64, 148, 193, 93, 79, 8, 0, 0, 96, 249, 64, 0, 192, 61, 191, 0, 192, 147, 193, 77, 207, 8, 0, 0, 192, 230, 64, 0, 64, 160, 189, 0, 192, 145, 193, 140, 22, 12, 0, 0, 64, 213, 64, 0, 96, 168, 62, 0, 32, 144, 193, 154, 185, 13, 0, 0, 128, 196, 64, 0, 192, 174, 63, 0, 128, 128, 193, 217, 244, 12, 0, 0, 224, 184, 64, 0, 192, 174, 63, 0, 64, 129, 193, 64, 212, 12, 0, 0, 224, 148, 64, 0, 160, 215, 63, 0, 192, 123, 193, 0, 8, 5, 0, 0, 192, 200, 64, 0, 192, 187, 63, 0, 0, 125, 193, 50, 113, 10, 0, 0, 224, 148, 64, 0, 160, 200, 63, 0, 192, 123, 193, 0, 8, 6, 0, 0, 192, 164, 64, 0, 192, 174, 63, 0, 64, 129, 193, 0, 148, 12, 0, 0, 0, 153, 64, 0, 192, 174, 63, 0, 128, 128, 193, 0, 180, 11, 0, 0, 224, 148, 64, 0, 192, 174, 63, 0, 128, 126, 193, 0, 84, 12, 0, 0, 192, 193, 64, 0, 128, 94, 63, 0, 128, 137, 193, 169, 88, 14, 0, 0, 32, 182, 64, 0, 64, 106, 63, 0, 96, 137, 193, 48, 184, 14, 0, 0, 192, 164, 64, 0, 32, 112, 63, 0, 224, 135, 193, 0, 152, 14, 0, 0, 0, 153, 64, 0, 32, 112, 63, 0, 32, 135, 193, 0, 88, 14, 0, 0, 224, 148, 64, 0, 32, 112, 63, 0, 224, 133, 193, 0, 56, 14, 0, 0, 224, 192, 64, 0, 0, 215, 62, 0, 192, 145, 193, 1, 25, 14, 0, 0, 224, 184, 64, 0, 32, 242, 62, 0, 32, 147, 193, 169, 120, 14, 0, 0, 128, 169, 64, 0, 160, 247, 62, 0, 64, 146, 193, 0, 120, 14, 0, 0, 128, 154, 64, 0, 96, 239, 62, 0, 224, 144, 193, 0, 88, 14, 0, 0, 96, 140, 64, 0, 0, 237, 62, 0, 64, 144, 193, 0, 88, 14, 0, 0, 128, 202, 64, 0, 192, 60, 63, 0, 0, 139, 193, 17, 249, 13, 0, 0, 192, 201, 64, 0, 96, 107, 62, 0, 192, 147, 193, 225, 88, 14, 0, 0, 96, 157, 64, 0, 160, 82, 61, 0, 32, 151, 193, 0, 216, 13, 0, 0, 0, 140, 64, 0, 0, 3, 61, 0, 0, 150, 193, 0, 24, 14, 0, 0, 128, 220, 64, 0, 128, 123, 190, 0, 0, 155, 193, 153, 152, 14, 0, 0, 192, 207, 64, 0, 192, 128, 190, 0, 224, 155, 193, 161, 24, 14, 0, 0, 192, 234, 64, 0, 96, 98, 190, 0, 96, 155, 193, 243, 21, 13, 0, 0, 64, 157, 64, 0, 160, 75, 190, 0, 96, 155, 193, 0, 148, 13, 0, 0, 160, 140, 64, 0, 0, 117, 190, 0, 224, 154, 193, 0, 24, 14, 0, 0, 32, 181, 64, 0, 160, 148, 61, 0, 0, 155, 193, 0, 24, 14, 0, 0, 64, 216, 64, 0, 160, 95, 191, 0, 96, 166, 193, 56, 248, 13, 0, 0, 64, 196, 64, 0, 128, 94, 191, 0, 160, 164, 193, 24, 116, 13, 0, 0, 0, 153, 64, 0, 128, 94, 191, 0, 0, 164, 193, 0, 248, 13, 0, 0, 224, 148, 64, 0, 128, 94, 191, 0, 192, 162, 193, 0, 248, 13, 0, 0, 96, 249, 64, 0, 32, 134, 191, 0, 192, 157, 193, 245, 82, 10, 0, 0, 192, 234, 64, 0, 128, 104, 191, 0, 96, 165, 193, 50, 89, 14, 0, 0, 192, 225, 64, 0, 160, 95, 191, 0, 192, 164, 193, 80, 88, 14, 0, 0, 224, 0, 65, 0, 96, 155, 191, 0, 64, 158, 193, 29, 243, 9, 0, 0, 192, 164, 64, 0, 128, 94, 191, 0, 192, 164, 193, 0, 148, 13, 0, 0, 32, 9, 64, 0, 64, 206, 63, 0, 32, 129, 193, 0, 12, 7, 0, 0, 224, 230, 190, 0, 128, 214, 63, 0, 64, 119, 193, 0, 120, 14, 0, 0, 192, 8, 64, 0, 64, 215, 63, 0, 32, 129, 193, 0, 0, 0, 0, 0, 32, 76, 64, 0, 128, 94, 191, 0, 32, 165, 193, 8, 24, 14, 0, 0, 160, 75, 64, 0, 96, 119, 190, 0, 160, 155, 193, 0, 56, 14, 0, 0, 160, 75, 64, 0, 0, 243, 60, 0, 128, 150, 193, 0, 24, 14, 0, 0, 160, 75, 64, 0, 0, 237, 62, 0, 0, 145, 193, 0, 56, 14, 0, 0, 32, 76, 64, 0, 32, 112, 63, 0, 64, 136, 193, 16, 24, 14, 0, 0, 0, 225, 63, 0, 128, 94, 191, 0, 224, 161, 193, 0, 24, 14, 0, 0, 64, 236, 63, 0, 96, 119, 190, 0, 96, 154, 193, 0, 56, 14, 0, 0, 0, 237, 63, 0, 0, 243, 60, 0, 128, 149, 193, 0, 24, 14, 0, 0, 64, 236, 63, 0, 0, 237, 62, 0, 192, 143, 193, 0, 88, 14, 0, 0, 0, 225, 63, 0, 32, 112, 63, 0, 0, 133, 193, 0, 116, 13, 0, 0, 224, 54, 63, 0, 128, 94, 191, 0, 96, 164, 193, 16, 248, 13, 0, 0, 192, 79, 63, 0, 96, 119, 190, 0, 96, 155, 193, 56, 24, 14, 0, 0, 224, 81, 63, 0, 0, 243, 60, 0, 96, 150, 193, 56, 24, 14, 0, 0, 192, 79, 63, 0, 0, 237, 62, 0, 192, 144, 193, 48, 56, 14, 0, 0, 224, 54, 63, 0, 32, 112, 63, 0, 128, 135, 193, 0, 56, 14, 0, 0, 128, 86, 62, 0, 128, 94, 191, 0, 192, 163, 193, 72, 184, 13, 0, 0, 192, 175, 188, 0, 192, 106, 190, 0, 32, 156, 193, 80, 88, 14, 0, 0, 64, 35, 189, 0, 128, 172, 60, 0, 96, 151, 193, 104, 248, 13, 0, 0, 192, 175, 188, 0, 192, 237, 62, 0, 192, 145, 193, 104, 24, 14, 0, 0, 128, 86, 62, 0, 32, 112, 63, 0, 224, 134, 193, 32, 120, 14, 0, 0, 160, 188, 191, 0, 128, 94, 191, 0, 64, 168, 193, 0, 20, 13, 0, 0, 160, 188, 191, 0, 128, 157, 189, 0, 64, 158, 193, 16, 216, 14, 0, 0, 160, 188, 191, 0, 128, 157, 189, 0, 0, 155, 193, 16, 216, 14, 0, 0, 160, 188, 191, 0, 32, 242, 62, 0, 160, 150, 193, 0, 116, 13, 0, 0, 160, 188, 191, 0, 32, 112, 63, 0, 96, 139, 193, 0, 56, 15, 0, 0, 192, 13, 192, 0, 128, 94, 191, 0, 96, 166, 193, 0, 212, 12, 0, 0, 192, 13, 192, 0, 128, 157, 189, 0, 96, 156, 193, 0, 88, 15, 0, 0, 192, 13, 192, 0, 128, 157, 189, 0, 32, 153, 193, 80, 248, 13, 0, 0, 192, 13, 192, 0, 32, 242, 62, 0, 192, 148, 193, 0, 180, 12, 0, 0, 192, 13, 192, 0, 32, 112, 63, 0, 128, 137, 193, 0, 244, 11, 0, 0, 0, 129, 191, 0, 96, 219, 63, 0, 32, 75, 193, 0, 24, 15, 0, 0, 64, 86, 191, 0, 160, 205, 63, 0, 128, 112, 193, 0, 176, 9, 0, 0, 64, 155, 191, 0, 96, 209, 63, 0, 32, 75, 193, 0, 48, 11, 0, 0, 0, 151, 191, 0, 160, 215, 63, 0, 64, 32, 193, 0, 216, 14, 0, 0, 64, 177, 191, 0, 192, 205, 63, 0, 64, 32, 193, 0, 208, 10, 0, 0, 96, 111, 191, 0, 192, 169, 63, 0, 32, 111, 193, 0, 172, 8, 0, 0, 128, 171, 191, 0, 32, 173, 63, 0, 32, 75, 193, 0, 136, 6, 0, 0, 128, 193, 191, 0, 192, 146, 63, 0, 64, 32, 193, 0, 168, 6, 0, 0, 0, 134, 191, 0, 64, 141, 63, 0, 160, 109, 193, 0, 16, 10, 2, 0, 32, 190, 191, 0, 160, 146, 63, 0, 32, 75, 193, 0, 244, 12, 0, 0, 0, 191, 191, 0, 160, 146, 63, 0, 96, 30, 193, 0, 44, 8, 0, 0, 0, 128, 191, 0, 64, 201, 63, 0, 192, 249, 192, 0, 200, 52, 32, 0, 128, 183, 191, 0, 160, 146, 63, 0, 192, 5, 193, 0, 208, 26, 14, 0, 0, 151, 191, 0, 160, 215, 63, 0, 32, 3, 193, 0, 40, 37, 19, 0, 224, 110, 192, 0, 160, 146, 63, 0, 64, 7, 193, 0, 184, 174, 19, 0, 192, 157, 192, 0, 192, 74, 191, 0, 64, 192, 192, 16, 196, 3, 0, 0, 96, 157, 192, 0, 96, 84, 189, 0, 192, 188, 192, 0, 4, 3, 0, 0, 224, 156, 192, 0, 224, 141, 191, 0, 0, 196, 192, 0, 56, 15, 0, 0, 224, 157, 192, 0, 160, 96, 191, 0, 64, 207, 192, 0, 24, 47, 20, 0, 192, 158, 192, 0, 128, 89, 191, 0, 160, 218, 192, 0, 84, 76, 40, 0, 192, 159, 192, 0, 0, 72, 62, 0, 32, 229, 192, 0, 48, 217, 51, 0, 160, 167, 192, 0, 192, 61, 63, 0, 128, 0, 193, 48, 148, 189, 32, 0, 0, 204, 192, 0, 192, 74, 191, 0, 96, 191, 192, 0, 100, 3, 0, 0, 160, 204, 192, 0, 96, 84, 189, 0, 224, 187, 192, 0, 168, 5, 0, 0, 64, 202, 192, 0, 224, 141, 191, 0, 192, 194, 192, 0, 184, 14, 0, 0, 32, 200, 192, 0, 160, 96, 191, 0, 224, 205, 192, 0, 24, 47, 19, 0, 0, 198, 192, 0, 128, 89, 191, 0, 0, 217, 192, 0, 148, 76, 38, 0, 32, 196, 192, 0, 0, 72, 62, 0, 96, 227, 192, 0, 140, 88, 53, 0, 128, 192, 192, 0, 64, 106, 63, 0, 160, 253, 192, 64, 24, 62, 29, 0, 128, 172, 192, 0, 128, 183, 63, 0, 96, 181, 192, 0, 168, 196, 44, 0, 128, 172, 192, 0, 128, 155, 63, 0, 96, 181, 192, 0, 40, 5, 0, 0, 160, 130, 192, 0, 128, 155, 63, 0, 96, 181, 192, 108, 46, 7, 0, 0, 160, 130, 192, 0, 128, 183, 63, 0, 96, 181, 192, 212, 170, 182, 35, 0, 160, 130, 192, 0, 32, 145, 63, 0, 224, 20, 193, 50, 25, 15, 0, 0, 32, 126, 192, 0, 32, 137, 63, 0, 192, 24, 193, 0, 120, 15, 0, 0, 160, 114, 192, 0, 160, 146, 63, 0, 224, 31, 193, 0, 216, 142, 0, 0, 32, 126, 192, 0, 32, 137, 63, 0, 64, 45, 193, 0, 248, 15, 0, 0, 32, 199, 192, 0, 32, 137, 63, 0, 128, 48, 193, 0, 24, 15, 0, 0, 32, 176, 192, 0, 32, 137, 63, 0, 64, 45, 193, 8, 248, 15, 0, 0, 224, 196, 192, 0, 128, 142, 63, 0, 192, 43, 193, 185, 120, 15, 0, 0, 160, 181, 192, 0, 32, 137, 63, 0, 128, 43, 193, 48, 216, 15, 0, 0, 192, 201, 192, 0, 160, 146, 63, 0, 192, 63, 193, 0, 56, 14, 1, 0, 96, 214, 192, 0, 224, 93, 63, 0, 192, 63, 193, 0, 216, 143, 5, 0, 224, 211, 192, 0, 224, 74, 63, 0, 128, 48, 193, 0, 120, 14, 0, 0, 96, 204, 192, 0, 64, 154, 63, 0, 32, 44, 193, 80, 180, 11, 0, 0, 160, 213, 192, 0, 160, 175, 63, 0, 128, 44, 193, 153, 140, 7, 0, 0, 224, 223, 192, 0, 32, 190, 63, 0, 32, 45, 193, 211, 41, 5, 0, 0, 96, 223, 192, 0, 0, 133, 63, 0, 128, 61, 193, 219, 25, 14, 0, 0, 224, 225, 192, 0, 160, 102, 63, 0, 160, 47, 193, 59, 146, 10, 0, 0, 160, 233, 192, 0, 128, 192, 63, 0, 160, 50, 193, 134, 15, 7, 0, 0, 96, 232, 192, 0, 128, 192, 63, 0, 64, 47, 193, 229, 70, 4, 0, 0, 128, 228, 192, 0, 32, 143, 63, 0, 192, 62, 193, 219, 117, 13, 0, 0, 224, 229, 192, 0, 160, 166, 63, 0, 96, 59, 193, 188, 146, 10, 0, 0, 32, 227, 192, 0, 64, 157, 63, 0, 192, 58, 193, 69, 207, 8, 0, 0, 160, 225, 192, 0, 192, 133, 63, 0, 0, 62, 193, 90, 57, 14, 0, 0, 0, 232, 192, 0, 64, 185, 63, 0, 128, 54, 193, 29, 211, 9, 2, 0, 64, 229, 192, 0, 224, 175, 63, 0, 192, 53, 193, 93, 79, 136, 5, 0, 224, 208, 192, 0, 224, 93, 63, 0, 0, 74, 193, 0, 152, 15, 1, 0, 192, 218, 192, 0, 0, 133, 63, 0, 64, 75, 193, 144, 184, 143, 0, 0, 64, 205, 192, 0, 224, 93, 63, 0, 64, 84, 193, 0, 148, 13, 0, 0, 0, 215, 192, 0, 0, 133, 63, 0, 128, 85, 193, 50, 25, 15, 0, 0, 128, 202, 192, 0, 160, 146, 63, 0, 128, 88, 193, 0, 180, 11, 0, 0, 224, 232, 191, 0, 160, 146, 63, 0, 64, 90, 193, 0, 88, 15, 0, 0, 128, 114, 192, 0, 160, 146, 63, 0, 192, 58, 193, 0, 248, 15, 0, 0, 32, 143, 192, 0, 160, 146, 63, 0, 64, 89, 193, 0, 216, 13, 0, 0, 64, 227, 192, 0, 128, 133, 63, 0, 128, 65, 193, 88, 216, 15, 0, 0, 32, 218, 192, 0, 64, 129, 63, 0, 0, 87, 193, 92, 182, 12, 0, 0, 32, 225, 192, 0, 64, 129, 63, 0, 128, 70, 193, 0, 88, 15, 0, 0, 96, 206, 192, 0, 128, 50, 63, 0, 192, 92, 193, 136, 184, 14, 0, 0, 0, 215, 192, 0, 32, 72, 63, 0, 96, 96, 193, 188, 118, 11, 0, 0, 160, 207, 192, 0, 128, 50, 63, 0, 128, 121, 193, 0, 248, 15, 0, 0, 192, 150, 192, 0, 128, 50, 63, 0, 128, 90, 193, 0, 84, 12, 0, 0, 192, 140, 192, 0, 128, 50, 63, 0, 32, 112, 193, 225, 120, 143, 5, 0, 128, 137, 192, 0, 128, 50, 63, 0, 128, 138, 193, 128, 184, 15, 0, 0, 32, 140, 192, 0, 128, 50, 63, 0, 192, 155, 193, 112, 152, 14, 0, 0, 64, 186, 192, 0, 128, 50, 63, 0, 128, 157, 193, 0, 24, 14, 0, 0, 64, 233, 192, 0, 128, 50, 63, 0, 0, 155, 193, 0, 148, 13, 0, 0, 64, 234, 192, 0, 128, 50, 63, 0, 96, 144, 193, 0, 248, 14, 0, 0, 224, 207, 192, 0, 128, 50, 63, 0, 64, 125, 193, 0, 248, 15, 0, 0, 0, 209, 192, 0, 128, 50, 63, 0, 160, 138, 193, 0, 248, 143, 0, 0, 0, 214, 192, 0, 224, 47, 63, 0, 64, 116, 193, 0, 216, 15, 0, 0, 128, 216, 192, 0, 224, 47, 63, 0, 192, 111, 193, 0, 116, 13, 0, 0, 128, 216, 192, 0, 64, 80, 63, 0, 224, 103, 193, 146, 153, 14, 0, 0, 128, 216, 192, 0, 64, 129, 63, 0, 96, 96, 193, 158, 107, 6, 0, 0, 0, 214, 192, 0, 224, 47, 63, 0, 192, 137, 193, 0, 216, 15, 1, 0, 0, 214, 192, 0, 224, 47, 63, 0, 192, 137, 193, 0, 216, 15, 1, 0, 64, 234, 192, 0, 128, 50, 63, 0, 96, 144, 193, 0, 248, 14, 0, 0, 160, 11, 193, 0, 224, 47, 63, 0, 192, 137, 193, 0, 244, 11, 0, 0, 64, 234, 192, 0, 128, 192, 62, 0, 32, 147, 193, 0, 16, 10, 0, 0, 160, 11, 193, 0, 96, 187, 62, 0, 96, 140, 193, 0, 180, 12, 0, 0, 96, 252, 192, 0, 224, 86, 189, 0, 128, 155, 193, 0, 84, 12, 0, 0, 64, 14, 193, 0, 128, 28, 60, 0, 160, 151, 193, 195, 149, 12, 0, 0, 96, 252, 192, 0, 224, 86, 189, 0, 128, 155, 193, 0, 84, 12, 0, 0, 64, 234, 192, 0, 128, 192, 62, 0, 32, 147, 193, 0, 16, 10, 0, 0, 64, 58, 193, 0, 32, 167, 190, 0, 0, 134, 193, 0, 120, 143, 2, 0, 64, 58, 193, 0, 128, 158, 190, 0, 224, 136, 193, 0, 184, 46, 22, 0, 96, 77, 193, 0, 96, 218, 190, 0, 32, 133, 193, 104, 216, 174, 21, 0, 96, 77, 193, 0, 0, 227, 190, 0, 32, 130, 193, 0, 216, 143, 2, 0, 224, 90, 193, 0, 0, 220, 190, 0, 192, 129, 193, 193, 184, 174, 20, 0, 224, 90, 193, 0, 160, 228, 190, 0, 192, 125, 193, 104, 216, 143, 2, 0, 224, 98, 193, 0, 96, 184, 190, 0, 96, 128, 193, 195, 117, 173, 18, 0, 224, 98, 193, 0, 224, 192, 190, 0, 192, 122, 193, 178, 89, 142, 2, 0, 224, 105, 193, 0, 160, 135, 189, 0, 64, 124, 193, 140, 118, 27, 16, 0, 224, 105, 193, 0, 0, 170, 189, 0, 96, 118, 193, 76, 246, 12, 2, 0, 192, 111, 193, 0, 192, 63, 62, 0, 0, 121, 193, 76, 22, 172, 18, 0, 192, 111, 193, 0, 128, 46, 62, 0, 32, 115, 193, 162, 121, 142, 2, 0, 0, 119, 193, 0, 192, 165, 62, 0, 224, 115, 193, 211, 117, 29, 17, 0, 0, 119, 193, 0, 32, 157, 62, 0, 0, 110, 193, 130, 185, 142, 2, 0, 128, 127, 193, 0, 192, 14, 63, 0, 96, 112, 193, 178, 149, 173, 18, 0, 128, 127, 193, 0, 128, 10, 63, 0, 128, 106, 193, 130, 185, 142, 2, 0, 32, 134, 193, 0, 160, 89, 63, 0, 128, 110, 193, 82, 249, 173, 21, 0, 32, 134, 193, 0, 96, 85, 63, 0, 160, 104, 193, 66, 249, 142, 6, 0, 64, 36, 193, 0, 32, 189, 61, 0, 224, 136, 193, 0, 152, 143, 2, 0, 64, 36, 193, 0, 128, 223, 61, 0, 224, 139, 193, 0, 184, 174, 22, 0, 0, 47, 193, 0, 192, 133, 61, 0, 192, 138, 193, 0, 152, 46, 23, 0, 0, 47, 193, 0, 160, 70, 61, 0, 192, 135, 193, 0, 56, 143, 2, 0, 0, 28, 193, 0, 224, 151, 62, 0, 64, 138, 193, 88, 152, 15, 0, 0, 160, 29, 193, 0, 192, 135, 62, 0, 224, 139, 193, 48, 148, 189, 32, 0, 64, 58, 193, 0, 192, 38, 60, 0, 32, 140, 193, 48, 176, 218, 46, 0, 96, 77, 193, 0, 224, 218, 189, 0, 96, 136, 193, 25, 49, 74, 45, 0, 224, 90, 193, 0, 64, 225, 189, 0, 0, 133, 193, 90, 17, 74, 44, 0, 224, 98, 193, 0, 0, 37, 189, 0, 128, 131, 193, 11, 50, 73, 40, 0, 224, 105, 193, 0, 192, 129, 62, 0, 96, 129, 193, 164, 206, 55, 35, 0, 192, 111, 193, 0, 192, 1, 63, 0, 128, 127, 193, 124, 14, 200, 37, 0, 0, 119, 193, 0, 192, 36, 63, 0, 96, 122, 193, 51, 238, 200, 38, 0, 128, 127, 193, 0, 160, 96, 63, 0, 224, 118, 193, 178, 145, 201, 42, 0, 32, 134, 193, 0, 192, 149, 63, 0, 0, 117, 193, 98, 177, 201, 44, 0, 64, 36, 193, 0, 160, 219, 62, 0, 32, 143, 193, 0, 144, 90, 47, 0, 0, 47, 193, 0, 32, 197, 62, 0, 0, 142, 193, 16, 80, 90, 48, 0, 160, 29, 193, 0, 192, 21, 63, 0, 32, 143, 193, 72, 236, 88, 52, 0, 64, 58, 193, 0, 64, 160, 62, 0, 160, 141, 193, 161, 44, 231, 55, 0, 96, 77, 193, 0, 192, 72, 62, 0, 224, 137, 193, 82, 237, 214, 52, 0, 224, 90, 193, 0, 128, 69, 62, 0, 128, 134, 193, 138, 237, 86, 51, 0, 224, 98, 193, 0, 96, 134, 62, 0, 0, 133, 193, 27, 74, 214, 47, 0, 224, 105, 193, 0, 96, 14, 63, 0, 192, 130, 193, 140, 74, 69, 43, 0, 192, 111, 193, 0, 96, 79, 63, 0, 32, 129, 193, 108, 74, 69, 45, 0, 0, 119, 193, 0, 64, 114, 63, 0, 64, 125, 193, 51, 202, 85, 47, 0, 128, 127, 193, 0, 32, 151, 63, 0, 192, 121, 193, 138, 105, 86, 52, 0, 32, 134, 193, 0, 128, 188, 63, 0, 224, 119, 193, 90, 137, 86, 53, 0, 64, 36, 193, 0, 96, 59, 63, 0, 160, 144, 193, 0, 12, 231, 56, 0, 0, 47, 193, 0, 32, 48, 63, 0, 128, 143, 193, 120, 168, 102, 57, 0, 160, 29, 193, 0, 64, 99, 63, 0, 160, 144, 193, 0, 104, 230, 57, 0, 64, 58, 193, 0, 192, 138, 63, 0, 224, 143, 193, 0, 148, 204, 38, 0, 32, 76, 193, 0, 224, 114, 63, 0, 192, 140, 193, 177, 20, 189, 34, 0, 192, 89, 193, 0, 64, 112, 63, 0, 192, 137, 193, 58, 149, 60, 33, 0, 160, 98, 193, 0, 192, 132, 63, 0, 192, 135, 193, 43, 50, 59, 29, 0, 224, 105, 193, 0, 224, 169, 63, 0, 32, 133, 193, 148, 18, 42, 26, 0, 192, 111, 193, 0, 96, 202, 63, 0, 128, 131, 193, 67, 150, 43, 24, 0, 0, 119, 193, 0, 224, 219, 63, 0, 224, 128, 193, 51, 146, 58, 31, 0, 128, 127, 193, 0, 224, 249, 63, 0, 96, 126, 193, 187, 17, 59, 36, 0, 32, 134, 193, 0, 160, 15, 64, 0, 128, 124, 193, 1, 21, 61, 32, 0, 64, 36, 193, 0, 96, 192, 63, 0, 224, 146, 193, 0, 148, 76, 37, 0, 0, 47, 193, 0, 192, 186, 63, 0, 192, 145, 193, 0, 84, 189, 33, 0, 160, 29, 193, 0, 96, 212, 63, 0, 224, 146, 193, 0, 20, 189, 35, 0, 0, 60, 193, 0, 128, 142, 63, 0, 96, 148, 193, 0, 52, 13, 0, 0, 64, 76, 193, 0, 160, 122, 63, 0, 64, 145, 193, 0, 248, 13, 0, 0, 160, 89, 193, 0, 128, 119, 63, 0, 32, 142, 193, 0, 56, 14, 0, 0, 160, 98, 193, 0, 64, 136, 63, 0, 32, 140, 193, 56, 248, 13, 0, 0, 160, 105, 193, 0, 32, 167, 63, 0, 32, 138, 193, 225, 116, 13, 0, 0, 0, 112, 193, 0, 128, 197, 63, 0, 64, 136, 193, 136, 184, 13, 0, 0, 64, 119, 193, 0, 224, 220, 63, 0, 0, 134, 193, 144, 216, 13, 0, 0, 128, 127, 193, 0, 32, 1, 64, 0, 64, 132, 193, 17, 217, 13, 0, 0, 32, 134, 193, 0, 224, 19, 64, 0, 96, 131, 193, 0, 56, 14, 0, 0, 64, 36, 193, 0, 0, 201, 63, 0, 0, 152, 193, 0, 52, 13, 0, 0, 32, 47, 193, 0, 128, 176, 63, 0, 160, 150, 193, 0, 52, 13, 0, 0, 160, 29, 193, 0, 0, 221, 63, 0, 0, 152, 193, 16, 152, 14, 0, 0, 0, 60, 193, 0, 160, 139, 62, 0, 96, 153, 193, 0, 208, 9, 0, 0, 64, 76, 193, 0, 224, 36, 62, 0, 224, 149, 193, 0, 16, 10, 0, 0, 160, 89, 193, 0, 96, 24, 62, 0, 224, 146, 193, 0, 112, 10, 0, 0, 160, 98, 193, 0, 128, 125, 62, 0, 224, 144, 193, 0, 208, 10, 0, 0, 160, 105, 193, 0, 128, 247, 62, 0, 224, 142, 193, 0, 176, 10, 0, 0, 32, 112, 193, 0, 0, 56, 63, 0, 0, 141, 193, 0, 112, 10, 0, 0, 64, 119, 193, 0, 224, 99, 63, 0, 224, 138, 193, 0, 112, 10, 0, 0, 128, 127, 193, 0, 128, 157, 63, 0, 96, 136, 193, 40, 16, 10, 0, 0, 32, 134, 193, 0, 0, 195, 63, 0, 96, 135, 193, 0, 208, 9, 0, 0, 64, 36, 193, 0, 64, 72, 63, 0, 0, 156, 193, 0, 240, 9, 0, 0, 32, 47, 193, 0, 64, 8, 63, 0, 160, 155, 193, 0, 240, 9, 0, 0, 160, 29, 193, 0, 64, 112, 63, 0, 0, 156, 193, 161, 112, 9, 0, 0, 64, 58, 193, 0, 64, 253, 190, 0, 64, 160, 193, 0, 148, 13, 0, 0, 192, 75, 193, 0, 160, 180, 190, 0, 160, 154, 193, 0, 24, 14, 0, 0, 64, 89, 193, 0, 224, 171, 190, 0, 128, 151, 193, 0, 216, 13, 0, 0, 128, 98, 193, 0, 32, 111, 190, 0, 96, 149, 193, 0, 116, 13, 0, 0, 160, 105, 193, 0, 96, 24, 188, 0, 96, 147, 193, 104, 244, 12, 0, 0, 32, 112, 193, 0, 32, 72, 62, 0, 160, 145, 193, 0, 212, 12, 0, 0, 0, 119, 193, 0, 0, 14, 62, 0, 64, 145, 193, 0, 52, 13, 0, 0, 128, 127, 193, 0, 192, 190, 62, 0, 128, 143, 193, 72, 84, 12, 0, 0, 32, 134, 193, 0, 64, 42, 63, 0, 128, 142, 193, 0, 180, 11, 0, 0, 64, 36, 193, 0, 128, 155, 189, 0, 32, 163, 193, 0, 20, 12, 0, 0, 0, 47, 193, 0, 64, 245, 189, 0, 32, 162, 193, 0, 84, 12, 0, 0, 160, 29, 193, 0, 0, 164, 61, 0, 32, 163, 193, 58, 241, 10, 0, 0, 224, 25, 193, 0, 224, 202, 63, 0, 224, 146, 193, 122, 181, 187, 35, 0, 224, 25, 193, 0, 128, 211, 63, 0, 0, 152, 193, 203, 181, 12, 0, 0, 224, 21, 193, 0, 32, 175, 63, 0, 224, 146, 193, 156, 206, 56, 32, 0, 224, 21, 193, 0, 192, 183, 63, 0, 0, 152, 193, 237, 142, 8, 0, 0, 192, 18, 193, 0, 128, 66, 63, 0, 224, 146, 193, 69, 139, 166, 24, 0, 192, 18, 193, 0, 192, 83, 63, 0, 0, 152, 193, 110, 11, 6, 0, 0, 64, 24, 193, 0, 64, 246, 62, 0, 224, 136, 193, 0, 208, 10, 0, 0, 96, 22, 193, 0, 96, 192, 189, 0, 96, 141, 193, 144, 184, 15, 4, 0, 224, 19, 193, 0, 96, 26, 63, 0, 64, 136, 193, 0, 208, 10, 0, 0, 64, 14, 193, 0, 224, 47, 63, 0, 224, 136, 193, 0, 176, 10, 0, 0, 96, 16, 193, 0, 160, 74, 62, 0, 0, 145, 193, 42, 217, 158, 13, 0, 0, 47, 193, 0, 160, 70, 61, 0, 224, 117, 193, 0, 24, 31, 11, 0, 0, 47, 193, 0, 224, 46, 189, 0, 32, 113, 193, 0, 148, 13, 0, 0, 64, 36, 193, 0, 160, 181, 188, 0, 224, 112, 193, 0, 216, 14, 0, 0, 64, 36, 193, 0, 32, 189, 61, 0, 128, 117, 193, 0, 216, 30, 15, 0, 64, 55, 193, 0, 128, 177, 190, 0, 64, 115, 193, 0, 88, 14, 0, 0, 64, 55, 193, 0, 64, 105, 190, 0, 128, 110, 193, 0, 148, 11, 0, 0, 160, 74, 193, 0, 96, 236, 190, 0, 64, 109, 193, 0, 148, 13, 0, 0, 160, 74, 193, 0, 32, 144, 190, 0, 128, 104, 193, 0, 208, 10, 0, 0, 160, 87, 193, 0, 0, 240, 190, 0, 160, 102, 193, 0, 116, 13, 0, 0, 160, 87, 193, 0, 224, 145, 190, 0, 0, 98, 193, 0, 176, 10, 0, 0, 96, 96, 193, 0, 160, 201, 190, 0, 160, 99, 193, 32, 56, 14, 0, 0, 96, 96, 193, 0, 224, 127, 190, 0, 224, 94, 193, 0, 52, 12, 0, 0, 0, 47, 193, 0, 160, 200, 62, 0, 96, 109, 193, 0, 76, 8, 0, 0, 64, 36, 193, 0, 64, 211, 62, 0, 0, 109, 193, 80, 176, 9, 0, 0, 64, 55, 193, 0, 192, 83, 62, 0, 160, 106, 193, 0, 76, 7, 0, 0, 160, 74, 193, 0, 160, 28, 62, 0, 160, 100, 193, 0, 136, 6, 0, 0, 160, 87, 193, 0, 64, 25, 62, 0, 32, 94, 193, 0, 8, 6, 0, 0, 96, 96, 193, 0, 64, 61, 62, 0, 32, 91, 193, 0, 40, 6, 0, 0, 160, 46, 193, 0, 160, 168, 63, 0, 0, 99, 193, 0, 48, 10, 0, 0, 32, 36, 193, 0, 64, 171, 63, 0, 224, 96, 193, 138, 149, 11, 0, 0, 32, 55, 193, 0, 224, 144, 63, 0, 192, 97, 193, 0, 44, 8, 0, 0, 96, 75, 193, 0, 0, 138, 63, 0, 32, 95, 193, 0, 40, 6, 0, 0, 160, 87, 193, 0, 160, 137, 63, 0, 0, 89, 193, 0, 132, 4, 0, 0, 96, 96, 193, 0, 32, 142, 63, 0, 224, 85, 193, 0, 68, 4, 0, 0, 192, 46, 193, 0, 0, 19, 64, 0, 0, 85, 193, 193, 116, 13, 0, 0, 128, 39, 193, 0, 96, 9, 64, 0, 0, 74, 193, 162, 149, 13, 0, 0, 128, 55, 193, 0, 160, 16, 64, 0, 96, 85, 193, 0, 116, 13, 0, 0, 192, 75, 193, 0, 0, 16, 64, 0, 64, 86, 193, 0, 116, 12, 0, 0, 160, 87, 193, 0, 224, 15, 64, 0, 128, 84, 193, 0, 80, 11, 0, 0, 96, 96, 193, 0, 96, 16, 64, 0, 96, 81, 193, 0, 244, 11, 0, 0, 32, 26, 193, 0, 128, 203, 63, 0, 32, 74, 193, 84, 54, 12, 0, 0, 0, 25, 193, 0, 0, 150, 63, 0, 64, 84, 193, 138, 185, 13, 0, 0, 96, 28, 193, 0, 160, 71, 63, 0, 128, 95, 193, 209, 216, 13, 0, 0, 160, 29, 193, 0, 96, 126, 62, 0, 128, 117, 193, 0, 148, 141, 7, 0, 0, 26, 193, 0, 224, 180, 62, 0, 128, 109, 193, 0, 184, 13, 0, 0, 64, 24, 193, 0, 0, 247, 62, 0, 128, 117, 193, 0, 148, 13, 7, 0, 0, 20, 193, 0, 128, 30, 63, 0, 128, 117, 193, 0, 24, 14, 0, 0, 0, 21, 193, 0, 64, 47, 63, 0, 160, 104, 193, 0, 184, 14, 0, 0, 64, 14, 193, 0, 224, 47, 63, 0, 128, 117, 193, 0, 152, 15, 0, 0, 160, 11, 193, 0, 224, 47, 63, 0, 0, 116, 193, 0, 248, 15, 0, 0, 96, 10, 193, 0, 224, 47, 63, 0, 128, 111, 193, 0, 184, 15, 0, 0, 96, 10, 193, 0, 64, 129, 63, 0, 64, 96, 193, 0, 216, 14, 0, 0, 96, 10, 193, 0, 64, 80, 63, 0, 160, 103, 193, 0, 216, 14, 0, 0, 224, 10, 193, 0, 64, 129, 63, 0, 32, 91, 193, 0, 120, 15, 0, 0, 0, 14, 193, 0, 64, 129, 63, 0, 192, 76, 193, 170, 57, 14, 0, 0, 32, 15, 193, 0, 128, 133, 63, 0, 192, 71, 193, 59, 214, 12, 0, 0, 160, 15, 193, 0, 32, 143, 63, 0, 0, 69, 193, 76, 118, 12, 0, 0, 128, 24, 193, 0, 96, 187, 63, 0, 0, 70, 193, 84, 214, 11, 0, 0, 32, 23, 193, 0, 192, 206, 63, 0, 0, 67, 193, 76, 50, 11, 0, 0, 96, 16, 193, 0, 160, 166, 63, 0, 192, 65, 193, 51, 242, 10, 0, 0, 32, 24, 193, 0, 96, 225, 63, 0, 32, 62, 193, 92, 118, 12, 0, 0, 96, 17, 193, 0, 64, 185, 63, 0, 192, 60, 193, 108, 86, 12, 0, 0, 0, 25, 193, 0, 160, 232, 63, 0, 64, 58, 193, 138, 117, 188, 30, 0, 64, 18, 193, 0, 128, 192, 63, 0, 0, 57, 193, 211, 117, 29, 17, 0, 96, 37, 193, 0, 32, 11, 64, 0, 32, 72, 193, 235, 245, 12, 0, 0, 160, 36, 193, 0, 96, 12, 64, 0, 32, 69, 193, 219, 181, 12, 0, 0, 32, 37, 193, 0, 192, 21, 64, 0, 160, 64, 193, 203, 185, 13, 0, 0, 0, 38, 193, 0, 96, 25, 64, 0, 224, 60, 193, 217, 84, 189, 31, 0, 160, 56, 193, 0, 0, 19, 64, 0, 0, 81, 193, 48, 120, 15, 0, 0, 0, 51, 193, 0, 0, 38, 64, 0, 0, 66, 193, 64, 248, 174, 20, 0, 64, 73, 193, 0, 0, 19, 64, 0, 224, 81, 193, 0, 152, 15, 0, 0, 32, 66, 193, 0, 0, 38, 64, 0, 128, 67, 193, 0, 88, 31, 17, 0, 0, 82, 193, 0, 0, 25, 64, 0, 224, 71, 193, 0, 184, 14, 0, 0, 128, 25, 193, 0, 128, 192, 63, 0, 64, 55, 193, 72, 236, 88, 52, 0, 64, 20, 193, 0, 128, 192, 63, 0, 32, 54, 193, 161, 116, 203, 42, 0, 32, 37, 193, 0, 0, 215, 63, 0, 224, 57, 193, 0, 104, 101, 59, 0, 192, 48, 193, 0, 0, 254, 63, 0, 128, 60, 193, 0, 104, 102, 57, 0, 128, 62, 193, 0, 32, 19, 64, 0, 128, 63, 193, 0, 48, 217, 51, 0, 96, 77, 193, 0, 32, 28, 64, 0, 96, 67, 193, 0, 152, 15, 0, 0, 32, 75, 193, 0, 32, 28, 64, 0, 32, 66, 193, 0, 16, 75, 45, 0, 64, 103, 193, 0, 32, 28, 64, 0, 96, 67, 193, 0, 108, 7, 0, 0, 96, 103, 193, 0, 96, 235, 63, 0, 0, 72, 193, 0, 172, 8, 0, 0, 128, 103, 193, 0, 64, 152, 63, 0, 192, 81, 193, 0, 72, 5, 0, 0, 128, 103, 193, 0, 128, 2, 63, 0, 64, 84, 193, 0, 40, 5, 0, 0, 96, 104, 193, 0, 0, 113, 61, 0, 224, 87, 193, 0, 20, 12, 0, 0, 224, 105, 193, 0, 0, 170, 189, 0, 0, 95, 193, 50, 249, 13, 0, 0, 192, 111, 193, 0, 128, 46, 62, 0, 192, 91, 193, 58, 185, 14, 0, 0, 192, 123, 193, 0, 128, 5, 63, 0, 160, 76, 193, 0, 52, 13, 0, 0, 0, 119, 193, 0, 32, 157, 62, 0, 160, 86, 193, 136, 56, 15, 0, 0, 128, 127, 193, 0, 128, 10, 63, 0, 32, 83, 193, 66, 153, 14, 0, 0, 32, 122, 193, 0, 160, 115, 63, 0, 0, 74, 193, 0, 72, 6, 0, 0, 32, 130, 193, 0, 32, 28, 64, 0, 96, 67, 193, 0, 164, 2, 0, 0, 192, 125, 193, 0, 32, 184, 63, 0, 0, 69, 193, 0, 68, 3, 0, 0, 192, 131, 193, 0, 32, 109, 63, 0, 192, 42, 193, 0, 48, 185, 35, 0, 96, 132, 193, 0, 32, 109, 63, 0, 0, 50, 193, 0, 48, 11, 4, 0, 192, 133, 193, 0, 0, 66, 63, 0, 0, 50, 193, 0, 116, 13, 3, 0, 32, 133, 193, 0, 0, 66, 63, 0, 192, 42, 193, 0, 212, 44, 24, 0, 128, 132, 193, 0, 32, 109, 63, 0, 64, 58, 193, 0, 48, 11, 0, 0, 192, 131, 193, 0, 32, 109, 63, 0, 128, 65, 193, 0, 80, 9, 0, 0, 32, 133, 193, 0, 0, 66, 63, 0, 128, 65, 193, 0, 212, 12, 0, 0, 192, 133, 193, 0, 0, 66, 63, 0, 64, 58, 193, 0, 116, 13, 0, 0, 224, 136, 193, 0, 32, 30, 63, 0, 0, 50, 193, 0, 184, 143, 0, 0, 64, 136, 193, 0, 32, 30, 63, 0, 192, 42, 193, 0, 216, 174, 20, 0, 64, 136, 193, 0, 32, 30, 63, 0, 128, 65, 193, 0, 152, 15, 0, 0, 224, 136, 193, 0, 32, 30, 63, 0, 64, 58, 193, 0, 184, 15, 0, 0, 32, 130, 193, 0, 32, 109, 63, 0, 96, 67, 193, 0, 236, 8, 0, 0, 128, 131, 193, 0, 0, 66, 63, 0, 96, 67, 193, 0, 212, 12, 0, 0, 32, 130, 193, 0, 32, 109, 63, 0, 224, 40, 193, 0, 228, 99, 59, 0, 96, 131, 193, 0, 0, 66, 63, 0, 224, 40, 193, 0, 228, 99, 60, 0, 160, 134, 193, 0, 32, 30, 63, 0, 96, 67, 193, 0, 120, 15, 0, 0, 128, 134, 193, 0, 32, 30, 63, 0, 224, 40, 193, 0, 80, 217, 50, 0, 0, 127, 193, 0, 0, 91, 63, 0, 160, 69, 193, 0, 12, 9, 0, 0, 224, 129, 193, 0, 128, 74, 63, 0, 64, 74, 193, 88, 152, 15, 0, 0, 32, 134, 193, 0, 96, 85, 63, 0, 64, 81, 193, 120, 184, 143, 5, 0, 192, 137, 193, 0, 96, 110, 63, 0, 64, 81, 193, 136, 56, 31, 16, 0, 128, 138, 193, 0, 32, 32, 63, 0, 128, 65, 193, 59, 22, 13, 2, 0, 32, 139, 193, 0, 32, 32, 63, 0, 64, 58, 193, 84, 214, 140, 2, 0, 32, 139, 193, 0, 32, 32, 63, 0, 0, 50, 193, 84, 214, 12, 0, 0, 128, 138, 193, 0, 32, 32, 63, 0, 192, 42, 193, 84, 118, 28, 12, 0, 0, 140, 193, 0, 0, 132, 63, 0, 128, 65, 193, 212, 50, 11, 0, 0, 96, 140, 193, 0, 0, 132, 63, 0, 64, 58, 193, 253, 114, 10, 3, 0, 96, 140, 193, 0, 0, 132, 63, 0, 0, 50, 193, 253, 114, 10, 0, 0, 0, 140, 193, 0, 0, 132, 63, 0, 192, 42, 193, 229, 178, 10, 8, 0, 0, 143, 193, 0, 32, 161, 63, 0, 128, 65, 193, 249, 248, 14, 0, 0, 96, 143, 193, 0, 32, 161, 63, 0, 64, 58, 193, 249, 88, 143, 0, 0, 96, 143, 193, 0, 32, 161, 63, 0, 0, 50, 193, 249, 88, 15, 0, 0, 0, 143, 193, 0, 32, 161, 63, 0, 192, 42, 193, 1, 249, 158, 13, 0, 32, 146, 193, 0, 0, 160, 63, 0, 128, 65, 193, 0, 152, 14, 0, 0, 128, 146, 193, 0, 0, 160, 63, 0, 64, 58, 193, 0, 184, 14, 0, 0, 128, 146, 193, 0, 0, 160, 63, 0, 0, 50, 193, 0, 184, 14, 1, 0, 32, 146, 193, 0, 0, 160, 63, 0, 192, 42, 193, 0, 120, 158, 15, 0, 32, 150, 193, 0, 0, 82, 63, 0, 128, 65, 193, 0, 184, 14, 0, 0, 128, 150, 193, 0, 0, 82, 63, 0, 64, 58, 193, 0, 88, 14, 0, 0, 128, 150, 193, 0, 0, 82, 63, 0, 0, 50, 193, 0, 24, 14, 1, 0, 32, 150, 193, 0, 0, 82, 63, 0, 192, 42, 193, 0, 88, 158, 10, 0, 0, 143, 193, 0, 160, 147, 63, 0, 192, 68, 193, 217, 116, 13, 0, 0, 128, 145, 193, 0, 128, 141, 63, 0, 32, 69, 193, 0, 116, 13, 0, 0, 0, 140, 193, 0, 0, 109, 63, 0, 192, 68, 193, 59, 182, 12, 0, 0, 0, 143, 193, 0, 224, 104, 63, 0, 224, 74, 193, 128, 24, 15, 0, 0, 32, 146, 193, 0, 224, 102, 63, 0, 224, 74, 193, 0, 152, 14, 0, 0, 0, 140, 193, 0, 192, 46, 63, 0, 224, 74, 193, 25, 57, 15, 1, 0, 32, 137, 193, 0, 96, 15, 63, 0, 0, 69, 193, 72, 184, 15, 7, 0, 96, 142, 193, 0, 96, 90, 63, 0, 64, 81, 193, 32, 216, 15, 3, 0, 192, 144, 193, 0, 160, 71, 63, 0, 64, 81, 193, 0, 56, 15, 0, 0, 224, 147, 193, 0, 160, 71, 63, 0, 64, 80, 193, 0, 120, 15, 0, 0, 160, 148, 193, 0, 0, 90, 63, 0, 96, 71, 193, 0, 216, 14, 0, 0, 224, 149, 193, 0, 160, 71, 63, 0, 192, 78, 193, 0, 184, 15, 0, 0, 128, 151, 193, 0, 160, 71, 63, 0, 96, 76, 193, 0, 184, 15, 0, 0, 64, 152, 193, 0, 160, 71, 63, 0, 0, 74, 193, 0, 184, 15, 0, 0, 0, 153, 193, 0, 160, 71, 63, 0, 32, 69, 193, 0, 184, 15, 0, 0, 0, 153, 193, 0, 160, 71, 63, 0, 64, 59, 193, 0, 184, 15, 1, 0, 160, 151, 193, 0, 160, 71, 63, 0, 0, 57, 193, 0, 152, 143, 0, 0, 160, 151, 193, 0, 160, 71, 63, 0, 96, 45, 193, 0, 120, 15, 0, 0, 160, 151, 193, 0, 160, 71, 63, 0, 160, 33, 193, 172, 242, 26, 17, 0, 32, 150, 193, 0, 0, 40, 63, 0, 32, 38, 193, 96, 88, 174, 26, 0, 32, 146, 193, 0, 0, 139, 63, 0, 32, 38, 193, 0, 148, 173, 24, 0, 0, 143, 193, 0, 0, 140, 63, 0, 32, 38, 193, 241, 248, 173, 25, 0, 0, 140, 193, 0, 0, 94, 63, 0, 32, 38, 193, 221, 18, 26, 18, 0, 128, 138, 193, 0, 64, 236, 62, 0, 32, 38, 193, 100, 178, 42, 27, 0, 32, 150, 193, 0, 224, 6, 63, 0, 64, 32, 193, 128, 248, 61, 29, 0, 32, 146, 193, 0, 0, 117, 63, 0, 64, 32, 193, 0, 52, 61, 29, 0, 0, 143, 193, 0, 32, 119, 63, 0, 64, 32, 193, 233, 148, 189, 29, 0, 0, 140, 193, 0, 224, 60, 63, 0, 64, 32, 193, 180, 18, 42, 23, 0, 128, 138, 193, 0, 32, 170, 62, 0, 64, 32, 193, 5, 15, 168, 25, 0, 32, 150, 193, 0, 160, 129, 62, 0, 32, 27, 193, 209, 148, 189, 29, 0, 32, 146, 193, 0, 224, 46, 63, 0, 32, 27, 193, 0, 180, 203, 38, 0, 0, 143, 193, 0, 0, 49, 63, 0, 32, 27, 193, 193, 180, 203, 40, 0, 0, 140, 193, 0, 160, 237, 62, 0, 32, 27, 193, 148, 210, 57, 28, 0, 128, 138, 193, 0, 96, 111, 61, 0, 32, 27, 193, 93, 207, 23, 12, 0, 32, 150, 193, 0, 224, 76, 62, 0, 96, 22, 193, 106, 149, 173, 23, 0, 32, 146, 193, 0, 192, 198, 62, 0, 96, 22, 193, 0, 52, 61, 31, 0, 0, 143, 193, 0, 128, 200, 62, 0, 96, 22, 193, 193, 84, 204, 37, 0, 0, 140, 193, 0, 160, 149, 62, 0, 96, 22, 193, 51, 50, 58, 33, 0, 128, 138, 193, 0, 64, 235, 61, 0, 96, 22, 193, 212, 242, 41, 19, 0, 96, 152, 193, 0, 160, 71, 63, 0, 64, 31, 193, 21, 51, 25, 15, 0, 96, 152, 193, 0, 160, 50, 63, 0, 0, 22, 193, 93, 15, 152, 10, 0, 96, 152, 193, 0, 192, 2, 63, 0, 32, 14, 193, 13, 179, 25, 12, 0, 0, 144, 193, 0, 32, 81, 189, 0, 96, 196, 192, 146, 89, 30, 12, 0, 32, 141, 193, 0, 96, 165, 189, 0, 224, 188, 192, 32, 120, 31, 14, 0, 128, 131, 193, 0, 192, 190, 189, 0, 0, 190, 192, 0, 184, 15, 0, 0, 96, 130, 193, 0, 160, 24, 190, 0, 0, 198, 192, 0, 152, 15, 0, 0, 32, 131, 193, 0, 32, 81, 189, 0, 192, 177, 192, 0, 184, 13, 0, 0, 160, 127, 193, 0, 32, 81, 189, 0, 128, 196, 192, 0, 184, 14, 0, 0, 64, 119, 193, 0, 32, 81, 189, 0, 192, 205, 192, 0, 56, 14, 0, 0, 0, 143, 193, 0, 128, 112, 190, 0, 128, 179, 192, 72, 216, 15, 0, 0, 96, 133, 193, 0, 64, 125, 190, 0, 160, 180, 192, 0, 120, 15, 0, 0, 160, 141, 193, 0, 32, 81, 189, 0, 224, 167, 192, 16, 56, 14, 0, 0, 0, 135, 193, 0, 32, 81, 189, 0, 224, 167, 192, 0, 56, 14, 0, 0, 32, 146, 193, 0, 32, 81, 189, 0, 0, 170, 192, 144, 184, 14, 0, 0, 224, 143, 193, 0, 32, 81, 189, 0, 192, 167, 192, 48, 88, 14, 0, 0, 224, 149, 193, 0, 32, 81, 189, 0, 32, 179, 192, 80, 216, 15, 0, 0, 32, 148, 193, 0, 32, 81, 189, 0, 0, 174, 192, 185, 216, 14, 0, 0, 128, 146, 193, 0, 32, 81, 189, 0, 160, 187, 192, 88, 88, 174, 26, 0, 96, 149, 193, 0, 224, 101, 189, 0, 64, 195, 192, 0, 56, 31, 14, 0, 128, 151, 193, 0, 32, 81, 189, 0, 192, 187, 192, 0, 248, 15, 0, 0, 192, 146, 193, 0, 160, 108, 189, 0, 96, 221, 192, 237, 82, 10, 0, 0, 96, 148, 193, 0, 0, 84, 62, 0, 192, 217, 192, 59, 214, 12, 0, 0, 0, 146, 193, 0, 224, 90, 62, 0, 96, 196, 192, 67, 150, 28, 14, 0, 160, 141, 193, 0, 64, 35, 61, 0, 0, 18, 193, 251, 213, 172, 20, 0, 160, 143, 193, 0, 64, 149, 62, 0, 128, 17, 193, 42, 21, 189, 30, 0, 160, 148, 193, 0, 192, 97, 62, 0, 0, 6, 193, 178, 25, 30, 10, 0, 224, 146, 193, 0, 160, 53, 189, 0, 96, 5, 193, 196, 18, 42, 21, 0, 224, 148, 193, 0, 160, 118, 62, 0, 192, 216, 192, 0, 152, 143, 3, 0, 160, 146, 193, 0, 128, 125, 62, 0, 96, 196, 192, 0, 216, 46, 22, 0, 160, 146, 193, 0, 128, 125, 62, 0, 32, 17, 193, 0, 56, 31, 10, 0, 64, 149, 193, 0, 32, 130, 62, 0, 96, 6, 193, 0, 88, 15, 0, 0, 0, 150, 193, 0, 64, 149, 61, 0, 0, 216, 192, 0, 20, 141, 8, 0, 128, 148, 193, 0, 64, 149, 61, 0, 96, 196, 192, 0, 20, 188, 28, 0, 128, 148, 193, 0, 64, 149, 61, 0, 32, 17, 193, 0, 184, 15, 9, 0, 0, 151, 193, 0, 0, 163, 61, 0, 32, 8, 193, 161, 184, 15, 3, 0, 32, 149, 193, 0, 224, 90, 62, 0, 160, 241, 192, 84, 246, 12, 0, 0, 64, 147, 193, 0, 32, 81, 189, 0, 160, 241, 192, 253, 114, 10, 0, 0, 192, 151, 193, 0, 64, 149, 61, 0, 160, 241, 192, 0, 180, 139, 3, 0, 224, 149, 193, 0, 128, 125, 62, 0, 160, 241, 192, 0, 184, 143, 1, 0, 96, 152, 193, 0, 32, 81, 189, 0, 32, 194, 192, 0, 152, 143, 5, 0, 96, 152, 193, 0, 32, 81, 189, 0, 192, 239, 192, 0, 52, 12, 4, 0, 96, 152, 193, 0, 224, 252, 60, 0, 160, 253, 192, 0, 248, 142, 0, 0, 96, 152, 193, 0, 64, 119, 62, 0, 0, 7, 193, 221, 82, 154, 14, 0, 32, 221, 192, 0, 128, 98, 191, 0, 160, 188, 192, 0, 68, 3, 0, 0, 224, 221, 192, 0, 160, 140, 60, 0, 128, 184, 192, 0, 12, 7, 0, 0, 224, 218, 192, 0, 192, 162, 191, 0, 192, 192, 192, 0, 216, 13, 0, 0, 96, 216, 192, 0, 64, 125, 191, 0, 64, 206, 192, 0, 184, 30, 18, 0, 192, 213, 192, 0, 160, 116, 191, 0, 224, 219, 192, 0, 52, 60, 35, 0, 128, 211, 192, 0, 0, 163, 62, 0, 160, 232, 192, 0, 172, 216, 51, 0, 0, 207, 192, 0, 0, 153, 63, 0, 64, 4, 193, 96, 216, 46, 21, 0, 64, 249, 192, 0, 192, 134, 191, 0, 32, 186, 192, 16, 164, 3, 0, 0, 64, 250, 192, 0, 32, 17, 62, 0, 160, 180, 192, 0, 80, 9, 0, 0, 96, 246, 192, 0, 64, 200, 191, 0, 160, 191, 192, 0, 184, 14, 0, 0, 224, 242, 192, 0, 96, 152, 191, 0, 160, 209, 192, 0, 248, 46, 19, 0, 128, 239, 192, 0, 160, 146, 191, 0, 160, 227, 192, 0, 116, 76, 37, 0, 128, 236, 192, 0, 96, 10, 63, 0, 96, 244, 192, 0, 48, 217, 50, 0, 160, 230, 192, 0, 224, 217, 63, 0, 96, 15, 193, 161, 120, 159, 10, 0, 0, 20, 193, 0, 64, 135, 191, 0, 128, 193, 192, 170, 229, 3, 0, 0, 128, 20, 193, 0, 64, 20, 62, 0, 0, 188, 192, 42, 81, 11, 0, 0, 128, 18, 193, 0, 32, 201, 191, 0, 0, 199, 192, 233, 120, 14, 0, 0, 224, 16, 193, 0, 32, 153, 191, 0, 32, 217, 192, 0, 216, 46, 22, 0, 32, 15, 193, 0, 64, 147, 191, 0, 64, 235, 192, 0, 20, 189, 34, 0, 160, 13, 193, 0, 192, 11, 63, 0, 32, 252, 192, 0, 172, 216, 48, 0, 160, 10, 193, 0, 128, 219, 63, 0, 96, 19, 193, 0, 56, 31, 13, 0, 0, 35, 193, 0, 224, 106, 191, 0, 160, 219, 192, 93, 135, 3, 0, 0, 0, 36, 193, 0, 64, 41, 61, 0, 160, 215, 192, 187, 53, 12, 0, 0, 64, 33, 193, 0, 0, 170, 191, 0, 64, 223, 192, 251, 185, 13, 0, 0, 0, 30, 193, 0, 160, 131, 191, 0, 128, 236, 192, 0, 216, 174, 20, 0, 224, 26, 193, 0, 0, 126, 191, 0, 160, 249, 192, 0, 52, 61, 32, 0, 224, 23, 193, 0, 32, 185, 62, 0, 0, 3, 193, 0, 172, 71, 37, 0, 32, 17, 193, 0, 160, 165, 63, 0, 192, 18, 193, 0, 244, 171, 24, 0, 96, 40, 193, 0, 32, 45, 191, 0, 224, 3, 193, 166, 203, 4, 0, 0, 0, 41, 193, 0, 224, 12, 190, 0, 192, 2, 193, 13, 179, 9, 0, 0, 96, 39, 193, 0, 32, 104, 191, 0, 224, 4, 193, 161, 152, 143, 6, 0, 160, 37, 193, 0, 32, 61, 191, 0, 160, 8, 193, 0, 184, 143, 5, 0, 192, 35, 193, 0, 224, 55, 191, 0, 64, 12, 193, 0, 108, 167, 20, 0, 32, 34, 193, 0, 32, 45, 61, 0, 192, 15, 193, 0, 168, 166, 19, 0, 96, 30, 193, 0, 224, 16, 63, 0, 160, 24, 193, 0, 76, 23, 17, 0, 128, 44, 193, 0, 32, 81, 189, 0, 64, 15, 193, 212, 2, 2, 0, 0, 128, 44, 193, 0, 64, 126, 191, 0, 64, 15, 193, 161, 148, 13, 0, 0, 128, 63, 193, 0, 64, 126, 191, 0, 224, 21, 193, 104, 180, 11, 0, 0, 128, 63, 193, 0, 32, 81, 189, 0, 224, 21, 193, 161, 0, 0, 0, 0, 64, 119, 193, 0, 0, 125, 191, 0, 224, 21, 193, 0, 116, 11, 0, 0, 64, 119, 193, 0, 32, 81, 189, 0, 224, 21, 193, 0, 0, 0, 0, 0, 32, 41, 193, 0, 32, 130, 191, 0, 64, 34, 193, 0, 148, 13, 1, 0, 192, 52, 193, 0, 32, 130, 191, 0, 224, 36, 193, 0, 248, 15, 0, 0, 32, 64, 193, 0, 32, 130, 191, 0, 160, 39, 193, 0, 248, 15, 0, 0, 32, 75, 193, 0, 32, 130, 191, 0, 32, 42, 193, 0, 248, 15, 0, 0, 96, 77, 193, 0, 32, 130, 191, 0, 224, 40, 193, 0, 248, 15, 0, 0, 32, 130, 193, 0, 32, 130, 191, 0, 224, 40, 193, 64, 184, 174, 23, 0, 0, 36, 193, 0, 96, 166, 59, 0, 64, 25, 193, 0, 12, 135, 3, 0, 224, 37, 193, 0, 128, 203, 190, 0, 128, 24, 193, 0, 168, 4, 8, 0, 128, 31, 193, 0, 128, 144, 62, 0, 128, 27, 193, 0, 140, 7, 0, 0, 0, 36, 193, 0, 160, 235, 60, 0, 160, 34, 193, 0, 172, 8, 0, 0, 32, 38, 193, 0, 160, 189, 190, 0, 192, 34, 193, 0, 168, 4, 1, 0, 192, 30, 193, 0, 128, 152, 62, 0, 160, 34, 193, 0, 12, 7, 0, 0, 32, 8, 193, 0, 128, 192, 63, 0, 32, 27, 193, 0, 152, 15, 0, 0, 96, 24, 193, 0, 128, 192, 63, 0, 160, 30, 193, 0, 112, 186, 34, 0, 160, 29, 193, 0, 128, 192, 63, 0, 192, 31, 193, 0, 136, 54, 33, 0, 128, 240, 192, 0, 128, 192, 63, 0, 160, 23, 193, 56, 184, 14, 0, 0, 224, 230, 192, 0, 32, 190, 63, 0, 0, 24, 193, 58, 185, 14, 0, 0, 96, 216, 192, 0, 160, 175, 63, 0, 160, 27, 193, 243, 217, 13, 0, 0, 32, 207, 192, 0, 64, 154, 63, 0, 64, 27, 193, 187, 89, 14, 0, 0, 160, 199, 192, 0, 128, 142, 63, 0, 0, 27, 193, 43, 118, 28, 18, 0, 160, 181, 192, 0, 32, 137, 63, 0, 160, 26, 193, 0, 8, 101, 55, 0, 224, 189, 192, 0, 96, 68, 63, 0, 160, 26, 193, 144, 148, 204, 37, 0, 96, 184, 192, 0, 96, 68, 63, 0, 192, 24, 193, 0, 88, 30, 16, 0, 32, 176, 192, 0, 32, 137, 63, 0, 192, 24, 193, 0, 112, 41, 25, 0, 192, 180, 192, 0, 64, 84, 63, 0, 224, 20, 193, 0, 120, 14, 0, 0, 128, 172, 192, 0, 32, 145, 63, 0, 224, 20, 193, 0, 44, 136, 3, 0, 128, 134, 193, 0, 128, 75, 191, 0, 224, 40, 193, 219, 65, 98, 55, 0, 96, 131, 193, 0, 160, 39, 191, 0, 224, 40, 193, 48, 224, 225, 62, 0, 128, 136, 193, 0, 0, 135, 190, 0, 192, 16, 193, 158, 107, 134, 7, 0, 160, 136, 193, 0, 224, 163, 190, 0, 32, 27, 193, 222, 199, 131, 3, 0, 160, 136, 193, 0, 64, 61, 189, 0, 64, 32, 193, 61, 171, 180, 31, 0, 96, 136, 193, 0, 160, 41, 191, 0, 192, 16, 193, 77, 3, 0, 0, 0, 128, 136, 193, 0, 0, 56, 191, 0, 32, 27, 193, 172, 2, 0, 0, 0, 128, 136, 193, 0, 224, 227, 190, 0, 64, 32, 193, 93, 3, 32, 26, 0, 32, 139, 193, 0, 64, 50, 191, 0, 96, 22, 193, 114, 1, 0, 0, 0, 32, 139, 193, 0, 160, 64, 191, 0, 32, 27, 193, 120, 0, 0, 0, 0, 32, 139, 193, 0, 32, 245, 190, 0, 64, 32, 193, 33, 1, 144, 17, 0, 96, 135, 193, 0, 192, 240, 190, 0, 0, 35, 193, 101, 3, 48, 32, 0, 192, 135, 193, 0, 224, 124, 62, 0, 0, 35, 193, 188, 238, 198, 36, 0, 160, 136, 193, 0, 128, 123, 191, 0, 32, 36, 193, 162, 49, 74, 41, 0, 128, 147, 193, 0, 192, 108, 191, 0, 32, 28, 193, 214, 39, 132, 0, 0, 32, 133, 193, 0, 32, 119, 191, 0, 192, 18, 193, 120, 56, 15, 0, 0, 160, 141, 193, 0, 160, 100, 191, 0, 0, 18, 193, 0, 0, 0, 0, 0, 160, 141, 193, 0, 64, 35, 61, 0, 0, 18, 193, 251, 213, 172, 20, 0, 96, 45, 193, 0, 32, 81, 189, 0, 128, 247, 192, 16, 216, 15, 0, 0, 64, 46, 193, 0, 32, 81, 189, 0, 64, 211, 192, 0, 88, 15, 0, 0, 224, 40, 193, 0, 224, 180, 62, 0, 160, 188, 192, 0, 184, 15, 0, 0, 224, 25, 193, 0, 224, 180, 62, 0, 64, 175, 192, 16, 216, 143, 4, 0, 224, 10, 193, 0, 128, 52, 62, 0, 0, 174, 192, 0, 120, 15, 0, 0, 224, 54, 193, 0, 32, 81, 189, 0, 224, 178, 192, 0, 56, 143, 2, 0, 32, 59, 193, 0, 32, 81, 189, 0, 192, 199, 192, 0, 184, 15, 0, 0, 128, 63, 193, 0, 32, 81, 189, 0, 192, 205, 192, 0, 248, 15, 0, 0, 64, 33, 193, 0, 0, 29, 61, 0, 224, 160, 192, 0, 88, 174, 25, 0, 64, 17, 193, 0, 0, 86, 62, 0, 224, 160, 192, 0, 184, 143, 7, 0, 64, 3, 193, 0, 96, 219, 62, 0, 224, 160, 192, 0, 216, 13, 0, 0, 96, 235, 192, 0, 224, 39, 63, 0, 224, 160, 192, 0, 180, 11, 0, 0, 160, 216, 192, 0, 64, 98, 63, 0, 224, 160, 192, 0, 176, 9, 0, 0, 224, 209, 192, 0, 32, 181, 62, 0, 64, 176, 192, 0, 240, 9, 0, 0, 96, 164, 192, 0, 64, 8, 63, 0, 96, 185, 192, 0, 132, 2, 0, 0, 0, 101, 192, 0, 96, 111, 63, 0, 160, 173, 192, 146, 237, 8, 0, 0, 160, 119, 192, 0, 64, 48, 63, 0, 0, 179, 192, 187, 137, 6, 0, 0, 160, 130, 192, 0, 128, 174, 63, 0, 128, 170, 192, 51, 206, 8, 0, 0, 128, 102, 192, 0, 32, 165, 63, 0, 128, 163, 192, 122, 209, 10, 0, 0, 64, 127, 192, 0, 128, 174, 63, 0, 160, 165, 192, 130, 81, 11, 0, 0, 96, 67, 192, 0, 160, 122, 63, 0, 128, 163, 192, 42, 209, 9, 0, 0, 96, 95, 192, 0, 0, 197, 62, 0, 32, 183, 192, 66, 137, 5, 0, 0, 64, 77, 192, 0, 192, 20, 63, 0, 192, 175, 192, 42, 13, 7, 0, 0, 32, 192, 192, 0, 64, 169, 63, 0, 224, 160, 192, 0, 236, 8, 0, 0, 160, 192, 192, 0, 192, 61, 63, 0, 192, 173, 192, 0, 236, 7, 0, 0, 64, 202, 192, 0, 224, 15, 63, 0, 192, 173, 192, 0, 204, 8, 0, 0, 192, 201, 192, 0, 96, 146, 63, 0, 224, 160, 192, 0, 140, 8, 0, 0, 96, 183, 192, 0, 128, 174, 63, 0, 224, 160, 192, 0, 48, 9, 0, 0, 192, 183, 192, 0, 32, 72, 63, 0, 192, 173, 192, 0, 232, 4, 0, 0, 64, 178, 192, 0, 192, 145, 63, 0, 128, 173, 192, 0, 8, 6, 0, 0, 160, 175, 192, 0, 128, 174, 63, 0, 160, 165, 192, 0, 80, 9, 0, 0, 128, 172, 192, 0, 128, 174, 63, 0, 128, 170, 192, 0, 204, 8, 0, 0, 160, 89, 192, 0, 128, 174, 63, 0, 128, 216, 191, 227, 249, 13, 0, 0, 224, 97, 192, 0, 128, 174, 63, 0, 96, 198, 190, 50, 89, 174, 18, 0, 96, 84, 192, 0, 224, 159, 63, 0, 96, 198, 190, 180, 50, 27, 12, 0, 32, 76, 192, 0, 224, 159, 63, 0, 128, 216, 191, 229, 242, 10, 0, 0, 224, 97, 192, 0, 128, 174, 63, 0, 64, 61, 192, 106, 149, 12, 0, 0, 96, 84, 192, 0, 224, 159, 63, 0, 64, 61, 192, 124, 18, 11, 0, 0, 32, 77, 192, 0, 224, 130, 63, 0, 96, 198, 190, 118, 143, 151, 9, 0, 224, 68, 192, 0, 224, 130, 63, 0, 128, 216, 191, 110, 239, 135, 0, 0, 32, 77, 192, 0, 224, 130, 63, 0, 64, 61, 192, 85, 175, 8, 0, 0, 32, 37, 192, 0, 128, 38, 58, 0, 96, 198, 190, 100, 86, 28, 13, 0, 224, 28, 192, 0, 128, 38, 58, 0, 128, 216, 191, 27, 86, 13, 5, 0, 32, 37, 192, 0, 0, 130, 62, 0, 64, 51, 192, 243, 245, 172, 19, 0, 96, 67, 192, 0, 160, 122, 63, 0, 128, 113, 192, 50, 249, 45, 23, 0, 32, 37, 192, 0, 160, 49, 63, 0, 160, 79, 192, 17, 149, 45, 27, 0, 0, 1, 192, 0, 160, 19, 63, 0, 160, 79, 192, 0, 212, 76, 37, 0, 224, 43, 192, 0, 160, 109, 63, 0, 128, 113, 192, 128, 88, 46, 26, 0, 96, 213, 191, 0, 160, 109, 63, 0, 128, 113, 192, 0, 120, 46, 22, 0, 0, 1, 192, 0, 160, 19, 63, 0, 160, 79, 192, 0, 212, 76, 37, 0, 224, 175, 191, 0, 96, 104, 63, 0, 160, 79, 192, 0, 216, 61, 29, 0, 160, 163, 191, 0, 160, 109, 63, 0, 160, 103, 192, 0, 184, 46, 19, 0, 0, 1, 192, 0, 224, 237, 189, 0, 96, 198, 190, 0, 88, 159, 13, 0, 128, 241, 191, 0, 224, 237, 189, 0, 128, 216, 191, 0, 152, 143, 6, 0, 0, 1, 192, 0, 128, 12, 62, 0, 64, 51, 192, 0, 248, 61, 29, 0, 128, 241, 191, 0, 224, 237, 189, 0, 128, 216, 191, 0, 152, 143, 6, 0, 0, 1, 192, 0, 224, 237, 189, 0, 96, 198, 190, 0, 88, 159, 13, 0, 224, 175, 191, 0, 224, 91, 62, 0, 96, 198, 190, 0, 184, 159, 9, 0, 64, 159, 191, 0, 224, 91, 62, 0, 128, 216, 191, 0, 56, 159, 12, 0, 0, 1, 192, 0, 128, 12, 62, 0, 64, 51, 192, 0, 248, 61, 29, 0, 224, 175, 191, 0, 192, 239, 62, 0, 64, 51, 192, 0, 116, 189, 27, 0, 96, 213, 191, 0, 160, 109, 63, 0, 128, 113, 192, 0, 120, 46, 22, 0, 64, 127, 192, 0, 128, 174, 63, 0, 96, 108, 192, 11, 86, 157, 9, 0, 192, 124, 192, 0, 128, 174, 63, 0, 32, 103, 192, 69, 111, 7, 0, 0, 160, 106, 192, 0, 32, 139, 63, 0, 192, 81, 192, 227, 185, 13, 0, 0, 192, 124, 192, 0, 128, 174, 63, 0, 128, 66, 192, 211, 181, 12, 0, 0, 128, 102, 192, 0, 32, 165, 63, 0, 128, 113, 192, 98, 149, 45, 24, 0, 96, 71, 192, 0, 224, 75, 63, 0, 128, 80, 192, 211, 217, 157, 11, 0, 0, 128, 191, 0, 160, 57, 63, 0, 160, 62, 192, 0, 88, 190, 27, 0, 0, 128, 191, 0, 32, 149, 62, 0, 96, 249, 191, 0, 184, 174, 19, 0, 0, 128, 191, 0, 128, 166, 61, 0, 64, 165, 191, 170, 89, 14, 7, 0, 0, 128, 191, 0, 0, 222, 187, 0, 0, 69, 191, 203, 25, 14, 4, 0, 224, 242, 192, 0, 128, 174, 63, 0, 224, 211, 191, 0, 152, 15, 0, 0, 32, 235, 192, 0, 128, 174, 63, 0, 64, 61, 192, 0, 212, 11, 0, 0, 32, 248, 192, 0, 128, 164, 63, 0, 64, 61, 192, 0, 180, 12, 0, 0, 0, 0, 193, 0, 128, 164, 63, 0, 224, 211, 191, 0, 20, 13, 0, 0, 32, 235, 192, 0, 128, 174, 63, 0, 96, 198, 190, 0, 248, 174, 19, 0, 32, 248, 192, 0, 128, 164, 63, 0, 96, 198, 190, 0, 116, 157, 14, 0, 64, 5, 193, 0, 128, 254, 62, 0, 32, 59, 192, 0, 208, 10, 0, 0, 32, 9, 193, 0, 128, 254, 62, 0, 192, 207, 191, 0, 16, 10, 0, 0, 64, 5, 193, 0, 128, 254, 62, 0, 0, 182, 190, 0, 176, 153, 13, 0, 32, 18, 193, 0, 224, 203, 190, 0, 192, 62, 192, 0, 116, 13, 5, 0, 0, 22, 193, 0, 224, 203, 190, 0, 224, 214, 191, 0, 56, 14, 0, 0, 32, 18, 193, 0, 224, 203, 190, 0, 160, 210, 190, 0, 20, 29, 15, 0, 64, 24, 193, 0, 192, 238, 190, 0, 160, 64, 192, 24, 216, 143, 6, 0, 32, 28, 193, 0, 192, 238, 190, 0, 160, 218, 191, 201, 152, 15, 0, 0, 64, 24, 193, 0, 192, 238, 190, 0, 96, 225, 190, 128, 88, 159, 13, 0, 192, 28, 193, 0, 0, 159, 190, 0, 0, 66, 192, 3, 186, 13, 1, 0, 160, 32, 193, 0, 0, 159, 190, 0, 128, 221, 191, 237, 210, 10, 0, 0, 192, 28, 193, 0, 0, 159, 190, 0, 0, 237, 190, 27, 86, 13, 9, 0, 32, 120, 193, 0, 32, 81, 189, 0, 96, 208, 190, 0, 152, 174, 21, 0, 64, 119, 193, 0, 32, 81, 189, 0, 0, 28, 192, 0, 184, 15, 0, 0, 160, 125, 193, 0, 32, 81, 189, 0, 32, 10, 192, 0, 88, 15, 0, 0, 160, 125, 193, 0, 32, 81, 189, 0, 224, 59, 191, 0, 24, 15, 7, 0, 32, 34, 193, 0, 32, 81, 189, 0, 0, 3, 191, 178, 217, 29, 14, 0, 32, 34, 193, 0, 32, 81, 189, 0, 0, 28, 192, 229, 178, 138, 4, 0, 32, 34, 193, 0, 32, 81, 189, 0, 224, 66, 192, 170, 121, 14, 1, 0, 64, 3, 193, 0, 96, 219, 62, 0, 192, 117, 192, 0, 184, 14, 0, 0, 64, 17, 193, 0, 0, 86, 62, 0, 192, 117, 192, 0, 52, 173, 25, 0, 128, 14, 193, 0, 160, 60, 61, 0, 128, 88, 192, 0, 84, 28, 14, 0, 96, 0, 193, 0, 32, 58, 63, 0, 224, 85, 192, 0, 116, 13, 0, 0, 96, 235, 192, 0, 224, 39, 63, 0, 192, 117, 192, 0, 248, 14, 0, 0, 160, 239, 192, 0, 32, 63, 63, 0, 0, 84, 192, 0, 212, 12, 0, 0, 160, 216, 192, 0, 64, 98, 63, 0, 192, 117, 192, 0, 120, 14, 0, 0, 0, 216, 192, 0, 0, 113, 63, 0, 96, 81, 192, 0, 116, 13, 0, 0, 192, 201, 192, 0, 96, 146, 63, 0, 192, 117, 192, 0, 120, 158, 13, 0, 0, 183, 192, 0, 192, 142, 63, 0, 128, 77, 192, 0, 120, 14, 0, 0, 32, 192, 192, 0, 64, 169, 63, 0, 192, 117, 192, 0, 84, 173, 26, 0, 160, 175, 192, 0, 128, 174, 63, 0, 96, 108, 192, 0, 56, 30, 16, 0, 96, 183, 192, 0, 128, 174, 63, 0, 192, 117, 192, 0, 152, 174, 22, 0, 160, 174, 192, 0, 128, 174, 63, 0, 128, 66, 192, 0, 148, 12, 0, 0, 160, 174, 192, 0, 128, 174, 63, 0, 32, 103, 192, 0, 244, 139, 1, 0, 64, 33, 193, 0, 0, 29, 61, 0, 192, 117, 192, 40, 24, 62, 29, 0, 224, 33, 193, 0, 96, 26, 190, 0, 160, 89, 192, 209, 56, 31, 13, 0, 160, 26, 193, 0, 64, 209, 190, 0, 64, 88, 192, 193, 120, 174, 22, 0, 160, 21, 193, 0, 0, 190, 190, 0, 224, 87, 192, 0, 84, 61, 30, 0, 224, 54, 193, 0, 32, 81, 189, 0, 192, 81, 192, 40, 216, 143, 3, 0, 32, 59, 193, 0, 32, 81, 189, 0, 0, 40, 192, 40, 216, 143, 3, 0, 32, 34, 193, 0, 32, 145, 190, 0, 224, 147, 188, 241, 116, 61, 30, 0, 192, 28, 193, 0, 0, 11, 191, 0, 64, 253, 60, 82, 149, 173, 24, 0, 128, 63, 193, 0, 32, 81, 189, 0, 0, 3, 191, 0, 88, 174, 26, 0, 128, 63, 193, 0, 32, 145, 190, 0, 224, 147, 188, 0, 216, 61, 31, 0, 160, 125, 193, 0, 32, 145, 190, 0, 192, 117, 190, 0, 52, 61, 28, 0, 32, 120, 193, 0, 32, 145, 190, 0, 64, 178, 61, 0, 84, 189, 31, 0, 64, 24, 193, 0, 224, 50, 191, 0, 0, 92, 61, 24, 88, 31, 17, 0, 32, 18, 193, 0, 96, 33, 191, 0, 192, 168, 61, 0, 184, 157, 14, 0, 64, 5, 193, 0, 128, 135, 62, 0, 160, 13, 62, 0, 208, 169, 21, 0, 32, 248, 192, 0, 192, 134, 63, 0, 224, 217, 61, 0, 180, 187, 31, 0, 32, 235, 192, 0, 192, 144, 63, 0, 224, 217, 61, 0, 212, 76, 37, 0, 0, 1, 192, 0, 128, 178, 190, 0, 224, 217, 61, 0, 148, 61, 32, 0, 224, 175, 191, 0, 0, 145, 188, 0, 224, 217, 61, 0, 52, 173, 21, 0, 32, 37, 192, 0, 96, 109, 190, 0, 224, 217, 61, 19, 118, 59, 28, 0, 0, 1, 192, 0, 128, 178, 190, 0, 224, 217, 61, 0, 148, 61, 32, 0, 32, 77, 192, 0, 64, 74, 63, 0, 224, 217, 61, 69, 111, 167, 20, 0, 96, 84, 192, 0, 32, 130, 63, 0, 224, 217, 61, 132, 242, 57, 29, 0, 224, 97, 192, 0, 192, 144, 63, 0, 224, 217, 61, 201, 180, 188, 35, 0, 160, 43, 193, 0, 0, 31, 191, 0, 128, 248, 62, 40, 216, 61, 31, 0, 0, 32, 193, 0, 128, 55, 191, 0, 224, 7, 63, 104, 152, 174, 24, 0, 128, 63, 193, 0, 128, 21, 191, 0, 224, 213, 62, 0, 148, 189, 32, 0, 160, 125, 193, 0, 128, 21, 191, 0, 160, 72, 62, 0, 148, 188, 31, 0, 32, 120, 193, 0, 128, 21, 191, 0, 224, 5, 63, 0, 84, 189, 31, 0, 192, 23, 193, 0, 224, 59, 191, 0, 224, 15, 63, 0, 120, 159, 12, 0, 160, 15, 193, 0, 96, 12, 191, 0, 96, 22, 63, 0, 84, 29, 16, 0, 128, 5, 193, 0, 224, 243, 188, 0, 128, 25, 63, 0, 208, 58, 29, 0, 32, 248, 192, 0, 0, 23, 63, 0, 192, 10, 63, 0, 112, 202, 41, 0, 32, 235, 192, 0, 128, 40, 63, 0, 192, 10, 63, 0, 208, 90, 46, 0, 0, 1, 192, 0, 32, 36, 191, 0, 192, 10, 63, 0, 216, 189, 30, 0, 224, 175, 191, 0, 128, 179, 190, 0, 192, 10, 63, 0, 112, 41, 25, 0, 32, 37, 192, 0, 224, 9, 191, 0, 192, 10, 63, 3, 54, 44, 25, 0, 0, 1, 192, 0, 32, 36, 191, 0, 192, 10, 63, 0, 216, 189, 30, 0, 32, 77, 192, 0, 192, 183, 62, 0, 192, 10, 63, 164, 14, 57, 30, 0, 96, 84, 192, 0, 0, 15, 63, 0, 192, 10, 63, 251, 177, 73, 39, 0, 224, 97, 192, 0, 128, 40, 63, 0, 192, 10, 63, 144, 240, 202, 44, 0, 0, 46, 193, 0, 224, 95, 191, 0, 224, 132, 63, 0, 248, 174, 21, 0, 32, 33, 193, 0, 160, 104, 191, 0, 160, 139, 63, 0, 56, 31, 18, 0, 128, 63, 193, 0, 224, 97, 191, 0, 64, 120, 63, 0, 184, 46, 24, 0, 160, 125, 193, 0, 224, 97, 191, 0, 128, 63, 63, 0, 184, 173, 24, 0, 32, 120, 193, 0, 224, 97, 191, 0, 128, 137, 63, 0, 152, 174, 23, 0, 160, 23, 193, 0, 32, 98, 191, 0, 64, 144, 63, 0, 24, 31, 16, 0, 192, 14, 193, 0, 64, 54, 191, 0, 160, 147, 63, 0, 248, 173, 19, 0, 32, 4, 193, 0, 128, 192, 190, 0, 64, 149, 63, 0, 148, 188, 29, 0, 64, 236, 192, 0, 32, 166, 188, 0, 96, 147, 63, 0, 20, 76, 39, 0, 160, 193, 192, 0, 192, 13, 62, 0, 96, 144, 63, 0, 148, 204, 38, 0, 0, 1, 192, 0, 96, 110, 191, 0, 0, 140, 63, 48, 216, 46, 22, 0, 224, 175, 191, 0, 192, 46, 191, 0, 0, 140, 63, 0, 144, 42, 22, 0, 192, 35, 192, 0, 64, 30, 191, 0, 64, 144, 63, 27, 182, 156, 17, 0, 0, 1, 192, 0, 96, 110, 191, 0, 0, 140, 63, 48, 216, 46, 22, 0, 32, 70, 192, 0, 64, 64, 190, 0, 64, 147, 63, 43, 182, 43, 25, 0, 192, 101, 192, 0, 96, 47, 61, 0, 128, 148, 63, 1, 53, 204, 37, 0, 192, 140, 192, 0, 160, 19, 62, 0, 96, 148, 63, 32, 180, 204, 37, 0, 0, 46, 193, 0, 160, 133, 191, 0, 224, 212, 63, 0, 152, 31, 13, 0, 32, 33, 193, 0, 160, 136, 191, 0, 192, 225, 63, 0, 152, 159, 11, 0, 128, 63, 193, 0, 96, 131, 191, 0, 224, 179, 63, 0, 120, 159, 15, 0, 160, 125, 193, 0, 96, 131, 191, 0, 128, 151, 63, 0, 216, 30, 16, 0, 32, 120, 193, 0, 96, 131, 191, 0, 96, 193, 63, 0, 88, 31, 15, 0, 160, 23, 193, 0, 64, 133, 191, 0, 192, 231, 63, 0, 120, 159, 12, 0, 160, 14, 193, 0, 160, 104, 191, 0, 128, 235, 63, 0, 184, 30, 15, 0, 128, 3, 193, 0, 160, 43, 191, 0, 96, 237, 63, 0, 88, 46, 20, 0, 96, 232, 192, 0, 96, 217, 190, 0, 96, 235, 63, 0, 56, 46, 26, 0, 32, 185, 192, 0, 192, 139, 190, 0, 0, 226, 63, 0, 24, 62, 29, 0, 0, 1, 192, 0, 96, 136, 191, 0, 224, 195, 63, 104, 56, 159, 16, 0, 224, 175, 191, 0, 224, 93, 191, 0, 224, 195, 63, 0, 80, 155, 12, 0, 32, 35, 192, 0, 192, 79, 191, 0, 224, 225, 63, 227, 117, 157, 15, 0, 0, 1, 192, 0, 96, 136, 191, 0, 224, 195, 63, 104, 56, 159, 16, 0, 64, 69, 192, 0, 96, 10, 191, 0, 128, 235, 63, 146, 149, 45, 21, 0, 32, 106, 192, 0, 32, 184, 190, 0, 128, 238, 63, 193, 24, 46, 26, 0, 192, 144, 192, 0, 32, 141, 190, 0, 64, 237, 63, 24, 56, 190, 28, 0, 160, 43, 193, 0, 160, 149, 191, 0, 96, 33, 64, 0, 216, 143, 5, 0, 0, 32, 193, 0, 160, 151, 191, 0, 64, 39, 64, 8, 216, 143, 6, 0, 128, 63, 193, 0, 32, 154, 191, 0, 160, 19, 64, 0, 216, 143, 6, 0, 160, 125, 193, 0, 32, 154, 191, 0, 96, 5, 64, 0, 184, 143, 6, 0, 32, 120, 193, 0, 32, 154, 191, 0, 64, 26, 64, 0, 216, 15, 5, 0, 192, 23, 193, 0, 96, 150, 191, 0, 32, 42, 64, 0, 184, 15, 9, 0, 96, 15, 193, 0, 96, 139, 191, 0, 0, 44, 64, 0, 88, 31, 11, 0, 32, 4, 193, 0, 160, 104, 191, 0, 128, 45, 64, 0, 24, 159, 12, 0, 64, 236, 192, 0, 32, 59, 191, 0, 96, 44, 64, 0, 56, 159, 15, 0, 160, 193, 192, 0, 224, 36, 191, 0, 64, 40, 64, 0, 24, 47, 20, 0, 0, 1, 192, 0, 96, 157, 191, 0, 128, 27, 64, 80, 184, 143, 8, 0, 224, 175, 191, 0, 224, 140, 191, 0, 128, 27, 64, 0, 212, 11, 9, 0, 192, 35, 192, 0, 0, 130, 191, 0, 64, 40, 64, 98, 153, 158, 10, 0, 0, 1, 192, 0, 96, 157, 191, 0, 128, 27, 64, 80, 184, 143, 8, 0, 32, 70, 192, 0, 64, 79, 191, 0, 96, 44, 64, 74, 153, 158, 14, 0, 192, 101, 192, 0, 96, 47, 191, 0, 160, 45, 64, 169, 24, 159, 17, 0, 192, 140, 192, 0, 128, 33, 191, 0, 32, 45, 64, 16, 24, 47, 20, 0, 32, 34, 193, 0, 0, 156, 191, 0, 128, 99, 64, 24, 184, 143, 8, 0, 192, 28, 193, 0, 224, 162, 191, 0, 192, 102, 64, 24, 184, 31, 10, 0, 128, 63, 193, 0, 0, 156, 191, 0, 128, 99, 64, 0, 184, 15, 9, 0, 160, 125, 193, 0, 0, 156, 191, 0, 96, 85, 64, 0, 212, 44, 23, 0, 32, 120, 193, 0, 0, 156, 191, 0, 64, 106, 64, 0, 52, 45, 24, 0, 64, 24, 193, 0, 0, 167, 191, 0, 32, 104, 64, 0, 184, 31, 10, 0, 32, 18, 193, 0, 32, 165, 191, 0, 0, 106, 64, 0, 120, 159, 12, 0, 64, 5, 193, 0, 160, 141, 191, 0, 160, 109, 64, 0, 248, 30, 15, 0, 32, 248, 192, 0, 192, 113, 191, 0, 128, 107, 64, 0, 248, 46, 20, 0, 32, 235, 192, 0, 160, 109, 191, 0, 128, 107, 64, 0, 184, 174, 23, 0, 0, 1, 192, 0, 192, 157, 191, 0, 128, 107, 64, 24, 152, 31, 13, 0, 224, 175, 191, 0, 0, 149, 191, 0, 128, 107, 64, 74, 153, 30, 13, 0, 32, 37, 192, 0, 160, 154, 191, 0, 128, 107, 64, 1, 25, 31, 12, 0, 0, 1, 192, 0, 192, 157, 191, 0, 128, 107, 64, 24, 152, 31, 13, 0, 32, 77, 192, 0, 160, 127, 191, 0, 128, 107, 64, 58, 185, 158, 12, 0, 96, 84, 192, 0, 160, 115, 191, 0, 128, 107, 64, 136, 216, 46, 21, 0, 224, 97, 192, 0, 160, 109, 191, 0, 128, 107, 64, 24, 184, 174, 24, 0, 160, 165, 193, 0, 160, 71, 63, 0, 0, 122, 193, 0, 248, 14, 0, 0, 160, 165, 193, 0, 160, 71, 63, 0, 224, 91, 193, 0, 248, 15, 0, 0, 192, 159, 193, 0, 160, 71, 63, 0, 0, 122, 193, 130, 57, 14, 0, 0, 64, 160, 193, 0, 160, 71, 63, 0, 160, 93, 193, 32, 216, 15, 0, 0, 0, 160, 193, 0, 160, 71, 63, 0, 192, 105, 193, 185, 152, 15, 0, 0, 64, 160, 193, 0, 192, 232, 62, 0, 192, 147, 192, 161, 24, 15, 0, 0, 0, 164, 193, 0, 192, 117, 62, 0, 160, 173, 192, 50, 153, 14, 0, 0, 160, 168, 193, 0, 160, 160, 62, 0, 160, 173, 192, 185, 88, 159, 10, 0, 128, 163, 193, 0, 128, 19, 63, 0, 224, 141, 192, 0, 184, 15, 0, 0, 128, 155, 193, 0, 192, 232, 62, 0, 96, 131, 192, 161, 56, 15, 0, 0, 224, 157, 193, 0, 128, 19, 63, 0, 32, 116, 192, 48, 216, 15, 0, 0, 192, 150, 193, 0, 192, 232, 62, 0, 160, 114, 192, 249, 24, 15, 0, 0, 0, 152, 193, 0, 128, 19, 63, 0, 224, 91, 192, 177, 152, 15, 1, 0, 96, 145, 193, 0, 192, 117, 62, 0, 32, 104, 192, 178, 57, 14, 0, 0, 160, 145, 193, 0, 32, 162, 62, 0, 32, 79, 192, 162, 57, 30, 10, 0, 160, 141, 193, 0, 32, 81, 189, 0, 192, 103, 192, 90, 249, 14, 0, 0, 224, 140, 193, 0, 192, 18, 189, 0, 160, 78, 192, 33, 249, 158, 11, 0, 192, 169, 193, 0, 128, 145, 62, 0, 96, 165, 192, 0, 56, 143, 8, 0, 64, 165, 193, 0, 64, 11, 63, 0, 0, 134, 192, 0, 184, 30, 10, 0, 128, 159, 193, 0, 64, 11, 63, 0, 96, 100, 192, 0, 216, 46, 19, 0, 192, 153, 193, 0, 64, 11, 63, 0, 0, 76, 192, 0, 120, 46, 26, 0, 64, 147, 193, 0, 128, 145, 62, 0, 96, 63, 192, 9, 149, 188, 34, 0, 160, 142, 193, 0, 160, 139, 189, 0, 224, 62, 192, 33, 85, 188, 35, 0, 160, 172, 193, 0, 224, 228, 188, 0, 128, 158, 192, 0, 244, 203, 37, 0, 192, 167, 193, 0, 128, 126, 62, 0, 64, 122, 192, 0, 52, 157, 17, 0, 192, 161, 193, 0, 128, 126, 62, 0, 0, 80, 192, 0, 52, 189, 28, 0, 128, 155, 193, 0, 128, 126, 62, 0, 32, 54, 192, 0, 244, 60, 36, 0, 192, 148, 193, 0, 224, 228, 188, 0, 160, 40, 192, 233, 116, 75, 41, 0, 192, 143, 193, 0, 64, 206, 190, 0, 32, 40, 192, 80, 116, 76, 39, 0, 64, 176, 193, 0, 32, 185, 190, 0, 224, 152, 192, 0, 116, 60, 33, 0, 192, 170, 193, 0, 96, 81, 189, 0, 192, 102, 192, 0, 56, 158, 12, 0, 0, 164, 193, 0, 96, 81, 189, 0, 64, 55, 192, 0, 56, 174, 23, 0, 0, 157, 193, 0, 96, 81, 189, 0, 64, 26, 192, 0, 248, 61, 30, 0, 96, 149, 193, 0, 32, 185, 190, 0, 0, 11, 192, 42, 181, 60, 33, 0, 192, 143, 193, 0, 96, 72, 191, 0, 128, 10, 192, 0, 184, 189, 30, 0, 224, 183, 193, 0, 64, 82, 191, 0, 32, 145, 192, 0, 116, 188, 30, 0, 0, 177, 193, 0, 128, 220, 190, 0, 224, 67, 192, 0, 24, 158, 12, 0, 128, 168, 193, 0, 128, 220, 190, 0, 32, 8, 192, 0, 56, 46, 23, 0, 192, 159, 193, 0, 128, 220, 190, 0, 96, 199, 191, 0, 56, 190, 28, 0, 32, 150, 193, 0, 64, 82, 191, 0, 32, 161, 191, 9, 117, 61, 29, 0, 0, 143, 193, 0, 224, 172, 191, 0, 192, 159, 191, 0, 216, 13, 9, 0, 96, 129, 193, 0, 192, 156, 191, 0, 224, 232, 63, 0, 88, 15, 8, 0, 96, 129, 193, 0, 64, 158, 191, 0, 160, 54, 64, 0, 152, 143, 2, 0, 96, 129, 193, 0, 224, 137, 191, 0, 128, 137, 63, 0, 216, 30, 16, 0, 96, 129, 193, 0, 64, 117, 191, 0, 192, 54, 63, 0, 24, 174, 24, 0, 96, 129, 193, 0, 32, 54, 191, 0, 192, 131, 62, 0, 52, 189, 31, 0, 96, 129, 193, 0, 192, 236, 190, 0, 96, 211, 189, 0, 84, 189, 31, 0, 96, 129, 193, 0, 96, 138, 190, 0, 0, 3, 191, 0, 152, 30, 16, 0, 96, 129, 193, 0, 96, 138, 190, 0, 96, 216, 191, 0, 152, 14, 0, 0, 128, 133, 193, 0, 224, 180, 191, 0, 128, 254, 63, 0, 152, 15, 6, 0, 128, 133, 193, 0, 192, 182, 191, 0, 32, 74, 64, 0, 120, 15, 0, 0, 128, 133, 193, 0, 160, 159, 191, 0, 96, 146, 63, 0, 56, 159, 15, 0, 128, 133, 193, 0, 64, 142, 191, 0, 64, 60, 63, 0, 120, 174, 24, 0, 128, 133, 193, 0, 32, 85, 191, 0, 128, 95, 62, 0, 116, 189, 32, 0, 128, 133, 193, 0, 224, 12, 191, 0, 160, 66, 190, 0, 184, 61, 31, 0, 128, 133, 193, 0, 96, 170, 190, 0, 32, 39, 191, 0, 152, 31, 10, 0, 96, 133, 193, 0, 64, 222, 190, 0, 96, 253, 191, 0, 120, 15, 1, 0, 64, 138, 193, 0, 96, 185, 191, 0, 32, 4, 64, 0, 216, 15, 6, 0, 64, 138, 193, 0, 64, 187, 191, 0, 0, 83, 64, 0, 216, 143, 0, 0, 64, 138, 193, 0, 0, 163, 191, 0, 128, 150, 63, 0, 120, 31, 14, 0, 64, 138, 193, 0, 192, 144, 191, 0, 192, 62, 63, 0, 120, 46, 24, 0, 64, 138, 193, 0, 32, 86, 191, 0, 64, 77, 62, 0, 84, 189, 32, 0, 64, 138, 193, 0, 32, 10, 191, 0, 32, 107, 190, 0, 216, 173, 26, 0, 64, 138, 193, 0, 224, 158, 190, 0, 160, 55, 191, 0, 88, 143, 7, 0, 0, 138, 193, 0, 224, 24, 191, 0, 64, 6, 192, 0, 184, 143, 6, 0, 0, 135, 193, 0, 32, 81, 189, 0, 192, 103, 192, 8, 56, 159, 17, 0, 32, 137, 193, 0, 160, 181, 190, 0, 160, 46, 192, 64, 216, 174, 21, 0, 224, 130, 193, 0, 32, 170, 190, 0, 224, 37, 192, 0, 184, 158, 13, 0, 32, 131, 193, 0, 32, 81, 189, 0, 32, 84, 192, 0, 152, 174, 20, 0, 160, 127, 193, 0, 32, 81, 189, 0, 128, 46, 192, 0, 52, 60, 32, 0, 160, 139, 193, 0, 192, 102, 190, 0, 32, 50, 192, 88, 88, 174, 26, 0, 32, 141, 193, 0, 64, 250, 190, 0, 128, 10, 192, 0, 56, 30, 17, 0, 128, 142, 193, 0, 160, 44, 191, 0, 160, 138, 191, 0, 180, 11, 0, 0, 32, 149, 193, 0, 128, 186, 191, 0, 160, 186, 189, 0, 120, 143, 0, 0, 160, 148, 193, 0, 160, 166, 191, 0, 160, 151, 61, 0, 88, 14, 0, 0, 32, 183, 193, 0, 128, 159, 191, 0, 160, 243, 191, 0, 24, 15, 9, 0, 160, 174, 193, 0, 128, 159, 191, 0, 128, 120, 191, 0, 56, 159, 14, 0, 192, 165, 193, 0, 128, 159, 191, 0, 192, 204, 190, 0, 56, 31, 17, 0, 32, 156, 193, 0, 0, 171, 191, 0, 192, 207, 189, 112, 56, 31, 17, 0, 64, 148, 193, 0, 96, 200, 191, 0, 32, 4, 64, 0, 216, 15, 6, 0, 64, 148, 193, 0, 64, 202, 191, 0, 0, 83, 64, 0, 216, 15, 0, 0, 64, 148, 193, 0, 224, 177, 191, 0, 128, 150, 63, 0, 184, 143, 6, 0, 32, 156, 193, 0, 32, 204, 191, 0, 32, 4, 64, 0, 216, 15, 6, 0, 32, 156, 193, 0, 0, 206, 191, 0, 0, 83, 64, 0, 248, 15, 0, 0, 32, 156, 193, 0, 160, 181, 191, 0, 128, 150, 63, 0, 216, 15, 7, 0, 128, 164, 193, 0, 96, 200, 191, 0, 32, 4, 64, 8, 216, 15, 6, 0, 128, 164, 193, 0, 64, 202, 191, 0, 0, 83, 64, 8, 248, 15, 0, 0, 128, 164, 193, 0, 224, 177, 191, 0, 128, 150, 63, 8, 184, 143, 8, 0, 160, 172, 193, 0, 96, 200, 191, 0, 32, 4, 64, 16, 216, 15, 6, 0, 160, 172, 193, 0, 64, 202, 191, 0, 0, 83, 64, 16, 248, 15, 0, 0, 160, 172, 193, 0, 224, 177, 191, 0, 128, 150, 63, 0, 216, 143, 7, 0, 128, 186, 193, 0, 96, 190, 191, 0, 32, 4, 64, 0, 216, 15, 6, 0, 128, 186, 193, 0, 64, 192, 191, 0, 0, 83, 64, 0, 248, 15, 0, 0, 128, 186, 193, 0, 0, 168, 191, 0, 128, 150, 63, 0, 216, 15, 5, 0, 160, 195, 193, 0, 96, 195, 191, 0, 32, 4, 64, 0, 216, 143, 4, 0, 160, 195, 193, 0, 64, 197, 191, 0, 0, 83, 64, 0, 248, 15, 0, 0, 160, 195, 193, 0, 224, 172, 191, 0, 128, 150, 63, 0, 216, 143, 2, 0, 32, 191, 193, 0, 160, 181, 191, 0, 64, 140, 191, 0, 216, 15, 0, 0, 128, 182, 193, 0, 160, 181, 191, 0, 32, 39, 190, 0, 216, 15, 1, 0, 32, 192, 193, 0, 192, 204, 191, 0, 224, 91, 192, 0, 56, 159, 9, 0, 224, 198, 193, 0, 128, 197, 191, 0, 224, 23, 192, 0, 248, 15, 0, 0, 128, 166, 193, 0, 192, 245, 62, 0, 192, 16, 193, 251, 117, 157, 11, 0, 96, 165, 193, 0, 192, 2, 63, 0, 64, 14, 193, 138, 57, 30, 13, 0, 96, 165, 193, 0, 160, 50, 63, 0, 32, 22, 193, 0, 212, 44, 19, 0, 0, 166, 193, 0, 160, 71, 63, 0, 192, 33, 193, 0, 56, 159, 16, 0, 128, 167, 193, 0, 160, 71, 63, 0, 192, 33, 193, 169, 24, 159, 15, 0, 96, 165, 193, 0, 160, 71, 63, 0, 64, 31, 193, 0, 24, 30, 14, 0, 128, 167, 193, 0, 160, 71, 63, 0, 32, 0, 193, 182, 139, 5, 0, 0, 224, 166, 193, 0, 192, 8, 63, 0, 160, 0, 193, 166, 75, 6, 2, 0, 96, 165, 193, 0, 64, 119, 62, 0, 32, 7, 193, 21, 211, 137, 6, 0, 160, 166, 193, 0, 96, 4, 63, 0, 0, 245, 192, 190, 107, 5, 0, 0, 96, 165, 193, 0, 224, 252, 60, 0, 192, 253, 192, 198, 43, 5, 2, 0, 128, 166, 193, 0, 0, 13, 63, 0, 160, 222, 192, 206, 203, 132, 2, 0, 96, 165, 193, 0, 32, 81, 189, 0, 0, 240, 192, 206, 171, 4, 1, 0, 32, 167, 193, 0, 96, 181, 62, 0, 64, 210, 192, 206, 171, 4, 2, 0, 96, 165, 193, 0, 32, 81, 189, 0, 64, 194, 192, 53, 115, 9, 0, 0, 160, 166, 193, 0, 0, 190, 62, 0, 224, 193, 192, 150, 239, 6, 0, 0, 128, 167, 193, 0, 160, 71, 63, 0, 32, 229, 192, 174, 235, 5, 0, 0, 128, 167, 193, 0, 160, 71, 63, 0, 0, 189, 192, 5, 239, 39, 26, 0, 224, 187, 193, 0, 160, 71, 63, 0, 0, 189, 192, 24, 248, 189, 29, 0, 224, 187, 193, 0, 224, 122, 62, 0, 96, 172, 192, 0, 80, 218, 47, 0, 192, 176, 193, 0, 128, 95, 62, 0, 96, 160, 192, 0, 112, 217, 50, 0, 224, 189, 193, 0, 64, 75, 63, 0, 0, 189, 192, 0, 120, 174, 22, 0, 224, 189, 193, 0, 160, 132, 62, 0, 96, 172, 192, 0, 240, 89, 48, 0, 0, 182, 193, 0, 160, 71, 63, 0, 224, 91, 193, 48, 216, 15, 0, 0, 0, 182, 193, 0, 160, 71, 63, 0, 0, 122, 193, 32, 248, 14, 0, 0, 32, 184, 193, 0, 64, 75, 63, 0, 0, 122, 193, 0, 24, 15, 0, 0, 32, 184, 193, 0, 64, 75, 63, 0, 224, 91, 193, 0, 120, 15, 0, 0, 0, 182, 193, 0, 160, 71, 63, 0, 0, 62, 193, 48, 216, 143, 1, 0, 32, 184, 193, 0, 64, 75, 63, 0, 0, 62, 193, 0, 184, 15, 0, 0, 224, 187, 193, 0, 160, 71, 63, 0, 32, 57, 193, 48, 216, 15, 5, 0, 224, 189, 193, 0, 64, 75, 63, 0, 32, 57, 193, 0, 120, 14, 0, 0, 224, 187, 193, 0, 160, 71, 63, 0, 192, 33, 193, 48, 216, 15, 0, 0, 224, 189, 193, 0, 64, 75, 63, 0, 192, 33, 193, 0, 56, 15, 0, 0, 224, 187, 193, 0, 160, 71, 63, 0, 192, 33, 193, 48, 216, 15, 0, 0, 224, 189, 193, 0, 64, 75, 63, 0, 192, 33, 193, 0, 56, 15, 0, 0, 0, 193, 193, 0, 224, 17, 63, 0, 0, 189, 192, 0, 116, 43, 20, 0, 0, 193, 193, 0, 224, 14, 61, 0, 96, 172, 192, 0, 12, 216, 45, 0, 64, 187, 193, 0, 224, 17, 63, 0, 0, 122, 193, 0, 84, 12, 0, 0, 64, 187, 193, 0, 224, 17, 63, 0, 224, 91, 193, 0, 20, 12, 0, 0, 192, 188, 193, 0, 96, 236, 62, 0, 192, 68, 193, 0, 244, 11, 0, 0, 0, 193, 193, 0, 224, 17, 63, 0, 192, 33, 193, 0, 48, 11, 0, 0, 160, 191, 193, 0, 64, 232, 62, 0, 32, 53, 193, 0, 208, 10, 0, 0, 0, 193, 193, 0, 224, 17, 63, 0, 192, 33, 193, 0, 48, 11, 0, 0, 192, 195, 193, 0, 128, 162, 61, 0, 0, 189, 192, 0, 204, 152, 16, 0, 192, 195, 193, 0, 64, 233, 190, 0, 96, 172, 192, 0, 172, 72, 38, 0, 0, 190, 193, 0, 128, 162, 61, 0, 0, 122, 193, 0, 112, 10, 0, 0, 0, 190, 193, 0, 128, 162, 61, 0, 224, 91, 193, 0, 112, 9, 0, 0, 96, 192, 193, 0, 224, 2, 189, 0, 128, 70, 193, 0, 48, 10, 0, 0, 192, 195, 193, 0, 128, 162, 61, 0, 192, 33, 193, 0, 112, 9, 0, 0, 64, 195, 193, 0, 224, 176, 189, 0, 96, 53, 193, 0, 48, 10, 0, 0, 192, 195, 193, 0, 128, 162, 61, 0, 192, 33, 193, 0, 112, 9, 0, 0, 64, 201, 193, 0, 96, 106, 191, 0, 0, 189, 192, 0, 108, 24, 14, 0, 64, 201, 193, 0, 160, 185, 191, 0, 96, 172, 192, 0, 84, 28, 17, 0, 128, 195, 193, 0, 96, 106, 191, 0, 0, 122, 193, 0, 240, 10, 9, 0, 128, 195, 193, 0, 96, 106, 191, 0, 224, 91, 193, 0, 148, 11, 0, 0, 64, 196, 193, 0, 224, 31, 191, 0, 64, 72, 193, 0, 48, 11, 0, 0, 64, 201, 193, 0, 96, 106, 191, 0, 192, 33, 193, 0, 44, 8, 0, 0, 64, 201, 193, 0, 96, 106, 191, 0, 32, 57, 193, 0, 48, 9, 0, 0, 64, 201, 193, 0, 96, 106, 191, 0, 192, 33, 193, 0, 44, 8, 0, 0, 32, 138, 193, 0, 64, 30, 63, 0, 96, 140, 193, 0, 112, 10, 0, 0, 32, 138, 193, 0, 0, 189, 63, 0, 64, 133, 193, 0, 236, 8, 0, 0, 32, 138, 193, 0, 224, 16, 64, 0, 32, 129, 193, 0, 248, 13, 0, 0, 32, 138, 193, 0, 160, 12, 64, 0, 64, 120, 193, 64, 180, 76, 38, 0, 32, 138, 193, 0, 128, 182, 63, 0, 160, 115, 193, 1, 13, 87, 54, 0, 64, 144, 193, 0, 64, 173, 62, 0, 96, 138, 193, 0, 176, 10, 0, 0, 64, 144, 193, 0, 32, 153, 63, 0, 64, 131, 193, 0, 12, 9, 0, 0, 64, 144, 193, 0, 0, 254, 63, 0, 128, 126, 193, 0, 212, 11, 0, 0, 64, 144, 193, 0, 96, 245, 63, 0, 64, 116, 193, 0, 116, 75, 37, 0, 64, 144, 193, 0, 160, 146, 63, 0, 192, 111, 193, 0, 76, 216, 53, 0, 96, 149, 193, 0, 224, 99, 62, 0, 192, 136, 193, 0, 148, 11, 0, 0, 96, 149, 193, 0, 160, 43, 63, 0, 160, 129, 193, 0, 176, 9, 0, 0, 96, 149, 193, 0, 96, 138, 63, 0, 96, 123, 193, 0, 176, 9, 0, 0, 96, 149, 193, 0, 224, 133, 63, 0, 32, 113, 193, 0, 52, 172, 25, 0, 96, 149, 193, 0, 224, 36, 63, 0, 128, 108, 193, 243, 181, 172, 21, 0, 128, 137, 193, 0, 96, 132, 63, 0, 224, 110, 193, 161, 20, 189, 34, 0, 224, 137, 193, 0, 96, 110, 63, 0, 160, 104, 193, 64, 120, 159, 12, 0, 96, 142, 193, 0, 96, 90, 63, 0, 160, 104, 193, 0, 56, 31, 15, 0, 96, 143, 193, 0, 96, 107, 63, 0, 96, 110, 193, 0, 180, 76, 37, 0, 192, 144, 193, 0, 160, 71, 63, 0, 160, 104, 193, 0, 152, 174, 21, 0, 192, 149, 193, 0, 160, 71, 63, 0, 64, 103, 193, 0, 120, 15, 0, 0, 160, 154, 193, 0, 224, 6, 60, 0, 128, 129, 193, 0, 120, 14, 0, 0, 160, 154, 193, 0, 192, 214, 62, 0, 224, 122, 193, 0, 116, 13, 0, 0, 160, 154, 193, 0, 192, 196, 62, 0, 192, 112, 193, 0, 216, 14, 0, 0, 192, 156, 193, 0, 224, 172, 187, 0, 96, 129, 193, 209, 244, 12, 0, 0, 192, 156, 193, 0, 192, 207, 62, 0, 192, 122, 193, 138, 217, 13, 0, 0, 192, 156, 193, 0, 192, 189, 62, 0, 128, 112, 193, 42, 25, 15, 0, 0, 160, 155, 193, 0, 160, 71, 63, 0, 0, 99, 193, 0, 120, 15, 0, 0, 128, 160, 193, 0, 160, 71, 63, 0, 32, 91, 193, 0, 248, 15, 0, 0, 160, 163, 193, 0, 160, 71, 63, 0, 192, 78, 193, 0, 248, 15, 0, 0, 160, 165, 193, 0, 160, 71, 63, 0, 0, 62, 193, 0, 248, 15, 0, 0, 160, 164, 193, 0, 160, 71, 63, 0, 96, 59, 193, 0, 248, 15, 0, 0, 160, 164, 193, 0, 160, 71, 63, 0, 64, 69, 193, 0, 248, 15, 0, 0, 0, 166, 193, 0, 160, 71, 63, 0, 32, 57, 193, 0, 248, 15, 0, 0, 224, 167, 193, 0, 160, 71, 63, 0, 0, 62, 193, 0, 248, 15, 0, 0, 128, 167, 193, 0, 160, 71, 63, 0, 32, 57, 193, 0, 248, 15, 0, 0, 128, 184, 193, 0, 224, 163, 62, 0, 160, 131, 193, 0, 244, 11, 0, 0, 160, 187, 193, 0, 128, 196, 61, 0, 160, 131, 193, 0, 212, 11, 0, 0, 128, 182, 193, 0, 192, 156, 62, 0, 160, 131, 193, 16, 180, 11, 0, 0, 32, 160, 193, 0, 192, 156, 62, 0, 160, 131, 193, 106, 145, 10, 0, 0, 0, 166, 193, 0, 192, 156, 62, 0, 160, 131, 193, 0, 212, 11, 0, 0, 224, 167, 193, 0, 160, 71, 63, 0, 0, 122, 193, 0, 216, 13, 0, 0, 96, 168, 193, 0, 192, 156, 62, 0, 160, 131, 193, 0, 212, 11, 0, 0, 96, 185, 193, 0, 192, 20, 191, 0, 192, 136, 193, 0, 116, 11, 0, 0, 160, 188, 193, 0, 32, 78, 191, 0, 192, 136, 193, 0, 244, 12, 0, 0, 96, 183, 193, 0, 96, 24, 191, 0, 192, 136, 193, 16, 180, 11, 0, 0, 32, 161, 193, 0, 96, 24, 191, 0, 192, 136, 193, 0, 84, 12, 0, 0, 0, 167, 193, 0, 96, 24, 191, 0, 192, 136, 193, 0, 180, 11, 0, 0, 64, 169, 193, 0, 96, 24, 191, 0, 192, 136, 193, 0, 180, 11, 0, 0, 192, 185, 193, 0, 160, 100, 191, 0, 0, 141, 193, 0, 120, 14, 0, 0, 224, 188, 193, 0, 0, 143, 191, 0, 0, 141, 193, 0, 88, 14, 0, 0, 192, 183, 193, 0, 64, 104, 191, 0, 0, 141, 193, 24, 248, 14, 0, 0, 96, 161, 193, 0, 64, 104, 191, 0, 0, 141, 193, 0, 184, 14, 0, 0, 64, 167, 193, 0, 64, 104, 191, 0, 0, 141, 193, 0, 248, 14, 0, 0, 160, 169, 193, 0, 64, 104, 191, 0, 0, 141, 193, 0, 248, 14, 0, 0, 192, 185, 193, 0, 224, 143, 191, 0, 32, 151, 193, 0, 152, 15, 0, 0, 224, 188, 193, 0, 160, 172, 191, 0, 32, 151, 193, 0, 120, 15, 0, 0, 192, 183, 193, 0, 160, 145, 191, 0, 32, 151, 193, 24, 184, 15, 0, 0, 128, 161, 193, 0, 160, 145, 191, 0, 32, 151, 193, 0, 152, 15, 0, 0, 96, 167, 193, 0, 160, 145, 191, 0, 32, 151, 193, 0, 184, 15, 0, 0, 160, 169, 193, 0, 160, 145, 191, 0, 32, 151, 193, 0, 184, 15, 0, 0, 224, 144, 193, 0, 32, 245, 190, 0, 192, 144, 193, 0, 180, 12, 0, 0, 0, 150, 193, 0, 32, 24, 191, 0, 64, 143, 193, 0, 116, 13, 0, 0, 224, 138, 193, 0, 96, 75, 190, 0, 192, 146, 193, 0, 84, 12, 0, 0, 192, 134, 193, 0, 128, 27, 190, 0, 224, 148, 193, 0, 148, 13, 0, 0, 64, 146, 193, 0, 128, 140, 191, 0, 224, 157, 193, 0, 184, 14, 0, 0, 96, 151, 193, 0, 64, 155, 191, 0, 96, 156, 193, 0, 88, 15, 0, 0, 32, 140, 193, 0, 64, 81, 191, 0, 224, 159, 193, 0, 184, 13, 0, 0, 0, 136, 193, 0, 64, 69, 191, 0, 0, 162, 193, 0, 24, 14, 0, 0, 32, 100, 193, 0, 224, 94, 191, 0, 32, 159, 193, 0, 120, 15, 0, 0, 64, 107, 193, 0, 128, 37, 191, 0, 32, 157, 193, 33, 121, 14, 0, 0, 224, 113, 193, 0, 64, 226, 190, 0, 96, 155, 193, 48, 24, 15, 0, 0, 192, 120, 193, 0, 64, 255, 190, 0, 0, 155, 193, 72, 56, 15, 0, 0, 160, 128, 193, 0, 128, 135, 190, 0, 64, 153, 193, 40, 216, 14, 0, 0, 192, 100, 193, 0, 160, 124, 191, 0, 32, 167, 193, 0, 56, 14, 0, 0, 224, 107, 193, 0, 32, 67, 191, 0, 32, 165, 193, 193, 120, 14, 0, 0, 96, 114, 193, 0, 192, 14, 191, 0, 96, 163, 193, 80, 248, 14, 0, 0, 64, 121, 193, 0, 64, 29, 191, 0, 224, 162, 193, 32, 184, 14, 0, 0, 224, 128, 193, 0, 192, 194, 190, 0, 32, 161, 193, 8, 24, 15, 0, 0, 0, 60, 193, 0, 192, 42, 191, 0, 160, 164, 193, 0, 216, 13, 0, 0, 96, 77, 193, 0, 96, 6, 191, 0, 64, 164, 193, 24, 152, 14, 0, 0, 224, 90, 193, 0, 0, 2, 191, 0, 0, 164, 193, 0, 120, 14, 0, 0, 224, 36, 193, 0, 224, 3, 191, 0, 32, 169, 193, 56, 20, 12, 0, 0, 128, 47, 193, 0, 32, 15, 191, 0, 0, 168, 193, 0, 180, 12, 0, 0, 64, 250, 192, 0, 32, 61, 191, 0, 64, 162, 193, 0, 116, 12, 0, 0, 32, 13, 193, 0, 32, 45, 191, 0, 64, 158, 193, 17, 149, 12, 0, 0, 224, 248, 192, 0, 160, 149, 191, 0, 224, 169, 193, 0, 52, 13, 0, 0, 128, 12, 193, 0, 160, 141, 191, 0, 224, 165, 193, 136, 84, 13, 0, 0, 32, 143, 192, 0, 128, 244, 190, 0, 160, 163, 193, 80, 148, 12, 0, 0, 64, 189, 192, 0, 128, 244, 190, 0, 96, 165, 193, 0, 212, 12, 0, 0, 64, 236, 192, 0, 128, 244, 190, 0, 224, 162, 193, 0, 212, 11, 0, 0, 96, 144, 192, 0, 0, 73, 191, 0, 32, 169, 193, 64, 212, 12, 0, 0, 128, 190, 192, 0, 0, 73, 191, 0, 224, 170, 193, 0, 20, 12, 0, 0, 128, 237, 192, 0, 0, 73, 191, 0, 96, 168, 193, 0, 84, 12, 0, 0, 64, 250, 192, 0, 32, 61, 191, 0, 64, 162, 193, 0, 116, 12, 0, 0, 224, 248, 192, 0, 160, 149, 191, 0, 224, 169, 193, 0, 52, 13, 0, 0, 224, 90, 192, 0, 0, 228, 62, 0, 128, 112, 193, 146, 121, 158, 9, 0, 96, 84, 192, 0, 0, 228, 62, 0, 160, 138, 193, 195, 57, 14, 0, 0, 128, 89, 192, 0, 0, 228, 62, 0, 224, 155, 193, 82, 249, 13, 0, 0, 32, 45, 192, 0, 96, 235, 189, 0, 160, 112, 193, 0, 152, 159, 10, 0, 160, 38, 192, 0, 96, 235, 189, 0, 192, 138, 193, 0, 152, 143, 2, 0, 192, 43, 192, 0, 96, 235, 189, 0, 0, 156, 193, 42, 153, 14, 0, 0, 32, 234, 191, 0, 224, 57, 63, 0, 128, 99, 193, 0, 48, 9, 0, 0, 160, 129, 192, 0, 0, 4, 63, 0, 0, 99, 193, 185, 56, 14, 0, 0, 224, 237, 191, 0, 96, 86, 62, 0, 96, 103, 193, 0, 212, 12, 0, 0, 128, 121, 192, 0, 32, 249, 189, 0, 64, 104, 193, 66, 121, 14, 0, 0, 64, 213, 191, 0, 0, 92, 63, 0, 224, 121, 193, 0, 148, 27, 14, 0, 64, 232, 191, 0, 32, 130, 63, 0, 160, 129, 193, 0, 212, 140, 3, 0, 0, 128, 63, 0, 0, 178, 191, 0, 96, 165, 63, 0, 0, 0, 0, 0, 0, 128, 63, 0, 0, 178, 191, 0, 224, 36, 64, 0, 0, 0, 0, 0, 0, 128, 63, 0, 0, 170, 190, 0, 224, 36, 64, 0, 120, 159, 14, 0, 0, 128, 63, 0, 0, 147, 190, 0, 96, 165, 63, 0, 212, 76, 37, 0, 0, 128, 191, 0, 0, 147, 190, 0, 96, 165, 63, 16, 84, 189, 34, 0, 0, 128, 191, 0, 0, 170, 190, 0, 224, 36, 64, 80, 88, 159, 15, 0, 0, 128, 191, 0, 0, 178, 191, 0, 224, 36, 64, 254, 3, 0, 0, 0, 0, 128, 191, 0, 0, 178, 191, 0, 96, 165, 63, 254, 3, 0, 0, 0, 32, 153, 191, 0, 96, 204, 190, 0, 224, 163, 63, 0, 236, 24, 18, 0, 32, 153, 191, 0, 128, 227, 190, 0, 32, 36, 64, 0, 240, 153, 11, 0, 0, 128, 191, 0, 160, 125, 189, 0, 0, 146, 63, 0, 80, 59, 34, 0, 32, 153, 191, 0, 64, 50, 190, 0, 128, 144, 63, 0, 204, 184, 28, 0, 0, 128, 191, 0, 0, 0, 0, 0, 0, 128, 63, 0, 56, 31, 14, 0, 32, 153, 191, 0, 192, 229, 189, 0, 0, 125, 63, 0, 212, 155, 14, 0, 0, 155, 191, 0, 224, 239, 61, 0, 128, 76, 190, 136, 120, 31, 12, 0, 96, 89, 64, 0, 192, 131, 191, 0, 0, 185, 63, 0, 248, 13, 0, 0, 32, 131, 64, 0, 224, 85, 191, 0, 0, 185, 63, 0, 248, 13, 0, 0, 224, 62, 64, 0, 160, 128, 191, 0, 0, 185, 63, 144, 216, 13, 0, 0, 160, 25, 64, 0, 224, 85, 191, 0, 0, 185, 63, 170, 181, 12, 0, 0, 192, 226, 63, 0, 128, 154, 190, 0, 0, 185, 63, 90, 25, 14, 0, 0, 64, 88, 64, 0, 192, 71, 191, 0, 64, 222, 63, 0, 120, 14, 0, 0, 160, 130, 64, 0, 0, 22, 191, 0, 64, 222, 63, 0, 184, 14, 0, 0, 224, 61, 64, 0, 128, 65, 191, 0, 64, 222, 63, 161, 120, 14, 0, 0, 160, 24, 64, 0, 0, 22, 191, 0, 64, 222, 63, 211, 245, 12, 0, 0, 160, 224, 63, 0, 96, 88, 189, 0, 64, 222, 63, 80, 152, 15, 0, 0, 128, 88, 64, 0, 96, 61, 191, 0, 192, 10, 64, 0, 216, 143, 3, 0, 192, 130, 64, 0, 192, 11, 191, 0, 192, 10, 64, 8, 216, 15, 4, 0, 32, 62, 64, 0, 32, 55, 191, 0, 192, 10, 64, 169, 152, 15, 3, 0, 224, 24, 64, 0, 192, 11, 191, 0, 192, 10, 64, 235, 249, 141, 2, 0, 0, 225, 63, 0, 192, 75, 188, 0, 192, 10, 64, 40, 216, 15, 3, 0, 128, 90, 64, 0, 32, 113, 191, 0, 192, 71, 64, 0, 52, 189, 34, 0, 192, 131, 64, 0, 96, 63, 191, 0, 192, 71, 64, 56, 248, 61, 30, 0, 32, 64, 64, 0, 224, 106, 191, 0, 192, 71, 64, 144, 52, 189, 33, 0, 224, 26, 64, 0, 96, 63, 191, 0, 192, 71, 64, 178, 21, 188, 30, 0, 32, 229, 63, 0, 128, 91, 190, 0, 192, 71, 64, 0, 216, 61, 31, 0, 64, 95, 64, 0, 160, 219, 191, 0, 32, 110, 64, 0, 216, 174, 22, 0, 32, 134, 64, 0, 192, 194, 191, 0, 32, 110, 64, 8, 24, 47, 20, 0, 224, 68, 64, 0, 128, 216, 191, 0, 32, 110, 64, 120, 184, 46, 23, 0, 160, 31, 64, 0, 192, 194, 191, 0, 32, 110, 64, 90, 53, 61, 28, 0, 160, 238, 63, 0, 0, 125, 191, 0, 32, 110, 64, 0, 84, 204, 39, 0, 0, 153, 63, 0, 0, 239, 190, 0, 192, 37, 64, 0, 88, 31, 17, 0, 0, 153, 63, 0, 224, 215, 190, 0, 64, 167, 63, 88, 152, 31, 12, 0, 0, 128, 63, 0, 160, 125, 189, 0, 0, 146, 63, 162, 81, 187, 35, 0, 0, 153, 63, 0, 64, 73, 190, 0, 224, 147, 63, 66, 117, 173, 26, 0, 0, 128, 63, 0, 32, 246, 190, 0, 96, 54, 64, 50, 81, 75, 40, 0, 0, 153, 63, 0, 128, 29, 191, 0, 64, 55, 64, 0, 180, 75, 42, 0, 32, 153, 191, 0, 192, 23, 191, 0, 160, 53, 64, 0, 12, 184, 27, 0, 0, 128, 191, 0, 32, 246, 190, 0, 96, 54, 64, 0, 48, 203, 40, 0, 0, 128, 63, 0, 128, 157, 191, 0, 160, 94, 64, 201, 148, 204, 36, 0, 0, 153, 63, 0, 192, 174, 191, 0, 160, 95, 64, 0, 52, 189, 34, 0, 32, 153, 191, 0, 224, 171, 191, 0, 224, 93, 64, 104, 152, 174, 23, 0, 0, 128, 191, 0, 128, 157, 191, 0, 160, 94, 64, 0, 148, 60, 36, 0, 0, 153, 63, 0, 160, 189, 191, 0, 128, 128, 64, 0, 88, 31, 16, 0, 160, 238, 63, 0, 160, 171, 191, 0, 224, 135, 64, 24, 152, 174, 24, 0, 224, 175, 191, 0, 0, 180, 191, 0, 128, 134, 64, 120, 120, 159, 12, 0, 32, 153, 191, 0, 128, 188, 191, 0, 128, 127, 64, 233, 56, 159, 10, 0, 224, 127, 63, 0, 64, 183, 191, 0, 32, 128, 64, 120, 120, 159, 13, 0, 0, 128, 191, 0, 64, 183, 191, 0, 32, 128, 64, 0, 184, 174, 20, 0, 224, 68, 64, 0, 32, 205, 191, 0, 224, 135, 64, 96, 216, 15, 0, 0, 64, 95, 64, 0, 64, 206, 191, 0, 224, 135, 64, 0, 152, 15, 0, 0, 160, 31, 64, 0, 0, 197, 191, 0, 224, 135, 64, 201, 120, 143, 5, 0, 0, 1, 192, 0, 64, 183, 191, 0, 128, 134, 64, 8, 56, 175, 18, 0, 64, 180, 64, 0, 64, 128, 191, 0, 32, 231, 63, 154, 153, 14, 0, 0, 224, 215, 64, 0, 0, 208, 191, 0, 224, 34, 64, 104, 184, 15, 5, 0, 224, 2, 65, 0, 64, 193, 191, 0, 224, 147, 64, 0, 216, 15, 0, 0, 128, 194, 64, 0, 64, 193, 191, 0, 224, 147, 64, 0, 216, 15, 0, 0, 128, 126, 64, 0, 64, 193, 191, 0, 224, 147, 64, 0, 216, 15, 0, 0, 32, 240, 63, 0, 64, 193, 191, 0, 224, 147, 64, 0, 88, 159, 15, 0, 160, 102, 190, 0, 64, 193, 191, 0, 224, 147, 64, 0, 216, 15, 7, 0, 224, 20, 192, 0, 64, 193, 191, 0, 224, 147, 64, 72, 248, 174, 20, 0, 224, 20, 192, 0, 64, 193, 191, 0, 224, 147, 64, 72, 248, 174, 20, 0, 0, 1, 192, 0, 64, 183, 191, 0, 128, 134, 64, 8, 56, 175, 18, 0, 160, 141, 192, 0, 64, 193, 191, 0, 224, 147, 64, 0, 148, 61, 33, 0, 224, 208, 192, 0, 64, 193, 191, 0, 224, 147, 64, 0, 148, 61, 33, 0, 0, 10, 193, 0, 64, 193, 191, 0, 224, 147, 64, 0, 216, 46, 22, 0, 160, 43, 193, 0, 64, 193, 191, 0, 224, 147, 64, 0, 88, 31, 16, 0, 64, 77, 193, 0, 64, 193, 191, 0, 224, 147, 64, 0, 88, 31, 17, 0, 224, 110, 193, 0, 64, 193, 191, 0, 224, 147, 64, 0, 88, 31, 16, 0, 64, 136, 193, 0, 64, 193, 191, 0, 224, 147, 64, 0, 216, 15, 3, 0, 0, 153, 193, 0, 64, 193, 191, 0, 224, 147, 64, 0, 216, 15, 0, 0, 224, 169, 193, 0, 64, 193, 191, 0, 224, 147, 64, 8, 216, 15, 0, 0, 160, 186, 193, 0, 64, 193, 191, 0, 224, 147, 64, 0, 248, 15, 0, 0, 128, 203, 193, 0, 64, 193, 191, 0, 224, 147, 64, 0, 248, 15, 0, 0, 128, 203, 193, 0, 64, 193, 191, 0, 64, 62, 64, 8, 248, 15, 1, 0, 128, 203, 193, 0, 64, 193, 191, 0, 96, 169, 63, 0, 216, 143, 1, 0, 128, 203, 193, 0, 64, 193, 191, 0, 160, 166, 190, 0, 216, 15, 0, 0, 128, 203, 193, 0, 64, 193, 191, 0, 224, 103, 192, 40, 216, 15, 1, 0, 128, 203, 193, 0, 64, 193, 191, 0, 192, 252, 191, 56, 216, 15, 0, 0, 128, 203, 193, 0, 64, 193, 191, 0, 160, 168, 192, 0, 216, 13, 3, 0, 128, 203, 193, 0, 64, 193, 191, 0, 128, 221, 192, 0, 12, 7, 1, 0, 128, 203, 193, 0, 64, 193, 191, 0, 32, 9, 193, 0, 168, 6, 0, 0, 128, 203, 193, 0, 64, 193, 191, 0, 32, 9, 193, 0, 168, 6, 0, 0, 128, 203, 193, 0, 64, 193, 191, 0, 224, 61, 193, 0, 168, 6, 0, 0, 128, 203, 193, 0, 64, 193, 191, 0, 128, 35, 193, 0, 168, 6, 0, 0, 128, 203, 193, 0, 64, 193, 191, 0, 64, 88, 193, 0, 180, 12, 0, 0, 128, 203, 193, 0, 64, 193, 191, 0, 160, 114, 193, 0, 184, 13, 0, 0, 128, 203, 193, 0, 64, 193, 191, 0, 128, 134, 193, 0, 116, 13, 0, 0, 128, 203, 193, 0, 64, 193, 191, 0, 160, 147, 193, 0, 88, 15, 0, 0, 128, 203, 193, 0, 64, 193, 191, 0, 224, 160, 193, 0, 216, 15, 0, 0, 128, 203, 193, 0, 64, 193, 191, 0, 0, 174, 193, 0, 216, 15, 0, 0, 160, 186, 193, 0, 64, 193, 191, 0, 0, 174, 193, 0, 216, 15, 0, 0, 224, 169, 193, 0, 64, 193, 191, 0, 0, 174, 193, 0, 184, 15, 0, 0, 0, 153, 193, 0, 64, 193, 191, 0, 0, 174, 193, 0, 184, 15, 0, 0, 64, 136, 193, 0, 64, 193, 191, 0, 0, 174, 193, 0, 120, 14, 0, 0, 224, 110, 193, 0, 64, 193, 191, 0, 0, 174, 193, 8, 84, 13, 0, 0, 64, 77, 193, 0, 64, 193, 191, 0, 0, 174, 193, 0, 84, 12, 0, 0, 160, 43, 193, 0, 64, 193, 191, 0, 0, 174, 193, 0, 180, 11, 0, 0, 0, 10, 193, 0, 64, 193, 191, 0, 0, 174, 193, 56, 20, 13, 0, 0, 224, 208, 192, 0, 64, 193, 191, 0, 0, 174, 193, 0, 240, 9, 0, 0, 224, 208, 192, 0, 64, 193, 191, 0, 0, 174, 193, 0, 240, 9, 0, 0, 160, 141, 192, 0, 64, 193, 191, 0, 0, 174, 193, 56, 176, 10, 0, 0, 224, 20, 192, 0, 64, 193, 191, 0, 0, 174, 193, 8, 52, 12, 0, 0, 160, 102, 190, 0, 64, 193, 191, 0, 0, 174, 193, 40, 184, 13, 0, 0, 32, 240, 63, 0, 64, 193, 191, 0, 0, 174, 193, 0, 88, 14, 0, 0, 128, 126, 64, 0, 64, 193, 191, 0, 0, 174, 193, 8, 24, 14, 0, 0, 128, 194, 64, 0, 64, 193, 191, 0, 0, 174, 193, 0, 184, 13, 0, 0, 224, 2, 65, 0, 64, 193, 191, 0, 0, 174, 193, 33, 89, 14, 0, 0, 224, 2, 65, 0, 64, 193, 191, 0, 224, 160, 193, 158, 139, 6, 0, 0, 224, 2, 65, 0, 64, 193, 191, 0, 160, 147, 193, 61, 83, 137, 0, 0, 224, 2, 65, 0, 64, 193, 191, 0, 128, 134, 193, 13, 51, 10, 0, 0, 224, 2, 65, 0, 64, 193, 191, 0, 160, 114, 193, 13, 51, 10, 0, 0, 224, 2, 65, 0, 64, 193, 191, 0, 64, 88, 193, 45, 115, 9, 0, 0, 224, 2, 65, 0, 64, 193, 191, 0, 224, 61, 193, 198, 11, 5, 0, 0, 224, 2, 65, 0, 64, 193, 191, 0, 128, 35, 193, 118, 175, 135, 3, 0, 224, 2, 65, 0, 64, 193, 191, 0, 32, 9, 193, 27, 118, 141, 5, 0, 224, 2, 65, 0, 64, 193, 191, 0, 128, 221, 192, 25, 57, 143, 4, 0, 224, 2, 65, 0, 64, 193, 191, 0, 160, 168, 192, 84, 182, 12, 0, 0, 224, 2, 65, 0, 64, 193, 191, 0, 224, 103, 192, 172, 182, 139, 0, 0, 224, 2, 65, 0, 64, 193, 191, 0, 192, 252, 191, 74, 153, 30, 13, 0, 224, 2, 65, 0, 64, 193, 191, 0, 160, 166, 190, 72, 216, 143, 2, 0, 224, 2, 65, 0, 64, 193, 191, 0, 96, 169, 63, 16, 216, 143, 2, 0, 224, 2, 65, 0, 64, 193, 191, 0, 64, 62, 64, 0, 216, 143, 1) +}] -[sub_resource type="ConcavePolygonShape3D" id=15] +[sub_resource type="ConcavePolygonShape3D" id="15"] data = PackedVector3Array(-4.0858, 1.3776, -8.7722, -5.3917, 1.1584, -8.7722, -4.0858, 1.1584, -8.7722, -4.0858, 1.3776, -8.7722, -5.3917, 1.3776, -8.7722, -5.3917, 1.1584, -8.7722, 5.1491, 1.6855, -15.9975, 4.7846, 1.568, -15.8972, 5.1491, 1.568, -15.9975, 5.1491, 1.6855, -15.9975, 4.7846, 1.6855, -15.8972, 4.7846, 1.568, -15.8972, 6.1442, 1.6855, -15.8944, 5.7797, 1.568, -15.9962, 6.1442, 1.568, -15.8944, 6.1442, 1.6855, -15.8944, 5.7797, 1.6855, -15.9962, 5.7797, 1.568, -15.9962, 6.1594, 1.6855, -12.8814, 6.7132, 1.0337, -11.6439, 6.1594, 1.6855, -11.7289, 6.1594, 1.6855, -12.8814, 6.7132, 1.0337, -12.9291, 6.7132, 1.0337, -11.6439, 6.1594, 1.6855, -11.7289, 6.5403, 1.3912, -10.6416, 6.0044, 2.0061, -10.8302, 6.1594, 1.6855, -11.7289, 6.7132, 1.0337, -11.6439, 6.5403, 1.3912, -10.6416, 6.0044, 2.0061, -10.8302, 5.787, 1.3912, -9.4375, 5.3289, 2.0061, -9.7504, 6.0044, 2.0061, -10.8302, 6.5403, 1.3912, -10.6416, 5.787, 1.3912, -9.4375, 5.3289, 2.0061, -9.7504, 4.5672, 1.3912, -8.4522, 4.2351, 2.0061, -8.8669, 5.3289, 2.0061, -9.7504, 5.787, 1.3912, -9.4375, 4.5672, 1.3912, -8.4522, 4.2351, 2.0061, -8.8669, 3.2598, 1.3912, -7.9541, 3.0627, 2.0061, -8.4203, 4.2351, 2.0061, -8.8669, 4.5672, 1.3912, -8.4522, 3.2598, 1.3912, -7.9541, 3.0627, 2.0061, -8.4203, 1.6832, 1.0337, -7.9453, 1.649, 1.6855, -8.4123, 3.0627, 2.0061, -8.4203, 3.2598, 1.3912, -7.9541, 1.6832, 1.0337, -7.9453, 6.7132, 1.0337, -12.9291, 7.6356, 0.2474, -11.2508, 6.7132, 1.0337, -11.6439, 6.7132, 1.0337, -12.9291, 7.6356, 0.2474, -12.7138, 7.6356, 0.2474, -11.2508, 6.7132, 1.0337, -11.6439, 7.4388, 0.6544, -10.1099, 6.5403, 1.3912, -10.6416, 6.7132, 1.0337, -11.6439, 7.6356, 0.2474, -11.2508, 7.4388, 0.6544, -10.1099, 6.5403, 1.3912, -10.6416, 6.5814, 0.6544, -8.7392, 5.787, 1.3912, -9.4375, 6.5403, 1.3912, -10.6416, 7.4388, 0.6544, -10.1099, 6.5814, 0.6544, -8.7392, 5.787, 1.3912, -9.4375, 5.1928, 0.6544, -7.6177, 4.5672, 1.3912, -8.4522, 5.787, 1.3912, -9.4375, 6.5814, 0.6544, -8.7392, 5.1928, 0.6544, -7.6177, 4.5672, 1.3912, -8.4522, 3.7045, 0.6544, -7.0507, 3.2598, 1.3912, -7.9541, 4.5672, 1.3912, -8.4522, 5.1928, 0.6544, -7.6177, 3.7045, 0.6544, -7.0507, 3.2598, 1.3912, -7.9541, 1.9099, 0.2474, -7.0407, 1.6832, 1.0337, -7.9453, 3.2598, 1.3912, -7.9541, 3.7045, 0.6544, -7.0507, 1.9099, 0.2474, -7.0407, 7.6356, 0.2474, -12.7138, 7.9808, -0.8945, -11.1316, 7.6356, 0.2474, -11.2508, 7.6356, 0.2474, -12.7138, 7.9808, -0.8945, -12.6785, 7.9808, -0.8945, -11.1316, 7.6356, 0.2474, -11.2508, 7.7728, -0.4642, -9.9252, 7.4388, 0.6544, -10.1099, 7.6356, 0.2474, -11.2508, 7.9808, -0.8945, -11.1316, 7.7728, -0.4642, -9.9252, 7.4388, 0.6544, -10.1099, 6.8661, -0.4642, -8.476, 6.5814, 0.6544, -8.7392, 7.4388, 0.6544, -10.1099, 7.7728, -0.4642, -9.9252, 6.8661, -0.4642, -8.476, 6.5814, 0.6544, -8.7392, 5.3979, -0.4642, -7.2901, 5.1928, 0.6544, -7.6177, 6.5814, 0.6544, -8.7392, 6.8661, -0.4642, -8.476, 5.3979, -0.4642, -7.2901, 5.1928, 0.6544, -7.6177, 3.8243, -0.4642, -6.6906, 3.7045, 0.6544, -7.0507, 5.1928, 0.6544, -7.6177, 5.3979, -0.4642, -7.2901, 3.8243, -0.4642, -6.6906, 3.7045, 0.6544, -7.0507, 1.9267, -0.8945, -6.68, 1.9099, 0.2474, -7.0407, 3.7045, 0.6544, -7.0507, 3.8243, -0.4642, -6.6906, 1.9267, -0.8945, -6.68, 7.9808, -0.8945, -11.1316, 7.7728, -0.8532, -9.5378, 7.7728, -0.4642, -9.9252, 7.9808, -0.8945, -11.1316, 7.9808, -0.9249, -10.7442, 7.7728, -0.8532, -9.5378, 7.7728, -0.4642, -9.9252, 6.8661, -0.8532, -8.0885, 6.8661, -0.4642, -8.476, 7.7728, -0.4642, -9.9252, 7.7728, -0.8532, -9.5378, 6.8661, -0.8532, -8.0885, 6.8661, -0.4642, -8.476, 5.3979, -0.8532, -6.9026, 5.3979, -0.4642, -7.2901, 6.8661, -0.4642, -8.476, 6.8661, -0.8532, -8.0885, 5.3979, -0.8532, -6.9026, 5.3979, -0.4642, -7.2901, 3.8243, -0.8532, -6.3032, 3.8243, -0.4642, -6.6906, 5.3979, -0.4642, -7.2901, 5.3979, -0.8532, -6.9026, 3.8243, -0.8532, -6.3032, 3.8243, -0.4642, -6.6906, 1.9267, -0.9249, -6.2925, 1.9267, -0.8945, -6.68, 3.8243, -0.4642, -6.6906, 3.8243, -0.8532, -6.3032, 1.9267, -0.9249, -6.2925, 7.9808, -0.9249, -10.7442, 7.7728, -1.1059, -8.864, 7.7728, -0.8532, -9.5378, 7.9808, -0.9249, -10.7442, 7.9808, -1.1776, -10.0703, 7.7728, -1.1059, -8.864, 7.7728, -0.8532, -9.5378, 6.8661, -1.1059, -7.4147, 6.8661, -0.8532, -8.0885, 7.7728, -0.8532, -9.5378, 7.7728, -1.1059, -8.864, 6.8661, -1.1059, -7.4147, 6.8661, -0.8532, -8.0885, 5.3979, -1.1059, -6.2288, 5.3979, -0.8532, -6.9026, 6.8661, -0.8532, -8.0885, 6.8661, -1.1059, -7.4147, 5.3979, -1.1059, -6.2288, 5.3979, -0.8532, -6.9026, 3.8243, -1.1059, -5.9155, 3.8243, -0.8532, -6.3032, 5.3979, -0.8532, -6.9026, 5.3979, -1.1059, -6.2288, 3.8243, -1.1059, -5.9155, 3.8243, -0.8532, -6.3032, 1.9267, -1.1776, -5.9049, 1.9267, -0.9249, -6.2925, 3.8243, -0.8532, -6.3032, 3.8243, -1.1059, -5.9155, 1.9267, -1.1776, -5.9049, 3.8243, -1.1059, -5.9155, 1.7222, -0.8312, -5.7803, 1.9267, -1.1776, -5.9049, 3.8243, -1.1059, -5.9155, 3.6197, -0.7595, -5.7909, 1.7222, -0.8312, -5.7803, 3.6197, -0.7595, -5.7909, 1.7222, -0.0226, -5.6624, 1.7222, -0.8312, -5.7803, 3.6197, -0.7595, -5.7909, 3.6197, 0.0489, -5.673, 1.7222, -0.0226, -5.6624, 3.6197, 0.0489, -5.673, 1.7222, 0.2777, -5.9319, 1.7222, -0.0226, -5.6624, 3.6197, 0.0489, -5.673, 3.6197, 0.3494, -5.9425, 1.7222, 0.2777, -5.9319, 3.6197, 0.3494, -5.9425, 1.7517, 0.7628, -6.0622, 1.7222, 0.2777, -5.9319, 3.6197, 0.3494, -5.9425, 3.6493, 0.8344, -6.0729, 1.7517, 0.7628, -6.0622, 3.6493, 0.8344, -6.0729, 1.7517, 0.9491, -5.9269, 1.7517, 0.7628, -6.0622, 3.6493, 0.8344, -6.0729, 3.6493, 0.9641, -5.9375, 1.7517, 0.9491, -5.9269, 3.6493, 0.8344, -6.0729, 4.1827, 0.9641, -5.9375, 3.6493, 0.9641, -5.9375, 3.6493, 0.8344, -6.0729, 4.1827, 0.8344, -6.0729, 4.1827, 0.9641, -5.9375, 3.6197, 0.3494, -5.9425, 4.1827, 0.8344, -6.0729, 3.6493, 0.8344, -6.0729, 3.6197, 0.3494, -5.9425, 4.1531, 0.3494, -5.9425, 4.1827, 0.8344, -6.0729, 3.6197, 0.0489, -5.673, 4.1531, 0.3494, -5.9425, 3.6197, 0.3494, -5.9425, 3.6197, 0.0489, -5.673, 4.1531, 0.0489, -5.673, 4.1531, 0.3494, -5.9425, 4.1827, 0.8344, -6.0729, 4.2802, 0.8422, -5.9375, 4.1827, 0.9641, -5.9375, 4.1827, 0.8344, -6.0729, 4.2802, 0.7126, -6.0729, 4.2802, 0.8422, -5.9375, 4.1531, 0.3494, -5.9425, 4.2802, 0.7126, -6.0729, 4.1827, 0.8344, -6.0729, 4.1531, 0.3494, -5.9425, 4.2506, 0.2276, -5.9425, 4.2802, 0.7126, -6.0729, 4.1531, 0.0489, -5.673, 4.2506, 0.2276, -5.9425, 4.1531, 0.3494, -5.9425, 4.1531, 0.0489, -5.673, 4.2506, -0.0728, -5.673, 4.2506, 0.2276, -5.9425, 4.2802, 0.7126, -6.0729, 4.3939, 0.5985, -5.9375, 4.2802, 0.8422, -5.9375, 4.2802, 0.7126, -6.0729, 4.3939, 0.4689, -6.0729, 4.3939, 0.5985, -5.9375, 4.2506, 0.2276, -5.9425, 4.3939, 0.4689, -6.0729, 4.2802, 0.7126, -6.0729, 4.2506, 0.2276, -5.9425, 4.3643, -0.0161, -5.9425, 4.3939, 0.4689, -6.0729, 4.2506, -0.0728, -5.673, 4.3643, -0.0161, -5.9425, 4.2506, 0.2276, -5.9425, 4.2506, -0.0728, -5.673, 4.3643, -0.3165, -5.673, 4.3643, -0.0161, -5.9425, 5.3525, 0.4442, -6.0269, 5.3759, 0.7132, -4.6231, 4.3939, 0.5985, -5.9375, 4.3939, 0.4689, -6.0729, 5.3525, 0.4442, -6.0269, 4.3939, 0.5985, -5.9375, 4.3939, 0.4689, -6.0729, 5.3525, 0.3145, -6.1623, 5.3525, 0.4442, -6.0269, 4.3643, -0.0161, -5.9425, 5.3525, 0.3145, -6.1623, 4.3939, 0.4689, -6.0729, 4.3643, -0.0161, -5.9425, 5.3229, -0.1704, -6.0319, 5.3525, 0.3145, -6.1623, 4.3643, -0.3165, -5.673, 5.3229, -0.1704, -6.0319, 4.3643, -0.0161, -5.9425, 4.3643, -0.3165, -5.673, 5.3229, -0.4709, -5.7624, 5.3229, -0.1704, -6.0319, 5.3759, 0.7132, -4.6231, 5.9049, 0.168, -3.2194, 5.3525, 0.4442, -3.2194, 5.3759, 0.7132, -4.6231, 6.0335, 0.4019, -4.6231, 5.9049, 0.168, -3.2194, 5.3525, 0.3145, -6.1623, 5.9049, 0.168, -6.0269, 5.3525, 0.4442, -6.0269, 5.3525, 0.3145, -6.1623, 5.9049, 0.0383, -6.1623, 5.9049, 0.168, -6.0269, 5.3229, -0.1704, -6.0319, 5.9049, 0.0383, -6.1623, 5.3525, 0.3145, -6.1623, 5.3229, -0.1704, -6.0319, 5.8753, -0.4466, -6.0319, 5.9049, 0.0383, -6.1623, 5.3229, -0.4709, -5.7624, 5.8753, -0.4466, -6.0319, 5.3229, -0.1704, -6.0319, 5.3229, -0.4709, -5.7624, 5.8753, -0.747, -5.7624, 5.8753, -0.4466, -6.0319, 6.0335, 0.4019, -4.6231, 6.8959, -0.3762, -3.2194, 5.9049, 0.168, -3.2194, 6.0335, 0.4019, -4.6231, 6.8842, -0.2592, -4.6231, 6.8959, -0.3762, -3.2194, 5.9049, 0.0383, -6.1623, 6.8959, -0.3762, -6.0269, 5.9049, 0.168, -6.0269, 5.9049, 0.0383, -6.1623, 6.8959, -0.5058, -6.1623, 6.8959, -0.3762, -6.0269, 5.8753, -0.4466, -6.0319, 6.8959, -0.5058, -6.1623, 5.9049, 0.0383, -6.1623, 5.8753, -0.4466, -6.0319, 6.8664, -0.9909, -6.0319, 6.8959, -0.5058, -6.1623, 5.8753, -0.747, -5.7624, 6.8664, -0.9909, -6.0319, 5.8753, -0.4466, -6.0319, 5.8753, -0.747, -5.7624, 6.8664, -1.2913, -5.7624, 6.8664, -0.9909, -6.0319, 3.8243, -1.1059, -5.9155, 5.3229, -0.4709, -5.7624, 4.3643, -0.3165, -5.673, 3.8243, -1.1059, -5.9155, 5.3979, -1.1059, -6.2288, 5.3229, -0.4709, -5.7624, 3.6197, -0.7595, -5.7909, 3.8243, -1.1059, -5.9155, 4.1531, 0.0489, -5.673, 4.1531, 0.0489, -5.673, 4.3643, -0.3165, -5.673, 4.2506, -0.0728, -5.673, 4.1531, 0.0489, -5.673, 3.8243, -1.1059, -5.9155, 4.3643, -0.3165, -5.673, 3.6197, 0.0489, -5.673, 3.6197, -0.7595, -5.7909, 4.1531, 0.0489, -5.673, 5.3229, -0.4709, -5.7624, 5.3979, -1.1059, -6.2288, 5.8753, -0.747, -5.7624, 5.3979, -1.1059, -6.2288, 6.8664, -1.2913, -5.7624, 5.8753, -0.747, -5.7624, 5.3979, -1.1059, -6.2288, 6.8661, -1.1059, -7.4147, 6.8664, -1.2913, -5.7624, 5.3525, 0.4442, -6.0269, 6.0335, 0.4019, -4.6231, 5.3759, 0.7132, -4.6231, 5.3525, 0.4442, -6.0269, 5.9049, 0.168, -6.0269, 6.0335, 0.4019, -4.6231, 5.9049, 0.168, -6.0269, 6.8842, -0.2592, -4.6231, 6.0335, 0.4019, -4.6231, 5.9049, 0.168, -6.0269, 6.8959, -0.3762, -6.0269, 6.8842, -0.2592, -4.6231, 5.3525, 0.4442, -3.2194, 4.3939, 0.5985, -3.13, 5.3759, 0.7132, -4.6231, 4.3939, 0.5985, -5.9375, 5.3759, 0.7132, -4.6231, 4.3939, 0.5985, -3.13, 1.7222, -0.0226, -5.6624, 0.1952, -0.761, -5.8849, 1.7222, -0.8312, -5.7803, 1.7222, -0.0226, -5.6624, 0.1952, -0.0747, -5.7848, 0.1952, -0.761, -5.8849, 1.7222, -0.8312, -5.7803, 0.3689, -1.0551, -5.9906, 1.9267, -1.1776, -5.9049, 1.7222, -0.8312, -5.7803, 0.1952, -0.761, -5.8849, 0.3689, -1.0551, -5.9906, 1.9267, -1.1776, -5.9049, 0.3689, -0.8406, -6.3197, 1.9267, -0.9249, -6.2925, 1.9267, -1.1776, -5.9049, 0.3689, -1.0551, -5.9906, 0.3689, -0.8406, -6.3197, 1.9267, -0.9249, -6.2925, 0.3689, -0.8147, -6.6486, 1.9267, -0.8945, -6.68, 1.9267, -0.9249, -6.2925, 0.3689, -0.8406, -6.3197, 0.3689, -0.8147, -6.6486, 1.9267, -0.8945, -6.68, 0.3546, 0.1545, -6.9547, 1.9099, 0.2474, -7.0407, 1.9267, -0.8945, -6.68, 0.3689, -0.8147, -6.6486, 0.3546, 0.1545, -6.9547, 1.9099, 0.2474, -7.0407, 0.1622, 0.822, -7.7226, 1.6832, 1.0337, -7.9453, 1.9099, 0.2474, -7.0407, 0.3546, 0.1545, -6.9547, 0.1622, 0.822, -7.7226, 0.1952, -0.0747, -5.7848, -1.3474, -0.862, -5.775, 0.1952, -0.761, -5.8849, 0.1952, -0.0747, -5.7848, -1.3474, 0.0001, -5.6493, -1.3474, -0.862, -5.775, 0.1952, -0.761, -5.8849, -1.1293, -1.2313, -5.9079, 0.3689, -1.0551, -5.9906, 0.1952, -0.761, -5.8849, -1.3474, -0.862, -5.775, -1.1293, -1.2313, -5.9079, 0.3689, -1.0551, -5.9906, -1.1293, -0.9619, -6.3212, 0.3689, -0.8406, -6.3197, 0.3689, -1.0551, -5.9906, -1.1293, -1.2313, -5.9079, -1.1293, -0.9619, -6.3212, 0.3689, -0.8406, -6.3197, -1.1293, -0.9294, -6.7343, 0.3689, -0.8147, -6.6486, 0.3689, -0.8406, -6.3197, -1.1293, -0.9619, -6.3212, -1.1293, -0.9294, -6.7343, 0.3689, -0.8147, -6.6486, -1.1472, 0.2882, -7.1189, 0.3546, 0.1545, -6.9547, 0.3689, -0.8147, -6.6486, -1.1293, -0.9294, -6.7343, -1.1472, 0.2882, -7.1189, 0.3546, 0.1545, -6.9547, -1.3889, 1.1266, -8.0835, 0.1622, 0.822, -7.7226, 0.3546, 0.1545, -6.9547, -1.1472, 0.2882, -7.1189, -1.3889, 1.1266, -8.0835, -1.3474, 0.0001, -5.6493, -2.8698, -0.9007, -5.7407, -1.3474, -0.862, -5.775, -1.3474, 0.0001, -5.6493, -2.8698, 0.0289, -5.6051, -2.8698, -0.9007, -5.7407, -1.3474, -0.862, -5.775, -2.8241, -1.299, -5.8839, -1.1293, -1.2313, -5.9079, -1.3474, -0.862, -5.775, -2.8698, -0.9007, -5.7407, -2.8241, -1.299, -5.8839, -1.1293, -1.2313, -5.9079, -2.8241, -1.0084, -6.3296, -1.1293, -0.9619, -6.3212, -1.1293, -1.2313, -5.9079, -2.8241, -1.299, -5.8839, -2.8241, -1.0084, -6.3296, -1.1293, -0.9619, -6.3212, -2.8241, -0.9735, -6.7751, -1.1293, -0.9294, -6.7343, -1.1293, -0.9619, -6.3212, -2.8241, -1.0084, -6.3296, -2.8241, -0.9735, -6.7751, -1.1293, -0.9294, -6.7343, -2.8279, 0.3395, -7.1898, -1.1472, 0.2882, -7.1189, -1.1293, -0.9294, -6.7343, -2.8241, -0.9735, -6.7751, -2.8279, 0.3395, -7.1898, -1.1472, 0.2882, -7.1189, -2.8818, 1.1945, -8.265, -1.3889, 1.1266, -8.0835, -1.1472, 0.2882, -7.1189, -2.8279, 0.3395, -7.1898, -2.8818, 1.1945, -8.265, -2.8698, 0.0289, -5.6051, -3.7071, -0.7919, -5.9379, -2.8698, -0.9007, -5.7407, -2.8698, 0.0289, -5.6051, -3.7071, -0.0518, -5.83, -3.7071, -0.7919, -5.9379, -2.8698, -0.9007, -5.7407, -3.6707, -1.109, -6.052, -2.8241, -1.299, -5.8839, -2.8698, -0.9007, -5.7407, -3.7071, -0.7919, -5.9379, -3.6707, -1.109, -6.052, -2.8241, -1.299, -5.8839, -3.6707, -0.8777, -6.4068, -2.8241, -1.0084, -6.3296, -2.8241, -1.299, -5.8839, -3.6707, -1.109, -6.052, -3.6707, -0.8777, -6.4068, -2.8241, -1.0084, -6.3296, -3.6707, -0.8498, -6.7615, -2.8241, -0.9735, -6.7751, -2.8241, -1.0084, -6.3296, -3.6707, -0.8777, -6.4068, -3.6707, -0.8498, -6.7615, -2.8241, -0.9735, -6.7751, -3.6737, 0.1954, -7.0917, -2.8279, 0.3395, -7.1898, -2.8241, -0.9735, -6.7751, -3.6707, -0.8498, -6.7615, -3.6737, 0.1954, -7.0917, -2.8279, 0.3395, -7.1898, -3.714, 0.9152, -7.9198, -2.8818, 1.1945, -8.265, -2.8279, 0.3395, -7.1898, -3.6737, 0.1954, -7.0917, -3.714, 0.9152, -7.9198, 1.6832, 1.0337, -7.9453, 0.1622, 0.822, -7.7226, 1, 1.251, -7.8054, 1.649, 1.6855, -8.4123, 1, 1.251, -7.8054, 1.1805, 1.6855, -8.1972, 1.649, 1.6855, -8.4123, 1.6832, 1.0337, -7.9453, 1, 1.251, -7.8054, -1.3889, 1.1266, -8.0835, 1, 1.251, -7.8054, 0.1622, 0.822, -7.7226, -1.3889, 1.1266, -8.0835, -0.9999, 1.251, -7.8054, 1, 1.251, -7.8054, 1.7222, -0.0226, -5.6624, 1.7222, 0.2777, -5.9319, 0.1952, -0.0747, -5.7848, 1, 0.6579, -5.6816, 0.1952, -0.0747, -5.7848, 1.7222, 0.2777, -5.9319, 1.7517, 0.7628, -6.0622, 1, 0.6579, -5.6816, 1.7222, 0.2777, -5.9319, 1.7517, 0.9491, -5.9269, 1, 0.6579, -5.6816, 1.7517, 0.7628, -6.0622, 1.7517, 0.9491, -5.9269, 1, 0.9795, -5.6816, 1, 0.6579, -5.6816, -1.3474, 0.0001, -5.6493, 1, 0.6579, -5.6816, -0.9999, 0.6579, -5.6816, -1.3474, 0.0001, -5.6493, 0.1952, -0.0747, -5.7848, 1, 0.6579, -5.6816, -0.9999, 0.9795, -5.6816, -1.3474, 0.0001, -5.6493, -0.9999, 0.6579, -5.6816, -0.9999, 0.9795, -5.6816, -1.2784, 0.9286, -5.2645, -1.3474, 0.0001, -5.6493, -1.667, 0.9286, -5.1102, -1.3474, 0.0001, -5.6493, -1.2784, 0.9286, -5.2645, -1.667, 0.9286, -5.1102, -2.8698, 0.0289, -5.6051, -1.3474, 0.0001, -5.6493, -1.667, 0.9286, -5.1102, -2.687, 0.9286, -5.1102, -2.8698, 0.0289, -5.6051, 1, 0.9795, -5.6816, 1.7517, 0.9491, -5.9269, 1.2785, 0.9286, -5.2645, 1, 0.7253, -2.9792, 1.7761, -0.145, -1.9489, 1, 0.2915, -1.9489, 1, 0.7253, -2.9792, 1.7761, 0.7378, -2.6222, 1.7761, -0.145, -1.9489, 1, 0.2915, -1.9489, 1.7761, -0.3551, -1.2914, 1, 0.0813, -1.2914, 1, 0.2915, -1.9489, 1.7761, -0.145, -1.9489, 1.7761, -0.3551, -1.2914, 1, 0.0813, -1.2914, 1.7761, -0.4432, -0.7694, 1, -0.0067, -0.7694, 1, 0.0813, -1.2914, 1.7761, -0.3551, -1.2914, 1.7761, -0.4432, -0.7694, 1, -0.0067, -0.7694, 1.7761, -0.4365, 1, 1, 0, 1, 1, -0.0067, -0.7694, 1.7761, -0.4432, -0.7694, 1.7761, -0.4365, 1, 1.7761, 0.7378, -2.6222, 2.4067, -0.6786, -1.9489, 1.7761, -0.145, -1.9489, 1.7761, 0.7378, -2.6222, 2.4067, 0.2043, -2.6222, 2.4067, -0.6786, -1.9489, 1.7761, -0.145, -1.9489, 2.4067, -0.8887, -1.2914, 1.7761, -0.3551, -1.2914, 1.7761, -0.145, -1.9489, 2.4067, -0.6786, -1.9489, 2.4067, -0.8887, -1.2914, 1.7761, -0.3551, -1.2914, 2.4067, -0.9768, -0.7694, 1.7761, -0.4432, -0.7694, 1.7761, -0.3551, -1.2914, 2.4067, -0.8887, -1.2914, 2.4067, -0.9768, -0.7694, 1.7761, -0.4432, -0.7694, 2.4067, -0.97, 1, 1.7761, -0.4365, 1, 1.7761, -0.4432, -0.7694, 2.4067, -0.9768, -0.7694, 2.4067, -0.97, 1, 2.4067, 0.2043, -2.6222, 2.9888, -0.8483, -1.9489, 2.4067, -0.6786, -1.9489, 2.4067, 0.2043, -2.6222, 2.9888, 0.0345, -2.6222, 2.9888, -0.8483, -1.9489, 2.4067, -0.6786, -1.9489, 2.9888, -1.0585, -1.2914, 2.4067, -0.8887, -1.2914, 2.4067, -0.6786, -1.9489, 2.9888, -0.8483, -1.9489, 2.9888, -1.0585, -1.2914, 2.4067, -0.8887, -1.2914, 2.9888, -1.1466, -0.7694, 2.4067, -0.9768, -0.7694, 2.4067, -0.8887, -1.2914, 2.9888, -1.0585, -1.2914, 2.9888, -1.1466, -0.7694, 2.4067, -0.9768, -0.7694, 2.9888, -1.1398, 1, 2.4067, -0.97, 1, 2.4067, -0.9768, -0.7694, 2.9888, -1.1466, -0.7694, 2.9888, -1.1398, 1, 2.9888, 0.0345, -2.6222, 3.4011, -0.8726, -1.9489, 2.9888, -0.8483, -1.9489, 2.9888, 0.0345, -2.6222, 3.4011, 0.0102, -2.6222, 3.4011, -0.8726, -1.9489, 2.9888, -0.8483, -1.9489, 3.4011, -1.0827, -1.2914, 2.9888, -1.0585, -1.2914, 2.9888, -0.8483, -1.9489, 3.4011, -0.8726, -1.9489, 3.4011, -1.0827, -1.2914, 2.9888, -1.0585, -1.2914, 3.4011, -1.1708, -0.7694, 2.9888, -1.1466, -0.7694, 2.9888, -1.0585, -1.2914, 3.4011, -1.0827, -1.2914, 3.4011, -1.1708, -0.7694, 2.9888, -1.1466, -0.7694, 3.4011, -1.1641, 1, 2.9888, -1.1398, 1, 2.9888, -1.1466, -0.7694, 3.4011, -1.1708, -0.7694, 3.4011, -1.1641, 1, 3.4011, 0.0102, -2.6222, 4.1044, -0.6786, -1.9489, 3.4011, -0.8726, -1.9489, 3.4011, 0.0102, -2.6222, 4.1044, 0.2043, -2.6222, 4.1044, -0.6786, -1.9489, 3.4011, -0.8726, -1.9489, 4.1044, -0.8887, -1.2914, 3.4011, -1.0827, -1.2914, 3.4011, -0.8726, -1.9489, 4.1044, -0.6786, -1.9489, 4.1044, -0.8887, -1.2914, 3.4011, -1.0827, -1.2914, 4.1044, -0.9768, -0.7694, 3.4011, -1.1708, -0.7694, 3.4011, -1.0827, -1.2914, 4.1044, -0.8887, -1.2914, 4.1044, -0.9768, -0.7694, 3.4011, -1.1708, -0.7694, 4.1044, -0.97, 1, 3.4011, -1.1641, 1, 3.4011, -1.1708, -0.7694, 4.1044, -0.9768, -0.7694, 4.1044, -0.97, 1, 4.1044, 0.2043, -2.6222, 4.5653, -0.7756, -1.9489, 4.1044, -0.6786, -1.9489, 4.1044, 0.2043, -2.6222, 4.5653, 0.1073, -2.6222, 4.5653, -0.7756, -1.9489, 4.1044, -0.6786, -1.9489, 4.5653, -0.9857, -1.2914, 4.1044, -0.8887, -1.2914, 4.1044, -0.6786, -1.9489, 4.5653, -0.7756, -1.9489, 4.5653, -0.9857, -1.2914, 4.1044, -0.8887, -1.2914, 4.5653, -1.0738, -0.7694, 4.1044, -0.9768, -0.7694, 4.1044, -0.8887, -1.2914, 4.5653, -0.9857, -1.2914, 4.5653, -1.0738, -0.7694, 4.1044, -0.9768, -0.7694, 4.5653, -1.0671, 1, 4.1044, -0.97, 1, 4.1044, -0.9768, -0.7694, 4.5653, -1.0738, -0.7694, 4.5653, -1.0671, 1, 4.5653, 0.1073, -2.6222, 5.8507, -1.0909, -1.9489, 4.5653, -0.7756, -1.9489, 4.5653, 0.1073, -2.6222, 5.8507, -0.2079, -2.6222, 5.8507, -1.0909, -1.9489, 4.5653, -0.7756, -1.9489, 5.8507, -1.301, -1.2914, 4.5653, -0.9857, -1.2914, 4.5653, -0.7756, -1.9489, 5.8507, -1.0909, -1.9489, 5.8507, -1.301, -1.2914, 4.5653, -0.9857, -1.2914, 5.8507, -1.3891, -0.7694, 4.5653, -1.0738, -0.7694, 4.5653, -0.9857, -1.2914, 5.8507, -1.301, -1.2914, 5.8507, -1.3891, -0.7694, 4.5653, -1.0738, -0.7694, 5.8507, -1.3823, 1, 4.5653, -1.0671, 1, 4.5653, -1.0738, -0.7694, 5.8507, -1.3891, -0.7694, 5.8507, -1.3823, 1, 4.5653, 0.1073, -2.6222, 5.8507, 0.0025, -2.945, 5.8507, -0.2079, -2.6222, 4.5653, 0.1073, -2.6222, 4.5653, 0.3178, -2.945, 5.8507, 0.0025, -2.945, 4.1044, 0.2043, -2.6222, 4.5653, 0.3178, -2.945, 4.5653, 0.1073, -2.6222, 4.1044, 0.2043, -2.6222, 4.1044, 0.4148, -2.945, 4.5653, 0.3178, -2.945, 3.4011, 0.0102, -2.6222, 4.1044, 0.4148, -2.945, 4.1044, 0.2043, -2.6222, 3.4011, 0.0102, -2.6222, 3.4011, 0.5436, -2.945, 4.1044, 0.4148, -2.945, 2.9888, 0.0345, -2.6222, 3.4011, 0.5436, -2.945, 3.4011, 0.0102, -2.6222, 2.9888, 0.0345, -2.6222, 2.9888, 0.5678, -2.945, 3.4011, 0.5436, -2.945, 2.4067, 0.2043, -2.6222, 2.9888, 0.5678, -2.945, 2.9888, 0.0345, -2.6222, 2.4067, 0.2043, -2.6222, 2.4067, 0.7376, -2.945, 2.9888, 0.5678, -2.945, 1.7761, 0.7378, -2.6222, 2.4067, 0.7376, -2.945, 2.4067, 0.2043, -2.6222, 1.7761, 0.7378, -2.6222, 1.7761, 0.9484, -2.945, 2.4067, 0.7376, -2.945, 1.7761, 0.7378, -2.6222, 1.7517, 0.9491, -3.1194, 1.7761, 0.9484, -2.945, 1.7761, 0.7378, -2.6222, 1, 0.7253, -2.9792, 1.7517, 0.9491, -3.1194, 1, 0.7253, -2.9792, 1.2785, 0.9286, -3.6199, 1.7517, 0.9491, -3.1194, 2.9888, 0.5678, -2.945, 3.6493, 0.9641, -3.13, 3.4011, 0.5436, -2.945, 2.9888, 0.5678, -2.945, 2.4067, 0.7376, -2.945, 3.6493, 0.9641, -3.13, 1.7761, 0.9484, -2.945, 1.7517, 0.9491, -3.1194, 2.4067, 0.7376, -2.945, 1.7517, 0.9491, -3.1194, 3.6493, 0.9641, -3.13, 2.4067, 0.7376, -2.945, 3.6493, 0.9641, -3.13, 4.1044, 0.4148, -2.945, 3.4011, 0.5436, -2.945, 3.6493, 0.9641, -3.13, 4.1827, 0.9641, -3.13, 4.1044, 0.4148, -2.945, 4.2802, 0.8422, -3.13, 4.1044, 0.4148, -2.945, 4.1827, 0.9641, -3.13, 4.3939, 0.5985, -3.13, 4.1044, 0.4148, -2.945, 4.2802, 0.8422, -3.13, 4.3939, 0.5985, -3.13, 4.5653, 0.3178, -2.945, 4.1044, 0.4148, -2.945, 4.3939, 0.5985, -3.13, 5.3525, 0.4442, -3.2194, 4.5653, 0.3178, -2.945, 5.3525, 0.4442, -3.2194, 5.8507, 0.0025, -2.945, 4.5653, 0.3178, -2.945, 5.3525, 0.4442, -3.2194, 5.9049, 0.168, -3.2194, 5.8507, 0.0025, -2.945, 6.2739, 1.6855, -15.7323, 6.4786, 1.5783, -14.5595, 6.2739, 1.6855, -14.5595, 6.2739, 1.6855, -15.7323, 6.4786, 1.5783, -15.7323, 6.4786, 1.5783, -14.5595, 6.2739, 1.6855, -14.5595, 6.4786, 1.5783, -13.2249, 6.2739, 1.6855, -13.2249, 6.2739, 1.6855, -14.5595, 6.4786, 1.5783, -14.5595, 6.4786, 1.5783, -13.2249, 6.4786, 1.5783, -15.7323, 6.9074, 0.8766, -14.5595, 6.4786, 1.5783, -14.5595, 6.4786, 1.5783, -15.7323, 6.9074, 0.8766, -15.7323, 6.9074, 0.8766, -14.5595, 6.4786, 1.5783, -14.5595, 6.9074, 0.8766, -13.2249, 6.4786, 1.5783, -13.2249, 6.4786, 1.5783, -14.5595, 6.9074, 0.8766, -14.5595, 6.9074, 0.8766, -13.2249, 6.9074, 0.8766, -15.7323, 7.6188, -0.3513, -14.5595, 6.9074, 0.8766, -14.5595, 6.9074, 0.8766, -15.7323, 7.6188, -0.3513, -15.7323, 7.6188, -0.3513, -14.5595, 6.9074, 0.8766, -14.5595, 7.6188, -0.3513, -13.2249, 6.9074, 0.8766, -13.2249, 6.9074, 0.8766, -14.5595, 7.6188, -0.3513, -14.5595, 7.6188, -0.3513, -13.2249, 6.2739, 1.6855, -13.2249, 6.7132, 1.0337, -12.9291, 6.1594, 1.6855, -12.8814, 6.2739, 1.6855, -13.2249, 6.4786, 1.5783, -13.2249, 6.7132, 1.0337, -12.9291, 7.6356, 0.2474, -12.7138, 6.4786, 1.5783, -13.2249, 6.9074, 0.8766, -13.2249, 7.6356, 0.2474, -12.7138, 6.7132, 1.0337, -12.9291, 6.4786, 1.5783, -13.2249, 7.9808, -0.8945, -12.6785, 6.9074, 0.8766, -13.2249, 7.6188, -0.3513, -13.2249, 7.9808, -0.8945, -12.6785, 7.6356, 0.2474, -12.7138, 6.9074, 0.8766, -13.2249, 7.6188, -0.3513, -15.7323, 8.0567, -1.3617, -14.5595, 7.6188, -0.3513, -14.5595, 7.6188, -0.3513, -15.7323, 8.0567, -1.3617, -15.7323, 8.0567, -1.3617, -14.5595, 7.6188, -0.3513, -14.5595, 8.0567, -1.3617, -13.2249, 7.6188, -0.3513, -13.2249, 7.6188, -0.3513, -14.5595, 8.0567, -1.3617, -14.5595, 8.0567, -1.3617, -13.2249, 7.6188, -0.3513, -13.2249, 8.0567, -1.3617, -13.2249, 7.9808, -0.8945, -12.6785, 7.6188, -0.3513, -15.7323, 8.0567, -1.3617, -17.0421, 8.0567, -1.3617, -15.7323, 7.6188, -0.3513, -15.7323, 7.6188, -0.6144, -17.0421, 8.0567, -1.3617, -17.0421, 6.9074, 0.8766, -15.7323, 7.6188, -0.6144, -17.0421, 7.6188, -0.3513, -15.7323, 6.9074, 0.8766, -15.7323, 7.078, 0.2854, -16.919, 7.6188, -0.6144, -17.0421, 6.4786, 1.5783, -15.7323, 7.078, 0.2854, -16.919, 6.9074, 0.8766, -15.7323, 6.4786, 1.5783, -15.7323, 6.616, 0.9246, -16.6339, 7.078, 0.2854, -16.919, 7.6188, -0.6144, -17.0421, 8.0567, -1.3617, -18.5391, 8.0567, -1.3617, -17.0421, 7.6188, -0.6144, -17.0421, 7.7954, -0.7412, -18.4786, 8.0567, -1.3617, -18.5391, 7.078, 0.2854, -16.919, 7.7954, -0.7412, -18.4786, 7.6188, -0.6144, -17.0421, 7.078, 0.2854, -16.919, 7.2114, -0.0782, -18.2241, 7.7954, -0.7412, -18.4786, 6.616, 0.9246, -16.6339, 7.2114, -0.0782, -18.2241, 7.078, 0.2854, -16.919, 6.616, 0.9246, -16.6339, 6.6679, 0.3289, -18.0269, 7.2114, -0.0782, -18.2241, 6.1442, 1.568, -15.8944, 5.7797, 1.3659, -16.1701, 6.1442, 1.3659, -16.0682, 6.1442, 1.568, -15.8944, 5.7797, 1.568, -15.9962, 5.7797, 1.3659, -16.1701, 4.6549, 1.6855, -15.7357, 4.7846, 1.6855, -15.8972, 6.2739, 1.6855, -15.7323, 6.2739, 1.6855, -15.7323, 5.7797, 1.6855, -15.9962, 6.1442, 1.6855, -15.8944, 5.7797, 1.6855, -15.9962, 4.7846, 1.6855, -15.8972, 5.1491, 1.6855, -15.9975, 6.2739, 1.6855, -15.7323, 4.7846, 1.6855, -15.8972, 5.7797, 1.6855, -15.9962, 5.7797, 1.6855, -15.9962, 5.1491, 1.568, -15.9975, 5.7797, 1.568, -15.9962, 5.7797, 1.6855, -15.9962, 5.1491, 1.6855, -15.9975, 5.1491, 1.568, -15.9975, 6.2739, 1.6855, -15.7323, 6.1442, 1.568, -15.8944, 6.2739, 1.467, -15.8193, 6.2739, 1.6855, -15.7323, 6.1442, 1.6855, -15.8944, 6.1442, 1.568, -15.8944, 4.7846, 1.6855, -15.8972, 4.6549, 1.568, -15.7357, 4.7846, 1.568, -15.8972, 4.7846, 1.6855, -15.8972, 4.6549, 1.6855, -15.7357, 4.6549, 1.568, -15.7357, 5.1491, 1.568, -15.9975, 4.7846, 1.3659, -16.0711, 5.1491, 1.3659, -16.1714, 5.1491, 1.568, -15.9975, 4.7846, 1.568, -15.8972, 4.7846, 1.3659, -16.0711, 6.4786, 1.5783, -15.7323, 6.2739, 1.467, -15.8193, 6.616, 0.9246, -16.6339, 6.4786, 1.5783, -15.7323, 6.2739, 1.6855, -15.7323, 6.2739, 1.467, -15.8193, 5.7797, 1.568, -15.9962, 5.1491, 1.3659, -16.1714, 5.7797, 1.3659, -16.1701, 5.7797, 1.568, -15.9962, 5.1491, 1.568, -15.9975, 5.1491, 1.3659, -16.1714, 4.7846, 1.568, -15.8972, 4.6549, 1.3659, -15.9096, 4.7846, 1.3659, -16.0711, 4.7846, 1.568, -15.8972, 4.6549, 1.568, -15.7357, 4.6549, 1.3659, -15.9096, 6.1442, 1.3659, -16.0682, 5.694, 0.9152, -17.1857, 6.0559, 0.8692, -17.2007, 6.1442, 1.3659, -16.0682, 5.7797, 1.3659, -16.1701, 5.694, 0.9152, -17.1857, 5.1491, 1.3659, -16.1714, 4.7846, 0.9382, -16.8983, 5.1491, 0.9382, -16.9986, 5.1491, 1.3659, -16.1714, 4.7846, 1.3659, -16.0711, 4.7846, 0.9382, -16.8983, 5.7797, 1.3659, -16.1701, 5.1491, 0.9382, -16.9986, 5.694, 0.9152, -17.1857, 5.7797, 1.3659, -16.1701, 5.1491, 1.3659, -16.1714, 5.1491, 0.9382, -16.9986, 4.7846, 1.3659, -16.0711, 4.6549, 0.9382, -16.7368, 4.7846, 0.9382, -16.8983, 4.7846, 1.3659, -16.0711, 4.6549, 1.3659, -15.9096, 4.6549, 0.9382, -16.7368, 6.0559, 0.8692, -17.2007, 5.7797, 0.473, -18.4025, 6.0307, 0.4199, -18.2191, 6.0559, 0.8692, -17.2007, 5.694, 0.9152, -17.1857, 5.7797, 0.473, -18.4025, 5.1491, 0.9382, -16.9986, 4.8316, 0.4677, -18.1206, 5.2988, 0.4838, -18.2897, 5.1491, 0.9382, -16.9986, 4.7846, 0.9382, -16.8983, 4.8316, 0.4677, -18.1206, 5.694, 0.9152, -17.1857, 5.2988, 0.4838, -18.2897, 5.7797, 0.473, -18.4025, 5.694, 0.9152, -17.1857, 5.1491, 0.9382, -16.9986, 5.2988, 0.4838, -18.2897, 4.7846, 0.9382, -16.8983, 4.3879, 0.463, -18.035, 4.8316, 0.4677, -18.1206, 4.7846, 0.9382, -16.8983, 4.6549, 0.9382, -16.7368, 4.3879, 0.463, -18.035, 6.3295, 0.7373, -17.3757, 6.0307, 0.4199, -18.2191, 6.3079, 0.23, -18.4782, 6.3295, 0.7373, -17.3757, 6.0559, 0.8692, -17.2007, 6.0307, 0.4199, -18.2191, 4.8316, 0.4677, -18.1206, 4.375, 0.032, -18.7562, 4.9193, 0.0514, -18.8974, 4.8316, 0.4677, -18.1206, 4.3879, 0.463, -18.035, 4.375, 0.032, -18.7562, 6.3079, 0.23, -18.4782, 6.6679, 0.3289, -18.0269, 6.3295, 0.7373, -17.3757, 6.6679, 0.3289, -18.0269, 6.4933, -0.2516, -19.4912, 6.8927, -0.2456, -19.3904, 6.6679, 0.3289, -18.0269, 6.3079, 0.23, -18.4782, 6.4933, -0.2516, -19.4912, 6.6679, 0.3289, -18.0269, 7.3397, -0.221, -19.4328, 7.2114, -0.0782, -18.2241, 6.6679, 0.3289, -18.0269, 6.8927, -0.2456, -19.3904, 7.3397, -0.221, -19.4328, 7.2114, -0.0782, -18.2241, 7.3397, -0.221, -19.4328, 7.7954, -0.7412, -18.4786, 4.9193, 0.0514, -18.8974, 4.3959, -0.2393, -19.3618, 4.9156, -0.1988, -19.4326, 4.9193, 0.0514, -18.8974, 4.375, 0.032, -18.7562, 4.3959, -0.2393, -19.3618, 6.2739, 1.467, -15.8193, 6.1442, 1.568, -15.8944, 6.1442, 1.3659, -16.0682, 6.2739, 1.467, -15.8193, 6.0559, 0.8692, -17.2007, 6.3295, 0.7373, -17.3757, 6.2739, 1.467, -15.8193, 6.1442, 1.3659, -16.0682, 6.0559, 0.8692, -17.2007, 6.3079, 0.23, -18.4782, 5.6621, 0.0726, -19.3781, 6.4933, -0.2516, -19.4912, 6.4933, -0.2516, -19.4912, 6.1344, -0.8694, -20.5856, 6.758, -0.8739, -20.8046, 6.4933, -0.2516, -19.4912, 5.6621, 0.0726, -19.3781, 6.1344, -0.8694, -20.5856, 4.9156, -0.1988, -19.4326, 4.6549, -0.8694, -20.3474, 4.7846, -0.8694, -20.5089, 4.9156, -0.1988, -19.4326, 4.3959, -0.2393, -19.3618, 4.6549, -0.8694, -20.3474, 7.3397, -0.221, -19.4328, 7.7954, -1.0479, -19.7299, 7.7954, -0.7412, -18.4786, 7.3397, -0.221, -19.4328, 7.3397, -0.9081, -20.6841, 7.7954, -1.0479, -19.7299, 6.8927, -0.2456, -19.3904, 6.758, -0.8739, -20.8046, 7.0572, -0.8735, -20.5939, 6.8927, -0.2456, -19.3904, 6.4933, -0.2516, -19.4912, 6.758, -0.8739, -20.8046, 6.8927, -0.2456, -19.3904, 7.3397, -0.9081, -20.6841, 7.3397, -0.221, -19.4328, 6.8927, -0.2456, -19.3904, 7.0572, -0.8735, -20.5939, 7.3397, -0.9081, -20.6841, 7.7954, -0.7412, -18.4786, 8.0567, -1.2147, -19.7904, 8.0567, -1.3617, -18.5391, 7.7954, -0.7412, -18.4786, 7.7954, -1.0479, -19.7299, 8.0567, -1.2147, -19.7904, 6.6679, 0.3289, -18.0269, 6.616, 0.9246, -16.6339, 6.3295, 0.7373, -17.3757, 6.2739, 1.467, -15.8193, 6.3295, 0.7373, -17.3757, 6.616, 0.9246, -16.6339, 6.0307, 0.4199, -18.2191, 5.7797, 0.473, -18.4025, 5.6621, 0.0726, -19.3781, 5.2988, 0.4838, -18.2897, 4.9193, 0.0514, -18.8974, 5.6621, 0.0726, -19.3781, 5.2988, 0.4838, -18.2897, 4.8316, 0.4677, -18.1206, 4.9193, 0.0514, -18.8974, 5.7797, 0.473, -18.4025, 5.2988, 0.4838, -18.2897, 5.6621, 0.0726, -19.3781, 6.3079, 0.23, -18.4782, 6.0307, 0.4199, -18.2191, 5.6621, 0.0726, -19.3781, 5.6621, 0.0726, -19.3781, 4.9193, 0.0514, -18.8974, 4.9156, -0.1988, -19.4326, 5.6621, 0.0726, -19.3781, 5.1491, -0.8694, -20.6092, 6.1344, -0.8694, -20.5856, 5.6621, 0.0726, -19.3781, 4.7846, -0.8694, -20.5089, 5.1491, -0.8694, -20.6092, 5.6621, 0.0726, -19.3781, 4.9156, -0.1988, -19.4326, 4.7846, -0.8694, -20.5089, 2.1431, 1.6122, -16.1485, 2.1381, 1.6818, -16.1482, -0.4508, 1.6765, -15.4572, 4.6549, 1.568, -15.7357, 2.1381, 1.6818, -16.1482, 2.1431, 1.6122, -16.1485, 4.6549, 1.568, -15.7357, 4.6549, 1.6855, -15.7357, 2.1381, 1.6818, -16.1482, 4.6549, -0.8694, -20.3474, 3.182, -0.2416, -19.4569, 3.1899, -0.8694, -20.6505, 4.6549, -0.8694, -20.3474, 4.3959, -0.2393, -19.3618, 3.182, -0.2416, -19.4569, 4.3959, -0.2393, -19.3618, 3.1825, 0.0297, -18.8266, 3.182, -0.2416, -19.4569, 4.3959, -0.2393, -19.3618, 4.375, 0.032, -18.7562, 3.1825, 0.0297, -18.8266, 4.375, 0.032, -18.7562, 3.182, 0.463, -18.1304, 3.1825, 0.0297, -18.8266, 4.375, 0.032, -18.7562, 4.3879, 0.463, -18.035, 3.182, 0.463, -18.1304, 4.3879, 0.463, -18.035, 3.1899, 0.9382, -17.0399, 3.182, 0.463, -18.1304, 4.3879, 0.463, -18.035, 4.6549, 0.9382, -16.7368, 3.1899, 0.9382, -17.0399, 3.1899, -0.8694, -20.6505, 1.8463, -0.2416, -19.3049, 1.7587, -0.8694, -20.2464, 3.1899, -0.8694, -20.6505, 3.182, -0.2416, -19.4569, 1.8463, -0.2416, -19.3049, 3.182, -0.2416, -19.4569, 1.8523, 0.0297, -18.6967, 1.8463, -0.2416, -19.3049, 3.182, -0.2416, -19.4569, 3.1825, 0.0297, -18.8266, 1.8523, 0.0297, -18.6967, 3.1825, 0.0297, -18.8266, 1.8463, 0.463, -17.9784, 1.8523, 0.0297, -18.6967, 3.1825, 0.0297, -18.8266, 3.182, 0.463, -18.1304, 1.8463, 0.463, -17.9784, 3.182, 0.463, -18.1304, 1.7587, 0.9382, -16.6357, 1.8463, 0.463, -17.9784, 3.182, 0.463, -18.1304, 3.1899, 0.9382, -17.0399, 1.7587, 0.9382, -16.6357, 1.7587, -0.8694, -20.2464, 0.8118, -0.2416, -19.4267, 0.7147, -0.8694, -20.5495, 1.7587, -0.8694, -20.2464, 1.8463, -0.2416, -19.3049, 0.8118, -0.2416, -19.4267, 1.8463, -0.2416, -19.3049, 0.8202, 0.0297, -18.8017, 0.8118, -0.2416, -19.4267, 1.8463, -0.2416, -19.3049, 1.8523, 0.0297, -18.6967, 0.8202, 0.0297, -18.8017, 1.8523, 0.0297, -18.6967, 0.8118, 0.463, -18.1002, 0.8202, 0.0297, -18.8017, 1.8523, 0.0297, -18.6967, 1.8463, 0.463, -17.9784, 0.8118, 0.463, -18.1002, 1.8463, 0.463, -17.9784, 0.7147, 0.9382, -16.9388, 0.8118, 0.463, -18.1002, 1.8463, 0.463, -17.9784, 1.7587, 0.9382, -16.6357, 0.7147, 0.9382, -16.9388, 0.7147, -0.8694, -20.5495, -0.0214, -0.2292, -19.5214, 0.2095, -0.8694, -20.4821, 0.7147, -0.8694, -20.5495, 0.8118, -0.2416, -19.4267, -0.0214, -0.2292, -19.5214, 0.8118, -0.2416, -19.4267, -0.0398, 0.0211, -18.9274, -0.0214, -0.2292, -19.5214, 0.8118, -0.2416, -19.4267, 0.8202, 0.0297, -18.8017, -0.0398, 0.0211, -18.9274, 0.8202, 0.0297, -18.8017, -0.0214, 0.4644, -18.2215, -0.0398, 0.0211, -18.9274, 0.8202, 0.0297, -18.8017, 0.8118, 0.463, -18.1002, -0.0214, 0.4644, -18.2215, 0.8118, 0.463, -18.1002, 0.2095, 0.9382, -16.8715, -0.0214, 0.4644, -18.2215, 0.8118, 0.463, -18.1002, 0.7147, 0.9382, -16.9388, 0.2095, 0.9382, -16.8715, 0.2095, -0.8694, -20.4821, -1.4742, -0.0768, -19.7865, -1.4742, -0.8694, -21.0378, 0.2095, -0.8694, -20.4821, -0.0214, -0.2292, -19.5214, -1.4742, -0.0768, -19.7865, -0.0214, -0.2292, -19.5214, -1.4742, -0.0768, -19.3823, -1.4742, -0.0768, -19.7865, -0.0214, -0.2292, -19.5214, -0.0398, 0.0211, -18.9274, -1.4742, -0.0768, -19.3823, -0.0398, 0.0211, -18.9274, -1.4742, 0.473, -18.8324, -1.4742, -0.0768, -19.3823, -0.0398, 0.0211, -18.9274, -0.0214, 0.4644, -18.2215, -1.4742, 0.473, -18.8324, -0.0214, 0.4644, -18.2215, -1.4742, 0.9382, -17.4272, -1.4742, 0.473, -18.8324, -0.0214, 0.4644, -18.2215, 0.2095, 0.9382, -16.8715, -1.4742, 0.9382, -17.4272, -1.4742, -0.8694, -21.0378, -2.2151, -0.0768, -19.5507, -2.2151, -0.8694, -20.8021, -1.4742, -0.8694, -21.0378, -1.4742, -0.0768, -19.7865, -2.2151, -0.0768, -19.5507, -1.4742, -0.0768, -19.7865, -2.2151, -0.0768, -19.1465, -2.2151, -0.0768, -19.5507, -1.4742, -0.0768, -19.7865, -1.4742, -0.0768, -19.3823, -2.2151, -0.0768, -19.1465, -1.4742, -0.0768, -19.3823, -2.2151, 0.473, -18.5967, -2.2151, -0.0768, -19.1465, -1.4742, -0.0768, -19.3823, -1.4742, 0.473, -18.8324, -2.2151, 0.473, -18.5967, -1.4742, 0.473, -18.8324, -2.2151, 0.9382, -17.1914, -2.2151, 0.473, -18.5967, -1.4742, 0.473, -18.8324, -1.4742, 0.9382, -17.4272, -2.2151, 0.9382, -17.1914, 4.6549, 0.9382, -16.7368, 4.6549, 1.3659, -15.9096, 3.1899, 0.9382, -17.0399, 4.6549, 1.3659, -15.9096, 2.1431, 1.6122, -16.1485, 3.1899, 0.9382, -17.0399, 4.6549, 1.3659, -15.9096, 4.6549, 1.568, -15.7357, 2.1431, 1.6122, -16.1485, 3.1899, 0.9382, -17.0399, 2.1431, 1.6122, -16.1485, 1.7587, 0.9382, -16.6357, -0.4508, 1.6765, -15.4572, 1.7587, 0.9382, -16.6357, 2.1431, 1.6122, -16.1485, -0.4508, 1.6765, -15.4572, 0.7147, 0.9382, -16.9388, 1.7587, 0.9382, -16.6357, 0.7147, 0.9382, -16.9388, -0.4508, 1.6765, -15.4572, 0.2095, 0.9382, -16.8715, -1.4742, 0.9382, -17.4272, 0.2095, 0.9382, -16.8715, -0.4508, 1.6765, -15.4572, -1.0085, 1.714, -12.7027, -0.8372, 1.6071, -15.0373, -0.4508, 1.6765, -15.4572, -1.0085, 1.714, -12.7027, -1.2131, 1.636, -12.7027, -0.8372, 1.6071, -15.0373, -1.1804, 1.6855, -10.0175, -1.2131, 1.636, -12.7027, -1.0085, 1.714, -12.7027, -1.1804, 1.6855, -10.0175, -1.385, 1.6076, -10.0175, -1.2131, 1.636, -12.7027, -1.2131, 1.636, -12.7027, -0.9352, 1.3264, -14.9509, -0.8372, 1.6071, -15.0373, -1.2131, 1.636, -12.7027, -1.3398, 1.3534, -12.7027, -0.9352, 1.3264, -14.9509, -1.385, 1.6076, -10.0175, -1.3398, 1.3534, -12.7027, -1.2131, 1.636, -12.7027, -1.385, 1.6076, -10.0175, -1.5117, 1.147, -10.0175, -1.3398, 1.3534, -12.7027, -1.3398, 1.3534, -12.7027, -1.047, 1.1044, -14.8517, -0.9352, 1.3264, -14.9509, -1.3398, 1.3534, -12.7027, -1.486, 1.1457, -12.7027, -1.047, 1.1044, -14.8517, -1.5117, 1.147, -10.0175, -1.486, 1.1457, -12.7027, -1.3398, 1.3534, -12.7027, -1.5117, 1.147, -10.0175, -1.4922, 1.1455, -9.9006, -1.486, 1.1457, -12.7027, -0.9999, 1.251, -7.8054, -1.4337, 1.1455, -8.361, -0.9999, 1.5725, -7.8054, -0.9999, 1.251, -7.8054, -1.3889, 1.1266, -8.0835, -1.4337, 1.1455, -8.361, -0.9999, 1.5725, -7.8054, -1.4337, 1.1455, -8.361, -1.1804, 1.6855, -8.1972, -1.1804, 1.6855, -10.0175, -1.1804, 1.6855, -8.1972, -1.385, 1.6076, -10.0175, -1.5117, 1.147, -10.0175, -1.1804, 1.6855, -8.1972, -1.4337, 1.1455, -8.361, -1.5117, 1.147, -10.0175, -1.385, 1.6076, -10.0175, -1.1804, 1.6855, -8.1972, -1.3889, 1.1266, -8.0835, -2.8818, 1.1945, -8.265, -1.4337, 1.1455, -8.361, -3.7334, 1.1455, -8.4584, -2.8818, 1.1945, -8.265, -3.714, 0.9152, -7.9198, -3.7071, -0.0518, -5.83, -4.9301, -0.7919, -6.0087, -3.7071, -0.7919, -5.9379, -3.7071, -0.0518, -5.83, -4.921, -0.0518, -5.9012, -4.9301, -0.7919, -6.0087, -3.7071, -0.7919, -5.9379, -4.9036, -1.109, -6.1254, -3.6707, -1.109, -6.052, -3.7071, -0.7919, -5.9379, -4.9301, -0.7919, -6.0087, -4.9036, -1.109, -6.1254, -3.6707, -1.109, -6.052, -4.9336, -0.8777, -6.479, -3.6707, -0.8777, -6.4068, -3.6707, -1.109, -6.052, -4.9036, -1.109, -6.1254, -4.9336, -0.8777, -6.479, -3.6707, -0.8777, -6.4068, -4.9637, -0.8498, -6.8324, -3.6707, -0.8498, -6.7615, -3.6707, -0.8777, -6.4068, -4.9336, -0.8777, -6.479, -4.9637, -0.8498, -6.8324, -3.6707, -0.8498, -6.7615, -4.9946, 0.1954, -7.1611, -3.6737, 0.1954, -7.0917, -3.6707, -0.8498, -6.7615, -4.9637, -0.8498, -6.8324, -4.9946, 0.1954, -7.1611, -3.6737, 0.1954, -7.0917, -5.2415, 0.7415, -8.0363, -3.714, 0.9152, -7.9198, -3.6737, 0.1954, -7.0917, -4.9946, 0.1954, -7.1611, -5.2415, 0.7415, -8.0363, -4.921, -0.0518, -5.9012, -6.378, -0.7919, -5.9806, -4.9301, -0.7919, -6.0087, -4.921, -0.0518, -5.9012, -6.398, -0.0518, -5.8745, -6.378, -0.7919, -5.9806, -4.9301, -0.7919, -6.0087, -6.3211, -1.109, -6.0859, -4.9036, -1.109, -6.1254, -4.9301, -0.7919, -6.0087, -6.378, -0.7919, -5.9806, -6.3211, -1.109, -6.0859, -4.9036, -1.109, -6.1254, -6.2552, -0.8777, -6.4346, -4.9336, -0.8777, -6.479, -4.9036, -1.109, -6.1254, -6.3211, -1.109, -6.0859, -6.2552, -0.8777, -6.4346, -4.9336, -0.8777, -6.479, -6.1893, -0.8498, -6.7831, -4.9637, -0.8498, -6.8324, -4.9336, -0.8777, -6.479, -6.2552, -0.8777, -6.4346, -6.1893, -0.8498, -6.7831, -4.9637, -0.8498, -6.8324, -6.131, 0.1954, -7.1081, -4.9946, 0.1954, -7.1611, -4.9637, -0.8498, -6.8324, -6.1893, -0.8498, -6.7831, -6.131, 0.1954, -7.1081, -4.9946, 0.1954, -7.1611, -6.0168, 0.9152, -7.9293, -5.2415, 0.7415, -8.0363, -4.9946, 0.1954, -7.1611, -6.131, 0.1954, -7.1081, -6.0168, 0.9152, -7.9293, -5.3917, 1.4341, -5.6707, -4.0858, 1.2149, -5.6707, -5.3917, 1.2149, -5.6707, -5.3917, 1.4341, -5.6707, -4.0858, 1.4341, -5.6707, -4.0858, 1.2149, -5.6707, -5.3917, 1.1584, -8.7722, -3.714, 0.9152, -7.9198, -5.2415, 0.7415, -8.0363, -5.3917, 1.1584, -8.7722, -4.0858, 1.1584, -8.7722, -3.714, 0.9152, -7.9198, -3.7334, 1.1455, -8.4584, -3.714, 0.9152, -7.9198, -4.0858, 1.1584, -8.7722, -4.0858, 1.3776, -8.7722, -4.0858, 1.1338, -9.3106, -4.0858, 1.1584, -8.7722, -4.0858, 1.1338, -9.3106, -3.7334, 1.1455, -8.4584, -4.0858, 1.1584, -8.7722, -4.0858, 1.1338, -9.3106, -3.9708, 1.0717, -9.552, -3.7334, 1.1455, -8.4584, -3.7334, 1.1455, -8.4584, -3.9708, 1.0717, -9.552, -3.7919, 1.1455, -9.998, -3.9708, 1.0717, -10.8336, -5.5067, 1.0717, -10.8336, -6.2256, 1.0717, -11.0342, -5.5067, 1.0717, -10.8336, -6.154, 1.1141, -10.7388, -6.2256, 1.0717, -11.0342, -5.5067, 1.0717, -10.8336, -5.6775, 1.0717, -10.7195, -6.154, 1.1141, -10.7388, -6.2256, 1.0717, -11.0342, -6.7012, 0.8667, -11.9909, -6.3053, 1.1457, -11.9909, -6.2256, 1.0717, -11.0342, -6.6215, 0.7928, -11.0342, -6.7012, 0.8667, -11.9909, -6.3885, 1.2052, -10.758, -6.6215, 0.7928, -11.0342, -6.2256, 1.0717, -11.0342, -6.3885, 1.2052, -10.758, -6.6793, 1.3729, -10.7819, -6.6215, 0.7928, -11.0342, -6.3885, 1.2052, -10.758, -6.2256, 1.0717, -11.0342, -6.154, 1.1141, -10.7388, -6.9971, 1.4858, -10.8249, -6.6215, 0.7928, -11.0342, -6.6793, 1.3729, -10.7819, -6.6215, 0.7928, -11.0342, -6.9823, 1.0391, -11.8485, -6.7012, 0.8667, -11.9909, -6.6215, 0.7928, -11.0342, -7.061, 0.9011, -10.9827, -6.9823, 1.0391, -11.8485, -6.6215, 0.7928, -11.0342, -6.9971, 1.4858, -10.8249, -7.061, 0.9011, -10.9827, -6.9971, 1.4858, -10.8249, -7.3035, 1.5047, -11.1709, -7.061, 0.9011, -10.9827, -6.9971, 1.4858, -10.8249, -7.2618, 1.5047, -10.9558, -7.3035, 1.5047, -11.1709, -7.1419, 1.1188, -11.9236, -7.0982, 1.2288, -11.6735, -7.1863, 1.3023, -11.7166, -7.1419, 1.1188, -11.9236, -7.0537, 1.0453, -11.8806, -7.0982, 1.2288, -11.6735, -7.1863, 1.3023, -11.7166, -7.1643, 1.3747, -11.3653, -7.2525, 1.4482, -11.4084, -7.1863, 1.3023, -11.7166, -7.0982, 1.2288, -11.6735, -7.1643, 1.3747, -11.3653, -7.2525, 1.4482, -11.4084, -7.061, 0.9011, -10.9827, -7.3035, 1.5047, -11.1709, -7.2525, 1.4482, -11.4084, -7.1643, 1.3747, -11.3653, -7.061, 0.9011, -10.9827, -6.9823, 1.0391, -11.8485, -7.1643, 1.3747, -11.3653, -7.0982, 1.2288, -11.6735, -6.9823, 1.0391, -11.8485, -7.061, 0.9011, -10.9827, -7.1643, 1.3747, -11.3653, -7.0982, 1.2288, -11.6735, -7.0537, 1.0453, -11.8806, -6.9823, 1.0391, -11.8485, -6.9823, 1.0391, -11.8485, -6.5308, 0.8667, -12.6281, -6.7012, 0.8667, -11.9909, -6.9823, 1.0391, -11.8485, -6.8362, 1.0391, -12.7058, -6.5308, 0.8667, -12.6281, -6.8362, 1.0391, -12.7058, -6.4165, 0.8667, -13.2698, -6.5308, 0.8667, -12.6281, -6.8362, 1.0391, -12.7058, -6.7219, 1.0391, -13.3476, -6.4165, 0.8667, -13.2698, -6.3303, 1.1457, -13.533, -6.5308, 0.8667, -12.6281, -6.4165, 0.8667, -13.2698, -6.3053, 1.1457, -11.9909, -6.5308, 0.8667, -12.6281, -6.3303, 1.1457, -13.533, -6.3053, 1.1457, -11.9909, -6.7012, 0.8667, -11.9909, -6.5308, 0.8667, -12.6281, -1.486, 1.1457, -12.7027, -3.7892, 1.1457, -11.6764, -1.8197, 1.1457, -13.6471, -4.4762, 1.1457, -13.5799, -6.3053, 1.1457, -11.9909, -6.3303, 1.1457, -13.533, -1.8197, 1.1457, -13.6471, -3.7892, 1.1457, -11.6764, -6.3053, 1.1457, -11.9909, -1.8197, 1.1457, -13.6471, -6.3053, 1.1457, -11.9909, -4.4762, 1.1457, -13.5799, -7.1419, 1.1188, -11.9236, -7.1053, 1.0435, -12.0938, -7.0537, 1.0453, -11.8806, -7.0537, 1.0453, -11.8806, -6.8362, 1.0391, -12.7058, -6.9823, 1.0391, -11.8485, -7.0537, 1.0453, -11.8806, -7.1053, 1.0435, -12.0938, -6.8362, 1.0391, -12.7058, -7.1053, 1.0435, -12.0938, -6.8179, 1.0106, -13.4447, -6.8362, 1.0391, -12.7058, -7.1053, 1.0435, -12.0938, -7.0382, 1.0106, -12.4067, -6.8179, 1.0106, -13.4447, -6.8362, 1.0391, -12.7058, -6.8179, 1.0106, -13.4447, -6.7219, 1.0391, -13.3476, -6.7219, 1.0391, -13.3476, -6.4502, 0.6976, -13.8016, -6.4165, 0.8667, -13.2698, -6.7219, 1.0391, -13.3476, -6.7219, 0.782, -14.0309, -6.4502, 0.6976, -13.8016, -6.4916, 0.6976, -15.5959, -4.7116, 0.6976, -13.6622, -6.4502, 0.6976, -13.8016, -4.7116, 0.6976, -13.6622, -4.2989, 0.6976, -17.3224, -4.4004, 0.6976, -15.0153, -4.2989, 0.6976, -17.3224, -5.8212, 0.6976, -19.6971, -4.3801, 0.6976, -19.4806, -5.8212, 0.6976, -19.6971, -7.3231, 0.6976, -18.0598, -7.2893, 0.6976, -19.3858, -6.4971, 0.6976, -15.833, -4.7116, 0.6976, -13.6622, -6.4916, 0.6976, -15.5959, -4.7116, 0.6976, -13.6622, -5.8212, 0.6976, -19.6971, -4.2989, 0.6976, -17.3224, -6.5316, 0.6976, -17.3291, -7.3231, 0.6976, -18.0598, -5.8212, 0.6976, -19.6971, -6.5316, 0.6976, -17.3291, -4.7116, 0.6976, -13.6622, -6.4971, 0.6976, -15.833, -6.5316, 0.6976, -17.3291, -5.8212, 0.6976, -19.6971, -4.7116, 0.6976, -13.6622, -6.4165, 0.8667, -13.2698, -6.4502, 0.6976, -13.8016, -6.3303, 1.1457, -13.533, -6.4502, 0.6976, -13.8016, -4.4762, 1.1457, -13.5799, -6.3303, 1.1457, -13.533, -6.4502, 0.6976, -13.8016, -4.7116, 0.6976, -13.6622, -4.4762, 1.1457, -13.5799, -6.6899, 0.6875, -15.2657, -6.4916, 0.6976, -15.5959, -6.767, 0.6875, -14.9847, -6.767, 0.6875, -14.9847, -6.4916, 0.6976, -15.5959, -6.767, 0.8139, -14.493, -6.4502, 0.6976, -13.8016, -6.767, 0.8139, -14.493, -6.4916, 0.6976, -15.5959, -6.4502, 0.6976, -13.8016, -6.7219, 0.782, -14.0309, -6.767, 0.8139, -14.493, -6.8179, 1.0106, -13.4447, -6.7219, 0.782, -14.0309, -6.7219, 1.0391, -13.3476, -6.8179, 1.0106, -13.4447, -6.767, 1.0106, -14.0294, -6.7219, 0.782, -14.0309, -6.767, 0.8139, -14.493, -6.7219, 0.782, -14.0309, -6.767, 1.0106, -14.0294, -6.4971, 0.6976, -15.833, -6.6899, 0.6875, -17.2328, -6.5316, 0.6976, -17.3291, -6.6899, 0.6875, -17.2328, -8.7269, 0.6875, -17.2203, -7.3231, 0.6976, -18.0598, -7.3231, 0.6976, -18.0598, -6.5316, 0.6976, -17.3291, -6.6899, 0.6875, -17.2328, -8.7269, 0.6875, -17.2203, -7.3231, 0.3761, -18.391, -7.3231, 0.6976, -18.0598, -8.7269, 0.6875, -17.2203, -8.7269, 0.366, -17.5515, -7.3231, 0.3761, -18.391, -8.7269, 0.366, -17.5515, -7.8881, -0.0524, -19.4528, -7.3231, 0.3761, -18.391, -8.7269, 0.366, -17.5515, -8.8907, 0.0096, -18.9565, -7.8881, -0.0524, -19.4528, -7.2893, 0.6976, -19.3858, -7.3231, 0.3761, -18.391, -7.8881, -0.0524, -19.4528, -7.2893, 0.6976, -19.3858, -7.3231, 0.6976, -18.0598, -7.3231, 0.3761, -18.391, -11.6479, -0.3264, -16.7534, -12.8417, -0.4266, -16.6466, -11.6479, -0.3095, -17.1237, -11.6479, -0.3264, -16.7534, -12.8417, -0.4435, -16.2763, -12.8417, -0.4266, -16.6466, -12.8417, -0.4435, -16.2763, -13.6872, -0.4297, -16.2329, -12.8417, -0.4266, -16.6466, -12.8417, -0.4435, -16.2763, -13.6872, -0.4465, -15.8626, -13.6872, -0.4297, -16.2329, -13.6872, -0.4465, -15.8626, -14.1851, -0.36, -16.047, -13.6872, -0.4297, -16.2329, -13.6872, -0.4465, -15.8626, -14.1851, -0.3768, -15.6767, -14.1851, -0.36, -16.047, -14.1851, -0.3768, -15.6767, -14.6207, -0.0661, -15.7688, -14.1851, -0.36, -16.047, -14.1851, -0.3768, -15.6767, -14.6207, -0.083, -15.3985, -14.6207, -0.0661, -15.7688, -14.6207, -0.083, -15.3985, -14.9913, 0.1873, -15.5666, -14.6207, -0.0661, -15.7688, -14.6207, -0.083, -15.3985, -14.9913, 0.1705, -15.1962, -14.9913, 0.1873, -15.5666, -14.9913, 0.1705, -15.1962, -15.4399, 0.3239, -15.2464, -14.9913, 0.1873, -15.5666, -14.9913, 0.1705, -15.1962, -15.4399, 0.307, -14.8761, -15.4399, 0.3239, -15.2464, -15.4399, 0.307, -14.8761, -15.9763, 0.5579, -15.0273, -15.4399, 0.3239, -15.2464, -15.4399, 0.307, -14.8761, -15.9763, 0.5411, -14.657, -15.9763, 0.5579, -15.0273, -15.9763, 0.5411, -14.657, -16.7662, 0.8505, -14.9093, -15.9763, 0.5579, -15.0273, -15.9763, 0.5411, -14.657, -16.7662, 0.8337, -14.539, -16.7662, 0.8505, -14.9093, -10.2719, 0.0923, -17.1222, -10.9397, 0.0654, -17.3544, -10.2719, 0.1092, -17.4926, -10.2719, 0.0923, -17.1222, -10.9397, 0.0485, -16.9841, -10.9397, 0.0654, -17.3544, -9.7518, 0.2968, -17.2951, -10.2719, 0.1092, -17.4926, -9.8524, 0.2653, -17.4926, -9.7518, 0.2968, -17.2951, -10.2719, 0.0923, -17.1222, -10.2719, 0.1092, -17.4926, -11.6479, -0.3095, -17.1237, -12.8417, -0.1068, -17.0506, -11.6479, 0.0102, -17.5277, -11.6479, -0.3095, -17.1237, -12.8417, -0.4266, -16.6466, -12.8417, -0.1068, -17.0506, -12.8417, -0.4266, -16.6466, -13.6872, -0.1099, -16.6369, -12.8417, -0.1068, -17.0506, -12.8417, -0.4266, -16.6466, -13.6872, -0.4297, -16.2329, -13.6872, -0.1099, -16.6369, -13.6872, -0.4297, -16.2329, -14.1851, -0.0402, -16.451, -13.6872, -0.1099, -16.6369, -13.6872, -0.4297, -16.2329, -14.1851, -0.36, -16.047, -14.1851, -0.0402, -16.451, -14.1851, -0.36, -16.047, -14.6207, 0.2536, -16.1728, -14.1851, -0.0402, -16.451, -14.1851, -0.36, -16.047, -14.6207, -0.0661, -15.7688, -14.6207, 0.2536, -16.1728, -14.6207, -0.0661, -15.7688, -14.9913, 0.5071, -15.9705, -14.6207, 0.2536, -16.1728, -14.6207, -0.0661, -15.7688, -14.9913, 0.1873, -15.5666, -14.9913, 0.5071, -15.9705, -14.9913, 0.1873, -15.5666, -15.4399, 0.6437, -15.6503, -14.9913, 0.5071, -15.9705, -14.9913, 0.1873, -15.5666, -15.4399, 0.3239, -15.2464, -15.4399, 0.6437, -15.6503, -15.4399, 0.3239, -15.2464, -15.9763, 0.8777, -15.4313, -15.4399, 0.6437, -15.6503, -15.4399, 0.3239, -15.2464, -15.9763, 0.5579, -15.0273, -15.9763, 0.8777, -15.4313, -15.9763, 0.5579, -15.0273, -16.7662, 1.1703, -15.3133, -15.9763, 0.8777, -15.4313, -15.9763, 0.5579, -15.0273, -16.7662, 0.8505, -14.9093, -16.7662, 1.1703, -15.3133, -10.2719, 0.1092, -17.4926, -10.9397, 0.3852, -17.7584, -10.2719, 0.429, -17.8965, -10.2719, 0.1092, -17.4926, -10.9397, 0.0654, -17.3544, -10.9397, 0.3852, -17.7584, -9.8524, 0.2653, -17.4926, -10.2719, 0.429, -17.8965, -9.8524, 0.5851, -17.8965, -9.8524, 0.2653, -17.4926, -10.2719, 0.1092, -17.4926, -10.2719, 0.429, -17.8965, -11.6479, 0.0102, -17.5277, -12.8417, 0.1961, -17.2358, -11.6479, 0.3132, -17.7129, -11.6479, 0.0102, -17.5277, -12.8417, -0.1068, -17.0506, -12.8417, 0.1961, -17.2358, -12.8417, -0.1068, -17.0506, -13.6872, 0.193, -16.8221, -12.8417, 0.1961, -17.2358, -12.8417, -0.1068, -17.0506, -13.6872, -0.1099, -16.6369, -13.6872, 0.193, -16.8221, -13.6872, -0.1099, -16.6369, -14.1851, 0.2627, -16.6361, -13.6872, 0.193, -16.8221, -13.6872, -0.1099, -16.6369, -14.1851, -0.0402, -16.451, -14.1851, 0.2627, -16.6361, -14.1851, -0.0402, -16.451, -14.6207, 0.5566, -16.3579, -14.1851, 0.2627, -16.6361, -14.1851, -0.0402, -16.451, -14.6207, 0.2536, -16.1728, -14.6207, 0.5566, -16.3579, -14.6207, 0.2536, -16.1728, -14.9913, 0.8101, -16.1557, -14.6207, 0.5566, -16.3579, -14.6207, 0.2536, -16.1728, -14.9913, 0.5071, -15.9705, -14.9913, 0.8101, -16.1557, -14.9913, 0.5071, -15.9705, -15.4399, 0.9467, -15.8355, -14.9913, 0.8101, -16.1557, -14.9913, 0.5071, -15.9705, -15.4399, 0.6437, -15.6503, -15.4399, 0.9467, -15.8355, -15.4399, 0.6437, -15.6503, -15.9763, 1.1807, -15.6164, -15.4399, 0.9467, -15.8355, -15.4399, 0.6437, -15.6503, -15.9763, 0.8777, -15.4313, -15.9763, 1.1807, -15.6164, -15.9763, 0.8777, -15.4313, -16.7662, 1.4733, -15.4985, -15.9763, 1.1807, -15.6164, -15.9763, 0.8777, -15.4313, -16.7662, 1.1703, -15.3133, -16.7662, 1.4733, -15.4985, -10.2719, 0.429, -17.8965, -10.9397, 0.6881, -17.9436, -10.2719, 0.732, -18.0817, -10.2719, 0.429, -17.8965, -10.9397, 0.3852, -17.7584, -10.9397, 0.6881, -17.9436, -9.8524, 0.5851, -17.8965, -10.2719, 0.732, -18.0817, -9.8524, 0.8881, -18.0817, -9.8524, 0.5851, -17.8965, -10.2719, 0.429, -17.8965, -10.2719, 0.732, -18.0817, -11.6479, 0.3132, -17.7129, -12.7655, 0.949, -17.608, -11.6479, 1.0846, -17.999, -11.6479, 0.3132, -17.7129, -12.8417, 0.1961, -17.2358, -12.7655, 0.949, -17.608, -12.8417, 0.1961, -17.2358, -13.6102, 0.9387, -17.2292, -12.7655, 0.949, -17.608, -12.8417, 0.1961, -17.2358, -13.6872, 0.193, -16.8221, -13.6102, 0.9387, -17.2292, -13.6872, 0.193, -16.8221, -14.167, 1.0379, -16.9768, -13.6102, 0.9387, -17.2292, -13.6872, 0.193, -16.8221, -14.1851, 0.2627, -16.6361, -14.167, 1.0379, -16.9768, -14.1851, 0.2627, -16.6361, -14.6207, 1.328, -16.6441, -14.167, 1.0379, -16.9768, -14.1851, 0.2627, -16.6361, -14.6207, 0.5566, -16.3579, -14.6207, 1.328, -16.6441, -14.6207, 0.5566, -16.3579, -14.9913, 1.5816, -16.4418, -14.6207, 1.328, -16.6441, -14.6207, 0.5566, -16.3579, -14.9913, 0.8101, -16.1557, -14.9913, 1.5816, -16.4418, -14.9913, 0.8101, -16.1557, -15.4399, 1.7181, -16.1216, -14.9913, 1.5816, -16.4418, -14.9913, 0.8101, -16.1557, -15.4399, 0.9467, -15.8355, -15.4399, 1.7181, -16.1216, -15.4399, 0.9467, -15.8355, -15.9763, 1.9522, -15.9026, -15.4399, 1.7181, -16.1216, -15.4399, 0.9467, -15.8355, -15.9763, 1.1807, -15.6164, -15.9763, 1.9522, -15.9026, -15.9763, 1.1807, -15.6164, -16.7662, 2.2447, -15.7846, -15.9763, 1.9522, -15.9026, -15.9763, 1.1807, -15.6164, -16.7662, 1.4733, -15.4985, -16.7662, 2.2447, -15.7846, -10.2719, 0.732, -18.0817, -10.9397, 1.4596, -18.2297, -10.2719, 1.5034, -18.3678, -10.2719, 0.732, -18.0817, -10.9397, 0.6881, -17.9436, -10.9397, 1.4596, -18.2297, -9.8524, 0.8881, -18.0817, -10.2719, 1.5034, -18.3678, -9.8524, 1.6595, -18.3678, -9.8524, 0.8881, -18.0817, -10.2719, 0.732, -18.0817, -10.2719, 1.5034, -18.3678, -11.6479, 1.0846, -17.999, -12.7677, 0.9792, -18.1572, -11.7559, 1.1137, -18.5607, -11.6479, 1.0846, -17.999, -12.7655, 0.949, -17.608, -12.7677, 0.9792, -18.1572, -12.7655, 0.949, -17.608, -13.6047, 0.9672, -17.7793, -12.7677, 0.9792, -18.1572, -12.7655, 0.949, -17.608, -13.6102, 0.9387, -17.2292, -13.6047, 0.9672, -17.7793, -13.6102, 0.9387, -17.2292, -14.165, 1.0653, -17.5286, -13.6047, 0.9672, -17.7793, -13.6102, 0.9387, -17.2292, -14.167, 1.0379, -16.9768, -14.165, 1.0653, -17.5286, -14.167, 1.0379, -16.9768, -14.6077, 1.306, -17.2724, -14.165, 1.0653, -17.5286, -14.167, 1.0379, -16.9768, -14.6207, 1.328, -16.6441, -14.6077, 1.306, -17.2724, -14.6207, 1.328, -16.6441, -15.0075, 1.5432, -17.0368, -14.6077, 1.306, -17.2724, -14.6207, 1.328, -16.6441, -14.9913, 1.5816, -16.4418, -15.0075, 1.5432, -17.0368, -14.9913, 1.5816, -16.4418, -15.4589, 1.7258, -16.7587, -15.0075, 1.5432, -17.0368, -14.9913, 1.5816, -16.4418, -15.4399, 1.7181, -16.1216, -15.4589, 1.7258, -16.7587, -15.4399, 1.7181, -16.1216, -15.9763, 2.0195, -16.5422, -15.4589, 1.7258, -16.7587, -15.4399, 1.7181, -16.1216, -15.9763, 1.9522, -15.9026, -15.9763, 2.0195, -16.5422, -15.9763, 1.9522, -15.9026, -16.7662, 2.3121, -16.4242, -15.9763, 2.0195, -16.5422, -15.9763, 1.9522, -15.9026, -16.7662, 2.2447, -15.7846, -16.7662, 2.3121, -16.4242, -10.2719, 1.5034, -18.3678, -10.9503, 1.3796, -18.8296, -10.2719, 1.5708, -19.0075, -10.2719, 1.5034, -18.3678, -10.9397, 1.4596, -18.2297, -10.9503, 1.3796, -18.8296, -9.8524, 1.6595, -18.3678, -10.2719, 1.5708, -19.0075, -9.8524, 1.7269, -19.0075, -9.8524, 1.6595, -18.3678, -10.2719, 1.5034, -18.3678, -10.2719, 1.5708, -19.0075, -11.7559, 1.1137, -18.5607, -12.7659, 0.161, -18.7444, -11.7559, 0.2728, -19.1744, -11.7559, 1.1137, -18.5607, -12.7677, 0.9792, -18.1572, -12.7659, 0.161, -18.7444, -12.7677, 0.9792, -18.1572, -13.6029, 0.1488, -18.3674, -12.7659, 0.161, -18.7444, -12.7677, 0.9792, -18.1572, -13.6047, 0.9672, -17.7793, -13.6029, 0.1488, -18.3674, -13.6047, 0.9672, -17.7793, -14.1647, 0.2476, -18.1149, -13.6029, 0.1488, -18.3674, -13.6047, 0.9672, -17.7793, -14.165, 1.0653, -17.5286, -14.1647, 0.2476, -18.1149, -14.165, 1.0653, -17.5286, -14.6064, 0.4835, -17.8664, -14.1647, 0.2476, -18.1149, -14.165, 1.0653, -17.5286, -14.6077, 1.306, -17.2724, -14.6064, 0.4835, -17.8664, -14.6077, 1.306, -17.2724, -15.0091, 0.7191, -17.6268, -14.6064, 0.4835, -17.8664, -14.6077, 1.306, -17.2724, -15.0075, 1.5432, -17.0368, -15.0091, 0.7191, -17.6268, -15.0075, 1.5432, -17.0368, -15.4589, 0.8902, -17.3615, -15.0091, 0.7191, -17.6268, -15.0075, 1.5432, -17.0368, -15.4589, 1.7258, -16.7587, -15.4589, 0.8902, -17.3615, -15.4589, 1.7258, -16.7587, -15.9763, 1.2312, -17.0471, -15.4589, 0.8902, -17.3615, -15.4589, 1.7258, -16.7587, -15.9763, 2.0195, -16.5422, -15.9763, 1.2312, -17.0471, -15.9763, 2.0195, -16.5422, -16.7662, 1.5238, -16.9292, -15.9763, 1.2312, -17.0471, -15.9763, 2.0195, -16.5422, -16.7662, 2.3121, -16.4242, -16.7662, 1.5238, -16.9292, -10.2719, 1.5708, -19.0075, -10.9503, 0.5326, -19.456, -10.2719, 0.7825, -19.5124, -10.2719, 1.5708, -19.0075, -10.9503, 1.3796, -18.8296, -10.9503, 0.5326, -19.456, -9.8524, 1.7269, -19.0075, -10.2719, 0.7825, -19.5124, -9.8524, 0.9386, -19.5124, -9.8524, 1.7269, -19.0075, -10.2719, 1.5708, -19.0075, -10.2719, 0.7825, -19.5124, -11.7559, 0.2728, -19.1744, -12.7377, -0.3527, -19.3424, -11.6479, -0.4947, -20.0357, -11.7559, 0.2728, -19.1744, -12.7659, 0.161, -18.7444, -12.7377, -0.3527, -19.3424, -12.7659, 0.161, -18.7444, -13.5816, -0.3357, -18.9413, -12.7377, -0.3527, -19.3424, -12.7659, 0.161, -18.7444, -13.6029, 0.1488, -18.3674, -13.5816, -0.3357, -18.9413, -13.6029, 0.1488, -18.3674, -14.1568, -0.2335, -18.6779, -13.5816, -0.3357, -18.9413, -13.6029, 0.1488, -18.3674, -14.1647, 0.2476, -18.1149, -14.1568, -0.2335, -18.6779, -14.1647, 0.2476, -18.1149, -14.6035, -0.0092, -18.431, -14.1568, -0.2335, -18.6779, -14.1647, 0.2476, -18.1149, -14.6064, 0.4835, -17.8664, -14.6035, -0.0092, -18.431, -14.6064, 0.4835, -17.8664, -15.0106, 0.1955, -18.2089, -14.6035, -0.0092, -18.431, -14.6064, 0.4835, -17.8664, -15.0091, 0.7191, -17.6268, -15.0106, 0.1955, -18.2089, -15.0091, 0.7191, -17.6268, -15.4399, 0.1387, -18.1583, -15.0106, 0.1955, -18.2089, -15.0091, 0.7191, -17.6268, -15.4589, 0.8902, -17.3615, -15.4399, 0.1387, -18.1583, -15.4589, 0.8902, -17.3615, -15.9763, 0.3728, -17.9393, -15.4399, 0.1387, -18.1583, -15.4589, 0.8902, -17.3615, -15.9763, 1.2312, -17.0471, -15.9763, 0.3728, -17.9393, -15.9763, 1.2312, -17.0471, -16.7662, 0.6653, -17.8213, -15.9763, 0.3728, -17.9393, -15.9763, 1.2312, -17.0471, -16.7662, 1.5238, -16.9292, -16.7662, 0.6653, -17.8213, -10.2719, 0.7825, -19.5124, -10.9397, -0.1197, -20.2664, -10.2719, -0.0759, -20.4045, -10.2719, 0.7825, -19.5124, -10.9503, 0.5326, -19.456, -10.9397, -0.1197, -20.2664, -9.8524, 0.9386, -19.5124, -10.2719, -0.0759, -20.4045, -9.8524, 0.0801, -20.4045, -9.8524, 0.9386, -19.5124, -10.2719, 0.7825, -19.5124, -10.2719, -0.0759, -20.4045, -10.9503, 1.3796, -18.8296, -11.7559, 0.2728, -19.1744, -10.9503, 0.5326, -19.456, -10.9503, 1.3796, -18.8296, -11.7559, 1.1137, -18.5607, -11.7559, 0.2728, -19.1744, -10.9397, 0.0654, -17.3544, -11.6479, 0.0102, -17.5277, -10.9397, 0.3852, -17.7584, -10.9397, 0.0654, -17.3544, -11.6479, -0.3095, -17.1237, -11.6479, 0.0102, -17.5277, -10.9397, 0.3852, -17.7584, -11.6479, 0.3132, -17.7129, -10.9397, 0.6881, -17.9436, -10.9397, 0.3852, -17.7584, -11.6479, 0.0102, -17.5277, -11.6479, 0.3132, -17.7129, -10.9397, 0.6881, -17.9436, -11.6479, 1.0846, -17.999, -10.9397, 1.4596, -18.2297, -10.9397, 0.6881, -17.9436, -11.6479, 0.3132, -17.7129, -11.6479, 1.0846, -17.999, -10.9397, 1.4596, -18.2297, -11.7559, 1.1137, -18.5607, -10.9503, 1.3796, -18.8296, -10.9397, 1.4596, -18.2297, -11.6479, 1.0846, -17.999, -11.7559, 1.1137, -18.5607, -10.9503, 0.5326, -19.456, -11.6479, -0.4947, -20.0357, -10.9397, -0.1197, -20.2664, -10.9503, 0.5326, -19.456, -11.7559, 0.2728, -19.1744, -11.6479, -0.4947, -20.0357, -10.9397, 0.0485, -16.9841, -11.6479, -0.3095, -17.1237, -10.9397, 0.0654, -17.3544, -10.9397, 0.0485, -16.9841, -11.6479, -0.3264, -16.7534, -11.6479, -0.3095, -17.1237, -9.8524, 1.6595, -18.3678, -9.6224, 1.6525, -19.0075, -9.6224, 1.5851, -18.3678, -9.8524, 1.6595, -18.3678, -9.8524, 1.7269, -19.0075, -9.6224, 1.6525, -19.0075, -9.6224, 1.5851, -18.3678, -9.3721, 1.436, -19.0075, -9.3721, 1.3687, -18.3678, -9.6224, 1.5851, -18.3678, -9.6224, 1.6525, -19.0075, -9.3721, 1.436, -19.0075, -9.3721, 1.3687, -18.3678, -9.1759, 0.8272, -19.0075, -9.1759, 0.7599, -18.3678, -9.3721, 1.3687, -18.3678, -9.3721, 1.436, -19.0075, -9.1759, 0.8272, -19.0075, -9.8524, 1.6595, -18.3678, -9.6224, 1.5851, -18.3678, -9.8524, 0.8881, -18.0817, -9.8524, 0.8881, -18.0817, -9.3721, 1.3687, -18.3678, -9.8524, 0.5851, -17.8965, -9.8524, 0.8881, -18.0817, -9.6224, 1.5851, -18.3678, -9.3721, 1.3687, -18.3678, -9.8524, 0.5851, -17.8965, -9.1759, 0.7599, -18.3678, -9.8524, 0.2653, -17.4926, -9.8524, 0.5851, -17.8965, -9.3721, 1.3687, -18.3678, -9.1759, 0.7599, -18.3678, -9.523, 0.481, -17.1161, -9.7518, 0.2968, -17.2951, -9.4033, -0.0939, -17.6733, -9.523, 0.481, -17.1161, -9.4033, -0.0939, -17.6733, -9.2422, 0.603, -17.0465, -9.2422, 0.603, -17.0465, -9.4033, -0.0939, -17.6733, -8.8963, 0.6875, -17.1222, -8.8963, 0.6875, -17.1222, -8.7269, 0.366, -17.5515, -8.7269, 0.6875, -17.2203, -8.8963, 0.6875, -17.1222, -9.4033, -0.0939, -17.6733, -8.7269, 0.366, -17.5515, -9.7518, 0.2968, -17.2951, -9.1759, 0.7599, -18.3678, -9.4033, -0.0939, -17.6733, -9.7518, 0.2968, -17.2951, -9.8524, 0.2653, -17.4926, -9.1759, 0.7599, -18.3678, -9.1759, 0.7599, -18.3678, -9.1759, 0.8272, -19.0075, -8.8907, 0.0096, -18.9565, -9.1759, 0.8272, -19.0075, -9.3721, 1.436, -19.0075, -9.8524, 0.9386, -19.5124, -9.8524, 0.9386, -19.5124, -9.6224, 1.6525, -19.0075, -9.8524, 1.7269, -19.0075, -9.8524, 0.9386, -19.5124, -9.3721, 1.436, -19.0075, -9.6224, 1.6525, -19.0075, -9.8524, 0.9386, -19.5124, -9.8524, 0.0801, -20.4045, -9.1759, 0.8272, -19.0075, -9.4033, -0.0939, -17.6733, -9.0299, 0.1979, -18.1319, -8.7269, 0.366, -17.5515, -9.4033, -0.0939, -17.6733, -9.1759, 0.7599, -18.3678, -9.0299, 0.1979, -18.1319, -9.1759, 0.7599, -18.3678, -8.8907, 0.0096, -18.9565, -9.0299, 0.1979, -18.1319, -8.7269, 0.366, -17.5515, -9.0299, 0.1979, -18.1319, -8.8907, 0.0096, -18.9565, -10.9396, 0.0485, -15.3701, -10.2719, -0.0221, -15.0567, -10.9396, -0.0426, -15.0756, -10.9396, 0.0485, -15.3701, -10.2719, 0.0923, -15.3512, -10.2719, -0.0221, -15.0567, -11.4552, -0.3467, -15.2036, -10.9396, -0.0426, -15.0756, -11.4552, -0.2278, -14.9091, -11.4552, -0.3467, -15.2036, -10.9396, 0.0485, -15.3701, -10.9396, -0.0426, -15.0756, -12.6695, -0.4616, -14.8297, -11.4552, -0.2278, -14.9091, -12.6695, -0.2816, -14.5352, -12.6695, -0.4616, -14.8297, -11.4552, -0.3467, -15.2036, -11.4552, -0.2278, -14.9091, -13.477, -0.4687, -14.4211, -12.6695, -0.2816, -14.5352, -13.477, -0.285, -14.1266, -13.477, -0.4687, -14.4211, -12.6695, -0.4616, -14.8297, -12.6695, -0.2816, -14.5352, -14.0249, -0.3937, -14.2287, -13.477, -0.285, -14.1266, -14.0249, -0.2498, -13.9342, -14.0249, -0.3937, -14.2287, -13.477, -0.4687, -14.4211, -13.477, -0.285, -14.1266, -10.9396, -0.0426, -15.0756, -10.2719, 0.4126, -14.8183, -10.9396, 0.3921, -14.8372, -10.9396, -0.0426, -15.0756, -10.2719, -0.0221, -15.0567, -10.2719, 0.4126, -14.8183, -11.4552, -0.2278, -14.9091, -10.9396, 0.3921, -14.8372, -11.4552, 0.2069, -14.6706, -11.4552, -0.2278, -14.9091, -10.9396, -0.0426, -15.0756, -10.9396, 0.3921, -14.8372, -12.6695, -0.2816, -14.5352, -11.4552, 0.2069, -14.6706, -12.6695, 0.1531, -14.2967, -12.6695, -0.2816, -14.5352, -11.4552, -0.2278, -14.9091, -11.4552, 0.2069, -14.6706, -13.477, -0.285, -14.1266, -12.6695, 0.1531, -14.2967, -13.477, 0.1497, -13.8881, -13.477, -0.285, -14.1266, -12.6695, -0.2816, -14.5352, -12.6695, 0.1531, -14.2967, -14.0249, -0.2498, -13.9342, -13.477, 0.1497, -13.8881, -14.0249, 0.1849, -13.6957, -14.0249, -0.2498, -13.9342, -13.477, -0.285, -14.1266, -13.477, 0.1497, -13.8881, -10.9396, 0.3921, -14.8372, -10.2597, 1.3383, -14.062, -10.9147, 1.3178, -14.1931, -10.9396, 0.3921, -14.8372, -10.2719, 0.4126, -14.8183, -10.2597, 1.3383, -14.062, -11.4552, 0.2069, -14.6706, -10.9147, 1.3178, -14.1931, -11.4509, 1.1326, -14.1158, -11.4552, 0.2069, -14.6706, -10.9396, 0.3921, -14.8372, -10.9147, 1.3178, -14.1931, -12.6695, 0.1531, -14.2967, -11.4509, 1.1326, -14.1158, -12.7109, 1.0788, -13.9517, -12.6695, 0.1531, -14.2967, -11.4552, 0.2069, -14.6706, -11.4509, 1.1326, -14.1158, -13.477, 0.1497, -13.8881, -12.7109, 1.0788, -13.9517, -13.477, 1.0754, -13.5655, -13.477, 0.1497, -13.8881, -12.6695, 0.1531, -14.2967, -12.7109, 1.0788, -13.9517, -14.0249, 0.1849, -13.6957, -13.477, 1.0754, -13.5655, -14.0249, 1.1106, -13.3731, -14.0249, 0.1849, -13.6957, -13.477, 0.1497, -13.8881, -13.477, 1.0754, -13.5655, -10.9147, 1.3178, -14.1931, -10.4698, 2.1481, -12.6284, -10.9294, 2.2974, -13.3177, -10.9147, 1.3178, -14.1931, -10.2597, 1.3383, -14.062, -10.4698, 2.1481, -12.6284, -11.4509, 1.1326, -14.1158, -10.9294, 2.2974, -13.3177, -11.4709, 2.2612, -13.3364, -11.4509, 1.1326, -14.1158, -10.9147, 1.3178, -14.1931, -10.9294, 2.2974, -13.3177, -12.7109, 1.0788, -13.9517, -11.4709, 2.2612, -13.3364, -12.7401, 2.2506, -13.3978, -12.7109, 1.0788, -13.9517, -11.4509, 1.1326, -14.1158, -11.4709, 2.2612, -13.3364, -13.477, 1.0754, -13.5655, -12.7401, 2.2506, -13.3978, -13.477, 2.25, -13.285, -13.477, 1.0754, -13.5655, -12.7109, 1.0788, -13.9517, -12.7401, 2.2506, -13.3978, -14.0249, 1.1106, -13.3731, -13.477, 2.25, -13.285, -14.0249, 2.2569, -13.0926, -14.0249, 1.1106, -13.3731, -13.477, 1.0754, -13.5655, -13.477, 2.25, -13.285, -10.4698, 2.1481, -12.6284, -10.2597, 1.3383, -14.062, -9.638, 1.59, -12.6348, -9.638, 1.59, -12.6348, -9.7739, 0.7802, -13.9712, -9.5628, 1.1721, -13.2721, -9.638, 1.59, -12.6348, -10.2597, 1.3383, -14.062, -9.7739, 0.7802, -13.9712, -9.8524, 0.2484, -15.3512, -10.2719, -0.0221, -15.0567, -10.2719, 0.0923, -15.3512, -9.8524, 0.2484, -15.3512, -9.6282, 0.3533, -14.8467, -10.2719, -0.0221, -15.0567, -9.5207, 0.4826, -15.3512, -9.6282, 0.3533, -14.8467, -9.8524, 0.2484, -15.3512, -9.2573, 0.6192, -15.3512, -9.6282, 0.3533, -14.8467, -9.5207, 0.4826, -15.3512, -9.2573, 0.6192, -15.3512, -9.3134, 0.685, -14.5399, -9.6282, 0.3533, -14.8467, -9.2573, 0.6192, -15.3512, -8.8963, 0.6875, -15.3512, -9.3134, 0.685, -14.5399, -8.7269, 0.6875, -15.2532, -9.3134, 0.685, -14.5399, -8.8963, 0.6875, -15.3512, -8.7269, 0.6875, -15.2532, -8.6498, 0.6875, -14.9722, -9.3134, 0.685, -14.5399, -8.6498, 1.0106, -14.0169, -8.6498, 0.6875, -14.9722, -8.6498, 0.8139, -14.4805, -8.6498, 1.0106, -14.0169, -9.3134, 0.685, -14.5399, -8.6498, 0.6875, -14.9722, -10.2719, -0.0221, -15.0567, -9.3134, 0.685, -14.5399, -10.2719, 0.4126, -14.8183, -10.2719, -0.0221, -15.0567, -9.6282, 0.3533, -14.8467, -9.3134, 0.685, -14.5399, -10.2719, 0.4126, -14.8183, -9.7739, 0.7802, -13.9712, -10.2597, 1.3383, -14.062, -10.2719, 0.4126, -14.8183, -9.3134, 0.685, -14.5399, -9.7739, 0.7802, -13.9712, -9.3134, 0.685, -14.5399, -8.6498, 1.0106, -14.0169, -9.7739, 0.7802, -13.9712, -8.6498, 1.0106, -14.0169, -9.5628, 1.1721, -13.2721, -9.7739, 0.7802, -13.9712, -8.6498, 1.0106, -14.0169, -8.6831, 1.0106, -13.7024, -9.5628, 1.1721, -13.2721, -8.8791, 1.0106, -12.8019, -9.5628, 1.1721, -13.2721, -8.6831, 1.0106, -13.7024, -8.9463, 1.0435, -12.4891, -9.5628, 1.1721, -13.2721, -8.8791, 1.0106, -12.8019, -8.9463, 1.0435, -12.4891, -9.638, 1.59, -12.6348, -9.5628, 1.1721, -13.2721, -8.9828, 1.1188, -12.3189, -9.4481, 1.6154, -12.1931, -9.537, 1.4645, -12.3756, -8.9828, 1.1188, -12.3189, -9.0273, 1.3023, -12.1119, -9.4481, 1.6154, -12.1931, -9.0273, 1.3023, -12.1119, -9.5143, 1.7613, -11.8849, -9.4481, 1.6154, -12.1931, -9.0273, 1.3023, -12.1119, -9.0935, 1.4482, -11.8036, -9.5143, 1.7613, -11.8849, -9.0935, 1.4482, -11.8036, -9.5653, 1.8178, -11.6474, -9.5143, 1.7613, -11.8849, -9.0935, 1.4482, -11.8036, -9.1444, 1.5047, -11.5662, -9.5653, 1.8178, -11.6474, -9.537, 1.4645, -12.3756, -10.2952, 2.1949, -12.3257, -10.338, 2.175, -12.5112, -9.537, 1.4645, -12.3756, -9.4481, 1.6154, -12.1931, -10.2952, 2.1949, -12.3257, -9.4481, 1.6154, -12.1931, -10.3275, 2.3408, -12.0445, -10.2952, 2.1949, -12.3257, -9.4481, 1.6154, -12.1931, -9.5143, 1.7613, -11.8849, -10.3275, 2.3408, -12.0445, -9.5143, 1.7613, -11.8849, -10.3785, 2.3972, -11.807, -10.3275, 2.3408, -12.0445, -9.5143, 1.7613, -11.8849, -9.5653, 1.8178, -11.6474, -10.3785, 2.3972, -11.807, -8.9828, 1.1188, -12.3189, -9.638, 1.59, -12.6348, -8.9463, 1.0435, -12.4891, -8.9828, 1.1188, -12.3189, -9.537, 1.4645, -12.3756, -9.638, 1.59, -12.6348, -9.638, 1.59, -12.6348, -10.338, 2.175, -12.5112, -10.4698, 2.1481, -12.6284, -9.638, 1.59, -12.6348, -9.537, 1.4645, -12.3756, -10.338, 2.175, -12.5112, -10.9294, 2.2974, -13.3177, -11.1949, 2.5945, -12.1319, -11.5414, 2.2974, -13.0698, -10.9294, 2.2974, -13.3177, -10.4698, 2.1481, -12.6284, -11.1949, 2.5945, -12.1319, -11.5414, 2.2974, -13.0698, -12.1392, 2.5945, -12.2233, -12.584, 2.2974, -13.1187, -11.5414, 2.2974, -13.0698, -11.1949, 2.5945, -12.1319, -12.1392, 2.5945, -12.2233, -10.9294, 2.2974, -13.3177, -11.5414, 2.2974, -13.0698, -11.4709, 2.2612, -13.3364, -11.4709, 2.2612, -13.3364, -12.584, 2.2974, -13.1187, -12.7401, 2.2506, -13.3978, -11.4709, 2.2612, -13.3364, -11.5414, 2.2974, -13.0698, -12.584, 2.2974, -13.1187, -12.7401, 2.2506, -13.3978, -12.584, 2.2974, -13.1187, -13.477, 2.25, -13.285, -14.0249, 2.2569, -13.0926, -13.477, 2.25, -13.285, -13.1326, 2.3909, -12.4998, -13.1326, 2.3909, -12.4998, -12.584, 2.2974, -13.1187, -12.1392, 2.5945, -12.2233, -13.1326, 2.3909, -12.4998, -13.477, 2.25, -13.285, -12.584, 2.2974, -13.1187, -10.3275, 2.3408, -12.0445, -11.1949, 2.5945, -12.1319, -10.2952, 2.1949, -12.3257, -10.3275, 2.3408, -12.0445, -10.3785, 2.3972, -11.807, -11.1949, 2.5945, -12.1319, -10.2952, 2.1949, -12.3257, -10.4698, 2.1481, -12.6284, -10.338, 2.175, -12.5112, -10.2952, 2.1949, -12.3257, -11.1949, 2.5945, -12.1319, -10.4698, 2.1481, -12.6284, -9.1444, 1.5047, -11.5662, -9.5985, 1.5047, -11.4574, -9.5653, 1.8178, -11.6474, -9.1444, 1.5047, -11.5662, -9.2708, 1.5047, -11.3872, -9.5985, 1.5047, -11.4574, -10.3242, 1.6802, -11.6213, -9.5653, 1.8178, -11.6474, -9.5985, 1.5047, -11.4574, -10.3242, 1.6802, -11.6213, -10.3785, 2.3972, -11.807, -9.5653, 1.8178, -11.6474, -10.3242, 1.6802, -11.6213, -11.1949, 2.5945, -12.1319, -10.3785, 2.3972, -11.807, -10.3242, 1.6802, -11.6213, -11.0498, 1.9845, -11.7851, -11.1949, 2.5945, -12.1319, -11.9125, 2.3005, -11.9746, -11.1949, 2.5945, -12.1319, -11.0498, 1.9845, -11.7851, -11.9125, 2.3005, -11.9746, -12.1392, 2.5945, -12.2233, -11.1949, 2.5945, -12.1319, -11.9125, 2.3005, -11.9746, -12.8404, 2.441, -12.2164, -12.1392, 2.5945, -12.2233, -11.9125, 2.3005, -11.9746, -12.6998, 2.441, -12.138, -12.8404, 2.441, -12.2164, -12.1392, 2.5945, -12.2233, -12.8404, 2.441, -12.2164, -13.1326, 2.3909, -12.4998, -14.4577, 2.441, -12.2164, -13.1326, 2.3909, -12.4998, -12.8404, 2.441, -12.2164, -14.4577, 2.441, -12.2164, -14.4668, 1.8392, -12.5075, -13.1326, 2.3909, -12.4998, -14.0249, 2.2569, -13.0926, -13.1326, 2.3909, -12.4998, -14.4668, 1.8392, -12.5075, -14.0249, 1.1106, -13.3731, -14.4668, 1.8392, -12.5075, -14.4713, 1.1901, -13.1096, -14.0249, 1.1106, -13.3731, -14.0249, 2.2569, -13.0926, -14.4668, 1.8392, -12.5075, -14.0249, 0.1849, -13.6957, -14.4713, 1.1901, -13.1096, -14.4724, 0.5099, -13.2677, -14.0249, 0.1849, -13.6957, -14.0249, 1.1106, -13.3731, -14.4713, 1.1901, -13.1096, -14.0249, 0.1849, -13.6957, -14.5268, 0.0589, -13.4921, -14.0249, -0.2498, -13.9342, -14.0249, 0.1849, -13.6957, -14.4724, 0.5099, -13.2677, -14.5268, 0.0589, -13.4921, -14.6205, -0.083, -13.9415, -14.0249, -0.2498, -13.9342, -14.5268, 0.0589, -13.4921, -14.6205, -0.083, -13.9415, -14.0249, -0.3937, -14.2287, -14.0249, -0.2498, -13.9342, -14.6205, -0.083, -13.9415, -14.5268, 0.0589, -13.4921, -14.9911, 0.1705, -13.7393, -14.5268, 0.0589, -13.4921, -15.7369, 0.5218, -12.7952, -14.9911, 0.1705, -13.7393, -14.9911, 0.1705, -13.7393, -15.7369, 0.5218, -12.7952, -15.4397, 0.307, -13.4191, -15.4397, 0.307, -13.4191, -15.7369, 0.5218, -12.7952, -15.9761, 0.5411, -13.2, -15.7369, 0.5218, -12.7952, -14.4724, 0.5099, -13.2677, -15.6387, 0.9517, -12.6277, -15.7369, 0.5218, -12.7952, -14.5268, 0.0589, -13.4921, -14.4724, 0.5099, -13.2677, -16.2694, 2.441, -12.2164, -14.4668, 1.8392, -12.5075, -14.4577, 2.441, -12.2164, -16.2694, 2.441, -12.2164, -15.8638, 1.4387, -12.3172, -14.4668, 1.8392, -12.5075, -14.4668, 1.8392, -12.5075, -15.6387, 0.9517, -12.6277, -14.4713, 1.1901, -13.1096, -14.4668, 1.8392, -12.5075, -15.8638, 1.4387, -12.3172, -15.6387, 0.9517, -12.6277, -14.4724, 0.5099, -13.2677, -14.4713, 1.1901, -13.1096, -15.6387, 0.9517, -12.6277, -16.4769, 0.9264, -10.6781, -16.7304, 0.7581, -11.1296, -16.5621, 0.9264, -11.1296, -16.4769, 0.9264, -10.6781, -16.6452, 0.7581, -10.6781, -16.7304, 0.7581, -11.1296, -16.5632, 0.9264, -11.6465, -16.6481, 0.7581, -12.0979, -16.4798, 0.9264, -12.0979, -16.5632, 0.9264, -11.6465, -16.7315, 0.7581, -11.6465, -16.6481, 0.7581, -12.0979, -16.6452, 0.7581, -10.6781, -17.1231, 0.6178, -11.1296, -16.7304, 0.7581, -11.1296, -16.6452, 0.7581, -10.6781, -17.0379, 0.6178, -10.6781, -17.1231, 0.6178, -11.1296, -16.7315, 0.7581, -11.6465, -17.0408, 0.6178, -12.0979, -16.6481, 0.7581, -12.0979, -16.7315, 0.7581, -11.6465, -17.1242, 0.6178, -11.6465, -17.0408, 0.6178, -12.0979, -16.5621, 0.9264, -11.1296, -16.7315, 0.7581, -11.6465, -16.5632, 0.9264, -11.6465, -16.5621, 0.9264, -11.1296, -16.7304, 0.7581, -11.1296, -16.7315, 0.7581, -11.6465, -16.4798, 0.9264, -12.0979, -16.4377, 0.7581, -12.2164, -16.2694, 0.9264, -12.2164, -16.4798, 0.9264, -12.0979, -16.6481, 0.7581, -12.0979, -16.4377, 0.7581, -12.2164, -16.2661, 0.9264, -10.5596, -16.6452, 0.7581, -10.6781, -16.4769, 0.9264, -10.6781, -16.2661, 0.9264, -10.5596, -16.4343, 0.7581, -10.5596, -16.6452, 0.7581, -10.6781, -16.7304, 0.7581, -11.1296, -17.1242, 0.6178, -11.6465, -16.7315, 0.7581, -11.6465, -16.7304, 0.7581, -11.1296, -17.1231, 0.6178, -11.1296, -17.1242, 0.6178, -11.6465, -16.6481, 0.7581, -12.0979, -16.8304, 0.6178, -12.2164, -16.4377, 0.7581, -12.2164, -16.6481, 0.7581, -12.0979, -17.0408, 0.6178, -12.0979, -16.8304, 0.6178, -12.2164, -16.4343, 0.7581, -10.5596, -17.0379, 0.6178, -10.6781, -16.6452, 0.7581, -10.6781, -16.4343, 0.7581, -10.5596, -16.827, 0.6178, -10.5596, -17.0379, 0.6178, -10.6781, -15.8638, 1.4387, -12.3172, -15.944, 0.8557, -12.3583, -15.6387, 0.9517, -12.6277, -15.8638, 1.4387, -12.3172, -16.2694, 0.9264, -12.2164, -15.944, 0.8557, -12.3583, -15.8638, 1.4387, -12.3172, -16.2694, 2.441, -12.2164, -16.2694, 0.9264, -12.2164, -15.6387, 0.9517, -12.6277, -15.944, 0.8557, -12.3583, -15.7369, 0.5218, -12.7952, -15.7369, 0.5218, -12.7952, -15.944, 0.8557, -12.3583, -15.9761, 0.5411, -13.2, -15.9761, 0.5411, -13.2, -16.2694, 0.9264, -12.2164, -16.2421, 0.7912, -12.6443, -15.9761, 0.5411, -13.2, -15.944, 0.8557, -12.3583, -16.2694, 0.9264, -12.2164, -15.9761, 0.5411, -13.2, -16.2421, 0.7912, -12.6443, -16.7661, 0.8337, -13.0821, -16.2694, 0.9264, -12.2164, -16.4377, 0.7581, -12.2164, -16.2421, 0.7912, -12.6443, -16.4377, 0.7581, -12.2164, -16.7661, 0.8337, -13.0821, -16.2421, 0.7912, -12.6443, -16.4377, 0.7581, -12.2164, -16.8304, 0.6178, -12.2164, -16.7661, 0.8337, -13.0821, -16.7661, 0.8337, -13.0821, -16.8304, 0.6178, -12.2164, -17.2342, 0.9312, -13.0821, -17.1242, 0.6178, -11.6465, -17.3167, 0.6259, -12.0979, -17.0408, 0.6178, -12.0979, -17.1242, 0.6178, -11.6465, -17.4001, 0.6259, -11.6465, -17.3167, 0.6259, -12.0979, -17.0379, 0.6178, -10.6781, -17.399, 0.6259, -11.1296, -17.1231, 0.6178, -11.1296, -17.0379, 0.6178, -10.6781, -17.3139, 0.6259, -10.6781, -17.399, 0.6259, -11.1296, -17.1231, 0.6178, -11.1296, -17.4001, 0.6259, -11.6465, -17.1242, 0.6178, -11.6465, -17.1231, 0.6178, -11.1296, -17.399, 0.6259, -11.1296, -17.4001, 0.6259, -11.6465, -17.4001, 0.6259, -11.6465, -17.5116, 1.0317, -12.0979, -17.3167, 0.6259, -12.0979, -17.4001, 0.6259, -11.6465, -17.5615, 1.0317, -11.6465, -17.5116, 1.0317, -12.0979, -17.3139, 0.6259, -10.6781, -17.5609, 1.0317, -11.1296, -17.399, 0.6259, -11.1296, -17.3139, 0.6259, -10.6781, -17.5099, 1.0317, -10.6781, -17.5609, 1.0317, -11.1296, -17.399, 0.6259, -11.1296, -17.5615, 1.0317, -11.6465, -17.4001, 0.6259, -11.6465, -17.399, 0.6259, -11.1296, -17.5609, 1.0317, -11.1296, -17.5615, 1.0317, -11.6465, -17.5615, 1.0317, -11.6465, -17.885, 1.259, -12.0979, -17.5116, 1.0317, -12.0979, -17.5615, 1.0317, -11.6465, -17.9348, 1.259, -11.6465, -17.885, 1.259, -12.0979, -17.5099, 1.0317, -10.6781, -17.9342, 1.259, -11.1296, -17.5609, 1.0317, -11.1296, -17.5099, 1.0317, -10.6781, -17.8832, 1.259, -10.6781, -17.9342, 1.259, -11.1296, -17.5609, 1.0317, -11.1296, -17.9348, 1.259, -11.6465, -17.5615, 1.0317, -11.6465, -17.5609, 1.0317, -11.1296, -17.9342, 1.259, -11.1296, -17.9348, 1.259, -11.6465, -17.9348, 1.259, -11.6465, -18.2745, 1.2508, -12.0979, -17.885, 1.259, -12.0979, -17.9348, 1.259, -11.6465, -18.3244, 1.2508, -11.6465, -18.2745, 1.2508, -12.0979, -17.8832, 1.259, -10.6781, -18.3237, 1.2508, -11.1296, -17.9342, 1.259, -11.1296, -17.8832, 1.259, -10.6781, -18.2728, 1.2508, -10.6781, -18.3237, 1.2508, -11.1296, -17.9342, 1.259, -11.1296, -18.3244, 1.2508, -11.6465, -17.9348, 1.259, -11.6465, -17.9342, 1.259, -11.1296, -18.3237, 1.2508, -11.1296, -18.3244, 1.2508, -11.6465, -18.3244, 1.2508, -11.6465, -18.7696, 0.8207, -12.0979, -18.2745, 1.2508, -12.0979, -18.3244, 1.2508, -11.6465, -18.8194, 0.8207, -11.6465, -18.7696, 0.8207, -12.0979, -18.2728, 1.2508, -10.6781, -18.8188, 0.8207, -11.1296, -18.3237, 1.2508, -11.1296, -18.2728, 1.2508, -10.6781, -18.7678, 0.8207, -10.6781, -18.8188, 0.8207, -11.1296, -18.3237, 1.2508, -11.1296, -18.8194, 0.8207, -11.6465, -18.3244, 1.2508, -11.6465, -18.3237, 1.2508, -11.1296, -18.8188, 0.8207, -11.1296, -18.8194, 0.8207, -11.6465, -18.2745, 1.2508, -12.0979, -17.885, 1.1535, -12.3008, -17.885, 1.259, -12.0979, -18.2745, 1.2508, -12.0979, -18.1925, 1.1064, -12.327, -17.885, 1.1535, -12.3008, -17.885, 1.259, -12.0979, -17.5116, 0.9262, -12.3008, -17.5116, 1.0317, -12.0979, -17.885, 1.259, -12.0979, -17.885, 1.1535, -12.3008, -17.5116, 0.9262, -12.3008, -18.1925, 1.1064, -12.327, -17.885, 0.91, -12.6823, -17.885, 1.1535, -12.3008, -18.1925, 1.1064, -12.327, -18.2745, 0.9019, -12.6823, -17.885, 0.91, -12.6823, -17.885, 1.1535, -12.3008, -17.5116, 0.6827, -12.6823, -17.5116, 0.9262, -12.3008, -17.885, 1.1535, -12.3008, -17.885, 0.91, -12.6823, -17.5116, 0.6827, -12.6823, -17.0408, 0.6178, -12.0979, -17.1458, 0.5604, -12.3172, -16.8304, 0.6178, -12.2164, -17.0408, 0.6178, -12.0979, -17.3167, 0.6259, -12.0979, -17.1458, 0.5604, -12.3172, -16.8304, 0.6178, -12.2164, -17.1458, 0.5604, -12.3172, -17.2342, 0.9312, -13.0821, -17.3167, 0.6259, -12.0979, -17.5116, 0.9262, -12.3008, -17.1458, 0.5604, -12.3172, -17.3167, 0.6259, -12.0979, -17.5116, 1.0317, -12.0979, -17.5116, 0.9262, -12.3008, -17.5116, 0.9262, -12.3008, -17.2342, 0.9312, -13.0821, -17.1458, 0.5604, -12.3172, -17.5116, 0.9262, -12.3008, -17.5116, 0.6827, -12.6823, -17.2342, 0.9312, -13.0821, -17.7998, 0.8532, -13.0821, -17.5116, 0.6827, -12.6823, -17.885, 0.91, -12.6823, -17.7998, 0.8532, -13.0821, -17.2342, 0.9312, -13.0821, -17.5116, 0.6827, -12.6823, -18.1005, 0.78, -13.0821, -17.885, 0.91, -12.6823, -18.2745, 0.9019, -12.6823, -18.1005, 0.78, -13.0821, -17.7998, 0.8532, -13.0821, -17.885, 0.91, -12.6823, -18.1005, 0.78, -13.0821, -18.587, 0.8516, -12.4638, -18.4951, 0.78, -13.0185, -18.1005, 0.78, -13.0821, -18.2745, 0.9019, -12.6823, -18.587, 0.8516, -12.4638, -18.4951, 0.78, -13.0185, -18.587, 0.8516, -12.4638, -18.7395, 0.78, -12.9258, -18.7395, 0.78, -12.9258, -18.587, 0.8516, -12.4638, -18.945, 0.78, -12.7769, -18.945, 0.78, -12.7769, -18.587, 0.8516, -12.4638, -19.0409, 0.78, -12.6287, -19.0409, 0.78, -12.6287, -18.587, 0.8516, -12.4638, -19.1327, 0.78, -12.3273, -18.1925, 1.1064, -12.327, -18.587, 0.8516, -12.4638, -18.2745, 0.9019, -12.6823, -18.1925, 1.1064, -12.327, -18.2745, 1.2508, -12.0979, -18.587, 0.8516, -12.4638, -18.7696, 0.8207, -12.0979, -18.587, 0.8516, -12.4638, -18.2745, 1.2508, -12.0979, -19.1327, 0.78, -12.3273, -18.7696, 0.8207, -12.0979, -19.1327, 0.78, -11.7093, -18.587, 0.8516, -12.4638, -18.7696, 0.8207, -12.0979, -19.1327, 0.78, -12.3273, -18.9605, 0.78, -11.5683, -18.7696, 0.8207, -12.0979, -18.8194, 0.8207, -11.6465, -18.9605, 0.78, -11.5683, -19.1327, 0.78, -11.7093, -18.7696, 0.8207, -12.0979, -18.9605, 0.78, -10.8367, -18.8194, 0.8207, -11.6465, -18.8188, 0.8207, -11.1296, -18.9605, 0.78, -10.8367, -18.9605, 0.78, -11.5683, -18.8194, 0.8207, -11.6465, -18.7678, 0.8207, -10.6781, -18.9605, 0.78, -10.8367, -18.8188, 0.8207, -11.1296, -18.7678, 0.8207, -10.6781, -18.9605, 0.78, -10.1051, -18.9605, 0.78, -10.8367, -18.2728, 1.2508, -10.6781, -18.7678, 0.6563, -10.3846, -18.7678, 0.8207, -10.6781, -18.2728, 1.2508, -10.6781, -18.2728, 1.0865, -10.3846, -18.7678, 0.6563, -10.3846, -17.8832, 1.259, -10.6781, -18.2728, 1.0865, -10.3846, -18.2728, 1.2508, -10.6781, -17.8832, 1.259, -10.6781, -17.8832, 1.0946, -10.3846, -18.2728, 1.0865, -10.3846, -17.5099, 1.0317, -10.6781, -17.8832, 1.0946, -10.3846, -17.8832, 1.259, -10.6781, -17.5099, 1.0317, -10.6781, -17.5099, 0.8673, -10.3846, -17.8832, 1.0946, -10.3846, -17.3139, 0.6259, -10.6781, -17.5099, 0.8673, -10.3846, -17.5099, 1.0317, -10.6781, -17.3139, 0.6259, -10.6781, -17.3139, 0.4616, -10.3846, -17.5099, 0.8673, -10.3846, -18.2728, 1.0865, -10.3846, -18.7678, 0.5272, -10.0206, -18.7678, 0.6563, -10.3846, -18.2728, 1.0865, -10.3846, -18.2728, 0.9573, -10.0206, -18.7678, 0.5272, -10.0206, -17.8832, 1.0946, -10.3846, -18.2728, 0.9573, -10.0206, -18.2728, 1.0865, -10.3846, -17.8832, 1.0946, -10.3846, -17.8832, 0.9654, -10.0206, -18.2728, 0.9573, -10.0206, -17.5099, 0.8673, -10.3846, -17.8832, 0.9654, -10.0206, -17.8832, 1.0946, -10.3846, -17.5099, 0.8673, -10.3846, -17.5099, 0.7382, -10.0206, -17.8832, 0.9654, -10.0206, -17.3139, 0.4616, -10.3846, -17.5099, 0.7382, -10.0206, -17.5099, 0.8673, -10.3846, -17.3139, 0.4616, -10.3846, -17.3139, 0.3324, -10.0206, -17.5099, 0.7382, -10.0206, -18.2728, 0.9573, -10.0206, -18.7678, 0.2532, -9.6958, -18.7678, 0.5272, -10.0206, -18.2728, 0.9573, -10.0206, -18.2728, 0.6833, -9.6958, -18.7678, 0.2532, -9.6958, -17.8832, 0.9654, -10.0206, -18.2728, 0.6833, -9.6958, -18.2728, 0.9573, -10.0206, -17.8832, 0.9654, -10.0206, -17.8832, 0.6915, -9.6958, -18.2728, 0.6833, -9.6958, -17.5099, 0.7382, -10.0206, -17.8832, 0.6915, -9.6958, -17.8832, 0.9654, -10.0206, -17.5099, 0.7382, -10.0206, -17.5099, 0.4642, -9.6958, -17.8832, 0.6915, -9.6958, -17.3139, 0.3324, -10.0206, -17.5099, 0.4642, -9.6958, -17.5099, 0.7382, -10.0206, -17.3139, 0.3324, -10.0206, -17.3139, 0.0584, -9.6958, -17.5099, 0.4642, -9.6958, -18.2728, 0.6833, -9.6958, -18.7678, 0.2001, -9.3983, -18.7678, 0.2532, -9.6958, -18.2728, 0.6833, -9.6958, -18.2728, 0.3883, -9.3983, -18.7678, 0.2001, -9.3983, -17.8832, 0.6915, -9.6958, -18.2728, 0.3883, -9.3983, -18.2728, 0.6833, -9.6958, -17.8832, 0.6915, -9.6958, -17.8832, 0.3918, -9.3983, -18.2728, 0.3883, -9.3983, -17.5099, 0.4642, -9.6958, -17.8832, 0.3918, -9.3983, -17.8832, 0.6915, -9.6958, -17.5099, 0.4642, -9.6958, -17.5099, 0.2924, -9.3983, -17.8832, 0.3918, -9.3983, -17.3139, 0.0584, -9.6958, -17.5099, 0.2924, -9.3983, -17.5099, 0.4642, -9.6958, -17.3139, 0.0584, -9.6958, -17.3139, 0.1149, -9.3983, -17.5099, 0.2924, -9.3983, -18.9605, 0.78, -10.1051, -18.7678, 0.8207, -10.6781, -18.7678, 0.6563, -10.3846, -19.0484, 0.78, -9.9532, -18.7678, 0.6563, -10.3846, -18.7678, 0.5272, -10.0206, -19.0484, 0.78, -9.9532, -18.9605, 0.78, -10.1051, -18.7678, 0.6563, -10.3846, -19.0484, 0.6981, -9.3797, -18.7678, 0.5272, -10.0206, -18.7678, 0.2532, -9.6958, -19.0484, 0.6981, -9.3797, -19.0484, 0.78, -9.9532, -18.7678, 0.5272, -10.0206, -19.0484, 0.5108, -8.888, -18.7678, 0.2532, -9.6958, -18.7678, 0.2001, -9.3983, -19.0484, 0.5108, -8.888, -19.0484, 0.6981, -9.3797, -18.7678, 0.2532, -9.6958, -18.0135, -0.051, -6.1401, -16.4399, -0.0931, -5.9385, -17.6415, -0.0807, -5.904, -18.0135, -0.051, -6.1401, -16.3046, -0.149, -6.1892, -16.4399, -0.0931, -5.9385, -16.4054, -0.051, -5.5547, -16.3046, -0.149, -6.1892, -15.9806, -0.051, -6.1428, -16.4054, -0.051, -5.5547, -16.4399, -0.0931, -5.9385, -16.3046, -0.149, -6.1892, -15.4547, -0.051, -6.4308, -15.9806, -0.051, -6.1428, -16.3046, -0.149, -6.1892, -17.6415, -0.0807, -5.904, -16.6753, -0.2472, -5.6464, -17.8768, -0.2349, -5.6119, -17.6415, -0.0807, -5.904, -16.4399, -0.0931, -5.9385, -16.6753, -0.2472, -5.6464, -17.7034, -0.051, -5.2478, -16.6753, -0.2472, -5.6464, -16.8774, -0.051, -5.2478, -17.7034, -0.051, -5.2478, -17.8768, -0.2349, -5.6119, -16.6753, -0.2472, -5.6464, -16.8774, -0.051, -5.2478, -16.4399, -0.0931, -5.9385, -16.4054, -0.051, -5.5547, -16.8774, -0.051, -5.2478, -16.6753, -0.2472, -5.6464, -16.4399, -0.0931, -5.9385, -17.7034, -0.051, -5.2478, -18.2779, -0.051, -5.3141, -17.8768, -0.2349, -5.6119, -17.7034, -0.051, -5.2478, -17.9954, -0.051, -5.2422, -18.2779, -0.051, -5.3141, -18.2779, -0.051, -5.3141, -18.7416, -0.051, -5.6005, -17.8768, -0.2349, -5.6119, -18.2779, -0.051, -5.3141, -18.5195, -0.051, -5.4388, -18.7416, -0.051, -5.6005, -18.7416, -0.051, -5.6005, -18.6817, -0.056, -6.1023, -18.3189, -0.051, -5.8653, -18.7416, -0.051, -5.6005, -18.9441, -0.051, -5.8695, -18.6817, -0.056, -6.1023, -18.7416, -0.051, -5.6005, -18.3189, -0.051, -5.8653, -17.8768, -0.2349, -5.6119, -18.0135, -0.051, -6.1401, -17.8768, -0.2349, -5.6119, -18.3189, -0.051, -5.8653, -18.0135, -0.051, -6.1401, -17.6415, -0.0807, -5.904, -17.8768, -0.2349, -5.6119, -18.3505, -0.0577, -6.9208, -18.2502, 0.2138, -6.1401, -18.5544, 0.2071, -6.8067, -18.3505, -0.0577, -6.9208, -18.0135, -0.051, -6.1401, -18.2502, 0.2138, -6.1401, -17.7038, 0.0399, -9.1318, -18.5922, 0.2205, -8.3771, -17.9668, 0.2916, -9.0982, -17.7038, 0.0399, -9.1318, -18.3661, -0.0443, -8.3373, -18.5922, 0.2205, -8.3771, -18.5544, 0.2071, -6.8067, -18.3291, 0.2476, -6.1401, -18.6247, 0.2409, -6.7768, -18.5544, 0.2071, -6.8067, -18.2502, 0.2138, -6.1401, -18.3291, 0.2476, -6.1401, -17.9668, 0.2916, -9.0982, -18.6652, 0.2543, -8.3993, -18.3291, 0.2476, -9.0769, -17.9668, 0.2916, -9.0982, -18.5922, 0.2205, -8.3771, -18.6652, 0.2543, -8.3993, -18.6247, 0.2409, -6.7768, -18.577, 0.0729, -6.1401, -18.7522, 0.0729, -6.7504, -18.6247, 0.2409, -6.7768, -18.3291, 0.2476, -6.1401, -18.577, 0.0729, -6.1401, -18.3291, 0.2476, -9.0769, -18.8825, 0.0796, -8.5145, -18.577, 0.0729, -9.0769, -18.3291, 0.2476, -9.0769, -18.6652, 0.2543, -8.3993, -18.8825, 0.0796, -8.5145, -18.3661, -0.0443, -8.3373, -18.6559, 0.2138, -7.5538, -18.5922, 0.2205, -8.3771, -18.3661, -0.0443, -8.3373, -18.4192, -0.051, -7.5538, -18.6559, 0.2138, -7.5538, -18.6652, 0.2543, -8.3993, -18.9828, 0.0729, -7.5538, -18.8825, 0.0796, -8.5145, -18.6652, 0.2543, -8.3993, -18.7348, 0.2476, -7.5538, -18.9828, 0.0729, -7.5538, -18.5922, 0.2205, -8.3771, -18.7348, 0.2476, -7.5538, -18.6652, 0.2543, -8.3993, -18.5922, 0.2205, -8.3771, -18.6559, 0.2138, -7.5538, -18.7348, 0.2476, -7.5538, -18.7348, 0.2476, -7.5538, -18.7522, 0.0729, -6.7504, -18.9828, 0.0729, -7.5538, -18.7348, 0.2476, -7.5538, -18.6247, 0.2409, -6.7768, -18.7522, 0.0729, -6.7504, -18.6559, 0.2138, -7.5538, -18.6247, 0.2409, -6.7768, -18.7348, 0.2476, -7.5538, -18.6559, 0.2138, -7.5538, -18.5544, 0.2071, -6.8067, -18.6247, 0.2409, -6.7768, -18.4192, -0.051, -7.5538, -18.5544, 0.2071, -6.8067, -18.6559, 0.2138, -7.5538, -18.4192, -0.051, -7.5538, -18.3505, -0.0577, -6.9208, -18.5544, 0.2071, -6.8067, -18.3291, 0.2476, -6.1401, -18.2502, 0.2138, -6.1401, -18.3189, -0.051, -5.8653, -18.3189, -0.051, -5.8653, -18.2502, 0.2138, -6.1401, -18.0135, -0.051, -6.1401, -18.3291, 0.2476, -6.1401, -18.3189, -0.051, -5.8653, -18.577, 0.0729, -6.1401, -18.3189, -0.051, -5.8653, -18.6817, -0.056, -6.1023, -18.577, 0.0729, -6.1401, -19.0484, -0.051, -6.0678, -18.6817, -0.056, -6.1023, -18.9441, -0.051, -5.8695, -18.577, 0.0729, -6.1401, -19.0484, -0.051, -6.0678, -18.7522, 0.0729, -6.7504, -18.577, 0.0729, -6.1401, -18.6817, -0.056, -6.1023, -19.0484, -0.051, -6.0678, -19.0484, -0.051, -7.4951, -18.7522, 0.0729, -6.7504, -19.0484, -0.051, -6.0678, -19.0484, -0.051, -7.4951, -18.9828, 0.0729, -7.5538, -18.7522, 0.0729, -6.7504, -19.0484, 0.0309, -7.9282, -18.9828, 0.0729, -7.5538, -19.0484, -0.051, -7.4951, -18.9828, 0.0729, -7.5538, -19.0484, 0.0309, -7.9282, -18.8825, 0.0796, -8.5145, -19.0484, 0.0309, -7.9282, -19.0484, 0.2416, -8.4432, -18.8825, 0.0796, -8.5145, -19.0484, 0.2416, -8.4432, -19.0484, 0.5108, -8.888, -18.8825, 0.0796, -8.5145, -18.8825, 0.0796, -8.5145, -18.7678, 0.2001, -9.3983, -18.577, 0.0729, -9.0769, -18.8825, 0.0796, -8.5145, -19.0484, 0.5108, -8.888, -18.7678, 0.2001, -9.3983, -18.2728, 0.3883, -9.3983, -18.577, 0.0729, -9.0769, -18.7678, 0.2001, -9.3983, -18.2728, 0.3883, -9.3983, -18.3291, 0.2476, -9.0769, -18.577, 0.0729, -9.0769, -17.8832, 0.3918, -9.3983, -18.3291, 0.2476, -9.0769, -18.2728, 0.3883, -9.3983, -17.8832, 0.3918, -9.3983, -17.9668, 0.2916, -9.0982, -18.3291, 0.2476, -9.0769, -17.5099, 0.2924, -9.3983, -17.9668, 0.2916, -9.0982, -17.8832, 0.3918, -9.3983, -17.5099, 0.2924, -9.3983, -17.7038, 0.0399, -9.1318, -17.9668, 0.2916, -9.0982, -17.3139, 0.1149, -9.3983, -17.7038, 0.0399, -9.1318, -17.5099, 0.2924, -9.3983, -6.378, -0.7919, -5.9806, -6.9371, 0.0172, -5.7663, -6.9126, -0.8849, -5.8956, -6.378, -0.7919, -5.9806, -6.398, -0.0518, -5.8745, -6.9371, 0.0172, -5.7663, -6.3211, -1.109, -6.0859, -6.9126, -0.8849, -5.8956, -6.8433, -1.2714, -6.024, -6.3211, -1.109, -6.0859, -6.378, -0.7919, -5.9806, -6.9126, -0.8849, -5.8956, -6.2552, -0.8777, -6.4346, -6.8433, -1.2714, -6.024, -6.763, -0.9895, -6.449, -6.2552, -0.8777, -6.4346, -6.3211, -1.109, -6.0859, -6.8433, -1.2714, -6.024, -6.1893, -0.8498, -6.7831, -6.763, -0.9895, -6.449, -6.6827, -0.9555, -6.8738, -6.1893, -0.8498, -6.7831, -6.2552, -0.8777, -6.4346, -6.763, -0.9895, -6.449, -6.131, 0.1954, -7.1081, -6.6827, -0.9555, -6.8738, -6.6116, 0.3186, -7.2699, -6.131, 0.1954, -7.1081, -6.1893, -0.8498, -6.7831, -6.6827, -0.9555, -6.8738, -6.0168, 0.9152, -7.9293, -6.6116, 0.3186, -7.2699, -6.4724, 1.1959, -8.2709, -6.0168, 0.9152, -7.9293, -6.131, 0.1954, -7.1081, -6.6116, 0.3186, -7.2699, -6.9126, -0.8849, -5.8956, -7.8234, 0.1418, -5.6481, -7.7911, -1.0528, -5.8193, -6.9126, -0.8849, -5.8956, -6.9371, 0.0172, -5.7663, -7.8234, 0.1418, -5.6481, -6.8433, -1.2714, -6.024, -7.7911, -1.0528, -5.8193, -7.6992, -1.5646, -5.9893, -6.8433, -1.2714, -6.024, -6.9126, -0.8849, -5.8956, -7.7911, -1.0528, -5.8193, -6.763, -0.9895, -6.449, -7.6992, -1.5646, -5.9893, -7.5929, -1.1913, -6.5521, -6.763, -0.9895, -6.449, -6.8433, -1.2714, -6.024, -7.6992, -1.5646, -5.9893, -6.6827, -0.9555, -6.8738, -7.5929, -1.1913, -6.5521, -7.4866, -1.1463, -7.1146, -6.6827, -0.9555, -6.8738, -6.763, -0.9895, -6.449, -7.5929, -1.1913, -6.5521, -6.6116, 0.3186, -7.2699, -7.4866, -1.1463, -7.1146, -7.3924, 0.5409, -7.6392, -6.6116, 0.3186, -7.2699, -6.6827, -0.9555, -6.8738, -7.4866, -1.1463, -7.1146, -6.4724, 1.1959, -8.2709, -7.3924, 0.5409, -7.6392, -7.2082, 1.7027, -8.9646, -6.4724, 1.1959, -8.2709, -6.6116, 0.3186, -7.2699, -7.3924, 0.5409, -7.6392, -7.7911, -1.0528, -5.8193, -9.2888, 0.1448, -5.8766, -9.2562, -1.0569, -6.0489, -7.7911, -1.0528, -5.8193, -7.8234, 0.1418, -5.6481, -9.2888, 0.1448, -5.8766, -7.6992, -1.5646, -5.9893, -9.2562, -1.0569, -6.0489, -9.1638, -1.5718, -6.2199, -7.6992, -1.5646, -5.9893, -7.7911, -1.0528, -5.8193, -9.2562, -1.0569, -6.0489, -7.5929, -1.1913, -6.5521, -9.1638, -1.5718, -6.2199, -9.0569, -1.1962, -6.7861, -7.5929, -1.1913, -6.5521, -7.6992, -1.5646, -5.9893, -9.1638, -1.5718, -6.2199, -7.4866, -1.1463, -7.1146, -9.0569, -1.1962, -6.7861, -8.9499, -1.151, -7.3519, -7.4866, -1.1463, -7.1146, -7.5929, -1.1913, -6.5521, -9.0569, -1.1962, -6.7861, -7.3924, 0.5409, -7.6392, -8.9499, -1.151, -7.3519, -8.8552, 0.5463, -7.8796, -7.3924, 0.5409, -7.6392, -7.4866, -1.1463, -7.1146, -8.9499, -1.151, -7.3519, -7.2082, 1.7027, -8.9646, -8.8552, 0.5463, -7.8796, -8.6698, 1.7151, -9.2131, -7.2082, 1.7027, -8.9646, -7.3924, 0.5409, -7.6392, -8.8552, 0.5463, -7.8796, -9.2562, -1.0569, -6.0489, -10.2529, 0.0413, -6.7403, -10.1915, -0.9175, -6.866, -9.2562, -1.0569, -6.0489, -9.2888, 0.1448, -5.8766, -10.2529, 0.0413, -6.7403, -9.1638, -1.5718, -6.2199, -10.1915, -0.9175, -6.866, -10.0842, -1.3283, -6.978, -9.1638, -1.5718, -6.2199, -9.2562, -1.0569, -6.0489, -10.1915, -0.9175, -6.866, -9.0569, -1.1962, -6.7861, -10.0842, -1.3283, -6.978, -9.8822, -1.0286, -7.391, -9.0569, -1.1962, -6.7861, -9.1638, -1.5718, -6.2199, -10.0842, -1.3283, -6.978, -8.9499, -1.151, -7.3519, -9.8822, -1.0286, -7.391, -9.6803, -0.9925, -7.8037, -8.9499, -1.151, -7.3519, -9.0569, -1.1962, -6.7861, -9.8822, -1.0286, -7.391, -8.8552, 0.5463, -7.8796, -9.6803, -0.9925, -7.8037, -9.4959, 0.3617, -8.1897, -8.8552, 0.5463, -7.8796, -8.9499, -1.151, -7.3519, -9.6803, -0.9925, -7.8037, -8.6698, 1.7151, -9.2131, -9.4959, 0.3617, -8.1897, -9.0714, 1.2942, -9.1764, -8.6698, 1.7151, -9.2131, -8.8552, 0.5463, -7.8796, -9.4959, 0.3617, -8.1897, -10.1915, -0.9175, -6.866, -10.5628, -0.1376, -8.1737, -10.5283, -0.6763, -8.2442, -10.1915, -0.9175, -6.866, -10.2529, 0.0413, -6.7403, -10.5628, -0.1376, -8.1737, -10.0842, -1.3283, -6.978, -10.5283, -0.6763, -8.2442, -10.4681, -0.907, -8.3071, -10.0842, -1.3283, -6.978, -10.1915, -0.9175, -6.866, -10.5283, -0.6763, -8.2442, -9.8822, -1.0286, -7.391, -10.4681, -0.907, -8.3071, -10.3546, -0.7387, -8.5391, -9.8822, -1.0286, -7.391, -10.0842, -1.3283, -6.978, -10.4681, -0.907, -8.3071, -9.6803, -0.9925, -7.8037, -10.3546, -0.7387, -8.5391, -10.2412, -0.7184, -8.771, -9.6803, -0.9925, -7.8037, -9.8822, -1.0286, -7.391, -10.3546, -0.7387, -8.5391, -9.4959, 0.3617, -8.1897, -10.2412, -0.7184, -8.771, -10.1376, 0.0423, -8.9878, -9.4959, 0.3617, -8.1897, -9.6803, -0.9925, -7.8037, -10.2412, -0.7184, -8.771, -9.0714, 1.2942, -9.1764, -10.1376, 0.0423, -8.9878, -9.8991, 0.5661, -9.5421, -9.0714, 1.2942, -9.1764, -9.4959, 0.3617, -8.1897, -10.1376, 0.0423, -8.9878, -10.7817, -0.051, -8.9606, -11.9739, -0.9932, -9.3677, -10.7817, -0.9932, -8.9606, -10.7817, -0.051, -8.9606, -11.9739, -0.051, -9.3677, -11.9739, -0.9932, -9.3677, -11.9739, -0.051, -9.3677, -15.4547, -0.9886, -9.3677, -11.9739, -0.9932, -9.3677, -11.9739, -0.051, -9.3677, -15.4547, -0.051, -9.3677, -15.4547, -0.9886, -9.3677, -10.5779, -1.017, -10.1482, -11.9739, -0.9932, -9.3677, -11.3036, -1.017, -10.3121, -10.5779, -1.017, -10.1482, -10.7817, -0.9932, -8.9606, -11.9739, -0.9932, -9.3677, -12.0093, -1.017, -10.4785, -11.9739, -0.9932, -9.3677, -15.4547, -0.9886, -9.3677, -12.0093, -1.017, -10.4785, -11.3036, -1.017, -10.3121, -11.9739, -0.9932, -9.3677, -12.6968, -1.017, -10.6381, -12.0093, -1.017, -10.4785, -12.837, -1.017, -10.5596, -16.2661, -1.017, -10.5596, -12.837, -1.017, -10.5596, -15.4547, -0.9886, -9.3677, -15.4547, -0.9886, -9.3677, -12.837, -1.017, -10.5596, -12.0093, -1.017, -10.4785, -10.5628, -0.1376, -8.1737, -10.7817, -0.9932, -8.9606, -10.5283, -0.6763, -8.2442, -10.5628, -0.1376, -8.1737, -10.7817, -0.051, -8.9606, -10.7817, -0.9932, -8.9606, -10.3546, -0.7387, -8.5391, -10.7817, -0.9932, -8.9606, -10.5779, -1.017, -10.1482, -10.3546, -0.7387, -8.5391, -10.5283, -0.6763, -8.2442, -10.7817, -0.9932, -8.9606, -10.3546, -0.7387, -8.5391, -10.4681, -0.907, -8.3071, -10.5283, -0.6763, -8.2442, -10.1376, 0.0423, -8.9878, -10.3737, -0.3974, -9.5327, -10.2575, 0.0051, -9.5843, -10.1376, 0.0423, -8.9878, -10.2412, -0.7184, -8.771, -10.3737, -0.3974, -9.5327, -9.8991, 0.5661, -9.5421, -10.2575, 0.0051, -9.5843, -9.9712, 0.2823, -9.7255, -9.8991, 0.5661, -9.5421, -10.1376, 0.0423, -8.9878, -10.2575, 0.0051, -9.5843, -10.2575, 0.0051, -9.5843, -10.3871, -0.3703, -10.1747, -10.25, 0.0288, -10.1658, -10.2575, 0.0051, -9.5843, -10.3737, -0.3974, -9.5327, -10.3871, -0.3703, -10.1747, -9.9712, 0.2823, -9.7255, -10.25, 0.0288, -10.1658, -9.924, 0.2979, -10.1654, -9.9712, 0.2823, -9.7255, -10.2575, 0.0051, -9.5843, -10.25, 0.0288, -10.1658, -10.3871, -0.3703, -10.1747, -10.3737, -0.3974, -9.5327, -10.5779, -1.017, -10.1482, -10.2412, -0.7184, -8.771, -10.5779, -1.017, -10.1482, -10.3737, -0.3974, -9.5327, -10.2412, -0.7184, -8.771, -10.3546, -0.7387, -8.5391, -10.5779, -1.017, -10.1482, -9.0714, 1.2942, -9.1764, -8.5098, 1.5047, -9.6963, -8.6698, 1.7151, -9.2131, -9.0714, 1.2942, -9.1764, -9.5245, 1.5047, -9.9141, -8.5098, 1.5047, -9.6963, -9.9712, 0.2823, -9.7255, -9.924, 0.2979, -10.1654, -9.8522, 1.5047, -9.9844, -9.9712, 0.2823, -9.7255, -9.8522, 1.5047, -9.9844, -9.8991, 0.5661, -9.5421, -9.5245, 1.5047, -9.9141, -9.8991, 0.5661, -9.5421, -9.8522, 1.5047, -9.9844, -9.5245, 1.5047, -9.9141, -9.0714, 1.2942, -9.1764, -9.8991, 0.5661, -9.5421, -7.5155, 1.5047, -9.4828, -8.6698, 1.7151, -9.2131, -8.5098, 1.5047, -9.6963, -7.5155, 1.5047, -9.4828, -7.2082, 1.7027, -8.9646, -8.6698, 1.7151, -9.2131, -7.2182, 1.4858, -9.5038, -7.2082, 1.7027, -8.9646, -7.5155, 1.5047, -9.4828, -6.7655, 1.3729, -9.732, -7.2082, 1.7027, -8.9646, -7.2182, 1.4858, -9.5038, -6.7655, 1.3729, -9.732, -6.4724, 1.1959, -8.2709, -7.2082, 1.7027, -8.9646, -6.4747, 1.2052, -9.7082, -6.4724, 1.1959, -8.2709, -6.7655, 1.3729, -9.732, -6.2402, 1.1141, -9.6889, -6.4724, 1.1959, -8.2709, -6.4747, 1.2052, -9.7082, -5.6775, 1.0717, -9.6661, -5.7637, 0.7674, -9.552, -5.9344, 0.7674, -9.6661, -5.6775, 1.0717, -9.6661, -5.5067, 1.0717, -9.552, -5.7637, 0.7674, -9.552, -5.5067, 1.0717, -9.552, -5.6487, 0.8296, -9.3106, -5.7637, 0.7674, -9.552, -5.5067, 1.0717, -9.552, -5.3917, 1.1338, -9.3106, -5.6487, 0.8296, -9.3106, -5.6775, 1.0717, -9.6661, -5.9344, 0.7674, -9.6661, -6.2402, 1.1141, -9.6889, -5.7637, 0.7674, -9.552, -6.4724, 1.1959, -8.2709, -5.9344, 0.7674, -9.6661, -5.7637, 0.7674, -9.552, -5.6487, 0.8296, -9.3106, -6.4724, 1.1959, -8.2709, -6.4724, 1.1959, -8.2709, -6.2402, 1.1141, -9.6889, -5.9344, 0.7674, -9.6661, -6.0168, 0.9152, -7.9293, -5.3917, 1.1584, -8.7722, -5.2415, 0.7415, -8.0363, -6.0168, 0.9152, -7.9293, -5.6487, 0.8296, -9.3106, -5.3917, 1.1584, -8.7722, -6.0168, 0.9152, -7.9293, -6.4724, 1.1959, -8.2709, -5.6487, 0.8296, -9.3106, -5.3917, 1.1584, -8.7722, -5.3917, 1.1338, -9.3106, -5.3917, 1.3776, -8.7722, -5.3917, 1.1584, -8.7722, -5.6487, 0.8296, -9.3106, -5.3917, 1.1338, -9.3106, -16.4343, 0.7581, -10.5596, -16.827, -0.7952, -10.5596, -16.827, 0.6178, -10.5596, -16.4343, 0.7581, -10.5596, -16.4343, -0.655, -10.5596, -16.827, -0.7952, -10.5596, -17.3139, 0.0584, -9.6958, -17.0766, -0.2636, -9.0509, -17.3139, 0.1149, -9.3983, -17.3139, 0.0584, -9.6958, -17.0907, -0.3201, -9.6958, -17.0766, -0.2636, -9.0509, -17.3139, 0.3324, -10.0206, -17.0907, -0.3201, -9.6958, -17.3139, 0.0584, -9.6958, -17.3139, 0.3324, -10.0206, -17.0907, -0.0461, -10.0206, -17.0907, -0.3201, -9.6958, -17.0907, -0.3201, -9.6958, -17.0496, -0.6626, -9.0509, -17.0766, -0.2636, -9.0509, -17.0907, -0.3201, -9.6958, -17.0637, -0.719, -9.6958, -17.0496, -0.6626, -9.0509, -17.0907, -0.0461, -10.0206, -17.0637, -0.719, -9.6958, -17.0907, -0.3201, -9.6958, -17.0907, -0.0461, -10.0206, -17.0637, -0.4451, -10.0206, -17.0637, -0.719, -9.6958, -17.0637, -0.719, -9.6958, -17.395, -0.6964, -9.3983, -17.0496, -0.6626, -9.0509, -17.0637, -0.719, -9.6958, -17.395, -0.7528, -9.6958, -17.395, -0.6964, -9.3983, -17.0637, -0.4451, -10.0206, -17.395, -0.7528, -9.6958, -17.0637, -0.719, -9.6958, -17.0637, -0.4451, -10.0206, -17.395, -0.4789, -10.0206, -17.395, -0.7528, -9.6958, -17.0907, -0.0461, -10.0206, -16.9275, -0.4703, -10.1896, -17.0637, -0.4451, -10.0206, -17.0907, -0.0461, -10.0206, -16.9762, 0.2471, -10.1896, -16.9275, -0.4703, -10.1896, -16.827, 0.6178, -10.5596, -16.9275, -0.4703, -10.1896, -16.9762, 0.2471, -10.1896, -16.827, 0.6178, -10.5596, -16.827, -0.7952, -10.5596, -16.9275, -0.4703, -10.1896, -17.3139, 0.3324, -10.0206, -16.9762, 0.2471, -10.1896, -17.0907, -0.0461, -10.0206, -17.3139, 0.3324, -10.0206, -17.3139, 0.4616, -10.3846, -16.9762, 0.2471, -10.1896, -17.0379, 0.6178, -10.6781, -17.3139, 0.4616, -10.3846, -17.3139, 0.6259, -10.6781, -17.0379, 0.6178, -10.6781, -16.9762, 0.2471, -10.1896, -17.3139, 0.4616, -10.3846, -16.827, 0.6178, -10.5596, -16.9762, 0.2471, -10.1896, -17.0379, 0.6178, -10.6781, -16.4343, 0.7581, -10.5596, -16.2661, -1.017, -10.5596, -16.4343, -0.655, -10.5596, -16.4343, 0.7581, -10.5596, -16.2661, 0.9264, -10.5596, -16.2661, -1.017, -10.5596, -17.0833, -0.9826, -10.2592, -16.9275, -0.4703, -10.1896, -16.827, -0.7952, -10.5596, -16.4343, -0.655, -10.5596, -17.0833, -0.9826, -10.2592, -16.827, -0.7952, -10.5596, -16.4343, -0.655, -10.5596, -16.2661, -1.017, -10.5596, -17.0833, -0.9826, -10.2592, -17.0637, -0.4451, -10.0206, -17.0833, -0.9826, -10.2592, -17.395, -0.4789, -10.0206, -16.9275, -0.4703, -10.1896, -17.0833, -0.9826, -10.2592, -17.0637, -0.4451, -10.0206, -18.4472, -0.9252, -9.7577, -17.395, -0.4789, -10.0206, -17.0833, -0.9826, -10.2592, -15.4547, -0.9886, -9.3677, -16.6534, -0.9656, -9.1783, -16.2661, -1.017, -10.5596, -16.2661, -1.017, -10.5596, -18.4472, -0.9252, -9.7577, -17.0833, -0.9826, -10.2592, -16.2661, -1.017, -10.5596, -16.6534, -0.9656, -9.1783, -18.4472, -0.9252, -9.7577, -17.395, -0.7528, -9.6958, -18.4472, -0.9252, -9.7577, -17.395, -0.6964, -9.3983, -17.395, -0.4789, -10.0206, -18.4472, -0.9252, -9.7577, -17.395, -0.7528, -9.6958, -17.0496, -0.6626, -9.0509, -18.4472, -0.9252, -9.7577, -16.6534, -0.9656, -9.1783, -17.0496, -0.6626, -9.0509, -17.395, -0.6964, -9.3983, -18.4472, -0.9252, -9.7577, -15.4547, -0.051, -9.3677, -17.7038, -0.8931, -9.1318, -15.4547, -0.9886, -9.3677, -15.4547, -0.051, -9.3677, -17.7038, 0.0399, -9.1318, -17.7038, -0.8931, -9.1318, -17.7038, 0.0399, -9.1318, -17.3139, 0.1149, -9.3983, -17.0766, -0.2636, -9.0509, -10.7817, -0.051, -8.9606, -10.5628, -0.1376, -8.1737, -10.8423, -0.051, -7.7351, -10.8423, -0.051, -7.7351, -10.2529, 0.0413, -6.7403, -10.8981, -0.051, -6.6053, -10.8423, -0.051, -7.7351, -10.5628, -0.1376, -8.1737, -10.2529, 0.0413, -6.7403, -10.2529, 0.0413, -6.7403, -10.5546, 0.3533, -5.8975, -10.8981, -0.051, -6.6053, -9.2888, 0.1448, -5.8766, -10.5546, 0.3533, -5.8975, -10.2529, 0.0413, -6.7403, -9.2888, 0.1448, -5.8766, -9.6199, 0.3533, -5.4789, -10.5546, 0.3533, -5.8975, -7.8234, 0.1418, -5.6481, -9.6199, 0.3533, -5.4789, -9.2888, 0.1448, -5.8766, -7.8234, 0.1418, -5.6481, -8.6856, 0.1763, -5.4399, -9.6199, 0.3533, -5.4789, -11.4301, -0.051, -5.5915, -10.8981, -0.051, -6.6053, -10.5546, 0.3533, -5.8975, -11.4301, -0.051, -5.5915, -11.702, -0.051, -6.2445, -10.8981, -0.051, -6.6053, -11.9739, -0.051, -6.4308, -10.8981, -0.051, -6.6053, -11.702, -0.051, -6.2445, -10.0806, 0.0384, -5.0294, -10.5546, 0.3533, -5.8975, -9.6199, 0.3533, -5.4789, -10.0806, 0.0384, -5.0294, -11.4301, -0.051, -5.5915, -10.5546, 0.3533, -5.8975, -9.0806, 0.2091, -5.0294, -9.6199, 0.3533, -5.4789, -8.6856, 0.1763, -5.4399, -9.0806, 0.2091, -5.0294, -10.0806, 0.0384, -5.0294, -9.6199, 0.3533, -5.4789, -9.0806, 0.2091, -5.0294, -7.8234, 0.1418, -5.6481, -8.2107, 0.4286, -5.0294, -9.0806, 0.2091, -5.0294, -8.6856, 0.1763, -5.4399, -7.8234, 0.1418, -5.6481, -8.2107, 0.4286, -5.0294, -6.9371, 0.0172, -5.7663, -7.3571, 0.6562, -5.0294, -8.2107, 0.4286, -5.0294, -7.8234, 0.1418, -5.6481, -6.9371, 0.0172, -5.7663, -7.3571, 0.6562, -5.0294, -6.9371, 0.0172, -5.7663, -6.7717, 0.8839, -5.0294, -6.7717, 0.8839, -5.0294, -6.398, -0.0518, -5.8745, -6.56, 0.3538, -5.5082, -6.7717, 0.8839, -5.0294, -6.9371, 0.0172, -5.7663, -6.398, -0.0518, -5.8745, -3.7071, -0.0518, -5.83, -4.0858, 1.2149, -5.6707, -4.921, -0.0518, -5.9012, -4.921, -0.0518, -5.9012, -5.3917, 1.2149, -5.6707, -5.1382, 0.5326, -5.7948, -4.921, -0.0518, -5.9012, -4.0858, 1.2149, -5.6707, -5.3917, 1.2149, -5.6707, -3.5799, 0.9352, -5.4295, -4.0858, 1.3635, -5.3319, -3.8691, 0.6889, -5.5952, -3.8691, 0.6889, -5.5952, -4.0858, 1.4341, -5.6707, -4.0858, 1.2149, -5.6707, -3.8691, 0.6889, -5.5952, -4.0858, 1.3635, -5.3319, -4.0858, 1.4341, -5.6707, -3.6019, 1.2901, -5.1102, -4.0858, 1.3635, -5.3319, -3.5799, 0.9352, -5.4295, -3.6019, 1.2901, -5.1102, -3.9891, 1.3635, -5.1767, -4.0858, 1.3635, -5.3319, -3.6019, 1.2901, -5.1102, -3.5799, 0.9352, -5.4295, -3.0541, 0.9795, -5.1102, -3.7071, -0.0518, -5.83, -3.8691, 0.6889, -5.5952, -4.0858, 1.2149, -5.6707, -3.7071, -0.0518, -5.83, -3.4905, 0.385, -5.7248, -3.8691, 0.6889, -5.5952, -3.5799, 0.9352, -5.4295, -3.4905, 0.385, -5.7248, -3.2087, 0.5815, -5.4928, -3.5799, 0.9352, -5.4295, -3.8691, 0.6889, -5.5952, -3.4905, 0.385, -5.7248, -2.8698, 0.0289, -5.6051, -3.4905, 0.385, -5.7248, -3.7071, -0.0518, -5.83, -2.8698, 0.0289, -5.6051, -3.2087, 0.5815, -5.4928, -3.4905, 0.385, -5.7248, -2.8698, 0.0289, -5.6051, -2.687, 0.9286, -5.1102, -3.2087, 0.5815, -5.4928, -2.687, 0.9286, -5.1102, -3.5799, 0.9352, -5.4295, -3.2087, 0.5815, -5.4928, -2.687, 0.9286, -5.1102, -3.0541, 0.9795, -5.1102, -3.5799, 0.9352, -5.4295, -6.0076, 1.3229, -5.0294, -6.3205, 0.5624, -5.4305, -6.0197, 0.7413, -5.4305, -6.0076, 1.3229, -5.0294, -6.3084, 1.144, -5.0294, -6.3205, 0.5624, -5.4305, -5.7311, 1.3635, -5.0294, -6.0197, 0.7413, -5.4305, -5.7433, 0.7819, -5.4305, -5.7311, 1.3635, -5.0294, -6.0076, 1.3229, -5.0294, -6.0197, 0.7413, -5.4305, -6.7717, 0.8839, -5.0294, -6.3205, 0.5624, -5.4305, -6.3084, 1.144, -5.0294, -6.398, -0.0518, -5.8745, -6.7717, 0.8839, -5.0294, -6.56, 0.3538, -5.5082, -6.398, -0.0518, -5.8745, -6.3205, 0.5624, -5.4305, -6.7717, 0.8839, -5.0294, -6.398, -0.0518, -5.8745, -6.0197, 0.7413, -5.4305, -6.3205, 0.5624, -5.4305, -6.398, -0.0518, -5.8745, -4.921, -0.0518, -5.9012, -6.0197, 0.7413, -5.4305, -6.0197, 0.7413, -5.4305, -5.1382, 0.5326, -5.7948, -5.7433, 0.7819, -5.4305, -6.0197, 0.7413, -5.4305, -4.921, -0.0518, -5.9012, -5.1382, 0.5326, -5.7948, -5.3917, 1.2149, -5.6707, -5.7433, 0.7819, -5.4305, -5.1382, 0.5326, -5.7948, -5.3917, 1.2149, -5.6707, -5.5731, 1.1388, -5.4256, -5.7433, 0.7819, -5.4305, -5.4884, 1.3635, -5.1767, -5.7433, 0.7819, -5.4305, -5.5731, 1.1388, -5.4256, -5.4884, 1.3635, -5.1767, -5.7311, 1.3635, -5.0294, -5.7433, 0.7819, -5.4305, -5.4884, 1.3635, -5.1767, -5.5731, 1.1388, -5.4256, -5.3917, 1.3635, -5.3319, -5.3917, 1.2149, -5.6707, -5.3917, 1.3635, -5.3319, -5.5731, 1.1388, -5.4256, -5.3917, 1.2149, -5.6707, -5.3917, 1.4341, -5.6707, -5.3917, 1.3635, -5.3319, -3.4008, 1.3635, -1.692, -3.3197, 1.2499, -0.3875, -3.5306, 1.3635, -0.3875, -3.4008, 1.3635, -1.692, -3.1899, 1.2499, -1.692, -3.3197, 1.2499, -0.3875, -3.5306, 1.3635, -2.9575, -3.1899, 1.2499, -1.692, -3.4008, 1.3635, -1.692, -3.5306, 1.3635, -2.9575, -3.3197, 1.2499, -2.9575, -3.1899, 1.2499, -1.692, -3.1899, 1.2499, -1.692, -3.2061, 1.0228, -0.3875, -3.3197, 1.2499, -0.3875, -3.1899, 1.2499, -1.692, -3.0763, 1.0228, -1.692, -3.2061, 1.0228, -0.3875, -3.3197, 1.2499, -2.9575, -3.0763, 1.0228, -1.692, -3.1899, 1.2499, -1.692, -3.3197, 1.2499, -2.9575, -3.2061, 1.0228, -2.9575, -3.0763, 1.0228, -1.692, -3.0763, 1.0228, -1.692, -2.5815, 0.0006, -0.3875, -3.2061, 1.0228, -0.3875, -3.0763, 1.0228, -1.692, -2.4517, 0.0006, -1.692, -2.5815, 0.0006, -0.3875, -3.2061, 1.0228, -2.9575, -2.4517, 0.0006, -1.692, -3.0763, 1.0228, -1.692, -3.2061, 1.0228, -2.9575, -2.5815, 0.2541, -2.8026, -2.4517, 0.0006, -1.692, -3.0541, 0.9795, -3.7743, -2.0169, 0.5771, -3.2459, -2.5815, 0.6939, -3.2459, -3.0541, 0.9795, -3.7743, -2.687, 0.9286, -3.7743, -2.0169, 0.5771, -3.2459, -1.667, 0.9286, -3.7743, -1.3744, 0.908, -3.2459, -2.0169, 0.5771, -3.2459, -1.667, 0.9286, -3.7743, -1.2784, 0.9286, -3.6199, -1.3744, 0.908, -3.2459, -2.4517, 0.0006, -1.692, -2.0169, -0.1161, -0.3875, -2.5815, 0.0006, -0.3875, -2.4517, 0.0006, -1.692, -1.8871, -0.1161, -1.692, -2.0169, -0.1161, -0.3875, -2.5815, 0.2541, -2.8026, -1.8871, -0.1161, -1.692, -2.4517, 0.0006, -1.692, -2.5815, 0.2541, -2.8026, -2.0169, 0.1373, -2.8026, -1.8871, -0.1161, -1.692, -1.8871, -0.1161, -1.692, -1.3744, 0.2148, -0.3875, -2.0169, -0.1161, -0.3875, -1.8871, -0.1161, -1.692, -1.2446, 0.2148, -1.692, -1.3744, 0.2148, -0.3875, -2.0169, 0.1373, -2.8026, -1.2446, 0.2148, -1.692, -1.8871, -0.1161, -1.692, -2.0169, 0.1373, -2.8026, -1.3744, 0.4683, -2.8026, -1.2446, 0.2148, -1.692, -2.0169, 0.1373, -2.8026, -1.3744, 0.908, -3.2459, -1.3744, 0.4683, -2.8026, -2.0169, 0.1373, -2.8026, -2.0169, 0.5771, -3.2459, -1.3744, 0.908, -3.2459, -2.5815, 0.2541, -2.8026, -2.0169, 0.5771, -3.2459, -2.0169, 0.1373, -2.8026, -2.5815, 0.2541, -2.8026, -2.5815, 0.6939, -3.2459, -2.0169, 0.5771, -3.2459, -1.667, 0.9286, -3.7743, -2.0169, 0.5771, -3.2459, -2.687, 0.9286, -3.7743, -3.9891, 1.3635, -3.6935, -3.6661, 1.0872, -3.2781, -3.9494, 1.3635, -3.6117, -3.9494, 1.3635, -3.6117, -3.6661, 1.0872, -3.2781, -3.9494, 1.3635, -3.0393, -3.9494, 1.3635, -3.0393, -3.6661, 1.0872, -3.2781, -3.5306, 1.3635, -2.9575, -3.9891, 1.3635, -3.6935, -3.6019, 1.2901, -3.7743, -3.6661, 1.0872, -3.2781, -3.6019, 1.2901, -3.7743, -3.1166, 0.7968, -3.2582, -3.6661, 1.0872, -3.2781, -3.6019, 1.2901, -3.7743, -3.0541, 0.9795, -3.7743, -3.1166, 0.7968, -3.2582, -3.5306, 1.3635, -2.9575, -3.1166, 0.7968, -3.2582, -3.3197, 1.2499, -2.9575, -3.5306, 1.3635, -2.9575, -3.6661, 1.0872, -3.2781, -3.1166, 0.7968, -3.2582, -3.3197, 1.2499, -2.9575, -3.1166, 0.7968, -3.2582, -3.2061, 1.0228, -2.9575, -2.5815, 0.6939, -3.2459, -3.1166, 0.7968, -3.2582, -3.0541, 0.9795, -3.7743, -3.2061, 1.0228, -2.9575, -2.5815, 0.6939, -3.2459, -2.5815, 0.2541, -2.8026, -3.2061, 1.0228, -2.9575, -3.1166, 0.7968, -3.2582, -2.5815, 0.6939, -3.2459, -1.2784, 0.9286, -3.6199, -1.3744, 0.4683, -2.8026, -1.3744, 0.908, -3.2459, -1.2784, 0.9286, -3.6199, -0.9999, 0.7253, -2.9792, -1.3744, 0.4683, -2.8026, -0.9999, 0.7253, -2.9792, -1.2446, 0.2148, -1.692, -1.3744, 0.4683, -2.8026, -0.9999, 0.7253, -2.9792, -0.9999, 0.2915, -1.9489, -1.2446, 0.2148, -1.692, -0.9999, 0.0813, -1.2914, -1.2446, 0.2148, -1.692, -0.9999, 0.2915, -1.9489, -0.9999, -0.0067, -0.7694, -1.2446, 0.2148, -1.692, -0.9999, 0.0813, -1.2914, -0.9999, -0.0067, -0.7694, -1.3744, 0.2148, -0.3875, -1.2446, 0.2148, -1.692, -7.592, 1.3635, -1.6554, -7.7575, 1.2856, -2.9575, -7.3486, 1.3635, -2.9575, -7.592, 1.3635, -1.6554, -8.0008, 1.2856, -1.6554, -7.7575, 1.2856, -2.9575, -7.3486, 1.3635, -0.3875, -8.0008, 1.2856, -1.6554, -7.592, 1.3635, -1.6554, -7.3486, 1.3635, -0.3875, -7.7575, 1.2856, -0.3875, -8.0008, 1.2856, -1.6554, -8.0008, 1.2856, -1.6554, -8.333, 0.4972, -2.9256, -7.7575, 1.2856, -2.9575, -8.0008, 1.2856, -1.6554, -8.5763, 0.4972, -1.6234, -8.333, 0.4972, -2.9256, -7.7575, 1.2856, -0.3875, -8.5763, 0.4972, -1.6234, -8.0008, 1.2856, -1.6554, -7.7575, 1.2856, -0.3875, -8.333, 0.4972, -0.3556, -8.5763, 0.4972, -1.6234, -8.5763, 0.4972, -1.6234, -9.139, -0.3982, -2.9815, -8.333, 0.4972, -2.9256, -8.5763, 0.4972, -1.6234, -9.3823, -0.3982, -1.6793, -9.139, -0.3982, -2.9815, -8.333, 0.4972, -0.3556, -9.3823, -0.3982, -1.6793, -8.5763, 0.4972, -1.6234, -8.333, 0.4972, -0.3556, -9.139, -0.3982, -0.4115, -9.3823, -0.3982, -1.6793, -9.3823, -0.3982, -1.6793, -9.5175, -0.4664, -3.0102, -9.139, -0.3982, -2.9815, -9.3823, -0.3982, -1.6793, -9.7609, -0.4664, -1.7081, -9.5175, -0.4664, -3.0102, -9.139, -0.3982, -0.4115, -9.7609, -0.4664, -1.7081, -9.3823, -0.3982, -1.6793, -9.139, -0.3982, -0.4115, -9.5175, -0.4664, -0.4402, -9.7609, -0.4664, -1.7081, -9.7609, -0.4664, -1.7081, -9.7989, -0.3106, -3.033, -9.5175, -0.4664, -3.0102, -9.7609, -0.4664, -1.7081, -10.0422, -0.3106, -1.7309, -9.7989, -0.3106, -3.033, -9.5175, -0.4664, -0.4402, -10.0422, -0.3106, -1.7309, -9.7609, -0.4664, -1.7081, -9.5175, -0.4664, -0.4402, -9.7989, -0.3106, -0.463, -10.0422, -0.3106, -1.7309, -15.5131, -0.051, -0.4069, -15.8518, -0.051, -2.159, -15.4547, -0.051, -2.4393, -15.5131, -0.051, -0.4069, -15.8518, -0.051, -0.734, -15.8518, -0.051, -2.159, -10.14, -0.051, -0.512, -10.0422, -0.3106, -1.7309, -9.7989, -0.3106, -0.463, -10.14, -0.051, -2.4393, -10.0422, -0.3106, -1.7309, -10.14, -0.051, -0.512, -9.7989, -0.3106, -3.033, -10.14, -0.051, -2.4393, -10.14, -0.051, -3.0467, -9.7989, -0.3106, -3.033, -10.0422, -0.3106, -1.7309, -10.14, -0.051, -2.4393, -8.2107, 0.4286, -3.8408, -8.91, 0.0461, -3.3842, -9.0806, 0.2091, -3.8408, -8.2107, 0.4286, -3.8408, -8.0252, 0.7274, -3.3429, -8.91, 0.0461, -3.3842, -7.3571, 0.6562, -3.8408, -8.0252, 0.7274, -3.3429, -8.2107, 0.4286, -3.8408, -7.3571, 0.6562, -3.8408, -7.4907, 0.7469, -3.3124, -8.0252, 0.7274, -3.3429, -6.7717, 0.8839, -3.8408, -7.4907, 0.7469, -3.3124, -7.3571, 0.6562, -3.8408, -6.7717, 0.8839, -3.8408, -6.7519, 0.9415, -3.2727, -7.4907, 0.7469, -3.3124, -6.3084, 1.144, -3.8408, -6.7519, 0.9415, -3.2727, -6.7717, 0.8839, -3.8408, -6.7519, 0.9415, -3.2727, -6.3084, 1.144, -3.8408, -5.7218, 1.1156, -3.2114, -6.3084, 1.144, -3.8408, -6.0076, 1.3229, -3.8408, -5.7218, 1.1156, -3.2114, -5.4884, 1.3635, -3.6935, -6.0076, 1.3229, -3.8408, -5.7311, 1.3635, -3.8408, -5.4884, 1.3635, -3.6935, -5.7218, 1.1156, -3.2114, -6.0076, 1.3229, -3.8408, -5.4884, 1.3635, -3.6935, -5.458, 1.3635, -3.0393, -5.7218, 1.1156, -3.2114, -5.4884, 1.3635, -3.6935, -5.458, 1.3635, -3.6117, -5.458, 1.3635, -3.0393, -5.458, 1.3635, -3.0393, -6.7519, 0.9415, -3.2727, -5.7218, 1.1156, -3.2114, -5.458, 1.3635, -3.0393, -7.3486, 1.3635, -2.9575, -6.7519, 0.9415, -3.2727, -7.3486, 1.3635, -2.9575, -7.4907, 0.7469, -3.3124, -6.7519, 0.9415, -3.2727, -7.3486, 1.3635, -2.9575, -7.7575, 1.2856, -2.9575, -7.4907, 0.7469, -3.3124, -7.7575, 1.2856, -2.9575, -8.0252, 0.7274, -3.3429, -7.4907, 0.7469, -3.3124, -7.7575, 1.2856, -2.9575, -8.333, 0.4972, -2.9256, -8.0252, 0.7274, -3.3429, -8.333, 0.4972, -2.9256, -8.91, 0.0461, -3.3842, -8.0252, 0.7274, -3.3429, -8.333, 0.4972, -2.9256, -9.139, -0.3982, -2.9815, -8.91, 0.0461, -3.3842, -10.0806, 0.0384, -3.8408, -9.6661, -0.4087, -3.3801, -10.121, -0.1508, -3.4022, -10.0806, 0.0384, -3.8408, -9.0806, 0.2091, -3.8408, -9.6661, -0.4087, -3.3801, -9.6661, -0.4087, -3.3801, -9.0806, 0.2091, -3.8408, -9.3516, -0.3711, -3.3748, -9.0806, 0.2091, -3.8408, -8.91, 0.0461, -3.3842, -9.3516, -0.3711, -3.3748, -9.5175, -0.4664, -3.0102, -8.91, 0.0461, -3.3842, -9.139, -0.3982, -2.9815, -9.5175, -0.4664, -3.0102, -9.3516, -0.3711, -3.3748, -8.91, 0.0461, -3.3842, -9.7989, -0.3106, -3.033, -9.3516, -0.3711, -3.3748, -9.5175, -0.4664, -3.0102, -9.7989, -0.3106, -3.033, -9.6661, -0.4087, -3.3801, -9.3516, -0.3711, -3.3748, -10.14, -0.051, -3.0467, -9.6661, -0.4087, -3.3801, -9.7989, -0.3106, -3.033, -10.14, -0.051, -3.0467, -10.121, -0.1508, -3.4022, -9.6661, -0.4087, -3.3801, -10.0806, 0.0384, -3.8408, -10.121, -0.1508, -3.4022, -11.4301, -0.051, -3.2787, -11.4301, -0.051, -3.2787, -10.14, -0.051, -3.0467, -11.702, -0.051, -2.6257, -11.4301, -0.051, -3.2787, -10.121, -0.1508, -3.4022, -10.14, -0.051, -3.0467, -9.7989, -0.3106, -0.463, -10.14, -0.2835, -0.018, -10.14, -0.051, -0.512, -9.7989, -0.3106, -0.463, -9.7989, -0.5431, 0.0309, -10.14, -0.2835, -0.018, -10.14, -0.051, -0.512, -11.9739, -0.2835, -0.018, -11.9739, -0.051, -0.512, -10.14, -0.051, -0.512, -10.14, -0.2835, -0.018, -11.9739, -0.2835, -0.018, -15.5131, -0.051, -0.4069, -15.8518, -0.2835, -0.2399, -15.8518, -0.051, -0.734, -15.5131, -0.051, -0.4069, -15.5131, -0.2835, 0.0871, -15.8518, -0.2835, -0.2399, -11.9739, -0.051, -0.512, -15.5131, -0.2835, 0.0871, -15.5131, -0.051, -0.4069, -11.9739, -0.051, -0.512, -11.9739, -0.2835, -0.018, -15.5131, -0.2835, 0.0871, -9.5175, -0.4664, -0.4402, -9.7989, -0.5431, 0.0309, -9.7989, -0.3106, -0.463, -9.5175, -0.4664, -0.4402, -9.5175, -0.6989, 0.0537, -9.7989, -0.5431, 0.0309, -9.139, -0.3982, -0.4115, -9.5175, -0.6989, 0.0537, -9.5175, -0.4664, -0.4402, -9.139, -0.3982, -0.4115, -9.139, -0.6307, 0.0825, -9.5175, -0.6989, 0.0537, -8.333, 0.4972, -0.3556, -9.139, -0.6307, 0.0825, -9.139, -0.3982, -0.4115, -8.333, 0.4972, -0.3556, -8.333, 0.2647, 0.1384, -9.139, -0.6307, 0.0825, -7.7575, 1.2856, -0.3875, -8.333, 0.2647, 0.1384, -8.333, 0.4972, -0.3556, -7.7575, 1.2856, -0.3875, -7.7575, 1.0531, 0.1064, -8.333, 0.2647, 0.1384, -7.3486, 1.3635, -0.3875, -7.7575, 1.0531, 0.1064, -7.7575, 1.2856, -0.3875, -7.3486, 1.3635, -0.3875, -7.3486, 1.131, 0.1064, -7.7575, 1.0531, 0.1064, -1.3744, 0.2148, -0.3875, -2.0169, -0.3486, 0.1064, -2.0169, -0.1161, -0.3875, -1.3744, 0.2148, -0.3875, -1.3744, -0.0176, 0.1064, -2.0169, -0.3486, 0.1064, -2.0169, -0.1161, -0.3875, -2.5815, -0.2318, 0.1064, -2.5815, 0.0006, -0.3875, -2.0169, -0.1161, -0.3875, -2.0169, -0.3486, 0.1064, -2.5815, -0.2318, 0.1064, -2.5815, 0.0006, -0.3875, -3.2061, 0.7903, 0.1064, -3.2061, 1.0228, -0.3875, -2.5815, 0.0006, -0.3875, -2.5815, -0.2318, 0.1064, -3.2061, 0.7903, 0.1064, -3.2061, 1.0228, -0.3875, -3.3197, 1.0174, 0.1064, -3.3197, 1.2499, -0.3875, -3.2061, 1.0228, -0.3875, -3.2061, 0.7903, 0.1064, -3.3197, 1.0174, 0.1064, -3.3197, 1.2499, -0.3875, -3.5306, 1.131, 0.1064, -3.5306, 1.3635, -0.3875, -3.3197, 1.2499, -0.3875, -3.3197, 1.0174, 0.1064, -3.5306, 1.131, 0.1064, -3.5306, 1.3635, -0.3875, -7.3486, 1.131, 0.1064, -7.3486, 1.3635, -0.3875, -3.5306, 1.3635, -0.3875, -3.5306, 1.131, 0.1064, -7.3486, 1.131, 0.1064, -9.7989, -0.5431, 0.0309, -10.728, -0.6213, 0.4854, -10.14, -0.2835, -0.018, -9.7989, -0.5431, 0.0309, -10.0015, -0.717, 0.5312, -10.728, -0.6213, 0.4854, -10.14, -0.2835, -0.018, -11.9739, -0.5843, 0.4179, -11.9739, -0.2835, -0.018, -10.14, -0.2835, -0.018, -10.728, -0.6213, 0.4854, -11.9739, -0.5843, 0.4179, -15.5131, -0.2835, 0.0871, -15.8518, -0.5843, 0.1959, -15.8518, -0.2835, -0.2399, -15.5131, -0.2835, 0.0871, -15.5131, -0.5843, 0.523, -15.8518, -0.5843, 0.1959, -11.9739, -0.2835, -0.018, -15.5131, -0.5843, 0.523, -15.5131, -0.2835, 0.0871, -11.9739, -0.2835, -0.018, -11.9739, -0.5843, 0.4179, -15.5131, -0.5843, 0.523, -9.5175, -0.6989, 0.0537, -10.0015, -0.717, 0.5312, -9.7989, -0.5431, 0.0309, -9.5175, -0.6989, 0.0537, -9.4891, -0.7342, 0.5623, -10.0015, -0.717, 0.5312, -9.139, -0.6307, 0.0825, -9.4891, -0.7342, 0.5623, -9.5175, -0.6989, 0.0537, -9.139, -0.6307, 0.0825, -8.9816, -0.5484, 0.5878, -9.4891, -0.7342, 0.5623, -8.333, 0.2647, 0.1384, -8.9816, -0.5484, 0.5878, -9.139, -0.6307, 0.0825, -8.333, 0.2647, 0.1384, -8.3448, -0.0297, 0.6, -8.9816, -0.5484, 0.5878, -7.7575, 1.0531, 0.1064, -8.3448, -0.0297, 0.6, -8.333, 0.2647, 0.1384, -7.7575, 1.0531, 0.1064, -7.7575, 0.59, 0.5424, -8.3448, -0.0297, 0.6, -7.3486, 1.131, 0.1064, -7.7575, 0.59, 0.5424, -7.7575, 1.0531, 0.1064, -7.3486, 1.131, 0.1064, -7.3486, 0.6584, 0.5424, -7.7575, 0.59, 0.5424, -1.3744, -0.0176, 0.1064, -2.0169, -0.6415, 0.5424, -2.0169, -0.3486, 0.1064, -1.3744, -0.0176, 0.1064, -1.3744, -0.3507, 0.5424, -2.0169, -0.6415, 0.5424, -2.0169, -0.3486, 0.1064, -2.5815, -0.5388, 0.5424, -2.5815, -0.2318, 0.1064, -2.0169, -0.3486, 0.1064, -2.0169, -0.6415, 0.5424, -2.5815, -0.5388, 0.5424, -2.5815, -0.2318, 0.1064, -3.2061, 0.3591, 0.5424, -3.2061, 0.7903, 0.1064, -2.5815, -0.2318, 0.1064, -2.5815, -0.5388, 0.5424, -3.2061, 0.3591, 0.5424, -3.2061, 0.7903, 0.1064, -3.3197, 0.5586, 0.5424, -3.3197, 1.0174, 0.1064, -3.2061, 0.7903, 0.1064, -3.2061, 0.3591, 0.5424, -3.3197, 0.5586, 0.5424, -3.3197, 1.0174, 0.1064, -3.5306, 0.6584, 0.5424, -3.5306, 1.131, 0.1064, -3.3197, 1.0174, 0.1064, -3.3197, 0.5586, 0.5424, -3.5306, 0.6584, 0.5424, -3.5306, 1.131, 0.1064, -7.3486, 0.6584, 0.5424, -7.3486, 1.131, 0.1064, -3.5306, 1.131, 0.1064, -3.5306, 0.6584, 0.5424, -7.3486, 0.6584, 0.5424, -10.0015, -0.717, 0.5312, -10.881, -0.8745, 1.0384, -10.728, -0.6213, 0.4854, -10.0015, -0.717, 0.5312, -10.0764, -0.909, 1.0918, -10.881, -0.8745, 1.0384, -10.728, -0.6213, 0.4854, -11.9739, -0.8825, 0.9701, -11.9739, -0.5843, 0.4179, -10.728, -0.6213, 0.4854, -10.881, -0.8745, 1.0384, -11.9739, -0.8825, 0.9701, -15.5131, -0.5843, 0.523, -15.8518, -0.8825, 0.7481, -15.8518, -0.5843, 0.1959, -15.5131, -0.5843, 0.523, -15.5131, -0.8825, 1.0752, -15.8518, -0.8825, 0.7481, -11.9739, -0.5843, 0.4179, -15.5131, -0.8825, 1.0752, -15.5131, -0.5843, 0.523, -11.9739, -0.5843, 0.4179, -11.9739, -0.8825, 0.9701, -15.5131, -0.8825, 1.0752, -9.4891, -0.7342, 0.5623, -10.0764, -0.909, 1.0918, -10.0015, -0.717, 0.5312, -9.4891, -0.7342, 0.5623, -9.4841, -0.8834, 1.1277, -10.0764, -0.909, 1.0918, -8.9816, -0.5484, 0.5878, -9.4841, -0.8834, 1.1277, -9.4891, -0.7342, 0.5623, -8.9816, -0.5484, 0.5878, -8.9272, -0.712, 1.1539, -9.4841, -0.8834, 1.1277, -8.3448, -0.0297, 0.6, -8.9272, -0.712, 1.1539, -8.9816, -0.5484, 0.5878, -8.3448, -0.0297, 0.6, -8.258, -0.3761, 1.1665, -8.9272, -0.712, 1.1539, -7.7575, 0.59, 0.5424, -8.258, -0.3761, 1.1665, -8.3448, -0.0297, 0.6, -7.7575, 0.59, 0.5424, -7.3847, -0.0202, 1.1514, -8.258, -0.3761, 1.1665, -7.3486, 0.6584, 0.5424, -7.3847, -0.0202, 1.1514, -7.7575, 0.59, 0.5424, -7.3486, 0.6584, 0.5424, -6.0544, 0.1385, 1.1283, -7.3847, -0.0202, 1.1514, -1.3744, -0.3507, 0.5424, -2.0169, -0.9313, 1.0945, -2.0169, -0.6415, 0.5424, -1.3744, -0.3507, 0.5424, -1.3744, -0.6829, 1.0945, -2.0169, -0.9313, 1.0945, -2.0169, -0.6415, 0.5424, -2.5588, -0.6183, 1.1277, -2.5815, -0.5388, 0.5424, -2.0169, -0.6415, 0.5424, -2.0169, -0.9313, 1.0945, -2.5588, -0.6183, 1.1277, -2.5815, -0.5388, 0.5424, -3.0964, -0.1877, 1.1505, -3.2061, 0.3591, 0.5424, -2.5815, -0.5388, 0.5424, -2.5588, -0.6183, 1.1277, -3.0964, -0.1877, 1.1505, -3.2061, 0.3591, 0.5424, -3.5912, 0.0428, 1.1606, -3.3197, 0.5586, 0.5424, -3.2061, 0.3591, 0.5424, -3.0964, -0.1877, 1.1505, -3.5912, 0.0428, 1.1606, -3.3197, 0.5586, 0.5424, -4.3995, 0.1443, 1.1594, -3.5306, 0.6584, 0.5424, -3.3197, 0.5586, 0.5424, -3.5912, 0.0428, 1.1606, -4.3995, 0.1443, 1.1594, -3.5306, 0.6584, 0.5424, -6.0544, 0.1385, 1.1283, -7.3486, 0.6584, 0.5424, -3.5306, 0.6584, 0.5424, -4.3995, 0.1443, 1.1594, -6.0544, 0.1385, 1.1283, -10.0764, -0.909, 1.0918, -10.881, -1.0447, 1.6639, -10.881, -0.8745, 1.0384, -10.0764, -0.909, 1.0918, -10.0763, -1.0677, 1.7642, -10.881, -1.0447, 1.6639, -10.881, -0.8745, 1.0384, -11.9739, -1.0268, 1.406, -11.9739, -0.8825, 0.9701, -10.881, -0.8745, 1.0384, -10.881, -1.0447, 1.6639, -11.9739, -1.0268, 1.406, -15.5131, -0.8825, 1.0752, -15.8518, -1.0268, 1.1841, -15.8518, -0.8825, 0.7481, -15.5131, -0.8825, 1.0752, -15.5131, -1.0268, 1.5111, -15.8518, -1.0268, 1.1841, -11.9739, -0.8825, 0.9701, -15.5131, -1.0268, 1.5111, -15.5131, -0.8825, 1.0752, -11.9739, -0.8825, 0.9701, -11.9739, -1.0268, 1.406, -15.5131, -1.0268, 1.5111, -9.4841, -0.8834, 1.1277, -10.0763, -1.0677, 1.7642, -10.0764, -0.909, 1.0918, -9.4841, -0.8834, 1.1277, -9.4829, -1.0414, 1.8113, -10.0763, -1.0677, 1.7642, -8.9272, -0.712, 1.1539, -9.4829, -1.0414, 1.8113, -9.4841, -0.8834, 1.1277, -8.9272, -0.712, 1.1539, -8.9201, -0.909, 1.8406, -9.4829, -1.0414, 1.8113, -8.258, -0.3761, 1.1665, -8.9201, -0.909, 1.8406, -8.9272, -0.712, 1.1539, -8.258, -0.3761, 1.1665, -8.2242, -0.6705, 1.8554, -8.9201, -0.909, 1.8406, -7.3847, -0.0202, 1.1514, -8.2242, -0.6705, 1.8554, -8.258, -0.3761, 1.1665, -7.3847, -0.0202, 1.1514, -7.2654, -0.4245, 1.8389, -8.2242, -0.6705, 1.8554, -6.0544, 0.1385, 1.1283, -7.2654, -0.4245, 1.8389, -7.3847, -0.0202, 1.1514, -6.0544, 0.1385, 1.1283, -5.7854, -0.273, 1.7657, -7.2654, -0.4245, 1.8389, -1.3744, -0.6829, 1.0945, -2.0169, -1.066, 1.5305, -2.0169, -0.9313, 1.0945, -1.3744, -0.6829, 1.0945, -1.3744, -0.867, 1.5305, -2.0169, -1.066, 1.5305, -2.0169, -0.9313, 1.0945, -2.5506, -0.8118, 1.7655, -2.5588, -0.6183, 1.1277, -2.0169, -0.9313, 1.0945, -2.0169, -1.066, 1.5305, -2.5506, -0.8118, 1.7655, -2.5588, -0.6183, 1.1277, -3.082, -0.5405, 1.8408, -3.0964, -0.1877, 1.1505, -2.5588, -0.6183, 1.1277, -2.5506, -0.8118, 1.7655, -3.082, -0.5405, 1.8408, -3.0964, -0.1877, 1.1505, -3.6587, -0.3596, 1.8633, -3.5912, 0.0428, 1.1606, -3.0964, -0.1877, 1.1505, -3.082, -0.5405, 1.8408, -3.6587, -0.3596, 1.8633, -3.5912, 0.0428, 1.1606, -4.5245, -0.2756, 1.8545, -4.3995, 0.1443, 1.1594, -3.5912, 0.0428, 1.1606, -3.6587, -0.3596, 1.8633, -4.5245, -0.2756, 1.8545, -4.3995, 0.1443, 1.1594, -5.7854, -0.273, 1.7657, -6.0544, 0.1385, 1.1283, -4.3995, 0.1443, 1.1594, -4.5245, -0.2756, 1.8545, -5.7854, -0.273, 1.7657, -10.0763, -1.0677, 1.7642, -10.728, -1.1697, 2.5216, -10.881, -1.0447, 1.6639, -10.0763, -1.0677, 1.7642, -10.0012, -1.1853, 2.6142, -10.728, -1.1697, 2.5216, -10.881, -1.0447, 1.6639, -11.9739, -1.2045, 2.3069, -11.9739, -1.0268, 1.406, -10.881, -1.0447, 1.6639, -10.728, -1.1697, 2.5216, -11.9739, -1.2045, 2.3069, -15.5131, -1.0268, 1.5111, -15.8518, -1.2045, 2.085, -15.8518, -1.0268, 1.1841, -15.5131, -1.0268, 1.5111, -15.5131, -1.2045, 2.4121, -15.8518, -1.2045, 2.085, -11.9739, -1.0268, 1.406, -15.5131, -1.2045, 2.4121, -15.5131, -1.0268, 1.5111, -11.9739, -1.0268, 1.406, -11.9739, -1.2045, 2.3069, -15.5131, -1.2045, 2.4121, -9.4829, -1.0414, 1.8113, -10.0012, -1.1853, 2.6142, -10.0763, -1.0677, 1.7642, -9.4829, -1.0414, 1.8113, -9.4866, -1.1752, 2.6582, -10.0012, -1.1853, 2.6142, -8.9201, -0.909, 1.8406, -9.4866, -1.1752, 2.6582, -9.4829, -1.0414, 1.8113, -8.9201, -0.909, 1.8406, -8.9654, -1.0895, 2.6889, -9.4866, -1.1752, 2.6582, -8.2242, -0.6705, 1.8554, -8.9654, -1.0895, 2.6889, -8.9201, -0.909, 1.8406, -8.2242, -0.6705, 1.8554, -8.2602, -0.9089, 2.7116, -8.9654, -1.0895, 2.6889, -7.2654, -0.4245, 1.8389, -8.2602, -0.9089, 2.7116, -8.2242, -0.6705, 1.8554, -7.2654, -0.4245, 1.8389, -7.3842, -0.7309, 2.6939, -8.2602, -0.9089, 2.7116, -5.7854, -0.273, 1.7657, -7.3842, -0.7309, 2.6939, -7.2654, -0.4245, 1.8389, -5.7854, -0.273, 1.7657, -6.0541, -0.6443, 2.6303, -7.3842, -0.7309, 2.6939, -1.3744, -0.867, 1.5305, -2.0169, -1.2298, 2.4314, -2.0169, -1.066, 1.5305, -1.3744, -0.867, 1.5305, -1.3744, -1.1012, 2.4314, -2.0169, -1.2298, 2.4314, -2.0169, -1.066, 1.5305, -2.5588, -1.0164, 2.6301, -2.5506, -0.8118, 1.7655, -2.0169, -1.066, 1.5305, -2.0169, -1.2298, 2.4314, -2.5588, -1.0164, 2.6301, -2.5506, -0.8118, 1.7655, -3.0964, -0.8096, 2.6948, -3.082, -0.5405, 1.8408, -2.5506, -0.8118, 1.7655, -2.5588, -1.0164, 2.6301, -3.0964, -0.8096, 2.6948, -3.082, -0.5405, 1.8408, -3.5912, -0.6851, 2.7135, -3.6587, -0.3596, 1.8633, -3.082, -0.5405, 1.8408, -3.0964, -0.8096, 2.6948, -3.5912, -0.6851, 2.7135, -3.6587, -0.3596, 1.8633, -4.3994, -0.6309, 2.7052, -4.5245, -0.2756, 1.8545, -3.6587, -0.3596, 1.8633, -3.5912, -0.6851, 2.7135, -4.3994, -0.6309, 2.7052, -4.5245, -0.2756, 1.8545, -6.0541, -0.6443, 2.6303, -5.7854, -0.273, 1.7657, -4.5245, -0.2756, 1.8545, -4.3994, -0.6309, 2.7052, -6.0541, -0.6443, 2.6303, -10.0012, -1.1853, 2.6142, -10.14, -1.2194, 3.5566, -10.728, -1.1697, 2.5216, -10.0012, -1.1853, 2.6142, -9.7989, -1.2728, 3.6056, -10.14, -1.2194, 3.5566, -10.728, -1.1697, 2.5216, -11.9739, -1.2194, 3.5566, -11.9739, -1.2045, 2.3069, -10.728, -1.1697, 2.5216, -10.14, -1.2194, 3.5566, -11.9739, -1.2194, 3.5566, -15.5131, -1.2045, 2.4121, -15.8518, -1.2194, 3.3347, -15.8518, -1.2045, 2.085, -15.5131, -1.2045, 2.4121, -15.5131, -1.2194, 3.6617, -15.8518, -1.2194, 3.3347, -11.9739, -1.2045, 2.3069, -15.5131, -1.2194, 3.6617, -15.5131, -1.2045, 2.4121, -11.9739, -1.2045, 2.3069, -11.9739, -1.2194, 3.5566, -15.5131, -1.2194, 3.6617, -9.4866, -1.1752, 2.6582, -9.7989, -1.2728, 3.6056, -10.0012, -1.1853, 2.6142, -9.4866, -1.1752, 2.6582, -9.5175, -1.3049, 3.6284, -9.7989, -1.2728, 3.6056, -8.9654, -1.0895, 2.6889, -9.5175, -1.3049, 3.6284, -9.4866, -1.1752, 2.6582, -8.9654, -1.0895, 2.6889, -9.139, -1.2908, 3.6571, -9.5175, -1.3049, 3.6284, -8.2602, -0.9089, 2.7116, -9.139, -1.2908, 3.6571, -8.9654, -1.0895, 2.6889, -8.2602, -0.9089, 2.7116, -8.333, -1.1067, 3.713, -9.139, -1.2908, 3.6571, -7.3842, -0.7309, 2.6939, -8.333, -1.1067, 3.713, -8.2602, -0.9089, 2.7116, -7.3842, -0.7309, 2.6939, -7.7575, -0.9445, 3.6811, -8.333, -1.1067, 3.713, -6.0541, -0.6443, 2.6303, -7.7575, -0.9445, 3.6811, -7.3842, -0.7309, 2.6939, -6.0541, -0.6443, 2.6303, -7.3486, -0.9285, 3.6811, -7.7575, -0.9445, 3.6811, -1.3744, -1.1012, 2.4314, -2.0169, -1.2328, 3.6811, -2.0169, -1.2298, 2.4314, -1.3744, -1.1012, 2.4314, -1.3744, -1.1648, 3.6811, -2.0169, -1.2328, 3.6811, -2.0169, -1.2298, 2.4314, -2.5815, -1.2088, 3.6811, -2.5588, -1.0164, 2.6301, -2.0169, -1.2298, 2.4314, -2.0169, -1.2328, 3.6811, -2.5815, -1.2088, 3.6811, -2.5588, -1.0164, 2.6301, -3.2061, -0.9986, 3.6811, -3.0964, -0.8096, 2.6948, -2.5588, -1.0164, 2.6301, -2.5815, -1.2088, 3.6811, -3.2061, -0.9986, 3.6811, -3.0964, -0.8096, 2.6948, -3.3197, -0.9519, 3.6811, -3.5912, -0.6851, 2.7135, -3.0964, -0.8096, 2.6948, -3.2061, -0.9986, 3.6811, -3.3197, -0.9519, 3.6811, -3.5912, -0.6851, 2.7135, -3.5306, -0.9285, 3.6811, -4.3994, -0.6309, 2.7052, -3.5912, -0.6851, 2.7135, -3.3197, -0.9519, 3.6811, -3.5306, -0.9285, 3.6811, -4.3994, -0.6309, 2.7052, -7.3486, -0.9285, 3.6811, -6.0541, -0.6443, 2.6303, -4.3994, -0.6309, 2.7052, -3.5306, -0.9285, 3.6811, -7.3486, -0.9285, 3.6811, -20.7111, 0.78, -15.6268, -19.9712, 0.78, -15.6268, -20.7111, 0.78, -13.7433, -20.7111, 0.78, -13.7433, -20.0061, 0.78, -14.6102, -20.032, 0.78, -13.8582, -20.7111, 0.78, -13.7433, -19.9712, 0.78, -15.6268, -20.0061, 0.78, -14.6102, -20.0368, 0.4546, -4.6183, -21.08, 0.3139, -5.4267, -20.5085, 0.24, -5.4282, -20.0368, 0.4546, -4.6183, -20.4497, 0.5766, -4.4363, -21.08, 0.3139, -5.4267, -19.4496, 0.4546, -4.1057, -20.4497, 0.5766, -4.4363, -20.0368, 0.4546, -4.6183, -19.4496, 0.4546, -4.1057, -19.7387, 0.5766, -3.8155, -20.4497, 0.5766, -4.4363, -18.8484, 0.4546, -3.792, -19.7387, 0.5766, -3.8155, -19.4496, 0.4546, -4.1057, -18.8484, 0.4546, -3.792, -19.0105, 0.5766, -3.4357, -19.7387, 0.5766, -3.8155, -18.1869, 0.24, -3.628, -19.0105, 0.5766, -3.4357, -18.8484, 0.4546, -3.792, -18.1869, 0.24, -3.628, -18.2095, 0.3167, -3.237, -19.0105, 0.5766, -3.4357, -17.7034, -0.051, -3.6223, -18.2095, 0.3167, -3.237, -18.1869, 0.24, -3.628, -17.7034, -0.051, -3.6223, -17.624, -0.0357, -3.2302, -18.2095, 0.3167, -3.237, -20.4497, 0.5766, -4.4363, -21.2321, 0.2843, -5.1707, -21.08, 0.3139, -5.4267, -20.4497, 0.5766, -4.4363, -20.6607, 0.5442, -4.1899, -21.2321, 0.2843, -5.1707, -19.7387, 0.5766, -3.8155, -20.6607, 0.5442, -4.1899, -20.4497, 0.5766, -4.4363, -19.7387, 0.5766, -3.8155, -19.9497, 0.5442, -3.5691, -20.6607, 0.5442, -4.1899, -19.0105, 0.5766, -3.4357, -19.9497, 0.5442, -3.5691, -19.7387, 0.5766, -3.8155, -19.0105, 0.5766, -3.4357, -19.2216, 0.5442, -3.1893, -19.9497, 0.5442, -3.5691, -18.2095, 0.3167, -3.237, -19.2216, 0.5442, -3.1893, -19.0105, 0.5766, -3.4357, -18.2095, 0.3167, -3.237, -18.4206, 0.2843, -2.9907, -19.2216, 0.5442, -3.1893, -17.624, -0.0357, -3.2302, -18.4206, 0.2843, -2.9907, -18.2095, 0.3167, -3.237, -17.624, -0.0357, -3.2302, -17.835, -0.0681, -2.9838, -18.4206, 0.2843, -2.9907, -20.6607, 0.5442, -4.1899, -21.5869, -0.0278, -4.9545, -21.2321, 0.2843, -5.1707, -20.6607, 0.5442, -4.1899, -20.9789, 0.2486, -3.9108, -21.5869, -0.0278, -4.9545, -19.9497, 0.5442, -3.5691, -20.9789, 0.2486, -3.9108, -20.6607, 0.5442, -4.1899, -19.9497, 0.5442, -3.5691, -20.2223, 0.2486, -3.2503, -20.9789, 0.2486, -3.9108, -19.2216, 0.5442, -3.1893, -20.2223, 0.2486, -3.2503, -19.9497, 0.5442, -3.5691, -19.2216, 0.5442, -3.1893, -19.4475, 0.2486, -2.8461, -20.2223, 0.2486, -3.2503, -18.4206, 0.2843, -2.9907, -19.4475, 0.2486, -2.8461, -19.2216, 0.5442, -3.1893, -18.4206, 0.2843, -2.9907, -18.5952, -0.0278, -2.6347, -19.4475, 0.2486, -2.8461, -17.835, -0.0681, -2.9838, -18.5952, -0.0278, -2.6347, -18.4206, 0.2843, -2.9907, -17.835, -0.0681, -2.9838, -17.9721, -0.403, -2.6274, -18.5952, -0.0278, -2.6347, -20.9789, 0.2486, -3.9108, -22.0389, -0.3615, -4.778, -21.5869, -0.0278, -4.9545, -20.9789, 0.2486, -3.9108, -21.3563, -0.051, -3.6061, -22.0389, -0.3615, -4.778, -20.2223, 0.2486, -3.2503, -21.3563, -0.051, -3.6061, -20.9789, 0.2486, -3.9108, -20.2223, 0.2486, -3.2503, -20.5068, -0.051, -2.8644, -21.3563, -0.051, -3.6061, -19.4475, 0.2486, -2.8461, -20.5068, -0.051, -2.8644, -20.2223, 0.2486, -3.2503, -19.4475, 0.2486, -2.8461, -19.6368, -0.051, -2.4106, -20.5068, -0.051, -2.8644, -18.5952, -0.0278, -2.6347, -19.6368, -0.051, -2.4106, -19.4475, 0.2486, -2.8461, -18.5952, -0.0278, -2.6347, -18.6798, -0.3615, -2.1733, -19.6368, -0.051, -2.4106, -17.9721, -0.403, -2.6274, -18.6798, -0.3615, -2.1733, -18.5952, -0.0278, -2.6347, -17.9721, -0.403, -2.6274, -17.9802, -0.7827, -2.1651, -18.6798, -0.3615, -2.1733, -21.3563, -0.051, -3.6061, -22.996, -0.8214, -4.5362, -22.0389, -0.3615, -4.778, -21.3563, -0.051, -3.6061, -22.1372, -0.4308, -3.0619, -22.996, -0.8214, -4.5362, -20.5068, -0.051, -2.8644, -22.1372, -0.4308, -3.0619, -21.3563, -0.051, -3.6061, -20.5068, -0.051, -2.8644, -21.0684, -0.4308, -2.1287, -22.1372, -0.4308, -3.0619, -19.6368, -0.051, -2.4106, -21.0684, -0.4308, -2.1287, -20.5068, -0.051, -2.8644, -19.6368, -0.051, -2.4106, -19.9739, -0.4308, -1.5577, -21.0684, -0.4308, -2.1287, -18.6798, -0.3615, -2.1733, -19.9739, -0.4308, -1.5577, -19.6368, -0.051, -2.4106, -18.6798, -0.3615, -2.1733, -18.7698, -0.8214, -1.2591, -19.9739, -0.4308, -1.5577, -17.9802, -0.7827, -2.1651, -18.7698, -0.8214, -1.2591, -18.6798, -0.3615, -2.1733, -17.9802, -0.7827, -2.1651, -17.8896, -1.3514, -1.2488, -18.7698, -0.8214, -1.2591, -15.8518, -1.2194, 3.3347, -16.1762, -1.2245, 1.8202, -15.8518, -1.2045, 2.085, -15.8518, -1.2194, 3.3347, -16.1762, -1.2368, 2.8541, -16.1762, -1.2245, 1.8202, -15.8518, -1.2045, 2.085, -16.1762, -1.0775, 1.0749, -15.8518, -1.0268, 1.1841, -15.8518, -1.2045, 2.085, -16.1762, -1.2245, 1.8202, -16.1762, -1.0775, 1.0749, -15.8518, -1.0268, 1.1841, -16.1762, -0.9581, 0.7142, -15.8518, -0.8825, 0.7481, -15.8518, -1.0268, 1.1841, -16.1762, -1.0775, 1.0749, -16.1762, -0.9581, 0.7142, -15.8518, -0.8825, 0.7481, -16.1762, -0.7114, 0.2574, -15.8518, -0.5843, 0.1959, -15.8518, -0.8825, 0.7481, -16.1762, -0.9581, 0.7142, -16.1762, -0.7114, 0.2574, -15.8518, -0.5843, 0.1959, -16.1762, -0.4625, -0.1032, -15.8518, -0.2835, -0.2399, -15.8518, -0.5843, 0.1959, -16.1762, -0.7114, 0.2574, -16.1762, -0.4625, -0.1032, -15.8518, -0.2835, -0.2399, -16.1762, -0.2702, -0.5119, -15.8518, -0.051, -0.734, -15.8518, -0.2835, -0.2399, -16.1762, -0.4625, -0.1032, -16.1762, -0.2702, -0.5119, -15.8518, -0.051, -0.734, -16.1762, -0.2702, -1.6908, -15.8518, -0.051, -2.159, -15.8518, -0.051, -0.734, -16.1762, -0.2702, -0.5119, -16.1762, -0.2702, -1.6908, -16.1762, -1.2368, 2.8541, -16.6952, -1.4137, 1.9885, -16.1762, -1.2245, 1.8202, -16.1762, -1.2368, 2.8541, -16.6952, -1.4277, 3.1594, -16.6952, -1.4137, 1.9885, -16.1762, -1.2245, 1.8202, -16.6952, -1.2472, 1.1443, -16.1762, -1.0775, 1.0749, -16.1762, -1.2245, 1.8202, -16.6952, -1.4137, 1.9885, -16.6952, -1.2472, 1.1443, -16.1762, -1.0775, 1.0749, -16.6952, -1.1119, 0.7358, -16.1762, -0.9581, 0.7142, -16.1762, -1.0775, 1.0749, -16.6952, -1.2472, 1.1443, -16.6952, -1.1119, 0.7358, -16.1762, -0.9581, 0.7142, -16.6952, -0.8325, 0.2184, -16.1762, -0.7114, 0.2574, -16.1762, -0.9581, 0.7142, -16.6952, -1.1119, 0.7358, -16.6952, -0.8325, 0.2184, -16.1762, -0.7114, 0.2574, -16.6952, -0.5507, -0.19, -16.1762, -0.4625, -0.1032, -16.1762, -0.7114, 0.2574, -16.6952, -0.8325, 0.2184, -16.6952, -0.5507, -0.19, -16.1762, -0.4625, -0.1032, -16.6952, -0.3328, -0.653, -16.1762, -0.2702, -0.5119, -16.1762, -0.4625, -0.1032, -16.6952, -0.5507, -0.19, -16.6952, -0.3328, -0.653, -16.1762, -0.2702, -0.5119, -16.6831, -0.4342, -1.9795, -16.1762, -0.2702, -1.6908, -16.1762, -0.2702, -0.5119, -16.6952, -0.3328, -0.653, -16.6831, -0.4342, -1.9795, -16.6952, -1.4277, 3.1594, -17.2872, -1.4489, 2.0651, -16.6952, -1.4137, 1.9885, -16.6952, -1.4277, 3.1594, -17.2872, -1.4636, 3.2986, -17.2872, -1.4489, 2.0651, -16.6952, -1.4137, 1.9885, -17.2872, -1.2735, 1.1759, -16.6952, -1.2472, 1.1443, -16.6952, -1.4137, 1.9885, -17.2872, -1.4489, 2.0651, -17.2872, -1.2735, 1.1759, -16.6952, -1.2472, 1.1443, -17.2872, -1.131, 0.7456, -16.6952, -1.1119, 0.7358, -16.6952, -1.2472, 1.1443, -17.2872, -1.2735, 1.1759, -17.2872, -1.131, 0.7456, -16.6952, -1.1119, 0.7358, -17.2872, -0.8367, 0.2006, -16.6952, -0.8325, 0.2184, -16.6952, -1.1119, 0.7358, -17.2872, -1.131, 0.7456, -17.2872, -0.8367, 0.2006, -16.6952, -0.8325, 0.2184, -17.2872, -0.5398, -0.2296, -16.6952, -0.5507, -0.19, -16.6952, -0.8325, 0.2184, -17.2872, -0.8367, 0.2006, -17.2872, -0.5398, -0.2296, -16.6952, -0.5507, -0.19, -17.2872, -0.3103, -0.7173, -16.6952, -0.3328, -0.653, -16.6952, -0.5507, -0.19, -17.2872, -0.5398, -0.2296, -17.2872, -0.3103, -0.7173, -16.6952, -0.3328, -0.653, -17.2561, -0.5974, -2.0994, -16.6831, -0.4342, -1.9795, -16.6952, -0.3328, -0.653, -17.2872, -0.3103, -0.7173, -17.2561, -0.5974, -2.0994, -16.8774, -0.051, -3.6223, -16.3654, -0.3323, -2.5928, -17.1476, -0.3548, -2.7298, -16.8774, -0.051, -3.6223, -16.4054, -0.051, -3.3155, -16.3654, -0.3323, -2.5928, -15.9806, -0.051, -2.7274, -16.3654, -0.3323, -2.5928, -16.4054, -0.051, -3.3155, -15.4547, -0.051, -2.4393, -16.3654, -0.3323, -2.5928, -15.9806, -0.051, -2.7274, -17.1476, -0.3548, -2.7298, -17.4584, -0.2253, -2.7837, -16.8774, -0.051, -3.6223, -16.8774, -0.051, -3.6223, -17.624, -0.0357, -3.2302, -17.7034, -0.051, -3.6223, -16.8774, -0.051, -3.6223, -17.4584, -0.2253, -2.7837, -17.624, -0.0357, -3.2302, -17.624, -0.0357, -3.2302, -17.4584, -0.2253, -2.7837, -17.835, -0.0681, -2.9838, -15.8518, -0.051, -2.159, -16.3654, -0.3323, -2.5928, -15.4547, -0.051, -2.4393, -15.8518, -0.051, -2.159, -16.6831, -0.4342, -1.9795, -16.3654, -0.3323, -2.5928, -15.8518, -0.051, -2.159, -16.1762, -0.2702, -1.6908, -16.6831, -0.4342, -1.9795, -17.2561, -0.5974, -2.0994, -16.3654, -0.3323, -2.5928, -16.6831, -0.4342, -1.9795, -17.2561, -0.5974, -2.0994, -17.1476, -0.3548, -2.7298, -16.3654, -0.3323, -2.5928, -17.4584, -0.2253, -2.7837, -17.2561, -0.5974, -2.0994, -17.6474, -0.4889, -2.1657, -17.4584, -0.2253, -2.7837, -17.1476, -0.3548, -2.7298, -17.2561, -0.5974, -2.0994, -17.2872, -0.3103, -0.7173, -17.6474, -0.4889, -2.1657, -17.2561, -0.5974, -2.0994, -17.2872, -0.3103, -0.7173, -17.8218, -0.6745, -1.0836, -17.6474, -0.4889, -2.1657, -17.8896, -1.3514, -1.2488, -17.6474, -0.4889, -2.1657, -17.8218, -0.6745, -1.0836, -17.8896, -1.3514, -1.2488, -17.9802, -0.7827, -2.1651, -17.6474, -0.4889, -2.1657, -17.9802, -0.7827, -2.1651, -17.4584, -0.2253, -2.7837, -17.6474, -0.4889, -2.1657, -17.9802, -0.7827, -2.1651, -17.9721, -0.403, -2.6274, -17.4584, -0.2253, -2.7837, -17.835, -0.0681, -2.9838, -17.4584, -0.2253, -2.7837, -17.9721, -0.403, -2.6274, -17.8218, -0.6745, -1.0836, -18.6496, -1.4574, -0.0911, -17.8896, -1.3514, -1.2488, -17.8218, -0.6745, -1.0836, -18.5818, -1.3025, 0.0741, -18.6496, -1.4574, -0.0911, -21.0684, -0.4308, -2.1287, -22.8972, -1.2467, -1.9041, -22.1372, -0.4308, -3.0619, -21.0684, -0.4308, -2.1287, -21.8284, -1.2467, -0.971, -22.8972, -1.2467, -1.9041, -19.9739, -0.4308, -1.5577, -21.8284, -1.2467, -0.971, -21.0684, -0.4308, -2.1287, -19.9739, -0.4308, -1.5577, -20.7339, -1.2467, -0.4, -21.8284, -1.2467, -0.971, -18.7698, -0.8214, -1.2591, -20.7339, -1.2467, -0.4, -19.9739, -0.4308, -1.5577, -18.7698, -0.8214, -1.2591, -19.5298, -1.3361, -0.1014, -20.7339, -1.2467, -0.4, -17.8896, -1.3514, -1.2488, -19.5298, -1.3361, -0.1014, -18.7698, -0.8214, -1.2591, -17.8896, -1.3514, -1.2488, -18.6496, -1.4574, -0.0911, -19.5298, -1.3361, -0.1014, -17.2872, -0.3103, -0.7173, -18.5818, -1.3025, 0.0741, -17.8218, -0.6745, -1.0836, -17.2872, -0.3103, -0.7173, -17.2872, -0.5398, -0.2296, -18.5818, -1.3025, 0.0741, -17.2872, -0.8367, 0.2006, -18.5818, -1.3025, 0.0741, -17.2872, -0.5398, -0.2296, -17.2872, -1.131, 0.7456, -18.5818, -1.3025, 0.0741, -17.2872, -0.8367, 0.2006, -17.2872, -1.2735, 1.1759, -18.5818, -1.3025, 0.0741, -17.2872, -1.131, 0.7456, -17.2872, -1.4636, 3.2986, -18.5329, -1.5657, 2.0651, -17.2872, -1.4489, 2.0651, -17.2872, -1.4636, 3.2986, -18.5329, -1.5804, 3.2986, -18.5329, -1.5657, 2.0651, -17.2872, -1.4489, 2.0651, -18.5329, -1.3903, 1.1759, -17.2872, -1.2735, 1.1759, -17.2872, -1.4489, 2.0651, -18.5329, -1.5657, 2.0651, -18.5329, -1.3903, 1.1759, -18.5329, -1.5804, 3.2986, -19.5158, -1.5949, 2.0651, -18.5329, -1.5657, 2.0651, -18.5329, -1.5804, 3.2986, -19.5158, -1.6096, 3.2986, -19.5158, -1.5949, 2.0651, -18.5329, -1.5657, 2.0651, -19.5158, -1.4195, 1.1759, -18.5329, -1.3903, 1.1759, -18.5329, -1.5657, 2.0651, -19.5158, -1.5949, 2.0651, -19.5158, -1.4195, 1.1759, -19.5158, -1.6096, 3.2986, -20.5765, -1.5657, 2.0651, -19.5158, -1.5949, 2.0651, -19.5158, -1.6096, 3.2986, -20.5765, -1.5804, 3.2986, -20.5765, -1.5657, 2.0651, -19.5158, -1.5949, 2.0651, -20.5765, -1.3903, 1.1759, -19.5158, -1.4195, 1.1759, -19.5158, -1.5949, 2.0651, -20.5765, -1.5657, 2.0651, -20.5765, -1.3903, 1.1759, -20.5765, -1.5804, 3.2986, -21.5789, -1.5657, 2.0651, -20.5765, -1.5657, 2.0651, -20.5765, -1.5804, 3.2986, -21.5789, -1.5804, 3.2986, -21.5789, -1.5657, 2.0651, -20.5765, -1.5657, 2.0651, -21.5789, -1.3903, 1.1759, -20.5765, -1.3903, 1.1759, -20.5765, -1.5657, 2.0651, -21.5789, -1.5657, 2.0651, -21.5789, -1.3903, 1.1759, -18.5818, -1.3025, 0.0741, -17.2872, -1.2735, 1.1759, -18.5329, -1.3903, 1.1759, -18.6496, -1.4574, -0.0911, -18.5329, -1.3903, 1.1759, -19.5158, -1.4195, 1.1759, -18.6496, -1.4574, -0.0911, -18.5818, -1.3025, 0.0741, -18.5329, -1.3903, 1.1759, -18.6496, -1.4574, -0.0911, -19.5158, -1.4195, 1.1759, -19.5298, -1.3361, -0.1014, -20.7339, -1.2467, -0.4, -19.5158, -1.4195, 1.1759, -20.5765, -1.3903, 1.1759, -20.7339, -1.2467, -0.4, -19.5298, -1.3361, -0.1014, -19.5158, -1.4195, 1.1759, -21.8284, -1.2467, -0.971, -20.5765, -1.3903, 1.1759, -21.5789, -1.3903, 1.1759, -21.8284, -1.2467, -0.971, -20.7339, -1.2467, -0.4, -20.5765, -1.3903, 1.1759, -21.5789, -1.5804, 3.2986, -23.3208, -1.4878, 2.0651, -21.5789, -1.5657, 2.0651, -21.5789, -1.5804, 3.2986, -23.3208, -1.5025, 3.2986, -23.3208, -1.4878, 2.0651, -21.5789, -1.5657, 2.0651, -23.3208, -1.3124, 1.1759, -21.5789, -1.3903, 1.1759, -21.5789, -1.5657, 2.0651, -23.3208, -1.4878, 2.0651, -23.3208, -1.3124, 1.1759, -23.3208, -1.5025, 3.2986, -24.4594, -1.5267, 2.0651, -23.3208, -1.4878, 2.0651, -23.3208, -1.5025, 3.2986, -24.4594, -1.5415, 3.2986, -24.4594, -1.5267, 2.0651, -23.3208, -1.4878, 2.0651, -24.4594, -1.3514, 1.1759, -23.3208, -1.3124, 1.1759, -23.3208, -1.4878, 2.0651, -24.4594, -1.5267, 2.0651, -24.4594, -1.3514, 1.1759, -21.8284, -1.2467, -0.971, -23.8964, -1.4196, -1.0963, -22.8972, -1.2467, -1.9041, -21.8284, -1.2467, -0.971, -22.8276, -1.4196, -0.1632, -23.8964, -1.4196, -1.0963, -21.8284, -1.2467, -0.971, -23.3208, -1.3124, 1.1759, -22.8276, -1.4196, -0.1632, -21.8284, -1.2467, -0.971, -21.5789, -1.3903, 1.1759, -23.3208, -1.3124, 1.1759, -23.3208, -1.3124, 1.1759, -23.8964, -1.4196, -1.0963, -22.8276, -1.4196, -0.1632, -23.3208, -1.3124, 1.1759, -24.4594, -1.3514, 1.1759, -23.8964, -1.4196, -1.0963, -22.996, -0.8214, -4.5362, -22.8972, -1.2467, -1.9041, -24.0261, -1.6004, -3.4357, -22.996, -0.8214, -4.5362, -22.1372, -0.4308, -3.0619, -22.8972, -1.2467, -1.9041, -23.8964, -1.4196, -1.0963, -24.0261, -1.6004, -3.4357, -22.8972, -1.2467, -1.9041, -23.8964, -1.4196, -1.0963, -24.8678, -1.5436, -2.3748, -24.0261, -1.6004, -3.4357, -23.8964, -1.4196, -1.0963, -24.4594, -1.3514, 1.1759, -24.8678, -1.5436, -2.3748, -20.8215, 0.48, -9.0531, -20.6739, 0.6981, -9.3846, -20.6739, 0.5108, -8.893, -20.7618, 0.78, -10.1106, -20.8215, 0.48, -9.0531, -20.9468, 0.78, -10.1106, -20.6739, 0.78, -9.9582, -20.8215, 0.48, -9.0531, -20.7618, 0.78, -10.1106, -20.9468, 0.78, -8.0085, -20.9468, 0.78, -10.1106, -20.86, 0.5342, -8.0415, -20.8215, 0.48, -9.0531, -20.86, 0.5342, -8.0415, -20.9468, 0.78, -10.1106, -20.6739, 0.5108, -8.893, -20.86, 0.5342, -8.0415, -20.8215, 0.48, -9.0531, -20.6739, 0.5108, -8.893, -20.6739, 0.2416, -8.4482, -20.86, 0.5342, -8.0415, -20.6739, 0.2416, -8.4482, -20.84, 0.5175, -7.6596, -20.86, 0.5342, -8.0415, -20.6739, 0.2416, -8.4482, -20.6739, 0.0309, -7.9332, -20.84, 0.5175, -7.6596, -20.6739, 0.0309, -7.9332, -20.8176, 0.5511, -6.9573, -20.84, 0.5175, -7.6596, -20.6739, 0.0309, -7.9332, -20.6739, -0.051, -7.5001, -20.8176, 0.5511, -6.9573, -20.6739, -0.051, -7.5001, -20.8944, 0.3542, -6.5708, -20.8176, 0.5511, -6.9573, -20.6739, -0.051, -7.5001, -20.6739, -0.051, -6.0727, -20.8944, 0.3542, -6.5708, -20.8429, 0.3711, -6.0609, -20.8944, 0.3542, -6.5708, -20.6739, -0.051, -6.0727, -20.86, 0.5342, -8.0415, -20.9468, 0.78, -7.1601, -20.9468, 0.78, -8.0085, -20.86, 0.5342, -8.0415, -20.84, 0.5175, -7.6596, -20.9468, 0.78, -7.1601, -20.84, 0.5175, -7.6596, -20.8176, 0.5511, -6.9573, -20.9468, 0.78, -7.1601, -20.8944, 0.3542, -6.5708, -20.9468, 0.78, -7.1601, -20.8176, 0.5511, -6.9573, -20.8944, 0.3542, -6.5708, -20.9468, 0.78, -5.9063, -20.9468, 0.78, -7.1601, -20.8944, 0.3542, -6.5708, -20.8429, 0.3711, -6.0609, -20.9468, 0.78, -5.9063, -20.6739, -0.051, -6.0727, -21.08, 0.3139, -5.4267, -20.8429, 0.3711, -6.0609, -20.6739, -0.051, -6.0727, -20.5085, 0.24, -5.4282, -21.08, 0.3139, -5.4267, -20.8429, 0.3711, -6.0609, -21.08, 0.3139, -5.4267, -20.9468, 0.78, -5.9063, -20.9468, 0.78, -5.9063, -21.08, 0.3139, -5.4267, -23.4863, 0.78, -5.9063, -23.4863, 0.78, -5.9063, -22.0957, 0.2184, -5.0123, -23.4887, 0.2451, -5.3881, -23.4863, 0.78, -5.9063, -21.08, 0.3139, -5.4267, -22.0957, 0.2184, -5.0123, -22.996, -0.8214, -4.5362, -23.4887, 0.2451, -5.3881, -22.0389, -0.3615, -4.778, -23.4887, 0.2451, -5.3881, -22.0957, 0.2184, -5.0123, -22.0389, -0.3615, -4.778, -22.0389, -0.3615, -4.778, -22.0957, 0.2184, -5.0123, -21.5869, -0.0278, -4.9545, -21.5869, -0.0278, -4.9545, -22.0957, 0.2184, -5.0123, -21.2321, 0.2843, -5.1707, -21.08, 0.3139, -5.4267, -21.2321, 0.2843, -5.1707, -22.0957, 0.2184, -5.0123, -23.4887, 0.2451, -5.3881, -23.7385, 0.794, -5.9063, -23.4863, 0.78, -5.9063, -23.4887, 0.2451, -5.3881, -23.7409, 0.2591, -5.3881, -23.7385, 0.794, -5.9063, -22.7634, 0.78, -13.7433, -23.0156, 0.794, -15.6268, -22.7634, 0.78, -15.6268, -22.7634, 0.78, -13.7433, -23.0156, 0.794, -13.7433, -23.0156, 0.794, -15.6268, -22.7634, 0.78, -11.8765, -23.0156, 0.794, -13.7433, -22.7634, 0.78, -13.7433, -22.7634, 0.78, -11.8765, -23.0156, 0.794, -11.8765, -23.0156, 0.794, -13.7433, -23.4863, 0.78, -11.5738, -23.0156, 0.794, -11.8765, -22.7634, 0.78, -11.8765, -23.4863, 0.78, -11.5738, -23.7385, 0.794, -11.5738, -23.0156, 0.794, -11.8765, -23.4863, 0.78, -5.9063, -23.7385, 0.794, -10.1106, -23.4863, 0.78, -10.1106, -23.4863, 0.78, -5.9063, -23.7385, 0.794, -5.9063, -23.7385, 0.794, -10.1106, -23.4863, 0.78, -10.1106, -23.7385, 0.794, -11.5738, -23.4863, 0.78, -11.5738, -23.4863, 0.78, -10.1106, -23.7385, 0.794, -10.1106, -23.7385, 0.794, -11.5738, -23.7409, 0.2591, -5.3881, -24.1309, 0.5698, -5.9063, -23.7385, 0.794, -5.9063, -23.7409, 0.2591, -5.3881, -24.1333, 0.0349, -5.3881, -24.1309, 0.5698, -5.9063, -23.0156, 0.794, -13.7433, -23.408, 0.5698, -15.6268, -23.0156, 0.794, -15.6268, -23.0156, 0.794, -13.7433, -23.408, 0.5698, -13.7433, -23.408, 0.5698, -15.6268, -23.0156, 0.794, -11.8765, -23.408, 0.5698, -13.7433, -23.0156, 0.794, -13.7433, -23.0156, 0.794, -11.8765, -23.5948, 0.4618, -12.3016, -23.408, 0.5698, -13.7433, -23.7385, 0.794, -5.9063, -24.1309, 0.5698, -10.1106, -23.7385, 0.794, -10.1106, -23.7385, 0.794, -5.9063, -24.1309, 0.5698, -5.9063, -24.1309, 0.5698, -10.1106, -23.7385, 0.794, -10.1106, -23.9662, 0.4536, -11.324, -23.7385, 0.794, -11.5738, -23.7385, 0.794, -10.1106, -24.1309, 0.5698, -10.1106, -23.9662, 0.4536, -11.324, -23.7385, 0.794, -11.5738, -23.5948, 0.4618, -12.3016, -23.0156, 0.794, -11.8765, -23.7385, 0.794, -11.5738, -23.9662, 0.4536, -11.324, -23.5948, 0.4618, -12.3016, -24.1333, 0.0349, -5.3881, -24.4812, 0.0794, -5.9063, -24.1309, 0.5698, -5.9063, -24.1333, 0.0349, -5.3881, -24.4836, -0.4555, -5.3881, -24.4812, 0.0794, -5.9063, -23.408, 0.5698, -13.7433, -23.7583, 0.0794, -15.6268, -23.408, 0.5698, -15.6268, -23.408, 0.5698, -13.7433, -23.7583, 0.0794, -13.7433, -23.7583, 0.0794, -15.6268, -23.5948, 0.4618, -12.3016, -23.7583, 0.0794, -13.7433, -23.408, 0.5698, -13.7433, -23.5948, 0.4618, -12.3016, -24.0493, -0.0319, -12.4113, -23.7583, 0.0794, -13.7433, -24.1309, 0.5698, -5.9063, -24.4812, 0.0794, -10.1106, -24.1309, 0.5698, -10.1106, -24.1309, 0.5698, -5.9063, -24.4812, 0.0794, -5.9063, -24.4812, 0.0794, -10.1106, -24.1309, 0.5698, -10.1106, -24.4095, -0.0863, -11.339, -23.9662, 0.4536, -11.324, -24.1309, 0.5698, -10.1106, -24.4812, 0.0794, -10.1106, -24.4095, -0.0863, -11.339, -23.9662, 0.4536, -11.324, -24.0493, -0.0319, -12.4113, -23.5948, 0.4618, -12.3016, -23.9662, 0.4536, -11.324, -24.4095, -0.0863, -11.339, -24.0493, -0.0319, -12.4113, -24.4836, -0.4555, -5.3881, -25.1678, -0.9155, -5.9063, -24.4812, 0.0794, -5.9063, -24.4836, -0.4555, -5.3881, -25.1702, -1.4504, -5.3881, -25.1678, -0.9155, -5.9063, -23.7583, 0.0794, -13.7433, -24.4449, -0.9155, -15.6268, -23.7583, 0.0794, -15.6268, -23.7583, 0.0794, -13.7433, -24.4449, -0.9155, -13.7433, -24.4449, -0.9155, -15.6268, -24.0493, -0.0319, -12.4113, -24.4449, -0.9155, -13.7433, -23.7583, 0.0794, -13.7433, -24.0493, -0.0319, -12.4113, -24.5339, -0.6247, -12.5166, -24.4449, -0.9155, -13.7433, -24.4812, 0.0794, -5.9063, -25.1678, -0.9155, -10.1106, -24.4812, 0.0794, -10.1106, -24.4812, 0.0794, -5.9063, -25.1678, -0.9155, -5.9063, -25.1678, -0.9155, -10.1106, -24.4812, 0.0794, -10.1106, -25.1678, -0.9155, -11.5738, -24.4095, -0.0863, -11.339, -24.4812, 0.0794, -10.1106, -25.1678, -0.9155, -10.1106, -25.1678, -0.9155, -11.5738, -24.4095, -0.0863, -11.339, -24.5339, -0.6247, -12.5166, -24.0493, -0.0319, -12.4113, -24.4095, -0.0863, -11.339, -25.1678, -0.9155, -11.5738, -24.5339, -0.6247, -12.5166, -24.1333, 0.0349, -5.3881, -22.996, -0.8214, -4.5362, -24.4836, -0.4555, -5.3881, -23.4887, 0.2451, -5.3881, -24.1333, 0.0349, -5.3881, -23.7409, 0.2591, -5.3881, -23.4887, 0.2451, -5.3881, -22.996, -0.8214, -4.5362, -24.1333, 0.0349, -5.3881, -22.996, -0.8214, -4.5362, -25.1702, -1.4504, -5.3881, -24.4836, -0.4555, -5.3881, -22.996, -0.8214, -4.5362, -24.0261, -1.6004, -3.4357, -25.1702, -1.4504, -5.3881, -16.7662, 1.5238, -16.9292, -17.28, 0.6186, -17.5527, -16.7662, 0.6653, -17.8213, -16.7662, 1.5238, -16.9292, -17.28, 1.4771, -16.6606, -17.28, 0.6186, -17.5527, -16.7662, 2.3121, -16.4242, -17.28, 1.4771, -16.6606, -16.7662, 1.5238, -16.9292, -16.7662, 2.3121, -16.4242, -17.28, 2.2654, -16.1557, -17.28, 1.4771, -16.6606, -16.7662, 2.2447, -15.7846, -17.28, 2.2654, -16.1557, -16.7662, 2.3121, -16.4242, -16.7662, 2.2447, -15.7846, -17.28, 2.198, -15.516, -17.28, 2.2654, -16.1557, -16.7662, 1.4733, -15.4985, -17.28, 2.198, -15.516, -16.7662, 2.2447, -15.7846, -16.7662, 1.4733, -15.4985, -17.28, 1.4266, -15.2299, -17.28, 2.198, -15.516, -17.28, 1.4771, -16.6606, -18.039, 0.3384, -17.3075, -17.28, 0.6186, -17.5527, -17.28, 1.4771, -16.6606, -18.039, 1.1968, -16.4154, -18.039, 0.3384, -17.3075, -17.28, 2.2654, -16.1557, -18.039, 1.1968, -16.4154, -17.28, 1.4771, -16.6606, -17.28, 2.2654, -16.1557, -18.039, 1.9851, -15.9104, -18.039, 1.1968, -16.4154, -17.28, 2.198, -15.516, -18.039, 1.9851, -15.9104, -17.28, 2.2654, -16.1557, -17.28, 2.198, -15.516, -18.039, 1.9178, -15.2708, -18.039, 1.9851, -15.9104, -17.28, 1.4266, -15.2299, -18.039, 1.9178, -15.2708, -17.28, 2.198, -15.516, -17.28, 1.4266, -15.2299, -18.039, 1.1463, -14.9847, -18.039, 1.9178, -15.2708, -18.039, 1.1968, -16.4154, -18.6812, 0.2226, -17.109, -18.039, 0.3384, -17.3075, -18.039, 1.1968, -16.4154, -18.6812, 0.6704, -16.2169, -18.6812, 0.2226, -17.109, -18.039, 1.9851, -15.9104, -18.6812, 0.6704, -16.2169, -18.039, 1.1968, -16.4154, -18.039, 1.9851, -15.9104, -18.6812, 1.0816, -15.7119, -18.6812, 0.6704, -16.2169, -18.039, 1.9178, -15.2708, -18.6812, 1.0816, -15.7119, -18.039, 1.9851, -15.9104, -18.039, 1.9178, -15.2708, -18.6812, 1.0465, -15.0723, -18.6812, 1.0816, -15.7119, -18.039, 1.1463, -14.9847, -18.6812, 1.0465, -15.0723, -18.039, 1.9178, -15.2708, -18.039, 1.1463, -14.9847, -18.6812, 0.6441, -14.7862, -18.6812, 1.0465, -15.0723, -16.7662, 1.1703, -15.3133, -16.7662, 0.8505, -14.9093, -17.1986, 1.035, -14.9324, -16.7662, 1.1703, -15.3133, -17.28, 1.4266, -15.2299, -16.7662, 1.4733, -15.4985, -16.7662, 1.1703, -15.3133, -17.1986, 1.035, -14.9324, -17.28, 1.4266, -15.2299, -17.2343, 0.9312, -14.539, -16.7662, 0.8505, -14.9093, -16.7662, 0.8337, -14.539, -17.2343, 0.9312, -14.539, -17.1986, 1.035, -14.9324, -16.7662, 0.8505, -14.9093, -17.8, 0.8532, -14.539, -17.1986, 1.035, -14.9324, -17.2343, 0.9312, -14.539, -17.8, 0.8532, -14.539, -17.9339, 0.9197, -14.9039, -17.1986, 1.035, -14.9324, -18.039, 1.1463, -14.9847, -17.1986, 1.035, -14.9324, -17.9339, 0.9197, -14.9039, -18.039, 1.1463, -14.9847, -17.28, 1.4266, -15.2299, -17.1986, 1.035, -14.9324, -18.1007, 0.78, -14.539, -17.9339, 0.9197, -14.9039, -17.8, 0.8532, -14.539, -18.039, 1.1463, -14.9847, -18.1007, 0.78, -14.539, -18.6812, 0.6441, -14.7862, -18.039, 1.1463, -14.9847, -17.9339, 0.9197, -14.9039, -18.1007, 0.78, -14.539, -18.1007, 0.78, -14.539, -18.7302, 0.78, -14.4563, -18.6812, 0.6441, -14.7862, -18.6812, 1.0816, -15.7119, -19.3362, 0.0082, -16.1921, -18.6812, 0.6704, -16.2169, -18.6812, 1.0816, -15.7119, -19.3362, 0.4194, -15.6871, -19.3362, 0.0082, -16.1921, -18.6812, 1.0465, -15.0723, -19.3362, 0.4194, -15.6871, -18.6812, 1.0816, -15.7119, -18.6812, 1.0465, -15.0723, -19.3362, 0.3843, -15.0475, -19.3362, 0.4194, -15.6871, -19.3362, 0.4194, -15.6871, -19.6063, -0.0052, -16.183, -19.3362, 0.0082, -16.1921, -19.3362, 0.4194, -15.6871, -19.6063, 0.4059, -15.678, -19.6063, -0.0052, -16.183, -19.3362, 0.3843, -15.0475, -19.6063, 0.4059, -15.678, -19.3362, 0.4194, -15.6871, -19.3362, 0.3843, -15.0475, -19.6063, 0.3708, -15.0384, -19.6063, 0.4059, -15.678, -18.6812, 0.6441, -14.7862, -18.7302, 0.78, -14.4563, -18.6812, 1.0465, -15.0723, -18.7302, 0.78, -14.4563, -19.3362, 0.3843, -15.0475, -18.6812, 1.0465, -15.0723, -18.7302, 0.78, -14.4563, -19.4613, 0.78, -14.1914, -19.3362, 0.3843, -15.0475, -19.3362, 0.3843, -15.0475, -19.4613, 0.78, -14.1914, -19.6063, 0.3708, -15.0384, -20.032, 0.78, -13.8582, -19.4613, 0.78, -14.1914, -20.0751, 0.78, -13.6965, -20.032, 0.78, -13.8582, -19.6063, 0.3708, -15.0384, -19.4613, 0.78, -14.1914, -20.032, 0.78, -13.8582, -20.0061, 0.78, -14.6102, -19.6063, 0.3708, -15.0384, -19.9712, 0.78, -15.6268, -19.6063, 0.3708, -15.0384, -20.0061, 0.78, -14.6102, -19.9712, 0.78, -15.6268, -19.6063, 0.4059, -15.678, -19.6063, 0.3708, -15.0384, -20.0751, 0.78, -13.6965, -20.7111, 0.78, -13.7433, -20.032, 0.78, -13.8582, -20.0751, 0.78, -13.6965, -20.4668, 0.78, -12.9278, -20.7111, 0.78, -13.7433, -20.7111, 0.78, -11.8765, -20.5896, 0.78, -12.3318, -20.5896, 0.78, -11.7138, -20.5896, 0.78, -12.3318, -20.7111, 0.78, -13.7433, -20.4668, 0.78, -12.9278, -20.7111, 0.78, -13.7433, -20.5896, 0.78, -12.3318, -20.7111, 0.78, -11.8765, -20.7618, 0.78, -11.5738, -20.7111, 0.78, -11.8765, -20.5896, 0.78, -11.7138, -20.7618, 0.78, -11.5738, -20.997, 0.78, -11.8765, -20.7111, 0.78, -11.8765, -20.7618, 0.78, -11.5738, -20.9468, 0.78, -11.5738, -20.997, 0.78, -11.8765, -23.408, 0.5698, -15.6268, -23.0684, 0.3202, -16.4686, -23.0156, 0.794, -15.6268, -23.408, 0.5698, -15.6268, -23.4608, 0.096, -16.4686, -23.0684, 0.3202, -16.4686, -23.0156, 0.794, -15.6268, -22.8162, 0.3062, -16.4686, -22.7634, 0.78, -15.6268, -23.0156, 0.794, -15.6268, -23.0684, 0.3202, -16.4686, -22.8162, 0.3062, -16.4686, -20.7111, 0.78, -15.6268, -20.024, 0.3062, -16.4686, -19.9712, 0.78, -15.6268, -20.7111, 0.78, -15.6268, -20.7639, 0.3062, -16.4686, -20.024, 0.3062, -16.4686, -20.997, 0.78, -15.6268, -20.7639, 0.3062, -16.4686, -20.7111, 0.78, -15.6268, -20.997, 0.78, -15.6268, -21.0498, 0.3062, -16.4686, -20.7639, 0.3062, -16.4686, -22.7634, 0.78, -15.6268, -21.0498, 0.3062, -16.4686, -20.997, 0.78, -15.6268, -22.7634, 0.78, -15.6268, -22.8162, 0.3062, -16.4686, -21.0498, 0.3062, -16.4686, -23.4608, 0.096, -16.4686, -23.1865, -0.5812, -17.1014, -23.0684, 0.3202, -16.4686, -23.4608, 0.096, -16.4686, -23.5789, -0.8054, -17.1014, -23.1865, -0.5812, -17.1014, -23.0684, 0.3202, -16.4686, -22.9343, -0.5952, -17.1014, -22.8162, 0.3062, -16.4686, -23.0684, 0.3202, -16.4686, -23.1865, -0.5812, -17.1014, -22.9343, -0.5952, -17.1014, -20.7639, 0.3062, -16.4686, -20.1421, -0.5952, -17.1014, -20.024, 0.3062, -16.4686, -20.7639, 0.3062, -16.4686, -20.8821, -0.5952, -17.1014, -20.1421, -0.5952, -17.1014, -21.0498, 0.3062, -16.4686, -20.8821, -0.5952, -17.1014, -20.7639, 0.3062, -16.4686, -21.0498, 0.3062, -16.4686, -21.168, -0.5952, -17.1014, -20.8821, -0.5952, -17.1014, -22.8162, 0.3062, -16.4686, -21.168, -0.5952, -17.1014, -21.0498, 0.3062, -16.4686, -22.8162, 0.3062, -16.4686, -22.9343, -0.5952, -17.1014, -21.168, -0.5952, -17.1014, -23.5789, -0.8054, -17.1014, -23.2216, -0.8933, -17.6392, -23.1865, -0.5812, -17.1014, -23.5789, -0.8054, -17.1014, -23.614, -1.1175, -17.6392, -23.2216, -0.8933, -17.6392, -23.1865, -0.5812, -17.1014, -22.9694, -0.9073, -17.6392, -22.9343, -0.5952, -17.1014, -23.1865, -0.5812, -17.1014, -23.2216, -0.8933, -17.6392, -22.9694, -0.9073, -17.6392, -20.8821, -0.5952, -17.1014, -20.1772, -0.9073, -17.6392, -20.1421, -0.5952, -17.1014, -20.8821, -0.5952, -17.1014, -20.9171, -0.9073, -17.6392, -20.1772, -0.9073, -17.6392, -21.168, -0.5952, -17.1014, -20.9171, -0.9073, -17.6392, -20.8821, -0.5952, -17.1014, -21.168, -0.5952, -17.1014, -21.203, -0.9073, -17.6392, -20.9171, -0.9073, -17.6392, -22.9343, -0.5952, -17.1014, -21.203, -0.9073, -17.6392, -21.168, -0.5952, -17.1014, -22.9343, -0.5952, -17.1014, -22.9694, -0.9073, -17.6392, -21.203, -0.9073, -17.6392, -23.614, -1.1175, -17.6392, -23.2319, -1.1244, -18.9007, -23.2216, -0.8933, -17.6392, -23.614, -1.1175, -17.6392, -23.6242, -1.3486, -18.9007, -23.2319, -1.1244, -18.9007, -23.2216, -0.8933, -17.6392, -22.9796, -1.1384, -18.9007, -22.9694, -0.9073, -17.6392, -23.2216, -0.8933, -17.6392, -23.2319, -1.1244, -18.9007, -22.9796, -1.1384, -18.9007, -20.9171, -0.9073, -17.6392, -20.1874, -1.1384, -18.9007, -20.1772, -0.9073, -17.6392, -20.9171, -0.9073, -17.6392, -20.9274, -1.1384, -18.9007, -20.1874, -1.1384, -18.9007, -21.203, -0.9073, -17.6392, -20.9274, -1.1384, -18.9007, -20.9171, -0.9073, -17.6392, -21.203, -0.9073, -17.6392, -21.2133, -1.1384, -18.9007, -20.9274, -1.1384, -18.9007, -22.9694, -0.9073, -17.6392, -21.2133, -1.1384, -18.9007, -21.203, -0.9073, -17.6392, -22.9694, -0.9073, -17.6392, -22.9796, -1.1384, -18.9007, -21.2133, -1.1384, -18.9007, -18.6812, 0.2226, -17.109, -18.1224, -0.4788, -18.1089, -18.039, 0.3384, -17.3075, -18.6812, 0.2226, -17.109, -18.7646, -0.5946, -17.9104, -18.1224, -0.4788, -18.1089, -18.039, 0.3384, -17.3075, -17.3634, -0.1986, -18.3541, -17.28, 0.6186, -17.5527, -18.039, 0.3384, -17.3075, -18.1224, -0.4788, -18.1089, -17.3634, -0.1986, -18.3541, -17.28, 0.6186, -17.5527, -16.8496, -0.1519, -18.6227, -16.7662, 0.6653, -17.8213, -17.28, 0.6186, -17.5527, -17.3634, -0.1986, -18.3541, -16.8496, -0.1519, -18.6227, -18.7646, -0.5946, -17.9104, -18.2826, -1.0976, -19.7475, -18.1224, -0.4788, -18.1089, -18.7646, -0.5946, -17.9104, -18.9248, -1.2134, -19.549, -18.2826, -1.0976, -19.7475, -18.1224, -0.4788, -18.1089, -17.5236, -0.8174, -19.9927, -17.3634, -0.1986, -18.3541, -18.1224, -0.4788, -18.1089, -18.2826, -1.0976, -19.7475, -17.5236, -0.8174, -19.9927, -17.3634, -0.1986, -18.3541, -17.0099, -0.7707, -20.2612, -16.8496, -0.1519, -18.6227, -17.3634, -0.1986, -18.3541, -17.5236, -0.8174, -19.9927, -17.0099, -0.7707, -20.2612, -14.6035, -0.0092, -18.431, -14.2639, -0.871, -19.9017, -14.1568, -0.2335, -18.6779, -14.6035, -0.0092, -18.431, -14.7107, -0.6466, -19.6548, -14.2639, -0.871, -19.9017, -15.0106, 0.1955, -18.2089, -14.7107, -0.6466, -19.6548, -14.6035, -0.0092, -18.431, -15.0106, 0.1955, -18.2089, -15.1178, -0.4418, -19.4328, -14.7107, -0.6466, -19.6548, -15.4399, 0.1387, -18.1583, -15.1178, -0.4418, -19.4328, -15.0106, 0.1955, -18.2089, -15.4399, 0.1387, -18.1583, -15.5471, -0.4986, -19.3821, -15.1178, -0.4418, -19.4328, -15.9763, 0.3728, -17.9393, -15.5471, -0.4986, -19.3821, -15.4399, 0.1387, -18.1583, -15.9763, 0.3728, -17.9393, -16.0834, -0.2646, -19.1631, -15.5471, -0.4986, -19.3821, -14.7107, -0.6466, -19.6548, -14.3017, -0.9869, -20.8936, -14.2639, -0.871, -19.9017, -14.7107, -0.6466, -19.6548, -14.7485, -0.7625, -20.6467, -14.3017, -0.9869, -20.8936, -15.1178, -0.4418, -19.4328, -14.7485, -0.7625, -20.6467, -14.7107, -0.6466, -19.6548, -15.1178, -0.4418, -19.4328, -15.1556, -0.5577, -20.4246, -14.7485, -0.7625, -20.6467, -15.5471, -0.4986, -19.3821, -15.1556, -0.5577, -20.4246, -15.1178, -0.4418, -19.4328, -15.5471, -0.4986, -19.3821, -15.5849, -0.6145, -20.374, -15.1556, -0.5577, -20.4246, -16.0834, -0.2646, -19.1631, -15.5849, -0.6145, -20.374, -15.5471, -0.4986, -19.3821, -16.0834, -0.2646, -19.1631, -16.1212, -0.3805, -20.1549, -15.5849, -0.6145, -20.374, -16.8496, -0.1519, -18.6227, -16.1212, -0.3805, -20.1549, -16.0834, -0.2646, -19.1631, -16.8496, -0.1519, -18.6227, -17.0099, -0.7707, -20.2612, -16.1212, -0.3805, -20.1549, -15.9763, 0.3728, -17.9393, -16.8496, -0.1519, -18.6227, -16.0834, -0.2646, -19.1631, -15.9763, 0.3728, -17.9393, -16.7662, 0.6653, -17.8213, -16.8496, -0.1519, -18.6227, -19.6063, -0.0052, -16.183, -19.9712, 0.78, -15.6268, -20.024, 0.3062, -16.4686, -19.6063, -0.0052, -16.183, -19.6063, 0.4059, -15.678, -19.9712, 0.78, -15.6268, -18.6812, 0.2226, -17.109, -18.6812, 0.6704, -16.2169, -19.3362, 0.0082, -16.1921, -19.3362, 0.0082, -16.1921, -19.6063, -0.0052, -16.183, -18.6812, 0.2226, -17.109, -20.024, 0.3062, -16.4686, -20.1421, -0.5952, -17.1014, -19.6063, -0.0052, -16.183, -18.6812, 0.2226, -17.109, -20.1421, -0.5952, -17.1014, -18.7646, -0.5946, -17.9104, -18.6812, 0.2226, -17.109, -19.6063, -0.0052, -16.183, -20.1421, -0.5952, -17.1014, -20.1421, -0.5952, -17.1014, -20.1772, -0.9073, -17.6392, -18.7646, -0.5946, -17.9104, -20.1772, -0.9073, -17.6392, -18.9248, -1.2134, -19.549, -18.7646, -0.5946, -17.9104, -20.1772, -0.9073, -17.6392, -20.1874, -1.1384, -18.9007, -18.9248, -1.2134, -19.549, -12.7377, -0.3527, -19.3424, -11.7518, -0.6671, -20.5935, -11.6479, -0.4947, -20.0357, -12.7377, -0.3527, -19.3424, -12.8416, -0.5251, -20.5366, -11.7518, -0.6671, -20.5935, -13.5816, -0.3357, -18.9413, -12.8416, -0.5251, -20.5366, -12.7377, -0.3527, -19.3424, -13.5816, -0.3357, -18.9413, -13.6855, -0.5081, -20.5037, -12.8416, -0.5251, -20.5366, -13.6855, -0.5081, -20.5037, -14.2639, -0.871, -19.9017, -14.3017, -0.9869, -20.8936, -14.1568, -0.2335, -18.6779, -13.6855, -0.5081, -20.5037, -13.5816, -0.3357, -18.9413, -14.1568, -0.2335, -18.6779, -14.2639, -0.871, -19.9017, -13.6855, -0.5081, -20.5037, -10.9397, -0.1197, -20.2664, -10.3082, -0.5155, -21.1417, -10.2719, -0.0759, -20.4045, -10.9397, -0.1197, -20.2664, -10.976, -0.5593, -21.0036, -10.3082, -0.5155, -21.1417, -10.9397, -0.1197, -20.2664, -11.7518, -0.6671, -20.5935, -10.976, -0.5593, -21.0036, -10.9397, -0.1197, -20.2664, -11.6479, -0.4947, -20.0357, -11.7518, -0.6671, -20.5935, -8.8907, 0.0096, -18.9565, -7.8238, -0.7387, -20.2815, -7.8881, -0.0524, -19.4528, -8.8907, 0.0096, -18.9565, -8.8264, -0.6767, -19.7852, -7.8238, -0.7387, -20.2815, -8.8264, -0.6767, -19.7852, -7.7809, -1.1691, -21.2387, -7.8238, -0.7387, -20.2815, -8.8264, -0.6767, -19.7852, -8.7835, -1.1071, -20.7424, -7.7809, -1.1691, -21.2387, -8.8907, 0.0096, -18.9565, -9.8524, 0.0801, -20.4045, -8.8264, -0.6767, -19.7852, -8.8907, 0.0096, -18.9565, -9.1759, 0.8272, -19.0075, -9.8524, 0.0801, -20.4045, -8.8264, -0.6767, -19.7852, -9.8524, 0.0801, -20.4045, -8.7835, -1.1071, -20.7424, -9.8524, 0.0801, -20.4045, -10.3082, -0.5155, -21.1417, -8.7835, -1.1071, -20.7424, -9.8524, 0.0801, -20.4045, -10.2719, -0.0759, -20.4045, -10.3082, -0.5155, -21.1417, -5.8212, 0.6976, -19.6971, -4.474, -0.4776, -20.4587, -4.3801, 0.6976, -19.4806, -5.8212, 0.6976, -19.6971, -5.915, -0.4776, -20.6752, -4.474, -0.4776, -20.4587, -7.2893, 0.6976, -19.3858, -5.915, -0.4776, -20.6752, -5.8212, 0.6976, -19.6971, -7.2893, 0.6976, -19.3858, -7.3832, -0.4776, -20.364, -5.915, -0.4776, -20.6752, -5.915, -0.4776, -20.6752, -4.513, -0.7855, -21.1443, -4.474, -0.4776, -20.4587, -5.915, -0.4776, -20.6752, -5.9541, -0.7855, -21.3608, -4.513, -0.7855, -21.1443, -7.3832, -0.4776, -20.364, -5.9541, -0.7855, -21.3608, -5.915, -0.4776, -20.6752, -7.3832, -0.4776, -20.364, -7.4222, -0.7855, -21.0496, -5.9541, -0.7855, -21.3608, -7.2893, 0.6976, -19.3858, -7.8238, -0.7387, -20.2815, -7.3832, -0.4776, -20.364, -7.2893, 0.6976, -19.3858, -7.8881, -0.0524, -19.4528, -7.8238, -0.7387, -20.2815, -7.8238, -0.7387, -20.2815, -7.4222, -0.7855, -21.0496, -7.3832, -0.4776, -20.364, -7.8238, -0.7387, -20.2815, -7.7809, -1.1691, -21.2387, -7.4222, -0.7855, -21.0496, -4.2989, 0.6976, -17.3224, -3.4198, 0.4454, -15.0345, -4.4004, 0.6976, -15.0153, -4.2989, 0.6976, -17.3224, -3.3184, 0.4454, -17.3415, -3.4198, 0.4454, -15.0345, -4.3801, 0.6976, -19.4806, -3.3184, 0.4454, -17.3415, -4.2989, 0.6976, -17.3224, -4.3801, 0.6976, -19.4806, -3.3996, 0.4454, -19.4997, -3.3184, 0.4454, -17.3415, -3.3184, 0.4454, -17.3415, -2.7053, -0.1149, -15.0442, -3.4198, 0.4454, -15.0345, -3.3184, 0.4454, -17.3415, -2.6038, -0.1149, -17.3512, -2.7053, -0.1149, -15.0442, -3.3996, 0.4454, -19.4997, -2.6038, -0.1149, -17.3512, -3.3184, 0.4454, -17.3415, -3.3996, 0.4454, -19.4997, -2.685, -0.1149, -19.5094, -2.6038, -0.1149, -17.3512, -4.4762, 1.1457, -13.5799, -1.8293, 0.7265, -14.2222, -1.8197, 1.1457, -13.6471, -4.4762, 1.1457, -13.5799, -4.0539, 0.5158, -14.1921, -1.8293, 0.7265, -14.2222, -4.0539, 0.5158, -14.1921, -1.8583, 0.2095, -14.4616, -1.8293, 0.7265, -14.2222, -4.0539, 0.5158, -14.1921, -3.8999, -0.1216, -14.5162, -1.8583, 0.2095, -14.4616, -4.7116, 0.6976, -13.6622, -4.4004, 0.6976, -15.0153, -4.0539, 0.5158, -14.1921, -4.4762, 1.1457, -13.5799, -4.7116, 0.6976, -13.6622, -4.0539, 0.5158, -14.1921, -4.4004, 0.6976, -15.0153, -3.8999, -0.1216, -14.5162, -4.0539, 0.5158, -14.1921, -4.4004, 0.6976, -15.0153, -3.4198, 0.4454, -15.0345, -3.8999, -0.1216, -14.5162, -2.7053, -0.1149, -15.0442, -3.8999, -0.1216, -14.5162, -3.4198, 0.4454, -15.0345, -2.7053, -0.1149, -15.0442, -1.8583, 0.2095, -14.4616, -3.8999, -0.1216, -14.5162, -1.047, 1.1044, -14.8517, -1.486, 1.1457, -12.7027, -1.8197, 1.1457, -13.6471, -1.8197, 1.1457, -13.6471, -1.8293, 0.7265, -14.2222, -1.047, 1.1044, -14.8517, -1.8583, 0.2095, -14.4616, -1.047, 1.1044, -14.8517, -1.8293, 0.7265, -14.2222, -1.047, 1.1044, -14.8517, -1.666, 0.8596, -15.6193, -0.9352, 1.3264, -14.9509, -0.8372, 1.6071, -15.0373, -0.9352, 1.3264, -14.9509, -0.4508, 1.6765, -15.4572, -0.9352, 1.3264, -14.9509, -1.666, 0.8596, -15.6193, -0.4508, 1.6765, -15.4572, -1.666, 0.8596, -15.6193, -1.8153, 1.0167, -16.2185, -0.4508, 1.6765, -15.4572, -1.4742, 0.9382, -17.4272, -1.8153, 1.0167, -16.2185, -2.2151, 0.9382, -17.1914, -1.4742, 0.9382, -17.4272, -0.4508, 1.6765, -15.4572, -1.8153, 1.0167, -16.2185, -1.047, 1.1044, -14.8517, -1.8583, 0.2095, -14.4616, -1.666, 0.8596, -15.6193, -1.8583, 0.2095, -14.4616, -2.7053, -0.1149, -15.0442, -1.666, 0.8596, -15.6193, -2.7053, -0.1149, -15.0442, -1.8153, 1.0167, -16.2185, -1.666, 0.8596, -15.6193, -2.7053, -0.1149, -15.0442, -2.6038, -0.1149, -17.3512, -1.8153, 1.0167, -16.2185, -1.8153, 1.0167, -16.2185, -2.6038, -0.1149, -17.3512, -2.2151, 0.9382, -17.1914, -2.2151, 0.9382, -17.1914, -2.685, -0.1149, -19.5094, -2.2151, 0.473, -18.5967, -2.2151, 0.9382, -17.1914, -2.6038, -0.1149, -17.3512, -2.685, -0.1149, -19.5094, -2.2151, -0.0768, -19.1465, -2.2151, 0.473, -18.5967, -2.685, -0.1149, -19.5094, -2.2151, -0.0768, -19.5507, -2.2151, -0.0768, -19.1465, -2.685, -0.1149, -19.5094, -4.3801, 0.6976, -19.4806, -2.2151, -0.8694, -20.8021, -3.3996, 0.4454, -19.4997, -4.3801, 0.6976, -19.4806, -4.474, -0.4776, -20.4587, -2.2151, -0.8694, -20.8021, -2.2151, -0.8694, -20.8021, -2.2151, -0.0768, -19.5507, -2.685, -0.1149, -19.5094, -2.685, -0.1149, -19.5094, -3.3996, 0.4454, -19.4997, -2.2151, -0.8694, -20.8021, 1, -1.3905, 1.2928, 1, -0.3321, 2.5764, 1, -1.3905, 2.5764, 1, -1.3905, 1.2928, 1, -0.287, 1.2928, 1, -0.3321, 2.5764, -0.9999, -0.287, 1.2928, -0.9999, -1.3905, 2.5764, -0.9999, -0.3321, 2.5764, -0.9999, -0.287, 1.2928, -0.9999, -1.3905, 1.2928, -0.9999, -1.3905, 2.5764, -0.9999, -0.3321, 2.5764, -1.1968, -0.3992, 1.2811, -0.9999, -0.287, 1.2928, -0.9999, -0.3321, 2.5764, -1.1968, -0.4443, 2.5648, -1.1968, -0.3992, 1.2811, -0.9999, -0.287, 1.2928, -1.1968, -0.174, 1.1291, -0.9999, -0.0618, 1.1408, -0.9999, -0.287, 1.2928, -1.1968, -0.3992, 1.2811, -1.1968, -0.174, 1.1291, -0.9999, -0.0618, 1.1408, -1.1968, -0.1121, 0.9883, -0.9999, 0, 1, -0.9999, -0.0618, 1.1408, -1.1968, -0.174, 1.1291, -1.1968, -0.1121, 0.9883, -0.9999, 0, 1, -1.2117, 0.1171, -0.1997, -0.9999, -0.0067, -0.7694, -0.9999, 0, 1, -1.1968, -0.1121, 0.9883, -1.2117, 0.1171, -0.1997, -1.3744, 0.2148, -0.3875, -0.9999, -0.0067, -0.7694, -1.2117, 0.1171, -0.1997, -1.3744, 0.2148, -0.3875, -1.2117, 0.1171, -0.1997, -1.3744, -0.0176, 0.1064, -1.2117, 0.1171, -0.1997, -1.1968, -0.1121, 0.9883, -1.3744, -0.0176, 0.1064, -1.3744, -0.0176, 0.1064, -1.1968, -0.1121, 0.9883, -1.3744, -0.3507, 0.5424, -1.3744, -0.3507, 0.5424, -1.1968, -0.1121, 0.9883, -1.3744, -0.6829, 1.0945, -1.1968, -0.1121, 0.9883, -1.1968, -0.174, 1.1291, -1.3744, -0.6829, 1.0945, -1.3744, -0.867, 1.5305, -1.1968, -0.174, 1.1291, -1.1968, -0.3992, 1.2811, -1.3744, -0.867, 1.5305, -1.3744, -0.6829, 1.0945, -1.1968, -0.174, 1.1291, -1.1968, -0.3992, 1.2811, -1.1968, -0.4443, 2.5648, -1.3744, -0.867, 1.5305, -1.3744, -0.867, 1.5305, -1.1968, -0.4443, 2.5648, -1.3744, -1.1012, 2.4314, 4.1044, -0.97, 1, 3.3966, -1.0294, 1.446, 3.4011, -1.1641, 1, 4.1044, -0.97, 1, 4.1, -0.8354, 1.446, 3.3966, -1.0294, 1.446, 3.4011, -1.1641, 1, 2.9843, -1.0052, 1.446, 2.9888, -1.1398, 1, 3.4011, -1.1641, 1, 3.3966, -1.0294, 1.446, 2.9843, -1.0052, 1.446, 2.9888, -1.1398, 1, 2.4022, -0.8354, 1.446, 2.4067, -0.97, 1, 2.9888, -1.1398, 1, 2.9843, -1.0052, 1.446, 2.4022, -0.8354, 1.446, 2.4067, -0.97, 1, 1.7716, -0.3018, 1.446, 1.7761, -0.4365, 1, 2.4067, -0.97, 1, 2.4022, -0.8354, 1.446, 1.7716, -0.3018, 1.446, 4.1, -0.8354, 1.446, 3.3801, -0.7803, 1.7368, 3.3966, -1.0294, 1.446, 4.1, -0.8354, 1.446, 4.0835, -0.5863, 1.7368, 3.3801, -0.7803, 1.7368, 3.3966, -1.0294, 1.446, 2.9678, -0.7561, 1.7368, 2.9843, -1.0052, 1.446, 3.3966, -1.0294, 1.446, 3.3801, -0.7803, 1.7368, 2.9678, -0.7561, 1.7368, 2.9843, -1.0052, 1.446, 2.3857, -0.5863, 1.7368, 2.4022, -0.8354, 1.446, 2.9843, -1.0052, 1.446, 2.9678, -0.7561, 1.7368, 2.3857, -0.5863, 1.7368, 2.4022, -0.8354, 1.446, 1.7552, -0.0527, 1.7368, 1.7716, -0.3018, 1.446, 2.4022, -0.8354, 1.446, 2.3857, -0.5863, 1.7368, 1.7552, -0.0527, 1.7368, 4.0835, -0.5863, 1.7368, 3.3834, -0.7399, 2.1692, 3.3801, -0.7803, 1.7368, 4.0835, -0.5863, 1.7368, 4.0867, -0.5459, 2.1692, 3.3834, -0.7399, 2.1692, 3.3801, -0.7803, 1.7368, 2.9711, -0.7157, 2.1692, 2.9678, -0.7561, 1.7368, 3.3801, -0.7803, 1.7368, 3.3834, -0.7399, 2.1692, 2.9711, -0.7157, 2.1692, 2.9678, -0.7561, 1.7368, 2.389, -0.5459, 2.1692, 2.3857, -0.5863, 1.7368, 2.9678, -0.7561, 1.7368, 2.9711, -0.7157, 2.1692, 2.389, -0.5459, 2.1692, 2.3857, -0.5863, 1.7368, 1.7584, -0.0123, 2.1692, 1.7552, -0.0527, 1.7368, 2.3857, -0.5863, 1.7368, 2.389, -0.5459, 2.1692, 1.7584, -0.0123, 2.1692, 4.0867, -0.5459, 2.1692, 3.4151, -0.9419, 3.1214, 3.3834, -0.7399, 2.1692, 4.0867, -0.5459, 2.1692, 4.1184, -0.7479, 3.1214, 3.4151, -0.9419, 3.1214, 3.3834, -0.7399, 2.1692, 3.0028, -0.9177, 3.1214, 2.9711, -0.7157, 2.1692, 3.3834, -0.7399, 2.1692, 3.4151, -0.9419, 3.1214, 3.0028, -0.9177, 3.1214, 2.9711, -0.7157, 2.1692, 2.4207, -0.7479, 3.1214, 2.389, -0.5459, 2.1692, 2.9711, -0.7157, 2.1692, 3.0028, -0.9177, 3.1214, 2.4207, -0.7479, 3.1214, 2.389, -0.5459, 2.1692, 1.7901, -0.2143, 3.1214, 1.7584, -0.0123, 2.1692, 2.389, -0.5459, 2.1692, 2.4207, -0.7479, 3.1214, 1.7901, -0.2143, 3.1214, 4.1184, -0.7479, 3.1214, 3.4895, -1.7161, 3.7216, 3.4151, -0.9419, 3.1214, 4.1184, -0.7479, 3.1214, 4.1929, -1.5221, 3.7216, 3.4895, -1.7161, 3.7216, 3.4151, -0.9419, 3.1214, 3.0772, -1.6918, 3.7216, 3.0028, -0.9177, 3.1214, 3.4151, -0.9419, 3.1214, 3.4895, -1.7161, 3.7216, 3.0772, -1.6918, 3.7216, 3.0028, -0.9177, 3.1214, 2.4951, -1.5221, 3.7216, 2.4207, -0.7479, 3.1214, 3.0028, -0.9177, 3.1214, 3.0772, -1.6918, 3.7216, 2.4951, -1.5221, 3.7216, 2.4207, -0.7479, 3.1214, 1.8645, -0.9885, 3.7216, 1.7901, -0.2143, 3.1214, 2.4207, -0.7479, 3.1214, 2.4951, -1.5221, 3.7216, 1.8645, -0.9885, 3.7216, 1, -0.287, 1.2928, 1.1957, -0.4667, 2.5911, 1, -0.3321, 2.5764, 1, -0.287, 1.2928, 1.1957, -0.4217, 1.3074, 1.1957, -0.4667, 2.5911, 1, -0.0618, 1.1408, 1.1957, -0.4217, 1.3074, 1, -0.287, 1.2928, 1, -0.0618, 1.1408, 1.1957, -0.1965, 1.1554, 1.1957, -0.4217, 1.3074, 1, 0, 1, 1.1957, -0.1965, 1.1554, 1, -0.0618, 1.1408, 1, 0, 1, 1.7761, -0.4365, 1, 1.1957, -0.1965, 1.1554, 1.7716, -0.3018, 1.446, 1.1957, -0.1965, 1.1554, 1.7761, -0.4365, 1, 1.7584, -0.0123, 2.1692, 1.1957, -0.4217, 1.3074, 1.7552, -0.0527, 1.7368, 1.7716, -0.3018, 1.446, 1.1957, -0.4217, 1.3074, 1.1957, -0.1965, 1.1554, 1.7716, -0.3018, 1.446, 1.7552, -0.0527, 1.7368, 1.1957, -0.4217, 1.3074, 1.7901, -0.2143, 3.1214, 1.1957, -0.4217, 1.3074, 1.7584, -0.0123, 2.1692, 1.7901, -0.2143, 3.1214, 1.1957, -0.4667, 2.5911, 1.1957, -0.4217, 1.3074, 1.1957, -0.4667, 2.5911, 1, -0.4806, 2.8501, 1, -0.3321, 2.5764, 1.1957, -0.4667, 2.5911, 1.1957, -0.6153, 2.8647, 1, -0.4806, 2.8501, -0.9999, -0.3321, 2.5764, -1.1968, -0.5928, 2.8384, -1.1968, -0.4443, 2.5648, -0.9999, -0.3321, 2.5764, -0.9999, -0.4806, 2.8501, -1.1968, -0.5928, 2.8384, 1.1957, -0.6153, 2.8647, 1, -1.2313, 3.4796, 1, -0.4806, 2.8501, 1.1957, -0.6153, 2.8647, 1.1957, -1.3659, 3.4942, 1, -1.2313, 3.4796, -0.9999, -0.4806, 2.8501, -1.1968, -1.3435, 3.4679, -1.1968, -0.5928, 2.8384, -0.9999, -0.4806, 2.8501, -0.9999, -1.2313, 3.4796, -1.1968, -1.3435, 3.4679, 1, -0.4806, 2.8501, -0.9999, -1.2313, 3.4796, -0.9999, -0.4806, 2.8501, 1, -0.4806, 2.8501, 1, -1.2313, 3.4796, -0.9999, -1.2313, 3.4796, -1.1968, -0.4443, 2.5648, -1.1968, -0.5928, 2.8384, -1.3744, -1.1012, 2.4314, -1.1968, -0.5928, 2.8384, -1.1968, -1.3435, 3.4679, -1.3744, -1.1012, 2.4314, -1.3744, -1.1012, 2.4314, -1.1968, -1.3435, 3.4679, -1.3744, -1.1648, 3.6811, 1.1957, -0.4667, 2.5911, 1.7901, -0.2143, 3.1214, 1.1957, -0.6153, 2.8647, 1.7901, -0.2143, 3.1214, 1.1957, -1.3659, 3.4942, 1.1957, -0.6153, 2.8647, 1.7901, -0.2143, 3.1214, 1.8645, -0.9885, 3.7216, 1.1957, -1.3659, 3.4942, 1.8645, -0.9885, 3.7216, 1.1957, -1.4816, 4.0195, 1.1957, -1.3659, 3.4942, 1.8645, -0.9885, 3.7216, 1.8645, -1.3415, 4.247, 1.1957, -1.4816, 4.0195, -1.1968, -1.3435, 3.4679, -1.3744, -1.407, 4.2064, -1.3744, -1.1648, 3.6811, -1.1968, -1.3435, 3.4679, -1.1968, -1.4733, 3.9932, -1.3744, -1.407, 4.2064, 1.1957, -1.3659, 3.4942, 1, -1.4317, 4.0049, 1, -1.2313, 3.4796, 1.1957, -1.3659, 3.4942, 1.1957, -1.4816, 4.0195, 1, -1.4317, 4.0049, -0.9999, -1.2313, 3.4796, -1.1968, -1.4733, 3.9932, -1.1968, -1.3435, 3.4679, -0.9999, -1.2313, 3.4796, -0.9999, -1.4317, 4.0049, -1.1968, -1.4733, 3.9932, 1, -1.2313, 3.4796, -0.9999, -1.4317, 4.0049, -0.9999, -1.2313, 3.4796, 1, -1.2313, 3.4796, 1, -1.4317, 4.0049, -0.9999, -1.4317, 4.0049, 3.4895, -1.7161, 3.7216, 3.0772, -1.6026, 4.247, 3.0772, -1.6918, 3.7216, 3.4895, -1.7161, 3.7216, 3.4895, -1.6116, 4.247, 3.0772, -1.6026, 4.247, 3.0772, -1.6918, 3.7216, 2.4951, -1.5396, 4.247, 2.4951, -1.5221, 3.7216, 3.0772, -1.6918, 3.7216, 3.0772, -1.6026, 4.247, 2.4951, -1.5396, 4.247, 2.4951, -1.5221, 3.7216, 1.8645, -1.3415, 4.247, 1.8645, -0.9885, 3.7216, 2.4951, -1.5221, 3.7216, 2.4951, -1.5396, 4.247, 1.8645, -1.3415, 4.247, -1.3744, -1.1648, 3.6811, -2.0169, -1.4322, 4.2064, -2.0169, -1.2328, 3.6811, -1.3744, -1.1648, 3.6811, -1.3744, -1.407, 4.2064, -2.0169, -1.4322, 4.2064, 5.8507, -1.3823, 1, 6.7488, -1.6256, 2.5458, 5.6366, -1.0028, 1.8065, 5.8507, -1.3823, 1, 5.6366, -1.0028, 1.8065, 4.5653, -1.0671, 1, 4.5653, -1.0671, 1, 5.6366, -1.0028, 1.8065, 4.1044, -0.97, 1, 4.1, -0.8354, 1.446, 5.6366, -1.0028, 1.8065, 4.0835, -0.5863, 1.7368, 4.1044, -0.97, 1, 5.6366, -1.0028, 1.8065, 4.1, -0.8354, 1.446, 4.0835, -0.5863, 1.7368, 5.6366, -1.0028, 1.8065, 4.0867, -0.5459, 2.1692, 4.0867, -0.5459, 2.1692, 5.6366, -1.0028, 1.8065, 4.1184, -0.7479, 3.1214, 4.1929, -1.5221, 3.7216, 5.6366, -1.0028, 1.8065, 6.7488, -1.6256, 2.5458, 4.1929, -1.5221, 3.7216, 4.1184, -0.7479, 3.1214, 5.6366, -1.0028, 1.8065, 8.1812, -1.5099, 4.6219, 4.1929, -1.5221, 3.7216, 6.7488, -1.6256, 2.5458, 8.1812, -1.5099, 4.6219, 6.0796, -1.5099, 4.6219, 4.1929, -1.5221, 3.7216, 3.4895, -1.7161, 3.7216, 6.0796, -1.5099, 4.6219, 3.978, -1.5099, 4.6219, 3.4895, -1.7161, 3.7216, 4.1929, -1.5221, 3.7216, 6.0796, -1.5099, 4.6219, 3.4895, -1.7161, 3.7216, 3.978, -1.5099, 4.6219, 3.4895, -1.6116, 4.247, 3.978, -1.5099, 4.6219, 1.8763, -1.5099, 4.6219, 3.4895, -1.6116, 4.247, 3.0772, -1.6026, 4.247, 1.8763, -1.5099, 4.6219, 2.4951, -1.5396, 4.247, 3.0772, -1.6026, 4.247, 3.4895, -1.6116, 4.247, 1.8763, -1.5099, 4.6219, 2.4951, -1.5396, 4.247, 1.1957, -1.4816, 4.0195, 1.8645, -1.3415, 4.247, 2.4951, -1.5396, 4.247, 1.8763, -1.5099, 4.6219, 1.1957, -1.4816, 4.0195, 1, -1.4317, 4.0049, 1.8763, -1.5099, 4.6219, -0.2252, -1.5099, 4.6219, 1, -1.4317, 4.0049, 1.1957, -1.4816, 4.0195, 1.8763, -1.5099, 4.6219, 1, -1.4317, 4.0049, -0.2252, -1.5099, 4.6219, -0.9999, -1.4317, 4.0049, -0.9999, -1.4317, 4.0049, -0.2252, -1.5099, 4.6219, -1.1968, -1.4733, 3.9932, -1.1968, -1.4733, 3.9932, -0.2252, -1.5099, 4.6219, -1.3744, -1.407, 4.2064, -1.3744, -1.407, 4.2064, -2.3268, -1.5099, 4.6219, -2.0169, -1.4322, 4.2064, -1.3744, -1.407, 4.2064, -0.2252, -1.5099, 4.6219, -2.3268, -1.5099, 4.6219, -2.5815, -1.2088, 3.6811, -2.0169, -1.4322, 4.2064, -2.3268, -1.5099, 4.6219, -2.5815, -1.2088, 3.6811, -2.0169, -1.2328, 3.6811, -2.0169, -1.4322, 4.2064, -3.3197, -0.9519, 3.6811, -2.5815, -1.2088, 3.6811, -2.3268, -1.5099, 4.6219, -3.3197, -0.9519, 3.6811, -3.2061, -0.9986, 3.6811, -2.5815, -1.2088, 3.6811, -3.5306, -0.9285, 3.6811, -2.3268, -1.5099, 4.6219, -4.4285, -1.5099, 4.6219, -3.5306, -0.9285, 3.6811, -3.3197, -0.9519, 3.6811, -2.3268, -1.5099, 4.6219, -3.5306, -0.9285, 3.6811, -6.5301, -1.5099, 4.6219, -7.3486, -0.9285, 3.6811, -3.5306, -0.9285, 3.6811, -4.4285, -1.5099, 4.6219, -6.5301, -1.5099, 4.6219, -7.7575, -0.9445, 3.6811, -6.5301, -1.5099, 4.6219, -8.6318, -1.5099, 4.6219, -7.7575, -0.9445, 3.6811, -7.3486, -0.9285, 3.6811, -6.5301, -1.5099, 4.6219, -7.7575, -0.9445, 3.6811, -9.139, -1.2908, 3.6571, -8.333, -1.1067, 3.713, -7.7575, -0.9445, 3.6811, -8.6318, -1.5099, 4.6219, -9.139, -1.2908, 3.6571, -9.139, -1.2908, 3.6571, -9.7989, -1.2728, 3.6056, -9.5175, -1.3049, 3.6284, -9.139, -1.2908, 3.6571, -8.6318, -1.5099, 4.6219, -9.7989, -1.2728, 3.6056, -9.7989, -1.2728, 3.6056, -10.7334, -1.5099, 4.6219, -10.14, -1.2194, 3.5566, -9.7989, -1.2728, 3.6056, -8.6318, -1.5099, 4.6219, -10.7334, -1.5099, 4.6219, -11.9739, -1.2194, 3.5566, -10.7334, -1.5099, 4.6219, -12.835, -1.5099, 4.6219, -11.9739, -1.2194, 3.5566, -10.14, -1.2194, 3.5566, -10.7334, -1.5099, 4.6219, -11.9739, -1.2194, 3.5566, -14.9367, -1.5099, 4.6219, -15.5131, -1.2194, 3.6617, -11.9739, -1.2194, 3.5566, -12.835, -1.5099, 4.6219, -14.9367, -1.5099, 4.6219, -15.5131, -1.2194, 3.6617, -16.1762, -1.2368, 2.8541, -15.8518, -1.2194, 3.3347, -15.5131, -1.2194, 3.6617, -14.9367, -1.5099, 4.6219, -16.1762, -1.2368, 2.8541, -14.9367, -1.5099, 4.6219, -17.0383, -1.5099, 4.6219, -16.1762, -1.2368, 2.8541, -16.1762, -1.2368, 2.8541, -17.0383, -1.5099, 4.6219, -16.6952, -1.4277, 3.1594, -16.6952, -1.4277, 3.1594, -17.0383, -1.5099, 4.6219, -17.2872, -1.4636, 3.2986, -17.2872, -1.4636, 3.2986, -19.1399, -1.5099, 4.6219, -18.5329, -1.5804, 3.2986, -17.2872, -1.4636, 3.2986, -17.0383, -1.5099, 4.6219, -19.1399, -1.5099, 4.6219, -19.5158, -1.6096, 3.2986, -19.1399, -1.5099, 4.6219, -21.2416, -1.5099, 4.6219, -19.5158, -1.6096, 3.2986, -18.5329, -1.5804, 3.2986, -19.1399, -1.5099, 4.6219, -19.5158, -1.6096, 3.2986, -21.5789, -1.5804, 3.2986, -20.5765, -1.5804, 3.2986, -19.5158, -1.6096, 3.2986, -21.2416, -1.5099, 4.6219, -21.5789, -1.5804, 3.2986, -21.5789, -1.5804, 3.2986, -23.3432, -1.5099, 4.6219, -23.3208, -1.5025, 3.2986, -21.5789, -1.5804, 3.2986, -21.2416, -1.5099, 4.6219, -23.3432, -1.5099, 4.6219, -24.4594, -1.5415, 3.2986, -23.3432, -1.5099, 4.6219, -25.4448, -1.5099, 4.6219, -24.4594, -1.5415, 3.2986, -23.3208, -1.5025, 3.2986, -23.3432, -1.5099, 4.6219, -25.4448, -1.5099, 4.6219, -24.4594, -1.5267, 2.0651, -24.4594, -1.5415, 3.2986, -25.4448, -1.5099, 4.6219, -25.4448, -1.5099, 2.9727, -24.4594, -1.5267, 2.0651, -24.4594, -1.3514, 1.1759, -25.4448, -1.5099, 2.9727, -25.4448, -1.5099, 1.3235, -24.4594, -1.3514, 1.1759, -24.4594, -1.5267, 2.0651, -25.4448, -1.5099, 2.9727, -24.4594, -1.3514, 1.1759, -25.4448, -1.5099, -0.3256, -24.8678, -1.5436, -2.3748, -24.4594, -1.3514, 1.1759, -25.4448, -1.5099, 1.3235, -25.4448, -1.5099, -0.3256, -25.4448, -1.5099, -0.3256, -25.4448, -1.5099, -3.624, -24.8678, -1.5436, -2.3748, -25.4448, -1.5099, -0.3256, -25.4448, -1.5099, -1.9748, -25.4448, -1.5099, -3.624, -24.8678, -1.5436, -2.3748, -25.1702, -1.4504, -5.3881, -24.0261, -1.6004, -3.4357, -24.8678, -1.5436, -2.3748, -25.4448, -1.5099, -3.624, -25.1702, -1.4504, -5.3881, -25.4448, -1.5099, -3.624, -25.4448, -1.5099, -5.2732, -25.1702, -1.4504, -5.3881, -25.1702, -1.4504, -5.3881, -25.4448, -1.5099, -6.9224, -25.1678, -0.9155, -5.9063, -25.1702, -1.4504, -5.3881, -25.4448, -1.5099, -5.2732, -25.4448, -1.5099, -6.9224, -25.1678, -0.9155, -10.1106, -25.4448, -1.5099, -6.9224, -25.4448, -1.5099, -8.5716, -25.1678, -0.9155, -10.1106, -25.1678, -0.9155, -5.9063, -25.4448, -1.5099, -6.9224, -25.4448, -1.5099, -8.5716, -25.4448, -1.5099, -11.87, -25.1678, -0.9155, -10.1106, -25.4448, -1.5099, -8.5716, -25.4448, -1.5099, -10.2208, -25.4448, -1.5099, -11.87, -25.1678, -0.9155, -10.1106, -25.4448, -1.5099, -13.5192, -25.1678, -0.9155, -11.5738, -25.1678, -0.9155, -10.1106, -25.4448, -1.5099, -11.87, -25.4448, -1.5099, -13.5192, -25.1678, -0.9155, -11.5738, -24.4449, -0.9155, -13.7433, -24.5339, -0.6247, -12.5166, -25.1678, -0.9155, -11.5738, -25.4448, -1.5099, -13.5192, -24.4449, -0.9155, -13.7433, -24.4449, -0.9155, -15.6268, -25.4448, -1.5099, -13.5192, -25.4448, -1.5099, -15.1684, -24.4449, -0.9155, -15.6268, -24.4449, -0.9155, -13.7433, -25.4448, -1.5099, -13.5192, -25.4448, -1.5099, -15.1684, -25.4448, -1.5099, -16.8176, -24.4449, -0.9155, -15.6268, -24.4449, -0.9155, -15.6268, -25.4448, -1.5099, -16.8176, -23.7583, 0.0794, -15.6268, -23.7583, 0.0794, -15.6268, -23.4608, 0.096, -16.4686, -23.408, 0.5698, -15.6268, -23.7583, 0.0794, -15.6268, -25.4448, -1.5099, -16.8176, -23.4608, 0.096, -16.4686, -23.5789, -0.8054, -17.1014, -25.4448, -1.5099, -16.8176, -25.4448, -1.5099, -18.4668, -23.5789, -0.8054, -17.1014, -23.4608, 0.096, -16.4686, -25.4448, -1.5099, -16.8176, -23.5789, -0.8054, -17.1014, -25.4448, -1.5099, -18.4668, -23.614, -1.1175, -17.6392, -23.614, -1.1175, -17.6392, -25.4448, -1.5099, -18.4668, -23.6242, -1.3486, -18.9007, -25.4448, -1.5099, -18.4668, -25.4448, -1.5099, -20.116, -23.6242, -1.3486, -18.9007, -25.4448, -1.5099, -21.7652, -23.6242, -1.3486, -18.9007, -25.4448, -1.5099, -20.116, -25.4448, -1.5099, -21.7652, -23.2319, -1.1244, -18.9007, -23.6242, -1.3486, -18.9007, -25.4448, -1.5099, -21.7652, -23.3432, -1.5099, -21.7652, -23.2319, -1.1244, -18.9007, -23.2319, -1.1244, -18.9007, -23.3432, -1.5099, -21.7652, -22.9796, -1.1384, -18.9007, -21.2133, -1.1384, -18.9007, -23.3432, -1.5099, -21.7652, -21.2416, -1.5099, -21.7652, -21.2133, -1.1384, -18.9007, -22.9796, -1.1384, -18.9007, -23.3432, -1.5099, -21.7652, -21.2133, -1.1384, -18.9007, -21.2416, -1.5099, -21.7652, -20.9274, -1.1384, -18.9007, -20.9274, -1.1384, -18.9007, -21.2416, -1.5099, -21.7652, -20.1874, -1.1384, -18.9007, -20.1874, -1.1384, -18.9007, -19.1399, -1.5099, -21.7652, -18.9248, -1.2134, -19.549, -20.1874, -1.1384, -18.9007, -21.2416, -1.5099, -21.7652, -19.1399, -1.5099, -21.7652, -18.2826, -1.0976, -19.7475, -19.1399, -1.5099, -21.7652, -17.0383, -1.5099, -21.7652, -18.2826, -1.0976, -19.7475, -18.9248, -1.2134, -19.549, -19.1399, -1.5099, -21.7652, -18.2826, -1.0976, -19.7475, -17.0383, -1.5099, -21.7652, -17.5236, -0.8174, -19.9927, -17.5236, -0.8174, -19.9927, -17.0383, -1.5099, -21.7652, -17.0099, -0.7707, -20.2612, -16.1212, -0.3805, -20.1549, -17.0099, -0.7707, -20.2612, -17.0383, -1.5099, -21.7652, -16.1212, -0.3805, -20.1549, -14.9367, -1.5099, -21.7652, -15.5849, -0.6145, -20.374, -16.1212, -0.3805, -20.1549, -17.0383, -1.5099, -21.7652, -14.9367, -1.5099, -21.7652, -15.5849, -0.6145, -20.374, -14.7485, -0.7625, -20.6467, -15.1556, -0.5577, -20.4246, -15.5849, -0.6145, -20.374, -14.9367, -1.5099, -21.7652, -14.7485, -0.7625, -20.6467, -14.3017, -0.9869, -20.8936, -14.9367, -1.5099, -21.7652, -12.835, -1.5099, -21.7652, -14.3017, -0.9869, -20.8936, -14.7485, -0.7625, -20.6467, -14.9367, -1.5099, -21.7652, -13.6855, -0.5081, -20.5037, -14.3017, -0.9869, -20.8936, -12.835, -1.5099, -21.7652, -13.6855, -0.5081, -20.5037, -11.7518, -0.6671, -20.5935, -12.8416, -0.5251, -20.5366, -13.6855, -0.5081, -20.5037, -12.835, -1.5099, -21.7652, -11.7518, -0.6671, -20.5935, -10.3082, -0.5155, -21.1417, -10.976, -0.5593, -21.0036, -10.7334, -1.5099, -21.7652, -10.7334, -1.5099, -21.7652, -11.7518, -0.6671, -20.5935, -12.835, -1.5099, -21.7652, -10.7334, -1.5099, -21.7652, -10.976, -0.5593, -21.0036, -11.7518, -0.6671, -20.5935, -8.7835, -1.1071, -20.7424, -10.7334, -1.5099, -21.7652, -8.6318, -1.5099, -21.7652, -8.7835, -1.1071, -20.7424, -10.3082, -0.5155, -21.1417, -10.7334, -1.5099, -21.7652, -8.7835, -1.1071, -20.7424, -6.5301, -1.5099, -21.7652, -7.7809, -1.1691, -21.2387, -8.7835, -1.1071, -20.7424, -8.6318, -1.5099, -21.7652, -6.5301, -1.5099, -21.7652, -5.9541, -0.7855, -21.3608, -7.7809, -1.1691, -21.2387, -6.5301, -1.5099, -21.7652, -5.9541, -0.7855, -21.3608, -7.4222, -0.7855, -21.0496, -7.7809, -1.1691, -21.2387, -4.513, -0.7855, -21.1443, -6.5301, -1.5099, -21.7652, -4.4285, -1.5099, -21.7652, -4.513, -0.7855, -21.1443, -5.9541, -0.7855, -21.3608, -6.5301, -1.5099, -21.7652, -4.474, -0.4776, -20.4587, -4.513, -0.7855, -21.1443, -2.2151, -0.8694, -20.8021, -2.3268, -1.5099, -21.7652, -4.513, -0.7855, -21.1443, -4.4285, -1.5099, -21.7652, -2.3268, -1.5099, -21.7652, -2.2151, -0.8694, -20.8021, -4.513, -0.7855, -21.1443, -1.4742, -0.8694, -21.0378, -2.3268, -1.5099, -21.7652, -0.2252, -1.5099, -21.7652, -1.4742, -0.8694, -21.0378, -2.2151, -0.8694, -20.8021, -2.3268, -1.5099, -21.7652, 0.2095, -0.8694, -20.4821, -1.4742, -0.8694, -21.0378, -0.2252, -1.5099, -21.7652, 0.2095, -0.8694, -20.4821, 1.8763, -1.5099, -21.7652, 0.7147, -0.8694, -20.5495, 0.2095, -0.8694, -20.4821, -0.2252, -1.5099, -21.7652, 1.8763, -1.5099, -21.7652, 3.1899, -0.8694, -20.6505, 0.7147, -0.8694, -20.5495, 1.8763, -1.5099, -21.7652, 3.1899, -0.8694, -20.6505, 1.7587, -0.8694, -20.2464, 0.7147, -0.8694, -20.5495, 1.8763, -1.5099, -21.7652, 3.978, -1.5099, -21.7652, 3.1899, -0.8694, -20.6505, 3.1899, -0.8694, -20.6505, 3.978, -1.5099, -21.7652, 4.6549, -0.8694, -20.3474, 4.6549, -0.8694, -20.3474, 3.978, -1.5099, -21.7652, 4.7846, -0.8694, -20.5089, 4.7846, -0.8694, -20.5089, 6.0796, -1.5099, -21.7652, 5.1491, -0.8694, -20.6092, 4.7846, -0.8694, -20.5089, 3.978, -1.5099, -21.7652, 6.0796, -1.5099, -21.7652, 5.1491, -0.8694, -20.6092, 6.0796, -1.5099, -21.7652, 6.1344, -0.8694, -20.5856, 6.758, -0.8739, -20.8046, 6.0796, -1.5099, -21.7652, 8.1812, -1.5099, -21.7652, 6.758, -0.8739, -20.8046, 6.1344, -0.8694, -20.5856, 6.0796, -1.5099, -21.7652, 7.3397, -0.9081, -20.6841, 6.758, -0.8739, -20.8046, 8.1812, -1.5099, -21.7652, 7.3397, -0.9081, -20.6841, 7.0572, -0.8735, -20.5939, 6.758, -0.8739, -20.8046, 8.0567, -1.2147, -19.7904, 7.3397, -0.9081, -20.6841, 8.1812, -1.5099, -21.7652, 8.0567, -1.2147, -19.7904, 7.7954, -1.0479, -19.7299, 7.3397, -0.9081, -20.6841, 8.1812, -1.5099, -21.7652, 8.1812, -1.5099, -20.116, 8.0567, -1.2147, -19.7904, 8.0567, -1.3617, -18.5391, 8.1812, -1.5099, -20.116, 8.1812, -1.5099, -18.4668, 8.0567, -1.3617, -18.5391, 8.0567, -1.2147, -19.7904, 8.1812, -1.5099, -20.116, 8.0567, -1.3617, -18.5391, 8.1812, -1.5099, -16.8176, 8.0567, -1.3617, -17.0421, 8.0567, -1.3617, -18.5391, 8.1812, -1.5099, -18.4668, 8.1812, -1.5099, -16.8176, 8.0567, -1.3617, -15.7323, 8.1812, -1.5099, -16.8176, 8.1812, -1.5099, -15.1684, 8.0567, -1.3617, -15.7323, 8.0567, -1.3617, -17.0421, 8.1812, -1.5099, -16.8176, 8.0567, -1.3617, -15.7323, 8.1812, -1.5099, -13.5192, 8.0567, -1.3617, -14.5595, 8.0567, -1.3617, -15.7323, 8.1812, -1.5099, -15.1684, 8.1812, -1.5099, -13.5192, 8.0567, -1.3617, -14.5595, 8.1812, -1.5099, -13.5192, 8.0567, -1.3617, -13.2249, 7.9808, -0.8945, -12.6785, 8.1812, -1.5099, -13.5192, 8.1812, -1.5099, -11.87, 7.9808, -0.8945, -12.6785, 8.0567, -1.3617, -13.2249, 8.1812, -1.5099, -13.5192, 7.9808, -0.8945, -12.6785, 8.1812, -1.5099, -10.2208, 7.9808, -0.8945, -11.1316, 7.9808, -0.8945, -12.6785, 8.1812, -1.5099, -11.87, 8.1812, -1.5099, -10.2208, 7.9808, -0.8945, -11.1316, 7.9808, -1.1776, -10.0703, 7.9808, -0.9249, -10.7442, 7.9808, -0.8945, -11.1316, 8.1812, -1.5099, -10.2208, 7.9808, -1.1776, -10.0703, 7.7728, -1.1059, -8.864, 8.1812, -1.5099, -10.2208, 8.1812, -1.5099, -8.5716, 7.7728, -1.1059, -8.864, 7.9808, -1.1776, -10.0703, 8.1812, -1.5099, -10.2208, 7.7728, -1.1059, -8.864, 8.1812, -1.5099, -6.9224, 6.8661, -1.1059, -7.4147, 7.7728, -1.1059, -8.864, 8.1812, -1.5099, -8.5716, 8.1812, -1.5099, -6.9224, 6.8664, -1.2913, -5.7624, 8.1812, -1.5099, -6.9224, 8.1812, -1.5099, -5.2732, 6.8664, -1.2913, -5.7624, 6.8661, -1.1059, -7.4147, 8.1812, -1.5099, -6.9224, 6.8664, -1.2913, -5.7624, 8.1812, -1.5099, -5.2732, 6.8664, -0.9909, -6.0319, 6.8664, -0.9909, -6.0319, 8.1812, -1.5099, -5.2732, 6.8959, -0.5058, -6.1623, 6.8959, -0.5058, -6.1623, 8.1812, -1.5099, -5.2732, 6.8959, -0.3762, -6.0269, 6.8959, -0.3762, -6.0269, 8.1812, -1.5099, -5.2732, 6.8842, -0.2592, -4.6231, 6.8842, -0.2592, -4.6231, 8.1812, -1.5099, -3.624, 6.8959, -0.3762, -3.2194, 6.8842, -0.2592, -4.6231, 8.1812, -1.5099, -5.2732, 8.1812, -1.5099, -3.624, 5.8507, 0.0025, -2.945, 8.1812, -1.5099, -1.9748, 5.8507, -0.2079, -2.6222, 6.8959, -0.3762, -3.2194, 8.1812, -1.5099, -1.9748, 5.9049, 0.168, -3.2194, 8.1812, -1.5099, -3.624, 8.1812, -1.5099, -1.9748, 6.8959, -0.3762, -3.2194, 5.9049, 0.168, -3.2194, 8.1812, -1.5099, -1.9748, 5.8507, 0.0025, -2.945, 5.8507, -0.2079, -2.6222, 8.1812, -1.5099, -1.9748, 5.8507, -1.0909, -1.9489, 5.8507, -1.0909, -1.9489, 8.1812, -1.5099, -0.3256, 5.8507, -1.301, -1.2914, 5.8507, -1.0909, -1.9489, 8.1812, -1.5099, -1.9748, 8.1812, -1.5099, -0.3256, 5.8507, -1.301, -1.2914, 8.1812, -1.5099, -0.3256, 5.8507, -1.3891, -0.7694, 5.8507, -1.3823, 1, 8.1812, -1.5099, -0.3256, 8.1812, -1.5099, 1.3235, 5.8507, -1.3823, 1, 5.8507, -1.3891, -0.7694, 8.1812, -1.5099, -0.3256, 8.1812, -1.5099, 1.3235, 6.7488, -1.6256, 2.5458, 5.8507, -1.3823, 1, 8.1812, -1.5099, 1.3235, 8.1812, -1.5099, 2.9727, 6.7488, -1.6256, 2.5458, 8.1812, -1.5099, 4.6219, 6.7488, -1.6256, 2.5458, 8.1812, -1.5099, 2.9727) -[sub_resource type="ArrayMesh" id=16] +[sub_resource type="ArrayMesh" id="16"] resource_name = "Grid" -[sub_resource type="ArrayMesh" id=17] +[sub_resource type="ArrayMesh" id="17"] resource_name = "Cube.063" -surfaces/0 = { +_surfaces = [{ "aabb": AABB(-0.0682448, 0, -0.0442622, 0.13649, 0.161353, 0.0885243), -"array_data": PackedByteArray(98, 165, 41, 49, 54, 37, 0, 60, 0, 127, 0, 0, 98, 165, 41, 49, 188, 33, 0, 60, 0, 127, 0, 0, 92, 168, 41, 49, 188, 33, 0, 60, 0, 127, 0, 0, 92, 168, 41, 49, 54, 37, 0, 60, 0, 127, 0, 0, 92, 168, 117, 48, 188, 33, 0, 60, 130, 0, 0, 0, 92, 168, 52, 48, 54, 37, 0, 60, 130, 0, 0, 0, 92, 168, 41, 49, 54, 37, 0, 60, 130, 0, 0, 0, 92, 168, 41, 49, 188, 33, 0, 60, 130, 0, 0, 0, 98, 165, 117, 48, 188, 33, 0, 60, 0, 0, 129, 0, 92, 168, 117, 48, 188, 33, 0, 60, 0, 0, 129, 0, 92, 168, 41, 49, 188, 33, 0, 60, 0, 0, 129, 0, 98, 165, 41, 49, 188, 33, 0, 60, 0, 0, 129, 0, 98, 165, 52, 48, 54, 37, 0, 60, 127, 0, 0, 0, 98, 165, 117, 48, 188, 33, 0, 60, 127, 0, 0, 0, 98, 165, 41, 49, 188, 33, 0, 60, 127, 0, 0, 0, 98, 165, 41, 49, 54, 37, 0, 60, 127, 0, 0, 0, 92, 168, 52, 48, 54, 37, 0, 60, 0, 0, 126, 0, 98, 165, 52, 48, 54, 37, 0, 60, 0, 0, 126, 0, 98, 165, 41, 49, 54, 37, 0, 60, 0, 0, 126, 0, 92, 168, 41, 49, 54, 37, 0, 60, 0, 0, 126, 0, 217, 171, 0, 0, 238, 168, 0, 60, 130, 0, 0, 0, 217, 171, 0, 0, 23, 41, 0, 60, 130, 0, 0, 0, 217, 171, 28, 47, 23, 41, 0, 60, 130, 0, 0, 0, 217, 171, 28, 47, 238, 168, 0, 60, 130, 0, 0, 0, 217, 43, 28, 47, 238, 168, 0, 60, 127, 0, 0, 0, 217, 43, 28, 47, 23, 41, 0, 60, 127, 0, 0, 0, 217, 43, 0, 0, 23, 41, 0, 60, 127, 0, 0, 0, 217, 43, 0, 0, 238, 168, 0, 60, 127, 0, 0, 0, 217, 171, 0, 0, 23, 41, 0, 60, 0, 0, 126, 0, 217, 43, 0, 0, 23, 41, 0, 60, 0, 0, 126, 0, 217, 43, 28, 47, 23, 41, 0, 60, 0, 0, 126, 0, 217, 171, 28, 47, 23, 41, 0, 60, 0, 0, 126, 0, 217, 171, 28, 47, 23, 41, 0, 60, 0, 130, 0, 0, 217, 43, 28, 47, 23, 41, 0, 60, 0, 130, 0, 0, 94, 44, 28, 47, 170, 41, 0, 60, 0, 130, 0, 0, 94, 172, 28, 47, 170, 41, 0, 60, 0, 130, 0, 0, 217, 43, 28, 47, 238, 168, 0, 60, 0, 130, 0, 0, 94, 44, 28, 47, 170, 169, 0, 60, 0, 130, 0, 0, 217, 171, 28, 47, 238, 168, 0, 60, 0, 130, 0, 0, 94, 172, 28, 47, 170, 169, 0, 60, 0, 130, 0, 0, 217, 171, 28, 47, 238, 168, 0, 60, 0, 0, 129, 0, 217, 43, 28, 47, 238, 168, 0, 60, 0, 0, 129, 0, 217, 43, 0, 0, 238, 168, 0, 60, 0, 0, 129, 0, 217, 171, 0, 0, 238, 168, 0, 60, 0, 0, 129, 0), -"array_index_data": PackedByteArray(0, 0, 2, 0, 1, 0, 0, 0, 3, 0, 2, 0, 4, 0, 6, 0, 5, 0, 4, 0, 7, 0, 6, 0, 8, 0, 10, 0, 9, 0, 8, 0, 11, 0, 10, 0, 12, 0, 14, 0, 13, 0, 12, 0, 15, 0, 14, 0, 16, 0, 18, 0, 17, 0, 16, 0, 19, 0, 18, 0, 20, 0, 22, 0, 21, 0, 20, 0, 23, 0, 22, 0, 24, 0, 26, 0, 25, 0, 24, 0, 27, 0, 26, 0, 28, 0, 30, 0, 29, 0, 28, 0, 31, 0, 30, 0, 32, 0, 34, 0, 33, 0, 32, 0, 35, 0, 34, 0, 33, 0, 37, 0, 36, 0, 33, 0, 34, 0, 37, 0, 38, 0, 35, 0, 32, 0, 38, 0, 39, 0, 35, 0, 36, 0, 39, 0, 38, 0, 36, 0, 37, 0, 39, 0, 40, 0, 42, 0, 41, 0, 40, 0, 43, 0, 42, 0), -"blend_shape_data": [], -"format": 98051, +"format": 4099, "index_count": 78, -"material": ExtResource( 5 ), +"index_data": PackedByteArray(0, 0, 2, 0, 1, 0, 0, 0, 3, 0, 2, 0, 4, 0, 6, 0, 5, 0, 4, 0, 7, 0, 6, 0, 8, 0, 10, 0, 9, 0, 8, 0, 11, 0, 10, 0, 12, 0, 14, 0, 13, 0, 12, 0, 15, 0, 14, 0, 16, 0, 18, 0, 17, 0, 16, 0, 19, 0, 18, 0, 20, 0, 22, 0, 21, 0, 20, 0, 23, 0, 22, 0, 24, 0, 26, 0, 25, 0, 24, 0, 27, 0, 26, 0, 28, 0, 30, 0, 29, 0, 28, 0, 31, 0, 30, 0, 32, 0, 34, 0, 33, 0, 32, 0, 35, 0, 34, 0, 33, 0, 37, 0, 36, 0, 33, 0, 34, 0, 37, 0, 38, 0, 35, 0, 32, 0, 38, 0, 39, 0, 35, 0, 36, 0, 39, 0, 38, 0, 36, 0, 37, 0, 39, 0, 40, 0, 42, 0, 41, 0, 40, 0, 43, 0, 42, 0), +"material": ExtResource( "5" ), "name": "Material.001", -"primitive": 4, -"skeleton_aabb": [], -"vertex_count": 44 -} +"primitive": 3, +"vertex_count": 44, +"vertex_data": PackedByteArray(0, 64, 172, 188, 0, 32, 37, 62, 0, 192, 166, 60, 0, 248, 15, 0, 0, 64, 172, 188, 0, 32, 37, 62, 0, 128, 55, 60, 0, 248, 15, 0, 0, 128, 11, 189, 0, 32, 37, 62, 0, 128, 55, 60, 0, 248, 15, 0, 0, 128, 11, 189, 0, 32, 37, 62, 0, 192, 166, 60, 0, 248, 15, 0, 0, 128, 11, 189, 0, 160, 14, 62, 0, 128, 55, 60, 0, 0, 0, 0, 0, 128, 11, 189, 0, 128, 6, 62, 0, 192, 166, 60, 0, 0, 0, 0, 0, 128, 11, 189, 0, 32, 37, 62, 0, 192, 166, 60, 0, 0, 0, 0, 0, 128, 11, 189, 0, 32, 37, 62, 0, 128, 55, 60, 0, 0, 0, 0, 0, 64, 172, 188, 0, 160, 14, 62, 0, 128, 55, 60, 0, 0, 0, 0, 0, 128, 11, 189, 0, 160, 14, 62, 0, 128, 55, 60, 0, 0, 0, 0, 0, 128, 11, 189, 0, 32, 37, 62, 0, 128, 55, 60, 0, 0, 0, 0, 0, 64, 172, 188, 0, 32, 37, 62, 0, 128, 55, 60, 0, 0, 0, 0, 0, 64, 172, 188, 0, 128, 6, 62, 0, 192, 166, 60, 254, 3, 0, 0, 0, 64, 172, 188, 0, 160, 14, 62, 0, 128, 55, 60, 254, 3, 0, 0, 0, 64, 172, 188, 0, 32, 37, 62, 0, 128, 55, 60, 254, 3, 0, 0, 0, 64, 172, 188, 0, 32, 37, 62, 0, 192, 166, 60, 254, 3, 0, 0, 0, 128, 11, 189, 0, 128, 6, 62, 0, 192, 166, 60, 0, 0, 96, 63, 0, 64, 172, 188, 0, 128, 6, 62, 0, 192, 166, 60, 0, 0, 96, 63, 0, 64, 172, 188, 0, 32, 37, 62, 0, 192, 166, 60, 0, 0, 96, 63, 0, 128, 11, 189, 0, 32, 37, 62, 0, 192, 166, 60, 0, 0, 96, 63, 0, 32, 123, 189, 0, 0, 0, 0, 0, 192, 29, 189, 0, 0, 0, 0, 0, 32, 123, 189, 0, 0, 0, 0, 0, 224, 34, 61, 0, 0, 0, 0, 0, 32, 123, 189, 0, 128, 227, 61, 0, 224, 34, 61, 0, 0, 0, 0, 0, 32, 123, 189, 0, 128, 227, 61, 0, 192, 29, 189, 0, 0, 0, 0, 0, 32, 123, 61, 0, 128, 227, 61, 0, 192, 29, 189, 254, 3, 0, 0, 0, 32, 123, 61, 0, 128, 227, 61, 0, 224, 34, 61, 254, 3, 0, 0, 0, 32, 123, 61, 0, 0, 0, 0, 0, 224, 34, 61, 254, 3, 0, 0, 0, 32, 123, 61, 0, 0, 0, 0, 0, 192, 29, 189, 254, 3, 0, 0, 0, 32, 123, 189, 0, 0, 0, 0, 0, 224, 34, 61, 0, 0, 96, 63, 0, 32, 123, 61, 0, 0, 0, 0, 0, 224, 34, 61, 0, 0, 96, 63, 0, 32, 123, 61, 0, 128, 227, 61, 0, 224, 34, 61, 0, 0, 96, 63, 0, 32, 123, 189, 0, 128, 227, 61, 0, 224, 34, 61, 0, 0, 96, 63, 0, 32, 123, 189, 0, 128, 227, 61, 0, 224, 34, 61, 0, 0, 0, 0, 0, 32, 123, 61, 0, 128, 227, 61, 0, 224, 34, 61, 0, 0, 0, 0, 0, 192, 139, 61, 0, 128, 227, 61, 0, 64, 53, 61, 0, 0, 0, 0, 0, 192, 139, 189, 0, 128, 227, 61, 0, 64, 53, 61, 0, 0, 0, 0, 0, 32, 123, 61, 0, 128, 227, 61, 0, 192, 29, 189, 0, 0, 0, 0, 0, 192, 139, 61, 0, 128, 227, 61, 0, 64, 53, 189, 0, 0, 0, 0, 0, 32, 123, 189, 0, 128, 227, 61, 0, 192, 29, 189, 0, 0, 0, 0, 0, 192, 139, 189, 0, 128, 227, 61, 0, 64, 53, 189, 0, 0, 0, 0, 0, 32, 123, 189, 0, 128, 227, 61, 0, 192, 29, 189, 0, 0, 0, 0, 0, 32, 123, 61, 0, 128, 227, 61, 0, 192, 29, 189, 0, 0, 0, 0, 0, 32, 123, 61, 0, 0, 0, 0, 0, 192, 29, 189, 0, 0, 0, 0, 0, 32, 123, 189, 0, 0, 0, 0, 0, 192, 29, 189, 0, 0, 0, 0) +}] -[sub_resource type="ArrayMesh" id=18] +[sub_resource type="ArrayMesh" id="18"] resource_name = "Cube.046" -surfaces/0 = { +_surfaces = [{ "aabb": AABB(-0.0226153, 0, -0.0188077, 0.0452306, 0.0413006, 0.0188077), -"array_data": PackedByteArray(27, 160, 73, 41, 151, 148, 0, 60, 0, 0, 129, 0, 27, 32, 73, 41, 151, 148, 0, 60, 0, 0, 129, 0, 27, 32, 222, 32, 151, 148, 0, 60, 0, 0, 129, 0, 27, 160, 222, 32, 151, 148, 0, 60, 0, 0, 129, 0, 27, 32, 73, 41, 0, 0, 0, 60, 127, 0, 0, 0, 27, 32, 222, 32, 0, 0, 0, 60, 127, 0, 0, 0, 27, 32, 222, 32, 151, 148, 0, 60, 127, 0, 0, 0, 27, 32, 73, 41, 151, 148, 0, 60, 127, 0, 0, 0, 27, 160, 222, 32, 0, 0, 0, 60, 130, 0, 0, 0, 27, 160, 73, 41, 0, 0, 0, 60, 130, 0, 0, 0, 27, 160, 73, 41, 151, 148, 0, 60, 130, 0, 0, 0, 27, 160, 222, 32, 151, 148, 0, 60, 130, 0, 0, 0, 27, 160, 73, 41, 0, 0, 0, 60, 0, 127, 0, 0, 27, 32, 73, 41, 0, 0, 0, 60, 0, 127, 0, 0, 27, 32, 73, 41, 151, 148, 0, 60, 0, 127, 0, 0, 27, 160, 73, 41, 151, 148, 0, 60, 0, 127, 0, 0, 202, 165, 125, 26, 208, 164, 0, 60, 0, 0, 129, 0, 202, 37, 125, 26, 208, 164, 0, 60, 0, 0, 129, 0, 202, 37, 0, 0, 208, 164, 0, 60, 0, 0, 129, 0, 202, 165, 0, 0, 208, 164, 0, 60, 0, 0, 129, 0, 252, 163, 222, 32, 0, 0, 0, 60, 0, 127, 0, 0, 252, 35, 222, 32, 0, 0, 0, 60, 0, 127, 0, 0, 252, 35, 222, 32, 9, 162, 0, 60, 0, 127, 0, 0, 252, 163, 222, 32, 9, 162, 0, 60, 0, 127, 0, 0, 202, 37, 125, 26, 0, 0, 0, 60, 127, 0, 0, 0, 202, 37, 0, 0, 0, 0, 0, 60, 127, 0, 0, 0, 202, 37, 0, 0, 208, 164, 0, 60, 127, 0, 0, 0, 202, 37, 125, 26, 208, 164, 0, 60, 127, 0, 0, 0, 252, 163, 125, 30, 0, 0, 0, 60, 130, 0, 0, 0, 252, 163, 222, 32, 0, 0, 0, 60, 130, 0, 0, 0, 252, 163, 222, 32, 9, 162, 0, 60, 130, 0, 0, 0, 252, 163, 125, 30, 9, 162, 0, 60, 130, 0, 0, 0, 252, 163, 222, 32, 9, 162, 0, 60, 0, 0, 129, 0, 252, 35, 222, 32, 9, 162, 0, 60, 0, 0, 129, 0, 252, 35, 125, 30, 9, 162, 0, 60, 0, 0, 129, 0, 252, 163, 125, 30, 9, 162, 0, 60, 0, 0, 129, 0, 214, 164, 125, 30, 185, 163, 0, 60, 0, 0, 129, 0, 214, 36, 125, 30, 185, 163, 0, 60, 0, 0, 129, 0, 214, 36, 125, 26, 185, 163, 0, 60, 0, 0, 129, 0, 214, 164, 125, 26, 185, 163, 0, 60, 0, 0, 129, 0, 252, 35, 222, 32, 0, 0, 0, 60, 127, 0, 0, 0, 252, 35, 125, 30, 0, 0, 0, 60, 127, 0, 0, 0, 252, 35, 125, 30, 9, 162, 0, 60, 127, 0, 0, 0, 252, 35, 222, 32, 9, 162, 0, 60, 127, 0, 0, 0, 214, 36, 125, 30, 0, 0, 0, 60, 127, 0, 0, 0, 214, 36, 125, 26, 0, 0, 0, 60, 127, 0, 0, 0, 214, 36, 125, 26, 185, 163, 0, 60, 127, 0, 0, 0, 214, 36, 125, 30, 185, 163, 0, 60, 127, 0, 0, 0, 202, 165, 0, 0, 0, 0, 0, 60, 130, 0, 0, 0, 202, 165, 125, 26, 0, 0, 0, 60, 130, 0, 0, 0, 202, 165, 125, 26, 208, 164, 0, 60, 130, 0, 0, 0, 202, 165, 0, 0, 208, 164, 0, 60, 130, 0, 0, 0, 214, 164, 125, 26, 0, 0, 0, 60, 130, 0, 0, 0, 214, 164, 125, 30, 0, 0, 0, 60, 130, 0, 0, 0, 214, 164, 125, 30, 185, 163, 0, 60, 130, 0, 0, 0, 214, 164, 125, 26, 185, 163, 0, 60, 130, 0, 0, 0, 214, 36, 125, 30, 185, 163, 0, 60, 0, 127, 0, 0, 214, 164, 125, 30, 185, 163, 0, 60, 0, 127, 0, 0, 252, 163, 125, 30, 9, 162, 0, 60, 0, 127, 0, 0, 252, 35, 125, 30, 9, 162, 0, 60, 0, 127, 0, 0, 214, 36, 125, 30, 0, 0, 0, 60, 0, 127, 0, 0, 252, 35, 125, 30, 0, 0, 0, 60, 0, 127, 0, 0, 214, 164, 125, 30, 0, 0, 0, 60, 0, 127, 0, 0, 252, 163, 125, 30, 0, 0, 0, 60, 0, 127, 0, 0, 202, 37, 125, 26, 208, 164, 0, 60, 0, 127, 0, 0, 202, 165, 125, 26, 208, 164, 0, 60, 0, 127, 0, 0, 214, 164, 125, 26, 185, 163, 0, 60, 0, 127, 0, 0, 214, 36, 125, 26, 185, 163, 0, 60, 0, 127, 0, 0, 202, 37, 125, 26, 0, 0, 0, 60, 0, 127, 0, 0, 214, 36, 125, 26, 0, 0, 0, 60, 0, 127, 0, 0, 202, 165, 125, 26, 0, 0, 0, 60, 0, 127, 0, 0, 214, 164, 125, 26, 0, 0, 0, 60, 0, 127, 0, 0, 231, 158, 164, 38, 58, 152, 0, 60, 0, 0, 129, 0, 27, 157, 217, 38, 58, 152, 0, 60, 0, 0, 129, 0, 54, 156, 93, 38, 58, 152, 0, 60, 0, 0, 129, 0, 2, 158, 40, 38, 58, 152, 0, 60, 0, 0, 129, 0, 231, 158, 164, 38, 151, 148, 0, 60, 203, 115, 0, 0, 27, 157, 217, 38, 151, 148, 0, 60, 203, 115, 0, 0, 27, 157, 217, 38, 58, 152, 0, 60, 203, 115, 0, 0, 231, 158, 164, 38, 58, 152, 0, 60, 203, 115, 0, 0, 54, 156, 93, 38, 151, 148, 0, 60, 53, 141, 0, 0, 2, 158, 40, 38, 151, 148, 0, 60, 53, 141, 0, 0, 2, 158, 40, 38, 58, 152, 0, 60, 53, 141, 0, 0, 54, 156, 93, 38, 58, 152, 0, 60, 53, 141, 0, 0, 27, 157, 217, 38, 151, 148, 0, 60, 115, 53, 0, 0, 54, 156, 93, 38, 151, 148, 0, 60, 115, 53, 0, 0, 54, 156, 93, 38, 58, 152, 0, 60, 115, 53, 0, 0, 27, 157, 217, 38, 58, 152, 0, 60, 115, 53, 0, 0, 2, 158, 40, 38, 151, 148, 0, 60, 141, 203, 0, 0, 231, 158, 164, 38, 151, 148, 0, 60, 141, 203, 0, 0, 231, 158, 164, 38, 58, 152, 0, 60, 141, 203, 0, 0, 2, 158, 40, 38, 58, 152, 0, 60, 141, 203, 0, 0), -"array_index_data": PackedByteArray(0, 0, 2, 0, 1, 0, 0, 0, 3, 0, 2, 0, 4, 0, 6, 0, 5, 0, 4, 0, 7, 0, 6, 0, 8, 0, 10, 0, 9, 0, 8, 0, 11, 0, 10, 0, 12, 0, 14, 0, 13, 0, 12, 0, 15, 0, 14, 0, 16, 0, 18, 0, 17, 0, 16, 0, 19, 0, 18, 0, 20, 0, 22, 0, 21, 0, 20, 0, 23, 0, 22, 0, 24, 0, 26, 0, 25, 0, 24, 0, 27, 0, 26, 0, 28, 0, 30, 0, 29, 0, 28, 0, 31, 0, 30, 0, 32, 0, 34, 0, 33, 0, 32, 0, 35, 0, 34, 0, 36, 0, 38, 0, 37, 0, 36, 0, 39, 0, 38, 0, 40, 0, 42, 0, 41, 0, 40, 0, 43, 0, 42, 0, 44, 0, 46, 0, 45, 0, 44, 0, 47, 0, 46, 0, 48, 0, 50, 0, 49, 0, 48, 0, 51, 0, 50, 0, 52, 0, 54, 0, 53, 0, 52, 0, 55, 0, 54, 0, 56, 0, 58, 0, 57, 0, 56, 0, 59, 0, 58, 0, 60, 0, 59, 0, 56, 0, 60, 0, 61, 0, 59, 0, 57, 0, 63, 0, 62, 0, 57, 0, 58, 0, 63, 0, 64, 0, 66, 0, 65, 0, 64, 0, 67, 0, 66, 0, 68, 0, 67, 0, 64, 0, 68, 0, 69, 0, 67, 0, 65, 0, 71, 0, 70, 0, 65, 0, 66, 0, 71, 0, 72, 0, 74, 0, 73, 0, 72, 0, 75, 0, 74, 0, 76, 0, 78, 0, 77, 0, 76, 0, 79, 0, 78, 0, 80, 0, 82, 0, 81, 0, 80, 0, 83, 0, 82, 0, 84, 0, 86, 0, 85, 0, 84, 0, 87, 0, 86, 0, 88, 0, 90, 0, 89, 0, 88, 0, 91, 0, 90, 0), -"blend_shape_data": [], -"format": 98051, +"format": 4099, "index_count": 150, -"material": ExtResource( 6 ), +"index_data": PackedByteArray(0, 0, 2, 0, 1, 0, 0, 0, 3, 0, 2, 0, 4, 0, 6, 0, 5, 0, 4, 0, 7, 0, 6, 0, 8, 0, 10, 0, 9, 0, 8, 0, 11, 0, 10, 0, 12, 0, 14, 0, 13, 0, 12, 0, 15, 0, 14, 0, 16, 0, 18, 0, 17, 0, 16, 0, 19, 0, 18, 0, 20, 0, 22, 0, 21, 0, 20, 0, 23, 0, 22, 0, 24, 0, 26, 0, 25, 0, 24, 0, 27, 0, 26, 0, 28, 0, 30, 0, 29, 0, 28, 0, 31, 0, 30, 0, 32, 0, 34, 0, 33, 0, 32, 0, 35, 0, 34, 0, 36, 0, 38, 0, 37, 0, 36, 0, 39, 0, 38, 0, 40, 0, 42, 0, 41, 0, 40, 0, 43, 0, 42, 0, 44, 0, 46, 0, 45, 0, 44, 0, 47, 0, 46, 0, 48, 0, 50, 0, 49, 0, 48, 0, 51, 0, 50, 0, 52, 0, 54, 0, 53, 0, 52, 0, 55, 0, 54, 0, 56, 0, 58, 0, 57, 0, 56, 0, 59, 0, 58, 0, 60, 0, 59, 0, 56, 0, 60, 0, 61, 0, 59, 0, 57, 0, 63, 0, 62, 0, 57, 0, 58, 0, 63, 0, 64, 0, 66, 0, 65, 0, 64, 0, 67, 0, 66, 0, 68, 0, 67, 0, 64, 0, 68, 0, 69, 0, 67, 0, 65, 0, 71, 0, 70, 0, 65, 0, 66, 0, 71, 0, 72, 0, 74, 0, 73, 0, 72, 0, 75, 0, 74, 0, 76, 0, 78, 0, 77, 0, 76, 0, 79, 0, 78, 0, 80, 0, 82, 0, 81, 0, 80, 0, 83, 0, 82, 0, 84, 0, 86, 0, 85, 0, 84, 0, 87, 0, 86, 0, 88, 0, 90, 0, 89, 0, 88, 0, 91, 0, 90, 0), +"material": ExtResource( "6" ), "name": "Material.002", -"primitive": 4, -"skeleton_aabb": [], -"vertex_count": 92 -} +"primitive": 3, +"vertex_count": 92, +"vertex_data": PackedByteArray(0, 96, 3, 188, 0, 32, 41, 61, 0, 224, 146, 186, 0, 0, 0, 0, 0, 96, 3, 60, 0, 32, 41, 61, 0, 224, 146, 186, 0, 0, 0, 0, 0, 96, 3, 60, 0, 192, 27, 60, 0, 224, 146, 186, 0, 0, 0, 0, 0, 96, 3, 188, 0, 192, 27, 60, 0, 224, 146, 186, 0, 0, 0, 0, 0, 96, 3, 60, 0, 32, 41, 61, 0, 0, 0, 0, 254, 3, 0, 0, 0, 96, 3, 60, 0, 192, 27, 60, 0, 0, 0, 0, 254, 3, 0, 0, 0, 96, 3, 60, 0, 192, 27, 60, 0, 224, 146, 186, 254, 3, 0, 0, 0, 96, 3, 60, 0, 32, 41, 61, 0, 224, 146, 186, 254, 3, 0, 0, 0, 96, 3, 188, 0, 192, 27, 60, 0, 0, 0, 0, 0, 0, 0, 0, 0, 96, 3, 188, 0, 32, 41, 61, 0, 0, 0, 0, 0, 0, 0, 0, 0, 96, 3, 188, 0, 32, 41, 61, 0, 224, 146, 186, 0, 0, 0, 0, 0, 96, 3, 188, 0, 192, 27, 60, 0, 224, 146, 186, 0, 0, 0, 0, 0, 96, 3, 188, 0, 32, 41, 61, 0, 0, 0, 0, 0, 248, 15, 0, 0, 96, 3, 60, 0, 32, 41, 61, 0, 0, 0, 0, 0, 248, 15, 0, 0, 96, 3, 60, 0, 32, 41, 61, 0, 224, 146, 186, 0, 248, 15, 0, 0, 96, 3, 188, 0, 32, 41, 61, 0, 224, 146, 186, 0, 248, 15, 0, 0, 64, 185, 188, 0, 160, 79, 59, 0, 0, 154, 188, 0, 0, 0, 0, 0, 64, 185, 60, 0, 160, 79, 59, 0, 0, 154, 188, 0, 0, 0, 0, 0, 64, 185, 60, 0, 0, 0, 0, 0, 0, 154, 188, 0, 0, 0, 0, 0, 64, 185, 188, 0, 0, 0, 0, 0, 0, 154, 188, 0, 0, 0, 0, 0, 128, 127, 188, 0, 192, 27, 60, 0, 0, 0, 0, 0, 248, 15, 0, 0, 128, 127, 60, 0, 192, 27, 60, 0, 0, 0, 0, 0, 248, 15, 0, 0, 128, 127, 60, 0, 192, 27, 60, 0, 32, 65, 188, 0, 248, 15, 0, 0, 128, 127, 188, 0, 192, 27, 60, 0, 32, 65, 188, 0, 248, 15, 0, 0, 64, 185, 60, 0, 160, 79, 59, 0, 0, 0, 0, 254, 3, 0, 0, 0, 64, 185, 60, 0, 0, 0, 0, 0, 0, 0, 0, 254, 3, 0, 0, 0, 64, 185, 60, 0, 0, 0, 0, 0, 0, 154, 188, 254, 3, 0, 0, 0, 64, 185, 60, 0, 160, 79, 59, 0, 0, 154, 188, 254, 3, 0, 0, 0, 128, 127, 188, 0, 160, 207, 59, 0, 0, 0, 0, 0, 0, 0, 0, 0, 128, 127, 188, 0, 192, 27, 60, 0, 0, 0, 0, 0, 0, 0, 0, 0, 128, 127, 188, 0, 192, 27, 60, 0, 32, 65, 188, 0, 0, 0, 0, 0, 128, 127, 188, 0, 160, 207, 59, 0, 32, 65, 188, 0, 0, 0, 0, 0, 128, 127, 188, 0, 192, 27, 60, 0, 32, 65, 188, 0, 0, 0, 0, 0, 128, 127, 60, 0, 192, 27, 60, 0, 32, 65, 188, 0, 0, 0, 0, 0, 128, 127, 60, 0, 160, 207, 59, 0, 32, 65, 188, 0, 0, 0, 0, 0, 128, 127, 188, 0, 160, 207, 59, 0, 32, 65, 188, 0, 0, 0, 0, 0, 192, 154, 188, 0, 160, 207, 59, 0, 32, 119, 188, 0, 0, 0, 0, 0, 192, 154, 60, 0, 160, 207, 59, 0, 32, 119, 188, 0, 0, 0, 0, 0, 192, 154, 60, 0, 160, 79, 59, 0, 32, 119, 188, 0, 0, 0, 0, 0, 192, 154, 188, 0, 160, 79, 59, 0, 32, 119, 188, 0, 0, 0, 0, 0, 128, 127, 60, 0, 192, 27, 60, 0, 0, 0, 0, 254, 3, 0, 0, 0, 128, 127, 60, 0, 160, 207, 59, 0, 0, 0, 0, 254, 3, 0, 0, 0, 128, 127, 60, 0, 160, 207, 59, 0, 32, 65, 188, 254, 3, 0, 0, 0, 128, 127, 60, 0, 192, 27, 60, 0, 32, 65, 188, 254, 3, 0, 0, 0, 192, 154, 60, 0, 160, 207, 59, 0, 0, 0, 0, 254, 3, 0, 0, 0, 192, 154, 60, 0, 160, 79, 59, 0, 0, 0, 0, 254, 3, 0, 0, 0, 192, 154, 60, 0, 160, 79, 59, 0, 32, 119, 188, 254, 3, 0, 0, 0, 192, 154, 60, 0, 160, 207, 59, 0, 32, 119, 188, 254, 3, 0, 0, 0, 64, 185, 188, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 64, 185, 188, 0, 160, 79, 59, 0, 0, 0, 0, 0, 0, 0, 0, 0, 64, 185, 188, 0, 160, 79, 59, 0, 0, 154, 188, 0, 0, 0, 0, 0, 64, 185, 188, 0, 0, 0, 0, 0, 0, 154, 188, 0, 0, 0, 0, 0, 192, 154, 188, 0, 160, 79, 59, 0, 0, 0, 0, 0, 0, 0, 0, 0, 192, 154, 188, 0, 160, 207, 59, 0, 0, 0, 0, 0, 0, 0, 0, 0, 192, 154, 188, 0, 160, 207, 59, 0, 32, 119, 188, 0, 0, 0, 0, 0, 192, 154, 188, 0, 160, 79, 59, 0, 32, 119, 188, 0, 0, 0, 0, 0, 192, 154, 60, 0, 160, 207, 59, 0, 32, 119, 188, 0, 248, 15, 0, 0, 192, 154, 188, 0, 160, 207, 59, 0, 32, 119, 188, 0, 248, 15, 0, 0, 128, 127, 188, 0, 160, 207, 59, 0, 32, 65, 188, 0, 248, 15, 0, 0, 128, 127, 60, 0, 160, 207, 59, 0, 32, 65, 188, 0, 248, 15, 0, 0, 192, 154, 60, 0, 160, 207, 59, 0, 0, 0, 0, 0, 248, 15, 0, 0, 128, 127, 60, 0, 160, 207, 59, 0, 0, 0, 0, 0, 248, 15, 0, 0, 192, 154, 188, 0, 160, 207, 59, 0, 0, 0, 0, 0, 248, 15, 0, 0, 128, 127, 188, 0, 160, 207, 59, 0, 0, 0, 0, 0, 248, 15, 0, 0, 64, 185, 60, 0, 160, 79, 59, 0, 0, 154, 188, 0, 248, 15, 0, 0, 64, 185, 188, 0, 160, 79, 59, 0, 0, 154, 188, 0, 248, 15, 0, 0, 192, 154, 188, 0, 160, 79, 59, 0, 32, 119, 188, 0, 248, 15, 0, 0, 192, 154, 60, 0, 160, 79, 59, 0, 32, 119, 188, 0, 248, 15, 0, 0, 64, 185, 60, 0, 160, 79, 59, 0, 0, 0, 0, 0, 248, 15, 0, 0, 192, 154, 60, 0, 160, 79, 59, 0, 0, 0, 0, 0, 248, 15, 0, 0, 64, 185, 188, 0, 160, 79, 59, 0, 0, 0, 0, 0, 248, 15, 0, 0, 192, 154, 188, 0, 160, 79, 59, 0, 0, 0, 0, 0, 248, 15, 0, 0, 224, 220, 187, 0, 128, 212, 60, 0, 64, 7, 187, 0, 0, 0, 0, 0, 96, 163, 187, 0, 32, 219, 60, 0, 64, 7, 187, 0, 0, 0, 0, 0, 192, 134, 187, 0, 160, 203, 60, 0, 64, 7, 187, 0, 0, 0, 0, 0, 64, 192, 187, 0, 0, 197, 60, 0, 64, 7, 187, 0, 0, 0, 0, 0, 224, 220, 187, 0, 128, 212, 60, 0, 224, 146, 186, 0, 120, 14, 0, 0, 96, 163, 187, 0, 32, 219, 60, 0, 224, 146, 186, 0, 120, 14, 0, 0, 96, 163, 187, 0, 32, 219, 60, 0, 64, 7, 187, 0, 120, 14, 0, 0, 224, 220, 187, 0, 128, 212, 60, 0, 64, 7, 187, 0, 120, 14, 0, 0, 192, 134, 187, 0, 160, 203, 60, 0, 224, 146, 186, 170, 1, 0, 0, 0, 64, 192, 187, 0, 0, 197, 60, 0, 224, 146, 186, 170, 1, 0, 0, 0, 64, 192, 187, 0, 0, 197, 60, 0, 64, 7, 187, 170, 1, 0, 0, 0, 192, 134, 187, 0, 160, 203, 60, 0, 64, 7, 187, 170, 1, 0, 0, 0, 96, 163, 187, 0, 32, 219, 60, 0, 224, 146, 186, 158, 171, 6, 0, 0, 192, 134, 187, 0, 160, 203, 60, 0, 224, 146, 186, 158, 171, 6, 0, 0, 192, 134, 187, 0, 160, 203, 60, 0, 64, 7, 187, 158, 171, 6, 0, 0, 96, 163, 187, 0, 32, 219, 60, 0, 64, 7, 187, 158, 171, 6, 0, 0, 64, 192, 187, 0, 0, 197, 60, 0, 224, 146, 186, 0, 0, 0, 0, 0, 224, 220, 187, 0, 128, 212, 60, 0, 224, 146, 186, 0, 0, 0, 0, 0, 224, 220, 187, 0, 128, 212, 60, 0, 64, 7, 187, 0, 0, 0, 0, 0, 64, 192, 187, 0, 0, 197, 60, 0, 64, 7, 187, 0, 0, 0, 0) +}] -[sub_resource type="ArrayMesh" id=19] +[sub_resource type="ArrayMesh" id="19"] resource_name = "Cube.036" -surfaces/0 = { +_surfaces = [{ "aabb": AABB(-0.0176444, -9.31323e-10, -0.0114438, 0.0352889, 0.00816958, 0.0228976), -"array_data": PackedByteArray(132, 164, 0, 0, 219, 33, 0, 60, 0, 0, 126, 0, 132, 36, 0, 0, 219, 33, 0, 60, 0, 0, 126, 0, 132, 36, 69, 21, 219, 33, 0, 60, 0, 0, 126, 0, 132, 164, 69, 21, 219, 33, 0, 60, 0, 0, 126, 0, 56, 164, 69, 21, 7, 160, 0, 60, 127, 0, 0, 0, 56, 164, 69, 21, 67, 33, 0, 60, 127, 0, 0, 0, 56, 164, 191, 12, 67, 33, 0, 60, 127, 0, 0, 0, 56, 164, 191, 12, 7, 160, 0, 60, 127, 0, 0, 0, 132, 36, 0, 0, 219, 161, 0, 60, 0, 0, 129, 0, 132, 164, 0, 0, 219, 161, 0, 60, 0, 0, 129, 0, 132, 164, 46, 32, 219, 161, 0, 60, 0, 0, 129, 0, 132, 36, 46, 32, 219, 161, 0, 60, 0, 0, 129, 0, 132, 164, 46, 32, 7, 160, 0, 60, 0, 127, 0, 0, 132, 36, 46, 32, 7, 160, 0, 60, 0, 127, 0, 0, 132, 36, 46, 32, 219, 161, 0, 60, 0, 127, 0, 0, 132, 164, 46, 32, 219, 161, 0, 60, 0, 127, 0, 0, 132, 164, 0, 0, 219, 161, 0, 60, 130, 0, 0, 0, 132, 164, 69, 21, 7, 160, 0, 60, 130, 0, 0, 0, 132, 164, 46, 32, 7, 160, 0, 60, 130, 0, 0, 0, 132, 164, 46, 32, 219, 161, 0, 60, 130, 0, 0, 0, 56, 36, 69, 21, 67, 33, 0, 60, 130, 0, 0, 0, 55, 36, 69, 21, 7, 160, 0, 60, 130, 0, 0, 0, 56, 36, 191, 12, 7, 160, 0, 60, 130, 0, 0, 0, 56, 36, 191, 12, 67, 33, 0, 60, 130, 0, 0, 0, 132, 164, 0, 0, 219, 33, 0, 60, 130, 0, 0, 0, 132, 164, 69, 21, 219, 33, 0, 60, 130, 0, 0, 0, 56, 164, 69, 21, 7, 160, 0, 60, 0, 0, 126, 0, 55, 164, 41, 31, 7, 160, 0, 60, 0, 0, 126, 0, 132, 164, 46, 32, 7, 160, 0, 60, 0, 0, 126, 0, 132, 164, 69, 21, 7, 160, 0, 60, 0, 0, 126, 0, 55, 36, 41, 31, 7, 160, 0, 60, 0, 0, 126, 0, 132, 36, 46, 32, 7, 160, 0, 60, 0, 0, 126, 0, 55, 36, 69, 21, 7, 160, 0, 60, 0, 0, 126, 0, 132, 36, 69, 21, 7, 160, 0, 60, 0, 0, 126, 0, 55, 164, 69, 21, 243, 160, 0, 60, 0, 0, 126, 0, 55, 36, 69, 21, 243, 160, 0, 60, 0, 0, 126, 0, 55, 36, 41, 31, 243, 160, 0, 60, 0, 0, 126, 0, 55, 164, 41, 31, 243, 160, 0, 60, 0, 0, 126, 0, 55, 36, 69, 21, 7, 160, 0, 60, 130, 0, 0, 0, 55, 36, 41, 31, 7, 160, 0, 60, 130, 0, 0, 0, 55, 36, 41, 31, 243, 160, 0, 60, 130, 0, 0, 0, 55, 36, 69, 21, 243, 160, 0, 60, 130, 0, 0, 0, 55, 36, 41, 31, 7, 160, 0, 60, 0, 130, 0, 0, 55, 164, 41, 31, 7, 160, 0, 60, 0, 130, 0, 0, 55, 164, 41, 31, 243, 160, 0, 60, 0, 130, 0, 0, 55, 36, 41, 31, 243, 160, 0, 60, 0, 130, 0, 0, 56, 36, 69, 21, 67, 33, 0, 60, 0, 127, 0, 0, 56, 164, 69, 21, 67, 33, 0, 60, 0, 127, 0, 0, 132, 164, 69, 21, 219, 33, 0, 60, 0, 127, 0, 0, 132, 36, 69, 21, 219, 33, 0, 60, 0, 127, 0, 0, 56, 164, 69, 21, 7, 160, 0, 60, 0, 127, 0, 0, 132, 164, 69, 21, 7, 160, 0, 60, 0, 127, 0, 0, 55, 36, 69, 21, 7, 160, 0, 60, 0, 127, 0, 0, 55, 36, 69, 21, 243, 160, 0, 60, 0, 127, 0, 0, 55, 164, 69, 21, 243, 160, 0, 60, 0, 127, 0, 0, 56, 164, 191, 12, 67, 33, 0, 60, 0, 127, 0, 0, 56, 36, 191, 12, 67, 33, 0, 60, 0, 127, 0, 0, 56, 36, 191, 12, 7, 160, 0, 60, 0, 127, 0, 0, 56, 164, 191, 12, 7, 160, 0, 60, 0, 127, 0, 0, 56, 164, 191, 12, 7, 160, 0, 60, 0, 0, 126, 0, 56, 36, 191, 12, 7, 160, 0, 60, 0, 0, 126, 0, 55, 164, 41, 31, 7, 160, 0, 60, 127, 0, 0, 0, 56, 164, 69, 21, 7, 160, 0, 60, 127, 0, 0, 0, 55, 164, 69, 21, 243, 160, 0, 60, 127, 0, 0, 0, 55, 164, 41, 31, 243, 160, 0, 60, 127, 0, 0, 0, 56, 164, 69, 21, 67, 33, 0, 60, 0, 0, 129, 0, 56, 36, 69, 21, 67, 33, 0, 60, 0, 0, 129, 0, 56, 36, 191, 12, 67, 33, 0, 60, 0, 0, 129, 0, 56, 164, 191, 12, 67, 33, 0, 60, 0, 0, 129, 0, 132, 36, 0, 0, 219, 33, 0, 60, 127, 0, 0, 0, 132, 36, 0, 0, 219, 161, 0, 60, 127, 0, 0, 0, 132, 36, 69, 21, 7, 160, 0, 60, 127, 0, 0, 0, 132, 36, 69, 21, 219, 33, 0, 60, 127, 0, 0, 0, 132, 36, 46, 32, 219, 161, 0, 60, 127, 0, 0, 0, 132, 36, 46, 32, 7, 160, 0, 60, 127, 0, 0, 0, 132, 36, 69, 21, 7, 160, 0, 60, 0, 127, 0, 0), -"array_index_data": PackedByteArray(0, 0, 2, 0, 1, 0, 0, 0, 3, 0, 2, 0, 4, 0, 6, 0, 5, 0, 4, 0, 7, 0, 6, 0, 8, 0, 10, 0, 9, 0, 8, 0, 11, 0, 10, 0, 12, 0, 14, 0, 13, 0, 12, 0, 15, 0, 14, 0, 16, 0, 18, 0, 17, 0, 16, 0, 19, 0, 18, 0, 20, 0, 22, 0, 21, 0, 20, 0, 23, 0, 22, 0, 16, 0, 25, 0, 24, 0, 16, 0, 17, 0, 25, 0, 26, 0, 28, 0, 27, 0, 26, 0, 29, 0, 28, 0, 27, 0, 31, 0, 30, 0, 27, 0, 28, 0, 31, 0, 30, 0, 33, 0, 32, 0, 30, 0, 31, 0, 33, 0, 34, 0, 36, 0, 35, 0, 34, 0, 37, 0, 36, 0, 38, 0, 40, 0, 39, 0, 38, 0, 41, 0, 40, 0, 42, 0, 44, 0, 43, 0, 42, 0, 45, 0, 44, 0, 46, 0, 48, 0, 47, 0, 46, 0, 49, 0, 48, 0, 47, 0, 51, 0, 50, 0, 47, 0, 48, 0, 51, 0, 50, 0, 53, 0, 52, 0, 50, 0, 54, 0, 53, 0, 55, 0, 57, 0, 56, 0, 55, 0, 58, 0, 57, 0, 32, 0, 59, 0, 26, 0, 32, 0, 60, 0, 59, 0, 61, 0, 63, 0, 62, 0, 61, 0, 64, 0, 63, 0, 65, 0, 67, 0, 66, 0, 65, 0, 68, 0, 67, 0, 69, 0, 71, 0, 70, 0, 69, 0, 72, 0, 71, 0, 71, 0, 73, 0, 70, 0, 71, 0, 74, 0, 73, 0, 52, 0, 49, 0, 46, 0, 52, 0, 75, 0, 49, 0), -"blend_shape_data": [], -"format": 98051, +"format": 4099, "index_count": 138, -"material": ExtResource( 6 ), +"index_data": PackedByteArray(0, 0, 2, 0, 1, 0, 0, 0, 3, 0, 2, 0, 4, 0, 6, 0, 5, 0, 4, 0, 7, 0, 6, 0, 8, 0, 10, 0, 9, 0, 8, 0, 11, 0, 10, 0, 12, 0, 14, 0, 13, 0, 12, 0, 15, 0, 14, 0, 16, 0, 18, 0, 17, 0, 16, 0, 19, 0, 18, 0, 20, 0, 22, 0, 21, 0, 20, 0, 23, 0, 22, 0, 16, 0, 25, 0, 24, 0, 16, 0, 17, 0, 25, 0, 26, 0, 28, 0, 27, 0, 26, 0, 29, 0, 28, 0, 27, 0, 31, 0, 30, 0, 27, 0, 28, 0, 31, 0, 30, 0, 33, 0, 32, 0, 30, 0, 31, 0, 33, 0, 34, 0, 36, 0, 35, 0, 34, 0, 37, 0, 36, 0, 38, 0, 40, 0, 39, 0, 38, 0, 41, 0, 40, 0, 42, 0, 44, 0, 43, 0, 42, 0, 45, 0, 44, 0, 46, 0, 48, 0, 47, 0, 46, 0, 49, 0, 48, 0, 47, 0, 51, 0, 50, 0, 47, 0, 48, 0, 51, 0, 50, 0, 53, 0, 52, 0, 50, 0, 54, 0, 53, 0, 55, 0, 57, 0, 56, 0, 55, 0, 58, 0, 57, 0, 32, 0, 59, 0, 26, 0, 32, 0, 60, 0, 59, 0, 61, 0, 63, 0, 62, 0, 61, 0, 64, 0, 63, 0, 65, 0, 67, 0, 66, 0, 65, 0, 68, 0, 67, 0, 69, 0, 71, 0, 70, 0, 69, 0, 72, 0, 71, 0, 71, 0, 73, 0, 70, 0, 71, 0, 74, 0, 73, 0, 52, 0, 49, 0, 46, 0, 52, 0, 75, 0, 49, 0), +"material": ExtResource( "6" ), "name": "Material.002", -"primitive": 4, -"skeleton_aabb": [], -"vertex_count": 76 -} +"primitive": 3, +"vertex_count": 76, +"vertex_data": PackedByteArray(0, 128, 144, 188, 0, 0, 0, 0, 0, 96, 59, 60, 0, 0, 96, 63, 0, 128, 144, 60, 0, 0, 0, 0, 0, 96, 59, 60, 0, 0, 96, 63, 0, 128, 144, 60, 0, 160, 168, 58, 0, 96, 59, 60, 0, 0, 96, 63, 0, 128, 144, 188, 0, 160, 168, 58, 0, 96, 59, 60, 0, 0, 96, 63, 0, 0, 135, 188, 0, 160, 168, 58, 0, 224, 0, 188, 254, 3, 0, 0, 0, 0, 135, 188, 0, 160, 168, 58, 0, 96, 40, 60, 254, 3, 0, 0, 0, 0, 135, 188, 0, 224, 151, 57, 0, 96, 40, 60, 254, 3, 0, 0, 0, 0, 135, 188, 0, 224, 151, 57, 0, 224, 0, 188, 254, 3, 0, 0, 0, 128, 144, 60, 0, 0, 0, 0, 0, 96, 59, 188, 0, 0, 0, 0, 0, 128, 144, 188, 0, 0, 0, 0, 0, 96, 59, 188, 0, 0, 0, 0, 0, 128, 144, 188, 0, 192, 5, 60, 0, 96, 59, 188, 0, 0, 0, 0, 0, 128, 144, 60, 0, 192, 5, 60, 0, 96, 59, 188, 0, 0, 0, 0, 0, 128, 144, 188, 0, 192, 5, 60, 0, 224, 0, 188, 0, 248, 15, 0, 0, 128, 144, 60, 0, 192, 5, 60, 0, 224, 0, 188, 0, 248, 15, 0, 0, 128, 144, 60, 0, 192, 5, 60, 0, 96, 59, 188, 0, 248, 15, 0, 0, 128, 144, 188, 0, 192, 5, 60, 0, 96, 59, 188, 0, 248, 15, 0, 0, 128, 144, 188, 0, 0, 0, 0, 0, 96, 59, 188, 0, 0, 0, 0, 0, 128, 144, 188, 0, 160, 168, 58, 0, 224, 0, 188, 0, 0, 0, 0, 0, 128, 144, 188, 0, 192, 5, 60, 0, 224, 0, 188, 0, 0, 0, 0, 0, 128, 144, 188, 0, 192, 5, 60, 0, 96, 59, 188, 0, 0, 0, 0, 0, 0, 135, 60, 0, 160, 168, 58, 0, 96, 40, 60, 0, 0, 0, 0, 0, 224, 134, 60, 0, 160, 168, 58, 0, 224, 0, 188, 0, 0, 0, 0, 0, 0, 135, 60, 0, 224, 151, 57, 0, 224, 0, 188, 0, 0, 0, 0, 0, 0, 135, 60, 0, 224, 151, 57, 0, 96, 40, 60, 0, 0, 0, 0, 0, 128, 144, 188, 0, 0, 0, 0, 0, 96, 59, 60, 0, 0, 0, 0, 0, 128, 144, 188, 0, 160, 168, 58, 0, 96, 59, 60, 0, 0, 0, 0, 0, 0, 135, 188, 0, 160, 168, 58, 0, 224, 0, 188, 0, 0, 96, 63, 0, 224, 134, 188, 0, 32, 229, 59, 0, 224, 0, 188, 0, 0, 96, 63, 0, 128, 144, 188, 0, 192, 5, 60, 0, 224, 0, 188, 0, 0, 96, 63, 0, 128, 144, 188, 0, 160, 168, 58, 0, 224, 0, 188, 0, 0, 96, 63, 0, 224, 134, 60, 0, 32, 229, 59, 0, 224, 0, 188, 0, 0, 96, 63, 0, 128, 144, 60, 0, 192, 5, 60, 0, 224, 0, 188, 0, 0, 96, 63, 0, 224, 134, 60, 0, 160, 168, 58, 0, 224, 0, 188, 0, 0, 96, 63, 0, 128, 144, 60, 0, 160, 168, 58, 0, 224, 0, 188, 0, 0, 96, 63, 0, 224, 134, 188, 0, 160, 168, 58, 0, 96, 30, 188, 0, 0, 96, 63, 0, 224, 134, 60, 0, 160, 168, 58, 0, 96, 30, 188, 0, 0, 96, 63, 0, 224, 134, 60, 0, 32, 229, 59, 0, 96, 30, 188, 0, 0, 96, 63, 0, 224, 134, 188, 0, 32, 229, 59, 0, 96, 30, 188, 0, 0, 96, 63, 0, 224, 134, 60, 0, 160, 168, 58, 0, 224, 0, 188, 0, 0, 0, 0, 0, 224, 134, 60, 0, 32, 229, 59, 0, 224, 0, 188, 0, 0, 0, 0, 0, 224, 134, 60, 0, 32, 229, 59, 0, 96, 30, 188, 0, 0, 0, 0, 0, 224, 134, 60, 0, 160, 168, 58, 0, 96, 30, 188, 0, 0, 0, 0, 0, 224, 134, 60, 0, 32, 229, 59, 0, 224, 0, 188, 0, 0, 0, 0, 0, 224, 134, 188, 0, 32, 229, 59, 0, 224, 0, 188, 0, 0, 0, 0, 0, 224, 134, 188, 0, 32, 229, 59, 0, 96, 30, 188, 0, 0, 0, 0, 0, 224, 134, 60, 0, 32, 229, 59, 0, 96, 30, 188, 0, 0, 0, 0, 0, 0, 135, 60, 0, 160, 168, 58, 0, 96, 40, 60, 0, 248, 15, 0, 0, 0, 135, 188, 0, 160, 168, 58, 0, 96, 40, 60, 0, 248, 15, 0, 0, 128, 144, 188, 0, 160, 168, 58, 0, 96, 59, 60, 0, 248, 15, 0, 0, 128, 144, 60, 0, 160, 168, 58, 0, 96, 59, 60, 0, 248, 15, 0, 0, 0, 135, 188, 0, 160, 168, 58, 0, 224, 0, 188, 0, 248, 15, 0, 0, 128, 144, 188, 0, 160, 168, 58, 0, 224, 0, 188, 0, 248, 15, 0, 0, 224, 134, 60, 0, 160, 168, 58, 0, 224, 0, 188, 0, 248, 15, 0, 0, 224, 134, 60, 0, 160, 168, 58, 0, 96, 30, 188, 0, 248, 15, 0, 0, 224, 134, 188, 0, 160, 168, 58, 0, 96, 30, 188, 0, 248, 15, 0, 0, 0, 135, 188, 0, 224, 151, 57, 0, 96, 40, 60, 0, 248, 15, 0, 0, 0, 135, 60, 0, 224, 151, 57, 0, 96, 40, 60, 0, 248, 15, 0, 0, 0, 135, 60, 0, 224, 151, 57, 0, 224, 0, 188, 0, 248, 15, 0, 0, 0, 135, 188, 0, 224, 151, 57, 0, 224, 0, 188, 0, 248, 15, 0, 0, 0, 135, 188, 0, 224, 151, 57, 0, 224, 0, 188, 0, 0, 96, 63, 0, 0, 135, 60, 0, 224, 151, 57, 0, 224, 0, 188, 0, 0, 96, 63, 0, 224, 134, 188, 0, 32, 229, 59, 0, 224, 0, 188, 254, 3, 0, 0, 0, 0, 135, 188, 0, 160, 168, 58, 0, 224, 0, 188, 254, 3, 0, 0, 0, 224, 134, 188, 0, 160, 168, 58, 0, 96, 30, 188, 254, 3, 0, 0, 0, 224, 134, 188, 0, 32, 229, 59, 0, 96, 30, 188, 254, 3, 0, 0, 0, 0, 135, 188, 0, 160, 168, 58, 0, 96, 40, 60, 0, 0, 0, 0, 0, 0, 135, 60, 0, 160, 168, 58, 0, 96, 40, 60, 0, 0, 0, 0, 0, 0, 135, 60, 0, 224, 151, 57, 0, 96, 40, 60, 0, 0, 0, 0, 0, 0, 135, 188, 0, 224, 151, 57, 0, 96, 40, 60, 0, 0, 0, 0, 0, 128, 144, 60, 0, 0, 0, 0, 0, 96, 59, 60, 254, 3, 0, 0, 0, 128, 144, 60, 0, 0, 0, 0, 0, 96, 59, 188, 254, 3, 0, 0, 0, 128, 144, 60, 0, 160, 168, 58, 0, 224, 0, 188, 254, 3, 0, 0, 0, 128, 144, 60, 0, 160, 168, 58, 0, 96, 59, 60, 254, 3, 0, 0, 0, 128, 144, 60, 0, 192, 5, 60, 0, 96, 59, 188, 254, 3, 0, 0, 0, 128, 144, 60, 0, 192, 5, 60, 0, 224, 0, 188, 254, 3, 0, 0, 0, 128, 144, 60, 0, 160, 168, 58, 0, 224, 0, 188, 0, 248, 15, 0) +}] -[sub_resource type="ArrayMesh" id=20] +[sub_resource type="ArrayMesh" id="20"] resource_name = "Cube.037" -surfaces/0 = { +_surfaces = [{ "aabb": AABB(-0.0176444, 9.31323e-10, -0.0105608, 0.0352889, 0.00284207, 0.0211317), -"array_data": PackedByteArray(132, 164, 0, 0, 104, 33, 0, 60, 0, 0, 126, 0, 132, 36, 0, 0, 104, 33, 0, 60, 0, 0, 126, 0, 132, 36, 69, 21, 104, 33, 0, 60, 0, 0, 126, 0, 132, 164, 69, 21, 104, 33, 0, 60, 0, 0, 126, 0, 56, 164, 69, 21, 122, 160, 0, 60, 127, 0, 0, 0, 56, 164, 69, 21, 208, 32, 0, 60, 127, 0, 0, 0, 56, 164, 191, 12, 208, 32, 0, 60, 127, 0, 0, 0, 56, 164, 191, 12, 122, 160, 0, 60, 127, 0, 0, 0, 56, 36, 69, 21, 208, 32, 0, 60, 130, 0, 0, 0, 55, 36, 69, 21, 122, 160, 0, 60, 130, 0, 0, 0, 56, 36, 191, 12, 122, 160, 0, 60, 130, 0, 0, 0, 56, 36, 191, 12, 208, 32, 0, 60, 130, 0, 0, 0, 132, 164, 0, 0, 104, 161, 0, 60, 130, 0, 0, 0, 132, 164, 0, 0, 104, 33, 0, 60, 130, 0, 0, 0, 132, 164, 69, 21, 104, 33, 0, 60, 130, 0, 0, 0, 132, 164, 69, 21, 122, 160, 0, 60, 130, 0, 0, 0, 56, 36, 69, 21, 208, 32, 0, 60, 0, 127, 0, 0, 56, 164, 69, 21, 208, 32, 0, 60, 0, 127, 0, 0, 132, 164, 69, 21, 104, 33, 0, 60, 0, 127, 0, 0, 132, 36, 69, 21, 104, 33, 0, 60, 0, 127, 0, 0, 56, 164, 69, 21, 122, 160, 0, 60, 0, 127, 0, 0, 132, 164, 69, 21, 122, 160, 0, 60, 0, 127, 0, 0, 132, 164, 210, 25, 104, 161, 0, 60, 0, 127, 0, 0, 132, 164, 210, 25, 122, 160, 0, 60, 0, 127, 0, 0, 132, 36, 210, 25, 122, 160, 0, 60, 0, 127, 0, 0, 132, 36, 210, 25, 104, 161, 0, 60, 0, 127, 0, 0, 56, 164, 191, 12, 208, 32, 0, 60, 0, 127, 0, 0, 56, 36, 191, 12, 208, 32, 0, 60, 0, 127, 0, 0, 56, 36, 191, 12, 122, 160, 0, 60, 0, 127, 0, 0, 56, 164, 191, 12, 122, 160, 0, 60, 0, 127, 0, 0, 55, 36, 69, 21, 122, 160, 0, 60, 0, 0, 126, 0, 56, 164, 69, 21, 122, 160, 0, 60, 0, 0, 126, 0, 56, 164, 191, 12, 122, 160, 0, 60, 0, 0, 126, 0, 56, 36, 191, 12, 122, 160, 0, 60, 0, 0, 126, 0, 56, 164, 69, 21, 208, 32, 0, 60, 0, 0, 129, 0, 56, 36, 69, 21, 208, 32, 0, 60, 0, 0, 129, 0, 56, 36, 191, 12, 208, 32, 0, 60, 0, 0, 129, 0, 56, 164, 191, 12, 208, 32, 0, 60, 0, 0, 129, 0, 132, 36, 0, 0, 104, 33, 0, 60, 127, 0, 0, 0, 132, 36, 0, 0, 104, 161, 0, 60, 127, 0, 0, 0, 132, 36, 69, 21, 122, 160, 0, 60, 127, 0, 0, 0, 132, 36, 69, 21, 104, 33, 0, 60, 127, 0, 0, 0, 55, 36, 69, 21, 122, 160, 0, 60, 0, 127, 0, 0, 132, 36, 69, 21, 122, 160, 0, 60, 0, 127, 0, 0, 132, 164, 0, 0, 104, 161, 0, 60, 0, 0, 129, 0, 132, 164, 210, 25, 104, 161, 0, 60, 0, 0, 129, 0, 132, 36, 210, 25, 104, 161, 0, 60, 0, 0, 129, 0, 132, 36, 0, 0, 104, 161, 0, 60, 0, 0, 129, 0, 132, 164, 210, 25, 122, 160, 0, 60, 130, 0, 0, 0, 132, 164, 210, 25, 104, 161, 0, 60, 130, 0, 0, 0, 132, 36, 210, 25, 104, 161, 0, 60, 127, 0, 0, 0, 132, 36, 210, 25, 122, 160, 0, 60, 127, 0, 0, 0, 132, 36, 210, 25, 122, 160, 0, 60, 0, 0, 126, 0, 132, 36, 69, 21, 122, 160, 0, 60, 0, 0, 126, 0, 132, 164, 210, 25, 122, 160, 0, 60, 0, 0, 126, 0, 132, 164, 69, 21, 122, 160, 0, 60, 0, 0, 126, 0), -"array_index_data": PackedByteArray(0, 0, 2, 0, 1, 0, 0, 0, 3, 0, 2, 0, 4, 0, 6, 0, 5, 0, 4, 0, 7, 0, 6, 0, 8, 0, 10, 0, 9, 0, 8, 0, 11, 0, 10, 0, 12, 0, 14, 0, 13, 0, 12, 0, 15, 0, 14, 0, 16, 0, 18, 0, 17, 0, 16, 0, 19, 0, 18, 0, 17, 0, 21, 0, 20, 0, 17, 0, 18, 0, 21, 0, 22, 0, 24, 0, 23, 0, 22, 0, 25, 0, 24, 0, 26, 0, 28, 0, 27, 0, 26, 0, 29, 0, 28, 0, 30, 0, 32, 0, 31, 0, 30, 0, 33, 0, 32, 0, 34, 0, 36, 0, 35, 0, 34, 0, 37, 0, 36, 0, 38, 0, 40, 0, 39, 0, 38, 0, 41, 0, 40, 0, 42, 0, 19, 0, 16, 0, 42, 0, 43, 0, 19, 0, 44, 0, 46, 0, 45, 0, 44, 0, 47, 0, 46, 0, 48, 0, 12, 0, 49, 0, 48, 0, 15, 0, 12, 0, 50, 0, 40, 0, 51, 0, 50, 0, 39, 0, 40, 0, 52, 0, 53, 0, 30, 0, 54, 0, 31, 0, 55, 0, 52, 0, 31, 0, 54, 0, 52, 0, 30, 0, 31, 0), -"blend_shape_data": [], -"format": 98051, +"format": 4099, "index_count": 102, -"material": ExtResource( 6 ), +"index_data": PackedByteArray(0, 0, 2, 0, 1, 0, 0, 0, 3, 0, 2, 0, 4, 0, 6, 0, 5, 0, 4, 0, 7, 0, 6, 0, 8, 0, 10, 0, 9, 0, 8, 0, 11, 0, 10, 0, 12, 0, 14, 0, 13, 0, 12, 0, 15, 0, 14, 0, 16, 0, 18, 0, 17, 0, 16, 0, 19, 0, 18, 0, 17, 0, 21, 0, 20, 0, 17, 0, 18, 0, 21, 0, 22, 0, 24, 0, 23, 0, 22, 0, 25, 0, 24, 0, 26, 0, 28, 0, 27, 0, 26, 0, 29, 0, 28, 0, 30, 0, 32, 0, 31, 0, 30, 0, 33, 0, 32, 0, 34, 0, 36, 0, 35, 0, 34, 0, 37, 0, 36, 0, 38, 0, 40, 0, 39, 0, 38, 0, 41, 0, 40, 0, 42, 0, 19, 0, 16, 0, 42, 0, 43, 0, 19, 0, 44, 0, 46, 0, 45, 0, 44, 0, 47, 0, 46, 0, 48, 0, 12, 0, 49, 0, 48, 0, 15, 0, 12, 0, 50, 0, 40, 0, 51, 0, 50, 0, 39, 0, 40, 0, 52, 0, 53, 0, 30, 0, 54, 0, 31, 0, 55, 0, 52, 0, 31, 0, 54, 0, 52, 0, 30, 0, 31, 0), +"material": ExtResource( "6" ), "name": "Material.002", -"primitive": 4, -"skeleton_aabb": [], -"vertex_count": 56 -} +"primitive": 3, +"vertex_count": 56, +"vertex_data": PackedByteArray(0, 128, 144, 188, 0, 0, 0, 0, 0, 0, 45, 60, 0, 0, 96, 63, 0, 128, 144, 60, 0, 0, 0, 0, 0, 0, 45, 60, 0, 0, 96, 63, 0, 128, 144, 60, 0, 160, 168, 58, 0, 0, 45, 60, 0, 0, 96, 63, 0, 128, 144, 188, 0, 160, 168, 58, 0, 0, 45, 60, 0, 0, 96, 63, 0, 0, 135, 188, 0, 160, 168, 58, 0, 64, 15, 188, 254, 3, 0, 0, 0, 0, 135, 188, 0, 160, 168, 58, 0, 0, 26, 60, 254, 3, 0, 0, 0, 0, 135, 188, 0, 224, 151, 57, 0, 0, 26, 60, 254, 3, 0, 0, 0, 0, 135, 188, 0, 224, 151, 57, 0, 64, 15, 188, 254, 3, 0, 0, 0, 0, 135, 60, 0, 160, 168, 58, 0, 0, 26, 60, 0, 0, 0, 0, 0, 224, 134, 60, 0, 160, 168, 58, 0, 64, 15, 188, 0, 0, 0, 0, 0, 0, 135, 60, 0, 224, 151, 57, 0, 64, 15, 188, 0, 0, 0, 0, 0, 0, 135, 60, 0, 224, 151, 57, 0, 0, 26, 60, 0, 0, 0, 0, 0, 128, 144, 188, 0, 0, 0, 0, 0, 0, 45, 188, 0, 0, 0, 0, 0, 128, 144, 188, 0, 0, 0, 0, 0, 0, 45, 60, 0, 0, 0, 0, 0, 128, 144, 188, 0, 160, 168, 58, 0, 0, 45, 60, 0, 0, 0, 0, 0, 128, 144, 188, 0, 160, 168, 58, 0, 64, 15, 188, 0, 0, 0, 0, 0, 0, 135, 60, 0, 160, 168, 58, 0, 0, 26, 60, 0, 248, 15, 0, 0, 0, 135, 188, 0, 160, 168, 58, 0, 0, 26, 60, 0, 248, 15, 0, 0, 128, 144, 188, 0, 160, 168, 58, 0, 0, 45, 60, 0, 248, 15, 0, 0, 128, 144, 60, 0, 160, 168, 58, 0, 0, 45, 60, 0, 248, 15, 0, 0, 0, 135, 188, 0, 160, 168, 58, 0, 64, 15, 188, 0, 248, 15, 0, 0, 128, 144, 188, 0, 160, 168, 58, 0, 64, 15, 188, 0, 248, 15, 0, 0, 128, 144, 188, 0, 64, 58, 59, 0, 0, 45, 188, 0, 248, 15, 0, 0, 128, 144, 188, 0, 64, 58, 59, 0, 64, 15, 188, 0, 248, 15, 0, 0, 128, 144, 60, 0, 64, 58, 59, 0, 64, 15, 188, 0, 248, 15, 0, 0, 128, 144, 60, 0, 64, 58, 59, 0, 0, 45, 188, 0, 248, 15, 0, 0, 0, 135, 188, 0, 224, 151, 57, 0, 0, 26, 60, 0, 248, 15, 0, 0, 0, 135, 60, 0, 224, 151, 57, 0, 0, 26, 60, 0, 248, 15, 0, 0, 0, 135, 60, 0, 224, 151, 57, 0, 64, 15, 188, 0, 248, 15, 0, 0, 0, 135, 188, 0, 224, 151, 57, 0, 64, 15, 188, 0, 248, 15, 0, 0, 224, 134, 60, 0, 160, 168, 58, 0, 64, 15, 188, 0, 0, 96, 63, 0, 0, 135, 188, 0, 160, 168, 58, 0, 64, 15, 188, 0, 0, 96, 63, 0, 0, 135, 188, 0, 224, 151, 57, 0, 64, 15, 188, 0, 0, 96, 63, 0, 0, 135, 60, 0, 224, 151, 57, 0, 64, 15, 188, 0, 0, 96, 63, 0, 0, 135, 188, 0, 160, 168, 58, 0, 0, 26, 60, 0, 0, 0, 0, 0, 0, 135, 60, 0, 160, 168, 58, 0, 0, 26, 60, 0, 0, 0, 0, 0, 0, 135, 60, 0, 224, 151, 57, 0, 0, 26, 60, 0, 0, 0, 0, 0, 0, 135, 188, 0, 224, 151, 57, 0, 0, 26, 60, 0, 0, 0, 0, 0, 128, 144, 60, 0, 0, 0, 0, 0, 0, 45, 60, 254, 3, 0, 0, 0, 128, 144, 60, 0, 0, 0, 0, 0, 0, 45, 188, 254, 3, 0, 0, 0, 128, 144, 60, 0, 160, 168, 58, 0, 64, 15, 188, 254, 3, 0, 0, 0, 128, 144, 60, 0, 160, 168, 58, 0, 0, 45, 60, 254, 3, 0, 0, 0, 224, 134, 60, 0, 160, 168, 58, 0, 64, 15, 188, 0, 248, 15, 0, 0, 128, 144, 60, 0, 160, 168, 58, 0, 64, 15, 188, 0, 248, 15, 0, 0, 128, 144, 188, 0, 0, 0, 0, 0, 0, 45, 188, 0, 0, 0, 0, 0, 128, 144, 188, 0, 64, 58, 59, 0, 0, 45, 188, 0, 0, 0, 0, 0, 128, 144, 60, 0, 64, 58, 59, 0, 0, 45, 188, 0, 0, 0, 0, 0, 128, 144, 60, 0, 0, 0, 0, 0, 0, 45, 188, 0, 0, 0, 0, 0, 128, 144, 188, 0, 64, 58, 59, 0, 64, 15, 188, 0, 0, 0, 0, 0, 128, 144, 188, 0, 64, 58, 59, 0, 0, 45, 188, 0, 0, 0, 0, 0, 128, 144, 60, 0, 64, 58, 59, 0, 0, 45, 188, 254, 3, 0, 0, 0, 128, 144, 60, 0, 64, 58, 59, 0, 64, 15, 188, 254, 3, 0, 0, 0, 128, 144, 60, 0, 64, 58, 59, 0, 64, 15, 188, 0, 0, 96, 63, 0, 128, 144, 60, 0, 160, 168, 58, 0, 64, 15, 188, 0, 0, 96, 63, 0, 128, 144, 188, 0, 64, 58, 59, 0, 64, 15, 188, 0, 0, 96, 63, 0, 128, 144, 188, 0, 160, 168, 58, 0, 64, 15, 188, 0, 0, 96, 63) +}] -[sub_resource type="ArrayMesh" id=21] +[sub_resource type="ArrayMesh" id="21"] resource_name = "Cube.038" -surfaces/0 = { +_surfaces = [{ "aabb": AABB(-0.0088413, -9.31323e-10, -0.00967788, 0.0176826, 0.00284207, 0.0211317), -"array_data": PackedByteArray(134, 160, 0, 0, 219, 33, 0, 60, 0, 0, 126, 0, 134, 32, 0, 0, 219, 33, 0, 60, 0, 0, 126, 0, 134, 32, 69, 21, 219, 33, 0, 60, 0, 0, 126, 0, 134, 160, 69, 21, 219, 33, 0, 60, 0, 0, 126, 0, 221, 159, 69, 21, 7, 160, 0, 60, 127, 0, 0, 0, 221, 159, 69, 21, 67, 33, 0, 60, 127, 0, 0, 0, 221, 159, 191, 12, 67, 33, 0, 60, 127, 0, 0, 0, 221, 159, 191, 12, 7, 160, 0, 60, 127, 0, 0, 0, 221, 31, 69, 21, 67, 33, 0, 60, 130, 0, 0, 0, 217, 31, 69, 21, 7, 160, 0, 60, 130, 0, 0, 0, 221, 31, 191, 12, 7, 160, 0, 60, 130, 0, 0, 0, 221, 31, 191, 12, 67, 33, 0, 60, 130, 0, 0, 0, 134, 160, 0, 0, 244, 160, 0, 60, 130, 0, 0, 0, 134, 160, 0, 0, 219, 33, 0, 60, 130, 0, 0, 0, 134, 160, 69, 21, 219, 33, 0, 60, 130, 0, 0, 0, 134, 160, 69, 21, 7, 160, 0, 60, 130, 0, 0, 0, 221, 31, 69, 21, 67, 33, 0, 60, 0, 127, 0, 0, 221, 159, 69, 21, 67, 33, 0, 60, 0, 127, 0, 0, 134, 160, 69, 21, 219, 33, 0, 60, 0, 127, 0, 0, 134, 32, 69, 21, 219, 33, 0, 60, 0, 127, 0, 0, 221, 159, 69, 21, 7, 160, 0, 60, 0, 127, 0, 0, 134, 160, 69, 21, 7, 160, 0, 60, 0, 127, 0, 0, 134, 160, 210, 25, 244, 160, 0, 60, 0, 127, 0, 0, 134, 160, 210, 25, 7, 160, 0, 60, 0, 127, 0, 0, 134, 32, 210, 25, 7, 160, 0, 60, 0, 127, 0, 0, 134, 32, 210, 25, 244, 160, 0, 60, 0, 127, 0, 0, 221, 159, 191, 12, 67, 33, 0, 60, 0, 127, 0, 0, 221, 31, 191, 12, 67, 33, 0, 60, 0, 127, 0, 0, 221, 31, 191, 12, 7, 160, 0, 60, 0, 127, 0, 0, 221, 159, 191, 12, 7, 160, 0, 60, 0, 127, 0, 0, 217, 31, 69, 21, 7, 160, 0, 60, 0, 0, 126, 0, 221, 159, 69, 21, 7, 160, 0, 60, 0, 0, 126, 0, 221, 159, 191, 12, 7, 160, 0, 60, 0, 0, 126, 0, 221, 31, 191, 12, 7, 160, 0, 60, 0, 0, 126, 0, 221, 159, 69, 21, 67, 33, 0, 60, 0, 0, 129, 0, 221, 31, 69, 21, 67, 33, 0, 60, 0, 0, 129, 0, 221, 31, 191, 12, 67, 33, 0, 60, 0, 0, 129, 0, 221, 159, 191, 12, 67, 33, 0, 60, 0, 0, 129, 0, 134, 32, 0, 0, 219, 33, 0, 60, 127, 0, 0, 0, 134, 32, 0, 0, 244, 160, 0, 60, 127, 0, 0, 0, 134, 32, 69, 21, 7, 160, 0, 60, 127, 0, 0, 0, 134, 32, 69, 21, 219, 33, 0, 60, 127, 0, 0, 0, 217, 31, 69, 21, 7, 160, 0, 60, 0, 127, 0, 0, 134, 32, 69, 21, 7, 160, 0, 60, 0, 127, 0, 0, 134, 160, 0, 0, 244, 160, 0, 60, 0, 0, 129, 0, 134, 160, 210, 25, 244, 160, 0, 60, 0, 0, 129, 0, 134, 32, 210, 25, 244, 160, 0, 60, 0, 0, 129, 0, 134, 32, 0, 0, 244, 160, 0, 60, 0, 0, 129, 0, 134, 160, 210, 25, 7, 160, 0, 60, 130, 0, 0, 0, 134, 160, 210, 25, 244, 160, 0, 60, 130, 0, 0, 0, 134, 32, 210, 25, 244, 160, 0, 60, 127, 0, 0, 0, 134, 32, 210, 25, 7, 160, 0, 60, 127, 0, 0, 0, 134, 32, 210, 25, 7, 160, 0, 60, 0, 0, 126, 0, 134, 32, 69, 21, 7, 160, 0, 60, 0, 0, 126, 0, 134, 160, 210, 25, 7, 160, 0, 60, 0, 0, 126, 0, 134, 160, 69, 21, 7, 160, 0, 60, 0, 0, 126, 0, 217, 31, 243, 17, 110, 139, 0, 60, 0, 0, 129, 0, 221, 31, 191, 12, 110, 139, 0, 60, 0, 0, 129, 0, 221, 159, 191, 12, 110, 139, 0, 60, 0, 0, 129, 0, 221, 159, 243, 17, 110, 139, 0, 60, 0, 0, 129, 0, 217, 31, 243, 17, 170, 14, 0, 60, 0, 0, 126, 0, 221, 159, 243, 17, 170, 14, 0, 60, 0, 0, 126, 0, 221, 159, 191, 12, 170, 14, 0, 60, 0, 0, 126, 0, 221, 31, 191, 12, 170, 14, 0, 60, 0, 0, 126, 0, 217, 31, 243, 17, 110, 139, 0, 60, 0, 127, 0, 0, 221, 159, 243, 17, 110, 139, 0, 60, 0, 127, 0, 0, 221, 159, 243, 17, 170, 14, 0, 60, 0, 127, 0, 0, 217, 31, 243, 17, 170, 14, 0, 60, 0, 127, 0, 0), -"array_index_data": PackedByteArray(0, 0, 2, 0, 1, 0, 0, 0, 3, 0, 2, 0, 4, 0, 6, 0, 5, 0, 4, 0, 7, 0, 6, 0, 8, 0, 10, 0, 9, 0, 8, 0, 11, 0, 10, 0, 12, 0, 14, 0, 13, 0, 12, 0, 15, 0, 14, 0, 16, 0, 18, 0, 17, 0, 16, 0, 19, 0, 18, 0, 17, 0, 21, 0, 20, 0, 17, 0, 18, 0, 21, 0, 22, 0, 24, 0, 23, 0, 22, 0, 25, 0, 24, 0, 26, 0, 28, 0, 27, 0, 26, 0, 29, 0, 28, 0, 30, 0, 32, 0, 31, 0, 30, 0, 33, 0, 32, 0, 34, 0, 36, 0, 35, 0, 34, 0, 37, 0, 36, 0, 38, 0, 40, 0, 39, 0, 38, 0, 41, 0, 40, 0, 42, 0, 19, 0, 16, 0, 42, 0, 43, 0, 19, 0, 44, 0, 46, 0, 45, 0, 44, 0, 47, 0, 46, 0, 48, 0, 12, 0, 49, 0, 48, 0, 15, 0, 12, 0, 50, 0, 40, 0, 51, 0, 50, 0, 39, 0, 40, 0, 52, 0, 53, 0, 30, 0, 54, 0, 31, 0, 55, 0, 52, 0, 31, 0, 54, 0, 52, 0, 30, 0, 31, 0, 56, 0, 58, 0, 57, 0, 56, 0, 59, 0, 58, 0, 60, 0, 62, 0, 61, 0, 60, 0, 63, 0, 62, 0, 64, 0, 66, 0, 65, 0, 64, 0, 67, 0, 66, 0), -"blend_shape_data": [], -"format": 98051, +"format": 4099, "index_count": 120, -"material": ExtResource( 6 ), +"index_data": PackedByteArray(0, 0, 2, 0, 1, 0, 0, 0, 3, 0, 2, 0, 4, 0, 6, 0, 5, 0, 4, 0, 7, 0, 6, 0, 8, 0, 10, 0, 9, 0, 8, 0, 11, 0, 10, 0, 12, 0, 14, 0, 13, 0, 12, 0, 15, 0, 14, 0, 16, 0, 18, 0, 17, 0, 16, 0, 19, 0, 18, 0, 17, 0, 21, 0, 20, 0, 17, 0, 18, 0, 21, 0, 22, 0, 24, 0, 23, 0, 22, 0, 25, 0, 24, 0, 26, 0, 28, 0, 27, 0, 26, 0, 29, 0, 28, 0, 30, 0, 32, 0, 31, 0, 30, 0, 33, 0, 32, 0, 34, 0, 36, 0, 35, 0, 34, 0, 37, 0, 36, 0, 38, 0, 40, 0, 39, 0, 38, 0, 41, 0, 40, 0, 42, 0, 19, 0, 16, 0, 42, 0, 43, 0, 19, 0, 44, 0, 46, 0, 45, 0, 44, 0, 47, 0, 46, 0, 48, 0, 12, 0, 49, 0, 48, 0, 15, 0, 12, 0, 50, 0, 40, 0, 51, 0, 50, 0, 39, 0, 40, 0, 52, 0, 53, 0, 30, 0, 54, 0, 31, 0, 55, 0, 52, 0, 31, 0, 54, 0, 52, 0, 30, 0, 31, 0, 56, 0, 58, 0, 57, 0, 56, 0, 59, 0, 58, 0, 60, 0, 62, 0, 61, 0, 60, 0, 63, 0, 62, 0, 64, 0, 66, 0, 65, 0, 64, 0, 67, 0, 66, 0), +"material": ExtResource( "6" ), "name": "Material.002", -"primitive": 4, -"skeleton_aabb": [], -"vertex_count": 68 -} +"primitive": 3, +"vertex_count": 68, +"vertex_data": PackedByteArray(0, 192, 16, 188, 0, 0, 0, 0, 0, 96, 59, 60, 0, 0, 96, 63, 0, 192, 16, 60, 0, 0, 0, 0, 0, 96, 59, 60, 0, 0, 96, 63, 0, 192, 16, 60, 0, 160, 168, 58, 0, 96, 59, 60, 0, 0, 96, 63, 0, 192, 16, 188, 0, 160, 168, 58, 0, 96, 59, 60, 0, 0, 96, 63, 0, 160, 251, 187, 0, 160, 168, 58, 0, 224, 0, 188, 254, 3, 0, 0, 0, 160, 251, 187, 0, 160, 168, 58, 0, 96, 40, 60, 254, 3, 0, 0, 0, 160, 251, 187, 0, 224, 151, 57, 0, 96, 40, 60, 254, 3, 0, 0, 0, 160, 251, 187, 0, 224, 151, 57, 0, 224, 0, 188, 254, 3, 0, 0, 0, 160, 251, 59, 0, 160, 168, 58, 0, 96, 40, 60, 0, 0, 0, 0, 0, 32, 251, 59, 0, 160, 168, 58, 0, 224, 0, 188, 0, 0, 0, 0, 0, 160, 251, 59, 0, 224, 151, 57, 0, 224, 0, 188, 0, 0, 0, 0, 0, 160, 251, 59, 0, 224, 151, 57, 0, 96, 40, 60, 0, 0, 0, 0, 0, 192, 16, 188, 0, 0, 0, 0, 0, 128, 30, 188, 0, 0, 0, 0, 0, 192, 16, 188, 0, 0, 0, 0, 0, 96, 59, 60, 0, 0, 0, 0, 0, 192, 16, 188, 0, 160, 168, 58, 0, 96, 59, 60, 0, 0, 0, 0, 0, 192, 16, 188, 0, 160, 168, 58, 0, 224, 0, 188, 0, 0, 0, 0, 0, 160, 251, 59, 0, 160, 168, 58, 0, 96, 40, 60, 0, 248, 15, 0, 0, 160, 251, 187, 0, 160, 168, 58, 0, 96, 40, 60, 0, 248, 15, 0, 0, 192, 16, 188, 0, 160, 168, 58, 0, 96, 59, 60, 0, 248, 15, 0, 0, 192, 16, 60, 0, 160, 168, 58, 0, 96, 59, 60, 0, 248, 15, 0, 0, 160, 251, 187, 0, 160, 168, 58, 0, 224, 0, 188, 0, 248, 15, 0, 0, 192, 16, 188, 0, 160, 168, 58, 0, 224, 0, 188, 0, 248, 15, 0, 0, 192, 16, 188, 0, 64, 58, 59, 0, 128, 30, 188, 0, 248, 15, 0, 0, 192, 16, 188, 0, 64, 58, 59, 0, 224, 0, 188, 0, 248, 15, 0, 0, 192, 16, 60, 0, 64, 58, 59, 0, 224, 0, 188, 0, 248, 15, 0, 0, 192, 16, 60, 0, 64, 58, 59, 0, 128, 30, 188, 0, 248, 15, 0, 0, 160, 251, 187, 0, 224, 151, 57, 0, 96, 40, 60, 0, 248, 15, 0, 0, 160, 251, 59, 0, 224, 151, 57, 0, 96, 40, 60, 0, 248, 15, 0, 0, 160, 251, 59, 0, 224, 151, 57, 0, 224, 0, 188, 0, 248, 15, 0, 0, 160, 251, 187, 0, 224, 151, 57, 0, 224, 0, 188, 0, 248, 15, 0, 0, 32, 251, 59, 0, 160, 168, 58, 0, 224, 0, 188, 0, 0, 96, 63, 0, 160, 251, 187, 0, 160, 168, 58, 0, 224, 0, 188, 0, 0, 96, 63, 0, 160, 251, 187, 0, 224, 151, 57, 0, 224, 0, 188, 0, 0, 96, 63, 0, 160, 251, 59, 0, 224, 151, 57, 0, 224, 0, 188, 0, 0, 96, 63, 0, 160, 251, 187, 0, 160, 168, 58, 0, 96, 40, 60, 0, 0, 0, 0, 0, 160, 251, 59, 0, 160, 168, 58, 0, 96, 40, 60, 0, 0, 0, 0, 0, 160, 251, 59, 0, 224, 151, 57, 0, 96, 40, 60, 0, 0, 0, 0, 0, 160, 251, 187, 0, 224, 151, 57, 0, 96, 40, 60, 0, 0, 0, 0, 0, 192, 16, 60, 0, 0, 0, 0, 0, 96, 59, 60, 254, 3, 0, 0, 0, 192, 16, 60, 0, 0, 0, 0, 0, 128, 30, 188, 254, 3, 0, 0, 0, 192, 16, 60, 0, 160, 168, 58, 0, 224, 0, 188, 254, 3, 0, 0, 0, 192, 16, 60, 0, 160, 168, 58, 0, 96, 59, 60, 254, 3, 0, 0, 0, 32, 251, 59, 0, 160, 168, 58, 0, 224, 0, 188, 0, 248, 15, 0, 0, 192, 16, 60, 0, 160, 168, 58, 0, 224, 0, 188, 0, 248, 15, 0, 0, 192, 16, 188, 0, 0, 0, 0, 0, 128, 30, 188, 0, 0, 0, 0, 0, 192, 16, 188, 0, 64, 58, 59, 0, 128, 30, 188, 0, 0, 0, 0, 0, 192, 16, 60, 0, 64, 58, 59, 0, 128, 30, 188, 0, 0, 0, 0, 0, 192, 16, 60, 0, 0, 0, 0, 0, 128, 30, 188, 0, 0, 0, 0, 0, 192, 16, 188, 0, 64, 58, 59, 0, 224, 0, 188, 0, 0, 0, 0, 0, 192, 16, 188, 0, 64, 58, 59, 0, 128, 30, 188, 0, 0, 0, 0, 0, 192, 16, 60, 0, 64, 58, 59, 0, 128, 30, 188, 254, 3, 0, 0, 0, 192, 16, 60, 0, 64, 58, 59, 0, 224, 0, 188, 254, 3, 0, 0, 0, 192, 16, 60, 0, 64, 58, 59, 0, 224, 0, 188, 0, 0, 96, 63, 0, 192, 16, 60, 0, 160, 168, 58, 0, 224, 0, 188, 0, 0, 96, 63, 0, 192, 16, 188, 0, 64, 58, 59, 0, 224, 0, 188, 0, 0, 96, 63, 0, 192, 16, 188, 0, 160, 168, 58, 0, 224, 0, 188, 0, 0, 96, 63, 0, 32, 251, 59, 0, 96, 62, 58, 0, 192, 109, 185, 0, 0, 0, 0, 0, 160, 251, 59, 0, 224, 151, 57, 0, 192, 109, 185, 0, 0, 0, 0, 0, 160, 251, 187, 0, 224, 151, 57, 0, 192, 109, 185, 0, 0, 0, 0, 0, 160, 251, 187, 0, 96, 62, 58, 0, 192, 109, 185, 0, 0, 0, 0, 0, 32, 251, 59, 0, 96, 62, 58, 0, 64, 213, 57, 0, 0, 96, 63, 0, 160, 251, 187, 0, 96, 62, 58, 0, 64, 213, 57, 0, 0, 96, 63, 0, 160, 251, 187, 0, 224, 151, 57, 0, 64, 213, 57, 0, 0, 96, 63, 0, 160, 251, 59, 0, 224, 151, 57, 0, 64, 213, 57, 0, 0, 96, 63, 0, 32, 251, 59, 0, 96, 62, 58, 0, 192, 109, 185, 0, 248, 15, 0, 0, 160, 251, 187, 0, 96, 62, 58, 0, 192, 109, 185, 0, 248, 15, 0, 0, 160, 251, 187, 0, 96, 62, 58, 0, 64, 213, 57, 0, 248, 15, 0, 0, 32, 251, 59, 0, 96, 62, 58, 0, 64, 213, 57, 0, 248, 15, 0) +}] -[sub_resource type="ConcavePolygonShape3D" id=22] +[sub_resource type="ConcavePolygonShape3D" id="22"] data = PackedVector3Array(-0.0209, 0.1613, 0.0204, -0.034, 0.1613, 0.0112, -0.0209, 0.1613, 0.0112, -0.0209, 0.1613, 0.0204, -0.034, 0.1613, 0.0204, -0.034, 0.1613, 0.0112, -0.034, 0.1394, 0.0112, -0.034, 0.1613, 0.0204, -0.034, 0.1314, 0.0204, -0.034, 0.1394, 0.0112, -0.034, 0.1613, 0.0112, -0.034, 0.1613, 0.0204, -0.0209, 0.1394, 0.0112, -0.034, 0.1613, 0.0112, -0.034, 0.1394, 0.0112, -0.0209, 0.1394, 0.0112, -0.0209, 0.1613, 0.0112, -0.034, 0.1613, 0.0112, -0.0209, 0.1314, 0.0204, -0.0209, 0.1613, 0.0112, -0.0209, 0.1394, 0.0112, -0.0209, 0.1314, 0.0204, -0.0209, 0.1613, 0.0204, -0.0209, 0.1613, 0.0112, -0.034, 0.1314, 0.0204, -0.0209, 0.1613, 0.0204, -0.0209, 0.1314, 0.0204, -0.034, 0.1314, 0.0204, -0.034, 0.1613, 0.0204, -0.0209, 0.1613, 0.0204, -0.0612, 0, -0.0384, -0.0612, 0.1111, 0.0398, -0.0612, 0, 0.0398, -0.0612, 0, -0.0384, -0.0612, 0.1111, -0.0384, -0.0612, 0.1111, 0.0398, 0.0613, 0.1111, -0.0384, 0.0613, 0, 0.0398, 0.0613, 0.1111, 0.0398, 0.0613, 0.1111, -0.0384, 0.0613, 0, -0.0384, 0.0613, 0, 0.0398, -0.0612, 0, 0.0398, 0.0613, 0.1111, 0.0398, 0.0613, 0, 0.0398, -0.0612, 0, 0.0398, -0.0612, 0.1111, 0.0398, 0.0613, 0.1111, 0.0398, -0.0612, 0.1111, 0.0398, 0.0682, 0.1111, 0.0443, 0.0613, 0.1111, 0.0398, -0.0612, 0.1111, 0.0398, -0.0681, 0.1111, 0.0443, 0.0682, 0.1111, 0.0443, 0.0613, 0.1111, 0.0398, 0.0682, 0.1111, -0.0442, 0.0613, 0.1111, -0.0384, 0.0613, 0.1111, 0.0398, 0.0682, 0.1111, 0.0443, 0.0682, 0.1111, -0.0442, -0.0612, 0.1111, -0.0384, -0.0681, 0.1111, 0.0443, -0.0612, 0.1111, 0.0398, -0.0612, 0.1111, -0.0384, -0.0681, 0.1111, -0.0442, -0.0681, 0.1111, 0.0443, 0.0613, 0.1111, -0.0384, -0.0681, 0.1111, -0.0442, -0.0612, 0.1111, -0.0384, 0.0613, 0.1111, -0.0384, 0.0682, 0.1111, -0.0442, -0.0681, 0.1111, -0.0442, -0.0612, 0.1111, -0.0384, 0.0613, 0, -0.0384, 0.0613, 0.1111, -0.0384, -0.0612, 0.1111, -0.0384, -0.0612, 0, -0.0384, 0.0613, 0, -0.0384) -[sub_resource type="ArrayMesh" id=23] +[sub_resource type="ArrayMesh" id="23"] resource_name = "Plane.015" -surfaces/0 = { +_surfaces = [{ "aabb": AABB(-0.0720108, 0, -0.0474664, 0.132816, 0.110198, 0.108272), -"array_data": PackedByteArray(88, 166, 0, 0, 165, 22, 0, 60, 127, 0, 0, 0, 88, 166, 0, 0, 19, 170, 0, 60, 127, 0, 0, 0, 88, 166, 13, 47, 19, 170, 0, 60, 127, 0, 0, 0, 88, 166, 13, 47, 165, 22, 0, 60, 127, 0, 0, 0, 155, 172, 0, 0, 200, 43, 0, 60, 0, 0, 126, 0, 200, 43, 0, 0, 200, 43, 0, 60, 0, 0, 126, 0, 200, 43, 13, 47, 200, 43, 0, 60, 0, 0, 126, 0, 155, 172, 13, 47, 200, 43, 0, 60, 0, 0, 126, 0, 200, 43, 0, 0, 165, 22, 0, 60, 0, 0, 129, 0, 88, 166, 0, 0, 165, 22, 0, 60, 0, 0, 129, 0, 88, 166, 13, 47, 165, 22, 0, 60, 0, 0, 129, 0, 200, 43, 13, 47, 165, 22, 0, 60, 0, 0, 129, 0, 200, 43, 0, 0, 200, 43, 0, 60, 127, 0, 0, 0, 200, 43, 0, 0, 165, 22, 0, 60, 127, 0, 0, 0, 200, 43, 13, 47, 165, 22, 0, 60, 127, 0, 0, 0, 200, 43, 13, 47, 200, 43, 0, 60, 127, 0, 0, 0, 88, 166, 0, 0, 19, 170, 0, 60, 0, 0, 129, 0, 155, 172, 0, 0, 19, 170, 0, 60, 0, 0, 129, 0, 155, 172, 13, 47, 19, 170, 0, 60, 0, 0, 129, 0, 88, 166, 13, 47, 19, 170, 0, 60, 0, 0, 129, 0, 155, 172, 0, 0, 19, 170, 0, 60, 130, 0, 0, 0, 155, 172, 0, 0, 200, 43, 0, 60, 130, 0, 0, 0, 155, 172, 13, 47, 200, 43, 0, 60, 130, 0, 0, 0, 155, 172, 13, 47, 19, 170, 0, 60, 130, 0, 0, 0), -"array_index_data": PackedByteArray(0, 0, 2, 0, 1, 0, 0, 0, 3, 0, 2, 0, 4, 0, 6, 0, 5, 0, 4, 0, 7, 0, 6, 0, 8, 0, 10, 0, 9, 0, 8, 0, 11, 0, 10, 0, 12, 0, 14, 0, 13, 0, 12, 0, 15, 0, 14, 0, 16, 0, 18, 0, 17, 0, 16, 0, 19, 0, 18, 0, 20, 0, 22, 0, 21, 0, 20, 0, 23, 0, 22, 0), -"blend_shape_data": [], -"format": 98051, +"format": 4099, "index_count": 36, -"material": ExtResource( 5 ), +"index_data": PackedByteArray(0, 0, 2, 0, 1, 0, 0, 0, 3, 0, 2, 0, 4, 0, 6, 0, 5, 0, 4, 0, 7, 0, 6, 0, 8, 0, 10, 0, 9, 0, 8, 0, 11, 0, 10, 0, 12, 0, 14, 0, 13, 0, 12, 0, 15, 0, 14, 0, 16, 0, 18, 0, 17, 0, 16, 0, 19, 0, 18, 0, 20, 0, 22, 0, 21, 0, 20, 0, 23, 0, 22, 0), +"material": ExtResource( "5" ), "name": "Material.001", -"primitive": 4, -"skeleton_aabb": [], -"vertex_count": 24 -} +"primitive": 3, +"vertex_count": 24, +"vertex_data": PackedByteArray(0, 0, 203, 188, 0, 0, 0, 0, 0, 160, 212, 58, 254, 3, 0, 0, 0, 0, 203, 188, 0, 0, 0, 0, 0, 96, 66, 189, 254, 3, 0, 0, 0, 0, 203, 188, 0, 160, 225, 61, 0, 96, 66, 189, 254, 3, 0, 0, 0, 0, 203, 188, 0, 160, 225, 61, 0, 160, 212, 58, 254, 3, 0, 0, 0, 96, 147, 189, 0, 0, 0, 0, 0, 0, 121, 61, 0, 0, 96, 63, 0, 0, 121, 61, 0, 0, 0, 0, 0, 0, 121, 61, 0, 0, 96, 63, 0, 0, 121, 61, 0, 160, 225, 61, 0, 0, 121, 61, 0, 0, 96, 63, 0, 96, 147, 189, 0, 160, 225, 61, 0, 0, 121, 61, 0, 0, 96, 63, 0, 0, 121, 61, 0, 0, 0, 0, 0, 160, 212, 58, 0, 0, 0, 0, 0, 0, 203, 188, 0, 0, 0, 0, 0, 160, 212, 58, 0, 0, 0, 0, 0, 0, 203, 188, 0, 160, 225, 61, 0, 160, 212, 58, 0, 0, 0, 0, 0, 0, 121, 61, 0, 160, 225, 61, 0, 160, 212, 58, 0, 0, 0, 0, 0, 0, 121, 61, 0, 0, 0, 0, 0, 0, 121, 61, 254, 3, 0, 0, 0, 0, 121, 61, 0, 0, 0, 0, 0, 160, 212, 58, 254, 3, 0, 0, 0, 0, 121, 61, 0, 160, 225, 61, 0, 160, 212, 58, 254, 3, 0, 0, 0, 0, 121, 61, 0, 160, 225, 61, 0, 0, 121, 61, 254, 3, 0, 0, 0, 0, 203, 188, 0, 0, 0, 0, 0, 96, 66, 189, 0, 0, 0, 0, 0, 96, 147, 189, 0, 0, 0, 0, 0, 96, 66, 189, 0, 0, 0, 0, 0, 96, 147, 189, 0, 160, 225, 61, 0, 96, 66, 189, 0, 0, 0, 0, 0, 0, 203, 188, 0, 160, 225, 61, 0, 96, 66, 189, 0, 0, 0, 0, 0, 96, 147, 189, 0, 0, 0, 0, 0, 96, 66, 189, 0, 0, 0, 0, 0, 96, 147, 189, 0, 0, 0, 0, 0, 0, 121, 61, 0, 0, 0, 0, 0, 96, 147, 189, 0, 160, 225, 61, 0, 0, 121, 61, 0, 0, 0, 0, 0, 96, 147, 189, 0, 160, 225, 61, 0, 96, 66, 189, 0, 0, 0, 0) +}] -[sub_resource type="ArrayMesh" id=24] +[sub_resource type="ArrayMesh" id="24"] resource_name = "Cube.050" -surfaces/0 = { +_surfaces = [{ "aabb": AABB(-0.0226153, 0, -0.0188077, 0.0452306, 0.0412906, 0.0188077), -"array_data": PackedByteArray(27, 32, 222, 32, 151, 148, 0, 60, 0, 0, 129, 0, 27, 160, 222, 32, 151, 148, 0, 60, 0, 0, 129, 0, 188, 28, 7, 36, 151, 148, 0, 60, 0, 0, 129, 0, 210, 30, 7, 36, 151, 148, 0, 60, 0, 0, 129, 0, 27, 32, 73, 41, 0, 0, 0, 60, 127, 0, 0, 0, 27, 32, 222, 32, 0, 0, 0, 60, 127, 0, 0, 0, 27, 32, 222, 32, 151, 148, 0, 60, 127, 0, 0, 0, 27, 32, 73, 41, 151, 148, 0, 60, 127, 0, 0, 0, 27, 160, 222, 32, 0, 0, 0, 60, 130, 0, 0, 0, 27, 160, 73, 41, 0, 0, 0, 60, 130, 0, 0, 0, 27, 160, 73, 41, 151, 148, 0, 60, 130, 0, 0, 0, 27, 160, 222, 32, 151, 148, 0, 60, 130, 0, 0, 0, 27, 160, 73, 41, 0, 0, 0, 60, 0, 127, 0, 0, 27, 32, 73, 41, 0, 0, 0, 60, 0, 127, 0, 0, 27, 32, 73, 41, 151, 148, 0, 60, 0, 127, 0, 0, 27, 160, 73, 41, 151, 148, 0, 60, 0, 127, 0, 0, 94, 36, 125, 26, 208, 164, 0, 60, 90, 0, 167, 0, 202, 37, 125, 26, 197, 162, 0, 60, 90, 0, 167, 0, 202, 37, 0, 0, 197, 162, 0, 60, 90, 0, 167, 0, 94, 36, 0, 0, 208, 164, 0, 60, 90, 0, 167, 0, 202, 37, 125, 26, 0, 0, 0, 60, 127, 0, 0, 0, 202, 37, 0, 0, 0, 0, 0, 60, 127, 0, 0, 0, 202, 37, 0, 0, 197, 162, 0, 60, 127, 0, 0, 0, 202, 37, 125, 26, 197, 162, 0, 60, 127, 0, 0, 0, 252, 163, 125, 30, 0, 0, 0, 60, 130, 0, 0, 0, 252, 163, 222, 32, 0, 0, 0, 60, 130, 0, 0, 0, 252, 163, 222, 32, 75, 160, 0, 60, 130, 0, 0, 0, 252, 163, 125, 30, 75, 160, 0, 60, 130, 0, 0, 0, 6, 34, 222, 32, 9, 162, 0, 60, 84, 0, 162, 0, 252, 35, 222, 32, 75, 160, 0, 60, 84, 0, 162, 0, 252, 35, 125, 30, 75, 160, 0, 60, 84, 0, 162, 0, 6, 34, 125, 30, 9, 162, 0, 60, 84, 0, 162, 0, 76, 35, 125, 30, 185, 163, 0, 60, 87, 0, 165, 0, 214, 36, 125, 30, 116, 161, 0, 60, 87, 0, 165, 0, 214, 36, 125, 26, 116, 161, 0, 60, 87, 0, 165, 0, 76, 35, 125, 26, 185, 163, 0, 60, 87, 0, 165, 0, 252, 35, 222, 32, 0, 0, 0, 60, 127, 0, 0, 0, 252, 35, 125, 30, 0, 0, 0, 60, 127, 0, 0, 0, 252, 35, 125, 30, 75, 160, 0, 60, 127, 0, 0, 0, 252, 35, 222, 32, 75, 160, 0, 60, 127, 0, 0, 0, 214, 36, 125, 30, 0, 0, 0, 60, 127, 0, 0, 0, 214, 36, 125, 26, 0, 0, 0, 60, 127, 0, 0, 0, 214, 36, 125, 26, 116, 161, 0, 60, 127, 0, 0, 0, 214, 36, 125, 30, 116, 161, 0, 60, 127, 0, 0, 0, 202, 165, 0, 0, 0, 0, 0, 60, 130, 0, 0, 0, 202, 165, 125, 26, 0, 0, 0, 60, 130, 0, 0, 0, 202, 165, 125, 26, 197, 162, 0, 60, 130, 0, 0, 0, 202, 165, 0, 0, 197, 162, 0, 60, 130, 0, 0, 0, 214, 164, 125, 26, 0, 0, 0, 60, 130, 0, 0, 0, 214, 164, 125, 30, 0, 0, 0, 60, 130, 0, 0, 0, 214, 164, 125, 30, 116, 161, 0, 60, 130, 0, 0, 0, 214, 164, 125, 26, 116, 161, 0, 60, 130, 0, 0, 0, 76, 163, 125, 30, 185, 163, 0, 60, 0, 127, 0, 0, 214, 164, 125, 30, 116, 161, 0, 60, 0, 127, 0, 0, 252, 163, 125, 30, 75, 160, 0, 60, 0, 127, 0, 0, 6, 162, 125, 30, 9, 162, 0, 60, 0, 127, 0, 0, 214, 36, 125, 30, 0, 0, 0, 60, 0, 127, 0, 0, 214, 36, 125, 30, 116, 161, 0, 60, 0, 127, 0, 0, 252, 35, 125, 30, 75, 160, 0, 60, 0, 127, 0, 0, 252, 35, 125, 30, 0, 0, 0, 60, 0, 127, 0, 0, 214, 164, 125, 30, 0, 0, 0, 60, 0, 127, 0, 0, 252, 163, 125, 30, 0, 0, 0, 60, 0, 127, 0, 0, 94, 164, 125, 26, 208, 164, 0, 60, 0, 127, 0, 0, 202, 165, 125, 26, 197, 162, 0, 60, 0, 127, 0, 0, 214, 164, 125, 26, 116, 161, 0, 60, 0, 127, 0, 0, 76, 163, 125, 26, 185, 163, 0, 60, 0, 127, 0, 0, 202, 37, 125, 26, 0, 0, 0, 60, 0, 127, 0, 0, 202, 37, 125, 26, 197, 162, 0, 60, 0, 127, 0, 0, 214, 36, 125, 26, 116, 161, 0, 60, 0, 127, 0, 0, 214, 36, 125, 26, 0, 0, 0, 60, 0, 127, 0, 0, 202, 165, 125, 26, 0, 0, 0, 60, 0, 127, 0, 0, 214, 164, 125, 26, 0, 0, 0, 60, 0, 127, 0, 0, 25, 159, 244, 38, 204, 150, 0, 60, 0, 0, 129, 0, 18, 158, 18, 39, 204, 150, 0, 60, 0, 0, 129, 0, 144, 157, 203, 38, 204, 150, 0, 60, 0, 0, 129, 0, 150, 158, 173, 38, 204, 150, 0, 60, 0, 0, 129, 0, 25, 159, 244, 38, 151, 148, 0, 60, 203, 115, 0, 0, 18, 158, 18, 39, 151, 148, 0, 60, 203, 115, 0, 0, 18, 158, 18, 39, 204, 150, 0, 60, 203, 115, 0, 0, 25, 159, 244, 38, 204, 150, 0, 60, 203, 115, 0, 0, 144, 157, 203, 38, 151, 148, 0, 60, 53, 141, 0, 0, 150, 158, 173, 38, 151, 148, 0, 60, 53, 141, 0, 0, 150, 158, 173, 38, 204, 150, 0, 60, 53, 141, 0, 0, 144, 157, 203, 38, 204, 150, 0, 60, 53, 141, 0, 0, 18, 158, 18, 39, 151, 148, 0, 60, 115, 53, 0, 0, 144, 157, 203, 38, 151, 148, 0, 60, 115, 53, 0, 0, 144, 157, 203, 38, 204, 150, 0, 60, 115, 53, 0, 0, 18, 158, 18, 39, 204, 150, 0, 60, 115, 53, 0, 0, 150, 158, 173, 38, 151, 148, 0, 60, 141, 203, 0, 0, 25, 159, 244, 38, 151, 148, 0, 60, 141, 203, 0, 0, 25, 159, 244, 38, 204, 150, 0, 60, 141, 203, 0, 0, 150, 158, 173, 38, 204, 150, 0, 60, 141, 203, 0, 0, 202, 165, 125, 26, 197, 162, 0, 60, 167, 0, 167, 0, 94, 164, 125, 26, 208, 164, 0, 60, 167, 0, 167, 0, 94, 164, 0, 0, 208, 164, 0, 60, 167, 0, 167, 0, 202, 165, 0, 0, 197, 162, 0, 60, 167, 0, 167, 0, 252, 163, 222, 32, 0, 0, 0, 60, 0, 127, 0, 0, 252, 35, 222, 32, 0, 0, 0, 60, 0, 127, 0, 0, 6, 34, 222, 32, 9, 162, 0, 60, 0, 127, 0, 0, 6, 162, 222, 32, 9, 162, 0, 60, 0, 127, 0, 0, 252, 163, 222, 32, 75, 160, 0, 60, 172, 0, 162, 0, 6, 162, 222, 32, 9, 162, 0, 60, 172, 0, 162, 0, 6, 162, 125, 30, 9, 162, 0, 60, 172, 0, 162, 0, 252, 163, 125, 30, 75, 160, 0, 60, 172, 0, 162, 0, 214, 164, 125, 30, 116, 161, 0, 60, 169, 0, 165, 0, 76, 163, 125, 30, 185, 163, 0, 60, 169, 0, 165, 0, 76, 163, 125, 26, 185, 163, 0, 60, 169, 0, 165, 0, 214, 164, 125, 26, 116, 161, 0, 60, 169, 0, 165, 0, 76, 35, 125, 30, 185, 163, 0, 60, 0, 127, 0, 0, 6, 34, 125, 30, 9, 162, 0, 60, 0, 127, 0, 0, 94, 36, 125, 26, 208, 164, 0, 60, 0, 127, 0, 0, 76, 35, 125, 26, 185, 163, 0, 60, 0, 127, 0, 0, 252, 35, 222, 32, 75, 160, 0, 60, 0, 127, 0, 0, 94, 164, 125, 26, 208, 164, 0, 60, 0, 0, 129, 0, 94, 36, 125, 26, 208, 164, 0, 60, 0, 0, 129, 0, 94, 36, 0, 0, 208, 164, 0, 60, 0, 0, 129, 0, 94, 164, 0, 0, 208, 164, 0, 60, 0, 0, 129, 0, 76, 163, 125, 30, 185, 163, 0, 60, 0, 0, 129, 0, 76, 35, 125, 30, 185, 163, 0, 60, 0, 0, 129, 0, 76, 35, 125, 26, 185, 163, 0, 60, 0, 0, 129, 0, 76, 163, 125, 26, 185, 163, 0, 60, 0, 0, 129, 0, 6, 162, 222, 32, 9, 162, 0, 60, 0, 0, 129, 0, 6, 34, 222, 32, 9, 162, 0, 60, 0, 0, 129, 0, 6, 34, 125, 30, 9, 162, 0, 60, 0, 0, 129, 0, 6, 162, 125, 30, 9, 162, 0, 60, 0, 0, 129, 0, 252, 163, 222, 32, 75, 160, 0, 60, 0, 127, 0, 0, 188, 28, 7, 36, 151, 148, 0, 60, 127, 0, 0, 0, 188, 28, 19, 41, 151, 148, 0, 60, 127, 0, 0, 0, 188, 28, 19, 41, 204, 146, 0, 60, 127, 0, 0, 0, 188, 28, 7, 36, 204, 146, 0, 60, 127, 0, 0, 0, 27, 32, 73, 41, 151, 148, 0, 60, 0, 0, 129, 0, 210, 30, 19, 41, 151, 148, 0, 60, 0, 0, 129, 0, 27, 160, 73, 41, 151, 148, 0, 60, 0, 0, 129, 0, 188, 28, 19, 41, 151, 148, 0, 60, 0, 0, 129, 0, 188, 28, 19, 41, 204, 146, 0, 60, 0, 0, 129, 0, 210, 30, 19, 41, 204, 146, 0, 60, 0, 0, 129, 0, 210, 30, 7, 36, 204, 146, 0, 60, 0, 0, 129, 0, 188, 28, 7, 36, 204, 146, 0, 60, 0, 0, 129, 0, 188, 28, 19, 41, 151, 148, 0, 60, 0, 130, 0, 0, 210, 30, 19, 41, 151, 148, 0, 60, 0, 130, 0, 0, 210, 30, 19, 41, 204, 146, 0, 60, 0, 130, 0, 0, 188, 28, 19, 41, 204, 146, 0, 60, 0, 130, 0, 0, 210, 30, 7, 36, 151, 148, 0, 60, 0, 127, 0, 0, 188, 28, 7, 36, 151, 148, 0, 60, 0, 127, 0, 0, 188, 28, 7, 36, 204, 146, 0, 60, 0, 127, 0, 0, 210, 30, 7, 36, 204, 146, 0, 60, 0, 127, 0, 0, 210, 30, 19, 41, 151, 148, 0, 60, 130, 0, 0, 0, 210, 30, 7, 36, 151, 148, 0, 60, 130, 0, 0, 0, 210, 30, 7, 36, 204, 146, 0, 60, 130, 0, 0, 0, 210, 30, 19, 41, 204, 146, 0, 60, 130, 0, 0, 0), -"array_index_data": PackedByteArray(0, 0, 2, 0, 1, 0, 0, 0, 3, 0, 2, 0, 4, 0, 6, 0, 5, 0, 4, 0, 7, 0, 6, 0, 8, 0, 10, 0, 9, 0, 8, 0, 11, 0, 10, 0, 12, 0, 14, 0, 13, 0, 12, 0, 15, 0, 14, 0, 16, 0, 18, 0, 17, 0, 16, 0, 19, 0, 18, 0, 20, 0, 22, 0, 21, 0, 20, 0, 23, 0, 22, 0, 24, 0, 26, 0, 25, 0, 24, 0, 27, 0, 26, 0, 28, 0, 30, 0, 29, 0, 28, 0, 31, 0, 30, 0, 32, 0, 34, 0, 33, 0, 32, 0, 35, 0, 34, 0, 36, 0, 38, 0, 37, 0, 36, 0, 39, 0, 38, 0, 40, 0, 42, 0, 41, 0, 40, 0, 43, 0, 42, 0, 44, 0, 46, 0, 45, 0, 44, 0, 47, 0, 46, 0, 48, 0, 50, 0, 49, 0, 48, 0, 51, 0, 50, 0, 52, 0, 54, 0, 53, 0, 52, 0, 55, 0, 54, 0, 56, 0, 58, 0, 57, 0, 56, 0, 59, 0, 58, 0, 53, 0, 61, 0, 60, 0, 53, 0, 54, 0, 61, 0, 62, 0, 64, 0, 63, 0, 62, 0, 65, 0, 64, 0, 66, 0, 68, 0, 67, 0, 66, 0, 69, 0, 68, 0, 63, 0, 71, 0, 70, 0, 63, 0, 64, 0, 71, 0, 72, 0, 74, 0, 73, 0, 72, 0, 75, 0, 74, 0, 76, 0, 78, 0, 77, 0, 76, 0, 79, 0, 78, 0, 80, 0, 82, 0, 81, 0, 80, 0, 83, 0, 82, 0, 84, 0, 86, 0, 85, 0, 84, 0, 87, 0, 86, 0, 88, 0, 90, 0, 89, 0, 88, 0, 91, 0, 90, 0, 92, 0, 94, 0, 93, 0, 92, 0, 95, 0, 94, 0, 96, 0, 98, 0, 97, 0, 96, 0, 99, 0, 98, 0, 100, 0, 102, 0, 101, 0, 100, 0, 103, 0, 102, 0, 104, 0, 106, 0, 105, 0, 104, 0, 107, 0, 106, 0, 108, 0, 55, 0, 52, 0, 108, 0, 109, 0, 55, 0, 110, 0, 65, 0, 62, 0, 110, 0, 111, 0, 65, 0, 67, 0, 111, 0, 110, 0, 67, 0, 68, 0, 111, 0, 97, 0, 98, 0, 112, 0, 113, 0, 115, 0, 114, 0, 113, 0, 116, 0, 115, 0, 117, 0, 119, 0, 118, 0, 117, 0, 120, 0, 119, 0, 57, 0, 109, 0, 108, 0, 57, 0, 58, 0, 109, 0, 121, 0, 123, 0, 122, 0, 121, 0, 124, 0, 123, 0, 96, 0, 125, 0, 99, 0, 126, 0, 128, 0, 127, 0, 126, 0, 129, 0, 128, 0, 130, 0, 3, 0, 0, 0, 130, 0, 131, 0, 3, 0, 1, 0, 133, 0, 132, 0, 1, 0, 2, 0, 133, 0, 132, 0, 131, 0, 130, 0, 132, 0, 133, 0, 131, 0, 134, 0, 136, 0, 135, 0, 134, 0, 137, 0, 136, 0, 138, 0, 140, 0, 139, 0, 138, 0, 141, 0, 140, 0, 142, 0, 144, 0, 143, 0, 142, 0, 145, 0, 144, 0, 146, 0, 148, 0, 147, 0, 146, 0, 149, 0, 148, 0), -"blend_shape_data": [], -"format": 98051, +"format": 4099, "index_count": 264, -"material": ExtResource( 7 ), +"index_data": PackedByteArray(0, 0, 2, 0, 1, 0, 0, 0, 3, 0, 2, 0, 4, 0, 6, 0, 5, 0, 4, 0, 7, 0, 6, 0, 8, 0, 10, 0, 9, 0, 8, 0, 11, 0, 10, 0, 12, 0, 14, 0, 13, 0, 12, 0, 15, 0, 14, 0, 16, 0, 18, 0, 17, 0, 16, 0, 19, 0, 18, 0, 20, 0, 22, 0, 21, 0, 20, 0, 23, 0, 22, 0, 24, 0, 26, 0, 25, 0, 24, 0, 27, 0, 26, 0, 28, 0, 30, 0, 29, 0, 28, 0, 31, 0, 30, 0, 32, 0, 34, 0, 33, 0, 32, 0, 35, 0, 34, 0, 36, 0, 38, 0, 37, 0, 36, 0, 39, 0, 38, 0, 40, 0, 42, 0, 41, 0, 40, 0, 43, 0, 42, 0, 44, 0, 46, 0, 45, 0, 44, 0, 47, 0, 46, 0, 48, 0, 50, 0, 49, 0, 48, 0, 51, 0, 50, 0, 52, 0, 54, 0, 53, 0, 52, 0, 55, 0, 54, 0, 56, 0, 58, 0, 57, 0, 56, 0, 59, 0, 58, 0, 53, 0, 61, 0, 60, 0, 53, 0, 54, 0, 61, 0, 62, 0, 64, 0, 63, 0, 62, 0, 65, 0, 64, 0, 66, 0, 68, 0, 67, 0, 66, 0, 69, 0, 68, 0, 63, 0, 71, 0, 70, 0, 63, 0, 64, 0, 71, 0, 72, 0, 74, 0, 73, 0, 72, 0, 75, 0, 74, 0, 76, 0, 78, 0, 77, 0, 76, 0, 79, 0, 78, 0, 80, 0, 82, 0, 81, 0, 80, 0, 83, 0, 82, 0, 84, 0, 86, 0, 85, 0, 84, 0, 87, 0, 86, 0, 88, 0, 90, 0, 89, 0, 88, 0, 91, 0, 90, 0, 92, 0, 94, 0, 93, 0, 92, 0, 95, 0, 94, 0, 96, 0, 98, 0, 97, 0, 96, 0, 99, 0, 98, 0, 100, 0, 102, 0, 101, 0, 100, 0, 103, 0, 102, 0, 104, 0, 106, 0, 105, 0, 104, 0, 107, 0, 106, 0, 108, 0, 55, 0, 52, 0, 108, 0, 109, 0, 55, 0, 110, 0, 65, 0, 62, 0, 110, 0, 111, 0, 65, 0, 67, 0, 111, 0, 110, 0, 67, 0, 68, 0, 111, 0, 97, 0, 98, 0, 112, 0, 113, 0, 115, 0, 114, 0, 113, 0, 116, 0, 115, 0, 117, 0, 119, 0, 118, 0, 117, 0, 120, 0, 119, 0, 57, 0, 109, 0, 108, 0, 57, 0, 58, 0, 109, 0, 121, 0, 123, 0, 122, 0, 121, 0, 124, 0, 123, 0, 96, 0, 125, 0, 99, 0, 126, 0, 128, 0, 127, 0, 126, 0, 129, 0, 128, 0, 130, 0, 3, 0, 0, 0, 130, 0, 131, 0, 3, 0, 1, 0, 133, 0, 132, 0, 1, 0, 2, 0, 133, 0, 132, 0, 131, 0, 130, 0, 132, 0, 133, 0, 131, 0, 134, 0, 136, 0, 135, 0, 134, 0, 137, 0, 136, 0, 138, 0, 140, 0, 139, 0, 138, 0, 141, 0, 140, 0, 142, 0, 144, 0, 143, 0, 142, 0, 145, 0, 144, 0, 146, 0, 148, 0, 147, 0, 146, 0, 149, 0, 148, 0), +"material": ExtResource( "7" ), "name": "vertexColorShader", -"primitive": 4, -"skeleton_aabb": [], -"vertex_count": 150 -} +"primitive": 3, +"vertex_count": 150, +"vertex_data": PackedByteArray(0, 96, 3, 60, 0, 192, 27, 60, 0, 224, 146, 186, 0, 0, 0, 0, 0, 96, 3, 188, 0, 192, 27, 60, 0, 224, 146, 186, 0, 0, 0, 0, 0, 128, 151, 59, 0, 224, 128, 60, 0, 224, 146, 186, 0, 0, 0, 0, 0, 64, 218, 59, 0, 224, 128, 60, 0, 224, 146, 186, 0, 0, 0, 0, 0, 96, 3, 60, 0, 32, 41, 61, 0, 0, 0, 0, 254, 3, 0, 0, 0, 96, 3, 60, 0, 192, 27, 60, 0, 0, 0, 0, 254, 3, 0, 0, 0, 96, 3, 60, 0, 192, 27, 60, 0, 224, 146, 186, 254, 3, 0, 0, 0, 96, 3, 60, 0, 32, 41, 61, 0, 224, 146, 186, 254, 3, 0, 0, 0, 96, 3, 188, 0, 192, 27, 60, 0, 0, 0, 0, 0, 0, 0, 0, 0, 96, 3, 188, 0, 32, 41, 61, 0, 0, 0, 0, 0, 0, 0, 0, 0, 96, 3, 188, 0, 32, 41, 61, 0, 224, 146, 186, 0, 0, 0, 0, 0, 96, 3, 188, 0, 192, 27, 60, 0, 224, 146, 186, 0, 0, 0, 0, 0, 96, 3, 188, 0, 32, 41, 61, 0, 0, 0, 0, 0, 248, 15, 0, 0, 96, 3, 60, 0, 32, 41, 61, 0, 0, 0, 0, 0, 248, 15, 0, 0, 96, 3, 60, 0, 32, 41, 61, 0, 224, 146, 186, 0, 248, 15, 0, 0, 96, 3, 188, 0, 32, 41, 61, 0, 224, 146, 186, 0, 248, 15, 0, 0, 192, 139, 60, 0, 160, 79, 59, 0, 0, 154, 188, 212, 2, 0, 0, 0, 64, 185, 60, 0, 160, 79, 59, 0, 160, 88, 188, 212, 2, 0, 0, 0, 64, 185, 60, 0, 0, 0, 0, 0, 160, 88, 188, 212, 2, 0, 0, 0, 192, 139, 60, 0, 0, 0, 0, 0, 0, 154, 188, 212, 2, 0, 0, 0, 64, 185, 60, 0, 160, 79, 59, 0, 0, 0, 0, 254, 3, 0, 0, 0, 64, 185, 60, 0, 0, 0, 0, 0, 0, 0, 0, 254, 3, 0, 0, 0, 64, 185, 60, 0, 0, 0, 0, 0, 160, 88, 188, 254, 3, 0, 0, 0, 64, 185, 60, 0, 160, 79, 59, 0, 160, 88, 188, 254, 3, 0, 0, 0, 128, 127, 188, 0, 160, 207, 59, 0, 0, 0, 0, 0, 0, 0, 0, 0, 128, 127, 188, 0, 192, 27, 60, 0, 0, 0, 0, 0, 0, 0, 0, 0, 128, 127, 188, 0, 192, 27, 60, 0, 96, 9, 188, 0, 0, 0, 0, 0, 128, 127, 188, 0, 160, 207, 59, 0, 96, 9, 188, 0, 0, 0, 0, 0, 192, 64, 60, 0, 192, 27, 60, 0, 32, 65, 188, 164, 2, 0, 0, 0, 128, 127, 60, 0, 192, 27, 60, 0, 96, 9, 188, 164, 2, 0, 0, 0, 128, 127, 60, 0, 160, 207, 59, 0, 96, 9, 188, 164, 2, 0, 0, 0, 192, 64, 60, 0, 160, 207, 59, 0, 32, 65, 188, 164, 2, 0, 0, 0, 128, 105, 60, 0, 160, 207, 59, 0, 32, 119, 188, 188, 2, 0, 0, 0, 192, 154, 60, 0, 160, 207, 59, 0, 128, 46, 188, 188, 2, 0, 0, 0, 192, 154, 60, 0, 160, 79, 59, 0, 128, 46, 188, 188, 2, 0, 0, 0, 128, 105, 60, 0, 160, 79, 59, 0, 32, 119, 188, 188, 2, 0, 0, 0, 128, 127, 60, 0, 192, 27, 60, 0, 0, 0, 0, 254, 3, 0, 0, 0, 128, 127, 60, 0, 160, 207, 59, 0, 0, 0, 0, 254, 3, 0, 0, 0, 128, 127, 60, 0, 160, 207, 59, 0, 96, 9, 188, 254, 3, 0, 0, 0, 128, 127, 60, 0, 192, 27, 60, 0, 96, 9, 188, 254, 3, 0, 0, 0, 192, 154, 60, 0, 160, 207, 59, 0, 0, 0, 0, 254, 3, 0, 0, 0, 192, 154, 60, 0, 160, 79, 59, 0, 0, 0, 0, 254, 3, 0, 0, 0, 192, 154, 60, 0, 160, 79, 59, 0, 128, 46, 188, 254, 3, 0, 0, 0, 192, 154, 60, 0, 160, 207, 59, 0, 128, 46, 188, 254, 3, 0, 0, 0, 64, 185, 188, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 64, 185, 188, 0, 160, 79, 59, 0, 0, 0, 0, 0, 0, 0, 0, 0, 64, 185, 188, 0, 160, 79, 59, 0, 160, 88, 188, 0, 0, 0, 0, 0, 64, 185, 188, 0, 0, 0, 0, 0, 160, 88, 188, 0, 0, 0, 0, 0, 192, 154, 188, 0, 160, 79, 59, 0, 0, 0, 0, 0, 0, 0, 0, 0, 192, 154, 188, 0, 160, 207, 59, 0, 0, 0, 0, 0, 0, 0, 0, 0, 192, 154, 188, 0, 160, 207, 59, 0, 128, 46, 188, 0, 0, 0, 0, 0, 192, 154, 188, 0, 160, 79, 59, 0, 128, 46, 188, 0, 0, 0, 0, 0, 128, 105, 188, 0, 160, 207, 59, 0, 32, 119, 188, 0, 248, 15, 0, 0, 192, 154, 188, 0, 160, 207, 59, 0, 128, 46, 188, 0, 248, 15, 0, 0, 128, 127, 188, 0, 160, 207, 59, 0, 96, 9, 188, 0, 248, 15, 0, 0, 192, 64, 188, 0, 160, 207, 59, 0, 32, 65, 188, 0, 248, 15, 0, 0, 192, 154, 60, 0, 160, 207, 59, 0, 0, 0, 0, 0, 248, 15, 0, 0, 192, 154, 60, 0, 160, 207, 59, 0, 128, 46, 188, 0, 248, 15, 0, 0, 128, 127, 60, 0, 160, 207, 59, 0, 96, 9, 188, 0, 248, 15, 0, 0, 128, 127, 60, 0, 160, 207, 59, 0, 0, 0, 0, 0, 248, 15, 0, 0, 192, 154, 188, 0, 160, 207, 59, 0, 0, 0, 0, 0, 248, 15, 0, 0, 128, 127, 188, 0, 160, 207, 59, 0, 0, 0, 0, 0, 248, 15, 0, 0, 192, 139, 188, 0, 160, 79, 59, 0, 0, 154, 188, 0, 248, 15, 0, 0, 64, 185, 188, 0, 160, 79, 59, 0, 160, 88, 188, 0, 248, 15, 0, 0, 192, 154, 188, 0, 160, 79, 59, 0, 128, 46, 188, 0, 248, 15, 0, 0, 128, 105, 188, 0, 160, 79, 59, 0, 32, 119, 188, 0, 248, 15, 0, 0, 64, 185, 60, 0, 160, 79, 59, 0, 0, 0, 0, 0, 248, 15, 0, 0, 64, 185, 60, 0, 160, 79, 59, 0, 160, 88, 188, 0, 248, 15, 0, 0, 192, 154, 60, 0, 160, 79, 59, 0, 128, 46, 188, 0, 248, 15, 0, 0, 192, 154, 60, 0, 160, 79, 59, 0, 0, 0, 0, 0, 248, 15, 0, 0, 64, 185, 188, 0, 160, 79, 59, 0, 0, 0, 0, 0, 248, 15, 0, 0, 192, 154, 188, 0, 160, 79, 59, 0, 0, 0, 0, 0, 248, 15, 0, 0, 32, 227, 187, 0, 128, 222, 60, 0, 128, 217, 186, 0, 0, 0, 0, 0, 64, 194, 187, 0, 64, 226, 60, 0, 128, 217, 186, 0, 0, 0, 0, 0, 0, 178, 187, 0, 96, 217, 60, 0, 128, 217, 186, 0, 0, 0, 0, 0, 192, 210, 187, 0, 160, 213, 60, 0, 128, 217, 186, 0, 0, 0, 0, 0, 32, 227, 187, 0, 128, 222, 60, 0, 224, 146, 186, 0, 120, 14, 0, 0, 64, 194, 187, 0, 64, 226, 60, 0, 224, 146, 186, 0, 120, 14, 0, 0, 64, 194, 187, 0, 64, 226, 60, 0, 128, 217, 186, 0, 120, 14, 0, 0, 32, 227, 187, 0, 128, 222, 60, 0, 128, 217, 186, 0, 120, 14, 0, 0, 0, 178, 187, 0, 96, 217, 60, 0, 224, 146, 186, 170, 1, 0, 0, 0, 192, 210, 187, 0, 160, 213, 60, 0, 224, 146, 186, 170, 1, 0, 0, 0, 192, 210, 187, 0, 160, 213, 60, 0, 128, 217, 186, 170, 1, 0, 0, 0, 0, 178, 187, 0, 96, 217, 60, 0, 128, 217, 186, 170, 1, 0, 0, 0, 64, 194, 187, 0, 64, 226, 60, 0, 224, 146, 186, 158, 171, 6, 0, 0, 0, 178, 187, 0, 96, 217, 60, 0, 224, 146, 186, 158, 171, 6, 0, 0, 0, 178, 187, 0, 96, 217, 60, 0, 128, 217, 186, 158, 171, 6, 0, 0, 64, 194, 187, 0, 64, 226, 60, 0, 128, 217, 186, 158, 171, 6, 0, 0, 192, 210, 187, 0, 160, 213, 60, 0, 224, 146, 186, 0, 0, 0, 0, 0, 32, 227, 187, 0, 128, 222, 60, 0, 224, 146, 186, 0, 0, 0, 0, 0, 32, 227, 187, 0, 128, 222, 60, 0, 128, 217, 186, 0, 0, 0, 0, 0, 192, 210, 187, 0, 160, 213, 60, 0, 128, 217, 186, 0, 0, 0, 0, 0, 64, 185, 188, 0, 160, 79, 59, 0, 160, 88, 188, 0, 0, 0, 0, 0, 192, 139, 188, 0, 160, 79, 59, 0, 0, 154, 188, 0, 0, 0, 0, 0, 192, 139, 188, 0, 0, 0, 0, 0, 0, 154, 188, 0, 0, 0, 0, 0, 64, 185, 188, 0, 0, 0, 0, 0, 160, 88, 188, 0, 0, 0, 0, 0, 128, 127, 188, 0, 192, 27, 60, 0, 0, 0, 0, 0, 248, 15, 0, 0, 128, 127, 60, 0, 192, 27, 60, 0, 0, 0, 0, 0, 248, 15, 0, 0, 192, 64, 60, 0, 192, 27, 60, 0, 32, 65, 188, 0, 248, 15, 0, 0, 192, 64, 188, 0, 192, 27, 60, 0, 32, 65, 188, 0, 248, 15, 0, 0, 128, 127, 188, 0, 192, 27, 60, 0, 96, 9, 188, 0, 0, 0, 0, 0, 192, 64, 188, 0, 192, 27, 60, 0, 32, 65, 188, 0, 0, 0, 0, 0, 192, 64, 188, 0, 160, 207, 59, 0, 32, 65, 188, 0, 0, 0, 0, 0, 128, 127, 188, 0, 160, 207, 59, 0, 96, 9, 188, 0, 0, 0, 0, 0, 192, 154, 188, 0, 160, 207, 59, 0, 128, 46, 188, 0, 0, 0, 0, 0, 128, 105, 188, 0, 160, 207, 59, 0, 32, 119, 188, 0, 0, 0, 0, 0, 128, 105, 188, 0, 160, 79, 59, 0, 32, 119, 188, 0, 0, 0, 0, 0, 192, 154, 188, 0, 160, 79, 59, 0, 128, 46, 188, 0, 0, 0, 0, 0, 128, 105, 60, 0, 160, 207, 59, 0, 32, 119, 188, 0, 248, 15, 0, 0, 192, 64, 60, 0, 160, 207, 59, 0, 32, 65, 188, 0, 248, 15, 0, 0, 192, 139, 60, 0, 160, 79, 59, 0, 0, 154, 188, 0, 248, 15, 0, 0, 128, 105, 60, 0, 160, 79, 59, 0, 32, 119, 188, 0, 248, 15, 0, 0, 128, 127, 60, 0, 192, 27, 60, 0, 96, 9, 188, 0, 248, 15, 0, 0, 192, 139, 188, 0, 160, 79, 59, 0, 0, 154, 188, 0, 0, 0, 0, 0, 192, 139, 60, 0, 160, 79, 59, 0, 0, 154, 188, 0, 0, 0, 0, 0, 192, 139, 60, 0, 0, 0, 0, 0, 0, 154, 188, 0, 0, 0, 0, 0, 192, 139, 188, 0, 0, 0, 0, 0, 0, 154, 188, 0, 0, 0, 0, 0, 128, 105, 188, 0, 160, 207, 59, 0, 32, 119, 188, 0, 0, 0, 0, 0, 128, 105, 60, 0, 160, 207, 59, 0, 32, 119, 188, 0, 0, 0, 0, 0, 128, 105, 60, 0, 160, 79, 59, 0, 32, 119, 188, 0, 0, 0, 0, 0, 128, 105, 188, 0, 160, 79, 59, 0, 32, 119, 188, 0, 0, 0, 0, 0, 192, 64, 188, 0, 192, 27, 60, 0, 32, 65, 188, 0, 0, 0, 0, 0, 192, 64, 60, 0, 192, 27, 60, 0, 32, 65, 188, 0, 0, 0, 0, 0, 192, 64, 60, 0, 160, 207, 59, 0, 32, 65, 188, 0, 0, 0, 0, 0, 192, 64, 188, 0, 160, 207, 59, 0, 32, 65, 188, 0, 0, 0, 0, 0, 128, 127, 188, 0, 192, 27, 60, 0, 96, 9, 188, 0, 248, 15, 0, 0, 128, 151, 59, 0, 224, 128, 60, 0, 224, 146, 186, 254, 3, 0, 0, 0, 128, 151, 59, 0, 96, 34, 61, 0, 224, 146, 186, 254, 3, 0, 0, 0, 128, 151, 59, 0, 96, 34, 61, 0, 128, 89, 186, 254, 3, 0, 0, 0, 128, 151, 59, 0, 224, 128, 60, 0, 128, 89, 186, 254, 3, 0, 0, 0, 96, 3, 60, 0, 32, 41, 61, 0, 224, 146, 186, 0, 0, 0, 0, 0, 64, 218, 59, 0, 96, 34, 61, 0, 224, 146, 186, 0, 0, 0, 0, 0, 96, 3, 188, 0, 32, 41, 61, 0, 224, 146, 186, 0, 0, 0, 0, 0, 128, 151, 59, 0, 96, 34, 61, 0, 224, 146, 186, 0, 0, 0, 0, 0, 128, 151, 59, 0, 96, 34, 61, 0, 128, 89, 186, 0, 0, 0, 0, 0, 64, 218, 59, 0, 96, 34, 61, 0, 128, 89, 186, 0, 0, 0, 0, 0, 64, 218, 59, 0, 224, 128, 60, 0, 128, 89, 186, 0, 0, 0, 0, 0, 128, 151, 59, 0, 224, 128, 60, 0, 128, 89, 186, 0, 0, 0, 0, 0, 128, 151, 59, 0, 96, 34, 61, 0, 224, 146, 186, 0, 0, 0, 0, 0, 64, 218, 59, 0, 96, 34, 61, 0, 224, 146, 186, 0, 0, 0, 0, 0, 64, 218, 59, 0, 96, 34, 61, 0, 128, 89, 186, 0, 0, 0, 0, 0, 128, 151, 59, 0, 96, 34, 61, 0, 128, 89, 186, 0, 0, 0, 0, 0, 64, 218, 59, 0, 224, 128, 60, 0, 224, 146, 186, 0, 248, 15, 0, 0, 128, 151, 59, 0, 224, 128, 60, 0, 224, 146, 186, 0, 248, 15, 0, 0, 128, 151, 59, 0, 224, 128, 60, 0, 128, 89, 186, 0, 248, 15, 0, 0, 64, 218, 59, 0, 224, 128, 60, 0, 128, 89, 186, 0, 248, 15, 0, 0, 64, 218, 59, 0, 96, 34, 61, 0, 224, 146, 186, 0, 0, 0, 0, 0, 64, 218, 59, 0, 224, 128, 60, 0, 224, 146, 186, 0, 0, 0, 0, 0, 64, 218, 59, 0, 224, 128, 60, 0, 128, 89, 186, 0, 0, 0, 0, 0, 64, 218, 59, 0, 96, 34, 61, 0, 128, 89, 186, 0, 0, 0, 0) +}] -[sub_resource type="ConcavePolygonShape3D" id=25] +[sub_resource type="ConcavePolygonShape3D" id="25"] data = PackedVector3Array(-0.0247, 0, 0.0016, -0.0247, 0.1102, -0.0474, -0.0247, 0, -0.0474, -0.0247, 0, 0.0016, -0.0247, 0.1102, 0.0016, -0.0247, 0.1102, -0.0474, -0.0719, 0, 0.0608, 0.0608, 0.1102, 0.0608, 0.0608, 0, 0.0608, -0.0719, 0, 0.0608, -0.0719, 0.1102, 0.0608, 0.0608, 0.1102, 0.0608, 0.0608, 0, 0.0016, -0.0247, 0.1102, 0.0016, -0.0247, 0, 0.0016, 0.0608, 0, 0.0016, 0.0608, 0.1102, 0.0016, -0.0247, 0.1102, 0.0016, 0.0608, 0, 0.0608, 0.0608, 0.1102, 0.0016, 0.0608, 0, 0.0016, 0.0608, 0, 0.0608, 0.0608, 0.1102, 0.0608, 0.0608, 0.1102, 0.0016, -0.0247, 0, -0.0474, -0.0719, 0.1102, -0.0474, -0.0719, 0, -0.0474, -0.0247, 0, -0.0474, -0.0247, 0.1102, -0.0474, -0.0719, 0.1102, -0.0474, -0.0719, 0, -0.0474, -0.0719, 0.1102, 0.0608, -0.0719, 0, 0.0608, -0.0719, 0, -0.0474, -0.0719, 0.1102, -0.0474, -0.0719, 0.1102, 0.0608) -[sub_resource type="ArrayMesh" id=26] +[sub_resource type="ArrayMesh" id="26"] resource_name = "Plane.016" -surfaces/0 = { +_surfaces = [{ "aabb": AABB(-0.172714, 0, -0.0125916, 0.23576, 0.11168, 0.0756378), -"array_data": PackedByteArray(8, 44, 0, 0, 8, 44, 0, 60, 127, 0, 0, 0, 8, 44, 0, 0, 114, 162, 0, 60, 127, 0, 0, 0, 8, 44, 37, 47, 114, 162, 0, 60, 127, 0, 0, 0, 8, 44, 37, 47, 8, 44, 0, 60, 127, 0, 0, 0, 2, 29, 0, 0, 251, 144, 0, 60, 0, 0, 129, 0, 134, 177, 0, 0, 251, 144, 0, 60, 0, 0, 129, 0, 134, 177, 37, 47, 251, 144, 0, 60, 0, 0, 129, 0, 2, 29, 37, 47, 251, 144, 0, 60, 0, 0, 129, 0, 2, 29, 0, 0, 114, 162, 0, 60, 130, 0, 0, 0, 2, 29, 0, 0, 251, 144, 0, 60, 130, 0, 0, 0, 2, 29, 37, 47, 251, 144, 0, 60, 130, 0, 0, 0, 2, 29, 37, 47, 114, 162, 0, 60, 130, 0, 0, 0, 134, 177, 0, 0, 251, 144, 0, 60, 130, 0, 0, 0, 134, 177, 0, 0, 8, 44, 0, 60, 130, 0, 0, 0, 134, 177, 37, 47, 8, 44, 0, 60, 130, 0, 0, 0, 134, 177, 37, 47, 251, 144, 0, 60, 130, 0, 0, 0, 8, 44, 0, 0, 114, 162, 0, 60, 0, 0, 129, 0, 2, 29, 0, 0, 114, 162, 0, 60, 0, 0, 129, 0, 2, 29, 37, 47, 114, 162, 0, 60, 0, 0, 129, 0, 8, 44, 37, 47, 114, 162, 0, 60, 0, 0, 129, 0, 134, 177, 0, 0, 8, 44, 0, 60, 0, 0, 126, 0, 8, 44, 0, 0, 8, 44, 0, 60, 0, 0, 126, 0, 8, 44, 37, 47, 8, 44, 0, 60, 0, 0, 126, 0, 134, 177, 37, 47, 8, 44, 0, 60, 0, 0, 126, 0), -"array_index_data": PackedByteArray(0, 0, 2, 0, 1, 0, 0, 0, 3, 0, 2, 0, 4, 0, 6, 0, 5, 0, 4, 0, 7, 0, 6, 0, 8, 0, 10, 0, 9, 0, 8, 0, 11, 0, 10, 0, 12, 0, 14, 0, 13, 0, 12, 0, 15, 0, 14, 0, 16, 0, 18, 0, 17, 0, 16, 0, 19, 0, 18, 0, 20, 0, 22, 0, 21, 0, 20, 0, 23, 0, 22, 0), -"blend_shape_data": [], -"format": 98051, +"format": 4099, "index_count": 36, -"material": ExtResource( 5 ), +"index_data": PackedByteArray(0, 0, 2, 0, 1, 0, 0, 0, 3, 0, 2, 0, 4, 0, 6, 0, 5, 0, 4, 0, 7, 0, 6, 0, 8, 0, 10, 0, 9, 0, 8, 0, 11, 0, 10, 0, 12, 0, 14, 0, 13, 0, 12, 0, 15, 0, 14, 0, 16, 0, 18, 0, 17, 0, 16, 0, 19, 0, 18, 0, 20, 0, 22, 0, 21, 0, 20, 0, 23, 0, 22, 0), +"material": ExtResource( "5" ), "name": "Material.001", -"primitive": 4, -"skeleton_aabb": [], -"vertex_count": 24 -} +"primitive": 3, +"vertex_count": 24, +"vertex_data": PackedByteArray(0, 0, 129, 61, 0, 0, 0, 0, 0, 0, 129, 61, 254, 3, 0, 0, 0, 0, 129, 61, 0, 0, 0, 0, 0, 64, 78, 188, 254, 3, 0, 0, 0, 0, 129, 61, 0, 160, 228, 61, 0, 64, 78, 188, 254, 3, 0, 0, 0, 0, 129, 61, 0, 160, 228, 61, 0, 0, 129, 61, 254, 3, 0, 0, 0, 64, 160, 59, 0, 0, 0, 0, 0, 96, 31, 186, 0, 0, 0, 0, 0, 192, 48, 190, 0, 0, 0, 0, 0, 96, 31, 186, 0, 0, 0, 0, 0, 192, 48, 190, 0, 160, 228, 61, 0, 96, 31, 186, 0, 0, 0, 0, 0, 64, 160, 59, 0, 160, 228, 61, 0, 96, 31, 186, 0, 0, 0, 0, 0, 64, 160, 59, 0, 0, 0, 0, 0, 64, 78, 188, 0, 0, 0, 0, 0, 64, 160, 59, 0, 0, 0, 0, 0, 96, 31, 186, 0, 0, 0, 0, 0, 64, 160, 59, 0, 160, 228, 61, 0, 96, 31, 186, 0, 0, 0, 0, 0, 64, 160, 59, 0, 160, 228, 61, 0, 64, 78, 188, 0, 0, 0, 0, 0, 192, 48, 190, 0, 0, 0, 0, 0, 96, 31, 186, 0, 0, 0, 0, 0, 192, 48, 190, 0, 0, 0, 0, 0, 0, 129, 61, 0, 0, 0, 0, 0, 192, 48, 190, 0, 160, 228, 61, 0, 0, 129, 61, 0, 0, 0, 0, 0, 192, 48, 190, 0, 160, 228, 61, 0, 96, 31, 186, 0, 0, 0, 0, 0, 0, 129, 61, 0, 0, 0, 0, 0, 64, 78, 188, 0, 0, 0, 0, 0, 64, 160, 59, 0, 0, 0, 0, 0, 64, 78, 188, 0, 0, 0, 0, 0, 64, 160, 59, 0, 160, 228, 61, 0, 64, 78, 188, 0, 0, 0, 0, 0, 0, 129, 61, 0, 160, 228, 61, 0, 64, 78, 188, 0, 0, 0, 0, 0, 192, 48, 190, 0, 0, 0, 0, 0, 0, 129, 61, 0, 0, 96, 63, 0, 0, 129, 61, 0, 0, 0, 0, 0, 0, 129, 61, 0, 0, 96, 63, 0, 0, 129, 61, 0, 160, 228, 61, 0, 0, 129, 61, 0, 0, 96, 63, 0, 192, 48, 190, 0, 160, 228, 61, 0, 0, 129, 61, 0, 0, 96, 63) +}] -[sub_resource type="ArrayMesh" id=27] +[sub_resource type="ArrayMesh" id="27"] resource_name = "Cube.049" -surfaces/0 = { +_surfaces = [{ "aabb": AABB(-0.0226153, 0, -0.0188077, 0.0452306, 0.0412906, 0.0188077), -"array_data": PackedByteArray(27, 32, 222, 32, 151, 148, 0, 60, 0, 0, 129, 0, 27, 160, 222, 32, 151, 148, 0, 60, 0, 0, 129, 0, 119, 158, 7, 36, 151, 148, 0, 60, 0, 0, 129, 0, 210, 30, 7, 36, 151, 148, 0, 60, 0, 0, 129, 0, 27, 32, 73, 41, 0, 0, 0, 60, 127, 0, 0, 0, 27, 32, 222, 32, 0, 0, 0, 60, 127, 0, 0, 0, 27, 32, 222, 32, 151, 148, 0, 60, 127, 0, 0, 0, 27, 32, 73, 41, 151, 148, 0, 60, 127, 0, 0, 0, 27, 160, 222, 32, 0, 0, 0, 60, 130, 0, 0, 0, 27, 160, 73, 41, 0, 0, 0, 60, 130, 0, 0, 0, 27, 160, 73, 41, 151, 148, 0, 60, 130, 0, 0, 0, 27, 160, 222, 32, 151, 148, 0, 60, 130, 0, 0, 0, 27, 160, 73, 41, 0, 0, 0, 60, 0, 127, 0, 0, 27, 32, 73, 41, 0, 0, 0, 60, 0, 127, 0, 0, 27, 32, 73, 41, 151, 148, 0, 60, 0, 127, 0, 0, 27, 160, 73, 41, 151, 148, 0, 60, 0, 127, 0, 0, 94, 36, 125, 26, 208, 164, 0, 60, 90, 0, 167, 0, 202, 37, 125, 26, 197, 162, 0, 60, 90, 0, 167, 0, 202, 37, 0, 0, 197, 162, 0, 60, 90, 0, 167, 0, 94, 36, 0, 0, 208, 164, 0, 60, 90, 0, 167, 0, 202, 37, 125, 26, 0, 0, 0, 60, 127, 0, 0, 0, 202, 37, 0, 0, 0, 0, 0, 60, 127, 0, 0, 0, 202, 37, 0, 0, 197, 162, 0, 60, 127, 0, 0, 0, 202, 37, 125, 26, 197, 162, 0, 60, 127, 0, 0, 0, 252, 163, 125, 30, 0, 0, 0, 60, 130, 0, 0, 0, 252, 163, 222, 32, 0, 0, 0, 60, 130, 0, 0, 0, 252, 163, 222, 32, 75, 160, 0, 60, 130, 0, 0, 0, 252, 163, 125, 30, 75, 160, 0, 60, 130, 0, 0, 0, 6, 34, 222, 32, 9, 162, 0, 60, 84, 0, 162, 0, 252, 35, 222, 32, 75, 160, 0, 60, 84, 0, 162, 0, 252, 35, 125, 30, 75, 160, 0, 60, 84, 0, 162, 0, 6, 34, 125, 30, 9, 162, 0, 60, 84, 0, 162, 0, 76, 35, 125, 30, 185, 163, 0, 60, 87, 0, 165, 0, 214, 36, 125, 30, 116, 161, 0, 60, 87, 0, 165, 0, 214, 36, 125, 26, 116, 161, 0, 60, 87, 0, 165, 0, 76, 35, 125, 26, 185, 163, 0, 60, 87, 0, 165, 0, 252, 35, 222, 32, 0, 0, 0, 60, 127, 0, 0, 0, 252, 35, 125, 30, 0, 0, 0, 60, 127, 0, 0, 0, 252, 35, 125, 30, 75, 160, 0, 60, 127, 0, 0, 0, 252, 35, 222, 32, 75, 160, 0, 60, 127, 0, 0, 0, 214, 36, 125, 30, 0, 0, 0, 60, 127, 0, 0, 0, 214, 36, 125, 26, 0, 0, 0, 60, 127, 0, 0, 0, 214, 36, 125, 26, 116, 161, 0, 60, 127, 0, 0, 0, 214, 36, 125, 30, 116, 161, 0, 60, 127, 0, 0, 0, 202, 165, 0, 0, 0, 0, 0, 60, 130, 0, 0, 0, 202, 165, 125, 26, 0, 0, 0, 60, 130, 0, 0, 0, 202, 165, 125, 26, 197, 162, 0, 60, 130, 0, 0, 0, 202, 165, 0, 0, 197, 162, 0, 60, 130, 0, 0, 0, 214, 164, 125, 26, 0, 0, 0, 60, 130, 0, 0, 0, 214, 164, 125, 30, 0, 0, 0, 60, 130, 0, 0, 0, 214, 164, 125, 30, 116, 161, 0, 60, 130, 0, 0, 0, 214, 164, 125, 26, 116, 161, 0, 60, 130, 0, 0, 0, 76, 163, 125, 30, 185, 163, 0, 60, 0, 127, 0, 0, 214, 164, 125, 30, 116, 161, 0, 60, 0, 127, 0, 0, 252, 163, 125, 30, 75, 160, 0, 60, 0, 127, 0, 0, 6, 162, 125, 30, 9, 162, 0, 60, 0, 127, 0, 0, 214, 36, 125, 30, 0, 0, 0, 60, 0, 127, 0, 0, 214, 36, 125, 30, 116, 161, 0, 60, 0, 127, 0, 0, 252, 35, 125, 30, 75, 160, 0, 60, 0, 127, 0, 0, 252, 35, 125, 30, 0, 0, 0, 60, 0, 127, 0, 0, 214, 164, 125, 30, 0, 0, 0, 60, 0, 127, 0, 0, 252, 163, 125, 30, 0, 0, 0, 60, 0, 127, 0, 0, 94, 164, 125, 26, 208, 164, 0, 60, 0, 127, 0, 0, 202, 165, 125, 26, 197, 162, 0, 60, 0, 127, 0, 0, 214, 164, 125, 26, 116, 161, 0, 60, 0, 127, 0, 0, 76, 163, 125, 26, 185, 163, 0, 60, 0, 127, 0, 0, 202, 37, 125, 26, 0, 0, 0, 60, 0, 127, 0, 0, 202, 37, 125, 26, 197, 162, 0, 60, 0, 127, 0, 0, 214, 36, 125, 26, 116, 161, 0, 60, 0, 127, 0, 0, 214, 36, 125, 26, 0, 0, 0, 60, 0, 127, 0, 0, 202, 165, 125, 26, 0, 0, 0, 60, 0, 127, 0, 0, 214, 164, 125, 26, 0, 0, 0, 60, 0, 127, 0, 0, 2, 160, 148, 38, 204, 150, 0, 60, 0, 0, 129, 0, 254, 158, 179, 38, 204, 150, 0, 60, 0, 0, 129, 0, 123, 158, 108, 38, 204, 150, 0, 60, 0, 0, 129, 0, 130, 159, 78, 38, 204, 150, 0, 60, 0, 0, 129, 0, 2, 160, 148, 38, 151, 148, 0, 60, 203, 115, 0, 0, 254, 158, 179, 38, 151, 148, 0, 60, 203, 115, 0, 0, 254, 158, 179, 38, 204, 150, 0, 60, 203, 115, 0, 0, 2, 160, 148, 38, 204, 150, 0, 60, 203, 115, 0, 0, 123, 158, 108, 38, 151, 148, 0, 60, 53, 141, 0, 0, 130, 159, 78, 38, 151, 148, 0, 60, 53, 141, 0, 0, 130, 159, 78, 38, 204, 150, 0, 60, 53, 141, 0, 0, 123, 158, 108, 38, 204, 150, 0, 60, 53, 141, 0, 0, 254, 158, 179, 38, 151, 148, 0, 60, 115, 53, 0, 0, 123, 158, 108, 38, 151, 148, 0, 60, 115, 53, 0, 0, 123, 158, 108, 38, 204, 150, 0, 60, 115, 53, 0, 0, 254, 158, 179, 38, 204, 150, 0, 60, 115, 53, 0, 0, 130, 159, 78, 38, 151, 148, 0, 60, 141, 203, 0, 0, 2, 160, 148, 38, 151, 148, 0, 60, 141, 203, 0, 0, 2, 160, 148, 38, 204, 150, 0, 60, 141, 203, 0, 0, 130, 159, 78, 38, 204, 150, 0, 60, 141, 203, 0, 0, 202, 165, 125, 26, 197, 162, 0, 60, 167, 0, 167, 0, 94, 164, 125, 26, 208, 164, 0, 60, 167, 0, 167, 0, 94, 164, 0, 0, 208, 164, 0, 60, 167, 0, 167, 0, 202, 165, 0, 0, 197, 162, 0, 60, 167, 0, 167, 0, 252, 163, 222, 32, 0, 0, 0, 60, 0, 127, 0, 0, 252, 35, 222, 32, 0, 0, 0, 60, 0, 127, 0, 0, 6, 34, 222, 32, 9, 162, 0, 60, 0, 127, 0, 0, 6, 162, 222, 32, 9, 162, 0, 60, 0, 127, 0, 0, 252, 163, 222, 32, 75, 160, 0, 60, 172, 0, 162, 0, 6, 162, 222, 32, 9, 162, 0, 60, 172, 0, 162, 0, 6, 162, 125, 30, 9, 162, 0, 60, 172, 0, 162, 0, 252, 163, 125, 30, 75, 160, 0, 60, 172, 0, 162, 0, 214, 164, 125, 30, 116, 161, 0, 60, 169, 0, 165, 0, 76, 163, 125, 30, 185, 163, 0, 60, 169, 0, 165, 0, 76, 163, 125, 26, 185, 163, 0, 60, 169, 0, 165, 0, 214, 164, 125, 26, 116, 161, 0, 60, 169, 0, 165, 0, 76, 35, 125, 30, 185, 163, 0, 60, 0, 127, 0, 0, 6, 34, 125, 30, 9, 162, 0, 60, 0, 127, 0, 0, 94, 36, 125, 26, 208, 164, 0, 60, 0, 127, 0, 0, 76, 35, 125, 26, 185, 163, 0, 60, 0, 127, 0, 0, 252, 35, 222, 32, 75, 160, 0, 60, 0, 127, 0, 0, 94, 164, 125, 26, 208, 164, 0, 60, 0, 0, 129, 0, 94, 36, 125, 26, 208, 164, 0, 60, 0, 0, 129, 0, 94, 36, 0, 0, 208, 164, 0, 60, 0, 0, 129, 0, 94, 164, 0, 0, 208, 164, 0, 60, 0, 0, 129, 0, 76, 163, 125, 30, 185, 163, 0, 60, 0, 0, 129, 0, 76, 35, 125, 30, 185, 163, 0, 60, 0, 0, 129, 0, 76, 35, 125, 26, 185, 163, 0, 60, 0, 0, 129, 0, 76, 163, 125, 26, 185, 163, 0, 60, 0, 0, 129, 0, 6, 162, 222, 32, 9, 162, 0, 60, 0, 0, 129, 0, 6, 34, 222, 32, 9, 162, 0, 60, 0, 0, 129, 0, 6, 34, 125, 30, 9, 162, 0, 60, 0, 0, 129, 0, 6, 162, 125, 30, 9, 162, 0, 60, 0, 0, 129, 0, 252, 163, 222, 32, 75, 160, 0, 60, 0, 127, 0, 0, 119, 158, 7, 36, 151, 148, 0, 60, 127, 0, 0, 0, 119, 158, 19, 41, 151, 148, 0, 60, 127, 0, 0, 0, 119, 158, 19, 41, 204, 146, 0, 60, 127, 0, 0, 0, 119, 158, 7, 36, 204, 146, 0, 60, 127, 0, 0, 0, 27, 32, 73, 41, 151, 148, 0, 60, 0, 0, 129, 0, 210, 30, 19, 41, 151, 148, 0, 60, 0, 0, 129, 0, 27, 160, 73, 41, 151, 148, 0, 60, 0, 0, 129, 0, 119, 158, 19, 41, 151, 148, 0, 60, 0, 0, 129, 0, 119, 158, 19, 41, 204, 146, 0, 60, 0, 0, 129, 0, 210, 30, 19, 41, 204, 146, 0, 60, 0, 0, 129, 0, 210, 30, 7, 36, 204, 146, 0, 60, 0, 0, 129, 0, 119, 158, 7, 36, 204, 146, 0, 60, 0, 0, 129, 0, 119, 158, 19, 41, 151, 148, 0, 60, 0, 130, 0, 0, 210, 30, 19, 41, 151, 148, 0, 60, 0, 130, 0, 0, 210, 30, 19, 41, 204, 146, 0, 60, 0, 130, 0, 0, 119, 158, 19, 41, 204, 146, 0, 60, 0, 130, 0, 0, 210, 30, 7, 36, 151, 148, 0, 60, 0, 127, 0, 0, 119, 158, 7, 36, 151, 148, 0, 60, 0, 127, 0, 0, 119, 158, 7, 36, 204, 146, 0, 60, 0, 127, 0, 0, 210, 30, 7, 36, 204, 146, 0, 60, 0, 127, 0, 0, 210, 30, 19, 41, 151, 148, 0, 60, 130, 0, 0, 0, 210, 30, 7, 36, 151, 148, 0, 60, 130, 0, 0, 0, 210, 30, 7, 36, 204, 146, 0, 60, 130, 0, 0, 0, 210, 30, 19, 41, 204, 146, 0, 60, 130, 0, 0, 0), -"array_index_data": PackedByteArray(0, 0, 2, 0, 1, 0, 0, 0, 3, 0, 2, 0, 4, 0, 6, 0, 5, 0, 4, 0, 7, 0, 6, 0, 8, 0, 10, 0, 9, 0, 8, 0, 11, 0, 10, 0, 12, 0, 14, 0, 13, 0, 12, 0, 15, 0, 14, 0, 16, 0, 18, 0, 17, 0, 16, 0, 19, 0, 18, 0, 20, 0, 22, 0, 21, 0, 20, 0, 23, 0, 22, 0, 24, 0, 26, 0, 25, 0, 24, 0, 27, 0, 26, 0, 28, 0, 30, 0, 29, 0, 28, 0, 31, 0, 30, 0, 32, 0, 34, 0, 33, 0, 32, 0, 35, 0, 34, 0, 36, 0, 38, 0, 37, 0, 36, 0, 39, 0, 38, 0, 40, 0, 42, 0, 41, 0, 40, 0, 43, 0, 42, 0, 44, 0, 46, 0, 45, 0, 44, 0, 47, 0, 46, 0, 48, 0, 50, 0, 49, 0, 48, 0, 51, 0, 50, 0, 52, 0, 54, 0, 53, 0, 52, 0, 55, 0, 54, 0, 56, 0, 58, 0, 57, 0, 56, 0, 59, 0, 58, 0, 53, 0, 61, 0, 60, 0, 53, 0, 54, 0, 61, 0, 62, 0, 64, 0, 63, 0, 62, 0, 65, 0, 64, 0, 66, 0, 68, 0, 67, 0, 66, 0, 69, 0, 68, 0, 63, 0, 71, 0, 70, 0, 63, 0, 64, 0, 71, 0, 72, 0, 74, 0, 73, 0, 72, 0, 75, 0, 74, 0, 76, 0, 78, 0, 77, 0, 76, 0, 79, 0, 78, 0, 80, 0, 82, 0, 81, 0, 80, 0, 83, 0, 82, 0, 84, 0, 86, 0, 85, 0, 84, 0, 87, 0, 86, 0, 88, 0, 90, 0, 89, 0, 88, 0, 91, 0, 90, 0, 92, 0, 94, 0, 93, 0, 92, 0, 95, 0, 94, 0, 96, 0, 98, 0, 97, 0, 96, 0, 99, 0, 98, 0, 100, 0, 102, 0, 101, 0, 100, 0, 103, 0, 102, 0, 104, 0, 106, 0, 105, 0, 104, 0, 107, 0, 106, 0, 108, 0, 55, 0, 52, 0, 108, 0, 109, 0, 55, 0, 110, 0, 65, 0, 62, 0, 110, 0, 111, 0, 65, 0, 67, 0, 111, 0, 110, 0, 67, 0, 68, 0, 111, 0, 97, 0, 98, 0, 112, 0, 113, 0, 115, 0, 114, 0, 113, 0, 116, 0, 115, 0, 117, 0, 119, 0, 118, 0, 117, 0, 120, 0, 119, 0, 57, 0, 109, 0, 108, 0, 57, 0, 58, 0, 109, 0, 121, 0, 123, 0, 122, 0, 121, 0, 124, 0, 123, 0, 96, 0, 125, 0, 99, 0, 126, 0, 128, 0, 127, 0, 126, 0, 129, 0, 128, 0, 130, 0, 3, 0, 0, 0, 130, 0, 131, 0, 3, 0, 1, 0, 133, 0, 132, 0, 1, 0, 2, 0, 133, 0, 132, 0, 131, 0, 130, 0, 132, 0, 133, 0, 131, 0, 134, 0, 136, 0, 135, 0, 134, 0, 137, 0, 136, 0, 138, 0, 140, 0, 139, 0, 138, 0, 141, 0, 140, 0, 142, 0, 144, 0, 143, 0, 142, 0, 145, 0, 144, 0, 146, 0, 148, 0, 147, 0, 146, 0, 149, 0, 148, 0), -"blend_shape_data": [], -"format": 98051, +"format": 4099, "index_count": 264, -"material": ExtResource( 7 ), +"index_data": PackedByteArray(0, 0, 2, 0, 1, 0, 0, 0, 3, 0, 2, 0, 4, 0, 6, 0, 5, 0, 4, 0, 7, 0, 6, 0, 8, 0, 10, 0, 9, 0, 8, 0, 11, 0, 10, 0, 12, 0, 14, 0, 13, 0, 12, 0, 15, 0, 14, 0, 16, 0, 18, 0, 17, 0, 16, 0, 19, 0, 18, 0, 20, 0, 22, 0, 21, 0, 20, 0, 23, 0, 22, 0, 24, 0, 26, 0, 25, 0, 24, 0, 27, 0, 26, 0, 28, 0, 30, 0, 29, 0, 28, 0, 31, 0, 30, 0, 32, 0, 34, 0, 33, 0, 32, 0, 35, 0, 34, 0, 36, 0, 38, 0, 37, 0, 36, 0, 39, 0, 38, 0, 40, 0, 42, 0, 41, 0, 40, 0, 43, 0, 42, 0, 44, 0, 46, 0, 45, 0, 44, 0, 47, 0, 46, 0, 48, 0, 50, 0, 49, 0, 48, 0, 51, 0, 50, 0, 52, 0, 54, 0, 53, 0, 52, 0, 55, 0, 54, 0, 56, 0, 58, 0, 57, 0, 56, 0, 59, 0, 58, 0, 53, 0, 61, 0, 60, 0, 53, 0, 54, 0, 61, 0, 62, 0, 64, 0, 63, 0, 62, 0, 65, 0, 64, 0, 66, 0, 68, 0, 67, 0, 66, 0, 69, 0, 68, 0, 63, 0, 71, 0, 70, 0, 63, 0, 64, 0, 71, 0, 72, 0, 74, 0, 73, 0, 72, 0, 75, 0, 74, 0, 76, 0, 78, 0, 77, 0, 76, 0, 79, 0, 78, 0, 80, 0, 82, 0, 81, 0, 80, 0, 83, 0, 82, 0, 84, 0, 86, 0, 85, 0, 84, 0, 87, 0, 86, 0, 88, 0, 90, 0, 89, 0, 88, 0, 91, 0, 90, 0, 92, 0, 94, 0, 93, 0, 92, 0, 95, 0, 94, 0, 96, 0, 98, 0, 97, 0, 96, 0, 99, 0, 98, 0, 100, 0, 102, 0, 101, 0, 100, 0, 103, 0, 102, 0, 104, 0, 106, 0, 105, 0, 104, 0, 107, 0, 106, 0, 108, 0, 55, 0, 52, 0, 108, 0, 109, 0, 55, 0, 110, 0, 65, 0, 62, 0, 110, 0, 111, 0, 65, 0, 67, 0, 111, 0, 110, 0, 67, 0, 68, 0, 111, 0, 97, 0, 98, 0, 112, 0, 113, 0, 115, 0, 114, 0, 113, 0, 116, 0, 115, 0, 117, 0, 119, 0, 118, 0, 117, 0, 120, 0, 119, 0, 57, 0, 109, 0, 108, 0, 57, 0, 58, 0, 109, 0, 121, 0, 123, 0, 122, 0, 121, 0, 124, 0, 123, 0, 96, 0, 125, 0, 99, 0, 126, 0, 128, 0, 127, 0, 126, 0, 129, 0, 128, 0, 130, 0, 3, 0, 0, 0, 130, 0, 131, 0, 3, 0, 1, 0, 133, 0, 132, 0, 1, 0, 2, 0, 133, 0, 132, 0, 131, 0, 130, 0, 132, 0, 133, 0, 131, 0, 134, 0, 136, 0, 135, 0, 134, 0, 137, 0, 136, 0, 138, 0, 140, 0, 139, 0, 138, 0, 141, 0, 140, 0, 142, 0, 144, 0, 143, 0, 142, 0, 145, 0, 144, 0, 146, 0, 148, 0, 147, 0, 146, 0, 149, 0, 148, 0), +"material": ExtResource( "7" ), "name": "vertexColorShader", -"primitive": 4, -"skeleton_aabb": [], -"vertex_count": 150 -} +"primitive": 3, +"vertex_count": 150, +"vertex_data": PackedByteArray(0, 96, 3, 60, 0, 192, 27, 60, 0, 224, 146, 186, 0, 0, 0, 0, 0, 96, 3, 188, 0, 192, 27, 60, 0, 224, 146, 186, 0, 0, 0, 0, 0, 224, 206, 187, 0, 224, 128, 60, 0, 224, 146, 186, 0, 0, 0, 0, 0, 64, 218, 59, 0, 224, 128, 60, 0, 224, 146, 186, 0, 0, 0, 0, 0, 96, 3, 60, 0, 32, 41, 61, 0, 0, 0, 0, 254, 3, 0, 0, 0, 96, 3, 60, 0, 192, 27, 60, 0, 0, 0, 0, 254, 3, 0, 0, 0, 96, 3, 60, 0, 192, 27, 60, 0, 224, 146, 186, 254, 3, 0, 0, 0, 96, 3, 60, 0, 32, 41, 61, 0, 224, 146, 186, 254, 3, 0, 0, 0, 96, 3, 188, 0, 192, 27, 60, 0, 0, 0, 0, 0, 0, 0, 0, 0, 96, 3, 188, 0, 32, 41, 61, 0, 0, 0, 0, 0, 0, 0, 0, 0, 96, 3, 188, 0, 32, 41, 61, 0, 224, 146, 186, 0, 0, 0, 0, 0, 96, 3, 188, 0, 192, 27, 60, 0, 224, 146, 186, 0, 0, 0, 0, 0, 96, 3, 188, 0, 32, 41, 61, 0, 0, 0, 0, 0, 248, 15, 0, 0, 96, 3, 60, 0, 32, 41, 61, 0, 0, 0, 0, 0, 248, 15, 0, 0, 96, 3, 60, 0, 32, 41, 61, 0, 224, 146, 186, 0, 248, 15, 0, 0, 96, 3, 188, 0, 32, 41, 61, 0, 224, 146, 186, 0, 248, 15, 0, 0, 192, 139, 60, 0, 160, 79, 59, 0, 0, 154, 188, 212, 2, 0, 0, 0, 64, 185, 60, 0, 160, 79, 59, 0, 160, 88, 188, 212, 2, 0, 0, 0, 64, 185, 60, 0, 0, 0, 0, 0, 160, 88, 188, 212, 2, 0, 0, 0, 192, 139, 60, 0, 0, 0, 0, 0, 0, 154, 188, 212, 2, 0, 0, 0, 64, 185, 60, 0, 160, 79, 59, 0, 0, 0, 0, 254, 3, 0, 0, 0, 64, 185, 60, 0, 0, 0, 0, 0, 0, 0, 0, 254, 3, 0, 0, 0, 64, 185, 60, 0, 0, 0, 0, 0, 160, 88, 188, 254, 3, 0, 0, 0, 64, 185, 60, 0, 160, 79, 59, 0, 160, 88, 188, 254, 3, 0, 0, 0, 128, 127, 188, 0, 160, 207, 59, 0, 0, 0, 0, 0, 0, 0, 0, 0, 128, 127, 188, 0, 192, 27, 60, 0, 0, 0, 0, 0, 0, 0, 0, 0, 128, 127, 188, 0, 192, 27, 60, 0, 96, 9, 188, 0, 0, 0, 0, 0, 128, 127, 188, 0, 160, 207, 59, 0, 96, 9, 188, 0, 0, 0, 0, 0, 192, 64, 60, 0, 192, 27, 60, 0, 32, 65, 188, 164, 2, 0, 0, 0, 128, 127, 60, 0, 192, 27, 60, 0, 96, 9, 188, 164, 2, 0, 0, 0, 128, 127, 60, 0, 160, 207, 59, 0, 96, 9, 188, 164, 2, 0, 0, 0, 192, 64, 60, 0, 160, 207, 59, 0, 32, 65, 188, 164, 2, 0, 0, 0, 128, 105, 60, 0, 160, 207, 59, 0, 32, 119, 188, 188, 2, 0, 0, 0, 192, 154, 60, 0, 160, 207, 59, 0, 128, 46, 188, 188, 2, 0, 0, 0, 192, 154, 60, 0, 160, 79, 59, 0, 128, 46, 188, 188, 2, 0, 0, 0, 128, 105, 60, 0, 160, 79, 59, 0, 32, 119, 188, 188, 2, 0, 0, 0, 128, 127, 60, 0, 192, 27, 60, 0, 0, 0, 0, 254, 3, 0, 0, 0, 128, 127, 60, 0, 160, 207, 59, 0, 0, 0, 0, 254, 3, 0, 0, 0, 128, 127, 60, 0, 160, 207, 59, 0, 96, 9, 188, 254, 3, 0, 0, 0, 128, 127, 60, 0, 192, 27, 60, 0, 96, 9, 188, 254, 3, 0, 0, 0, 192, 154, 60, 0, 160, 207, 59, 0, 0, 0, 0, 254, 3, 0, 0, 0, 192, 154, 60, 0, 160, 79, 59, 0, 0, 0, 0, 254, 3, 0, 0, 0, 192, 154, 60, 0, 160, 79, 59, 0, 128, 46, 188, 254, 3, 0, 0, 0, 192, 154, 60, 0, 160, 207, 59, 0, 128, 46, 188, 254, 3, 0, 0, 0, 64, 185, 188, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 64, 185, 188, 0, 160, 79, 59, 0, 0, 0, 0, 0, 0, 0, 0, 0, 64, 185, 188, 0, 160, 79, 59, 0, 160, 88, 188, 0, 0, 0, 0, 0, 64, 185, 188, 0, 0, 0, 0, 0, 160, 88, 188, 0, 0, 0, 0, 0, 192, 154, 188, 0, 160, 79, 59, 0, 0, 0, 0, 0, 0, 0, 0, 0, 192, 154, 188, 0, 160, 207, 59, 0, 0, 0, 0, 0, 0, 0, 0, 0, 192, 154, 188, 0, 160, 207, 59, 0, 128, 46, 188, 0, 0, 0, 0, 0, 192, 154, 188, 0, 160, 79, 59, 0, 128, 46, 188, 0, 0, 0, 0, 0, 128, 105, 188, 0, 160, 207, 59, 0, 32, 119, 188, 0, 248, 15, 0, 0, 192, 154, 188, 0, 160, 207, 59, 0, 128, 46, 188, 0, 248, 15, 0, 0, 128, 127, 188, 0, 160, 207, 59, 0, 96, 9, 188, 0, 248, 15, 0, 0, 192, 64, 188, 0, 160, 207, 59, 0, 32, 65, 188, 0, 248, 15, 0, 0, 192, 154, 60, 0, 160, 207, 59, 0, 0, 0, 0, 0, 248, 15, 0, 0, 192, 154, 60, 0, 160, 207, 59, 0, 128, 46, 188, 0, 248, 15, 0, 0, 128, 127, 60, 0, 160, 207, 59, 0, 96, 9, 188, 0, 248, 15, 0, 0, 128, 127, 60, 0, 160, 207, 59, 0, 0, 0, 0, 0, 248, 15, 0, 0, 192, 154, 188, 0, 160, 207, 59, 0, 0, 0, 0, 0, 248, 15, 0, 0, 128, 127, 188, 0, 160, 207, 59, 0, 0, 0, 0, 0, 248, 15, 0, 0, 192, 139, 188, 0, 160, 79, 59, 0, 0, 154, 188, 0, 248, 15, 0, 0, 64, 185, 188, 0, 160, 79, 59, 0, 160, 88, 188, 0, 248, 15, 0, 0, 192, 154, 188, 0, 160, 79, 59, 0, 128, 46, 188, 0, 248, 15, 0, 0, 128, 105, 188, 0, 160, 79, 59, 0, 32, 119, 188, 0, 248, 15, 0, 0, 64, 185, 60, 0, 160, 79, 59, 0, 0, 0, 0, 0, 248, 15, 0, 0, 64, 185, 60, 0, 160, 79, 59, 0, 160, 88, 188, 0, 248, 15, 0, 0, 192, 154, 60, 0, 160, 79, 59, 0, 128, 46, 188, 0, 248, 15, 0, 0, 192, 154, 60, 0, 160, 79, 59, 0, 0, 0, 0, 0, 248, 15, 0, 0, 64, 185, 188, 0, 160, 79, 59, 0, 0, 0, 0, 0, 248, 15, 0, 0, 192, 154, 188, 0, 160, 79, 59, 0, 0, 0, 0, 0, 248, 15, 0, 0, 64, 0, 188, 0, 128, 210, 60, 0, 128, 217, 186, 0, 0, 0, 0, 0, 192, 223, 187, 0, 96, 214, 60, 0, 128, 217, 186, 0, 0, 0, 0, 0, 96, 207, 187, 0, 128, 205, 60, 0, 128, 217, 186, 0, 0, 0, 0, 0, 64, 240, 187, 0, 192, 201, 60, 0, 128, 217, 186, 0, 0, 0, 0, 0, 64, 0, 188, 0, 128, 210, 60, 0, 224, 146, 186, 0, 120, 14, 0, 0, 192, 223, 187, 0, 96, 214, 60, 0, 224, 146, 186, 0, 120, 14, 0, 0, 192, 223, 187, 0, 96, 214, 60, 0, 128, 217, 186, 0, 120, 14, 0, 0, 64, 0, 188, 0, 128, 210, 60, 0, 128, 217, 186, 0, 120, 14, 0, 0, 96, 207, 187, 0, 128, 205, 60, 0, 224, 146, 186, 170, 1, 0, 0, 0, 64, 240, 187, 0, 192, 201, 60, 0, 224, 146, 186, 170, 1, 0, 0, 0, 64, 240, 187, 0, 192, 201, 60, 0, 128, 217, 186, 170, 1, 0, 0, 0, 96, 207, 187, 0, 128, 205, 60, 0, 128, 217, 186, 170, 1, 0, 0, 0, 192, 223, 187, 0, 96, 214, 60, 0, 224, 146, 186, 158, 171, 6, 0, 0, 96, 207, 187, 0, 128, 205, 60, 0, 224, 146, 186, 158, 171, 6, 0, 0, 96, 207, 187, 0, 128, 205, 60, 0, 128, 217, 186, 158, 171, 6, 0, 0, 192, 223, 187, 0, 96, 214, 60, 0, 128, 217, 186, 158, 171, 6, 0, 0, 64, 240, 187, 0, 192, 201, 60, 0, 224, 146, 186, 0, 0, 0, 0, 0, 64, 0, 188, 0, 128, 210, 60, 0, 224, 146, 186, 0, 0, 0, 0, 0, 64, 0, 188, 0, 128, 210, 60, 0, 128, 217, 186, 0, 0, 0, 0, 0, 64, 240, 187, 0, 192, 201, 60, 0, 128, 217, 186, 0, 0, 0, 0, 0, 64, 185, 188, 0, 160, 79, 59, 0, 160, 88, 188, 0, 0, 0, 0, 0, 192, 139, 188, 0, 160, 79, 59, 0, 0, 154, 188, 0, 0, 0, 0, 0, 192, 139, 188, 0, 0, 0, 0, 0, 0, 154, 188, 0, 0, 0, 0, 0, 64, 185, 188, 0, 0, 0, 0, 0, 160, 88, 188, 0, 0, 0, 0, 0, 128, 127, 188, 0, 192, 27, 60, 0, 0, 0, 0, 0, 248, 15, 0, 0, 128, 127, 60, 0, 192, 27, 60, 0, 0, 0, 0, 0, 248, 15, 0, 0, 192, 64, 60, 0, 192, 27, 60, 0, 32, 65, 188, 0, 248, 15, 0, 0, 192, 64, 188, 0, 192, 27, 60, 0, 32, 65, 188, 0, 248, 15, 0, 0, 128, 127, 188, 0, 192, 27, 60, 0, 96, 9, 188, 0, 0, 0, 0, 0, 192, 64, 188, 0, 192, 27, 60, 0, 32, 65, 188, 0, 0, 0, 0, 0, 192, 64, 188, 0, 160, 207, 59, 0, 32, 65, 188, 0, 0, 0, 0, 0, 128, 127, 188, 0, 160, 207, 59, 0, 96, 9, 188, 0, 0, 0, 0, 0, 192, 154, 188, 0, 160, 207, 59, 0, 128, 46, 188, 0, 0, 0, 0, 0, 128, 105, 188, 0, 160, 207, 59, 0, 32, 119, 188, 0, 0, 0, 0, 0, 128, 105, 188, 0, 160, 79, 59, 0, 32, 119, 188, 0, 0, 0, 0, 0, 192, 154, 188, 0, 160, 79, 59, 0, 128, 46, 188, 0, 0, 0, 0, 0, 128, 105, 60, 0, 160, 207, 59, 0, 32, 119, 188, 0, 248, 15, 0, 0, 192, 64, 60, 0, 160, 207, 59, 0, 32, 65, 188, 0, 248, 15, 0, 0, 192, 139, 60, 0, 160, 79, 59, 0, 0, 154, 188, 0, 248, 15, 0, 0, 128, 105, 60, 0, 160, 79, 59, 0, 32, 119, 188, 0, 248, 15, 0, 0, 128, 127, 60, 0, 192, 27, 60, 0, 96, 9, 188, 0, 248, 15, 0, 0, 192, 139, 188, 0, 160, 79, 59, 0, 0, 154, 188, 0, 0, 0, 0, 0, 192, 139, 60, 0, 160, 79, 59, 0, 0, 154, 188, 0, 0, 0, 0, 0, 192, 139, 60, 0, 0, 0, 0, 0, 0, 154, 188, 0, 0, 0, 0, 0, 192, 139, 188, 0, 0, 0, 0, 0, 0, 154, 188, 0, 0, 0, 0, 0, 128, 105, 188, 0, 160, 207, 59, 0, 32, 119, 188, 0, 0, 0, 0, 0, 128, 105, 60, 0, 160, 207, 59, 0, 32, 119, 188, 0, 0, 0, 0, 0, 128, 105, 60, 0, 160, 79, 59, 0, 32, 119, 188, 0, 0, 0, 0, 0, 128, 105, 188, 0, 160, 79, 59, 0, 32, 119, 188, 0, 0, 0, 0, 0, 192, 64, 188, 0, 192, 27, 60, 0, 32, 65, 188, 0, 0, 0, 0, 0, 192, 64, 60, 0, 192, 27, 60, 0, 32, 65, 188, 0, 0, 0, 0, 0, 192, 64, 60, 0, 160, 207, 59, 0, 32, 65, 188, 0, 0, 0, 0, 0, 192, 64, 188, 0, 160, 207, 59, 0, 32, 65, 188, 0, 0, 0, 0, 0, 128, 127, 188, 0, 192, 27, 60, 0, 96, 9, 188, 0, 248, 15, 0, 0, 224, 206, 187, 0, 224, 128, 60, 0, 224, 146, 186, 254, 3, 0, 0, 0, 224, 206, 187, 0, 96, 34, 61, 0, 224, 146, 186, 254, 3, 0, 0, 0, 224, 206, 187, 0, 96, 34, 61, 0, 128, 89, 186, 254, 3, 0, 0, 0, 224, 206, 187, 0, 224, 128, 60, 0, 128, 89, 186, 254, 3, 0, 0, 0, 96, 3, 60, 0, 32, 41, 61, 0, 224, 146, 186, 0, 0, 0, 0, 0, 64, 218, 59, 0, 96, 34, 61, 0, 224, 146, 186, 0, 0, 0, 0, 0, 96, 3, 188, 0, 32, 41, 61, 0, 224, 146, 186, 0, 0, 0, 0, 0, 224, 206, 187, 0, 96, 34, 61, 0, 224, 146, 186, 0, 0, 0, 0, 0, 224, 206, 187, 0, 96, 34, 61, 0, 128, 89, 186, 0, 0, 0, 0, 0, 64, 218, 59, 0, 96, 34, 61, 0, 128, 89, 186, 0, 0, 0, 0, 0, 64, 218, 59, 0, 224, 128, 60, 0, 128, 89, 186, 0, 0, 0, 0, 0, 224, 206, 187, 0, 224, 128, 60, 0, 128, 89, 186, 0, 0, 0, 0, 0, 224, 206, 187, 0, 96, 34, 61, 0, 224, 146, 186, 0, 0, 0, 0, 0, 64, 218, 59, 0, 96, 34, 61, 0, 224, 146, 186, 0, 0, 0, 0, 0, 64, 218, 59, 0, 96, 34, 61, 0, 128, 89, 186, 0, 0, 0, 0, 0, 224, 206, 187, 0, 96, 34, 61, 0, 128, 89, 186, 0, 0, 0, 0, 0, 64, 218, 59, 0, 224, 128, 60, 0, 224, 146, 186, 0, 248, 15, 0, 0, 224, 206, 187, 0, 224, 128, 60, 0, 224, 146, 186, 0, 248, 15, 0, 0, 224, 206, 187, 0, 224, 128, 60, 0, 128, 89, 186, 0, 248, 15, 0, 0, 64, 218, 59, 0, 224, 128, 60, 0, 128, 89, 186, 0, 248, 15, 0, 0, 64, 218, 59, 0, 96, 34, 61, 0, 224, 146, 186, 0, 0, 0, 0, 0, 64, 218, 59, 0, 224, 128, 60, 0, 224, 146, 186, 0, 0, 0, 0, 0, 64, 218, 59, 0, 224, 128, 60, 0, 128, 89, 186, 0, 0, 0, 0, 0, 64, 218, 59, 0, 96, 34, 61, 0, 128, 89, 186, 0, 0, 0, 0) +}] -[sub_resource type="ConcavePolygonShape3D" id=28] +[sub_resource type="ConcavePolygonShape3D" id="28"] data = PackedVector3Array(0.063, 0, 0.063, 0.063, 0.1117, -0.0125, 0.063, 0, -0.0125, 0.063, 0, 0.063, 0.063, 0.1117, 0.063, 0.063, 0.1117, -0.0125, 0.0049, 0, -0.0005, -0.1726, 0.1117, -0.0005, -0.1726, 0, -0.0005, 0.0049, 0, -0.0005, 0.0049, 0.1117, -0.0005, -0.1726, 0.1117, -0.0005, 0.0049, 0, -0.0125, 0.0049, 0.1117, -0.0005, 0.0049, 0, -0.0005, 0.0049, 0, -0.0125, 0.0049, 0.1117, -0.0125, 0.0049, 0.1117, -0.0005, -0.1726, 0, -0.0005, -0.1726, 0.1117, 0.063, -0.1726, 0, 0.063, -0.1726, 0, -0.0005, -0.1726, 0.1117, -0.0005, -0.1726, 0.1117, 0.063, 0.063, 0, -0.0125, 0.0049, 0.1117, -0.0125, 0.0049, 0, -0.0125, 0.063, 0, -0.0125, 0.063, 0.1117, -0.0125, 0.0049, 0.1117, -0.0125, -0.1726, 0, 0.063, 0.063, 0.1117, 0.063, 0.063, 0, 0.063, -0.1726, 0, 0.063, -0.1726, 0.1117, 0.063, 0.063, 0.1117, 0.063) -[sub_resource type="ArrayMesh" id=29] +[sub_resource type="ArrayMesh" id="29"] resource_name = "Plane.017" -surfaces/0 = { +_surfaces = [{ "aabb": AABB(-0.0780212, 0, 0.00193864, 0.138521, 0.106392, 0.119076), -"array_data": PackedByteArray(190, 43, 0, 0, 210, 45, 0, 60, 127, 0, 0, 0, 190, 43, 0, 0, 240, 23, 0, 60, 127, 0, 0, 0, 190, 43, 207, 46, 240, 23, 0, 60, 127, 0, 0, 0, 190, 43, 207, 46, 210, 45, 0, 60, 127, 0, 0, 0, 173, 163, 0, 0, 210, 45, 0, 60, 0, 0, 126, 0, 190, 43, 0, 0, 210, 45, 0, 60, 0, 0, 126, 0, 190, 43, 207, 46, 210, 45, 0, 60, 0, 0, 126, 0, 173, 163, 207, 46, 210, 45, 0, 60, 0, 0, 126, 0, 57, 172, 0, 0, 210, 45, 0, 60, 130, 0, 0, 0, 57, 172, 0, 0, 190, 47, 0, 60, 130, 0, 0, 0, 57, 172, 207, 46, 190, 47, 0, 60, 130, 0, 0, 0, 57, 172, 207, 46, 210, 45, 0, 60, 130, 0, 0, 0, 173, 163, 0, 0, 190, 47, 0, 60, 127, 0, 0, 0, 173, 163, 0, 0, 210, 45, 0, 60, 127, 0, 0, 0, 173, 163, 207, 46, 210, 45, 0, 60, 127, 0, 0, 0, 173, 163, 207, 46, 190, 47, 0, 60, 127, 0, 0, 0, 254, 172, 0, 0, 210, 45, 0, 60, 0, 0, 126, 0, 57, 172, 0, 0, 210, 45, 0, 60, 0, 0, 126, 0, 57, 172, 207, 46, 210, 45, 0, 60, 0, 0, 126, 0, 254, 172, 207, 46, 210, 45, 0, 60, 0, 0, 126, 0, 254, 172, 0, 0, 240, 23, 0, 60, 130, 0, 0, 0, 254, 172, 0, 0, 210, 45, 0, 60, 130, 0, 0, 0, 254, 172, 207, 46, 210, 45, 0, 60, 130, 0, 0, 0, 254, 172, 207, 46, 240, 23, 0, 60, 130, 0, 0, 0, 190, 43, 0, 0, 240, 23, 0, 60, 0, 0, 129, 0, 254, 172, 0, 0, 240, 23, 0, 60, 0, 0, 129, 0, 254, 172, 207, 46, 240, 23, 0, 60, 0, 0, 129, 0, 190, 43, 207, 46, 240, 23, 0, 60, 0, 0, 129, 0, 20, 168, 185, 42, 190, 47, 0, 60, 0, 130, 0, 0, 70, 170, 185, 42, 190, 47, 0, 60, 0, 130, 0, 0, 70, 170, 185, 42, 251, 46, 0, 60, 0, 130, 0, 0, 20, 168, 185, 42, 251, 46, 0, 60, 0, 130, 0, 0, 44, 171, 218, 41, 251, 46, 0, 60, 0, 0, 126, 0, 92, 166, 218, 41, 251, 46, 0, 60, 0, 0, 126, 0, 20, 168, 185, 42, 251, 46, 0, 60, 0, 0, 126, 0, 70, 170, 185, 42, 251, 46, 0, 60, 0, 0, 126, 0, 92, 166, 0, 0, 190, 47, 0, 60, 130, 0, 0, 0, 92, 166, 218, 41, 190, 47, 0, 60, 130, 0, 0, 0, 92, 166, 218, 41, 251, 46, 0, 60, 130, 0, 0, 0, 92, 166, 0, 0, 251, 46, 0, 60, 130, 0, 0, 0, 44, 171, 218, 41, 190, 47, 0, 60, 127, 0, 0, 0, 44, 171, 0, 0, 190, 47, 0, 60, 127, 0, 0, 0, 44, 171, 0, 0, 251, 46, 0, 60, 127, 0, 0, 0, 44, 171, 218, 41, 251, 46, 0, 60, 127, 0, 0, 0, 44, 171, 218, 41, 190, 47, 0, 60, 0, 0, 126, 0, 70, 170, 185, 42, 190, 47, 0, 60, 0, 0, 126, 0, 57, 172, 207, 46, 190, 47, 0, 60, 0, 0, 126, 0, 44, 171, 0, 0, 190, 47, 0, 60, 0, 0, 126, 0, 57, 172, 0, 0, 190, 47, 0, 60, 0, 0, 126, 0, 44, 171, 0, 0, 251, 46, 0, 60, 0, 0, 126, 0, 92, 166, 0, 0, 251, 46, 0, 60, 0, 0, 126, 0, 20, 168, 185, 42, 190, 47, 0, 60, 168, 165, 0, 0, 20, 168, 185, 42, 251, 46, 0, 60, 168, 165, 0, 0, 92, 166, 218, 41, 251, 46, 0, 60, 168, 165, 0, 0, 92, 166, 218, 41, 190, 47, 0, 60, 168, 165, 0, 0, 70, 170, 185, 42, 251, 46, 0, 60, 88, 165, 0, 0, 70, 170, 185, 42, 190, 47, 0, 60, 88, 165, 0, 0, 44, 171, 218, 41, 190, 47, 0, 60, 88, 165, 0, 0, 44, 171, 218, 41, 251, 46, 0, 60, 88, 165, 0, 0, 20, 168, 185, 42, 190, 47, 0, 60, 0, 0, 126, 0, 173, 163, 207, 46, 190, 47, 0, 60, 0, 0, 126, 0, 92, 166, 218, 41, 190, 47, 0, 60, 0, 0, 126, 0, 92, 166, 0, 0, 190, 47, 0, 60, 0, 0, 126, 0, 173, 163, 0, 0, 190, 47, 0, 60, 0, 0, 126, 0), -"array_index_data": PackedByteArray(0, 0, 2, 0, 1, 0, 0, 0, 3, 0, 2, 0, 4, 0, 6, 0, 5, 0, 4, 0, 7, 0, 6, 0, 8, 0, 10, 0, 9, 0, 8, 0, 11, 0, 10, 0, 12, 0, 14, 0, 13, 0, 12, 0, 15, 0, 14, 0, 16, 0, 18, 0, 17, 0, 16, 0, 19, 0, 18, 0, 20, 0, 22, 0, 21, 0, 20, 0, 23, 0, 22, 0, 24, 0, 26, 0, 25, 0, 24, 0, 27, 0, 26, 0, 28, 0, 30, 0, 29, 0, 28, 0, 31, 0, 30, 0, 32, 0, 34, 0, 33, 0, 32, 0, 35, 0, 34, 0, 36, 0, 38, 0, 37, 0, 36, 0, 39, 0, 38, 0, 40, 0, 42, 0, 41, 0, 40, 0, 43, 0, 42, 0, 44, 0, 46, 0, 45, 0, 47, 0, 46, 0, 44, 0, 47, 0, 48, 0, 46, 0, 49, 0, 33, 0, 50, 0, 49, 0, 32, 0, 33, 0, 51, 0, 53, 0, 52, 0, 51, 0, 54, 0, 53, 0, 55, 0, 57, 0, 56, 0, 55, 0, 58, 0, 57, 0, 46, 0, 59, 0, 45, 0, 46, 0, 60, 0, 59, 0, 59, 0, 60, 0, 61, 0, 60, 0, 62, 0, 61, 0, 60, 0, 63, 0, 62, 0), -"blend_shape_data": [], -"format": 98051, +"format": 4099, "index_count": 108, -"material": ExtResource( 5 ), +"index_data": PackedByteArray(0, 0, 2, 0, 1, 0, 0, 0, 3, 0, 2, 0, 4, 0, 6, 0, 5, 0, 4, 0, 7, 0, 6, 0, 8, 0, 10, 0, 9, 0, 8, 0, 11, 0, 10, 0, 12, 0, 14, 0, 13, 0, 12, 0, 15, 0, 14, 0, 16, 0, 18, 0, 17, 0, 16, 0, 19, 0, 18, 0, 20, 0, 22, 0, 21, 0, 20, 0, 23, 0, 22, 0, 24, 0, 26, 0, 25, 0, 24, 0, 27, 0, 26, 0, 28, 0, 30, 0, 29, 0, 28, 0, 31, 0, 30, 0, 32, 0, 34, 0, 33, 0, 32, 0, 35, 0, 34, 0, 36, 0, 38, 0, 37, 0, 36, 0, 39, 0, 38, 0, 40, 0, 42, 0, 41, 0, 40, 0, 43, 0, 42, 0, 44, 0, 46, 0, 45, 0, 47, 0, 46, 0, 44, 0, 47, 0, 48, 0, 46, 0, 49, 0, 33, 0, 50, 0, 49, 0, 32, 0, 33, 0, 51, 0, 53, 0, 52, 0, 51, 0, 54, 0, 53, 0, 55, 0, 57, 0, 56, 0, 55, 0, 58, 0, 57, 0, 46, 0, 59, 0, 45, 0, 46, 0, 60, 0, 59, 0, 59, 0, 60, 0, 61, 0, 60, 0, 62, 0, 61, 0, 60, 0, 63, 0, 62, 0), +"material": ExtResource( "5" ), "name": "Material.001", -"primitive": 4, -"skeleton_aabb": [], -"vertex_count": 64 -} +"primitive": 3, +"vertex_count": 64, +"vertex_data": PackedByteArray(0, 192, 119, 61, 0, 0, 0, 0, 0, 64, 186, 61, 254, 3, 0, 0, 0, 192, 119, 61, 0, 0, 0, 0, 0, 0, 254, 58, 254, 3, 0, 0, 0, 192, 119, 61, 0, 224, 217, 61, 0, 0, 254, 58, 254, 3, 0, 0, 0, 192, 119, 61, 0, 224, 217, 61, 0, 64, 186, 61, 254, 3, 0, 0, 0, 160, 117, 188, 0, 0, 0, 0, 0, 64, 186, 61, 0, 0, 96, 63, 0, 192, 119, 61, 0, 0, 0, 0, 0, 64, 186, 61, 0, 0, 96, 63, 0, 192, 119, 61, 0, 224, 217, 61, 0, 64, 186, 61, 0, 0, 96, 63, 0, 160, 117, 188, 0, 224, 217, 61, 0, 64, 186, 61, 0, 0, 96, 63, 0, 32, 135, 189, 0, 0, 0, 0, 0, 64, 186, 61, 0, 0, 0, 0, 0, 32, 135, 189, 0, 0, 0, 0, 0, 192, 247, 61, 0, 0, 0, 0, 0, 32, 135, 189, 0, 224, 217, 61, 0, 192, 247, 61, 0, 0, 0, 0, 0, 32, 135, 189, 0, 224, 217, 61, 0, 64, 186, 61, 0, 0, 0, 0, 0, 160, 117, 188, 0, 0, 0, 0, 0, 192, 247, 61, 254, 3, 0, 0, 0, 160, 117, 188, 0, 0, 0, 0, 0, 64, 186, 61, 254, 3, 0, 0, 0, 160, 117, 188, 0, 224, 217, 61, 0, 64, 186, 61, 254, 3, 0, 0, 0, 160, 117, 188, 0, 224, 217, 61, 0, 192, 247, 61, 254, 3, 0, 0, 0, 192, 159, 189, 0, 0, 0, 0, 0, 64, 186, 61, 0, 0, 96, 63, 0, 32, 135, 189, 0, 0, 0, 0, 0, 64, 186, 61, 0, 0, 96, 63, 0, 32, 135, 189, 0, 224, 217, 61, 0, 64, 186, 61, 0, 0, 96, 63, 0, 192, 159, 189, 0, 224, 217, 61, 0, 64, 186, 61, 0, 0, 96, 63, 0, 192, 159, 189, 0, 0, 0, 0, 0, 0, 254, 58, 0, 0, 0, 0, 0, 192, 159, 189, 0, 0, 0, 0, 0, 64, 186, 61, 0, 0, 0, 0, 0, 192, 159, 189, 0, 224, 217, 61, 0, 64, 186, 61, 0, 0, 0, 0, 0, 192, 159, 189, 0, 224, 217, 61, 0, 0, 254, 58, 0, 0, 0, 0, 0, 192, 119, 61, 0, 0, 0, 0, 0, 0, 254, 58, 0, 0, 0, 0, 0, 192, 159, 189, 0, 0, 0, 0, 0, 0, 254, 58, 0, 0, 0, 0, 0, 192, 159, 189, 0, 224, 217, 61, 0, 0, 254, 58, 0, 0, 0, 0, 0, 192, 119, 61, 0, 224, 217, 61, 0, 0, 254, 58, 0, 0, 0, 0, 0, 128, 2, 189, 0, 32, 87, 61, 0, 192, 247, 61, 0, 0, 0, 0, 0, 192, 72, 189, 0, 32, 87, 61, 0, 192, 247, 61, 0, 0, 0, 0, 0, 192, 72, 189, 0, 32, 87, 61, 0, 96, 223, 61, 0, 0, 0, 0, 0, 128, 2, 189, 0, 32, 87, 61, 0, 96, 223, 61, 0, 0, 0, 0, 0, 128, 101, 189, 0, 64, 59, 61, 0, 96, 223, 61, 0, 0, 96, 63, 0, 128, 203, 188, 0, 64, 59, 61, 0, 96, 223, 61, 0, 0, 96, 63, 0, 128, 2, 189, 0, 32, 87, 61, 0, 96, 223, 61, 0, 0, 96, 63, 0, 192, 72, 189, 0, 32, 87, 61, 0, 96, 223, 61, 0, 0, 96, 63, 0, 128, 203, 188, 0, 0, 0, 0, 0, 192, 247, 61, 0, 0, 0, 0, 0, 128, 203, 188, 0, 64, 59, 61, 0, 192, 247, 61, 0, 0, 0, 0, 0, 128, 203, 188, 0, 64, 59, 61, 0, 96, 223, 61, 0, 0, 0, 0, 0, 128, 203, 188, 0, 0, 0, 0, 0, 96, 223, 61, 0, 0, 0, 0, 0, 128, 101, 189, 0, 64, 59, 61, 0, 192, 247, 61, 254, 3, 0, 0, 0, 128, 101, 189, 0, 0, 0, 0, 0, 192, 247, 61, 254, 3, 0, 0, 0, 128, 101, 189, 0, 0, 0, 0, 0, 96, 223, 61, 254, 3, 0, 0, 0, 128, 101, 189, 0, 64, 59, 61, 0, 96, 223, 61, 254, 3, 0, 0, 0, 128, 101, 189, 0, 64, 59, 61, 0, 192, 247, 61, 0, 0, 96, 63, 0, 192, 72, 189, 0, 32, 87, 61, 0, 192, 247, 61, 0, 0, 96, 63, 0, 32, 135, 189, 0, 224, 217, 61, 0, 192, 247, 61, 0, 0, 96, 63, 0, 128, 101, 189, 0, 0, 0, 0, 0, 192, 247, 61, 0, 0, 96, 63, 0, 32, 135, 189, 0, 0, 0, 0, 0, 192, 247, 61, 0, 0, 96, 63, 0, 128, 101, 189, 0, 0, 0, 0, 0, 96, 223, 61, 0, 0, 96, 63, 0, 128, 203, 188, 0, 0, 0, 0, 0, 96, 223, 61, 0, 0, 96, 63, 0, 128, 2, 189, 0, 32, 87, 61, 0, 192, 247, 61, 0, 0, 0, 0, 0, 128, 2, 189, 0, 32, 87, 61, 0, 96, 223, 61, 0, 0, 0, 0, 0, 128, 203, 188, 0, 64, 59, 61, 0, 96, 223, 61, 0, 0, 0, 0, 0, 128, 203, 188, 0, 64, 59, 61, 0, 192, 247, 61, 0, 0, 0, 0, 0, 192, 72, 189, 0, 32, 87, 61, 0, 96, 223, 61, 196, 2, 0, 0, 0, 192, 72, 189, 0, 32, 87, 61, 0, 192, 247, 61, 196, 2, 0, 0, 0, 128, 101, 189, 0, 64, 59, 61, 0, 192, 247, 61, 196, 2, 0, 0, 0, 128, 101, 189, 0, 64, 59, 61, 0, 96, 223, 61, 196, 2, 0, 0, 0, 128, 2, 189, 0, 32, 87, 61, 0, 192, 247, 61, 0, 0, 96, 63, 0, 160, 117, 188, 0, 224, 217, 61, 0, 192, 247, 61, 0, 0, 96, 63, 0, 128, 203, 188, 0, 64, 59, 61, 0, 192, 247, 61, 0, 0, 96, 63, 0, 128, 203, 188, 0, 0, 0, 0, 0, 192, 247, 61, 0, 0, 96, 63, 0, 160, 117, 188, 0, 0, 0, 0, 0, 192, 247, 61, 0, 0, 96, 63) +}] -[sub_resource type="ArrayMesh" id=30] +[sub_resource type="ArrayMesh" id="30"] resource_name = "Cube.047" -surfaces/0 = { +_surfaces = [{ "aabb": AABB(-0.0226153, 0, -0.0188077, 0.0452306, 0.038131, 0.0188177), -"array_data": PackedByteArray(37, 34, 225, 40, 0, 0, 0, 60, 0, 127, 0, 0, 37, 34, 225, 40, 151, 148, 0, 60, 0, 127, 0, 0, 39, 147, 225, 40, 151, 148, 0, 60, 0, 127, 0, 0, 37, 34, 225, 40, 0, 0, 0, 60, 127, 0, 0, 0, 37, 34, 125, 30, 0, 0, 0, 60, 127, 0, 0, 0, 37, 34, 125, 30, 151, 148, 0, 60, 127, 0, 0, 0, 37, 34, 225, 40, 151, 148, 0, 60, 127, 0, 0, 0, 79, 163, 125, 30, 0, 0, 0, 60, 130, 0, 0, 0, 79, 163, 225, 40, 0, 0, 0, 60, 130, 0, 0, 0, 79, 163, 225, 40, 151, 148, 0, 60, 130, 0, 0, 0, 79, 163, 125, 30, 151, 148, 0, 60, 130, 0, 0, 0, 79, 163, 225, 40, 151, 148, 0, 60, 0, 0, 129, 0, 193, 149, 225, 40, 151, 148, 0, 60, 0, 0, 129, 0, 193, 149, 125, 30, 151, 148, 0, 60, 0, 0, 129, 0, 79, 163, 125, 30, 151, 148, 0, 60, 0, 0, 129, 0, 202, 165, 125, 26, 208, 164, 0, 60, 0, 0, 129, 0, 202, 37, 125, 26, 208, 164, 0, 60, 0, 0, 129, 0, 202, 37, 0, 0, 208, 164, 0, 60, 0, 0, 129, 0, 202, 165, 0, 0, 208, 164, 0, 60, 0, 0, 129, 0, 202, 37, 125, 26, 0, 0, 0, 60, 127, 0, 0, 0, 202, 37, 0, 0, 0, 0, 0, 60, 127, 0, 0, 0, 202, 37, 0, 0, 208, 164, 0, 60, 127, 0, 0, 0, 202, 37, 125, 26, 208, 164, 0, 60, 127, 0, 0, 0, 214, 164, 125, 30, 185, 163, 0, 60, 0, 0, 129, 0, 214, 36, 125, 30, 185, 163, 0, 60, 0, 0, 129, 0, 214, 36, 125, 26, 185, 163, 0, 60, 0, 0, 129, 0, 214, 164, 125, 26, 185, 163, 0, 60, 0, 0, 129, 0, 214, 36, 125, 30, 0, 0, 0, 60, 127, 0, 0, 0, 214, 36, 125, 26, 0, 0, 0, 60, 127, 0, 0, 0, 214, 36, 125, 26, 185, 163, 0, 60, 127, 0, 0, 0, 214, 36, 125, 30, 185, 163, 0, 60, 127, 0, 0, 0, 202, 165, 0, 0, 0, 0, 0, 60, 130, 0, 0, 0, 202, 165, 125, 26, 0, 0, 0, 60, 130, 0, 0, 0, 202, 165, 125, 26, 208, 164, 0, 60, 130, 0, 0, 0, 202, 165, 0, 0, 208, 164, 0, 60, 130, 0, 0, 0, 214, 164, 125, 26, 0, 0, 0, 60, 130, 0, 0, 0, 214, 164, 125, 30, 0, 0, 0, 60, 130, 0, 0, 0, 214, 164, 125, 30, 185, 163, 0, 60, 130, 0, 0, 0, 214, 164, 125, 26, 185, 163, 0, 60, 130, 0, 0, 0, 214, 36, 125, 30, 0, 0, 0, 60, 0, 127, 0, 0, 214, 36, 125, 30, 185, 163, 0, 60, 0, 127, 0, 0, 214, 164, 125, 30, 185, 163, 0, 60, 0, 127, 0, 0, 214, 164, 125, 30, 0, 0, 0, 60, 0, 127, 0, 0, 202, 37, 125, 26, 208, 164, 0, 60, 0, 127, 0, 0, 202, 165, 125, 26, 208, 164, 0, 60, 0, 127, 0, 0, 214, 164, 125, 26, 185, 163, 0, 60, 0, 127, 0, 0, 214, 36, 125, 26, 185, 163, 0, 60, 0, 127, 0, 0, 202, 37, 125, 26, 0, 0, 0, 60, 0, 127, 0, 0, 214, 36, 125, 26, 0, 0, 0, 60, 0, 127, 0, 0, 202, 165, 125, 26, 0, 0, 0, 60, 0, 127, 0, 0, 214, 164, 125, 26, 0, 0, 0, 60, 0, 127, 0, 0, 194, 156, 212, 37, 58, 152, 0, 60, 0, 0, 129, 0, 236, 153, 9, 38, 58, 152, 0, 60, 0, 0, 129, 0, 35, 152, 141, 37, 58, 152, 0, 60, 0, 0, 129, 0, 187, 155, 88, 37, 58, 152, 0, 60, 0, 0, 129, 0, 194, 156, 212, 37, 151, 148, 0, 60, 203, 115, 0, 0, 236, 153, 9, 38, 151, 148, 0, 60, 203, 115, 0, 0, 236, 153, 9, 38, 58, 152, 0, 60, 203, 115, 0, 0, 194, 156, 212, 37, 58, 152, 0, 60, 203, 115, 0, 0, 35, 152, 141, 37, 151, 148, 0, 60, 53, 141, 0, 0, 187, 155, 88, 37, 151, 148, 0, 60, 53, 141, 0, 0, 187, 155, 88, 37, 58, 152, 0, 60, 53, 141, 0, 0, 35, 152, 141, 37, 58, 152, 0, 60, 53, 141, 0, 0, 236, 153, 9, 38, 151, 148, 0, 60, 115, 53, 0, 0, 35, 152, 141, 37, 151, 148, 0, 60, 115, 53, 0, 0, 35, 152, 141, 37, 58, 152, 0, 60, 115, 53, 0, 0, 236, 153, 9, 38, 58, 152, 0, 60, 115, 53, 0, 0, 187, 155, 88, 37, 151, 148, 0, 60, 141, 203, 0, 0, 194, 156, 212, 37, 151, 148, 0, 60, 141, 203, 0, 0, 194, 156, 212, 37, 58, 152, 0, 60, 141, 203, 0, 0, 187, 155, 88, 37, 58, 152, 0, 60, 141, 203, 0, 0, 193, 18, 253, 37, 58, 152, 0, 60, 0, 0, 129, 0, 154, 25, 234, 37, 58, 152, 0, 60, 0, 0, 129, 0, 249, 24, 100, 37, 58, 152, 0, 60, 0, 0, 129, 0, 59, 16, 118, 37, 58, 152, 0, 60, 0, 0, 129, 0, 193, 18, 253, 37, 151, 148, 0, 60, 18, 125, 0, 0, 154, 25, 234, 37, 151, 148, 0, 60, 18, 125, 0, 0, 154, 25, 234, 37, 58, 152, 0, 60, 18, 125, 0, 0, 193, 18, 253, 37, 58, 152, 0, 60, 18, 125, 0, 0, 249, 24, 100, 37, 151, 148, 0, 60, 238, 131, 0, 0, 59, 16, 118, 37, 151, 148, 0, 60, 238, 131, 0, 0, 59, 16, 118, 37, 58, 152, 0, 60, 238, 131, 0, 0, 249, 24, 100, 37, 58, 152, 0, 60, 238, 131, 0, 0, 154, 25, 234, 37, 151, 148, 0, 60, 125, 238, 0, 0, 249, 24, 100, 37, 151, 148, 0, 60, 125, 238, 0, 0, 249, 24, 100, 37, 58, 152, 0, 60, 125, 238, 0, 0, 154, 25, 234, 37, 58, 152, 0, 60, 125, 238, 0, 0, 59, 16, 118, 37, 151, 148, 0, 60, 131, 18, 0, 0, 193, 18, 253, 37, 151, 148, 0, 60, 131, 18, 0, 0, 193, 18, 253, 37, 58, 152, 0, 60, 131, 18, 0, 0, 59, 16, 118, 37, 58, 152, 0, 60, 131, 18, 0, 0, 79, 163, 225, 40, 151, 148, 0, 60, 0, 127, 0, 0, 79, 163, 225, 40, 0, 0, 0, 60, 0, 127, 0, 0, 193, 149, 225, 40, 151, 148, 0, 60, 0, 127, 0, 0, 39, 147, 225, 40, 151, 148, 0, 60, 152, 0, 185, 0, 39, 147, 125, 30, 151, 148, 0, 60, 152, 0, 185, 0, 170, 148, 125, 30, 1, 146, 0, 60, 152, 0, 185, 0, 170, 148, 225, 40, 1, 146, 0, 60, 152, 0, 185, 0, 170, 148, 225, 40, 1, 146, 0, 60, 104, 0, 185, 0, 170, 148, 125, 30, 1, 146, 0, 60, 104, 0, 185, 0, 193, 149, 125, 30, 151, 148, 0, 60, 104, 0, 185, 0, 193, 149, 225, 40, 151, 148, 0, 60, 104, 0, 185, 0, 39, 147, 225, 40, 151, 148, 0, 60, 0, 0, 129, 0, 37, 34, 225, 40, 151, 148, 0, 60, 0, 0, 129, 0, 37, 34, 125, 30, 151, 148, 0, 60, 0, 0, 129, 0, 39, 147, 125, 30, 151, 148, 0, 60, 0, 0, 129, 0, 170, 148, 225, 40, 1, 146, 0, 60, 0, 127, 0, 0), -"array_index_data": PackedByteArray(0, 0, 2, 0, 1, 0, 3, 0, 5, 0, 4, 0, 3, 0, 6, 0, 5, 0, 7, 0, 9, 0, 8, 0, 7, 0, 10, 0, 9, 0, 11, 0, 13, 0, 12, 0, 11, 0, 14, 0, 13, 0, 15, 0, 17, 0, 16, 0, 15, 0, 18, 0, 17, 0, 19, 0, 21, 0, 20, 0, 19, 0, 22, 0, 21, 0, 23, 0, 25, 0, 24, 0, 23, 0, 26, 0, 25, 0, 27, 0, 29, 0, 28, 0, 27, 0, 30, 0, 29, 0, 31, 0, 33, 0, 32, 0, 31, 0, 34, 0, 33, 0, 35, 0, 37, 0, 36, 0, 35, 0, 38, 0, 37, 0, 39, 0, 41, 0, 40, 0, 39, 0, 42, 0, 41, 0, 43, 0, 45, 0, 44, 0, 43, 0, 46, 0, 45, 0, 47, 0, 46, 0, 43, 0, 47, 0, 48, 0, 46, 0, 44, 0, 50, 0, 49, 0, 44, 0, 45, 0, 50, 0, 51, 0, 53, 0, 52, 0, 51, 0, 54, 0, 53, 0, 55, 0, 57, 0, 56, 0, 55, 0, 58, 0, 57, 0, 59, 0, 61, 0, 60, 0, 59, 0, 62, 0, 61, 0, 63, 0, 65, 0, 64, 0, 63, 0, 66, 0, 65, 0, 67, 0, 69, 0, 68, 0, 67, 0, 70, 0, 69, 0, 71, 0, 73, 0, 72, 0, 71, 0, 74, 0, 73, 0, 75, 0, 77, 0, 76, 0, 75, 0, 78, 0, 77, 0, 79, 0, 81, 0, 80, 0, 79, 0, 82, 0, 81, 0, 83, 0, 85, 0, 84, 0, 83, 0, 86, 0, 85, 0, 87, 0, 89, 0, 88, 0, 87, 0, 90, 0, 89, 0, 91, 0, 93, 0, 92, 0, 94, 0, 96, 0, 95, 0, 94, 0, 97, 0, 96, 0, 98, 0, 100, 0, 99, 0, 98, 0, 101, 0, 100, 0, 102, 0, 104, 0, 103, 0, 102, 0, 105, 0, 104, 0, 0, 0, 106, 0, 2, 0, 92, 0, 106, 0, 0, 0, 93, 0, 106, 0, 92, 0), -"blend_shape_data": [], -"format": 98051, +"format": 4099, "index_count": 171, -"material": ExtResource( 6 ), +"index_data": PackedByteArray(0, 0, 2, 0, 1, 0, 3, 0, 5, 0, 4, 0, 3, 0, 6, 0, 5, 0, 7, 0, 9, 0, 8, 0, 7, 0, 10, 0, 9, 0, 11, 0, 13, 0, 12, 0, 11, 0, 14, 0, 13, 0, 15, 0, 17, 0, 16, 0, 15, 0, 18, 0, 17, 0, 19, 0, 21, 0, 20, 0, 19, 0, 22, 0, 21, 0, 23, 0, 25, 0, 24, 0, 23, 0, 26, 0, 25, 0, 27, 0, 29, 0, 28, 0, 27, 0, 30, 0, 29, 0, 31, 0, 33, 0, 32, 0, 31, 0, 34, 0, 33, 0, 35, 0, 37, 0, 36, 0, 35, 0, 38, 0, 37, 0, 39, 0, 41, 0, 40, 0, 39, 0, 42, 0, 41, 0, 43, 0, 45, 0, 44, 0, 43, 0, 46, 0, 45, 0, 47, 0, 46, 0, 43, 0, 47, 0, 48, 0, 46, 0, 44, 0, 50, 0, 49, 0, 44, 0, 45, 0, 50, 0, 51, 0, 53, 0, 52, 0, 51, 0, 54, 0, 53, 0, 55, 0, 57, 0, 56, 0, 55, 0, 58, 0, 57, 0, 59, 0, 61, 0, 60, 0, 59, 0, 62, 0, 61, 0, 63, 0, 65, 0, 64, 0, 63, 0, 66, 0, 65, 0, 67, 0, 69, 0, 68, 0, 67, 0, 70, 0, 69, 0, 71, 0, 73, 0, 72, 0, 71, 0, 74, 0, 73, 0, 75, 0, 77, 0, 76, 0, 75, 0, 78, 0, 77, 0, 79, 0, 81, 0, 80, 0, 79, 0, 82, 0, 81, 0, 83, 0, 85, 0, 84, 0, 83, 0, 86, 0, 85, 0, 87, 0, 89, 0, 88, 0, 87, 0, 90, 0, 89, 0, 91, 0, 93, 0, 92, 0, 94, 0, 96, 0, 95, 0, 94, 0, 97, 0, 96, 0, 98, 0, 100, 0, 99, 0, 98, 0, 101, 0, 100, 0, 102, 0, 104, 0, 103, 0, 102, 0, 105, 0, 104, 0, 0, 0, 106, 0, 2, 0, 92, 0, 106, 0, 0, 0, 93, 0, 106, 0, 92, 0), +"material": ExtResource( "6" ), "name": "Material.002", -"primitive": 4, -"skeleton_aabb": [], -"vertex_count": 107 -} +"primitive": 3, +"vertex_count": 107, +"vertex_data": PackedByteArray(0, 160, 68, 60, 0, 32, 28, 61, 0, 0, 0, 0, 0, 248, 15, 0, 0, 160, 68, 60, 0, 32, 28, 61, 0, 224, 146, 186, 0, 248, 15, 0, 0, 224, 100, 186, 0, 32, 28, 61, 0, 224, 146, 186, 0, 248, 15, 0, 0, 160, 68, 60, 0, 32, 28, 61, 0, 0, 0, 0, 254, 3, 0, 0, 0, 160, 68, 60, 0, 160, 207, 59, 0, 0, 0, 0, 254, 3, 0, 0, 0, 160, 68, 60, 0, 160, 207, 59, 0, 224, 146, 186, 254, 3, 0, 0, 0, 160, 68, 60, 0, 32, 28, 61, 0, 224, 146, 186, 254, 3, 0, 0, 0, 224, 105, 188, 0, 160, 207, 59, 0, 0, 0, 0, 0, 0, 0, 0, 0, 224, 105, 188, 0, 32, 28, 61, 0, 0, 0, 0, 0, 0, 0, 0, 0, 224, 105, 188, 0, 32, 28, 61, 0, 224, 146, 186, 0, 0, 0, 0, 0, 224, 105, 188, 0, 160, 207, 59, 0, 224, 146, 186, 0, 0, 0, 0, 0, 224, 105, 188, 0, 32, 28, 61, 0, 224, 146, 186, 0, 0, 0, 0, 0, 32, 184, 186, 0, 32, 28, 61, 0, 224, 146, 186, 0, 0, 0, 0, 0, 32, 184, 186, 0, 160, 207, 59, 0, 224, 146, 186, 0, 0, 0, 0, 0, 224, 105, 188, 0, 160, 207, 59, 0, 224, 146, 186, 0, 0, 0, 0, 0, 64, 185, 188, 0, 160, 79, 59, 0, 0, 154, 188, 0, 0, 0, 0, 0, 64, 185, 60, 0, 160, 79, 59, 0, 0, 154, 188, 0, 0, 0, 0, 0, 64, 185, 60, 0, 0, 0, 0, 0, 0, 154, 188, 0, 0, 0, 0, 0, 64, 185, 188, 0, 0, 0, 0, 0, 0, 154, 188, 0, 0, 0, 0, 0, 64, 185, 60, 0, 160, 79, 59, 0, 0, 0, 0, 254, 3, 0, 0, 0, 64, 185, 60, 0, 0, 0, 0, 0, 0, 0, 0, 254, 3, 0, 0, 0, 64, 185, 60, 0, 0, 0, 0, 0, 0, 154, 188, 254, 3, 0, 0, 0, 64, 185, 60, 0, 160, 79, 59, 0, 0, 154, 188, 254, 3, 0, 0, 0, 192, 154, 188, 0, 160, 207, 59, 0, 32, 119, 188, 0, 0, 0, 0, 0, 192, 154, 60, 0, 160, 207, 59, 0, 32, 119, 188, 0, 0, 0, 0, 0, 192, 154, 60, 0, 160, 79, 59, 0, 32, 119, 188, 0, 0, 0, 0, 0, 192, 154, 188, 0, 160, 79, 59, 0, 32, 119, 188, 0, 0, 0, 0, 0, 192, 154, 60, 0, 160, 207, 59, 0, 0, 0, 0, 254, 3, 0, 0, 0, 192, 154, 60, 0, 160, 79, 59, 0, 0, 0, 0, 254, 3, 0, 0, 0, 192, 154, 60, 0, 160, 79, 59, 0, 32, 119, 188, 254, 3, 0, 0, 0, 192, 154, 60, 0, 160, 207, 59, 0, 32, 119, 188, 254, 3, 0, 0, 0, 64, 185, 188, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 64, 185, 188, 0, 160, 79, 59, 0, 0, 0, 0, 0, 0, 0, 0, 0, 64, 185, 188, 0, 160, 79, 59, 0, 0, 154, 188, 0, 0, 0, 0, 0, 64, 185, 188, 0, 0, 0, 0, 0, 0, 154, 188, 0, 0, 0, 0, 0, 192, 154, 188, 0, 160, 79, 59, 0, 0, 0, 0, 0, 0, 0, 0, 0, 192, 154, 188, 0, 160, 207, 59, 0, 0, 0, 0, 0, 0, 0, 0, 0, 192, 154, 188, 0, 160, 207, 59, 0, 32, 119, 188, 0, 0, 0, 0, 0, 192, 154, 188, 0, 160, 79, 59, 0, 32, 119, 188, 0, 0, 0, 0, 0, 192, 154, 60, 0, 160, 207, 59, 0, 0, 0, 0, 0, 248, 15, 0, 0, 192, 154, 60, 0, 160, 207, 59, 0, 32, 119, 188, 0, 248, 15, 0, 0, 192, 154, 188, 0, 160, 207, 59, 0, 32, 119, 188, 0, 248, 15, 0, 0, 192, 154, 188, 0, 160, 207, 59, 0, 0, 0, 0, 0, 248, 15, 0, 0, 64, 185, 60, 0, 160, 79, 59, 0, 0, 154, 188, 0, 248, 15, 0, 0, 64, 185, 188, 0, 160, 79, 59, 0, 0, 154, 188, 0, 248, 15, 0, 0, 192, 154, 188, 0, 160, 79, 59, 0, 32, 119, 188, 0, 248, 15, 0, 0, 192, 154, 60, 0, 160, 79, 59, 0, 32, 119, 188, 0, 248, 15, 0, 0, 64, 185, 60, 0, 160, 79, 59, 0, 0, 0, 0, 0, 248, 15, 0, 0, 192, 154, 60, 0, 160, 79, 59, 0, 0, 0, 0, 0, 248, 15, 0, 0, 64, 185, 188, 0, 160, 79, 59, 0, 0, 0, 0, 0, 248, 15, 0, 0, 192, 154, 188, 0, 160, 79, 59, 0, 0, 0, 0, 0, 248, 15, 0, 0, 64, 152, 187, 0, 128, 186, 60, 0, 64, 7, 187, 0, 0, 0, 0, 0, 128, 61, 187, 0, 32, 193, 60, 0, 64, 7, 187, 0, 0, 0, 0, 0, 96, 4, 187, 0, 160, 177, 60, 0, 64, 7, 187, 0, 0, 0, 0, 0, 96, 119, 187, 0, 0, 171, 60, 0, 64, 7, 187, 0, 0, 0, 0, 0, 64, 152, 187, 0, 128, 186, 60, 0, 224, 146, 186, 0, 120, 14, 0, 0, 128, 61, 187, 0, 32, 193, 60, 0, 224, 146, 186, 0, 120, 14, 0, 0, 128, 61, 187, 0, 32, 193, 60, 0, 64, 7, 187, 0, 120, 14, 0, 0, 64, 152, 187, 0, 128, 186, 60, 0, 64, 7, 187, 0, 120, 14, 0, 0, 96, 4, 187, 0, 160, 177, 60, 0, 224, 146, 186, 170, 1, 0, 0, 0, 96, 119, 187, 0, 0, 171, 60, 0, 224, 146, 186, 170, 1, 0, 0, 0, 96, 119, 187, 0, 0, 171, 60, 0, 64, 7, 187, 170, 1, 0, 0, 0, 96, 4, 187, 0, 160, 177, 60, 0, 64, 7, 187, 170, 1, 0, 0, 0, 128, 61, 187, 0, 32, 193, 60, 0, 224, 146, 186, 158, 171, 6, 0, 0, 96, 4, 187, 0, 160, 177, 60, 0, 224, 146, 186, 158, 171, 6, 0, 0, 96, 4, 187, 0, 160, 177, 60, 0, 64, 7, 187, 158, 171, 6, 0, 0, 128, 61, 187, 0, 32, 193, 60, 0, 64, 7, 187, 158, 171, 6, 0, 0, 96, 119, 187, 0, 0, 171, 60, 0, 224, 146, 186, 0, 0, 0, 0, 0, 64, 152, 187, 0, 128, 186, 60, 0, 224, 146, 186, 0, 0, 0, 0, 0, 64, 152, 187, 0, 128, 186, 60, 0, 64, 7, 187, 0, 0, 0, 0, 0, 96, 119, 187, 0, 0, 171, 60, 0, 64, 7, 187, 0, 0, 0, 0, 0, 32, 88, 58, 0, 160, 191, 60, 0, 64, 7, 187, 0, 0, 0, 0, 0, 64, 51, 59, 0, 64, 189, 60, 0, 64, 7, 187, 0, 0, 0, 0, 0, 32, 31, 59, 0, 128, 172, 60, 0, 64, 7, 187, 0, 0, 0, 0, 0, 96, 7, 58, 0, 192, 174, 60, 0, 64, 7, 187, 0, 0, 0, 0, 0, 32, 88, 58, 0, 160, 191, 60, 0, 224, 146, 186, 144, 184, 15, 0, 0, 64, 51, 59, 0, 64, 189, 60, 0, 224, 146, 186, 144, 184, 15, 0, 0, 64, 51, 59, 0, 64, 189, 60, 0, 64, 7, 187, 144, 184, 15, 0, 0, 32, 88, 58, 0, 160, 191, 60, 0, 64, 7, 187, 144, 184, 15, 0, 0, 32, 31, 59, 0, 128, 172, 60, 0, 224, 146, 186, 0, 0, 0, 0, 0, 96, 7, 58, 0, 192, 174, 60, 0, 224, 146, 186, 0, 0, 0, 0, 0, 96, 7, 58, 0, 192, 174, 60, 0, 64, 7, 187, 0, 0, 0, 0, 0, 32, 31, 59, 0, 128, 172, 60, 0, 64, 7, 187, 0, 0, 0, 0, 0, 64, 51, 59, 0, 64, 189, 60, 0, 224, 146, 186, 238, 3, 0, 0, 0, 32, 31, 59, 0, 128, 172, 60, 0, 224, 146, 186, 238, 3, 0, 0, 0, 32, 31, 59, 0, 128, 172, 60, 0, 64, 7, 187, 238, 3, 0, 0, 0, 64, 51, 59, 0, 64, 189, 60, 0, 64, 7, 187, 238, 3, 0, 0, 0, 96, 7, 58, 0, 192, 174, 60, 0, 224, 146, 186, 0, 64, 2, 0, 0, 32, 88, 58, 0, 160, 191, 60, 0, 224, 146, 186, 0, 64, 2, 0, 0, 32, 88, 58, 0, 160, 191, 60, 0, 64, 7, 187, 0, 64, 2, 0, 0, 96, 7, 58, 0, 192, 174, 60, 0, 64, 7, 187, 0, 64, 2, 0, 0, 224, 105, 188, 0, 32, 28, 61, 0, 224, 146, 186, 0, 248, 15, 0, 0, 224, 105, 188, 0, 32, 28, 61, 0, 0, 0, 0, 0, 248, 15, 0, 0, 32, 184, 186, 0, 32, 28, 61, 0, 224, 146, 186, 0, 248, 15, 0, 0, 224, 100, 186, 0, 32, 28, 61, 0, 224, 146, 186, 0, 0, 0, 0, 0, 224, 100, 186, 0, 160, 207, 59, 0, 224, 146, 186, 0, 0, 0, 0, 0, 64, 149, 186, 0, 160, 207, 59, 0, 32, 64, 186, 0, 0, 0, 0, 0, 64, 149, 186, 0, 32, 28, 61, 0, 32, 64, 186, 0, 0, 0, 0, 0, 64, 149, 186, 0, 32, 28, 61, 0, 32, 64, 186, 69, 3, 0, 0, 0, 64, 149, 186, 0, 160, 207, 59, 0, 32, 64, 186, 69, 3, 0, 0, 0, 32, 184, 186, 0, 160, 207, 59, 0, 224, 146, 186, 69, 3, 0, 0, 0, 32, 184, 186, 0, 32, 28, 61, 0, 224, 146, 186, 69, 3, 0, 0, 0, 224, 100, 186, 0, 32, 28, 61, 0, 224, 146, 186, 0, 0, 0, 0, 0, 160, 68, 60, 0, 32, 28, 61, 0, 224, 146, 186, 0, 0, 0, 0, 0, 160, 68, 60, 0, 160, 207, 59, 0, 224, 146, 186, 0, 0, 0, 0, 0, 224, 100, 186, 0, 160, 207, 59, 0, 224, 146, 186, 0, 0, 0, 0, 0, 64, 149, 186, 0, 32, 28, 61, 0, 32, 64, 186, 0, 248, 15, 0) +}] -[sub_resource type="ConcavePolygonShape3D" id=31] +[sub_resource type="ConcavePolygonShape3D" id="31"] data = PackedVector3Array(0.0605, 0, 0.091, 0.0605, 0.1064, 0.0019, 0.0605, 0, 0.0019, 0.0605, 0, 0.091, 0.0605, 0.1064, 0.091, 0.0605, 0.1064, 0.0019, -0.0149, 0, 0.091, 0.0605, 0.1064, 0.091, 0.0605, 0, 0.091, -0.0149, 0, 0.091, -0.0149, 0.1064, 0.091, 0.0605, 0.1064, 0.091, -0.0659, 0, 0.091, -0.0659, 0.1064, 0.121, -0.0659, 0, 0.121, -0.0659, 0, 0.091, -0.0659, 0.1064, 0.091, -0.0659, 0.1064, 0.121, -0.0149, 0, 0.121, -0.0149, 0.1064, 0.091, -0.0149, 0, 0.091, -0.0149, 0, 0.121, -0.0149, 0.1064, 0.121, -0.0149, 0.1064, 0.091, -0.0779, 0, 0.091, -0.0659, 0.1064, 0.091, -0.0659, 0, 0.091, -0.0779, 0, 0.091, -0.0779, 0.1064, 0.091, -0.0659, 0.1064, 0.091, -0.0779, 0, 0.0019, -0.0779, 0.1064, 0.091, -0.0779, 0, 0.091, -0.0779, 0, 0.0019, -0.0779, 0.1064, 0.0019, -0.0779, 0.1064, 0.091, 0.0605, 0, 0.0019, -0.0779, 0.1064, 0.0019, -0.0779, 0, 0.0019, 0.0605, 0, 0.0019, 0.0605, 0.1064, 0.0019, -0.0779, 0.1064, 0.0019, -0.0318, 0.0525, 0.121, -0.0489, 0.0525, 0.1091, -0.0489, 0.0525, 0.121, -0.0318, 0.0525, 0.121, -0.0318, 0.0525, 0.1091, -0.0489, 0.0525, 0.1091, -0.056, 0.0457, 0.1091, -0.0318, 0.0525, 0.1091, -0.0248, 0.0457, 0.1091, -0.056, 0.0457, 0.1091, -0.0489, 0.0525, 0.1091, -0.0318, 0.0525, 0.1091, -0.0248, 0, 0.121, -0.0248, 0.0457, 0.1091, -0.0248, 0.0457, 0.121, -0.0248, 0, 0.121, -0.0248, 0, 0.1091, -0.0248, 0.0457, 0.1091, -0.056, 0.0457, 0.121, -0.056, 0, 0.1091, -0.056, 0, 0.121, -0.056, 0.0457, 0.121, -0.056, 0.0457, 0.1091, -0.056, 0, 0.1091, -0.056, 0.0457, 0.121, -0.0659, 0.1064, 0.121, -0.0489, 0.0525, 0.121, -0.056, 0, 0.121, -0.0659, 0.1064, 0.121, -0.056, 0.0457, 0.121, -0.056, 0, 0.121, -0.0659, 0, 0.121, -0.0659, 0.1064, 0.121, -0.056, 0, 0.1091, -0.0248, 0.0457, 0.1091, -0.0248, 0, 0.1091, -0.056, 0, 0.1091, -0.056, 0.0457, 0.1091, -0.0248, 0.0457, 0.1091, -0.0318, 0.0525, 0.121, -0.0248, 0.0457, 0.1091, -0.0318, 0.0525, 0.1091, -0.0318, 0.0525, 0.121, -0.0248, 0.0457, 0.121, -0.0248, 0.0457, 0.1091, -0.0489, 0.0525, 0.1091, -0.056, 0.0457, 0.121, -0.0489, 0.0525, 0.121, -0.0489, 0.0525, 0.1091, -0.056, 0.0457, 0.1091, -0.056, 0.0457, 0.121, -0.0659, 0.1064, 0.121, -0.0318, 0.0525, 0.121, -0.0489, 0.0525, 0.121, -0.0659, 0.1064, 0.121, -0.0149, 0.1064, 0.121, -0.0318, 0.0525, 0.121, -0.0318, 0.0525, 0.121, -0.0149, 0.1064, 0.121, -0.0248, 0.0457, 0.121, -0.0149, 0.1064, 0.121, -0.0248, 0, 0.121, -0.0248, 0.0457, 0.121, -0.0149, 0.1064, 0.121, -0.0149, 0, 0.121, -0.0248, 0, 0.121) -[sub_resource type="ArrayMesh" id=32] +[sub_resource type="ArrayMesh" id="32"] resource_name = "Plane.018" -surfaces/0 = { +_surfaces = [{ "aabb": AABB(-0.0762046, 0, 0.00375523, 0.206247, 0.111386, 0.204479), -"array_data": PackedByteArray(241, 42, 0, 0, 180, 45, 0, 60, 130, 0, 0, 0, 241, 42, 0, 0, 169, 50, 0, 60, 130, 0, 0, 0, 241, 42, 32, 47, 169, 50, 0, 60, 130, 0, 0, 0, 241, 42, 32, 47, 180, 45, 0, 60, 130, 0, 0, 0, 241, 42, 0, 0, 169, 50, 0, 60, 0, 0, 126, 0, 41, 48, 0, 0, 169, 50, 0, 60, 0, 0, 126, 0, 41, 48, 32, 47, 169, 50, 0, 60, 0, 0, 126, 0, 241, 42, 32, 47, 169, 50, 0, 60, 0, 0, 126, 0, 224, 172, 0, 0, 180, 45, 0, 60, 0, 0, 126, 0, 241, 42, 0, 0, 180, 45, 0, 60, 0, 0, 126, 0, 241, 42, 32, 47, 180, 45, 0, 60, 0, 0, 126, 0, 224, 172, 32, 47, 180, 45, 0, 60, 0, 0, 126, 0, 87, 45, 0, 0, 176, 27, 0, 60, 0, 0, 129, 0, 224, 172, 0, 0, 176, 27, 0, 60, 0, 0, 129, 0, 224, 172, 32, 47, 176, 27, 0, 60, 0, 0, 129, 0, 87, 45, 32, 47, 176, 27, 0, 60, 0, 0, 129, 0, 41, 48, 0, 0, 67, 42, 0, 60, 88, 0, 165, 0, 87, 45, 0, 0, 176, 27, 0, 60, 88, 0, 165, 0, 87, 45, 32, 47, 176, 27, 0, 60, 88, 0, 165, 0, 41, 48, 32, 47, 67, 42, 0, 60, 88, 0, 165, 0, 41, 48, 0, 0, 169, 50, 0, 60, 127, 0, 0, 0, 41, 48, 0, 0, 67, 42, 0, 60, 127, 0, 0, 0, 41, 48, 32, 47, 67, 42, 0, 60, 127, 0, 0, 0, 41, 48, 32, 47, 169, 50, 0, 60, 127, 0, 0, 0, 224, 172, 0, 0, 176, 27, 0, 60, 130, 0, 0, 0, 224, 172, 0, 0, 180, 45, 0, 60, 130, 0, 0, 0, 224, 172, 32, 47, 180, 45, 0, 60, 130, 0, 0, 0, 224, 172, 32, 47, 176, 27, 0, 60, 130, 0, 0, 0), -"array_index_data": PackedByteArray(0, 0, 2, 0, 1, 0, 0, 0, 3, 0, 2, 0, 4, 0, 6, 0, 5, 0, 4, 0, 7, 0, 6, 0, 8, 0, 10, 0, 9, 0, 8, 0, 11, 0, 10, 0, 12, 0, 14, 0, 13, 0, 12, 0, 15, 0, 14, 0, 16, 0, 18, 0, 17, 0, 16, 0, 19, 0, 18, 0, 20, 0, 22, 0, 21, 0, 20, 0, 23, 0, 22, 0, 24, 0, 26, 0, 25, 0, 24, 0, 27, 0, 26, 0), -"blend_shape_data": [], -"format": 98051, +"format": 4099, "index_count": 42, -"material": ExtResource( 5 ), +"index_data": PackedByteArray(0, 0, 2, 0, 1, 0, 0, 0, 3, 0, 2, 0, 4, 0, 6, 0, 5, 0, 4, 0, 7, 0, 6, 0, 8, 0, 10, 0, 9, 0, 8, 0, 11, 0, 10, 0, 12, 0, 14, 0, 13, 0, 12, 0, 15, 0, 14, 0, 16, 0, 18, 0, 17, 0, 16, 0, 19, 0, 18, 0, 20, 0, 22, 0, 21, 0, 20, 0, 23, 0, 22, 0, 24, 0, 26, 0, 25, 0, 24, 0, 27, 0, 26, 0), +"material": ExtResource( "5" ), "name": "Material.001", -"primitive": 4, -"skeleton_aabb": [], -"vertex_count": 28 -} +"primitive": 3, +"vertex_count": 28, +"vertex_data": PackedByteArray(0, 32, 94, 61, 0, 0, 0, 0, 0, 128, 182, 61, 0, 0, 0, 0, 0, 32, 94, 61, 0, 0, 0, 0, 0, 32, 85, 62, 0, 0, 0, 0, 0, 32, 94, 61, 0, 0, 228, 61, 0, 32, 85, 62, 0, 0, 0, 0, 0, 32, 94, 61, 0, 0, 228, 61, 0, 128, 182, 61, 0, 0, 0, 0, 0, 32, 94, 61, 0, 0, 0, 0, 0, 32, 85, 62, 0, 0, 96, 63, 0, 32, 5, 62, 0, 0, 0, 0, 0, 32, 85, 62, 0, 0, 96, 63, 0, 32, 5, 62, 0, 0, 228, 61, 0, 32, 85, 62, 0, 0, 96, 63, 0, 32, 94, 61, 0, 0, 228, 61, 0, 32, 85, 62, 0, 0, 96, 63, 0, 0, 156, 189, 0, 0, 0, 0, 0, 128, 182, 61, 0, 0, 96, 63, 0, 32, 94, 61, 0, 0, 0, 0, 0, 128, 182, 61, 0, 0, 96, 63, 0, 32, 94, 61, 0, 0, 228, 61, 0, 128, 182, 61, 0, 0, 96, 63, 0, 0, 156, 189, 0, 0, 228, 61, 0, 128, 182, 61, 0, 0, 96, 63, 0, 224, 170, 61, 0, 0, 0, 0, 0, 0, 118, 59, 0, 0, 0, 0, 0, 0, 156, 189, 0, 0, 0, 0, 0, 0, 118, 59, 0, 0, 0, 0, 0, 0, 156, 189, 0, 0, 228, 61, 0, 0, 118, 59, 0, 0, 0, 0, 0, 224, 170, 61, 0, 0, 228, 61, 0, 0, 118, 59, 0, 0, 0, 0, 0, 32, 5, 62, 0, 0, 0, 0, 0, 96, 72, 61, 196, 2, 0, 0, 0, 224, 170, 61, 0, 0, 0, 0, 0, 0, 118, 59, 196, 2, 0, 0, 0, 224, 170, 61, 0, 0, 228, 61, 0, 0, 118, 59, 196, 2, 0, 0, 0, 32, 5, 62, 0, 0, 228, 61, 0, 96, 72, 61, 196, 2, 0, 0, 0, 32, 5, 62, 0, 0, 0, 0, 0, 32, 85, 62, 254, 3, 0, 0, 0, 32, 5, 62, 0, 0, 0, 0, 0, 96, 72, 61, 254, 3, 0, 0, 0, 32, 5, 62, 0, 0, 228, 61, 0, 96, 72, 61, 254, 3, 0, 0, 0, 32, 5, 62, 0, 0, 228, 61, 0, 32, 85, 62, 254, 3, 0, 0, 0, 0, 156, 189, 0, 0, 0, 0, 0, 0, 118, 59, 0, 0, 0, 0, 0, 0, 156, 189, 0, 0, 0, 0, 0, 128, 182, 61, 0, 0, 0, 0, 0, 0, 156, 189, 0, 0, 228, 61, 0, 128, 182, 61, 0, 0, 0, 0, 0, 0, 156, 189, 0, 0, 228, 61, 0, 0, 118, 59, 0, 0, 0, 0) +}] -[sub_resource type="ArrayMesh" id=33] +[sub_resource type="ArrayMesh" id="33"] resource_name = "Cube.051" -surfaces/0 = { +_surfaces = [{ "aabb": AABB(-0.0226153, 0, -0.0188077, 0.0452306, 0.0413006, 0.0188177), -"array_data": PackedByteArray(27, 32, 73, 41, 0, 0, 0, 60, 127, 0, 0, 0, 27, 32, 222, 32, 0, 0, 0, 60, 127, 0, 0, 0, 27, 32, 222, 32, 151, 148, 0, 60, 127, 0, 0, 0, 27, 32, 73, 41, 151, 148, 0, 60, 127, 0, 0, 0, 94, 36, 125, 26, 208, 164, 0, 60, 90, 0, 167, 0, 202, 37, 125, 26, 197, 162, 0, 60, 90, 0, 167, 0, 202, 37, 0, 0, 197, 162, 0, 60, 90, 0, 167, 0, 94, 36, 0, 0, 208, 164, 0, 60, 90, 0, 167, 0, 202, 37, 125, 26, 0, 0, 0, 60, 127, 0, 0, 0, 202, 37, 0, 0, 0, 0, 0, 60, 127, 0, 0, 0, 202, 37, 0, 0, 197, 162, 0, 60, 127, 0, 0, 0, 202, 37, 125, 26, 197, 162, 0, 60, 127, 0, 0, 0, 252, 163, 125, 30, 0, 0, 0, 60, 130, 0, 0, 0, 252, 163, 222, 32, 0, 0, 0, 60, 130, 0, 0, 0, 252, 163, 222, 32, 75, 160, 0, 60, 130, 0, 0, 0, 252, 163, 125, 30, 75, 160, 0, 60, 130, 0, 0, 0, 6, 34, 222, 32, 9, 162, 0, 60, 84, 0, 162, 0, 252, 35, 222, 32, 75, 160, 0, 60, 84, 0, 162, 0, 252, 35, 125, 30, 75, 160, 0, 60, 84, 0, 162, 0, 6, 34, 125, 30, 9, 162, 0, 60, 84, 0, 162, 0, 76, 35, 125, 30, 185, 163, 0, 60, 87, 0, 165, 0, 214, 36, 125, 30, 116, 161, 0, 60, 87, 0, 165, 0, 214, 36, 125, 26, 116, 161, 0, 60, 87, 0, 165, 0, 76, 35, 125, 26, 185, 163, 0, 60, 87, 0, 165, 0, 252, 35, 222, 32, 0, 0, 0, 60, 127, 0, 0, 0, 252, 35, 125, 30, 0, 0, 0, 60, 127, 0, 0, 0, 252, 35, 125, 30, 75, 160, 0, 60, 127, 0, 0, 0, 252, 35, 222, 32, 75, 160, 0, 60, 127, 0, 0, 0, 214, 36, 125, 30, 0, 0, 0, 60, 127, 0, 0, 0, 214, 36, 125, 26, 0, 0, 0, 60, 127, 0, 0, 0, 214, 36, 125, 26, 116, 161, 0, 60, 127, 0, 0, 0, 214, 36, 125, 30, 116, 161, 0, 60, 127, 0, 0, 0, 202, 165, 0, 0, 0, 0, 0, 60, 130, 0, 0, 0, 202, 165, 125, 26, 0, 0, 0, 60, 130, 0, 0, 0, 202, 165, 125, 26, 197, 162, 0, 60, 130, 0, 0, 0, 202, 165, 0, 0, 197, 162, 0, 60, 130, 0, 0, 0, 214, 164, 125, 26, 0, 0, 0, 60, 130, 0, 0, 0, 214, 164, 125, 30, 0, 0, 0, 60, 130, 0, 0, 0, 214, 164, 125, 30, 116, 161, 0, 60, 130, 0, 0, 0, 214, 164, 125, 26, 116, 161, 0, 60, 130, 0, 0, 0, 76, 163, 125, 30, 185, 163, 0, 60, 0, 127, 0, 0, 214, 164, 125, 30, 116, 161, 0, 60, 0, 127, 0, 0, 252, 163, 125, 30, 75, 160, 0, 60, 0, 127, 0, 0, 6, 162, 125, 30, 9, 162, 0, 60, 0, 127, 0, 0, 214, 36, 125, 30, 0, 0, 0, 60, 0, 127, 0, 0, 214, 36, 125, 30, 116, 161, 0, 60, 0, 127, 0, 0, 252, 35, 125, 30, 75, 160, 0, 60, 0, 127, 0, 0, 252, 35, 125, 30, 0, 0, 0, 60, 0, 127, 0, 0, 214, 164, 125, 30, 0, 0, 0, 60, 0, 127, 0, 0, 252, 163, 125, 30, 0, 0, 0, 60, 0, 127, 0, 0, 94, 164, 125, 26, 208, 164, 0, 60, 0, 127, 0, 0, 202, 165, 125, 26, 197, 162, 0, 60, 0, 127, 0, 0, 214, 164, 125, 26, 116, 161, 0, 60, 0, 127, 0, 0, 76, 163, 125, 26, 185, 163, 0, 60, 0, 127, 0, 0, 202, 37, 125, 26, 0, 0, 0, 60, 0, 127, 0, 0, 202, 37, 125, 26, 197, 162, 0, 60, 0, 127, 0, 0, 214, 36, 125, 26, 116, 161, 0, 60, 0, 127, 0, 0, 214, 36, 125, 26, 0, 0, 0, 60, 0, 127, 0, 0, 202, 165, 125, 26, 0, 0, 0, 60, 0, 127, 0, 0, 214, 164, 125, 26, 0, 0, 0, 60, 0, 127, 0, 0, 2, 160, 148, 38, 204, 150, 0, 60, 0, 0, 129, 0, 254, 158, 179, 38, 204, 150, 0, 60, 0, 0, 129, 0, 123, 158, 108, 38, 204, 150, 0, 60, 0, 0, 129, 0, 130, 159, 78, 38, 204, 150, 0, 60, 0, 0, 129, 0, 2, 160, 148, 38, 151, 148, 0, 60, 203, 115, 0, 0, 254, 158, 179, 38, 151, 148, 0, 60, 203, 115, 0, 0, 254, 158, 179, 38, 204, 150, 0, 60, 203, 115, 0, 0, 2, 160, 148, 38, 204, 150, 0, 60, 203, 115, 0, 0, 123, 158, 108, 38, 151, 148, 0, 60, 53, 141, 0, 0, 130, 159, 78, 38, 151, 148, 0, 60, 53, 141, 0, 0, 130, 159, 78, 38, 204, 150, 0, 60, 53, 141, 0, 0, 123, 158, 108, 38, 204, 150, 0, 60, 53, 141, 0, 0, 254, 158, 179, 38, 151, 148, 0, 60, 115, 53, 0, 0, 123, 158, 108, 38, 151, 148, 0, 60, 115, 53, 0, 0, 123, 158, 108, 38, 204, 150, 0, 60, 115, 53, 0, 0, 254, 158, 179, 38, 204, 150, 0, 60, 115, 53, 0, 0, 130, 159, 78, 38, 151, 148, 0, 60, 141, 203, 0, 0, 2, 160, 148, 38, 151, 148, 0, 60, 141, 203, 0, 0, 2, 160, 148, 38, 204, 150, 0, 60, 141, 203, 0, 0, 130, 159, 78, 38, 204, 150, 0, 60, 141, 203, 0, 0, 202, 165, 125, 26, 197, 162, 0, 60, 167, 0, 167, 0, 94, 164, 125, 26, 208, 164, 0, 60, 167, 0, 167, 0, 94, 164, 0, 0, 208, 164, 0, 60, 167, 0, 167, 0, 202, 165, 0, 0, 197, 162, 0, 60, 167, 0, 167, 0, 252, 163, 222, 32, 0, 0, 0, 60, 0, 127, 0, 0, 252, 35, 222, 32, 0, 0, 0, 60, 0, 127, 0, 0, 6, 34, 222, 32, 9, 162, 0, 60, 0, 127, 0, 0, 6, 162, 222, 32, 9, 162, 0, 60, 0, 127, 0, 0, 252, 163, 222, 32, 75, 160, 0, 60, 172, 0, 162, 0, 6, 162, 222, 32, 9, 162, 0, 60, 172, 0, 162, 0, 6, 162, 125, 30, 9, 162, 0, 60, 172, 0, 162, 0, 252, 163, 125, 30, 75, 160, 0, 60, 172, 0, 162, 0, 214, 164, 125, 30, 116, 161, 0, 60, 169, 0, 165, 0, 76, 163, 125, 30, 185, 163, 0, 60, 169, 0, 165, 0, 76, 163, 125, 26, 185, 163, 0, 60, 169, 0, 165, 0, 214, 164, 125, 26, 116, 161, 0, 60, 169, 0, 165, 0, 76, 35, 125, 30, 185, 163, 0, 60, 0, 127, 0, 0, 6, 34, 125, 30, 9, 162, 0, 60, 0, 127, 0, 0, 94, 36, 125, 26, 208, 164, 0, 60, 0, 127, 0, 0, 76, 35, 125, 26, 185, 163, 0, 60, 0, 127, 0, 0, 252, 35, 222, 32, 75, 160, 0, 60, 0, 127, 0, 0, 94, 164, 125, 26, 208, 164, 0, 60, 0, 0, 129, 0, 94, 36, 125, 26, 208, 164, 0, 60, 0, 0, 129, 0, 94, 36, 0, 0, 208, 164, 0, 60, 0, 0, 129, 0, 94, 164, 0, 0, 208, 164, 0, 60, 0, 0, 129, 0, 76, 163, 125, 30, 185, 163, 0, 60, 0, 0, 129, 0, 76, 35, 125, 30, 185, 163, 0, 60, 0, 0, 129, 0, 76, 35, 125, 26, 185, 163, 0, 60, 0, 0, 129, 0, 76, 163, 125, 26, 185, 163, 0, 60, 0, 0, 129, 0, 6, 162, 222, 32, 9, 162, 0, 60, 0, 0, 129, 0, 6, 34, 222, 32, 9, 162, 0, 60, 0, 0, 129, 0, 6, 34, 125, 30, 9, 162, 0, 60, 0, 0, 129, 0, 6, 162, 125, 30, 9, 162, 0, 60, 0, 0, 129, 0, 252, 163, 222, 32, 75, 160, 0, 60, 0, 127, 0, 0, 119, 158, 7, 36, 151, 148, 0, 60, 127, 0, 0, 0, 119, 158, 19, 41, 151, 148, 0, 60, 127, 0, 0, 0, 119, 158, 19, 41, 204, 146, 0, 60, 127, 0, 0, 0, 119, 158, 7, 36, 204, 146, 0, 60, 127, 0, 0, 0, 27, 32, 73, 41, 151, 148, 0, 60, 0, 0, 129, 0, 27, 32, 222, 32, 151, 148, 0, 60, 0, 0, 129, 0, 210, 30, 7, 36, 151, 148, 0, 60, 0, 0, 129, 0, 210, 30, 19, 41, 151, 148, 0, 60, 0, 0, 129, 0, 119, 158, 19, 41, 204, 146, 0, 60, 0, 0, 129, 0, 62, 138, 19, 41, 204, 146, 0, 60, 0, 0, 129, 0, 62, 138, 7, 36, 204, 146, 0, 60, 0, 0, 129, 0, 119, 158, 7, 36, 204, 146, 0, 60, 0, 0, 129, 0, 119, 158, 19, 41, 151, 148, 0, 60, 0, 130, 0, 0, 62, 138, 19, 41, 151, 148, 0, 60, 0, 130, 0, 0, 62, 138, 19, 41, 204, 146, 0, 60, 0, 130, 0, 0, 119, 158, 19, 41, 204, 146, 0, 60, 0, 130, 0, 0, 210, 30, 7, 36, 151, 148, 0, 60, 0, 127, 0, 0, 106, 16, 7, 36, 151, 148, 0, 60, 0, 127, 0, 0, 106, 16, 7, 36, 204, 146, 0, 60, 0, 127, 0, 0, 210, 30, 7, 36, 204, 146, 0, 60, 0, 127, 0, 0, 210, 30, 19, 41, 151, 148, 0, 60, 130, 0, 0, 0, 210, 30, 7, 36, 151, 148, 0, 60, 130, 0, 0, 0, 210, 30, 7, 36, 204, 146, 0, 60, 130, 0, 0, 0, 210, 30, 19, 41, 204, 146, 0, 60, 130, 0, 0, 0, 106, 16, 19, 41, 151, 148, 0, 60, 0, 0, 129, 0, 27, 32, 73, 41, 0, 0, 0, 60, 0, 127, 0, 0, 27, 32, 73, 41, 151, 148, 0, 60, 0, 127, 0, 0, 27, 160, 73, 41, 151, 148, 0, 60, 0, 127, 0, 0, 27, 160, 73, 41, 0, 0, 0, 60, 0, 127, 0, 0, 27, 160, 222, 32, 151, 148, 0, 60, 0, 0, 129, 0, 63, 138, 7, 36, 151, 148, 0, 60, 0, 0, 129, 0, 106, 16, 7, 36, 151, 148, 0, 60, 0, 0, 129, 0, 63, 138, 7, 36, 151, 148, 0, 60, 0, 127, 0, 0, 119, 158, 7, 36, 151, 148, 0, 60, 0, 127, 0, 0, 119, 158, 7, 36, 204, 146, 0, 60, 0, 127, 0, 0, 62, 138, 7, 36, 204, 146, 0, 60, 0, 127, 0, 0, 106, 16, 19, 41, 204, 146, 0, 60, 0, 0, 129, 0, 210, 30, 19, 41, 204, 146, 0, 60, 0, 0, 129, 0, 210, 30, 7, 36, 204, 146, 0, 60, 0, 0, 129, 0, 106, 16, 7, 36, 204, 146, 0, 60, 0, 0, 129, 0, 119, 158, 7, 36, 151, 148, 0, 60, 0, 0, 129, 0, 27, 160, 73, 41, 151, 148, 0, 60, 0, 0, 129, 0, 62, 138, 19, 41, 151, 148, 0, 60, 0, 0, 129, 0, 119, 158, 19, 41, 151, 148, 0, 60, 0, 0, 129, 0, 106, 16, 19, 41, 151, 148, 0, 60, 0, 130, 0, 0, 210, 30, 19, 41, 151, 148, 0, 60, 0, 130, 0, 0, 210, 30, 19, 41, 204, 146, 0, 60, 0, 130, 0, 0, 106, 16, 19, 41, 204, 146, 0, 60, 0, 130, 0, 0, 27, 160, 222, 32, 0, 0, 0, 60, 130, 0, 0, 0, 27, 160, 73, 41, 0, 0, 0, 60, 130, 0, 0, 0, 27, 160, 73, 41, 151, 148, 0, 60, 130, 0, 0, 0, 27, 160, 222, 32, 151, 148, 0, 60, 130, 0, 0, 0, 106, 16, 19, 41, 204, 146, 0, 60, 127, 0, 0, 0, 106, 16, 7, 36, 204, 146, 0, 60, 127, 0, 0, 0, 106, 16, 7, 36, 151, 148, 0, 60, 127, 0, 0, 0, 106, 16, 19, 41, 151, 148, 0, 60, 127, 0, 0, 0, 106, 16, 7, 36, 204, 146, 0, 60, 0, 130, 0, 0, 62, 138, 7, 36, 204, 146, 0, 60, 0, 130, 0, 0, 63, 138, 7, 36, 151, 148, 0, 60, 0, 130, 0, 0, 106, 16, 7, 36, 151, 148, 0, 60, 0, 130, 0, 0, 62, 138, 7, 36, 204, 146, 0, 60, 130, 0, 0, 0, 62, 138, 19, 41, 204, 146, 0, 60, 130, 0, 0, 0, 62, 138, 19, 41, 151, 148, 0, 60, 130, 0, 0, 0, 63, 138, 7, 36, 151, 148, 0, 60, 130, 0, 0, 0), -"array_index_data": PackedByteArray(0, 0, 2, 0, 1, 0, 0, 0, 3, 0, 2, 0, 4, 0, 6, 0, 5, 0, 4, 0, 7, 0, 6, 0, 8, 0, 10, 0, 9, 0, 8, 0, 11, 0, 10, 0, 12, 0, 14, 0, 13, 0, 12, 0, 15, 0, 14, 0, 16, 0, 18, 0, 17, 0, 16, 0, 19, 0, 18, 0, 20, 0, 22, 0, 21, 0, 20, 0, 23, 0, 22, 0, 24, 0, 26, 0, 25, 0, 24, 0, 27, 0, 26, 0, 28, 0, 30, 0, 29, 0, 28, 0, 31, 0, 30, 0, 32, 0, 34, 0, 33, 0, 32, 0, 35, 0, 34, 0, 36, 0, 38, 0, 37, 0, 36, 0, 39, 0, 38, 0, 40, 0, 42, 0, 41, 0, 40, 0, 43, 0, 42, 0, 44, 0, 46, 0, 45, 0, 44, 0, 47, 0, 46, 0, 41, 0, 49, 0, 48, 0, 41, 0, 42, 0, 49, 0, 50, 0, 52, 0, 51, 0, 50, 0, 53, 0, 52, 0, 54, 0, 56, 0, 55, 0, 54, 0, 57, 0, 56, 0, 51, 0, 59, 0, 58, 0, 51, 0, 52, 0, 59, 0, 60, 0, 62, 0, 61, 0, 60, 0, 63, 0, 62, 0, 64, 0, 66, 0, 65, 0, 64, 0, 67, 0, 66, 0, 68, 0, 70, 0, 69, 0, 68, 0, 71, 0, 70, 0, 72, 0, 74, 0, 73, 0, 72, 0, 75, 0, 74, 0, 76, 0, 78, 0, 77, 0, 76, 0, 79, 0, 78, 0, 80, 0, 82, 0, 81, 0, 80, 0, 83, 0, 82, 0, 84, 0, 86, 0, 85, 0, 84, 0, 87, 0, 86, 0, 88, 0, 90, 0, 89, 0, 88, 0, 91, 0, 90, 0, 92, 0, 94, 0, 93, 0, 92, 0, 95, 0, 94, 0, 96, 0, 43, 0, 40, 0, 96, 0, 97, 0, 43, 0, 98, 0, 53, 0, 50, 0, 98, 0, 99, 0, 53, 0, 55, 0, 99, 0, 98, 0, 55, 0, 56, 0, 99, 0, 85, 0, 86, 0, 100, 0, 101, 0, 103, 0, 102, 0, 101, 0, 104, 0, 103, 0, 105, 0, 107, 0, 106, 0, 105, 0, 108, 0, 107, 0, 45, 0, 97, 0, 96, 0, 45, 0, 46, 0, 97, 0, 109, 0, 111, 0, 110, 0, 109, 0, 112, 0, 111, 0, 84, 0, 113, 0, 87, 0, 114, 0, 116, 0, 115, 0, 114, 0, 117, 0, 116, 0, 118, 0, 120, 0, 119, 0, 118, 0, 121, 0, 120, 0, 122, 0, 124, 0, 123, 0, 122, 0, 125, 0, 124, 0, 126, 0, 128, 0, 127, 0, 126, 0, 129, 0, 128, 0, 130, 0, 132, 0, 131, 0, 130, 0, 133, 0, 132, 0, 134, 0, 136, 0, 135, 0, 134, 0, 137, 0, 136, 0, 118, 0, 138, 0, 121, 0, 139, 0, 141, 0, 140, 0, 139, 0, 142, 0, 141, 0, 143, 0, 145, 0, 144, 0, 143, 0, 119, 0, 145, 0, 146, 0, 148, 0, 147, 0, 146, 0, 149, 0, 148, 0, 150, 0, 152, 0, 151, 0, 150, 0, 153, 0, 152, 0, 143, 0, 144, 0, 154, 0, 155, 0, 157, 0, 156, 0, 158, 0, 160, 0, 159, 0, 158, 0, 161, 0, 160, 0, 162, 0, 164, 0, 163, 0, 162, 0, 165, 0, 164, 0, 119, 0, 120, 0, 145, 0, 143, 0, 157, 0, 155, 0, 143, 0, 154, 0, 157, 0, 138, 0, 144, 0, 145, 0, 138, 0, 156, 0, 144, 0, 158, 0, 128, 0, 161, 0, 158, 0, 127, 0, 128, 0, 166, 0, 168, 0, 167, 0, 166, 0, 169, 0, 168, 0, 170, 0, 172, 0, 171, 0, 170, 0, 173, 0, 172, 0, 174, 0, 176, 0, 175, 0, 174, 0, 177, 0, 176, 0, 118, 0, 156, 0, 138, 0, 118, 0, 155, 0, 156, 0), -"blend_shape_data": [], -"format": 98051, +"format": 4099, "index_count": 324, -"material": ExtResource( 6 ), +"index_data": PackedByteArray(0, 0, 2, 0, 1, 0, 0, 0, 3, 0, 2, 0, 4, 0, 6, 0, 5, 0, 4, 0, 7, 0, 6, 0, 8, 0, 10, 0, 9, 0, 8, 0, 11, 0, 10, 0, 12, 0, 14, 0, 13, 0, 12, 0, 15, 0, 14, 0, 16, 0, 18, 0, 17, 0, 16, 0, 19, 0, 18, 0, 20, 0, 22, 0, 21, 0, 20, 0, 23, 0, 22, 0, 24, 0, 26, 0, 25, 0, 24, 0, 27, 0, 26, 0, 28, 0, 30, 0, 29, 0, 28, 0, 31, 0, 30, 0, 32, 0, 34, 0, 33, 0, 32, 0, 35, 0, 34, 0, 36, 0, 38, 0, 37, 0, 36, 0, 39, 0, 38, 0, 40, 0, 42, 0, 41, 0, 40, 0, 43, 0, 42, 0, 44, 0, 46, 0, 45, 0, 44, 0, 47, 0, 46, 0, 41, 0, 49, 0, 48, 0, 41, 0, 42, 0, 49, 0, 50, 0, 52, 0, 51, 0, 50, 0, 53, 0, 52, 0, 54, 0, 56, 0, 55, 0, 54, 0, 57, 0, 56, 0, 51, 0, 59, 0, 58, 0, 51, 0, 52, 0, 59, 0, 60, 0, 62, 0, 61, 0, 60, 0, 63, 0, 62, 0, 64, 0, 66, 0, 65, 0, 64, 0, 67, 0, 66, 0, 68, 0, 70, 0, 69, 0, 68, 0, 71, 0, 70, 0, 72, 0, 74, 0, 73, 0, 72, 0, 75, 0, 74, 0, 76, 0, 78, 0, 77, 0, 76, 0, 79, 0, 78, 0, 80, 0, 82, 0, 81, 0, 80, 0, 83, 0, 82, 0, 84, 0, 86, 0, 85, 0, 84, 0, 87, 0, 86, 0, 88, 0, 90, 0, 89, 0, 88, 0, 91, 0, 90, 0, 92, 0, 94, 0, 93, 0, 92, 0, 95, 0, 94, 0, 96, 0, 43, 0, 40, 0, 96, 0, 97, 0, 43, 0, 98, 0, 53, 0, 50, 0, 98, 0, 99, 0, 53, 0, 55, 0, 99, 0, 98, 0, 55, 0, 56, 0, 99, 0, 85, 0, 86, 0, 100, 0, 101, 0, 103, 0, 102, 0, 101, 0, 104, 0, 103, 0, 105, 0, 107, 0, 106, 0, 105, 0, 108, 0, 107, 0, 45, 0, 97, 0, 96, 0, 45, 0, 46, 0, 97, 0, 109, 0, 111, 0, 110, 0, 109, 0, 112, 0, 111, 0, 84, 0, 113, 0, 87, 0, 114, 0, 116, 0, 115, 0, 114, 0, 117, 0, 116, 0, 118, 0, 120, 0, 119, 0, 118, 0, 121, 0, 120, 0, 122, 0, 124, 0, 123, 0, 122, 0, 125, 0, 124, 0, 126, 0, 128, 0, 127, 0, 126, 0, 129, 0, 128, 0, 130, 0, 132, 0, 131, 0, 130, 0, 133, 0, 132, 0, 134, 0, 136, 0, 135, 0, 134, 0, 137, 0, 136, 0, 118, 0, 138, 0, 121, 0, 139, 0, 141, 0, 140, 0, 139, 0, 142, 0, 141, 0, 143, 0, 145, 0, 144, 0, 143, 0, 119, 0, 145, 0, 146, 0, 148, 0, 147, 0, 146, 0, 149, 0, 148, 0, 150, 0, 152, 0, 151, 0, 150, 0, 153, 0, 152, 0, 143, 0, 144, 0, 154, 0, 155, 0, 157, 0, 156, 0, 158, 0, 160, 0, 159, 0, 158, 0, 161, 0, 160, 0, 162, 0, 164, 0, 163, 0, 162, 0, 165, 0, 164, 0, 119, 0, 120, 0, 145, 0, 143, 0, 157, 0, 155, 0, 143, 0, 154, 0, 157, 0, 138, 0, 144, 0, 145, 0, 138, 0, 156, 0, 144, 0, 158, 0, 128, 0, 161, 0, 158, 0, 127, 0, 128, 0, 166, 0, 168, 0, 167, 0, 166, 0, 169, 0, 168, 0, 170, 0, 172, 0, 171, 0, 170, 0, 173, 0, 172, 0, 174, 0, 176, 0, 175, 0, 174, 0, 177, 0, 176, 0, 118, 0, 156, 0, 138, 0, 118, 0, 155, 0, 156, 0), +"material": ExtResource( "6" ), "name": "Material.002", -"primitive": 4, -"skeleton_aabb": [], -"vertex_count": 178 -} +"primitive": 3, +"vertex_count": 178, +"vertex_data": PackedByteArray(0, 96, 3, 60, 0, 32, 41, 61, 0, 0, 0, 0, 254, 3, 0, 0, 0, 96, 3, 60, 0, 192, 27, 60, 0, 0, 0, 0, 254, 3, 0, 0, 0, 96, 3, 60, 0, 192, 27, 60, 0, 224, 146, 186, 254, 3, 0, 0, 0, 96, 3, 60, 0, 32, 41, 61, 0, 224, 146, 186, 254, 3, 0, 0, 0, 192, 139, 60, 0, 160, 79, 59, 0, 0, 154, 188, 212, 2, 0, 0, 0, 64, 185, 60, 0, 160, 79, 59, 0, 160, 88, 188, 212, 2, 0, 0, 0, 64, 185, 60, 0, 0, 0, 0, 0, 160, 88, 188, 212, 2, 0, 0, 0, 192, 139, 60, 0, 0, 0, 0, 0, 0, 154, 188, 212, 2, 0, 0, 0, 64, 185, 60, 0, 160, 79, 59, 0, 0, 0, 0, 254, 3, 0, 0, 0, 64, 185, 60, 0, 0, 0, 0, 0, 0, 0, 0, 254, 3, 0, 0, 0, 64, 185, 60, 0, 0, 0, 0, 0, 160, 88, 188, 254, 3, 0, 0, 0, 64, 185, 60, 0, 160, 79, 59, 0, 160, 88, 188, 254, 3, 0, 0, 0, 128, 127, 188, 0, 160, 207, 59, 0, 0, 0, 0, 0, 0, 0, 0, 0, 128, 127, 188, 0, 192, 27, 60, 0, 0, 0, 0, 0, 0, 0, 0, 0, 128, 127, 188, 0, 192, 27, 60, 0, 96, 9, 188, 0, 0, 0, 0, 0, 128, 127, 188, 0, 160, 207, 59, 0, 96, 9, 188, 0, 0, 0, 0, 0, 192, 64, 60, 0, 192, 27, 60, 0, 32, 65, 188, 164, 2, 0, 0, 0, 128, 127, 60, 0, 192, 27, 60, 0, 96, 9, 188, 164, 2, 0, 0, 0, 128, 127, 60, 0, 160, 207, 59, 0, 96, 9, 188, 164, 2, 0, 0, 0, 192, 64, 60, 0, 160, 207, 59, 0, 32, 65, 188, 164, 2, 0, 0, 0, 128, 105, 60, 0, 160, 207, 59, 0, 32, 119, 188, 188, 2, 0, 0, 0, 192, 154, 60, 0, 160, 207, 59, 0, 128, 46, 188, 188, 2, 0, 0, 0, 192, 154, 60, 0, 160, 79, 59, 0, 128, 46, 188, 188, 2, 0, 0, 0, 128, 105, 60, 0, 160, 79, 59, 0, 32, 119, 188, 188, 2, 0, 0, 0, 128, 127, 60, 0, 192, 27, 60, 0, 0, 0, 0, 254, 3, 0, 0, 0, 128, 127, 60, 0, 160, 207, 59, 0, 0, 0, 0, 254, 3, 0, 0, 0, 128, 127, 60, 0, 160, 207, 59, 0, 96, 9, 188, 254, 3, 0, 0, 0, 128, 127, 60, 0, 192, 27, 60, 0, 96, 9, 188, 254, 3, 0, 0, 0, 192, 154, 60, 0, 160, 207, 59, 0, 0, 0, 0, 254, 3, 0, 0, 0, 192, 154, 60, 0, 160, 79, 59, 0, 0, 0, 0, 254, 3, 0, 0, 0, 192, 154, 60, 0, 160, 79, 59, 0, 128, 46, 188, 254, 3, 0, 0, 0, 192, 154, 60, 0, 160, 207, 59, 0, 128, 46, 188, 254, 3, 0, 0, 0, 64, 185, 188, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 64, 185, 188, 0, 160, 79, 59, 0, 0, 0, 0, 0, 0, 0, 0, 0, 64, 185, 188, 0, 160, 79, 59, 0, 160, 88, 188, 0, 0, 0, 0, 0, 64, 185, 188, 0, 0, 0, 0, 0, 160, 88, 188, 0, 0, 0, 0, 0, 192, 154, 188, 0, 160, 79, 59, 0, 0, 0, 0, 0, 0, 0, 0, 0, 192, 154, 188, 0, 160, 207, 59, 0, 0, 0, 0, 0, 0, 0, 0, 0, 192, 154, 188, 0, 160, 207, 59, 0, 128, 46, 188, 0, 0, 0, 0, 0, 192, 154, 188, 0, 160, 79, 59, 0, 128, 46, 188, 0, 0, 0, 0, 0, 128, 105, 188, 0, 160, 207, 59, 0, 32, 119, 188, 0, 248, 15, 0, 0, 192, 154, 188, 0, 160, 207, 59, 0, 128, 46, 188, 0, 248, 15, 0, 0, 128, 127, 188, 0, 160, 207, 59, 0, 96, 9, 188, 0, 248, 15, 0, 0, 192, 64, 188, 0, 160, 207, 59, 0, 32, 65, 188, 0, 248, 15, 0, 0, 192, 154, 60, 0, 160, 207, 59, 0, 0, 0, 0, 0, 248, 15, 0, 0, 192, 154, 60, 0, 160, 207, 59, 0, 128, 46, 188, 0, 248, 15, 0, 0, 128, 127, 60, 0, 160, 207, 59, 0, 96, 9, 188, 0, 248, 15, 0, 0, 128, 127, 60, 0, 160, 207, 59, 0, 0, 0, 0, 0, 248, 15, 0, 0, 192, 154, 188, 0, 160, 207, 59, 0, 0, 0, 0, 0, 248, 15, 0, 0, 128, 127, 188, 0, 160, 207, 59, 0, 0, 0, 0, 0, 248, 15, 0, 0, 192, 139, 188, 0, 160, 79, 59, 0, 0, 154, 188, 0, 248, 15, 0, 0, 64, 185, 188, 0, 160, 79, 59, 0, 160, 88, 188, 0, 248, 15, 0, 0, 192, 154, 188, 0, 160, 79, 59, 0, 128, 46, 188, 0, 248, 15, 0, 0, 128, 105, 188, 0, 160, 79, 59, 0, 32, 119, 188, 0, 248, 15, 0, 0, 64, 185, 60, 0, 160, 79, 59, 0, 0, 0, 0, 0, 248, 15, 0, 0, 64, 185, 60, 0, 160, 79, 59, 0, 160, 88, 188, 0, 248, 15, 0, 0, 192, 154, 60, 0, 160, 79, 59, 0, 128, 46, 188, 0, 248, 15, 0, 0, 192, 154, 60, 0, 160, 79, 59, 0, 0, 0, 0, 0, 248, 15, 0, 0, 64, 185, 188, 0, 160, 79, 59, 0, 0, 0, 0, 0, 248, 15, 0, 0, 192, 154, 188, 0, 160, 79, 59, 0, 0, 0, 0, 0, 248, 15, 0, 0, 64, 0, 188, 0, 128, 210, 60, 0, 128, 217, 186, 0, 0, 0, 0, 0, 192, 223, 187, 0, 96, 214, 60, 0, 128, 217, 186, 0, 0, 0, 0, 0, 96, 207, 187, 0, 128, 205, 60, 0, 128, 217, 186, 0, 0, 0, 0, 0, 64, 240, 187, 0, 192, 201, 60, 0, 128, 217, 186, 0, 0, 0, 0, 0, 64, 0, 188, 0, 128, 210, 60, 0, 224, 146, 186, 0, 120, 14, 0, 0, 192, 223, 187, 0, 96, 214, 60, 0, 224, 146, 186, 0, 120, 14, 0, 0, 192, 223, 187, 0, 96, 214, 60, 0, 128, 217, 186, 0, 120, 14, 0, 0, 64, 0, 188, 0, 128, 210, 60, 0, 128, 217, 186, 0, 120, 14, 0, 0, 96, 207, 187, 0, 128, 205, 60, 0, 224, 146, 186, 170, 1, 0, 0, 0, 64, 240, 187, 0, 192, 201, 60, 0, 224, 146, 186, 170, 1, 0, 0, 0, 64, 240, 187, 0, 192, 201, 60, 0, 128, 217, 186, 170, 1, 0, 0, 0, 96, 207, 187, 0, 128, 205, 60, 0, 128, 217, 186, 170, 1, 0, 0, 0, 192, 223, 187, 0, 96, 214, 60, 0, 224, 146, 186, 158, 171, 6, 0, 0, 96, 207, 187, 0, 128, 205, 60, 0, 224, 146, 186, 158, 171, 6, 0, 0, 96, 207, 187, 0, 128, 205, 60, 0, 128, 217, 186, 158, 171, 6, 0, 0, 192, 223, 187, 0, 96, 214, 60, 0, 128, 217, 186, 158, 171, 6, 0, 0, 64, 240, 187, 0, 192, 201, 60, 0, 224, 146, 186, 0, 0, 0, 0, 0, 64, 0, 188, 0, 128, 210, 60, 0, 224, 146, 186, 0, 0, 0, 0, 0, 64, 0, 188, 0, 128, 210, 60, 0, 128, 217, 186, 0, 0, 0, 0, 0, 64, 240, 187, 0, 192, 201, 60, 0, 128, 217, 186, 0, 0, 0, 0, 0, 64, 185, 188, 0, 160, 79, 59, 0, 160, 88, 188, 0, 0, 0, 0, 0, 192, 139, 188, 0, 160, 79, 59, 0, 0, 154, 188, 0, 0, 0, 0, 0, 192, 139, 188, 0, 0, 0, 0, 0, 0, 154, 188, 0, 0, 0, 0, 0, 64, 185, 188, 0, 0, 0, 0, 0, 160, 88, 188, 0, 0, 0, 0, 0, 128, 127, 188, 0, 192, 27, 60, 0, 0, 0, 0, 0, 248, 15, 0, 0, 128, 127, 60, 0, 192, 27, 60, 0, 0, 0, 0, 0, 248, 15, 0, 0, 192, 64, 60, 0, 192, 27, 60, 0, 32, 65, 188, 0, 248, 15, 0, 0, 192, 64, 188, 0, 192, 27, 60, 0, 32, 65, 188, 0, 248, 15, 0, 0, 128, 127, 188, 0, 192, 27, 60, 0, 96, 9, 188, 0, 0, 0, 0, 0, 192, 64, 188, 0, 192, 27, 60, 0, 32, 65, 188, 0, 0, 0, 0, 0, 192, 64, 188, 0, 160, 207, 59, 0, 32, 65, 188, 0, 0, 0, 0, 0, 128, 127, 188, 0, 160, 207, 59, 0, 96, 9, 188, 0, 0, 0, 0, 0, 192, 154, 188, 0, 160, 207, 59, 0, 128, 46, 188, 0, 0, 0, 0, 0, 128, 105, 188, 0, 160, 207, 59, 0, 32, 119, 188, 0, 0, 0, 0, 0, 128, 105, 188, 0, 160, 79, 59, 0, 32, 119, 188, 0, 0, 0, 0, 0, 192, 154, 188, 0, 160, 79, 59, 0, 128, 46, 188, 0, 0, 0, 0, 0, 128, 105, 60, 0, 160, 207, 59, 0, 32, 119, 188, 0, 248, 15, 0, 0, 192, 64, 60, 0, 160, 207, 59, 0, 32, 65, 188, 0, 248, 15, 0, 0, 192, 139, 60, 0, 160, 79, 59, 0, 0, 154, 188, 0, 248, 15, 0, 0, 128, 105, 60, 0, 160, 79, 59, 0, 32, 119, 188, 0, 248, 15, 0, 0, 128, 127, 60, 0, 192, 27, 60, 0, 96, 9, 188, 0, 248, 15, 0, 0, 192, 139, 188, 0, 160, 79, 59, 0, 0, 154, 188, 0, 0, 0, 0, 0, 192, 139, 60, 0, 160, 79, 59, 0, 0, 154, 188, 0, 0, 0, 0, 0, 192, 139, 60, 0, 0, 0, 0, 0, 0, 154, 188, 0, 0, 0, 0, 0, 192, 139, 188, 0, 0, 0, 0, 0, 0, 154, 188, 0, 0, 0, 0, 0, 128, 105, 188, 0, 160, 207, 59, 0, 32, 119, 188, 0, 0, 0, 0, 0, 128, 105, 60, 0, 160, 207, 59, 0, 32, 119, 188, 0, 0, 0, 0, 0, 128, 105, 60, 0, 160, 79, 59, 0, 32, 119, 188, 0, 0, 0, 0, 0, 128, 105, 188, 0, 160, 79, 59, 0, 32, 119, 188, 0, 0, 0, 0, 0, 192, 64, 188, 0, 192, 27, 60, 0, 32, 65, 188, 0, 0, 0, 0, 0, 192, 64, 60, 0, 192, 27, 60, 0, 32, 65, 188, 0, 0, 0, 0, 0, 192, 64, 60, 0, 160, 207, 59, 0, 32, 65, 188, 0, 0, 0, 0, 0, 192, 64, 188, 0, 160, 207, 59, 0, 32, 65, 188, 0, 0, 0, 0, 0, 128, 127, 188, 0, 192, 27, 60, 0, 96, 9, 188, 0, 248, 15, 0, 0, 224, 206, 187, 0, 224, 128, 60, 0, 224, 146, 186, 254, 3, 0, 0, 0, 224, 206, 187, 0, 96, 34, 61, 0, 224, 146, 186, 254, 3, 0, 0, 0, 224, 206, 187, 0, 96, 34, 61, 0, 128, 89, 186, 254, 3, 0, 0, 0, 224, 206, 187, 0, 224, 128, 60, 0, 128, 89, 186, 254, 3, 0, 0, 0, 96, 3, 60, 0, 32, 41, 61, 0, 224, 146, 186, 0, 0, 0, 0, 0, 96, 3, 60, 0, 192, 27, 60, 0, 224, 146, 186, 0, 0, 0, 0, 0, 64, 218, 59, 0, 224, 128, 60, 0, 224, 146, 186, 0, 0, 0, 0, 0, 64, 218, 59, 0, 96, 34, 61, 0, 224, 146, 186, 0, 0, 0, 0, 0, 224, 206, 187, 0, 96, 34, 61, 0, 128, 89, 186, 0, 0, 0, 0, 0, 192, 71, 185, 0, 96, 34, 61, 0, 128, 89, 186, 0, 0, 0, 0, 0, 192, 71, 185, 0, 224, 128, 60, 0, 128, 89, 186, 0, 0, 0, 0, 0, 224, 206, 187, 0, 224, 128, 60, 0, 128, 89, 186, 0, 0, 0, 0, 0, 224, 206, 187, 0, 96, 34, 61, 0, 224, 146, 186, 0, 0, 0, 0, 0, 192, 71, 185, 0, 96, 34, 61, 0, 224, 146, 186, 0, 0, 0, 0, 0, 192, 71, 185, 0, 96, 34, 61, 0, 128, 89, 186, 0, 0, 0, 0, 0, 224, 206, 187, 0, 96, 34, 61, 0, 128, 89, 186, 0, 0, 0, 0, 0, 64, 218, 59, 0, 224, 128, 60, 0, 224, 146, 186, 0, 248, 15, 0, 0, 64, 13, 58, 0, 224, 128, 60, 0, 224, 146, 186, 0, 248, 15, 0, 0, 64, 13, 58, 0, 224, 128, 60, 0, 128, 89, 186, 0, 248, 15, 0, 0, 64, 218, 59, 0, 224, 128, 60, 0, 128, 89, 186, 0, 248, 15, 0, 0, 64, 218, 59, 0, 96, 34, 61, 0, 224, 146, 186, 0, 0, 0, 0, 0, 64, 218, 59, 0, 224, 128, 60, 0, 224, 146, 186, 0, 0, 0, 0, 0, 64, 218, 59, 0, 224, 128, 60, 0, 128, 89, 186, 0, 0, 0, 0, 0, 64, 218, 59, 0, 96, 34, 61, 0, 128, 89, 186, 0, 0, 0, 0, 0, 64, 13, 58, 0, 96, 34, 61, 0, 224, 146, 186, 0, 0, 0, 0, 0, 96, 3, 60, 0, 32, 41, 61, 0, 0, 0, 0, 0, 248, 15, 0, 0, 96, 3, 60, 0, 32, 41, 61, 0, 224, 146, 186, 0, 248, 15, 0, 0, 96, 3, 188, 0, 32, 41, 61, 0, 224, 146, 186, 0, 248, 15, 0, 0, 96, 3, 188, 0, 32, 41, 61, 0, 0, 0, 0, 0, 248, 15, 0, 0, 96, 3, 188, 0, 192, 27, 60, 0, 224, 146, 186, 0, 0, 0, 0, 0, 224, 71, 185, 0, 224, 128, 60, 0, 224, 146, 186, 0, 0, 0, 0, 0, 64, 13, 58, 0, 224, 128, 60, 0, 224, 146, 186, 0, 0, 0, 0, 0, 224, 71, 185, 0, 224, 128, 60, 0, 224, 146, 186, 0, 248, 15, 0, 0, 224, 206, 187, 0, 224, 128, 60, 0, 224, 146, 186, 0, 248, 15, 0, 0, 224, 206, 187, 0, 224, 128, 60, 0, 128, 89, 186, 0, 248, 15, 0, 0, 192, 71, 185, 0, 224, 128, 60, 0, 128, 89, 186, 0, 248, 15, 0, 0, 64, 13, 58, 0, 96, 34, 61, 0, 128, 89, 186, 0, 0, 0, 0, 0, 64, 218, 59, 0, 96, 34, 61, 0, 128, 89, 186, 0, 0, 0, 0, 0, 64, 218, 59, 0, 224, 128, 60, 0, 128, 89, 186, 0, 0, 0, 0, 0, 64, 13, 58, 0, 224, 128, 60, 0, 128, 89, 186, 0, 0, 0, 0, 0, 224, 206, 187, 0, 224, 128, 60, 0, 224, 146, 186, 0, 0, 0, 0, 0, 96, 3, 188, 0, 32, 41, 61, 0, 224, 146, 186, 0, 0, 0, 0, 0, 192, 71, 185, 0, 96, 34, 61, 0, 224, 146, 186, 0, 0, 0, 0, 0, 224, 206, 187, 0, 96, 34, 61, 0, 224, 146, 186, 0, 0, 0, 0, 0, 64, 13, 58, 0, 96, 34, 61, 0, 224, 146, 186, 0, 0, 0, 0, 0, 64, 218, 59, 0, 96, 34, 61, 0, 224, 146, 186, 0, 0, 0, 0, 0, 64, 218, 59, 0, 96, 34, 61, 0, 128, 89, 186, 0, 0, 0, 0, 0, 64, 13, 58, 0, 96, 34, 61, 0, 128, 89, 186, 0, 0, 0, 0, 0, 96, 3, 188, 0, 192, 27, 60, 0, 0, 0, 0, 0, 0, 0, 0, 0, 96, 3, 188, 0, 32, 41, 61, 0, 0, 0, 0, 0, 0, 0, 0, 0, 96, 3, 188, 0, 32, 41, 61, 0, 224, 146, 186, 0, 0, 0, 0, 0, 96, 3, 188, 0, 192, 27, 60, 0, 224, 146, 186, 0, 0, 0, 0, 0, 64, 13, 58, 0, 96, 34, 61, 0, 128, 89, 186, 254, 3, 0, 0, 0, 64, 13, 58, 0, 224, 128, 60, 0, 128, 89, 186, 254, 3, 0, 0, 0, 64, 13, 58, 0, 224, 128, 60, 0, 224, 146, 186, 254, 3, 0, 0, 0, 64, 13, 58, 0, 96, 34, 61, 0, 224, 146, 186, 254, 3, 0, 0, 0, 64, 13, 58, 0, 224, 128, 60, 0, 128, 89, 186, 0, 0, 0, 0, 0, 192, 71, 185, 0, 224, 128, 60, 0, 128, 89, 186, 0, 0, 0, 0, 0, 224, 71, 185, 0, 224, 128, 60, 0, 224, 146, 186, 0, 0, 0, 0, 0, 64, 13, 58, 0, 224, 128, 60, 0, 224, 146, 186, 0, 0, 0, 0, 0, 192, 71, 185, 0, 224, 128, 60, 0, 128, 89, 186, 0, 0, 0, 0, 0, 192, 71, 185, 0, 96, 34, 61, 0, 128, 89, 186, 0, 0, 0, 0, 0, 192, 71, 185, 0, 96, 34, 61, 0, 224, 146, 186, 0, 0, 0, 0, 0, 224, 71, 185, 0, 224, 128, 60, 0, 224, 146, 186, 0, 0, 0, 0) +}] -[sub_resource type="ConcavePolygonShape3D" id=34] +[sub_resource type="ConcavePolygonShape3D" id="34"] data = PackedVector3Array(0.0542, 0, 0.0891, 0.0542, 0.1114, 0.2082, 0.0542, 0, 0.2082, 0.0542, 0, 0.0891, 0.0542, 0.1114, 0.0891, 0.0542, 0.1114, 0.2082, 0.0542, 0, 0.2082, 0.13, 0.1114, 0.2082, 0.13, 0, 0.2082, 0.0542, 0, 0.2082, 0.0542, 0.1114, 0.2082, 0.13, 0.1114, 0.2082, -0.0761, 0, 0.0891, 0.0542, 0.1114, 0.0891, 0.0542, 0, 0.0891, -0.0761, 0, 0.0891, -0.0761, 0.1114, 0.0891, 0.0542, 0.1114, 0.0891, 0.0835, 0, 0.0038, -0.0761, 0.1114, 0.0038, -0.0761, 0, 0.0038, 0.0835, 0, 0.0038, 0.0835, 0.1114, 0.0038, -0.0761, 0.1114, 0.0038, 0.13, 0, 0.0489, 0.0835, 0.1114, 0.0038, 0.0835, 0, 0.0038, 0.13, 0, 0.0489, 0.13, 0.1114, 0.0489, 0.0835, 0.1114, 0.0038, 0.13, 0, 0.2082, 0.13, 0.1114, 0.0489, 0.13, 0, 0.0489, 0.13, 0, 0.2082, 0.13, 0.1114, 0.2082, 0.13, 0.1114, 0.0489, -0.0761, 0, 0.0038, -0.0761, 0.1114, 0.0891, -0.0761, 0, 0.0891, -0.0761, 0, 0.0038, -0.0761, 0.1114, 0.0038, -0.0761, 0.1114, 0.0891) -[sub_resource type="ArrayMesh" id=35] +[sub_resource type="ArrayMesh" id="35"] resource_name = "Plane.006" -surfaces/0 = { +_surfaces = [{ "aabb": AABB(-0.084406, 0, -0.00444621, 0.22265, 0.0987774, 0.220882), -"array_data": PackedByteArray(196, 42, 82, 46, 2, 48, 0, 60, 0, 127, 0, 0, 240, 43, 82, 46, 2, 48, 0, 60, 0, 127, 0, 0, 240, 43, 82, 46, 46, 47, 0, 60, 0, 127, 0, 0, 196, 42, 82, 46, 46, 47, 0, 60, 0, 127, 0, 0, 240, 43, 211, 44, 46, 47, 0, 60, 0, 0, 129, 0, 196, 42, 94, 44, 46, 47, 0, 60, 0, 0, 129, 0, 196, 42, 82, 46, 46, 47, 0, 60, 0, 0, 129, 0, 240, 43, 82, 46, 46, 47, 0, 60, 0, 0, 129, 0, 240, 43, 211, 44, 2, 48, 0, 60, 127, 0, 0, 0, 240, 43, 211, 44, 46, 47, 0, 60, 127, 0, 0, 0, 240, 43, 82, 46, 46, 47, 0, 60, 127, 0, 0, 0, 240, 43, 82, 46, 2, 48, 0, 60, 127, 0, 0, 0, 196, 42, 94, 44, 2, 48, 0, 60, 0, 0, 126, 0, 240, 43, 211, 44, 2, 48, 0, 60, 0, 0, 126, 0, 240, 43, 82, 46, 2, 48, 0, 60, 0, 0, 126, 0, 196, 42, 82, 46, 2, 48, 0, 60, 0, 0, 126, 0, 196, 42, 94, 44, 46, 47, 0, 60, 130, 0, 0, 0, 196, 42, 94, 44, 2, 48, 0, 60, 130, 0, 0, 0, 196, 42, 82, 46, 2, 48, 0, 60, 130, 0, 0, 0, 196, 42, 82, 46, 46, 47, 0, 60, 130, 0, 0, 0, 241, 42, 0, 0, 180, 45, 0, 60, 130, 0, 0, 0, 241, 42, 0, 0, 169, 50, 0, 60, 130, 0, 0, 0, 241, 42, 8, 44, 169, 50, 0, 60, 130, 0, 0, 0, 241, 42, 8, 44, 180, 45, 0, 60, 130, 0, 0, 0, 241, 42, 0, 0, 169, 50, 0, 60, 0, 0, 126, 0, 41, 48, 0, 0, 169, 50, 0, 60, 0, 0, 126, 0, 41, 48, 8, 44, 169, 50, 0, 60, 0, 0, 126, 0, 241, 42, 8, 44, 169, 50, 0, 60, 0, 0, 126, 0, 224, 172, 8, 44, 176, 27, 0, 60, 0, 127, 0, 0, 102, 173, 8, 44, 141, 156, 0, 60, 0, 127, 0, 0, 102, 173, 8, 44, 58, 46, 0, 60, 0, 127, 0, 0, 224, 172, 8, 44, 180, 45, 0, 60, 0, 127, 0, 0, 224, 172, 0, 0, 180, 45, 0, 60, 0, 0, 126, 0, 241, 42, 0, 0, 180, 45, 0, 60, 0, 0, 126, 0, 241, 42, 8, 44, 180, 45, 0, 60, 0, 0, 126, 0, 224, 172, 8, 44, 180, 45, 0, 60, 0, 0, 126, 0, 87, 45, 0, 0, 176, 27, 0, 60, 0, 0, 129, 0, 224, 172, 0, 0, 176, 27, 0, 60, 0, 0, 129, 0, 224, 172, 8, 44, 176, 27, 0, 60, 0, 0, 129, 0, 87, 45, 8, 44, 176, 27, 0, 60, 0, 0, 129, 0, 41, 48, 0, 0, 67, 42, 0, 60, 88, 0, 165, 0, 87, 45, 0, 0, 176, 27, 0, 60, 88, 0, 165, 0, 87, 45, 8, 44, 176, 27, 0, 60, 88, 0, 165, 0, 41, 48, 8, 44, 67, 42, 0, 60, 88, 0, 165, 0, 228, 41, 8, 44, 58, 46, 0, 60, 0, 127, 0, 0, 241, 42, 8, 44, 180, 45, 0, 60, 0, 127, 0, 0, 87, 45, 8, 44, 176, 27, 0, 60, 0, 127, 0, 0, 142, 45, 8, 44, 141, 156, 0, 60, 0, 127, 0, 0, 41, 48, 0, 0, 169, 50, 0, 60, 127, 0, 0, 0, 41, 48, 0, 0, 67, 42, 0, 60, 127, 0, 0, 0, 41, 48, 8, 44, 67, 42, 0, 60, 127, 0, 0, 0, 41, 48, 8, 44, 169, 50, 0, 60, 127, 0, 0, 0, 41, 48, 8, 44, 169, 50, 0, 60, 0, 127, 0, 0, 108, 48, 8, 44, 237, 50, 0, 60, 0, 127, 0, 0, 108, 48, 8, 44, 209, 41, 0, 60, 0, 127, 0, 0, 41, 48, 8, 44, 67, 42, 0, 60, 0, 127, 0, 0, 228, 41, 8, 44, 237, 50, 0, 60, 0, 127, 0, 0, 241, 42, 8, 44, 169, 50, 0, 60, 0, 127, 0, 0, 224, 172, 0, 0, 176, 27, 0, 60, 130, 0, 0, 0, 224, 172, 0, 0, 180, 45, 0, 60, 130, 0, 0, 0, 224, 172, 8, 44, 180, 45, 0, 60, 130, 0, 0, 0, 224, 172, 8, 44, 176, 27, 0, 60, 130, 0, 0, 0), -"array_index_data": PackedByteArray(0, 0, 2, 0, 1, 0, 0, 0, 3, 0, 2, 0, 4, 0, 6, 0, 5, 0, 4, 0, 7, 0, 6, 0, 8, 0, 10, 0, 9, 0, 8, 0, 11, 0, 10, 0, 12, 0, 14, 0, 13, 0, 12, 0, 15, 0, 14, 0, 16, 0, 18, 0, 17, 0, 16, 0, 19, 0, 18, 0, 20, 0, 22, 0, 21, 0, 20, 0, 23, 0, 22, 0, 24, 0, 26, 0, 25, 0, 24, 0, 27, 0, 26, 0, 28, 0, 30, 0, 29, 0, 28, 0, 31, 0, 30, 0, 32, 0, 34, 0, 33, 0, 32, 0, 35, 0, 34, 0, 36, 0, 38, 0, 37, 0, 36, 0, 39, 0, 38, 0, 40, 0, 42, 0, 41, 0, 40, 0, 43, 0, 42, 0, 31, 0, 44, 0, 30, 0, 31, 0, 45, 0, 44, 0, 46, 0, 29, 0, 47, 0, 46, 0, 28, 0, 29, 0, 48, 0, 50, 0, 49, 0, 48, 0, 51, 0, 50, 0, 52, 0, 54, 0, 53, 0, 52, 0, 55, 0, 54, 0, 45, 0, 56, 0, 44, 0, 45, 0, 57, 0, 56, 0, 57, 0, 53, 0, 56, 0, 57, 0, 52, 0, 53, 0, 58, 0, 60, 0, 59, 0, 58, 0, 61, 0, 60, 0, 55, 0, 47, 0, 54, 0, 55, 0, 46, 0, 47, 0), -"blend_shape_data": [], -"format": 98051, +"format": 4099, "index_count": 114, -"material": ExtResource( 5 ), +"index_data": PackedByteArray(0, 0, 2, 0, 1, 0, 0, 0, 3, 0, 2, 0, 4, 0, 6, 0, 5, 0, 4, 0, 7, 0, 6, 0, 8, 0, 10, 0, 9, 0, 8, 0, 11, 0, 10, 0, 12, 0, 14, 0, 13, 0, 12, 0, 15, 0, 14, 0, 16, 0, 18, 0, 17, 0, 16, 0, 19, 0, 18, 0, 20, 0, 22, 0, 21, 0, 20, 0, 23, 0, 22, 0, 24, 0, 26, 0, 25, 0, 24, 0, 27, 0, 26, 0, 28, 0, 30, 0, 29, 0, 28, 0, 31, 0, 30, 0, 32, 0, 34, 0, 33, 0, 32, 0, 35, 0, 34, 0, 36, 0, 38, 0, 37, 0, 36, 0, 39, 0, 38, 0, 40, 0, 42, 0, 41, 0, 40, 0, 43, 0, 42, 0, 31, 0, 44, 0, 30, 0, 31, 0, 45, 0, 44, 0, 46, 0, 29, 0, 47, 0, 46, 0, 28, 0, 29, 0, 48, 0, 50, 0, 49, 0, 48, 0, 51, 0, 50, 0, 52, 0, 54, 0, 53, 0, 52, 0, 55, 0, 54, 0, 45, 0, 56, 0, 44, 0, 45, 0, 57, 0, 56, 0, 57, 0, 53, 0, 56, 0, 57, 0, 52, 0, 53, 0, 58, 0, 60, 0, 59, 0, 58, 0, 61, 0, 60, 0, 55, 0, 47, 0, 54, 0, 55, 0, 46, 0, 47, 0), +"material": ExtResource( "5" ), "name": "Material.001", -"primitive": 4, -"skeleton_aabb": [], -"vertex_count": 62 -} +"primitive": 3, +"vertex_count": 62, +"vertex_data": PackedByteArray(0, 128, 88, 61, 0, 64, 202, 61, 0, 64, 0, 62, 0, 248, 15, 0, 0, 0, 126, 61, 0, 64, 202, 61, 0, 64, 0, 62, 0, 248, 15, 0, 0, 0, 126, 61, 0, 64, 202, 61, 0, 192, 229, 61, 0, 248, 15, 0, 0, 128, 88, 61, 0, 64, 202, 61, 0, 192, 229, 61, 0, 248, 15, 0, 0, 0, 126, 61, 0, 96, 154, 61, 0, 192, 229, 61, 0, 0, 0, 0, 0, 128, 88, 61, 0, 192, 139, 61, 0, 192, 229, 61, 0, 0, 0, 0, 0, 128, 88, 61, 0, 64, 202, 61, 0, 192, 229, 61, 0, 0, 0, 0, 0, 0, 126, 61, 0, 64, 202, 61, 0, 192, 229, 61, 0, 0, 0, 0, 0, 0, 126, 61, 0, 96, 154, 61, 0, 64, 0, 62, 254, 3, 0, 0, 0, 0, 126, 61, 0, 96, 154, 61, 0, 192, 229, 61, 254, 3, 0, 0, 0, 0, 126, 61, 0, 64, 202, 61, 0, 192, 229, 61, 254, 3, 0, 0, 0, 0, 126, 61, 0, 64, 202, 61, 0, 64, 0, 62, 254, 3, 0, 0, 0, 128, 88, 61, 0, 192, 139, 61, 0, 64, 0, 62, 0, 0, 96, 63, 0, 0, 126, 61, 0, 96, 154, 61, 0, 64, 0, 62, 0, 0, 96, 63, 0, 0, 126, 61, 0, 64, 202, 61, 0, 64, 0, 62, 0, 0, 96, 63, 0, 128, 88, 61, 0, 64, 202, 61, 0, 64, 0, 62, 0, 0, 96, 63, 0, 128, 88, 61, 0, 192, 139, 61, 0, 192, 229, 61, 0, 0, 0, 0, 0, 128, 88, 61, 0, 192, 139, 61, 0, 64, 0, 62, 0, 0, 0, 0, 0, 128, 88, 61, 0, 64, 202, 61, 0, 64, 0, 62, 0, 0, 0, 0, 0, 128, 88, 61, 0, 64, 202, 61, 0, 192, 229, 61, 0, 0, 0, 0, 0, 32, 94, 61, 0, 0, 0, 0, 0, 128, 182, 61, 0, 0, 0, 0, 0, 32, 94, 61, 0, 0, 0, 0, 0, 32, 85, 62, 0, 0, 0, 0, 0, 32, 94, 61, 0, 0, 129, 61, 0, 32, 85, 62, 0, 0, 0, 0, 0, 32, 94, 61, 0, 0, 129, 61, 0, 128, 182, 61, 0, 0, 0, 0, 0, 32, 94, 61, 0, 0, 0, 0, 0, 32, 85, 62, 0, 0, 96, 63, 0, 32, 5, 62, 0, 0, 0, 0, 0, 32, 85, 62, 0, 0, 96, 63, 0, 32, 5, 62, 0, 0, 129, 61, 0, 32, 85, 62, 0, 0, 96, 63, 0, 32, 94, 61, 0, 0, 129, 61, 0, 32, 85, 62, 0, 0, 96, 63, 0, 0, 156, 189, 0, 0, 129, 61, 0, 0, 118, 59, 0, 248, 15, 0, 0, 192, 172, 189, 0, 0, 129, 61, 0, 160, 145, 187, 0, 248, 15, 0, 0, 192, 172, 189, 0, 0, 129, 61, 0, 64, 199, 61, 0, 248, 15, 0, 0, 0, 156, 189, 0, 0, 129, 61, 0, 128, 182, 61, 0, 248, 15, 0, 0, 0, 156, 189, 0, 0, 0, 0, 0, 128, 182, 61, 0, 0, 96, 63, 0, 32, 94, 61, 0, 0, 0, 0, 0, 128, 182, 61, 0, 0, 96, 63, 0, 32, 94, 61, 0, 0, 129, 61, 0, 128, 182, 61, 0, 0, 96, 63, 0, 0, 156, 189, 0, 0, 129, 61, 0, 128, 182, 61, 0, 0, 96, 63, 0, 224, 170, 61, 0, 0, 0, 0, 0, 0, 118, 59, 0, 0, 0, 0, 0, 0, 156, 189, 0, 0, 0, 0, 0, 0, 118, 59, 0, 0, 0, 0, 0, 0, 156, 189, 0, 0, 129, 61, 0, 0, 118, 59, 0, 0, 0, 0, 0, 224, 170, 61, 0, 0, 129, 61, 0, 0, 118, 59, 0, 0, 0, 0, 0, 32, 5, 62, 0, 0, 0, 0, 0, 96, 72, 61, 196, 2, 0, 0, 0, 224, 170, 61, 0, 0, 0, 0, 0, 0, 118, 59, 196, 2, 0, 0, 0, 224, 170, 61, 0, 0, 129, 61, 0, 0, 118, 59, 196, 2, 0, 0, 0, 32, 5, 62, 0, 0, 129, 61, 0, 96, 72, 61, 196, 2, 0, 0, 0, 128, 60, 61, 0, 0, 129, 61, 0, 64, 199, 61, 0, 248, 15, 0, 0, 32, 94, 61, 0, 0, 129, 61, 0, 128, 182, 61, 0, 248, 15, 0, 0, 224, 170, 61, 0, 0, 129, 61, 0, 0, 118, 59, 0, 248, 15, 0, 0, 192, 177, 61, 0, 0, 129, 61, 0, 160, 145, 187, 0, 248, 15, 0, 0, 32, 5, 62, 0, 0, 0, 0, 0, 32, 85, 62, 254, 3, 0, 0, 0, 32, 5, 62, 0, 0, 0, 0, 0, 96, 72, 61, 254, 3, 0, 0, 0, 32, 5, 62, 0, 0, 129, 61, 0, 96, 72, 61, 254, 3, 0, 0, 0, 32, 5, 62, 0, 0, 129, 61, 0, 32, 85, 62, 254, 3, 0, 0, 0, 32, 5, 62, 0, 0, 129, 61, 0, 32, 85, 62, 0, 248, 15, 0, 0, 128, 13, 62, 0, 0, 129, 61, 0, 160, 93, 62, 0, 248, 15, 0, 0, 128, 13, 62, 0, 0, 129, 61, 0, 32, 58, 61, 0, 248, 15, 0, 0, 32, 5, 62, 0, 0, 129, 61, 0, 96, 72, 61, 0, 248, 15, 0, 0, 128, 60, 61, 0, 0, 129, 61, 0, 160, 93, 62, 0, 248, 15, 0, 0, 32, 94, 61, 0, 0, 129, 61, 0, 32, 85, 62, 0, 248, 15, 0, 0, 0, 156, 189, 0, 0, 0, 0, 0, 0, 118, 59, 0, 0, 0, 0, 0, 0, 156, 189, 0, 0, 0, 0, 0, 128, 182, 61, 0, 0, 0, 0, 0, 0, 156, 189, 0, 0, 129, 61, 0, 128, 182, 61, 0, 0, 0, 0, 0, 0, 156, 189, 0, 0, 129, 61, 0, 0, 118, 59, 0, 0, 0, 0) +}] -[sub_resource type="ConcavePolygonShape3D" id=36] +[sub_resource type="ConcavePolygonShape3D" id="36"] data = PackedVector3Array(0.0529, 0.0988, 0.1253, 0.062, 0.0988, 0.1122, 0.062, 0.0988, 0.1253, 0.0529, 0.0988, 0.1253, 0.0529, 0.0988, 0.1122, 0.062, 0.0988, 0.1122, 0.062, 0.0754, 0.1122, 0.0529, 0.0988, 0.1122, 0.0529, 0.0682, 0.1122, 0.062, 0.0754, 0.1122, 0.062, 0.0988, 0.1122, 0.0529, 0.0988, 0.1122, 0.062, 0.0754, 0.1253, 0.062, 0.0988, 0.1122, 0.062, 0.0754, 0.1122, 0.062, 0.0754, 0.1253, 0.062, 0.0988, 0.1253, 0.062, 0.0988, 0.1122, 0.0529, 0.0682, 0.1253, 0.062, 0.0988, 0.1253, 0.062, 0.0754, 0.1253, 0.0529, 0.0682, 0.1253, 0.0529, 0.0988, 0.1253, 0.062, 0.0988, 0.1253, 0.0529, 0.0682, 0.1122, 0.0529, 0.0988, 0.1253, 0.0529, 0.0682, 0.1253, 0.0529, 0.0682, 0.1122, 0.0529, 0.0988, 0.1122, 0.0529, 0.0988, 0.1253, 0.0542, 0, 0.0891, 0.0542, 0.063, 0.2082, 0.0542, 0, 0.2082, 0.0542, 0, 0.0891, 0.0542, 0.063, 0.0891, 0.0542, 0.063, 0.2082, 0.0542, 0, 0.2082, 0.13, 0.063, 0.2082, 0.13, 0, 0.2082, 0.0542, 0, 0.2082, 0.0542, 0.063, 0.2082, 0.13, 0.063, 0.2082, -0.0761, 0.063, 0.0038, -0.0843, 0.063, 0.0973, -0.0843, 0.063, -0.0043, -0.0761, 0.063, 0.0038, -0.0761, 0.063, 0.0891, -0.0843, 0.063, 0.0973, -0.0761, 0, 0.0891, 0.0542, 0.063, 0.0891, 0.0542, 0, 0.0891, -0.0761, 0, 0.0891, -0.0761, 0.063, 0.0891, 0.0542, 0.063, 0.0891, 0.0835, 0, 0.0038, -0.0761, 0.063, 0.0038, -0.0761, 0, 0.0038, 0.0835, 0, 0.0038, 0.0835, 0.063, 0.0038, -0.0761, 0.063, 0.0038, 0.13, 0, 0.0489, 0.0835, 0.063, 0.0038, 0.0835, 0, 0.0038, 0.13, 0, 0.0489, 0.13, 0.063, 0.0489, 0.0835, 0.063, 0.0038, -0.0761, 0.063, 0.0891, 0.046, 0.063, 0.0973, -0.0843, 0.063, 0.0973, -0.0761, 0.063, 0.0891, 0.0542, 0.063, 0.0891, 0.046, 0.063, 0.0973, 0.0835, 0.063, 0.0038, -0.0843, 0.063, -0.0043, 0.0868, 0.063, -0.0043, 0.0835, 0.063, 0.0038, -0.0761, 0.063, 0.0038, -0.0843, 0.063, -0.0043, 0.13, 0, 0.2082, 0.13, 0.063, 0.0489, 0.13, 0, 0.0489, 0.13, 0, 0.2082, 0.13, 0.063, 0.2082, 0.13, 0.063, 0.0489, 0.13, 0.063, 0.2082, 0.1382, 0.063, 0.0455, 0.1382, 0.063, 0.2164, 0.13, 0.063, 0.2082, 0.13, 0.063, 0.0489, 0.1382, 0.063, 0.0455, 0.0542, 0.063, 0.0891, 0.046, 0.063, 0.2164, 0.046, 0.063, 0.0973, 0.0542, 0.063, 0.0891, 0.0542, 0.063, 0.2082, 0.046, 0.063, 0.2164, 0.0542, 0.063, 0.2082, 0.1382, 0.063, 0.2164, 0.046, 0.063, 0.2164, 0.0542, 0.063, 0.2082, 0.13, 0.063, 0.2082, 0.1382, 0.063, 0.2164, -0.0761, 0, 0.0038, -0.0761, 0.063, 0.0891, -0.0761, 0, 0.0891, -0.0761, 0, 0.0038, -0.0761, 0.063, 0.0038, -0.0761, 0.063, 0.0891, 0.13, 0.063, 0.0489, 0.0868, 0.063, -0.0043, 0.1382, 0.063, 0.0455, 0.13, 0.063, 0.0489, 0.0835, 0.063, 0.0038, 0.0868, 0.063, -0.0043) -[sub_resource type="ArrayMesh" id=37] +[sub_resource type="ArrayMesh" id="37"] resource_name = "Plane.005" -surfaces/0 = { +_surfaces = [{ "aabb": AABB(-0.084406, 0, -0.00444621, 0.15128, 0.0988335, 0.131846), -"array_data": PackedByteArray(242, 26, 82, 46, 118, 45, 0, 60, 0, 127, 0, 0, 242, 26, 82, 46, 224, 44, 0, 60, 0, 127, 0, 0, 240, 160, 82, 46, 224, 44, 0, 60, 0, 127, 0, 0, 240, 160, 82, 46, 118, 45, 0, 60, 0, 127, 0, 0, 240, 160, 253, 44, 224, 44, 0, 60, 130, 0, 0, 0, 240, 160, 138, 44, 118, 45, 0, 60, 130, 0, 0, 0, 240, 160, 82, 46, 118, 45, 0, 60, 130, 0, 0, 0, 240, 160, 82, 46, 224, 44, 0, 60, 130, 0, 0, 0, 242, 26, 253, 44, 224, 44, 0, 60, 0, 0, 129, 0, 240, 160, 253, 44, 224, 44, 0, 60, 0, 0, 129, 0, 240, 160, 82, 46, 224, 44, 0, 60, 0, 0, 129, 0, 242, 26, 82, 46, 224, 44, 0, 60, 0, 0, 129, 0, 242, 26, 138, 44, 118, 45, 0, 60, 127, 0, 0, 0, 242, 26, 253, 44, 224, 44, 0, 60, 127, 0, 0, 0, 242, 26, 82, 46, 224, 44, 0, 60, 127, 0, 0, 0, 242, 26, 82, 46, 118, 45, 0, 60, 127, 0, 0, 0, 240, 160, 138, 44, 118, 45, 0, 60, 0, 0, 126, 0, 242, 26, 138, 44, 118, 45, 0, 60, 0, 0, 126, 0, 242, 26, 82, 46, 118, 45, 0, 60, 0, 0, 126, 0, 240, 160, 82, 46, 118, 45, 0, 60, 0, 0, 126, 0, 16, 169, 83, 46, 4, 42, 0, 60, 0, 127, 0, 0, 77, 169, 83, 46, 4, 42, 0, 60, 0, 127, 0, 0, 77, 169, 83, 46, 44, 46, 0, 60, 0, 127, 0, 0, 16, 169, 83, 46, 44, 46, 0, 60, 0, 127, 0, 0, 190, 43, 0, 0, 210, 45, 0, 60, 127, 0, 0, 0, 190, 43, 0, 0, 240, 23, 0, 60, 127, 0, 0, 0, 190, 43, 8, 44, 240, 23, 0, 60, 127, 0, 0, 0, 190, 43, 8, 44, 210, 45, 0, 60, 127, 0, 0, 0, 173, 163, 0, 0, 210, 45, 0, 60, 0, 0, 126, 0, 190, 43, 0, 0, 210, 45, 0, 60, 0, 0, 126, 0, 190, 43, 8, 44, 210, 45, 0, 60, 0, 0, 126, 0, 173, 163, 8, 44, 210, 45, 0, 60, 0, 0, 126, 0, 57, 172, 0, 0, 210, 45, 0, 60, 130, 0, 0, 0, 57, 172, 0, 0, 190, 47, 0, 60, 130, 0, 0, 0, 57, 172, 8, 44, 190, 47, 0, 60, 130, 0, 0, 0, 57, 172, 8, 44, 210, 45, 0, 60, 130, 0, 0, 0, 173, 163, 0, 0, 190, 47, 0, 60, 127, 0, 0, 0, 173, 163, 0, 0, 210, 45, 0, 60, 127, 0, 0, 0, 173, 163, 8, 44, 210, 45, 0, 60, 127, 0, 0, 0, 173, 163, 8, 44, 190, 47, 0, 60, 127, 0, 0, 0, 254, 172, 0, 0, 210, 45, 0, 60, 0, 0, 126, 0, 57, 172, 0, 0, 210, 45, 0, 60, 0, 0, 126, 0, 57, 172, 8, 44, 210, 45, 0, 60, 0, 0, 126, 0, 254, 172, 8, 44, 210, 45, 0, 60, 0, 0, 126, 0, 254, 172, 0, 0, 240, 23, 0, 60, 130, 0, 0, 0, 254, 172, 0, 0, 210, 45, 0, 60, 130, 0, 0, 0, 254, 172, 8, 44, 210, 45, 0, 60, 130, 0, 0, 0, 254, 172, 8, 44, 240, 23, 0, 60, 130, 0, 0, 0, 190, 43, 0, 0, 240, 23, 0, 60, 0, 0, 129, 0, 254, 172, 0, 0, 240, 23, 0, 60, 0, 0, 129, 0, 254, 172, 8, 44, 240, 23, 0, 60, 0, 0, 129, 0, 190, 43, 8, 44, 240, 23, 0, 60, 0, 0, 129, 0, 254, 172, 8, 44, 240, 23, 0, 60, 0, 130, 0, 0, 254, 172, 8, 44, 210, 45, 0, 60, 0, 130, 0, 0, 102, 173, 8, 44, 58, 46, 0, 60, 0, 130, 0, 0, 102, 173, 8, 44, 141, 156, 0, 60, 0, 130, 0, 0, 57, 172, 8, 44, 210, 45, 0, 60, 0, 130, 0, 0, 57, 172, 8, 44, 190, 47, 0, 60, 0, 130, 0, 0, 161, 172, 8, 44, 19, 48, 0, 60, 0, 130, 0, 0, 161, 172, 8, 44, 58, 46, 0, 60, 0, 130, 0, 0, 190, 43, 8, 44, 210, 45, 0, 60, 0, 130, 0, 0, 190, 43, 8, 44, 240, 23, 0, 60, 0, 130, 0, 0, 71, 44, 8, 44, 141, 156, 0, 60, 0, 130, 0, 0, 71, 44, 8, 44, 58, 46, 0, 60, 0, 130, 0, 0, 173, 163, 8, 44, 190, 47, 0, 60, 0, 130, 0, 0, 173, 163, 8, 44, 210, 45, 0, 60, 0, 130, 0, 0, 104, 160, 8, 44, 58, 46, 0, 60, 0, 130, 0, 0, 104, 160, 8, 44, 19, 48, 0, 60, 0, 130, 0, 0, 20, 168, 192, 42, 190, 47, 0, 60, 0, 130, 0, 0, 70, 170, 192, 42, 190, 47, 0, 60, 0, 130, 0, 0, 70, 170, 192, 42, 251, 46, 0, 60, 0, 130, 0, 0, 20, 168, 192, 42, 251, 46, 0, 60, 0, 130, 0, 0, 44, 171, 218, 41, 251, 46, 0, 60, 0, 0, 126, 0, 92, 166, 218, 41, 251, 46, 0, 60, 0, 0, 126, 0, 20, 168, 192, 42, 251, 46, 0, 60, 0, 0, 126, 0, 70, 170, 192, 42, 251, 46, 0, 60, 0, 0, 126, 0, 92, 166, 0, 0, 190, 47, 0, 60, 130, 0, 0, 0, 92, 166, 218, 41, 190, 47, 0, 60, 130, 0, 0, 0, 92, 166, 218, 41, 251, 46, 0, 60, 130, 0, 0, 0, 92, 166, 0, 0, 251, 46, 0, 60, 130, 0, 0, 0, 44, 171, 218, 41, 190, 47, 0, 60, 127, 0, 0, 0, 44, 171, 0, 0, 190, 47, 0, 60, 127, 0, 0, 0, 44, 171, 0, 0, 251, 46, 0, 60, 127, 0, 0, 0, 44, 171, 218, 41, 251, 46, 0, 60, 127, 0, 0, 0, 44, 171, 218, 41, 190, 47, 0, 60, 0, 0, 126, 0, 70, 170, 192, 42, 190, 47, 0, 60, 0, 0, 126, 0, 57, 172, 8, 44, 190, 47, 0, 60, 0, 0, 126, 0, 44, 171, 0, 0, 190, 47, 0, 60, 0, 0, 126, 0, 57, 172, 0, 0, 190, 47, 0, 60, 0, 0, 126, 0, 44, 171, 0, 0, 251, 46, 0, 60, 0, 0, 126, 0, 92, 166, 0, 0, 251, 46, 0, 60, 0, 0, 126, 0, 20, 168, 192, 42, 190, 47, 0, 60, 167, 167, 0, 0, 20, 168, 192, 42, 251, 46, 0, 60, 167, 167, 0, 0, 92, 166, 218, 41, 251, 46, 0, 60, 167, 167, 0, 0, 92, 166, 218, 41, 190, 47, 0, 60, 167, 167, 0, 0, 70, 170, 192, 42, 251, 46, 0, 60, 89, 167, 0, 0, 70, 170, 192, 42, 190, 47, 0, 60, 89, 167, 0, 0, 44, 171, 218, 41, 190, 47, 0, 60, 89, 167, 0, 0, 44, 171, 218, 41, 251, 46, 0, 60, 89, 167, 0, 0, 20, 168, 192, 42, 190, 47, 0, 60, 0, 0, 126, 0, 173, 163, 8, 44, 190, 47, 0, 60, 0, 0, 126, 0, 92, 166, 218, 41, 190, 47, 0, 60, 0, 0, 126, 0, 92, 166, 0, 0, 190, 47, 0, 60, 0, 0, 126, 0, 173, 163, 0, 0, 190, 47, 0, 60, 0, 0, 126, 0), -"array_index_data": PackedByteArray(0, 0, 2, 0, 1, 0, 0, 0, 3, 0, 2, 0, 4, 0, 6, 0, 5, 0, 4, 0, 7, 0, 6, 0, 8, 0, 10, 0, 9, 0, 8, 0, 11, 0, 10, 0, 12, 0, 14, 0, 13, 0, 12, 0, 15, 0, 14, 0, 16, 0, 18, 0, 17, 0, 16, 0, 19, 0, 18, 0, 20, 0, 22, 0, 21, 0, 20, 0, 23, 0, 22, 0, 24, 0, 26, 0, 25, 0, 24, 0, 27, 0, 26, 0, 28, 0, 30, 0, 29, 0, 28, 0, 31, 0, 30, 0, 32, 0, 34, 0, 33, 0, 32, 0, 35, 0, 34, 0, 36, 0, 38, 0, 37, 0, 36, 0, 39, 0, 38, 0, 40, 0, 42, 0, 41, 0, 40, 0, 43, 0, 42, 0, 44, 0, 46, 0, 45, 0, 44, 0, 47, 0, 46, 0, 48, 0, 50, 0, 49, 0, 48, 0, 51, 0, 50, 0, 52, 0, 54, 0, 53, 0, 52, 0, 55, 0, 54, 0, 56, 0, 58, 0, 57, 0, 56, 0, 59, 0, 58, 0, 60, 0, 62, 0, 61, 0, 60, 0, 63, 0, 62, 0, 64, 0, 66, 0, 65, 0, 64, 0, 67, 0, 66, 0, 57, 0, 67, 0, 64, 0, 57, 0, 58, 0, 67, 0, 53, 0, 59, 0, 56, 0, 53, 0, 54, 0, 59, 0, 65, 0, 63, 0, 60, 0, 65, 0, 66, 0, 63, 0, 61, 0, 55, 0, 52, 0, 61, 0, 62, 0, 55, 0, 68, 0, 70, 0, 69, 0, 68, 0, 71, 0, 70, 0, 72, 0, 74, 0, 73, 0, 72, 0, 75, 0, 74, 0, 76, 0, 78, 0, 77, 0, 76, 0, 79, 0, 78, 0, 80, 0, 82, 0, 81, 0, 80, 0, 83, 0, 82, 0, 84, 0, 86, 0, 85, 0, 87, 0, 86, 0, 84, 0, 87, 0, 88, 0, 86, 0, 89, 0, 73, 0, 90, 0, 89, 0, 72, 0, 73, 0, 91, 0, 93, 0, 92, 0, 91, 0, 94, 0, 93, 0, 95, 0, 97, 0, 96, 0, 95, 0, 98, 0, 97, 0, 86, 0, 99, 0, 85, 0, 86, 0, 100, 0, 99, 0, 99, 0, 100, 0, 101, 0, 100, 0, 102, 0, 101, 0, 100, 0, 103, 0, 102, 0), -"blend_shape_data": [], -"format": 98051, +"format": 4099, "index_count": 192, -"material": ExtResource( 5 ), +"index_data": PackedByteArray(0, 0, 2, 0, 1, 0, 0, 0, 3, 0, 2, 0, 4, 0, 6, 0, 5, 0, 4, 0, 7, 0, 6, 0, 8, 0, 10, 0, 9, 0, 8, 0, 11, 0, 10, 0, 12, 0, 14, 0, 13, 0, 12, 0, 15, 0, 14, 0, 16, 0, 18, 0, 17, 0, 16, 0, 19, 0, 18, 0, 20, 0, 22, 0, 21, 0, 20, 0, 23, 0, 22, 0, 24, 0, 26, 0, 25, 0, 24, 0, 27, 0, 26, 0, 28, 0, 30, 0, 29, 0, 28, 0, 31, 0, 30, 0, 32, 0, 34, 0, 33, 0, 32, 0, 35, 0, 34, 0, 36, 0, 38, 0, 37, 0, 36, 0, 39, 0, 38, 0, 40, 0, 42, 0, 41, 0, 40, 0, 43, 0, 42, 0, 44, 0, 46, 0, 45, 0, 44, 0, 47, 0, 46, 0, 48, 0, 50, 0, 49, 0, 48, 0, 51, 0, 50, 0, 52, 0, 54, 0, 53, 0, 52, 0, 55, 0, 54, 0, 56, 0, 58, 0, 57, 0, 56, 0, 59, 0, 58, 0, 60, 0, 62, 0, 61, 0, 60, 0, 63, 0, 62, 0, 64, 0, 66, 0, 65, 0, 64, 0, 67, 0, 66, 0, 57, 0, 67, 0, 64, 0, 57, 0, 58, 0, 67, 0, 53, 0, 59, 0, 56, 0, 53, 0, 54, 0, 59, 0, 65, 0, 63, 0, 60, 0, 65, 0, 66, 0, 63, 0, 61, 0, 55, 0, 52, 0, 61, 0, 62, 0, 55, 0, 68, 0, 70, 0, 69, 0, 68, 0, 71, 0, 70, 0, 72, 0, 74, 0, 73, 0, 72, 0, 75, 0, 74, 0, 76, 0, 78, 0, 77, 0, 76, 0, 79, 0, 78, 0, 80, 0, 82, 0, 81, 0, 80, 0, 83, 0, 82, 0, 84, 0, 86, 0, 85, 0, 87, 0, 86, 0, 84, 0, 87, 0, 88, 0, 86, 0, 89, 0, 73, 0, 90, 0, 89, 0, 72, 0, 73, 0, 91, 0, 93, 0, 92, 0, 91, 0, 94, 0, 93, 0, 95, 0, 97, 0, 96, 0, 95, 0, 98, 0, 97, 0, 86, 0, 99, 0, 85, 0, 86, 0, 100, 0, 99, 0, 99, 0, 100, 0, 101, 0, 100, 0, 102, 0, 101, 0, 100, 0, 103, 0, 102, 0), +"material": ExtResource( "5" ), "name": "Material.001", -"primitive": 4, -"skeleton_aabb": [], -"vertex_count": 104 -} +"primitive": 3, +"vertex_count": 104, +"vertex_data": PackedByteArray(0, 64, 94, 59, 0, 64, 202, 61, 0, 192, 174, 61, 0, 248, 15, 0, 0, 64, 94, 59, 0, 64, 202, 61, 0, 0, 156, 61, 0, 248, 15, 0, 0, 0, 30, 188, 0, 64, 202, 61, 0, 0, 156, 61, 0, 248, 15, 0, 0, 0, 30, 188, 0, 64, 202, 61, 0, 192, 174, 61, 0, 248, 15, 0, 0, 0, 30, 188, 0, 160, 159, 61, 0, 0, 156, 61, 0, 0, 0, 0, 0, 0, 30, 188, 0, 64, 145, 61, 0, 192, 174, 61, 0, 0, 0, 0, 0, 0, 30, 188, 0, 64, 202, 61, 0, 192, 174, 61, 0, 0, 0, 0, 0, 0, 30, 188, 0, 64, 202, 61, 0, 0, 156, 61, 0, 0, 0, 0, 0, 64, 94, 59, 0, 160, 159, 61, 0, 0, 156, 61, 0, 0, 0, 0, 0, 0, 30, 188, 0, 160, 159, 61, 0, 0, 156, 61, 0, 0, 0, 0, 0, 0, 30, 188, 0, 64, 202, 61, 0, 0, 156, 61, 0, 0, 0, 0, 0, 64, 94, 59, 0, 64, 202, 61, 0, 0, 156, 61, 0, 0, 0, 0, 0, 64, 94, 59, 0, 64, 145, 61, 0, 192, 174, 61, 254, 3, 0, 0, 0, 64, 94, 59, 0, 160, 159, 61, 0, 0, 156, 61, 254, 3, 0, 0, 0, 64, 94, 59, 0, 64, 202, 61, 0, 0, 156, 61, 254, 3, 0, 0, 0, 64, 94, 59, 0, 64, 202, 61, 0, 192, 174, 61, 254, 3, 0, 0, 0, 0, 30, 188, 0, 64, 145, 61, 0, 192, 174, 61, 0, 0, 96, 63, 0, 64, 94, 59, 0, 64, 145, 61, 0, 192, 174, 61, 0, 0, 96, 63, 0, 64, 94, 59, 0, 64, 202, 61, 0, 192, 174, 61, 0, 0, 96, 63, 0, 0, 30, 188, 0, 64, 202, 61, 0, 192, 174, 61, 0, 0, 96, 63, 0, 0, 34, 189, 0, 96, 202, 61, 0, 128, 64, 61, 0, 248, 15, 0, 0, 160, 41, 189, 0, 96, 202, 61, 0, 128, 64, 61, 0, 248, 15, 0, 0, 160, 41, 189, 0, 96, 202, 61, 0, 128, 197, 61, 0, 248, 15, 0, 0, 0, 34, 189, 0, 96, 202, 61, 0, 128, 197, 61, 0, 248, 15, 0, 0, 192, 119, 61, 0, 0, 0, 0, 0, 64, 186, 61, 254, 3, 0, 0, 0, 192, 119, 61, 0, 0, 0, 0, 0, 0, 254, 58, 254, 3, 0, 0, 0, 192, 119, 61, 0, 0, 129, 61, 0, 0, 254, 58, 254, 3, 0, 0, 0, 192, 119, 61, 0, 0, 129, 61, 0, 64, 186, 61, 254, 3, 0, 0, 0, 160, 117, 188, 0, 0, 0, 0, 0, 64, 186, 61, 0, 0, 96, 63, 0, 192, 119, 61, 0, 0, 0, 0, 0, 64, 186, 61, 0, 0, 96, 63, 0, 192, 119, 61, 0, 0, 129, 61, 0, 64, 186, 61, 0, 0, 96, 63, 0, 160, 117, 188, 0, 0, 129, 61, 0, 64, 186, 61, 0, 0, 96, 63, 0, 32, 135, 189, 0, 0, 0, 0, 0, 64, 186, 61, 0, 0, 0, 0, 0, 32, 135, 189, 0, 0, 0, 0, 0, 192, 247, 61, 0, 0, 0, 0, 0, 32, 135, 189, 0, 0, 129, 61, 0, 192, 247, 61, 0, 0, 0, 0, 0, 32, 135, 189, 0, 0, 129, 61, 0, 64, 186, 61, 0, 0, 0, 0, 0, 160, 117, 188, 0, 0, 0, 0, 0, 192, 247, 61, 254, 3, 0, 0, 0, 160, 117, 188, 0, 0, 0, 0, 0, 64, 186, 61, 254, 3, 0, 0, 0, 160, 117, 188, 0, 0, 129, 61, 0, 64, 186, 61, 254, 3, 0, 0, 0, 160, 117, 188, 0, 0, 129, 61, 0, 192, 247, 61, 254, 3, 0, 0, 0, 192, 159, 189, 0, 0, 0, 0, 0, 64, 186, 61, 0, 0, 96, 63, 0, 32, 135, 189, 0, 0, 0, 0, 0, 64, 186, 61, 0, 0, 96, 63, 0, 32, 135, 189, 0, 0, 129, 61, 0, 64, 186, 61, 0, 0, 96, 63, 0, 192, 159, 189, 0, 0, 129, 61, 0, 64, 186, 61, 0, 0, 96, 63, 0, 192, 159, 189, 0, 0, 0, 0, 0, 0, 254, 58, 0, 0, 0, 0, 0, 192, 159, 189, 0, 0, 0, 0, 0, 64, 186, 61, 0, 0, 0, 0, 0, 192, 159, 189, 0, 0, 129, 61, 0, 64, 186, 61, 0, 0, 0, 0, 0, 192, 159, 189, 0, 0, 129, 61, 0, 0, 254, 58, 0, 0, 0, 0, 0, 192, 119, 61, 0, 0, 0, 0, 0, 0, 254, 58, 0, 0, 0, 0, 0, 192, 159, 189, 0, 0, 0, 0, 0, 0, 254, 58, 0, 0, 0, 0, 0, 192, 159, 189, 0, 0, 129, 61, 0, 0, 254, 58, 0, 0, 0, 0, 0, 192, 119, 61, 0, 0, 129, 61, 0, 0, 254, 58, 0, 0, 0, 0, 0, 192, 159, 189, 0, 0, 129, 61, 0, 0, 254, 58, 0, 0, 0, 0, 0, 192, 159, 189, 0, 0, 129, 61, 0, 64, 186, 61, 0, 0, 0, 0, 0, 192, 172, 189, 0, 0, 129, 61, 0, 64, 199, 61, 0, 0, 0, 0, 0, 192, 172, 189, 0, 0, 129, 61, 0, 160, 145, 187, 0, 0, 0, 0, 0, 32, 135, 189, 0, 0, 129, 61, 0, 64, 186, 61, 0, 0, 0, 0, 0, 32, 135, 189, 0, 0, 129, 61, 0, 192, 247, 61, 0, 0, 0, 0, 0, 32, 148, 189, 0, 0, 129, 61, 0, 96, 2, 62, 0, 0, 0, 0, 0, 32, 148, 189, 0, 0, 129, 61, 0, 64, 199, 61, 0, 0, 0, 0, 0, 192, 119, 61, 0, 0, 129, 61, 0, 64, 186, 61, 0, 0, 0, 0, 0, 192, 119, 61, 0, 0, 129, 61, 0, 0, 254, 58, 0, 0, 0, 0, 0, 224, 136, 61, 0, 0, 129, 61, 0, 160, 145, 187, 0, 0, 0, 0, 0, 224, 136, 61, 0, 0, 129, 61, 0, 64, 199, 61, 0, 0, 0, 0, 0, 160, 117, 188, 0, 0, 129, 61, 0, 192, 247, 61, 0, 0, 0, 0, 0, 160, 117, 188, 0, 0, 129, 61, 0, 64, 186, 61, 0, 0, 0, 0, 0, 0, 13, 188, 0, 0, 129, 61, 0, 64, 199, 61, 0, 0, 0, 0, 0, 0, 13, 188, 0, 0, 129, 61, 0, 96, 2, 62, 0, 0, 0, 0, 0, 128, 2, 189, 0, 0, 88, 61, 0, 192, 247, 61, 0, 0, 0, 0, 0, 192, 72, 189, 0, 0, 88, 61, 0, 192, 247, 61, 0, 0, 0, 0, 0, 192, 72, 189, 0, 0, 88, 61, 0, 96, 223, 61, 0, 0, 0, 0, 0, 128, 2, 189, 0, 0, 88, 61, 0, 96, 223, 61, 0, 0, 0, 0, 0, 128, 101, 189, 0, 64, 59, 61, 0, 96, 223, 61, 0, 0, 96, 63, 0, 128, 203, 188, 0, 64, 59, 61, 0, 96, 223, 61, 0, 0, 96, 63, 0, 128, 2, 189, 0, 0, 88, 61, 0, 96, 223, 61, 0, 0, 96, 63, 0, 192, 72, 189, 0, 0, 88, 61, 0, 96, 223, 61, 0, 0, 96, 63, 0, 128, 203, 188, 0, 0, 0, 0, 0, 192, 247, 61, 0, 0, 0, 0, 0, 128, 203, 188, 0, 64, 59, 61, 0, 192, 247, 61, 0, 0, 0, 0, 0, 128, 203, 188, 0, 64, 59, 61, 0, 96, 223, 61, 0, 0, 0, 0, 0, 128, 203, 188, 0, 0, 0, 0, 0, 96, 223, 61, 0, 0, 0, 0, 0, 128, 101, 189, 0, 64, 59, 61, 0, 192, 247, 61, 254, 3, 0, 0, 0, 128, 101, 189, 0, 0, 0, 0, 0, 192, 247, 61, 254, 3, 0, 0, 0, 128, 101, 189, 0, 0, 0, 0, 0, 96, 223, 61, 254, 3, 0, 0, 0, 128, 101, 189, 0, 64, 59, 61, 0, 96, 223, 61, 254, 3, 0, 0, 0, 128, 101, 189, 0, 64, 59, 61, 0, 192, 247, 61, 0, 0, 96, 63, 0, 192, 72, 189, 0, 0, 88, 61, 0, 192, 247, 61, 0, 0, 96, 63, 0, 32, 135, 189, 0, 0, 129, 61, 0, 192, 247, 61, 0, 0, 96, 63, 0, 128, 101, 189, 0, 0, 0, 0, 0, 192, 247, 61, 0, 0, 96, 63, 0, 32, 135, 189, 0, 0, 0, 0, 0, 192, 247, 61, 0, 0, 96, 63, 0, 128, 101, 189, 0, 0, 0, 0, 0, 96, 223, 61, 0, 0, 96, 63, 0, 128, 203, 188, 0, 0, 0, 0, 0, 96, 223, 61, 0, 0, 96, 63, 0, 128, 2, 189, 0, 0, 88, 61, 0, 192, 247, 61, 0, 0, 0, 0, 0, 128, 2, 189, 0, 0, 88, 61, 0, 96, 223, 61, 0, 0, 0, 0, 0, 128, 203, 188, 0, 64, 59, 61, 0, 96, 223, 61, 0, 0, 0, 0, 0, 128, 203, 188, 0, 64, 59, 61, 0, 192, 247, 61, 0, 0, 0, 0, 0, 192, 72, 189, 0, 0, 88, 61, 0, 96, 223, 61, 204, 2, 0, 0, 0, 192, 72, 189, 0, 0, 88, 61, 0, 192, 247, 61, 204, 2, 0, 0, 0, 128, 101, 189, 0, 64, 59, 61, 0, 192, 247, 61, 204, 2, 0, 0, 0, 128, 101, 189, 0, 64, 59, 61, 0, 96, 223, 61, 204, 2, 0, 0, 0, 128, 2, 189, 0, 0, 88, 61, 0, 192, 247, 61, 0, 0, 96, 63, 0, 160, 117, 188, 0, 0, 129, 61, 0, 192, 247, 61, 0, 0, 96, 63, 0, 128, 203, 188, 0, 64, 59, 61, 0, 192, 247, 61, 0, 0, 96, 63, 0, 128, 203, 188, 0, 0, 0, 0, 0, 192, 247, 61, 0, 0, 96, 63, 0, 160, 117, 188, 0, 0, 0, 0, 0, 192, 247, 61, 0, 0, 96, 63) +}] -[sub_resource type="ConcavePolygonShape3D" id=38] +[sub_resource type="ConcavePolygonShape3D" id="38"] data = PackedVector3Array(0.0034, 0.0988, 0.0854, -0.0095, 0.0988, 0.0762, 0.0034, 0.0988, 0.0762, 0.0034, 0.0988, 0.0854, -0.0095, 0.0988, 0.0854, -0.0095, 0.0988, 0.0762, -0.0095, 0.078, 0.0762, -0.0095, 0.0988, 0.0854, -0.0095, 0.0709, 0.0854, -0.0095, 0.078, 0.0762, -0.0095, 0.0988, 0.0762, -0.0095, 0.0988, 0.0854, 0.0034, 0.078, 0.0762, -0.0095, 0.0988, 0.0762, -0.0095, 0.078, 0.0762, 0.0034, 0.078, 0.0762, 0.0034, 0.0988, 0.0762, -0.0095, 0.0988, 0.0762, 0.0034, 0.0709, 0.0854, 0.0034, 0.0988, 0.0762, 0.0034, 0.078, 0.0762, 0.0034, 0.0709, 0.0854, 0.0034, 0.0988, 0.0854, 0.0034, 0.0988, 0.0762, -0.0095, 0.0709, 0.0854, 0.0034, 0.0988, 0.0854, 0.0034, 0.0709, 0.0854, -0.0095, 0.0709, 0.0854, -0.0095, 0.0988, 0.0854, 0.0034, 0.0988, 0.0854, -0.0395, 0.0988, 0.047, -0.0413, 0.0988, 0.0965, -0.0413, 0.0988, 0.047, -0.0395, 0.0988, 0.047, -0.0395, 0.0988, 0.0965, -0.0413, 0.0988, 0.0965, 0.0605, 0, 0.091, 0.0605, 0.063, 0.0019, 0.0605, 0, 0.0019, 0.0605, 0, 0.091, 0.0605, 0.063, 0.091, 0.0605, 0.063, 0.0019, -0.0149, 0, 0.091, 0.0605, 0.063, 0.091, 0.0605, 0, 0.091, -0.0149, 0, 0.091, -0.0149, 0.063, 0.091, 0.0605, 0.063, 0.091, -0.0659, 0, 0.091, -0.0659, 0.063, 0.121, -0.0659, 0, 0.121, -0.0659, 0, 0.091, -0.0659, 0.063, 0.091, -0.0659, 0.063, 0.121, -0.0149, 0, 0.121, -0.0149, 0.063, 0.091, -0.0149, 0, 0.091, -0.0149, 0, 0.121, -0.0149, 0.063, 0.121, -0.0149, 0.063, 0.091, -0.0779, 0, 0.091, -0.0659, 0.063, 0.091, -0.0659, 0, 0.091, -0.0779, 0, 0.091, -0.0779, 0.063, 0.091, -0.0659, 0.063, 0.091, -0.0779, 0, 0.0019, -0.0779, 0.063, 0.091, -0.0779, 0, 0.091, -0.0779, 0, 0.0019, -0.0779, 0.063, 0.0019, -0.0779, 0.063, 0.091, 0.0605, 0, 0.0019, -0.0779, 0.063, 0.0019, -0.0779, 0, 0.0019, 0.0605, 0, 0.0019, 0.0605, 0.063, 0.0019, -0.0779, 0.063, 0.0019, -0.0779, 0.063, 0.0019, -0.0843, 0.063, 0.0973, -0.0779, 0.063, 0.091, -0.0779, 0.063, 0.0019, -0.0843, 0.063, -0.0043, -0.0843, 0.063, 0.0973, -0.0659, 0.063, 0.091, -0.0723, 0.063, 0.1274, -0.0659, 0.063, 0.121, -0.0659, 0.063, 0.091, -0.0723, 0.063, 0.0973, -0.0723, 0.063, 0.1274, 0.0605, 0.063, 0.091, 0.0669, 0.063, -0.0043, 0.0605, 0.063, 0.0019, 0.0605, 0.063, 0.091, 0.0669, 0.063, 0.0973, 0.0669, 0.063, -0.0043, -0.0149, 0.063, 0.121, -0.0085, 0.063, 0.0973, -0.0149, 0.063, 0.091, -0.0149, 0.063, 0.121, -0.0085, 0.063, 0.1274, -0.0085, 0.063, 0.0973, -0.0659, 0.063, 0.121, -0.0085, 0.063, 0.1274, -0.0149, 0.063, 0.121, -0.0659, 0.063, 0.121, -0.0723, 0.063, 0.1274, -0.0085, 0.063, 0.1274, -0.0779, 0.063, 0.091, -0.0723, 0.063, 0.0973, -0.0659, 0.063, 0.091, -0.0779, 0.063, 0.091, -0.0843, 0.063, 0.0973, -0.0723, 0.063, 0.0973, -0.0149, 0.063, 0.091, 0.0669, 0.063, 0.0973, 0.0605, 0.063, 0.091, -0.0149, 0.063, 0.091, -0.0085, 0.063, 0.0973, 0.0669, 0.063, 0.0973, 0.0605, 0.063, 0.0019, -0.0843, 0.063, -0.0043, -0.0779, 0.063, 0.0019, 0.0605, 0.063, 0.0019, 0.0669, 0.063, -0.0043, -0.0843, 0.063, -0.0043, -0.0318, 0.0528, 0.121, -0.0489, 0.0528, 0.1091, -0.0489, 0.0528, 0.121, -0.0318, 0.0528, 0.121, -0.0318, 0.0528, 0.1091, -0.0489, 0.0528, 0.1091, -0.056, 0.0457, 0.1091, -0.0318, 0.0528, 0.1091, -0.0248, 0.0457, 0.1091, -0.056, 0.0457, 0.1091, -0.0489, 0.0528, 0.1091, -0.0318, 0.0528, 0.1091, -0.0248, 0, 0.121, -0.0248, 0.0457, 0.1091, -0.0248, 0.0457, 0.121, -0.0248, 0, 0.121, -0.0248, 0, 0.1091, -0.0248, 0.0457, 0.1091, -0.056, 0.0457, 0.121, -0.056, 0, 0.1091, -0.056, 0, 0.121, -0.056, 0.0457, 0.121, -0.056, 0.0457, 0.1091, -0.056, 0, 0.1091, -0.056, 0.0457, 0.121, -0.0659, 0.063, 0.121, -0.0489, 0.0528, 0.121, -0.056, 0, 0.121, -0.0659, 0.063, 0.121, -0.056, 0.0457, 0.121, -0.056, 0, 0.121, -0.0659, 0, 0.121, -0.0659, 0.063, 0.121, -0.056, 0, 0.1091, -0.0248, 0.0457, 0.1091, -0.0248, 0, 0.1091, -0.056, 0, 0.1091, -0.056, 0.0457, 0.1091, -0.0248, 0.0457, 0.1091, -0.0318, 0.0528, 0.121, -0.0248, 0.0457, 0.1091, -0.0318, 0.0528, 0.1091, -0.0318, 0.0528, 0.121, -0.0248, 0.0457, 0.121, -0.0248, 0.0457, 0.1091, -0.0489, 0.0528, 0.1091, -0.056, 0.0457, 0.121, -0.0489, 0.0528, 0.121, -0.0489, 0.0528, 0.1091, -0.056, 0.0457, 0.1091, -0.056, 0.0457, 0.121, -0.0659, 0.063, 0.121, -0.0318, 0.0528, 0.121, -0.0489, 0.0528, 0.121, -0.0659, 0.063, 0.121, -0.0149, 0.063, 0.121, -0.0318, 0.0528, 0.121, -0.0318, 0.0528, 0.121, -0.0149, 0.063, 0.121, -0.0248, 0.0457, 0.121, -0.0149, 0.063, 0.121, -0.0248, 0, 0.121, -0.0248, 0.0457, 0.121, -0.0149, 0.063, 0.121, -0.0149, 0, 0.121, -0.0248, 0, 0.121) -[sub_resource type="ArrayMesh" id=39] +[sub_resource type="ArrayMesh" id="39"] resource_name = "Plane.004" -surfaces/0 = { +_surfaces = [{ "aabb": AABB(-0.176551, 0, -0.0164296, 0.243426, 0.0987774, 0.0833038), -"array_data": PackedByteArray(109, 175, 82, 46, 197, 42, 0, 60, 0, 127, 0, 0, 109, 175, 82, 46, 153, 41, 0, 60, 0, 127, 0, 0, 33, 176, 82, 46, 153, 41, 0, 60, 0, 127, 0, 0, 33, 176, 82, 46, 197, 42, 0, 60, 0, 127, 0, 0, 33, 176, 25, 45, 153, 41, 0, 60, 130, 0, 0, 0, 33, 176, 165, 44, 197, 42, 0, 60, 130, 0, 0, 0, 33, 176, 82, 46, 197, 42, 0, 60, 130, 0, 0, 0, 33, 176, 82, 46, 153, 41, 0, 60, 130, 0, 0, 0, 109, 175, 25, 45, 153, 41, 0, 60, 0, 0, 129, 0, 33, 176, 25, 45, 153, 41, 0, 60, 0, 0, 129, 0, 33, 176, 82, 46, 153, 41, 0, 60, 0, 0, 129, 0, 109, 175, 82, 46, 153, 41, 0, 60, 0, 0, 129, 0, 109, 175, 165, 44, 197, 42, 0, 60, 127, 0, 0, 0, 109, 175, 25, 45, 153, 41, 0, 60, 127, 0, 0, 0, 109, 175, 82, 46, 153, 41, 0, 60, 127, 0, 0, 0, 109, 175, 82, 46, 197, 42, 0, 60, 127, 0, 0, 0, 33, 176, 165, 44, 197, 42, 0, 60, 0, 0, 126, 0, 109, 175, 165, 44, 197, 42, 0, 60, 0, 0, 126, 0, 109, 175, 82, 46, 197, 42, 0, 60, 0, 0, 126, 0, 33, 176, 82, 46, 197, 42, 0, 60, 0, 0, 126, 0, 37, 37, 82, 46, 197, 42, 0, 60, 0, 127, 0, 0, 37, 37, 82, 46, 153, 41, 0, 60, 0, 127, 0, 0, 58, 31, 82, 46, 153, 41, 0, 60, 0, 127, 0, 0, 58, 31, 82, 46, 197, 42, 0, 60, 0, 127, 0, 0, 58, 31, 25, 45, 153, 41, 0, 60, 130, 0, 0, 0, 58, 31, 165, 44, 197, 42, 0, 60, 130, 0, 0, 0, 58, 31, 82, 46, 197, 42, 0, 60, 130, 0, 0, 0, 58, 31, 82, 46, 153, 41, 0, 60, 130, 0, 0, 0, 37, 37, 25, 45, 153, 41, 0, 60, 0, 0, 129, 0, 58, 31, 25, 45, 153, 41, 0, 60, 0, 0, 129, 0, 58, 31, 82, 46, 153, 41, 0, 60, 0, 0, 129, 0, 37, 37, 82, 46, 153, 41, 0, 60, 0, 0, 129, 0, 37, 37, 165, 44, 197, 42, 0, 60, 127, 0, 0, 0, 37, 37, 25, 45, 153, 41, 0, 60, 127, 0, 0, 0, 37, 37, 82, 46, 153, 41, 0, 60, 127, 0, 0, 0, 37, 37, 82, 46, 197, 42, 0, 60, 127, 0, 0, 0, 58, 31, 165, 44, 197, 42, 0, 60, 0, 0, 126, 0, 37, 37, 165, 44, 197, 42, 0, 60, 0, 0, 126, 0, 37, 37, 82, 46, 197, 42, 0, 60, 0, 0, 126, 0, 58, 31, 82, 46, 197, 42, 0, 60, 0, 0, 126, 0, 8, 44, 0, 0, 8, 44, 0, 60, 127, 0, 0, 0, 8, 44, 0, 0, 114, 162, 0, 60, 127, 0, 0, 0, 8, 44, 8, 44, 114, 162, 0, 60, 127, 0, 0, 0, 8, 44, 8, 44, 8, 44, 0, 60, 127, 0, 0, 0, 2, 29, 0, 0, 251, 144, 0, 60, 0, 0, 129, 0, 134, 177, 0, 0, 251, 144, 0, 60, 0, 0, 129, 0, 134, 177, 8, 44, 251, 144, 0, 60, 0, 0, 129, 0, 2, 29, 8, 44, 251, 144, 0, 60, 0, 0, 129, 0, 2, 29, 0, 0, 114, 162, 0, 60, 130, 0, 0, 0, 2, 29, 0, 0, 251, 144, 0, 60, 130, 0, 0, 0, 2, 29, 8, 44, 251, 144, 0, 60, 130, 0, 0, 0, 2, 29, 8, 44, 114, 162, 0, 60, 130, 0, 0, 0, 134, 177, 0, 0, 251, 144, 0, 60, 130, 0, 0, 0, 134, 177, 0, 0, 8, 44, 0, 60, 130, 0, 0, 0, 134, 177, 8, 44, 8, 44, 0, 60, 130, 0, 0, 0, 134, 177, 8, 44, 251, 144, 0, 60, 130, 0, 0, 0, 8, 44, 0, 0, 114, 162, 0, 60, 0, 0, 129, 0, 2, 29, 0, 0, 114, 162, 0, 60, 0, 0, 129, 0, 2, 29, 8, 44, 114, 162, 0, 60, 0, 0, 129, 0, 8, 44, 8, 44, 114, 162, 0, 60, 0, 0, 129, 0, 134, 177, 0, 0, 8, 44, 0, 60, 0, 0, 126, 0, 8, 44, 0, 0, 8, 44, 0, 60, 0, 0, 126, 0, 8, 44, 8, 44, 8, 44, 0, 60, 0, 0, 126, 0, 134, 177, 8, 44, 8, 44, 0, 60, 0, 0, 126, 0, 134, 177, 8, 44, 251, 144, 0, 60, 0, 130, 0, 0, 134, 177, 8, 44, 8, 44, 0, 60, 0, 130, 0, 0, 166, 177, 8, 44, 71, 44, 0, 60, 0, 130, 0, 0, 166, 177, 8, 44, 141, 156, 0, 60, 0, 130, 0, 0, 2, 29, 8, 44, 251, 144, 0, 60, 0, 130, 0, 0, 82, 20, 8, 44, 141, 156, 0, 60, 0, 130, 0, 0, 8, 44, 8, 44, 114, 162, 0, 60, 0, 130, 0, 0, 2, 29, 8, 44, 114, 162, 0, 60, 0, 130, 0, 0, 82, 20, 8, 44, 52, 164, 0, 60, 0, 130, 0, 0, 71, 44, 8, 44, 52, 164, 0, 60, 0, 130, 0, 0, 8, 44, 8, 44, 8, 44, 0, 60, 0, 130, 0, 0, 71, 44, 8, 44, 71, 44, 0, 60, 0, 130, 0, 0), -"array_index_data": PackedByteArray(0, 0, 2, 0, 1, 0, 0, 0, 3, 0, 2, 0, 4, 0, 6, 0, 5, 0, 4, 0, 7, 0, 6, 0, 8, 0, 10, 0, 9, 0, 8, 0, 11, 0, 10, 0, 12, 0, 14, 0, 13, 0, 12, 0, 15, 0, 14, 0, 16, 0, 18, 0, 17, 0, 16, 0, 19, 0, 18, 0, 20, 0, 22, 0, 21, 0, 20, 0, 23, 0, 22, 0, 24, 0, 26, 0, 25, 0, 24, 0, 27, 0, 26, 0, 28, 0, 30, 0, 29, 0, 28, 0, 31, 0, 30, 0, 32, 0, 34, 0, 33, 0, 32, 0, 35, 0, 34, 0, 36, 0, 38, 0, 37, 0, 36, 0, 39, 0, 38, 0, 40, 0, 42, 0, 41, 0, 40, 0, 43, 0, 42, 0, 44, 0, 46, 0, 45, 0, 44, 0, 47, 0, 46, 0, 48, 0, 50, 0, 49, 0, 48, 0, 51, 0, 50, 0, 52, 0, 54, 0, 53, 0, 52, 0, 55, 0, 54, 0, 56, 0, 58, 0, 57, 0, 56, 0, 59, 0, 58, 0, 60, 0, 62, 0, 61, 0, 60, 0, 63, 0, 62, 0, 64, 0, 66, 0, 65, 0, 64, 0, 67, 0, 66, 0, 68, 0, 67, 0, 64, 0, 68, 0, 69, 0, 67, 0, 70, 0, 72, 0, 71, 0, 70, 0, 73, 0, 72, 0, 71, 0, 69, 0, 68, 0, 71, 0, 72, 0, 69, 0, 74, 0, 73, 0, 70, 0, 74, 0, 75, 0, 73, 0, 65, 0, 75, 0, 74, 0, 65, 0, 66, 0, 75, 0), -"blend_shape_data": [], -"format": 98051, +"format": 4099, "index_count": 132, -"material": ExtResource( 5 ), +"index_data": PackedByteArray(0, 0, 2, 0, 1, 0, 0, 0, 3, 0, 2, 0, 4, 0, 6, 0, 5, 0, 4, 0, 7, 0, 6, 0, 8, 0, 10, 0, 9, 0, 8, 0, 11, 0, 10, 0, 12, 0, 14, 0, 13, 0, 12, 0, 15, 0, 14, 0, 16, 0, 18, 0, 17, 0, 16, 0, 19, 0, 18, 0, 20, 0, 22, 0, 21, 0, 20, 0, 23, 0, 22, 0, 24, 0, 26, 0, 25, 0, 24, 0, 27, 0, 26, 0, 28, 0, 30, 0, 29, 0, 28, 0, 31, 0, 30, 0, 32, 0, 34, 0, 33, 0, 32, 0, 35, 0, 34, 0, 36, 0, 38, 0, 37, 0, 36, 0, 39, 0, 38, 0, 40, 0, 42, 0, 41, 0, 40, 0, 43, 0, 42, 0, 44, 0, 46, 0, 45, 0, 44, 0, 47, 0, 46, 0, 48, 0, 50, 0, 49, 0, 48, 0, 51, 0, 50, 0, 52, 0, 54, 0, 53, 0, 52, 0, 55, 0, 54, 0, 56, 0, 58, 0, 57, 0, 56, 0, 59, 0, 58, 0, 60, 0, 62, 0, 61, 0, 60, 0, 63, 0, 62, 0, 64, 0, 66, 0, 65, 0, 64, 0, 67, 0, 66, 0, 68, 0, 67, 0, 64, 0, 68, 0, 69, 0, 67, 0, 70, 0, 72, 0, 71, 0, 70, 0, 73, 0, 72, 0, 71, 0, 69, 0, 68, 0, 71, 0, 72, 0, 69, 0, 74, 0, 73, 0, 70, 0, 74, 0, 75, 0, 73, 0, 65, 0, 75, 0, 74, 0, 65, 0, 66, 0, 75, 0), +"material": ExtResource( "5" ), "name": "Material.001", -"primitive": 4, -"skeleton_aabb": [], -"vertex_count": 76 -} +"primitive": 3, +"vertex_count": 76, +"vertex_data": PackedByteArray(0, 160, 237, 189, 0, 64, 202, 61, 0, 160, 88, 61, 0, 248, 15, 0, 0, 160, 237, 189, 0, 64, 202, 61, 0, 32, 51, 61, 0, 248, 15, 0, 0, 32, 4, 190, 0, 64, 202, 61, 0, 32, 51, 61, 0, 248, 15, 0, 0, 32, 4, 190, 0, 64, 202, 61, 0, 160, 88, 61, 0, 248, 15, 0, 0, 32, 4, 190, 0, 32, 163, 61, 0, 32, 51, 61, 0, 0, 0, 0, 0, 32, 4, 190, 0, 160, 148, 61, 0, 160, 88, 61, 0, 0, 0, 0, 0, 32, 4, 190, 0, 64, 202, 61, 0, 160, 88, 61, 0, 0, 0, 0, 0, 32, 4, 190, 0, 64, 202, 61, 0, 32, 51, 61, 0, 0, 0, 0, 0, 160, 237, 189, 0, 32, 163, 61, 0, 32, 51, 61, 0, 0, 0, 0, 0, 32, 4, 190, 0, 32, 163, 61, 0, 32, 51, 61, 0, 0, 0, 0, 0, 32, 4, 190, 0, 64, 202, 61, 0, 32, 51, 61, 0, 0, 0, 0, 0, 160, 237, 189, 0, 64, 202, 61, 0, 32, 51, 61, 0, 0, 0, 0, 0, 160, 237, 189, 0, 160, 148, 61, 0, 160, 88, 61, 254, 3, 0, 0, 0, 160, 237, 189, 0, 32, 163, 61, 0, 32, 51, 61, 254, 3, 0, 0, 0, 160, 237, 189, 0, 64, 202, 61, 0, 32, 51, 61, 254, 3, 0, 0, 0, 160, 237, 189, 0, 64, 202, 61, 0, 160, 88, 61, 254, 3, 0, 0, 0, 32, 4, 190, 0, 160, 148, 61, 0, 160, 88, 61, 0, 0, 96, 63, 0, 160, 237, 189, 0, 160, 148, 61, 0, 160, 88, 61, 0, 0, 96, 63, 0, 160, 237, 189, 0, 64, 202, 61, 0, 160, 88, 61, 0, 0, 96, 63, 0, 32, 4, 190, 0, 64, 202, 61, 0, 160, 88, 61, 0, 0, 96, 63, 0, 160, 164, 60, 0, 64, 202, 61, 0, 160, 88, 61, 0, 248, 15, 0, 0, 160, 164, 60, 0, 64, 202, 61, 0, 32, 51, 61, 0, 248, 15, 0, 0, 64, 231, 59, 0, 64, 202, 61, 0, 32, 51, 61, 0, 248, 15, 0, 0, 64, 231, 59, 0, 64, 202, 61, 0, 160, 88, 61, 0, 248, 15, 0, 0, 64, 231, 59, 0, 32, 163, 61, 0, 32, 51, 61, 0, 0, 0, 0, 0, 64, 231, 59, 0, 160, 148, 61, 0, 160, 88, 61, 0, 0, 0, 0, 0, 64, 231, 59, 0, 64, 202, 61, 0, 160, 88, 61, 0, 0, 0, 0, 0, 64, 231, 59, 0, 64, 202, 61, 0, 32, 51, 61, 0, 0, 0, 0, 0, 160, 164, 60, 0, 32, 163, 61, 0, 32, 51, 61, 0, 0, 0, 0, 0, 64, 231, 59, 0, 32, 163, 61, 0, 32, 51, 61, 0, 0, 0, 0, 0, 64, 231, 59, 0, 64, 202, 61, 0, 32, 51, 61, 0, 0, 0, 0, 0, 160, 164, 60, 0, 64, 202, 61, 0, 32, 51, 61, 0, 0, 0, 0, 0, 160, 164, 60, 0, 160, 148, 61, 0, 160, 88, 61, 254, 3, 0, 0, 0, 160, 164, 60, 0, 32, 163, 61, 0, 32, 51, 61, 254, 3, 0, 0, 0, 160, 164, 60, 0, 64, 202, 61, 0, 32, 51, 61, 254, 3, 0, 0, 0, 160, 164, 60, 0, 64, 202, 61, 0, 160, 88, 61, 254, 3, 0, 0, 0, 64, 231, 59, 0, 160, 148, 61, 0, 160, 88, 61, 0, 0, 96, 63, 0, 160, 164, 60, 0, 160, 148, 61, 0, 160, 88, 61, 0, 0, 96, 63, 0, 160, 164, 60, 0, 64, 202, 61, 0, 160, 88, 61, 0, 0, 96, 63, 0, 64, 231, 59, 0, 64, 202, 61, 0, 160, 88, 61, 0, 0, 96, 63, 0, 0, 129, 61, 0, 0, 0, 0, 0, 0, 129, 61, 254, 3, 0, 0, 0, 0, 129, 61, 0, 0, 0, 0, 0, 64, 78, 188, 254, 3, 0, 0, 0, 0, 129, 61, 0, 0, 129, 61, 0, 64, 78, 188, 254, 3, 0, 0, 0, 0, 129, 61, 0, 0, 129, 61, 0, 0, 129, 61, 254, 3, 0, 0, 0, 64, 160, 59, 0, 0, 0, 0, 0, 96, 31, 186, 0, 0, 0, 0, 0, 192, 48, 190, 0, 0, 0, 0, 0, 96, 31, 186, 0, 0, 0, 0, 0, 192, 48, 190, 0, 0, 129, 61, 0, 96, 31, 186, 0, 0, 0, 0, 0, 64, 160, 59, 0, 0, 129, 61, 0, 96, 31, 186, 0, 0, 0, 0, 0, 64, 160, 59, 0, 0, 0, 0, 0, 64, 78, 188, 0, 0, 0, 0, 0, 64, 160, 59, 0, 0, 0, 0, 0, 96, 31, 186, 0, 0, 0, 0, 0, 64, 160, 59, 0, 0, 129, 61, 0, 96, 31, 186, 0, 0, 0, 0, 0, 64, 160, 59, 0, 0, 129, 61, 0, 64, 78, 188, 0, 0, 0, 0, 0, 192, 48, 190, 0, 0, 0, 0, 0, 96, 31, 186, 0, 0, 0, 0, 0, 192, 48, 190, 0, 0, 0, 0, 0, 0, 129, 61, 0, 0, 0, 0, 0, 192, 48, 190, 0, 0, 129, 61, 0, 0, 129, 61, 0, 0, 0, 0, 0, 192, 48, 190, 0, 0, 129, 61, 0, 96, 31, 186, 0, 0, 0, 0, 0, 0, 129, 61, 0, 0, 0, 0, 0, 64, 78, 188, 0, 0, 0, 0, 0, 64, 160, 59, 0, 0, 0, 0, 0, 64, 78, 188, 0, 0, 0, 0, 0, 64, 160, 59, 0, 0, 129, 61, 0, 64, 78, 188, 0, 0, 0, 0, 0, 0, 129, 61, 0, 0, 129, 61, 0, 64, 78, 188, 0, 0, 0, 0, 0, 192, 48, 190, 0, 0, 0, 0, 0, 0, 129, 61, 0, 0, 96, 63, 0, 0, 129, 61, 0, 0, 0, 0, 0, 0, 129, 61, 0, 0, 96, 63, 0, 0, 129, 61, 0, 0, 129, 61, 0, 0, 129, 61, 0, 0, 96, 63, 0, 192, 48, 190, 0, 0, 129, 61, 0, 0, 129, 61, 0, 0, 96, 63, 0, 192, 48, 190, 0, 0, 129, 61, 0, 96, 31, 186, 0, 0, 0, 0, 0, 192, 48, 190, 0, 0, 129, 61, 0, 0, 129, 61, 0, 0, 0, 0, 0, 192, 52, 190, 0, 0, 129, 61, 0, 224, 136, 61, 0, 0, 0, 0, 0, 192, 52, 190, 0, 0, 129, 61, 0, 160, 145, 187, 0, 0, 0, 0, 0, 64, 160, 59, 0, 0, 129, 61, 0, 96, 31, 186, 0, 0, 0, 0, 0, 64, 138, 58, 0, 0, 129, 61, 0, 160, 145, 187, 0, 0, 0, 0, 0, 0, 129, 61, 0, 0, 129, 61, 0, 64, 78, 188, 0, 0, 0, 0, 0, 64, 160, 59, 0, 0, 129, 61, 0, 64, 78, 188, 0, 0, 0, 0, 0, 64, 138, 58, 0, 0, 129, 61, 0, 128, 134, 188, 0, 0, 0, 0, 0, 224, 136, 61, 0, 0, 129, 61, 0, 128, 134, 188, 0, 0, 0, 0, 0, 0, 129, 61, 0, 0, 129, 61, 0, 0, 129, 61, 0, 0, 0, 0, 0, 224, 136, 61, 0, 0, 129, 61, 0, 224, 136, 61, 0, 0, 0, 0) +}] -[sub_resource type="ConcavePolygonShape3D" id=40] +[sub_resource type="ConcavePolygonShape3D" id="40"] data = PackedVector3Array(-0.116, 0.0988, 0.0529, -0.129, 0.0988, 0.0437, -0.116, 0.0988, 0.0437, -0.116, 0.0988, 0.0529, -0.129, 0.0988, 0.0529, -0.129, 0.0988, 0.0437, -0.129, 0.0797, 0.0437, -0.129, 0.0988, 0.0529, -0.129, 0.0726, 0.0529, -0.129, 0.0797, 0.0437, -0.129, 0.0988, 0.0437, -0.129, 0.0988, 0.0529, -0.116, 0.0797, 0.0437, -0.129, 0.0988, 0.0437, -0.129, 0.0797, 0.0437, -0.116, 0.0797, 0.0437, -0.116, 0.0988, 0.0437, -0.129, 0.0988, 0.0437, -0.116, 0.0726, 0.0529, -0.116, 0.0988, 0.0437, -0.116, 0.0797, 0.0437, -0.116, 0.0726, 0.0529, -0.116, 0.0988, 0.0529, -0.116, 0.0988, 0.0437, -0.129, 0.0726, 0.0529, -0.116, 0.0988, 0.0529, -0.116, 0.0726, 0.0529, -0.129, 0.0726, 0.0529, -0.129, 0.0988, 0.0529, -0.116, 0.0988, 0.0529, 0.0201, 0.0988, 0.0529, 0.0071, 0.0988, 0.0437, 0.0201, 0.0988, 0.0437, 0.0201, 0.0988, 0.0529, 0.0071, 0.0988, 0.0529, 0.0071, 0.0988, 0.0437, 0.0071, 0.0797, 0.0437, 0.0071, 0.0988, 0.0529, 0.0071, 0.0726, 0.0529, 0.0071, 0.0797, 0.0437, 0.0071, 0.0988, 0.0437, 0.0071, 0.0988, 0.0529, 0.0201, 0.0797, 0.0437, 0.0071, 0.0988, 0.0437, 0.0071, 0.0797, 0.0437, 0.0201, 0.0797, 0.0437, 0.0201, 0.0988, 0.0437, 0.0071, 0.0988, 0.0437, 0.0201, 0.0726, 0.0529, 0.0201, 0.0988, 0.0437, 0.0201, 0.0797, 0.0437, 0.0201, 0.0726, 0.0529, 0.0201, 0.0988, 0.0529, 0.0201, 0.0988, 0.0437, 0.0071, 0.0726, 0.0529, 0.0201, 0.0988, 0.0529, 0.0201, 0.0726, 0.0529, 0.0071, 0.0726, 0.0529, 0.0071, 0.0988, 0.0529, 0.0201, 0.0988, 0.0529, 0.063, 0, 0.063, 0.063, 0.063, -0.0125, 0.063, 0, -0.0125, 0.063, 0, 0.063, 0.063, 0.063, 0.063, 0.063, 0.063, -0.0125, 0.0049, 0, -0.0005, -0.1726, 0.063, -0.0005, -0.1726, 0, -0.0005, 0.0049, 0, -0.0005, 0.0049, 0.063, -0.0005, -0.1726, 0.063, -0.0005, 0.0049, 0, -0.0125, 0.0049, 0.063, -0.0005, 0.0049, 0, -0.0005, 0.0049, 0, -0.0125, 0.0049, 0.063, -0.0125, 0.0049, 0.063, -0.0005, -0.1726, 0, -0.0005, -0.1726, 0.063, 0.063, -0.1726, 0, 0.063, -0.1726, 0, -0.0005, -0.1726, 0.063, -0.0005, -0.1726, 0.063, 0.063, 0.063, 0, -0.0125, 0.0049, 0.063, -0.0125, 0.0049, 0, -0.0125, 0.063, 0, -0.0125, 0.063, 0.063, -0.0125, 0.0049, 0.063, -0.0125, -0.1726, 0, 0.063, 0.063, 0.063, 0.063, 0.063, 0, 0.063, -0.1726, 0, 0.063, -0.1726, 0.063, 0.063, 0.063, 0.063, 0.063, -0.1726, 0.063, -0.0005, -0.1765, 0.063, 0.0669, -0.1726, 0.063, 0.063, -0.1726, 0.063, -0.0005, -0.1765, 0.063, -0.0043, -0.1765, 0.063, 0.0669, 0.0049, 0.063, -0.0005, -0.1765, 0.063, -0.0043, -0.1726, 0.063, -0.0005, 0.0049, 0.063, -0.0005, 0.0011, 0.063, -0.0043, -0.1765, 0.063, -0.0043, 0.063, 0.063, -0.0125, 0.0011, 0.063, -0.0163, 0.0049, 0.063, -0.0125, 0.063, 0.063, -0.0125, 0.0669, 0.063, -0.0163, 0.0011, 0.063, -0.0163, 0.0049, 0.063, -0.0125, 0.0011, 0.063, -0.0043, 0.0049, 0.063, -0.0005, 0.0049, 0.063, -0.0125, 0.0011, 0.063, -0.0163, 0.0011, 0.063, -0.0043, 0.063, 0.063, 0.063, 0.0669, 0.063, -0.0163, 0.063, 0.063, -0.0125, 0.063, 0.063, 0.063, 0.0669, 0.063, 0.0669, 0.0669, 0.063, -0.0163, -0.1726, 0.063, 0.063, 0.0669, 0.063, 0.0669, 0.063, 0.063, 0.063, -0.1726, 0.063, 0.063, -0.1765, 0.063, 0.0669, 0.0669, 0.063, 0.0669) -[sub_resource type="ArrayMesh" id=41] +[sub_resource type="ArrayMesh" id="41"] resource_name = "Plane.001" -surfaces/0 = { +_surfaces = [{ "aabb": AABB(-0.0780794, 0, -0.0535349, 0.144954, 0.0987774, 0.120409), -"array_data": PackedByteArray(37, 37, 82, 46, 127, 42, 0, 60, 0, 127, 0, 0, 37, 37, 82, 46, 83, 41, 0, 60, 0, 127, 0, 0, 58, 31, 82, 46, 83, 41, 0, 60, 0, 127, 0, 0, 58, 31, 82, 46, 127, 42, 0, 60, 0, 127, 0, 0, 58, 31, 49, 45, 83, 41, 0, 60, 130, 0, 0, 0, 58, 31, 192, 44, 127, 42, 0, 60, 130, 0, 0, 0, 58, 31, 82, 46, 127, 42, 0, 60, 130, 0, 0, 0, 58, 31, 82, 46, 83, 41, 0, 60, 130, 0, 0, 0, 37, 37, 49, 45, 83, 41, 0, 60, 0, 0, 129, 0, 58, 31, 49, 45, 83, 41, 0, 60, 0, 0, 129, 0, 58, 31, 82, 46, 83, 41, 0, 60, 0, 0, 129, 0, 37, 37, 82, 46, 83, 41, 0, 60, 0, 0, 129, 0, 37, 37, 192, 44, 127, 42, 0, 60, 127, 0, 0, 0, 37, 37, 49, 45, 83, 41, 0, 60, 127, 0, 0, 0, 37, 37, 82, 46, 83, 41, 0, 60, 127, 0, 0, 0, 37, 37, 82, 46, 127, 42, 0, 60, 127, 0, 0, 0, 58, 31, 192, 44, 127, 42, 0, 60, 0, 0, 126, 0, 37, 37, 192, 44, 127, 42, 0, 60, 0, 0, 126, 0, 37, 37, 82, 46, 127, 42, 0, 60, 0, 0, 126, 0, 58, 31, 82, 46, 127, 42, 0, 60, 0, 0, 126, 0, 88, 166, 0, 0, 165, 22, 0, 60, 127, 0, 0, 0, 88, 166, 0, 0, 19, 170, 0, 60, 127, 0, 0, 0, 88, 166, 8, 44, 19, 170, 0, 60, 127, 0, 0, 0, 88, 166, 8, 44, 165, 22, 0, 60, 127, 0, 0, 0, 155, 172, 0, 0, 200, 43, 0, 60, 0, 0, 126, 0, 200, 43, 0, 0, 200, 43, 0, 60, 0, 0, 126, 0, 200, 43, 8, 44, 200, 43, 0, 60, 0, 0, 126, 0, 155, 172, 8, 44, 200, 43, 0, 60, 0, 0, 126, 0, 200, 43, 0, 0, 165, 22, 0, 60, 0, 0, 129, 0, 88, 166, 0, 0, 165, 22, 0, 60, 0, 0, 129, 0, 88, 166, 8, 44, 165, 22, 0, 60, 0, 0, 129, 0, 200, 43, 8, 44, 165, 22, 0, 60, 0, 0, 129, 0, 200, 43, 0, 0, 200, 43, 0, 60, 127, 0, 0, 0, 200, 43, 0, 0, 165, 22, 0, 60, 127, 0, 0, 0, 200, 43, 8, 44, 165, 22, 0, 60, 127, 0, 0, 0, 200, 43, 8, 44, 200, 43, 0, 60, 127, 0, 0, 0, 88, 166, 0, 0, 19, 170, 0, 60, 0, 0, 129, 0, 155, 172, 0, 0, 19, 170, 0, 60, 0, 0, 129, 0, 155, 172, 8, 44, 19, 170, 0, 60, 0, 0, 129, 0, 88, 166, 8, 44, 19, 170, 0, 60, 0, 0, 129, 0, 155, 172, 0, 0, 19, 170, 0, 60, 130, 0, 0, 0, 155, 172, 0, 0, 200, 43, 0, 60, 130, 0, 0, 0, 155, 172, 8, 44, 200, 43, 0, 60, 130, 0, 0, 0, 155, 172, 8, 44, 19, 170, 0, 60, 130, 0, 0, 0, 200, 43, 8, 44, 200, 43, 0, 60, 0, 130, 0, 0, 200, 43, 8, 44, 165, 22, 0, 60, 0, 130, 0, 0, 71, 44, 8, 44, 141, 156, 0, 60, 0, 130, 0, 0, 71, 44, 8, 44, 71, 44, 0, 60, 0, 130, 0, 0, 88, 166, 8, 44, 165, 22, 0, 60, 0, 130, 0, 0, 203, 164, 8, 44, 141, 156, 0, 60, 0, 130, 0, 0, 88, 166, 8, 44, 19, 170, 0, 60, 0, 130, 0, 0, 203, 164, 8, 44, 218, 170, 0, 60, 0, 130, 0, 0, 155, 172, 8, 44, 19, 170, 0, 60, 0, 130, 0, 0, 255, 172, 8, 44, 218, 170, 0, 60, 0, 130, 0, 0, 155, 172, 8, 44, 200, 43, 0, 60, 0, 130, 0, 0, 255, 172, 8, 44, 71, 44, 0, 60, 0, 130, 0, 0), -"array_index_data": PackedByteArray(0, 0, 2, 0, 1, 0, 0, 0, 3, 0, 2, 0, 4, 0, 6, 0, 5, 0, 4, 0, 7, 0, 6, 0, 8, 0, 10, 0, 9, 0, 8, 0, 11, 0, 10, 0, 12, 0, 14, 0, 13, 0, 12, 0, 15, 0, 14, 0, 16, 0, 18, 0, 17, 0, 16, 0, 19, 0, 18, 0, 20, 0, 22, 0, 21, 0, 20, 0, 23, 0, 22, 0, 24, 0, 26, 0, 25, 0, 24, 0, 27, 0, 26, 0, 28, 0, 30, 0, 29, 0, 28, 0, 31, 0, 30, 0, 32, 0, 34, 0, 33, 0, 32, 0, 35, 0, 34, 0, 36, 0, 38, 0, 37, 0, 36, 0, 39, 0, 38, 0, 40, 0, 42, 0, 41, 0, 40, 0, 43, 0, 42, 0, 44, 0, 46, 0, 45, 0, 44, 0, 47, 0, 46, 0, 45, 0, 49, 0, 48, 0, 45, 0, 46, 0, 49, 0, 48, 0, 51, 0, 50, 0, 48, 0, 49, 0, 51, 0, 50, 0, 53, 0, 52, 0, 50, 0, 51, 0, 53, 0, 54, 0, 47, 0, 44, 0, 54, 0, 55, 0, 47, 0, 52, 0, 55, 0, 54, 0, 52, 0, 53, 0, 55, 0), -"blend_shape_data": [], -"format": 98051, +"format": 4099, "index_count": 102, -"material": ExtResource( 5 ), +"index_data": PackedByteArray(0, 0, 2, 0, 1, 0, 0, 0, 3, 0, 2, 0, 4, 0, 6, 0, 5, 0, 4, 0, 7, 0, 6, 0, 8, 0, 10, 0, 9, 0, 8, 0, 11, 0, 10, 0, 12, 0, 14, 0, 13, 0, 12, 0, 15, 0, 14, 0, 16, 0, 18, 0, 17, 0, 16, 0, 19, 0, 18, 0, 20, 0, 22, 0, 21, 0, 20, 0, 23, 0, 22, 0, 24, 0, 26, 0, 25, 0, 24, 0, 27, 0, 26, 0, 28, 0, 30, 0, 29, 0, 28, 0, 31, 0, 30, 0, 32, 0, 34, 0, 33, 0, 32, 0, 35, 0, 34, 0, 36, 0, 38, 0, 37, 0, 36, 0, 39, 0, 38, 0, 40, 0, 42, 0, 41, 0, 40, 0, 43, 0, 42, 0, 44, 0, 46, 0, 45, 0, 44, 0, 47, 0, 46, 0, 45, 0, 49, 0, 48, 0, 45, 0, 46, 0, 49, 0, 48, 0, 51, 0, 50, 0, 48, 0, 49, 0, 51, 0, 50, 0, 53, 0, 52, 0, 50, 0, 51, 0, 53, 0, 54, 0, 47, 0, 44, 0, 54, 0, 55, 0, 47, 0, 52, 0, 55, 0, 54, 0, 52, 0, 53, 0, 55, 0), +"material": ExtResource( "5" ), "name": "Material.001", -"primitive": 4, -"skeleton_aabb": [], -"vertex_count": 56 -} +"primitive": 3, +"vertex_count": 56, +"vertex_data": PackedByteArray(0, 160, 164, 60, 0, 64, 202, 61, 0, 224, 79, 61, 0, 248, 15, 0, 0, 160, 164, 60, 0, 64, 202, 61, 0, 96, 42, 61, 0, 248, 15, 0, 0, 64, 231, 59, 0, 64, 202, 61, 0, 96, 42, 61, 0, 248, 15, 0, 0, 64, 231, 59, 0, 64, 202, 61, 0, 224, 79, 61, 0, 248, 15, 0, 0, 64, 231, 59, 0, 32, 166, 61, 0, 96, 42, 61, 0, 0, 0, 0, 0, 64, 231, 59, 0, 0, 152, 61, 0, 224, 79, 61, 0, 0, 0, 0, 0, 64, 231, 59, 0, 64, 202, 61, 0, 224, 79, 61, 0, 0, 0, 0, 0, 64, 231, 59, 0, 64, 202, 61, 0, 96, 42, 61, 0, 0, 0, 0, 0, 160, 164, 60, 0, 32, 166, 61, 0, 96, 42, 61, 0, 0, 0, 0, 0, 64, 231, 59, 0, 32, 166, 61, 0, 96, 42, 61, 0, 0, 0, 0, 0, 64, 231, 59, 0, 64, 202, 61, 0, 96, 42, 61, 0, 0, 0, 0, 0, 160, 164, 60, 0, 64, 202, 61, 0, 96, 42, 61, 0, 0, 0, 0, 0, 160, 164, 60, 0, 0, 152, 61, 0, 224, 79, 61, 254, 3, 0, 0, 0, 160, 164, 60, 0, 32, 166, 61, 0, 96, 42, 61, 254, 3, 0, 0, 0, 160, 164, 60, 0, 64, 202, 61, 0, 96, 42, 61, 254, 3, 0, 0, 0, 160, 164, 60, 0, 64, 202, 61, 0, 224, 79, 61, 254, 3, 0, 0, 0, 64, 231, 59, 0, 0, 152, 61, 0, 224, 79, 61, 0, 0, 96, 63, 0, 160, 164, 60, 0, 0, 152, 61, 0, 224, 79, 61, 0, 0, 96, 63, 0, 160, 164, 60, 0, 64, 202, 61, 0, 224, 79, 61, 0, 0, 96, 63, 0, 64, 231, 59, 0, 64, 202, 61, 0, 224, 79, 61, 0, 0, 96, 63, 0, 0, 203, 188, 0, 0, 0, 0, 0, 160, 212, 58, 254, 3, 0, 0, 0, 0, 203, 188, 0, 0, 0, 0, 0, 96, 66, 189, 254, 3, 0, 0, 0, 0, 203, 188, 0, 0, 129, 61, 0, 96, 66, 189, 254, 3, 0, 0, 0, 0, 203, 188, 0, 0, 129, 61, 0, 160, 212, 58, 254, 3, 0, 0, 0, 96, 147, 189, 0, 0, 0, 0, 0, 0, 121, 61, 0, 0, 96, 63, 0, 0, 121, 61, 0, 0, 0, 0, 0, 0, 121, 61, 0, 0, 96, 63, 0, 0, 121, 61, 0, 0, 129, 61, 0, 0, 121, 61, 0, 0, 96, 63, 0, 96, 147, 189, 0, 0, 129, 61, 0, 0, 121, 61, 0, 0, 96, 63, 0, 0, 121, 61, 0, 0, 0, 0, 0, 160, 212, 58, 0, 0, 0, 0, 0, 0, 203, 188, 0, 0, 0, 0, 0, 160, 212, 58, 0, 0, 0, 0, 0, 0, 203, 188, 0, 0, 129, 61, 0, 160, 212, 58, 0, 0, 0, 0, 0, 0, 121, 61, 0, 0, 129, 61, 0, 160, 212, 58, 0, 0, 0, 0, 0, 0, 121, 61, 0, 0, 0, 0, 0, 0, 121, 61, 254, 3, 0, 0, 0, 0, 121, 61, 0, 0, 0, 0, 0, 160, 212, 58, 254, 3, 0, 0, 0, 0, 121, 61, 0, 0, 129, 61, 0, 160, 212, 58, 254, 3, 0, 0, 0, 0, 121, 61, 0, 0, 129, 61, 0, 0, 121, 61, 254, 3, 0, 0, 0, 0, 203, 188, 0, 0, 0, 0, 0, 96, 66, 189, 0, 0, 0, 0, 0, 96, 147, 189, 0, 0, 0, 0, 0, 96, 66, 189, 0, 0, 0, 0, 0, 96, 147, 189, 0, 0, 129, 61, 0, 96, 66, 189, 0, 0, 0, 0, 0, 0, 203, 188, 0, 0, 129, 61, 0, 96, 66, 189, 0, 0, 0, 0, 0, 96, 147, 189, 0, 0, 0, 0, 0, 96, 66, 189, 0, 0, 0, 0, 0, 96, 147, 189, 0, 0, 0, 0, 0, 0, 121, 61, 0, 0, 0, 0, 0, 96, 147, 189, 0, 0, 129, 61, 0, 0, 121, 61, 0, 0, 0, 0, 0, 96, 147, 189, 0, 0, 129, 61, 0, 96, 66, 189, 0, 0, 0, 0, 0, 0, 121, 61, 0, 0, 129, 61, 0, 0, 121, 61, 0, 0, 0, 0, 0, 0, 121, 61, 0, 0, 129, 61, 0, 160, 212, 58, 0, 0, 0, 0, 0, 224, 136, 61, 0, 0, 129, 61, 0, 160, 145, 187, 0, 0, 0, 0, 0, 224, 136, 61, 0, 0, 129, 61, 0, 224, 136, 61, 0, 0, 0, 0, 0, 0, 203, 188, 0, 0, 129, 61, 0, 160, 212, 58, 0, 0, 0, 0, 0, 96, 153, 188, 0, 0, 129, 61, 0, 160, 145, 187, 0, 0, 0, 0, 0, 0, 203, 188, 0, 0, 129, 61, 0, 96, 66, 189, 0, 0, 0, 0, 0, 96, 153, 188, 0, 0, 129, 61, 0, 64, 91, 189, 0, 0, 0, 0, 0, 96, 147, 189, 0, 0, 129, 61, 0, 96, 66, 189, 0, 0, 0, 0, 0, 224, 159, 189, 0, 0, 129, 61, 0, 64, 91, 189, 0, 0, 0, 0, 0, 96, 147, 189, 0, 0, 129, 61, 0, 0, 121, 61, 0, 0, 0, 0, 0, 224, 159, 189, 0, 0, 129, 61, 0, 224, 136, 61, 0, 0, 0, 0) +}] -[sub_resource type="ConcavePolygonShape3D" id=42] +[sub_resource type="ConcavePolygonShape3D" id="42"] data = PackedVector3Array(0.0201, 0.0988, 0.0508, 0.0071, 0.0988, 0.0416, 0.0201, 0.0988, 0.0416, 0.0201, 0.0988, 0.0508, 0.0071, 0.0988, 0.0508, 0.0071, 0.0988, 0.0416, 0.0071, 0.0811, 0.0416, 0.0071, 0.0988, 0.0508, 0.0071, 0.0742, 0.0508, 0.0071, 0.0811, 0.0416, 0.0071, 0.0988, 0.0416, 0.0071, 0.0988, 0.0508, 0.0201, 0.0811, 0.0416, 0.0071, 0.0988, 0.0416, 0.0071, 0.0811, 0.0416, 0.0201, 0.0811, 0.0416, 0.0201, 0.0988, 0.0416, 0.0071, 0.0988, 0.0416, 0.0201, 0.0742, 0.0508, 0.0201, 0.0988, 0.0416, 0.0201, 0.0811, 0.0416, 0.0201, 0.0742, 0.0508, 0.0201, 0.0988, 0.0508, 0.0201, 0.0988, 0.0416, 0.0071, 0.0742, 0.0508, 0.0201, 0.0988, 0.0508, 0.0201, 0.0742, 0.0508, 0.0071, 0.0742, 0.0508, 0.0071, 0.0988, 0.0508, 0.0201, 0.0988, 0.0508, -0.0247, 0, 0.0016, -0.0247, 0.063, -0.0474, -0.0247, 0, -0.0474, -0.0247, 0, 0.0016, -0.0247, 0.063, 0.0016, -0.0247, 0.063, -0.0474, -0.0719, 0, 0.0608, 0.0608, 0.063, 0.0608, 0.0608, 0, 0.0608, -0.0719, 0, 0.0608, -0.0719, 0.063, 0.0608, 0.0608, 0.063, 0.0608, 0.0608, 0, 0.0016, -0.0247, 0.063, 0.0016, -0.0247, 0, 0.0016, 0.0608, 0, 0.0016, 0.0608, 0.063, 0.0016, -0.0247, 0.063, 0.0016, 0.0608, 0, 0.0608, 0.0608, 0.063, 0.0016, 0.0608, 0, 0.0016, 0.0608, 0, 0.0608, 0.0608, 0.063, 0.0608, 0.0608, 0.063, 0.0016, -0.0247, 0, -0.0474, -0.0719, 0.063, -0.0474, -0.0719, 0, -0.0474, -0.0247, 0, -0.0474, -0.0247, 0.063, -0.0474, -0.0719, 0.063, -0.0474, -0.0719, 0, -0.0474, -0.0719, 0.063, 0.0608, -0.0719, 0, 0.0608, -0.0719, 0, -0.0474, -0.0719, 0.063, -0.0474, -0.0719, 0.063, 0.0608, 0.0608, 0.063, 0.0608, 0.0669, 0.063, -0.0043, 0.0608, 0.063, 0.0016, 0.0608, 0.063, 0.0608, 0.0669, 0.063, 0.0669, 0.0669, 0.063, -0.0043, 0.0608, 0.063, 0.0016, -0.0186, 0.063, -0.0043, -0.0247, 0.063, 0.0016, 0.0608, 0.063, 0.0016, 0.0669, 0.063, -0.0043, -0.0186, 0.063, -0.0043, -0.0247, 0.063, 0.0016, -0.0186, 0.063, -0.0534, -0.0247, 0.063, -0.0474, -0.0247, 0.063, 0.0016, -0.0186, 0.063, -0.0043, -0.0186, 0.063, -0.0534, -0.0247, 0.063, -0.0474, -0.078, 0.063, -0.0534, -0.0719, 0.063, -0.0474, -0.0247, 0.063, -0.0474, -0.0186, 0.063, -0.0534, -0.078, 0.063, -0.0534, -0.0719, 0.063, 0.0608, 0.0669, 0.063, 0.0669, 0.0608, 0.063, 0.0608, -0.0719, 0.063, 0.0608, -0.078, 0.063, 0.0669, 0.0669, 0.063, 0.0669, -0.0719, 0.063, -0.0474, -0.078, 0.063, 0.0669, -0.0719, 0.063, 0.0608, -0.0719, 0.063, -0.0474, -0.078, 0.063, -0.0534, -0.078, 0.063, 0.0669) -[sub_resource type="ArrayMesh" id=43] +[sub_resource type="ArrayMesh" id="43"] resource_name = "Cube.000" -surfaces/0 = { +_surfaces = [{ "aabb": AABB(-0.0682448, 0, -0.0442622, 0.13649, 0.113214, 0.0885243), -"array_data": PackedByteArray(98, 165, 62, 47, 54, 37, 0, 60, 0, 127, 0, 0, 98, 165, 62, 47, 188, 33, 0, 60, 0, 127, 0, 0, 92, 168, 62, 47, 188, 33, 0, 60, 0, 127, 0, 0, 92, 168, 62, 47, 54, 37, 0, 60, 0, 127, 0, 0, 92, 168, 215, 45, 188, 33, 0, 60, 130, 0, 0, 0, 92, 168, 84, 45, 54, 37, 0, 60, 130, 0, 0, 0, 92, 168, 62, 47, 54, 37, 0, 60, 130, 0, 0, 0, 92, 168, 62, 47, 188, 33, 0, 60, 130, 0, 0, 0, 98, 165, 215, 45, 188, 33, 0, 60, 0, 0, 129, 0, 92, 168, 215, 45, 188, 33, 0, 60, 0, 0, 129, 0, 92, 168, 62, 47, 188, 33, 0, 60, 0, 0, 129, 0, 98, 165, 62, 47, 188, 33, 0, 60, 0, 0, 129, 0, 98, 165, 84, 45, 54, 37, 0, 60, 127, 0, 0, 0, 98, 165, 215, 45, 188, 33, 0, 60, 127, 0, 0, 0, 98, 165, 62, 47, 188, 33, 0, 60, 127, 0, 0, 0, 98, 165, 62, 47, 54, 37, 0, 60, 127, 0, 0, 0, 92, 168, 84, 45, 54, 37, 0, 60, 0, 0, 126, 0, 98, 165, 84, 45, 54, 37, 0, 60, 0, 0, 126, 0, 98, 165, 62, 47, 54, 37, 0, 60, 0, 0, 126, 0, 92, 168, 62, 47, 54, 37, 0, 60, 0, 0, 126, 0, 217, 171, 0, 0, 238, 168, 0, 60, 130, 0, 0, 0, 217, 171, 0, 0, 23, 41, 0, 60, 130, 0, 0, 0, 217, 171, 8, 44, 23, 41, 0, 60, 130, 0, 0, 0, 217, 171, 8, 44, 238, 168, 0, 60, 130, 0, 0, 0, 217, 43, 8, 44, 238, 168, 0, 60, 127, 0, 0, 0, 217, 43, 8, 44, 23, 41, 0, 60, 127, 0, 0, 0, 217, 43, 0, 0, 23, 41, 0, 60, 127, 0, 0, 0, 217, 43, 0, 0, 238, 168, 0, 60, 127, 0, 0, 0, 217, 171, 0, 0, 23, 41, 0, 60, 0, 0, 126, 0, 217, 43, 0, 0, 23, 41, 0, 60, 0, 0, 126, 0, 217, 43, 8, 44, 23, 41, 0, 60, 0, 0, 126, 0, 217, 171, 8, 44, 23, 41, 0, 60, 0, 0, 126, 0, 217, 171, 8, 44, 23, 41, 0, 60, 0, 130, 0, 0, 217, 43, 8, 44, 23, 41, 0, 60, 0, 130, 0, 0, 94, 44, 8, 44, 170, 41, 0, 60, 0, 130, 0, 0, 94, 172, 8, 44, 170, 41, 0, 60, 0, 130, 0, 0, 217, 43, 8, 44, 238, 168, 0, 60, 0, 130, 0, 0, 94, 44, 8, 44, 170, 169, 0, 60, 0, 130, 0, 0, 217, 171, 8, 44, 238, 168, 0, 60, 0, 130, 0, 0, 94, 172, 8, 44, 170, 169, 0, 60, 0, 130, 0, 0, 217, 171, 8, 44, 238, 168, 0, 60, 0, 0, 129, 0, 217, 43, 8, 44, 238, 168, 0, 60, 0, 0, 129, 0, 217, 43, 0, 0, 238, 168, 0, 60, 0, 0, 129, 0, 217, 171, 0, 0, 238, 168, 0, 60, 0, 0, 129, 0), -"array_index_data": PackedByteArray(0, 0, 2, 0, 1, 0, 0, 0, 3, 0, 2, 0, 4, 0, 6, 0, 5, 0, 4, 0, 7, 0, 6, 0, 8, 0, 10, 0, 9, 0, 8, 0, 11, 0, 10, 0, 12, 0, 14, 0, 13, 0, 12, 0, 15, 0, 14, 0, 16, 0, 18, 0, 17, 0, 16, 0, 19, 0, 18, 0, 20, 0, 22, 0, 21, 0, 20, 0, 23, 0, 22, 0, 24, 0, 26, 0, 25, 0, 24, 0, 27, 0, 26, 0, 28, 0, 30, 0, 29, 0, 28, 0, 31, 0, 30, 0, 32, 0, 34, 0, 33, 0, 32, 0, 35, 0, 34, 0, 33, 0, 37, 0, 36, 0, 33, 0, 34, 0, 37, 0, 38, 0, 35, 0, 32, 0, 38, 0, 39, 0, 35, 0, 36, 0, 39, 0, 38, 0, 36, 0, 37, 0, 39, 0, 40, 0, 42, 0, 41, 0, 40, 0, 43, 0, 42, 0), -"blend_shape_data": [], -"format": 98051, +"format": 4099, "index_count": 78, -"material": ExtResource( 5 ), +"index_data": PackedByteArray(0, 0, 2, 0, 1, 0, 0, 0, 3, 0, 2, 0, 4, 0, 6, 0, 5, 0, 4, 0, 7, 0, 6, 0, 8, 0, 10, 0, 9, 0, 8, 0, 11, 0, 10, 0, 12, 0, 14, 0, 13, 0, 12, 0, 15, 0, 14, 0, 16, 0, 18, 0, 17, 0, 16, 0, 19, 0, 18, 0, 20, 0, 22, 0, 21, 0, 20, 0, 23, 0, 22, 0, 24, 0, 26, 0, 25, 0, 24, 0, 27, 0, 26, 0, 28, 0, 30, 0, 29, 0, 28, 0, 31, 0, 30, 0, 32, 0, 34, 0, 33, 0, 32, 0, 35, 0, 34, 0, 33, 0, 37, 0, 36, 0, 33, 0, 34, 0, 37, 0, 38, 0, 35, 0, 32, 0, 38, 0, 39, 0, 35, 0, 36, 0, 39, 0, 38, 0, 36, 0, 37, 0, 39, 0, 40, 0, 42, 0, 41, 0, 40, 0, 43, 0, 42, 0), +"material": ExtResource( "5" ), "name": "Material.001", -"primitive": 4, -"skeleton_aabb": [], -"vertex_count": 44 -} +"primitive": 3, +"vertex_count": 44, +"vertex_data": PackedByteArray(0, 64, 172, 188, 0, 192, 231, 61, 0, 192, 166, 60, 0, 248, 15, 0, 0, 64, 172, 188, 0, 192, 231, 61, 0, 128, 55, 60, 0, 248, 15, 0, 0, 128, 11, 189, 0, 192, 231, 61, 0, 128, 55, 60, 0, 248, 15, 0, 0, 128, 11, 189, 0, 192, 231, 61, 0, 192, 166, 60, 0, 248, 15, 0, 0, 128, 11, 189, 0, 224, 186, 61, 0, 128, 55, 60, 0, 0, 0, 0, 0, 128, 11, 189, 0, 128, 170, 61, 0, 192, 166, 60, 0, 0, 0, 0, 0, 128, 11, 189, 0, 192, 231, 61, 0, 192, 166, 60, 0, 0, 0, 0, 0, 128, 11, 189, 0, 192, 231, 61, 0, 128, 55, 60, 0, 0, 0, 0, 0, 64, 172, 188, 0, 224, 186, 61, 0, 128, 55, 60, 0, 0, 0, 0, 0, 128, 11, 189, 0, 224, 186, 61, 0, 128, 55, 60, 0, 0, 0, 0, 0, 128, 11, 189, 0, 192, 231, 61, 0, 128, 55, 60, 0, 0, 0, 0, 0, 64, 172, 188, 0, 192, 231, 61, 0, 128, 55, 60, 0, 0, 0, 0, 0, 64, 172, 188, 0, 128, 170, 61, 0, 192, 166, 60, 254, 3, 0, 0, 0, 64, 172, 188, 0, 224, 186, 61, 0, 128, 55, 60, 254, 3, 0, 0, 0, 64, 172, 188, 0, 192, 231, 61, 0, 128, 55, 60, 254, 3, 0, 0, 0, 64, 172, 188, 0, 192, 231, 61, 0, 192, 166, 60, 254, 3, 0, 0, 0, 128, 11, 189, 0, 128, 170, 61, 0, 192, 166, 60, 0, 0, 96, 63, 0, 64, 172, 188, 0, 128, 170, 61, 0, 192, 166, 60, 0, 0, 96, 63, 0, 64, 172, 188, 0, 192, 231, 61, 0, 192, 166, 60, 0, 0, 96, 63, 0, 128, 11, 189, 0, 192, 231, 61, 0, 192, 166, 60, 0, 0, 96, 63, 0, 32, 123, 189, 0, 0, 0, 0, 0, 192, 29, 189, 0, 0, 0, 0, 0, 32, 123, 189, 0, 0, 0, 0, 0, 224, 34, 61, 0, 0, 0, 0, 0, 32, 123, 189, 0, 0, 129, 61, 0, 224, 34, 61, 0, 0, 0, 0, 0, 32, 123, 189, 0, 0, 129, 61, 0, 192, 29, 189, 0, 0, 0, 0, 0, 32, 123, 61, 0, 0, 129, 61, 0, 192, 29, 189, 254, 3, 0, 0, 0, 32, 123, 61, 0, 0, 129, 61, 0, 224, 34, 61, 254, 3, 0, 0, 0, 32, 123, 61, 0, 0, 0, 0, 0, 224, 34, 61, 254, 3, 0, 0, 0, 32, 123, 61, 0, 0, 0, 0, 0, 192, 29, 189, 254, 3, 0, 0, 0, 32, 123, 189, 0, 0, 0, 0, 0, 224, 34, 61, 0, 0, 96, 63, 0, 32, 123, 61, 0, 0, 0, 0, 0, 224, 34, 61, 0, 0, 96, 63, 0, 32, 123, 61, 0, 0, 129, 61, 0, 224, 34, 61, 0, 0, 96, 63, 0, 32, 123, 189, 0, 0, 129, 61, 0, 224, 34, 61, 0, 0, 96, 63, 0, 32, 123, 189, 0, 0, 129, 61, 0, 224, 34, 61, 0, 0, 0, 0, 0, 32, 123, 61, 0, 0, 129, 61, 0, 224, 34, 61, 0, 0, 0, 0, 0, 192, 139, 61, 0, 0, 129, 61, 0, 64, 53, 61, 0, 0, 0, 0, 0, 192, 139, 189, 0, 0, 129, 61, 0, 64, 53, 61, 0, 0, 0, 0, 0, 32, 123, 61, 0, 0, 129, 61, 0, 192, 29, 189, 0, 0, 0, 0, 0, 192, 139, 61, 0, 0, 129, 61, 0, 64, 53, 189, 0, 0, 0, 0, 0, 32, 123, 189, 0, 0, 129, 61, 0, 192, 29, 189, 0, 0, 0, 0, 0, 192, 139, 189, 0, 0, 129, 61, 0, 64, 53, 189, 0, 0, 0, 0, 0, 32, 123, 189, 0, 0, 129, 61, 0, 192, 29, 189, 0, 0, 0, 0, 0, 32, 123, 61, 0, 0, 129, 61, 0, 192, 29, 189, 0, 0, 0, 0, 0, 32, 123, 61, 0, 0, 0, 0, 0, 192, 29, 189, 0, 0, 0, 0, 0, 32, 123, 189, 0, 0, 0, 0, 0, 192, 29, 189, 0, 0, 0, 0) +}] -[sub_resource type="ConcavePolygonShape3D" id=44] +[sub_resource type="ConcavePolygonShape3D" id="44"] data = PackedVector3Array(-0.0209, 0.1132, 0.0204, -0.034, 0.1132, 0.0112, -0.0209, 0.1132, 0.0112, -0.0209, 0.1132, 0.0204, -0.034, 0.1132, 0.0204, -0.034, 0.1132, 0.0112, -0.034, 0.0912, 0.0112, -0.034, 0.1132, 0.0204, -0.034, 0.0833, 0.0204, -0.034, 0.0912, 0.0112, -0.034, 0.1132, 0.0112, -0.034, 0.1132, 0.0204, -0.0209, 0.0912, 0.0112, -0.034, 0.1132, 0.0112, -0.034, 0.0912, 0.0112, -0.0209, 0.0912, 0.0112, -0.0209, 0.1132, 0.0112, -0.034, 0.1132, 0.0112, -0.0209, 0.0833, 0.0204, -0.0209, 0.1132, 0.0112, -0.0209, 0.0912, 0.0112, -0.0209, 0.0833, 0.0204, -0.0209, 0.1132, 0.0204, -0.0209, 0.1132, 0.0112, -0.034, 0.0833, 0.0204, -0.0209, 0.1132, 0.0204, -0.0209, 0.0833, 0.0204, -0.034, 0.0833, 0.0204, -0.034, 0.1132, 0.0204, -0.0209, 0.1132, 0.0204, -0.0612, 0, -0.0384, -0.0612, 0.063, 0.0398, -0.0612, 0, 0.0398, -0.0612, 0, -0.0384, -0.0612, 0.063, -0.0384, -0.0612, 0.063, 0.0398, 0.0613, 0.063, -0.0384, 0.0613, 0, 0.0398, 0.0613, 0.063, 0.0398, 0.0613, 0.063, -0.0384, 0.0613, 0, -0.0384, 0.0613, 0, 0.0398, -0.0612, 0, 0.0398, 0.0613, 0.063, 0.0398, 0.0613, 0, 0.0398, -0.0612, 0, 0.0398, -0.0612, 0.063, 0.0398, 0.0613, 0.063, 0.0398, -0.0612, 0.063, 0.0398, 0.0682, 0.063, 0.0443, 0.0613, 0.063, 0.0398, -0.0612, 0.063, 0.0398, -0.0681, 0.063, 0.0443, 0.0682, 0.063, 0.0443, 0.0613, 0.063, 0.0398, 0.0682, 0.063, -0.0442, 0.0613, 0.063, -0.0384, 0.0613, 0.063, 0.0398, 0.0682, 0.063, 0.0443, 0.0682, 0.063, -0.0442, -0.0612, 0.063, -0.0384, -0.0681, 0.063, 0.0443, -0.0612, 0.063, 0.0398, -0.0612, 0.063, -0.0384, -0.0681, 0.063, -0.0442, -0.0681, 0.063, 0.0443, 0.0613, 0.063, -0.0384, -0.0681, 0.063, -0.0442, -0.0612, 0.063, -0.0384, 0.0613, 0.063, -0.0384, 0.0682, 0.063, -0.0442, -0.0681, 0.063, -0.0442, -0.0612, 0.063, -0.0384, 0.0613, 0, -0.0384, 0.0613, 0.063, -0.0384, -0.0612, 0.063, -0.0384, -0.0612, 0, -0.0384, 0.0613, 0, -0.0384) [node name="TruckTown" type="Node3D"] @@ -539,1096 +481,950 @@ __meta__ = { [node name="house_01a_GEO.002" type="MeshInstance3D" parent="."] _import_path = NodePath("house_01a_GEO.002") transform = Transform3D(-43.6047, 0, -5.57929e-05, 0, 43.6047, 0, 5.57929e-05, 0, -43.6047, -42.0954, -0.0975664, -28.5866) -use_in_baked_light = true -mesh = SubResource( 1 ) -surface_material_override/0 = null +gi_mode = 1 +mesh = SubResource( "1" ) [node name="house_02_GEO.001" type="MeshInstance3D" parent="."] _import_path = NodePath("house_02_GEO.001") transform = Transform3D(-0.833531, 0, -43.5967, 0, 43.6047, 0, 43.5967, 0, -0.833531, -75.884, 2.80561, -25.8623) -use_in_baked_light = true -mesh = SubResource( 2 ) -surface_material_override/0 = null +gi_mode = 1 +mesh = SubResource( "2" ) [node name="house_03a_GEO.001" type="MeshInstance3D" parent="."] _import_path = NodePath("house_03a_GEO.001") transform = Transform3D(-2.78964e-05, 0, 43.6047, 0, 43.6047, 0, -43.6047, 0, -2.78964e-05, 20.2362, 5.91343, -47.4137) -use_in_baked_light = true -mesh = SubResource( 3 ) -surface_material_override/0 = null +gi_mode = 1 +mesh = SubResource( "3" ) [node name="house_02a_GEO.001" type="MeshInstance3D" parent="."] _import_path = NodePath("house_02a_GEO.001") transform = Transform3D(8.36893e-05, 0, -43.6047, 0, 43.6047, 0, 43.6047, 0, 8.36893e-05, -73.5869, 2.78376, -47.8419) -use_in_baked_light = true -mesh = SubResource( 4 ) -surface_material_override/0 = null +gi_mode = 1 +mesh = SubResource( "4" ) [node name="house_05a_GEO.001" type="MeshInstance3D" parent="."] _import_path = NodePath("house_05a_GEO.001") transform = Transform3D(43.6047, 0, 0, 0, 43.6047, 0, 0, 0, 43.6047, -12.1119, 4.02536, -42.671) -use_in_baked_light = true -mesh = SubResource( 5 ) -surface_material_override/0 = null +gi_mode = 1 +mesh = SubResource( "5" ) [node name="house_05_GEO.001" type="MeshInstance3D" parent="."] _import_path = NodePath("house_05_GEO.001") transform = Transform3D(-0.0279572, 0, -43.6047, 0, 43.6047, 0, 43.6047, 0, -0.0279572, 9.26931, 5.91452, -41.5705) -use_in_baked_light = true -mesh = SubResource( 6 ) -surface_material_override/0 = null +gi_mode = 1 +mesh = SubResource( "6" ) [node name="house_01_GEO.001" type="MeshInstance3D" parent="."] _import_path = NodePath("house_01_GEO.001") transform = Transform3D(-0.50329, 0, 43.6018, 0, 43.6047, 0, -43.6018, 0, -0.50329, 14.6854, 3.32976, -16.0483) -use_in_baked_light = true -mesh = SubResource( 7 ) -surface_material_override/0 = null +gi_mode = 1 +mesh = SubResource( "7" ) [node name="house_04a_GEO.001" type="MeshInstance3D" parent="."] _import_path = NodePath("house_04a_GEO.001") transform = Transform3D(-43.6046, 0, 0.0722779, 0, 43.6047, 0, -0.0722779, 0, -43.6046, -14.9966, 4.83627, -1.81873) -use_in_baked_light = true -mesh = SubResource( 8 ) -surface_material_override/0 = null +gi_mode = 1 +mesh = SubResource( "8" ) [node name="house_03_GEO.001" type="MeshInstance3D" parent="."] _import_path = NodePath("house_03_GEO.001") transform = Transform3D(43.6047, 0, 0, 0, 43.6047, 0, 0, 0, 43.6047, -40.1375, -0.203611, -5.43416) -use_in_baked_light = true -mesh = SubResource( 9 ) -surface_material_override/0 = null +gi_mode = 1 +mesh = SubResource( "9" ) [node name="house_04_GEO.001" type="MeshInstance3D" parent="."] _import_path = NodePath("house_04_GEO.001") transform = Transform3D(43.6047, 0, 0, 0, 43.6047, 0, 0, 0, 43.6047, -54.4039, -0.269261, -30.6303) -use_in_baked_light = true -mesh = SubResource( 10 ) -surface_material_override/0 = null +gi_mode = 1 +mesh = SubResource( "10" ) [node name="house_01a_GEO.001" type="MeshInstance3D" parent="."] _import_path = NodePath("house_01a_GEO.001") transform = Transform3D(-43.6047, 0, -5.57929e-05, 0, 43.6047, 0, 5.57929e-05, 0, -43.6047, -21.6224, -0.269261, -15.5435) -use_in_baked_light = true -mesh = SubResource( 11 ) +gi_mode = 1 +mesh = SubResource( "11" ) [node name="road" type="MeshInstance3D" parent="."] _import_path = NodePath("road-col") transform = Transform3D(3.55498, 0, 0, 0, 3.55498, 0, 0, 0, 3.55498, 3.24208, 0.00395584, 0.181654) -use_in_baked_light = true -mesh = SubResource( 12 ) -surface_material_override/0 = null +gi_mode = 1 +mesh = SubResource( "12" ) [node name="col" type="StaticBody3D" parent="road"] [node name="shape" type="CollisionShape3D" parent="road/col"] -shape = SubResource( 13 ) +shape = SubResource( "13" ) [node name="grass" type="MeshInstance3D" parent="."] _import_path = NodePath("grass-col") transform = Transform3D(3.55498, 0, 0, 0, 3.55498, 0, 0, 0, 3.55498, 3.24208, 0.00395584, 0.181654) -use_in_baked_light = true -mesh = SubResource( 14 ) -surface_material_override/0 = null +gi_mode = 1 +mesh = SubResource( "14" ) [node name="col" type="StaticBody3D" parent="grass"] [node name="shape" type="CollisionShape3D" parent="grass/col"] -shape = SubResource( 15 ) +shape = SubResource( "15" ) [node name="Grid" type="MeshInstance3D" parent="."] _import_path = NodePath("Grid") transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -1.80006, 0.0039559, -0.0595486) -use_in_baked_light = true -mesh = SubResource( 16 ) +gi_mode = 1 +mesh = SubResource( "16" ) [node name="house7" type="MeshInstance3D" parent="."] _import_path = NodePath("house7-col") transform = Transform3D(-43.6047, 0, -5.57929e-05, 0, 43.6047, 0, 5.57929e-05, 0, -43.6047, -42.0954, -0.0975664, -28.5866) -use_in_baked_light = true -mesh = SubResource( 17 ) -surface_material_override/0 = null +gi_mode = 1 +mesh = SubResource( "17" ) [node name="door_01_GEO.006" type="MeshInstance3D" parent="house7"] _import_path = NodePath("house7-col/door_01_GEO.006") transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -1.19209e-07, 0, -0.0385268) -use_in_baked_light = true -mesh = SubResource( 18 ) -surface_material_override/0 = null +gi_mode = 1 +mesh = SubResource( "18" ) [node name="window_01_GEO.021" type="MeshInstance3D" parent="house7"] _import_path = NodePath("house7-col/window_01_GEO.021") transform = Transform3D(1, 0, -3.38813e-21, 0, -4.37114e-08, 1, 0, -1, -4.37114e-08, -0.0352638, 0.0373665, -0.0385268) -use_in_baked_light = true -mesh = SubResource( 19 ) -surface_material_override/0 = null +gi_mode = 1 +mesh = SubResource( "19" ) [node name="window_01_GEO.022" type="MeshInstance3D" parent="house7"] _import_path = NodePath("house7-col/window_01_GEO.022") transform = Transform3D(1, 0, -3.38813e-21, 0, -4.37114e-08, 1, 0, -1, -4.37114e-08, 0.0377976, 0.0373665, -0.0385268) -use_in_baked_light = true -mesh = SubResource( 19 ) -surface_material_override/0 = null +gi_mode = 1 +mesh = SubResource( "19" ) [node name="window_01_GEO.023" type="MeshInstance3D" parent="house7"] _import_path = NodePath("house7-col/window_01_GEO.023") transform = Transform3D(1, 0, -3.38813e-21, 0, -4.37114e-08, 1, 0, -1, -4.37114e-08, 0.0377976, 0.090053, -0.0385268) -use_in_baked_light = true -mesh = SubResource( 20 ) -surface_material_override/0 = null +gi_mode = 1 +mesh = SubResource( "20" ) [node name="window_01_GEO.024" type="MeshInstance3D" parent="house7"] _import_path = NodePath("house7-col/window_01_GEO.024") transform = Transform3D(1, 0, -3.38813e-21, 0, -4.37114e-08, 1, 0, -1, -4.37114e-08, -0.0352638, 0.090053, -0.0385268) -use_in_baked_light = true -mesh = SubResource( 20 ) -surface_material_override/0 = null +gi_mode = 1 +mesh = SubResource( "20" ) [node name="window_02_GEO.032" type="MeshInstance3D" parent="house7"] _import_path = NodePath("house7-col/window_02_GEO.032") transform = Transform3D(-4.37113e-08, 1, 4.37114e-08, 0, -4.37114e-08, 1, 1, 4.37113e-08, 1.91068e-15, 0.0614011, 0.0373665, 0.0161048) -use_in_baked_light = true -mesh = SubResource( 20 ) -surface_material_override/0 = null +gi_mode = 1 +mesh = SubResource( "20" ) [node name="window_02_GEO.033" type="MeshInstance3D" parent="house7"] _import_path = NodePath("house7-col/window_02_GEO.033") transform = Transform3D(-4.37113e-08, 1, 4.37114e-08, 0, -4.37114e-08, 1, 1, 4.37113e-08, 1.91068e-15, 0.0614011, 0.0909522, 0.00224483) -use_in_baked_light = true -mesh = SubResource( 20 ) -surface_material_override/0 = null +gi_mode = 1 +mesh = SubResource( "20" ) [node name="window_02_GEO.034" type="MeshInstance3D" parent="house7"] _import_path = NodePath("house7-col/window_02_GEO.034") transform = Transform3D(7.54978e-08, -1, -4.37114e-08, 0, -4.37114e-08, 1, -1, -7.54978e-08, -3.30011e-15, -0.0613385, 0.0907937, 0.00224477) -use_in_baked_light = true -mesh = SubResource( 20 ) -surface_material_override/0 = null +gi_mode = 1 +mesh = SubResource( "20" ) [node name="window_03_GEO.015" type="MeshInstance3D" parent="house7"] _import_path = NodePath("house7-col/window_03_GEO.015") transform = Transform3D(7.54978e-08, -1, -4.37114e-08, 0, -4.37114e-08, 1, -1, -7.54978e-08, -3.30011e-15, -0.0613385, 0.0373665, 0.0176313) -use_in_baked_light = true -mesh = SubResource( 21 ) -surface_material_override/0 = null +gi_mode = 1 +mesh = SubResource( "21" ) [node name="window_03_GEO.016" type="MeshInstance3D" parent="house7"] _import_path = NodePath("house7-col/window_03_GEO.016") transform = Transform3D(-4.37113e-08, 1, 4.37114e-08, 0, -4.37114e-08, 1, 1, 4.37113e-08, 1.91068e-15, 0.0613388, 0.0373665, -0.0162845) -use_in_baked_light = true -mesh = SubResource( 21 ) -surface_material_override/0 = null +gi_mode = 1 +mesh = SubResource( "21" ) [node name="col" type="StaticBody3D" parent="house7"] [node name="shape" type="CollisionShape3D" parent="house7/col"] -shape = SubResource( 22 ) +shape = SubResource( "22" ) [node name="house10" type="MeshInstance3D" parent="."] _import_path = NodePath("house10-col") transform = Transform3D(8.36893e-05, 0, -43.6047, 0, 43.6047, 0, 43.6047, 0, 8.36893e-05, -73.5869, 2.78376, -47.8419) -use_in_baked_light = true -mesh = SubResource( 23 ) -surface_material_override/0 = null +gi_mode = 1 +mesh = SubResource( "23" ) [node name="door_04_GEO.005" type="MeshInstance3D" parent="house10"] _import_path = NodePath("house10-col/door_04_GEO.005") transform = Transform3D(1, 0, 1.06029e-08, 4.84109e-15, 1, 9.29138e-21, 0, 0, 1, 0.0147618, 0, 0.00162244) -use_in_baked_light = true -mesh = SubResource( 24 ) -surface_material_override/0 = null +gi_mode = 1 +mesh = SubResource( "24" ) [node name="window_01_GEO.019" type="MeshInstance3D" parent="house10"] _import_path = NodePath("house10-col/window_01_GEO.019") transform = Transform3D(1, -5.18721e-08, -5.82013e-15, 8.3938e-15, -4.37114e-08, 1, -4.12692e-08, -1, -4.37114e-08, -0.0493164, 0.0383933, -0.0474851) -use_in_baked_light = true -mesh = SubResource( 19 ) -surface_material_override/0 = null +gi_mode = 1 +mesh = SubResource( "19" ) [node name="window_01_GEO.020" type="MeshInstance3D" parent="house10"] _import_path = NodePath("house10-col/window_01_GEO.020") transform = Transform3D(8.61007e-08, 1, 4.37114e-08, 4.37114e-08, -4.37114e-08, 1, 1, -7.54978e-08, -4.37114e-08, -0.02475, 0.0383933, -0.0243369) -use_in_baked_light = true -mesh = SubResource( 19 ) -surface_material_override/0 = null +gi_mode = 1 +mesh = SubResource( "19" ) [node name="window_01_GEO.025" type="MeshInstance3D" parent="house10"] _import_path = NodePath("house10-col/window_01_GEO.025") transform = Transform3D(8.61007e-08, 1, 4.37114e-08, 4.37114e-08, -4.37114e-08, 1, 1, -7.54978e-08, -4.37114e-08, -0.02475, 0.0890986, -0.0243369) -use_in_baked_light = true -mesh = SubResource( 20 ) -surface_material_override/0 = null +gi_mode = 1 +mesh = SubResource( "20" ) [node name="window_01_GEO.026" type="MeshInstance3D" parent="house10"] _import_path = NodePath("house10-col/window_01_GEO.026") transform = Transform3D(1, -5.18721e-08, -5.82013e-15, 8.3938e-15, -4.37114e-08, 1, -4.12692e-08, -1, -4.37114e-08, -0.0493164, 0.0890986, -0.0474851) -use_in_baked_light = true -mesh = SubResource( 20 ) -surface_material_override/0 = null +gi_mode = 1 +mesh = SubResource( "20" ) [node name="window_01_GEO.027" type="MeshInstance3D" parent="house10"] _import_path = NodePath("house10-col/window_01_GEO.027") transform = Transform3D(1, -5.18721e-08, -5.82013e-15, 8.3938e-15, -4.37114e-08, 1, -4.12692e-08, -1, -4.37114e-08, 0.0388702, 0.0890986, 0.00162244) -use_in_baked_light = true -mesh = SubResource( 20 ) -surface_material_override/0 = null +gi_mode = 1 +mesh = SubResource( "20" ) [node name="window_01_GEO.028" type="MeshInstance3D" parent="house10"] _import_path = NodePath("house10-col/window_01_GEO.028") transform = Transform3D(1, -5.18721e-08, -5.82013e-15, 8.3938e-15, -4.37114e-08, 1, -4.12692e-08, -1, -4.37114e-08, -0.00660038, 0.0890986, 0.00162244) -use_in_baked_light = true -mesh = SubResource( 21 ) -surface_material_override/0 = null +gi_mode = 1 +mesh = SubResource( "21" ) [node name="window_02_GEO.029" type="MeshInstance3D" parent="house10"] _import_path = NodePath("house10-col/window_02_GEO.029") transform = Transform3D(6.48949e-08, -1, -4.37114e-08, -4.37114e-08, -4.37114e-08, 1, -1, -7.54978e-08, -4.37114e-08, -0.0720218, 0.0369723, 0.0314384) -use_in_baked_light = true -mesh = SubResource( 20 ) -surface_material_override/0 = null +gi_mode = 1 +mesh = SubResource( "20" ) [node name="window_02_GEO.030" type="MeshInstance3D" parent="house10"] _import_path = NodePath("house10-col/window_02_GEO.030") transform = Transform3D(6.48949e-08, -1, -4.37114e-08, -4.37114e-08, -4.37114e-08, 1, -1, -7.54978e-08, -4.37114e-08, -0.0720217, 0.0369723, -0.0149536) -use_in_baked_light = true -mesh = SubResource( 20 ) -surface_material_override/0 = null +gi_mode = 1 +mesh = SubResource( "20" ) [node name="window_02_GEO.031" type="MeshInstance3D" parent="house10"] _import_path = NodePath("house10-col/window_02_GEO.031") transform = Transform3D(8.61007e-08, 1, 4.37114e-08, 4.37114e-08, -4.37114e-08, 1, 1, -7.54978e-08, -4.37114e-08, 0.0607295, 0.0369723, 0.0305176) -use_in_baked_light = true -mesh = SubResource( 20 ) -surface_material_override/0 = null +gi_mode = 1 +mesh = SubResource( "20" ) [node name="window_02_GEO.035" type="MeshInstance3D" parent="house10"] _import_path = NodePath("house10-col/window_02_GEO.035") transform = Transform3D(8.61007e-08, 1, 4.37114e-08, 4.37114e-08, -4.37114e-08, 1, 1, -7.54978e-08, -4.37114e-08, 0.0607295, 0.0876775, 0.0305176) -use_in_baked_light = true -mesh = SubResource( 20 ) -surface_material_override/0 = null +gi_mode = 1 +mesh = SubResource( "20" ) [node name="window_02_GEO.036" type="MeshInstance3D" parent="house10"] _import_path = NodePath("house10-col/window_02_GEO.036") transform = Transform3D(6.48949e-08, -1, -4.37114e-08, -4.37114e-08, -4.37114e-08, 1, -1, -7.54978e-08, -4.37114e-08, -0.0720217, 0.0876775, -0.0149536) -use_in_baked_light = true -mesh = SubResource( 20 ) -surface_material_override/0 = null +gi_mode = 1 +mesh = SubResource( "20" ) [node name="window_02_GEO.037" type="MeshInstance3D" parent="house10"] _import_path = NodePath("house10-col/window_02_GEO.037") transform = Transform3D(6.48949e-08, -1, -4.37114e-08, -4.37114e-08, -4.37114e-08, 1, -1, -7.54978e-08, -4.37114e-08, -0.0720218, 0.0876775, 0.0314384) -use_in_baked_light = true -mesh = SubResource( 20 ) -surface_material_override/0 = null +gi_mode = 1 +mesh = SubResource( "20" ) [node name="window_03_GEO.014" type="MeshInstance3D" parent="house10"] _import_path = NodePath("house10-col/window_03_GEO.014") transform = Transform3D(1, -1.06029e-08, -4.63463e-16, 4.84109e-15, -4.37114e-08, 1, 0, -1, -4.37114e-08, 0.0415633, 0.0383933, 0.00158703) -use_in_baked_light = true -mesh = SubResource( 21 ) -surface_material_override/0 = null +gi_mode = 1 +mesh = SubResource( "21" ) [node name="col" type="StaticBody3D" parent="house10"] [node name="shape" type="CollisionShape3D" parent="house10/col"] -shape = SubResource( 25 ) +shape = SubResource( "25" ) [node name="house3" type="MeshInstance3D" parent="."] _import_path = NodePath("house3-col") transform = Transform3D(-2.78964e-05, 0, 43.6047, 0, 43.6047, 0, -43.6047, 0, -2.78964e-05, 20.2362, 5.91343, -47.4137) -use_in_baked_light = true -mesh = SubResource( 26 ) -surface_material_override/0 = null +gi_mode = 1 +mesh = SubResource( "26" ) [node name="door_03_GEO.002" type="MeshInstance3D" parent="house3"] _import_path = NodePath("house3-col/door_03_GEO.002") transform = Transform3D(1, 0, 0, -3.09713e-21, 1, 4.84109e-15, -3.06077e-08, 0, 1, 0.0334511, 0, -0.0125916) -use_in_baked_light = true -mesh = SubResource( 27 ) -surface_material_override/0 = null +gi_mode = 1 +mesh = SubResource( "27" ) [node name="window_01_GEO.015" type="MeshInstance3D" parent="house3"] _import_path = NodePath("house3-col/window_01_GEO.015") transform = Transform3D(7.54979e-08, -1, -4.37114e-08, -4.37114e-08, -4.37114e-08, 1, -1, -4.48902e-08, -4.37114e-08, -0.172729, 0.0383933, 0.031372) -use_in_baked_light = true -mesh = SubResource( 19 ) -surface_material_override/0 = null +gi_mode = 1 +mesh = SubResource( "19" ) [node name="window_01_GEO.016" type="MeshInstance3D" parent="house3"] _import_path = NodePath("house3-col/window_01_GEO.016") transform = Transform3D(1, 0, 0, -3.09713e-21, -4.37114e-08, 1, -3.06077e-08, -1, -4.37114e-08, -0.13697, 0.0383933, -0.000610381) -use_in_baked_light = true -mesh = SubResource( 19 ) -surface_material_override/0 = null +gi_mode = 1 +mesh = SubResource( "19" ) [node name="window_01_GEO.017" type="MeshInstance3D" parent="house3"] _import_path = NodePath("house3-col/window_01_GEO.017") transform = Transform3D(1, 0, 0, -3.09713e-21, -4.37114e-08, 1, -3.06077e-08, -1, -4.37114e-08, -0.0844759, 0.0383933, -0.000610411) -use_in_baked_light = true -mesh = SubResource( 19 ) -surface_material_override/0 = null +gi_mode = 1 +mesh = SubResource( "19" ) [node name="window_01_GEO.018" type="MeshInstance3D" parent="house3"] _import_path = NodePath("house3-col/window_01_GEO.018") transform = Transform3D(1, 0, 0, -3.09713e-21, -4.37114e-08, 1, -3.06077e-08, -1, -4.37114e-08, -0.0319825, 0.0383933, -0.000610381) -use_in_baked_light = true -mesh = SubResource( 19 ) -surface_material_override/0 = null +gi_mode = 1 +mesh = SubResource( "19" ) [node name="window_01_GEO.029" type="MeshInstance3D" parent="house3"] _import_path = NodePath("house3-col/window_01_GEO.029") transform = Transform3D(1, 0, 0, -3.09713e-21, -4.37114e-08, 1, -3.06077e-08, -1, -4.37114e-08, -0.0319825, 0.0873911, -0.000610381) -use_in_baked_light = true -mesh = SubResource( 20 ) -surface_material_override/0 = null +gi_mode = 1 +mesh = SubResource( "20" ) [node name="window_01_GEO.030" type="MeshInstance3D" parent="house3"] _import_path = NodePath("house3-col/window_01_GEO.030") transform = Transform3D(1, 0, 0, -3.09713e-21, -4.37114e-08, 1, -3.06077e-08, -1, -4.37114e-08, -0.0844759, 0.0873911, -0.000610411) -use_in_baked_light = true -mesh = SubResource( 20 ) -surface_material_override/0 = null +gi_mode = 1 +mesh = SubResource( "20" ) [node name="window_01_GEO.031" type="MeshInstance3D" parent="house3"] _import_path = NodePath("house3-col/window_01_GEO.031") transform = Transform3D(1, 0, 0, -3.09713e-21, -4.37114e-08, 1, -3.06077e-08, -1, -4.37114e-08, -0.13697, 0.0873911, -0.000610381) -use_in_baked_light = true -mesh = SubResource( 20 ) -surface_material_override/0 = null +gi_mode = 1 +mesh = SubResource( "20" ) [node name="window_01_GEO.032" type="MeshInstance3D" parent="house3"] _import_path = NodePath("house3-col/window_01_GEO.032") transform = Transform3D(7.54979e-08, -1, -4.37114e-08, -4.37114e-08, -4.37114e-08, 1, -1, -4.48902e-08, -4.37114e-08, -0.172729, 0.0873911, 0.031372) -use_in_baked_light = true -mesh = SubResource( 20 ) -surface_material_override/0 = null +gi_mode = 1 +mesh = SubResource( "20" ) [node name="window_02_GEO.028" type="MeshInstance3D" parent="house3"] _import_path = NodePath("house3-col/window_02_GEO.028") transform = Transform3D(7.5498e-08, 1, 4.37114e-08, 4.37114e-08, -4.37114e-08, 1, 1, -1.06106e-07, -4.37114e-08, 0.0630491, 0.0369723, 0.026001) -use_in_baked_light = true -mesh = SubResource( 20 ) -surface_material_override/0 = null +gi_mode = 1 +mesh = SubResource( "20" ) [node name="window_02_GEO.038" type="MeshInstance3D" parent="house3"] _import_path = NodePath("house3-col/window_02_GEO.038") transform = Transform3D(7.5498e-08, 1, 4.37114e-08, 4.37114e-08, -4.37114e-08, 1, 1, -1.06106e-07, -4.37114e-08, 0.0630491, 0.0859701, 0.00763479) -use_in_baked_light = true -mesh = SubResource( 21 ) -surface_material_override/0 = null +gi_mode = 1 +mesh = SubResource( "21" ) [node name="window_02_GEO.039" type="MeshInstance3D" parent="house3"] _import_path = NodePath("house3-col/window_02_GEO.039") transform = Transform3D(1, -4.12694e-08, -5.35666e-15, 3.55271e-15, -4.37114e-08, 1, -7.18771e-08, -1, -4.37114e-08, 0.0341114, 0.0859701, -0.0125916) -use_in_baked_light = true -mesh = SubResource( 20 ) -surface_material_override/0 = null +gi_mode = 1 +mesh = SubResource( "20" ) [node name="window_02_GEO.040" type="MeshInstance3D" parent="house3"] _import_path = NodePath("house3-col/window_02_GEO.040") transform = Transform3D(7.5498e-08, 1, 4.37114e-08, 4.37114e-08, -4.37114e-08, 1, 1, -1.06106e-07, -4.37114e-08, 0.0630491, 0.0859701, 0.0408069) -use_in_baked_light = true -mesh = SubResource( 21 ) -surface_material_override/0 = null +gi_mode = 1 +mesh = SubResource( "21" ) [node name="col" type="StaticBody3D" parent="house3"] [node name="shape" type="CollisionShape3D" parent="house3/col"] -shape = SubResource( 28 ) +shape = SubResource( "28" ) [node name="house5" type="MeshInstance3D" parent="."] _import_path = NodePath("house5-col") transform = Transform3D(-43.6046, 0, 0.0722779, 0, 43.6047, 0, -0.0722779, 0, -43.6046, -14.9966, 4.83627, -1.81873) -use_in_baked_light = true -mesh = SubResource( 29 ) -surface_material_override/0 = null +gi_mode = 1 +mesh = SubResource( "29" ) [node name="door_01_GEO.004" type="MeshInstance3D" parent="house5"] _import_path = NodePath("house5-col/door_01_GEO.004") transform = Transform3D(-1, 0, 1.50874e-07, 0, 1, 0, -1.51107e-07, 0, -1, -0.0404529, 0, 0.109078) -use_in_baked_light = true -mesh = SubResource( 18 ) -surface_material_override/0 = null +gi_mode = 1 +mesh = SubResource( "18" ) [node name="door_02_GEO.002" type="MeshInstance3D" parent="house5"] _import_path = NodePath("house5-col/door_02_GEO.002") transform = Transform3D(1, 0, 1.16415e-10, 0, 1, 0, 0, 0, 1, -0.00326717, 0, 0.00193861) -use_in_baked_light = true -mesh = SubResource( 30 ) -surface_material_override/0 = null +gi_mode = 1 +mesh = SubResource( "30" ) [node name="window_01_GEO.013" type="MeshInstance3D" parent="house5"] _import_path = NodePath("house5-col/window_01_GEO.013") transform = Transform3D(1, -1.16415e-10, -6.93889e-18, 0, -4.37114e-08, 1, 0, -1, -4.37114e-08, 0.0339863, 0.0383933, 0.00195311) -use_in_baked_light = true -mesh = SubResource( 19 ) -surface_material_override/0 = null +gi_mode = 1 +mesh = SubResource( "19" ) [node name="window_01_GEO.014" type="MeshInstance3D" parent="house5"] _import_path = NodePath("house5-col/window_01_GEO.014") transform = Transform3D(1, -1.16415e-10, -6.93889e-18, 0, -4.37114e-08, 1, 0, -1, -4.37114e-08, -0.0506914, 0.0383933, 0.0019531) -use_in_baked_light = true -mesh = SubResource( 19 ) -surface_material_override/0 = null +gi_mode = 1 +mesh = SubResource( "19" ) [node name="window_01_GEO.033" type="MeshInstance3D" parent="house5"] _import_path = NodePath("house5-col/window_01_GEO.033") transform = Transform3D(1, -1.16415e-10, -6.93889e-18, 0, -4.37114e-08, 1, 0, -1, -4.37114e-08, -0.0130545, 0.0892521, 0.00195309) -use_in_baked_light = true -mesh = SubResource( 20 ) -surface_material_override/0 = null +gi_mode = 1 +mesh = SubResource( "20" ) [node name="window_01_GEO.034" type="MeshInstance3D" parent="house5"] _import_path = NodePath("house5-col/window_01_GEO.034") transform = Transform3D(1, -1.16415e-10, -6.93889e-18, 0, -4.37114e-08, 1, 0, -1, -4.37114e-08, 0.0339863, 0.0892521, 0.00195311) -use_in_baked_light = true -mesh = SubResource( 20 ) -surface_material_override/0 = null +gi_mode = 1 +mesh = SubResource( "20" ) [node name="window_02_GEO.026" type="MeshInstance3D" parent="house5"] _import_path = NodePath("house5-col/window_02_GEO.026") transform = Transform3D(-1, 1.51224e-07, -9.09149e-08, -9.09149e-08, -4.37114e-08, 1, 1.50991e-07, 1, 4.37114e-08, 0.0263977, 0.0369723, 0.0909424) -use_in_baked_light = true -mesh = SubResource( 20 ) -surface_material_override/0 = null +gi_mode = 1 +mesh = SubResource( "20" ) [node name="window_02_GEO.027" type="MeshInstance3D" parent="house5"] _import_path = NodePath("house5-col/window_02_GEO.027") transform = Transform3D(7.567e-08, 1, -7.54979e-08, -1.5417e-08, 7.54979e-08, 1, 1, -7.55535e-08, 1.5417e-08, 0.060486, 0.0369723, 0.029067) -use_in_baked_light = true -mesh = SubResource( 20 ) -surface_material_override/0 = null +gi_mode = 1 +mesh = SubResource( "20" ) [node name="window_02_GEO.041" type="MeshInstance3D" parent="house5"] _import_path = NodePath("house5-col/window_02_GEO.041") transform = Transform3D(7.567e-08, 1, -7.54979e-08, -1.5417e-08, 7.54979e-08, 1, 1, -7.55535e-08, 1.5417e-08, 0.060486, 0.087831, 0.029067) -use_in_baked_light = true -mesh = SubResource( 20 ) -surface_material_override/0 = null +gi_mode = 1 +mesh = SubResource( "20" ) [node name="window_02_GEO.042" type="MeshInstance3D" parent="house5"] _import_path = NodePath("house5-col/window_02_GEO.042") transform = Transform3D(-1, 1.51224e-07, -9.09149e-08, -9.09149e-08, -4.37114e-08, 1, 1.50991e-07, 1, 4.37114e-08, 0.0263977, 0.087831, 0.0909424) -use_in_baked_light = true -mesh = SubResource( 20 ) -surface_material_override/0 = null +gi_mode = 1 +mesh = SubResource( "20" ) [node name="window_03_GEO.011" type="MeshInstance3D" parent="house5"] _import_path = NodePath("house5-col/window_03_GEO.011") transform = Transform3D(7.567e-08, 1, 4.37114e-08, 4.37114e-08, -4.37114e-08, 1, 1, -7.55535e-08, -4.37114e-08, 0.0604251, 0.03686, 0.0685784) -use_in_baked_light = true -mesh = SubResource( 21 ) -surface_material_override/0 = null +gi_mode = 1 +mesh = SubResource( "21" ) [node name="window_03_GEO.012" type="MeshInstance3D" parent="house5"] _import_path = NodePath("house5-col/window_03_GEO.012") transform = Transform3D(7.54371e-08, -1, -4.37114e-08, -4.37114e-08, -4.37114e-08, 1, -1, -7.55535e-08, -4.37114e-08, -0.0778809, 0.0383933, 0.0691764) -use_in_baked_light = true -mesh = SubResource( 21 ) -surface_material_override/0 = null +gi_mode = 1 +mesh = SubResource( "21" ) [node name="window_03_GEO.013" type="MeshInstance3D" parent="house5"] _import_path = NodePath("house5-col/window_03_GEO.013") transform = Transform3D(7.54371e-08, -1, -4.37114e-08, -4.37114e-08, -4.37114e-08, 1, -1, -7.55535e-08, -4.37114e-08, -0.077881, 0.0383933, 0.0326046) -use_in_baked_light = true -mesh = SubResource( 20 ) -surface_material_override/0 = null +gi_mode = 1 +mesh = SubResource( "20" ) [node name="window_03_GEO.017" type="MeshInstance3D" parent="house5"] _import_path = NodePath("house5-col/window_03_GEO.017") transform = Transform3D(7.54371e-08, -1, -4.37114e-08, -4.37114e-08, -4.37114e-08, 1, -1, -7.55535e-08, -4.37114e-08, -0.0778807, 0.0892521, 0.025177) -use_in_baked_light = true -mesh = SubResource( 21 ) -surface_material_override/0 = null +gi_mode = 1 +mesh = SubResource( "21" ) [node name="window_03_GEO.018" type="MeshInstance3D" parent="house5"] _import_path = NodePath("house5-col/window_03_GEO.018") transform = Transform3D(7.54371e-08, -1, -4.37114e-08, -4.37114e-08, -4.37114e-08, 1, -1, -7.55535e-08, -4.37114e-08, -0.077881, 0.0892521, 0.0670242) -use_in_baked_light = true -mesh = SubResource( 20 ) -surface_material_override/0 = null +gi_mode = 1 +mesh = SubResource( "20" ) [node name="window_03_GEO.019" type="MeshInstance3D" parent="house5"] _import_path = NodePath("house5-col/window_03_GEO.019") transform = Transform3D(7.567e-08, 1, 4.37114e-08, 4.37114e-08, -4.37114e-08, 1, 1, -7.55535e-08, -4.37114e-08, 0.0604251, 0.0877188, 0.0685784) -use_in_baked_light = true -mesh = SubResource( 21 ) -surface_material_override/0 = null +gi_mode = 1 +mesh = SubResource( "21" ) [node name="window_03_GEO.020" type="MeshInstance3D" parent="house5"] _import_path = NodePath("house5-col/window_03_GEO.020") transform = Transform3D(1, 4.1211e-08, 1.31306e-08, -1.31306e-08, -4.37114e-08, 1, 4.13274e-08, -1, -4.37114e-08, -0.0586339, 0.0892521, 0.00193866) -use_in_baked_light = true -mesh = SubResource( 21 ) -surface_material_override/0 = null +gi_mode = 1 +mesh = SubResource( "21" ) [node name="window_03_GEO.021" type="MeshInstance3D" parent="house5"] _import_path = NodePath("house5-col/window_03_GEO.021") transform = Transform3D(-1, -1.50874e-07, -8.74228e-08, -8.74228e-08, -4.37114e-08, 1, -1.51107e-07, 1, 4.37114e-08, -0.0390904, 0.0892521, 0.121015) -use_in_baked_light = true -mesh = SubResource( 20 ) -surface_material_override/0 = null +gi_mode = 1 +mesh = SubResource( "20" ) [node name="col" type="StaticBody3D" parent="house5"] [node name="shape" type="CollisionShape3D" parent="house5/col"] -shape = SubResource( 31 ) +shape = SubResource( "31" ) [node name="house1" type="MeshInstance3D" parent="."] _import_path = NodePath("house1-col") transform = Transform3D(43.6047, 0, 0, 0, 43.6047, 0, 0, 0, 43.6047, -12.1119, 4.02536, -42.671) -use_in_baked_light = true -mesh = SubResource( 32 ) -surface_material_override/0 = null +gi_mode = 1 +mesh = SubResource( "32" ) [node name="door_01_GEO.005" type="MeshInstance3D" parent="house1"] _import_path = NodePath("house1-col/door_01_GEO.005") transform = Transform3D(-1, 0, 1.50996e-07, 0, 1, 0, -1.50996e-07, 0, -1, -0.00937384, 0, 0.0891412) -use_in_baked_light = true -mesh = SubResource( 18 ) -surface_material_override/0 = null +gi_mode = 1 +mesh = SubResource( "18" ) [node name="door_04_GEO.004" type="MeshInstance3D" parent="house1"] _import_path = NodePath("house1-col/door_04_GEO.004") transform = Transform3D(0.720091, 0, -0.69388, 0, 1, 0, 0.69388, 0, 0.720091, 0.108514, 0, 0.0281604) -use_in_baked_light = true -mesh = SubResource( 33 ) -surface_material_override/0 = null +gi_mode = 1 +mesh = SubResource( "33" ) [node name="window_01_GEO.012" type="MeshInstance3D" parent="house1"] _import_path = NodePath("house1-col/window_01_GEO.012") transform = Transform3D(-1, 1.13999e-14, -1.50996e-07, -1.50996e-07, -7.54979e-08, 1, 0, 1, 7.54979e-08, 0.084346, 0.0383933, 0.208313) -use_in_baked_light = true -mesh = SubResource( 19 ) -surface_material_override/0 = null +gi_mode = 1 +mesh = SubResource( "19" ) [node name="window_01_GEO.035" type="MeshInstance3D" parent="house1"] _import_path = NodePath("house1-col/window_01_GEO.035") transform = Transform3D(-1, 1.13999e-14, -1.50996e-07, -1.50996e-07, -7.54979e-08, 1, 0, 1, 7.54979e-08, 0.084346, 0.0930055, 0.208313) -use_in_baked_light = true -mesh = SubResource( 20 ) -surface_material_override/0 = null +gi_mode = 1 +mesh = SubResource( "20" ) [node name="window_02_GEO.017" type="MeshInstance3D" parent="house1"] _import_path = NodePath("house1-col/window_02_GEO.017") transform = Transform3D(-4.37114e-08, -1, -4.37114e-08, -1.06581e-14, -4.37114e-08, 1, -1, 4.37114e-08, -8.74746e-15, 0.05426, 0.0369723, 0.177452) -use_in_baked_light = true -mesh = SubResource( 20 ) -surface_material_override/0 = null +gi_mode = 1 +mesh = SubResource( "20" ) [node name="window_02_GEO.018" type="MeshInstance3D" parent="house1"] _import_path = NodePath("house1-col/window_02_GEO.018") transform = Transform3D(-1, -1.50996e-07, -4.37114e-08, -4.37114e-08, -4.37114e-08, 1, -1.50996e-07, 1, 4.37114e-08, 0.0260007, 0.0369723, 0.0891725) -use_in_baked_light = true -mesh = SubResource( 20 ) -surface_material_override/0 = null +gi_mode = 1 +mesh = SubResource( "20" ) [node name="window_02_GEO.019" type="MeshInstance3D" parent="house1"] _import_path = NodePath("house1-col/window_02_GEO.019") transform = Transform3D(7.54979e-08, -1, -4.37114e-08, 3.55271e-15, -4.37114e-08, 1, -1, -7.54979e-08, 2.52596e-16, -0.0762943, 0.0369723, 0.0330316) -use_in_baked_light = true -mesh = SubResource( 20 ) -surface_material_override/0 = null +gi_mode = 1 +mesh = SubResource( "20" ) [node name="window_02_GEO.020" type="MeshInstance3D" parent="house1"] _import_path = NodePath("house1-col/window_02_GEO.020") transform = Transform3D(1, 1.91069e-15, -4.37114e-08, 4.37114e-08, -4.37114e-08, 1, 0, -1, -4.37114e-08, 0.0596448, 0.0369723, 0.0037232) -use_in_baked_light = true -mesh = SubResource( 20 ) -surface_material_override/0 = null +gi_mode = 1 +mesh = SubResource( "20" ) [node name="window_02_GEO.021" type="MeshInstance3D" parent="house1"] _import_path = NodePath("house1-col/window_02_GEO.021") transform = Transform3D(1, 1.91069e-15, -4.37114e-08, 4.37114e-08, -4.37114e-08, 1, 0, -1, -4.37114e-08, 0.00377846, 0.0369723, 0.0037232) -use_in_baked_light = true -mesh = SubResource( 20 ) -surface_material_override/0 = null +gi_mode = 1 +mesh = SubResource( "20" ) [node name="window_02_GEO.022" type="MeshInstance3D" parent="house1"] _import_path = NodePath("house1-col/window_02_GEO.022") transform = Transform3D(1, 1.91069e-15, -4.37114e-08, 4.37114e-08, -4.37114e-08, 1, 0, -1, -4.37114e-08, -0.0520872, 0.0369723, 0.0037232) -use_in_baked_light = true -mesh = SubResource( 20 ) -surface_material_override/0 = null +gi_mode = 1 +mesh = SubResource( "20" ) [node name="window_02_GEO.023" type="MeshInstance3D" parent="house1"] _import_path = NodePath("house1-col/window_02_GEO.023") transform = Transform3D(7.54979e-08, 1, 4.37114e-08, 4.37114e-08, -4.37114e-08, 1, 1, -7.54979e-08, -4.37114e-08, 0.130066, 0.0369723, 0.185434) -use_in_baked_light = true -mesh = SubResource( 20 ) -surface_material_override/0 = null +gi_mode = 1 +mesh = SubResource( "20" ) [node name="window_02_GEO.024" type="MeshInstance3D" parent="house1"] _import_path = NodePath("house1-col/window_02_GEO.024") transform = Transform3D(7.54979e-08, 1, 4.37114e-08, 4.37114e-08, -4.37114e-08, 1, 1, -7.54979e-08, -4.37114e-08, 0.130066, 0.0369723, 0.129569) -use_in_baked_light = true -mesh = SubResource( 20 ) -surface_material_override/0 = null +gi_mode = 1 +mesh = SubResource( "20" ) [node name="window_02_GEO.025" type="MeshInstance3D" parent="house1"] _import_path = NodePath("house1-col/window_02_GEO.025") transform = Transform3D(7.54979e-08, 1, 4.37114e-08, 4.37114e-08, -4.37114e-08, 1, 1, -7.54979e-08, -4.37114e-08, 0.130066, 0.0369723, 0.0737026) -use_in_baked_light = true -mesh = SubResource( 20 ) -surface_material_override/0 = null +gi_mode = 1 +mesh = SubResource( "20" ) [node name="window_02_GEO.043" type="MeshInstance3D" parent="house1"] _import_path = NodePath("house1-col/window_02_GEO.043") transform = Transform3D(7.54979e-08, 1, 4.37114e-08, 4.37114e-08, -4.37114e-08, 1, 1, -7.54979e-08, -4.37114e-08, 0.130066, 0.0915845, 0.0737026) -use_in_baked_light = true -mesh = SubResource( 20 ) -surface_material_override/0 = null +gi_mode = 1 +mesh = SubResource( "20" ) [node name="window_02_GEO.044" type="MeshInstance3D" parent="house1"] _import_path = NodePath("house1-col/window_02_GEO.044") transform = Transform3D(7.54979e-08, 1, 4.37114e-08, 4.37114e-08, -4.37114e-08, 1, 1, -7.54979e-08, -4.37114e-08, 0.130066, 0.0915845, 0.129569) -use_in_baked_light = true -mesh = SubResource( 20 ) -surface_material_override/0 = null +gi_mode = 1 +mesh = SubResource( "20" ) [node name="window_02_GEO.045" type="MeshInstance3D" parent="house1"] _import_path = NodePath("house1-col/window_02_GEO.045") transform = Transform3D(7.54979e-08, 1, 4.37114e-08, 4.37114e-08, -4.37114e-08, 1, 1, -7.54979e-08, -4.37114e-08, 0.130066, 0.0915845, 0.185434) -use_in_baked_light = true -mesh = SubResource( 20 ) -surface_material_override/0 = null +gi_mode = 1 +mesh = SubResource( "20" ) [node name="window_02_GEO.046" type="MeshInstance3D" parent="house1"] _import_path = NodePath("house1-col/window_02_GEO.046") transform = Transform3D(1, 1.91069e-15, -4.37114e-08, 4.37114e-08, -4.37114e-08, 1, 0, -1, -4.37114e-08, -0.0520872, 0.0915845, 0.0037232) -use_in_baked_light = true -mesh = SubResource( 20 ) -surface_material_override/0 = null +gi_mode = 1 +mesh = SubResource( "20" ) [node name="window_02_GEO.047" type="MeshInstance3D" parent="house1"] _import_path = NodePath("house1-col/window_02_GEO.047") transform = Transform3D(1, 1.91069e-15, -4.37114e-08, 4.37114e-08, -4.37114e-08, 1, 0, -1, -4.37114e-08, 0.00377846, 0.0915845, 0.0037232) -use_in_baked_light = true -mesh = SubResource( 20 ) -surface_material_override/0 = null +gi_mode = 1 +mesh = SubResource( "20" ) [node name="window_02_GEO.048" type="MeshInstance3D" parent="house1"] _import_path = NodePath("house1-col/window_02_GEO.048") transform = Transform3D(1, 1.91069e-15, -4.37114e-08, 4.37114e-08, -4.37114e-08, 1, 0, -1, -4.37114e-08, 0.0596448, 0.0915845, 0.0037232) -use_in_baked_light = true -mesh = SubResource( 20 ) -surface_material_override/0 = null +gi_mode = 1 +mesh = SubResource( "20" ) [node name="window_02_GEO.049" type="MeshInstance3D" parent="house1"] _import_path = NodePath("house1-col/window_02_GEO.049") transform = Transform3D(7.54979e-08, -1, -4.37114e-08, 3.55271e-15, -4.37114e-08, 1, -1, -7.54979e-08, 2.52596e-16, -0.0762943, 0.0915845, 0.0330316) -use_in_baked_light = true -mesh = SubResource( 20 ) -surface_material_override/0 = null +gi_mode = 1 +mesh = SubResource( "20" ) [node name="window_02_GEO.050" type="MeshInstance3D" parent="house1"] _import_path = NodePath("house1-col/window_02_GEO.050") transform = Transform3D(-1, -1.50996e-07, -4.37114e-08, -4.37114e-08, -4.37114e-08, 1, -1.50996e-07, 1, 4.37114e-08, 0.0260007, 0.0915845, 0.0891725) -use_in_baked_light = true -mesh = SubResource( 20 ) -surface_material_override/0 = null +gi_mode = 1 +mesh = SubResource( "20" ) [node name="window_02_GEO.051" type="MeshInstance3D" parent="house1"] _import_path = NodePath("house1-col/window_02_GEO.051") transform = Transform3D(-4.37114e-08, -1, -4.37114e-08, -1.06581e-14, -4.37114e-08, 1, -1, 4.37114e-08, -8.74746e-15, 0.05426, 0.0915845, 0.177452) -use_in_baked_light = true -mesh = SubResource( 20 ) -surface_material_override/0 = null +gi_mode = 1 +mesh = SubResource( "20" ) [node name="window_02_GEO.052" type="MeshInstance3D" parent="house1"] _import_path = NodePath("house1-col/window_02_GEO.052") transform = Transform3D(0.717658, 0.696395, -1.36478e-08, 6.14334e-08, -4.37114e-08, 1, 0.696395, -0.717658, -7.41518e-08, 0.106201, 0.0915845, 0.0257876) -use_in_baked_light = true -mesh = SubResource( 20 ) -surface_material_override/0 = null +gi_mode = 1 +mesh = SubResource( "20" ) [node name="window_03_GEO.009" type="MeshInstance3D" parent="house1"] _import_path = NodePath("house1-col/window_03_GEO.009") transform = Transform3D(-1, -1.50996e-07, -8.74228e-08, -8.74228e-08, -4.37114e-08, 1, -1.50996e-07, 1, 4.37114e-08, -0.0517201, 0.0364428, 0.0891725) -use_in_baked_light = true -mesh = SubResource( 21 ) -surface_material_override/0 = null +gi_mode = 1 +mesh = SubResource( "21" ) [node name="window_03_GEO.010" type="MeshInstance3D" parent="house1"] _import_path = NodePath("house1-col/window_03_GEO.010") transform = Transform3D(7.54979e-08, -1, -4.37114e-08, -4.37114e-08, -4.37114e-08, 1, -1, -7.54979e-08, -4.37114e-08, -0.0763552, 0.0364428, 0.069336) -use_in_baked_light = true -mesh = SubResource( 21 ) -surface_material_override/0 = null +gi_mode = 1 +mesh = SubResource( "21" ) [node name="window_03_GEO.022" type="MeshInstance3D" parent="house1"] _import_path = NodePath("house1-col/window_03_GEO.022") transform = Transform3D(7.54979e-08, -1, -4.37114e-08, -4.37114e-08, -4.37114e-08, 1, -1, -7.54979e-08, -4.37114e-08, -0.0763552, 0.0910551, 0.069336) -use_in_baked_light = true -mesh = SubResource( 21 ) -surface_material_override/0 = null +gi_mode = 1 +mesh = SubResource( "21" ) [node name="window_03_GEO.023" type="MeshInstance3D" parent="house1"] _import_path = NodePath("house1-col/window_03_GEO.023") transform = Transform3D(-1, -1.50996e-07, -8.74228e-08, -8.74228e-08, -4.37114e-08, 1, -1.50996e-07, 1, 4.37114e-08, -0.0517201, 0.0910551, 0.0891725) -use_in_baked_light = true -mesh = SubResource( 21 ) -surface_material_override/0 = null +gi_mode = 1 +mesh = SubResource( "21" ) [node name="col" type="StaticBody3D" parent="house1"] [node name="shape" type="CollisionShape3D" parent="house1/col"] -shape = SubResource( 34 ) +shape = SubResource( "34" ) [node name="house2" type="MeshInstance3D" parent="."] _import_path = NodePath("house2-col") transform = Transform3D(-0.0279572, 0, -43.6047, 0, 43.6047, 0, 43.6047, 0, -0.0279572, 9.26931, 5.91452, -41.5705) -use_in_baked_light = true -mesh = SubResource( 35 ) -surface_material_override/0 = null +gi_mode = 1 +mesh = SubResource( "35" ) [node name="door_01_GEO.002" type="MeshInstance3D" parent="house2"] _import_path = NodePath("house2-col/door_01_GEO.002") transform = Transform3D(-1, 0, 1.51049e-07, 0, 1, 0, -1.51049e-07, 0, -1, -0.00937349, 0, 0.0891411) -use_in_baked_light = true -mesh = SubResource( 18 ) -surface_material_override/0 = null +gi_mode = 1 +mesh = SubResource( "18" ) [node name="door_04_GEO.003" type="MeshInstance3D" parent="house2"] _import_path = NodePath("house2-col/door_04_GEO.003") transform = Transform3D(0.720091, 0, -0.69388, 0, 1, 0, 0.69388, 0, 0.720091, 0.108514, 0, 0.0281602) -use_in_baked_light = true -mesh = SubResource( 33 ) -surface_material_override/0 = null +gi_mode = 1 +mesh = SubResource( "33" ) [node name="window_01_GEO.011" type="MeshInstance3D" parent="house2"] _import_path = NodePath("house2-col/window_01_GEO.011") transform = Transform3D(-1, -5.82077e-11, -1.50996e-07, -1.50996e-07, -7.54979e-08, 1, -5.82077e-11, 1, 7.54979e-08, 0.0843465, 0.0383933, 0.208313) -use_in_baked_light = true -mesh = SubResource( 19 ) -surface_material_override/0 = null +gi_mode = 1 +mesh = SubResource( "19" ) [node name="window_02_GEO.008" type="MeshInstance3D" parent="house2"] _import_path = NodePath("house2-col/window_02_GEO.008") transform = Transform3D(7.54371e-08, 1, 4.37114e-08, 4.37114e-08, -4.37114e-08, 1, 1, -7.54371e-08, -4.37114e-08, 0.130066, 0.0369723, 0.0737024) -use_in_baked_light = true -mesh = SubResource( 20 ) -surface_material_override/0 = null +gi_mode = 1 +mesh = SubResource( "20" ) [node name="window_02_GEO.009" type="MeshInstance3D" parent="house2"] _import_path = NodePath("house2-col/window_02_GEO.009") transform = Transform3D(7.54371e-08, 1, 4.37114e-08, 4.37114e-08, -4.37114e-08, 1, 1, -7.54371e-08, -4.37114e-08, 0.130066, 0.0369723, 0.129568) -use_in_baked_light = true -mesh = SubResource( 20 ) -surface_material_override/0 = null +gi_mode = 1 +mesh = SubResource( "20" ) [node name="window_02_GEO.010" type="MeshInstance3D" parent="house2"] _import_path = NodePath("house2-col/window_02_GEO.010") transform = Transform3D(7.54371e-08, 1, 4.37114e-08, 4.37114e-08, -4.37114e-08, 1, 1, -7.54371e-08, -4.37114e-08, 0.130066, 0.0369723, 0.185434) -use_in_baked_light = true -mesh = SubResource( 20 ) -surface_material_override/0 = null +gi_mode = 1 +mesh = SubResource( "20" ) [node name="window_02_GEO.011" type="MeshInstance3D" parent="house2"] _import_path = NodePath("house2-col/window_02_GEO.011") transform = Transform3D(7.54953e-08, -1, -4.37114e-08, 3.55271e-15, -4.37114e-08, 1, -1, -7.54953e-08, 2.498e-16, -0.0762936, 0.0369723, 0.0330314) -use_in_baked_light = true -mesh = SubResource( 20 ) -surface_material_override/0 = null +gi_mode = 1 +mesh = SubResource( "20" ) [node name="window_02_GEO.012" type="MeshInstance3D" parent="house2"] _import_path = NodePath("house2-col/window_02_GEO.012") transform = Transform3D(-1, -1.51049e-07, -4.37114e-08, -4.37114e-08, -4.37114e-08, 1, -1.51049e-07, 1, 4.37114e-08, 0.0260011, 0.0369723, 0.0891724) -use_in_baked_light = true -mesh = SubResource( 20 ) -surface_material_override/0 = null +gi_mode = 1 +mesh = SubResource( "20" ) [node name="window_02_GEO.013" type="MeshInstance3D" parent="house2"] _import_path = NodePath("house2-col/window_02_GEO.013") transform = Transform3D(-4.36557e-08, -1, -4.37114e-08, -1.06581e-14, -4.37114e-08, 1, -1, 4.36557e-08, -8.74995e-15, 0.0542604, 0.0369723, 0.177452) -use_in_baked_light = true -mesh = SubResource( 20 ) -surface_material_override/0 = null +gi_mode = 1 +mesh = SubResource( "20" ) [node name="window_02_GEO.014" type="MeshInstance3D" parent="house2"] _import_path = NodePath("house2-col/window_02_GEO.014") transform = Transform3D(1, 5.82077e-11, -4.37114e-08, 4.37114e-08, -4.37114e-08, 1, 5.82077e-11, -1, -4.37114e-08, -0.0520867, 0.0369723, 0.00372311) -use_in_baked_light = true -mesh = SubResource( 20 ) -surface_material_override/0 = null +gi_mode = 1 +mesh = SubResource( "20" ) [node name="window_02_GEO.015" type="MeshInstance3D" parent="house2"] _import_path = NodePath("house2-col/window_02_GEO.015") transform = Transform3D(1, 5.82077e-11, -4.37114e-08, 4.37114e-08, -4.37114e-08, 1, 5.82077e-11, -1, -4.37114e-08, 0.00377893, 0.0369723, 0.00372316) -use_in_baked_light = true -mesh = SubResource( 20 ) -surface_material_override/0 = null +gi_mode = 1 +mesh = SubResource( "20" ) [node name="window_02_GEO.016" type="MeshInstance3D" parent="house2"] _import_path = NodePath("house2-col/window_02_GEO.016") transform = Transform3D(1, 5.82077e-11, -4.37114e-08, 4.37114e-08, -4.37114e-08, 1, 5.82077e-11, -1, -4.37114e-08, 0.0596454, 0.0369723, 0.00372311) -use_in_baked_light = true -mesh = SubResource( 20 ) -surface_material_override/0 = null +gi_mode = 1 +mesh = SubResource( "20" ) [node name="window_03_GEO.007" type="MeshInstance3D" parent="house2"] _import_path = NodePath("house2-col/window_03_GEO.007") transform = Transform3D(7.54953e-08, -1, -4.37114e-08, -4.37114e-08, -4.37114e-08, 1, -1, -7.54953e-08, -4.37114e-08, -0.076355, 0.0364428, 0.069336) -use_in_baked_light = true -mesh = SubResource( 21 ) -surface_material_override/0 = null +gi_mode = 1 +mesh = SubResource( "21" ) [node name="window_03_GEO.008" type="MeshInstance3D" parent="house2"] _import_path = NodePath("house2-col/window_03_GEO.008") transform = Transform3D(-1, -1.51049e-07, -8.74228e-08, -8.74228e-08, -4.37114e-08, 1, -1.51049e-07, 1, 4.37114e-08, -0.0517194, 0.0364428, 0.0891723) -use_in_baked_light = true -mesh = SubResource( 21 ) -surface_material_override/0 = null +gi_mode = 1 +mesh = SubResource( "21" ) [node name="col" type="StaticBody3D" parent="house2"] [node name="shape" type="CollisionShape3D" parent="house2/col"] -shape = SubResource( 36 ) +shape = SubResource( "36" ) [node name="house8" type="MeshInstance3D" parent="."] _import_path = NodePath("house8-col") transform = Transform3D(43.6047, 0, 0, 0, 43.6047, 0, 0, 0, 43.6047, -54.4039, -0.269261, -30.6303) -use_in_baked_light = true -mesh = SubResource( 37 ) -surface_material_override/0 = null +gi_mode = 1 +mesh = SubResource( "37" ) [node name="door_01_GEO.003" type="MeshInstance3D" parent="house8"] _import_path = NodePath("house8-col/door_01_GEO.003") transform = Transform3D(-1, 0, 1.50996e-07, 0, 1, 0, -1.10386e-07, 0, -1, -0.0404528, 4.65661e-10, 0.109078) -use_in_baked_light = true -mesh = SubResource( 18 ) -surface_material_override/0 = null +gi_mode = 1 +mesh = SubResource( "18" ) [node name="door_02_GEO.001" type="MeshInstance3D" parent="house8"] _import_path = NodePath("house8-col/door_02_GEO.001") transform = Transform3D(1, 0, 0, 0, 1, 0, -4.061e-08, 0, 1, -0.00326705, 4.65661e-10, 0.0019387) -use_in_baked_light = true -mesh = SubResource( 30 ) -surface_material_override/0 = null +gi_mode = 1 +mesh = SubResource( "30" ) [node name="window_01_GEO.009" type="MeshInstance3D" parent="house8"] _import_path = NodePath("house8-col/window_01_GEO.009") transform = Transform3D(1, 0, 0, 0, -4.37114e-08, 1, -4.061e-08, -1, -4.37114e-08, -0.0506916, 0.0383933, 0.00195318) -use_in_baked_light = true -mesh = SubResource( 19 ) -surface_material_override/0 = null +gi_mode = 1 +mesh = SubResource( "19" ) [node name="window_01_GEO.010" type="MeshInstance3D" parent="house8"] _import_path = NodePath("house8-col/window_01_GEO.010") transform = Transform3D(1, 0, 0, 0, -4.37114e-08, 1, -4.061e-08, -1, -4.37114e-08, 0.0339863, 0.0383933, 0.00195318) -use_in_baked_light = true -mesh = SubResource( 19 ) -surface_material_override/0 = null +gi_mode = 1 +mesh = SubResource( "19" ) [node name="window_02_GEO.006" type="MeshInstance3D" parent="house8"] _import_path = NodePath("house8-col/window_02_GEO.006") transform = Transform3D(7.54979e-08, 1, -7.54979e-08, -1.5417e-08, 7.54979e-08, 1, 1, -1.16108e-07, 1.5417e-08, 0.0604858, 0.0369723, 0.029067) -use_in_baked_light = true -mesh = SubResource( 20 ) -surface_material_override/0 = null +gi_mode = 1 +mesh = SubResource( "20" ) [node name="window_02_GEO.007" type="MeshInstance3D" parent="house8"] _import_path = NodePath("house8-col/window_02_GEO.007") transform = Transform3D(-1, 1.50996e-07, -9.09149e-08, -9.09149e-08, -4.37114e-08, 1, 1.91606e-07, 1, 4.37114e-08, 0.0263981, 0.0369723, 0.0909424) -use_in_baked_light = true -mesh = SubResource( 20 ) -surface_material_override/0 = null +gi_mode = 1 +mesh = SubResource( "20" ) [node name="window_03_GEO.004" type="MeshInstance3D" parent="house8"] _import_path = NodePath("house8-col/window_03_GEO.004") transform = Transform3D(7.54979e-08, -1, -4.37114e-08, -4.37114e-08, -4.37114e-08, 1, -1, -3.48879e-08, -4.37114e-08, -0.0778807, 0.0383933, 0.0251771) -use_in_baked_light = true -mesh = SubResource( 21 ) -surface_material_override/0 = null +gi_mode = 1 +mesh = SubResource( "21" ) [node name="window_03_GEO.005" type="MeshInstance3D" parent="house8"] _import_path = NodePath("house8-col/window_03_GEO.005") transform = Transform3D(7.54979e-08, -1, -4.37114e-08, -4.37114e-08, -4.37114e-08, 1, -1, -3.48879e-08, -4.37114e-08, -0.0778807, 0.0383933, 0.0691765) -use_in_baked_light = true -mesh = SubResource( 21 ) -surface_material_override/0 = null +gi_mode = 1 +mesh = SubResource( "21" ) [node name="window_03_GEO.006" type="MeshInstance3D" parent="house8"] _import_path = NodePath("house8-col/window_03_GEO.006") transform = Transform3D(7.54979e-08, 1, 4.37114e-08, 4.37114e-08, -4.37114e-08, 1, 1, -1.16108e-07, -4.37114e-08, 0.0604249, 0.03686, 0.0685785) -use_in_baked_light = true -mesh = SubResource( 21 ) -surface_material_override/0 = null +gi_mode = 1 +mesh = SubResource( "21" ) [node name="col" type="StaticBody3D" parent="house8"] [node name="shape" type="CollisionShape3D" parent="house8/col"] -shape = SubResource( 38 ) +shape = SubResource( "38" ) [node name="house6" type="MeshInstance3D" parent="."] _import_path = NodePath("house6-col") transform = Transform3D(43.6047, 0, 0, 0, 43.6047, 0, 0, 0, 43.6047, -40.1375, -0.203611, -5.43416) -use_in_baked_light = true -mesh = SubResource( 39 ) -surface_material_override/0 = null +gi_mode = 1 +mesh = SubResource( "39" ) [node name="door_03_GEO.001" type="MeshInstance3D" parent="house6"] _import_path = NodePath("house6-col/door_03_GEO.001") transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0.0334513, 0, -0.0125916) -use_in_baked_light = true -mesh = SubResource( 27 ) -surface_material_override/0 = null +gi_mode = 1 +mesh = SubResource( "27" ) [node name="window_01_GEO.005" type="MeshInstance3D" parent="house6"] _import_path = NodePath("house6-col/window_01_GEO.005") transform = Transform3D(1, 0, 0, 0, -4.37114e-08, 1, 0, -1, -4.37114e-08, -0.0319823, 0.0383933, -0.000610389) -use_in_baked_light = true -mesh = SubResource( 19 ) -surface_material_override/0 = null +gi_mode = 1 +mesh = SubResource( "19" ) [node name="window_01_GEO.006" type="MeshInstance3D" parent="house6"] _import_path = NodePath("house6-col/window_01_GEO.006") transform = Transform3D(1, 0, 0, 0, -4.37114e-08, 1, 0, -1, -4.37114e-08, -0.084476, 0.0383933, -0.000610389) -use_in_baked_light = true -mesh = SubResource( 19 ) -surface_material_override/0 = null +gi_mode = 1 +mesh = SubResource( "19" ) [node name="window_01_GEO.007" type="MeshInstance3D" parent="house6"] _import_path = NodePath("house6-col/window_01_GEO.007") transform = Transform3D(1, 0, 0, 0, -4.37114e-08, 1, 0, -1, -4.37114e-08, -0.136969, 0.0383933, -0.000610389) -use_in_baked_light = true -mesh = SubResource( 19 ) -surface_material_override/0 = null +gi_mode = 1 +mesh = SubResource( "19" ) [node name="window_01_GEO.008" type="MeshInstance3D" parent="house6"] _import_path = NodePath("house6-col/window_01_GEO.008") transform = Transform3D(7.54979e-08, -1, -4.37114e-08, -4.37114e-08, -4.37114e-08, 1, -1, -7.54979e-08, -4.37114e-08, -0.172729, 0.0383933, 0.031372) -use_in_baked_light = true -mesh = SubResource( 19 ) -surface_material_override/0 = null +gi_mode = 1 +mesh = SubResource( "19" ) [node name="window_02_GEO.005" type="MeshInstance3D" parent="house6"] _import_path = NodePath("house6-col/window_02_GEO.005") transform = Transform3D(7.54979e-08, 1, 4.37114e-08, 4.37114e-08, -4.37114e-08, 1, 1, -7.54979e-08, -4.37114e-08, 0.0630495, 0.0369723, 0.026001) -use_in_baked_light = true -mesh = SubResource( 20 ) -surface_material_override/0 = null +gi_mode = 1 +mesh = SubResource( "20" ) [node name="col" type="StaticBody3D" parent="house6"] [node name="shape" type="CollisionShape3D" parent="house6/col"] -shape = SubResource( 40 ) +shape = SubResource( "40" ) [node name="house9" type="MeshInstance3D" parent="."] _import_path = NodePath("house9-col") transform = Transform3D(-0.833531, 0, -43.5967, 0, 43.6047, 0, 43.5967, 0, -0.833531, -75.884, 2.80561, -25.8623) -use_in_baked_light = true -mesh = SubResource( 41 ) -surface_material_override/0 = null +gi_mode = 1 +mesh = SubResource( "41" ) [node name="door_04_GEO.002" type="MeshInstance3D" parent="house9"] _import_path = NodePath("house9-col/door_04_GEO.002") transform = Transform3D(1, 0, 2.23517e-08, -4.85179e-11, 1, -2.53766e-09, 0, 0, 1, 0.014762, -7.45058e-09, 0.0016222) -use_in_baked_light = true -mesh = SubResource( 24 ) -surface_material_override/0 = null +gi_mode = 1 +mesh = SubResource( "24" ) [node name="window_01_GEO.003" type="MeshInstance3D" parent="house9"] _import_path = NodePath("house9-col/window_01_GEO.003") transform = Transform3D(9.68575e-08, 1, 4.37114e-08, 4.11737e-08, -4.37599e-08, 1, 1, -7.45058e-08, -4.37114e-08, -0.0247497, 0.0383933, -0.0243371) -use_in_baked_light = true -mesh = SubResource( 19 ) -surface_material_override/0 = null +gi_mode = 1 +mesh = SubResource( "19" ) [node name="window_01_GEO.004" type="MeshInstance3D" parent="house9"] _import_path = NodePath("house9-col/window_01_GEO.004") transform = Transform3D(1, -6.33299e-08, -6.32827e-15, -4.85142e-11, -4.11737e-08, 1, -4.09782e-08, -1, -4.37114e-08, -0.0493163, 0.0383933, -0.0474854) -use_in_baked_light = true -mesh = SubResource( 19 ) -surface_material_override/0 = null +gi_mode = 1 +mesh = SubResource( "19" ) [node name="window_02_GEO.002" type="MeshInstance3D" parent="house9"] _import_path = NodePath("house9-col/window_02_GEO.002") transform = Transform3D(9.68575e-08, 1, 4.37114e-08, 4.11737e-08, -4.37599e-08, 1, 1, -7.45058e-08, -4.37114e-08, 0.06073, 0.0369723, 0.0305176) -use_in_baked_light = true -mesh = SubResource( 20 ) -surface_material_override/0 = null +gi_mode = 1 +mesh = SubResource( "20" ) [node name="window_02_GEO.003" type="MeshInstance3D" parent="house9"] _import_path = NodePath("house9-col/window_02_GEO.003") transform = Transform3D(5.40167e-08, -1, -4.37114e-08, -4.11737e-08, -4.36629e-08, 1, -1, -7.63685e-08, -4.37114e-08, -0.0720214, 0.0369723, -0.0149537) -use_in_baked_light = true -mesh = SubResource( 20 ) -surface_material_override/0 = null +gi_mode = 1 +mesh = SubResource( "20" ) [node name="window_02_GEO.004" type="MeshInstance3D" parent="house9"] _import_path = NodePath("house9-col/window_02_GEO.004") transform = Transform3D(5.40167e-08, -1, -4.37114e-08, -4.11737e-08, -4.36629e-08, 1, -1, -7.63685e-08, -4.37114e-08, -0.0720213, 0.0369723, 0.0314381) -use_in_baked_light = true -mesh = SubResource( 20 ) -surface_material_override/0 = null +gi_mode = 1 +mesh = SubResource( "20" ) [node name="window_03_GEO.003" type="MeshInstance3D" parent="house9"] _import_path = NodePath("house9-col/window_03_GEO.003") transform = Transform3D(1, -2.23517e-08, -9.99201e-16, -4.85179e-11, -4.11737e-08, 1, 0, -1, -4.37114e-08, 0.0415632, 0.0383933, 0.00158679) -use_in_baked_light = true -mesh = SubResource( 21 ) -surface_material_override/0 = null +gi_mode = 1 +mesh = SubResource( "21" ) [node name="col" type="StaticBody3D" parent="house9"] [node name="shape" type="CollisionShape3D" parent="house9/col"] -shape = SubResource( 42 ) +shape = SubResource( "42" ) [node name="house4" type="MeshInstance3D" parent="."] _import_path = NodePath("house4-col") transform = Transform3D(-0.50329, 0, 43.6018, 0, 43.6047, 0, -43.6018, 0, -0.50329, 14.6854, 3.32976, -16.0483) -use_in_baked_light = true -mesh = SubResource( 43 ) -surface_material_override/0 = null +gi_mode = 1 +mesh = SubResource( "43" ) [node name="door_01_GEO.001" type="MeshInstance3D" parent="house4"] _import_path = NodePath("house4-col/door_01_GEO.001") transform = Transform3D(1, 0, -9.31323e-10, 0, 1, 0, 0, 0, 1, -1.19209e-07, 0, -0.0385269) -use_in_baked_light = true -mesh = SubResource( 18 ) -surface_material_override/0 = null +gi_mode = 1 +mesh = SubResource( "18" ) [node name="window_01_GEO.001" type="MeshInstance3D" parent="house4"] _import_path = NodePath("house4-col/window_01_GEO.001") transform = Transform3D(1, 9.31323e-10, 5.55112e-17, 0, -4.37114e-08, 1, 0, -1, -4.37114e-08, 0.0377978, 0.0373665, -0.0385269) -use_in_baked_light = true -mesh = SubResource( 19 ) -surface_material_override/0 = null +gi_mode = 1 +mesh = SubResource( "19" ) [node name="window_01_GEO.002" type="MeshInstance3D" parent="house4"] _import_path = NodePath("house4-col/window_01_GEO.002") transform = Transform3D(1, 9.31323e-10, 5.55112e-17, 0, -4.37114e-08, 1, 0, -1, -4.37114e-08, -0.0352637, 0.0373665, -0.0385268) -use_in_baked_light = true -mesh = SubResource( 19 ) -surface_material_override/0 = null +gi_mode = 1 +mesh = SubResource( "19" ) [node name="window_02_GEO.001" type="MeshInstance3D" parent="house4"] _import_path = NodePath("house4-col/window_02_GEO.001") transform = Transform3D(-4.47035e-08, 1, 4.37114e-08, 0, -4.37114e-08, 1, 1, 4.37722e-08, 1.94289e-15, 0.0614014, 0.0373665, 0.0161048) -use_in_baked_light = true -mesh = SubResource( 20 ) -surface_material_override/0 = null +gi_mode = 1 +mesh = SubResource( "20" ) [node name="window_03_GEO.001" type="MeshInstance3D" parent="house4"] _import_path = NodePath("house4-col/window_03_GEO.001") transform = Transform3D(-4.47035e-08, 1, 4.37114e-08, 0, -4.37114e-08, 1, 1, 4.37722e-08, 1.94289e-15, 0.0613389, 0.0373665, -0.0162845) -use_in_baked_light = true -mesh = SubResource( 21 ) -surface_material_override/0 = null +gi_mode = 1 +mesh = SubResource( "21" ) [node name="window_03_GEO.002" type="MeshInstance3D" parent="house4"] _import_path = NodePath("house4-col/window_03_GEO.002") transform = Transform3D(7.63685e-08, -1, -4.37114e-08, 0, -4.37114e-08, 1, -1, -7.54371e-08, -3.33067e-15, -0.0613381, 0.0373665, 0.0176313) -use_in_baked_light = true -mesh = SubResource( 21 ) -surface_material_override/0 = null +gi_mode = 1 +mesh = SubResource( "21" ) [node name="col" type="StaticBody3D" parent="house4"] [node name="shape" type="CollisionShape3D" parent="house4/col"] -shape = SubResource( 44 ) +shape = SubResource( "44" ) [node name="AnimationPlayer" type="AnimationPlayer" parent="."] _import_path = NodePath("AnimationPlayer") diff --git a/3d/truck_town/town_scene.tscn b/3d/truck_town/town_scene.tscn index 2b9b2754..16d8b064 100644 --- a/3d/truck_town/town_scene.tscn +++ b/3d/truck_town/town_scene.tscn @@ -1,16 +1,29 @@ -[gd_scene load_steps=5 format=2] +[gd_scene load_steps=8 format=3 uid="uid://cowqwuqos6m0q"] -[ext_resource path="res://town_mesh.tscn" type="PackedScene" id=1] -[ext_resource path="res://spedometer.gd" type="Script" id=2] +[ext_resource type="PackedScene" uid="uid://dom2qigc1hn32" path="res://town_mesh.tscn" id="1"] +[ext_resource type="Script" path="res://spedometer.gd" id="2"] -[sub_resource type="StyleBoxEmpty" id=1] +[sub_resource type="StyleBoxEmpty" id="1"] -[sub_resource type="Theme" id=2] -Button/styles/focus = SubResource( 1 ) +[sub_resource type="Theme" id="2"] +Button/styles/focus = SubResource( "1" ) + +[sub_resource type="ProceduralSkyMaterial" id="ProceduralSkyMaterial_2k12y"] +sky_horizon_color = Color(0.64625, 0.65575, 0.67075, 1) +ground_horizon_color = Color(0.64625, 0.65575, 0.67075, 1) + +[sub_resource type="Sky" id="Sky_1gf0c"] +sky_material = SubResource( "ProceduralSkyMaterial_2k12y" ) + +[sub_resource type="Environment" id="Environment_f4cvs"] +background_mode = 2 +sky = SubResource( "Sky_1gf0c" ) +tonemap_mode = 2 +glow_enabled = true [node name="TownScene" type="Node3D"] -[node name="TownMesh" parent="." instance=ExtResource( 1 )] +[node name="TownMesh" parent="." instance=ExtResource( "1" )] [node name="InstancePos" type="Position3D" parent="."] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 13.2039, 6.67095, -37.6042) @@ -20,7 +33,6 @@ anchor_left = 1.0 anchor_right = 1.0 offset_left = -130.0 offset_bottom = 40.0 -rect_min_size = Vector2(120, 40) __meta__ = { "_edit_use_anchors_": false } @@ -28,10 +40,10 @@ __meta__ = { [node name="Spedometer" type="Button" parent="InstancePos/Panel"] anchor_right = 1.0 anchor_bottom = 1.0 -theme = SubResource( 2 ) +theme = SubResource( "2" ) text = "Speed: ???" flat = true -script = ExtResource( 2 ) +script = ExtResource( "2" ) __meta__ = { "_edit_use_anchors_": false } @@ -43,7 +55,10 @@ offset_right = 85.0 offset_bottom = 41.0 text = "<- Back!" -[node name="DirectionalLight3D" type="DirectionalLight3D" parent="."] +[node name="Environment" type="WorldEnvironment" parent="."] +environment = SubResource( "Environment_f4cvs" ) + +[node name="Sun" type="DirectionalLight3D" parent="."] transform = Transform3D(1, 0, 0, 0, -0.629475, 0.777021, 0, -0.777021, -0.629475, 0, 24.4076, 0) shadow_enabled = true diff --git a/3d/truck_town/trailer_truck.tscn b/3d/truck_town/trailer_truck.tscn index f8d9b9b5..7388d227 100644 --- a/3d/truck_town/trailer_truck.tscn +++ b/3d/truck_town/trailer_truck.tscn @@ -1,224 +1,192 @@ -[gd_scene load_steps=20 format=2] +[gd_scene load_steps=20 format=3 uid="uid://c656jeosci152"] -[ext_resource path="res://Materials/car_blue_body.tres" type="Material" id=1] -[ext_resource path="res://Materials/car_grill.tres" type="Material" id=2] -[ext_resource path="res://Materials/car_orange_body.tres" type="Material" id=3] -[ext_resource path="res://vehicle.gd" type="Script" id=4] -[ext_resource path="res://follow_camera.gd" type="Script" id=5] +[ext_resource type="Material" path="res://Materials/car_blue_body.tres" id="1"] +[ext_resource type="Material" path="res://Materials/car_grill.tres" id="2"] +[ext_resource type="Material" path="res://Materials/car_orange_body.tres" id="3"] +[ext_resource type="Script" path="res://vehicle.gd" id="4"] +[ext_resource type="Script" path="res://follow_camera.gd" id="5"] -[sub_resource type="ArrayMesh" id=1] -surfaces/0 = { +[sub_resource type="ArrayMesh" id="1"] +_surfaces = [{ "aabb": AABB(-0.0614569, -0.228035, -0.228035, 0.122914, 0.45608, 0.45607), -"array_data": PackedByteArray(221, 171, 76, 51, 210, 43, 0, 60, 130, 0, 0, 0, 221, 171, 76, 51, 210, 171, 0, 60, 130, 0, 0, 0, 221, 171, 87, 49, 87, 49, 0, 60, 130, 0, 0, 0, 221, 171, 87, 49, 87, 177, 0, 60, 130, 0, 0, 0, 221, 171, 210, 43, 76, 179, 0, 60, 130, 0, 0, 0, 221, 171, 210, 171, 76, 179, 0, 60, 130, 0, 0, 0, 221, 171, 87, 177, 87, 177, 0, 60, 130, 0, 0, 0, 221, 171, 76, 179, 210, 171, 0, 60, 130, 0, 0, 0, 221, 171, 76, 179, 210, 43, 0, 60, 130, 0, 0, 0, 221, 171, 87, 177, 87, 49, 0, 60, 130, 0, 0, 0, 221, 171, 210, 171, 76, 51, 0, 60, 130, 0, 0, 0, 221, 171, 210, 43, 76, 51, 0, 60, 130, 0, 0, 0, 221, 43, 76, 51, 210, 43, 0, 60, 127, 0, 0, 0, 221, 43, 87, 49, 87, 49, 0, 60, 127, 0, 0, 0, 221, 43, 76, 51, 210, 171, 0, 60, 127, 0, 0, 0, 221, 43, 210, 43, 76, 51, 0, 60, 127, 0, 0, 0, 221, 43, 210, 171, 76, 51, 0, 60, 127, 0, 0, 0, 221, 43, 87, 177, 87, 49, 0, 60, 127, 0, 0, 0, 221, 43, 76, 179, 210, 43, 0, 60, 127, 0, 0, 0, 221, 43, 76, 179, 210, 171, 0, 60, 127, 0, 0, 0, 221, 43, 87, 177, 87, 177, 0, 60, 127, 0, 0, 0, 221, 43, 210, 171, 76, 179, 0, 60, 127, 0, 0, 0, 221, 43, 210, 43, 76, 179, 0, 60, 127, 0, 0, 0, 221, 43, 87, 49, 87, 177, 0, 60, 127, 0, 0, 0, 221, 171, 87, 177, 87, 177, 0, 60, 0, 193, 147, 0, 221, 171, 210, 171, 76, 179, 0, 60, 0, 193, 147, 0, 221, 43, 210, 171, 76, 179, 0, 60, 0, 193, 147, 0, 221, 43, 87, 177, 87, 177, 0, 60, 0, 193, 147, 0, 221, 171, 210, 43, 76, 51, 0, 60, 0, 0, 126, 0, 221, 171, 210, 171, 76, 51, 0, 60, 0, 0, 126, 0, 221, 43, 210, 171, 76, 51, 0, 60, 0, 0, 126, 0, 221, 43, 210, 43, 76, 51, 0, 60, 0, 0, 126, 0, 221, 171, 210, 171, 76, 179, 0, 60, 0, 0, 129, 0, 221, 171, 210, 43, 76, 179, 0, 60, 0, 0, 129, 0, 221, 43, 210, 43, 76, 179, 0, 60, 0, 0, 129, 0, 221, 43, 210, 171, 76, 179, 0, 60, 0, 0, 129, 0, 221, 171, 210, 171, 76, 51, 0, 60, 0, 193, 109, 0, 221, 171, 87, 177, 87, 49, 0, 60, 0, 193, 109, 0, 221, 43, 87, 177, 87, 49, 0, 60, 0, 193, 109, 0, 221, 43, 210, 171, 76, 51, 0, 60, 0, 193, 109, 0, 221, 171, 210, 43, 76, 179, 0, 60, 0, 63, 147, 0, 221, 171, 87, 49, 87, 177, 0, 60, 0, 63, 147, 0, 221, 43, 87, 49, 87, 177, 0, 60, 0, 63, 147, 0, 221, 43, 210, 43, 76, 179, 0, 60, 0, 63, 147, 0, 221, 171, 87, 177, 87, 49, 0, 60, 0, 147, 63, 0, 221, 171, 76, 179, 210, 43, 0, 60, 0, 147, 63, 0, 221, 43, 76, 179, 210, 43, 0, 60, 0, 147, 63, 0, 221, 43, 87, 177, 87, 49, 0, 60, 0, 147, 63, 0, 221, 171, 87, 49, 87, 177, 0, 60, 0, 109, 193, 0, 221, 171, 76, 51, 210, 171, 0, 60, 0, 109, 193, 0, 221, 43, 76, 51, 210, 171, 0, 60, 0, 109, 193, 0, 221, 43, 87, 49, 87, 177, 0, 60, 0, 109, 193, 0, 221, 171, 76, 179, 210, 43, 0, 60, 0, 130, 0, 0, 221, 171, 76, 179, 210, 171, 0, 60, 0, 130, 0, 0, 221, 43, 76, 179, 210, 171, 0, 60, 0, 130, 0, 0, 221, 43, 76, 179, 210, 43, 0, 60, 0, 130, 0, 0, 221, 171, 76, 51, 210, 43, 0, 60, 0, 109, 63, 0, 221, 171, 87, 49, 87, 49, 0, 60, 0, 109, 63, 0, 221, 43, 87, 49, 87, 49, 0, 60, 0, 109, 63, 0, 221, 43, 76, 51, 210, 43, 0, 60, 0, 109, 63, 0, 221, 171, 76, 51, 210, 171, 0, 60, 0, 127, 0, 0, 221, 171, 76, 51, 210, 43, 0, 60, 0, 127, 0, 0, 221, 43, 76, 51, 210, 43, 0, 60, 0, 127, 0, 0, 221, 43, 76, 51, 210, 171, 0, 60, 0, 127, 0, 0, 221, 171, 76, 179, 210, 171, 0, 60, 0, 147, 193, 0, 221, 171, 87, 177, 87, 177, 0, 60, 0, 147, 193, 0, 221, 43, 87, 177, 87, 177, 0, 60, 0, 147, 193, 0, 221, 43, 76, 179, 210, 171, 0, 60, 0, 147, 193, 0, 221, 171, 87, 49, 87, 49, 0, 60, 0, 63, 109, 0, 221, 171, 210, 43, 76, 51, 0, 60, 0, 63, 109, 0, 221, 43, 210, 43, 76, 51, 0, 60, 0, 63, 109, 0, 221, 43, 87, 49, 87, 49, 0, 60, 0, 63, 109, 0), -"array_index_data": PackedByteArray(0, 0, 2, 0, 1, 0, 1, 0, 4, 0, 3, 0, 4, 0, 6, 0, 5, 0, 6, 0, 8, 0, 7, 0, 8, 0, 10, 0, 9, 0, 10, 0, 2, 0, 11, 0, 1, 0, 2, 0, 4, 0, 4, 0, 8, 0, 6, 0, 8, 0, 2, 0, 10, 0, 4, 0, 2, 0, 8, 0, 12, 0, 14, 0, 13, 0, 13, 0, 16, 0, 15, 0, 16, 0, 18, 0, 17, 0, 18, 0, 20, 0, 19, 0, 20, 0, 22, 0, 21, 0, 22, 0, 14, 0, 23, 0, 13, 0, 14, 0, 16, 0, 16, 0, 20, 0, 18, 0, 20, 0, 14, 0, 22, 0, 16, 0, 14, 0, 20, 0, 24, 0, 26, 0, 25, 0, 24, 0, 27, 0, 26, 0, 28, 0, 30, 0, 29, 0, 28, 0, 31, 0, 30, 0, 32, 0, 34, 0, 33, 0, 32, 0, 35, 0, 34, 0, 36, 0, 38, 0, 37, 0, 36, 0, 39, 0, 38, 0, 40, 0, 42, 0, 41, 0, 40, 0, 43, 0, 42, 0, 44, 0, 46, 0, 45, 0, 44, 0, 47, 0, 46, 0, 48, 0, 50, 0, 49, 0, 48, 0, 51, 0, 50, 0, 52, 0, 54, 0, 53, 0, 52, 0, 55, 0, 54, 0, 56, 0, 58, 0, 57, 0, 56, 0, 59, 0, 58, 0, 60, 0, 62, 0, 61, 0, 60, 0, 63, 0, 62, 0, 64, 0, 66, 0, 65, 0, 64, 0, 67, 0, 66, 0, 68, 0, 70, 0, 69, 0, 68, 0, 71, 0, 70, 0), -"blend_shape_data": [], -"format": 98051, +"format": 4099, "index_count": 132, -"material": ExtResource( 1 ), +"index_data": PackedByteArray(0, 0, 2, 0, 1, 0, 1, 0, 4, 0, 3, 0, 4, 0, 6, 0, 5, 0, 6, 0, 8, 0, 7, 0, 8, 0, 10, 0, 9, 0, 10, 0, 2, 0, 11, 0, 1, 0, 2, 0, 4, 0, 4, 0, 8, 0, 6, 0, 8, 0, 2, 0, 10, 0, 4, 0, 2, 0, 8, 0, 12, 0, 14, 0, 13, 0, 13, 0, 16, 0, 15, 0, 16, 0, 18, 0, 17, 0, 18, 0, 20, 0, 19, 0, 20, 0, 22, 0, 21, 0, 22, 0, 14, 0, 23, 0, 13, 0, 14, 0, 16, 0, 16, 0, 20, 0, 18, 0, 20, 0, 14, 0, 22, 0, 16, 0, 14, 0, 20, 0, 24, 0, 26, 0, 25, 0, 24, 0, 27, 0, 26, 0, 28, 0, 30, 0, 29, 0, 28, 0, 31, 0, 30, 0, 32, 0, 34, 0, 33, 0, 32, 0, 35, 0, 34, 0, 36, 0, 38, 0, 37, 0, 36, 0, 39, 0, 38, 0, 40, 0, 42, 0, 41, 0, 40, 0, 43, 0, 42, 0, 44, 0, 46, 0, 45, 0, 44, 0, 47, 0, 46, 0, 48, 0, 50, 0, 49, 0, 48, 0, 51, 0, 50, 0, 52, 0, 54, 0, 53, 0, 52, 0, 55, 0, 54, 0, 56, 0, 58, 0, 57, 0, 56, 0, 59, 0, 58, 0, 60, 0, 62, 0, 61, 0, 60, 0, 63, 0, 62, 0, 64, 0, 66, 0, 65, 0, 64, 0, 67, 0, 66, 0, 68, 0, 70, 0, 69, 0, 68, 0, 71, 0, 70, 0), +"material": ExtResource( "1" ), "name": "Material.001", -"primitive": 4, -"skeleton_aabb": [], -"vertex_count": 72 -} +"primitive": 3, +"vertex_count": 72, +"vertex_data": PackedByteArray(0, 160, 123, 189, 0, 128, 105, 62, 0, 64, 122, 61, 0, 0, 0, 0, 0, 160, 123, 189, 0, 128, 105, 62, 0, 64, 122, 189, 0, 0, 0, 0, 0, 160, 123, 189, 0, 224, 42, 62, 0, 224, 42, 62, 0, 0, 0, 0, 0, 160, 123, 189, 0, 224, 42, 62, 0, 224, 42, 190, 0, 0, 0, 0, 0, 160, 123, 189, 0, 64, 122, 61, 0, 128, 105, 190, 0, 0, 0, 0, 0, 160, 123, 189, 0, 64, 122, 189, 0, 128, 105, 190, 0, 0, 0, 0, 0, 160, 123, 189, 0, 224, 42, 190, 0, 224, 42, 190, 0, 0, 0, 0, 0, 160, 123, 189, 0, 128, 105, 190, 0, 64, 122, 189, 0, 0, 0, 0, 0, 160, 123, 189, 0, 128, 105, 190, 0, 64, 122, 61, 0, 0, 0, 0, 0, 160, 123, 189, 0, 224, 42, 190, 0, 224, 42, 62, 0, 0, 0, 0, 0, 160, 123, 189, 0, 64, 122, 189, 0, 128, 105, 62, 0, 0, 0, 0, 0, 160, 123, 189, 0, 64, 122, 61, 0, 128, 105, 62, 0, 0, 0, 0, 0, 160, 123, 61, 0, 128, 105, 62, 0, 64, 122, 61, 254, 3, 0, 0, 0, 160, 123, 61, 0, 224, 42, 62, 0, 224, 42, 62, 254, 3, 0, 0, 0, 160, 123, 61, 0, 128, 105, 62, 0, 64, 122, 189, 254, 3, 0, 0, 0, 160, 123, 61, 0, 64, 122, 61, 0, 128, 105, 62, 254, 3, 0, 0, 0, 160, 123, 61, 0, 64, 122, 189, 0, 128, 105, 62, 254, 3, 0, 0, 0, 160, 123, 61, 0, 224, 42, 190, 0, 224, 42, 62, 254, 3, 0, 0, 0, 160, 123, 61, 0, 128, 105, 190, 0, 64, 122, 61, 254, 3, 0, 0, 0, 160, 123, 61, 0, 128, 105, 190, 0, 64, 122, 189, 254, 3, 0, 0, 0, 160, 123, 61, 0, 224, 42, 190, 0, 224, 42, 190, 254, 3, 0, 0, 0, 160, 123, 61, 0, 64, 122, 189, 0, 128, 105, 190, 254, 3, 0, 0, 0, 160, 123, 61, 0, 64, 122, 61, 0, 128, 105, 190, 254, 3, 0, 0, 0, 160, 123, 61, 0, 224, 42, 62, 0, 224, 42, 190, 254, 3, 0, 0, 0, 160, 123, 189, 0, 224, 42, 190, 0, 224, 42, 190, 0, 0, 0, 0, 0, 160, 123, 189, 0, 64, 122, 189, 0, 128, 105, 190, 0, 0, 0, 0, 0, 160, 123, 61, 0, 64, 122, 189, 0, 128, 105, 190, 0, 0, 0, 0, 0, 160, 123, 61, 0, 224, 42, 190, 0, 224, 42, 190, 0, 0, 0, 0, 0, 160, 123, 189, 0, 64, 122, 61, 0, 128, 105, 62, 0, 0, 96, 63, 0, 160, 123, 189, 0, 64, 122, 189, 0, 128, 105, 62, 0, 0, 96, 63, 0, 160, 123, 61, 0, 64, 122, 189, 0, 128, 105, 62, 0, 0, 96, 63, 0, 160, 123, 61, 0, 64, 122, 61, 0, 128, 105, 62, 0, 0, 96, 63, 0, 160, 123, 189, 0, 64, 122, 189, 0, 128, 105, 190, 0, 0, 0, 0, 0, 160, 123, 189, 0, 64, 122, 61, 0, 128, 105, 190, 0, 0, 0, 0, 0, 160, 123, 61, 0, 64, 122, 61, 0, 128, 105, 190, 0, 0, 0, 0, 0, 160, 123, 61, 0, 64, 122, 189, 0, 128, 105, 190, 0, 0, 0, 0, 0, 160, 123, 189, 0, 64, 122, 189, 0, 128, 105, 62, 0, 0, 224, 54, 0, 160, 123, 189, 0, 224, 42, 190, 0, 224, 42, 62, 0, 0, 224, 54, 0, 160, 123, 61, 0, 224, 42, 190, 0, 224, 42, 62, 0, 0, 224, 54, 0, 160, 123, 61, 0, 64, 122, 189, 0, 128, 105, 62, 0, 0, 224, 54, 0, 160, 123, 189, 0, 64, 122, 61, 0, 128, 105, 190, 0, 236, 7, 0, 0, 160, 123, 189, 0, 224, 42, 62, 0, 224, 42, 190, 0, 236, 7, 0, 0, 160, 123, 61, 0, 224, 42, 62, 0, 224, 42, 190, 0, 236, 7, 0, 0, 160, 123, 61, 0, 64, 122, 61, 0, 128, 105, 190, 0, 236, 7, 0, 0, 160, 123, 189, 0, 224, 42, 190, 0, 224, 42, 62, 0, 0, 176, 31, 0, 160, 123, 189, 0, 128, 105, 190, 0, 64, 122, 61, 0, 0, 176, 31, 0, 160, 123, 61, 0, 128, 105, 190, 0, 64, 122, 61, 0, 0, 176, 31, 0, 160, 123, 61, 0, 224, 42, 190, 0, 224, 42, 62, 0, 0, 176, 31, 0, 160, 123, 189, 0, 224, 42, 62, 0, 224, 42, 190, 0, 184, 13, 0, 0, 160, 123, 189, 0, 128, 105, 62, 0, 64, 122, 189, 0, 184, 13, 0, 0, 160, 123, 61, 0, 128, 105, 62, 0, 64, 122, 189, 0, 184, 13, 0, 0, 160, 123, 61, 0, 224, 42, 62, 0, 224, 42, 190, 0, 184, 13, 0, 0, 160, 123, 189, 0, 128, 105, 190, 0, 64, 122, 61, 0, 0, 0, 0, 0, 160, 123, 189, 0, 128, 105, 190, 0, 64, 122, 189, 0, 0, 0, 0, 0, 160, 123, 61, 0, 128, 105, 190, 0, 64, 122, 189, 0, 0, 0, 0, 0, 160, 123, 61, 0, 128, 105, 190, 0, 64, 122, 61, 0, 0, 0, 0, 0, 160, 123, 189, 0, 128, 105, 62, 0, 64, 122, 61, 0, 184, 189, 31, 0, 160, 123, 189, 0, 224, 42, 62, 0, 224, 42, 62, 0, 184, 189, 31, 0, 160, 123, 61, 0, 224, 42, 62, 0, 224, 42, 62, 0, 184, 189, 31, 0, 160, 123, 61, 0, 128, 105, 62, 0, 64, 122, 61, 0, 184, 189, 31, 0, 160, 123, 189, 0, 128, 105, 62, 0, 64, 122, 189, 0, 248, 15, 0, 0, 160, 123, 189, 0, 128, 105, 62, 0, 64, 122, 61, 0, 248, 15, 0, 0, 160, 123, 61, 0, 128, 105, 62, 0, 64, 122, 61, 0, 248, 15, 0, 0, 160, 123, 61, 0, 128, 105, 62, 0, 64, 122, 189, 0, 248, 15, 0, 0, 160, 123, 189, 0, 128, 105, 190, 0, 64, 122, 189, 0, 0, 0, 0, 0, 160, 123, 189, 0, 224, 42, 190, 0, 224, 42, 190, 0, 0, 0, 0, 0, 160, 123, 61, 0, 224, 42, 190, 0, 224, 42, 190, 0, 0, 0, 0, 0, 160, 123, 61, 0, 128, 105, 190, 0, 64, 122, 189, 0, 0, 0, 0, 0, 160, 123, 189, 0, 224, 42, 62, 0, 224, 42, 62, 0, 236, 231, 54, 0, 160, 123, 189, 0, 64, 122, 61, 0, 128, 105, 62, 0, 236, 231, 54, 0, 160, 123, 61, 0, 64, 122, 61, 0, 128, 105, 62, 0, 236, 231, 54, 0, 160, 123, 61, 0, 224, 42, 62, 0, 224, 42, 62, 0, 236, 231, 54) +}] -[sub_resource type="ArrayMesh" id=2] -surfaces/0 = { +[sub_resource type="ArrayMesh" id="2"] +_surfaces = [{ "aabb": AABB(-0.0614569, -0.228035, -0.228035, 0.122914, 0.45608, 0.45607), -"array_data": PackedByteArray(221, 171, 76, 51, 210, 43, 0, 60, 130, 0, 0, 0, 221, 171, 76, 51, 210, 171, 0, 60, 130, 0, 0, 0, 221, 171, 87, 49, 87, 49, 0, 60, 130, 0, 0, 0, 221, 171, 87, 49, 87, 177, 0, 60, 130, 0, 0, 0, 221, 171, 210, 43, 76, 179, 0, 60, 130, 0, 0, 0, 221, 171, 210, 171, 76, 179, 0, 60, 130, 0, 0, 0, 221, 171, 87, 177, 87, 177, 0, 60, 130, 0, 0, 0, 221, 171, 76, 179, 210, 171, 0, 60, 130, 0, 0, 0, 221, 171, 76, 179, 210, 43, 0, 60, 130, 0, 0, 0, 221, 171, 87, 177, 87, 49, 0, 60, 130, 0, 0, 0, 221, 171, 210, 171, 76, 51, 0, 60, 130, 0, 0, 0, 221, 171, 210, 43, 76, 51, 0, 60, 130, 0, 0, 0, 221, 43, 76, 51, 210, 43, 0, 60, 127, 0, 0, 0, 221, 43, 87, 49, 87, 49, 0, 60, 127, 0, 0, 0, 221, 43, 76, 51, 210, 171, 0, 60, 127, 0, 0, 0, 221, 43, 210, 43, 76, 51, 0, 60, 127, 0, 0, 0, 221, 43, 210, 171, 76, 51, 0, 60, 127, 0, 0, 0, 221, 43, 87, 177, 87, 49, 0, 60, 127, 0, 0, 0, 221, 43, 76, 179, 210, 43, 0, 60, 127, 0, 0, 0, 221, 43, 76, 179, 210, 171, 0, 60, 127, 0, 0, 0, 221, 43, 87, 177, 87, 177, 0, 60, 127, 0, 0, 0, 221, 43, 210, 171, 76, 179, 0, 60, 127, 0, 0, 0, 221, 43, 210, 43, 76, 179, 0, 60, 127, 0, 0, 0, 221, 43, 87, 49, 87, 177, 0, 60, 127, 0, 0, 0, 221, 171, 87, 177, 87, 177, 0, 60, 0, 193, 147, 0, 221, 171, 210, 171, 76, 179, 0, 60, 0, 193, 147, 0, 221, 43, 210, 171, 76, 179, 0, 60, 0, 193, 147, 0, 221, 43, 87, 177, 87, 177, 0, 60, 0, 193, 147, 0, 221, 171, 210, 43, 76, 51, 0, 60, 0, 0, 126, 0, 221, 171, 210, 171, 76, 51, 0, 60, 0, 0, 126, 0, 221, 43, 210, 171, 76, 51, 0, 60, 0, 0, 126, 0, 221, 43, 210, 43, 76, 51, 0, 60, 0, 0, 126, 0, 221, 171, 210, 171, 76, 179, 0, 60, 0, 0, 129, 0, 221, 171, 210, 43, 76, 179, 0, 60, 0, 0, 129, 0, 221, 43, 210, 43, 76, 179, 0, 60, 0, 0, 129, 0, 221, 43, 210, 171, 76, 179, 0, 60, 0, 0, 129, 0, 221, 171, 210, 171, 76, 51, 0, 60, 0, 193, 109, 0, 221, 171, 87, 177, 87, 49, 0, 60, 0, 193, 109, 0, 221, 43, 87, 177, 87, 49, 0, 60, 0, 193, 109, 0, 221, 43, 210, 171, 76, 51, 0, 60, 0, 193, 109, 0, 221, 171, 210, 43, 76, 179, 0, 60, 0, 63, 147, 0, 221, 171, 87, 49, 87, 177, 0, 60, 0, 63, 147, 0, 221, 43, 87, 49, 87, 177, 0, 60, 0, 63, 147, 0, 221, 43, 210, 43, 76, 179, 0, 60, 0, 63, 147, 0, 221, 171, 87, 177, 87, 49, 0, 60, 0, 147, 63, 0, 221, 171, 76, 179, 210, 43, 0, 60, 0, 147, 63, 0, 221, 43, 76, 179, 210, 43, 0, 60, 0, 147, 63, 0, 221, 43, 87, 177, 87, 49, 0, 60, 0, 147, 63, 0, 221, 171, 87, 49, 87, 177, 0, 60, 0, 109, 193, 0, 221, 171, 76, 51, 210, 171, 0, 60, 0, 109, 193, 0, 221, 43, 76, 51, 210, 171, 0, 60, 0, 109, 193, 0, 221, 43, 87, 49, 87, 177, 0, 60, 0, 109, 193, 0, 221, 171, 76, 179, 210, 43, 0, 60, 0, 130, 0, 0, 221, 171, 76, 179, 210, 171, 0, 60, 0, 130, 0, 0, 221, 43, 76, 179, 210, 171, 0, 60, 0, 130, 0, 0, 221, 43, 76, 179, 210, 43, 0, 60, 0, 130, 0, 0, 221, 171, 76, 51, 210, 43, 0, 60, 0, 109, 63, 0, 221, 171, 87, 49, 87, 49, 0, 60, 0, 109, 63, 0, 221, 43, 87, 49, 87, 49, 0, 60, 0, 109, 63, 0, 221, 43, 76, 51, 210, 43, 0, 60, 0, 109, 63, 0, 221, 171, 76, 51, 210, 171, 0, 60, 0, 127, 0, 0, 221, 171, 76, 51, 210, 43, 0, 60, 0, 127, 0, 0, 221, 43, 76, 51, 210, 43, 0, 60, 0, 127, 0, 0, 221, 43, 76, 51, 210, 171, 0, 60, 0, 127, 0, 0, 221, 171, 76, 179, 210, 171, 0, 60, 0, 147, 193, 0, 221, 171, 87, 177, 87, 177, 0, 60, 0, 147, 193, 0, 221, 43, 87, 177, 87, 177, 0, 60, 0, 147, 193, 0, 221, 43, 76, 179, 210, 171, 0, 60, 0, 147, 193, 0, 221, 171, 87, 49, 87, 49, 0, 60, 0, 63, 109, 0, 221, 171, 210, 43, 76, 51, 0, 60, 0, 63, 109, 0, 221, 43, 210, 43, 76, 51, 0, 60, 0, 63, 109, 0, 221, 43, 87, 49, 87, 49, 0, 60, 0, 63, 109, 0), -"array_index_data": PackedByteArray(0, 0, 2, 0, 1, 0, 1, 0, 4, 0, 3, 0, 4, 0, 6, 0, 5, 0, 6, 0, 8, 0, 7, 0, 8, 0, 10, 0, 9, 0, 10, 0, 2, 0, 11, 0, 1, 0, 2, 0, 4, 0, 4, 0, 8, 0, 6, 0, 8, 0, 2, 0, 10, 0, 4, 0, 2, 0, 8, 0, 12, 0, 14, 0, 13, 0, 13, 0, 16, 0, 15, 0, 16, 0, 18, 0, 17, 0, 18, 0, 20, 0, 19, 0, 20, 0, 22, 0, 21, 0, 22, 0, 14, 0, 23, 0, 13, 0, 14, 0, 16, 0, 16, 0, 20, 0, 18, 0, 20, 0, 14, 0, 22, 0, 16, 0, 14, 0, 20, 0, 24, 0, 26, 0, 25, 0, 24, 0, 27, 0, 26, 0, 28, 0, 30, 0, 29, 0, 28, 0, 31, 0, 30, 0, 32, 0, 34, 0, 33, 0, 32, 0, 35, 0, 34, 0, 36, 0, 38, 0, 37, 0, 36, 0, 39, 0, 38, 0, 40, 0, 42, 0, 41, 0, 40, 0, 43, 0, 42, 0, 44, 0, 46, 0, 45, 0, 44, 0, 47, 0, 46, 0, 48, 0, 50, 0, 49, 0, 48, 0, 51, 0, 50, 0, 52, 0, 54, 0, 53, 0, 52, 0, 55, 0, 54, 0, 56, 0, 58, 0, 57, 0, 56, 0, 59, 0, 58, 0, 60, 0, 62, 0, 61, 0, 60, 0, 63, 0, 62, 0, 64, 0, 66, 0, 65, 0, 64, 0, 67, 0, 66, 0, 68, 0, 70, 0, 69, 0, 68, 0, 71, 0, 70, 0), -"blend_shape_data": [], -"format": 98051, +"format": 4099, "index_count": 132, -"material": ExtResource( 1 ), +"index_data": PackedByteArray(0, 0, 2, 0, 1, 0, 1, 0, 4, 0, 3, 0, 4, 0, 6, 0, 5, 0, 6, 0, 8, 0, 7, 0, 8, 0, 10, 0, 9, 0, 10, 0, 2, 0, 11, 0, 1, 0, 2, 0, 4, 0, 4, 0, 8, 0, 6, 0, 8, 0, 2, 0, 10, 0, 4, 0, 2, 0, 8, 0, 12, 0, 14, 0, 13, 0, 13, 0, 16, 0, 15, 0, 16, 0, 18, 0, 17, 0, 18, 0, 20, 0, 19, 0, 20, 0, 22, 0, 21, 0, 22, 0, 14, 0, 23, 0, 13, 0, 14, 0, 16, 0, 16, 0, 20, 0, 18, 0, 20, 0, 14, 0, 22, 0, 16, 0, 14, 0, 20, 0, 24, 0, 26, 0, 25, 0, 24, 0, 27, 0, 26, 0, 28, 0, 30, 0, 29, 0, 28, 0, 31, 0, 30, 0, 32, 0, 34, 0, 33, 0, 32, 0, 35, 0, 34, 0, 36, 0, 38, 0, 37, 0, 36, 0, 39, 0, 38, 0, 40, 0, 42, 0, 41, 0, 40, 0, 43, 0, 42, 0, 44, 0, 46, 0, 45, 0, 44, 0, 47, 0, 46, 0, 48, 0, 50, 0, 49, 0, 48, 0, 51, 0, 50, 0, 52, 0, 54, 0, 53, 0, 52, 0, 55, 0, 54, 0, 56, 0, 58, 0, 57, 0, 56, 0, 59, 0, 58, 0, 60, 0, 62, 0, 61, 0, 60, 0, 63, 0, 62, 0, 64, 0, 66, 0, 65, 0, 64, 0, 67, 0, 66, 0, 68, 0, 70, 0, 69, 0, 68, 0, 71, 0, 70, 0), +"material": ExtResource( "1" ), "name": "Material.001", -"primitive": 4, -"skeleton_aabb": [], -"vertex_count": 72 -} +"primitive": 3, +"vertex_count": 72, +"vertex_data": PackedByteArray(0, 160, 123, 189, 0, 128, 105, 62, 0, 64, 122, 61, 0, 0, 0, 0, 0, 160, 123, 189, 0, 128, 105, 62, 0, 64, 122, 189, 0, 0, 0, 0, 0, 160, 123, 189, 0, 224, 42, 62, 0, 224, 42, 62, 0, 0, 0, 0, 0, 160, 123, 189, 0, 224, 42, 62, 0, 224, 42, 190, 0, 0, 0, 0, 0, 160, 123, 189, 0, 64, 122, 61, 0, 128, 105, 190, 0, 0, 0, 0, 0, 160, 123, 189, 0, 64, 122, 189, 0, 128, 105, 190, 0, 0, 0, 0, 0, 160, 123, 189, 0, 224, 42, 190, 0, 224, 42, 190, 0, 0, 0, 0, 0, 160, 123, 189, 0, 128, 105, 190, 0, 64, 122, 189, 0, 0, 0, 0, 0, 160, 123, 189, 0, 128, 105, 190, 0, 64, 122, 61, 0, 0, 0, 0, 0, 160, 123, 189, 0, 224, 42, 190, 0, 224, 42, 62, 0, 0, 0, 0, 0, 160, 123, 189, 0, 64, 122, 189, 0, 128, 105, 62, 0, 0, 0, 0, 0, 160, 123, 189, 0, 64, 122, 61, 0, 128, 105, 62, 0, 0, 0, 0, 0, 160, 123, 61, 0, 128, 105, 62, 0, 64, 122, 61, 254, 3, 0, 0, 0, 160, 123, 61, 0, 224, 42, 62, 0, 224, 42, 62, 254, 3, 0, 0, 0, 160, 123, 61, 0, 128, 105, 62, 0, 64, 122, 189, 254, 3, 0, 0, 0, 160, 123, 61, 0, 64, 122, 61, 0, 128, 105, 62, 254, 3, 0, 0, 0, 160, 123, 61, 0, 64, 122, 189, 0, 128, 105, 62, 254, 3, 0, 0, 0, 160, 123, 61, 0, 224, 42, 190, 0, 224, 42, 62, 254, 3, 0, 0, 0, 160, 123, 61, 0, 128, 105, 190, 0, 64, 122, 61, 254, 3, 0, 0, 0, 160, 123, 61, 0, 128, 105, 190, 0, 64, 122, 189, 254, 3, 0, 0, 0, 160, 123, 61, 0, 224, 42, 190, 0, 224, 42, 190, 254, 3, 0, 0, 0, 160, 123, 61, 0, 64, 122, 189, 0, 128, 105, 190, 254, 3, 0, 0, 0, 160, 123, 61, 0, 64, 122, 61, 0, 128, 105, 190, 254, 3, 0, 0, 0, 160, 123, 61, 0, 224, 42, 62, 0, 224, 42, 190, 254, 3, 0, 0, 0, 160, 123, 189, 0, 224, 42, 190, 0, 224, 42, 190, 0, 0, 0, 0, 0, 160, 123, 189, 0, 64, 122, 189, 0, 128, 105, 190, 0, 0, 0, 0, 0, 160, 123, 61, 0, 64, 122, 189, 0, 128, 105, 190, 0, 0, 0, 0, 0, 160, 123, 61, 0, 224, 42, 190, 0, 224, 42, 190, 0, 0, 0, 0, 0, 160, 123, 189, 0, 64, 122, 61, 0, 128, 105, 62, 0, 0, 96, 63, 0, 160, 123, 189, 0, 64, 122, 189, 0, 128, 105, 62, 0, 0, 96, 63, 0, 160, 123, 61, 0, 64, 122, 189, 0, 128, 105, 62, 0, 0, 96, 63, 0, 160, 123, 61, 0, 64, 122, 61, 0, 128, 105, 62, 0, 0, 96, 63, 0, 160, 123, 189, 0, 64, 122, 189, 0, 128, 105, 190, 0, 0, 0, 0, 0, 160, 123, 189, 0, 64, 122, 61, 0, 128, 105, 190, 0, 0, 0, 0, 0, 160, 123, 61, 0, 64, 122, 61, 0, 128, 105, 190, 0, 0, 0, 0, 0, 160, 123, 61, 0, 64, 122, 189, 0, 128, 105, 190, 0, 0, 0, 0, 0, 160, 123, 189, 0, 64, 122, 189, 0, 128, 105, 62, 0, 0, 224, 54, 0, 160, 123, 189, 0, 224, 42, 190, 0, 224, 42, 62, 0, 0, 224, 54, 0, 160, 123, 61, 0, 224, 42, 190, 0, 224, 42, 62, 0, 0, 224, 54, 0, 160, 123, 61, 0, 64, 122, 189, 0, 128, 105, 62, 0, 0, 224, 54, 0, 160, 123, 189, 0, 64, 122, 61, 0, 128, 105, 190, 0, 236, 7, 0, 0, 160, 123, 189, 0, 224, 42, 62, 0, 224, 42, 190, 0, 236, 7, 0, 0, 160, 123, 61, 0, 224, 42, 62, 0, 224, 42, 190, 0, 236, 7, 0, 0, 160, 123, 61, 0, 64, 122, 61, 0, 128, 105, 190, 0, 236, 7, 0, 0, 160, 123, 189, 0, 224, 42, 190, 0, 224, 42, 62, 0, 0, 176, 31, 0, 160, 123, 189, 0, 128, 105, 190, 0, 64, 122, 61, 0, 0, 176, 31, 0, 160, 123, 61, 0, 128, 105, 190, 0, 64, 122, 61, 0, 0, 176, 31, 0, 160, 123, 61, 0, 224, 42, 190, 0, 224, 42, 62, 0, 0, 176, 31, 0, 160, 123, 189, 0, 224, 42, 62, 0, 224, 42, 190, 0, 184, 13, 0, 0, 160, 123, 189, 0, 128, 105, 62, 0, 64, 122, 189, 0, 184, 13, 0, 0, 160, 123, 61, 0, 128, 105, 62, 0, 64, 122, 189, 0, 184, 13, 0, 0, 160, 123, 61, 0, 224, 42, 62, 0, 224, 42, 190, 0, 184, 13, 0, 0, 160, 123, 189, 0, 128, 105, 190, 0, 64, 122, 61, 0, 0, 0, 0, 0, 160, 123, 189, 0, 128, 105, 190, 0, 64, 122, 189, 0, 0, 0, 0, 0, 160, 123, 61, 0, 128, 105, 190, 0, 64, 122, 189, 0, 0, 0, 0, 0, 160, 123, 61, 0, 128, 105, 190, 0, 64, 122, 61, 0, 0, 0, 0, 0, 160, 123, 189, 0, 128, 105, 62, 0, 64, 122, 61, 0, 184, 189, 31, 0, 160, 123, 189, 0, 224, 42, 62, 0, 224, 42, 62, 0, 184, 189, 31, 0, 160, 123, 61, 0, 224, 42, 62, 0, 224, 42, 62, 0, 184, 189, 31, 0, 160, 123, 61, 0, 128, 105, 62, 0, 64, 122, 61, 0, 184, 189, 31, 0, 160, 123, 189, 0, 128, 105, 62, 0, 64, 122, 189, 0, 248, 15, 0, 0, 160, 123, 189, 0, 128, 105, 62, 0, 64, 122, 61, 0, 248, 15, 0, 0, 160, 123, 61, 0, 128, 105, 62, 0, 64, 122, 61, 0, 248, 15, 0, 0, 160, 123, 61, 0, 128, 105, 62, 0, 64, 122, 189, 0, 248, 15, 0, 0, 160, 123, 189, 0, 128, 105, 190, 0, 64, 122, 189, 0, 0, 0, 0, 0, 160, 123, 189, 0, 224, 42, 190, 0, 224, 42, 190, 0, 0, 0, 0, 0, 160, 123, 61, 0, 224, 42, 190, 0, 224, 42, 190, 0, 0, 0, 0, 0, 160, 123, 61, 0, 128, 105, 190, 0, 64, 122, 189, 0, 0, 0, 0, 0, 160, 123, 189, 0, 224, 42, 62, 0, 224, 42, 62, 0, 236, 231, 54, 0, 160, 123, 189, 0, 64, 122, 61, 0, 128, 105, 62, 0, 236, 231, 54, 0, 160, 123, 61, 0, 64, 122, 61, 0, 128, 105, 62, 0, 236, 231, 54, 0, 160, 123, 61, 0, 224, 42, 62, 0, 224, 42, 62, 0, 236, 231, 54) +}] -[sub_resource type="ArrayMesh" id=3] -surfaces/0 = { +[sub_resource type="ArrayMesh" id="3"] +_surfaces = [{ "aabb": AABB(-0.061457, -0.228035, -0.228035, 0.122924, 0.45608, 0.45607), -"array_data": PackedByteArray(221, 43, 76, 51, 210, 43, 0, 60, 127, 0, 0, 0, 221, 43, 87, 49, 87, 49, 0, 60, 127, 0, 0, 0, 221, 43, 76, 51, 210, 171, 0, 60, 127, 0, 0, 0, 221, 43, 210, 43, 76, 51, 0, 60, 127, 0, 0, 0, 221, 43, 210, 171, 76, 51, 0, 60, 127, 0, 0, 0, 221, 43, 87, 177, 87, 49, 0, 60, 127, 0, 0, 0, 221, 43, 76, 179, 210, 43, 0, 60, 127, 0, 0, 0, 221, 43, 76, 179, 210, 171, 0, 60, 127, 0, 0, 0, 221, 43, 87, 177, 87, 177, 0, 60, 127, 0, 0, 0, 221, 43, 210, 171, 76, 179, 0, 60, 127, 0, 0, 0, 221, 43, 210, 43, 76, 179, 0, 60, 127, 0, 0, 0, 221, 43, 87, 49, 87, 177, 0, 60, 127, 0, 0, 0, 221, 171, 76, 51, 210, 43, 0, 60, 130, 0, 0, 0, 221, 171, 76, 51, 210, 171, 0, 60, 130, 0, 0, 0, 221, 171, 87, 49, 87, 49, 0, 60, 130, 0, 0, 0, 221, 171, 87, 49, 87, 177, 0, 60, 130, 0, 0, 0, 221, 171, 210, 43, 76, 179, 0, 60, 130, 0, 0, 0, 221, 171, 210, 171, 76, 179, 0, 60, 130, 0, 0, 0, 221, 171, 87, 177, 87, 177, 0, 60, 130, 0, 0, 0, 221, 171, 76, 179, 210, 171, 0, 60, 130, 0, 0, 0, 221, 171, 76, 179, 210, 43, 0, 60, 130, 0, 0, 0, 221, 171, 87, 177, 87, 49, 0, 60, 130, 0, 0, 0, 221, 171, 210, 171, 76, 51, 0, 60, 130, 0, 0, 0, 221, 171, 210, 43, 76, 51, 0, 60, 130, 0, 0, 0, 221, 43, 87, 177, 87, 177, 0, 60, 0, 193, 147, 0, 221, 171, 87, 177, 87, 177, 0, 60, 0, 193, 147, 0, 221, 171, 210, 171, 76, 179, 0, 60, 0, 193, 147, 0, 221, 43, 210, 171, 76, 179, 0, 60, 0, 193, 147, 0, 221, 43, 210, 43, 76, 51, 0, 60, 0, 0, 126, 0, 221, 171, 210, 43, 76, 51, 0, 60, 0, 0, 126, 0, 221, 171, 210, 171, 76, 51, 0, 60, 0, 0, 126, 0, 221, 43, 210, 171, 76, 51, 0, 60, 0, 0, 126, 0, 221, 43, 210, 171, 76, 179, 0, 60, 0, 0, 129, 0, 221, 171, 210, 171, 76, 179, 0, 60, 0, 0, 129, 0, 221, 171, 210, 43, 76, 179, 0, 60, 0, 0, 129, 0, 221, 43, 210, 43, 76, 179, 0, 60, 0, 0, 129, 0, 221, 43, 210, 171, 76, 51, 0, 60, 0, 193, 109, 0, 221, 171, 210, 171, 76, 51, 0, 60, 0, 193, 109, 0, 221, 171, 87, 177, 87, 49, 0, 60, 0, 193, 109, 0, 221, 43, 87, 177, 87, 49, 0, 60, 0, 193, 109, 0, 221, 43, 210, 43, 76, 179, 0, 60, 0, 63, 147, 0, 221, 171, 210, 43, 76, 179, 0, 60, 0, 63, 147, 0, 221, 171, 87, 49, 87, 177, 0, 60, 0, 63, 147, 0, 221, 43, 87, 49, 87, 177, 0, 60, 0, 63, 147, 0, 221, 43, 87, 177, 87, 49, 0, 60, 0, 147, 63, 0, 221, 171, 87, 177, 87, 49, 0, 60, 0, 147, 63, 0, 221, 171, 76, 179, 210, 43, 0, 60, 0, 147, 63, 0, 221, 43, 76, 179, 210, 43, 0, 60, 0, 147, 63, 0, 221, 43, 87, 49, 87, 177, 0, 60, 0, 109, 193, 0, 221, 171, 87, 49, 87, 177, 0, 60, 0, 109, 193, 0, 221, 171, 76, 51, 210, 171, 0, 60, 0, 109, 193, 0, 221, 43, 76, 51, 210, 171, 0, 60, 0, 109, 193, 0, 221, 43, 76, 179, 210, 43, 0, 60, 0, 130, 0, 0, 221, 171, 76, 179, 210, 43, 0, 60, 0, 130, 0, 0, 221, 171, 76, 179, 210, 171, 0, 60, 0, 130, 0, 0, 221, 43, 76, 179, 210, 171, 0, 60, 0, 130, 0, 0, 221, 43, 76, 51, 210, 43, 0, 60, 0, 109, 63, 0, 221, 171, 76, 51, 210, 43, 0, 60, 0, 109, 63, 0, 221, 171, 87, 49, 87, 49, 0, 60, 0, 109, 63, 0, 221, 43, 87, 49, 87, 49, 0, 60, 0, 109, 63, 0, 221, 171, 76, 51, 210, 43, 0, 60, 0, 127, 0, 0, 221, 43, 76, 51, 210, 43, 0, 60, 0, 127, 0, 0, 221, 43, 76, 51, 210, 171, 0, 60, 0, 127, 0, 0, 221, 171, 76, 51, 210, 171, 0, 60, 0, 127, 0, 0, 221, 43, 76, 179, 210, 171, 0, 60, 0, 147, 193, 0, 221, 171, 76, 179, 210, 171, 0, 60, 0, 147, 193, 0, 221, 171, 87, 177, 87, 177, 0, 60, 0, 147, 193, 0, 221, 43, 87, 177, 87, 177, 0, 60, 0, 147, 193, 0, 221, 43, 87, 49, 87, 49, 0, 60, 0, 63, 109, 0, 221, 171, 87, 49, 87, 49, 0, 60, 0, 63, 109, 0, 221, 171, 210, 43, 76, 51, 0, 60, 0, 63, 109, 0, 221, 43, 210, 43, 76, 51, 0, 60, 0, 63, 109, 0), -"array_index_data": PackedByteArray(0, 0, 2, 0, 1, 0, 1, 0, 4, 0, 3, 0, 4, 0, 6, 0, 5, 0, 6, 0, 8, 0, 7, 0, 8, 0, 10, 0, 9, 0, 10, 0, 2, 0, 11, 0, 1, 0, 2, 0, 4, 0, 4, 0, 8, 0, 6, 0, 8, 0, 2, 0, 10, 0, 4, 0, 2, 0, 8, 0, 12, 0, 14, 0, 13, 0, 13, 0, 16, 0, 15, 0, 16, 0, 18, 0, 17, 0, 18, 0, 20, 0, 19, 0, 20, 0, 22, 0, 21, 0, 22, 0, 14, 0, 23, 0, 13, 0, 14, 0, 16, 0, 16, 0, 20, 0, 18, 0, 20, 0, 14, 0, 22, 0, 16, 0, 14, 0, 20, 0, 24, 0, 26, 0, 25, 0, 24, 0, 27, 0, 26, 0, 28, 0, 30, 0, 29, 0, 28, 0, 31, 0, 30, 0, 32, 0, 34, 0, 33, 0, 32, 0, 35, 0, 34, 0, 36, 0, 38, 0, 37, 0, 36, 0, 39, 0, 38, 0, 40, 0, 42, 0, 41, 0, 40, 0, 43, 0, 42, 0, 44, 0, 46, 0, 45, 0, 44, 0, 47, 0, 46, 0, 48, 0, 50, 0, 49, 0, 48, 0, 51, 0, 50, 0, 52, 0, 54, 0, 53, 0, 52, 0, 55, 0, 54, 0, 56, 0, 58, 0, 57, 0, 56, 0, 59, 0, 58, 0, 60, 0, 62, 0, 61, 0, 60, 0, 63, 0, 62, 0, 64, 0, 66, 0, 65, 0, 64, 0, 67, 0, 66, 0, 68, 0, 70, 0, 69, 0, 68, 0, 71, 0, 70, 0), -"blend_shape_data": [], -"format": 98051, +"format": 4099, "index_count": 132, -"material": ExtResource( 1 ), +"index_data": PackedByteArray(0, 0, 2, 0, 1, 0, 1, 0, 4, 0, 3, 0, 4, 0, 6, 0, 5, 0, 6, 0, 8, 0, 7, 0, 8, 0, 10, 0, 9, 0, 10, 0, 2, 0, 11, 0, 1, 0, 2, 0, 4, 0, 4, 0, 8, 0, 6, 0, 8, 0, 2, 0, 10, 0, 4, 0, 2, 0, 8, 0, 12, 0, 14, 0, 13, 0, 13, 0, 16, 0, 15, 0, 16, 0, 18, 0, 17, 0, 18, 0, 20, 0, 19, 0, 20, 0, 22, 0, 21, 0, 22, 0, 14, 0, 23, 0, 13, 0, 14, 0, 16, 0, 16, 0, 20, 0, 18, 0, 20, 0, 14, 0, 22, 0, 16, 0, 14, 0, 20, 0, 24, 0, 26, 0, 25, 0, 24, 0, 27, 0, 26, 0, 28, 0, 30, 0, 29, 0, 28, 0, 31, 0, 30, 0, 32, 0, 34, 0, 33, 0, 32, 0, 35, 0, 34, 0, 36, 0, 38, 0, 37, 0, 36, 0, 39, 0, 38, 0, 40, 0, 42, 0, 41, 0, 40, 0, 43, 0, 42, 0, 44, 0, 46, 0, 45, 0, 44, 0, 47, 0, 46, 0, 48, 0, 50, 0, 49, 0, 48, 0, 51, 0, 50, 0, 52, 0, 54, 0, 53, 0, 52, 0, 55, 0, 54, 0, 56, 0, 58, 0, 57, 0, 56, 0, 59, 0, 58, 0, 60, 0, 62, 0, 61, 0, 60, 0, 63, 0, 62, 0, 64, 0, 66, 0, 65, 0, 64, 0, 67, 0, 66, 0, 68, 0, 70, 0, 69, 0, 68, 0, 71, 0, 70, 0), +"material": ExtResource( "1" ), "name": "Material.001", -"primitive": 4, -"skeleton_aabb": [], -"vertex_count": 72 -} +"primitive": 3, +"vertex_count": 72, +"vertex_data": PackedByteArray(0, 160, 123, 61, 0, 128, 105, 62, 0, 64, 122, 61, 254, 3, 0, 0, 0, 160, 123, 61, 0, 224, 42, 62, 0, 224, 42, 62, 254, 3, 0, 0, 0, 160, 123, 61, 0, 128, 105, 62, 0, 64, 122, 189, 254, 3, 0, 0, 0, 160, 123, 61, 0, 64, 122, 61, 0, 128, 105, 62, 254, 3, 0, 0, 0, 160, 123, 61, 0, 64, 122, 189, 0, 128, 105, 62, 254, 3, 0, 0, 0, 160, 123, 61, 0, 224, 42, 190, 0, 224, 42, 62, 254, 3, 0, 0, 0, 160, 123, 61, 0, 128, 105, 190, 0, 64, 122, 61, 254, 3, 0, 0, 0, 160, 123, 61, 0, 128, 105, 190, 0, 64, 122, 189, 254, 3, 0, 0, 0, 160, 123, 61, 0, 224, 42, 190, 0, 224, 42, 190, 254, 3, 0, 0, 0, 160, 123, 61, 0, 64, 122, 189, 0, 128, 105, 190, 254, 3, 0, 0, 0, 160, 123, 61, 0, 64, 122, 61, 0, 128, 105, 190, 254, 3, 0, 0, 0, 160, 123, 61, 0, 224, 42, 62, 0, 224, 42, 190, 254, 3, 0, 0, 0, 160, 123, 189, 0, 128, 105, 62, 0, 64, 122, 61, 0, 0, 0, 0, 0, 160, 123, 189, 0, 128, 105, 62, 0, 64, 122, 189, 0, 0, 0, 0, 0, 160, 123, 189, 0, 224, 42, 62, 0, 224, 42, 62, 0, 0, 0, 0, 0, 160, 123, 189, 0, 224, 42, 62, 0, 224, 42, 190, 0, 0, 0, 0, 0, 160, 123, 189, 0, 64, 122, 61, 0, 128, 105, 190, 0, 0, 0, 0, 0, 160, 123, 189, 0, 64, 122, 189, 0, 128, 105, 190, 0, 0, 0, 0, 0, 160, 123, 189, 0, 224, 42, 190, 0, 224, 42, 190, 0, 0, 0, 0, 0, 160, 123, 189, 0, 128, 105, 190, 0, 64, 122, 189, 0, 0, 0, 0, 0, 160, 123, 189, 0, 128, 105, 190, 0, 64, 122, 61, 0, 0, 0, 0, 0, 160, 123, 189, 0, 224, 42, 190, 0, 224, 42, 62, 0, 0, 0, 0, 0, 160, 123, 189, 0, 64, 122, 189, 0, 128, 105, 62, 0, 0, 0, 0, 0, 160, 123, 189, 0, 64, 122, 61, 0, 128, 105, 62, 0, 0, 0, 0, 0, 160, 123, 61, 0, 224, 42, 190, 0, 224, 42, 190, 0, 0, 0, 0, 0, 160, 123, 189, 0, 224, 42, 190, 0, 224, 42, 190, 0, 0, 0, 0, 0, 160, 123, 189, 0, 64, 122, 189, 0, 128, 105, 190, 0, 0, 0, 0, 0, 160, 123, 61, 0, 64, 122, 189, 0, 128, 105, 190, 0, 0, 0, 0, 0, 160, 123, 61, 0, 64, 122, 61, 0, 128, 105, 62, 0, 0, 96, 63, 0, 160, 123, 189, 0, 64, 122, 61, 0, 128, 105, 62, 0, 0, 96, 63, 0, 160, 123, 189, 0, 64, 122, 189, 0, 128, 105, 62, 0, 0, 96, 63, 0, 160, 123, 61, 0, 64, 122, 189, 0, 128, 105, 62, 0, 0, 96, 63, 0, 160, 123, 61, 0, 64, 122, 189, 0, 128, 105, 190, 0, 0, 0, 0, 0, 160, 123, 189, 0, 64, 122, 189, 0, 128, 105, 190, 0, 0, 0, 0, 0, 160, 123, 189, 0, 64, 122, 61, 0, 128, 105, 190, 0, 0, 0, 0, 0, 160, 123, 61, 0, 64, 122, 61, 0, 128, 105, 190, 0, 0, 0, 0, 0, 160, 123, 61, 0, 64, 122, 189, 0, 128, 105, 62, 0, 0, 224, 54, 0, 160, 123, 189, 0, 64, 122, 189, 0, 128, 105, 62, 0, 0, 224, 54, 0, 160, 123, 189, 0, 224, 42, 190, 0, 224, 42, 62, 0, 0, 224, 54, 0, 160, 123, 61, 0, 224, 42, 190, 0, 224, 42, 62, 0, 0, 224, 54, 0, 160, 123, 61, 0, 64, 122, 61, 0, 128, 105, 190, 0, 236, 7, 0, 0, 160, 123, 189, 0, 64, 122, 61, 0, 128, 105, 190, 0, 236, 7, 0, 0, 160, 123, 189, 0, 224, 42, 62, 0, 224, 42, 190, 0, 236, 7, 0, 0, 160, 123, 61, 0, 224, 42, 62, 0, 224, 42, 190, 0, 236, 7, 0, 0, 160, 123, 61, 0, 224, 42, 190, 0, 224, 42, 62, 0, 0, 176, 31, 0, 160, 123, 189, 0, 224, 42, 190, 0, 224, 42, 62, 0, 0, 176, 31, 0, 160, 123, 189, 0, 128, 105, 190, 0, 64, 122, 61, 0, 0, 176, 31, 0, 160, 123, 61, 0, 128, 105, 190, 0, 64, 122, 61, 0, 0, 176, 31, 0, 160, 123, 61, 0, 224, 42, 62, 0, 224, 42, 190, 0, 184, 13, 0, 0, 160, 123, 189, 0, 224, 42, 62, 0, 224, 42, 190, 0, 184, 13, 0, 0, 160, 123, 189, 0, 128, 105, 62, 0, 64, 122, 189, 0, 184, 13, 0, 0, 160, 123, 61, 0, 128, 105, 62, 0, 64, 122, 189, 0, 184, 13, 0, 0, 160, 123, 61, 0, 128, 105, 190, 0, 64, 122, 61, 0, 0, 0, 0, 0, 160, 123, 189, 0, 128, 105, 190, 0, 64, 122, 61, 0, 0, 0, 0, 0, 160, 123, 189, 0, 128, 105, 190, 0, 64, 122, 189, 0, 0, 0, 0, 0, 160, 123, 61, 0, 128, 105, 190, 0, 64, 122, 189, 0, 0, 0, 0, 0, 160, 123, 61, 0, 128, 105, 62, 0, 64, 122, 61, 0, 184, 189, 31, 0, 160, 123, 189, 0, 128, 105, 62, 0, 64, 122, 61, 0, 184, 189, 31, 0, 160, 123, 189, 0, 224, 42, 62, 0, 224, 42, 62, 0, 184, 189, 31, 0, 160, 123, 61, 0, 224, 42, 62, 0, 224, 42, 62, 0, 184, 189, 31, 0, 160, 123, 189, 0, 128, 105, 62, 0, 64, 122, 61, 0, 248, 15, 0, 0, 160, 123, 61, 0, 128, 105, 62, 0, 64, 122, 61, 0, 248, 15, 0, 0, 160, 123, 61, 0, 128, 105, 62, 0, 64, 122, 189, 0, 248, 15, 0, 0, 160, 123, 189, 0, 128, 105, 62, 0, 64, 122, 189, 0, 248, 15, 0, 0, 160, 123, 61, 0, 128, 105, 190, 0, 64, 122, 189, 0, 0, 0, 0, 0, 160, 123, 189, 0, 128, 105, 190, 0, 64, 122, 189, 0, 0, 0, 0, 0, 160, 123, 189, 0, 224, 42, 190, 0, 224, 42, 190, 0, 0, 0, 0, 0, 160, 123, 61, 0, 224, 42, 190, 0, 224, 42, 190, 0, 0, 0, 0, 0, 160, 123, 61, 0, 224, 42, 62, 0, 224, 42, 62, 0, 236, 231, 54, 0, 160, 123, 189, 0, 224, 42, 62, 0, 224, 42, 62, 0, 236, 231, 54, 0, 160, 123, 189, 0, 64, 122, 61, 0, 128, 105, 62, 0, 236, 231, 54, 0, 160, 123, 61, 0, 64, 122, 61, 0, 128, 105, 62, 0, 236, 231, 54) +}] -[sub_resource type="ArrayMesh" id=4] -surfaces/0 = { +[sub_resource type="ArrayMesh" id="4"] +_surfaces = [{ "aabb": AABB(-0.061457, -0.228035, -0.228035, 0.122924, 0.45608, 0.45607), -"array_data": PackedByteArray(221, 43, 76, 51, 210, 43, 0, 60, 127, 0, 0, 0, 221, 43, 87, 49, 87, 49, 0, 60, 127, 0, 0, 0, 221, 43, 76, 51, 210, 171, 0, 60, 127, 0, 0, 0, 221, 43, 210, 43, 76, 51, 0, 60, 127, 0, 0, 0, 221, 43, 210, 171, 76, 51, 0, 60, 127, 0, 0, 0, 221, 43, 87, 177, 87, 49, 0, 60, 127, 0, 0, 0, 221, 43, 76, 179, 210, 43, 0, 60, 127, 0, 0, 0, 221, 43, 76, 179, 210, 171, 0, 60, 127, 0, 0, 0, 221, 43, 87, 177, 87, 177, 0, 60, 127, 0, 0, 0, 221, 43, 210, 171, 76, 179, 0, 60, 127, 0, 0, 0, 221, 43, 210, 43, 76, 179, 0, 60, 127, 0, 0, 0, 221, 43, 87, 49, 87, 177, 0, 60, 127, 0, 0, 0, 221, 171, 76, 51, 210, 43, 0, 60, 130, 0, 0, 0, 221, 171, 76, 51, 210, 171, 0, 60, 130, 0, 0, 0, 221, 171, 87, 49, 87, 49, 0, 60, 130, 0, 0, 0, 221, 171, 87, 49, 87, 177, 0, 60, 130, 0, 0, 0, 221, 171, 210, 43, 76, 179, 0, 60, 130, 0, 0, 0, 221, 171, 210, 171, 76, 179, 0, 60, 130, 0, 0, 0, 221, 171, 87, 177, 87, 177, 0, 60, 130, 0, 0, 0, 221, 171, 76, 179, 210, 171, 0, 60, 130, 0, 0, 0, 221, 171, 76, 179, 210, 43, 0, 60, 130, 0, 0, 0, 221, 171, 87, 177, 87, 49, 0, 60, 130, 0, 0, 0, 221, 171, 210, 171, 76, 51, 0, 60, 130, 0, 0, 0, 221, 171, 210, 43, 76, 51, 0, 60, 130, 0, 0, 0, 221, 43, 87, 177, 87, 177, 0, 60, 0, 193, 147, 0, 221, 171, 87, 177, 87, 177, 0, 60, 0, 193, 147, 0, 221, 171, 210, 171, 76, 179, 0, 60, 0, 193, 147, 0, 221, 43, 210, 171, 76, 179, 0, 60, 0, 193, 147, 0, 221, 43, 210, 43, 76, 51, 0, 60, 0, 0, 126, 0, 221, 171, 210, 43, 76, 51, 0, 60, 0, 0, 126, 0, 221, 171, 210, 171, 76, 51, 0, 60, 0, 0, 126, 0, 221, 43, 210, 171, 76, 51, 0, 60, 0, 0, 126, 0, 221, 43, 210, 171, 76, 179, 0, 60, 0, 0, 129, 0, 221, 171, 210, 171, 76, 179, 0, 60, 0, 0, 129, 0, 221, 171, 210, 43, 76, 179, 0, 60, 0, 0, 129, 0, 221, 43, 210, 43, 76, 179, 0, 60, 0, 0, 129, 0, 221, 43, 210, 171, 76, 51, 0, 60, 0, 193, 109, 0, 221, 171, 210, 171, 76, 51, 0, 60, 0, 193, 109, 0, 221, 171, 87, 177, 87, 49, 0, 60, 0, 193, 109, 0, 221, 43, 87, 177, 87, 49, 0, 60, 0, 193, 109, 0, 221, 43, 210, 43, 76, 179, 0, 60, 0, 63, 147, 0, 221, 171, 210, 43, 76, 179, 0, 60, 0, 63, 147, 0, 221, 171, 87, 49, 87, 177, 0, 60, 0, 63, 147, 0, 221, 43, 87, 49, 87, 177, 0, 60, 0, 63, 147, 0, 221, 43, 87, 177, 87, 49, 0, 60, 0, 147, 63, 0, 221, 171, 87, 177, 87, 49, 0, 60, 0, 147, 63, 0, 221, 171, 76, 179, 210, 43, 0, 60, 0, 147, 63, 0, 221, 43, 76, 179, 210, 43, 0, 60, 0, 147, 63, 0, 221, 43, 87, 49, 87, 177, 0, 60, 0, 109, 193, 0, 221, 171, 87, 49, 87, 177, 0, 60, 0, 109, 193, 0, 221, 171, 76, 51, 210, 171, 0, 60, 0, 109, 193, 0, 221, 43, 76, 51, 210, 171, 0, 60, 0, 109, 193, 0, 221, 43, 76, 179, 210, 43, 0, 60, 0, 130, 0, 0, 221, 171, 76, 179, 210, 43, 0, 60, 0, 130, 0, 0, 221, 171, 76, 179, 210, 171, 0, 60, 0, 130, 0, 0, 221, 43, 76, 179, 210, 171, 0, 60, 0, 130, 0, 0, 221, 43, 76, 51, 210, 43, 0, 60, 0, 109, 63, 0, 221, 171, 76, 51, 210, 43, 0, 60, 0, 109, 63, 0, 221, 171, 87, 49, 87, 49, 0, 60, 0, 109, 63, 0, 221, 43, 87, 49, 87, 49, 0, 60, 0, 109, 63, 0, 221, 171, 76, 51, 210, 43, 0, 60, 0, 127, 0, 0, 221, 43, 76, 51, 210, 43, 0, 60, 0, 127, 0, 0, 221, 43, 76, 51, 210, 171, 0, 60, 0, 127, 0, 0, 221, 171, 76, 51, 210, 171, 0, 60, 0, 127, 0, 0, 221, 43, 76, 179, 210, 171, 0, 60, 0, 147, 193, 0, 221, 171, 76, 179, 210, 171, 0, 60, 0, 147, 193, 0, 221, 171, 87, 177, 87, 177, 0, 60, 0, 147, 193, 0, 221, 43, 87, 177, 87, 177, 0, 60, 0, 147, 193, 0, 221, 43, 87, 49, 87, 49, 0, 60, 0, 63, 109, 0, 221, 171, 87, 49, 87, 49, 0, 60, 0, 63, 109, 0, 221, 171, 210, 43, 76, 51, 0, 60, 0, 63, 109, 0, 221, 43, 210, 43, 76, 51, 0, 60, 0, 63, 109, 0), -"array_index_data": PackedByteArray(0, 0, 2, 0, 1, 0, 1, 0, 4, 0, 3, 0, 4, 0, 6, 0, 5, 0, 6, 0, 8, 0, 7, 0, 8, 0, 10, 0, 9, 0, 10, 0, 2, 0, 11, 0, 1, 0, 2, 0, 4, 0, 4, 0, 8, 0, 6, 0, 8, 0, 2, 0, 10, 0, 4, 0, 2, 0, 8, 0, 12, 0, 14, 0, 13, 0, 13, 0, 16, 0, 15, 0, 16, 0, 18, 0, 17, 0, 18, 0, 20, 0, 19, 0, 20, 0, 22, 0, 21, 0, 22, 0, 14, 0, 23, 0, 13, 0, 14, 0, 16, 0, 16, 0, 20, 0, 18, 0, 20, 0, 14, 0, 22, 0, 16, 0, 14, 0, 20, 0, 24, 0, 26, 0, 25, 0, 24, 0, 27, 0, 26, 0, 28, 0, 30, 0, 29, 0, 28, 0, 31, 0, 30, 0, 32, 0, 34, 0, 33, 0, 32, 0, 35, 0, 34, 0, 36, 0, 38, 0, 37, 0, 36, 0, 39, 0, 38, 0, 40, 0, 42, 0, 41, 0, 40, 0, 43, 0, 42, 0, 44, 0, 46, 0, 45, 0, 44, 0, 47, 0, 46, 0, 48, 0, 50, 0, 49, 0, 48, 0, 51, 0, 50, 0, 52, 0, 54, 0, 53, 0, 52, 0, 55, 0, 54, 0, 56, 0, 58, 0, 57, 0, 56, 0, 59, 0, 58, 0, 60, 0, 62, 0, 61, 0, 60, 0, 63, 0, 62, 0, 64, 0, 66, 0, 65, 0, 64, 0, 67, 0, 66, 0, 68, 0, 70, 0, 69, 0, 68, 0, 71, 0, 70, 0), -"blend_shape_data": [], -"format": 98051, +"format": 4099, "index_count": 132, -"material": ExtResource( 1 ), +"index_data": PackedByteArray(0, 0, 2, 0, 1, 0, 1, 0, 4, 0, 3, 0, 4, 0, 6, 0, 5, 0, 6, 0, 8, 0, 7, 0, 8, 0, 10, 0, 9, 0, 10, 0, 2, 0, 11, 0, 1, 0, 2, 0, 4, 0, 4, 0, 8, 0, 6, 0, 8, 0, 2, 0, 10, 0, 4, 0, 2, 0, 8, 0, 12, 0, 14, 0, 13, 0, 13, 0, 16, 0, 15, 0, 16, 0, 18, 0, 17, 0, 18, 0, 20, 0, 19, 0, 20, 0, 22, 0, 21, 0, 22, 0, 14, 0, 23, 0, 13, 0, 14, 0, 16, 0, 16, 0, 20, 0, 18, 0, 20, 0, 14, 0, 22, 0, 16, 0, 14, 0, 20, 0, 24, 0, 26, 0, 25, 0, 24, 0, 27, 0, 26, 0, 28, 0, 30, 0, 29, 0, 28, 0, 31, 0, 30, 0, 32, 0, 34, 0, 33, 0, 32, 0, 35, 0, 34, 0, 36, 0, 38, 0, 37, 0, 36, 0, 39, 0, 38, 0, 40, 0, 42, 0, 41, 0, 40, 0, 43, 0, 42, 0, 44, 0, 46, 0, 45, 0, 44, 0, 47, 0, 46, 0, 48, 0, 50, 0, 49, 0, 48, 0, 51, 0, 50, 0, 52, 0, 54, 0, 53, 0, 52, 0, 55, 0, 54, 0, 56, 0, 58, 0, 57, 0, 56, 0, 59, 0, 58, 0, 60, 0, 62, 0, 61, 0, 60, 0, 63, 0, 62, 0, 64, 0, 66, 0, 65, 0, 64, 0, 67, 0, 66, 0, 68, 0, 70, 0, 69, 0, 68, 0, 71, 0, 70, 0), +"material": ExtResource( "1" ), "name": "Material.001", -"primitive": 4, -"skeleton_aabb": [], -"vertex_count": 72 -} +"primitive": 3, +"vertex_count": 72, +"vertex_data": PackedByteArray(0, 160, 123, 61, 0, 128, 105, 62, 0, 64, 122, 61, 254, 3, 0, 0, 0, 160, 123, 61, 0, 224, 42, 62, 0, 224, 42, 62, 254, 3, 0, 0, 0, 160, 123, 61, 0, 128, 105, 62, 0, 64, 122, 189, 254, 3, 0, 0, 0, 160, 123, 61, 0, 64, 122, 61, 0, 128, 105, 62, 254, 3, 0, 0, 0, 160, 123, 61, 0, 64, 122, 189, 0, 128, 105, 62, 254, 3, 0, 0, 0, 160, 123, 61, 0, 224, 42, 190, 0, 224, 42, 62, 254, 3, 0, 0, 0, 160, 123, 61, 0, 128, 105, 190, 0, 64, 122, 61, 254, 3, 0, 0, 0, 160, 123, 61, 0, 128, 105, 190, 0, 64, 122, 189, 254, 3, 0, 0, 0, 160, 123, 61, 0, 224, 42, 190, 0, 224, 42, 190, 254, 3, 0, 0, 0, 160, 123, 61, 0, 64, 122, 189, 0, 128, 105, 190, 254, 3, 0, 0, 0, 160, 123, 61, 0, 64, 122, 61, 0, 128, 105, 190, 254, 3, 0, 0, 0, 160, 123, 61, 0, 224, 42, 62, 0, 224, 42, 190, 254, 3, 0, 0, 0, 160, 123, 189, 0, 128, 105, 62, 0, 64, 122, 61, 0, 0, 0, 0, 0, 160, 123, 189, 0, 128, 105, 62, 0, 64, 122, 189, 0, 0, 0, 0, 0, 160, 123, 189, 0, 224, 42, 62, 0, 224, 42, 62, 0, 0, 0, 0, 0, 160, 123, 189, 0, 224, 42, 62, 0, 224, 42, 190, 0, 0, 0, 0, 0, 160, 123, 189, 0, 64, 122, 61, 0, 128, 105, 190, 0, 0, 0, 0, 0, 160, 123, 189, 0, 64, 122, 189, 0, 128, 105, 190, 0, 0, 0, 0, 0, 160, 123, 189, 0, 224, 42, 190, 0, 224, 42, 190, 0, 0, 0, 0, 0, 160, 123, 189, 0, 128, 105, 190, 0, 64, 122, 189, 0, 0, 0, 0, 0, 160, 123, 189, 0, 128, 105, 190, 0, 64, 122, 61, 0, 0, 0, 0, 0, 160, 123, 189, 0, 224, 42, 190, 0, 224, 42, 62, 0, 0, 0, 0, 0, 160, 123, 189, 0, 64, 122, 189, 0, 128, 105, 62, 0, 0, 0, 0, 0, 160, 123, 189, 0, 64, 122, 61, 0, 128, 105, 62, 0, 0, 0, 0, 0, 160, 123, 61, 0, 224, 42, 190, 0, 224, 42, 190, 0, 0, 0, 0, 0, 160, 123, 189, 0, 224, 42, 190, 0, 224, 42, 190, 0, 0, 0, 0, 0, 160, 123, 189, 0, 64, 122, 189, 0, 128, 105, 190, 0, 0, 0, 0, 0, 160, 123, 61, 0, 64, 122, 189, 0, 128, 105, 190, 0, 0, 0, 0, 0, 160, 123, 61, 0, 64, 122, 61, 0, 128, 105, 62, 0, 0, 96, 63, 0, 160, 123, 189, 0, 64, 122, 61, 0, 128, 105, 62, 0, 0, 96, 63, 0, 160, 123, 189, 0, 64, 122, 189, 0, 128, 105, 62, 0, 0, 96, 63, 0, 160, 123, 61, 0, 64, 122, 189, 0, 128, 105, 62, 0, 0, 96, 63, 0, 160, 123, 61, 0, 64, 122, 189, 0, 128, 105, 190, 0, 0, 0, 0, 0, 160, 123, 189, 0, 64, 122, 189, 0, 128, 105, 190, 0, 0, 0, 0, 0, 160, 123, 189, 0, 64, 122, 61, 0, 128, 105, 190, 0, 0, 0, 0, 0, 160, 123, 61, 0, 64, 122, 61, 0, 128, 105, 190, 0, 0, 0, 0, 0, 160, 123, 61, 0, 64, 122, 189, 0, 128, 105, 62, 0, 0, 224, 54, 0, 160, 123, 189, 0, 64, 122, 189, 0, 128, 105, 62, 0, 0, 224, 54, 0, 160, 123, 189, 0, 224, 42, 190, 0, 224, 42, 62, 0, 0, 224, 54, 0, 160, 123, 61, 0, 224, 42, 190, 0, 224, 42, 62, 0, 0, 224, 54, 0, 160, 123, 61, 0, 64, 122, 61, 0, 128, 105, 190, 0, 236, 7, 0, 0, 160, 123, 189, 0, 64, 122, 61, 0, 128, 105, 190, 0, 236, 7, 0, 0, 160, 123, 189, 0, 224, 42, 62, 0, 224, 42, 190, 0, 236, 7, 0, 0, 160, 123, 61, 0, 224, 42, 62, 0, 224, 42, 190, 0, 236, 7, 0, 0, 160, 123, 61, 0, 224, 42, 190, 0, 224, 42, 62, 0, 0, 176, 31, 0, 160, 123, 189, 0, 224, 42, 190, 0, 224, 42, 62, 0, 0, 176, 31, 0, 160, 123, 189, 0, 128, 105, 190, 0, 64, 122, 61, 0, 0, 176, 31, 0, 160, 123, 61, 0, 128, 105, 190, 0, 64, 122, 61, 0, 0, 176, 31, 0, 160, 123, 61, 0, 224, 42, 62, 0, 224, 42, 190, 0, 184, 13, 0, 0, 160, 123, 189, 0, 224, 42, 62, 0, 224, 42, 190, 0, 184, 13, 0, 0, 160, 123, 189, 0, 128, 105, 62, 0, 64, 122, 189, 0, 184, 13, 0, 0, 160, 123, 61, 0, 128, 105, 62, 0, 64, 122, 189, 0, 184, 13, 0, 0, 160, 123, 61, 0, 128, 105, 190, 0, 64, 122, 61, 0, 0, 0, 0, 0, 160, 123, 189, 0, 128, 105, 190, 0, 64, 122, 61, 0, 0, 0, 0, 0, 160, 123, 189, 0, 128, 105, 190, 0, 64, 122, 189, 0, 0, 0, 0, 0, 160, 123, 61, 0, 128, 105, 190, 0, 64, 122, 189, 0, 0, 0, 0, 0, 160, 123, 61, 0, 128, 105, 62, 0, 64, 122, 61, 0, 184, 189, 31, 0, 160, 123, 189, 0, 128, 105, 62, 0, 64, 122, 61, 0, 184, 189, 31, 0, 160, 123, 189, 0, 224, 42, 62, 0, 224, 42, 62, 0, 184, 189, 31, 0, 160, 123, 61, 0, 224, 42, 62, 0, 224, 42, 62, 0, 184, 189, 31, 0, 160, 123, 189, 0, 128, 105, 62, 0, 64, 122, 61, 0, 248, 15, 0, 0, 160, 123, 61, 0, 128, 105, 62, 0, 64, 122, 61, 0, 248, 15, 0, 0, 160, 123, 61, 0, 128, 105, 62, 0, 64, 122, 189, 0, 248, 15, 0, 0, 160, 123, 189, 0, 128, 105, 62, 0, 64, 122, 189, 0, 248, 15, 0, 0, 160, 123, 61, 0, 128, 105, 190, 0, 64, 122, 189, 0, 0, 0, 0, 0, 160, 123, 189, 0, 128, 105, 190, 0, 64, 122, 189, 0, 0, 0, 0, 0, 160, 123, 189, 0, 224, 42, 190, 0, 224, 42, 190, 0, 0, 0, 0, 0, 160, 123, 61, 0, 224, 42, 190, 0, 224, 42, 190, 0, 0, 0, 0, 0, 160, 123, 61, 0, 224, 42, 62, 0, 224, 42, 62, 0, 236, 231, 54, 0, 160, 123, 189, 0, 224, 42, 62, 0, 224, 42, 62, 0, 236, 231, 54, 0, 160, 123, 189, 0, 64, 122, 61, 0, 128, 105, 62, 0, 236, 231, 54, 0, 160, 123, 61, 0, 64, 122, 61, 0, 128, 105, 62, 0, 236, 231, 54) +}] -[sub_resource type="ArrayMesh" id=5] -surfaces/0 = { +[sub_resource type="ArrayMesh" id="5"] +_surfaces = [{ "aabb": AABB(-0.654197, -0.437319, -1.98218, 1.30839, 0.674851, 3.89317), -"array_data": PackedByteArray(87, 176, 154, 177, 238, 62, 0, 60, 130, 0, 0, 0, 87, 176, 154, 177, 164, 63, 0, 60, 130, 0, 0, 0, 87, 176, 153, 51, 164, 63, 0, 60, 130, 0, 0, 0, 87, 176, 153, 51, 238, 62, 0, 60, 130, 0, 0, 0, 87, 176, 153, 51, 238, 62, 0, 60, 0, 0, 129, 0, 8, 48, 153, 51, 238, 62, 0, 60, 0, 0, 129, 0, 8, 48, 154, 177, 238, 62, 0, 60, 0, 0, 129, 0, 87, 176, 154, 177, 238, 62, 0, 60, 0, 0, 129, 0, 8, 48, 153, 51, 238, 62, 0, 60, 127, 0, 0, 0, 8, 48, 153, 51, 164, 63, 0, 60, 127, 0, 0, 0, 8, 48, 154, 177, 164, 63, 0, 60, 127, 0, 0, 0, 8, 48, 154, 177, 238, 62, 0, 60, 127, 0, 0, 0, 87, 176, 154, 177, 164, 63, 0, 60, 0, 0, 126, 0, 8, 48, 154, 177, 164, 63, 0, 60, 0, 0, 126, 0, 8, 48, 153, 51, 164, 63, 0, 60, 0, 0, 126, 0, 87, 176, 153, 51, 164, 63, 0, 60, 0, 0, 126, 0, 87, 176, 154, 177, 164, 63, 0, 60, 0, 130, 0, 0, 87, 176, 154, 177, 238, 62, 0, 60, 0, 130, 0, 0, 8, 48, 154, 177, 238, 62, 0, 60, 0, 130, 0, 0, 8, 48, 154, 177, 164, 63, 0, 60, 0, 130, 0, 0, 8, 48, 153, 51, 164, 63, 0, 60, 0, 127, 0, 0, 8, 48, 153, 51, 238, 62, 0, 60, 0, 127, 0, 0, 87, 176, 153, 51, 238, 62, 0, 60, 0, 127, 0, 0, 87, 176, 153, 51, 164, 63, 0, 60, 0, 127, 0, 0, 0, 0, 233, 175, 167, 191, 0, 60, 0, 27, 132, 0, 5, 56, 233, 175, 167, 191, 0, 60, 0, 27, 132, 0, 5, 56, 255, 182, 237, 191, 0, 60, 0, 27, 132, 0, 0, 0, 255, 182, 237, 191, 0, 60, 0, 27, 132, 0, 5, 56, 255, 182, 237, 191, 0, 60, 127, 0, 0, 0, 5, 56, 233, 175, 167, 191, 0, 60, 127, 0, 0, 0, 5, 56, 221, 175, 196, 190, 0, 60, 127, 0, 0, 0, 5, 56, 255, 182, 69, 191, 0, 60, 127, 0, 0, 0, 5, 184, 221, 175, 108, 189, 0, 60, 130, 0, 0, 0, 5, 184, 242, 175, 56, 188, 0, 60, 130, 0, 0, 0, 5, 184, 41, 38, 56, 188, 0, 60, 130, 0, 0, 0, 5, 184, 125, 38, 108, 189, 0, 60, 130, 0, 0, 0, 5, 56, 221, 175, 108, 189, 0, 60, 12, 52, 115, 0, 5, 56, 255, 182, 235, 188, 0, 60, 12, 52, 115, 0, 59, 57, 255, 182, 235, 188, 0, 60, 12, 52, 115, 0, 59, 57, 13, 177, 125, 189, 0, 60, 12, 52, 115, 0, 5, 56, 233, 175, 167, 191, 0, 60, 0, 0, 129, 0, 0, 0, 233, 175, 167, 191, 0, 60, 0, 0, 129, 0, 0, 0, 78, 38, 167, 191, 0, 60, 0, 0, 129, 0, 5, 56, 78, 38, 167, 191, 0, 60, 0, 0, 129, 0, 5, 56, 255, 182, 69, 191, 0, 60, 12, 52, 141, 0, 5, 56, 221, 175, 196, 190, 0, 60, 12, 52, 141, 0, 59, 57, 13, 177, 179, 190, 0, 60, 12, 52, 141, 0, 59, 57, 255, 182, 69, 191, 0, 60, 12, 52, 141, 0, 5, 56, 221, 175, 196, 190, 0, 60, 28, 123, 0, 0, 5, 56, 221, 175, 108, 189, 0, 60, 28, 123, 0, 0, 59, 57, 13, 177, 125, 189, 0, 60, 28, 123, 0, 0, 59, 57, 13, 177, 179, 190, 0, 60, 28, 123, 0, 0, 5, 184, 255, 182, 237, 191, 0, 60, 0, 27, 132, 0, 5, 184, 233, 175, 167, 191, 0, 60, 0, 27, 132, 0, 5, 184, 255, 182, 237, 191, 0, 60, 130, 0, 0, 0, 5, 184, 255, 182, 69, 191, 0, 60, 130, 0, 0, 0, 5, 184, 221, 175, 196, 190, 0, 60, 130, 0, 0, 0, 5, 184, 233, 175, 167, 191, 0, 60, 130, 0, 0, 0, 5, 184, 221, 175, 108, 189, 0, 60, 244, 52, 115, 0, 59, 185, 13, 177, 125, 189, 0, 60, 244, 52, 115, 0, 59, 185, 255, 182, 235, 188, 0, 60, 244, 52, 115, 0, 5, 184, 255, 182, 235, 188, 0, 60, 244, 52, 115, 0, 5, 184, 255, 182, 69, 191, 0, 60, 244, 52, 141, 0, 59, 185, 255, 182, 69, 191, 0, 60, 244, 52, 141, 0, 59, 185, 13, 177, 179, 190, 0, 60, 244, 52, 141, 0, 5, 184, 221, 175, 196, 190, 0, 60, 244, 52, 141, 0, 5, 184, 221, 175, 196, 190, 0, 60, 228, 123, 0, 0, 59, 185, 13, 177, 179, 190, 0, 60, 228, 123, 0, 0, 59, 185, 13, 177, 125, 189, 0, 60, 228, 123, 0, 0, 5, 184, 221, 175, 108, 189, 0, 60, 228, 123, 0, 0, 5, 184, 233, 175, 77, 178, 0, 60, 127, 0, 0, 0, 5, 184, 221, 175, 179, 182, 0, 60, 127, 0, 0, 0, 5, 184, 125, 38, 179, 182, 0, 60, 127, 0, 0, 0, 5, 184, 78, 38, 77, 178, 0, 60, 127, 0, 0, 0, 5, 56, 221, 175, 9, 186, 0, 60, 130, 0, 0, 0, 5, 56, 221, 175, 179, 182, 0, 60, 130, 0, 0, 0, 5, 56, 125, 38, 179, 182, 0, 60, 130, 0, 0, 0, 5, 56, 125, 38, 9, 186, 0, 60, 130, 0, 0, 0, 0, 0, 233, 175, 77, 178, 0, 60, 0, 229, 132, 0, 5, 56, 233, 175, 77, 178, 0, 60, 0, 229, 132, 0, 5, 56, 255, 182, 27, 176, 0, 60, 0, 229, 132, 0, 0, 0, 255, 182, 27, 176, 0, 60, 0, 229, 132, 0, 5, 56, 255, 182, 27, 176, 0, 60, 130, 0, 0, 0, 5, 56, 233, 175, 77, 178, 0, 60, 130, 0, 0, 0, 5, 56, 255, 182, 175, 180, 0, 60, 130, 0, 0, 0, 5, 56, 242, 175, 56, 188, 0, 60, 130, 0, 0, 0, 5, 56, 41, 38, 56, 188, 0, 60, 130, 0, 0, 0, 5, 56, 221, 175, 9, 186, 0, 60, 244, 205, 115, 0, 5, 56, 255, 182, 11, 187, 0, 60, 244, 205, 115, 0, 59, 57, 255, 182, 11, 187, 0, 60, 244, 205, 115, 0, 59, 57, 13, 177, 230, 185, 0, 60, 244, 205, 115, 0, 5, 184, 221, 175, 9, 186, 0, 60, 127, 0, 0, 0, 5, 184, 242, 175, 56, 188, 0, 60, 127, 0, 0, 0, 5, 184, 41, 38, 56, 188, 0, 60, 127, 0, 0, 0, 5, 184, 125, 38, 9, 186, 0, 60, 127, 0, 0, 0, 5, 56, 255, 182, 175, 180, 0, 60, 244, 205, 141, 0, 5, 56, 221, 175, 179, 182, 0, 60, 244, 205, 141, 0, 59, 57, 13, 177, 248, 182, 0, 60, 244, 205, 141, 0, 59, 57, 255, 182, 175, 180, 0, 60, 244, 205, 141, 0, 5, 56, 221, 175, 179, 182, 0, 60, 228, 133, 0, 0, 5, 56, 221, 175, 9, 186, 0, 60, 228, 133, 0, 0, 59, 57, 13, 177, 230, 185, 0, 60, 228, 133, 0, 0, 59, 57, 13, 177, 248, 182, 0, 60, 228, 133, 0, 0, 5, 56, 255, 182, 11, 187, 0, 60, 0, 130, 0, 0, 5, 56, 255, 182, 56, 188, 0, 60, 0, 130, 0, 0, 59, 57, 255, 182, 56, 188, 0, 60, 0, 130, 0, 0, 59, 57, 255, 182, 11, 187, 0, 60, 0, 130, 0, 0, 5, 184, 255, 182, 27, 176, 0, 60, 0, 229, 132, 0, 5, 184, 233, 175, 77, 178, 0, 60, 0, 229, 132, 0, 5, 184, 255, 182, 27, 176, 0, 60, 127, 0, 0, 0, 5, 184, 255, 182, 175, 180, 0, 60, 127, 0, 0, 0, 5, 184, 255, 182, 11, 187, 0, 60, 127, 0, 0, 0, 5, 184, 255, 182, 56, 188, 0, 60, 127, 0, 0, 0, 5, 184, 221, 175, 9, 186, 0, 60, 12, 205, 115, 0, 59, 185, 13, 177, 230, 185, 0, 60, 12, 205, 115, 0, 59, 185, 255, 182, 11, 187, 0, 60, 12, 205, 115, 0, 5, 184, 255, 182, 11, 187, 0, 60, 12, 205, 115, 0, 5, 56, 255, 182, 56, 188, 0, 60, 130, 0, 0, 0, 5, 56, 255, 182, 11, 187, 0, 60, 130, 0, 0, 0, 5, 184, 255, 182, 175, 180, 0, 60, 12, 205, 141, 0, 59, 185, 255, 182, 175, 180, 0, 60, 12, 205, 141, 0, 59, 185, 13, 177, 248, 182, 0, 60, 12, 205, 141, 0, 5, 184, 221, 175, 179, 182, 0, 60, 12, 205, 141, 0, 5, 184, 221, 175, 179, 182, 0, 60, 28, 133, 0, 0, 59, 185, 13, 177, 248, 182, 0, 60, 28, 133, 0, 0, 59, 185, 13, 177, 230, 185, 0, 60, 28, 133, 0, 0, 5, 184, 221, 175, 9, 186, 0, 60, 28, 133, 0, 0, 5, 184, 255, 182, 11, 187, 0, 60, 0, 130, 0, 0, 59, 185, 255, 182, 11, 187, 0, 60, 0, 130, 0, 0, 59, 185, 255, 182, 56, 188, 0, 60, 0, 130, 0, 0, 5, 184, 255, 182, 56, 188, 0, 60, 0, 130, 0, 0, 5, 184, 125, 38, 196, 190, 0, 60, 130, 0, 0, 0, 5, 184, 233, 175, 167, 191, 0, 60, 0, 0, 129, 0, 5, 184, 78, 38, 167, 191, 0, 60, 0, 0, 129, 0, 5, 56, 78, 38, 167, 191, 0, 60, 127, 0, 0, 0, 5, 56, 125, 38, 196, 190, 0, 60, 127, 0, 0, 0, 0, 0, 255, 182, 56, 188, 0, 60, 0, 130, 0, 0, 0, 0, 255, 182, 237, 191, 0, 60, 0, 130, 0, 0, 5, 56, 255, 182, 237, 191, 0, 60, 0, 130, 0, 0, 5, 56, 255, 182, 69, 191, 0, 60, 0, 130, 0, 0, 5, 56, 255, 182, 69, 191, 0, 60, 0, 0, 0, 0, 5, 56, 255, 182, 235, 188, 0, 60, 0, 0, 0, 0, 5, 56, 255, 182, 56, 188, 0, 60, 0, 0, 0, 0, 5, 56, 255, 182, 235, 188, 0, 60, 0, 127, 0, 0, 5, 56, 255, 182, 56, 188, 0, 60, 0, 127, 0, 0, 59, 57, 255, 182, 56, 188, 0, 60, 0, 127, 0, 0, 59, 57, 255, 182, 235, 188, 0, 60, 0, 127, 0, 0, 5, 184, 255, 182, 235, 188, 0, 60, 0, 0, 0, 0, 5, 184, 255, 182, 69, 191, 0, 60, 0, 0, 0, 0, 5, 184, 255, 182, 237, 191, 0, 60, 0, 0, 0, 0, 5, 184, 255, 182, 237, 191, 0, 60, 0, 130, 0, 0, 5, 184, 255, 182, 56, 188, 0, 60, 0, 0, 0, 0, 5, 184, 255, 182, 235, 188, 0, 60, 130, 0, 0, 0, 5, 184, 255, 182, 56, 188, 0, 60, 130, 0, 0, 0, 5, 56, 255, 182, 56, 188, 0, 60, 127, 0, 0, 0, 5, 56, 255, 182, 235, 188, 0, 60, 127, 0, 0, 0, 5, 56, 221, 175, 108, 189, 0, 60, 127, 0, 0, 0, 5, 56, 242, 175, 56, 188, 0, 60, 127, 0, 0, 0, 5, 184, 255, 182, 235, 188, 0, 60, 0, 127, 0, 0, 59, 185, 255, 182, 235, 188, 0, 60, 0, 127, 0, 0, 59, 185, 255, 182, 56, 188, 0, 60, 0, 127, 0, 0, 5, 184, 255, 182, 56, 188, 0, 60, 0, 127, 0, 0, 0, 0, 255, 182, 56, 188, 0, 60, 0, 127, 0, 0, 0, 0, 255, 182, 27, 176, 0, 60, 0, 127, 0, 0, 5, 56, 255, 182, 27, 176, 0, 60, 0, 127, 0, 0, 5, 56, 255, 182, 175, 180, 0, 60, 0, 127, 0, 0, 5, 56, 255, 182, 175, 180, 0, 60, 0, 0, 0, 0, 5, 56, 255, 182, 11, 187, 0, 60, 0, 0, 0, 0, 5, 184, 255, 182, 11, 187, 0, 60, 0, 0, 0, 0, 5, 184, 255, 182, 175, 180, 0, 60, 0, 0, 0, 0, 5, 184, 255, 182, 27, 176, 0, 60, 0, 0, 0, 0, 5, 184, 255, 182, 27, 176, 0, 60, 0, 127, 0, 0, 0, 0, 78, 38, 167, 191, 0, 60, 0, 127, 0, 0, 5, 184, 78, 38, 167, 191, 0, 60, 0, 127, 0, 0, 5, 184, 125, 38, 196, 190, 0, 60, 0, 127, 0, 0, 5, 56, 78, 38, 167, 191, 0, 60, 0, 127, 0, 0, 5, 56, 125, 38, 196, 190, 0, 60, 0, 127, 0, 0, 5, 184, 125, 38, 108, 189, 0, 60, 0, 127, 0, 0, 5, 56, 125, 38, 108, 189, 0, 60, 0, 127, 0, 0, 5, 56, 125, 38, 196, 190, 0, 60, 0, 127, 0, 0, 5, 184, 125, 38, 196, 190, 0, 60, 0, 127, 0, 0, 0, 0, 78, 38, 77, 178, 0, 60, 0, 130, 0, 0, 5, 184, 78, 38, 77, 178, 0, 60, 0, 130, 0, 0, 5, 184, 125, 38, 179, 182, 0, 60, 0, 130, 0, 0, 5, 56, 78, 38, 77, 178, 0, 60, 0, 130, 0, 0, 5, 56, 125, 38, 179, 182, 0, 60, 0, 130, 0, 0, 5, 184, 125, 38, 9, 186, 0, 60, 0, 130, 0, 0, 5, 56, 125, 38, 9, 186, 0, 60, 0, 130, 0, 0, 5, 56, 125, 38, 179, 182, 0, 60, 0, 130, 0, 0, 5, 184, 125, 38, 179, 182, 0, 60, 0, 130, 0, 0, 5, 184, 41, 38, 56, 188, 0, 60, 0, 130, 0, 0, 5, 56, 41, 38, 56, 188, 0, 60, 0, 130, 0, 0, 5, 56, 125, 38, 9, 186, 0, 60, 0, 130, 0, 0, 5, 184, 125, 38, 9, 186, 0, 60, 0, 130, 0, 0, 5, 184, 41, 38, 56, 188, 0, 60, 0, 127, 0, 0, 5, 56, 41, 38, 56, 188, 0, 60, 0, 127, 0, 0, 5, 56, 125, 38, 108, 189, 0, 60, 0, 127, 0, 0, 5, 184, 125, 38, 108, 189, 0, 60, 0, 127, 0, 0, 5, 56, 125, 38, 108, 189, 0, 60, 127, 0, 0, 0, 5, 184, 78, 38, 167, 191, 0, 60, 130, 0, 0, 0, 5, 56, 233, 175, 77, 178, 0, 60, 0, 0, 129, 0, 0, 0, 233, 175, 77, 178, 0, 60, 0, 0, 129, 0, 0, 0, 78, 38, 77, 178, 0, 60, 0, 0, 129, 0, 5, 56, 78, 38, 77, 178, 0, 60, 0, 0, 129, 0, 5, 184, 233, 175, 77, 178, 0, 60, 0, 0, 129, 0, 5, 184, 78, 38, 77, 178, 0, 60, 0, 0, 129, 0, 5, 56, 78, 38, 77, 178, 0, 60, 130, 0, 0, 0, 5, 56, 41, 38, 56, 188, 0, 60, 127, 0, 0, 0), -"array_index_data": PackedByteArray(0, 0, 2, 0, 1, 0, 0, 0, 3, 0, 2, 0, 4, 0, 6, 0, 5, 0, 4, 0, 7, 0, 6, 0, 8, 0, 10, 0, 9, 0, 8, 0, 11, 0, 10, 0, 12, 0, 14, 0, 13, 0, 12, 0, 15, 0, 14, 0, 16, 0, 18, 0, 17, 0, 16, 0, 19, 0, 18, 0, 20, 0, 22, 0, 21, 0, 20, 0, 23, 0, 22, 0, 24, 0, 26, 0, 25, 0, 24, 0, 27, 0, 26, 0, 28, 0, 30, 0, 29, 0, 28, 0, 31, 0, 30, 0, 32, 0, 34, 0, 33, 0, 32, 0, 35, 0, 34, 0, 36, 0, 38, 0, 37, 0, 36, 0, 39, 0, 38, 0, 40, 0, 42, 0, 41, 0, 40, 0, 43, 0, 42, 0, 44, 0, 46, 0, 45, 0, 44, 0, 47, 0, 46, 0, 48, 0, 50, 0, 49, 0, 48, 0, 51, 0, 50, 0, 24, 0, 52, 0, 27, 0, 24, 0, 53, 0, 52, 0, 54, 0, 56, 0, 55, 0, 54, 0, 57, 0, 56, 0, 58, 0, 60, 0, 59, 0, 58, 0, 61, 0, 60, 0, 62, 0, 64, 0, 63, 0, 62, 0, 65, 0, 64, 0, 66, 0, 68, 0, 67, 0, 66, 0, 69, 0, 68, 0, 70, 0, 72, 0, 71, 0, 70, 0, 73, 0, 72, 0, 74, 0, 76, 0, 75, 0, 74, 0, 77, 0, 76, 0, 78, 0, 80, 0, 79, 0, 78, 0, 81, 0, 80, 0, 82, 0, 75, 0, 83, 0, 82, 0, 84, 0, 75, 0, 85, 0, 77, 0, 74, 0, 85, 0, 86, 0, 77, 0, 87, 0, 89, 0, 88, 0, 87, 0, 90, 0, 89, 0, 91, 0, 93, 0, 92, 0, 91, 0, 94, 0, 93, 0, 95, 0, 97, 0, 96, 0, 95, 0, 98, 0, 97, 0, 99, 0, 101, 0, 100, 0, 99, 0, 102, 0, 101, 0, 103, 0, 105, 0, 104, 0, 103, 0, 106, 0, 105, 0, 78, 0, 107, 0, 81, 0, 78, 0, 108, 0, 107, 0, 109, 0, 71, 0, 110, 0, 109, 0, 70, 0, 71, 0, 92, 0, 111, 0, 91, 0, 92, 0, 112, 0, 111, 0, 113, 0, 115, 0, 114, 0, 113, 0, 116, 0, 115, 0, 117, 0, 74, 0, 118, 0, 117, 0, 85, 0, 74, 0, 119, 0, 121, 0, 120, 0, 119, 0, 122, 0, 121, 0, 123, 0, 125, 0, 124, 0, 123, 0, 126, 0, 125, 0, 127, 0, 129, 0, 128, 0, 127, 0, 130, 0, 129, 0, 56, 0, 35, 0, 32, 0, 56, 0, 131, 0, 35, 0, 41, 0, 133, 0, 132, 0, 41, 0, 42, 0, 133, 0, 30, 0, 134, 0, 29, 0, 30, 0, 135, 0, 134, 0, 136, 0, 104, 0, 137, 0, 137, 0, 139, 0, 138, 0, 140, 0, 142, 0, 141, 0, 137, 0, 104, 0, 139, 0, 143, 0, 145, 0, 144, 0, 143, 0, 146, 0, 145, 0, 136, 0, 137, 0, 130, 0, 147, 0, 149, 0, 148, 0, 130, 0, 137, 0, 150, 0, 151, 0, 149, 0, 147, 0, 33, 0, 152, 0, 32, 0, 33, 0, 153, 0, 152, 0, 154, 0, 156, 0, 155, 0, 154, 0, 157, 0, 156, 0, 158, 0, 160, 0, 159, 0, 158, 0, 161, 0, 160, 0, 71, 0, 94, 0, 91, 0, 71, 0, 72, 0, 94, 0, 162, 0, 144, 0, 163, 0, 163, 0, 165, 0, 164, 0, 166, 0, 142, 0, 167, 0, 163, 0, 144, 0, 165, 0, 162, 0, 163, 0, 161, 0, 168, 0, 170, 0, 169, 0, 161, 0, 163, 0, 171, 0, 151, 0, 170, 0, 168, 0, 172, 0, 174, 0, 173, 0, 175, 0, 176, 0, 172, 0, 174, 0, 172, 0, 176, 0, 177, 0, 179, 0, 178, 0, 177, 0, 180, 0, 179, 0, 181, 0, 183, 0, 182, 0, 184, 0, 185, 0, 181, 0, 183, 0, 181, 0, 185, 0, 186, 0, 188, 0, 187, 0, 186, 0, 189, 0, 188, 0, 190, 0, 192, 0, 191, 0, 190, 0, 193, 0, 192, 0, 194, 0, 196, 0, 195, 0, 194, 0, 197, 0, 196, 0, 156, 0, 135, 0, 30, 0, 156, 0, 198, 0, 135, 0, 57, 0, 131, 0, 56, 0, 57, 0, 199, 0, 131, 0, 200, 0, 202, 0, 201, 0, 200, 0, 203, 0, 202, 0, 201, 0, 205, 0, 204, 0, 201, 0, 202, 0, 205, 0, 75, 0, 206, 0, 83, 0, 75, 0, 76, 0, 206, 0, 157, 0, 198, 0, 156, 0, 157, 0, 207, 0, 198, 0), -"blend_shape_data": [], -"format": 98051, +"format": 4099, "index_count": 390, -"material": ExtResource( 1 ), +"index_data": PackedByteArray(0, 0, 2, 0, 1, 0, 0, 0, 3, 0, 2, 0, 4, 0, 6, 0, 5, 0, 4, 0, 7, 0, 6, 0, 8, 0, 10, 0, 9, 0, 8, 0, 11, 0, 10, 0, 12, 0, 14, 0, 13, 0, 12, 0, 15, 0, 14, 0, 16, 0, 18, 0, 17, 0, 16, 0, 19, 0, 18, 0, 20, 0, 22, 0, 21, 0, 20, 0, 23, 0, 22, 0, 24, 0, 26, 0, 25, 0, 24, 0, 27, 0, 26, 0, 28, 0, 30, 0, 29, 0, 28, 0, 31, 0, 30, 0, 32, 0, 34, 0, 33, 0, 32, 0, 35, 0, 34, 0, 36, 0, 38, 0, 37, 0, 36, 0, 39, 0, 38, 0, 40, 0, 42, 0, 41, 0, 40, 0, 43, 0, 42, 0, 44, 0, 46, 0, 45, 0, 44, 0, 47, 0, 46, 0, 48, 0, 50, 0, 49, 0, 48, 0, 51, 0, 50, 0, 24, 0, 52, 0, 27, 0, 24, 0, 53, 0, 52, 0, 54, 0, 56, 0, 55, 0, 54, 0, 57, 0, 56, 0, 58, 0, 60, 0, 59, 0, 58, 0, 61, 0, 60, 0, 62, 0, 64, 0, 63, 0, 62, 0, 65, 0, 64, 0, 66, 0, 68, 0, 67, 0, 66, 0, 69, 0, 68, 0, 70, 0, 72, 0, 71, 0, 70, 0, 73, 0, 72, 0, 74, 0, 76, 0, 75, 0, 74, 0, 77, 0, 76, 0, 78, 0, 80, 0, 79, 0, 78, 0, 81, 0, 80, 0, 82, 0, 75, 0, 83, 0, 82, 0, 84, 0, 75, 0, 85, 0, 77, 0, 74, 0, 85, 0, 86, 0, 77, 0, 87, 0, 89, 0, 88, 0, 87, 0, 90, 0, 89, 0, 91, 0, 93, 0, 92, 0, 91, 0, 94, 0, 93, 0, 95, 0, 97, 0, 96, 0, 95, 0, 98, 0, 97, 0, 99, 0, 101, 0, 100, 0, 99, 0, 102, 0, 101, 0, 103, 0, 105, 0, 104, 0, 103, 0, 106, 0, 105, 0, 78, 0, 107, 0, 81, 0, 78, 0, 108, 0, 107, 0, 109, 0, 71, 0, 110, 0, 109, 0, 70, 0, 71, 0, 92, 0, 111, 0, 91, 0, 92, 0, 112, 0, 111, 0, 113, 0, 115, 0, 114, 0, 113, 0, 116, 0, 115, 0, 117, 0, 74, 0, 118, 0, 117, 0, 85, 0, 74, 0, 119, 0, 121, 0, 120, 0, 119, 0, 122, 0, 121, 0, 123, 0, 125, 0, 124, 0, 123, 0, 126, 0, 125, 0, 127, 0, 129, 0, 128, 0, 127, 0, 130, 0, 129, 0, 56, 0, 35, 0, 32, 0, 56, 0, 131, 0, 35, 0, 41, 0, 133, 0, 132, 0, 41, 0, 42, 0, 133, 0, 30, 0, 134, 0, 29, 0, 30, 0, 135, 0, 134, 0, 136, 0, 104, 0, 137, 0, 137, 0, 139, 0, 138, 0, 140, 0, 142, 0, 141, 0, 137, 0, 104, 0, 139, 0, 143, 0, 145, 0, 144, 0, 143, 0, 146, 0, 145, 0, 136, 0, 137, 0, 130, 0, 147, 0, 149, 0, 148, 0, 130, 0, 137, 0, 150, 0, 151, 0, 149, 0, 147, 0, 33, 0, 152, 0, 32, 0, 33, 0, 153, 0, 152, 0, 154, 0, 156, 0, 155, 0, 154, 0, 157, 0, 156, 0, 158, 0, 160, 0, 159, 0, 158, 0, 161, 0, 160, 0, 71, 0, 94, 0, 91, 0, 71, 0, 72, 0, 94, 0, 162, 0, 144, 0, 163, 0, 163, 0, 165, 0, 164, 0, 166, 0, 142, 0, 167, 0, 163, 0, 144, 0, 165, 0, 162, 0, 163, 0, 161, 0, 168, 0, 170, 0, 169, 0, 161, 0, 163, 0, 171, 0, 151, 0, 170, 0, 168, 0, 172, 0, 174, 0, 173, 0, 175, 0, 176, 0, 172, 0, 174, 0, 172, 0, 176, 0, 177, 0, 179, 0, 178, 0, 177, 0, 180, 0, 179, 0, 181, 0, 183, 0, 182, 0, 184, 0, 185, 0, 181, 0, 183, 0, 181, 0, 185, 0, 186, 0, 188, 0, 187, 0, 186, 0, 189, 0, 188, 0, 190, 0, 192, 0, 191, 0, 190, 0, 193, 0, 192, 0, 194, 0, 196, 0, 195, 0, 194, 0, 197, 0, 196, 0, 156, 0, 135, 0, 30, 0, 156, 0, 198, 0, 135, 0, 57, 0, 131, 0, 56, 0, 57, 0, 199, 0, 131, 0, 200, 0, 202, 0, 201, 0, 200, 0, 203, 0, 202, 0, 201, 0, 205, 0, 204, 0, 201, 0, 202, 0, 205, 0, 75, 0, 206, 0, 83, 0, 75, 0, 76, 0, 206, 0, 157, 0, 198, 0, 156, 0, 157, 0, 207, 0, 198, 0), +"material": ExtResource( "1" ), "name": "Material.001", -"primitive": 4, -"skeleton_aabb": [], -"vertex_count": 208 -} -surfaces/1 = { +"primitive": 3, +"vertex_count": 208, +"vertex_data": PackedByteArray(0, 224, 10, 190, 0, 64, 51, 190, 0, 192, 221, 63, 0, 0, 0, 0, 0, 224, 10, 190, 0, 64, 51, 190, 0, 128, 244, 63, 0, 0, 0, 0, 0, 224, 10, 190, 0, 32, 115, 62, 0, 128, 244, 63, 0, 0, 0, 0, 0, 224, 10, 190, 0, 32, 115, 62, 0, 192, 221, 63, 0, 0, 0, 0, 0, 224, 10, 190, 0, 32, 115, 62, 0, 192, 221, 63, 0, 0, 0, 0, 0, 0, 1, 62, 0, 32, 115, 62, 0, 192, 221, 63, 0, 0, 0, 0, 0, 0, 1, 62, 0, 64, 51, 190, 0, 192, 221, 63, 0, 0, 0, 0, 0, 224, 10, 190, 0, 64, 51, 190, 0, 192, 221, 63, 0, 0, 0, 0, 0, 0, 1, 62, 0, 32, 115, 62, 0, 192, 221, 63, 254, 3, 0, 0, 0, 0, 1, 62, 0, 32, 115, 62, 0, 128, 244, 63, 254, 3, 0, 0, 0, 0, 1, 62, 0, 64, 51, 190, 0, 128, 244, 63, 254, 3, 0, 0, 0, 0, 1, 62, 0, 64, 51, 190, 0, 192, 221, 63, 254, 3, 0, 0, 0, 224, 10, 190, 0, 64, 51, 190, 0, 128, 244, 63, 0, 0, 96, 63, 0, 0, 1, 62, 0, 64, 51, 190, 0, 128, 244, 63, 0, 0, 96, 63, 0, 0, 1, 62, 0, 32, 115, 62, 0, 128, 244, 63, 0, 0, 96, 63, 0, 224, 10, 190, 0, 32, 115, 62, 0, 128, 244, 63, 0, 0, 96, 63, 0, 224, 10, 190, 0, 64, 51, 190, 0, 128, 244, 63, 0, 0, 0, 0, 0, 224, 10, 190, 0, 64, 51, 190, 0, 192, 221, 63, 0, 0, 0, 0, 0, 0, 1, 62, 0, 64, 51, 190, 0, 192, 221, 63, 0, 0, 0, 0, 0, 0, 1, 62, 0, 64, 51, 190, 0, 128, 244, 63, 0, 0, 0, 0, 0, 0, 1, 62, 0, 32, 115, 62, 0, 128, 244, 63, 0, 248, 15, 0, 0, 0, 1, 62, 0, 32, 115, 62, 0, 192, 221, 63, 0, 248, 15, 0, 0, 224, 10, 190, 0, 32, 115, 62, 0, 192, 221, 63, 0, 248, 15, 0, 0, 224, 10, 190, 0, 32, 115, 62, 0, 128, 244, 63, 0, 248, 15, 0, 0, 0, 0, 0, 0, 32, 253, 189, 0, 224, 244, 191, 0, 100, 3, 0, 0, 160, 0, 63, 0, 32, 253, 189, 0, 224, 244, 191, 0, 100, 3, 0, 0, 160, 0, 63, 0, 224, 223, 190, 0, 160, 253, 191, 0, 100, 3, 0, 0, 0, 0, 0, 0, 224, 223, 190, 0, 160, 253, 191, 0, 100, 3, 0, 0, 160, 0, 63, 0, 224, 223, 190, 0, 160, 253, 191, 254, 3, 0, 0, 0, 160, 0, 63, 0, 32, 253, 189, 0, 224, 244, 191, 254, 3, 0, 0, 0, 160, 0, 63, 0, 160, 251, 189, 0, 128, 216, 191, 254, 3, 0, 0, 0, 160, 0, 63, 0, 224, 223, 190, 0, 160, 232, 191, 254, 3, 0, 0, 0, 160, 0, 191, 0, 160, 251, 189, 0, 128, 173, 191, 0, 0, 0, 0, 0, 160, 0, 191, 0, 64, 254, 189, 0, 0, 135, 191, 0, 0, 0, 0, 0, 160, 0, 191, 0, 32, 197, 60, 0, 0, 135, 191, 0, 0, 0, 0, 0, 160, 0, 191, 0, 160, 207, 60, 0, 128, 173, 191, 0, 0, 0, 0, 0, 160, 0, 63, 0, 160, 251, 189, 0, 128, 173, 191, 96, 136, 230, 57, 0, 160, 0, 63, 0, 224, 223, 190, 0, 96, 157, 191, 96, 136, 230, 57, 0, 96, 39, 63, 0, 224, 223, 190, 0, 96, 157, 191, 96, 136, 230, 57, 0, 96, 39, 63, 0, 160, 33, 190, 0, 160, 175, 191, 96, 136, 230, 57, 0, 160, 0, 63, 0, 32, 253, 189, 0, 224, 244, 191, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 253, 189, 0, 224, 244, 191, 0, 0, 0, 0, 0, 0, 0, 0, 0, 192, 201, 60, 0, 224, 244, 191, 0, 0, 0, 0, 0, 160, 0, 63, 0, 192, 201, 60, 0, 224, 244, 191, 0, 0, 0, 0, 0, 160, 0, 63, 0, 224, 223, 190, 0, 160, 232, 191, 96, 136, 6, 0, 0, 160, 0, 63, 0, 160, 251, 189, 0, 128, 216, 191, 96, 136, 6, 0, 0, 96, 39, 63, 0, 160, 33, 190, 0, 96, 214, 191, 96, 136, 6, 0, 0, 96, 39, 63, 0, 224, 223, 190, 0, 160, 232, 191, 96, 136, 6, 0, 0, 160, 0, 63, 0, 160, 251, 189, 0, 128, 216, 191, 225, 120, 15, 0, 0, 160, 0, 63, 0, 160, 251, 189, 0, 128, 173, 191, 225, 120, 15, 0, 0, 96, 39, 63, 0, 160, 33, 190, 0, 160, 175, 191, 225, 120, 15, 0, 0, 96, 39, 63, 0, 160, 33, 190, 0, 96, 214, 191, 225, 120, 15, 0, 0, 160, 0, 191, 0, 224, 223, 190, 0, 160, 253, 191, 0, 100, 3, 0, 0, 160, 0, 191, 0, 32, 253, 189, 0, 224, 244, 191, 0, 100, 3, 0, 0, 160, 0, 191, 0, 224, 223, 190, 0, 160, 253, 191, 0, 0, 0, 0, 0, 160, 0, 191, 0, 224, 223, 190, 0, 160, 232, 191, 0, 0, 0, 0, 0, 160, 0, 191, 0, 160, 251, 189, 0, 128, 216, 191, 0, 0, 0, 0, 0, 160, 0, 191, 0, 32, 253, 189, 0, 224, 244, 191, 0, 0, 0, 0, 0, 160, 0, 191, 0, 160, 251, 189, 0, 128, 173, 191, 0, 136, 230, 57, 0, 96, 39, 191, 0, 160, 33, 190, 0, 160, 175, 191, 0, 136, 230, 57, 0, 96, 39, 191, 0, 224, 223, 190, 0, 96, 157, 191, 0, 136, 230, 57, 0, 160, 0, 191, 0, 224, 223, 190, 0, 96, 157, 191, 0, 136, 230, 57, 0, 160, 0, 191, 0, 224, 223, 190, 0, 160, 232, 191, 0, 136, 6, 0, 0, 96, 39, 191, 0, 224, 223, 190, 0, 160, 232, 191, 0, 136, 6, 0, 0, 96, 39, 191, 0, 160, 33, 190, 0, 96, 214, 191, 0, 136, 6, 0, 0, 160, 0, 191, 0, 160, 251, 189, 0, 128, 216, 191, 0, 136, 6, 0, 0, 160, 0, 191, 0, 160, 251, 189, 0, 128, 216, 191, 0, 120, 15, 0, 0, 96, 39, 191, 0, 160, 33, 190, 0, 96, 214, 191, 0, 120, 15, 0, 0, 96, 39, 191, 0, 160, 33, 190, 0, 160, 175, 191, 0, 120, 15, 0, 0, 160, 0, 191, 0, 160, 251, 189, 0, 128, 173, 191, 0, 120, 15, 0, 0, 160, 0, 191, 0, 32, 253, 189, 0, 160, 73, 190, 254, 3, 0, 0, 0, 160, 0, 191, 0, 160, 251, 189, 0, 96, 214, 190, 254, 3, 0, 0, 0, 160, 0, 191, 0, 160, 207, 60, 0, 96, 214, 190, 254, 3, 0, 0, 0, 160, 0, 191, 0, 192, 201, 60, 0, 160, 73, 190, 254, 3, 0, 0, 0, 160, 0, 63, 0, 160, 251, 189, 0, 32, 65, 191, 0, 0, 0, 0, 0, 160, 0, 63, 0, 160, 251, 189, 0, 96, 214, 190, 0, 0, 0, 0, 0, 160, 0, 63, 0, 160, 207, 60, 0, 96, 214, 190, 0, 0, 0, 0, 0, 160, 0, 63, 0, 160, 207, 60, 0, 32, 65, 191, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 253, 189, 0, 160, 73, 190, 0, 0, 0, 0, 0, 160, 0, 63, 0, 32, 253, 189, 0, 160, 73, 190, 0, 0, 0, 0, 0, 160, 0, 63, 0, 224, 223, 190, 0, 96, 3, 190, 0, 0, 0, 0, 0, 0, 0, 0, 0, 224, 223, 190, 0, 96, 3, 190, 0, 0, 0, 0, 0, 160, 0, 63, 0, 224, 223, 190, 0, 96, 3, 190, 0, 0, 0, 0, 0, 160, 0, 63, 0, 32, 253, 189, 0, 160, 73, 190, 0, 0, 0, 0, 0, 160, 0, 63, 0, 224, 223, 190, 0, 224, 149, 190, 0, 0, 0, 0, 0, 160, 0, 63, 0, 64, 254, 189, 0, 0, 135, 191, 0, 0, 0, 0, 0, 160, 0, 63, 0, 32, 197, 60, 0, 0, 135, 191, 0, 0, 0, 0, 0, 160, 0, 63, 0, 160, 251, 189, 0, 32, 65, 191, 0, 0, 224, 57, 0, 160, 0, 63, 0, 224, 223, 190, 0, 96, 97, 191, 0, 0, 224, 57, 0, 96, 39, 63, 0, 224, 223, 190, 0, 96, 97, 191, 0, 0, 224, 57, 0, 96, 39, 63, 0, 160, 33, 190, 0, 192, 60, 191, 0, 0, 224, 57, 0, 160, 0, 191, 0, 160, 251, 189, 0, 32, 65, 191, 254, 3, 0, 0, 0, 160, 0, 191, 0, 64, 254, 189, 0, 0, 135, 191, 254, 3, 0, 0, 0, 160, 0, 191, 0, 32, 197, 60, 0, 0, 135, 191, 254, 3, 0, 0, 0, 160, 0, 191, 0, 160, 207, 60, 0, 32, 65, 191, 254, 3, 0, 0, 0, 160, 0, 63, 0, 224, 223, 190, 0, 224, 149, 190, 0, 0, 0, 0, 0, 160, 0, 63, 0, 160, 251, 189, 0, 96, 214, 190, 0, 0, 0, 0, 0, 96, 39, 63, 0, 160, 33, 190, 0, 0, 223, 190, 0, 0, 0, 0, 0, 96, 39, 63, 0, 224, 223, 190, 0, 224, 149, 190, 0, 0, 0, 0, 0, 160, 0, 63, 0, 160, 251, 189, 0, 96, 214, 190, 0, 0, 0, 0, 0, 160, 0, 63, 0, 160, 251, 189, 0, 32, 65, 191, 0, 0, 0, 0, 0, 96, 39, 63, 0, 160, 33, 190, 0, 192, 60, 191, 0, 0, 0, 0, 0, 96, 39, 63, 0, 160, 33, 190, 0, 0, 223, 190, 0, 0, 0, 0, 0, 160, 0, 63, 0, 224, 223, 190, 0, 96, 97, 191, 0, 0, 0, 0, 0, 160, 0, 63, 0, 224, 223, 190, 0, 0, 135, 191, 0, 0, 0, 0, 0, 96, 39, 63, 0, 224, 223, 190, 0, 0, 135, 191, 0, 0, 0, 0, 0, 96, 39, 63, 0, 224, 223, 190, 0, 96, 97, 191, 0, 0, 0, 0, 0, 160, 0, 191, 0, 224, 223, 190, 0, 96, 3, 190, 0, 0, 0, 0, 0, 160, 0, 191, 0, 32, 253, 189, 0, 160, 73, 190, 0, 0, 0, 0, 0, 160, 0, 191, 0, 224, 223, 190, 0, 96, 3, 190, 254, 3, 0, 0, 0, 160, 0, 191, 0, 224, 223, 190, 0, 224, 149, 190, 254, 3, 0, 0, 0, 160, 0, 191, 0, 224, 223, 190, 0, 96, 97, 191, 254, 3, 0, 0, 0, 160, 0, 191, 0, 224, 223, 190, 0, 0, 135, 191, 254, 3, 0, 0, 0, 160, 0, 191, 0, 160, 251, 189, 0, 32, 65, 191, 96, 0, 224, 57, 0, 96, 39, 191, 0, 160, 33, 190, 0, 192, 60, 191, 96, 0, 224, 57, 0, 96, 39, 191, 0, 224, 223, 190, 0, 96, 97, 191, 96, 0, 224, 57, 0, 160, 0, 191, 0, 224, 223, 190, 0, 96, 97, 191, 96, 0, 224, 57, 0, 160, 0, 63, 0, 224, 223, 190, 0, 0, 135, 191, 0, 0, 0, 0, 0, 160, 0, 63, 0, 224, 223, 190, 0, 96, 97, 191, 0, 0, 0, 0, 0, 160, 0, 191, 0, 224, 223, 190, 0, 224, 149, 190, 96, 0, 0, 0, 0, 96, 39, 191, 0, 224, 223, 190, 0, 224, 149, 190, 96, 0, 0, 0, 0, 96, 39, 191, 0, 160, 33, 190, 0, 0, 223, 190, 96, 0, 0, 0, 0, 160, 0, 191, 0, 160, 251, 189, 0, 96, 214, 190, 96, 0, 0, 0, 0, 160, 0, 191, 0, 160, 251, 189, 0, 96, 214, 190, 225, 0, 0, 0, 0, 96, 39, 191, 0, 160, 33, 190, 0, 0, 223, 190, 225, 0, 0, 0, 0, 96, 39, 191, 0, 160, 33, 190, 0, 192, 60, 191, 225, 0, 0, 0, 0, 160, 0, 191, 0, 160, 251, 189, 0, 32, 65, 191, 225, 0, 0, 0, 0, 160, 0, 191, 0, 224, 223, 190, 0, 96, 97, 191, 0, 0, 0, 0, 0, 96, 39, 191, 0, 224, 223, 190, 0, 96, 97, 191, 0, 0, 0, 0, 0, 96, 39, 191, 0, 224, 223, 190, 0, 0, 135, 191, 0, 0, 0, 0, 0, 160, 0, 191, 0, 224, 223, 190, 0, 0, 135, 191, 0, 0, 0, 0, 0, 160, 0, 191, 0, 160, 207, 60, 0, 128, 216, 191, 0, 0, 0, 0, 0, 160, 0, 191, 0, 32, 253, 189, 0, 224, 244, 191, 0, 0, 0, 0, 0, 160, 0, 191, 0, 192, 201, 60, 0, 224, 244, 191, 0, 0, 0, 0, 0, 160, 0, 63, 0, 192, 201, 60, 0, 224, 244, 191, 254, 3, 0, 0, 0, 160, 0, 63, 0, 160, 207, 60, 0, 128, 216, 191, 254, 3, 0, 0, 0, 0, 0, 0, 0, 224, 223, 190, 0, 0, 135, 191, 0, 0, 0, 0, 0, 0, 0, 0, 0, 224, 223, 190, 0, 160, 253, 191, 0, 0, 0, 0, 0, 160, 0, 63, 0, 224, 223, 190, 0, 160, 253, 191, 0, 0, 0, 0, 0, 160, 0, 63, 0, 224, 223, 190, 0, 160, 232, 191, 0, 0, 0, 0, 0, 160, 0, 63, 0, 224, 223, 190, 0, 160, 232, 191, 0, 0, 0, 0, 0, 160, 0, 63, 0, 224, 223, 190, 0, 96, 157, 191, 0, 0, 0, 0, 0, 160, 0, 63, 0, 224, 223, 190, 0, 0, 135, 191, 0, 0, 0, 0, 0, 160, 0, 63, 0, 224, 223, 190, 0, 96, 157, 191, 0, 248, 15, 0, 0, 160, 0, 63, 0, 224, 223, 190, 0, 0, 135, 191, 0, 248, 15, 0, 0, 96, 39, 63, 0, 224, 223, 190, 0, 0, 135, 191, 0, 248, 15, 0, 0, 96, 39, 63, 0, 224, 223, 190, 0, 96, 157, 191, 0, 248, 15, 0, 0, 160, 0, 191, 0, 224, 223, 190, 0, 96, 157, 191, 0, 0, 0, 0, 0, 160, 0, 191, 0, 224, 223, 190, 0, 160, 232, 191, 0, 0, 0, 0, 0, 160, 0, 191, 0, 224, 223, 190, 0, 160, 253, 191, 0, 0, 0, 0, 0, 160, 0, 191, 0, 224, 223, 190, 0, 160, 253, 191, 0, 0, 0, 0, 0, 160, 0, 191, 0, 224, 223, 190, 0, 0, 135, 191, 0, 0, 0, 0, 0, 160, 0, 191, 0, 224, 223, 190, 0, 96, 157, 191, 0, 0, 0, 0, 0, 160, 0, 191, 0, 224, 223, 190, 0, 0, 135, 191, 0, 0, 0, 0, 0, 160, 0, 63, 0, 224, 223, 190, 0, 0, 135, 191, 254, 3, 0, 0, 0, 160, 0, 63, 0, 224, 223, 190, 0, 96, 157, 191, 254, 3, 0, 0, 0, 160, 0, 63, 0, 160, 251, 189, 0, 128, 173, 191, 254, 3, 0, 0, 0, 160, 0, 63, 0, 64, 254, 189, 0, 0, 135, 191, 254, 3, 0, 0, 0, 160, 0, 191, 0, 224, 223, 190, 0, 96, 157, 191, 0, 248, 15, 0, 0, 96, 39, 191, 0, 224, 223, 190, 0, 96, 157, 191, 0, 248, 15, 0, 0, 96, 39, 191, 0, 224, 223, 190, 0, 0, 135, 191, 0, 248, 15, 0, 0, 160, 0, 191, 0, 224, 223, 190, 0, 0, 135, 191, 0, 248, 15, 0, 0, 0, 0, 0, 0, 224, 223, 190, 0, 0, 135, 191, 0, 248, 15, 0, 0, 0, 0, 0, 0, 224, 223, 190, 0, 96, 3, 190, 0, 248, 15, 0, 0, 160, 0, 63, 0, 224, 223, 190, 0, 96, 3, 190, 0, 248, 15, 0, 0, 160, 0, 63, 0, 224, 223, 190, 0, 224, 149, 190, 0, 248, 15, 0, 0, 160, 0, 63, 0, 224, 223, 190, 0, 224, 149, 190, 0, 0, 0, 0, 0, 160, 0, 63, 0, 224, 223, 190, 0, 96, 97, 191, 0, 0, 0, 0, 0, 160, 0, 191, 0, 224, 223, 190, 0, 96, 97, 191, 0, 0, 0, 0, 0, 160, 0, 191, 0, 224, 223, 190, 0, 224, 149, 190, 0, 0, 0, 0, 0, 160, 0, 191, 0, 224, 223, 190, 0, 96, 3, 190, 0, 0, 0, 0, 0, 160, 0, 191, 0, 224, 223, 190, 0, 96, 3, 190, 0, 248, 15, 0, 0, 0, 0, 0, 0, 192, 201, 60, 0, 224, 244, 191, 0, 248, 15, 0, 0, 160, 0, 191, 0, 192, 201, 60, 0, 224, 244, 191, 0, 248, 15, 0, 0, 160, 0, 191, 0, 160, 207, 60, 0, 128, 216, 191, 0, 248, 15, 0, 0, 160, 0, 63, 0, 192, 201, 60, 0, 224, 244, 191, 0, 248, 15, 0, 0, 160, 0, 63, 0, 160, 207, 60, 0, 128, 216, 191, 0, 248, 15, 0, 0, 160, 0, 191, 0, 160, 207, 60, 0, 128, 173, 191, 0, 248, 15, 0, 0, 160, 0, 63, 0, 160, 207, 60, 0, 128, 173, 191, 0, 248, 15, 0, 0, 160, 0, 63, 0, 160, 207, 60, 0, 128, 216, 191, 0, 248, 15, 0, 0, 160, 0, 191, 0, 160, 207, 60, 0, 128, 216, 191, 0, 248, 15, 0, 0, 0, 0, 0, 0, 192, 201, 60, 0, 160, 73, 190, 0, 0, 0, 0, 0, 160, 0, 191, 0, 192, 201, 60, 0, 160, 73, 190, 0, 0, 0, 0, 0, 160, 0, 191, 0, 160, 207, 60, 0, 96, 214, 190, 0, 0, 0, 0, 0, 160, 0, 63, 0, 192, 201, 60, 0, 160, 73, 190, 0, 0, 0, 0, 0, 160, 0, 63, 0, 160, 207, 60, 0, 96, 214, 190, 0, 0, 0, 0, 0, 160, 0, 191, 0, 160, 207, 60, 0, 32, 65, 191, 0, 0, 0, 0, 0, 160, 0, 63, 0, 160, 207, 60, 0, 32, 65, 191, 0, 0, 0, 0, 0, 160, 0, 63, 0, 160, 207, 60, 0, 96, 214, 190, 0, 0, 0, 0, 0, 160, 0, 191, 0, 160, 207, 60, 0, 96, 214, 190, 0, 0, 0, 0, 0, 160, 0, 191, 0, 32, 197, 60, 0, 0, 135, 191, 0, 0, 0, 0, 0, 160, 0, 63, 0, 32, 197, 60, 0, 0, 135, 191, 0, 0, 0, 0, 0, 160, 0, 63, 0, 160, 207, 60, 0, 32, 65, 191, 0, 0, 0, 0, 0, 160, 0, 191, 0, 160, 207, 60, 0, 32, 65, 191, 0, 0, 0, 0, 0, 160, 0, 191, 0, 32, 197, 60, 0, 0, 135, 191, 0, 248, 15, 0, 0, 160, 0, 63, 0, 32, 197, 60, 0, 0, 135, 191, 0, 248, 15, 0, 0, 160, 0, 63, 0, 160, 207, 60, 0, 128, 173, 191, 0, 248, 15, 0, 0, 160, 0, 191, 0, 160, 207, 60, 0, 128, 173, 191, 0, 248, 15, 0, 0, 160, 0, 63, 0, 160, 207, 60, 0, 128, 173, 191, 254, 3, 0, 0, 0, 160, 0, 191, 0, 192, 201, 60, 0, 224, 244, 191, 0, 0, 0, 0, 0, 160, 0, 63, 0, 32, 253, 189, 0, 160, 73, 190, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 253, 189, 0, 160, 73, 190, 0, 0, 0, 0, 0, 0, 0, 0, 0, 192, 201, 60, 0, 160, 73, 190, 0, 0, 0, 0, 0, 160, 0, 63, 0, 192, 201, 60, 0, 160, 73, 190, 0, 0, 0, 0, 0, 160, 0, 191, 0, 32, 253, 189, 0, 160, 73, 190, 0, 0, 0, 0, 0, 160, 0, 191, 0, 192, 201, 60, 0, 160, 73, 190, 0, 0, 0, 0, 0, 160, 0, 63, 0, 192, 201, 60, 0, 160, 73, 190, 0, 0, 0, 0, 0, 160, 0, 63, 0, 32, 197, 60, 0, 0, 135, 191, 254, 3, 0, 0) +}, { "aabb": AABB(-0.50249, -0.437319, -1.81763, 1.00499, 0.314404, 1.52475), -"array_data": PackedByteArray(5, 56, 255, 182, 69, 191, 0, 60, 127, 0, 0, 0, 5, 56, 221, 175, 196, 190, 0, 60, 127, 0, 0, 0, 5, 56, 221, 175, 108, 189, 0, 60, 127, 0, 0, 0, 5, 56, 255, 182, 235, 188, 0, 60, 127, 0, 0, 0, 5, 184, 255, 182, 69, 191, 0, 60, 130, 0, 0, 0, 5, 184, 255, 182, 235, 188, 0, 60, 130, 0, 0, 0, 5, 184, 221, 175, 108, 189, 0, 60, 130, 0, 0, 0, 5, 184, 221, 175, 196, 190, 0, 60, 130, 0, 0, 0, 5, 56, 255, 182, 175, 180, 0, 60, 130, 0, 0, 0, 5, 56, 221, 175, 179, 182, 0, 60, 130, 0, 0, 0, 5, 56, 221, 175, 9, 186, 0, 60, 130, 0, 0, 0, 5, 56, 255, 182, 11, 187, 0, 60, 130, 0, 0, 0, 5, 184, 255, 182, 175, 180, 0, 60, 127, 0, 0, 0, 5, 184, 255, 182, 11, 187, 0, 60, 127, 0, 0, 0, 5, 184, 221, 175, 9, 186, 0, 60, 127, 0, 0, 0, 5, 184, 221, 175, 179, 182, 0, 60, 127, 0, 0, 0), -"array_index_data": PackedByteArray(0, 0, 2, 0, 1, 0, 0, 0, 3, 0, 2, 0, 4, 0, 6, 0, 5, 0, 4, 0, 7, 0, 6, 0, 8, 0, 10, 0, 9, 0, 8, 0, 11, 0, 10, 0, 12, 0, 14, 0, 13, 0, 12, 0, 15, 0, 14, 0), -"blend_shape_data": [], -"format": 98051, +"format": 4099, "index_count": 24, -"material": ExtResource( 2 ), +"index_data": PackedByteArray(0, 0, 2, 0, 1, 0, 0, 0, 3, 0, 2, 0, 4, 0, 6, 0, 5, 0, 4, 0, 7, 0, 6, 0, 8, 0, 10, 0, 9, 0, 8, 0, 11, 0, 10, 0, 12, 0, 14, 0, 13, 0, 12, 0, 15, 0, 14, 0), +"material": ExtResource( "2" ), "name": "Material.000", -"primitive": 4, -"skeleton_aabb": [], -"vertex_count": 16 -} -surfaces/2 = { +"primitive": 3, +"vertex_count": 16, +"vertex_data": PackedByteArray(0, 160, 0, 63, 0, 224, 223, 190, 0, 160, 232, 191, 254, 3, 0, 0, 0, 160, 0, 63, 0, 160, 251, 189, 0, 128, 216, 191, 254, 3, 0, 0, 0, 160, 0, 63, 0, 160, 251, 189, 0, 128, 173, 191, 254, 3, 0, 0, 0, 160, 0, 63, 0, 224, 223, 190, 0, 96, 157, 191, 254, 3, 0, 0, 0, 160, 0, 191, 0, 224, 223, 190, 0, 160, 232, 191, 0, 0, 0, 0, 0, 160, 0, 191, 0, 224, 223, 190, 0, 96, 157, 191, 0, 0, 0, 0, 0, 160, 0, 191, 0, 160, 251, 189, 0, 128, 173, 191, 0, 0, 0, 0, 0, 160, 0, 191, 0, 160, 251, 189, 0, 128, 216, 191, 0, 0, 0, 0, 0, 160, 0, 63, 0, 224, 223, 190, 0, 224, 149, 190, 0, 0, 0, 0, 0, 160, 0, 63, 0, 160, 251, 189, 0, 96, 214, 190, 0, 0, 0, 0, 0, 160, 0, 63, 0, 160, 251, 189, 0, 32, 65, 191, 0, 0, 0, 0, 0, 160, 0, 63, 0, 224, 223, 190, 0, 96, 97, 191, 0, 0, 0, 0, 0, 160, 0, 191, 0, 224, 223, 190, 0, 224, 149, 190, 254, 3, 0, 0, 0, 160, 0, 191, 0, 224, 223, 190, 0, 96, 97, 191, 254, 3, 0, 0, 0, 160, 0, 191, 0, 160, 251, 189, 0, 32, 65, 191, 254, 3, 0, 0, 0, 160, 0, 191, 0, 160, 251, 189, 0, 96, 214, 190, 254, 3, 0, 0) +}, { "aabb": AABB(-0.625081, -0.00771013, -2.00664, 1.24051, 1.12235, 4.20021), -"array_data": PackedByteArray(0, 185, 117, 60, 99, 64, 0, 60, 130, 0, 0, 0, 0, 185, 117, 60, 3, 192, 0, 60, 130, 0, 0, 0, 0, 185, 229, 159, 3, 192, 0, 60, 130, 0, 0, 0, 0, 185, 229, 159, 99, 64, 0, 60, 130, 0, 0, 0, 0, 185, 117, 60, 3, 192, 0, 60, 0, 0, 129, 0, 236, 56, 117, 60, 3, 192, 0, 60, 0, 0, 129, 0, 236, 56, 229, 159, 3, 192, 0, 60, 0, 0, 129, 0, 0, 185, 229, 159, 3, 192, 0, 60, 0, 0, 129, 0, 236, 56, 117, 60, 3, 192, 0, 60, 127, 0, 0, 0, 236, 56, 117, 60, 99, 64, 0, 60, 127, 0, 0, 0, 236, 56, 229, 159, 99, 64, 0, 60, 127, 0, 0, 0, 236, 56, 229, 159, 3, 192, 0, 60, 127, 0, 0, 0, 236, 56, 117, 60, 99, 64, 0, 60, 0, 0, 126, 0, 0, 185, 117, 60, 99, 64, 0, 60, 0, 0, 126, 0, 0, 185, 229, 159, 99, 64, 0, 60, 0, 0, 126, 0, 236, 56, 229, 159, 99, 64, 0, 60, 0, 0, 126, 0, 0, 185, 229, 159, 99, 64, 0, 60, 0, 130, 0, 0, 0, 185, 229, 159, 3, 192, 0, 60, 0, 130, 0, 0, 236, 56, 229, 159, 3, 192, 0, 60, 0, 130, 0, 0, 236, 56, 229, 159, 99, 64, 0, 60, 0, 130, 0, 0, 236, 56, 117, 60, 99, 64, 0, 60, 0, 127, 0, 0, 236, 56, 117, 60, 3, 192, 0, 60, 0, 127, 0, 0, 0, 185, 117, 60, 3, 192, 0, 60, 0, 127, 0, 0, 0, 185, 117, 60, 99, 64, 0, 60, 0, 127, 0, 0), -"array_index_data": PackedByteArray(0, 0, 2, 0, 1, 0, 0, 0, 3, 0, 2, 0, 4, 0, 6, 0, 5, 0, 4, 0, 7, 0, 6, 0, 8, 0, 10, 0, 9, 0, 8, 0, 11, 0, 10, 0, 12, 0, 14, 0, 13, 0, 12, 0, 15, 0, 14, 0, 16, 0, 18, 0, 17, 0, 16, 0, 19, 0, 18, 0, 20, 0, 22, 0, 21, 0, 20, 0, 23, 0, 22, 0), -"blend_shape_data": [], -"format": 98051, +"format": 4099, "index_count": 36, -"material": ExtResource( 3 ), +"index_data": PackedByteArray(0, 0, 2, 0, 1, 0, 0, 0, 3, 0, 2, 0, 4, 0, 6, 0, 5, 0, 4, 0, 7, 0, 6, 0, 8, 0, 10, 0, 9, 0, 8, 0, 11, 0, 10, 0, 12, 0, 14, 0, 13, 0, 12, 0, 15, 0, 14, 0, 16, 0, 18, 0, 17, 0, 16, 0, 19, 0, 18, 0, 20, 0, 22, 0, 21, 0, 20, 0, 23, 0, 22, 0), +"material": ExtResource( "3" ), "name": "Material", -"primitive": 4, -"skeleton_aabb": [], -"vertex_count": 24 -} +"primitive": 3, +"vertex_count": 24, +"vertex_data": PackedByteArray(0, 0, 32, 191, 0, 160, 142, 63, 0, 96, 12, 64, 0, 0, 0, 0, 0, 0, 32, 191, 0, 160, 142, 63, 0, 96, 0, 192, 0, 0, 0, 0, 0, 0, 32, 191, 0, 160, 252, 187, 0, 96, 0, 192, 0, 0, 0, 0, 0, 0, 32, 191, 0, 160, 252, 187, 0, 96, 12, 64, 0, 0, 0, 0, 0, 0, 32, 191, 0, 160, 142, 63, 0, 96, 0, 192, 0, 0, 0, 0, 0, 128, 29, 63, 0, 160, 142, 63, 0, 96, 0, 192, 0, 0, 0, 0, 0, 128, 29, 63, 0, 160, 252, 187, 0, 96, 0, 192, 0, 0, 0, 0, 0, 0, 32, 191, 0, 160, 252, 187, 0, 96, 0, 192, 0, 0, 0, 0, 0, 128, 29, 63, 0, 160, 142, 63, 0, 96, 0, 192, 254, 3, 0, 0, 0, 128, 29, 63, 0, 160, 142, 63, 0, 96, 12, 64, 254, 3, 0, 0, 0, 128, 29, 63, 0, 160, 252, 187, 0, 96, 12, 64, 254, 3, 0, 0, 0, 128, 29, 63, 0, 160, 252, 187, 0, 96, 0, 192, 254, 3, 0, 0, 0, 128, 29, 63, 0, 160, 142, 63, 0, 96, 12, 64, 0, 0, 96, 63, 0, 0, 32, 191, 0, 160, 142, 63, 0, 96, 12, 64, 0, 0, 96, 63, 0, 0, 32, 191, 0, 160, 252, 187, 0, 96, 12, 64, 0, 0, 96, 63, 0, 128, 29, 63, 0, 160, 252, 187, 0, 96, 12, 64, 0, 0, 96, 63, 0, 0, 32, 191, 0, 160, 252, 187, 0, 96, 12, 64, 0, 0, 0, 0, 0, 0, 32, 191, 0, 160, 252, 187, 0, 96, 0, 192, 0, 0, 0, 0, 0, 128, 29, 63, 0, 160, 252, 187, 0, 96, 0, 192, 0, 0, 0, 0, 0, 128, 29, 63, 0, 160, 252, 187, 0, 96, 12, 64, 0, 0, 0, 0, 0, 128, 29, 63, 0, 160, 142, 63, 0, 96, 12, 64, 0, 248, 15, 0, 0, 128, 29, 63, 0, 160, 142, 63, 0, 96, 0, 192, 0, 248, 15, 0, 0, 0, 32, 191, 0, 160, 142, 63, 0, 96, 0, 192, 0, 248, 15, 0, 0, 0, 32, 191, 0, 160, 142, 63, 0, 96, 12, 64, 0, 248, 15, 0) +}] -[sub_resource type="BoxShape3D" id=6] -extents = Vector3(0.748914, 0.694175, 1.97084) +[sub_resource type="BoxShape3D" id="6"] +size = Vector3(1.49783, 1.38835, 3.94168) -[sub_resource type="ArrayMesh" id=7] -surfaces/0 = { +[sub_resource type="ArrayMesh" id="7"] +_surfaces = [{ "aabb": AABB(-0.0614569, -0.228035, -0.228035, 0.122914, 0.45608, 0.45607), -"array_data": PackedByteArray(221, 171, 76, 51, 210, 43, 0, 60, 130, 0, 0, 0, 221, 171, 76, 51, 210, 171, 0, 60, 130, 0, 0, 0, 221, 171, 87, 49, 87, 49, 0, 60, 130, 0, 0, 0, 221, 171, 87, 49, 87, 177, 0, 60, 130, 0, 0, 0, 221, 171, 210, 43, 76, 179, 0, 60, 130, 0, 0, 0, 221, 171, 210, 171, 76, 179, 0, 60, 130, 0, 0, 0, 221, 171, 87, 177, 87, 177, 0, 60, 130, 0, 0, 0, 221, 171, 76, 179, 210, 171, 0, 60, 130, 0, 0, 0, 221, 171, 76, 179, 210, 43, 0, 60, 130, 0, 0, 0, 221, 171, 87, 177, 87, 49, 0, 60, 130, 0, 0, 0, 221, 171, 210, 171, 76, 51, 0, 60, 130, 0, 0, 0, 221, 171, 210, 43, 76, 51, 0, 60, 130, 0, 0, 0, 221, 43, 76, 51, 210, 43, 0, 60, 127, 0, 0, 0, 221, 43, 87, 49, 87, 49, 0, 60, 127, 0, 0, 0, 221, 43, 76, 51, 210, 171, 0, 60, 127, 0, 0, 0, 221, 43, 210, 43, 76, 51, 0, 60, 127, 0, 0, 0, 221, 43, 210, 171, 76, 51, 0, 60, 127, 0, 0, 0, 221, 43, 87, 177, 87, 49, 0, 60, 127, 0, 0, 0, 221, 43, 76, 179, 210, 43, 0, 60, 127, 0, 0, 0, 221, 43, 76, 179, 210, 171, 0, 60, 127, 0, 0, 0, 221, 43, 87, 177, 87, 177, 0, 60, 127, 0, 0, 0, 221, 43, 210, 171, 76, 179, 0, 60, 127, 0, 0, 0, 221, 43, 210, 43, 76, 179, 0, 60, 127, 0, 0, 0, 221, 43, 87, 49, 87, 177, 0, 60, 127, 0, 0, 0, 221, 171, 87, 177, 87, 177, 0, 60, 0, 193, 147, 0, 221, 171, 210, 171, 76, 179, 0, 60, 0, 193, 147, 0, 221, 43, 210, 171, 76, 179, 0, 60, 0, 193, 147, 0, 221, 43, 87, 177, 87, 177, 0, 60, 0, 193, 147, 0, 221, 171, 210, 43, 76, 51, 0, 60, 0, 0, 126, 0, 221, 171, 210, 171, 76, 51, 0, 60, 0, 0, 126, 0, 221, 43, 210, 171, 76, 51, 0, 60, 0, 0, 126, 0, 221, 43, 210, 43, 76, 51, 0, 60, 0, 0, 126, 0, 221, 171, 210, 171, 76, 179, 0, 60, 0, 0, 129, 0, 221, 171, 210, 43, 76, 179, 0, 60, 0, 0, 129, 0, 221, 43, 210, 43, 76, 179, 0, 60, 0, 0, 129, 0, 221, 43, 210, 171, 76, 179, 0, 60, 0, 0, 129, 0, 221, 171, 210, 171, 76, 51, 0, 60, 0, 193, 109, 0, 221, 171, 87, 177, 87, 49, 0, 60, 0, 193, 109, 0, 221, 43, 87, 177, 87, 49, 0, 60, 0, 193, 109, 0, 221, 43, 210, 171, 76, 51, 0, 60, 0, 193, 109, 0, 221, 171, 210, 43, 76, 179, 0, 60, 0, 63, 147, 0, 221, 171, 87, 49, 87, 177, 0, 60, 0, 63, 147, 0, 221, 43, 87, 49, 87, 177, 0, 60, 0, 63, 147, 0, 221, 43, 210, 43, 76, 179, 0, 60, 0, 63, 147, 0, 221, 171, 87, 177, 87, 49, 0, 60, 0, 147, 63, 0, 221, 171, 76, 179, 210, 43, 0, 60, 0, 147, 63, 0, 221, 43, 76, 179, 210, 43, 0, 60, 0, 147, 63, 0, 221, 43, 87, 177, 87, 49, 0, 60, 0, 147, 63, 0, 221, 171, 87, 49, 87, 177, 0, 60, 0, 109, 193, 0, 221, 171, 76, 51, 210, 171, 0, 60, 0, 109, 193, 0, 221, 43, 76, 51, 210, 171, 0, 60, 0, 109, 193, 0, 221, 43, 87, 49, 87, 177, 0, 60, 0, 109, 193, 0, 221, 171, 76, 179, 210, 43, 0, 60, 0, 130, 0, 0, 221, 171, 76, 179, 210, 171, 0, 60, 0, 130, 0, 0, 221, 43, 76, 179, 210, 171, 0, 60, 0, 130, 0, 0, 221, 43, 76, 179, 210, 43, 0, 60, 0, 130, 0, 0, 221, 171, 76, 51, 210, 43, 0, 60, 0, 109, 63, 0, 221, 171, 87, 49, 87, 49, 0, 60, 0, 109, 63, 0, 221, 43, 87, 49, 87, 49, 0, 60, 0, 109, 63, 0, 221, 43, 76, 51, 210, 43, 0, 60, 0, 109, 63, 0, 221, 171, 76, 51, 210, 171, 0, 60, 0, 127, 0, 0, 221, 171, 76, 51, 210, 43, 0, 60, 0, 127, 0, 0, 221, 43, 76, 51, 210, 43, 0, 60, 0, 127, 0, 0, 221, 43, 76, 51, 210, 171, 0, 60, 0, 127, 0, 0, 221, 171, 76, 179, 210, 171, 0, 60, 0, 147, 193, 0, 221, 171, 87, 177, 87, 177, 0, 60, 0, 147, 193, 0, 221, 43, 87, 177, 87, 177, 0, 60, 0, 147, 193, 0, 221, 43, 76, 179, 210, 171, 0, 60, 0, 147, 193, 0, 221, 171, 87, 49, 87, 49, 0, 60, 0, 63, 109, 0, 221, 171, 210, 43, 76, 51, 0, 60, 0, 63, 109, 0, 221, 43, 210, 43, 76, 51, 0, 60, 0, 63, 109, 0, 221, 43, 87, 49, 87, 49, 0, 60, 0, 63, 109, 0), -"array_index_data": PackedByteArray(0, 0, 2, 0, 1, 0, 1, 0, 4, 0, 3, 0, 4, 0, 6, 0, 5, 0, 6, 0, 8, 0, 7, 0, 8, 0, 10, 0, 9, 0, 10, 0, 2, 0, 11, 0, 1, 0, 2, 0, 4, 0, 4, 0, 8, 0, 6, 0, 8, 0, 2, 0, 10, 0, 4, 0, 2, 0, 8, 0, 12, 0, 14, 0, 13, 0, 13, 0, 16, 0, 15, 0, 16, 0, 18, 0, 17, 0, 18, 0, 20, 0, 19, 0, 20, 0, 22, 0, 21, 0, 22, 0, 14, 0, 23, 0, 13, 0, 14, 0, 16, 0, 16, 0, 20, 0, 18, 0, 20, 0, 14, 0, 22, 0, 16, 0, 14, 0, 20, 0, 24, 0, 26, 0, 25, 0, 24, 0, 27, 0, 26, 0, 28, 0, 30, 0, 29, 0, 28, 0, 31, 0, 30, 0, 32, 0, 34, 0, 33, 0, 32, 0, 35, 0, 34, 0, 36, 0, 38, 0, 37, 0, 36, 0, 39, 0, 38, 0, 40, 0, 42, 0, 41, 0, 40, 0, 43, 0, 42, 0, 44, 0, 46, 0, 45, 0, 44, 0, 47, 0, 46, 0, 48, 0, 50, 0, 49, 0, 48, 0, 51, 0, 50, 0, 52, 0, 54, 0, 53, 0, 52, 0, 55, 0, 54, 0, 56, 0, 58, 0, 57, 0, 56, 0, 59, 0, 58, 0, 60, 0, 62, 0, 61, 0, 60, 0, 63, 0, 62, 0, 64, 0, 66, 0, 65, 0, 64, 0, 67, 0, 66, 0, 68, 0, 70, 0, 69, 0, 68, 0, 71, 0, 70, 0), -"blend_shape_data": [], -"format": 98051, +"format": 4099, "index_count": 132, -"material": ExtResource( 1 ), +"index_data": PackedByteArray(0, 0, 2, 0, 1, 0, 1, 0, 4, 0, 3, 0, 4, 0, 6, 0, 5, 0, 6, 0, 8, 0, 7, 0, 8, 0, 10, 0, 9, 0, 10, 0, 2, 0, 11, 0, 1, 0, 2, 0, 4, 0, 4, 0, 8, 0, 6, 0, 8, 0, 2, 0, 10, 0, 4, 0, 2, 0, 8, 0, 12, 0, 14, 0, 13, 0, 13, 0, 16, 0, 15, 0, 16, 0, 18, 0, 17, 0, 18, 0, 20, 0, 19, 0, 20, 0, 22, 0, 21, 0, 22, 0, 14, 0, 23, 0, 13, 0, 14, 0, 16, 0, 16, 0, 20, 0, 18, 0, 20, 0, 14, 0, 22, 0, 16, 0, 14, 0, 20, 0, 24, 0, 26, 0, 25, 0, 24, 0, 27, 0, 26, 0, 28, 0, 30, 0, 29, 0, 28, 0, 31, 0, 30, 0, 32, 0, 34, 0, 33, 0, 32, 0, 35, 0, 34, 0, 36, 0, 38, 0, 37, 0, 36, 0, 39, 0, 38, 0, 40, 0, 42, 0, 41, 0, 40, 0, 43, 0, 42, 0, 44, 0, 46, 0, 45, 0, 44, 0, 47, 0, 46, 0, 48, 0, 50, 0, 49, 0, 48, 0, 51, 0, 50, 0, 52, 0, 54, 0, 53, 0, 52, 0, 55, 0, 54, 0, 56, 0, 58, 0, 57, 0, 56, 0, 59, 0, 58, 0, 60, 0, 62, 0, 61, 0, 60, 0, 63, 0, 62, 0, 64, 0, 66, 0, 65, 0, 64, 0, 67, 0, 66, 0, 68, 0, 70, 0, 69, 0, 68, 0, 71, 0, 70, 0), +"material": ExtResource( "1" ), "name": "Material.001", -"primitive": 4, -"skeleton_aabb": [], -"vertex_count": 72 -} +"primitive": 3, +"vertex_count": 72, +"vertex_data": PackedByteArray(0, 160, 123, 189, 0, 128, 105, 62, 0, 64, 122, 61, 0, 0, 0, 0, 0, 160, 123, 189, 0, 128, 105, 62, 0, 64, 122, 189, 0, 0, 0, 0, 0, 160, 123, 189, 0, 224, 42, 62, 0, 224, 42, 62, 0, 0, 0, 0, 0, 160, 123, 189, 0, 224, 42, 62, 0, 224, 42, 190, 0, 0, 0, 0, 0, 160, 123, 189, 0, 64, 122, 61, 0, 128, 105, 190, 0, 0, 0, 0, 0, 160, 123, 189, 0, 64, 122, 189, 0, 128, 105, 190, 0, 0, 0, 0, 0, 160, 123, 189, 0, 224, 42, 190, 0, 224, 42, 190, 0, 0, 0, 0, 0, 160, 123, 189, 0, 128, 105, 190, 0, 64, 122, 189, 0, 0, 0, 0, 0, 160, 123, 189, 0, 128, 105, 190, 0, 64, 122, 61, 0, 0, 0, 0, 0, 160, 123, 189, 0, 224, 42, 190, 0, 224, 42, 62, 0, 0, 0, 0, 0, 160, 123, 189, 0, 64, 122, 189, 0, 128, 105, 62, 0, 0, 0, 0, 0, 160, 123, 189, 0, 64, 122, 61, 0, 128, 105, 62, 0, 0, 0, 0, 0, 160, 123, 61, 0, 128, 105, 62, 0, 64, 122, 61, 254, 3, 0, 0, 0, 160, 123, 61, 0, 224, 42, 62, 0, 224, 42, 62, 254, 3, 0, 0, 0, 160, 123, 61, 0, 128, 105, 62, 0, 64, 122, 189, 254, 3, 0, 0, 0, 160, 123, 61, 0, 64, 122, 61, 0, 128, 105, 62, 254, 3, 0, 0, 0, 160, 123, 61, 0, 64, 122, 189, 0, 128, 105, 62, 254, 3, 0, 0, 0, 160, 123, 61, 0, 224, 42, 190, 0, 224, 42, 62, 254, 3, 0, 0, 0, 160, 123, 61, 0, 128, 105, 190, 0, 64, 122, 61, 254, 3, 0, 0, 0, 160, 123, 61, 0, 128, 105, 190, 0, 64, 122, 189, 254, 3, 0, 0, 0, 160, 123, 61, 0, 224, 42, 190, 0, 224, 42, 190, 254, 3, 0, 0, 0, 160, 123, 61, 0, 64, 122, 189, 0, 128, 105, 190, 254, 3, 0, 0, 0, 160, 123, 61, 0, 64, 122, 61, 0, 128, 105, 190, 254, 3, 0, 0, 0, 160, 123, 61, 0, 224, 42, 62, 0, 224, 42, 190, 254, 3, 0, 0, 0, 160, 123, 189, 0, 224, 42, 190, 0, 224, 42, 190, 0, 0, 0, 0, 0, 160, 123, 189, 0, 64, 122, 189, 0, 128, 105, 190, 0, 0, 0, 0, 0, 160, 123, 61, 0, 64, 122, 189, 0, 128, 105, 190, 0, 0, 0, 0, 0, 160, 123, 61, 0, 224, 42, 190, 0, 224, 42, 190, 0, 0, 0, 0, 0, 160, 123, 189, 0, 64, 122, 61, 0, 128, 105, 62, 0, 0, 96, 63, 0, 160, 123, 189, 0, 64, 122, 189, 0, 128, 105, 62, 0, 0, 96, 63, 0, 160, 123, 61, 0, 64, 122, 189, 0, 128, 105, 62, 0, 0, 96, 63, 0, 160, 123, 61, 0, 64, 122, 61, 0, 128, 105, 62, 0, 0, 96, 63, 0, 160, 123, 189, 0, 64, 122, 189, 0, 128, 105, 190, 0, 0, 0, 0, 0, 160, 123, 189, 0, 64, 122, 61, 0, 128, 105, 190, 0, 0, 0, 0, 0, 160, 123, 61, 0, 64, 122, 61, 0, 128, 105, 190, 0, 0, 0, 0, 0, 160, 123, 61, 0, 64, 122, 189, 0, 128, 105, 190, 0, 0, 0, 0, 0, 160, 123, 189, 0, 64, 122, 189, 0, 128, 105, 62, 0, 0, 224, 54, 0, 160, 123, 189, 0, 224, 42, 190, 0, 224, 42, 62, 0, 0, 224, 54, 0, 160, 123, 61, 0, 224, 42, 190, 0, 224, 42, 62, 0, 0, 224, 54, 0, 160, 123, 61, 0, 64, 122, 189, 0, 128, 105, 62, 0, 0, 224, 54, 0, 160, 123, 189, 0, 64, 122, 61, 0, 128, 105, 190, 0, 236, 7, 0, 0, 160, 123, 189, 0, 224, 42, 62, 0, 224, 42, 190, 0, 236, 7, 0, 0, 160, 123, 61, 0, 224, 42, 62, 0, 224, 42, 190, 0, 236, 7, 0, 0, 160, 123, 61, 0, 64, 122, 61, 0, 128, 105, 190, 0, 236, 7, 0, 0, 160, 123, 189, 0, 224, 42, 190, 0, 224, 42, 62, 0, 0, 176, 31, 0, 160, 123, 189, 0, 128, 105, 190, 0, 64, 122, 61, 0, 0, 176, 31, 0, 160, 123, 61, 0, 128, 105, 190, 0, 64, 122, 61, 0, 0, 176, 31, 0, 160, 123, 61, 0, 224, 42, 190, 0, 224, 42, 62, 0, 0, 176, 31, 0, 160, 123, 189, 0, 224, 42, 62, 0, 224, 42, 190, 0, 184, 13, 0, 0, 160, 123, 189, 0, 128, 105, 62, 0, 64, 122, 189, 0, 184, 13, 0, 0, 160, 123, 61, 0, 128, 105, 62, 0, 64, 122, 189, 0, 184, 13, 0, 0, 160, 123, 61, 0, 224, 42, 62, 0, 224, 42, 190, 0, 184, 13, 0, 0, 160, 123, 189, 0, 128, 105, 190, 0, 64, 122, 61, 0, 0, 0, 0, 0, 160, 123, 189, 0, 128, 105, 190, 0, 64, 122, 189, 0, 0, 0, 0, 0, 160, 123, 61, 0, 128, 105, 190, 0, 64, 122, 189, 0, 0, 0, 0, 0, 160, 123, 61, 0, 128, 105, 190, 0, 64, 122, 61, 0, 0, 0, 0, 0, 160, 123, 189, 0, 128, 105, 62, 0, 64, 122, 61, 0, 184, 189, 31, 0, 160, 123, 189, 0, 224, 42, 62, 0, 224, 42, 62, 0, 184, 189, 31, 0, 160, 123, 61, 0, 224, 42, 62, 0, 224, 42, 62, 0, 184, 189, 31, 0, 160, 123, 61, 0, 128, 105, 62, 0, 64, 122, 61, 0, 184, 189, 31, 0, 160, 123, 189, 0, 128, 105, 62, 0, 64, 122, 189, 0, 248, 15, 0, 0, 160, 123, 189, 0, 128, 105, 62, 0, 64, 122, 61, 0, 248, 15, 0, 0, 160, 123, 61, 0, 128, 105, 62, 0, 64, 122, 61, 0, 248, 15, 0, 0, 160, 123, 61, 0, 128, 105, 62, 0, 64, 122, 189, 0, 248, 15, 0, 0, 160, 123, 189, 0, 128, 105, 190, 0, 64, 122, 189, 0, 0, 0, 0, 0, 160, 123, 189, 0, 224, 42, 190, 0, 224, 42, 190, 0, 0, 0, 0, 0, 160, 123, 61, 0, 224, 42, 190, 0, 224, 42, 190, 0, 0, 0, 0, 0, 160, 123, 61, 0, 128, 105, 190, 0, 64, 122, 189, 0, 0, 0, 0, 0, 160, 123, 189, 0, 224, 42, 62, 0, 224, 42, 62, 0, 236, 231, 54, 0, 160, 123, 189, 0, 64, 122, 61, 0, 128, 105, 62, 0, 236, 231, 54, 0, 160, 123, 61, 0, 64, 122, 61, 0, 128, 105, 62, 0, 236, 231, 54, 0, 160, 123, 61, 0, 224, 42, 62, 0, 224, 42, 62, 0, 236, 231, 54) +}] -[sub_resource type="ArrayMesh" id=8] -surfaces/0 = { +[sub_resource type="ArrayMesh" id="8"] +_surfaces = [{ "aabb": AABB(-0.0614569, -0.228035, -0.228035, 0.122914, 0.45608, 0.45607), -"array_data": PackedByteArray(221, 171, 76, 51, 210, 43, 0, 60, 130, 0, 0, 0, 221, 171, 76, 51, 210, 171, 0, 60, 130, 0, 0, 0, 221, 171, 87, 49, 87, 49, 0, 60, 130, 0, 0, 0, 221, 171, 87, 49, 87, 177, 0, 60, 130, 0, 0, 0, 221, 171, 210, 43, 76, 179, 0, 60, 130, 0, 0, 0, 221, 171, 210, 171, 76, 179, 0, 60, 130, 0, 0, 0, 221, 171, 87, 177, 87, 177, 0, 60, 130, 0, 0, 0, 221, 171, 76, 179, 210, 171, 0, 60, 130, 0, 0, 0, 221, 171, 76, 179, 210, 43, 0, 60, 130, 0, 0, 0, 221, 171, 87, 177, 87, 49, 0, 60, 130, 0, 0, 0, 221, 171, 210, 171, 76, 51, 0, 60, 130, 0, 0, 0, 221, 171, 210, 43, 76, 51, 0, 60, 130, 0, 0, 0, 221, 43, 76, 51, 210, 43, 0, 60, 127, 0, 0, 0, 221, 43, 87, 49, 87, 49, 0, 60, 127, 0, 0, 0, 221, 43, 76, 51, 210, 171, 0, 60, 127, 0, 0, 0, 221, 43, 210, 43, 76, 51, 0, 60, 127, 0, 0, 0, 221, 43, 210, 171, 76, 51, 0, 60, 127, 0, 0, 0, 221, 43, 87, 177, 87, 49, 0, 60, 127, 0, 0, 0, 221, 43, 76, 179, 210, 43, 0, 60, 127, 0, 0, 0, 221, 43, 76, 179, 210, 171, 0, 60, 127, 0, 0, 0, 221, 43, 87, 177, 87, 177, 0, 60, 127, 0, 0, 0, 221, 43, 210, 171, 76, 179, 0, 60, 127, 0, 0, 0, 221, 43, 210, 43, 76, 179, 0, 60, 127, 0, 0, 0, 221, 43, 87, 49, 87, 177, 0, 60, 127, 0, 0, 0, 221, 171, 87, 177, 87, 177, 0, 60, 0, 193, 147, 0, 221, 171, 210, 171, 76, 179, 0, 60, 0, 193, 147, 0, 221, 43, 210, 171, 76, 179, 0, 60, 0, 193, 147, 0, 221, 43, 87, 177, 87, 177, 0, 60, 0, 193, 147, 0, 221, 171, 210, 43, 76, 51, 0, 60, 0, 0, 126, 0, 221, 171, 210, 171, 76, 51, 0, 60, 0, 0, 126, 0, 221, 43, 210, 171, 76, 51, 0, 60, 0, 0, 126, 0, 221, 43, 210, 43, 76, 51, 0, 60, 0, 0, 126, 0, 221, 171, 210, 171, 76, 179, 0, 60, 0, 0, 129, 0, 221, 171, 210, 43, 76, 179, 0, 60, 0, 0, 129, 0, 221, 43, 210, 43, 76, 179, 0, 60, 0, 0, 129, 0, 221, 43, 210, 171, 76, 179, 0, 60, 0, 0, 129, 0, 221, 171, 210, 171, 76, 51, 0, 60, 0, 193, 109, 0, 221, 171, 87, 177, 87, 49, 0, 60, 0, 193, 109, 0, 221, 43, 87, 177, 87, 49, 0, 60, 0, 193, 109, 0, 221, 43, 210, 171, 76, 51, 0, 60, 0, 193, 109, 0, 221, 171, 210, 43, 76, 179, 0, 60, 0, 63, 147, 0, 221, 171, 87, 49, 87, 177, 0, 60, 0, 63, 147, 0, 221, 43, 87, 49, 87, 177, 0, 60, 0, 63, 147, 0, 221, 43, 210, 43, 76, 179, 0, 60, 0, 63, 147, 0, 221, 171, 87, 177, 87, 49, 0, 60, 0, 147, 63, 0, 221, 171, 76, 179, 210, 43, 0, 60, 0, 147, 63, 0, 221, 43, 76, 179, 210, 43, 0, 60, 0, 147, 63, 0, 221, 43, 87, 177, 87, 49, 0, 60, 0, 147, 63, 0, 221, 171, 87, 49, 87, 177, 0, 60, 0, 109, 193, 0, 221, 171, 76, 51, 210, 171, 0, 60, 0, 109, 193, 0, 221, 43, 76, 51, 210, 171, 0, 60, 0, 109, 193, 0, 221, 43, 87, 49, 87, 177, 0, 60, 0, 109, 193, 0, 221, 171, 76, 179, 210, 43, 0, 60, 0, 130, 0, 0, 221, 171, 76, 179, 210, 171, 0, 60, 0, 130, 0, 0, 221, 43, 76, 179, 210, 171, 0, 60, 0, 130, 0, 0, 221, 43, 76, 179, 210, 43, 0, 60, 0, 130, 0, 0, 221, 171, 76, 51, 210, 43, 0, 60, 0, 109, 63, 0, 221, 171, 87, 49, 87, 49, 0, 60, 0, 109, 63, 0, 221, 43, 87, 49, 87, 49, 0, 60, 0, 109, 63, 0, 221, 43, 76, 51, 210, 43, 0, 60, 0, 109, 63, 0, 221, 171, 76, 51, 210, 171, 0, 60, 0, 127, 0, 0, 221, 171, 76, 51, 210, 43, 0, 60, 0, 127, 0, 0, 221, 43, 76, 51, 210, 43, 0, 60, 0, 127, 0, 0, 221, 43, 76, 51, 210, 171, 0, 60, 0, 127, 0, 0, 221, 171, 76, 179, 210, 171, 0, 60, 0, 147, 193, 0, 221, 171, 87, 177, 87, 177, 0, 60, 0, 147, 193, 0, 221, 43, 87, 177, 87, 177, 0, 60, 0, 147, 193, 0, 221, 43, 76, 179, 210, 171, 0, 60, 0, 147, 193, 0, 221, 171, 87, 49, 87, 49, 0, 60, 0, 63, 109, 0, 221, 171, 210, 43, 76, 51, 0, 60, 0, 63, 109, 0, 221, 43, 210, 43, 76, 51, 0, 60, 0, 63, 109, 0, 221, 43, 87, 49, 87, 49, 0, 60, 0, 63, 109, 0), -"array_index_data": PackedByteArray(0, 0, 2, 0, 1, 0, 1, 0, 4, 0, 3, 0, 4, 0, 6, 0, 5, 0, 6, 0, 8, 0, 7, 0, 8, 0, 10, 0, 9, 0, 10, 0, 2, 0, 11, 0, 1, 0, 2, 0, 4, 0, 4, 0, 8, 0, 6, 0, 8, 0, 2, 0, 10, 0, 4, 0, 2, 0, 8, 0, 12, 0, 14, 0, 13, 0, 13, 0, 16, 0, 15, 0, 16, 0, 18, 0, 17, 0, 18, 0, 20, 0, 19, 0, 20, 0, 22, 0, 21, 0, 22, 0, 14, 0, 23, 0, 13, 0, 14, 0, 16, 0, 16, 0, 20, 0, 18, 0, 20, 0, 14, 0, 22, 0, 16, 0, 14, 0, 20, 0, 24, 0, 26, 0, 25, 0, 24, 0, 27, 0, 26, 0, 28, 0, 30, 0, 29, 0, 28, 0, 31, 0, 30, 0, 32, 0, 34, 0, 33, 0, 32, 0, 35, 0, 34, 0, 36, 0, 38, 0, 37, 0, 36, 0, 39, 0, 38, 0, 40, 0, 42, 0, 41, 0, 40, 0, 43, 0, 42, 0, 44, 0, 46, 0, 45, 0, 44, 0, 47, 0, 46, 0, 48, 0, 50, 0, 49, 0, 48, 0, 51, 0, 50, 0, 52, 0, 54, 0, 53, 0, 52, 0, 55, 0, 54, 0, 56, 0, 58, 0, 57, 0, 56, 0, 59, 0, 58, 0, 60, 0, 62, 0, 61, 0, 60, 0, 63, 0, 62, 0, 64, 0, 66, 0, 65, 0, 64, 0, 67, 0, 66, 0, 68, 0, 70, 0, 69, 0, 68, 0, 71, 0, 70, 0), -"blend_shape_data": [], -"format": 98051, +"format": 4099, "index_count": 132, -"material": ExtResource( 1 ), +"index_data": PackedByteArray(0, 0, 2, 0, 1, 0, 1, 0, 4, 0, 3, 0, 4, 0, 6, 0, 5, 0, 6, 0, 8, 0, 7, 0, 8, 0, 10, 0, 9, 0, 10, 0, 2, 0, 11, 0, 1, 0, 2, 0, 4, 0, 4, 0, 8, 0, 6, 0, 8, 0, 2, 0, 10, 0, 4, 0, 2, 0, 8, 0, 12, 0, 14, 0, 13, 0, 13, 0, 16, 0, 15, 0, 16, 0, 18, 0, 17, 0, 18, 0, 20, 0, 19, 0, 20, 0, 22, 0, 21, 0, 22, 0, 14, 0, 23, 0, 13, 0, 14, 0, 16, 0, 16, 0, 20, 0, 18, 0, 20, 0, 14, 0, 22, 0, 16, 0, 14, 0, 20, 0, 24, 0, 26, 0, 25, 0, 24, 0, 27, 0, 26, 0, 28, 0, 30, 0, 29, 0, 28, 0, 31, 0, 30, 0, 32, 0, 34, 0, 33, 0, 32, 0, 35, 0, 34, 0, 36, 0, 38, 0, 37, 0, 36, 0, 39, 0, 38, 0, 40, 0, 42, 0, 41, 0, 40, 0, 43, 0, 42, 0, 44, 0, 46, 0, 45, 0, 44, 0, 47, 0, 46, 0, 48, 0, 50, 0, 49, 0, 48, 0, 51, 0, 50, 0, 52, 0, 54, 0, 53, 0, 52, 0, 55, 0, 54, 0, 56, 0, 58, 0, 57, 0, 56, 0, 59, 0, 58, 0, 60, 0, 62, 0, 61, 0, 60, 0, 63, 0, 62, 0, 64, 0, 66, 0, 65, 0, 64, 0, 67, 0, 66, 0, 68, 0, 70, 0, 69, 0, 68, 0, 71, 0, 70, 0), +"material": ExtResource( "1" ), "name": "Material.001", -"primitive": 4, -"skeleton_aabb": [], -"vertex_count": 72 -} +"primitive": 3, +"vertex_count": 72, +"vertex_data": PackedByteArray(0, 160, 123, 189, 0, 128, 105, 62, 0, 64, 122, 61, 0, 0, 0, 0, 0, 160, 123, 189, 0, 128, 105, 62, 0, 64, 122, 189, 0, 0, 0, 0, 0, 160, 123, 189, 0, 224, 42, 62, 0, 224, 42, 62, 0, 0, 0, 0, 0, 160, 123, 189, 0, 224, 42, 62, 0, 224, 42, 190, 0, 0, 0, 0, 0, 160, 123, 189, 0, 64, 122, 61, 0, 128, 105, 190, 0, 0, 0, 0, 0, 160, 123, 189, 0, 64, 122, 189, 0, 128, 105, 190, 0, 0, 0, 0, 0, 160, 123, 189, 0, 224, 42, 190, 0, 224, 42, 190, 0, 0, 0, 0, 0, 160, 123, 189, 0, 128, 105, 190, 0, 64, 122, 189, 0, 0, 0, 0, 0, 160, 123, 189, 0, 128, 105, 190, 0, 64, 122, 61, 0, 0, 0, 0, 0, 160, 123, 189, 0, 224, 42, 190, 0, 224, 42, 62, 0, 0, 0, 0, 0, 160, 123, 189, 0, 64, 122, 189, 0, 128, 105, 62, 0, 0, 0, 0, 0, 160, 123, 189, 0, 64, 122, 61, 0, 128, 105, 62, 0, 0, 0, 0, 0, 160, 123, 61, 0, 128, 105, 62, 0, 64, 122, 61, 254, 3, 0, 0, 0, 160, 123, 61, 0, 224, 42, 62, 0, 224, 42, 62, 254, 3, 0, 0, 0, 160, 123, 61, 0, 128, 105, 62, 0, 64, 122, 189, 254, 3, 0, 0, 0, 160, 123, 61, 0, 64, 122, 61, 0, 128, 105, 62, 254, 3, 0, 0, 0, 160, 123, 61, 0, 64, 122, 189, 0, 128, 105, 62, 254, 3, 0, 0, 0, 160, 123, 61, 0, 224, 42, 190, 0, 224, 42, 62, 254, 3, 0, 0, 0, 160, 123, 61, 0, 128, 105, 190, 0, 64, 122, 61, 254, 3, 0, 0, 0, 160, 123, 61, 0, 128, 105, 190, 0, 64, 122, 189, 254, 3, 0, 0, 0, 160, 123, 61, 0, 224, 42, 190, 0, 224, 42, 190, 254, 3, 0, 0, 0, 160, 123, 61, 0, 64, 122, 189, 0, 128, 105, 190, 254, 3, 0, 0, 0, 160, 123, 61, 0, 64, 122, 61, 0, 128, 105, 190, 254, 3, 0, 0, 0, 160, 123, 61, 0, 224, 42, 62, 0, 224, 42, 190, 254, 3, 0, 0, 0, 160, 123, 189, 0, 224, 42, 190, 0, 224, 42, 190, 0, 0, 0, 0, 0, 160, 123, 189, 0, 64, 122, 189, 0, 128, 105, 190, 0, 0, 0, 0, 0, 160, 123, 61, 0, 64, 122, 189, 0, 128, 105, 190, 0, 0, 0, 0, 0, 160, 123, 61, 0, 224, 42, 190, 0, 224, 42, 190, 0, 0, 0, 0, 0, 160, 123, 189, 0, 64, 122, 61, 0, 128, 105, 62, 0, 0, 96, 63, 0, 160, 123, 189, 0, 64, 122, 189, 0, 128, 105, 62, 0, 0, 96, 63, 0, 160, 123, 61, 0, 64, 122, 189, 0, 128, 105, 62, 0, 0, 96, 63, 0, 160, 123, 61, 0, 64, 122, 61, 0, 128, 105, 62, 0, 0, 96, 63, 0, 160, 123, 189, 0, 64, 122, 189, 0, 128, 105, 190, 0, 0, 0, 0, 0, 160, 123, 189, 0, 64, 122, 61, 0, 128, 105, 190, 0, 0, 0, 0, 0, 160, 123, 61, 0, 64, 122, 61, 0, 128, 105, 190, 0, 0, 0, 0, 0, 160, 123, 61, 0, 64, 122, 189, 0, 128, 105, 190, 0, 0, 0, 0, 0, 160, 123, 189, 0, 64, 122, 189, 0, 128, 105, 62, 0, 0, 224, 54, 0, 160, 123, 189, 0, 224, 42, 190, 0, 224, 42, 62, 0, 0, 224, 54, 0, 160, 123, 61, 0, 224, 42, 190, 0, 224, 42, 62, 0, 0, 224, 54, 0, 160, 123, 61, 0, 64, 122, 189, 0, 128, 105, 62, 0, 0, 224, 54, 0, 160, 123, 189, 0, 64, 122, 61, 0, 128, 105, 190, 0, 236, 7, 0, 0, 160, 123, 189, 0, 224, 42, 62, 0, 224, 42, 190, 0, 236, 7, 0, 0, 160, 123, 61, 0, 224, 42, 62, 0, 224, 42, 190, 0, 236, 7, 0, 0, 160, 123, 61, 0, 64, 122, 61, 0, 128, 105, 190, 0, 236, 7, 0, 0, 160, 123, 189, 0, 224, 42, 190, 0, 224, 42, 62, 0, 0, 176, 31, 0, 160, 123, 189, 0, 128, 105, 190, 0, 64, 122, 61, 0, 0, 176, 31, 0, 160, 123, 61, 0, 128, 105, 190, 0, 64, 122, 61, 0, 0, 176, 31, 0, 160, 123, 61, 0, 224, 42, 190, 0, 224, 42, 62, 0, 0, 176, 31, 0, 160, 123, 189, 0, 224, 42, 62, 0, 224, 42, 190, 0, 184, 13, 0, 0, 160, 123, 189, 0, 128, 105, 62, 0, 64, 122, 189, 0, 184, 13, 0, 0, 160, 123, 61, 0, 128, 105, 62, 0, 64, 122, 189, 0, 184, 13, 0, 0, 160, 123, 61, 0, 224, 42, 62, 0, 224, 42, 190, 0, 184, 13, 0, 0, 160, 123, 189, 0, 128, 105, 190, 0, 64, 122, 61, 0, 0, 0, 0, 0, 160, 123, 189, 0, 128, 105, 190, 0, 64, 122, 189, 0, 0, 0, 0, 0, 160, 123, 61, 0, 128, 105, 190, 0, 64, 122, 189, 0, 0, 0, 0, 0, 160, 123, 61, 0, 128, 105, 190, 0, 64, 122, 61, 0, 0, 0, 0, 0, 160, 123, 189, 0, 128, 105, 62, 0, 64, 122, 61, 0, 184, 189, 31, 0, 160, 123, 189, 0, 224, 42, 62, 0, 224, 42, 62, 0, 184, 189, 31, 0, 160, 123, 61, 0, 224, 42, 62, 0, 224, 42, 62, 0, 184, 189, 31, 0, 160, 123, 61, 0, 128, 105, 62, 0, 64, 122, 61, 0, 184, 189, 31, 0, 160, 123, 189, 0, 128, 105, 62, 0, 64, 122, 189, 0, 248, 15, 0, 0, 160, 123, 189, 0, 128, 105, 62, 0, 64, 122, 61, 0, 248, 15, 0, 0, 160, 123, 61, 0, 128, 105, 62, 0, 64, 122, 61, 0, 248, 15, 0, 0, 160, 123, 61, 0, 128, 105, 62, 0, 64, 122, 189, 0, 248, 15, 0, 0, 160, 123, 189, 0, 128, 105, 190, 0, 64, 122, 189, 0, 0, 0, 0, 0, 160, 123, 189, 0, 224, 42, 190, 0, 224, 42, 190, 0, 0, 0, 0, 0, 160, 123, 61, 0, 224, 42, 190, 0, 224, 42, 190, 0, 0, 0, 0, 0, 160, 123, 61, 0, 128, 105, 190, 0, 64, 122, 189, 0, 0, 0, 0, 0, 160, 123, 189, 0, 224, 42, 62, 0, 224, 42, 62, 0, 236, 231, 54, 0, 160, 123, 189, 0, 64, 122, 61, 0, 128, 105, 62, 0, 236, 231, 54, 0, 160, 123, 61, 0, 64, 122, 61, 0, 128, 105, 62, 0, 236, 231, 54, 0, 160, 123, 61, 0, 224, 42, 62, 0, 224, 42, 62, 0, 236, 231, 54) +}] -[sub_resource type="ArrayMesh" id=9] -surfaces/0 = { +[sub_resource type="ArrayMesh" id="9"] +_surfaces = [{ "aabb": AABB(-0.061457, -0.228035, -0.228035, 0.122924, 0.45608, 0.45607), -"array_data": PackedByteArray(221, 43, 76, 51, 210, 43, 0, 60, 127, 0, 0, 0, 221, 43, 87, 49, 87, 49, 0, 60, 127, 0, 0, 0, 221, 43, 76, 51, 210, 171, 0, 60, 127, 0, 0, 0, 221, 43, 210, 43, 76, 51, 0, 60, 127, 0, 0, 0, 221, 43, 210, 171, 76, 51, 0, 60, 127, 0, 0, 0, 221, 43, 87, 177, 87, 49, 0, 60, 127, 0, 0, 0, 221, 43, 76, 179, 210, 43, 0, 60, 127, 0, 0, 0, 221, 43, 76, 179, 210, 171, 0, 60, 127, 0, 0, 0, 221, 43, 87, 177, 87, 177, 0, 60, 127, 0, 0, 0, 221, 43, 210, 171, 76, 179, 0, 60, 127, 0, 0, 0, 221, 43, 210, 43, 76, 179, 0, 60, 127, 0, 0, 0, 221, 43, 87, 49, 87, 177, 0, 60, 127, 0, 0, 0, 221, 171, 76, 51, 210, 43, 0, 60, 130, 0, 0, 0, 221, 171, 76, 51, 210, 171, 0, 60, 130, 0, 0, 0, 221, 171, 87, 49, 87, 49, 0, 60, 130, 0, 0, 0, 221, 171, 87, 49, 87, 177, 0, 60, 130, 0, 0, 0, 221, 171, 210, 43, 76, 179, 0, 60, 130, 0, 0, 0, 221, 171, 210, 171, 76, 179, 0, 60, 130, 0, 0, 0, 221, 171, 87, 177, 87, 177, 0, 60, 130, 0, 0, 0, 221, 171, 76, 179, 210, 171, 0, 60, 130, 0, 0, 0, 221, 171, 76, 179, 210, 43, 0, 60, 130, 0, 0, 0, 221, 171, 87, 177, 87, 49, 0, 60, 130, 0, 0, 0, 221, 171, 210, 171, 76, 51, 0, 60, 130, 0, 0, 0, 221, 171, 210, 43, 76, 51, 0, 60, 130, 0, 0, 0, 221, 43, 87, 177, 87, 177, 0, 60, 0, 193, 147, 0, 221, 171, 87, 177, 87, 177, 0, 60, 0, 193, 147, 0, 221, 171, 210, 171, 76, 179, 0, 60, 0, 193, 147, 0, 221, 43, 210, 171, 76, 179, 0, 60, 0, 193, 147, 0, 221, 43, 210, 43, 76, 51, 0, 60, 0, 0, 126, 0, 221, 171, 210, 43, 76, 51, 0, 60, 0, 0, 126, 0, 221, 171, 210, 171, 76, 51, 0, 60, 0, 0, 126, 0, 221, 43, 210, 171, 76, 51, 0, 60, 0, 0, 126, 0, 221, 43, 210, 171, 76, 179, 0, 60, 0, 0, 129, 0, 221, 171, 210, 171, 76, 179, 0, 60, 0, 0, 129, 0, 221, 171, 210, 43, 76, 179, 0, 60, 0, 0, 129, 0, 221, 43, 210, 43, 76, 179, 0, 60, 0, 0, 129, 0, 221, 43, 210, 171, 76, 51, 0, 60, 0, 193, 109, 0, 221, 171, 210, 171, 76, 51, 0, 60, 0, 193, 109, 0, 221, 171, 87, 177, 87, 49, 0, 60, 0, 193, 109, 0, 221, 43, 87, 177, 87, 49, 0, 60, 0, 193, 109, 0, 221, 43, 210, 43, 76, 179, 0, 60, 0, 63, 147, 0, 221, 171, 210, 43, 76, 179, 0, 60, 0, 63, 147, 0, 221, 171, 87, 49, 87, 177, 0, 60, 0, 63, 147, 0, 221, 43, 87, 49, 87, 177, 0, 60, 0, 63, 147, 0, 221, 43, 87, 177, 87, 49, 0, 60, 0, 147, 63, 0, 221, 171, 87, 177, 87, 49, 0, 60, 0, 147, 63, 0, 221, 171, 76, 179, 210, 43, 0, 60, 0, 147, 63, 0, 221, 43, 76, 179, 210, 43, 0, 60, 0, 147, 63, 0, 221, 43, 87, 49, 87, 177, 0, 60, 0, 109, 193, 0, 221, 171, 87, 49, 87, 177, 0, 60, 0, 109, 193, 0, 221, 171, 76, 51, 210, 171, 0, 60, 0, 109, 193, 0, 221, 43, 76, 51, 210, 171, 0, 60, 0, 109, 193, 0, 221, 43, 76, 179, 210, 43, 0, 60, 0, 130, 0, 0, 221, 171, 76, 179, 210, 43, 0, 60, 0, 130, 0, 0, 221, 171, 76, 179, 210, 171, 0, 60, 0, 130, 0, 0, 221, 43, 76, 179, 210, 171, 0, 60, 0, 130, 0, 0, 221, 43, 76, 51, 210, 43, 0, 60, 0, 109, 63, 0, 221, 171, 76, 51, 210, 43, 0, 60, 0, 109, 63, 0, 221, 171, 87, 49, 87, 49, 0, 60, 0, 109, 63, 0, 221, 43, 87, 49, 87, 49, 0, 60, 0, 109, 63, 0, 221, 171, 76, 51, 210, 43, 0, 60, 0, 127, 0, 0, 221, 43, 76, 51, 210, 43, 0, 60, 0, 127, 0, 0, 221, 43, 76, 51, 210, 171, 0, 60, 0, 127, 0, 0, 221, 171, 76, 51, 210, 171, 0, 60, 0, 127, 0, 0, 221, 43, 76, 179, 210, 171, 0, 60, 0, 147, 193, 0, 221, 171, 76, 179, 210, 171, 0, 60, 0, 147, 193, 0, 221, 171, 87, 177, 87, 177, 0, 60, 0, 147, 193, 0, 221, 43, 87, 177, 87, 177, 0, 60, 0, 147, 193, 0, 221, 43, 87, 49, 87, 49, 0, 60, 0, 63, 109, 0, 221, 171, 87, 49, 87, 49, 0, 60, 0, 63, 109, 0, 221, 171, 210, 43, 76, 51, 0, 60, 0, 63, 109, 0, 221, 43, 210, 43, 76, 51, 0, 60, 0, 63, 109, 0), -"array_index_data": PackedByteArray(0, 0, 2, 0, 1, 0, 1, 0, 4, 0, 3, 0, 4, 0, 6, 0, 5, 0, 6, 0, 8, 0, 7, 0, 8, 0, 10, 0, 9, 0, 10, 0, 2, 0, 11, 0, 1, 0, 2, 0, 4, 0, 4, 0, 8, 0, 6, 0, 8, 0, 2, 0, 10, 0, 4, 0, 2, 0, 8, 0, 12, 0, 14, 0, 13, 0, 13, 0, 16, 0, 15, 0, 16, 0, 18, 0, 17, 0, 18, 0, 20, 0, 19, 0, 20, 0, 22, 0, 21, 0, 22, 0, 14, 0, 23, 0, 13, 0, 14, 0, 16, 0, 16, 0, 20, 0, 18, 0, 20, 0, 14, 0, 22, 0, 16, 0, 14, 0, 20, 0, 24, 0, 26, 0, 25, 0, 24, 0, 27, 0, 26, 0, 28, 0, 30, 0, 29, 0, 28, 0, 31, 0, 30, 0, 32, 0, 34, 0, 33, 0, 32, 0, 35, 0, 34, 0, 36, 0, 38, 0, 37, 0, 36, 0, 39, 0, 38, 0, 40, 0, 42, 0, 41, 0, 40, 0, 43, 0, 42, 0, 44, 0, 46, 0, 45, 0, 44, 0, 47, 0, 46, 0, 48, 0, 50, 0, 49, 0, 48, 0, 51, 0, 50, 0, 52, 0, 54, 0, 53, 0, 52, 0, 55, 0, 54, 0, 56, 0, 58, 0, 57, 0, 56, 0, 59, 0, 58, 0, 60, 0, 62, 0, 61, 0, 60, 0, 63, 0, 62, 0, 64, 0, 66, 0, 65, 0, 64, 0, 67, 0, 66, 0, 68, 0, 70, 0, 69, 0, 68, 0, 71, 0, 70, 0), -"blend_shape_data": [], -"format": 98051, +"format": 4099, "index_count": 132, -"material": ExtResource( 1 ), +"index_data": PackedByteArray(0, 0, 2, 0, 1, 0, 1, 0, 4, 0, 3, 0, 4, 0, 6, 0, 5, 0, 6, 0, 8, 0, 7, 0, 8, 0, 10, 0, 9, 0, 10, 0, 2, 0, 11, 0, 1, 0, 2, 0, 4, 0, 4, 0, 8, 0, 6, 0, 8, 0, 2, 0, 10, 0, 4, 0, 2, 0, 8, 0, 12, 0, 14, 0, 13, 0, 13, 0, 16, 0, 15, 0, 16, 0, 18, 0, 17, 0, 18, 0, 20, 0, 19, 0, 20, 0, 22, 0, 21, 0, 22, 0, 14, 0, 23, 0, 13, 0, 14, 0, 16, 0, 16, 0, 20, 0, 18, 0, 20, 0, 14, 0, 22, 0, 16, 0, 14, 0, 20, 0, 24, 0, 26, 0, 25, 0, 24, 0, 27, 0, 26, 0, 28, 0, 30, 0, 29, 0, 28, 0, 31, 0, 30, 0, 32, 0, 34, 0, 33, 0, 32, 0, 35, 0, 34, 0, 36, 0, 38, 0, 37, 0, 36, 0, 39, 0, 38, 0, 40, 0, 42, 0, 41, 0, 40, 0, 43, 0, 42, 0, 44, 0, 46, 0, 45, 0, 44, 0, 47, 0, 46, 0, 48, 0, 50, 0, 49, 0, 48, 0, 51, 0, 50, 0, 52, 0, 54, 0, 53, 0, 52, 0, 55, 0, 54, 0, 56, 0, 58, 0, 57, 0, 56, 0, 59, 0, 58, 0, 60, 0, 62, 0, 61, 0, 60, 0, 63, 0, 62, 0, 64, 0, 66, 0, 65, 0, 64, 0, 67, 0, 66, 0, 68, 0, 70, 0, 69, 0, 68, 0, 71, 0, 70, 0), +"material": ExtResource( "1" ), "name": "Material.001", -"primitive": 4, -"skeleton_aabb": [], -"vertex_count": 72 -} +"primitive": 3, +"vertex_count": 72, +"vertex_data": PackedByteArray(0, 160, 123, 61, 0, 128, 105, 62, 0, 64, 122, 61, 254, 3, 0, 0, 0, 160, 123, 61, 0, 224, 42, 62, 0, 224, 42, 62, 254, 3, 0, 0, 0, 160, 123, 61, 0, 128, 105, 62, 0, 64, 122, 189, 254, 3, 0, 0, 0, 160, 123, 61, 0, 64, 122, 61, 0, 128, 105, 62, 254, 3, 0, 0, 0, 160, 123, 61, 0, 64, 122, 189, 0, 128, 105, 62, 254, 3, 0, 0, 0, 160, 123, 61, 0, 224, 42, 190, 0, 224, 42, 62, 254, 3, 0, 0, 0, 160, 123, 61, 0, 128, 105, 190, 0, 64, 122, 61, 254, 3, 0, 0, 0, 160, 123, 61, 0, 128, 105, 190, 0, 64, 122, 189, 254, 3, 0, 0, 0, 160, 123, 61, 0, 224, 42, 190, 0, 224, 42, 190, 254, 3, 0, 0, 0, 160, 123, 61, 0, 64, 122, 189, 0, 128, 105, 190, 254, 3, 0, 0, 0, 160, 123, 61, 0, 64, 122, 61, 0, 128, 105, 190, 254, 3, 0, 0, 0, 160, 123, 61, 0, 224, 42, 62, 0, 224, 42, 190, 254, 3, 0, 0, 0, 160, 123, 189, 0, 128, 105, 62, 0, 64, 122, 61, 0, 0, 0, 0, 0, 160, 123, 189, 0, 128, 105, 62, 0, 64, 122, 189, 0, 0, 0, 0, 0, 160, 123, 189, 0, 224, 42, 62, 0, 224, 42, 62, 0, 0, 0, 0, 0, 160, 123, 189, 0, 224, 42, 62, 0, 224, 42, 190, 0, 0, 0, 0, 0, 160, 123, 189, 0, 64, 122, 61, 0, 128, 105, 190, 0, 0, 0, 0, 0, 160, 123, 189, 0, 64, 122, 189, 0, 128, 105, 190, 0, 0, 0, 0, 0, 160, 123, 189, 0, 224, 42, 190, 0, 224, 42, 190, 0, 0, 0, 0, 0, 160, 123, 189, 0, 128, 105, 190, 0, 64, 122, 189, 0, 0, 0, 0, 0, 160, 123, 189, 0, 128, 105, 190, 0, 64, 122, 61, 0, 0, 0, 0, 0, 160, 123, 189, 0, 224, 42, 190, 0, 224, 42, 62, 0, 0, 0, 0, 0, 160, 123, 189, 0, 64, 122, 189, 0, 128, 105, 62, 0, 0, 0, 0, 0, 160, 123, 189, 0, 64, 122, 61, 0, 128, 105, 62, 0, 0, 0, 0, 0, 160, 123, 61, 0, 224, 42, 190, 0, 224, 42, 190, 0, 0, 0, 0, 0, 160, 123, 189, 0, 224, 42, 190, 0, 224, 42, 190, 0, 0, 0, 0, 0, 160, 123, 189, 0, 64, 122, 189, 0, 128, 105, 190, 0, 0, 0, 0, 0, 160, 123, 61, 0, 64, 122, 189, 0, 128, 105, 190, 0, 0, 0, 0, 0, 160, 123, 61, 0, 64, 122, 61, 0, 128, 105, 62, 0, 0, 96, 63, 0, 160, 123, 189, 0, 64, 122, 61, 0, 128, 105, 62, 0, 0, 96, 63, 0, 160, 123, 189, 0, 64, 122, 189, 0, 128, 105, 62, 0, 0, 96, 63, 0, 160, 123, 61, 0, 64, 122, 189, 0, 128, 105, 62, 0, 0, 96, 63, 0, 160, 123, 61, 0, 64, 122, 189, 0, 128, 105, 190, 0, 0, 0, 0, 0, 160, 123, 189, 0, 64, 122, 189, 0, 128, 105, 190, 0, 0, 0, 0, 0, 160, 123, 189, 0, 64, 122, 61, 0, 128, 105, 190, 0, 0, 0, 0, 0, 160, 123, 61, 0, 64, 122, 61, 0, 128, 105, 190, 0, 0, 0, 0, 0, 160, 123, 61, 0, 64, 122, 189, 0, 128, 105, 62, 0, 0, 224, 54, 0, 160, 123, 189, 0, 64, 122, 189, 0, 128, 105, 62, 0, 0, 224, 54, 0, 160, 123, 189, 0, 224, 42, 190, 0, 224, 42, 62, 0, 0, 224, 54, 0, 160, 123, 61, 0, 224, 42, 190, 0, 224, 42, 62, 0, 0, 224, 54, 0, 160, 123, 61, 0, 64, 122, 61, 0, 128, 105, 190, 0, 236, 7, 0, 0, 160, 123, 189, 0, 64, 122, 61, 0, 128, 105, 190, 0, 236, 7, 0, 0, 160, 123, 189, 0, 224, 42, 62, 0, 224, 42, 190, 0, 236, 7, 0, 0, 160, 123, 61, 0, 224, 42, 62, 0, 224, 42, 190, 0, 236, 7, 0, 0, 160, 123, 61, 0, 224, 42, 190, 0, 224, 42, 62, 0, 0, 176, 31, 0, 160, 123, 189, 0, 224, 42, 190, 0, 224, 42, 62, 0, 0, 176, 31, 0, 160, 123, 189, 0, 128, 105, 190, 0, 64, 122, 61, 0, 0, 176, 31, 0, 160, 123, 61, 0, 128, 105, 190, 0, 64, 122, 61, 0, 0, 176, 31, 0, 160, 123, 61, 0, 224, 42, 62, 0, 224, 42, 190, 0, 184, 13, 0, 0, 160, 123, 189, 0, 224, 42, 62, 0, 224, 42, 190, 0, 184, 13, 0, 0, 160, 123, 189, 0, 128, 105, 62, 0, 64, 122, 189, 0, 184, 13, 0, 0, 160, 123, 61, 0, 128, 105, 62, 0, 64, 122, 189, 0, 184, 13, 0, 0, 160, 123, 61, 0, 128, 105, 190, 0, 64, 122, 61, 0, 0, 0, 0, 0, 160, 123, 189, 0, 128, 105, 190, 0, 64, 122, 61, 0, 0, 0, 0, 0, 160, 123, 189, 0, 128, 105, 190, 0, 64, 122, 189, 0, 0, 0, 0, 0, 160, 123, 61, 0, 128, 105, 190, 0, 64, 122, 189, 0, 0, 0, 0, 0, 160, 123, 61, 0, 128, 105, 62, 0, 64, 122, 61, 0, 184, 189, 31, 0, 160, 123, 189, 0, 128, 105, 62, 0, 64, 122, 61, 0, 184, 189, 31, 0, 160, 123, 189, 0, 224, 42, 62, 0, 224, 42, 62, 0, 184, 189, 31, 0, 160, 123, 61, 0, 224, 42, 62, 0, 224, 42, 62, 0, 184, 189, 31, 0, 160, 123, 189, 0, 128, 105, 62, 0, 64, 122, 61, 0, 248, 15, 0, 0, 160, 123, 61, 0, 128, 105, 62, 0, 64, 122, 61, 0, 248, 15, 0, 0, 160, 123, 61, 0, 128, 105, 62, 0, 64, 122, 189, 0, 248, 15, 0, 0, 160, 123, 189, 0, 128, 105, 62, 0, 64, 122, 189, 0, 248, 15, 0, 0, 160, 123, 61, 0, 128, 105, 190, 0, 64, 122, 189, 0, 0, 0, 0, 0, 160, 123, 189, 0, 128, 105, 190, 0, 64, 122, 189, 0, 0, 0, 0, 0, 160, 123, 189, 0, 224, 42, 190, 0, 224, 42, 190, 0, 0, 0, 0, 0, 160, 123, 61, 0, 224, 42, 190, 0, 224, 42, 190, 0, 0, 0, 0, 0, 160, 123, 61, 0, 224, 42, 62, 0, 224, 42, 62, 0, 236, 231, 54, 0, 160, 123, 189, 0, 224, 42, 62, 0, 224, 42, 62, 0, 236, 231, 54, 0, 160, 123, 189, 0, 64, 122, 61, 0, 128, 105, 62, 0, 236, 231, 54, 0, 160, 123, 61, 0, 64, 122, 61, 0, 128, 105, 62, 0, 236, 231, 54) +}] -[sub_resource type="ArrayMesh" id=10] -surfaces/0 = { +[sub_resource type="ArrayMesh" id="10"] +_surfaces = [{ "aabb": AABB(-0.061457, -0.228035, -0.228035, 0.122924, 0.45608, 0.45607), -"array_data": PackedByteArray(221, 43, 76, 51, 210, 43, 0, 60, 127, 0, 0, 0, 221, 43, 87, 49, 87, 49, 0, 60, 127, 0, 0, 0, 221, 43, 76, 51, 210, 171, 0, 60, 127, 0, 0, 0, 221, 43, 210, 43, 76, 51, 0, 60, 127, 0, 0, 0, 221, 43, 210, 171, 76, 51, 0, 60, 127, 0, 0, 0, 221, 43, 87, 177, 87, 49, 0, 60, 127, 0, 0, 0, 221, 43, 76, 179, 210, 43, 0, 60, 127, 0, 0, 0, 221, 43, 76, 179, 210, 171, 0, 60, 127, 0, 0, 0, 221, 43, 87, 177, 87, 177, 0, 60, 127, 0, 0, 0, 221, 43, 210, 171, 76, 179, 0, 60, 127, 0, 0, 0, 221, 43, 210, 43, 76, 179, 0, 60, 127, 0, 0, 0, 221, 43, 87, 49, 87, 177, 0, 60, 127, 0, 0, 0, 221, 171, 76, 51, 210, 43, 0, 60, 130, 0, 0, 0, 221, 171, 76, 51, 210, 171, 0, 60, 130, 0, 0, 0, 221, 171, 87, 49, 87, 49, 0, 60, 130, 0, 0, 0, 221, 171, 87, 49, 87, 177, 0, 60, 130, 0, 0, 0, 221, 171, 210, 43, 76, 179, 0, 60, 130, 0, 0, 0, 221, 171, 210, 171, 76, 179, 0, 60, 130, 0, 0, 0, 221, 171, 87, 177, 87, 177, 0, 60, 130, 0, 0, 0, 221, 171, 76, 179, 210, 171, 0, 60, 130, 0, 0, 0, 221, 171, 76, 179, 210, 43, 0, 60, 130, 0, 0, 0, 221, 171, 87, 177, 87, 49, 0, 60, 130, 0, 0, 0, 221, 171, 210, 171, 76, 51, 0, 60, 130, 0, 0, 0, 221, 171, 210, 43, 76, 51, 0, 60, 130, 0, 0, 0, 221, 43, 87, 177, 87, 177, 0, 60, 0, 193, 147, 0, 221, 171, 87, 177, 87, 177, 0, 60, 0, 193, 147, 0, 221, 171, 210, 171, 76, 179, 0, 60, 0, 193, 147, 0, 221, 43, 210, 171, 76, 179, 0, 60, 0, 193, 147, 0, 221, 43, 210, 43, 76, 51, 0, 60, 0, 0, 126, 0, 221, 171, 210, 43, 76, 51, 0, 60, 0, 0, 126, 0, 221, 171, 210, 171, 76, 51, 0, 60, 0, 0, 126, 0, 221, 43, 210, 171, 76, 51, 0, 60, 0, 0, 126, 0, 221, 43, 210, 171, 76, 179, 0, 60, 0, 0, 129, 0, 221, 171, 210, 171, 76, 179, 0, 60, 0, 0, 129, 0, 221, 171, 210, 43, 76, 179, 0, 60, 0, 0, 129, 0, 221, 43, 210, 43, 76, 179, 0, 60, 0, 0, 129, 0, 221, 43, 210, 171, 76, 51, 0, 60, 0, 193, 109, 0, 221, 171, 210, 171, 76, 51, 0, 60, 0, 193, 109, 0, 221, 171, 87, 177, 87, 49, 0, 60, 0, 193, 109, 0, 221, 43, 87, 177, 87, 49, 0, 60, 0, 193, 109, 0, 221, 43, 210, 43, 76, 179, 0, 60, 0, 63, 147, 0, 221, 171, 210, 43, 76, 179, 0, 60, 0, 63, 147, 0, 221, 171, 87, 49, 87, 177, 0, 60, 0, 63, 147, 0, 221, 43, 87, 49, 87, 177, 0, 60, 0, 63, 147, 0, 221, 43, 87, 177, 87, 49, 0, 60, 0, 147, 63, 0, 221, 171, 87, 177, 87, 49, 0, 60, 0, 147, 63, 0, 221, 171, 76, 179, 210, 43, 0, 60, 0, 147, 63, 0, 221, 43, 76, 179, 210, 43, 0, 60, 0, 147, 63, 0, 221, 43, 87, 49, 87, 177, 0, 60, 0, 109, 193, 0, 221, 171, 87, 49, 87, 177, 0, 60, 0, 109, 193, 0, 221, 171, 76, 51, 210, 171, 0, 60, 0, 109, 193, 0, 221, 43, 76, 51, 210, 171, 0, 60, 0, 109, 193, 0, 221, 43, 76, 179, 210, 43, 0, 60, 0, 130, 0, 0, 221, 171, 76, 179, 210, 43, 0, 60, 0, 130, 0, 0, 221, 171, 76, 179, 210, 171, 0, 60, 0, 130, 0, 0, 221, 43, 76, 179, 210, 171, 0, 60, 0, 130, 0, 0, 221, 43, 76, 51, 210, 43, 0, 60, 0, 109, 63, 0, 221, 171, 76, 51, 210, 43, 0, 60, 0, 109, 63, 0, 221, 171, 87, 49, 87, 49, 0, 60, 0, 109, 63, 0, 221, 43, 87, 49, 87, 49, 0, 60, 0, 109, 63, 0, 221, 171, 76, 51, 210, 43, 0, 60, 0, 127, 0, 0, 221, 43, 76, 51, 210, 43, 0, 60, 0, 127, 0, 0, 221, 43, 76, 51, 210, 171, 0, 60, 0, 127, 0, 0, 221, 171, 76, 51, 210, 171, 0, 60, 0, 127, 0, 0, 221, 43, 76, 179, 210, 171, 0, 60, 0, 147, 193, 0, 221, 171, 76, 179, 210, 171, 0, 60, 0, 147, 193, 0, 221, 171, 87, 177, 87, 177, 0, 60, 0, 147, 193, 0, 221, 43, 87, 177, 87, 177, 0, 60, 0, 147, 193, 0, 221, 43, 87, 49, 87, 49, 0, 60, 0, 63, 109, 0, 221, 171, 87, 49, 87, 49, 0, 60, 0, 63, 109, 0, 221, 171, 210, 43, 76, 51, 0, 60, 0, 63, 109, 0, 221, 43, 210, 43, 76, 51, 0, 60, 0, 63, 109, 0), -"array_index_data": PackedByteArray(0, 0, 2, 0, 1, 0, 1, 0, 4, 0, 3, 0, 4, 0, 6, 0, 5, 0, 6, 0, 8, 0, 7, 0, 8, 0, 10, 0, 9, 0, 10, 0, 2, 0, 11, 0, 1, 0, 2, 0, 4, 0, 4, 0, 8, 0, 6, 0, 8, 0, 2, 0, 10, 0, 4, 0, 2, 0, 8, 0, 12, 0, 14, 0, 13, 0, 13, 0, 16, 0, 15, 0, 16, 0, 18, 0, 17, 0, 18, 0, 20, 0, 19, 0, 20, 0, 22, 0, 21, 0, 22, 0, 14, 0, 23, 0, 13, 0, 14, 0, 16, 0, 16, 0, 20, 0, 18, 0, 20, 0, 14, 0, 22, 0, 16, 0, 14, 0, 20, 0, 24, 0, 26, 0, 25, 0, 24, 0, 27, 0, 26, 0, 28, 0, 30, 0, 29, 0, 28, 0, 31, 0, 30, 0, 32, 0, 34, 0, 33, 0, 32, 0, 35, 0, 34, 0, 36, 0, 38, 0, 37, 0, 36, 0, 39, 0, 38, 0, 40, 0, 42, 0, 41, 0, 40, 0, 43, 0, 42, 0, 44, 0, 46, 0, 45, 0, 44, 0, 47, 0, 46, 0, 48, 0, 50, 0, 49, 0, 48, 0, 51, 0, 50, 0, 52, 0, 54, 0, 53, 0, 52, 0, 55, 0, 54, 0, 56, 0, 58, 0, 57, 0, 56, 0, 59, 0, 58, 0, 60, 0, 62, 0, 61, 0, 60, 0, 63, 0, 62, 0, 64, 0, 66, 0, 65, 0, 64, 0, 67, 0, 66, 0, 68, 0, 70, 0, 69, 0, 68, 0, 71, 0, 70, 0), -"blend_shape_data": [], -"format": 98051, +"format": 4099, "index_count": 132, -"material": ExtResource( 1 ), +"index_data": PackedByteArray(0, 0, 2, 0, 1, 0, 1, 0, 4, 0, 3, 0, 4, 0, 6, 0, 5, 0, 6, 0, 8, 0, 7, 0, 8, 0, 10, 0, 9, 0, 10, 0, 2, 0, 11, 0, 1, 0, 2, 0, 4, 0, 4, 0, 8, 0, 6, 0, 8, 0, 2, 0, 10, 0, 4, 0, 2, 0, 8, 0, 12, 0, 14, 0, 13, 0, 13, 0, 16, 0, 15, 0, 16, 0, 18, 0, 17, 0, 18, 0, 20, 0, 19, 0, 20, 0, 22, 0, 21, 0, 22, 0, 14, 0, 23, 0, 13, 0, 14, 0, 16, 0, 16, 0, 20, 0, 18, 0, 20, 0, 14, 0, 22, 0, 16, 0, 14, 0, 20, 0, 24, 0, 26, 0, 25, 0, 24, 0, 27, 0, 26, 0, 28, 0, 30, 0, 29, 0, 28, 0, 31, 0, 30, 0, 32, 0, 34, 0, 33, 0, 32, 0, 35, 0, 34, 0, 36, 0, 38, 0, 37, 0, 36, 0, 39, 0, 38, 0, 40, 0, 42, 0, 41, 0, 40, 0, 43, 0, 42, 0, 44, 0, 46, 0, 45, 0, 44, 0, 47, 0, 46, 0, 48, 0, 50, 0, 49, 0, 48, 0, 51, 0, 50, 0, 52, 0, 54, 0, 53, 0, 52, 0, 55, 0, 54, 0, 56, 0, 58, 0, 57, 0, 56, 0, 59, 0, 58, 0, 60, 0, 62, 0, 61, 0, 60, 0, 63, 0, 62, 0, 64, 0, 66, 0, 65, 0, 64, 0, 67, 0, 66, 0, 68, 0, 70, 0, 69, 0, 68, 0, 71, 0, 70, 0), +"material": ExtResource( "1" ), "name": "Material.001", -"primitive": 4, -"skeleton_aabb": [], -"vertex_count": 72 -} +"primitive": 3, +"vertex_count": 72, +"vertex_data": PackedByteArray(0, 160, 123, 61, 0, 128, 105, 62, 0, 64, 122, 61, 254, 3, 0, 0, 0, 160, 123, 61, 0, 224, 42, 62, 0, 224, 42, 62, 254, 3, 0, 0, 0, 160, 123, 61, 0, 128, 105, 62, 0, 64, 122, 189, 254, 3, 0, 0, 0, 160, 123, 61, 0, 64, 122, 61, 0, 128, 105, 62, 254, 3, 0, 0, 0, 160, 123, 61, 0, 64, 122, 189, 0, 128, 105, 62, 254, 3, 0, 0, 0, 160, 123, 61, 0, 224, 42, 190, 0, 224, 42, 62, 254, 3, 0, 0, 0, 160, 123, 61, 0, 128, 105, 190, 0, 64, 122, 61, 254, 3, 0, 0, 0, 160, 123, 61, 0, 128, 105, 190, 0, 64, 122, 189, 254, 3, 0, 0, 0, 160, 123, 61, 0, 224, 42, 190, 0, 224, 42, 190, 254, 3, 0, 0, 0, 160, 123, 61, 0, 64, 122, 189, 0, 128, 105, 190, 254, 3, 0, 0, 0, 160, 123, 61, 0, 64, 122, 61, 0, 128, 105, 190, 254, 3, 0, 0, 0, 160, 123, 61, 0, 224, 42, 62, 0, 224, 42, 190, 254, 3, 0, 0, 0, 160, 123, 189, 0, 128, 105, 62, 0, 64, 122, 61, 0, 0, 0, 0, 0, 160, 123, 189, 0, 128, 105, 62, 0, 64, 122, 189, 0, 0, 0, 0, 0, 160, 123, 189, 0, 224, 42, 62, 0, 224, 42, 62, 0, 0, 0, 0, 0, 160, 123, 189, 0, 224, 42, 62, 0, 224, 42, 190, 0, 0, 0, 0, 0, 160, 123, 189, 0, 64, 122, 61, 0, 128, 105, 190, 0, 0, 0, 0, 0, 160, 123, 189, 0, 64, 122, 189, 0, 128, 105, 190, 0, 0, 0, 0, 0, 160, 123, 189, 0, 224, 42, 190, 0, 224, 42, 190, 0, 0, 0, 0, 0, 160, 123, 189, 0, 128, 105, 190, 0, 64, 122, 189, 0, 0, 0, 0, 0, 160, 123, 189, 0, 128, 105, 190, 0, 64, 122, 61, 0, 0, 0, 0, 0, 160, 123, 189, 0, 224, 42, 190, 0, 224, 42, 62, 0, 0, 0, 0, 0, 160, 123, 189, 0, 64, 122, 189, 0, 128, 105, 62, 0, 0, 0, 0, 0, 160, 123, 189, 0, 64, 122, 61, 0, 128, 105, 62, 0, 0, 0, 0, 0, 160, 123, 61, 0, 224, 42, 190, 0, 224, 42, 190, 0, 0, 0, 0, 0, 160, 123, 189, 0, 224, 42, 190, 0, 224, 42, 190, 0, 0, 0, 0, 0, 160, 123, 189, 0, 64, 122, 189, 0, 128, 105, 190, 0, 0, 0, 0, 0, 160, 123, 61, 0, 64, 122, 189, 0, 128, 105, 190, 0, 0, 0, 0, 0, 160, 123, 61, 0, 64, 122, 61, 0, 128, 105, 62, 0, 0, 96, 63, 0, 160, 123, 189, 0, 64, 122, 61, 0, 128, 105, 62, 0, 0, 96, 63, 0, 160, 123, 189, 0, 64, 122, 189, 0, 128, 105, 62, 0, 0, 96, 63, 0, 160, 123, 61, 0, 64, 122, 189, 0, 128, 105, 62, 0, 0, 96, 63, 0, 160, 123, 61, 0, 64, 122, 189, 0, 128, 105, 190, 0, 0, 0, 0, 0, 160, 123, 189, 0, 64, 122, 189, 0, 128, 105, 190, 0, 0, 0, 0, 0, 160, 123, 189, 0, 64, 122, 61, 0, 128, 105, 190, 0, 0, 0, 0, 0, 160, 123, 61, 0, 64, 122, 61, 0, 128, 105, 190, 0, 0, 0, 0, 0, 160, 123, 61, 0, 64, 122, 189, 0, 128, 105, 62, 0, 0, 224, 54, 0, 160, 123, 189, 0, 64, 122, 189, 0, 128, 105, 62, 0, 0, 224, 54, 0, 160, 123, 189, 0, 224, 42, 190, 0, 224, 42, 62, 0, 0, 224, 54, 0, 160, 123, 61, 0, 224, 42, 190, 0, 224, 42, 62, 0, 0, 224, 54, 0, 160, 123, 61, 0, 64, 122, 61, 0, 128, 105, 190, 0, 236, 7, 0, 0, 160, 123, 189, 0, 64, 122, 61, 0, 128, 105, 190, 0, 236, 7, 0, 0, 160, 123, 189, 0, 224, 42, 62, 0, 224, 42, 190, 0, 236, 7, 0, 0, 160, 123, 61, 0, 224, 42, 62, 0, 224, 42, 190, 0, 236, 7, 0, 0, 160, 123, 61, 0, 224, 42, 190, 0, 224, 42, 62, 0, 0, 176, 31, 0, 160, 123, 189, 0, 224, 42, 190, 0, 224, 42, 62, 0, 0, 176, 31, 0, 160, 123, 189, 0, 128, 105, 190, 0, 64, 122, 61, 0, 0, 176, 31, 0, 160, 123, 61, 0, 128, 105, 190, 0, 64, 122, 61, 0, 0, 176, 31, 0, 160, 123, 61, 0, 224, 42, 62, 0, 224, 42, 190, 0, 184, 13, 0, 0, 160, 123, 189, 0, 224, 42, 62, 0, 224, 42, 190, 0, 184, 13, 0, 0, 160, 123, 189, 0, 128, 105, 62, 0, 64, 122, 189, 0, 184, 13, 0, 0, 160, 123, 61, 0, 128, 105, 62, 0, 64, 122, 189, 0, 184, 13, 0, 0, 160, 123, 61, 0, 128, 105, 190, 0, 64, 122, 61, 0, 0, 0, 0, 0, 160, 123, 189, 0, 128, 105, 190, 0, 64, 122, 61, 0, 0, 0, 0, 0, 160, 123, 189, 0, 128, 105, 190, 0, 64, 122, 189, 0, 0, 0, 0, 0, 160, 123, 61, 0, 128, 105, 190, 0, 64, 122, 189, 0, 0, 0, 0, 0, 160, 123, 61, 0, 128, 105, 62, 0, 64, 122, 61, 0, 184, 189, 31, 0, 160, 123, 189, 0, 128, 105, 62, 0, 64, 122, 61, 0, 184, 189, 31, 0, 160, 123, 189, 0, 224, 42, 62, 0, 224, 42, 62, 0, 184, 189, 31, 0, 160, 123, 61, 0, 224, 42, 62, 0, 224, 42, 62, 0, 184, 189, 31, 0, 160, 123, 189, 0, 128, 105, 62, 0, 64, 122, 61, 0, 248, 15, 0, 0, 160, 123, 61, 0, 128, 105, 62, 0, 64, 122, 61, 0, 248, 15, 0, 0, 160, 123, 61, 0, 128, 105, 62, 0, 64, 122, 189, 0, 248, 15, 0, 0, 160, 123, 189, 0, 128, 105, 62, 0, 64, 122, 189, 0, 248, 15, 0, 0, 160, 123, 61, 0, 128, 105, 190, 0, 64, 122, 189, 0, 0, 0, 0, 0, 160, 123, 189, 0, 128, 105, 190, 0, 64, 122, 189, 0, 0, 0, 0, 0, 160, 123, 189, 0, 224, 42, 190, 0, 224, 42, 190, 0, 0, 0, 0, 0, 160, 123, 61, 0, 224, 42, 190, 0, 224, 42, 190, 0, 0, 0, 0, 0, 160, 123, 61, 0, 224, 42, 62, 0, 224, 42, 62, 0, 236, 231, 54, 0, 160, 123, 189, 0, 224, 42, 62, 0, 224, 42, 62, 0, 236, 231, 54, 0, 160, 123, 189, 0, 64, 122, 61, 0, 128, 105, 62, 0, 236, 231, 54, 0, 160, 123, 61, 0, 64, 122, 61, 0, 128, 105, 62, 0, 236, 231, 54) +}] -[sub_resource type="StandardMaterial3D" id=11] +[sub_resource type="StandardMaterial3D" id="11"] roughness = 0.0 -[sub_resource type="StandardMaterial3D" id=12] +[sub_resource type="StandardMaterial3D" id="12"] roughness = 0.0 -[sub_resource type="ArrayMesh" id=13] -surfaces/0 = { +[sub_resource type="ArrayMesh" id="13"] +_surfaces = [{ "aabb": AABB(-0.654197, 0.000773793, -1.24434, 1.30839, 1.06541, 2.67806), -"array_data": PackedByteArray(5, 56, 192, 56, 123, 53, 0, 60, 13, 125, 17, 0, 0, 0, 192, 56, 5, 55, 0, 60, 13, 125, 17, 0, 0, 0, 6, 56, 149, 61, 0, 60, 13, 125, 17, 0, 247, 51, 253, 54, 149, 61, 0, 60, 13, 125, 17, 0, 5, 56, 86, 18, 250, 188, 0, 60, 0, 27, 132, 0, 0, 0, 86, 18, 250, 188, 0, 60, 0, 27, 132, 0, 0, 0, 8, 53, 179, 188, 0, 60, 0, 27, 132, 0, 5, 56, 8, 53, 179, 188, 0, 60, 0, 27, 132, 0, 0, 0, 86, 18, 20, 181, 0, 60, 0, 130, 0, 0, 0, 0, 86, 18, 250, 188, 0, 60, 0, 130, 0, 0, 5, 56, 86, 18, 20, 181, 0, 60, 0, 130, 0, 0, 5, 56, 86, 18, 250, 188, 0, 60, 0, 130, 0, 0, 5, 56, 86, 18, 81, 188, 0, 60, 0, 130, 0, 0, 5, 56, 86, 18, 81, 188, 0, 60, 0, 0, 0, 0, 5, 56, 86, 18, 224, 183, 0, 60, 0, 0, 0, 0, 5, 56, 86, 18, 20, 181, 0, 60, 0, 0, 0, 0, 5, 56, 47, 60, 21, 50, 0, 60, 5, 126, 0, 0, 5, 56, 47, 60, 20, 181, 0, 60, 5, 126, 0, 0, 0, 0, 67, 60, 20, 181, 0, 60, 5, 126, 0, 0, 0, 0, 67, 60, 148, 52, 0, 60, 5, 126, 0, 0, 0, 0, 86, 18, 123, 53, 0, 60, 0, 130, 0, 0, 5, 56, 86, 18, 123, 53, 0, 60, 0, 130, 0, 0, 247, 51, 86, 18, 188, 61, 0, 60, 0, 130, 0, 0, 0, 0, 86, 18, 188, 61, 0, 60, 0, 130, 0, 0, 5, 56, 192, 56, 123, 53, 0, 60, 123, 5, 30, 0, 247, 51, 253, 54, 149, 61, 0, 60, 123, 5, 30, 0, 175, 52, 242, 52, 255, 60, 0, 60, 123, 5, 30, 0, 209, 53, 242, 52, 158, 59, 0, 60, 123, 5, 30, 0, 5, 56, 86, 18, 123, 53, 0, 60, 123, 0, 28, 0, 5, 56, 192, 56, 123, 53, 0, 60, 123, 0, 28, 0, 209, 53, 242, 52, 158, 59, 0, 60, 123, 0, 28, 0, 247, 51, 253, 54, 149, 61, 0, 60, 122, 2, 33, 0, 247, 51, 86, 18, 188, 61, 0, 60, 122, 2, 33, 0, 175, 52, 242, 52, 255, 60, 0, 60, 122, 2, 33, 0, 5, 56, 86, 18, 250, 188, 0, 60, 127, 0, 0, 0, 5, 56, 8, 53, 179, 188, 0, 60, 127, 0, 0, 0, 5, 56, 10, 53, 161, 187, 0, 60, 127, 0, 0, 0, 5, 56, 86, 18, 81, 188, 0, 60, 127, 0, 0, 0, 0, 0, 8, 53, 179, 188, 0, 60, 0, 127, 0, 0, 5, 184, 8, 53, 179, 188, 0, 60, 0, 127, 0, 0, 5, 184, 10, 53, 161, 187, 0, 60, 0, 127, 0, 0, 5, 56, 192, 56, 20, 181, 0, 60, 127, 0, 0, 0, 5, 56, 192, 56, 123, 53, 0, 60, 127, 0, 0, 0, 5, 56, 5, 53, 20, 181, 0, 60, 127, 0, 0, 0, 5, 56, 86, 18, 123, 53, 0, 60, 127, 0, 0, 0, 5, 56, 86, 18, 20, 181, 0, 60, 127, 0, 0, 0, 5, 56, 10, 53, 242, 184, 0, 60, 12, 52, 115, 0, 5, 56, 86, 18, 224, 183, 0, 60, 12, 52, 115, 0, 59, 57, 86, 18, 224, 183, 0, 60, 12, 52, 115, 0, 59, 57, 123, 52, 20, 185, 0, 60, 12, 52, 115, 0, 5, 56, 86, 18, 123, 53, 0, 60, 10, 114, 204, 0, 209, 53, 242, 52, 158, 59, 0, 60, 10, 114, 204, 0, 59, 57, 99, 52, 188, 59, 0, 60, 10, 114, 204, 0, 59, 57, 86, 18, 123, 53, 0, 60, 10, 114, 204, 0, 5, 56, 8, 53, 179, 188, 0, 60, 0, 127, 0, 0, 5, 56, 10, 53, 161, 187, 0, 60, 0, 127, 0, 0, 5, 56, 86, 18, 81, 188, 0, 60, 12, 52, 141, 0, 5, 56, 10, 53, 161, 187, 0, 60, 12, 52, 141, 0, 59, 57, 123, 52, 127, 187, 0, 60, 12, 52, 141, 0, 59, 57, 86, 18, 81, 188, 0, 60, 12, 52, 141, 0, 209, 53, 242, 52, 158, 59, 0, 60, 13, 126, 1, 0, 175, 52, 242, 52, 255, 60, 0, 60, 13, 126, 1, 0, 59, 57, 99, 52, 240, 60, 0, 60, 13, 126, 1, 0, 59, 57, 99, 52, 188, 59, 0, 60, 13, 126, 1, 0, 5, 56, 86, 18, 20, 181, 0, 60, 0, 127, 0, 0, 5, 56, 86, 18, 123, 53, 0, 60, 0, 127, 0, 0, 59, 57, 86, 18, 123, 53, 0, 60, 0, 127, 0, 0, 59, 57, 86, 18, 20, 181, 0, 60, 0, 127, 0, 0, 5, 56, 10, 53, 161, 187, 0, 60, 28, 123, 0, 0, 5, 56, 10, 53, 242, 184, 0, 60, 28, 123, 0, 0, 59, 57, 123, 52, 20, 185, 0, 60, 28, 123, 0, 0, 59, 57, 123, 52, 127, 187, 0, 60, 28, 123, 0, 0, 5, 56, 86, 18, 224, 183, 0, 60, 0, 127, 0, 0, 59, 57, 86, 18, 224, 183, 0, 60, 0, 127, 0, 0, 175, 52, 242, 52, 255, 60, 0, 60, 10, 63, 109, 0, 247, 51, 86, 18, 188, 61, 0, 60, 10, 63, 109, 0, 172, 54, 79, 47, 103, 61, 0, 60, 10, 63, 109, 0, 233, 54, 9, 50, 58, 61, 0, 60, 10, 63, 109, 0, 59, 57, 99, 52, 240, 60, 0, 60, 10, 63, 109, 0, 175, 52, 242, 52, 255, 60, 0, 60, 10, 63, 109, 0, 233, 54, 9, 50, 58, 61, 0, 60, 10, 63, 109, 0, 40, 56, 222, 49, 52, 61, 0, 60, 10, 63, 109, 0, 247, 51, 86, 18, 188, 61, 0, 60, 0, 74, 102, 0, 59, 57, 86, 18, 188, 61, 0, 60, 0, 74, 102, 0, 38, 56, 28, 47, 105, 61, 0, 60, 0, 74, 102, 0, 172, 54, 79, 47, 103, 61, 0, 60, 0, 74, 102, 0, 59, 57, 99, 52, 240, 60, 0, 60, 0, 74, 102, 0, 40, 56, 222, 49, 52, 61, 0, 60, 0, 74, 102, 0, 38, 56, 28, 47, 105, 61, 0, 60, 127, 255, 0, 0, 40, 56, 222, 49, 52, 61, 0, 60, 127, 255, 0, 0, 40, 56, 195, 49, 94, 61, 0, 60, 127, 255, 0, 0, 38, 56, 89, 47, 116, 61, 0, 60, 127, 255, 0, 0, 233, 54, 9, 50, 58, 61, 0, 60, 132, 26, 0, 0, 172, 54, 79, 47, 103, 61, 0, 60, 132, 26, 0, 0, 172, 54, 135, 47, 114, 61, 0, 60, 132, 26, 0, 0, 233, 54, 233, 49, 92, 61, 0, 60, 132, 26, 0, 0, 40, 56, 222, 49, 52, 61, 0, 60, 7, 126, 11, 0, 233, 54, 9, 50, 58, 61, 0, 60, 7, 126, 11, 0, 233, 54, 233, 49, 92, 61, 0, 60, 7, 126, 11, 0, 40, 56, 195, 49, 94, 61, 0, 60, 7, 126, 11, 0, 172, 54, 79, 47, 103, 61, 0, 60, 252, 137, 41, 0, 38, 56, 28, 47, 105, 61, 0, 60, 252, 137, 41, 0, 38, 56, 89, 47, 116, 61, 0, 60, 252, 137, 41, 0, 172, 54, 135, 47, 114, 61, 0, 60, 252, 137, 41, 0, 5, 184, 192, 56, 123, 53, 0, 60, 243, 125, 17, 0, 247, 179, 253, 54, 149, 61, 0, 60, 243, 125, 17, 0, 0, 0, 6, 56, 149, 61, 0, 60, 243, 125, 17, 0, 0, 0, 192, 56, 5, 55, 0, 60, 243, 125, 17, 0, 5, 184, 86, 18, 250, 188, 0, 60, 0, 27, 132, 0, 5, 184, 8, 53, 179, 188, 0, 60, 0, 27, 132, 0, 5, 184, 86, 18, 20, 181, 0, 60, 0, 130, 0, 0, 5, 184, 86, 18, 224, 183, 0, 60, 0, 0, 0, 0, 5, 184, 86, 18, 81, 188, 0, 60, 0, 0, 0, 0, 5, 184, 86, 18, 250, 188, 0, 60, 0, 0, 0, 0, 5, 184, 86, 18, 250, 188, 0, 60, 0, 130, 0, 0, 5, 184, 86, 18, 20, 181, 0, 60, 0, 0, 0, 0, 5, 184, 47, 60, 21, 50, 0, 60, 252, 126, 0, 0, 0, 0, 67, 60, 148, 52, 0, 60, 252, 126, 0, 0, 0, 0, 67, 60, 20, 181, 0, 60, 252, 126, 0, 0, 5, 184, 47, 60, 20, 181, 0, 60, 252, 126, 0, 0, 247, 179, 86, 18, 188, 61, 0, 60, 0, 130, 0, 0, 5, 184, 86, 18, 123, 53, 0, 60, 0, 130, 0, 0, 5, 184, 192, 56, 123, 53, 0, 60, 133, 5, 30, 0, 209, 181, 242, 52, 158, 59, 0, 60, 133, 5, 30, 0, 175, 180, 242, 52, 255, 60, 0, 60, 133, 5, 30, 0, 247, 179, 253, 54, 149, 61, 0, 60, 133, 5, 30, 0, 5, 184, 86, 18, 123, 53, 0, 60, 133, 0, 28, 0, 209, 181, 242, 52, 158, 59, 0, 60, 133, 0, 28, 0, 5, 184, 192, 56, 123, 53, 0, 60, 133, 0, 28, 0, 247, 179, 253, 54, 149, 61, 0, 60, 134, 2, 33, 0, 175, 180, 242, 52, 255, 60, 0, 60, 134, 2, 33, 0, 247, 179, 86, 18, 188, 61, 0, 60, 134, 2, 33, 0, 5, 184, 86, 18, 250, 188, 0, 60, 130, 0, 0, 0, 5, 184, 86, 18, 81, 188, 0, 60, 130, 0, 0, 0, 5, 184, 10, 53, 161, 187, 0, 60, 130, 0, 0, 0, 5, 184, 8, 53, 179, 188, 0, 60, 130, 0, 0, 0, 5, 184, 5, 53, 20, 181, 0, 60, 130, 0, 0, 0, 5, 184, 10, 53, 242, 184, 0, 60, 130, 0, 0, 0, 5, 184, 86, 18, 224, 183, 0, 60, 130, 0, 0, 0, 5, 184, 86, 18, 20, 181, 0, 60, 130, 0, 0, 0, 5, 184, 192, 56, 20, 181, 0, 60, 130, 0, 0, 0, 5, 184, 192, 56, 123, 53, 0, 60, 130, 0, 0, 0, 5, 184, 86, 18, 123, 53, 0, 60, 130, 0, 0, 0, 5, 184, 10, 53, 242, 184, 0, 60, 244, 52, 115, 0, 59, 185, 123, 52, 20, 185, 0, 60, 244, 52, 115, 0, 59, 185, 86, 18, 224, 183, 0, 60, 244, 52, 115, 0, 5, 184, 86, 18, 224, 183, 0, 60, 244, 52, 115, 0, 5, 184, 86, 18, 123, 53, 0, 60, 246, 114, 204, 0, 59, 185, 86, 18, 123, 53, 0, 60, 246, 114, 204, 0, 59, 185, 99, 52, 188, 59, 0, 60, 246, 114, 204, 0, 209, 181, 242, 52, 158, 59, 0, 60, 246, 114, 204, 0, 5, 56, 86, 18, 224, 183, 0, 60, 127, 0, 0, 0, 5, 56, 10, 53, 242, 184, 0, 60, 127, 0, 0, 0, 5, 184, 86, 18, 81, 188, 0, 60, 244, 52, 141, 0, 59, 185, 86, 18, 81, 188, 0, 60, 244, 52, 141, 0, 59, 185, 123, 52, 127, 187, 0, 60, 244, 52, 141, 0, 5, 184, 10, 53, 161, 187, 0, 60, 244, 52, 141, 0, 209, 181, 242, 52, 158, 59, 0, 60, 243, 126, 1, 0, 59, 185, 99, 52, 188, 59, 0, 60, 243, 126, 1, 0, 59, 185, 99, 52, 240, 60, 0, 60, 243, 126, 1, 0, 175, 180, 242, 52, 255, 60, 0, 60, 243, 126, 1, 0, 5, 184, 86, 18, 20, 181, 0, 60, 0, 127, 0, 0, 59, 185, 86, 18, 20, 181, 0, 60, 0, 127, 0, 0, 59, 185, 86, 18, 123, 53, 0, 60, 0, 127, 0, 0, 5, 184, 86, 18, 123, 53, 0, 60, 0, 127, 0, 0, 5, 184, 10, 53, 161, 187, 0, 60, 228, 123, 0, 0, 59, 185, 123, 52, 127, 187, 0, 60, 228, 123, 0, 0, 59, 185, 123, 52, 20, 185, 0, 60, 228, 123, 0, 0, 5, 184, 10, 53, 242, 184, 0, 60, 228, 123, 0, 0, 5, 184, 86, 18, 224, 183, 0, 60, 0, 127, 0, 0, 59, 185, 86, 18, 224, 183, 0, 60, 0, 127, 0, 0, 175, 180, 242, 52, 255, 60, 0, 60, 246, 63, 109, 0, 233, 182, 9, 50, 58, 61, 0, 60, 246, 63, 109, 0, 172, 182, 79, 47, 103, 61, 0, 60, 246, 63, 109, 0, 247, 179, 86, 18, 188, 61, 0, 60, 246, 63, 109, 0, 59, 185, 99, 52, 240, 60, 0, 60, 246, 63, 109, 0, 40, 184, 222, 49, 52, 61, 0, 60, 246, 63, 109, 0, 233, 182, 9, 50, 58, 61, 0, 60, 246, 63, 109, 0, 175, 180, 242, 52, 255, 60, 0, 60, 246, 63, 109, 0, 247, 179, 86, 18, 188, 61, 0, 60, 0, 74, 102, 0, 172, 182, 79, 47, 103, 61, 0, 60, 0, 74, 102, 0, 38, 184, 28, 47, 105, 61, 0, 60, 0, 74, 102, 0, 59, 185, 86, 18, 188, 61, 0, 60, 0, 74, 102, 0, 40, 184, 222, 49, 52, 61, 0, 60, 0, 74, 102, 0, 59, 185, 99, 52, 240, 60, 0, 60, 0, 74, 102, 0, 38, 184, 28, 47, 105, 61, 0, 60, 130, 255, 0, 0, 38, 184, 89, 47, 116, 61, 0, 60, 130, 255, 0, 0, 40, 184, 195, 49, 94, 61, 0, 60, 130, 255, 0, 0, 40, 184, 222, 49, 52, 61, 0, 60, 130, 255, 0, 0, 233, 182, 9, 50, 58, 61, 0, 60, 124, 26, 0, 0, 233, 182, 233, 49, 92, 61, 0, 60, 124, 26, 0, 0, 172, 182, 135, 47, 114, 61, 0, 60, 124, 26, 0, 0, 172, 182, 79, 47, 103, 61, 0, 60, 124, 26, 0, 0, 40, 184, 222, 49, 52, 61, 0, 60, 249, 126, 11, 0, 40, 184, 195, 49, 94, 61, 0, 60, 249, 126, 11, 0, 233, 182, 233, 49, 92, 61, 0, 60, 249, 126, 11, 0, 233, 182, 9, 50, 58, 61, 0, 60, 249, 126, 11, 0, 172, 182, 79, 47, 103, 61, 0, 60, 4, 137, 41, 0, 172, 182, 135, 47, 114, 61, 0, 60, 4, 137, 41, 0, 38, 184, 89, 47, 116, 61, 0, 60, 4, 137, 41, 0, 38, 184, 28, 47, 105, 61, 0, 60, 4, 137, 41, 0, 5, 56, 47, 60, 20, 181, 0, 60, 0, 0, 129, 0, 5, 56, 192, 56, 20, 181, 0, 60, 0, 0, 129, 0, 5, 184, 192, 56, 20, 181, 0, 60, 0, 0, 129, 0, 5, 184, 47, 60, 20, 181, 0, 60, 0, 0, 129, 0, 5, 184, 10, 53, 242, 184, 0, 60, 0, 127, 0, 0, 5, 56, 10, 53, 242, 184, 0, 60, 0, 127, 0, 0, 5, 56, 10, 53, 161, 187, 0, 60, 0, 127, 0, 0, 5, 184, 10, 53, 161, 187, 0, 60, 0, 127, 0, 0, 5, 184, 5, 53, 20, 181, 0, 60, 0, 127, 0, 0, 5, 56, 5, 53, 20, 181, 0, 60, 0, 127, 0, 0, 5, 56, 10, 53, 242, 184, 0, 60, 0, 127, 0, 0, 5, 184, 10, 53, 242, 184, 0, 60, 0, 127, 0, 0, 5, 56, 5, 53, 20, 181, 0, 60, 0, 0, 129, 0, 5, 184, 5, 53, 20, 181, 0, 60, 0, 0, 129, 0), -"array_index_data": PackedByteArray(0, 0, 2, 0, 1, 0, 0, 0, 3, 0, 2, 0, 4, 0, 6, 0, 5, 0, 4, 0, 7, 0, 6, 0, 8, 0, 10, 0, 9, 0, 9, 0, 12, 0, 11, 0, 13, 0, 15, 0, 14, 0, 9, 0, 10, 0, 12, 0, 16, 0, 18, 0, 17, 0, 16, 0, 19, 0, 18, 0, 20, 0, 22, 0, 21, 0, 20, 0, 23, 0, 22, 0, 24, 0, 26, 0, 25, 0, 24, 0, 27, 0, 26, 0, 28, 0, 30, 0, 29, 0, 31, 0, 33, 0, 32, 0, 34, 0, 36, 0, 35, 0, 34, 0, 37, 0, 36, 0, 38, 0, 40, 0, 39, 0, 41, 0, 43, 0, 42, 0, 42, 0, 45, 0, 44, 0, 42, 0, 43, 0, 45, 0, 20, 0, 10, 0, 8, 0, 20, 0, 21, 0, 10, 0, 46, 0, 48, 0, 47, 0, 46, 0, 49, 0, 48, 0, 50, 0, 52, 0, 51, 0, 50, 0, 53, 0, 52, 0, 54, 0, 55, 0, 38, 0, 56, 0, 58, 0, 57, 0, 56, 0, 59, 0, 58, 0, 60, 0, 62, 0, 61, 0, 60, 0, 63, 0, 62, 0, 64, 0, 66, 0, 65, 0, 64, 0, 67, 0, 66, 0, 68, 0, 70, 0, 69, 0, 68, 0, 71, 0, 70, 0, 72, 0, 67, 0, 64, 0, 72, 0, 73, 0, 67, 0, 74, 0, 76, 0, 75, 0, 74, 0, 77, 0, 76, 0, 78, 0, 80, 0, 79, 0, 78, 0, 81, 0, 80, 0, 82, 0, 84, 0, 83, 0, 82, 0, 85, 0, 84, 0, 83, 0, 87, 0, 86, 0, 83, 0, 84, 0, 87, 0, 88, 0, 90, 0, 89, 0, 88, 0, 91, 0, 90, 0, 92, 0, 94, 0, 93, 0, 92, 0, 95, 0, 94, 0, 96, 0, 98, 0, 97, 0, 96, 0, 99, 0, 98, 0, 100, 0, 102, 0, 101, 0, 100, 0, 103, 0, 102, 0, 104, 0, 106, 0, 105, 0, 104, 0, 107, 0, 106, 0, 6, 0, 108, 0, 5, 0, 6, 0, 109, 0, 108, 0, 8, 0, 9, 0, 110, 0, 111, 0, 113, 0, 112, 0, 110, 0, 9, 0, 114, 0, 115, 0, 113, 0, 111, 0, 116, 0, 118, 0, 117, 0, 116, 0, 119, 0, 118, 0, 20, 0, 120, 0, 23, 0, 20, 0, 121, 0, 120, 0, 122, 0, 124, 0, 123, 0, 122, 0, 125, 0, 124, 0, 126, 0, 128, 0, 127, 0, 129, 0, 131, 0, 130, 0, 132, 0, 134, 0, 133, 0, 132, 0, 135, 0, 134, 0, 136, 0, 138, 0, 137, 0, 136, 0, 139, 0, 138, 0, 140, 0, 141, 0, 136, 0, 136, 0, 142, 0, 139, 0, 136, 0, 141, 0, 142, 0, 20, 0, 110, 0, 121, 0, 20, 0, 8, 0, 110, 0, 143, 0, 145, 0, 144, 0, 143, 0, 146, 0, 145, 0, 147, 0, 149, 0, 148, 0, 147, 0, 150, 0, 149, 0, 45, 0, 152, 0, 151, 0, 45, 0, 43, 0, 152, 0, 153, 0, 155, 0, 154, 0, 153, 0, 156, 0, 155, 0, 157, 0, 159, 0, 158, 0, 157, 0, 160, 0, 159, 0, 161, 0, 163, 0, 162, 0, 161, 0, 164, 0, 163, 0, 165, 0, 167, 0, 166, 0, 165, 0, 168, 0, 167, 0, 169, 0, 162, 0, 170, 0, 169, 0, 161, 0, 162, 0, 171, 0, 173, 0, 172, 0, 171, 0, 174, 0, 173, 0, 175, 0, 177, 0, 176, 0, 175, 0, 178, 0, 177, 0, 179, 0, 181, 0, 180, 0, 179, 0, 182, 0, 181, 0, 182, 0, 183, 0, 181, 0, 182, 0, 184, 0, 183, 0, 185, 0, 187, 0, 186, 0, 185, 0, 188, 0, 187, 0, 189, 0, 191, 0, 190, 0, 189, 0, 192, 0, 191, 0, 193, 0, 195, 0, 194, 0, 193, 0, 196, 0, 195, 0, 197, 0, 199, 0, 198, 0, 197, 0, 200, 0, 199, 0, 201, 0, 203, 0, 202, 0, 201, 0, 204, 0, 203, 0, 40, 0, 38, 0, 55, 0, 205, 0, 207, 0, 206, 0, 205, 0, 208, 0, 207, 0, 209, 0, 211, 0, 210, 0, 209, 0, 212, 0, 211, 0, 202, 0, 214, 0, 213, 0, 202, 0, 203, 0, 214, 0), -"blend_shape_data": [], -"format": 98051, +"format": 4099, "index_count": 363, -"material": ExtResource( 1 ), +"index_data": PackedByteArray(0, 0, 2, 0, 1, 0, 0, 0, 3, 0, 2, 0, 4, 0, 6, 0, 5, 0, 4, 0, 7, 0, 6, 0, 8, 0, 10, 0, 9, 0, 9, 0, 12, 0, 11, 0, 13, 0, 15, 0, 14, 0, 9, 0, 10, 0, 12, 0, 16, 0, 18, 0, 17, 0, 16, 0, 19, 0, 18, 0, 20, 0, 22, 0, 21, 0, 20, 0, 23, 0, 22, 0, 24, 0, 26, 0, 25, 0, 24, 0, 27, 0, 26, 0, 28, 0, 30, 0, 29, 0, 31, 0, 33, 0, 32, 0, 34, 0, 36, 0, 35, 0, 34, 0, 37, 0, 36, 0, 38, 0, 40, 0, 39, 0, 41, 0, 43, 0, 42, 0, 42, 0, 45, 0, 44, 0, 42, 0, 43, 0, 45, 0, 20, 0, 10, 0, 8, 0, 20, 0, 21, 0, 10, 0, 46, 0, 48, 0, 47, 0, 46, 0, 49, 0, 48, 0, 50, 0, 52, 0, 51, 0, 50, 0, 53, 0, 52, 0, 54, 0, 55, 0, 38, 0, 56, 0, 58, 0, 57, 0, 56, 0, 59, 0, 58, 0, 60, 0, 62, 0, 61, 0, 60, 0, 63, 0, 62, 0, 64, 0, 66, 0, 65, 0, 64, 0, 67, 0, 66, 0, 68, 0, 70, 0, 69, 0, 68, 0, 71, 0, 70, 0, 72, 0, 67, 0, 64, 0, 72, 0, 73, 0, 67, 0, 74, 0, 76, 0, 75, 0, 74, 0, 77, 0, 76, 0, 78, 0, 80, 0, 79, 0, 78, 0, 81, 0, 80, 0, 82, 0, 84, 0, 83, 0, 82, 0, 85, 0, 84, 0, 83, 0, 87, 0, 86, 0, 83, 0, 84, 0, 87, 0, 88, 0, 90, 0, 89, 0, 88, 0, 91, 0, 90, 0, 92, 0, 94, 0, 93, 0, 92, 0, 95, 0, 94, 0, 96, 0, 98, 0, 97, 0, 96, 0, 99, 0, 98, 0, 100, 0, 102, 0, 101, 0, 100, 0, 103, 0, 102, 0, 104, 0, 106, 0, 105, 0, 104, 0, 107, 0, 106, 0, 6, 0, 108, 0, 5, 0, 6, 0, 109, 0, 108, 0, 8, 0, 9, 0, 110, 0, 111, 0, 113, 0, 112, 0, 110, 0, 9, 0, 114, 0, 115, 0, 113, 0, 111, 0, 116, 0, 118, 0, 117, 0, 116, 0, 119, 0, 118, 0, 20, 0, 120, 0, 23, 0, 20, 0, 121, 0, 120, 0, 122, 0, 124, 0, 123, 0, 122, 0, 125, 0, 124, 0, 126, 0, 128, 0, 127, 0, 129, 0, 131, 0, 130, 0, 132, 0, 134, 0, 133, 0, 132, 0, 135, 0, 134, 0, 136, 0, 138, 0, 137, 0, 136, 0, 139, 0, 138, 0, 140, 0, 141, 0, 136, 0, 136, 0, 142, 0, 139, 0, 136, 0, 141, 0, 142, 0, 20, 0, 110, 0, 121, 0, 20, 0, 8, 0, 110, 0, 143, 0, 145, 0, 144, 0, 143, 0, 146, 0, 145, 0, 147, 0, 149, 0, 148, 0, 147, 0, 150, 0, 149, 0, 45, 0, 152, 0, 151, 0, 45, 0, 43, 0, 152, 0, 153, 0, 155, 0, 154, 0, 153, 0, 156, 0, 155, 0, 157, 0, 159, 0, 158, 0, 157, 0, 160, 0, 159, 0, 161, 0, 163, 0, 162, 0, 161, 0, 164, 0, 163, 0, 165, 0, 167, 0, 166, 0, 165, 0, 168, 0, 167, 0, 169, 0, 162, 0, 170, 0, 169, 0, 161, 0, 162, 0, 171, 0, 173, 0, 172, 0, 171, 0, 174, 0, 173, 0, 175, 0, 177, 0, 176, 0, 175, 0, 178, 0, 177, 0, 179, 0, 181, 0, 180, 0, 179, 0, 182, 0, 181, 0, 182, 0, 183, 0, 181, 0, 182, 0, 184, 0, 183, 0, 185, 0, 187, 0, 186, 0, 185, 0, 188, 0, 187, 0, 189, 0, 191, 0, 190, 0, 189, 0, 192, 0, 191, 0, 193, 0, 195, 0, 194, 0, 193, 0, 196, 0, 195, 0, 197, 0, 199, 0, 198, 0, 197, 0, 200, 0, 199, 0, 201, 0, 203, 0, 202, 0, 201, 0, 204, 0, 203, 0, 40, 0, 38, 0, 55, 0, 205, 0, 207, 0, 206, 0, 205, 0, 208, 0, 207, 0, 209, 0, 211, 0, 210, 0, 209, 0, 212, 0, 211, 0, 202, 0, 214, 0, 213, 0, 202, 0, 203, 0, 214, 0), +"material": ExtResource( "1" ), "name": "Material.001", -"primitive": 4, -"skeleton_aabb": [], -"vertex_count": 215 -} -surfaces/1 = { +"primitive": 3, +"vertex_count": 215, +"vertex_data": PackedByteArray(0, 160, 0, 63, 0, 0, 24, 63, 0, 96, 175, 62, 104, 184, 143, 8, 0, 0, 0, 0, 0, 0, 24, 63, 0, 160, 224, 62, 104, 184, 143, 8, 0, 0, 0, 0, 0, 192, 0, 63, 0, 160, 178, 63, 104, 184, 143, 8, 0, 224, 126, 62, 0, 160, 223, 62, 0, 160, 178, 63, 104, 184, 143, 8, 0, 160, 0, 63, 0, 192, 74, 58, 0, 64, 159, 191, 0, 100, 3, 0, 0, 0, 0, 0, 0, 192, 74, 58, 0, 64, 159, 191, 0, 100, 3, 0, 0, 0, 0, 0, 0, 0, 161, 62, 0, 96, 150, 191, 0, 100, 3, 0, 0, 160, 0, 63, 0, 0, 161, 62, 0, 96, 150, 191, 0, 100, 3, 0, 0, 0, 0, 0, 0, 192, 74, 58, 0, 128, 162, 190, 0, 0, 0, 0, 0, 0, 0, 0, 0, 192, 74, 58, 0, 64, 159, 191, 0, 0, 0, 0, 0, 160, 0, 63, 0, 192, 74, 58, 0, 128, 162, 190, 0, 0, 0, 0, 0, 160, 0, 63, 0, 192, 74, 58, 0, 64, 159, 191, 0, 0, 0, 0, 0, 160, 0, 63, 0, 192, 74, 58, 0, 32, 138, 191, 0, 0, 0, 0, 0, 160, 0, 63, 0, 192, 74, 58, 0, 32, 138, 191, 0, 0, 0, 0, 0, 160, 0, 63, 0, 192, 74, 58, 0, 0, 252, 190, 0, 0, 0, 0, 0, 160, 0, 63, 0, 192, 74, 58, 0, 128, 162, 190, 0, 0, 0, 0, 0, 160, 0, 63, 0, 224, 133, 63, 0, 160, 66, 62, 40, 216, 15, 0, 0, 160, 0, 63, 0, 224, 133, 63, 0, 128, 162, 190, 40, 216, 15, 0, 0, 0, 0, 0, 0, 96, 136, 63, 0, 128, 162, 190, 40, 216, 15, 0, 0, 0, 0, 0, 0, 96, 136, 63, 0, 128, 146, 62, 40, 216, 15, 0, 0, 0, 0, 0, 0, 192, 74, 58, 0, 96, 175, 62, 0, 0, 0, 0, 0, 160, 0, 63, 0, 192, 74, 58, 0, 96, 175, 62, 0, 0, 0, 0, 0, 224, 126, 62, 0, 192, 74, 58, 0, 128, 183, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 192, 74, 58, 0, 128, 183, 63, 0, 0, 0, 0, 0, 160, 0, 63, 0, 0, 24, 63, 0, 96, 175, 62, 222, 163, 16, 15, 0, 224, 126, 62, 0, 160, 223, 62, 0, 160, 178, 63, 222, 163, 16, 15, 0, 224, 149, 62, 0, 64, 158, 62, 0, 224, 159, 63, 222, 163, 16, 15, 0, 32, 186, 62, 0, 64, 158, 62, 0, 192, 115, 63, 222, 163, 16, 15, 0, 160, 0, 63, 0, 192, 74, 58, 0, 96, 175, 62, 222, 3, 16, 14, 0, 160, 0, 63, 0, 0, 24, 63, 0, 96, 175, 62, 222, 3, 16, 14, 0, 32, 186, 62, 0, 64, 158, 62, 0, 192, 115, 63, 222, 3, 16, 14, 0, 224, 126, 62, 0, 160, 223, 62, 0, 160, 178, 63, 214, 67, 144, 16, 0, 224, 126, 62, 0, 192, 74, 58, 0, 128, 183, 63, 214, 67, 144, 16, 0, 224, 149, 62, 0, 64, 158, 62, 0, 224, 159, 63, 214, 67, 144, 16, 0, 160, 0, 63, 0, 192, 74, 58, 0, 64, 159, 191, 254, 3, 0, 0, 0, 160, 0, 63, 0, 0, 161, 62, 0, 96, 150, 191, 254, 3, 0, 0, 0, 160, 0, 63, 0, 64, 161, 62, 0, 32, 116, 191, 254, 3, 0, 0, 0, 160, 0, 63, 0, 192, 74, 58, 0, 32, 138, 191, 254, 3, 0, 0, 0, 0, 0, 0, 0, 0, 161, 62, 0, 96, 150, 191, 0, 248, 15, 0, 0, 160, 0, 191, 0, 0, 161, 62, 0, 96, 150, 191, 0, 248, 15, 0, 0, 160, 0, 191, 0, 64, 161, 62, 0, 32, 116, 191, 0, 248, 15, 0, 0, 160, 0, 63, 0, 0, 24, 63, 0, 128, 162, 190, 254, 3, 0, 0, 0, 160, 0, 63, 0, 0, 24, 63, 0, 96, 175, 62, 254, 3, 0, 0, 0, 160, 0, 63, 0, 160, 160, 62, 0, 128, 162, 190, 254, 3, 0, 0, 0, 160, 0, 63, 0, 192, 74, 58, 0, 96, 175, 62, 254, 3, 0, 0, 0, 160, 0, 63, 0, 192, 74, 58, 0, 128, 162, 190, 254, 3, 0, 0, 0, 160, 0, 63, 0, 64, 161, 62, 0, 64, 30, 191, 96, 136, 230, 57, 0, 160, 0, 63, 0, 192, 74, 58, 0, 0, 252, 190, 96, 136, 230, 57, 0, 96, 39, 63, 0, 192, 74, 58, 0, 0, 252, 190, 96, 136, 230, 57, 0, 96, 39, 63, 0, 96, 143, 62, 0, 128, 34, 191, 96, 136, 230, 57, 0, 160, 0, 63, 0, 192, 74, 58, 0, 96, 175, 62, 80, 88, 14, 0, 0, 32, 186, 62, 0, 64, 158, 62, 0, 192, 115, 63, 80, 88, 14, 0, 0, 96, 39, 63, 0, 96, 140, 62, 0, 128, 119, 63, 80, 88, 14, 0, 0, 96, 39, 63, 0, 192, 74, 58, 0, 96, 175, 62, 80, 88, 14, 0, 0, 160, 0, 63, 0, 0, 161, 62, 0, 96, 150, 191, 0, 248, 15, 0, 0, 160, 0, 63, 0, 64, 161, 62, 0, 32, 116, 191, 0, 248, 15, 0, 0, 160, 0, 63, 0, 192, 74, 58, 0, 32, 138, 191, 96, 136, 6, 0, 0, 160, 0, 63, 0, 64, 161, 62, 0, 32, 116, 191, 96, 136, 6, 0, 0, 96, 39, 63, 0, 96, 143, 62, 0, 224, 111, 191, 96, 136, 6, 0, 0, 96, 39, 63, 0, 192, 74, 58, 0, 32, 138, 191, 96, 136, 6, 0, 0, 32, 186, 62, 0, 64, 158, 62, 0, 192, 115, 63, 104, 216, 143, 0, 0, 224, 149, 62, 0, 64, 158, 62, 0, 224, 159, 63, 104, 216, 143, 0, 0, 96, 39, 63, 0, 96, 140, 62, 0, 0, 158, 63, 104, 216, 143, 0, 0, 96, 39, 63, 0, 96, 140, 62, 0, 128, 119, 63, 104, 216, 143, 0, 0, 160, 0, 63, 0, 192, 74, 58, 0, 128, 162, 190, 0, 248, 15, 0, 0, 160, 0, 63, 0, 192, 74, 58, 0, 96, 175, 62, 0, 248, 15, 0, 0, 96, 39, 63, 0, 192, 74, 58, 0, 96, 175, 62, 0, 248, 15, 0, 0, 96, 39, 63, 0, 192, 74, 58, 0, 128, 162, 190, 0, 248, 15, 0, 0, 160, 0, 63, 0, 64, 161, 62, 0, 32, 116, 191, 225, 120, 15, 0, 0, 160, 0, 63, 0, 64, 161, 62, 0, 64, 30, 191, 225, 120, 15, 0, 0, 96, 39, 63, 0, 96, 143, 62, 0, 128, 34, 191, 225, 120, 15, 0, 0, 96, 39, 63, 0, 96, 143, 62, 0, 224, 111, 191, 225, 120, 15, 0, 0, 160, 0, 63, 0, 192, 74, 58, 0, 0, 252, 190, 0, 248, 15, 0, 0, 96, 39, 63, 0, 192, 74, 58, 0, 0, 252, 190, 0, 248, 15, 0, 0, 224, 149, 62, 0, 64, 158, 62, 0, 224, 159, 63, 80, 236, 231, 54, 0, 224, 126, 62, 0, 192, 74, 58, 0, 128, 183, 63, 80, 236, 231, 54, 0, 128, 213, 62, 0, 224, 233, 61, 0, 224, 172, 63, 80, 236, 231, 54, 0, 32, 221, 62, 0, 32, 65, 62, 0, 64, 167, 63, 80, 236, 231, 54, 0, 96, 39, 63, 0, 96, 140, 62, 0, 0, 158, 63, 80, 236, 231, 54, 0, 224, 149, 62, 0, 64, 158, 62, 0, 224, 159, 63, 80, 236, 231, 54, 0, 32, 221, 62, 0, 32, 65, 62, 0, 64, 167, 63, 80, 236, 231, 54, 0, 0, 5, 63, 0, 192, 59, 62, 0, 128, 166, 63, 80, 236, 231, 54, 0, 224, 126, 62, 0, 192, 74, 58, 0, 128, 183, 63, 0, 80, 89, 51, 0, 96, 39, 63, 0, 192, 74, 58, 0, 128, 183, 63, 0, 80, 89, 51, 0, 192, 4, 63, 0, 128, 227, 61, 0, 32, 173, 63, 0, 80, 89, 51, 0, 128, 213, 62, 0, 224, 233, 61, 0, 224, 172, 63, 0, 80, 89, 51, 0, 96, 39, 63, 0, 96, 140, 62, 0, 0, 158, 63, 0, 80, 89, 51, 0, 0, 5, 63, 0, 192, 59, 62, 0, 128, 166, 63, 0, 80, 89, 51, 0, 192, 4, 63, 0, 128, 227, 61, 0, 32, 173, 63, 254, 3, 0, 0, 0, 0, 5, 63, 0, 192, 59, 62, 0, 128, 166, 63, 254, 3, 0, 0, 0, 0, 5, 63, 0, 96, 56, 62, 0, 192, 171, 63, 254, 3, 0, 0, 0, 192, 4, 63, 0, 32, 235, 61, 0, 128, 174, 63, 254, 3, 0, 0, 0, 32, 221, 62, 0, 32, 65, 62, 0, 64, 167, 63, 0, 68, 3, 0, 0, 128, 213, 62, 0, 224, 233, 61, 0, 224, 172, 63, 0, 68, 3, 0, 0, 128, 213, 62, 0, 224, 240, 61, 0, 64, 174, 63, 0, 68, 3, 0, 0, 32, 221, 62, 0, 32, 61, 62, 0, 128, 171, 63, 0, 68, 3, 0, 0, 0, 5, 63, 0, 192, 59, 62, 0, 128, 166, 63, 56, 216, 143, 5, 0, 32, 221, 62, 0, 32, 65, 62, 0, 64, 167, 63, 56, 216, 143, 5, 0, 32, 221, 62, 0, 32, 61, 62, 0, 128, 171, 63, 56, 216, 143, 5, 0, 0, 5, 63, 0, 96, 56, 62, 0, 192, 171, 63, 56, 216, 143, 5, 0, 128, 213, 62, 0, 224, 233, 61, 0, 224, 172, 63, 0, 0, 160, 20, 0, 192, 4, 63, 0, 128, 227, 61, 0, 32, 173, 63, 0, 0, 160, 20, 0, 192, 4, 63, 0, 32, 235, 61, 0, 128, 174, 63, 0, 0, 160, 20, 0, 128, 213, 62, 0, 224, 240, 61, 0, 64, 174, 63, 0, 0, 160, 20, 0, 160, 0, 191, 0, 0, 24, 63, 0, 96, 175, 62, 0, 184, 143, 8, 0, 224, 126, 190, 0, 160, 223, 62, 0, 160, 178, 63, 0, 184, 143, 8, 0, 0, 0, 0, 0, 192, 0, 63, 0, 160, 178, 63, 0, 184, 143, 8, 0, 0, 0, 0, 0, 0, 24, 63, 0, 160, 224, 62, 0, 184, 143, 8, 0, 160, 0, 191, 0, 192, 74, 58, 0, 64, 159, 191, 0, 100, 3, 0, 0, 160, 0, 191, 0, 0, 161, 62, 0, 96, 150, 191, 0, 100, 3, 0, 0, 160, 0, 191, 0, 192, 74, 58, 0, 128, 162, 190, 0, 0, 0, 0, 0, 160, 0, 191, 0, 192, 74, 58, 0, 0, 252, 190, 0, 0, 0, 0, 0, 160, 0, 191, 0, 192, 74, 58, 0, 32, 138, 191, 0, 0, 0, 0, 0, 160, 0, 191, 0, 192, 74, 58, 0, 64, 159, 191, 0, 0, 0, 0, 0, 160, 0, 191, 0, 192, 74, 58, 0, 64, 159, 191, 0, 0, 0, 0, 0, 160, 0, 191, 0, 192, 74, 58, 0, 128, 162, 190, 0, 0, 0, 0, 0, 160, 0, 191, 0, 224, 133, 63, 0, 160, 66, 62, 0, 216, 15, 0, 0, 0, 0, 0, 0, 96, 136, 63, 0, 128, 146, 62, 0, 216, 15, 0, 0, 0, 0, 0, 0, 96, 136, 63, 0, 128, 162, 190, 0, 216, 15, 0, 0, 160, 0, 191, 0, 224, 133, 63, 0, 128, 162, 190, 0, 216, 15, 0, 0, 224, 126, 190, 0, 192, 74, 58, 0, 128, 183, 63, 0, 0, 0, 0, 0, 160, 0, 191, 0, 192, 74, 58, 0, 96, 175, 62, 0, 0, 0, 0, 0, 160, 0, 191, 0, 0, 24, 63, 0, 96, 175, 62, 0, 160, 16, 15, 0, 32, 186, 190, 0, 64, 158, 62, 0, 192, 115, 63, 0, 160, 16, 15, 0, 224, 149, 190, 0, 64, 158, 62, 0, 224, 159, 63, 0, 160, 16, 15, 0, 224, 126, 190, 0, 160, 223, 62, 0, 160, 178, 63, 0, 160, 16, 15, 0, 160, 0, 191, 0, 192, 74, 58, 0, 96, 175, 62, 0, 0, 16, 14, 0, 32, 186, 190, 0, 64, 158, 62, 0, 192, 115, 63, 0, 0, 16, 14, 0, 160, 0, 191, 0, 0, 24, 63, 0, 96, 175, 62, 0, 0, 16, 14, 0, 224, 126, 190, 0, 160, 223, 62, 0, 160, 178, 63, 0, 64, 144, 16, 0, 224, 149, 190, 0, 64, 158, 62, 0, 224, 159, 63, 0, 64, 144, 16, 0, 224, 126, 190, 0, 192, 74, 58, 0, 128, 183, 63, 0, 64, 144, 16, 0, 160, 0, 191, 0, 192, 74, 58, 0, 64, 159, 191, 0, 0, 0, 0, 0, 160, 0, 191, 0, 192, 74, 58, 0, 32, 138, 191, 0, 0, 0, 0, 0, 160, 0, 191, 0, 64, 161, 62, 0, 32, 116, 191, 0, 0, 0, 0, 0, 160, 0, 191, 0, 0, 161, 62, 0, 96, 150, 191, 0, 0, 0, 0, 0, 160, 0, 191, 0, 160, 160, 62, 0, 128, 162, 190, 0, 0, 0, 0, 0, 160, 0, 191, 0, 64, 161, 62, 0, 64, 30, 191, 0, 0, 0, 0, 0, 160, 0, 191, 0, 192, 74, 58, 0, 0, 252, 190, 0, 0, 0, 0, 0, 160, 0, 191, 0, 192, 74, 58, 0, 128, 162, 190, 0, 0, 0, 0, 0, 160, 0, 191, 0, 0, 24, 63, 0, 128, 162, 190, 0, 0, 0, 0, 0, 160, 0, 191, 0, 0, 24, 63, 0, 96, 175, 62, 0, 0, 0, 0, 0, 160, 0, 191, 0, 192, 74, 58, 0, 96, 175, 62, 0, 0, 0, 0, 0, 160, 0, 191, 0, 64, 161, 62, 0, 64, 30, 191, 0, 136, 230, 57, 0, 96, 39, 191, 0, 96, 143, 62, 0, 128, 34, 191, 0, 136, 230, 57, 0, 96, 39, 191, 0, 192, 74, 58, 0, 0, 252, 190, 0, 136, 230, 57, 0, 160, 0, 191, 0, 192, 74, 58, 0, 0, 252, 190, 0, 136, 230, 57, 0, 160, 0, 191, 0, 192, 74, 58, 0, 96, 175, 62, 0, 88, 14, 0, 0, 96, 39, 191, 0, 192, 74, 58, 0, 96, 175, 62, 0, 88, 14, 0, 0, 96, 39, 191, 0, 96, 140, 62, 0, 128, 119, 63, 0, 88, 14, 0, 0, 32, 186, 190, 0, 64, 158, 62, 0, 192, 115, 63, 0, 88, 14, 0, 0, 160, 0, 63, 0, 192, 74, 58, 0, 0, 252, 190, 254, 3, 0, 0, 0, 160, 0, 63, 0, 64, 161, 62, 0, 64, 30, 191, 254, 3, 0, 0, 0, 160, 0, 191, 0, 192, 74, 58, 0, 32, 138, 191, 0, 136, 6, 0, 0, 96, 39, 191, 0, 192, 74, 58, 0, 32, 138, 191, 0, 136, 6, 0, 0, 96, 39, 191, 0, 96, 143, 62, 0, 224, 111, 191, 0, 136, 6, 0, 0, 160, 0, 191, 0, 64, 161, 62, 0, 32, 116, 191, 0, 136, 6, 0, 0, 32, 186, 190, 0, 64, 158, 62, 0, 192, 115, 63, 0, 216, 143, 0, 0, 96, 39, 191, 0, 96, 140, 62, 0, 128, 119, 63, 0, 216, 143, 0, 0, 96, 39, 191, 0, 96, 140, 62, 0, 0, 158, 63, 0, 216, 143, 0, 0, 224, 149, 190, 0, 64, 158, 62, 0, 224, 159, 63, 0, 216, 143, 0, 0, 160, 0, 191, 0, 192, 74, 58, 0, 128, 162, 190, 0, 248, 15, 0, 0, 96, 39, 191, 0, 192, 74, 58, 0, 128, 162, 190, 0, 248, 15, 0, 0, 96, 39, 191, 0, 192, 74, 58, 0, 96, 175, 62, 0, 248, 15, 0, 0, 160, 0, 191, 0, 192, 74, 58, 0, 96, 175, 62, 0, 248, 15, 0, 0, 160, 0, 191, 0, 64, 161, 62, 0, 32, 116, 191, 0, 120, 15, 0, 0, 96, 39, 191, 0, 96, 143, 62, 0, 224, 111, 191, 0, 120, 15, 0, 0, 96, 39, 191, 0, 96, 143, 62, 0, 128, 34, 191, 0, 120, 15, 0, 0, 160, 0, 191, 0, 64, 161, 62, 0, 64, 30, 191, 0, 120, 15, 0, 0, 160, 0, 191, 0, 192, 74, 58, 0, 0, 252, 190, 0, 248, 15, 0, 0, 96, 39, 191, 0, 192, 74, 58, 0, 0, 252, 190, 0, 248, 15, 0, 0, 224, 149, 190, 0, 64, 158, 62, 0, 224, 159, 63, 0, 236, 231, 54, 0, 32, 221, 190, 0, 32, 65, 62, 0, 64, 167, 63, 0, 236, 231, 54, 0, 128, 213, 190, 0, 224, 233, 61, 0, 224, 172, 63, 0, 236, 231, 54, 0, 224, 126, 190, 0, 192, 74, 58, 0, 128, 183, 63, 0, 236, 231, 54, 0, 96, 39, 191, 0, 96, 140, 62, 0, 0, 158, 63, 0, 236, 231, 54, 0, 0, 5, 191, 0, 192, 59, 62, 0, 128, 166, 63, 0, 236, 231, 54, 0, 32, 221, 190, 0, 32, 65, 62, 0, 64, 167, 63, 0, 236, 231, 54, 0, 224, 149, 190, 0, 64, 158, 62, 0, 224, 159, 63, 0, 236, 231, 54, 0, 224, 126, 190, 0, 192, 74, 58, 0, 128, 183, 63, 0, 80, 89, 51, 0, 128, 213, 190, 0, 224, 233, 61, 0, 224, 172, 63, 0, 80, 89, 51, 0, 192, 4, 191, 0, 128, 227, 61, 0, 32, 173, 63, 0, 80, 89, 51, 0, 96, 39, 191, 0, 192, 74, 58, 0, 128, 183, 63, 0, 80, 89, 51, 0, 0, 5, 191, 0, 192, 59, 62, 0, 128, 166, 63, 0, 80, 89, 51, 0, 96, 39, 191, 0, 96, 140, 62, 0, 0, 158, 63, 0, 80, 89, 51, 0, 192, 4, 191, 0, 128, 227, 61, 0, 32, 173, 63, 0, 0, 0, 0, 0, 192, 4, 191, 0, 32, 235, 61, 0, 128, 174, 63, 0, 0, 0, 0, 0, 0, 5, 191, 0, 96, 56, 62, 0, 192, 171, 63, 0, 0, 0, 0, 0, 0, 5, 191, 0, 192, 59, 62, 0, 128, 166, 63, 0, 0, 0, 0, 0, 32, 221, 190, 0, 32, 65, 62, 0, 64, 167, 63, 230, 71, 3, 0, 0, 32, 221, 190, 0, 32, 61, 62, 0, 128, 171, 63, 230, 71, 3, 0, 0, 128, 213, 190, 0, 224, 240, 61, 0, 64, 174, 63, 230, 71, 3, 0, 0, 128, 213, 190, 0, 224, 233, 61, 0, 224, 172, 63, 230, 71, 3, 0, 0, 0, 5, 191, 0, 192, 59, 62, 0, 128, 166, 63, 0, 216, 143, 5, 0, 0, 5, 191, 0, 96, 56, 62, 0, 192, 171, 63, 0, 216, 143, 5, 0, 32, 221, 190, 0, 32, 61, 62, 0, 128, 171, 63, 0, 216, 143, 5, 0, 32, 221, 190, 0, 32, 65, 62, 0, 64, 167, 63, 0, 216, 143, 5, 0, 128, 213, 190, 0, 224, 233, 61, 0, 224, 172, 63, 32, 0, 160, 20, 0, 128, 213, 190, 0, 224, 240, 61, 0, 64, 174, 63, 32, 0, 160, 20, 0, 192, 4, 191, 0, 32, 235, 61, 0, 128, 174, 63, 32, 0, 160, 20, 0, 192, 4, 191, 0, 128, 227, 61, 0, 32, 173, 63, 32, 0, 160, 20, 0, 160, 0, 63, 0, 224, 133, 63, 0, 128, 162, 190, 0, 0, 0, 0, 0, 160, 0, 63, 0, 0, 24, 63, 0, 128, 162, 190, 0, 0, 0, 0, 0, 160, 0, 191, 0, 0, 24, 63, 0, 128, 162, 190, 0, 0, 0, 0, 0, 160, 0, 191, 0, 224, 133, 63, 0, 128, 162, 190, 0, 0, 0, 0, 0, 160, 0, 191, 0, 64, 161, 62, 0, 64, 30, 191, 0, 248, 15, 0, 0, 160, 0, 63, 0, 64, 161, 62, 0, 64, 30, 191, 0, 248, 15, 0, 0, 160, 0, 63, 0, 64, 161, 62, 0, 32, 116, 191, 0, 248, 15, 0, 0, 160, 0, 191, 0, 64, 161, 62, 0, 32, 116, 191, 0, 248, 15, 0, 0, 160, 0, 191, 0, 160, 160, 62, 0, 128, 162, 190, 0, 248, 15, 0, 0, 160, 0, 63, 0, 160, 160, 62, 0, 128, 162, 190, 0, 248, 15, 0, 0, 160, 0, 63, 0, 64, 161, 62, 0, 64, 30, 191, 0, 248, 15, 0, 0, 160, 0, 191, 0, 64, 161, 62, 0, 64, 30, 191, 0, 248, 15, 0, 0, 160, 0, 63, 0, 160, 160, 62, 0, 128, 162, 190, 0, 0, 0, 0, 0, 160, 0, 191, 0, 160, 160, 62, 0, 128, 162, 190, 0, 0, 0, 0) +}, { "aabb": AABB(-0.519564, 0.114819, -0.317414, 1.03913, 0.951363, 1.68073), -"array_data": PackedByteArray(5, 56, 47, 60, 21, 50, 0, 60, 23, 39, 118, 0, 0, 0, 67, 60, 148, 52, 0, 60, 23, 39, 118, 0, 0, 0, 192, 56, 5, 55, 0, 60, 23, 39, 118, 0, 5, 56, 192, 56, 123, 53, 0, 60, 23, 39, 118, 0, 5, 56, 47, 60, 20, 181, 0, 60, 127, 0, 0, 0, 5, 56, 47, 60, 21, 50, 0, 60, 127, 0, 0, 0, 5, 56, 192, 56, 123, 53, 0, 60, 127, 0, 0, 0, 5, 56, 192, 56, 20, 181, 0, 60, 127, 0, 0, 0, 172, 54, 135, 47, 114, 61, 0, 60, 0, 39, 120, 0, 38, 56, 89, 47, 116, 61, 0, 60, 0, 39, 120, 0, 40, 56, 195, 49, 94, 61, 0, 60, 0, 39, 120, 0, 233, 54, 233, 49, 92, 61, 0, 60, 0, 39, 120, 0, 5, 184, 47, 60, 21, 50, 0, 60, 233, 39, 118, 0, 5, 184, 192, 56, 123, 53, 0, 60, 233, 39, 118, 0, 0, 0, 192, 56, 5, 55, 0, 60, 233, 39, 118, 0, 0, 0, 67, 60, 148, 52, 0, 60, 233, 39, 118, 0, 5, 184, 47, 60, 20, 181, 0, 60, 130, 0, 0, 0, 5, 184, 192, 56, 20, 181, 0, 60, 130, 0, 0, 0, 5, 184, 192, 56, 123, 53, 0, 60, 130, 0, 0, 0, 5, 184, 47, 60, 21, 50, 0, 60, 130, 0, 0, 0, 172, 182, 135, 47, 114, 61, 0, 60, 0, 39, 120, 0, 233, 182, 233, 49, 92, 61, 0, 60, 0, 39, 120, 0, 40, 184, 195, 49, 94, 61, 0, 60, 0, 39, 120, 0, 38, 184, 89, 47, 116, 61, 0, 60, 0, 39, 120, 0), -"array_index_data": PackedByteArray(0, 0, 2, 0, 1, 0, 0, 0, 3, 0, 2, 0, 4, 0, 6, 0, 5, 0, 4, 0, 7, 0, 6, 0, 8, 0, 10, 0, 9, 0, 8, 0, 11, 0, 10, 0, 12, 0, 14, 0, 13, 0, 12, 0, 15, 0, 14, 0, 16, 0, 18, 0, 17, 0, 16, 0, 19, 0, 18, 0, 20, 0, 22, 0, 21, 0, 20, 0, 23, 0, 22, 0), -"blend_shape_data": [], -"format": 98051, +"format": 4099, "index_count": 36, -"material": SubResource( 11 ), +"index_data": PackedByteArray(0, 0, 2, 0, 1, 0, 0, 0, 3, 0, 2, 0, 4, 0, 6, 0, 5, 0, 4, 0, 7, 0, 6, 0, 8, 0, 10, 0, 9, 0, 8, 0, 11, 0, 10, 0, 12, 0, 14, 0, 13, 0, 12, 0, 15, 0, 14, 0, 16, 0, 18, 0, 17, 0, 16, 0, 19, 0, 18, 0, 20, 0, 22, 0, 21, 0, 20, 0, 23, 0, 22, 0), +"material": SubResource( "11" ), "name": "Material.002", -"primitive": 4, -"skeleton_aabb": [], -"vertex_count": 24 -} -surfaces/2 = { +"primitive": 3, +"vertex_count": 24, +"vertex_data": PackedByteArray(0, 160, 0, 63, 0, 224, 133, 63, 0, 160, 66, 62, 185, 232, 100, 59, 0, 0, 0, 0, 0, 96, 136, 63, 0, 128, 146, 62, 185, 232, 100, 59, 0, 0, 0, 0, 0, 0, 24, 63, 0, 160, 224, 62, 185, 232, 100, 59, 0, 160, 0, 63, 0, 0, 24, 63, 0, 96, 175, 62, 185, 232, 100, 59, 0, 160, 0, 63, 0, 224, 133, 63, 0, 128, 162, 190, 254, 3, 0, 0, 0, 160, 0, 63, 0, 224, 133, 63, 0, 160, 66, 62, 254, 3, 0, 0, 0, 160, 0, 63, 0, 0, 24, 63, 0, 96, 175, 62, 254, 3, 0, 0, 0, 160, 0, 63, 0, 0, 24, 63, 0, 128, 162, 190, 254, 3, 0, 0, 0, 128, 213, 62, 0, 224, 240, 61, 0, 64, 174, 63, 0, 232, 100, 60, 0, 192, 4, 63, 0, 32, 235, 61, 0, 128, 174, 63, 0, 232, 100, 60, 0, 0, 5, 63, 0, 96, 56, 62, 0, 192, 171, 63, 0, 232, 100, 60, 0, 32, 221, 62, 0, 32, 61, 62, 0, 128, 171, 63, 0, 232, 100, 60, 0, 160, 0, 191, 0, 224, 133, 63, 0, 160, 66, 62, 0, 232, 100, 59, 0, 160, 0, 191, 0, 0, 24, 63, 0, 96, 175, 62, 0, 232, 100, 59, 0, 0, 0, 0, 0, 0, 24, 63, 0, 160, 224, 62, 0, 232, 100, 59, 0, 0, 0, 0, 0, 96, 136, 63, 0, 128, 146, 62, 0, 232, 100, 59, 0, 160, 0, 191, 0, 224, 133, 63, 0, 128, 162, 190, 0, 0, 0, 0, 0, 160, 0, 191, 0, 0, 24, 63, 0, 128, 162, 190, 0, 0, 0, 0, 0, 160, 0, 191, 0, 0, 24, 63, 0, 96, 175, 62, 0, 0, 0, 0, 0, 160, 0, 191, 0, 224, 133, 63, 0, 160, 66, 62, 0, 0, 0, 0, 0, 128, 213, 190, 0, 224, 240, 61, 0, 64, 174, 63, 0, 232, 100, 60, 0, 32, 221, 190, 0, 32, 61, 62, 0, 128, 171, 63, 0, 232, 100, 60, 0, 0, 5, 191, 0, 96, 56, 62, 0, 192, 171, 63, 0, 232, 100, 60, 0, 192, 4, 191, 0, 32, 235, 61, 0, 128, 174, 63, 0, 232, 100, 60) +}, { "aabb": AABB(-0.50249, 0.000773809, -1.07979, 1.00499, 0.502212, 2.51351), -"array_data": PackedByteArray(5, 56, 86, 18, 81, 188, 0, 60, 127, 0, 0, 0, 5, 56, 10, 53, 161, 187, 0, 60, 127, 0, 0, 0, 5, 56, 10, 53, 242, 184, 0, 60, 127, 0, 0, 0, 5, 56, 86, 18, 224, 183, 0, 60, 127, 0, 0, 0, 247, 51, 253, 54, 149, 61, 0, 60, 1, 10, 126, 0, 0, 0, 6, 56, 149, 61, 0, 60, 1, 10, 126, 0, 0, 0, 86, 18, 188, 61, 0, 60, 1, 10, 126, 0, 247, 51, 86, 18, 188, 61, 0, 60, 1, 10, 126, 0, 247, 51, 86, 18, 188, 61, 0, 60, 123, 0, 28, 0, 5, 56, 86, 18, 123, 53, 0, 60, 123, 0, 28, 0, 209, 53, 242, 52, 158, 59, 0, 60, 123, 0, 28, 0, 175, 52, 242, 52, 255, 60, 0, 60, 123, 0, 28, 0, 5, 184, 86, 18, 81, 188, 0, 60, 130, 0, 0, 0, 5, 184, 86, 18, 224, 183, 0, 60, 130, 0, 0, 0, 5, 184, 10, 53, 242, 184, 0, 60, 130, 0, 0, 0, 5, 184, 10, 53, 161, 187, 0, 60, 130, 0, 0, 0, 247, 179, 253, 54, 149, 61, 0, 60, 255, 10, 126, 0, 247, 179, 86, 18, 188, 61, 0, 60, 255, 10, 126, 0, 0, 0, 86, 18, 188, 61, 0, 60, 255, 10, 126, 0, 0, 0, 6, 56, 149, 61, 0, 60, 255, 10, 126, 0, 247, 179, 86, 18, 188, 61, 0, 60, 133, 0, 28, 0, 175, 180, 242, 52, 255, 60, 0, 60, 133, 0, 28, 0, 209, 181, 242, 52, 158, 59, 0, 60, 133, 0, 28, 0, 5, 184, 86, 18, 123, 53, 0, 60, 133, 0, 28, 0), -"array_index_data": PackedByteArray(0, 0, 2, 0, 1, 0, 0, 0, 3, 0, 2, 0, 4, 0, 6, 0, 5, 0, 4, 0, 7, 0, 6, 0, 8, 0, 10, 0, 9, 0, 8, 0, 11, 0, 10, 0, 12, 0, 14, 0, 13, 0, 12, 0, 15, 0, 14, 0, 16, 0, 18, 0, 17, 0, 16, 0, 19, 0, 18, 0, 20, 0, 22, 0, 21, 0, 20, 0, 23, 0, 22, 0), -"blend_shape_data": [], -"format": 98051, +"format": 4099, "index_count": 36, -"material": SubResource( 12 ), +"index_data": PackedByteArray(0, 0, 2, 0, 1, 0, 0, 0, 3, 0, 2, 0, 4, 0, 6, 0, 5, 0, 4, 0, 7, 0, 6, 0, 8, 0, 10, 0, 9, 0, 8, 0, 11, 0, 10, 0, 12, 0, 14, 0, 13, 0, 12, 0, 15, 0, 14, 0, 16, 0, 18, 0, 17, 0, 16, 0, 19, 0, 18, 0, 20, 0, 22, 0, 21, 0, 20, 0, 23, 0, 22, 0), +"material": SubResource( "12" ), "name": "Material.003", -"primitive": 4, -"skeleton_aabb": [], -"vertex_count": 24 -} +"primitive": 3, +"vertex_count": 24, +"vertex_data": PackedByteArray(0, 160, 0, 63, 0, 192, 74, 58, 0, 32, 138, 191, 254, 3, 0, 0, 0, 160, 0, 63, 0, 64, 161, 62, 0, 32, 116, 191, 254, 3, 0, 0, 0, 160, 0, 63, 0, 64, 161, 62, 0, 64, 30, 191, 254, 3, 0, 0, 0, 160, 0, 63, 0, 192, 74, 58, 0, 0, 252, 190, 254, 3, 0, 0, 0, 224, 126, 62, 0, 160, 223, 62, 0, 160, 178, 63, 8, 64, 97, 63, 0, 0, 0, 0, 0, 192, 0, 63, 0, 160, 178, 63, 8, 64, 97, 63, 0, 0, 0, 0, 0, 192, 74, 58, 0, 128, 183, 63, 8, 64, 97, 63, 0, 224, 126, 62, 0, 192, 74, 58, 0, 128, 183, 63, 8, 64, 97, 63, 0, 224, 126, 62, 0, 192, 74, 58, 0, 128, 183, 63, 222, 3, 16, 14, 0, 160, 0, 63, 0, 192, 74, 58, 0, 96, 175, 62, 222, 3, 16, 14, 0, 32, 186, 62, 0, 64, 158, 62, 0, 192, 115, 63, 222, 3, 16, 14, 0, 224, 149, 62, 0, 64, 158, 62, 0, 224, 159, 63, 222, 3, 16, 14, 0, 160, 0, 191, 0, 192, 74, 58, 0, 32, 138, 191, 0, 0, 0, 0, 0, 160, 0, 191, 0, 192, 74, 58, 0, 0, 252, 190, 0, 0, 0, 0, 0, 160, 0, 191, 0, 64, 161, 62, 0, 64, 30, 191, 0, 0, 0, 0, 0, 160, 0, 191, 0, 64, 161, 62, 0, 32, 116, 191, 0, 0, 0, 0, 0, 224, 126, 190, 0, 160, 223, 62, 0, 160, 178, 63, 0, 64, 97, 63, 0, 224, 126, 190, 0, 192, 74, 58, 0, 128, 183, 63, 0, 64, 97, 63, 0, 0, 0, 0, 0, 192, 74, 58, 0, 128, 183, 63, 0, 64, 97, 63, 0, 0, 0, 0, 0, 192, 0, 63, 0, 160, 178, 63, 0, 64, 97, 63, 0, 224, 126, 190, 0, 192, 74, 58, 0, 128, 183, 63, 0, 0, 16, 14, 0, 224, 149, 190, 0, 64, 158, 62, 0, 224, 159, 63, 0, 0, 16, 14, 0, 32, 186, 190, 0, 64, 158, 62, 0, 192, 115, 63, 0, 0, 16, 14, 0, 160, 0, 191, 0, 192, 74, 58, 0, 96, 175, 62, 0, 0, 16, 14) +}] -[sub_resource type="BoxShape3D" id=14] -extents = Vector3(0.669599, 0.520797, 1.19735) +[sub_resource type="BoxShape3D" id="14"] +size = Vector3(1.3392, 1.04159, 2.3947) [node name="TrailerTruck" type="Node3D"] _import_path = NodePath(".") @@ -228,6 +196,7 @@ __meta__ = { [node name="Trailer" type="VehicleBody3D" parent="."] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -0.00169557, 0.637902, -2.78118) +center_of_mass_mode = 1 [node name="TWheel1" type="VehicleWheel3D" parent="Trailer"] transform = Transform3D(1, 0, 0, 0, 1, -1.49012e-08, 0, 0, 1, 0.573678, -0.402732, -1.53277) @@ -239,9 +208,8 @@ damping_compression = 0.88 [node name="TWheel1" type="MeshInstance3D" parent="Trailer/TWheel1"] _import_path = NodePath("TRAILER-vehicle/twheel1-wheel") -use_in_baked_light = true -mesh = SubResource( 1 ) -surface_material_override/0 = null +gi_mode = 1 +mesh = SubResource( "1" ) [node name="TWheel2" type="VehicleWheel3D" parent="Trailer"] transform = Transform3D(1, 0, 0, 0, 1, -1.49012e-08, 0, 0, 1, 0.573678, -0.402732, -0.600809) @@ -253,9 +221,8 @@ damping_compression = 0.88 [node name="TWheel2" type="MeshInstance3D" parent="Trailer/TWheel2"] _import_path = NodePath("TRAILER-vehicle/twheel2-wheel") -use_in_baked_light = true -mesh = SubResource( 2 ) -surface_material_override/0 = null +gi_mode = 1 +mesh = SubResource( "2" ) [node name="TWheel3" type="VehicleWheel3D" parent="Trailer"] transform = Transform3D(1, 0, 0, 0, 1, -1.49012e-08, 0, 0, 1, -0.573678, -0.402732, -1.53277) @@ -267,9 +234,8 @@ damping_compression = 0.88 [node name="TWheel3" type="MeshInstance3D" parent="Trailer/TWheel3"] _import_path = NodePath("TRAILER-vehicle/twheel3-wheel") -use_in_baked_light = true -mesh = SubResource( 3 ) -surface_material_override/0 = null +gi_mode = 1 +mesh = SubResource( "3" ) [node name="TWheel4" type="VehicleWheel3D" parent="Trailer"] transform = Transform3D(1, 0, 0, 0, 1, -1.49012e-08, 0, 0, 1, -0.573678, -0.402732, -0.600809) @@ -281,25 +247,22 @@ damping_compression = 0.88 [node name="TWheel4" type="MeshInstance3D" parent="Trailer/TWheel4"] _import_path = NodePath("TRAILER-vehicle/twheel4-wheel") -use_in_baked_light = true -mesh = SubResource( 4 ) -surface_material_override/0 = null +gi_mode = 1 +mesh = SubResource( "4" ) [node name="Trailer" type="MeshInstance3D" parent="Trailer"] _import_path = NodePath("TRAILER-vehicle") -use_in_baked_light = true -mesh = SubResource( 5 ) -surface_material_override/0 = null -material/1 = null -material/2 = null +gi_mode = 1 +mesh = SubResource( "5" ) [node name="CollisionShape3D" type="CollisionShape3D" parent="Trailer"] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0.383046, -0.0335202) -shape = SubResource( 6 ) +shape = SubResource( "6" ) [node name="Body" type="VehicleBody3D" parent="."] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -0.00169557, 0.222867, -0.0955184) -script = ExtResource( 4 ) +center_of_mass_mode = 1 +script = ExtResource( "4" ) [node name="Wheel1" type="VehicleWheel3D" parent="Body"] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0.573678, 0.000773743, 1.10416) @@ -313,9 +276,8 @@ damping_compression = 0.88 [node name="Wheel1" type="MeshInstance3D" parent="Body/Wheel1"] _import_path = NodePath("BODY-vehicle/wheel1-wheel") -use_in_baked_light = true -mesh = SubResource( 7 ) -surface_material_override/0 = null +gi_mode = 1 +mesh = SubResource( "7" ) [node name="Wheel2" type="VehicleWheel3D" parent="Body"] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0.573678, 0.000773743, -0.783403) @@ -328,9 +290,8 @@ damping_compression = 0.88 [node name="Wheel2" type="MeshInstance3D" parent="Body/Wheel2"] _import_path = NodePath("BODY-vehicle/wheel2-wheel") -use_in_baked_light = true -mesh = SubResource( 8 ) -surface_material_override/0 = null +gi_mode = 1 +mesh = SubResource( "8" ) [node name="Wheel3" type="VehicleWheel3D" parent="Body"] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -0.573678, 0.000773743, 1.10416) @@ -344,9 +305,8 @@ damping_compression = 0.88 [node name="Wheel3" type="MeshInstance3D" parent="Body/Wheel3"] _import_path = NodePath("BODY-vehicle/wheel3-wheel") -use_in_baked_light = true -mesh = SubResource( 9 ) -surface_material_override/0 = null +gi_mode = 1 +mesh = SubResource( "9" ) [node name="Wheel4" type="VehicleWheel3D" parent="Body"] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -0.573678, 0.000773743, -0.783403) @@ -359,21 +319,17 @@ damping_compression = 0.88 [node name="Wheel4" type="MeshInstance3D" parent="Body/Wheel4"] _import_path = NodePath("BODY-vehicle/wheel4-wheel") -use_in_baked_light = true -mesh = SubResource( 10 ) -surface_material_override/0 = null +gi_mode = 1 +mesh = SubResource( "10" ) [node name="Body" type="MeshInstance3D" parent="Body"] _import_path = NodePath("BODY-vehicle") -use_in_baked_light = true -mesh = SubResource( 13 ) -surface_material_override/0 = null -material/1 = null -material/2 = null +gi_mode = 1 +mesh = SubResource( "13" ) [node name="CollisionShape3D" type="CollisionShape3D" parent="Body"] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0.571059, 0.132248) -shape = SubResource( 14 ) +shape = SubResource( "14" ) [node name="CameraBase" type="Node3D" parent="Body"] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 1.97449, 0) @@ -383,7 +339,7 @@ transform = Transform3D(-0.709652, -0.170177, 0.683691, -2.11161e-08, 0.970391, current = true fov = 74.0 near = 0.1 -script = ExtResource( 5 ) +script = ExtResource( "5" ) min_distance = 5.0 max_distance = 7.0 height = 2.5 diff --git a/3d/waypoints/camera.gd b/3d/waypoints/camera.gd index 35c449df..9a74b23e 100644 --- a/3d/waypoints/camera.gd +++ b/3d/waypoints/camera.gd @@ -18,7 +18,7 @@ func _input(event): rot.y -= event.relative.x * MOUSE_SENSITIVITY # Vertical mouse look. rot.x = clamp(rot.x - event.relative.y * MOUSE_SENSITIVITY, -1.57, 1.57) - transform.basis = Basis(rot) + transform.basis = Basis.from_euler(rot) if event.is_action_pressed("toggle_mouse_capture"): if Input.get_mouse_mode() == Input.MOUSE_MODE_CAPTURED: diff --git a/3d/waypoints/icon.png.import b/3d/waypoints/icon.png.import index 889af9df..40950596 100644 --- a/3d/waypoints/icon.png.import +++ b/3d/waypoints/icon.png.import @@ -1,8 +1,9 @@ [remap] importer="texture" -type="StreamTexture2D" -path="res://.godot/imported/icon.png-487276ed1e3a0c39cad0279d744ee560.stex" +type="CompressedTexture2D" +uid="uid://cepadwp0eni7g" +path="res://.godot/imported/icon.png-487276ed1e3a0c39cad0279d744ee560.ctex" metadata={ "vram_texture": false } @@ -10,26 +11,23 @@ metadata={ [deps] source_file="res://icon.png" -dest_files=["res://.godot/imported/icon.png-487276ed1e3a0c39cad0279d744ee560.stex"] +dest_files=["res://.godot/imported/icon.png-487276ed1e3a0c39cad0279d744ee560.ctex"] [params] compress/mode=0 compress/lossy_quality=0.7 -compress/hdr_mode=0 +compress/hdr_compression=1 compress/bptc_ldr=0 compress/normal_map=0 -flags/repeat=0 -flags/filter=true -flags/mipmaps=false -flags/anisotropic=false -flags/srgb=2 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" process/fix_alpha_border=true process/premult_alpha=false -process/HDR_as_SRGB=false -process/invert_color=false process/normal_map_invert_y=false -stream=false -size_limit=0 -detect_3d=true -svg/scale=1.0 +process/hdr_as_srgb=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/3d/waypoints/main.tscn b/3d/waypoints/main.tscn index 3ce953af..3483019c 100644 --- a/3d/waypoints/main.tscn +++ b/3d/waypoints/main.tscn @@ -1,139 +1,128 @@ -[gd_scene load_steps=17 format=2] +[gd_scene load_steps=18 format=3 uid="uid://rj7yrj3c672g"] -[ext_resource path="res://camera.gd" type="Script" id=1] -[ext_resource path="res://waypoint.tscn" type="PackedScene" id=2] -[ext_resource path="res://noto_sans_regular.ttf" type="FontData" id=3] +[ext_resource type="Script" path="res://camera.gd" id="1"] +[ext_resource type="PackedScene" uid="uid://deqpan4silm2n" path="res://waypoint.tscn" id="2"] -[sub_resource type="StandardMaterial3D" id=1] -albedo_color = Color(0.6, 0.564706, 0.423529, 1) - -[sub_resource type="BoxMesh" id=2] -material = SubResource( 1 ) -size = Vector3(16, 2, 16) - -[sub_resource type="StandardMaterial3D" id=3] -albedo_color = Color(0.788235, 0.788235, 0.788235, 1) - -[sub_resource type="BoxMesh" id=4] -material = SubResource( 3 ) -size = Vector3(4, 1.5, 4) - -[sub_resource type="StandardMaterial3D" id=5] +[sub_resource type="StandardMaterial3D" id="5"] albedo_color = Color(0.25098, 0.470588, 0.996078, 1) -[sub_resource type="BoxMesh" id=6] -material = SubResource( 5 ) -size = Vector3(1, 1, 1) +[sub_resource type="BoxMesh" id="6"] +material = SubResource( "5" ) -[sub_resource type="StandardMaterial3D" id=7] +[sub_resource type="StandardMaterial3D" id="7"] albedo_color = Color(0.435294, 0.917647, 0.380392, 1) -[sub_resource type="BoxMesh" id=8] -material = SubResource( 7 ) -size = Vector3(1, 1, 1) +[sub_resource type="BoxMesh" id="8"] +material = SubResource( "7" ) -[sub_resource type="StandardMaterial3D" id=9] +[sub_resource type="StandardMaterial3D" id="9"] albedo_color = Color(0.862745, 0.764706, 0.12549, 1) -[sub_resource type="BoxMesh" id=10] -material = SubResource( 9 ) -size = Vector3(1, 1, 1) +[sub_resource type="BoxMesh" id="10"] +material = SubResource( "9" ) -[sub_resource type="StandardMaterial3D" id=11] +[sub_resource type="StandardMaterial3D" id="11"] albedo_color = Color(0.996078, 0.266667, 0.25098, 1) -[sub_resource type="BoxMesh" id=12] -material = SubResource( 11 ) -size = Vector3(1, 1, 1) +[sub_resource type="BoxMesh" id="12"] +material = SubResource( "11" ) -[sub_resource type="Font" id=13] -font_data = ExtResource( 3 ) +[sub_resource type="StandardMaterial3D" id="1"] +albedo_color = Color(0.6, 0.564706, 0.423529, 1) + +[sub_resource type="BoxMesh" id="2"] +material = SubResource( "1" ) +size = Vector3(16, 2, 16) + +[sub_resource type="StandardMaterial3D" id="3"] +albedo_color = Color(0.788235, 0.788235, 0.788235, 1) + +[sub_resource type="BoxMesh" id="4"] +material = SubResource( "3" ) +size = Vector3(4, 1.5, 4) + +[sub_resource type="ProceduralSkyMaterial" id="ProceduralSkyMaterial_1hqbf"] +sky_horizon_color = Color(0.64625, 0.65575, 0.67075, 1) +ground_horizon_color = Color(0.64625, 0.65575, 0.67075, 1) + +[sub_resource type="Sky" id="Sky_47fsp"] +sky_material = SubResource( "ProceduralSkyMaterial_1hqbf" ) + +[sub_resource type="Environment" id="Environment_ob0ys"] +background_mode = 2 +sky = SubResource( "Sky_47fsp" ) +tonemap_mode = 2 +glow_enabled = true [node name="Main" type="Node3D"] -[node name="Camera3D" type="Camera3D" parent="."] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 1, 8) -fov = 75.0 -script = ExtResource( 1 ) - -[node name="Ground" type="MeshInstance3D" parent="."] -transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, -1.5, 0) -mesh = SubResource( 2 ) -surface_material_override/0 = null - -[node name="WhiteCube" type="MeshInstance3D" parent="."] -mesh = SubResource( 4 ) -surface_material_override/0 = null - [node name="BlueCube" type="MeshInstance3D" parent="."] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 5, 0, -5) -mesh = SubResource( 6 ) -surface_material_override/0 = null +mesh = SubResource( "6" ) [node name="WaypointAnchor" type="Position3D" parent="BlueCube"] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0.5, 0) -[node name="Waypoint" parent="BlueCube/WaypointAnchor" instance=ExtResource( 2 )] +[node name="Waypoint" parent="BlueCube/WaypointAnchor" instance=ExtResource( "2" )] modulate = Color(0.501961, 0.764706, 1, 1) text = "Blue Waypoint" [node name="GreenCube" type="MeshInstance3D" parent="."] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 5, 0, 5) -mesh = SubResource( 8 ) -surface_material_override/0 = null +mesh = SubResource( "8" ) [node name="WaypointAnchor" type="Position3D" parent="GreenCube"] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0.5, 0) -[node name="Waypoint" parent="GreenCube/WaypointAnchor" instance=ExtResource( 2 )] +[node name="Waypoint" parent="GreenCube/WaypointAnchor" instance=ExtResource( "2" )] modulate = Color(0.419608, 1, 0.427451, 1) text = "Green Waypoint" [node name="YellowCube" type="MeshInstance3D" parent="."] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -5, 0, 5) -mesh = SubResource( 10 ) -surface_material_override/0 = null +mesh = SubResource( "10" ) [node name="WaypointAnchor" type="Position3D" parent="YellowCube"] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0.5, 0) -[node name="Waypoint" parent="YellowCube/WaypointAnchor" instance=ExtResource( 2 )] +[node name="Waypoint" parent="YellowCube/WaypointAnchor" instance=ExtResource( "2" )] modulate = Color(1, 0.992157, 0.419608, 1) text = "Yellow Waypoint (non-sticky)" sticky = false [node name="RedCube" type="MeshInstance3D" parent="."] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -5, 0, -5) -mesh = SubResource( 12 ) -surface_material_override/0 = null +mesh = SubResource( "12" ) [node name="WaypointAnchor" type="Position3D" parent="RedCube"] transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0.5, 0) -[node name="Waypoint" parent="RedCube/WaypointAnchor" instance=ExtResource( 2 )] +[node name="Waypoint" parent="RedCube/WaypointAnchor" instance=ExtResource( "2" )] modulate = Color(1, 0.466667, 0.427451, 1) text = "Red Waypoint" -[node name="DirectionalLight3D" type="DirectionalLight3D" parent="."] -transform = Transform3D(-0.642788, -0.383022, 0.663414, 0, 0.866025, 0.5, -0.766044, 0.321394, -0.556671, 0, 6, -9) -light_energy = 0.9 -shadow_enabled = true -shadow_bias = 0.06 -directional_shadow_blend_splits = true -directional_shadow_normal_bias = 0.0 -directional_shadow_bias_split_scale = 0.7 -directional_shadow_max_distance = 60.0 +[node name="Camera3D" type="Camera3D" parent="."] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 1, 8) +script = ExtResource( "1" ) [node name="Label" type="Label" parent="."] offset_left = 10.0 offset_top = 10.0 -offset_right = 50.0 -offset_bottom = 24.0 -custom_colors/font_color_shadow = Color(0, 0, 0, 0.501961) -custom_constants/shadow_offset_x = 1 -custom_constants/shadow_offset_y = 1 -custom_fonts/font = SubResource( 13 ) +offset_right = 325.0 +offset_bottom = 36.0 text = "Press Esc or F10 to toggle mouse capture" -__meta__ = { -"_edit_use_anchors_": false -} + +[node name="Ground" type="MeshInstance3D" parent="."] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, -1.5, 0) +mesh = SubResource( "2" ) + +[node name="WhiteCube" type="MeshInstance3D" parent="."] +mesh = SubResource( "4" ) + +[node name="Environment" type="WorldEnvironment" parent="."] +environment = SubResource( "Environment_ob0ys" ) + +[node name="Sun" type="DirectionalLight3D" parent="Environment"] +transform = Transform3D(-0.866025, -0.433013, 0.25, 0, 0.5, 0.866026, -0.5, 0.75, -0.433013, 0, 0, 0) +shadow_enabled = true +directional_shadow_max_distance = 250.0 diff --git a/3d/waypoints/noto_sans_regular.ttf.import b/3d/waypoints/noto_sans_regular.ttf.import new file mode 100644 index 00000000..7ee4283e --- /dev/null +++ b/3d/waypoints/noto_sans_regular.ttf.import @@ -0,0 +1,33 @@ +[remap] + +importer="font_data_dynamic" +type="FontData" +uid="uid://bvthc4p0nqt1r" +path="res://.godot/imported/noto_sans_regular.ttf-e8bec33260ad1aa067149f43e3e4ab21.fontdata" + +[deps] + +source_file="res://noto_sans_regular.ttf" +dest_files=["res://.godot/imported/noto_sans_regular.ttf-e8bec33260ad1aa067149f43e3e4ab21.fontdata"] + +[params] + +antialiased=true +multichannel_signed_distance_field=false +msdf_pixel_range=8 +msdf_size=48 +force_autohinter=false +hinting=1 +subpixel_positioning=1 +embolden=0.0 +transform=Transform2D(1, 0, 0, 1, 0, 0) +oversampling=0.0 +compress=true +opentype_feature_overrides={} +preload/char_ranges=PackedStringArray() +preload/glyph_ranges=PackedStringArray() +preload/configurations=PackedStringArray() +support_overrides/language_enabled=PackedStringArray() +support_overrides/language_disabled=PackedStringArray() +support_overrides/script_enabled=PackedStringArray() +support_overrides/script_disabled=PackedStringArray() diff --git a/3d/waypoints/project.godot b/3d/waypoints/project.godot index b7a913af..d150f0a9 100644 --- a/3d/waypoints/project.godot +++ b/3d/waypoints/project.godot @@ -6,7 +6,7 @@ ; [section] ; section goes between [] ; param=value ; assign values to parameters -config_version=4 +config_version=5 [application] @@ -14,6 +14,7 @@ config/name="3D Waypoints" config/description="This is an example of displaying GUI elements such as Labels in a 3D world, without relying on viewports. This results in better readability and performance for use cases such as showing player names." run/main_scene="res://main.tscn" config/icon="res://icon.png" +config/features=PackedStringArray("4.0") [display] diff --git a/3d/waypoints/waypoint.gd b/3d/waypoints/waypoint.gd index 6a6a395b..b0c584ca 100644 --- a/3d/waypoints/waypoint.gd +++ b/3d/waypoints/waypoint.gd @@ -11,8 +11,10 @@ const MARGIN = 8 # The waypoint's text. @export var text = "Waypoint": set(value): - # TODO: Manually copy the code from this method. - set_text(value) + text = value + # The label's text can only be set once the node is ready. + if is_inside_tree(): + label.text = value # If `true`, the waypoint sticks to the viewport's edges when moving off-screen. @export var sticky = true @@ -45,7 +47,7 @@ func _process(_delta): # `get_size_override()` will return a valid size only if the stretch mode is `2d`. # Otherwise, the viewport size is used directly. var viewport_base_size = ( - get_viewport().get_size_override() if get_viewport().get_size_override() > Vector2(0, 0) + get_viewport().content_scale_size if get_viewport().content_scale_size > Vector2i(0, 0) else get_viewport().size ) @@ -83,38 +85,30 @@ func _process(_delta): ) label.visible = true - rect_rotation = 0 + rotation = 0 # Used to display a diagonal arrow when the waypoint is displayed in # one of the screen corners. var overflow = 0 if position.x <= MARGIN: # Left overflow. - overflow = -45 + overflow = -TAU / 8.0 label.visible = false - rect_rotation = 90 + rotation = TAU / 4.0 elif position.x >= viewport_base_size.x - MARGIN: # Right overflow. - overflow = 45 + overflow = TAU / 8.0 label.visible = false - rect_rotation = 270 + rotation = TAU * 3.0 / 4.0 if position.y <= MARGIN: # Top overflow. label.visible = false - rect_rotation = 180 + overflow + rotation = TAU / 2.0 + overflow elif position.y >= viewport_base_size.y - MARGIN: # Bottom overflow. label.visible = false - rect_rotation = -overflow - - -func set_text(p_text): - text = p_text - - # The label's text can only be set once the node is ready. - if is_inside_tree(): - label.text = p_text + rotation = -overflow static func angle_diff(from, to): diff --git a/3d/waypoints/waypoint.svg.import b/3d/waypoints/waypoint.svg.import index cd3831e8..8dbb3a9d 100644 --- a/3d/waypoints/waypoint.svg.import +++ b/3d/waypoints/waypoint.svg.import @@ -1,8 +1,9 @@ [remap] importer="texture" -type="StreamTexture2D" -path="res://.godot/imported/waypoint.svg-de0ee5a99654d0ef48e907a9ea3ae741.stex" +type="CompressedTexture2D" +uid="uid://cgow8dqpnhb4h" +path="res://.godot/imported/waypoint.svg-de0ee5a99654d0ef48e907a9ea3ae741.ctex" metadata={ "vram_texture": false } @@ -10,26 +11,24 @@ metadata={ [deps] source_file="res://waypoint.svg" -dest_files=["res://.godot/imported/waypoint.svg-de0ee5a99654d0ef48e907a9ea3ae741.stex"] +dest_files=["res://.godot/imported/waypoint.svg-de0ee5a99654d0ef48e907a9ea3ae741.ctex"] [params] compress/mode=0 compress/lossy_quality=0.7 -compress/hdr_mode=0 +compress/hdr_compression=1 compress/bptc_ldr=0 compress/normal_map=0 -flags/repeat=0 -flags/filter=true -flags/mipmaps=true -flags/anisotropic=false -flags/srgb=2 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" process/fix_alpha_border=true process/premult_alpha=false -process/HDR_as_SRGB=false -process/invert_color=false process/normal_map_invert_y=false -stream=false -size_limit=0 -detect_3d=true +process/hdr_as_srgb=false +process/size_limit=0 +detect_3d/compress_to=1 svg/scale=1.0 diff --git a/3d/waypoints/waypoint.tscn b/3d/waypoints/waypoint.tscn index 4b11c73d..3554be17 100644 --- a/3d/waypoints/waypoint.tscn +++ b/3d/waypoints/waypoint.tscn @@ -1,29 +1,19 @@ -[gd_scene load_steps=5 format=2] +[gd_scene load_steps=3 format=3 uid="uid://deqpan4silm2n"] -[ext_resource path="res://waypoint.gd" type="Script" id=1] -[ext_resource path="res://waypoint.svg" type="Texture2D" id=2] -[ext_resource path="res://noto_sans_regular.ttf" type="FontData" id=3] - -[sub_resource type="Font" id=1] -font_data = ExtResource( 3 ) +[ext_resource type="Script" path="res://waypoint.gd" id="1"] +[ext_resource type="Texture2D" uid="uid://cgow8dqpnhb4h" path="res://waypoint.svg" id="2"] [node name="Waypoint" type="Control"] -script = ExtResource( 1 ) -__meta__ = { -"_edit_use_anchors_": false -} +script = ExtResource( "1" ) [node name="Label" type="Label" parent="."] offset_left = -200.0 offset_top = -40.0 offset_right = 200.0 offset_bottom = -17.0 -custom_colors/font_color_shadow = Color(0, 0, 0, 0.501961) -custom_constants/shadow_offset_x = 1 -custom_constants/shadow_offset_y = 1 -custom_fonts/font = SubResource( 1 ) text = "Waypoint" -align = 1 +horizontal_alignment = 1 +vertical_alignment = 1 __meta__ = { "_edit_use_anchors_": false } @@ -31,11 +21,12 @@ __meta__ = { [node name="Marker" type="TextureRect" parent="."] offset_left = -8.0 offset_top = -16.0 -offset_right = 120.0 -offset_bottom = 112.0 -rect_scale = Vector2(0.125, 0.125) -texture = ExtResource( 2 ) +offset_right = 8.0 +texture = ExtResource( "2" ) +ignore_texture_size = true __meta__ = { +"_edit_layout_mode": 0, "_edit_use_anchors_": false, +"_edit_use_custom_anchors": false, "_editor_description_": "An high-resolution texture is used and scaled down so the demo looks good at higher resolutions." } diff --git a/gui/sdf_font/sdf_font_demo.tscn b/gui/sdf_font/sdf_font_demo.tscn index 60d9d30d..184de5dc 100644 --- a/gui/sdf_font/sdf_font_demo.tscn +++ b/gui/sdf_font/sdf_font_demo.tscn @@ -6,7 +6,7 @@ length = 15.0 loop = true tracks/0/type = "value" -tracks/0/path = NodePath(".:rect_rotation") +tracks/0/path = NodePath(".:rotation") tracks/0/interp = 1 tracks/0/loop_wrap = true tracks/0/imported = false