From 7263a6eaf357b410afd2ca346030d24671ff9139 Mon Sep 17 00:00:00 2001 From: Dragos Daian Date: Wed, 24 Jan 2024 12:47:12 +0100 Subject: [PATCH] Provide example with apply force (#10) * upd * update * make more examples. Finally fix polygon weight/coloring * upd * upd * Update softbody2d.gd * update * update with multipoints * update --- addons/softbody2d/CHANGELOG.md | 109 - addons/softbody2d/softbody2d.gd | 583 +- addons/softbody2d/voronoi2d.gd | 105 +- demo/ApplyForceToSoftbody.gd | 7 + demo/BreakScript.gd | 17 + demo/demo.tscn | 28675 ++++++++++++++++----------- demo/pickable_rigidbody.gd | 6 +- demo/softbody2d_phys_bouncy.tres | 2 +- demo/softbody2d_phys_slippery.tres | 1 - demo/tutorial.tscn | 9492 +++++++++ project.godot | 2 +- 11 files changed, 27101 insertions(+), 11898 deletions(-) delete mode 100644 addons/softbody2d/CHANGELOG.md create mode 100644 demo/ApplyForceToSoftbody.gd create mode 100644 demo/BreakScript.gd create mode 100644 demo/tutorial.tscn diff --git a/addons/softbody2d/CHANGELOG.md b/addons/softbody2d/CHANGELOG.md deleted file mode 100644 index 660f708..0000000 --- a/addons/softbody2d/CHANGELOG.md +++ /dev/null @@ -1,109 +0,0 @@ -# Changelog - -## [v1.6.2](https://github.com/Ughuuu/godot-4-softbody2d/releases/tag/v1.6.2) - -- Hide some items so speed is better in editor(skeleton and remote transform) - -## [v1.6](https://github.com/Ughuuu/godot-4-softbody2d/releases/tag/v1.6) - -- Update to support angular limits (Godot 4.2) - -## [v1.5.5](https://github.com/Ughuuu/godot-4-softbody2d/releases/tag/v1.5.5) - -- Fix issue where the addon icon would be too small. - -## [v1.5.4](https://github.com/Ughuuu/godot-4-softbody2d/releases/tag/v1.5.4) - -- Fix issue where sofbody didn't get refreshed - -## [v1.5.3](https://github.com/Ughuuu/godot-4-softbody2d/releases/tag/v1.5.3) - -- Add joint property both ways(create 1 or 2 joints for each rigdbody) -- Fix errors when editing softbody and not updating. - -## [v1.5.2](https://github.com/Ughuuu/godot-4-softbody2d/releases/tag/v1.5.2) - -- Make rigidbody configuration be without script but with scene instead. - -## [v1.5.1](https://github.com/Ughuuu/godot-4-softbody2d/releases/tag/v1.5.1) - -- Fix lookat for case of breaking rigidbodies -- Remove breakable_rigidbody script, instead do all logic on SoftBody2D script - -## [v1.5](https://github.com/Ughuuu/godot-4-softbody2d/releases/tag/v1.5) - -- Add `exclude_texture` to support hollow softbodies. -- Remove `soft_center` as it makes physics simulation unstable -- Remove `look_at_center` -- Add `SkeletonModification2DLookAt` and remove `LookAtCenter2D` script -- Remove `bake` and `clear` options and only allow baking if you change a property - -## [v1.4](https://github.com/Ughuuu/godot-4-softbody2d/releases/tag/v1.4) - -- Add `rest_length_ratio` and `length_ratio`, useful to set rest_length and length of damped spring based on the distance between bones. This number is multiplied with that distance. - -## [v1.3](https://github.com/Ughuuu/godot-4-softbody2d/releases/tag/v1.3) - -- Add license to exported addons also - -## [v1.2](https://github.com/Ughuuu/godot-4-softbody2d/releases/tag/v1.2) - -- Fix problem that would happen when cutting and vertices would remain -- Add realtime updates to softbody - -## [v1.1](https://github.com/Ughuuu/godot-4-softbody2d/releases/tag/v1.1) - -- Fix center calculation -- Add square as shape type -- Fix look_at_center if it's connected to only 2 shapes - -## [v1.0](https://github.com/Ughuuu/godot-4-softbody2d/releases/tag/v1.0) - -- Add soft_on_inside propert. This makes them look more squishy. -- Add look_at_center option. This makes them look more natural, if you don't need breakable objects. - -## [v0.9](https://github.com/Ughuuu/godot-4-softbody2d/releases/tag/v0.9) - -- Update documentation. -- Remove video recording from repo so that it has less mb. -- Only export addons folder to asset store. - -## [v0.8.1](https://github.com/Ughuuu/godot-4-softbody2d/releases/tag/v0.8.1) - -- Update some default params in scene. - -## [v0.8](https://github.com/Ughuuu/godot-4-softbody2d/releases/tag/v0.8) - -- Fix issue that occured when breaking softbody and bone wouldn't look in correct direction. Also improved how bones look for direction in general. - -## [v0.7](https://github.com/Ughuuu/godot-4-softbody2d/releases/tag/v0.7) - -- Use also PinJoin2D for joints to obtain more bouncy softbodies. Also let option to generate with old SpringJoint. - -## [v0.6](https://github.com/Ughuuu/godot-4-softbody2d/releases/tag/v0.6) - -- Change how softbodies are generated. Use voronoi for generating polygons, then store polygons for each bone. This is used for cutting softbodies. -- There is now option to cut softbodies, making them breakable. This is done by adding breakable_rigidboy2d.gd script(you can also extend it). Still wip. - -## [v0.5](https://github.com/Ughuuu/godot-4-softbody2d/releases/tag/v0.5) - -- Create just one script, SoftBody2D that you can put on a Polygon2D that generates all nodes below. - -## v0.4 - UNRELEASED - -- Fix bug where if object is rotated weight generation isn't correct. - -## [v0.3](https://github.com/Ughuuu/godot-4-softbody2d/releases/tag/v0.3) - -- Add more tips on how to get a good simulation -- Fix case where if root object is rotated, generation doesn't work. - -## [v0.2](https://github.com/Ughuuu/godot-4-softbody2d/releases/tag/v0.2) - -- Fix bug with version 4.0 RC3. -- Add more options, make defaults more stable. -- Add more docs on how to use. - -## v0.1 - UNRELEASED - -- Initial Release diff --git a/addons/softbody2d/softbody2d.gd b/addons/softbody2d/softbody2d.gd index b0b9961..97dee5f 100644 --- a/addons/softbody2d/softbody2d.gd +++ b/addons/softbody2d/softbody2d.gd @@ -15,13 +15,26 @@ class_name SoftBody2D ## Called after a joint is removed. signal joint_removed(rigid_body_a: SoftBodyChild, rigid_body_b: SoftBodyChild) +#region Properties + func _set(property, value): if property == "texture": - texture = value + texture = value as Texture2D + vertex_interval = texture.get_size().length() / 10 create_softbody2d() return true return false +func _get_configuration_warnings(): + if texture == null: + return ["No texture set."] + if get_child_count() == 0: + return ["No rigidbodies created. Check the vertex_interval to be lower than texture size."] + if !get_node_or_null(skeleton): + return ["Skeleton2D empty."] + return [] + + ## Draw regions of edge polygon.[br] ## 1a. Creates edge vertices from texture.[br] ## 1b. Creates multiple voronoi regions with roughly same total size as the edge vertices AABB.[br] @@ -36,83 +49,17 @@ func _set(property, value): return draw_regions ## Distance between internal vertices -@export_range(10, 50, 1, "or_greater") var vertex_interval := 30: +@export_range(0.1, 50, 1, "or_greater") var vertex_interval := 30: set (value): if vertex_interval == value: return vertex_interval = value + radius = value - value * 0.2 create_softbody2d() get: return vertex_interval -## Sets the [member Shape2D size]. -@export_range(2, 50, 1, "or_greater") var radius := 20 : - set (value): - if radius == value: - return - radius = value - for body in get_rigid_bodies(): - var shape = body.shape - if shape_type == "Circle": - shape.shape.radius = radius / 2.0 - elif shape_type == "Rectangle": - shape.shape.size = Vector2(radius, radius) - else: - push_error("Wrong shape used for shape_type. " + shape_type) - get: - return radius - -## Sets the total mass. Each rigidbody will have some [member RigidBody2D.mass] totaling this amount. -@export_range(0.01, 100, 0.1, "or_greater") var total_mass := 1.0 : - set (value): - if total_mass == value: - return - total_mass = value - _update_bodies_mass() - get: - return total_mass -## Sets the gravity scale. Each rigidbody will have [member RigidBody2D.gravity_scale] set to this amount. -@export_range(-1, 1, 0.01) var gravity_scale := 1.0 : - set (value): - if gravity_scale == value: - return - gravity_scale = value - for body in get_rigid_bodies(): - if "gravity_scale" in body.rigidbody: - body.rigidbody.gravity_scale = gravity_scale - get: - return gravity_scale -## What kind of shape to create for each rigidbody. -@export_enum("Circle", "Rectangle") var shape_type:= "Circle" : - set (value): - if shape_type == value: - return - shape_type = value - for body in get_rigid_bodies(): - var shape = body.shape - if shape_type == "Circle": - shape.shape = CircleShape2D.new() - shape.shape.resource_local_to_scene = true - shape.shape.radius = radius / 2.0 - elif shape_type == "Rectangle": - shape.shape = RectangleShape2D.new() - shape.shape.resource_local_to_scene = true - shape.shape.size = Vector2(radius, radius) - else: - push_error("Wrong shape used for shape_type") - get: - return shape_type -## If this is greater than 0, the softbody will be breakable. This number is multiplied by [member SoftBody2D.vertex_interval] -@export_range(0, 2, 0.1, "or_greater") var break_distance_ratio:= 0.0 -## Create softbody with holes -@export var exclude_texture: Texture2D: - set (value): - if exclude_texture == value: - return - exclude_texture = value - create_softbody2d() - get: - return exclude_texture +@export_group("Collision") ## Sets the [member PhysicsBody2D.collision_layer]. @export_flags_2d_physics var collision_layer := 1 : set (value): @@ -133,18 +80,21 @@ func _set(property, value): body.rigidbody.collision_mask = collision_mask get: return collision_mask -## A custom rigidbody scene from which to create the rigidbody. Useful if you want to have custom rigidbodies with custom scripts. -@export var rigidbody_scene: PackedScene : + +#endregion + +#region Image +## Properties that relate to the image used to generate the polygon +@export_group("Image") +## Create softbody with holes +@export var exclude_texture: Texture2D: set (value): - if rigidbody_scene == value: + if exclude_texture == value: return - rigidbody_scene = value + exclude_texture = value create_softbody2d() get: - return rigidbody_scene -#region Image -## Properties that relate to the image used to generate the polygon -@export_group("Image") + return exclude_texture ## Epsilon for making polygon from texture. Smaller value results in more accurate result, but more vertices @export_range(0.1, 50, 0.01, "or_greater") var texture_epsilon := 1: set (value): @@ -178,32 +128,6 @@ func _set(property, value): ## Properties that relate to the generated polygon. @export_group("Polygon") -## Maximum amount of rigidbodies to create. If it creates more than these, pushes an error. -@export var max_regions := 200: - set (value): - if max_regions == value: - return - max_regions = value - get: - return max_regions -## Random seed for generation of voronoi regions -@export var voronoi_rand_seed : int= 0: - set (value): - if voronoi_rand_seed == value: - return - voronoi_rand_seed = value - create_softbody2d() - get: - return voronoi_rand_seed -## How far randomly should the points move. -@export_range(0, 0.5, 0.05) var voronoi_interval:= 0.01: - set (value): - if voronoi_interval == value: - return - voronoi_interval = value - create_softbody2d() - get: - return voronoi_interval ## Offset from Texture Center for the polygon. Use this if some rigidbodies are positioned weirdly. @export var polygon_offset := Vector2(): set (value): @@ -214,7 +138,7 @@ func _set(property, value): get: return polygon_offset ## Minimum area of a region that was cut. If it's less than this, it will be added to another region close to it. -@export_range(0.01, 1, 0.01) var min_area:= 0.3: +@export_range(0.01, 1, 0.01) var min_area:= 0.35: set (value): if min_area == value: return @@ -223,6 +147,8 @@ func _set(property, value): get: return min_area +const MAX_REGIONS := 200 + #endregion #region Joint @@ -239,15 +165,6 @@ func _set(property, value): create_softbody2d() get: return joint_both_ways -## Maximum distance ratio until to create joints multiplied by [member SoftBody2D.vertex_interval] -@export_range(0.1, 2, 0.01, "or_greater") var max_joint_distance_ratio : float = 1.1: - set (value): - if max_joint_distance_ratio == value: - return - max_joint_distance_ratio = value - create_softbody2d() - get: - return max_joint_distance_ratio ## The joint type. Pin yields a more sturdy softbody, and uses [PinJoint2D], while sprint a more soft one, and uses [DampedSpringJoint2D]. @export_enum("pin", "spring") var joint_type:= "pin": set (value): @@ -343,61 +260,112 @@ func _set(property, value): joint.softness = softness get: return softness -## Relevant only if you picked [member SoftBody2D.joint_type] = "pin". Sets the [member PinJoint2D.angular_limit_enabled] property of the joint. -@export var angular_limit_enabled := false : + +#endregion + +#region RigidBody + +## Properties that change every rigidbody created for this softbody. +@export_group("RigidBody") +## Sets the [member Shape2D size]. +@export_range(2, 50, 1, "or_greater") var radius := 20 : set (value): - if angular_limit_enabled == value: + if radius == value: return - angular_limit_enabled = value + radius = value for body in get_rigid_bodies(): - for joint in body.joints: - if joint is PinJoint2D: - if "angular_limit_enabled" in joint: - joint.angular_limit_enabled = angular_limit_enabled + var shape = body.shape + if shape_type == "Circle": + shape.shape.radius = radius / 2.0 + elif shape_type == "Rectangle": + shape.shape.size = Vector2(radius, radius) + else: + push_error("Wrong shape used for shape_type. " + shape_type) get: - return angular_limit_enabled -## Relevant only if you picked [member SoftBody2D.joint_type] = "pin". Sets the [member PinJoint2D.angular_limit_lower] property of the joint. -@export_range(-180,180,0.001, "radians_as_degrees") var angular_limit_lower :float= 0 : + return radius + +## Sets the total mass. Each rigidbody will have some [member RigidBody2D.mass] totaling this amount. +@export_range(0.01, 100, 0.1, "or_greater") var total_mass := 1.0 : set (value): - if angular_limit_lower == value: + if total_mass == value: + return + total_mass = value + if !get_node_or_null(skeleton): + push_warning("Skeleton2D not created") return - angular_limit_lower = value for body in get_rigid_bodies(): - for joint in body.joints: - if joint is PinJoint2D: - if "angular_limit_lower" in joint: - joint.angular_limit_lower = angular_limit_lower + if "mass" in body.rigidbody: + body.rigidbody.mass = total_mass / get_rigid_bodies().size() get: - return angular_limit_lower -## Relevant only if you picked [member SoftBody2D.joint_type] = "pin". Sets the [member PinJoint2D.angular_limit_upper] property of the joint. -@export_range(-180,180,0.001, "radians_as_degrees")var angular_limit_upper :float= 0 : + return total_mass +## Sets the gravity scale. Each rigidbody will have [member RigidBody2D.gravity_scale] set to this amount. +@export_range(-1, 1, 0.01) var gravity_scale := 1.0 : set (value): - if angular_limit_upper == value: + if gravity_scale == value: return - angular_limit_upper = value + gravity_scale = value for body in get_rigid_bodies(): - for joint in body.joints: - if joint is PinJoint2D: - if "angular_limit_upper" in joint: - joint.angular_limit_upper = angular_limit_upper + if "gravity_scale" in body.rigidbody: + body.rigidbody.gravity_scale = gravity_scale get: - return angular_limit_upper -#endregion + return gravity_scale -#region RigidBody +## Sets the constant force. Each rigidbody will have [member RigidBody2D.constant_force] set to this amount. +@export var constant_force := Vector2() : + set (value): + if constant_force == value: + return + constant_force = value + for body in get_rigid_bodies(): + if "constant_force" in body.rigidbody: + body.rigidbody.constant_force = constant_force + get: + return constant_force -## Properties that change every rigidbody created for this softbody. -@export_group("RigidBody") +## Sets the constant torque. Each rigidbody will have [member RigidBody2D.constant_torque] set to this amount. +@export var constant_torque := 0.0 : + set (value): + if constant_torque == value: + return + constant_torque = value + for body in get_rigid_bodies(): + if "constant_torque" in body.rigidbody: + body.rigidbody.constant_torque = constant_torque + get: + return constant_torque -func _update_bodies_mass(): - if !get_node_or_null(skeleton): - push_warning("Skeleton2D not created") - return - var bones = get_node_or_null(skeleton).get_children() - var polygon_limits = _calculate_polygon_limits() - for body in get_rigid_bodies(): - if "mass" in body.rigidbody: - body.rigidbody.mass = total_mass / get_rigid_bodies().size() +## What kind of shape to create for each rigidbody. +@export_enum("Circle", "Rectangle") var shape_type:= "Circle" : + set (value): + if shape_type == value: + return + shape_type = value + for body in get_rigid_bodies(): + var shape = body.shape + if shape_type == "Circle": + shape.shape = CircleShape2D.new() + shape.shape.resource_local_to_scene = true + shape.shape.radius = radius / 2.0 + elif shape_type == "Rectangle": + shape.shape = RectangleShape2D.new() + shape.shape.resource_local_to_scene = true + shape.shape.size = Vector2(radius, radius) + else: + push_error("Wrong shape used for shape_type") + get: + return shape_type +## If this is greater than 0, the softbody will be breakable. This number is multiplied by [member SoftBody2D.vertex_interval] +@export_range(0, 2, 0.1, "or_greater") var break_distance_ratio:= 0.0 + +## A custom rigidbody scene from which to create the rigidbody. Useful if you want to have custom rigidbodies with custom scripts. +@export var rigidbody_scene: PackedScene : + set (value): + if rigidbody_scene == value: + return + rigidbody_scene = value + create_softbody2d() + get: + return rigidbody_scene ## Sets the [member RigidBody2D.physics_material_override]. @export var physics_material_override: PhysicsMaterial : @@ -412,6 +380,8 @@ func _update_bodies_mass(): #endregion +#region CreateSoftbody + ## Create debug regions. Good to visualize how softbody regions will look in the end func create_regions(): var voronoi_regions = _create_polygon2d() @@ -429,7 +399,6 @@ func create_regions(): voronoi_node.set_owner(get_tree().get_edited_scene_root()) voronoi_node.draw_voronoi(voronoi_regions[0]) - ## Call this to create a new softbody at runtime. func create_softbody2d(): # At runtime if we already have skeleton, don't create it. @@ -442,12 +411,12 @@ func create_softbody2d(): var voronoi = _create_polygon2d() if (!voronoi || voronoi[0].is_empty()): return - var skeleton2d = _construct_skeleton2d(voronoi[0], voronoi[1]) - _create_rigidbodies2d(skeleton2d) - _update_soft_body_rigidbodies(skeleton2d) + var skeleton2d_and_connected_bones = _construct_skeleton2d(voronoi[0], voronoi[1]) + _create_rigidbodies2d(skeleton2d_and_connected_bones[0], skeleton2d_and_connected_bones[1]) + _update_soft_body_rigidbodies(skeleton2d_and_connected_bones[0]) + ## Call this to clear all children, polygons and bones. - func clear_softbody2d(): _clear_polygon() for child in get_children(): @@ -462,6 +431,8 @@ func _clear_polygon(): uv.clear() internal_vertex_count = 0 +#endregion + #region Create Polygon func _create_polygon2d(): @@ -473,12 +444,15 @@ func _create_polygon2d(): set_uv(PackedVector2Array([])) return _create_internal_vertices() -func _create_external_vertices_from_texture(texture): - var bitmap = BitMap.new() +func _create_external_vertices_from_texture(texture, inside = true) -> PackedVector2Array: + var bitmap := BitMap.new() bitmap.create_from_image_alpha(texture.get_image(), min_alpha) var rect = Rect2(0, 0, texture.get_width(), texture.get_height()) if margin_pixels != 0: - bitmap.grow_mask(margin_pixels, rect) + if inside: + bitmap.grow_mask(margin_pixels, rect) + else: + bitmap.grow_mask(-margin_pixels, rect) var poly = bitmap.opaque_to_polygons(rect, texture_epsilon) if poly.is_empty(): push_error("Could not generate polygon outline") @@ -493,7 +467,7 @@ func _create_external_vertices_from_texture(texture): poly[0] = resulting_poly if poly[0].is_empty(): push_error("Resulting polygon is empty") - return PackedVector2Array(poly[0]) + return poly[0] func _create_internal_vertices(): var polygon_verts = _get_polygon_verts() @@ -516,29 +490,33 @@ func _generate_points_voronoi(lim_min: Vector2, lim_max: Vector2, polygon_verts) var polygon_size = lim_max - lim_min var polygon_num = Vector2(int(polygon_size.x / vertex_interval), int(polygon_size.y / vertex_interval)) var voronoi = Voronoi2D.generate_voronoi(polygon_size * 1.2, vertex_interval, \ - lim_min + polygon_offset, voronoi_interval, voronoi_rand_seed) + lim_min + polygon_offset) var polygons = [] var new_voronoi: Array[Voronoi2D.VoronoiRegion2D] var voronoi_regions_to_move = [] var exclude_polygon = PackedVector2Array([]) # read exclude polygon if exclude_texture: - exclude_polygon = _create_external_vertices_from_texture(exclude_texture) + exclude_polygon = _create_external_vertices_from_texture(exclude_texture, false) # find out what regions to remove for region_idx in len(voronoi): var each: Voronoi2D.VoronoiRegion2D = voronoi[region_idx] - var total_area := _polygon_area(each.polygon_points[0]) - var is_middle_inside = _is_point_in_area(each.fixed_center, polygon_verts, 1.1) + var total_area := 0.01 + for polygon_point in each.polygon_points: + total_area += _polygon_area(polygon_point) # initially the intersect is the starting polygon - var intersect: Array[PackedVector2Array] = each.polygon_points - var is_inside = true + var intersect: Array[PackedVector2Array] # if there is a point not inside the polygon vertices, cut it. # it may result in multiple polygons - for polygon_vert in each.polygon_points[0]: - if not _is_point_in_area(polygon_vert, polygon_verts, 1.1): - is_inside = false - intersect = Geometry2D.intersect_polygons(polygon_verts, each.polygon_points[0]) - break + for voronoi_polygon in each.polygon_points: + var added := false + for polygon_vert in voronoi_polygon: + if not _is_point_in_area(polygon_vert, polygon_verts, 1.01): + intersect.append_array(Geometry2D.intersect_polygons(polygon_verts, voronoi_polygon)) + added = true + break + if !added: + intersect.append(voronoi_polygon) # exclude eclude_polygon part var new_intersect_poly: Array[PackedVector2Array] for intersect_poly in intersect: @@ -553,9 +531,11 @@ func _generate_points_voronoi(lim_min: Vector2, lim_max: Vector2, polygon_verts) var cut_area := 0.0 for intersected in intersect: cut_area += _polygon_area(intersected) + var is_middle_inside = _is_point_in_area(each.fixed_center, polygon_verts, 1.1) # if area of polygon is too smal, move it to another region if cut_area / total_area < min_area || !is_middle_inside: voronoi_regions_to_move.append(new_voronoi.size() - 1) + # move regions first for region_to_move in voronoi_regions_to_move: var dist := -1.0 @@ -581,8 +561,8 @@ func _generate_points_voronoi(lim_min: Vector2, lim_max: Vector2, polygon_verts) var new_vert = get_polygon() var bone_vert_arr = [] var in_vert_count = 0 - if new_voronoi.size() > max_regions: - push_error("Too many regions. Current max_regions is " + str(max_regions) + ", total current regions " + str(new_voronoi.size()) + ". Increase the vertex_interval or max_regions.") + if new_voronoi.size() > MAX_REGIONS: + push_error("Too many regions. Current max_regions is " + str(MAX_REGIONS) + ", total current regions " + str(new_voronoi.size()) + ". Increase the vertex_interval.") new_voronoi = [] for each in new_voronoi: # multiple polygons @@ -643,7 +623,7 @@ func _calculate_polygon_limits() -> Array[Vector2]: lim_max.y = point.y return [lim_min, lim_max] -func _is_point_in_area(point: Vector2, polygon_verts: PackedVector2Array, scale_amount := 1.1) -> bool: +func _is_point_in_area(point: Vector2, polygon_verts: PackedVector2Array, scale_amount := 1.01) -> bool: var scaled_poly = polygon_verts.duplicate() var center = Vector2() for vert in polygon_verts: @@ -653,6 +633,26 @@ func _is_point_in_area(point: Vector2, polygon_verts: PackedVector2Array, scale_ scaled_poly[i] = (scaled_poly[i] - center) * scale_amount + center return Geometry2D.is_point_in_polygon(point, scaled_poly) +func _distance_from_point_to_polygon(point: Vector2, polygon_verts: PackedVector2Array): + var min_dist:= -1.0 + for i in len(polygon_verts): + var p1 = polygon_verts[i] + var p2 = polygon_verts[(i+1)%len(polygon_verts)] + var r = (p2 - p1).dot(point - p1) + r /= (p2 - p1).length() ** 2 + var dist = -1 + if r < 0: + dist = (point - p1).length() + elif r > 1: + dist = (p2 - point).length() + else: + dist = sqrt((point - p1).length_squared() - (r * (p2-p1)).length_squared()) + if min_dist < 0: + min_dist = dist + if dist > 0 && min_dist > dist: + min_dist = dist + return min_dist + func _triangulate_polygon(polygon: PackedVector2Array, polygon_verts: PackedVector2Array, offset:= 0, validate_inside:= false): var points = Array(Geometry2D.triangulate_polygon(polygon)) var polygons = [] @@ -691,7 +691,7 @@ func _create_skeleton() -> Skeleton2D: clear_bones() return skeleton2d -func _construct_skeleton2d(voronoi: Array, bone_vert_arr) -> Skeleton2D: +func _construct_skeleton2d(voronoi: Array[Voronoi2D.VoronoiRegion2D], bone_vert_arr) -> Array: var skeleton_nodes = get_children().filter(func (node): return node is Skeleton2D) var skeleton2d : Skeleton2D if len(skeleton_nodes) == 0: @@ -705,7 +705,8 @@ func _construct_skeleton2d(voronoi: Array, bone_vert_arr) -> Skeleton2D: skeleton2d.remove_child(child) clear_bones() var bones = _create_bones(voronoi) - var weights = _generate_weights(bones, voronoi, bone_vert_arr) + var weights_and_connected_nodes = _generate_weights(bones, voronoi, bone_vert_arr) + var weights = weights_and_connected_nodes[0] var bone_count = skeleton2d.get_bone_count() for bone_index in len(bones): var bone : Bone2D = bones[bone_index] @@ -714,9 +715,9 @@ func _construct_skeleton2d(voronoi: Array, bone_vert_arr) -> Skeleton2D: add_bone(NodePath(bone.name), PackedFloat32Array(weights[bone_index])) if Engine.is_editor_hint(): bone.set_owner(get_tree().get_edited_scene_root()) - return skeleton2d + return [skeleton2d, weights_and_connected_nodes[1]] -func _create_bones(voronoi: Array) -> Array[Bone2D]: +func _create_bones(voronoi: Array[Voronoi2D.VoronoiRegion2D]) -> Array[Bone2D]: var bones: Array[Bone2D] = [] var polygon_limits = _calculate_polygon_limits() var polygon_verts = _get_polygon_verts() @@ -761,29 +762,39 @@ func _generate_weights(bones: Array[Bone2D], voronoi, bone_vert_arr): for bone_index in bone_count: for point_idx in bone_vert_arr[bone_index]: weights[bone_index][point_idx] = 1 + var bone_connections := [] + for bone_index in bone_count: + bone_connections.append({}) # Set weights to regions close to the bone also + # One point should be pulled on at most 2 bones for point_index in points_size: - var point = polygon[point_index] - var bones_data = [] - var dist_sum : float = 0 + var point := polygon[point_index] + var bones_connected_to_point := [] for bone_index in bone_count: for poly in voronoi[bone_index].polygon_points: - if _is_point_in_area(point, poly, max_joint_distance_ratio): - weights[bone_index][point_index] = 0.7 - return weights + for poly_point in poly: + if point.distance_squared_to(poly_point) < 2: + bones_connected_to_point.append(bone_index) + weights[bone_index][point_index] = 1 + # connect all bones connected to this point to each other + for bone_connected_to_point in bones_connected_to_point: + for other_bone_connected_to_point in bones_connected_to_point: + if bone_connected_to_point != other_bone_connected_to_point: + bone_connections[bone_connected_to_point][other_bone_connected_to_point] = true + return [weights, bone_connections] #endregion #region Create Rigidbody -func _create_rigidbodies2d(skeleton: Skeleton2D): +func _create_rigidbodies2d(skeleton: Skeleton2D, connected_bones: Array): for child in get_children(): if not child is Skeleton2D: remove_child(child) child.queue_free() var rigidbodies := _add_rigid_body_for_bones(skeleton) - _generate_joints(rigidbodies) + _generate_joints(rigidbodies, connected_bones) func _add_rigid_body_for_bones(skeleton: Skeleton2D) -> Array[RigidBody2D]: var bones = skeleton.get_children() @@ -801,8 +812,11 @@ func _add_rigid_body_for_bones(skeleton: Skeleton2D) -> Array[RigidBody2D]: else: push_error("Wrong shape used for shape_type") shape.resource_local_to_scene = true + var idx := 0 for bone in bones: var rigid_body = _create_rigid_body(skeleton, bone, total_mass / bones.size(), bone == follow, shape) + rigid_body.set_meta("idx", idx) + idx += 1 rigid_body.set_meta("bone_name", bone.name) rigidbodies.append(rigid_body) return rigidbodies @@ -819,6 +833,8 @@ func _create_rigid_body(skeleton: Skeleton2D, bone: Bone2D, mass, is_center: boo collision_shape.name = shape_type + "Shape2D" rigid_body.mass = mass rigid_body.gravity_scale = gravity_scale + rigid_body.constant_torque = constant_torque + rigid_body.constant_force = constant_force rigid_body.global_position = skeleton.transform * bone.position rigid_body.physics_material_override = physics_material_override rigid_body.add_child(collision_shape) @@ -845,35 +861,34 @@ func _create_rigid_body(skeleton: Skeleton2D, bone: Bone2D, mass, is_center: boo #region Create Joint -func _generate_joints(rigid_bodies: Array[RigidBody2D]): +func _generate_joints(rigid_bodies: Array[RigidBody2D], connected_bones: Array): var bones = get_node_or_null(skeleton).get_children() var connected_nodes_paths = [] + var connected_nodes_idx = [] var connected_nodes = [] for _i in bones.size(): connected_nodes_paths.append([]) + connected_nodes_idx.append([]) connected_nodes.append([]) for idx_a in len(rigid_bodies): var node_a := rigid_bodies[idx_a] - for idx_b in len(rigid_bodies): + for idx_b in connected_bones[idx_a].keys(): # only create joint once if idx_b > idx_a && !joint_both_ways: continue var node_b := rigid_bodies[idx_b] - if node_a == node_b or \ - node_a.global_position.distance_to(node_b.global_position) > vertex_interval * scale.length() * max_joint_distance_ratio: + if node_a == node_b: continue connected_nodes_paths[idx_a].append(NodePath(bones[idx_b].name)) + connected_nodes_idx[idx_a].append(idx_b) connected_nodes[idx_a].append(node_b) if joint_type == "pin": var joint = PinJoint2D.new() + joint.visible = false joint.name = "Joint2D-"+node_a.name+"-"+node_b.name joint.node_a = ".." joint.node_b = "../../" + node_b.name joint.softness = softness - if "angular_limit_enabled" in joint: - joint.angular_limit_enabled = angular_limit_enabled - joint.angular_limit_lower = angular_limit_lower - joint.angular_limit_upper = angular_limit_upper joint.disable_collision = disable_collision joint.look_at(node_b.global_position) joint.rotation = node_a.position.angle_to_point(node_b.position) - PI/2 @@ -884,6 +899,7 @@ func _generate_joints(rigid_bodies: Array[RigidBody2D]): joint.set_owner(get_tree().get_edited_scene_root()) else: var joint = DampedSpringJoint2D.new() + joint.visible = false joint.name = "Joint2D-"+node_a.name+"-"+node_b.name joint.node_a = ".." joint.node_b = "../../" + node_b.name @@ -909,7 +925,7 @@ func _generate_joints(rigid_bodies: Array[RigidBody2D]): skeleton_modification.bone2d_node = NodePath(bones[i].name) skeleton_modification.resource_local_to_scene = true skeleton_modification.set_editor_draw_gizmo(false) - _update_bone_lookat(skeleton_node, skeleton_modification, bones[i], connected_nodes_paths[i], i) + _update_bone_lookat(skeleton_node, skeleton_modification, bones[i], connected_nodes_paths[i], i, true) bones[i].set_rest(bones[i].transform) skeleton_modification_stack.add_modification(skeleton_modification) @@ -919,23 +935,32 @@ func _generate_joints(rigid_bodies: Array[RigidBody2D]): skeleton_node.set_modification_stack(skeleton_modification_stack) for i in bones.size(): + bones[i].set_meta("idx", i) bones[i].set_meta("connected_nodes_paths", connected_nodes_paths[i]) + bones[i].set_meta("connected_nodes_idx", connected_nodes_idx[i]) -func _update_bone_lookat(skeleton_node: Skeleton2D, skeleton_modification :SkeletonModification2DLookAt, bone: Bone2D, connected_nodes_paths, bone_idx: int): +func _update_bone_lookat(skeleton_node: Skeleton2D, skeleton_modification :SkeletonModification2DLookAt, bone: Bone2D, connected_nodes_paths, bone_idx: int, initiate_step: bool = false): if connected_nodes_paths.is_empty(): - push_warning("Softbody" + name +" bone has no node to look at") - return - var node_lookat = skeleton_node.get_node(connected_nodes_paths[connected_nodes_paths.size()/2]) - + skeleton_modification.enabled = false + push_warning("Softbody" + name + " bone has no node to look at") + # Hide this particle probably + # TODO also deactivate it. + create_tween().tween_property(bone, "scale", Vector2(), 1)#.finished.connect(func(): bone.process_mode = Node.PROCESS_MODE_DISABLED) + return false + var node_lookat = skeleton_node.get_node(connected_nodes_paths[floor(connected_nodes_paths.size()/2)]) + var prev_rotation = bone.rotation bone.look_at(node_lookat.global_position) + if !initiate_step: + skeleton_modification.set_additional_rotation(prev_rotation - bone.rotation) skeleton_node.set_bone_local_pose_override(bone_idx, bone.get_transform(), 1, true) - skeleton_modification.target_nodepath = connected_nodes_paths[connected_nodes_paths.size()/2] + skeleton_modification.target_nodepath = connected_nodes_paths[floor(connected_nodes_paths.size()/2)] + return true #endregion # used internally, computed at _ready once -var _bones_array +var _bones_array: Array[Bone2D] var _skeleton_node: Skeleton2D var _soft_body_rigidbodies_array: Array[SoftBodyChild] var _soft_body_rigidbodies_dict: Dictionary @@ -949,11 +974,17 @@ var _hinges_distances_squared := Dictionary() func _ready(): if Engine.is_editor_hint(): return + _update_vars() + +func _update_vars(): _skeleton_node = get_node_or_null(skeleton) if get_child_count() == 0 || !_skeleton_node: push_warning("Softbody2d not created") return - _bones_array = _skeleton_node.get_children().filter(func(node): return node is Bone2D) + var bone_nodes := _skeleton_node.get_children().filter(func(node): return node is Bone2D) + _bones_array.clear() + for bone in bone_nodes: + _bones_array.append(bone as Bone2D) _update_soft_body_rigidbodies(_skeleton_node) # This is needed for breaking the rigidbody for rigid_body in get_rigid_bodies(): @@ -963,9 +994,11 @@ func _ready(): _hinges_bodies[joint.node_b] = get_node(joint.node_b.get_concatenated_names().substr(4)) as PhysicsBody2D _hinges_distances_squared[joint.name] = _hinges_bodies[rigid_body.rigidbody.name].global_position.distance_squared_to(_hinges_bodies[joint.node_b].global_position) + #region Public API class SoftBodyChild: + var is_outside_facing: bool var rigidbody: PhysicsBody2D var bone: Bone2D var joints: Array[Joint2D] @@ -974,19 +1007,18 @@ class SoftBodyChild: ## Remove joint between bone_a_name and bone_b_name. Useful if you want to make breakable softbodies.[br] ## This also handles recreating the polygon, updating the bones to look at the right target and the weights of polygons. func remove_joint(rigid_body_child: SoftBodyChild, joint: Joint2D): - rigid_body_child.rigidbody.remove_child(joint) - joint.queue_free() - var bone_a_name = _hinges_bodies[rigid_body_child.rigidbody.name].get_meta("bone_name") - var bone_b_name = _hinges_bodies[joint.node_b].get_meta("bone_name") - var polygon_weights: Array[float] = [] - polygon_weights.resize(len(polygon)) - var weights: Array[PackedFloat32Array] = [] + # In case calling from @tool script + if Engine.is_editor_hint(): + _update_vars() + var bone_a_name : String = _hinges_bodies[rigid_body_child.rigidbody.name].get_meta("bone_name") + var bone_b_name : String = _hinges_bodies[joint.node_b].get_meta("bone_name") var bone_a_idx = -1 var bone_b_idx = -1 var bone_a: Bone2D var bone_b: Bone2D var rigid_body_a: SoftBodyChild var rigid_body_b: SoftBodyChild + # find bones and rigidbodies for i in len(_bones_array): var bone = _bones_array[i] if bone_a_idx != -1 && bone_b_idx != -1: @@ -1004,24 +1036,61 @@ func remove_joint(rigid_body_child: SoftBodyChild, joint: Joint2D): rigid_body_a = rigid_body if rigid_body.bone == bone_b: rigid_body_b = rigid_body - var bone_a_weights = get_bone_weights(bone_a_idx) - var bone_b_weights = get_bone_weights(bone_b_idx) - var bone_a_owned_verts = _bones_array[bone_a_idx].get_meta("vert_owned") - var bone_b_owned_verts = _bones_array[bone_b_idx].get_meta("vert_owned") - var bone_a_owned_weights = [] - var bone_b_owned_weights = [] - var bone_a_owned_after = [] - var bone_b_owned_after = [] + + rigid_body_a.joints.erase(joint) + for joint_b in rigid_body_b.joints: + if joint_b.node_a.get_name(joint_b.node_a.get_name_count() - 1) == rigid_body_a.rigidbody.name || joint_b.node_b.get_name(joint_b.node_b.get_name_count() - 1) == rigid_body_a.rigidbody.name: + rigid_body_b.joints.erase(joint_b) + joint_b.queue_free() + break + joint.queue_free() + var owned_verts = [] var MIN_WEIGHT = 0.01 + var bone_weight_matrix = [] + for i in get_bone_count(): + owned_verts.append(_bones_array[i].get_meta("vert_owned")) + bone_weight_matrix.append(get_bone_weights(i)) + var bone_a_owned_verts : Array = owned_verts[bone_a_idx] + var bone_b_owned_verts : Array = owned_verts[bone_b_idx] + var bone_a_weights : PackedFloat32Array = bone_weight_matrix[bone_a_idx] + var bone_b_weights : PackedFloat32Array = bone_weight_matrix[bone_b_idx] + var connected_nodes_idx_a: Array = bone_a.get_meta("connected_nodes_idx") + var connected_nodes_idx_b: Array = bone_b.get_meta("connected_nodes_idx") + var bone_a_connections := {} + var bone_b_connections := {} + for idx in connected_nodes_idx_a: + bone_a_connections[idx] = true + for idx in connected_nodes_idx_b: + bone_b_connections[idx] = true + var bones_to_update = {} for i in bone_a_weights.size(): - if bone_a_weights[i] > MIN_WEIGHT : - bone_a_owned_weights.append(i) - if bone_b_weights[i] > MIN_WEIGHT : - bone_b_owned_weights.append(i) var should_remove_a = true var should_remove_b = true - # both nodes have weight, check if it's not their own vert - if bone_a_weights[i] > MIN_WEIGHT && bone_b_weights[i] > MIN_WEIGHT: + # Both nodes have weight, check if it's not their own vert. + # Remove from where it's not owned by them. + # Also check if no other bone has this weight, if it does, leave it as it's + # a common weight + var is_common_weight := 0 + var shared_weight = bone_a_weights[i] > MIN_WEIGHT && bone_b_weights[i] > MIN_WEIGHT + var common_bone := -1 + if shared_weight: + for bone_idx in get_bone_count(): + if bone_idx != bone_a_idx && bone_idx != bone_b_idx && bone_weight_matrix[bone_idx][i] > MIN_WEIGHT: + if bone_a_connections.has(bone_idx) && bone_b_connections.has(bone_idx): + if is_common_weight == 0: + is_common_weight = 1 + elif !bone_a_connections.has(bone_idx) || !bone_b_connections.has(bone_idx): + # If there is a connection with this node but it's not it's own node, remove it + var is_owned_vert := false + for owned_vert in owned_verts[bone_idx]: + if i == owned_vert: + is_owned_vert = true + break + if !is_owned_vert: + is_common_weight = -1 + bones_to_update[bone_idx] = true + bone_weight_matrix[bone_idx][i] = 0.0 + if shared_weight && is_common_weight <= 0: for point_a in bone_a_owned_verts: if i == point_a: should_remove_a = false @@ -1034,23 +1103,39 @@ func remove_joint(rigid_body_child: SoftBodyChild, joint: Joint2D): bone_a_weights[i] = 0.0 if should_remove_b: bone_b_weights[i] = 0.0 - if bone_a_weights[i] > MIN_WEIGHT : - bone_a_owned_after.append(i) - if bone_b_weights[i] > MIN_WEIGHT : - bone_b_owned_after.append(i) set_bone_weights(bone_a_idx, bone_a_weights) set_bone_weights(bone_b_idx, bone_b_weights) + # Also update bones that had common weights with a or b + for bone_to_update in bones_to_update.keys(): + if bone_to_update != bone_a_idx && bone_to_update != bone_b_idx: + set_bone_weights(bone_to_update, bone_weight_matrix[bone_to_update]) var skeleton_modification_stack: SkeletonModificationStack2D = _skeleton_node.get_modification_stack() + # Erase connected node from meta (in case we save the resource) var connected_nodes_paths_a: Array = bone_a.get_meta("connected_nodes_paths") connected_nodes_paths_a.erase(NodePath(bone_b_name)) + connected_nodes_idx_a.erase(bone_b_idx) bone_a.set_meta("connected_nodes_paths", connected_nodes_paths_a) + bone_a.set_meta("connected_nodes_idx", connected_nodes_idx_a) var connected_nodes_paths_b: Array = bone_b.get_meta("connected_nodes_paths") connected_nodes_paths_b.erase(NodePath(bone_a_name)) + connected_nodes_idx_b.erase(bone_a_idx) bone_b.set_meta("connected_nodes_paths", connected_nodes_paths_b) + bone_b.set_meta("connected_nodes_idx", connected_nodes_idx_b) + # Change modification stack for nodes lookat var modification_a := skeleton_modification_stack.get_modification(bone_a_idx) var modification_b := skeleton_modification_stack.get_modification(bone_b_idx) - _update_bone_lookat(_skeleton_node, skeleton_modification_stack.get_modification(bone_a_idx), bone_a, bone_a.get_meta("connected_nodes_paths"), bone_a_idx) - _update_bone_lookat(_skeleton_node, skeleton_modification_stack.get_modification(bone_b_idx), bone_b, bone_b.get_meta("connected_nodes_paths"), bone_b_idx) + if !_update_bone_lookat(_skeleton_node, skeleton_modification_stack.get_modification(bone_a_idx), bone_a, bone_a.get_meta("connected_nodes_paths"), bone_a_idx): + var remote_transform_a : RemoteTransform2D= rigid_body_a.rigidbody.get_children().filter(func (node): return node is RemoteTransform2D)[0] + rigid_body_a.rigidbody.rotation = bone_a.rotation + # TODO deactivate it. + create_tween().tween_property(rigid_body_a.shape, "scale", Vector2(), 0)#.finished.connect(func(): rigid_body_a.process_mode = Node.PROCESS_MODE_DISABLED) + remote_transform_a.update_rotation = true + if !_update_bone_lookat(_skeleton_node, skeleton_modification_stack.get_modification(bone_b_idx), bone_b, bone_b.get_meta("connected_nodes_paths"), bone_b_idx): + var remote_transform_b : RemoteTransform2D= rigid_body_b.rigidbody.get_children().filter(func (node): return node is RemoteTransform2D)[0] + rigid_body_b.rigidbody.rotation = bone_b.rotation + # TODO deactivate it. + create_tween().tween_property(rigid_body_b.shape, "scale", Vector2(), 0)#.finished.connect(func(): rigid_body_b.process_mode = Node.PROCESS_MODE_DISABLED) + remote_transform_b.update_rotation = true skeleton_modification_stack.set_modification(bone_a_idx, modification_a) skeleton_modification_stack.set_modification(bone_b_idx, modification_b) _skeleton_node.set_modification_stack(skeleton_modification_stack) @@ -1060,7 +1145,7 @@ func remove_joint(rigid_body_child: SoftBodyChild, joint: Joint2D): ## Get all the bodies, including joints and shape func get_rigid_bodies() -> Array[SoftBodyChild]: - if _soft_body_rigidbodies_array.is_empty(): + if _soft_body_rigidbodies_array.is_empty() || Engine.is_editor_hint(): if !_skeleton_node: _skeleton_node = get_node_or_null(skeleton) _update_soft_body_rigidbodies(_skeleton_node) @@ -1080,7 +1165,21 @@ func get_center_body() -> SoftBodyChild: var rb_array := bodies.map(func(body): return body.rigidbody) var center_rb := _get_node_to_follow(rb_array) return _soft_body_rigidbodies_dict[center_rb] - + +func apply_impulse(impulse: Vector2, position: Vector2 = Vector2(0, 0)): + for softbody_el in get_rigid_bodies(): + var rigidbody := softbody_el.rigidbody + if rigidbody is RigidBody2D: + (rigidbody as RigidBody2D).apply_impulse(impulse, position) + +func apply_force(force: Vector2, position: Vector2 = Vector2(0, 0)): + for softbody_el in get_rigid_bodies(): + var rigidbody := softbody_el.rigidbody + if rigidbody is RigidBody2D: + (rigidbody as RigidBody2D).apply_force(force, position) + +#endregion + func _update_soft_body_rigidbodies(skeleton_node:Skeleton2D = null): var result: Array[SoftBodyChild] var children = get_children().filter(func (node: Node): return !(node is Skeleton2D)) @@ -1107,6 +1206,8 @@ func _update_soft_body_rigidbodies(skeleton_node:Skeleton2D = null): _soft_body_rigidbodies_array = result var _max_deletions = 6 +var _last_delete_time := 0 +const WAIT_DELETE_MSEC = 100 @onready var _last_texture = texture @@ -1118,16 +1219,20 @@ func _process(delta): create_softbody2d() _last_texture = texture return - # Break joints only every 3 frames - if Engine.get_process_frames() % 3 != 0 || break_distance_ratio <= 0 || !_skeleton_node: + # Wait a little before breaking bones + if break_distance_ratio <= 0 || !_skeleton_node || Time.get_ticks_msec() - _last_delete_time < WAIT_DELETE_MSEC: return # Break at max max_deletions joints var deleted_count = 0 for rigid_body in get_rigid_bodies(): + #if rigid_body.joints.size() > 2:# && rigid_body.is_outside_facing: for node in rigid_body.joints: - var joint := node as Joint2D + var joint := node + if joint == null: + continue if joint.is_queued_for_deletion() || deleted_count >= _max_deletions: continue - if _hinges_distances_squared[joint.name] * break_distance_ratio * break_distance_ratio < _hinges_bodies[rigid_body.rigidbody.name].global_position.distance_squared_to(_hinges_bodies[joint.node_b].global_position): + if _hinges_distances_squared[joint.name] * break_distance_ratio * break_distance_ratio * rigid_body.joints.size() < _hinges_bodies[rigid_body.rigidbody.name].global_position.distance_squared_to(_hinges_bodies[joint.node_b].global_position): deleted_count = deleted_count + 1 remove_joint(rigid_body, joint) + _last_delete_time = Time.get_ticks_msec() diff --git a/addons/softbody2d/voronoi2d.gd b/addons/softbody2d/voronoi2d.gd index ecd56cd..9129e8e 100644 --- a/addons/softbody2d/voronoi2d.gd +++ b/addons/softbody2d/voronoi2d.gd @@ -35,30 +35,6 @@ class_name Voronoi2D ## Distance between points in the region defined with [member Voronoi2D.size] @export var distance_between_points: float = 10; -static func _random_num_on_coords(coords:Vector2, initialSeed:int): - var result = initialSeed - var randGen = RandomNumberGenerator.new(); - randGen.seed = coords.x; - result += randGen.randi(); - var newy = randGen.randi() + coords.y; - randGen.seed = newy; - result += randGen.randi(); - randGen.seed = result; - result = randGen.randi(); - return result; - -static func _generate_chunk_points(coords:Vector2, wRange: Vector2, hRange:Vector2, randomSeed: int, distance_between_points: float, distBtwVariation: float) -> PackedVector2Array: - var localRandSeed = _random_num_on_coords(coords, randomSeed); - var initPoints = PackedVector2Array(); - for w in range(wRange.x, wRange.y): - for h in range(hRange.x, hRange.y): - var randGen = RandomNumberGenerator.new(); - var pointRandSeed = _random_num_on_coords(Vector2(w,h), localRandSeed); - randGen.seed = pointRandSeed; - var newPoint = Vector2(w*distance_between_points + randGen.randf_range(-distBtwVariation, distBtwVariation)*distance_between_points, h*distance_between_points + randGen.randf_range(-distBtwVariation, distBtwVariation)*distance_between_points); - initPoints.append(newPoint) - return initPoints; - static func _generate_chunk_points_fixed(coords:Vector2, wRange: Vector2, hRange:Vector2, distance_between_points: float) -> PackedVector2Array: var initPoints = PackedVector2Array(); for w in range(wRange.x, wRange.y): @@ -67,8 +43,8 @@ static func _generate_chunk_points_fixed(coords:Vector2, wRange: Vector2, hRange initPoints.append(newPoint) return initPoints; -static func _generate_chunk_voronoi(coords:Vector2, sizePerChunk: int, voronoiTolerance: float, randomSeed: int, distance_between_points: float, distBtwVariation: float) -> Array: - var initPoints = _generate_chunk_points(coords, Vector2(0, sizePerChunk), Vector2(0, sizePerChunk), randomSeed, distance_between_points, distBtwVariation); +static func _generate_chunk_voronoi(coords:Vector2, sizePerChunk: int, voronoiTolerance: float, distance_between_points: float) -> Array: + var initPoints = _generate_chunk_points_fixed(coords, Vector2(0, sizePerChunk), Vector2(0, sizePerChunk), distance_between_points); var sorroundingPoints = PackedVector2Array(); for i in range(-1, 2): for j in range(-1, 2): @@ -85,10 +61,10 @@ static func _generate_chunk_voronoi(coords:Vector2, sizePerChunk: int, voronoiTo ymin = 1 - voronoiTolerance; if (j== 1): ymax = voronoiTolerance; - var tempPoints = _generate_chunk_points(Vector2(coords.x+i, coords.y+j), \ - Vector2(xmin*sizePerChunk, xmax*sizePerChunk), \ - Vector2(ymin*sizePerChunk, ymax*sizePerChunk), \ - randomSeed, distance_between_points, distBtwVariation); + var tempPoints = _generate_chunk_points_fixed(Vector2(coords.x+i, coords.y+j), \ + Vector2(xmin*sizePerChunk, xmax*sizePerChunk), \ + Vector2(ymin*sizePerChunk, ymax*sizePerChunk), \ + distance_between_points); var resultPoints = PackedVector2Array(); for point in tempPoints: var tempPoint = point + Vector2(i * sizePerChunk * distance_between_points, j * sizePerChunk * distance_between_points); @@ -110,6 +86,7 @@ static func _generate_chunk_voronoi(coords:Vector2, sizePerChunk: int, voronoiTo if (point == triangleArray[triangle][0] || point == triangleArray[triangle][1] || point == triangleArray[triangle][2]): tempVerts.append(circumcenters[triangle]); tempVerts = _clowckwise_points(initPoints[point], tempVerts) + vCtrIdxWithVerts.append([initPoints[point], fixed_points[point], tempVerts]); return vCtrIdxWithVerts; @@ -138,18 +115,26 @@ static func _clowckwise_points(center:Vector2, sorrounding:PackedVector2Array) - static func _get_circumcenter(a:Vector2, b:Vector2, c:Vector2): var result = Vector2(0,0) - var midpointAB = Vector2((a.x+b.x)/2,(a.y+b.y)/2); + var midpointAB = Vector2((a.x+b.x) * 0.5,(a.y+b.y) * 0.5); var slopePerpAB = -((b.x-a.x)/(b.y-a.y)); - var midpointAC = Vector2((a.x+c.x)/2,(a.y+c.y)/2); + if (b.x-a.x) == 0 || (b.y-a.y) == 0: + slopePerpAB = 0 + var midpointAC = Vector2((a.x+c.x) * 0.5,(a.y+c.y) * 0.5); var slopePerpAC = -((c.x-a.x)/(c.y-a.y)); + if (c.y-a.y) == 0 || (c.x-a.x) == 0: + slopePerpAC = 0 var bOfPerpAB = midpointAB.y - (midpointAB.x * slopePerpAB); var bOfPerpAC = midpointAC.y - (midpointAC.x * slopePerpAC); result.x = (bOfPerpAB - bOfPerpAC)/(slopePerpAC - slopePerpAB); + if (bOfPerpAB - bOfPerpAC) == 0 || (slopePerpAC - slopePerpAB) == 0: + result.x = 0 result.y = slopePerpAB*result.x + bOfPerpAB; return result; ## A Voronoi 2D Region class VoronoiRegion2D: + var w: int + var h: int ## Center of the region var center: Vector2 ## Fixed center of the region @@ -161,9 +146,8 @@ class VoronoiRegion2D: ## [param size] - total size of the resulting region.[br] ## [param distance_between_points] - distance between voronoi regions.[br] ## [param start] - start place for voronoi regions.[br] -## [param edge_dist] - how far randomly should the points move, relative to the distBtwPoints variable.[br] ## Returns Array of regions, where each region -static func generate_voronoi(size: Vector2, distance_between_points: float, start:= Vector2(), edge_dist := 0.3, rand_seed = 0) -> Array[VoronoiRegion2D]: +static func generate_voronoi(size: Vector2, distance_between_points: float, start:= Vector2(), rand_seed = 0) -> Array[VoronoiRegion2D]: var polygons:Array[VoronoiRegion2D] = [] var sizePerChunk := 5.0 var totalX = size.x / (distance_between_points*sizePerChunk) @@ -172,7 +156,8 @@ static func generate_voronoi(size: Vector2, distance_between_points: float, star for h in int(totalY + 1): var chunkLoc = Vector2(w ,h) var voronoi = _generate_chunk_voronoi(chunkLoc, sizePerChunk, \ - 0.4, rand_seed, distance_between_points, edge_dist) + 0, distance_between_points) + var i = 0 for each in voronoi: var newPolyPoints := PackedVector2Array(); var offset = Vector2(chunkLoc.x*sizePerChunk*distance_between_points,\ @@ -180,9 +165,32 @@ static func generate_voronoi(size: Vector2, distance_between_points: float, star for point in each[2]: newPolyPoints.append(point + offset); var voronoi_region := VoronoiRegion2D.new() + voronoi_region.w = (w) * 5 + (i / 5) + voronoi_region.h = (h) * 5 + (i % 5) + i += 1 voronoi_region.center = each[0] + offset voronoi_region.fixed_center = each[1] + offset - voronoi_region.polygon_points = [newPolyPoints] + var center = voronoi_region.fixed_center + var dist = distance_between_points + voronoi_region.polygon_points = [[center + Vector2(-dist, -dist) * 0.5,\ + center + Vector2(0, -dist) * 0.5, \ + center + Vector2(0, 0) * 0.5,\ + center + Vector2(-dist, 0) * 0.5], \ + + [center + Vector2(0, 0) * 0.5,\ + center + Vector2(dist, 0) * 0.5, \ + center + Vector2(dist, dist) * 0.5,\ + center + Vector2(0, dist) * 0.5], \ + + [center + Vector2(-dist, 0) * 0.5,\ + center + Vector2(0, 0) * 0.5, \ + center + Vector2(0, dist) * 0.5,\ + center + Vector2(-dist, dist) * 0.5], \ + + [center + Vector2(0, -dist) * 0.5,\ + center + Vector2(dist, -dist) * 0.5, \ + center + Vector2(dist, 0) * 0.5,\ + center + Vector2(0, 0) * 0.5],] polygons.append(voronoi_region) return polygons @@ -192,11 +200,9 @@ func display_voronoi(): draw_voronoi(voronoi) func draw_voronoi(voronoi: Array[VoronoiRegion2D]): - var randSeed = 0 for each in voronoi: - randSeed = _display_polygon(Vector2(), each.polygon_points, randSeed); + _display_polygon(Vector2(), each); _display_point(Vector2(), each.center) - _display_point(Vector2(), each.fixed_center, Color(1,1,1,0.2)) func _display_point(offset:Vector2, point: Vector2, color:Color = Color(1,1,1,1)): var newPointPoly = Polygon2D.new(); @@ -207,18 +213,17 @@ func _display_point(offset:Vector2, point: Vector2, color:Color = Color(1,1,1,1) if Engine.is_editor_hint(): newPointPoly.set_owner(get_tree().get_edited_scene_root()) -func _display_polygon(offset:Vector2, polygons:Array[PackedVector2Array], randSeed): - var randGen = RandomNumberGenerator.new() - var random_color = Color(randGen.randf(), randGen.randf(), randGen.randf(), 1) - for polygon in polygons: - var newPoly = Polygon2D.new(); - var newPolyPoints = PackedVector2Array(); +func _display_polygon(offset:Vector2, polygons: VoronoiRegion2D): + var random_color = Color(randf(), randf(), randf(), 1) + for polygon in polygons.polygon_points: + var newPoly = Polygon2D.new() + var newPolyPoints = PackedVector2Array() for point in polygon: - newPolyPoints.append(point + offset); - newPoly.polygon = newPolyPoints; - randGen.seed = randSeed; - newPoly.color = random_color; + newPolyPoints.append(point + offset) + newPoly.polygon = newPolyPoints + newPoly.color = random_color + newPoly.set_meta("w", polygons.w) + newPoly.set_meta("h", polygons.h) add_child(newPoly) if Engine.is_editor_hint(): newPoly.set_owner(get_tree().get_edited_scene_root()) - return randGen.randi(); diff --git a/demo/ApplyForceToSoftbody.gd b/demo/ApplyForceToSoftbody.gd new file mode 100644 index 0000000..ca026d6 --- /dev/null +++ b/demo/ApplyForceToSoftbody.gd @@ -0,0 +1,7 @@ +extends Node + +@export var softbody2d: SoftBody2D +@export var force: Vector2 + +func _on_timer_timeout(): + softbody2d.apply_force(force) diff --git a/demo/BreakScript.gd b/demo/BreakScript.gd new file mode 100644 index 0000000..6e498e6 --- /dev/null +++ b/demo/BreakScript.gd @@ -0,0 +1,17 @@ +@tool +extends Node2D + +@export var softbody : SoftBody2D +@export var rb_index: int = 0 +@export var joint_index: int = 0 +@export var remove_joint :bool = false: + set (value): + remove_joint_func(softbody.get_rigid_bodies()[rb_index], softbody.get_rigid_bodies()[rb_index].joints[joint_index]) + get: + return false + + +# Called when the node enters the scene tree for the first time. +func remove_joint_func(rb: SoftBody2D.SoftBodyChild, joint: Joint2D): + softbody.remove_joint(rb, joint) + diff --git a/demo/demo.tscn b/demo/demo.tscn index b265e5c..754f2d7 100644 --- a/demo/demo.tscn +++ b/demo/demo.tscn @@ -1,3618 +1,3685 @@ -[gd_scene load_steps=482 format=3 uid="uid://8rlq77lfpm27"] +[gd_scene load_steps=488 format=3 uid="uid://8rlq77lfpm27"] -[ext_resource type="Texture2D" uid="uid://ber3ewk5ro3yp" path="res://demo/Asparagus.png" id="1_bb0nr"] +[ext_resource type="Texture2D" uid="uid://uwrciioajf50" path="res://demo/Asparagus.png" id="1_bb0nr"] [ext_resource type="Script" path="res://addons/softbody2d/softbody2d.gd" id="2_2dapw"] [ext_resource type="PackedScene" uid="uid://e43003nmrylg" path="res://demo/pickable_rigidbody.tscn" id="3_6ern4"] [ext_resource type="PhysicsMaterial" uid="uid://2kay8j53abmv" path="res://demo/softbody2d_phys_slippery.tres" id="3_durpg"] -[ext_resource type="Texture2D" uid="uid://xhr3luyotjmm" path="res://demo/Butter.png" id="4_xackp"] +[ext_resource type="Texture2D" uid="uid://dp4gm1sqadkyt" path="res://demo/Butter.png" id="4_xackp"] [ext_resource type="PhysicsMaterial" uid="uid://deqagbq7eod2b" path="res://demo/softbody2d_phys_bouncy.tres" id="5_221ya"] -[ext_resource type="Script" path="res://demo/pickable_rigidbody.gd" id="5_yk0yk"] -[ext_resource type="Texture2D" uid="uid://bgt3808m8fgwm" path="res://demo/Boiled_Egg_Half.png" id="6_du2cs"] -[ext_resource type="Texture2D" uid="uid://be4efliwl1p13" path="res://demo/softbody2d.png" id="8_r18ij"] -[ext_resource type="Texture2D" uid="uid://bomdc4wfqnog" path="res://demo/softbody2d_full.png" id="9_56vnr"] -[ext_resource type="Texture2D" uid="uid://cr4ry1wmv30ni" path="res://demo/softbody2d_inner.png" id="9_ia0mn"] -[ext_resource type="Texture2D" uid="uid://cuevtxvd6v2x2" path="res://demo/stickman.png" id="11_1biik"] +[ext_resource type="Texture2D" uid="uid://ck74jr1mnd8y" path="res://demo/Boiled_Egg_Half.png" id="6_du2cs"] +[ext_resource type="Texture2D" uid="uid://s0laqqc3aky2" path="res://demo/softbody2d.png" id="8_r18ij"] +[ext_resource type="Texture2D" uid="uid://d3h2p840dgby1" path="res://demo/softbody2d_full.png" id="9_56vnr"] +[ext_resource type="Texture2D" uid="uid://dpyuasjj5bpxo" path="res://demo/softbody2d_inner.png" id="9_ia0mn"] +[ext_resource type="Script" path="res://demo/pickable_rigidbody.gd" id="11_tqnjl"] -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_ugyd3"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_no6bw"] resource_local_to_scene = true bone_index = 0 bone2d_node = NodePath("Bone-0") target_nodepath = NodePath("Bone-1") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_6m8rj"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_ejxne"] resource_local_to_scene = true bone_index = 1 bone2d_node = NodePath("Bone-1") target_nodepath = NodePath("Bone-2") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_ov50b"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_if2yd"] resource_local_to_scene = true bone_index = 2 bone2d_node = NodePath("Bone-2") -target_nodepath = NodePath("Bone-3") +target_nodepath = NodePath("Bone-1") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_onvcn"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_gwsso"] resource_local_to_scene = true bone_index = 3 bone2d_node = NodePath("Bone-3") target_nodepath = NodePath("Bone-4") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_rcuor"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_kk3ps"] resource_local_to_scene = true bone_index = 4 bone2d_node = NodePath("Bone-4") -target_nodepath = NodePath("Bone-5") +target_nodepath = NodePath("Bone-3") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_bsq58"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_dlbbs"] resource_local_to_scene = true bone_index = 5 bone2d_node = NodePath("Bone-5") target_nodepath = NodePath("Bone-6") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_7e6y7"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_tmwm8"] resource_local_to_scene = true bone_index = 6 bone2d_node = NodePath("Bone-6") target_nodepath = NodePath("Bone-7") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_j4lyp"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_bofno"] resource_local_to_scene = true bone_index = 7 bone2d_node = NodePath("Bone-7") target_nodepath = NodePath("Bone-8") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_1tba2"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_8ak4r"] resource_local_to_scene = true bone_index = 8 bone2d_node = NodePath("Bone-8") -target_nodepath = NodePath("Bone-7") +target_nodepath = NodePath("Bone-9") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_vm6ob"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_0lctm"] resource_local_to_scene = true bone_index = 9 bone2d_node = NodePath("Bone-9") target_nodepath = NodePath("Bone-8") editor/draw_gizmo = false -[sub_resource type="SkeletonModificationStack2D" id="SkeletonModificationStack2D_xyqt6"] +[sub_resource type="SkeletonModificationStack2D" id="SkeletonModificationStack2D_akqqp"] resource_local_to_scene = true enabled = true modification_count = 10 -modifications/0 = SubResource("SkeletonModification2DLookAt_ugyd3") -modifications/1 = SubResource("SkeletonModification2DLookAt_6m8rj") -modifications/2 = SubResource("SkeletonModification2DLookAt_ov50b") -modifications/3 = SubResource("SkeletonModification2DLookAt_onvcn") -modifications/4 = SubResource("SkeletonModification2DLookAt_rcuor") -modifications/5 = SubResource("SkeletonModification2DLookAt_bsq58") -modifications/6 = SubResource("SkeletonModification2DLookAt_7e6y7") -modifications/7 = SubResource("SkeletonModification2DLookAt_j4lyp") -modifications/8 = SubResource("SkeletonModification2DLookAt_1tba2") -modifications/9 = SubResource("SkeletonModification2DLookAt_vm6ob") - -[sub_resource type="RectangleShape2D" id="RectangleShape2D_7minw"] +modifications/0 = SubResource("SkeletonModification2DLookAt_no6bw") +modifications/1 = SubResource("SkeletonModification2DLookAt_ejxne") +modifications/2 = SubResource("SkeletonModification2DLookAt_if2yd") +modifications/3 = SubResource("SkeletonModification2DLookAt_gwsso") +modifications/4 = SubResource("SkeletonModification2DLookAt_kk3ps") +modifications/5 = SubResource("SkeletonModification2DLookAt_dlbbs") +modifications/6 = SubResource("SkeletonModification2DLookAt_tmwm8") +modifications/7 = SubResource("SkeletonModification2DLookAt_bofno") +modifications/8 = SubResource("SkeletonModification2DLookAt_8ak4r") +modifications/9 = SubResource("SkeletonModification2DLookAt_0lctm") + +[sub_resource type="RectangleShape2D" id="RectangleShape2D_hy3tq"] resource_local_to_scene = true size = Vector2(35, 35) -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_h8x33"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_1dm58"] resource_local_to_scene = true bone_index = 0 bone2d_node = NodePath("Bone-0") target_nodepath = NodePath("Bone-1") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_ryu7p"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_q43gp"] resource_local_to_scene = true bone_index = 1 bone2d_node = NodePath("Bone-1") target_nodepath = NodePath("Bone-2") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_eoge3"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_cq1iu"] resource_local_to_scene = true bone_index = 2 bone2d_node = NodePath("Bone-2") target_nodepath = NodePath("Bone-3") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_hrbo3"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_b3qbi"] resource_local_to_scene = true bone_index = 3 bone2d_node = NodePath("Bone-3") target_nodepath = NodePath("Bone-4") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_syk50"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_a4rcd"] resource_local_to_scene = true bone_index = 4 bone2d_node = NodePath("Bone-4") -target_nodepath = NodePath("Bone-5") +target_nodepath = NodePath("Bone-3") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_oogmm"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_twyyb"] resource_local_to_scene = true bone_index = 5 bone2d_node = NodePath("Bone-5") target_nodepath = NodePath("Bone-6") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_h4ncu"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_eu3ah"] resource_local_to_scene = true bone_index = 6 bone2d_node = NodePath("Bone-6") target_nodepath = NodePath("Bone-7") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_4roe4"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_xeedv"] resource_local_to_scene = true bone_index = 7 bone2d_node = NodePath("Bone-7") target_nodepath = NodePath("Bone-8") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_6bb8g"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_23hbx"] resource_local_to_scene = true bone_index = 8 bone2d_node = NodePath("Bone-8") -target_nodepath = NodePath("Bone-7") +target_nodepath = NodePath("Bone-9") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_r06og"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_frpfs"] resource_local_to_scene = true bone_index = 9 bone2d_node = NodePath("Bone-9") target_nodepath = NodePath("Bone-8") editor/draw_gizmo = false -[sub_resource type="SkeletonModificationStack2D" id="SkeletonModificationStack2D_0xsvo"] +[sub_resource type="SkeletonModificationStack2D" id="SkeletonModificationStack2D_1vk6y"] resource_local_to_scene = true enabled = true modification_count = 10 -modifications/0 = SubResource("SkeletonModification2DLookAt_h8x33") -modifications/1 = SubResource("SkeletonModification2DLookAt_ryu7p") -modifications/2 = SubResource("SkeletonModification2DLookAt_eoge3") -modifications/3 = SubResource("SkeletonModification2DLookAt_hrbo3") -modifications/4 = SubResource("SkeletonModification2DLookAt_syk50") -modifications/5 = SubResource("SkeletonModification2DLookAt_oogmm") -modifications/6 = SubResource("SkeletonModification2DLookAt_h4ncu") -modifications/7 = SubResource("SkeletonModification2DLookAt_4roe4") -modifications/8 = SubResource("SkeletonModification2DLookAt_6bb8g") -modifications/9 = SubResource("SkeletonModification2DLookAt_r06og") - -[sub_resource type="RectangleShape2D" id="RectangleShape2D_ons7v"] +modifications/0 = SubResource("SkeletonModification2DLookAt_1dm58") +modifications/1 = SubResource("SkeletonModification2DLookAt_q43gp") +modifications/2 = SubResource("SkeletonModification2DLookAt_cq1iu") +modifications/3 = SubResource("SkeletonModification2DLookAt_b3qbi") +modifications/4 = SubResource("SkeletonModification2DLookAt_a4rcd") +modifications/5 = SubResource("SkeletonModification2DLookAt_twyyb") +modifications/6 = SubResource("SkeletonModification2DLookAt_eu3ah") +modifications/7 = SubResource("SkeletonModification2DLookAt_xeedv") +modifications/8 = SubResource("SkeletonModification2DLookAt_23hbx") +modifications/9 = SubResource("SkeletonModification2DLookAt_frpfs") + +[sub_resource type="RectangleShape2D" id="RectangleShape2D_3xtnn"] resource_local_to_scene = true size = Vector2(35, 35) -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_65mi4"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_45cxs"] resource_local_to_scene = true bone_index = 0 bone2d_node = NodePath("Bone-0") target_nodepath = NodePath("Bone-1") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_ht11p"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_1d4p7"] resource_local_to_scene = true bone_index = 1 bone2d_node = NodePath("Bone-1") target_nodepath = NodePath("Bone-2") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_y4h6i"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_sbceq"] resource_local_to_scene = true bone_index = 2 bone2d_node = NodePath("Bone-2") target_nodepath = NodePath("Bone-3") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_ntiu3"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_r3puu"] resource_local_to_scene = true bone_index = 3 bone2d_node = NodePath("Bone-3") target_nodepath = NodePath("Bone-4") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_amj3d"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_408jj"] resource_local_to_scene = true bone_index = 4 bone2d_node = NodePath("Bone-4") -target_nodepath = NodePath("Bone-5") +target_nodepath = NodePath("Bone-3") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_q3w5s"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_5nden"] resource_local_to_scene = true bone_index = 5 bone2d_node = NodePath("Bone-5") target_nodepath = NodePath("Bone-6") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_ffq5s"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_i6s0h"] resource_local_to_scene = true bone_index = 6 bone2d_node = NodePath("Bone-6") target_nodepath = NodePath("Bone-7") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_0hhko"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_ths2p"] resource_local_to_scene = true bone_index = 7 bone2d_node = NodePath("Bone-7") target_nodepath = NodePath("Bone-8") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_hi003"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_aq7i4"] resource_local_to_scene = true bone_index = 8 bone2d_node = NodePath("Bone-8") -target_nodepath = NodePath("Bone-7") +target_nodepath = NodePath("Bone-9") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_ot25s"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_4o3tt"] resource_local_to_scene = true bone_index = 9 bone2d_node = NodePath("Bone-9") target_nodepath = NodePath("Bone-8") editor/draw_gizmo = false -[sub_resource type="SkeletonModificationStack2D" id="SkeletonModificationStack2D_2aa8t"] +[sub_resource type="SkeletonModificationStack2D" id="SkeletonModificationStack2D_utlts"] resource_local_to_scene = true enabled = true modification_count = 10 -modifications/0 = SubResource("SkeletonModification2DLookAt_65mi4") -modifications/1 = SubResource("SkeletonModification2DLookAt_ht11p") -modifications/2 = SubResource("SkeletonModification2DLookAt_y4h6i") -modifications/3 = SubResource("SkeletonModification2DLookAt_ntiu3") -modifications/4 = SubResource("SkeletonModification2DLookAt_amj3d") -modifications/5 = SubResource("SkeletonModification2DLookAt_q3w5s") -modifications/6 = SubResource("SkeletonModification2DLookAt_ffq5s") -modifications/7 = SubResource("SkeletonModification2DLookAt_0hhko") -modifications/8 = SubResource("SkeletonModification2DLookAt_hi003") -modifications/9 = SubResource("SkeletonModification2DLookAt_ot25s") - -[sub_resource type="RectangleShape2D" id="RectangleShape2D_hg0tg"] +modifications/0 = SubResource("SkeletonModification2DLookAt_45cxs") +modifications/1 = SubResource("SkeletonModification2DLookAt_1d4p7") +modifications/2 = SubResource("SkeletonModification2DLookAt_sbceq") +modifications/3 = SubResource("SkeletonModification2DLookAt_r3puu") +modifications/4 = SubResource("SkeletonModification2DLookAt_408jj") +modifications/5 = SubResource("SkeletonModification2DLookAt_5nden") +modifications/6 = SubResource("SkeletonModification2DLookAt_i6s0h") +modifications/7 = SubResource("SkeletonModification2DLookAt_ths2p") +modifications/8 = SubResource("SkeletonModification2DLookAt_aq7i4") +modifications/9 = SubResource("SkeletonModification2DLookAt_4o3tt") + +[sub_resource type="RectangleShape2D" id="RectangleShape2D_4p8eb"] resource_local_to_scene = true size = Vector2(35, 35) -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_pj1ml"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_od5il"] resource_local_to_scene = true bone_index = 0 bone2d_node = NodePath("Bone-0") -target_nodepath = NodePath("Bone-3") +target_nodepath = NodePath("Bone-4") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_5incs"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_6xrpg"] resource_local_to_scene = true bone_index = 1 bone2d_node = NodePath("Bone-1") target_nodepath = NodePath("Bone-3") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_bp8kd"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_5omii"] resource_local_to_scene = true bone_index = 10 bone2d_node = NodePath("Bone-10") -target_nodepath = NodePath("Bone-9") +target_nodepath = NodePath("Bone-5") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_xijjs"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_0ck5u"] resource_local_to_scene = true bone_index = 11 bone2d_node = NodePath("Bone-11") target_nodepath = NodePath("Bone-8") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_4luhq"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_i77qq"] resource_local_to_scene = true bone_index = 12 bone2d_node = NodePath("Bone-12") target_nodepath = NodePath("Bone-11") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_e83aw"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_oc66c"] resource_local_to_scene = true bone_index = 13 bone2d_node = NodePath("Bone-13") -target_nodepath = NodePath("Bone-10") +target_nodepath = NodePath("Bone-9") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_ak3vj"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_3bs0b"] resource_local_to_scene = true bone_index = 2 bone2d_node = NodePath("Bone-2") -target_nodepath = NodePath("Bone-5") +target_nodepath = NodePath("Bone-7") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_x3c6o"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_n516n"] resource_local_to_scene = true bone_index = 3 bone2d_node = NodePath("Bone-3") -target_nodepath = NodePath("Bone-4") +target_nodepath = NodePath("Bone-2") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_sdd87"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_73cdq"] resource_local_to_scene = true bone_index = 4 bone2d_node = NodePath("Bone-4") -target_nodepath = NodePath("Bone-3") +target_nodepath = NodePath("Bone-5") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_k826i"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_ix4f8"] resource_local_to_scene = true bone_index = 5 bone2d_node = NodePath("Bone-5") -target_nodepath = NodePath("Bone-6") +target_nodepath = NodePath("Bone-9") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_vp7jh"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_stj3b"] resource_local_to_scene = true bone_index = 6 bone2d_node = NodePath("Bone-6") -target_nodepath = NodePath("Bone-9") +target_nodepath = NodePath("Bone-7") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_k6547"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_yyfre"] resource_local_to_scene = true bone_index = 7 bone2d_node = NodePath("Bone-7") -target_nodepath = NodePath("Bone-8") +target_nodepath = NodePath("Bone-6") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_8ahit"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_jtfn1"] resource_local_to_scene = true bone_index = 8 bone2d_node = NodePath("Bone-8") target_nodepath = NodePath("Bone-9") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_v45pd"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_4jprk"] resource_local_to_scene = true bone_index = 9 bone2d_node = NodePath("Bone-9") -target_nodepath = NodePath("Bone-8") +target_nodepath = NodePath("Bone-5") editor/draw_gizmo = false -[sub_resource type="SkeletonModificationStack2D" id="SkeletonModificationStack2D_w6xhu"] +[sub_resource type="SkeletonModificationStack2D" id="SkeletonModificationStack2D_jwx42"] resource_local_to_scene = true enabled = true modification_count = 14 -modifications/0 = SubResource("SkeletonModification2DLookAt_pj1ml") -modifications/1 = SubResource("SkeletonModification2DLookAt_5incs") -modifications/2 = SubResource("SkeletonModification2DLookAt_ak3vj") -modifications/3 = SubResource("SkeletonModification2DLookAt_x3c6o") -modifications/4 = SubResource("SkeletonModification2DLookAt_sdd87") -modifications/5 = SubResource("SkeletonModification2DLookAt_k826i") -modifications/6 = SubResource("SkeletonModification2DLookAt_vp7jh") -modifications/7 = SubResource("SkeletonModification2DLookAt_k6547") -modifications/8 = SubResource("SkeletonModification2DLookAt_8ahit") -modifications/9 = SubResource("SkeletonModification2DLookAt_v45pd") -modifications/10 = SubResource("SkeletonModification2DLookAt_bp8kd") -modifications/11 = SubResource("SkeletonModification2DLookAt_xijjs") -modifications/12 = SubResource("SkeletonModification2DLookAt_4luhq") -modifications/13 = SubResource("SkeletonModification2DLookAt_e83aw") - -[sub_resource type="CircleShape2D" id="CircleShape2D_hdg3f"] +modifications/0 = SubResource("SkeletonModification2DLookAt_od5il") +modifications/1 = SubResource("SkeletonModification2DLookAt_6xrpg") +modifications/2 = SubResource("SkeletonModification2DLookAt_3bs0b") +modifications/3 = SubResource("SkeletonModification2DLookAt_n516n") +modifications/4 = SubResource("SkeletonModification2DLookAt_73cdq") +modifications/5 = SubResource("SkeletonModification2DLookAt_ix4f8") +modifications/6 = SubResource("SkeletonModification2DLookAt_stj3b") +modifications/7 = SubResource("SkeletonModification2DLookAt_yyfre") +modifications/8 = SubResource("SkeletonModification2DLookAt_jtfn1") +modifications/9 = SubResource("SkeletonModification2DLookAt_4jprk") +modifications/10 = SubResource("SkeletonModification2DLookAt_5omii") +modifications/11 = SubResource("SkeletonModification2DLookAt_0ck5u") +modifications/12 = SubResource("SkeletonModification2DLookAt_i77qq") +modifications/13 = SubResource("SkeletonModification2DLookAt_oc66c") + +[sub_resource type="CircleShape2D" id="CircleShape2D_3jrhf"] resource_local_to_scene = true radius = 9.5 -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_cdrj8"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_3aty3"] resource_local_to_scene = true bone_index = 0 bone2d_node = NodePath("Bone-0") -target_nodepath = NodePath("Bone-3") +target_nodepath = NodePath("Bone-4") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_syo63"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_lqrw5"] resource_local_to_scene = true bone_index = 1 bone2d_node = NodePath("Bone-1") target_nodepath = NodePath("Bone-4") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_rs35x"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_n5pt4"] resource_local_to_scene = true bone_index = 10 bone2d_node = NodePath("Bone-10") target_nodepath = NodePath("Bone-11") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_sp71e"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_0kyqr"] resource_local_to_scene = true bone_index = 11 bone2d_node = NodePath("Bone-11") target_nodepath = NodePath("Bone-12") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_g8w7x"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_8cevk"] resource_local_to_scene = true bone_index = 12 bone2d_node = NodePath("Bone-12") target_nodepath = NodePath("Bone-13") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_f4qd3"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_2okhs"] resource_local_to_scene = true bone_index = 13 bone2d_node = NodePath("Bone-13") -target_nodepath = NodePath("Bone-14") +target_nodepath = NodePath("Bone-9") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_lsiog"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_wxave"] resource_local_to_scene = true bone_index = 14 bone2d_node = NodePath("Bone-14") -target_nodepath = NodePath("Bone-17") +target_nodepath = NodePath("Bone-11") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_mmdb0"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_bm5rw"] resource_local_to_scene = true bone_index = 15 bone2d_node = NodePath("Bone-15") -target_nodepath = NodePath("Bone-12") +target_nodepath = NodePath("Bone-14") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_f4fln"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_6nswd"] resource_local_to_scene = true bone_index = 16 bone2d_node = NodePath("Bone-16") -target_nodepath = NodePath("Bone-13") +target_nodepath = NodePath("Bone-15") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_ucwd4"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_lyt61"] resource_local_to_scene = true bone_index = 17 bone2d_node = NodePath("Bone-17") -target_nodepath = NodePath("Bone-14") +target_nodepath = NodePath("Bone-12") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_2un22"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_c1pri"] resource_local_to_scene = true bone_index = 18 bone2d_node = NodePath("Bone-18") -target_nodepath = NodePath("Bone-14") -editor/draw_gizmo = false - -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_76rae"] -resource_local_to_scene = true -bone_index = 19 -bone2d_node = NodePath("Bone-19") -target_nodepath = NodePath("Bone-9") +target_nodepath = NodePath("Bone-13") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_ilfke"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_ck57s"] resource_local_to_scene = true bone_index = 2 bone2d_node = NodePath("Bone-2") target_nodepath = NodePath("Bone-6") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_b8khc"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_o3axs"] resource_local_to_scene = true bone_index = 3 bone2d_node = NodePath("Bone-3") -target_nodepath = NodePath("Bone-4") +target_nodepath = NodePath("Bone-2") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_2ak1i"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_tc3ej"] resource_local_to_scene = true bone_index = 4 bone2d_node = NodePath("Bone-4") target_nodepath = NodePath("Bone-5") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_25cow"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_cx87s"] resource_local_to_scene = true bone_index = 5 bone2d_node = NodePath("Bone-5") -target_nodepath = NodePath("Bone-8") +target_nodepath = NodePath("Bone-4") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_oghih"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_s4ip6"] resource_local_to_scene = true bone_index = 6 bone2d_node = NodePath("Bone-6") -target_nodepath = NodePath("Bone-10") +target_nodepath = NodePath("Bone-3") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_ri4lq"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_hjyui"] resource_local_to_scene = true bone_index = 7 bone2d_node = NodePath("Bone-7") target_nodepath = NodePath("Bone-8") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_qxm4o"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_f8pbg"] resource_local_to_scene = true bone_index = 8 bone2d_node = NodePath("Bone-8") target_nodepath = NodePath("Bone-9") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_m05h7"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_6gqbv"] resource_local_to_scene = true bone_index = 9 bone2d_node = NodePath("Bone-9") -target_nodepath = NodePath("Bone-13") +target_nodepath = NodePath("Bone-18") editor/draw_gizmo = false -[sub_resource type="SkeletonModificationStack2D" id="SkeletonModificationStack2D_c22vf"] +[sub_resource type="SkeletonModificationStack2D" id="SkeletonModificationStack2D_xrggm"] resource_local_to_scene = true enabled = true -modification_count = 20 -modifications/0 = SubResource("SkeletonModification2DLookAt_cdrj8") -modifications/1 = SubResource("SkeletonModification2DLookAt_syo63") -modifications/2 = SubResource("SkeletonModification2DLookAt_ilfke") -modifications/3 = SubResource("SkeletonModification2DLookAt_b8khc") -modifications/4 = SubResource("SkeletonModification2DLookAt_2ak1i") -modifications/5 = SubResource("SkeletonModification2DLookAt_25cow") -modifications/6 = SubResource("SkeletonModification2DLookAt_oghih") -modifications/7 = SubResource("SkeletonModification2DLookAt_ri4lq") -modifications/8 = SubResource("SkeletonModification2DLookAt_qxm4o") -modifications/9 = SubResource("SkeletonModification2DLookAt_m05h7") -modifications/10 = SubResource("SkeletonModification2DLookAt_rs35x") -modifications/11 = SubResource("SkeletonModification2DLookAt_sp71e") -modifications/12 = SubResource("SkeletonModification2DLookAt_g8w7x") -modifications/13 = SubResource("SkeletonModification2DLookAt_f4qd3") -modifications/14 = SubResource("SkeletonModification2DLookAt_lsiog") -modifications/15 = SubResource("SkeletonModification2DLookAt_mmdb0") -modifications/16 = SubResource("SkeletonModification2DLookAt_f4fln") -modifications/17 = SubResource("SkeletonModification2DLookAt_ucwd4") -modifications/18 = SubResource("SkeletonModification2DLookAt_2un22") -modifications/19 = SubResource("SkeletonModification2DLookAt_76rae") - -[sub_resource type="CircleShape2D" id="CircleShape2D_ctd0h"] +modification_count = 19 +modifications/0 = SubResource("SkeletonModification2DLookAt_3aty3") +modifications/1 = SubResource("SkeletonModification2DLookAt_lqrw5") +modifications/2 = SubResource("SkeletonModification2DLookAt_ck57s") +modifications/3 = SubResource("SkeletonModification2DLookAt_o3axs") +modifications/4 = SubResource("SkeletonModification2DLookAt_tc3ej") +modifications/5 = SubResource("SkeletonModification2DLookAt_cx87s") +modifications/6 = SubResource("SkeletonModification2DLookAt_s4ip6") +modifications/7 = SubResource("SkeletonModification2DLookAt_hjyui") +modifications/8 = SubResource("SkeletonModification2DLookAt_f8pbg") +modifications/9 = SubResource("SkeletonModification2DLookAt_6gqbv") +modifications/10 = SubResource("SkeletonModification2DLookAt_n5pt4") +modifications/11 = SubResource("SkeletonModification2DLookAt_0kyqr") +modifications/12 = SubResource("SkeletonModification2DLookAt_8cevk") +modifications/13 = SubResource("SkeletonModification2DLookAt_2okhs") +modifications/14 = SubResource("SkeletonModification2DLookAt_wxave") +modifications/15 = SubResource("SkeletonModification2DLookAt_bm5rw") +modifications/16 = SubResource("SkeletonModification2DLookAt_6nswd") +modifications/17 = SubResource("SkeletonModification2DLookAt_lyt61") +modifications/18 = SubResource("SkeletonModification2DLookAt_c1pri") + +[sub_resource type="CircleShape2D" id="CircleShape2D_1la4v"] resource_local_to_scene = true radius = 9.5 -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_5jek1"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_4sopt"] resource_local_to_scene = true bone_index = 0 bone2d_node = NodePath("Bone-0") -target_nodepath = NodePath("Bone-3") +target_nodepath = NodePath("Bone-4") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_j4lpv"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_68oje"] resource_local_to_scene = true bone_index = 1 bone2d_node = NodePath("Bone-1") target_nodepath = NodePath("Bone-4") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_b1ofx"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_g0eih"] resource_local_to_scene = true bone_index = 10 bone2d_node = NodePath("Bone-10") target_nodepath = NodePath("Bone-11") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_0whul"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_bajna"] resource_local_to_scene = true bone_index = 11 bone2d_node = NodePath("Bone-11") -target_nodepath = NodePath("Bone-10") +target_nodepath = NodePath("Bone-12") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_kgfmh"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_s3wrk"] resource_local_to_scene = true bone_index = 12 bone2d_node = NodePath("Bone-12") -target_nodepath = NodePath("Bone-11") +target_nodepath = NodePath("Bone-13") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_o25it"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_rmbeq"] resource_local_to_scene = true bone_index = 13 bone2d_node = NodePath("Bone-13") -target_nodepath = NodePath("Bone-12") +target_nodepath = NodePath("Bone-9") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_eadp5"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_6i3yt"] resource_local_to_scene = true bone_index = 14 bone2d_node = NodePath("Bone-14") target_nodepath = NodePath("Bone-11") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_w43vc"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_m6rq3"] resource_local_to_scene = true bone_index = 15 bone2d_node = NodePath("Bone-15") -target_nodepath = NodePath("Bone-13") +target_nodepath = NodePath("Bone-14") +editor/draw_gizmo = false + +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_nuphk"] +resource_local_to_scene = true +bone_index = 16 +bone2d_node = NodePath("Bone-16") +target_nodepath = NodePath("Bone-15") +editor/draw_gizmo = false + +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_s5055"] +resource_local_to_scene = true +bone_index = 17 +bone2d_node = NodePath("Bone-17") +target_nodepath = NodePath("Bone-12") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_ydxhx"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_0lm2b"] resource_local_to_scene = true bone_index = 2 bone2d_node = NodePath("Bone-2") -target_nodepath = NodePath("Bone-6") +target_nodepath = NodePath("Bone-3") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_d56yr"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_ujbl3"] resource_local_to_scene = true bone_index = 3 bone2d_node = NodePath("Bone-3") -target_nodepath = NodePath("Bone-4") +target_nodepath = NodePath("Bone-2") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_0evgs"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_484jr"] resource_local_to_scene = true bone_index = 4 bone2d_node = NodePath("Bone-4") target_nodepath = NodePath("Bone-5") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_pfeo8"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_ojhcp"] resource_local_to_scene = true bone_index = 5 bone2d_node = NodePath("Bone-5") target_nodepath = NodePath("Bone-8") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_e5hfy"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_x4a01"] resource_local_to_scene = true bone_index = 6 bone2d_node = NodePath("Bone-6") -target_nodepath = NodePath("Bone-7") +target_nodepath = NodePath("Bone-3") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_cmwgb"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_rtwi6"] resource_local_to_scene = true bone_index = 7 bone2d_node = NodePath("Bone-7") -target_nodepath = NodePath("Bone-6") +target_nodepath = NodePath("Bone-8") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_r2o5i"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_6ab0n"] resource_local_to_scene = true bone_index = 8 bone2d_node = NodePath("Bone-8") target_nodepath = NodePath("Bone-9") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_84erw"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_2gxoh"] resource_local_to_scene = true bone_index = 9 bone2d_node = NodePath("Bone-9") target_nodepath = NodePath("Bone-8") editor/draw_gizmo = false -[sub_resource type="SkeletonModificationStack2D" id="SkeletonModificationStack2D_wbdkg"] +[sub_resource type="SkeletonModificationStack2D" id="SkeletonModificationStack2D_8b6k4"] resource_local_to_scene = true enabled = true -modification_count = 16 -modifications/0 = SubResource("SkeletonModification2DLookAt_5jek1") -modifications/1 = SubResource("SkeletonModification2DLookAt_j4lpv") -modifications/2 = SubResource("SkeletonModification2DLookAt_ydxhx") -modifications/3 = SubResource("SkeletonModification2DLookAt_d56yr") -modifications/4 = SubResource("SkeletonModification2DLookAt_0evgs") -modifications/5 = SubResource("SkeletonModification2DLookAt_pfeo8") -modifications/6 = SubResource("SkeletonModification2DLookAt_e5hfy") -modifications/7 = SubResource("SkeletonModification2DLookAt_cmwgb") -modifications/8 = SubResource("SkeletonModification2DLookAt_r2o5i") -modifications/9 = SubResource("SkeletonModification2DLookAt_84erw") -modifications/10 = SubResource("SkeletonModification2DLookAt_b1ofx") -modifications/11 = SubResource("SkeletonModification2DLookAt_0whul") -modifications/12 = SubResource("SkeletonModification2DLookAt_kgfmh") -modifications/13 = SubResource("SkeletonModification2DLookAt_o25it") -modifications/14 = SubResource("SkeletonModification2DLookAt_eadp5") -modifications/15 = SubResource("SkeletonModification2DLookAt_w43vc") - -[sub_resource type="CircleShape2D" id="CircleShape2D_lv61x"] -resource_local_to_scene = true - -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_agtm3"] +modification_count = 18 +modifications/0 = SubResource("SkeletonModification2DLookAt_4sopt") +modifications/1 = SubResource("SkeletonModification2DLookAt_68oje") +modifications/2 = SubResource("SkeletonModification2DLookAt_0lm2b") +modifications/3 = SubResource("SkeletonModification2DLookAt_ujbl3") +modifications/4 = SubResource("SkeletonModification2DLookAt_484jr") +modifications/5 = SubResource("SkeletonModification2DLookAt_ojhcp") +modifications/6 = SubResource("SkeletonModification2DLookAt_x4a01") +modifications/7 = SubResource("SkeletonModification2DLookAt_rtwi6") +modifications/8 = SubResource("SkeletonModification2DLookAt_6ab0n") +modifications/9 = SubResource("SkeletonModification2DLookAt_2gxoh") +modifications/10 = SubResource("SkeletonModification2DLookAt_g0eih") +modifications/11 = SubResource("SkeletonModification2DLookAt_bajna") +modifications/12 = SubResource("SkeletonModification2DLookAt_s3wrk") +modifications/13 = SubResource("SkeletonModification2DLookAt_rmbeq") +modifications/14 = SubResource("SkeletonModification2DLookAt_6i3yt") +modifications/15 = SubResource("SkeletonModification2DLookAt_m6rq3") +modifications/16 = SubResource("SkeletonModification2DLookAt_nuphk") +modifications/17 = SubResource("SkeletonModification2DLookAt_s5055") + +[sub_resource type="CircleShape2D" id="CircleShape2D_ndv12"] +resource_local_to_scene = true +radius = 13.0 + +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_rybvh"] resource_local_to_scene = true bone_index = 0 bone2d_node = NodePath("Bone-0") -target_nodepath = NodePath("Bone-3") +target_nodepath = NodePath("Bone-4") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_a7c4u"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_7nis1"] resource_local_to_scene = true bone_index = 1 bone2d_node = NodePath("Bone-1") target_nodepath = NodePath("Bone-4") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_t2bfh"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_2mp6v"] resource_local_to_scene = true bone_index = 10 bone2d_node = NodePath("Bone-10") target_nodepath = NodePath("Bone-11") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_no0yj"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_j67yk"] resource_local_to_scene = true bone_index = 11 bone2d_node = NodePath("Bone-11") target_nodepath = NodePath("Bone-12") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_dta3b"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_ab17g"] resource_local_to_scene = true bone_index = 12 bone2d_node = NodePath("Bone-12") target_nodepath = NodePath("Bone-13") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_5kakf"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_gj2rm"] resource_local_to_scene = true bone_index = 13 bone2d_node = NodePath("Bone-13") -target_nodepath = NodePath("Bone-14") +target_nodepath = NodePath("Bone-9") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_8yxkc"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_obv4x"] resource_local_to_scene = true bone_index = 14 bone2d_node = NodePath("Bone-14") -target_nodepath = NodePath("Bone-17") +target_nodepath = NodePath("Bone-11") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_5eqxm"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_rjq4w"] resource_local_to_scene = true bone_index = 15 bone2d_node = NodePath("Bone-15") -target_nodepath = NodePath("Bone-12") +target_nodepath = NodePath("Bone-14") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_5vtvw"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_k8ws2"] resource_local_to_scene = true bone_index = 16 bone2d_node = NodePath("Bone-16") -target_nodepath = NodePath("Bone-13") +target_nodepath = NodePath("Bone-15") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_l2ncp"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_oqd20"] resource_local_to_scene = true bone_index = 17 bone2d_node = NodePath("Bone-17") -target_nodepath = NodePath("Bone-14") +target_nodepath = NodePath("Bone-12") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_cfojo"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_13ki2"] resource_local_to_scene = true bone_index = 18 bone2d_node = NodePath("Bone-18") -target_nodepath = NodePath("Bone-14") -editor/draw_gizmo = false - -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_syesi"] -resource_local_to_scene = true -bone_index = 19 -bone2d_node = NodePath("Bone-19") -target_nodepath = NodePath("Bone-9") +target_nodepath = NodePath("Bone-13") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_h0po6"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_k526u"] resource_local_to_scene = true bone_index = 2 bone2d_node = NodePath("Bone-2") target_nodepath = NodePath("Bone-6") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_81r0l"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_phexh"] resource_local_to_scene = true bone_index = 3 bone2d_node = NodePath("Bone-3") -target_nodepath = NodePath("Bone-4") +target_nodepath = NodePath("Bone-2") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_dd23c"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_m6sxt"] resource_local_to_scene = true bone_index = 4 bone2d_node = NodePath("Bone-4") target_nodepath = NodePath("Bone-5") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_0bfdi"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_wntp7"] resource_local_to_scene = true bone_index = 5 bone2d_node = NodePath("Bone-5") -target_nodepath = NodePath("Bone-8") +target_nodepath = NodePath("Bone-4") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_oya8r"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_osjqe"] resource_local_to_scene = true bone_index = 6 bone2d_node = NodePath("Bone-6") -target_nodepath = NodePath("Bone-10") +target_nodepath = NodePath("Bone-3") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_nc7br"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_k252k"] resource_local_to_scene = true bone_index = 7 bone2d_node = NodePath("Bone-7") target_nodepath = NodePath("Bone-8") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_1xs7s"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_0osv5"] resource_local_to_scene = true bone_index = 8 bone2d_node = NodePath("Bone-8") target_nodepath = NodePath("Bone-9") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_u1dqo"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_m3wjt"] resource_local_to_scene = true bone_index = 9 bone2d_node = NodePath("Bone-9") -target_nodepath = NodePath("Bone-13") +target_nodepath = NodePath("Bone-18") editor/draw_gizmo = false -[sub_resource type="SkeletonModificationStack2D" id="SkeletonModificationStack2D_3exv5"] +[sub_resource type="SkeletonModificationStack2D" id="SkeletonModificationStack2D_txsj5"] resource_local_to_scene = true enabled = true -modification_count = 20 -modifications/0 = SubResource("SkeletonModification2DLookAt_agtm3") -modifications/1 = SubResource("SkeletonModification2DLookAt_a7c4u") -modifications/2 = SubResource("SkeletonModification2DLookAt_h0po6") -modifications/3 = SubResource("SkeletonModification2DLookAt_81r0l") -modifications/4 = SubResource("SkeletonModification2DLookAt_dd23c") -modifications/5 = SubResource("SkeletonModification2DLookAt_0bfdi") -modifications/6 = SubResource("SkeletonModification2DLookAt_oya8r") -modifications/7 = SubResource("SkeletonModification2DLookAt_nc7br") -modifications/8 = SubResource("SkeletonModification2DLookAt_1xs7s") -modifications/9 = SubResource("SkeletonModification2DLookAt_u1dqo") -modifications/10 = SubResource("SkeletonModification2DLookAt_t2bfh") -modifications/11 = SubResource("SkeletonModification2DLookAt_no0yj") -modifications/12 = SubResource("SkeletonModification2DLookAt_dta3b") -modifications/13 = SubResource("SkeletonModification2DLookAt_5kakf") -modifications/14 = SubResource("SkeletonModification2DLookAt_8yxkc") -modifications/15 = SubResource("SkeletonModification2DLookAt_5eqxm") -modifications/16 = SubResource("SkeletonModification2DLookAt_5vtvw") -modifications/17 = SubResource("SkeletonModification2DLookAt_l2ncp") -modifications/18 = SubResource("SkeletonModification2DLookAt_cfojo") -modifications/19 = SubResource("SkeletonModification2DLookAt_syesi") - -[sub_resource type="CircleShape2D" id="CircleShape2D_a6wax"] +modification_count = 19 +modifications/0 = SubResource("SkeletonModification2DLookAt_rybvh") +modifications/1 = SubResource("SkeletonModification2DLookAt_7nis1") +modifications/2 = SubResource("SkeletonModification2DLookAt_k526u") +modifications/3 = SubResource("SkeletonModification2DLookAt_phexh") +modifications/4 = SubResource("SkeletonModification2DLookAt_m6sxt") +modifications/5 = SubResource("SkeletonModification2DLookAt_wntp7") +modifications/6 = SubResource("SkeletonModification2DLookAt_osjqe") +modifications/7 = SubResource("SkeletonModification2DLookAt_k252k") +modifications/8 = SubResource("SkeletonModification2DLookAt_0osv5") +modifications/9 = SubResource("SkeletonModification2DLookAt_m3wjt") +modifications/10 = SubResource("SkeletonModification2DLookAt_2mp6v") +modifications/11 = SubResource("SkeletonModification2DLookAt_j67yk") +modifications/12 = SubResource("SkeletonModification2DLookAt_ab17g") +modifications/13 = SubResource("SkeletonModification2DLookAt_gj2rm") +modifications/14 = SubResource("SkeletonModification2DLookAt_obv4x") +modifications/15 = SubResource("SkeletonModification2DLookAt_rjq4w") +modifications/16 = SubResource("SkeletonModification2DLookAt_k8ws2") +modifications/17 = SubResource("SkeletonModification2DLookAt_oqd20") +modifications/18 = SubResource("SkeletonModification2DLookAt_13ki2") + +[sub_resource type="CircleShape2D" id="CircleShape2D_a5d5c"] resource_local_to_scene = true radius = 9.5 -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_7bw7n"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_e5pt5"] resource_local_to_scene = true bone_index = 0 bone2d_node = NodePath("Bone-0") -target_nodepath = NodePath("Bone-3") +target_nodepath = NodePath("Bone-4") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_p7i21"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_1skla"] resource_local_to_scene = true bone_index = 1 bone2d_node = NodePath("Bone-1") target_nodepath = NodePath("Bone-4") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_0idcy"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_bir6g"] resource_local_to_scene = true bone_index = 10 bone2d_node = NodePath("Bone-10") target_nodepath = NodePath("Bone-11") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_qdxuw"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_26pqr"] resource_local_to_scene = true bone_index = 11 bone2d_node = NodePath("Bone-11") target_nodepath = NodePath("Bone-12") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_nutn1"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_x8ypa"] resource_local_to_scene = true bone_index = 12 bone2d_node = NodePath("Bone-12") target_nodepath = NodePath("Bone-13") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_mtyf8"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_ru6aa"] resource_local_to_scene = true bone_index = 13 bone2d_node = NodePath("Bone-13") -target_nodepath = NodePath("Bone-14") +target_nodepath = NodePath("Bone-9") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_xnus4"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_ismbh"] resource_local_to_scene = true bone_index = 14 bone2d_node = NodePath("Bone-14") -target_nodepath = NodePath("Bone-17") +target_nodepath = NodePath("Bone-11") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_q6ctj"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_s5g0c"] resource_local_to_scene = true bone_index = 15 bone2d_node = NodePath("Bone-15") -target_nodepath = NodePath("Bone-12") +target_nodepath = NodePath("Bone-14") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_cgkp1"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_28y3n"] resource_local_to_scene = true bone_index = 16 bone2d_node = NodePath("Bone-16") -target_nodepath = NodePath("Bone-13") +target_nodepath = NodePath("Bone-15") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_0p87t"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_kagbc"] resource_local_to_scene = true bone_index = 17 bone2d_node = NodePath("Bone-17") -target_nodepath = NodePath("Bone-14") +target_nodepath = NodePath("Bone-12") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_e5vi8"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_lh54g"] resource_local_to_scene = true bone_index = 18 bone2d_node = NodePath("Bone-18") -target_nodepath = NodePath("Bone-14") -editor/draw_gizmo = false - -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_1bfnf"] -resource_local_to_scene = true -bone_index = 19 -bone2d_node = NodePath("Bone-19") -target_nodepath = NodePath("Bone-9") +target_nodepath = NodePath("Bone-13") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_nr0qw"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_7xf3i"] resource_local_to_scene = true bone_index = 2 bone2d_node = NodePath("Bone-2") target_nodepath = NodePath("Bone-6") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_etwmf"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_mdfxu"] resource_local_to_scene = true bone_index = 3 bone2d_node = NodePath("Bone-3") -target_nodepath = NodePath("Bone-4") +target_nodepath = NodePath("Bone-2") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_d6nyv"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_ml50o"] resource_local_to_scene = true bone_index = 4 bone2d_node = NodePath("Bone-4") target_nodepath = NodePath("Bone-5") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_5w3ys"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_8utsx"] resource_local_to_scene = true bone_index = 5 bone2d_node = NodePath("Bone-5") -target_nodepath = NodePath("Bone-8") +target_nodepath = NodePath("Bone-4") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_r3wd2"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_2qkvw"] resource_local_to_scene = true bone_index = 6 bone2d_node = NodePath("Bone-6") -target_nodepath = NodePath("Bone-10") +target_nodepath = NodePath("Bone-3") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_d0c13"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_s8wqw"] resource_local_to_scene = true bone_index = 7 bone2d_node = NodePath("Bone-7") target_nodepath = NodePath("Bone-8") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_pbt8b"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_2mk34"] resource_local_to_scene = true bone_index = 8 bone2d_node = NodePath("Bone-8") target_nodepath = NodePath("Bone-9") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_1o3nx"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_03rxw"] resource_local_to_scene = true bone_index = 9 bone2d_node = NodePath("Bone-9") -target_nodepath = NodePath("Bone-13") +target_nodepath = NodePath("Bone-18") editor/draw_gizmo = false -[sub_resource type="SkeletonModificationStack2D" id="SkeletonModificationStack2D_d0i4p"] +[sub_resource type="SkeletonModificationStack2D" id="SkeletonModificationStack2D_uj7dr"] resource_local_to_scene = true enabled = true -modification_count = 20 -modifications/0 = SubResource("SkeletonModification2DLookAt_7bw7n") -modifications/1 = SubResource("SkeletonModification2DLookAt_p7i21") -modifications/2 = SubResource("SkeletonModification2DLookAt_nr0qw") -modifications/3 = SubResource("SkeletonModification2DLookAt_etwmf") -modifications/4 = SubResource("SkeletonModification2DLookAt_d6nyv") -modifications/5 = SubResource("SkeletonModification2DLookAt_5w3ys") -modifications/6 = SubResource("SkeletonModification2DLookAt_r3wd2") -modifications/7 = SubResource("SkeletonModification2DLookAt_d0c13") -modifications/8 = SubResource("SkeletonModification2DLookAt_pbt8b") -modifications/9 = SubResource("SkeletonModification2DLookAt_1o3nx") -modifications/10 = SubResource("SkeletonModification2DLookAt_0idcy") -modifications/11 = SubResource("SkeletonModification2DLookAt_qdxuw") -modifications/12 = SubResource("SkeletonModification2DLookAt_nutn1") -modifications/13 = SubResource("SkeletonModification2DLookAt_mtyf8") -modifications/14 = SubResource("SkeletonModification2DLookAt_xnus4") -modifications/15 = SubResource("SkeletonModification2DLookAt_q6ctj") -modifications/16 = SubResource("SkeletonModification2DLookAt_cgkp1") -modifications/17 = SubResource("SkeletonModification2DLookAt_0p87t") -modifications/18 = SubResource("SkeletonModification2DLookAt_e5vi8") -modifications/19 = SubResource("SkeletonModification2DLookAt_1bfnf") - -[sub_resource type="CircleShape2D" id="CircleShape2D_jpo70"] +modification_count = 19 +modifications/0 = SubResource("SkeletonModification2DLookAt_e5pt5") +modifications/1 = SubResource("SkeletonModification2DLookAt_1skla") +modifications/2 = SubResource("SkeletonModification2DLookAt_7xf3i") +modifications/3 = SubResource("SkeletonModification2DLookAt_mdfxu") +modifications/4 = SubResource("SkeletonModification2DLookAt_ml50o") +modifications/5 = SubResource("SkeletonModification2DLookAt_8utsx") +modifications/6 = SubResource("SkeletonModification2DLookAt_2qkvw") +modifications/7 = SubResource("SkeletonModification2DLookAt_s8wqw") +modifications/8 = SubResource("SkeletonModification2DLookAt_2mk34") +modifications/9 = SubResource("SkeletonModification2DLookAt_03rxw") +modifications/10 = SubResource("SkeletonModification2DLookAt_bir6g") +modifications/11 = SubResource("SkeletonModification2DLookAt_26pqr") +modifications/12 = SubResource("SkeletonModification2DLookAt_x8ypa") +modifications/13 = SubResource("SkeletonModification2DLookAt_ru6aa") +modifications/14 = SubResource("SkeletonModification2DLookAt_ismbh") +modifications/15 = SubResource("SkeletonModification2DLookAt_s5g0c") +modifications/16 = SubResource("SkeletonModification2DLookAt_28y3n") +modifications/17 = SubResource("SkeletonModification2DLookAt_kagbc") +modifications/18 = SubResource("SkeletonModification2DLookAt_lh54g") + +[sub_resource type="CircleShape2D" id="CircleShape2D_pgvmq"] resource_local_to_scene = true radius = 9.5 -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_2bf0w"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_gq134"] resource_local_to_scene = true bone_index = 0 bone2d_node = NodePath("Bone-0") -target_nodepath = NodePath("Bone-3") +target_nodepath = NodePath("Bone-4") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_apm3a"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_3i53m"] resource_local_to_scene = true bone_index = 1 bone2d_node = NodePath("Bone-1") target_nodepath = NodePath("Bone-4") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_a5h42"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_x5jx1"] resource_local_to_scene = true bone_index = 10 bone2d_node = NodePath("Bone-10") target_nodepath = NodePath("Bone-11") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_a67dh"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_nr143"] resource_local_to_scene = true bone_index = 11 bone2d_node = NodePath("Bone-11") target_nodepath = NodePath("Bone-12") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_2m0lp"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_rkxxn"] resource_local_to_scene = true bone_index = 12 bone2d_node = NodePath("Bone-12") target_nodepath = NodePath("Bone-13") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_nij5a"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_0b5tl"] resource_local_to_scene = true bone_index = 13 bone2d_node = NodePath("Bone-13") -target_nodepath = NodePath("Bone-14") +target_nodepath = NodePath("Bone-9") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_qk0m0"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_74joe"] resource_local_to_scene = true bone_index = 14 bone2d_node = NodePath("Bone-14") -target_nodepath = NodePath("Bone-17") +target_nodepath = NodePath("Bone-11") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_t6v7g"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_f6wl2"] resource_local_to_scene = true bone_index = 15 bone2d_node = NodePath("Bone-15") -target_nodepath = NodePath("Bone-12") +target_nodepath = NodePath("Bone-14") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_n1efe"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_klwd7"] resource_local_to_scene = true bone_index = 16 bone2d_node = NodePath("Bone-16") -target_nodepath = NodePath("Bone-13") +target_nodepath = NodePath("Bone-15") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_isytc"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_aahc5"] resource_local_to_scene = true bone_index = 17 bone2d_node = NodePath("Bone-17") -target_nodepath = NodePath("Bone-14") +target_nodepath = NodePath("Bone-12") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_wnr8r"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_au0y5"] resource_local_to_scene = true bone_index = 18 bone2d_node = NodePath("Bone-18") -target_nodepath = NodePath("Bone-14") -editor/draw_gizmo = false - -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_yihhi"] -resource_local_to_scene = true -bone_index = 19 -bone2d_node = NodePath("Bone-19") -target_nodepath = NodePath("Bone-9") +target_nodepath = NodePath("Bone-13") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_cycj0"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_1q5lo"] resource_local_to_scene = true bone_index = 2 bone2d_node = NodePath("Bone-2") target_nodepath = NodePath("Bone-6") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_wq3pl"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_53e7h"] resource_local_to_scene = true bone_index = 3 bone2d_node = NodePath("Bone-3") -target_nodepath = NodePath("Bone-4") +target_nodepath = NodePath("Bone-2") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_45k28"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_fr238"] resource_local_to_scene = true bone_index = 4 bone2d_node = NodePath("Bone-4") target_nodepath = NodePath("Bone-5") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_flnhd"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_61u2p"] resource_local_to_scene = true bone_index = 5 bone2d_node = NodePath("Bone-5") -target_nodepath = NodePath("Bone-8") +target_nodepath = NodePath("Bone-4") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_yl33u"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_3alp8"] resource_local_to_scene = true bone_index = 6 bone2d_node = NodePath("Bone-6") -target_nodepath = NodePath("Bone-10") +target_nodepath = NodePath("Bone-3") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_xwmgd"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_xan7a"] resource_local_to_scene = true bone_index = 7 bone2d_node = NodePath("Bone-7") target_nodepath = NodePath("Bone-8") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_a1dhm"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_scx7r"] resource_local_to_scene = true bone_index = 8 bone2d_node = NodePath("Bone-8") target_nodepath = NodePath("Bone-9") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_mvjgm"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_2rmoh"] resource_local_to_scene = true bone_index = 9 bone2d_node = NodePath("Bone-9") -target_nodepath = NodePath("Bone-13") +target_nodepath = NodePath("Bone-18") editor/draw_gizmo = false -[sub_resource type="SkeletonModificationStack2D" id="SkeletonModificationStack2D_8uuqq"] +[sub_resource type="SkeletonModificationStack2D" id="SkeletonModificationStack2D_qsaij"] resource_local_to_scene = true enabled = true -modification_count = 20 -modifications/0 = SubResource("SkeletonModification2DLookAt_2bf0w") -modifications/1 = SubResource("SkeletonModification2DLookAt_apm3a") -modifications/2 = SubResource("SkeletonModification2DLookAt_cycj0") -modifications/3 = SubResource("SkeletonModification2DLookAt_wq3pl") -modifications/4 = SubResource("SkeletonModification2DLookAt_45k28") -modifications/5 = SubResource("SkeletonModification2DLookAt_flnhd") -modifications/6 = SubResource("SkeletonModification2DLookAt_yl33u") -modifications/7 = SubResource("SkeletonModification2DLookAt_xwmgd") -modifications/8 = SubResource("SkeletonModification2DLookAt_a1dhm") -modifications/9 = SubResource("SkeletonModification2DLookAt_mvjgm") -modifications/10 = SubResource("SkeletonModification2DLookAt_a5h42") -modifications/11 = SubResource("SkeletonModification2DLookAt_a67dh") -modifications/12 = SubResource("SkeletonModification2DLookAt_2m0lp") -modifications/13 = SubResource("SkeletonModification2DLookAt_nij5a") -modifications/14 = SubResource("SkeletonModification2DLookAt_qk0m0") -modifications/15 = SubResource("SkeletonModification2DLookAt_t6v7g") -modifications/16 = SubResource("SkeletonModification2DLookAt_n1efe") -modifications/17 = SubResource("SkeletonModification2DLookAt_isytc") -modifications/18 = SubResource("SkeletonModification2DLookAt_wnr8r") -modifications/19 = SubResource("SkeletonModification2DLookAt_yihhi") - -[sub_resource type="CircleShape2D" id="CircleShape2D_rp0md"] +modification_count = 19 +modifications/0 = SubResource("SkeletonModification2DLookAt_gq134") +modifications/1 = SubResource("SkeletonModification2DLookAt_3i53m") +modifications/2 = SubResource("SkeletonModification2DLookAt_1q5lo") +modifications/3 = SubResource("SkeletonModification2DLookAt_53e7h") +modifications/4 = SubResource("SkeletonModification2DLookAt_fr238") +modifications/5 = SubResource("SkeletonModification2DLookAt_61u2p") +modifications/6 = SubResource("SkeletonModification2DLookAt_3alp8") +modifications/7 = SubResource("SkeletonModification2DLookAt_xan7a") +modifications/8 = SubResource("SkeletonModification2DLookAt_scx7r") +modifications/9 = SubResource("SkeletonModification2DLookAt_2rmoh") +modifications/10 = SubResource("SkeletonModification2DLookAt_x5jx1") +modifications/11 = SubResource("SkeletonModification2DLookAt_nr143") +modifications/12 = SubResource("SkeletonModification2DLookAt_rkxxn") +modifications/13 = SubResource("SkeletonModification2DLookAt_0b5tl") +modifications/14 = SubResource("SkeletonModification2DLookAt_74joe") +modifications/15 = SubResource("SkeletonModification2DLookAt_f6wl2") +modifications/16 = SubResource("SkeletonModification2DLookAt_klwd7") +modifications/17 = SubResource("SkeletonModification2DLookAt_aahc5") +modifications/18 = SubResource("SkeletonModification2DLookAt_au0y5") + +[sub_resource type="CircleShape2D" id="CircleShape2D_jfhsm"] resource_local_to_scene = true radius = 9.5 -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_uqucp"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_qf141"] resource_local_to_scene = true bone_index = 0 bone2d_node = NodePath("Bone-0") -target_nodepath = NodePath("Bone-3") +target_nodepath = NodePath("Bone-4") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_m1emv"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_hfqmr"] resource_local_to_scene = true bone_index = 1 bone2d_node = NodePath("Bone-1") target_nodepath = NodePath("Bone-4") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_42s3w"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_qmqh2"] resource_local_to_scene = true bone_index = 10 bone2d_node = NodePath("Bone-10") target_nodepath = NodePath("Bone-11") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_axdfb"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_pgn2i"] resource_local_to_scene = true bone_index = 11 bone2d_node = NodePath("Bone-11") target_nodepath = NodePath("Bone-12") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_8tk4g"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_8quko"] resource_local_to_scene = true bone_index = 12 bone2d_node = NodePath("Bone-12") target_nodepath = NodePath("Bone-13") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_rnukt"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_ff7od"] resource_local_to_scene = true bone_index = 13 bone2d_node = NodePath("Bone-13") -target_nodepath = NodePath("Bone-14") +target_nodepath = NodePath("Bone-9") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_a5x6v"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_757cs"] resource_local_to_scene = true bone_index = 14 bone2d_node = NodePath("Bone-14") -target_nodepath = NodePath("Bone-17") +target_nodepath = NodePath("Bone-11") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_v12et"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_pt0bc"] resource_local_to_scene = true bone_index = 15 bone2d_node = NodePath("Bone-15") -target_nodepath = NodePath("Bone-12") +target_nodepath = NodePath("Bone-14") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_fn4fs"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_owv8s"] resource_local_to_scene = true bone_index = 16 bone2d_node = NodePath("Bone-16") -target_nodepath = NodePath("Bone-13") +target_nodepath = NodePath("Bone-15") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_pux5u"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_y20mj"] resource_local_to_scene = true bone_index = 17 bone2d_node = NodePath("Bone-17") -target_nodepath = NodePath("Bone-14") +target_nodepath = NodePath("Bone-12") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_ce02r"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_xsjx4"] resource_local_to_scene = true bone_index = 18 bone2d_node = NodePath("Bone-18") -target_nodepath = NodePath("Bone-14") -editor/draw_gizmo = false - -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_v5exs"] -resource_local_to_scene = true -bone_index = 19 -bone2d_node = NodePath("Bone-19") -target_nodepath = NodePath("Bone-9") +target_nodepath = NodePath("Bone-13") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_ug3su"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_yl6gn"] resource_local_to_scene = true bone_index = 2 bone2d_node = NodePath("Bone-2") target_nodepath = NodePath("Bone-6") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_aalda"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_aejpd"] resource_local_to_scene = true bone_index = 3 bone2d_node = NodePath("Bone-3") -target_nodepath = NodePath("Bone-4") +target_nodepath = NodePath("Bone-2") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_1vgy6"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_c28n7"] resource_local_to_scene = true bone_index = 4 bone2d_node = NodePath("Bone-4") target_nodepath = NodePath("Bone-5") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_fu4lq"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_kllk3"] resource_local_to_scene = true bone_index = 5 bone2d_node = NodePath("Bone-5") -target_nodepath = NodePath("Bone-8") +target_nodepath = NodePath("Bone-4") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_vurc5"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_8sttn"] resource_local_to_scene = true bone_index = 6 bone2d_node = NodePath("Bone-6") -target_nodepath = NodePath("Bone-10") +target_nodepath = NodePath("Bone-3") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_j1emx"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_p7kkk"] resource_local_to_scene = true bone_index = 7 bone2d_node = NodePath("Bone-7") target_nodepath = NodePath("Bone-8") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_848rp"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_adr0l"] resource_local_to_scene = true bone_index = 8 bone2d_node = NodePath("Bone-8") target_nodepath = NodePath("Bone-9") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_klw62"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_1jcnc"] resource_local_to_scene = true bone_index = 9 bone2d_node = NodePath("Bone-9") -target_nodepath = NodePath("Bone-13") +target_nodepath = NodePath("Bone-18") editor/draw_gizmo = false -[sub_resource type="SkeletonModificationStack2D" id="SkeletonModificationStack2D_qthhb"] +[sub_resource type="SkeletonModificationStack2D" id="SkeletonModificationStack2D_q1k0q"] resource_local_to_scene = true enabled = true -modification_count = 20 -modifications/0 = SubResource("SkeletonModification2DLookAt_uqucp") -modifications/1 = SubResource("SkeletonModification2DLookAt_m1emv") -modifications/2 = SubResource("SkeletonModification2DLookAt_ug3su") -modifications/3 = SubResource("SkeletonModification2DLookAt_aalda") -modifications/4 = SubResource("SkeletonModification2DLookAt_1vgy6") -modifications/5 = SubResource("SkeletonModification2DLookAt_fu4lq") -modifications/6 = SubResource("SkeletonModification2DLookAt_vurc5") -modifications/7 = SubResource("SkeletonModification2DLookAt_j1emx") -modifications/8 = SubResource("SkeletonModification2DLookAt_848rp") -modifications/9 = SubResource("SkeletonModification2DLookAt_klw62") -modifications/10 = SubResource("SkeletonModification2DLookAt_42s3w") -modifications/11 = SubResource("SkeletonModification2DLookAt_axdfb") -modifications/12 = SubResource("SkeletonModification2DLookAt_8tk4g") -modifications/13 = SubResource("SkeletonModification2DLookAt_rnukt") -modifications/14 = SubResource("SkeletonModification2DLookAt_a5x6v") -modifications/15 = SubResource("SkeletonModification2DLookAt_v12et") -modifications/16 = SubResource("SkeletonModification2DLookAt_fn4fs") -modifications/17 = SubResource("SkeletonModification2DLookAt_pux5u") -modifications/18 = SubResource("SkeletonModification2DLookAt_ce02r") -modifications/19 = SubResource("SkeletonModification2DLookAt_v5exs") - -[sub_resource type="CircleShape2D" id="CircleShape2D_hvgye"] +modification_count = 19 +modifications/0 = SubResource("SkeletonModification2DLookAt_qf141") +modifications/1 = SubResource("SkeletonModification2DLookAt_hfqmr") +modifications/2 = SubResource("SkeletonModification2DLookAt_yl6gn") +modifications/3 = SubResource("SkeletonModification2DLookAt_aejpd") +modifications/4 = SubResource("SkeletonModification2DLookAt_c28n7") +modifications/5 = SubResource("SkeletonModification2DLookAt_kllk3") +modifications/6 = SubResource("SkeletonModification2DLookAt_8sttn") +modifications/7 = SubResource("SkeletonModification2DLookAt_p7kkk") +modifications/8 = SubResource("SkeletonModification2DLookAt_adr0l") +modifications/9 = SubResource("SkeletonModification2DLookAt_1jcnc") +modifications/10 = SubResource("SkeletonModification2DLookAt_qmqh2") +modifications/11 = SubResource("SkeletonModification2DLookAt_pgn2i") +modifications/12 = SubResource("SkeletonModification2DLookAt_8quko") +modifications/13 = SubResource("SkeletonModification2DLookAt_ff7od") +modifications/14 = SubResource("SkeletonModification2DLookAt_757cs") +modifications/15 = SubResource("SkeletonModification2DLookAt_pt0bc") +modifications/16 = SubResource("SkeletonModification2DLookAt_owv8s") +modifications/17 = SubResource("SkeletonModification2DLookAt_y20mj") +modifications/18 = SubResource("SkeletonModification2DLookAt_xsjx4") + +[sub_resource type="CircleShape2D" id="CircleShape2D_0pn6q"] resource_local_to_scene = true radius = 9.5 -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_d4umr"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_ds7pj"] resource_local_to_scene = true bone_index = 0 bone2d_node = NodePath("Bone-0") -target_nodepath = NodePath("Bone-3") +target_nodepath = NodePath("Bone-4") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_vfh1b"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_puy3a"] resource_local_to_scene = true bone_index = 1 bone2d_node = NodePath("Bone-1") target_nodepath = NodePath("Bone-4") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_wtvb3"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_x1fv0"] resource_local_to_scene = true bone_index = 10 bone2d_node = NodePath("Bone-10") target_nodepath = NodePath("Bone-11") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_qqmkq"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_udn6d"] resource_local_to_scene = true bone_index = 11 bone2d_node = NodePath("Bone-11") target_nodepath = NodePath("Bone-12") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_m5l3m"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_m24k2"] resource_local_to_scene = true bone_index = 12 bone2d_node = NodePath("Bone-12") target_nodepath = NodePath("Bone-13") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_mfqr1"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_nf45p"] resource_local_to_scene = true bone_index = 13 bone2d_node = NodePath("Bone-13") -target_nodepath = NodePath("Bone-14") +target_nodepath = NodePath("Bone-9") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_a08n0"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_30ud7"] resource_local_to_scene = true bone_index = 14 bone2d_node = NodePath("Bone-14") -target_nodepath = NodePath("Bone-17") +target_nodepath = NodePath("Bone-11") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_mu1fq"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_q4yqh"] resource_local_to_scene = true bone_index = 15 bone2d_node = NodePath("Bone-15") -target_nodepath = NodePath("Bone-12") +target_nodepath = NodePath("Bone-14") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_6hdji"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_tes4v"] resource_local_to_scene = true bone_index = 16 bone2d_node = NodePath("Bone-16") -target_nodepath = NodePath("Bone-13") +target_nodepath = NodePath("Bone-15") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_pe3tg"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_mts4b"] resource_local_to_scene = true bone_index = 17 bone2d_node = NodePath("Bone-17") -target_nodepath = NodePath("Bone-14") +target_nodepath = NodePath("Bone-12") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_6ayd6"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_0au2h"] resource_local_to_scene = true bone_index = 18 bone2d_node = NodePath("Bone-18") -target_nodepath = NodePath("Bone-14") -editor/draw_gizmo = false - -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_ulab2"] -resource_local_to_scene = true -bone_index = 19 -bone2d_node = NodePath("Bone-19") -target_nodepath = NodePath("Bone-9") +target_nodepath = NodePath("Bone-13") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_qqcw4"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_ttsxn"] resource_local_to_scene = true bone_index = 2 bone2d_node = NodePath("Bone-2") target_nodepath = NodePath("Bone-6") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_e1g5l"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_iay2b"] resource_local_to_scene = true bone_index = 3 bone2d_node = NodePath("Bone-3") -target_nodepath = NodePath("Bone-4") +target_nodepath = NodePath("Bone-2") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_0salu"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_pb1ks"] resource_local_to_scene = true bone_index = 4 bone2d_node = NodePath("Bone-4") target_nodepath = NodePath("Bone-5") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_ofwh5"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_m8w5y"] resource_local_to_scene = true bone_index = 5 bone2d_node = NodePath("Bone-5") -target_nodepath = NodePath("Bone-8") +target_nodepath = NodePath("Bone-4") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_bxtsm"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_5p1wt"] resource_local_to_scene = true bone_index = 6 bone2d_node = NodePath("Bone-6") -target_nodepath = NodePath("Bone-10") +target_nodepath = NodePath("Bone-3") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_3q213"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_16nr4"] resource_local_to_scene = true bone_index = 7 bone2d_node = NodePath("Bone-7") target_nodepath = NodePath("Bone-8") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_0waec"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_ocuv6"] resource_local_to_scene = true bone_index = 8 bone2d_node = NodePath("Bone-8") target_nodepath = NodePath("Bone-9") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_phu7a"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_w8r7k"] resource_local_to_scene = true bone_index = 9 bone2d_node = NodePath("Bone-9") -target_nodepath = NodePath("Bone-13") +target_nodepath = NodePath("Bone-18") editor/draw_gizmo = false -[sub_resource type="SkeletonModificationStack2D" id="SkeletonModificationStack2D_wjxl7"] +[sub_resource type="SkeletonModificationStack2D" id="SkeletonModificationStack2D_qcx0f"] resource_local_to_scene = true enabled = true -modification_count = 20 -modifications/0 = SubResource("SkeletonModification2DLookAt_d4umr") -modifications/1 = SubResource("SkeletonModification2DLookAt_vfh1b") -modifications/2 = SubResource("SkeletonModification2DLookAt_qqcw4") -modifications/3 = SubResource("SkeletonModification2DLookAt_e1g5l") -modifications/4 = SubResource("SkeletonModification2DLookAt_0salu") -modifications/5 = SubResource("SkeletonModification2DLookAt_ofwh5") -modifications/6 = SubResource("SkeletonModification2DLookAt_bxtsm") -modifications/7 = SubResource("SkeletonModification2DLookAt_3q213") -modifications/8 = SubResource("SkeletonModification2DLookAt_0waec") -modifications/9 = SubResource("SkeletonModification2DLookAt_phu7a") -modifications/10 = SubResource("SkeletonModification2DLookAt_wtvb3") -modifications/11 = SubResource("SkeletonModification2DLookAt_qqmkq") -modifications/12 = SubResource("SkeletonModification2DLookAt_m5l3m") -modifications/13 = SubResource("SkeletonModification2DLookAt_mfqr1") -modifications/14 = SubResource("SkeletonModification2DLookAt_a08n0") -modifications/15 = SubResource("SkeletonModification2DLookAt_mu1fq") -modifications/16 = SubResource("SkeletonModification2DLookAt_6hdji") -modifications/17 = SubResource("SkeletonModification2DLookAt_pe3tg") -modifications/18 = SubResource("SkeletonModification2DLookAt_6ayd6") -modifications/19 = SubResource("SkeletonModification2DLookAt_ulab2") - -[sub_resource type="CircleShape2D" id="CircleShape2D_nnd07"] +modification_count = 19 +modifications/0 = SubResource("SkeletonModification2DLookAt_ds7pj") +modifications/1 = SubResource("SkeletonModification2DLookAt_puy3a") +modifications/2 = SubResource("SkeletonModification2DLookAt_ttsxn") +modifications/3 = SubResource("SkeletonModification2DLookAt_iay2b") +modifications/4 = SubResource("SkeletonModification2DLookAt_pb1ks") +modifications/5 = SubResource("SkeletonModification2DLookAt_m8w5y") +modifications/6 = SubResource("SkeletonModification2DLookAt_5p1wt") +modifications/7 = SubResource("SkeletonModification2DLookAt_16nr4") +modifications/8 = SubResource("SkeletonModification2DLookAt_ocuv6") +modifications/9 = SubResource("SkeletonModification2DLookAt_w8r7k") +modifications/10 = SubResource("SkeletonModification2DLookAt_x1fv0") +modifications/11 = SubResource("SkeletonModification2DLookAt_udn6d") +modifications/12 = SubResource("SkeletonModification2DLookAt_m24k2") +modifications/13 = SubResource("SkeletonModification2DLookAt_nf45p") +modifications/14 = SubResource("SkeletonModification2DLookAt_30ud7") +modifications/15 = SubResource("SkeletonModification2DLookAt_q4yqh") +modifications/16 = SubResource("SkeletonModification2DLookAt_tes4v") +modifications/17 = SubResource("SkeletonModification2DLookAt_mts4b") +modifications/18 = SubResource("SkeletonModification2DLookAt_0au2h") + +[sub_resource type="CircleShape2D" id="CircleShape2D_faxuv"] resource_local_to_scene = true radius = 9.5 -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_em8fa"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_5v45a"] resource_local_to_scene = true bone_index = 0 bone2d_node = NodePath("Bone-0") -target_nodepath = NodePath("Bone-3") +target_nodepath = NodePath("Bone-4") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_41wqm"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_xlh5s"] resource_local_to_scene = true bone_index = 1 bone2d_node = NodePath("Bone-1") target_nodepath = NodePath("Bone-4") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_w4aql"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_x5ag8"] resource_local_to_scene = true bone_index = 10 bone2d_node = NodePath("Bone-10") target_nodepath = NodePath("Bone-11") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_im4er"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_yko6o"] resource_local_to_scene = true bone_index = 11 bone2d_node = NodePath("Bone-11") target_nodepath = NodePath("Bone-12") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_ts7s8"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_bn0js"] resource_local_to_scene = true bone_index = 12 bone2d_node = NodePath("Bone-12") target_nodepath = NodePath("Bone-13") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_rl7b0"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_m37km"] resource_local_to_scene = true bone_index = 13 bone2d_node = NodePath("Bone-13") -target_nodepath = NodePath("Bone-14") +target_nodepath = NodePath("Bone-9") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_xttfo"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_64xed"] resource_local_to_scene = true bone_index = 14 bone2d_node = NodePath("Bone-14") -target_nodepath = NodePath("Bone-17") +target_nodepath = NodePath("Bone-11") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_avgmg"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_cwyj7"] resource_local_to_scene = true bone_index = 15 bone2d_node = NodePath("Bone-15") -target_nodepath = NodePath("Bone-12") +target_nodepath = NodePath("Bone-14") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_6fjpp"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_ylu05"] resource_local_to_scene = true bone_index = 16 bone2d_node = NodePath("Bone-16") -target_nodepath = NodePath("Bone-13") +target_nodepath = NodePath("Bone-15") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_ab4g1"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_uwibo"] resource_local_to_scene = true bone_index = 17 bone2d_node = NodePath("Bone-17") -target_nodepath = NodePath("Bone-14") +target_nodepath = NodePath("Bone-12") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_c72ih"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_ix3bk"] resource_local_to_scene = true bone_index = 18 bone2d_node = NodePath("Bone-18") -target_nodepath = NodePath("Bone-14") -editor/draw_gizmo = false - -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_2smes"] -resource_local_to_scene = true -bone_index = 19 -bone2d_node = NodePath("Bone-19") -target_nodepath = NodePath("Bone-9") +target_nodepath = NodePath("Bone-13") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_0ufvs"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_2ot0k"] resource_local_to_scene = true bone_index = 2 bone2d_node = NodePath("Bone-2") target_nodepath = NodePath("Bone-6") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_i1mqn"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_p6yo6"] resource_local_to_scene = true bone_index = 3 bone2d_node = NodePath("Bone-3") -target_nodepath = NodePath("Bone-4") +target_nodepath = NodePath("Bone-2") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_i1ki5"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_ttx3f"] resource_local_to_scene = true bone_index = 4 bone2d_node = NodePath("Bone-4") target_nodepath = NodePath("Bone-5") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_h1jmq"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_27dye"] resource_local_to_scene = true bone_index = 5 bone2d_node = NodePath("Bone-5") -target_nodepath = NodePath("Bone-8") +target_nodepath = NodePath("Bone-4") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_a8b81"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_rw8fp"] resource_local_to_scene = true bone_index = 6 bone2d_node = NodePath("Bone-6") -target_nodepath = NodePath("Bone-10") +target_nodepath = NodePath("Bone-3") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_twpbk"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_x8sqv"] resource_local_to_scene = true bone_index = 7 bone2d_node = NodePath("Bone-7") target_nodepath = NodePath("Bone-8") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_nb0kj"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_l777t"] resource_local_to_scene = true bone_index = 8 bone2d_node = NodePath("Bone-8") target_nodepath = NodePath("Bone-9") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_m4eit"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_601kg"] resource_local_to_scene = true bone_index = 9 bone2d_node = NodePath("Bone-9") -target_nodepath = NodePath("Bone-13") +target_nodepath = NodePath("Bone-18") editor/draw_gizmo = false -[sub_resource type="SkeletonModificationStack2D" id="SkeletonModificationStack2D_e0llx"] +[sub_resource type="SkeletonModificationStack2D" id="SkeletonModificationStack2D_dtf1u"] resource_local_to_scene = true enabled = true -modification_count = 20 -modifications/0 = SubResource("SkeletonModification2DLookAt_em8fa") -modifications/1 = SubResource("SkeletonModification2DLookAt_41wqm") -modifications/2 = SubResource("SkeletonModification2DLookAt_0ufvs") -modifications/3 = SubResource("SkeletonModification2DLookAt_i1mqn") -modifications/4 = SubResource("SkeletonModification2DLookAt_i1ki5") -modifications/5 = SubResource("SkeletonModification2DLookAt_h1jmq") -modifications/6 = SubResource("SkeletonModification2DLookAt_a8b81") -modifications/7 = SubResource("SkeletonModification2DLookAt_twpbk") -modifications/8 = SubResource("SkeletonModification2DLookAt_nb0kj") -modifications/9 = SubResource("SkeletonModification2DLookAt_m4eit") -modifications/10 = SubResource("SkeletonModification2DLookAt_w4aql") -modifications/11 = SubResource("SkeletonModification2DLookAt_im4er") -modifications/12 = SubResource("SkeletonModification2DLookAt_ts7s8") -modifications/13 = SubResource("SkeletonModification2DLookAt_rl7b0") -modifications/14 = SubResource("SkeletonModification2DLookAt_xttfo") -modifications/15 = SubResource("SkeletonModification2DLookAt_avgmg") -modifications/16 = SubResource("SkeletonModification2DLookAt_6fjpp") -modifications/17 = SubResource("SkeletonModification2DLookAt_ab4g1") -modifications/18 = SubResource("SkeletonModification2DLookAt_c72ih") -modifications/19 = SubResource("SkeletonModification2DLookAt_2smes") - -[sub_resource type="CircleShape2D" id="CircleShape2D_1leud"] +modification_count = 19 +modifications/0 = SubResource("SkeletonModification2DLookAt_5v45a") +modifications/1 = SubResource("SkeletonModification2DLookAt_xlh5s") +modifications/2 = SubResource("SkeletonModification2DLookAt_2ot0k") +modifications/3 = SubResource("SkeletonModification2DLookAt_p6yo6") +modifications/4 = SubResource("SkeletonModification2DLookAt_ttx3f") +modifications/5 = SubResource("SkeletonModification2DLookAt_27dye") +modifications/6 = SubResource("SkeletonModification2DLookAt_rw8fp") +modifications/7 = SubResource("SkeletonModification2DLookAt_x8sqv") +modifications/8 = SubResource("SkeletonModification2DLookAt_l777t") +modifications/9 = SubResource("SkeletonModification2DLookAt_601kg") +modifications/10 = SubResource("SkeletonModification2DLookAt_x5ag8") +modifications/11 = SubResource("SkeletonModification2DLookAt_yko6o") +modifications/12 = SubResource("SkeletonModification2DLookAt_bn0js") +modifications/13 = SubResource("SkeletonModification2DLookAt_m37km") +modifications/14 = SubResource("SkeletonModification2DLookAt_64xed") +modifications/15 = SubResource("SkeletonModification2DLookAt_cwyj7") +modifications/16 = SubResource("SkeletonModification2DLookAt_ylu05") +modifications/17 = SubResource("SkeletonModification2DLookAt_uwibo") +modifications/18 = SubResource("SkeletonModification2DLookAt_ix3bk") + +[sub_resource type="CircleShape2D" id="CircleShape2D_4xdtt"] resource_local_to_scene = true radius = 9.5 -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_yw354"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_qgil2"] resource_local_to_scene = true bone_index = 0 bone2d_node = NodePath("Bone-0") -target_nodepath = NodePath("Bone-3") +target_nodepath = NodePath("Bone-4") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_2y0qw"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_gp3ks"] resource_local_to_scene = true bone_index = 1 bone2d_node = NodePath("Bone-1") target_nodepath = NodePath("Bone-4") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_i4vro"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_yacbi"] resource_local_to_scene = true bone_index = 10 bone2d_node = NodePath("Bone-10") target_nodepath = NodePath("Bone-11") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_hx7vy"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_x7fwo"] resource_local_to_scene = true bone_index = 11 bone2d_node = NodePath("Bone-11") target_nodepath = NodePath("Bone-12") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_bamcv"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_xai6x"] resource_local_to_scene = true bone_index = 12 bone2d_node = NodePath("Bone-12") target_nodepath = NodePath("Bone-13") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_qvnn7"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_b26nr"] resource_local_to_scene = true bone_index = 13 bone2d_node = NodePath("Bone-13") -target_nodepath = NodePath("Bone-14") +target_nodepath = NodePath("Bone-9") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_e01ct"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_m7gjq"] resource_local_to_scene = true bone_index = 14 bone2d_node = NodePath("Bone-14") -target_nodepath = NodePath("Bone-17") +target_nodepath = NodePath("Bone-11") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_fqksj"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_selh2"] resource_local_to_scene = true bone_index = 15 bone2d_node = NodePath("Bone-15") -target_nodepath = NodePath("Bone-12") +target_nodepath = NodePath("Bone-14") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_wg6we"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_q6fnw"] resource_local_to_scene = true bone_index = 16 bone2d_node = NodePath("Bone-16") -target_nodepath = NodePath("Bone-13") +target_nodepath = NodePath("Bone-15") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_t1ctj"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_cmbf1"] resource_local_to_scene = true bone_index = 17 bone2d_node = NodePath("Bone-17") -target_nodepath = NodePath("Bone-14") +target_nodepath = NodePath("Bone-12") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_dcr2c"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_3skxj"] resource_local_to_scene = true bone_index = 18 bone2d_node = NodePath("Bone-18") -target_nodepath = NodePath("Bone-14") -editor/draw_gizmo = false - -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_jnbto"] -resource_local_to_scene = true -bone_index = 19 -bone2d_node = NodePath("Bone-19") -target_nodepath = NodePath("Bone-9") +target_nodepath = NodePath("Bone-13") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_60x0m"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_5nwkx"] resource_local_to_scene = true bone_index = 2 bone2d_node = NodePath("Bone-2") target_nodepath = NodePath("Bone-6") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_d38su"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_rr0bk"] resource_local_to_scene = true bone_index = 3 bone2d_node = NodePath("Bone-3") -target_nodepath = NodePath("Bone-4") +target_nodepath = NodePath("Bone-2") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_n6xec"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_mb4h5"] resource_local_to_scene = true bone_index = 4 bone2d_node = NodePath("Bone-4") target_nodepath = NodePath("Bone-5") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_feaph"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_ov2tj"] resource_local_to_scene = true bone_index = 5 bone2d_node = NodePath("Bone-5") -target_nodepath = NodePath("Bone-8") +target_nodepath = NodePath("Bone-4") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_n3fti"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_gjxmw"] resource_local_to_scene = true bone_index = 6 bone2d_node = NodePath("Bone-6") -target_nodepath = NodePath("Bone-10") +target_nodepath = NodePath("Bone-3") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_cj3c4"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_ifksx"] resource_local_to_scene = true bone_index = 7 bone2d_node = NodePath("Bone-7") target_nodepath = NodePath("Bone-8") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_ha1hx"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_sjam6"] resource_local_to_scene = true bone_index = 8 bone2d_node = NodePath("Bone-8") target_nodepath = NodePath("Bone-9") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_toyqo"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_4hbis"] resource_local_to_scene = true bone_index = 9 bone2d_node = NodePath("Bone-9") -target_nodepath = NodePath("Bone-13") +target_nodepath = NodePath("Bone-18") editor/draw_gizmo = false -[sub_resource type="SkeletonModificationStack2D" id="SkeletonModificationStack2D_va3ul"] +[sub_resource type="SkeletonModificationStack2D" id="SkeletonModificationStack2D_4cx2k"] resource_local_to_scene = true enabled = true -modification_count = 20 -modifications/0 = SubResource("SkeletonModification2DLookAt_yw354") -modifications/1 = SubResource("SkeletonModification2DLookAt_2y0qw") -modifications/2 = SubResource("SkeletonModification2DLookAt_60x0m") -modifications/3 = SubResource("SkeletonModification2DLookAt_d38su") -modifications/4 = SubResource("SkeletonModification2DLookAt_n6xec") -modifications/5 = SubResource("SkeletonModification2DLookAt_feaph") -modifications/6 = SubResource("SkeletonModification2DLookAt_n3fti") -modifications/7 = SubResource("SkeletonModification2DLookAt_cj3c4") -modifications/8 = SubResource("SkeletonModification2DLookAt_ha1hx") -modifications/9 = SubResource("SkeletonModification2DLookAt_toyqo") -modifications/10 = SubResource("SkeletonModification2DLookAt_i4vro") -modifications/11 = SubResource("SkeletonModification2DLookAt_hx7vy") -modifications/12 = SubResource("SkeletonModification2DLookAt_bamcv") -modifications/13 = SubResource("SkeletonModification2DLookAt_qvnn7") -modifications/14 = SubResource("SkeletonModification2DLookAt_e01ct") -modifications/15 = SubResource("SkeletonModification2DLookAt_fqksj") -modifications/16 = SubResource("SkeletonModification2DLookAt_wg6we") -modifications/17 = SubResource("SkeletonModification2DLookAt_t1ctj") -modifications/18 = SubResource("SkeletonModification2DLookAt_dcr2c") -modifications/19 = SubResource("SkeletonModification2DLookAt_jnbto") - -[sub_resource type="CircleShape2D" id="CircleShape2D_2usbw"] +modification_count = 19 +modifications/0 = SubResource("SkeletonModification2DLookAt_qgil2") +modifications/1 = SubResource("SkeletonModification2DLookAt_gp3ks") +modifications/2 = SubResource("SkeletonModification2DLookAt_5nwkx") +modifications/3 = SubResource("SkeletonModification2DLookAt_rr0bk") +modifications/4 = SubResource("SkeletonModification2DLookAt_mb4h5") +modifications/5 = SubResource("SkeletonModification2DLookAt_ov2tj") +modifications/6 = SubResource("SkeletonModification2DLookAt_gjxmw") +modifications/7 = SubResource("SkeletonModification2DLookAt_ifksx") +modifications/8 = SubResource("SkeletonModification2DLookAt_sjam6") +modifications/9 = SubResource("SkeletonModification2DLookAt_4hbis") +modifications/10 = SubResource("SkeletonModification2DLookAt_yacbi") +modifications/11 = SubResource("SkeletonModification2DLookAt_x7fwo") +modifications/12 = SubResource("SkeletonModification2DLookAt_xai6x") +modifications/13 = SubResource("SkeletonModification2DLookAt_b26nr") +modifications/14 = SubResource("SkeletonModification2DLookAt_m7gjq") +modifications/15 = SubResource("SkeletonModification2DLookAt_selh2") +modifications/16 = SubResource("SkeletonModification2DLookAt_q6fnw") +modifications/17 = SubResource("SkeletonModification2DLookAt_cmbf1") +modifications/18 = SubResource("SkeletonModification2DLookAt_3skxj") + +[sub_resource type="CircleShape2D" id="CircleShape2D_ki3ar"] resource_local_to_scene = true radius = 9.5 -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_gv60m"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_2ew11"] resource_local_to_scene = true bone_index = 0 bone2d_node = NodePath("Bone-0") +target_nodepath = NodePath("Bone-4") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_ydf4o"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_ecfhj"] resource_local_to_scene = true bone_index = 1 bone2d_node = NodePath("Bone-1") +target_nodepath = NodePath("Bone-4") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_e45rr"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_mue7l"] resource_local_to_scene = true bone_index = 10 bone2d_node = NodePath("Bone-10") -target_nodepath = NodePath("Bone-6") +target_nodepath = NodePath("Bone-9") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_qebop"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_8di8k"] resource_local_to_scene = true bone_index = 11 bone2d_node = NodePath("Bone-11") -target_nodepath = NodePath("Bone-7") +target_nodepath = NodePath("Bone-12") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_lmqd8"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_5to0i"] resource_local_to_scene = true bone_index = 12 bone2d_node = NodePath("Bone-12") -target_nodepath = NodePath("Bone-8") +target_nodepath = NodePath("Bone-13") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_uudit"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_43ot5"] resource_local_to_scene = true bone_index = 13 bone2d_node = NodePath("Bone-13") -target_nodepath = NodePath("Bone-8") +target_nodepath = NodePath("Bone-32") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_ce7ed"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_o4fm1"] resource_local_to_scene = true bone_index = 14 bone2d_node = NodePath("Bone-14") -target_nodepath = NodePath("Bone-9") +target_nodepath = NodePath("Bone-18") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_bnkq0"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_tnspp"] resource_local_to_scene = true bone_index = 15 bone2d_node = NodePath("Bone-15") -target_nodepath = NodePath("Bone-11") +target_nodepath = NodePath("Bone-19") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_g5c2k"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_6iyrg"] resource_local_to_scene = true bone_index = 16 bone2d_node = NodePath("Bone-16") -target_nodepath = NodePath("Bone-12") +target_nodepath = NodePath("Bone-19") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_dm5wt"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_j7tko"] resource_local_to_scene = true bone_index = 17 bone2d_node = NodePath("Bone-17") -target_nodepath = NodePath("Bone-13") +target_nodepath = NodePath("Bone-22") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_v4r35"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_6571f"] resource_local_to_scene = true bone_index = 18 bone2d_node = NodePath("Bone-18") -target_nodepath = NodePath("Bone-13") +target_nodepath = NodePath("Bone-17") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_kk046"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_m4gie"] resource_local_to_scene = true bone_index = 19 bone2d_node = NodePath("Bone-19") -target_nodepath = NodePath("Bone-3") +target_nodepath = NodePath("Bone-20") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_35246"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_k0s3w"] resource_local_to_scene = true bone_index = 2 bone2d_node = NodePath("Bone-2") -target_nodepath = NodePath("Bone-1") +target_nodepath = NodePath("Bone-3") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_u1kxi"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_fuk8x"] resource_local_to_scene = true bone_index = 20 bone2d_node = NodePath("Bone-20") -target_nodepath = NodePath("Bone-19") +target_nodepath = NodePath("Bone-21") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_jhn7h"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_xjw3i"] resource_local_to_scene = true bone_index = 21 bone2d_node = NodePath("Bone-21") -target_nodepath = NodePath("Bone-20") +target_nodepath = NodePath("Bone-26") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_nk3qs"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_6h6sa"] resource_local_to_scene = true bone_index = 22 bone2d_node = NodePath("Bone-22") -target_nodepath = NodePath("Bone-8") +target_nodepath = NodePath("Bone-27") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_l4mx8"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_lfmir"] resource_local_to_scene = true bone_index = 23 bone2d_node = NodePath("Bone-23") -target_nodepath = NodePath("Bone-21") +target_nodepath = NodePath("Bone-24") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_ejwy8"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_hua01"] resource_local_to_scene = true bone_index = 24 bone2d_node = NodePath("Bone-24") -target_nodepath = NodePath("Bone-21") +target_nodepath = NodePath("Bone-25") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_3yn1j"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_g58q1"] resource_local_to_scene = true bone_index = 25 bone2d_node = NodePath("Bone-25") -target_nodepath = NodePath("Bone-24") +target_nodepath = NodePath("Bone-26") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_5jja3"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_r176l"] resource_local_to_scene = true bone_index = 26 bone2d_node = NodePath("Bone-26") -target_nodepath = NodePath("Bone-19") +target_nodepath = NodePath("Bone-38") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_yiu7k"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_bx2c6"] resource_local_to_scene = true bone_index = 27 bone2d_node = NodePath("Bone-27") -target_nodepath = NodePath("Bone-23") +target_nodepath = NodePath("Bone-32") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_ekxhh"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_h200k"] resource_local_to_scene = true bone_index = 28 bone2d_node = NodePath("Bone-28") -target_nodepath = NodePath("Bone-24") +target_nodepath = NodePath("Bone-29") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_okrlc"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_0u7pt"] resource_local_to_scene = true bone_index = 29 bone2d_node = NodePath("Bone-29") -target_nodepath = NodePath("Bone-25") +target_nodepath = NodePath("Bone-30") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_e2syi"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_e30h8"] resource_local_to_scene = true bone_index = 3 bone2d_node = NodePath("Bone-3") target_nodepath = NodePath("Bone-2") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_sggo6"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_q83of"] resource_local_to_scene = true bone_index = 30 bone2d_node = NodePath("Bone-30") -target_nodepath = NodePath("Bone-29") +target_nodepath = NodePath("Bone-31") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_4f2s4"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_8xfat"] resource_local_to_scene = true bone_index = 31 bone2d_node = NodePath("Bone-31") -target_nodepath = NodePath("Bone-18") +target_nodepath = NodePath("Bone-40") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_rvdcr"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_kccd2"] resource_local_to_scene = true bone_index = 32 bone2d_node = NodePath("Bone-32") -target_nodepath = NodePath("Bone-28") +target_nodepath = NodePath("Bone-57") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_plgyn"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_tcg0q"] resource_local_to_scene = true bone_index = 33 bone2d_node = NodePath("Bone-33") -target_nodepath = NodePath("Bone-29") +target_nodepath = NodePath("Bone-34") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_f8rbi"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_owcf8"] resource_local_to_scene = true bone_index = 34 bone2d_node = NodePath("Bone-34") -target_nodepath = NodePath("Bone-30") +target_nodepath = NodePath("Bone-35") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_olfhh"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_ssjvv"] resource_local_to_scene = true bone_index = 35 bone2d_node = NodePath("Bone-35") -target_nodepath = NodePath("Bone-30") +target_nodepath = NodePath("Bone-36") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_r5y5b"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_y2q4n"] resource_local_to_scene = true bone_index = 36 bone2d_node = NodePath("Bone-36") -target_nodepath = NodePath("Bone-31") +target_nodepath = NodePath("Bone-42") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_at35x"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_e67iq"] resource_local_to_scene = true bone_index = 37 bone2d_node = NodePath("Bone-37") -target_nodepath = NodePath("Bone-33") +target_nodepath = NodePath("Bone-38") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_awbg6"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_me62o"] resource_local_to_scene = true bone_index = 38 bone2d_node = NodePath("Bone-38") -target_nodepath = NodePath("Bone-34") +target_nodepath = NodePath("Bone-31") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_dhygw"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_sfg1v"] resource_local_to_scene = true bone_index = 39 bone2d_node = NodePath("Bone-39") -target_nodepath = NodePath("Bone-35") +target_nodepath = NodePath("Bone-40") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_e6wmn"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_gjbo6"] resource_local_to_scene = true bone_index = 4 bone2d_node = NodePath("Bone-4") +target_nodepath = NodePath("Bone-22") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_uc58i"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_vrmgn"] resource_local_to_scene = true bone_index = 40 bone2d_node = NodePath("Bone-40") -target_nodepath = NodePath("Bone-35") +target_nodepath = NodePath("Bone-42") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_l3vre"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_mumtg"] resource_local_to_scene = true bone_index = 41 bone2d_node = NodePath("Bone-41") -target_nodepath = NodePath("Bone-15") +target_nodepath = NodePath("Bone-40") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_rb4fg"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_or8ew"] resource_local_to_scene = true bone_index = 42 bone2d_node = NodePath("Bone-42") -target_nodepath = NodePath("Bone-17") +target_nodepath = NodePath("Bone-77") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_kc325"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_vo3p3"] resource_local_to_scene = true bone_index = 43 bone2d_node = NodePath("Bone-43") -target_nodepath = NodePath("Bone-18") +target_nodepath = NodePath("Bone-44") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_cn48q"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_jsqhy"] resource_local_to_scene = true bone_index = 44 bone2d_node = NodePath("Bone-44") -target_nodepath = NodePath("Bone-36") +target_nodepath = NodePath("Bone-78") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_86dox"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_37reu"] resource_local_to_scene = true bone_index = 45 bone2d_node = NodePath("Bone-45") -target_nodepath = NodePath("Bone-42") +target_nodepath = NodePath("Bone-11") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_0prt0"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_8mmem"] resource_local_to_scene = true bone_index = 46 bone2d_node = NodePath("Bone-46") -target_nodepath = NodePath("Bone-44") +target_nodepath = NodePath("Bone-47") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_c247y"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_voxhd"] resource_local_to_scene = true bone_index = 47 bone2d_node = NodePath("Bone-47") -target_nodepath = NodePath("Bone-44") +target_nodepath = NodePath("Bone-48") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_ppm28"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_bsv2m"] resource_local_to_scene = true bone_index = 48 bone2d_node = NodePath("Bone-48") -target_nodepath = NodePath("Bone-46") +target_nodepath = NodePath("Bone-57") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_05ma2"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_8r8wp"] resource_local_to_scene = true bone_index = 49 bone2d_node = NodePath("Bone-49") -target_nodepath = NodePath("Bone-37") +target_nodepath = NodePath("Bone-46") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_0hj0l"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_rs4ii"] resource_local_to_scene = true bone_index = 5 bone2d_node = NodePath("Bone-5") -target_nodepath = NodePath("Bone-4") +target_nodepath = NodePath("Bone-10") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_nb77c"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_njkvd"] resource_local_to_scene = true bone_index = 50 bone2d_node = NodePath("Bone-50") -target_nodepath = NodePath("Bone-38") +target_nodepath = NodePath("Bone-47") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_at821"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_tf2fo"] resource_local_to_scene = true bone_index = 51 bone2d_node = NodePath("Bone-51") -target_nodepath = NodePath("Bone-39") +target_nodepath = NodePath("Bone-52") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_38sp4"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_pkkai"] resource_local_to_scene = true bone_index = 52 bone2d_node = NodePath("Bone-52") -target_nodepath = NodePath("Bone-40") +target_nodepath = NodePath("Bone-62") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_apyex"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_yiokj"] resource_local_to_scene = true bone_index = 53 bone2d_node = NodePath("Bone-53") -target_nodepath = NodePath("Bone-40") +target_nodepath = NodePath("Bone-51") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_0wrv0"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_ckdje"] resource_local_to_scene = true bone_index = 54 bone2d_node = NodePath("Bone-54") -target_nodepath = NodePath("Bone-48") +target_nodepath = NodePath("Bone-52") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_vr5t2"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_mjc05"] resource_local_to_scene = true bone_index = 55 bone2d_node = NodePath("Bone-55") -target_nodepath = NodePath("Bone-51") +target_nodepath = NodePath("Bone-62") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_dcbgr"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_ekc8h"] resource_local_to_scene = true bone_index = 56 bone2d_node = NodePath("Bone-56") -target_nodepath = NodePath("Bone-52") +target_nodepath = NodePath("Bone-67") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_txypr"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_8e64j"] resource_local_to_scene = true bone_index = 57 bone2d_node = NodePath("Bone-57") -target_nodepath = NodePath("Bone-53") +target_nodepath = NodePath("Bone-58") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_esxjw"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_5whun"] resource_local_to_scene = true bone_index = 58 bone2d_node = NodePath("Bone-58") -target_nodepath = NodePath("Bone-56") +target_nodepath = NodePath("Bone-59") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_m7ne8"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_u0ev1"] resource_local_to_scene = true bone_index = 59 bone2d_node = NodePath("Bone-59") -target_nodepath = NodePath("Bone-49") +target_nodepath = NodePath("Bone-60") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_fog6g"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_go057"] resource_local_to_scene = true bone_index = 6 bone2d_node = NodePath("Bone-6") -target_nodepath = NodePath("Bone-4") +target_nodepath = NodePath("Bone-5") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_pe8nq"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_g8cvn"] resource_local_to_scene = true bone_index = 60 bone2d_node = NodePath("Bone-60") -target_nodepath = NodePath("Bone-55") +target_nodepath = NodePath("Bone-61") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_87um3"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_7prq0"] resource_local_to_scene = true bone_index = 61 bone2d_node = NodePath("Bone-61") -target_nodepath = NodePath("Bone-56") +target_nodepath = NodePath("Bone-77") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_f0l7c"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_ea7re"] resource_local_to_scene = true bone_index = 62 bone2d_node = NodePath("Bone-62") -target_nodepath = NodePath("Bone-58") +target_nodepath = NodePath("Bone-67") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_83m5t"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_kbdw5"] +resource_local_to_scene = true +bone_index = 63 +bone2d_node = NodePath("Bone-63") +target_nodepath = NodePath("Bone-64") +editor/draw_gizmo = false + +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_lt4bp"] +resource_local_to_scene = true +bone_index = 64 +bone2d_node = NodePath("Bone-64") +target_nodepath = NodePath("Bone-65") +editor/draw_gizmo = false + +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_5e21x"] +resource_local_to_scene = true +bone_index = 65 +bone2d_node = NodePath("Bone-65") +target_nodepath = NodePath("Bone-66") +editor/draw_gizmo = false + +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_4s5hl"] +resource_local_to_scene = true +bone_index = 66 +bone2d_node = NodePath("Bone-66") +target_nodepath = NodePath("Bone-80") +editor/draw_gizmo = false + +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_7ufkl"] +resource_local_to_scene = true +bone_index = 67 +bone2d_node = NodePath("Bone-67") +target_nodepath = NodePath("Bone-72") +editor/draw_gizmo = false + +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_cg25b"] +resource_local_to_scene = true +bone_index = 68 +bone2d_node = NodePath("Bone-68") +target_nodepath = NodePath("Bone-69") +editor/draw_gizmo = false + +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_vv4hs"] +resource_local_to_scene = true +bone_index = 69 +bone2d_node = NodePath("Bone-69") +target_nodepath = NodePath("Bone-70") +editor/draw_gizmo = false + +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_sp2yv"] resource_local_to_scene = true bone_index = 7 bone2d_node = NodePath("Bone-7") -target_nodepath = NodePath("Bone-3") +target_nodepath = NodePath("Bone-8") +editor/draw_gizmo = false + +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_356it"] +resource_local_to_scene = true +bone_index = 70 +bone2d_node = NodePath("Bone-70") +target_nodepath = NodePath("Bone-71") +editor/draw_gizmo = false + +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_cdnk6"] +resource_local_to_scene = true +bone_index = 71 +bone2d_node = NodePath("Bone-71") +target_nodepath = NodePath("Bone-82") +editor/draw_gizmo = false + +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_mnhel"] +resource_local_to_scene = true +bone_index = 72 +bone2d_node = NodePath("Bone-72") +target_nodepath = NodePath("Bone-56") +editor/draw_gizmo = false + +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_8n8k6"] +resource_local_to_scene = true +bone_index = 73 +bone2d_node = NodePath("Bone-73") +target_nodepath = NodePath("Bone-68") +editor/draw_gizmo = false + +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_aq5jy"] +resource_local_to_scene = true +bone_index = 74 +bone2d_node = NodePath("Bone-74") +target_nodepath = NodePath("Bone-73") +editor/draw_gizmo = false + +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_401xa"] +resource_local_to_scene = true +bone_index = 75 +bone2d_node = NodePath("Bone-75") +target_nodepath = NodePath("Bone-74") +editor/draw_gizmo = false + +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_o5q1c"] +resource_local_to_scene = true +bone_index = 76 +bone2d_node = NodePath("Bone-76") +target_nodepath = NodePath("Bone-71") +editor/draw_gizmo = false + +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_y0o3p"] +resource_local_to_scene = true +bone_index = 77 +bone2d_node = NodePath("Bone-77") +target_nodepath = NodePath("Bone-78") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_g3i40"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_4nstc"] +resource_local_to_scene = true +bone_index = 78 +bone2d_node = NodePath("Bone-78") +target_nodepath = NodePath("Bone-44") +editor/draw_gizmo = false + +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_0f1ma"] +resource_local_to_scene = true +bone_index = 79 +bone2d_node = NodePath("Bone-79") +target_nodepath = NodePath("Bone-78") +editor/draw_gizmo = false + +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_spvrb"] resource_local_to_scene = true bone_index = 8 bone2d_node = NodePath("Bone-8") -target_nodepath = NodePath("Bone-3") +target_nodepath = NodePath("Bone-27") +editor/draw_gizmo = false + +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_un0gt"] +resource_local_to_scene = true +bone_index = 80 +bone2d_node = NodePath("Bone-80") +target_nodepath = NodePath("Bone-82") +editor/draw_gizmo = false + +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_ckbc3"] +resource_local_to_scene = true +bone_index = 81 +bone2d_node = NodePath("Bone-81") +target_nodepath = NodePath("Bone-79") +editor/draw_gizmo = false + +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_4sqkt"] +resource_local_to_scene = true +bone_index = 82 +bone2d_node = NodePath("Bone-82") +target_nodepath = NodePath("Bone-76") +editor/draw_gizmo = false + +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_8besj"] +resource_local_to_scene = true +bone_index = 83 +bone2d_node = NodePath("Bone-83") +target_nodepath = NodePath("Bone-81") +editor/draw_gizmo = false + +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_0xjfn"] +resource_local_to_scene = true +bone_index = 84 +bone2d_node = NodePath("Bone-84") +target_nodepath = NodePath("Bone-71") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_pseej"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_vlsgr"] resource_local_to_scene = true bone_index = 9 bone2d_node = NodePath("Bone-9") target_nodepath = NodePath("Bone-5") editor/draw_gizmo = false -[sub_resource type="SkeletonModificationStack2D" id="SkeletonModificationStack2D_mx50s"] +[sub_resource type="SkeletonModificationStack2D" id="SkeletonModificationStack2D_03t0f"] resource_local_to_scene = true enabled = true -modification_count = 63 -modifications/0 = SubResource("SkeletonModification2DLookAt_gv60m") -modifications/1 = SubResource("SkeletonModification2DLookAt_ydf4o") -modifications/2 = SubResource("SkeletonModification2DLookAt_35246") -modifications/3 = SubResource("SkeletonModification2DLookAt_e2syi") -modifications/4 = SubResource("SkeletonModification2DLookAt_e6wmn") -modifications/5 = SubResource("SkeletonModification2DLookAt_0hj0l") -modifications/6 = SubResource("SkeletonModification2DLookAt_fog6g") -modifications/7 = SubResource("SkeletonModification2DLookAt_83m5t") -modifications/8 = SubResource("SkeletonModification2DLookAt_g3i40") -modifications/9 = SubResource("SkeletonModification2DLookAt_pseej") -modifications/10 = SubResource("SkeletonModification2DLookAt_e45rr") -modifications/11 = SubResource("SkeletonModification2DLookAt_qebop") -modifications/12 = SubResource("SkeletonModification2DLookAt_lmqd8") -modifications/13 = SubResource("SkeletonModification2DLookAt_uudit") -modifications/14 = SubResource("SkeletonModification2DLookAt_ce7ed") -modifications/15 = SubResource("SkeletonModification2DLookAt_bnkq0") -modifications/16 = SubResource("SkeletonModification2DLookAt_g5c2k") -modifications/17 = SubResource("SkeletonModification2DLookAt_dm5wt") -modifications/18 = SubResource("SkeletonModification2DLookAt_v4r35") -modifications/19 = SubResource("SkeletonModification2DLookAt_kk046") -modifications/20 = SubResource("SkeletonModification2DLookAt_u1kxi") -modifications/21 = SubResource("SkeletonModification2DLookAt_jhn7h") -modifications/22 = SubResource("SkeletonModification2DLookAt_nk3qs") -modifications/23 = SubResource("SkeletonModification2DLookAt_l4mx8") -modifications/24 = SubResource("SkeletonModification2DLookAt_ejwy8") -modifications/25 = SubResource("SkeletonModification2DLookAt_3yn1j") -modifications/26 = SubResource("SkeletonModification2DLookAt_5jja3") -modifications/27 = SubResource("SkeletonModification2DLookAt_yiu7k") -modifications/28 = SubResource("SkeletonModification2DLookAt_ekxhh") -modifications/29 = SubResource("SkeletonModification2DLookAt_okrlc") -modifications/30 = SubResource("SkeletonModification2DLookAt_sggo6") -modifications/31 = SubResource("SkeletonModification2DLookAt_4f2s4") -modifications/32 = SubResource("SkeletonModification2DLookAt_rvdcr") -modifications/33 = SubResource("SkeletonModification2DLookAt_plgyn") -modifications/34 = SubResource("SkeletonModification2DLookAt_f8rbi") -modifications/35 = SubResource("SkeletonModification2DLookAt_olfhh") -modifications/36 = SubResource("SkeletonModification2DLookAt_r5y5b") -modifications/37 = SubResource("SkeletonModification2DLookAt_at35x") -modifications/38 = SubResource("SkeletonModification2DLookAt_awbg6") -modifications/39 = SubResource("SkeletonModification2DLookAt_dhygw") -modifications/40 = SubResource("SkeletonModification2DLookAt_uc58i") -modifications/41 = SubResource("SkeletonModification2DLookAt_l3vre") -modifications/42 = SubResource("SkeletonModification2DLookAt_rb4fg") -modifications/43 = SubResource("SkeletonModification2DLookAt_kc325") -modifications/44 = SubResource("SkeletonModification2DLookAt_cn48q") -modifications/45 = SubResource("SkeletonModification2DLookAt_86dox") -modifications/46 = SubResource("SkeletonModification2DLookAt_0prt0") -modifications/47 = SubResource("SkeletonModification2DLookAt_c247y") -modifications/48 = SubResource("SkeletonModification2DLookAt_ppm28") -modifications/49 = SubResource("SkeletonModification2DLookAt_05ma2") -modifications/50 = SubResource("SkeletonModification2DLookAt_nb77c") -modifications/51 = SubResource("SkeletonModification2DLookAt_at821") -modifications/52 = SubResource("SkeletonModification2DLookAt_38sp4") -modifications/53 = SubResource("SkeletonModification2DLookAt_apyex") -modifications/54 = SubResource("SkeletonModification2DLookAt_0wrv0") -modifications/55 = SubResource("SkeletonModification2DLookAt_vr5t2") -modifications/56 = SubResource("SkeletonModification2DLookAt_dcbgr") -modifications/57 = SubResource("SkeletonModification2DLookAt_txypr") -modifications/58 = SubResource("SkeletonModification2DLookAt_esxjw") -modifications/59 = SubResource("SkeletonModification2DLookAt_m7ne8") -modifications/60 = SubResource("SkeletonModification2DLookAt_pe8nq") -modifications/61 = SubResource("SkeletonModification2DLookAt_87um3") -modifications/62 = SubResource("SkeletonModification2DLookAt_f0l7c") - -[sub_resource type="CircleShape2D" id="CircleShape2D_4yipm"] -resource_local_to_scene = true -radius = 11.0 - -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_sgtny"] +modification_count = 85 +modifications/0 = SubResource("SkeletonModification2DLookAt_2ew11") +modifications/1 = SubResource("SkeletonModification2DLookAt_ecfhj") +modifications/2 = SubResource("SkeletonModification2DLookAt_k0s3w") +modifications/3 = SubResource("SkeletonModification2DLookAt_e30h8") +modifications/4 = SubResource("SkeletonModification2DLookAt_gjbo6") +modifications/5 = SubResource("SkeletonModification2DLookAt_rs4ii") +modifications/6 = SubResource("SkeletonModification2DLookAt_go057") +modifications/7 = SubResource("SkeletonModification2DLookAt_sp2yv") +modifications/8 = SubResource("SkeletonModification2DLookAt_spvrb") +modifications/9 = SubResource("SkeletonModification2DLookAt_vlsgr") +modifications/10 = SubResource("SkeletonModification2DLookAt_mue7l") +modifications/11 = SubResource("SkeletonModification2DLookAt_8di8k") +modifications/12 = SubResource("SkeletonModification2DLookAt_5to0i") +modifications/13 = SubResource("SkeletonModification2DLookAt_43ot5") +modifications/14 = SubResource("SkeletonModification2DLookAt_o4fm1") +modifications/15 = SubResource("SkeletonModification2DLookAt_tnspp") +modifications/16 = SubResource("SkeletonModification2DLookAt_6iyrg") +modifications/17 = SubResource("SkeletonModification2DLookAt_j7tko") +modifications/18 = SubResource("SkeletonModification2DLookAt_6571f") +modifications/19 = SubResource("SkeletonModification2DLookAt_m4gie") +modifications/20 = SubResource("SkeletonModification2DLookAt_fuk8x") +modifications/21 = SubResource("SkeletonModification2DLookAt_xjw3i") +modifications/22 = SubResource("SkeletonModification2DLookAt_6h6sa") +modifications/23 = SubResource("SkeletonModification2DLookAt_lfmir") +modifications/24 = SubResource("SkeletonModification2DLookAt_hua01") +modifications/25 = SubResource("SkeletonModification2DLookAt_g58q1") +modifications/26 = SubResource("SkeletonModification2DLookAt_r176l") +modifications/27 = SubResource("SkeletonModification2DLookAt_bx2c6") +modifications/28 = SubResource("SkeletonModification2DLookAt_h200k") +modifications/29 = SubResource("SkeletonModification2DLookAt_0u7pt") +modifications/30 = SubResource("SkeletonModification2DLookAt_q83of") +modifications/31 = SubResource("SkeletonModification2DLookAt_8xfat") +modifications/32 = SubResource("SkeletonModification2DLookAt_kccd2") +modifications/33 = SubResource("SkeletonModification2DLookAt_tcg0q") +modifications/34 = SubResource("SkeletonModification2DLookAt_owcf8") +modifications/35 = SubResource("SkeletonModification2DLookAt_ssjvv") +modifications/36 = SubResource("SkeletonModification2DLookAt_y2q4n") +modifications/37 = SubResource("SkeletonModification2DLookAt_e67iq") +modifications/38 = SubResource("SkeletonModification2DLookAt_me62o") +modifications/39 = SubResource("SkeletonModification2DLookAt_sfg1v") +modifications/40 = SubResource("SkeletonModification2DLookAt_vrmgn") +modifications/41 = SubResource("SkeletonModification2DLookAt_mumtg") +modifications/42 = SubResource("SkeletonModification2DLookAt_or8ew") +modifications/43 = SubResource("SkeletonModification2DLookAt_vo3p3") +modifications/44 = SubResource("SkeletonModification2DLookAt_jsqhy") +modifications/45 = SubResource("SkeletonModification2DLookAt_37reu") +modifications/46 = SubResource("SkeletonModification2DLookAt_8mmem") +modifications/47 = SubResource("SkeletonModification2DLookAt_voxhd") +modifications/48 = SubResource("SkeletonModification2DLookAt_bsv2m") +modifications/49 = SubResource("SkeletonModification2DLookAt_8r8wp") +modifications/50 = SubResource("SkeletonModification2DLookAt_njkvd") +modifications/51 = SubResource("SkeletonModification2DLookAt_tf2fo") +modifications/52 = SubResource("SkeletonModification2DLookAt_pkkai") +modifications/53 = SubResource("SkeletonModification2DLookAt_yiokj") +modifications/54 = SubResource("SkeletonModification2DLookAt_ckdje") +modifications/55 = SubResource("SkeletonModification2DLookAt_mjc05") +modifications/56 = SubResource("SkeletonModification2DLookAt_ekc8h") +modifications/57 = SubResource("SkeletonModification2DLookAt_8e64j") +modifications/58 = SubResource("SkeletonModification2DLookAt_5whun") +modifications/59 = SubResource("SkeletonModification2DLookAt_u0ev1") +modifications/60 = SubResource("SkeletonModification2DLookAt_g8cvn") +modifications/61 = SubResource("SkeletonModification2DLookAt_7prq0") +modifications/62 = SubResource("SkeletonModification2DLookAt_ea7re") +modifications/63 = SubResource("SkeletonModification2DLookAt_kbdw5") +modifications/64 = SubResource("SkeletonModification2DLookAt_lt4bp") +modifications/65 = SubResource("SkeletonModification2DLookAt_5e21x") +modifications/66 = SubResource("SkeletonModification2DLookAt_4s5hl") +modifications/67 = SubResource("SkeletonModification2DLookAt_7ufkl") +modifications/68 = SubResource("SkeletonModification2DLookAt_cg25b") +modifications/69 = SubResource("SkeletonModification2DLookAt_vv4hs") +modifications/70 = SubResource("SkeletonModification2DLookAt_356it") +modifications/71 = SubResource("SkeletonModification2DLookAt_cdnk6") +modifications/72 = SubResource("SkeletonModification2DLookAt_mnhel") +modifications/73 = SubResource("SkeletonModification2DLookAt_8n8k6") +modifications/74 = SubResource("SkeletonModification2DLookAt_aq5jy") +modifications/75 = SubResource("SkeletonModification2DLookAt_401xa") +modifications/76 = SubResource("SkeletonModification2DLookAt_o5q1c") +modifications/77 = SubResource("SkeletonModification2DLookAt_y0o3p") +modifications/78 = SubResource("SkeletonModification2DLookAt_4nstc") +modifications/79 = SubResource("SkeletonModification2DLookAt_0f1ma") +modifications/80 = SubResource("SkeletonModification2DLookAt_un0gt") +modifications/81 = SubResource("SkeletonModification2DLookAt_ckbc3") +modifications/82 = SubResource("SkeletonModification2DLookAt_4sqkt") +modifications/83 = SubResource("SkeletonModification2DLookAt_8besj") +modifications/84 = SubResource("SkeletonModification2DLookAt_0xjfn") + +[sub_resource type="CircleShape2D" id="CircleShape2D_tkaeo"] +resource_local_to_scene = true +radius = 7.5 + +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_qh3jx"] resource_local_to_scene = true bone_index = 0 bone2d_node = NodePath("Bone-0") -target_nodepath = NodePath("Bone-1") +target_nodepath = NodePath("Bone-3") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_iw133"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_kf0ra"] resource_local_to_scene = true bone_index = 1 bone2d_node = NodePath("Bone-1") -target_nodepath = NodePath("Bone-2") +target_nodepath = NodePath("Bone-3") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_uwaid"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_u3saj"] resource_local_to_scene = true bone_index = 10 bone2d_node = NodePath("Bone-10") -target_nodepath = NodePath("Bone-11") +target_nodepath = NodePath("Bone-7") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_8dohn"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_nca32"] resource_local_to_scene = true bone_index = 11 bone2d_node = NodePath("Bone-11") target_nodepath = NodePath("Bone-10") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_rlggb"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_17uum"] +resource_local_to_scene = true +bone_index = 12 +bone2d_node = NodePath("Bone-12") +target_nodepath = NodePath("Bone-11") +editor/draw_gizmo = false + +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_oivv2"] +resource_local_to_scene = true +bone_index = 13 +bone2d_node = NodePath("Bone-13") +target_nodepath = NodePath("Bone-14") +editor/draw_gizmo = false + +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_ysjoi"] +resource_local_to_scene = true +bone_index = 14 +bone2d_node = NodePath("Bone-14") +target_nodepath = NodePath("Bone-15") +editor/draw_gizmo = false + +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_7tnyx"] +resource_local_to_scene = true +bone_index = 15 +bone2d_node = NodePath("Bone-15") +target_nodepath = NodePath("Bone-16") +editor/draw_gizmo = false + +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_xoaws"] +resource_local_to_scene = true +bone_index = 16 +bone2d_node = NodePath("Bone-16") +target_nodepath = NodePath("Bone-15") +editor/draw_gizmo = false + +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_j35o5"] resource_local_to_scene = true bone_index = 2 bone2d_node = NodePath("Bone-2") -target_nodepath = NodePath("Bone-3") +target_nodepath = NodePath("Bone-4") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_52en4"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_0hnv5"] resource_local_to_scene = true bone_index = 3 bone2d_node = NodePath("Bone-3") -target_nodepath = NodePath("Bone-4") +target_nodepath = NodePath("Bone-0") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_aor6e"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_xc7oy"] resource_local_to_scene = true bone_index = 4 bone2d_node = NodePath("Bone-4") -target_nodepath = NodePath("Bone-5") +target_nodepath = NodePath("Bone-0") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_8ewb7"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_1tbt7"] resource_local_to_scene = true bone_index = 5 bone2d_node = NodePath("Bone-5") -target_nodepath = NodePath("Bone-6") +target_nodepath = NodePath("Bone-2") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_salux"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_iyeat"] resource_local_to_scene = true bone_index = 6 bone2d_node = NodePath("Bone-6") -target_nodepath = NodePath("Bone-7") +target_nodepath = NodePath("Bone-5") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_5hljm"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_8wm7j"] resource_local_to_scene = true bone_index = 7 bone2d_node = NodePath("Bone-7") -target_nodepath = NodePath("Bone-8") +target_nodepath = NodePath("Bone-9") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_7yuts"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_sck8x"] resource_local_to_scene = true bone_index = 8 bone2d_node = NodePath("Bone-8") target_nodepath = NodePath("Bone-9") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_7a03x"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_0pe78"] resource_local_to_scene = true bone_index = 9 bone2d_node = NodePath("Bone-9") -target_nodepath = NodePath("Bone-10") +target_nodepath = NodePath("Bone-7") editor/draw_gizmo = false -[sub_resource type="SkeletonModificationStack2D" id="SkeletonModificationStack2D_w57bg"] +[sub_resource type="SkeletonModificationStack2D" id="SkeletonModificationStack2D_s8i2x"] resource_local_to_scene = true enabled = true -modification_count = 12 -modifications/0 = SubResource("SkeletonModification2DLookAt_sgtny") -modifications/1 = SubResource("SkeletonModification2DLookAt_iw133") -modifications/2 = SubResource("SkeletonModification2DLookAt_rlggb") -modifications/3 = SubResource("SkeletonModification2DLookAt_52en4") -modifications/4 = SubResource("SkeletonModification2DLookAt_aor6e") -modifications/5 = SubResource("SkeletonModification2DLookAt_8ewb7") -modifications/6 = SubResource("SkeletonModification2DLookAt_salux") -modifications/7 = SubResource("SkeletonModification2DLookAt_5hljm") -modifications/8 = SubResource("SkeletonModification2DLookAt_7yuts") -modifications/9 = SubResource("SkeletonModification2DLookAt_7a03x") -modifications/10 = SubResource("SkeletonModification2DLookAt_uwaid") -modifications/11 = SubResource("SkeletonModification2DLookAt_8dohn") - -[sub_resource type="RectangleShape2D" id="RectangleShape2D_o1g0h"] +modification_count = 17 +modifications/0 = SubResource("SkeletonModification2DLookAt_qh3jx") +modifications/1 = SubResource("SkeletonModification2DLookAt_kf0ra") +modifications/2 = SubResource("SkeletonModification2DLookAt_j35o5") +modifications/3 = SubResource("SkeletonModification2DLookAt_0hnv5") +modifications/4 = SubResource("SkeletonModification2DLookAt_xc7oy") +modifications/5 = SubResource("SkeletonModification2DLookAt_1tbt7") +modifications/6 = SubResource("SkeletonModification2DLookAt_iyeat") +modifications/7 = SubResource("SkeletonModification2DLookAt_8wm7j") +modifications/8 = SubResource("SkeletonModification2DLookAt_sck8x") +modifications/9 = SubResource("SkeletonModification2DLookAt_0pe78") +modifications/10 = SubResource("SkeletonModification2DLookAt_u3saj") +modifications/11 = SubResource("SkeletonModification2DLookAt_nca32") +modifications/12 = SubResource("SkeletonModification2DLookAt_17uum") +modifications/13 = SubResource("SkeletonModification2DLookAt_oivv2") +modifications/14 = SubResource("SkeletonModification2DLookAt_ysjoi") +modifications/15 = SubResource("SkeletonModification2DLookAt_7tnyx") +modifications/16 = SubResource("SkeletonModification2DLookAt_xoaws") + +[sub_resource type="RectangleShape2D" id="RectangleShape2D_sei3x"] resource_local_to_scene = true size = Vector2(27, 27) [sub_resource type="PhysicsMaterial" id="PhysicsMaterial_7hu45"] bounce = 1.0 -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_1mv4x"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_7fkci"] resource_local_to_scene = true bone_index = 0 bone2d_node = NodePath("Bone-0") target_nodepath = NodePath("Bone-4") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_o27wn"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_jgg77"] resource_local_to_scene = true bone_index = 1 bone2d_node = NodePath("Bone-1") -target_nodepath = NodePath("Bone-2") +target_nodepath = NodePath("Bone-4") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_c4d4x"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_dve8s"] resource_local_to_scene = true bone_index = 10 bone2d_node = NodePath("Bone-10") target_nodepath = NodePath("Bone-11") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_jbhwj"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_ifnut"] resource_local_to_scene = true bone_index = 11 bone2d_node = NodePath("Bone-11") target_nodepath = NodePath("Bone-10") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_mhw1x"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_k14xs"] resource_local_to_scene = true bone_index = 12 bone2d_node = NodePath("Bone-12") -target_nodepath = NodePath("Bone-11") +target_nodepath = NodePath("Bone-13") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_qahd8"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_xk1jf"] resource_local_to_scene = true bone_index = 13 bone2d_node = NodePath("Bone-13") target_nodepath = NodePath("Bone-20") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_8833h"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_xxwak"] resource_local_to_scene = true bone_index = 14 bone2d_node = NodePath("Bone-14") target_nodepath = NodePath("Bone-15") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_r4ej1"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_o0u2p"] resource_local_to_scene = true bone_index = 15 bone2d_node = NodePath("Bone-15") target_nodepath = NodePath("Bone-16") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_8nmqx"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_46eyy"] resource_local_to_scene = true bone_index = 16 bone2d_node = NodePath("Bone-16") -target_nodepath = NodePath("Bone-17") +target_nodepath = NodePath("Bone-15") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_cxjny"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_df3ol"] resource_local_to_scene = true bone_index = 17 bone2d_node = NodePath("Bone-17") target_nodepath = NodePath("Bone-19") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_usfqh"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_ewmxa"] resource_local_to_scene = true bone_index = 18 bone2d_node = NodePath("Bone-18") -target_nodepath = NodePath("Bone-16") +target_nodepath = NodePath("Bone-15") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_k7y3k"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_2rv1f"] resource_local_to_scene = true bone_index = 19 bone2d_node = NodePath("Bone-19") target_nodepath = NodePath("Bone-17") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_qubip"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_bpfq0"] resource_local_to_scene = true bone_index = 2 bone2d_node = NodePath("Bone-2") -target_nodepath = NodePath("Bone-3") +target_nodepath = NodePath("Bone-5") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_dh83t"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_p5whb"] resource_local_to_scene = true bone_index = 20 bone2d_node = NodePath("Bone-20") target_nodepath = NodePath("Bone-21") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_6jc0a"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_bdcsv"] resource_local_to_scene = true bone_index = 21 bone2d_node = NodePath("Bone-21") -target_nodepath = NodePath("Bone-23") +target_nodepath = NodePath("Bone-24") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_l8m6s"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_bduyd"] resource_local_to_scene = true bone_index = 22 bone2d_node = NodePath("Bone-22") -target_nodepath = NodePath("Bone-23") +target_nodepath = NodePath("Bone-19") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_iv6du"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_u6gvg"] resource_local_to_scene = true bone_index = 23 bone2d_node = NodePath("Bone-23") -target_nodepath = NodePath("Bone-22") +target_nodepath = NodePath("Bone-21") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_firej"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_febah"] resource_local_to_scene = true bone_index = 24 bone2d_node = NodePath("Bone-24") target_nodepath = NodePath("Bone-23") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_ij25e"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_52wgx"] resource_local_to_scene = true bone_index = 3 bone2d_node = NodePath("Bone-3") target_nodepath = NodePath("Bone-5") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_45hbr"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_r2r0a"] resource_local_to_scene = true bone_index = 4 bone2d_node = NodePath("Bone-4") target_nodepath = NodePath("Bone-1") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_e05lc"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_yn8yi"] resource_local_to_scene = true bone_index = 5 bone2d_node = NodePath("Bone-5") target_nodepath = NodePath("Bone-3") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_jdej6"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_q02fc"] resource_local_to_scene = true bone_index = 6 bone2d_node = NodePath("Bone-6") target_nodepath = NodePath("Bone-7") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_fbjfc"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_cwtcx"] resource_local_to_scene = true bone_index = 7 bone2d_node = NodePath("Bone-7") target_nodepath = NodePath("Bone-14") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_hiy40"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_x7g2s"] resource_local_to_scene = true bone_index = 8 bone2d_node = NodePath("Bone-8") target_nodepath = NodePath("Bone-11") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_g2gka"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_yqhe2"] resource_local_to_scene = true bone_index = 9 bone2d_node = NodePath("Bone-9") target_nodepath = NodePath("Bone-5") editor/draw_gizmo = false -[sub_resource type="SkeletonModificationStack2D" id="SkeletonModificationStack2D_xn6fk"] +[sub_resource type="SkeletonModificationStack2D" id="SkeletonModificationStack2D_kr2tb"] resource_local_to_scene = true enabled = true modification_count = 25 -modifications/0 = SubResource("SkeletonModification2DLookAt_1mv4x") -modifications/1 = SubResource("SkeletonModification2DLookAt_o27wn") -modifications/2 = SubResource("SkeletonModification2DLookAt_qubip") -modifications/3 = SubResource("SkeletonModification2DLookAt_ij25e") -modifications/4 = SubResource("SkeletonModification2DLookAt_45hbr") -modifications/5 = SubResource("SkeletonModification2DLookAt_e05lc") -modifications/6 = SubResource("SkeletonModification2DLookAt_jdej6") -modifications/7 = SubResource("SkeletonModification2DLookAt_fbjfc") -modifications/8 = SubResource("SkeletonModification2DLookAt_hiy40") -modifications/9 = SubResource("SkeletonModification2DLookAt_g2gka") -modifications/10 = SubResource("SkeletonModification2DLookAt_c4d4x") -modifications/11 = SubResource("SkeletonModification2DLookAt_jbhwj") -modifications/12 = SubResource("SkeletonModification2DLookAt_mhw1x") -modifications/13 = SubResource("SkeletonModification2DLookAt_qahd8") -modifications/14 = SubResource("SkeletonModification2DLookAt_8833h") -modifications/15 = SubResource("SkeletonModification2DLookAt_r4ej1") -modifications/16 = SubResource("SkeletonModification2DLookAt_8nmqx") -modifications/17 = SubResource("SkeletonModification2DLookAt_cxjny") -modifications/18 = SubResource("SkeletonModification2DLookAt_usfqh") -modifications/19 = SubResource("SkeletonModification2DLookAt_k7y3k") -modifications/20 = SubResource("SkeletonModification2DLookAt_dh83t") -modifications/21 = SubResource("SkeletonModification2DLookAt_6jc0a") -modifications/22 = SubResource("SkeletonModification2DLookAt_l8m6s") -modifications/23 = SubResource("SkeletonModification2DLookAt_iv6du") -modifications/24 = SubResource("SkeletonModification2DLookAt_firej") - -[sub_resource type="CircleShape2D" id="CircleShape2D_oqj3n"] +modifications/0 = SubResource("SkeletonModification2DLookAt_7fkci") +modifications/1 = SubResource("SkeletonModification2DLookAt_jgg77") +modifications/2 = SubResource("SkeletonModification2DLookAt_bpfq0") +modifications/3 = SubResource("SkeletonModification2DLookAt_52wgx") +modifications/4 = SubResource("SkeletonModification2DLookAt_r2r0a") +modifications/5 = SubResource("SkeletonModification2DLookAt_yn8yi") +modifications/6 = SubResource("SkeletonModification2DLookAt_q02fc") +modifications/7 = SubResource("SkeletonModification2DLookAt_cwtcx") +modifications/8 = SubResource("SkeletonModification2DLookAt_x7g2s") +modifications/9 = SubResource("SkeletonModification2DLookAt_yqhe2") +modifications/10 = SubResource("SkeletonModification2DLookAt_dve8s") +modifications/11 = SubResource("SkeletonModification2DLookAt_ifnut") +modifications/12 = SubResource("SkeletonModification2DLookAt_k14xs") +modifications/13 = SubResource("SkeletonModification2DLookAt_xk1jf") +modifications/14 = SubResource("SkeletonModification2DLookAt_xxwak") +modifications/15 = SubResource("SkeletonModification2DLookAt_o0u2p") +modifications/16 = SubResource("SkeletonModification2DLookAt_46eyy") +modifications/17 = SubResource("SkeletonModification2DLookAt_df3ol") +modifications/18 = SubResource("SkeletonModification2DLookAt_ewmxa") +modifications/19 = SubResource("SkeletonModification2DLookAt_2rv1f") +modifications/20 = SubResource("SkeletonModification2DLookAt_p5whb") +modifications/21 = SubResource("SkeletonModification2DLookAt_bdcsv") +modifications/22 = SubResource("SkeletonModification2DLookAt_bduyd") +modifications/23 = SubResource("SkeletonModification2DLookAt_u6gvg") +modifications/24 = SubResource("SkeletonModification2DLookAt_febah") + +[sub_resource type="CircleShape2D" id="CircleShape2D_truie"] resource_local_to_scene = true radius = 15.0 -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_g8mfh"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_6gon4"] resource_local_to_scene = true bone_index = 0 bone2d_node = NodePath("Bone-0") target_nodepath = NodePath("Bone-4") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_rqgwv"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_rkjll"] resource_local_to_scene = true bone_index = 1 bone2d_node = NodePath("Bone-1") -target_nodepath = NodePath("Bone-2") +target_nodepath = NodePath("Bone-5") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_1o0ub"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_y5po6"] resource_local_to_scene = true bone_index = 10 bone2d_node = NodePath("Bone-10") target_nodepath = NodePath("Bone-11") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_fv7wu"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_3gfcj"] resource_local_to_scene = true bone_index = 11 bone2d_node = NodePath("Bone-11") -target_nodepath = NodePath("Bone-14") +target_nodepath = NodePath("Bone-20") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_i4ube"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_f50kw"] resource_local_to_scene = true bone_index = 12 bone2d_node = NodePath("Bone-12") target_nodepath = NodePath("Bone-13") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_m5nea"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_v4eo8"] resource_local_to_scene = true bone_index = 13 bone2d_node = NodePath("Bone-13") target_nodepath = NodePath("Bone-14") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_eis7s"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_f8cof"] resource_local_to_scene = true bone_index = 14 bone2d_node = NodePath("Bone-14") target_nodepath = NodePath("Bone-15") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_vsq0i"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_oghgm"] resource_local_to_scene = true bone_index = 15 bone2d_node = NodePath("Bone-15") target_nodepath = NodePath("Bone-23") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_l6a8a"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_778bm"] resource_local_to_scene = true bone_index = 16 bone2d_node = NodePath("Bone-16") target_nodepath = NodePath("Bone-19") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_c5cbs"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_dmlv5"] resource_local_to_scene = true bone_index = 17 bone2d_node = NodePath("Bone-17") -target_nodepath = NodePath("Bone-18") +target_nodepath = NodePath("Bone-20") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_f38e6"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_8mxs0"] resource_local_to_scene = true bone_index = 18 bone2d_node = NodePath("Bone-18") -target_nodepath = NodePath("Bone-19") +target_nodepath = NodePath("Bone-20") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_2h0il"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_iyh1m"] resource_local_to_scene = true bone_index = 19 bone2d_node = NodePath("Bone-19") -target_nodepath = NodePath("Bone-18") +target_nodepath = NodePath("Bone-21") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_t34ts"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_7hl71"] resource_local_to_scene = true bone_index = 2 bone2d_node = NodePath("Bone-2") -target_nodepath = NodePath("Bone-3") +target_nodepath = NodePath("Bone-6") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_oh7um"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_o5vfh"] resource_local_to_scene = true bone_index = 20 bone2d_node = NodePath("Bone-20") -target_nodepath = NodePath("Bone-17") +target_nodepath = NodePath("Bone-23") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_tfmxt"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_2lmtg"] resource_local_to_scene = true bone_index = 21 bone2d_node = NodePath("Bone-21") target_nodepath = NodePath("Bone-22") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_rr18v"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_cl38p"] resource_local_to_scene = true bone_index = 22 bone2d_node = NodePath("Bone-22") target_nodepath = NodePath("Bone-21") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_t7vvh"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_r2upt"] resource_local_to_scene = true bone_index = 23 bone2d_node = NodePath("Bone-23") -target_nodepath = NodePath("Bone-24") +target_nodepath = NodePath("Bone-36") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_5fpr8"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_joab4"] resource_local_to_scene = true bone_index = 24 bone2d_node = NodePath("Bone-24") target_nodepath = NodePath("Bone-25") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_3vj4b"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_878dh"] resource_local_to_scene = true bone_index = 25 bone2d_node = NodePath("Bone-25") target_nodepath = NodePath("Bone-24") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_yplq6"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_gkijb"] resource_local_to_scene = true bone_index = 26 bone2d_node = NodePath("Bone-26") target_nodepath = NodePath("Bone-27") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_7m1y1"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_kfnvw"] resource_local_to_scene = true bone_index = 27 bone2d_node = NodePath("Bone-27") target_nodepath = NodePath("Bone-28") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_x7huf"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_kx868"] resource_local_to_scene = true bone_index = 28 bone2d_node = NodePath("Bone-28") -target_nodepath = NodePath("Bone-27") +target_nodepath = NodePath("Bone-29") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_5t3m2"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_ohq83"] resource_local_to_scene = true bone_index = 29 bone2d_node = NodePath("Bone-29") -target_nodepath = NodePath("Bone-33") +target_nodepath = NodePath("Bone-36") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_jybgb"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_pchau"] resource_local_to_scene = true bone_index = 3 bone2d_node = NodePath("Bone-3") target_nodepath = NodePath("Bone-7") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_1mvsi"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_o3psn"] resource_local_to_scene = true bone_index = 30 bone2d_node = NodePath("Bone-30") target_nodepath = NodePath("Bone-31") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_dc7qa"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_3l7i2"] resource_local_to_scene = true bone_index = 31 bone2d_node = NodePath("Bone-31") target_nodepath = NodePath("Bone-30") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_f808x"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_djps8"] resource_local_to_scene = true bone_index = 32 bone2d_node = NodePath("Bone-32") -target_nodepath = NodePath("Bone-33") +target_nodepath = NodePath("Bone-29") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_v216d"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_6mau6"] resource_local_to_scene = true bone_index = 33 bone2d_node = NodePath("Bone-33") -target_nodepath = NodePath("Bone-35") +target_nodepath = NodePath("Bone-36") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_hsllf"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_jokpj"] resource_local_to_scene = true bone_index = 34 bone2d_node = NodePath("Bone-34") target_nodepath = NodePath("Bone-30") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_da2pv"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_4c53m"] resource_local_to_scene = true bone_index = 35 bone2d_node = NodePath("Bone-35") -target_nodepath = NodePath("Bone-33") +target_nodepath = NodePath("Bone-39") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_j1ce5"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_f12g3"] resource_local_to_scene = true bone_index = 36 bone2d_node = NodePath("Bone-36") -target_nodepath = NodePath("Bone-29") +target_nodepath = NodePath("Bone-37") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_ecjla"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_poxnt"] resource_local_to_scene = true bone_index = 37 bone2d_node = NodePath("Bone-37") target_nodepath = NodePath("Bone-38") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_8wwfo"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_d3bde"] resource_local_to_scene = true bone_index = 38 bone2d_node = NodePath("Bone-38") target_nodepath = NodePath("Bone-37") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_si6bq"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_p24li"] resource_local_to_scene = true bone_index = 39 bone2d_node = NodePath("Bone-39") -target_nodepath = NodePath("Bone-37") +target_nodepath = NodePath("Bone-42") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_dnwmt"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_clcnv"] resource_local_to_scene = true bone_index = 4 bone2d_node = NodePath("Bone-4") target_nodepath = NodePath("Bone-5") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_hklsa"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_crtqu"] resource_local_to_scene = true bone_index = 40 bone2d_node = NodePath("Bone-40") target_nodepath = NodePath("Bone-41") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_bhqmo"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_j5f1r"] resource_local_to_scene = true bone_index = 41 bone2d_node = NodePath("Bone-41") target_nodepath = NodePath("Bone-40") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_uupdw"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_ks4xv"] resource_local_to_scene = true bone_index = 42 bone2d_node = NodePath("Bone-42") -target_nodepath = NodePath("Bone-39") +target_nodepath = NodePath("Bone-35") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_b3e6y"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_bc7x6"] resource_local_to_scene = true bone_index = 43 bone2d_node = NodePath("Bone-43") -target_nodepath = NodePath("Bone-42") +target_nodepath = NodePath("Bone-40") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_riasf"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_jgck3"] resource_local_to_scene = true bone_index = 44 bone2d_node = NodePath("Bone-44") -target_nodepath = NodePath("Bone-43") +target_nodepath = NodePath("Bone-41") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_fqp66"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_2avs0"] resource_local_to_scene = true bone_index = 5 bone2d_node = NodePath("Bone-5") target_nodepath = NodePath("Bone-6") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_ko6gg"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_ckxtj"] resource_local_to_scene = true bone_index = 6 bone2d_node = NodePath("Bone-6") -target_nodepath = NodePath("Bone-9") +target_nodepath = NodePath("Bone-7") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_c5vm0"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_pdvg4"] resource_local_to_scene = true bone_index = 7 bone2d_node = NodePath("Bone-7") -target_nodepath = NodePath("Bone-11") +target_nodepath = NodePath("Bone-17") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_hwg8j"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_ydl12"] resource_local_to_scene = true bone_index = 8 bone2d_node = NodePath("Bone-8") target_nodepath = NodePath("Bone-9") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_4q6qb"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_aor7u"] resource_local_to_scene = true bone_index = 9 bone2d_node = NodePath("Bone-9") -target_nodepath = NodePath("Bone-8") +target_nodepath = NodePath("Bone-10") editor/draw_gizmo = false -[sub_resource type="SkeletonModificationStack2D" id="SkeletonModificationStack2D_owjpc"] +[sub_resource type="SkeletonModificationStack2D" id="SkeletonModificationStack2D_cjvns"] resource_local_to_scene = true enabled = true modification_count = 45 -modifications/0 = SubResource("SkeletonModification2DLookAt_g8mfh") -modifications/1 = SubResource("SkeletonModification2DLookAt_rqgwv") -modifications/2 = SubResource("SkeletonModification2DLookAt_t34ts") -modifications/3 = SubResource("SkeletonModification2DLookAt_jybgb") -modifications/4 = SubResource("SkeletonModification2DLookAt_dnwmt") -modifications/5 = SubResource("SkeletonModification2DLookAt_fqp66") -modifications/6 = SubResource("SkeletonModification2DLookAt_ko6gg") -modifications/7 = SubResource("SkeletonModification2DLookAt_c5vm0") -modifications/8 = SubResource("SkeletonModification2DLookAt_hwg8j") -modifications/9 = SubResource("SkeletonModification2DLookAt_4q6qb") -modifications/10 = SubResource("SkeletonModification2DLookAt_1o0ub") -modifications/11 = SubResource("SkeletonModification2DLookAt_fv7wu") -modifications/12 = SubResource("SkeletonModification2DLookAt_i4ube") -modifications/13 = SubResource("SkeletonModification2DLookAt_m5nea") -modifications/14 = SubResource("SkeletonModification2DLookAt_eis7s") -modifications/15 = SubResource("SkeletonModification2DLookAt_vsq0i") -modifications/16 = SubResource("SkeletonModification2DLookAt_l6a8a") -modifications/17 = SubResource("SkeletonModification2DLookAt_c5cbs") -modifications/18 = SubResource("SkeletonModification2DLookAt_f38e6") -modifications/19 = SubResource("SkeletonModification2DLookAt_2h0il") -modifications/20 = SubResource("SkeletonModification2DLookAt_oh7um") -modifications/21 = SubResource("SkeletonModification2DLookAt_tfmxt") -modifications/22 = SubResource("SkeletonModification2DLookAt_rr18v") -modifications/23 = SubResource("SkeletonModification2DLookAt_t7vvh") -modifications/24 = SubResource("SkeletonModification2DLookAt_5fpr8") -modifications/25 = SubResource("SkeletonModification2DLookAt_3vj4b") -modifications/26 = SubResource("SkeletonModification2DLookAt_yplq6") -modifications/27 = SubResource("SkeletonModification2DLookAt_7m1y1") -modifications/28 = SubResource("SkeletonModification2DLookAt_x7huf") -modifications/29 = SubResource("SkeletonModification2DLookAt_5t3m2") -modifications/30 = SubResource("SkeletonModification2DLookAt_1mvsi") -modifications/31 = SubResource("SkeletonModification2DLookAt_dc7qa") -modifications/32 = SubResource("SkeletonModification2DLookAt_f808x") -modifications/33 = SubResource("SkeletonModification2DLookAt_v216d") -modifications/34 = SubResource("SkeletonModification2DLookAt_hsllf") -modifications/35 = SubResource("SkeletonModification2DLookAt_da2pv") -modifications/36 = SubResource("SkeletonModification2DLookAt_j1ce5") -modifications/37 = SubResource("SkeletonModification2DLookAt_ecjla") -modifications/38 = SubResource("SkeletonModification2DLookAt_8wwfo") -modifications/39 = SubResource("SkeletonModification2DLookAt_si6bq") -modifications/40 = SubResource("SkeletonModification2DLookAt_hklsa") -modifications/41 = SubResource("SkeletonModification2DLookAt_bhqmo") -modifications/42 = SubResource("SkeletonModification2DLookAt_uupdw") -modifications/43 = SubResource("SkeletonModification2DLookAt_b3e6y") -modifications/44 = SubResource("SkeletonModification2DLookAt_riasf") - -[sub_resource type="CircleShape2D" id="CircleShape2D_tur3v"] +modifications/0 = SubResource("SkeletonModification2DLookAt_6gon4") +modifications/1 = SubResource("SkeletonModification2DLookAt_rkjll") +modifications/2 = SubResource("SkeletonModification2DLookAt_7hl71") +modifications/3 = SubResource("SkeletonModification2DLookAt_pchau") +modifications/4 = SubResource("SkeletonModification2DLookAt_clcnv") +modifications/5 = SubResource("SkeletonModification2DLookAt_2avs0") +modifications/6 = SubResource("SkeletonModification2DLookAt_ckxtj") +modifications/7 = SubResource("SkeletonModification2DLookAt_pdvg4") +modifications/8 = SubResource("SkeletonModification2DLookAt_ydl12") +modifications/9 = SubResource("SkeletonModification2DLookAt_aor7u") +modifications/10 = SubResource("SkeletonModification2DLookAt_y5po6") +modifications/11 = SubResource("SkeletonModification2DLookAt_3gfcj") +modifications/12 = SubResource("SkeletonModification2DLookAt_f50kw") +modifications/13 = SubResource("SkeletonModification2DLookAt_v4eo8") +modifications/14 = SubResource("SkeletonModification2DLookAt_f8cof") +modifications/15 = SubResource("SkeletonModification2DLookAt_oghgm") +modifications/16 = SubResource("SkeletonModification2DLookAt_778bm") +modifications/17 = SubResource("SkeletonModification2DLookAt_dmlv5") +modifications/18 = SubResource("SkeletonModification2DLookAt_8mxs0") +modifications/19 = SubResource("SkeletonModification2DLookAt_iyh1m") +modifications/20 = SubResource("SkeletonModification2DLookAt_o5vfh") +modifications/21 = SubResource("SkeletonModification2DLookAt_2lmtg") +modifications/22 = SubResource("SkeletonModification2DLookAt_cl38p") +modifications/23 = SubResource("SkeletonModification2DLookAt_r2upt") +modifications/24 = SubResource("SkeletonModification2DLookAt_joab4") +modifications/25 = SubResource("SkeletonModification2DLookAt_878dh") +modifications/26 = SubResource("SkeletonModification2DLookAt_gkijb") +modifications/27 = SubResource("SkeletonModification2DLookAt_kfnvw") +modifications/28 = SubResource("SkeletonModification2DLookAt_kx868") +modifications/29 = SubResource("SkeletonModification2DLookAt_ohq83") +modifications/30 = SubResource("SkeletonModification2DLookAt_o3psn") +modifications/31 = SubResource("SkeletonModification2DLookAt_3l7i2") +modifications/32 = SubResource("SkeletonModification2DLookAt_djps8") +modifications/33 = SubResource("SkeletonModification2DLookAt_6mau6") +modifications/34 = SubResource("SkeletonModification2DLookAt_jokpj") +modifications/35 = SubResource("SkeletonModification2DLookAt_4c53m") +modifications/36 = SubResource("SkeletonModification2DLookAt_f12g3") +modifications/37 = SubResource("SkeletonModification2DLookAt_poxnt") +modifications/38 = SubResource("SkeletonModification2DLookAt_d3bde") +modifications/39 = SubResource("SkeletonModification2DLookAt_p24li") +modifications/40 = SubResource("SkeletonModification2DLookAt_crtqu") +modifications/41 = SubResource("SkeletonModification2DLookAt_j5f1r") +modifications/42 = SubResource("SkeletonModification2DLookAt_ks4xv") +modifications/43 = SubResource("SkeletonModification2DLookAt_bc7x6") +modifications/44 = SubResource("SkeletonModification2DLookAt_jgck3") + +[sub_resource type="CircleShape2D" id="CircleShape2D_fq4ub"] resource_local_to_scene = true radius = 15.0 -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_runwr"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_jyfo6"] resource_local_to_scene = true bone_index = 0 bone2d_node = NodePath("Bone-0") -target_nodepath = NodePath("Bone-3") +target_nodepath = NodePath("Bone-4") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_q8gkt"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_8u1c4"] resource_local_to_scene = true bone_index = 1 bone2d_node = NodePath("Bone-1") -target_nodepath = NodePath("Bone-4") +target_nodepath = NodePath("Bone-3") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_ki1dl"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_hwox7"] resource_local_to_scene = true bone_index = 10 bone2d_node = NodePath("Bone-10") target_nodepath = NodePath("Bone-9") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_bahx2"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_e1bpy"] resource_local_to_scene = true bone_index = 11 bone2d_node = NodePath("Bone-11") -target_nodepath = NodePath("Bone-7") +target_nodepath = NodePath("Bone-8") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_6dsoy"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_avrt7"] resource_local_to_scene = true bone_index = 12 bone2d_node = NodePath("Bone-12") target_nodepath = NodePath("Bone-11") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_tjmct"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_on4qx"] resource_local_to_scene = true bone_index = 13 bone2d_node = NodePath("Bone-13") -target_nodepath = NodePath("Bone-10") +target_nodepath = NodePath("Bone-12") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_5hp7m"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_cnaed"] resource_local_to_scene = true bone_index = 2 bone2d_node = NodePath("Bone-2") -target_nodepath = NodePath("Bone-6") +target_nodepath = NodePath("Bone-7") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_y44k0"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_rx1xx"] resource_local_to_scene = true bone_index = 3 bone2d_node = NodePath("Bone-3") -target_nodepath = NodePath("Bone-4") +target_nodepath = NodePath("Bone-2") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_klrwi"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_1u84a"] resource_local_to_scene = true bone_index = 4 bone2d_node = NodePath("Bone-4") target_nodepath = NodePath("Bone-5") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_73jp1"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_5ik4i"] resource_local_to_scene = true bone_index = 5 bone2d_node = NodePath("Bone-5") target_nodepath = NodePath("Bone-9") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_f4vyl"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_emfsi"] resource_local_to_scene = true bone_index = 6 bone2d_node = NodePath("Bone-6") target_nodepath = NodePath("Bone-7") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_024yq"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_pp7wo"] resource_local_to_scene = true bone_index = 7 bone2d_node = NodePath("Bone-7") target_nodepath = NodePath("Bone-6") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_gl675"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_tlamr"] resource_local_to_scene = true bone_index = 8 bone2d_node = NodePath("Bone-8") -target_nodepath = NodePath("Bone-7") +target_nodepath = NodePath("Bone-9") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_8x88e"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_uxbmd"] resource_local_to_scene = true bone_index = 9 bone2d_node = NodePath("Bone-9") -target_nodepath = NodePath("Bone-8") +target_nodepath = NodePath("Bone-5") editor/draw_gizmo = false -[sub_resource type="SkeletonModificationStack2D" id="SkeletonModificationStack2D_htp3x"] +[sub_resource type="SkeletonModificationStack2D" id="SkeletonModificationStack2D_t0cnb"] resource_local_to_scene = true enabled = true modification_count = 14 -modifications/0 = SubResource("SkeletonModification2DLookAt_runwr") -modifications/1 = SubResource("SkeletonModification2DLookAt_q8gkt") -modifications/2 = SubResource("SkeletonModification2DLookAt_5hp7m") -modifications/3 = SubResource("SkeletonModification2DLookAt_y44k0") -modifications/4 = SubResource("SkeletonModification2DLookAt_klrwi") -modifications/5 = SubResource("SkeletonModification2DLookAt_73jp1") -modifications/6 = SubResource("SkeletonModification2DLookAt_f4vyl") -modifications/7 = SubResource("SkeletonModification2DLookAt_024yq") -modifications/8 = SubResource("SkeletonModification2DLookAt_gl675") -modifications/9 = SubResource("SkeletonModification2DLookAt_8x88e") -modifications/10 = SubResource("SkeletonModification2DLookAt_ki1dl") -modifications/11 = SubResource("SkeletonModification2DLookAt_bahx2") -modifications/12 = SubResource("SkeletonModification2DLookAt_6dsoy") -modifications/13 = SubResource("SkeletonModification2DLookAt_tjmct") - -[sub_resource type="CircleShape2D" id="CircleShape2D_0wdvc"] -resource_local_to_scene = true - -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_4x77p"] +modifications/0 = SubResource("SkeletonModification2DLookAt_jyfo6") +modifications/1 = SubResource("SkeletonModification2DLookAt_8u1c4") +modifications/2 = SubResource("SkeletonModification2DLookAt_cnaed") +modifications/3 = SubResource("SkeletonModification2DLookAt_rx1xx") +modifications/4 = SubResource("SkeletonModification2DLookAt_1u84a") +modifications/5 = SubResource("SkeletonModification2DLookAt_5ik4i") +modifications/6 = SubResource("SkeletonModification2DLookAt_emfsi") +modifications/7 = SubResource("SkeletonModification2DLookAt_pp7wo") +modifications/8 = SubResource("SkeletonModification2DLookAt_tlamr") +modifications/9 = SubResource("SkeletonModification2DLookAt_uxbmd") +modifications/10 = SubResource("SkeletonModification2DLookAt_hwox7") +modifications/11 = SubResource("SkeletonModification2DLookAt_e1bpy") +modifications/12 = SubResource("SkeletonModification2DLookAt_avrt7") +modifications/13 = SubResource("SkeletonModification2DLookAt_on4qx") + +[sub_resource type="CircleShape2D" id="CircleShape2D_iossn"] +resource_local_to_scene = true + +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_xyns4"] resource_local_to_scene = true bone_index = 0 bone2d_node = NodePath("Bone-0") -target_nodepath = NodePath("Bone-2") +target_nodepath = NodePath("Bone-18") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_6n7c0"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_77qxa"] resource_local_to_scene = true bone_index = 1 bone2d_node = NodePath("Bone-1") -target_nodepath = NodePath("Bone-4") +target_nodepath = NodePath("Bone-5") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_2ku6j"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_lv4bo"] resource_local_to_scene = true bone_index = 10 bone2d_node = NodePath("Bone-10") -target_nodepath = NodePath("Bone-11") +target_nodepath = NodePath("Bone-9") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_xusr0"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_3sf4c"] resource_local_to_scene = true bone_index = 11 bone2d_node = NodePath("Bone-11") -target_nodepath = NodePath("Bone-10") +target_nodepath = NodePath("Bone-12") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_n1ut7"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_gainl"] resource_local_to_scene = true bone_index = 12 bone2d_node = NodePath("Bone-12") -target_nodepath = NodePath("Bone-11") +target_nodepath = NodePath("Bone-13") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_lhy7t"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_4qqhs"] resource_local_to_scene = true bone_index = 13 bone2d_node = NodePath("Bone-13") -target_nodepath = NodePath("Bone-18") +target_nodepath = NodePath("Bone-25") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_ok64l"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_qr5ko"] resource_local_to_scene = true bone_index = 14 bone2d_node = NodePath("Bone-14") -target_nodepath = NodePath("Bone-15") +target_nodepath = NodePath("Bone-11") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_bba4o"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_2kgkp"] resource_local_to_scene = true bone_index = 15 bone2d_node = NodePath("Bone-15") -target_nodepath = NodePath("Bone-16") +target_nodepath = NodePath("Bone-12") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_robmn"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_fexic"] resource_local_to_scene = true bone_index = 16 bone2d_node = NodePath("Bone-16") -target_nodepath = NodePath("Bone-15") +target_nodepath = NodePath("Bone-17") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_tkedq"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_h67pj"] resource_local_to_scene = true bone_index = 17 bone2d_node = NodePath("Bone-17") -target_nodepath = NodePath("Bone-18") +target_nodepath = NodePath("Bone-28") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_brer3"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_0ca0m"] resource_local_to_scene = true bone_index = 18 bone2d_node = NodePath("Bone-18") -target_nodepath = NodePath("Bone-23") +target_nodepath = NodePath("Bone-4") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_s27bc"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_c3sdd"] resource_local_to_scene = true bone_index = 19 bone2d_node = NodePath("Bone-19") -target_nodepath = NodePath("Bone-20") +target_nodepath = NodePath("Bone-8") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_k26k7"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_77lw7"] resource_local_to_scene = true bone_index = 2 bone2d_node = NodePath("Bone-2") -target_nodepath = NodePath("Bone-3") +target_nodepath = NodePath("Bone-6") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_2qsu6"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_bwiyv"] resource_local_to_scene = true bone_index = 20 bone2d_node = NodePath("Bone-20") -target_nodepath = NodePath("Bone-21") +target_nodepath = NodePath("Bone-23") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_y5nr3"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_dfojv"] resource_local_to_scene = true bone_index = 21 bone2d_node = NodePath("Bone-21") -target_nodepath = NodePath("Bone-19") +target_nodepath = NodePath("Bone-20") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_vwtgu"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_y6x14"] resource_local_to_scene = true bone_index = 22 bone2d_node = NodePath("Bone-22") -target_nodepath = NodePath("Bone-21") +target_nodepath = NodePath("Bone-25") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_h1jq6"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_h55et"] resource_local_to_scene = true bone_index = 23 bone2d_node = NodePath("Bone-23") target_nodepath = NodePath("Bone-24") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_3l2o8"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_qogt7"] resource_local_to_scene = true bone_index = 24 bone2d_node = NodePath("Bone-24") -target_nodepath = NodePath("Bone-29") +target_nodepath = NodePath("Bone-23") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_e86yh"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_jsgkg"] resource_local_to_scene = true bone_index = 25 bone2d_node = NodePath("Bone-25") -target_nodepath = NodePath("Bone-17") +target_nodepath = NodePath("Bone-28") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_aq0sd"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_fnsau"] resource_local_to_scene = true bone_index = 26 bone2d_node = NodePath("Bone-26") -target_nodepath = NodePath("Bone-25") +target_nodepath = NodePath("Bone-27") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_o60at"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_8mr50"] resource_local_to_scene = true bone_index = 27 bone2d_node = NodePath("Bone-27") target_nodepath = NodePath("Bone-26") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_adjbd"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_vxeun"] resource_local_to_scene = true bone_index = 28 bone2d_node = NodePath("Bone-28") -target_nodepath = NodePath("Bone-27") +target_nodepath = NodePath("Bone-34") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_6351x"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_hudw3"] resource_local_to_scene = true bone_index = 29 bone2d_node = NodePath("Bone-29") -target_nodepath = NodePath("Bone-27") +target_nodepath = NodePath("Bone-30") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_nimle"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_ca670"] resource_local_to_scene = true bone_index = 3 bone2d_node = NodePath("Bone-3") target_nodepath = NodePath("Bone-6") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_mc2m1"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_vibch"] resource_local_to_scene = true bone_index = 30 bone2d_node = NodePath("Bone-30") target_nodepath = NodePath("Bone-29") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_midcd"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_gbrso"] resource_local_to_scene = true bone_index = 31 bone2d_node = NodePath("Bone-31") -target_nodepath = NodePath("Bone-29") +target_nodepath = NodePath("Bone-16") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_wj3wf"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_88u74"] resource_local_to_scene = true bone_index = 32 bone2d_node = NodePath("Bone-32") -target_nodepath = NodePath("Bone-30") -editor/draw_gizmo = false - -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_hqfsd"] -resource_local_to_scene = true -bone_index = 4 -bone2d_node = NodePath("Bone-4") -target_nodepath = NodePath("Bone-5") -editor/draw_gizmo = false - -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_dnalu"] -resource_local_to_scene = true -bone_index = 5 -bone2d_node = NodePath("Bone-5") -target_nodepath = NodePath("Bone-6") -editor/draw_gizmo = false - -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_b6x2j"] -resource_local_to_scene = true -bone_index = 6 -bone2d_node = NodePath("Bone-6") -target_nodepath = NodePath("Bone-7") -editor/draw_gizmo = false - -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_iut2s"] -resource_local_to_scene = true -bone_index = 7 -bone2d_node = NodePath("Bone-7") -target_nodepath = NodePath("Bone-8") -editor/draw_gizmo = false - -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_txm3m"] -resource_local_to_scene = true -bone_index = 8 -bone2d_node = NodePath("Bone-8") -target_nodepath = NodePath("Bone-13") -editor/draw_gizmo = false - -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_ahok4"] -resource_local_to_scene = true -bone_index = 9 -bone2d_node = NodePath("Bone-9") -target_nodepath = NodePath("Bone-10") -editor/draw_gizmo = false - -[sub_resource type="SkeletonModificationStack2D" id="SkeletonModificationStack2D_bxkn7"] -resource_local_to_scene = true -enabled = true -modification_count = 33 -modifications/0 = SubResource("SkeletonModification2DLookAt_4x77p") -modifications/1 = SubResource("SkeletonModification2DLookAt_6n7c0") -modifications/2 = SubResource("SkeletonModification2DLookAt_k26k7") -modifications/3 = SubResource("SkeletonModification2DLookAt_nimle") -modifications/4 = SubResource("SkeletonModification2DLookAt_hqfsd") -modifications/5 = SubResource("SkeletonModification2DLookAt_dnalu") -modifications/6 = SubResource("SkeletonModification2DLookAt_b6x2j") -modifications/7 = SubResource("SkeletonModification2DLookAt_iut2s") -modifications/8 = SubResource("SkeletonModification2DLookAt_txm3m") -modifications/9 = SubResource("SkeletonModification2DLookAt_ahok4") -modifications/10 = SubResource("SkeletonModification2DLookAt_2ku6j") -modifications/11 = SubResource("SkeletonModification2DLookAt_xusr0") -modifications/12 = SubResource("SkeletonModification2DLookAt_n1ut7") -modifications/13 = SubResource("SkeletonModification2DLookAt_lhy7t") -modifications/14 = SubResource("SkeletonModification2DLookAt_ok64l") -modifications/15 = SubResource("SkeletonModification2DLookAt_bba4o") -modifications/16 = SubResource("SkeletonModification2DLookAt_robmn") -modifications/17 = SubResource("SkeletonModification2DLookAt_tkedq") -modifications/18 = SubResource("SkeletonModification2DLookAt_brer3") -modifications/19 = SubResource("SkeletonModification2DLookAt_s27bc") -modifications/20 = SubResource("SkeletonModification2DLookAt_2qsu6") -modifications/21 = SubResource("SkeletonModification2DLookAt_y5nr3") -modifications/22 = SubResource("SkeletonModification2DLookAt_vwtgu") -modifications/23 = SubResource("SkeletonModification2DLookAt_h1jq6") -modifications/24 = SubResource("SkeletonModification2DLookAt_3l2o8") -modifications/25 = SubResource("SkeletonModification2DLookAt_e86yh") -modifications/26 = SubResource("SkeletonModification2DLookAt_aq0sd") -modifications/27 = SubResource("SkeletonModification2DLookAt_o60at") -modifications/28 = SubResource("SkeletonModification2DLookAt_adjbd") -modifications/29 = SubResource("SkeletonModification2DLookAt_6351x") -modifications/30 = SubResource("SkeletonModification2DLookAt_mc2m1") -modifications/31 = SubResource("SkeletonModification2DLookAt_midcd") -modifications/32 = SubResource("SkeletonModification2DLookAt_wj3wf") - -[sub_resource type="CircleShape2D" id="CircleShape2D_2rlcy"] -resource_local_to_scene = true - -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_15h6n"] -resource_local_to_scene = true -bone_index = 0 -bone2d_node = NodePath("Bone-0") -target_nodepath = NodePath("Bone-1") -editor/draw_gizmo = false - -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_ekos5"] -resource_local_to_scene = true -bone_index = 1 -bone2d_node = NodePath("Bone-1") -target_nodepath = NodePath("Bone-5") -editor/draw_gizmo = false - -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_bepib"] -resource_local_to_scene = true -bone_index = 10 -bone2d_node = NodePath("Bone-10") -target_nodepath = NodePath("Bone-9") -editor/draw_gizmo = false - -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_xwarn"] -resource_local_to_scene = true -bone_index = 11 -bone2d_node = NodePath("Bone-11") -target_nodepath = NodePath("Bone-9") -editor/draw_gizmo = false - -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_urt0b"] -resource_local_to_scene = true -bone_index = 12 -bone2d_node = NodePath("Bone-12") -target_nodepath = NodePath("Bone-7") -editor/draw_gizmo = false - -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_pob83"] -resource_local_to_scene = true -bone_index = 13 -bone2d_node = NodePath("Bone-13") -target_nodepath = NodePath("Bone-14") +target_nodepath = NodePath("Bone-16") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_oop6g"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_pn52v"] resource_local_to_scene = true -bone_index = 14 -bone2d_node = NodePath("Bone-14") -target_nodepath = NodePath("Bone-13") +bone_index = 33 +bone2d_node = NodePath("Bone-33") +target_nodepath = NodePath("Bone-17") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_dpe5n"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_vcqr6"] resource_local_to_scene = true -bone_index = 15 -bone2d_node = NodePath("Bone-15") -target_nodepath = NodePath("Bone-14") +bone_index = 34 +bone2d_node = NodePath("Bone-34") +target_nodepath = NodePath("Bone-33") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_eikxs"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_p10sb"] resource_local_to_scene = true -bone_index = 2 -bone2d_node = NodePath("Bone-2") -target_nodepath = NodePath("Bone-9") +bone_index = 35 +bone2d_node = NodePath("Bone-35") +target_nodepath = NodePath("Bone-34") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_ndv56"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_2eb4a"] resource_local_to_scene = true -bone_index = 3 -bone2d_node = NodePath("Bone-3") -target_nodepath = NodePath("Bone-4") +bone_index = 36 +bone2d_node = NodePath("Bone-36") +target_nodepath = NodePath("Bone-30") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_17207"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_a4key"] resource_local_to_scene = true bone_index = 4 bone2d_node = NodePath("Bone-4") -target_nodepath = NodePath("Bone-5") +target_nodepath = NodePath("Bone-3") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_lt2hm"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_ardmd"] resource_local_to_scene = true bone_index = 5 bone2d_node = NodePath("Bone-5") -target_nodepath = NodePath("Bone-4") +target_nodepath = NodePath("Bone-10") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_00x2d"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_rf48f"] resource_local_to_scene = true bone_index = 6 bone2d_node = NodePath("Bone-6") -target_nodepath = NodePath("Bone-2") +target_nodepath = NodePath("Bone-7") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_36yhk"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_vaeb0"] resource_local_to_scene = true bone_index = 7 bone2d_node = NodePath("Bone-7") -target_nodepath = NodePath("Bone-12") +target_nodepath = NodePath("Bone-8") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_j4f6s"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_y3bml"] resource_local_to_scene = true bone_index = 8 bone2d_node = NodePath("Bone-8") -target_nodepath = NodePath("Bone-13") +target_nodepath = NodePath("Bone-22") editor/draw_gizmo = false -[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_4p1vb"] +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_gt8lc"] resource_local_to_scene = true bone_index = 9 bone2d_node = NodePath("Bone-9") target_nodepath = NodePath("Bone-10") editor/draw_gizmo = false -[sub_resource type="SkeletonModificationStack2D" id="SkeletonModificationStack2D_lpmfw"] +[sub_resource type="SkeletonModificationStack2D" id="SkeletonModificationStack2D_ywjqn"] resource_local_to_scene = true enabled = true -modification_count = 16 -modifications/0 = SubResource("SkeletonModification2DLookAt_15h6n") -modifications/1 = SubResource("SkeletonModification2DLookAt_ekos5") -modifications/2 = SubResource("SkeletonModification2DLookAt_eikxs") -modifications/3 = SubResource("SkeletonModification2DLookAt_ndv56") -modifications/4 = SubResource("SkeletonModification2DLookAt_17207") -modifications/5 = SubResource("SkeletonModification2DLookAt_lt2hm") -modifications/6 = SubResource("SkeletonModification2DLookAt_00x2d") -modifications/7 = SubResource("SkeletonModification2DLookAt_36yhk") -modifications/8 = SubResource("SkeletonModification2DLookAt_j4f6s") -modifications/9 = SubResource("SkeletonModification2DLookAt_4p1vb") -modifications/10 = SubResource("SkeletonModification2DLookAt_bepib") -modifications/11 = SubResource("SkeletonModification2DLookAt_xwarn") -modifications/12 = SubResource("SkeletonModification2DLookAt_urt0b") -modifications/13 = SubResource("SkeletonModification2DLookAt_pob83") -modifications/14 = SubResource("SkeletonModification2DLookAt_oop6g") -modifications/15 = SubResource("SkeletonModification2DLookAt_dpe5n") - -[sub_resource type="CircleShape2D" id="CircleShape2D_tk7ku"] -resource_local_to_scene = true -radius = 16.5 +modification_count = 37 +modifications/0 = SubResource("SkeletonModification2DLookAt_xyns4") +modifications/1 = SubResource("SkeletonModification2DLookAt_77qxa") +modifications/2 = SubResource("SkeletonModification2DLookAt_77lw7") +modifications/3 = SubResource("SkeletonModification2DLookAt_ca670") +modifications/4 = SubResource("SkeletonModification2DLookAt_a4key") +modifications/5 = SubResource("SkeletonModification2DLookAt_ardmd") +modifications/6 = SubResource("SkeletonModification2DLookAt_rf48f") +modifications/7 = SubResource("SkeletonModification2DLookAt_vaeb0") +modifications/8 = SubResource("SkeletonModification2DLookAt_y3bml") +modifications/9 = SubResource("SkeletonModification2DLookAt_gt8lc") +modifications/10 = SubResource("SkeletonModification2DLookAt_lv4bo") +modifications/11 = SubResource("SkeletonModification2DLookAt_3sf4c") +modifications/12 = SubResource("SkeletonModification2DLookAt_gainl") +modifications/13 = SubResource("SkeletonModification2DLookAt_4qqhs") +modifications/14 = SubResource("SkeletonModification2DLookAt_qr5ko") +modifications/15 = SubResource("SkeletonModification2DLookAt_2kgkp") +modifications/16 = SubResource("SkeletonModification2DLookAt_fexic") +modifications/17 = SubResource("SkeletonModification2DLookAt_h67pj") +modifications/18 = SubResource("SkeletonModification2DLookAt_0ca0m") +modifications/19 = SubResource("SkeletonModification2DLookAt_c3sdd") +modifications/20 = SubResource("SkeletonModification2DLookAt_bwiyv") +modifications/21 = SubResource("SkeletonModification2DLookAt_dfojv") +modifications/22 = SubResource("SkeletonModification2DLookAt_y6x14") +modifications/23 = SubResource("SkeletonModification2DLookAt_h55et") +modifications/24 = SubResource("SkeletonModification2DLookAt_qogt7") +modifications/25 = SubResource("SkeletonModification2DLookAt_jsgkg") +modifications/26 = SubResource("SkeletonModification2DLookAt_fnsau") +modifications/27 = SubResource("SkeletonModification2DLookAt_8mr50") +modifications/28 = SubResource("SkeletonModification2DLookAt_vxeun") +modifications/29 = SubResource("SkeletonModification2DLookAt_hudw3") +modifications/30 = SubResource("SkeletonModification2DLookAt_vibch") +modifications/31 = SubResource("SkeletonModification2DLookAt_gbrso") +modifications/32 = SubResource("SkeletonModification2DLookAt_88u74") +modifications/33 = SubResource("SkeletonModification2DLookAt_pn52v") +modifications/34 = SubResource("SkeletonModification2DLookAt_vcqr6") +modifications/35 = SubResource("SkeletonModification2DLookAt_p10sb") +modifications/36 = SubResource("SkeletonModification2DLookAt_2eb4a") + +[sub_resource type="CircleShape2D" id="CircleShape2D_r17k3"] +resource_local_to_scene = true +radius = 15.5 [node name="Node2D" type="Node2D"] @@ -3621,151 +3688,168 @@ z_index = 5 position = Vector2(451, -711) texture = ExtResource("1_bb0nr") skeleton = NodePath("Skeleton2D") -polygon = PackedVector2Array(23, 18, 22, 18, 22, 29, 20, 29, 18, 29, 14, 35, 13, 35, 12, 39, 11, 39, 11, 47, 14, 52, 15, 52, 15, 55, 13, 56, 13, 66, 11, 68, 11, 76, 13, 78, 13, 80, 17, 83, 17, 86, 16, 87, 15, 87, 15, 90, 14, 91, 13, 91, 10, 97, 9, 97, 9, 104, 11, 106, 11, 110, 14, 113, 15, 113, 15, 115, 16, 115, 15, 128, 14, 128, 14, 137, 16, 142, 16, 146, 15, 146, 15, 154, 14, 155, 13, 155, 13, 160, 11, 162, 11, 168, 12, 170, 13, 170, 14, 175, 15, 175, 14, 205, 14, 210, 15, 214, 16, 214, 16, 222, 17, 222, 17, 248, 18, 250, 19, 250, 19, 259, 21, 266, 22, 266, 22, 279, 23, 279, 23, 342, 23, 370, 27, 382, 27, 387, 31, 391, 31, 393, 34, 393, 34, 394, 39, 393, 48, 393, 49, 391, 51, 391, 54, 387, 56, 387, 59, 375, 60, 375, 60, 343, 60, 305, 57, 265, 57, 252, 53, 215, 52, 215, 52, 209, 54, 206, 54, 202, 48, 185, 47, 185, 48, 176, 48, 159, 45, 148, 44, 148, 50, 136, 51, 136, 51, 127, 50, 124, 49, 124, 49, 118, 46, 109, 45, 109, 46, 99, 47, 99, 47, 90, 45, 86, 44, 86, 45, 80, 45, 73, 49, 67, 49, 57, 40, 41, 39, 41, 40, 39, 40, 32, 36, 26, 36, 24, 34, 23, 34, 22, 33, 23, 32, 23, 23, 11, 40, 32, 40, 39, 39, 41, 40, 41, 49, 57, 49, 64.9902, 32.6264, 64.5565, 30.0177, 28.248, 36.7599, 27.1399, 25.83, 14.7733, 26.1315, 25.3782, 22, 25.9422, 22, 18, 23, 18, 23, 11, 30.0177, 28.248, 32.6264, 64.5565, 27.3579, 69.0501, 11.974, 67.026, 13, 66, 13, 56, 15, 55, 15, 52, 14, 52, 11, 47, 11, 39, 12, 39, 13, 35, 14, 35, 18, 29, 22, 29, 22, 25.9422, 26.1315, 25.3782, 32, 23, 33, 23, 34, 22, 34, 23, 36, 24, 36, 26, 36.7599, 27.1399, 30.0177, 28.248, 26.1315, 25.3782, 25.83, 14.7733, 49, 64.9902, 49, 67, 45, 73, 45, 80, 44, 86, 45, 86, 47, 90, 47, 99, 46, 99, 45.6157, 102.843, 28.5506, 102.526, 27.3579, 69.0501, 32.6264, 64.5565, 27.3579, 69.0501, 28.5506, 102.526, 25.2691, 106.425, 10.4286, 105.429, 9, 104, 9, 97, 10, 97, 13, 91, 14, 91, 15, 90, 15, 87, 16, 87, 17, 86, 17, 83, 13, 80, 13, 78, 11, 76, 11, 68, 11.974, 67.026, 45.6157, 102.843, 45, 109, 46, 109, 49, 118, 49, 124, 50, 124, 51, 127, 51, 136, 50, 136, 48.3041, 139.392, 27.7875, 137.724, 25.2691, 106.425, 28.5506, 102.526, 25.2691, 106.425, 27.7875, 137.724, 25.0742, 140.608, 15.3286, 140.322, 14, 137, 14, 128, 15, 128, 16, 115, 15, 115, 15, 113, 14, 113, 11, 110, 11, 106, 10.4286, 105.429, 48.3041, 139.392, 44, 148, 45, 148, 48, 159, 48, 176, 47.6156, 179.46, 25.6578, 178.493, 23.6501, 176.832, 25.0742, 140.608, 27.7875, 137.724, 25.0742, 140.608, 23.6501, 176.832, 14.9091, 177.728, 15, 175, 14, 175, 13, 170, 12, 170, 11, 168, 11, 162, 13, 160, 13, 155, 14, 155, 15, 154, 15, 146, 16, 146, 16, 142, 15.3286, 140.322, 47.6156, 179.46, 47, 185, 48, 185, 54, 202, 54, 206, 52, 209, 52, 214.035, 25.7179, 215.987, 25.6578, 178.493, 25.6578, 178.493, 25.7179, 215.987, 25.3167, 216.46, 16, 217.247, 16, 214, 15, 214, 14, 210, 14, 205, 14.9091, 177.728, 23.6501, 176.832, 52, 215, 53, 215, 56.9408, 251.453, 31.7086, 250.835, 25.3167, 216.46, 25.7179, 215.987, 52, 214.035, 31.7086, 250.835, 25.9058, 255.578, 19, 255.391, 19, 250, 18, 250, 17, 248, 17, 222, 16, 222, 16, 217.247, 25.3167, 216.46, 56.9408, 251.453, 57, 252, 57, 265, 58.8808, 290.077, 28.3398, 289.615, 28.3227, 289.595, 25.9058, 255.578, 31.7086, 250.835, 25.9058, 255.578, 28.3227, 289.595, 23, 289.209, 23, 279, 22, 279, 22, 266, 21, 266, 19, 259, 19, 255.391, 58.8808, 290.077, 60, 305, 60, 325.106, 58.4373, 326.792, 30.2646, 327.711, 23.2605, 321.151, 28.3398, 289.615, 28.3227, 289.595, 28.3398, 289.615, 23.2605, 321.151, 23, 321.156, 23, 289.209, 60, 335.24, 60, 364.59, 58.0779, 366.782, 28.1748, 365.271, 23.9506, 360.952, 30.2646, 327.711, 58.4373, 326.792, 30.2646, 327.711, 23.9506, 360.952, 23, 360.952, 23, 321.156, 23.2605, 321.151, 60, 335.24, 58.4373, 326.792, 60, 325.106, 58.0779, 366.782, 59.4062, 375, 59, 375, 56, 387, 54, 387, 51, 391, 49, 391, 48, 393, 39, 393, 34, 394, 34, 393, 31, 393, 31, 391, 27, 387, 27, 382, 26.4137, 380.241, 28.1748, 365.271, 28.1748, 365.271, 26.4137, 380.241, 23, 370, 23, 360.952, 23.9506, 360.952, 60, 375, 59.4062, 375, 58.0779, 366.782, 60, 364.59) -polygons = [PackedInt32Array(132, 124, 125), PackedInt32Array(126, 127, 128), PackedInt32Array(128, 129, 130), PackedInt32Array(130, 131, 132), PackedInt32Array(132, 125, 126), PackedInt32Array(126, 128, 130), PackedInt32Array(130, 132, 126), PackedInt32Array(138, 133, 134), PackedInt32Array(134, 135, 136), PackedInt32Array(137, 138, 134), PackedInt32Array(134, 136, 137), PackedInt32Array(156, 139, 140), PackedInt32Array(140, 141, 142), PackedInt32Array(143, 144, 145), PackedInt32Array(146, 147, 148), PackedInt32Array(148, 149, 150), PackedInt32Array(150, 151, 152), PackedInt32Array(152, 153, 154), PackedInt32Array(154, 155, 156), PackedInt32Array(140, 142, 143), PackedInt32Array(146, 148, 150), PackedInt32Array(150, 152, 154), PackedInt32Array(154, 156, 140), PackedInt32Array(140, 143, 145), PackedInt32Array(146, 150, 154), PackedInt32Array(154, 140, 145), PackedInt32Array(145, 146, 154), PackedInt32Array(158, 159, 160), PackedInt32Array(160, 161, 162), PackedInt32Array(162, 163, 164), PackedInt32Array(164, 165, 166), PackedInt32Array(158, 160, 162), PackedInt32Array(164, 166, 157), PackedInt32Array(157, 158, 162), PackedInt32Array(162, 164, 157), PackedInt32Array(179, 167, 168), PackedInt32Array(169, 170, 171), PackedInt32Array(171, 172, 173), PackedInt32Array(173, 174, 175), PackedInt32Array(175, 176, 177), PackedInt32Array(177, 178, 179), PackedInt32Array(179, 168, 169), PackedInt32Array(171, 173, 175), PackedInt32Array(175, 177, 179), PackedInt32Array(179, 169, 171), PackedInt32Array(171, 175, 179), PackedInt32Array(198, 180, 181), PackedInt32Array(181, 182, 183), PackedInt32Array(183, 184, 185), PackedInt32Array(186, 187, 188), PackedInt32Array(189, 190, 191), PackedInt32Array(193, 194, 195), PackedInt32Array(195, 196, 197), PackedInt32Array(197, 198, 181), PackedInt32Array(181, 183, 185), PackedInt32Array(186, 188, 189), PackedInt32Array(189, 191, 192), PackedInt32Array(193, 195, 197), PackedInt32Array(181, 185, 186), PackedInt32Array(193, 197, 181), PackedInt32Array(181, 186, 189), PackedInt32Array(192, 193, 181), PackedInt32Array(181, 189, 192), PackedInt32Array(211, 199, 200), PackedInt32Array(200, 201, 202), PackedInt32Array(203, 204, 205), PackedInt32Array(205, 206, 207), PackedInt32Array(207, 208, 209), PackedInt32Array(209, 210, 211), PackedInt32Array(211, 200, 202), PackedInt32Array(203, 205, 207), PackedInt32Array(207, 209, 211), PackedInt32Array(211, 202, 203), PackedInt32Array(203, 207, 211), PackedInt32Array(212, 213, 214), PackedInt32Array(214, 215, 216), PackedInt32Array(216, 217, 218), PackedInt32Array(219, 220, 221), PackedInt32Array(221, 222, 223), PackedInt32Array(224, 225, 212), PackedInt32Array(212, 214, 216), PackedInt32Array(221, 223, 224), PackedInt32Array(212, 216, 218), PackedInt32Array(221, 224, 212), PackedInt32Array(212, 218, 219), PackedInt32Array(219, 221, 212), PackedInt32Array(235, 226, 227), PackedInt32Array(227, 228, 229), PackedInt32Array(229, 230, 231), PackedInt32Array(231, 232, 233), PackedInt32Array(233, 234, 235), PackedInt32Array(235, 227, 229), PackedInt32Array(229, 231, 233), PackedInt32Array(233, 235, 229), PackedInt32Array(236, 237, 238), PackedInt32Array(239, 240, 241), PackedInt32Array(241, 242, 243), PackedInt32Array(243, 244, 245), PackedInt32Array(245, 246, 247), PackedInt32Array(248, 249, 250), PackedInt32Array(251, 252, 236), PackedInt32Array(236, 238, 239), PackedInt32Array(241, 243, 245), PackedInt32Array(245, 247, 248), PackedInt32Array(250, 251, 236), PackedInt32Array(236, 239, 241), PackedInt32Array(241, 245, 248), PackedInt32Array(248, 250, 236), PackedInt32Array(236, 241, 248), PackedInt32Array(261, 253, 254), PackedInt32Array(254, 255, 256), PackedInt32Array(256, 257, 258), PackedInt32Array(258, 259, 260), PackedInt32Array(260, 261, 254), PackedInt32Array(254, 256, 258), PackedInt32Array(258, 260, 254), PackedInt32Array(271, 262, 263), PackedInt32Array(263, 264, 265), PackedInt32Array(266, 267, 268), PackedInt32Array(268, 269, 270), PackedInt32Array(270, 271, 263), PackedInt32Array(263, 265, 266), PackedInt32Array(266, 268, 270), PackedInt32Array(270, 263, 266), PackedInt32Array(272, 273, 274), PackedInt32Array(274, 275, 276), PackedInt32Array(276, 277, 278), PackedInt32Array(272, 274, 276), PackedInt32Array(276, 278, 272), PackedInt32Array(288, 279, 280), PackedInt32Array(280, 281, 282), PackedInt32Array(282, 283, 284), PackedInt32Array(285, 286, 287), PackedInt32Array(287, 288, 280), PackedInt32Array(280, 282, 284), PackedInt32Array(285, 287, 280), PackedInt32Array(280, 284, 285), PackedInt32Array(296, 289, 290), PackedInt32Array(291, 292, 293), PackedInt32Array(293, 294, 295), PackedInt32Array(295, 296, 290), PackedInt32Array(290, 291, 293), PackedInt32Array(293, 295, 290), PackedInt32Array(297, 298, 299), PackedInt32Array(300, 301, 302), PackedInt32Array(302, 303, 304), PackedInt32Array(304, 305, 297), PackedInt32Array(297, 299, 300), PackedInt32Array(302, 304, 297), PackedInt32Array(297, 300, 302), PackedInt32Array(312, 306, 307), PackedInt32Array(307, 308, 309), PackedInt32Array(309, 310, 311), PackedInt32Array(311, 312, 307), PackedInt32Array(307, 309, 311), PackedInt32Array(317, 313, 314), PackedInt32Array(314, 315, 316), PackedInt32Array(316, 317, 314), PackedInt32Array(324, 318, 319), PackedInt32Array(319, 320, 321), PackedInt32Array(321, 322, 323), PackedInt32Array(323, 324, 319), PackedInt32Array(319, 321, 323), PackedInt32Array(329, 325, 326), PackedInt32Array(326, 327, 328), PackedInt32Array(328, 329, 326), PackedInt32Array(332, 330, 331), PackedInt32Array(349, 333, 334), PackedInt32Array(335, 336, 337), PackedInt32Array(337, 338, 339), PackedInt32Array(339, 340, 341), PackedInt32Array(341, 342, 343), PackedInt32Array(343, 344, 345), PackedInt32Array(345, 346, 347), PackedInt32Array(347, 348, 349), PackedInt32Array(349, 334, 335), PackedInt32Array(335, 337, 339), PackedInt32Array(339, 341, 343), PackedInt32Array(343, 345, 347), PackedInt32Array(347, 349, 335), PackedInt32Array(335, 339, 343), PackedInt32Array(343, 347, 335), PackedInt32Array(354, 350, 351), PackedInt32Array(351, 352, 353), PackedInt32Array(353, 354, 351), PackedInt32Array(358, 355, 356), PackedInt32Array(356, 357, 358)] -bones = ["Bone-0", PackedFloat32Array(0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 1, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 1, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-1", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0.7, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 1, 0.7, 1, 1, 0.7, 0.7, 0.7, 1, 1, 1, 1, 1, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-2", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0.7, 0.7, 0, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 1, 0.7, 0.7, 1, 1, 1, 1, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-3", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-4", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-5", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0.7, 0.7, 0.7, 0.7, 0, 0.7, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-6", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-7", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0.7, 0.7, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-8", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0.7, 0.7, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7), "Bone-9", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7)] -internal_vertex_count = 235 +polygon = PackedVector2Array(23, 18, 22, 18, 22, 29, 20, 29, 18, 29, 14, 35, 13, 35, 12, 39, 11, 39, 11, 47, 14, 52, 15, 52, 15, 55, 13, 56, 13, 66, 11, 68, 11, 76, 13, 78, 13, 80, 17, 83, 17, 86, 16, 87, 15, 87, 15, 90, 14, 91, 13, 91, 10, 97, 9, 97, 9, 104, 11, 106, 11, 110, 14, 113, 15, 113, 15, 115, 16, 115, 15, 128, 14, 128, 14, 137, 16, 142, 16, 146, 15, 146, 15, 154, 14, 155, 13, 155, 13, 160, 11, 162, 11, 168, 12, 170, 13, 170, 14, 175, 15, 175, 14, 205, 14, 210, 15, 214, 16, 214, 16, 222, 17, 222, 17, 248, 18, 250, 19, 250, 19, 259, 21, 266, 22, 266, 22, 279, 23, 279, 23, 342, 23, 370, 27, 382, 27, 387, 31, 391, 31, 393, 34, 393, 34, 394, 39, 393, 48, 393, 49, 391, 51, 391, 54, 387, 56, 387, 59, 375, 60, 375, 60, 343, 60, 305, 57, 265, 57, 252, 53, 215, 52, 215, 52, 209, 54, 206, 54, 202, 48, 185, 47, 185, 48, 176, 48, 159, 45, 148, 44, 148, 50, 136, 51, 136, 51, 127, 50, 124, 49, 124, 49, 118, 46, 109, 45, 109, 46, 99, 47, 99, 47, 90, 45, 86, 44, 86, 45, 80, 45, 73, 49, 67, 49, 57, 40, 41, 39, 41, 40, 39, 40, 32, 36, 26, 36, 24, 34, 23, 34, 22, 33, 23, 32, 23, 23, 11, 40, 32, 40, 39, 39, 41, 40, 41, 43.375, 47, 27, 47, 27, 29, 38, 29, 49, 57, 49, 65, 45, 65, 45, 49.8889, 45, 49.8889, 45, 65, 27, 65, 27, 47, 43.375, 47, 27, 16.3333, 27, 29, 22, 29, 22, 18, 23, 18, 23, 11, 27, 65, 13, 65, 13, 56, 15, 55, 15, 52, 14, 52, 11, 47, 27, 47, 27, 47, 11, 47, 11, 39, 12, 39, 13, 35, 14, 35, 18, 29, 27, 29, 32, 23, 33, 23, 34, 22, 34, 23, 36, 24, 36, 26, 38, 29, 27, 29, 27, 16.3333, 45, 80, 44.5, 83, 27, 83, 27, 65, 45, 65, 47, 90, 47, 99, 46, 99, 45.8, 101, 45, 101, 45, 86, 44, 86, 45, 86, 45, 101, 27, 101, 27, 83, 44.5, 83, 49, 67, 45, 73, 45, 65, 49, 65, 27, 101, 9, 101, 9, 97, 10, 97, 13, 91, 14, 91, 15, 90, 15, 87, 16, 87, 17, 86, 17, 83, 27, 83, 27, 83, 17, 83, 13, 80, 13, 78, 11, 76, 11, 68, 13, 66, 13, 65, 27, 65, 45, 119, 27, 119, 27, 101, 45, 101, 49, 124, 50, 124, 51, 127, 51, 136, 50, 136, 49.5, 137, 45, 137, 45, 119, 49, 119, 45, 137, 27, 137, 27, 119, 45, 119, 49, 118, 49, 119, 45, 119, 45, 109, 46, 109, 45, 109, 45, 101, 45.8, 101, 27, 137, 14, 137, 14, 128, 15, 128, 15.6923, 119, 27, 119, 27, 119, 15.6923, 119, 16, 115, 15, 115, 15, 113, 14, 113, 11, 110, 11, 106, 9, 104, 9, 101, 27, 101, 45, 155, 27, 155, 27, 137, 45, 137, 48, 159, 48, 173, 45, 173, 45, 155, 46.9091, 155, 45, 173, 27, 173, 27, 155, 45, 155, 46.9091, 155, 45, 155, 45, 148, 45, 146, 45, 137, 49.5, 137, 27, 173, 13.6, 173, 13, 170, 12, 170, 11, 168, 11, 162, 13, 160, 13, 155, 27, 155, 27, 155, 14, 155, 15, 154, 15, 146, 16, 146, 16, 142, 14, 137, 27, 137, 45, 191, 27, 191, 27, 173, 45, 173, 54, 202, 54, 206, 52, 209, 45, 209, 45, 191, 50.1176, 191, 45, 209, 27, 209, 27, 191, 45, 191, 48, 176, 47, 185, 48, 185, 50.1176, 191, 45, 191, 45, 173, 48, 173, 27, 209, 14, 209, 14, 205, 14.4667, 191, 27, 191, 27, 191, 14.4667, 191, 15, 175, 14, 175, 13.6, 173, 27, 173, 45, 227, 27, 227, 27, 209, 45, 209, 56.2432, 245, 45, 245, 45, 227, 54.2973, 227, 45, 245, 27, 245, 27, 227, 45, 227, 52, 215, 53, 215, 54.2973, 227, 45, 227, 45, 209, 52, 209, 27, 245, 17, 245, 17, 227, 27, 227, 27, 227, 17, 227, 17, 222, 16, 222, 16, 214, 15, 214, 14, 210, 14, 209, 27, 209, 45, 263, 27, 263, 27, 245, 45, 245, 57, 265, 58.2, 281, 45, 281, 45, 263, 57, 263, 45, 281, 27, 281, 27, 263, 45, 263, 57, 252, 57, 263, 45, 263, 45, 245, 56.2432, 245, 27, 281, 23, 281, 23, 279, 22, 279, 22, 266, 21, 266, 20.1429, 263, 27, 263, 27, 263, 20.1429, 263, 19, 259, 19, 250, 18, 250, 17, 248, 17, 245, 27, 245, 45, 299, 27, 299, 27, 281, 45, 281, 60, 305, 60, 317, 45, 317, 45, 299, 59.55, 299, 45, 317, 27, 317, 27, 299, 45, 299, 59.55, 299, 45, 299, 45, 281, 58.2, 281, 27, 317, 23, 317, 23, 299, 27, 299, 27, 299, 23, 299, 23, 281, 27, 281, 45, 335, 27, 335, 27, 317, 45, 317, 60, 353, 45, 353, 45, 335, 60, 335, 45, 353, 27, 353, 27, 335, 45, 335, 60, 335, 45, 335, 45, 317, 60, 317, 27, 353, 23, 353, 23, 335, 27, 335, 27, 335, 23, 335, 23, 317, 27, 317, 45, 371, 27, 371, 27, 353, 45, 353, 60, 375, 59, 375, 56, 387, 54, 387, 52.5, 389, 45, 389, 45, 371, 60, 371, 45, 389, 27, 389, 27, 371, 45, 371, 60, 371, 45, 371, 45, 353, 60, 353, 27, 382, 23.3333, 371, 27, 371, 27, 371, 23.3333, 371, 23, 370, 23, 353, 27, 353, 45, 393, 39, 393, 34, 394, 34, 393, 31, 393, 31, 391, 29, 389, 45, 389, 51, 391, 49, 391, 48, 393, 45, 393, 45, 389, 52.5, 389) +polygons = [PackedInt32Array(131, 124, 125), PackedInt32Array(126, 127, 128), PackedInt32Array(128, 129, 130), PackedInt32Array(130, 131, 125), PackedInt32Array(126, 128, 130), PackedInt32Array(130, 125, 126), PackedInt32Array(135, 132, 133), PackedInt32Array(133, 134, 135), PackedInt32Array(140, 136, 137), PackedInt32Array(137, 138, 139), PackedInt32Array(139, 140, 137), PackedInt32Array(146, 141, 142), PackedInt32Array(142, 143, 144), PackedInt32Array(145, 146, 142), PackedInt32Array(142, 144, 145), PackedInt32Array(154, 147, 148), PackedInt32Array(148, 149, 150), PackedInt32Array(151, 152, 153), PackedInt32Array(154, 148, 150), PackedInt32Array(151, 153, 154), PackedInt32Array(154, 150, 151), PackedInt32Array(162, 155, 156), PackedInt32Array(156, 157, 158), PackedInt32Array(158, 159, 160), PackedInt32Array(160, 161, 162), PackedInt32Array(162, 156, 158), PackedInt32Array(158, 160, 162), PackedInt32Array(164, 165, 166), PackedInt32Array(166, 167, 168), PackedInt32Array(168, 169, 170), PackedInt32Array(170, 171, 163), PackedInt32Array(164, 166, 168), PackedInt32Array(168, 170, 163), PackedInt32Array(163, 164, 168), PackedInt32Array(176, 172, 173), PackedInt32Array(173, 174, 175), PackedInt32Array(175, 176, 173), PackedInt32Array(182, 177, 178), PackedInt32Array(179, 180, 181), PackedInt32Array(182, 178, 179), PackedInt32Array(179, 181, 182), PackedInt32Array(183, 184, 185), PackedInt32Array(185, 186, 187), PackedInt32Array(187, 188, 183), PackedInt32Array(183, 185, 187), PackedInt32Array(192, 189, 190), PackedInt32Array(190, 191, 192), PackedInt32Array(204, 193, 194), PackedInt32Array(194, 195, 196), PackedInt32Array(196, 197, 198), PackedInt32Array(199, 200, 201), PackedInt32Array(202, 203, 204), PackedInt32Array(204, 194, 196), PackedInt32Array(196, 198, 199), PackedInt32Array(199, 201, 202), PackedInt32Array(204, 196, 199), PackedInt32Array(199, 202, 204), PackedInt32Array(213, 205, 206), PackedInt32Array(206, 207, 208), PackedInt32Array(208, 209, 210), PackedInt32Array(211, 212, 213), PackedInt32Array(213, 206, 208), PackedInt32Array(208, 210, 211), PackedInt32Array(211, 213, 208), PackedInt32Array(217, 214, 215), PackedInt32Array(215, 216, 217), PackedInt32Array(218, 219, 220), PackedInt32Array(220, 221, 222), PackedInt32Array(222, 223, 224), PackedInt32Array(224, 225, 226), PackedInt32Array(218, 220, 222), PackedInt32Array(224, 226, 218), PackedInt32Array(218, 222, 224), PackedInt32Array(230, 227, 228), PackedInt32Array(228, 229, 230), PackedInt32Array(235, 231, 232), PackedInt32Array(232, 233, 234), PackedInt32Array(234, 235, 232), PackedInt32Array(238, 236, 237), PackedInt32Array(244, 239, 240), PackedInt32Array(240, 241, 242), PackedInt32Array(242, 243, 244), PackedInt32Array(244, 240, 242), PackedInt32Array(255, 245, 246), PackedInt32Array(247, 248, 249), PackedInt32Array(249, 250, 251), PackedInt32Array(252, 253, 254), PackedInt32Array(255, 246, 247), PackedInt32Array(249, 251, 252), PackedInt32Array(252, 254, 255), PackedInt32Array(255, 247, 249), PackedInt32Array(249, 252, 255), PackedInt32Array(259, 256, 257), PackedInt32Array(257, 258, 259), PackedInt32Array(264, 260, 261), PackedInt32Array(261, 262, 263), PackedInt32Array(263, 264, 261), PackedInt32Array(268, 265, 266), PackedInt32Array(266, 267, 268), PackedInt32Array(271, 269, 270), PackedInt32Array(274, 272, 273), PackedInt32Array(283, 275, 276), PackedInt32Array(277, 278, 279), PackedInt32Array(279, 280, 281), PackedInt32Array(281, 282, 283), PackedInt32Array(283, 276, 277), PackedInt32Array(277, 279, 281), PackedInt32Array(281, 283, 277), PackedInt32Array(284, 285, 286), PackedInt32Array(286, 287, 288), PackedInt32Array(289, 290, 291), PackedInt32Array(291, 284, 286), PackedInt32Array(288, 289, 291), PackedInt32Array(291, 286, 288), PackedInt32Array(295, 292, 293), PackedInt32Array(293, 294, 295), PackedInt32Array(301, 296, 297), PackedInt32Array(297, 298, 299), PackedInt32Array(299, 300, 301), PackedInt32Array(301, 297, 299), PackedInt32Array(305, 302, 303), PackedInt32Array(303, 304, 305), PackedInt32Array(312, 306, 307), PackedInt32Array(307, 308, 309), PackedInt32Array(310, 311, 312), PackedInt32Array(307, 309, 310), PackedInt32Array(310, 312, 307), PackedInt32Array(317, 313, 314), PackedInt32Array(314, 315, 316), PackedInt32Array(316, 317, 314), PackedInt32Array(323, 318, 319), PackedInt32Array(320, 321, 322), PackedInt32Array(323, 319, 320), PackedInt32Array(320, 322, 323), PackedInt32Array(327, 324, 325), PackedInt32Array(325, 326, 327), PackedInt32Array(331, 328, 329), PackedInt32Array(329, 330, 331), PackedInt32Array(335, 332, 333), PackedInt32Array(333, 334, 335), PackedInt32Array(336, 337, 338), PackedInt32Array(338, 339, 340), PackedInt32Array(340, 341, 336), PackedInt32Array(336, 338, 340), PackedInt32Array(345, 342, 343), PackedInt32Array(343, 344, 345), PackedInt32Array(354, 346, 347), PackedInt32Array(348, 349, 350), PackedInt32Array(350, 351, 352), PackedInt32Array(352, 353, 354), PackedInt32Array(354, 347, 348), PackedInt32Array(350, 352, 354), PackedInt32Array(354, 348, 350), PackedInt32Array(358, 355, 356), PackedInt32Array(356, 357, 358), PackedInt32Array(359, 360, 361), PackedInt32Array(361, 362, 363), PackedInt32Array(363, 359, 361), PackedInt32Array(367, 364, 365), PackedInt32Array(365, 366, 367), PackedInt32Array(372, 368, 369), PackedInt32Array(369, 370, 371), PackedInt32Array(371, 372, 369), PackedInt32Array(380, 373, 374), PackedInt32Array(375, 376, 377), PackedInt32Array(377, 378, 379), PackedInt32Array(380, 374, 375), PackedInt32Array(377, 379, 380), PackedInt32Array(380, 375, 377), PackedInt32Array(388, 381, 382), PackedInt32Array(382, 383, 384), PackedInt32Array(384, 385, 386), PackedInt32Array(386, 387, 388), PackedInt32Array(388, 382, 384), PackedInt32Array(384, 386, 388), PackedInt32Array(392, 389, 390), PackedInt32Array(390, 391, 392), PackedInt32Array(397, 393, 394), PackedInt32Array(394, 395, 396), PackedInt32Array(396, 397, 394), PackedInt32Array(401, 398, 399), PackedInt32Array(399, 400, 401), PackedInt32Array(405, 402, 403), PackedInt32Array(403, 404, 405), PackedInt32Array(409, 406, 407), PackedInt32Array(407, 408, 409), PackedInt32Array(413, 410, 411), PackedInt32Array(411, 412, 413), PackedInt32Array(417, 414, 415), PackedInt32Array(415, 416, 417), PackedInt32Array(421, 418, 419), PackedInt32Array(419, 420, 421), PackedInt32Array(425, 422, 423), PackedInt32Array(423, 424, 425), PackedInt32Array(429, 426, 427), PackedInt32Array(427, 428, 429), PackedInt32Array(433, 430, 431), PackedInt32Array(431, 432, 433), PackedInt32Array(437, 434, 435), PackedInt32Array(435, 436, 437), PackedInt32Array(441, 438, 439), PackedInt32Array(439, 440, 441), PackedInt32Array(449, 442, 443), PackedInt32Array(443, 444, 445), PackedInt32Array(445, 446, 447), PackedInt32Array(447, 448, 449), PackedInt32Array(449, 443, 445), PackedInt32Array(445, 447, 449), PackedInt32Array(453, 450, 451), PackedInt32Array(451, 452, 453), PackedInt32Array(457, 454, 455), PackedInt32Array(455, 456, 457), PackedInt32Array(460, 458, 459), PackedInt32Array(465, 461, 462), PackedInt32Array(462, 463, 464), PackedInt32Array(464, 465, 462), PackedInt32Array(473, 466, 467), PackedInt32Array(467, 468, 469), PackedInt32Array(469, 470, 471), PackedInt32Array(471, 472, 473), PackedInt32Array(473, 467, 469), PackedInt32Array(469, 471, 473), PackedInt32Array(479, 474, 475), PackedInt32Array(475, 476, 477), PackedInt32Array(477, 478, 479), PackedInt32Array(479, 475, 477)] +bones = ["Bone-0", PackedFloat32Array(1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-1", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-2", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-3", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-4", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-5", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-6", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-7", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-8", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-9", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1)] +internal_vertex_count = 356 script = ExtResource("2_2dapw") -vertex_interval = 37 +vertex_interval = 36 +margin_pixels = -1 +min_area = 0.45 +disable_collision = false +softness = 20.0 radius = 35 shape_type = "Rectangle" rigidbody_scene = ExtResource("3_6ern4") -margin_pixels = -1 -voronoi_interval = 0.15 -max_joint_distance_ratio = 1.5 -angular_limit_enabled = true -angular_limit_lower = -0.349066 -angular_limit_upper = 0.349066 physics_material_override = ExtResource("3_durpg") [node name="Skeleton2D" type="Skeleton2D" parent="Asparagus"] visible = false -modification_stack = SubResource("SkeletonModificationStack2D_xyqt6") +modification_stack = SubResource("SkeletonModificationStack2D_akqqp") [node name="Bone-0" type="Bone2D" parent="Asparagus/Skeleton2D"] -position = Vector2(30, 40.0251) -rotation = 1.59279 -scale = Vector2(1, 1) -rest = Transform2D(-0.0219893, 0.999758, -0.999758, -0.0219893, 30, 40.0251) +position = Vector2(30, 38) +rotation = 1.59301 +rest = Transform2D(-0.0222167, 0.999753, -0.999753, -0.0222167, 30, 38) auto_calculate_length_and_angle = false -length = 37.0 +length = 36.0 bone_angle = 0.0 -metadata/vert_owned = [124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166] +metadata/vert_owned = [124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171] +metadata/idx = 0 metadata/connected_nodes_paths = [NodePath("Bone-1")] +metadata/connected_nodes_idx = [1] metadata/_local_pose_override_enabled_ = true [node name="Bone-1" type="Bone2D" parent="Asparagus/Skeleton2D"] -position = Vector2(29, 85.4907) -rotation = 1.52331 +position = Vector2(29, 83) +rotation = 1.54303 scale = Vector2(1, 1) -rest = Transform2D(0.0474652, 0.998873, -0.998873, 0.0474652, 29, 85.4907) +rest = Transform2D(0.027767, 0.999614, -0.999614, 0.027767, 29, 83) auto_calculate_length_and_angle = false -length = 37.0 +length = 36.0 bone_angle = 0.0 -metadata/vert_owned = [167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198] -metadata/connected_nodes_paths = [NodePath("Bone-0"), NodePath("Bone-2"), NodePath("Bone-3")] +metadata/vert_owned = [172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213] +metadata/idx = 1 +metadata/connected_nodes_paths = [NodePath("Bone-0"), NodePath("Bone-2")] +metadata/connected_nodes_idx = [0, 2] metadata/_local_pose_override_enabled_ = true [node name="Bone-2" type="Bone2D" parent="Asparagus/Skeleton2D"] -position = Vector2(30.7143, 121.567) -rotation = 1.59948 +position = Vector2(30, 119) +rotation = -1.59857 scale = Vector2(1, 1) -rest = Transform2D(-0.0286785, 0.999589, -0.999589, -0.0286785, 30.7143, 121.567) +rest = Transform2D(-0.0277671, -0.999614, 0.999614, -0.0277671, 30, 119) auto_calculate_length_and_angle = false -length = 37.0 +length = 36.0 bone_angle = 0.0 -metadata/vert_owned = [199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225] -metadata/connected_nodes_paths = [NodePath("Bone-1"), NodePath("Bone-3"), NodePath("Bone-4")] +metadata/vert_owned = [214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255] +metadata/idx = 2 +metadata/connected_nodes_paths = [NodePath("Bone-3"), NodePath("Bone-1")] +metadata/connected_nodes_idx = [3, 1] metadata/_local_pose_override_enabled_ = true [node name="Bone-3" type="Bone2D" parent="Asparagus/Skeleton2D"] -position = Vector2(29.652, 158.592) -rotation = 1.45819 -rest = Transform2D(0.112373, 0.993666, -0.993666, 0.112373, 29.6521, 158.592) +position = Vector2(30.25, 155) +rotation = 1.4725 +rest = Transform2D(0.0981348, 0.995173, -0.995173, 0.0981348, 30.25, 155) auto_calculate_length_and_angle = false -length = 37.0 +length = 36.0 bone_angle = 0.0 -metadata/vert_owned = [226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252] -metadata/connected_nodes_paths = [NodePath("Bone-1"), NodePath("Bone-2"), NodePath("Bone-4"), NodePath("Bone-5")] +metadata/vert_owned = [256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291] +metadata/idx = 3 +metadata/connected_nodes_paths = [NodePath("Bone-2"), NodePath("Bone-4")] +metadata/connected_nodes_idx = [2, 4] metadata/_local_pose_override_enabled_ = true [node name="Bone-4" type="Bone2D" parent="Asparagus/Skeleton2D"] -position = Vector2(34, 197.039) -rotation = 1.50548 -rest = Transform2D(0.0652709, 0.997868, -0.997868, 0.0652709, 34, 197.039) +position = Vector2(33.8, 191) +rotation = -1.66909 +rest = Transform2D(-0.0981348, -0.995173, 0.995173, -0.0981348, 33.8, 191) auto_calculate_length_and_angle = false -length = 37.0 +length = 36.0 bone_angle = 0.0 -metadata/vert_owned = [253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271] -metadata/connected_nodes_paths = [NodePath("Bone-2"), NodePath("Bone-3"), NodePath("Bone-5"), NodePath("Bone-6")] +metadata/vert_owned = [292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323] +metadata/idx = 4 +metadata/connected_nodes_paths = [NodePath("Bone-5"), NodePath("Bone-3")] +metadata/connected_nodes_idx = [5, 3] metadata/_local_pose_override_enabled_ = true [node name="Bone-5" type="Bone2D" parent="Asparagus/Skeleton2D"] -position = Vector2(36.4704, 234.807) -rotation = 1.50162 -scale = Vector2(1, 1) -rest = Transform2D(0.0691196, 0.997608, -0.997608, 0.0691196, 36.4704, 234.807) +position = Vector2(35.1216, 227) +rotation = 1.50206 +rest = Transform2D(0.0686817, 0.997639, -0.997639, 0.0686817, 35.1216, 227) auto_calculate_length_and_angle = false -length = 37.0 +length = 36.0 bone_angle = 0.0 -metadata/vert_owned = [272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288] -metadata/connected_nodes_paths = [NodePath("Bone-3"), NodePath("Bone-4"), NodePath("Bone-6"), NodePath("Bone-7")] +metadata/vert_owned = [324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354] +metadata/idx = 5 +metadata/connected_nodes_paths = [NodePath("Bone-4"), NodePath("Bone-6")] +metadata/connected_nodes_idx = [4, 6] metadata/_local_pose_override_enabled_ = true [node name="Bone-6" type="Bone2D" parent="Asparagus/Skeleton2D"] -position = Vector2(38.9404, 270.456) -rotation = 1.50355 -rest = Transform2D(0.0671995, 0.99774, -0.99774, 0.0671995, 38.9404, 270.456) +position = Vector2(37.6, 263) +rotation = 1.46288 +rest = Transform2D(0.107703, 0.994183, -0.994183, 0.107703, 37.6, 263) auto_calculate_length_and_angle = false -length = 37.0 +length = 36.0 bone_angle = 0.0 -metadata/vert_owned = [289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305] -metadata/connected_nodes_paths = [NodePath("Bone-4"), NodePath("Bone-5"), NodePath("Bone-7"), NodePath("Bone-8")] +metadata/vert_owned = [355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388] +metadata/idx = 6 +metadata/connected_nodes_paths = [NodePath("Bone-5"), NodePath("Bone-7")] +metadata/connected_nodes_idx = [5, 7] metadata/_local_pose_override_enabled_ = true [node name="Bone-7" type="Bone2D" parent="Asparagus/Skeleton2D"] -position = Vector2(41.5, 308.46) +position = Vector2(41.5, 299) rotation = 1.5708 -rest = Transform2D(-4.37114e-08, 1, -1, -4.37114e-08, 41.5, 308.46) +rest = Transform2D(-4.37114e-08, 1, -1, -4.37114e-08, 41.5, 299) auto_calculate_length_and_angle = false -length = 37.0 +length = 36.0 bone_angle = 0.0 -metadata/vert_owned = [306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317] -metadata/connected_nodes_paths = [NodePath("Bone-5"), NodePath("Bone-6"), NodePath("Bone-8"), NodePath("Bone-9")] +metadata/vert_owned = [389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413] +metadata/idx = 7 +metadata/connected_nodes_paths = [NodePath("Bone-6"), NodePath("Bone-8")] +metadata/connected_nodes_idx = [6, 8] metadata/_local_pose_override_enabled_ = true [node name="Bone-8" type="Bone2D" parent="Asparagus/Skeleton2D"] -position = Vector2(41.5, 343.967) -rotation = -1.5708 -rest = Transform2D(-4.37114e-08, -1, 1, -4.37114e-08, 41.5, 343.967) +position = Vector2(41.5, 335) +rotation = 1.5708 +rest = Transform2D(-4.37114e-08, 1, -1, -4.37114e-08, 41.5, 335) auto_calculate_length_and_angle = false -length = 37.0 +length = 36.0 bone_angle = 0.0 -metadata/vert_owned = [318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332] -metadata/connected_nodes_paths = [NodePath("Bone-6"), NodePath("Bone-7"), NodePath("Bone-9")] +metadata/vert_owned = [414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437] +metadata/idx = 8 +metadata/connected_nodes_paths = [NodePath("Bone-7"), NodePath("Bone-9")] +metadata/connected_nodes_idx = [7, 9] metadata/_local_pose_override_enabled_ = true [node name="Bone-9" type="Bone2D" parent="Asparagus/Skeleton2D"] -position = Vector2(41.5, 377.476) +position = Vector2(41.5, 373.5) rotation = -1.5708 -rest = Transform2D(-4.37114e-08, -1, 1, -4.37114e-08, 41.5, 377.476) +rest = Transform2D(-4.37114e-08, -1, 1, -4.37114e-08, 41.5, 373.5) auto_calculate_length_and_angle = false -length = 37.0 +length = 36.0 bone_angle = 0.0 -metadata/vert_owned = [333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358] -metadata/connected_nodes_paths = [NodePath("Bone-7"), NodePath("Bone-8")] +metadata/vert_owned = [438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479] +metadata/idx = 9 +metadata/connected_nodes_paths = [NodePath("Bone-8")] +metadata/connected_nodes_idx = [8] metadata/_local_pose_override_enabled_ = true [node name="Bone-0" type="RigidBody2D" parent="Asparagus" instance=ExtResource("3_6ern4")] -position = Vector2(30, 40.0251) +position = Vector2(30, 38) input_pickable = true mass = 0.1 physics_material_override = ExtResource("3_durpg") -script = ExtResource("5_yk0yk") +script = ExtResource("11_tqnjl") +metadata/idx = 0 metadata/bone_name = &"Bone-0" [node name="RectangleShape2D" type="CollisionShape2D" parent="Asparagus/Bone-0"] -shape = SubResource("RectangleShape2D_7minw") +shape = SubResource("RectangleShape2D_hy3tq") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Asparagus/Bone-0"] visible = false @@ -3774,24 +3858,24 @@ update_rotation = false update_scale = false [node name="Joint2D-Bone-0-Bone-1" type="PinJoint2D" parent="Asparagus/Bone-0"] -rotation = 0.0219911 +visible = false +rotation = 0.0222185 node_a = NodePath("..") node_b = NodePath("../../Bone-1") -softness = 60.0 -angular_limit_enabled = true -angular_limit_lower = -0.349066 -angular_limit_upper = 0.349066 +disable_collision = false +softness = 20.0 [node name="Bone-1" type="RigidBody2D" parent="Asparagus" instance=ExtResource("3_6ern4")] -position = Vector2(29, 85.4907) +position = Vector2(29, 83) input_pickable = true mass = 0.1 physics_material_override = ExtResource("3_durpg") -script = ExtResource("5_yk0yk") +script = ExtResource("11_tqnjl") +metadata/idx = 1 metadata/bone_name = &"Bone-1" [node name="RectangleShape2D" type="CollisionShape2D" parent="Asparagus/Bone-1"] -shape = SubResource("RectangleShape2D_7minw") +shape = SubResource("RectangleShape2D_hy3tq") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Asparagus/Bone-1"] visible = false @@ -3800,42 +3884,32 @@ update_rotation = false update_scale = false [node name="Joint2D-Bone-1-Bone-0" type="PinJoint2D" parent="Asparagus/Bone-1"] -rotation = -3.1196 +visible = false +rotation = -3.11937 node_a = NodePath("..") node_b = NodePath("../../Bone-0") -softness = 60.0 -angular_limit_enabled = true -angular_limit_lower = -0.349066 -angular_limit_upper = 0.349066 +disable_collision = false +softness = 20.0 [node name="Joint2D-Bone-1-Bone-2" type="PinJoint2D" parent="Asparagus/Bone-1"] -rotation = -0.0474829 +visible = false +rotation = -0.0277706 node_a = NodePath("..") node_b = NodePath("../../Bone-2") -softness = 60.0 -angular_limit_enabled = true -angular_limit_lower = -0.349066 -angular_limit_upper = 0.349066 - -[node name="Joint2D-Bone-1-Bone-3" type="PinJoint2D" parent="Asparagus/Bone-1"] -rotation = -0.00891955 -node_a = NodePath("..") -node_b = NodePath("../../Bone-3") -softness = 60.0 -angular_limit_enabled = true -angular_limit_lower = -0.349066 -angular_limit_upper = 0.349066 +disable_collision = false +softness = 20.0 [node name="Bone-2" type="RigidBody2D" parent="Asparagus" instance=ExtResource("3_6ern4")] -position = Vector2(30.7143, 121.567) +position = Vector2(30, 119) input_pickable = true mass = 0.1 physics_material_override = ExtResource("3_durpg") -script = ExtResource("5_yk0yk") +script = ExtResource("11_tqnjl") +metadata/idx = 2 metadata/bone_name = &"Bone-2" [node name="RectangleShape2D" type="CollisionShape2D" parent="Asparagus/Bone-2"] -shape = SubResource("RectangleShape2D_7minw") +shape = SubResource("RectangleShape2D_hy3tq") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Asparagus/Bone-2"] visible = false @@ -3843,43 +3917,33 @@ remote_path = NodePath("../../Skeleton2D/Bone-2") update_rotation = false update_scale = false -[node name="Joint2D-Bone-2-Bone-1" type="PinJoint2D" parent="Asparagus/Bone-2"] -rotation = -3.18908 -node_a = NodePath("..") -node_b = NodePath("../../Bone-1") -softness = 60.0 -angular_limit_enabled = true -angular_limit_lower = -0.349066 -angular_limit_upper = 0.349066 - [node name="Joint2D-Bone-2-Bone-3" type="PinJoint2D" parent="Asparagus/Bone-2"] -rotation = 0.0286819 +visible = false +rotation = -0.00694437 node_a = NodePath("..") node_b = NodePath("../../Bone-3") -softness = 60.0 -angular_limit_enabled = true -angular_limit_lower = -0.349066 -angular_limit_upper = 0.349066 +disable_collision = false +softness = 20.0 -[node name="Joint2D-Bone-2-Bone-4" type="PinJoint2D" parent="Asparagus/Bone-2"] -rotation = -0.0435079 +[node name="Joint2D-Bone-2-Bone-1" type="PinJoint2D" parent="Asparagus/Bone-2"] +visible = false +rotation = -3.16936 node_a = NodePath("..") -node_b = NodePath("../../Bone-4") -softness = 60.0 -angular_limit_enabled = true -angular_limit_lower = -0.349066 -angular_limit_upper = 0.349066 +node_b = NodePath("../../Bone-1") +disable_collision = false +softness = 20.0 [node name="Bone-3" type="RigidBody2D" parent="Asparagus" instance=ExtResource("3_6ern4")] -position = Vector2(29.6521, 158.592) +position = Vector2(30.25, 155) input_pickable = true mass = 0.1 physics_material_override = ExtResource("3_durpg") -script = ExtResource("5_yk0yk") +script = ExtResource("11_tqnjl") +metadata/idx = 3 metadata/bone_name = &"Bone-3" [node name="RectangleShape2D" type="CollisionShape2D" parent="Asparagus/Bone-3"] -shape = SubResource("RectangleShape2D_7minw") +shape = SubResource("RectangleShape2D_hy3tq") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Asparagus/Bone-3"] visible = false @@ -3887,52 +3951,33 @@ remote_path = NodePath("../../Skeleton2D/Bone-3") update_rotation = false update_scale = false -[node name="Joint2D-Bone-3-Bone-1" type="PinJoint2D" parent="Asparagus/Bone-3"] -rotation = -3.15051 -node_a = NodePath("..") -node_b = NodePath("../../Bone-1") -softness = 60.0 -angular_limit_enabled = true -angular_limit_lower = -0.349066 -angular_limit_upper = 0.349066 - [node name="Joint2D-Bone-3-Bone-2" type="PinJoint2D" parent="Asparagus/Bone-3"] -rotation = -3.11291 +visible = false +rotation = -3.14854 node_a = NodePath("..") node_b = NodePath("../../Bone-2") -softness = 60.0 -angular_limit_enabled = true -angular_limit_lower = -0.349066 -angular_limit_upper = 0.349066 +disable_collision = false +softness = 20.0 [node name="Joint2D-Bone-3-Bone-4" type="PinJoint2D" parent="Asparagus/Bone-3"] -rotation = -0.112611 +visible = false +rotation = -0.0982934 node_a = NodePath("..") node_b = NodePath("../../Bone-4") -softness = 60.0 -angular_limit_enabled = true -angular_limit_lower = -0.349066 -angular_limit_upper = 0.349066 - -[node name="Joint2D-Bone-3-Bone-5" type="PinJoint2D" parent="Asparagus/Bone-3"] -rotation = -0.0892249 -node_a = NodePath("..") -node_b = NodePath("../../Bone-5") -softness = 60.0 -angular_limit_enabled = true -angular_limit_lower = -0.349066 -angular_limit_upper = 0.349066 +disable_collision = false +softness = 20.0 [node name="Bone-4" type="RigidBody2D" parent="Asparagus" instance=ExtResource("3_6ern4")] -position = Vector2(34, 197.039) +position = Vector2(33.8, 191) input_pickable = true mass = 0.1 physics_material_override = ExtResource("3_durpg") -script = ExtResource("5_yk0yk") +script = ExtResource("11_tqnjl") +metadata/idx = 4 metadata/bone_name = &"Bone-4" [node name="RectangleShape2D" type="CollisionShape2D" parent="Asparagus/Bone-4"] -shape = SubResource("RectangleShape2D_7minw") +shape = SubResource("RectangleShape2D_hy3tq") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Asparagus/Bone-4"] visible = false @@ -3940,52 +3985,33 @@ remote_path = NodePath("../../Skeleton2D/Bone-4") update_rotation = false update_scale = false -[node name="Joint2D-Bone-4-Bone-2" type="PinJoint2D" parent="Asparagus/Bone-4"] -rotation = -3.1851 -node_a = NodePath("..") -node_b = NodePath("../../Bone-2") -softness = 60.0 -angular_limit_enabled = true -angular_limit_lower = -0.349066 -angular_limit_upper = 0.349066 - -[node name="Joint2D-Bone-4-Bone-3" type="PinJoint2D" parent="Asparagus/Bone-4"] -rotation = -3.2542 -node_a = NodePath("..") -node_b = NodePath("../../Bone-3") -softness = 60.0 -angular_limit_enabled = true -angular_limit_lower = -0.349066 -angular_limit_upper = 0.349066 - [node name="Joint2D-Bone-4-Bone-5" type="PinJoint2D" parent="Asparagus/Bone-4"] -rotation = -0.0653178 +visible = false +rotation = -0.0366951 node_a = NodePath("..") node_b = NodePath("../../Bone-5") -softness = 60.0 -angular_limit_enabled = true -angular_limit_lower = -0.349066 -angular_limit_upper = 0.349066 +disable_collision = false +softness = 20.0 -[node name="Joint2D-Bone-4-Bone-6" type="PinJoint2D" parent="Asparagus/Bone-4"] -rotation = -0.0671908 +[node name="Joint2D-Bone-4-Bone-3" type="PinJoint2D" parent="Asparagus/Bone-4"] +visible = false +rotation = -3.23989 node_a = NodePath("..") -node_b = NodePath("../../Bone-6") -softness = 60.0 -angular_limit_enabled = true -angular_limit_lower = -0.349066 -angular_limit_upper = 0.349066 +node_b = NodePath("../../Bone-3") +disable_collision = false +softness = 20.0 [node name="Bone-5" type="RigidBody2D" parent="Asparagus" instance=ExtResource("3_6ern4")] -position = Vector2(36.4704, 234.807) +position = Vector2(35.1216, 227) input_pickable = true mass = 0.1 physics_material_override = ExtResource("3_durpg") -script = ExtResource("5_yk0yk") +script = ExtResource("11_tqnjl") +metadata/idx = 5 metadata/bone_name = &"Bone-5" [node name="RectangleShape2D" type="CollisionShape2D" parent="Asparagus/Bone-5"] -shape = SubResource("RectangleShape2D_7minw") +shape = SubResource("RectangleShape2D_hy3tq") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Asparagus/Bone-5"] visible = false @@ -3993,52 +4019,33 @@ remote_path = NodePath("../../Skeleton2D/Bone-5") update_rotation = false update_scale = false -[node name="Joint2D-Bone-5-Bone-3" type="PinJoint2D" parent="Asparagus/Bone-5"] -rotation = -3.23082 -node_a = NodePath("..") -node_b = NodePath("../../Bone-3") -softness = 60.0 -angular_limit_enabled = true -angular_limit_lower = -0.349066 -angular_limit_upper = 0.349066 - [node name="Joint2D-Bone-5-Bone-4" type="PinJoint2D" parent="Asparagus/Bone-5"] -rotation = -3.20691 +visible = false +rotation = -3.17829 node_a = NodePath("..") node_b = NodePath("../../Bone-4") -softness = 60.0 -angular_limit_enabled = true -angular_limit_lower = -0.349066 -angular_limit_upper = 0.349066 +disable_collision = false +softness = 20.0 [node name="Joint2D-Bone-5-Bone-6" type="PinJoint2D" parent="Asparagus/Bone-5"] -rotation = -0.0691747 +visible = false +rotation = -0.0687354 node_a = NodePath("..") node_b = NodePath("../../Bone-6") -softness = 60.0 -angular_limit_enabled = true -angular_limit_lower = -0.349066 -angular_limit_upper = 0.349066 - -[node name="Joint2D-Bone-5-Bone-7" type="PinJoint2D" parent="Asparagus/Bone-5"] -rotation = -0.0681816 -node_a = NodePath("..") -node_b = NodePath("../../Bone-7") -softness = 60.0 -angular_limit_enabled = true -angular_limit_lower = -0.349066 -angular_limit_upper = 0.349066 +disable_collision = false +softness = 20.0 [node name="Bone-6" type="RigidBody2D" parent="Asparagus" instance=ExtResource("3_6ern4")] -position = Vector2(38.9404, 270.456) +position = Vector2(37.6, 263) input_pickable = true mass = 0.1 physics_material_override = ExtResource("3_durpg") -script = ExtResource("5_yk0yk") +script = ExtResource("11_tqnjl") +metadata/idx = 6 metadata/bone_name = &"Bone-6" [node name="RectangleShape2D" type="CollisionShape2D" parent="Asparagus/Bone-6"] -shape = SubResource("RectangleShape2D_7minw") +shape = SubResource("RectangleShape2D_hy3tq") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Asparagus/Bone-6"] visible = false @@ -4046,52 +4053,33 @@ remote_path = NodePath("../../Skeleton2D/Bone-6") update_rotation = false update_scale = false -[node name="Joint2D-Bone-6-Bone-4" type="PinJoint2D" parent="Asparagus/Bone-6"] -rotation = -3.20878 -node_a = NodePath("..") -node_b = NodePath("../../Bone-4") -softness = 60.0 -angular_limit_enabled = true -angular_limit_lower = -0.349066 -angular_limit_upper = 0.349066 - [node name="Joint2D-Bone-6-Bone-5" type="PinJoint2D" parent="Asparagus/Bone-6"] -rotation = -3.21077 +visible = false +rotation = -3.21033 node_a = NodePath("..") node_b = NodePath("../../Bone-5") -softness = 60.0 -angular_limit_enabled = true -angular_limit_lower = -0.349066 -angular_limit_upper = 0.349066 +disable_collision = false +softness = 20.0 [node name="Joint2D-Bone-6-Bone-7" type="PinJoint2D" parent="Asparagus/Bone-6"] -rotation = -0.0672498 +visible = false +rotation = -0.107912 node_a = NodePath("..") node_b = NodePath("../../Bone-7") -softness = 60.0 -angular_limit_enabled = true -angular_limit_lower = -0.349066 -angular_limit_upper = 0.349066 - -[node name="Joint2D-Bone-6-Bone-8" type="PinJoint2D" parent="Asparagus/Bone-6"] -rotation = -0.0348056 -node_a = NodePath("..") -node_b = NodePath("../../Bone-8") -softness = 60.0 -angular_limit_enabled = true -angular_limit_lower = -0.349066 -angular_limit_upper = 0.349066 +disable_collision = false +softness = 20.0 [node name="Bone-7" type="RigidBody2D" parent="Asparagus" instance=ExtResource("3_6ern4")] -position = Vector2(41.5, 308.46) +position = Vector2(41.5, 299) input_pickable = true mass = 0.1 physics_material_override = ExtResource("3_durpg") -script = ExtResource("5_yk0yk") +script = ExtResource("11_tqnjl") +metadata/idx = 7 metadata/bone_name = &"Bone-7" [node name="RectangleShape2D" type="CollisionShape2D" parent="Asparagus/Bone-7"] -shape = SubResource("RectangleShape2D_7minw") +shape = SubResource("RectangleShape2D_hy3tq") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Asparagus/Bone-7"] visible = false @@ -4099,50 +4087,32 @@ remote_path = NodePath("../../Skeleton2D/Bone-7") update_rotation = false update_scale = false -[node name="Joint2D-Bone-7-Bone-5" type="PinJoint2D" parent="Asparagus/Bone-7"] -rotation = -3.20977 -node_a = NodePath("..") -node_b = NodePath("../../Bone-5") -softness = 60.0 -angular_limit_enabled = true -angular_limit_lower = -0.349066 -angular_limit_upper = 0.349066 - [node name="Joint2D-Bone-7-Bone-6" type="PinJoint2D" parent="Asparagus/Bone-7"] -rotation = -3.20884 +visible = false +rotation = -3.24951 node_a = NodePath("..") node_b = NodePath("../../Bone-6") -softness = 60.0 -angular_limit_enabled = true -angular_limit_lower = -0.349066 -angular_limit_upper = 0.349066 +disable_collision = false +softness = 20.0 [node name="Joint2D-Bone-7-Bone-8" type="PinJoint2D" parent="Asparagus/Bone-7"] +visible = false node_a = NodePath("..") node_b = NodePath("../../Bone-8") -softness = 60.0 -angular_limit_enabled = true -angular_limit_lower = -0.349066 -angular_limit_upper = 0.349066 - -[node name="Joint2D-Bone-7-Bone-9" type="PinJoint2D" parent="Asparagus/Bone-7"] -node_a = NodePath("..") -node_b = NodePath("../../Bone-9") -softness = 60.0 -angular_limit_enabled = true -angular_limit_lower = -0.349066 -angular_limit_upper = 0.349066 +disable_collision = false +softness = 20.0 [node name="Bone-8" type="RigidBody2D" parent="Asparagus" instance=ExtResource("3_6ern4")] -position = Vector2(41.5, 343.967) +position = Vector2(41.5, 335) input_pickable = true mass = 0.1 physics_material_override = ExtResource("3_durpg") -script = ExtResource("5_yk0yk") +script = ExtResource("11_tqnjl") +metadata/idx = 8 metadata/bone_name = &"Bone-8" [node name="RectangleShape2D" type="CollisionShape2D" parent="Asparagus/Bone-8"] -shape = SubResource("RectangleShape2D_7minw") +shape = SubResource("RectangleShape2D_hy3tq") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Asparagus/Bone-8"] visible = false @@ -4150,42 +4120,32 @@ remote_path = NodePath("../../Skeleton2D/Bone-8") update_rotation = false update_scale = false -[node name="Joint2D-Bone-8-Bone-6" type="PinJoint2D" parent="Asparagus/Bone-8"] -rotation = -3.1764 -node_a = NodePath("..") -node_b = NodePath("../../Bone-6") -softness = 60.0 -angular_limit_enabled = true -angular_limit_lower = -0.349066 -angular_limit_upper = 0.349066 - [node name="Joint2D-Bone-8-Bone-7" type="PinJoint2D" parent="Asparagus/Bone-8"] +visible = false rotation = -3.14159 node_a = NodePath("..") node_b = NodePath("../../Bone-7") -softness = 60.0 -angular_limit_enabled = true -angular_limit_lower = -0.349066 -angular_limit_upper = 0.349066 +disable_collision = false +softness = 20.0 [node name="Joint2D-Bone-8-Bone-9" type="PinJoint2D" parent="Asparagus/Bone-8"] +visible = false node_a = NodePath("..") node_b = NodePath("../../Bone-9") -softness = 60.0 -angular_limit_enabled = true -angular_limit_lower = -0.349066 -angular_limit_upper = 0.349066 +disable_collision = false +softness = 20.0 [node name="Bone-9" type="RigidBody2D" parent="Asparagus" instance=ExtResource("3_6ern4")] -position = Vector2(41.5, 377.476) +position = Vector2(41.5, 373.5) input_pickable = true mass = 0.1 physics_material_override = ExtResource("3_durpg") -script = ExtResource("5_yk0yk") +script = ExtResource("11_tqnjl") +metadata/idx = 9 metadata/bone_name = &"Bone-9" [node name="RectangleShape2D" type="CollisionShape2D" parent="Asparagus/Bone-9"] -shape = SubResource("RectangleShape2D_7minw") +shape = SubResource("RectangleShape2D_hy3tq") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Asparagus/Bone-9"] visible = false @@ -4193,1945 +4153,1950 @@ remote_path = NodePath("../../Skeleton2D/Bone-9") update_rotation = false update_scale = false -[node name="Joint2D-Bone-9-Bone-7" type="PinJoint2D" parent="Asparagus/Bone-9"] -rotation = -3.14159 -node_a = NodePath("..") -node_b = NodePath("../../Bone-7") -softness = 60.0 -angular_limit_enabled = true -angular_limit_lower = -0.349066 -angular_limit_upper = 0.349066 - [node name="Joint2D-Bone-9-Bone-8" type="PinJoint2D" parent="Asparagus/Bone-9"] +visible = false rotation = -3.14159 node_a = NodePath("..") node_b = NodePath("../../Bone-8") -softness = 60.0 -angular_limit_enabled = true -angular_limit_lower = -0.349066 -angular_limit_upper = 0.349066 +disable_collision = false +softness = 20.0 [node name="Asparagus2" type="Polygon2D" parent="."] z_index = 5 position = Vector2(333, -723) texture = ExtResource("1_bb0nr") skeleton = NodePath("Skeleton2D") -polygon = PackedVector2Array(23, 18, 22, 18, 22, 29, 20, 29, 18, 29, 14, 35, 13, 35, 12, 39, 11, 39, 11, 47, 14, 52, 15, 52, 15, 55, 13, 56, 13, 66, 11, 68, 11, 76, 13, 78, 13, 80, 17, 83, 17, 86, 16, 87, 15, 87, 15, 90, 14, 91, 13, 91, 10, 97, 9, 97, 9, 104, 11, 106, 11, 110, 14, 113, 15, 113, 15, 115, 16, 115, 15, 128, 14, 128, 14, 137, 16, 142, 16, 146, 15, 146, 15, 154, 14, 155, 13, 155, 13, 160, 11, 162, 11, 168, 12, 170, 13, 170, 14, 175, 15, 175, 14, 205, 14, 210, 15, 214, 16, 214, 16, 222, 17, 222, 17, 248, 18, 250, 19, 250, 19, 259, 21, 266, 22, 266, 22, 279, 23, 279, 23, 342, 23, 370, 27, 382, 27, 387, 31, 391, 31, 393, 34, 393, 34, 394, 39, 393, 48, 393, 49, 391, 51, 391, 54, 387, 56, 387, 59, 375, 60, 375, 60, 343, 60, 305, 57, 265, 57, 252, 53, 215, 52, 215, 52, 209, 54, 206, 54, 202, 48, 185, 47, 185, 48, 176, 48, 159, 45, 148, 44, 148, 50, 136, 51, 136, 51, 127, 50, 124, 49, 124, 49, 118, 46, 109, 45, 109, 46, 99, 47, 99, 47, 90, 45, 86, 44, 86, 45, 80, 45, 73, 49, 67, 49, 57, 40, 41, 39, 41, 40, 39, 40, 32, 36, 26, 36, 24, 34, 23, 34, 22, 33, 23, 32, 23, 23, 11, 40, 32, 40, 39, 39, 41, 40, 41, 49, 57, 49, 64.9902, 32.6264, 64.5565, 30.0177, 28.248, 36.7599, 27.1399, 25.83, 14.7733, 26.1315, 25.3782, 22, 25.9422, 22, 18, 23, 18, 23, 11, 30.0177, 28.248, 32.6264, 64.5565, 27.3579, 69.0501, 11.974, 67.026, 13, 66, 13, 56, 15, 55, 15, 52, 14, 52, 11, 47, 11, 39, 12, 39, 13, 35, 14, 35, 18, 29, 22, 29, 22, 25.9422, 26.1315, 25.3782, 32, 23, 33, 23, 34, 22, 34, 23, 36, 24, 36, 26, 36.7599, 27.1399, 30.0177, 28.248, 26.1315, 25.3782, 25.83, 14.7733, 49, 64.9902, 49, 67, 45, 73, 45, 80, 44, 86, 45, 86, 47, 90, 47, 99, 46, 99, 45.6157, 102.843, 28.5506, 102.526, 27.3579, 69.0501, 32.6264, 64.5565, 27.3579, 69.0501, 28.5506, 102.526, 25.2691, 106.425, 10.4286, 105.429, 9, 104, 9, 97, 10, 97, 13, 91, 14, 91, 15, 90, 15, 87, 16, 87, 17, 86, 17, 83, 13, 80, 13, 78, 11, 76, 11, 68, 11.974, 67.026, 45.6157, 102.843, 45, 109, 46, 109, 49, 118, 49, 124, 50, 124, 51, 127, 51, 136, 50, 136, 48.3041, 139.392, 27.7875, 137.724, 25.2691, 106.425, 28.5506, 102.526, 25.2691, 106.425, 27.7875, 137.724, 25.0742, 140.608, 15.3286, 140.322, 14, 137, 14, 128, 15, 128, 16, 115, 15, 115, 15, 113, 14, 113, 11, 110, 11, 106, 10.4286, 105.429, 48.3041, 139.392, 44, 148, 45, 148, 48, 159, 48, 176, 47.6156, 179.46, 25.6578, 178.493, 23.6501, 176.832, 25.0742, 140.608, 27.7875, 137.724, 25.0742, 140.608, 23.6501, 176.832, 14.9091, 177.728, 15, 175, 14, 175, 13, 170, 12, 170, 11, 168, 11, 162, 13, 160, 13, 155, 14, 155, 15, 154, 15, 146, 16, 146, 16, 142, 15.3286, 140.322, 47.6156, 179.46, 47, 185, 48, 185, 54, 202, 54, 206, 52, 209, 52, 214.035, 25.7179, 215.987, 25.6578, 178.493, 25.6578, 178.493, 25.7179, 215.987, 25.3167, 216.46, 16, 217.247, 16, 214, 15, 214, 14, 210, 14, 205, 14.9091, 177.728, 23.6501, 176.832, 52, 215, 53, 215, 56.9408, 251.453, 31.7086, 250.835, 25.3167, 216.46, 25.7179, 215.987, 52, 214.035, 31.7086, 250.835, 25.9058, 255.578, 19, 255.391, 19, 250, 18, 250, 17, 248, 17, 222, 16, 222, 16, 217.247, 25.3167, 216.46, 56.9408, 251.453, 57, 252, 57, 265, 58.8808, 290.077, 28.3398, 289.615, 28.3227, 289.595, 25.9058, 255.578, 31.7086, 250.835, 25.9058, 255.578, 28.3227, 289.595, 23, 289.209, 23, 279, 22, 279, 22, 266, 21, 266, 19, 259, 19, 255.391, 58.8808, 290.077, 60, 305, 60, 325.106, 58.4373, 326.792, 30.2646, 327.711, 23.2605, 321.151, 28.3398, 289.615, 28.3227, 289.595, 28.3398, 289.615, 23.2605, 321.151, 23, 321.156, 23, 289.209, 60, 335.24, 60, 364.59, 58.0779, 366.782, 28.1748, 365.271, 23.9506, 360.952, 30.2646, 327.711, 58.4373, 326.792, 30.2646, 327.711, 23.9506, 360.952, 23, 360.952, 23, 321.156, 23.2605, 321.151, 60, 335.24, 58.4373, 326.792, 60, 325.106, 58.0779, 366.782, 59.4062, 375, 59, 375, 56, 387, 54, 387, 51, 391, 49, 391, 48, 393, 39, 393, 34, 394, 34, 393, 31, 393, 31, 391, 27, 387, 27, 382, 26.4137, 380.241, 28.1748, 365.271, 28.1748, 365.271, 26.4137, 380.241, 23, 370, 23, 360.952, 23.9506, 360.952, 60, 375, 59.4062, 375, 58.0779, 366.782, 60, 364.59) -polygons = [PackedInt32Array(132, 124, 125), PackedInt32Array(126, 127, 128), PackedInt32Array(128, 129, 130), PackedInt32Array(130, 131, 132), PackedInt32Array(132, 125, 126), PackedInt32Array(126, 128, 130), PackedInt32Array(130, 132, 126), PackedInt32Array(138, 133, 134), PackedInt32Array(134, 135, 136), PackedInt32Array(137, 138, 134), PackedInt32Array(134, 136, 137), PackedInt32Array(156, 139, 140), PackedInt32Array(140, 141, 142), PackedInt32Array(143, 144, 145), PackedInt32Array(146, 147, 148), PackedInt32Array(148, 149, 150), PackedInt32Array(150, 151, 152), PackedInt32Array(152, 153, 154), PackedInt32Array(154, 155, 156), PackedInt32Array(140, 142, 143), PackedInt32Array(146, 148, 150), PackedInt32Array(150, 152, 154), PackedInt32Array(154, 156, 140), PackedInt32Array(140, 143, 145), PackedInt32Array(146, 150, 154), PackedInt32Array(154, 140, 145), PackedInt32Array(145, 146, 154), PackedInt32Array(158, 159, 160), PackedInt32Array(160, 161, 162), PackedInt32Array(162, 163, 164), PackedInt32Array(164, 165, 166), PackedInt32Array(158, 160, 162), PackedInt32Array(164, 166, 157), PackedInt32Array(157, 158, 162), PackedInt32Array(162, 164, 157), PackedInt32Array(179, 167, 168), PackedInt32Array(169, 170, 171), PackedInt32Array(171, 172, 173), PackedInt32Array(173, 174, 175), PackedInt32Array(175, 176, 177), PackedInt32Array(177, 178, 179), PackedInt32Array(179, 168, 169), PackedInt32Array(171, 173, 175), PackedInt32Array(175, 177, 179), PackedInt32Array(179, 169, 171), PackedInt32Array(171, 175, 179), PackedInt32Array(198, 180, 181), PackedInt32Array(181, 182, 183), PackedInt32Array(183, 184, 185), PackedInt32Array(186, 187, 188), PackedInt32Array(189, 190, 191), PackedInt32Array(193, 194, 195), PackedInt32Array(195, 196, 197), PackedInt32Array(197, 198, 181), PackedInt32Array(181, 183, 185), PackedInt32Array(186, 188, 189), PackedInt32Array(189, 191, 192), PackedInt32Array(193, 195, 197), PackedInt32Array(181, 185, 186), PackedInt32Array(193, 197, 181), PackedInt32Array(181, 186, 189), PackedInt32Array(192, 193, 181), PackedInt32Array(181, 189, 192), PackedInt32Array(211, 199, 200), PackedInt32Array(200, 201, 202), PackedInt32Array(203, 204, 205), PackedInt32Array(205, 206, 207), PackedInt32Array(207, 208, 209), PackedInt32Array(209, 210, 211), PackedInt32Array(211, 200, 202), PackedInt32Array(203, 205, 207), PackedInt32Array(207, 209, 211), PackedInt32Array(211, 202, 203), PackedInt32Array(203, 207, 211), PackedInt32Array(212, 213, 214), PackedInt32Array(214, 215, 216), PackedInt32Array(216, 217, 218), PackedInt32Array(219, 220, 221), PackedInt32Array(221, 222, 223), PackedInt32Array(224, 225, 212), PackedInt32Array(212, 214, 216), PackedInt32Array(221, 223, 224), PackedInt32Array(212, 216, 218), PackedInt32Array(221, 224, 212), PackedInt32Array(212, 218, 219), PackedInt32Array(219, 221, 212), PackedInt32Array(235, 226, 227), PackedInt32Array(227, 228, 229), PackedInt32Array(229, 230, 231), PackedInt32Array(231, 232, 233), PackedInt32Array(233, 234, 235), PackedInt32Array(235, 227, 229), PackedInt32Array(229, 231, 233), PackedInt32Array(233, 235, 229), PackedInt32Array(236, 237, 238), PackedInt32Array(239, 240, 241), PackedInt32Array(241, 242, 243), PackedInt32Array(243, 244, 245), PackedInt32Array(245, 246, 247), PackedInt32Array(248, 249, 250), PackedInt32Array(251, 252, 236), PackedInt32Array(236, 238, 239), PackedInt32Array(241, 243, 245), PackedInt32Array(245, 247, 248), PackedInt32Array(250, 251, 236), PackedInt32Array(236, 239, 241), PackedInt32Array(241, 245, 248), PackedInt32Array(248, 250, 236), PackedInt32Array(236, 241, 248), PackedInt32Array(261, 253, 254), PackedInt32Array(254, 255, 256), PackedInt32Array(256, 257, 258), PackedInt32Array(258, 259, 260), PackedInt32Array(260, 261, 254), PackedInt32Array(254, 256, 258), PackedInt32Array(258, 260, 254), PackedInt32Array(271, 262, 263), PackedInt32Array(263, 264, 265), PackedInt32Array(266, 267, 268), PackedInt32Array(268, 269, 270), PackedInt32Array(270, 271, 263), PackedInt32Array(263, 265, 266), PackedInt32Array(266, 268, 270), PackedInt32Array(270, 263, 266), PackedInt32Array(272, 273, 274), PackedInt32Array(274, 275, 276), PackedInt32Array(276, 277, 278), PackedInt32Array(272, 274, 276), PackedInt32Array(276, 278, 272), PackedInt32Array(288, 279, 280), PackedInt32Array(280, 281, 282), PackedInt32Array(282, 283, 284), PackedInt32Array(285, 286, 287), PackedInt32Array(287, 288, 280), PackedInt32Array(280, 282, 284), PackedInt32Array(285, 287, 280), PackedInt32Array(280, 284, 285), PackedInt32Array(296, 289, 290), PackedInt32Array(291, 292, 293), PackedInt32Array(293, 294, 295), PackedInt32Array(295, 296, 290), PackedInt32Array(290, 291, 293), PackedInt32Array(293, 295, 290), PackedInt32Array(297, 298, 299), PackedInt32Array(300, 301, 302), PackedInt32Array(302, 303, 304), PackedInt32Array(304, 305, 297), PackedInt32Array(297, 299, 300), PackedInt32Array(302, 304, 297), PackedInt32Array(297, 300, 302), PackedInt32Array(312, 306, 307), PackedInt32Array(307, 308, 309), PackedInt32Array(309, 310, 311), PackedInt32Array(311, 312, 307), PackedInt32Array(307, 309, 311), PackedInt32Array(317, 313, 314), PackedInt32Array(314, 315, 316), PackedInt32Array(316, 317, 314), PackedInt32Array(324, 318, 319), PackedInt32Array(319, 320, 321), PackedInt32Array(321, 322, 323), PackedInt32Array(323, 324, 319), PackedInt32Array(319, 321, 323), PackedInt32Array(329, 325, 326), PackedInt32Array(326, 327, 328), PackedInt32Array(328, 329, 326), PackedInt32Array(332, 330, 331), PackedInt32Array(349, 333, 334), PackedInt32Array(335, 336, 337), PackedInt32Array(337, 338, 339), PackedInt32Array(339, 340, 341), PackedInt32Array(341, 342, 343), PackedInt32Array(343, 344, 345), PackedInt32Array(345, 346, 347), PackedInt32Array(347, 348, 349), PackedInt32Array(349, 334, 335), PackedInt32Array(335, 337, 339), PackedInt32Array(339, 341, 343), PackedInt32Array(343, 345, 347), PackedInt32Array(347, 349, 335), PackedInt32Array(335, 339, 343), PackedInt32Array(343, 347, 335), PackedInt32Array(354, 350, 351), PackedInt32Array(351, 352, 353), PackedInt32Array(353, 354, 351), PackedInt32Array(358, 355, 356), PackedInt32Array(356, 357, 358)] -bones = ["Bone-0", PackedFloat32Array(0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 1, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 1, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-1", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0.7, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 1, 0.7, 1, 1, 0.7, 0.7, 0.7, 1, 1, 1, 1, 1, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-2", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0.7, 0.7, 0, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 1, 0.7, 0.7, 1, 1, 1, 1, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-3", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-4", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-5", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0.7, 0.7, 0.7, 0.7, 0, 0.7, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-6", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-7", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0.7, 0.7, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-8", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0.7, 0.7, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7), "Bone-9", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7)] -internal_vertex_count = 235 +polygon = PackedVector2Array(23, 18, 22, 18, 22, 29, 20, 29, 18, 29, 14, 35, 13, 35, 12, 39, 11, 39, 11, 47, 14, 52, 15, 52, 15, 55, 13, 56, 13, 66, 11, 68, 11, 76, 13, 78, 13, 80, 17, 83, 17, 86, 16, 87, 15, 87, 15, 90, 14, 91, 13, 91, 10, 97, 9, 97, 9, 104, 11, 106, 11, 110, 14, 113, 15, 113, 15, 115, 16, 115, 15, 128, 14, 128, 14, 137, 16, 142, 16, 146, 15, 146, 15, 154, 14, 155, 13, 155, 13, 160, 11, 162, 11, 168, 12, 170, 13, 170, 14, 175, 15, 175, 14, 205, 14, 210, 15, 214, 16, 214, 16, 222, 17, 222, 17, 248, 18, 250, 19, 250, 19, 259, 21, 266, 22, 266, 22, 279, 23, 279, 23, 342, 23, 370, 27, 382, 27, 387, 31, 391, 31, 393, 34, 393, 34, 394, 39, 393, 48, 393, 49, 391, 51, 391, 54, 387, 56, 387, 59, 375, 60, 375, 60, 343, 60, 305, 57, 265, 57, 252, 53, 215, 52, 215, 52, 209, 54, 206, 54, 202, 48, 185, 47, 185, 48, 176, 48, 159, 45, 148, 44, 148, 50, 136, 51, 136, 51, 127, 50, 124, 49, 124, 49, 118, 46, 109, 45, 109, 46, 99, 47, 99, 47, 90, 45, 86, 44, 86, 45, 80, 45, 73, 49, 67, 49, 57, 40, 41, 39, 41, 40, 39, 40, 32, 36, 26, 36, 24, 34, 23, 34, 22, 33, 23, 32, 23, 23, 11, 40, 32, 40, 39, 39, 41, 40, 41, 43.9375, 48, 27.5, 48, 27.5, 29.5, 38.3333, 29.5, 49, 57, 49, 66.5, 46, 66.5, 46, 51.6667, 46, 51.6667, 46, 66.5, 27.5, 66.5, 27.5, 48, 43.9375, 48, 27.5, 17, 27.5, 29.5, 17.6667, 29.5, 18, 29, 22, 29, 22, 18, 23, 18, 23, 11, 27.5, 66.5, 12.5, 66.5, 13, 66, 13, 56, 15, 55, 15, 52, 14, 52, 11.6, 48, 27.5, 48, 27.5, 48, 11.6, 48, 11, 47, 11, 39, 12, 39, 13, 35, 14, 35, 17.6667, 29.5, 27.5, 29.5, 32, 23, 33, 23, 34, 22, 34, 23, 36, 24, 36, 26, 38.3333, 29.5, 27.5, 29.5, 27.5, 17, 46, 71.5, 45, 73, 45, 80, 44.1667, 85, 27.5, 85, 27.5, 66.5, 46, 66.5, 47, 90, 47, 99, 46, 99, 46, 88, 44, 86, 45, 86, 46, 88, 46, 99, 45.55, 103.5, 27.5, 103.5, 27.5, 85, 44.1667, 85, 49, 67, 46, 71.5, 46, 66.5, 49, 66.5, 27.5, 103.5, 9, 103.5, 9, 97, 10, 97, 13, 91, 14, 91, 15, 90, 15, 87, 16, 87, 17, 86, 17, 85, 27.5, 85, 27.5, 85, 17, 85, 17, 83, 13, 80, 13, 78, 11, 76, 11, 68, 12.5, 66.5, 27.5, 66.5, 45, 109, 46, 109, 46, 122, 27.5, 122, 27.5, 103.5, 45.55, 103.5, 49, 124, 50, 124, 51, 127, 51, 136, 50, 136, 47.75, 140.5, 46, 140.5, 46, 122, 49, 122, 46, 140.5, 27.5, 140.5, 27.5, 122, 46, 122, 49, 118, 49, 122, 46, 122, 46, 109, 27.5, 140.5, 15.4, 140.5, 14, 137, 14, 128, 15, 128, 15.4615, 122, 27.5, 122, 27.5, 122, 15.4615, 122, 16, 115, 15, 115, 15, 113, 14, 113, 11, 110, 11, 106, 9, 104, 9, 103.5, 27.5, 103.5, 46, 159, 27.5, 159, 27.5, 140.5, 46, 140.5, 48, 176, 47.8333, 177.5, 46, 177.5, 46, 159, 48, 159, 46, 177.5, 27.5, 177.5, 27.5, 159, 46, 159, 48, 159, 46, 159, 46, 151.667, 46, 144, 46, 140.5, 47.75, 140.5, 27.5, 177.5, 14.9167, 177.5, 15, 175, 14, 175, 13, 170, 12, 170, 11, 168, 11, 162, 13, 160, 13, 159, 27.5, 159, 27.5, 159, 13, 159, 13, 155, 14, 155, 15, 154, 15, 146, 16, 146, 16, 142, 15.4, 140.5, 27.5, 140.5, 46, 196, 27.5, 196, 27.5, 177.5, 46, 177.5, 54, 202, 54, 206, 52, 209, 52, 214.5, 46, 214.5, 46, 196, 51.8824, 196, 46, 214.5, 27.5, 214.5, 27.5, 196, 46, 196, 47, 185, 48, 185, 51.8824, 196, 46, 196, 46, 177.5, 47.8333, 177.5, 27.5, 214.5, 16, 214.5, 16, 214, 15, 214, 14, 210, 14, 205, 14.3, 196, 27.5, 196, 27.5, 196, 14.3, 196, 14.9167, 177.5, 27.5, 177.5, 46, 233, 27.5, 233, 27.5, 214.5, 46, 214.5, 56.9459, 251.5, 46, 251.5, 46, 233, 54.9459, 233, 46, 251.5, 27.5, 251.5, 27.5, 233, 46, 233, 52, 215, 53, 215, 54.9459, 233, 46, 233, 46, 214.5, 52, 214.5, 27.5, 251.5, 19, 251.5, 19, 250, 18, 250, 17, 248, 17, 233, 27.5, 233, 27.5, 233, 17, 233, 17, 222, 16, 222, 16, 214.5, 27.5, 214.5, 46, 270, 27.5, 270, 27.5, 251.5, 46, 251.5, 58.7625, 288.5, 46, 288.5, 46, 270, 57.375, 270, 46, 288.5, 27.5, 288.5, 27.5, 270, 46, 270, 57, 252, 57, 265, 57.375, 270, 46, 270, 46, 251.5, 56.9459, 251.5, 27.5, 288.5, 23, 288.5, 23, 279, 22, 279, 22, 270, 27.5, 270, 27.5, 270, 22, 270, 22, 266, 21, 266, 19, 259, 19, 251.5, 27.5, 251.5, 46, 307, 27.5, 307, 27.5, 288.5, 46, 288.5, 60, 325.5, 46, 325.5, 46, 307, 60, 307, 46, 325.5, 27.5, 325.5, 27.5, 307, 46, 307, 60, 305, 60, 307, 46, 307, 46, 288.5, 58.7625, 288.5, 27.5, 325.5, 23, 325.5, 23, 307, 27.5, 307, 27.5, 307, 23, 307, 23, 288.5, 27.5, 288.5, 46, 344, 27.5, 344, 27.5, 325.5, 46, 325.5, 60, 362.5, 46, 362.5, 46, 344, 60, 344, 46, 362.5, 27.5, 362.5, 27.5, 344, 46, 344, 60, 344, 46, 344, 46, 325.5, 60, 325.5, 27.5, 362.5, 23, 362.5, 23, 344, 27.5, 344, 27.5, 344, 23, 344, 23, 325.5, 27.5, 325.5, 46, 381, 27.5, 381, 27.5, 362.5, 46, 362.5, 56, 387, 54, 387, 51, 391, 49, 391, 48, 393, 46, 393, 46, 381, 57.5, 381, 46, 393, 39, 393, 34, 394, 34, 393, 31, 393, 31, 391, 27.5, 387.5, 27.5, 381, 46, 381, 60, 375, 59, 375, 57.5, 381, 46, 381, 46, 362.5, 60, 362.5, 27.5, 387.5, 27, 387, 27, 382, 26.6667, 381, 27.5, 381, 27.5, 381, 26.6667, 381, 23, 370, 23, 362.5, 27.5, 362.5) +polygons = [PackedInt32Array(131, 124, 125), PackedInt32Array(126, 127, 128), PackedInt32Array(128, 129, 130), PackedInt32Array(130, 131, 125), PackedInt32Array(126, 128, 130), PackedInt32Array(130, 125, 126), PackedInt32Array(135, 132, 133), PackedInt32Array(133, 134, 135), PackedInt32Array(140, 136, 137), PackedInt32Array(137, 138, 139), PackedInt32Array(139, 140, 137), PackedInt32Array(148, 141, 142), PackedInt32Array(142, 143, 144), PackedInt32Array(145, 146, 147), PackedInt32Array(147, 148, 142), PackedInt32Array(142, 144, 145), PackedInt32Array(145, 147, 142), PackedInt32Array(149, 150, 151), PackedInt32Array(151, 152, 153), PackedInt32Array(154, 155, 156), PackedInt32Array(156, 157, 149), PackedInt32Array(149, 151, 153), PackedInt32Array(154, 156, 149), PackedInt32Array(149, 153, 154), PackedInt32Array(166, 158, 159), PackedInt32Array(159, 160, 161), PackedInt32Array(162, 163, 164), PackedInt32Array(164, 165, 166), PackedInt32Array(159, 161, 162), PackedInt32Array(162, 164, 166), PackedInt32Array(166, 159, 162), PackedInt32Array(168, 169, 170), PackedInt32Array(170, 171, 172), PackedInt32Array(172, 173, 174), PackedInt32Array(174, 175, 167), PackedInt32Array(168, 170, 172), PackedInt32Array(172, 174, 167), PackedInt32Array(167, 168, 172), PackedInt32Array(182, 176, 177), PackedInt32Array(177, 178, 179), PackedInt32Array(179, 180, 181), PackedInt32Array(181, 182, 177), PackedInt32Array(177, 179, 181), PackedInt32Array(186, 183, 184), PackedInt32Array(184, 185, 186), PackedInt32Array(187, 188, 189), PackedInt32Array(189, 190, 191), PackedInt32Array(191, 192, 193), PackedInt32Array(193, 194, 187), PackedInt32Array(187, 189, 191), PackedInt32Array(191, 193, 187), PackedInt32Array(198, 195, 196), PackedInt32Array(196, 197, 198), PackedInt32Array(210, 199, 200), PackedInt32Array(200, 201, 202), PackedInt32Array(202, 203, 204), PackedInt32Array(205, 206, 207), PackedInt32Array(208, 209, 210), PackedInt32Array(210, 200, 202), PackedInt32Array(202, 204, 205), PackedInt32Array(205, 207, 208), PackedInt32Array(210, 202, 205), PackedInt32Array(205, 208, 210), PackedInt32Array(219, 211, 212), PackedInt32Array(213, 214, 215), PackedInt32Array(215, 216, 217), PackedInt32Array(217, 218, 219), PackedInt32Array(219, 212, 213), PackedInt32Array(213, 215, 217), PackedInt32Array(217, 219, 213), PackedInt32Array(220, 221, 222), PackedInt32Array(222, 223, 224), PackedInt32Array(224, 225, 220), PackedInt32Array(220, 222, 224), PackedInt32Array(226, 227, 228), PackedInt32Array(228, 229, 230), PackedInt32Array(230, 231, 232), PackedInt32Array(232, 233, 234), PackedInt32Array(226, 228, 230), PackedInt32Array(232, 234, 226), PackedInt32Array(226, 230, 232), PackedInt32Array(238, 235, 236), PackedInt32Array(236, 237, 238), PackedInt32Array(242, 239, 240), PackedInt32Array(240, 241, 242), PackedInt32Array(249, 243, 244), PackedInt32Array(244, 245, 246), PackedInt32Array(247, 248, 249), PackedInt32Array(244, 246, 247), PackedInt32Array(247, 249, 244), PackedInt32Array(260, 250, 251), PackedInt32Array(252, 253, 254), PackedInt32Array(254, 255, 256), PackedInt32Array(257, 258, 259), PackedInt32Array(260, 251, 252), PackedInt32Array(254, 256, 257), PackedInt32Array(257, 259, 260), PackedInt32Array(260, 252, 254), PackedInt32Array(254, 257, 260), PackedInt32Array(264, 261, 262), PackedInt32Array(262, 263, 264), PackedInt32Array(269, 265, 266), PackedInt32Array(266, 267, 268), PackedInt32Array(268, 269, 266), PackedInt32Array(273, 270, 271), PackedInt32Array(271, 272, 273), PackedInt32Array(276, 274, 275), PackedInt32Array(279, 277, 278), PackedInt32Array(290, 280, 281), PackedInt32Array(282, 283, 284), PackedInt32Array(284, 285, 286), PackedInt32Array(286, 287, 288), PackedInt32Array(288, 289, 290), PackedInt32Array(290, 281, 282), PackedInt32Array(284, 286, 288), PackedInt32Array(288, 290, 282), PackedInt32Array(282, 284, 288), PackedInt32Array(300, 291, 292), PackedInt32Array(292, 293, 294), PackedInt32Array(295, 296, 297), PackedInt32Array(298, 299, 300), PackedInt32Array(292, 294, 295), PackedInt32Array(297, 298, 300), PackedInt32Array(300, 292, 295), PackedInt32Array(295, 297, 300), PackedInt32Array(304, 301, 302), PackedInt32Array(302, 303, 304), PackedInt32Array(311, 305, 306), PackedInt32Array(307, 308, 309), PackedInt32Array(309, 310, 311), PackedInt32Array(311, 306, 307), PackedInt32Array(307, 309, 311), PackedInt32Array(315, 312, 313), PackedInt32Array(313, 314, 315), PackedInt32Array(316, 317, 318), PackedInt32Array(320, 321, 316), PackedInt32Array(316, 318, 319), PackedInt32Array(319, 320, 316), PackedInt32Array(329, 322, 323), PackedInt32Array(324, 325, 326), PackedInt32Array(326, 327, 328), PackedInt32Array(329, 323, 324), PackedInt32Array(324, 326, 328), PackedInt32Array(328, 329, 324), PackedInt32Array(333, 330, 331), PackedInt32Array(331, 332, 333), PackedInt32Array(337, 334, 335), PackedInt32Array(335, 336, 337), PackedInt32Array(341, 338, 339), PackedInt32Array(339, 340, 341), PackedInt32Array(345, 342, 343), PackedInt32Array(343, 344, 345), PackedInt32Array(346, 347, 348), PackedInt32Array(348, 349, 350), PackedInt32Array(350, 351, 346), PackedInt32Array(346, 348, 350), PackedInt32Array(358, 352, 353), PackedInt32Array(354, 355, 356), PackedInt32Array(356, 357, 358), PackedInt32Array(358, 353, 354), PackedInt32Array(354, 356, 358), PackedInt32Array(364, 359, 360), PackedInt32Array(361, 362, 363), PackedInt32Array(364, 360, 361), PackedInt32Array(361, 363, 364), PackedInt32Array(368, 365, 366), PackedInt32Array(366, 367, 368), PackedInt32Array(372, 369, 370), PackedInt32Array(370, 371, 372), PackedInt32Array(376, 373, 374), PackedInt32Array(374, 375, 376), PackedInt32Array(382, 377, 378), PackedInt32Array(378, 379, 380), PackedInt32Array(380, 381, 382), PackedInt32Array(382, 378, 380), PackedInt32Array(388, 383, 384), PackedInt32Array(385, 386, 387), PackedInt32Array(388, 384, 385), PackedInt32Array(385, 387, 388), PackedInt32Array(395, 389, 390), PackedInt32Array(391, 392, 393), PackedInt32Array(393, 394, 395), PackedInt32Array(395, 390, 391), PackedInt32Array(391, 393, 395), PackedInt32Array(399, 396, 397), PackedInt32Array(397, 398, 399), PackedInt32Array(403, 400, 401), PackedInt32Array(401, 402, 403), PackedInt32Array(407, 404, 405), PackedInt32Array(405, 406, 407), PackedInt32Array(412, 408, 409), PackedInt32Array(409, 410, 411), PackedInt32Array(411, 412, 409), PackedInt32Array(416, 413, 414), PackedInt32Array(414, 415, 416), PackedInt32Array(420, 417, 418), PackedInt32Array(418, 419, 420), PackedInt32Array(424, 421, 422), PackedInt32Array(422, 423, 424), PackedInt32Array(428, 425, 426), PackedInt32Array(426, 427, 428), PackedInt32Array(432, 429, 430), PackedInt32Array(430, 431, 432), PackedInt32Array(436, 433, 434), PackedInt32Array(434, 435, 436), PackedInt32Array(440, 437, 438), PackedInt32Array(438, 439, 440), PackedInt32Array(444, 441, 442), PackedInt32Array(442, 443, 444), PackedInt32Array(448, 445, 446), PackedInt32Array(446, 447, 448), PackedInt32Array(456, 449, 450), PackedInt32Array(450, 451, 452), PackedInt32Array(452, 453, 454), PackedInt32Array(454, 455, 456), PackedInt32Array(456, 450, 452), PackedInt32Array(452, 454, 456), PackedInt32Array(465, 457, 458), PackedInt32Array(458, 459, 460), PackedInt32Array(460, 461, 462), PackedInt32Array(462, 463, 464), PackedInt32Array(464, 465, 458), PackedInt32Array(458, 460, 462), PackedInt32Array(462, 464, 458), PackedInt32Array(471, 466, 467), PackedInt32Array(467, 468, 469), PackedInt32Array(469, 470, 471), PackedInt32Array(471, 467, 469), PackedInt32Array(476, 472, 473), PackedInt32Array(474, 475, 476), PackedInt32Array(476, 473, 474), PackedInt32Array(481, 477, 478), PackedInt32Array(478, 479, 480), PackedInt32Array(480, 481, 478)] +bones = ["Bone-0", PackedFloat32Array(1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-1", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-2", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-3", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-4", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-5", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-6", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-7", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-8", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1), "Bone-9", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1)] +internal_vertex_count = 358 script = ExtResource("2_2dapw") vertex_interval = 37 -radius = 35 -shape_type = "Rectangle" -rigidbody_scene = ExtResource("3_6ern4") margin_pixels = -1 -voronoi_interval = 0.15 -max_joint_distance_ratio = 1.5 +min_area = 0.45 disable_collision = false stiffness = 128.0 damping = 0.6 rest_length_ratio = 1.1 length_ratio = 0.1 +softness = 20.0 +radius = 35 +shape_type = "Rectangle" +rigidbody_scene = ExtResource("3_6ern4") physics_material_override = ExtResource("3_durpg") [node name="Skeleton2D" type="Skeleton2D" parent="Asparagus2"] visible = false -modification_stack = SubResource("SkeletonModificationStack2D_0xsvo") +modification_stack = SubResource("SkeletonModificationStack2D_1vk6y") [node name="Bone-0" type="Bone2D" parent="Asparagus2/Skeleton2D"] -position = Vector2(30, 40.0251) -rotation = 1.59279 -scale = Vector2(1, 1) -rest = Transform2D(-0.0219893, 0.999758, -0.999758, -0.0219893, 30, 40.0251) +position = Vector2(30, 38.75) +rotation = 1.59241 +rest = Transform2D(-0.0216166, 0.999766, -0.999766, -0.0216166, 30, 38.75) auto_calculate_length_and_angle = false length = 37.0 bone_angle = 0.0 -metadata/vert_owned = [124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166] +metadata/vert_owned = [124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175] +metadata/idx = 0 metadata/connected_nodes_paths = [NodePath("Bone-1")] +metadata/connected_nodes_idx = [1] metadata/_local_pose_override_enabled_ = true [node name="Bone-1" type="Bone2D" parent="Asparagus2/Skeleton2D"] -position = Vector2(29, 85.4907) -rotation = 1.52331 -rest = Transform2D(0.0474652, 0.998873, -0.998873, 0.0474652, 29, 85.4907) +position = Vector2(29, 85) +rotation = 1.54378 +rest = Transform2D(0.0270171, 0.999635, -0.999635, 0.0270171, 29, 85) auto_calculate_length_and_angle = false length = 37.0 bone_angle = 0.0 -metadata/vert_owned = [167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198] -metadata/connected_nodes_paths = [NodePath("Bone-0"), NodePath("Bone-2"), NodePath("Bone-3")] +metadata/vert_owned = [176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219] +metadata/idx = 1 +metadata/connected_nodes_paths = [NodePath("Bone-0"), NodePath("Bone-2")] +metadata/connected_nodes_idx = [0, 2] metadata/_local_pose_override_enabled_ = true [node name="Bone-2" type="Bone2D" parent="Asparagus2/Skeleton2D"] -position = Vector2(30.7143, 121.567) -rotation = 1.59948 -rest = Transform2D(-0.0286785, 0.999589, -0.999589, -0.0286785, 30.7143, 121.567) +position = Vector2(30, 122) +rotation = 1.58431 +scale = Vector2(1, 1) +rest = Transform2D(-0.0135122, 0.999909, -0.999909, -0.0135122, 30, 122) auto_calculate_length_and_angle = false length = 37.0 bone_angle = 0.0 -metadata/vert_owned = [199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225] -metadata/connected_nodes_paths = [NodePath("Bone-1"), NodePath("Bone-3"), NodePath("Bone-4")] +metadata/vert_owned = [220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260] +metadata/idx = 2 +metadata/connected_nodes_paths = [NodePath("Bone-1"), NodePath("Bone-3")] +metadata/connected_nodes_idx = [1, 3] metadata/_local_pose_override_enabled_ = true [node name="Bone-3" type="Bone2D" parent="Asparagus2/Skeleton2D"] -position = Vector2(29.6521, 158.592) -rotation = 1.45819 -rest = Transform2D(0.112373, 0.993666, -0.993666, 0.112373, 29.6521, 158.592) +position = Vector2(29.5, 159) +rotation = 1.44977 +rest = Transform2D(0.120732, 0.992685, -0.992685, 0.120732, 29.5, 159) auto_calculate_length_and_angle = false length = 37.0 bone_angle = 0.0 -metadata/vert_owned = [226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252] -metadata/connected_nodes_paths = [NodePath("Bone-1"), NodePath("Bone-2"), NodePath("Bone-4"), NodePath("Bone-5")] +metadata/vert_owned = [261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300] +metadata/idx = 3 +metadata/connected_nodes_paths = [NodePath("Bone-2"), NodePath("Bone-4")] +metadata/connected_nodes_idx = [2, 4] metadata/_local_pose_override_enabled_ = true [node name="Bone-4" type="Bone2D" parent="Asparagus2/Skeleton2D"] -position = Vector2(34, 197.039) -rotation = 1.50548 -scale = Vector2(1, 1) -rest = Transform2D(0.0652709, 0.997868, -0.997868, 0.0652709, 34, 197.039) +position = Vector2(34, 196) +rotation = -1.69182 +rest = Transform2D(-0.120732, -0.992685, 0.992685, -0.120732, 34, 196) auto_calculate_length_and_angle = false length = 37.0 bone_angle = 0.0 -metadata/vert_owned = [253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271] -metadata/connected_nodes_paths = [NodePath("Bone-2"), NodePath("Bone-3"), NodePath("Bone-5"), NodePath("Bone-6")] +metadata/vert_owned = [301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333] +metadata/idx = 4 +metadata/connected_nodes_paths = [NodePath("Bone-5"), NodePath("Bone-3")] +metadata/connected_nodes_idx = [5, 3] metadata/_local_pose_override_enabled_ = true [node name="Bone-5" type="Bone2D" parent="Asparagus2/Skeleton2D"] -position = Vector2(36.4704, 234.807) -rotation = 1.50162 -rest = Transform2D(0.0691196, 0.997608, -0.997608, 0.0691196, 36.4704, 234.807) +position = Vector2(36.473, 233) +rotation = 1.5058 +scale = Vector2(1, 1) +rest = Transform2D(0.0649516, 0.997888, -0.997888, 0.0649516, 36.473, 233) auto_calculate_length_and_angle = false length = 37.0 bone_angle = 0.0 -metadata/vert_owned = [272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288] -metadata/connected_nodes_paths = [NodePath("Bone-3"), NodePath("Bone-4"), NodePath("Bone-6"), NodePath("Bone-7")] +metadata/vert_owned = [334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364] +metadata/idx = 5 +metadata/connected_nodes_paths = [NodePath("Bone-4"), NodePath("Bone-6")] +metadata/connected_nodes_idx = [4, 6] metadata/_local_pose_override_enabled_ = true [node name="Bone-6" type="Bone2D" parent="Asparagus2/Skeleton2D"] -position = Vector2(38.9404, 270.456) -rotation = 1.50355 -scale = Vector2(1, 1) -rest = Transform2D(0.0671995, 0.99774, -0.99774, 0.0671995, 38.9404, 270.456) +position = Vector2(38.8813, 270) +rotation = 1.50014 +rest = Transform2D(0.0706002, 0.997505, -0.997505, 0.0706002, 38.8812, 270) auto_calculate_length_and_angle = false length = 37.0 bone_angle = 0.0 -metadata/vert_owned = [289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305] -metadata/connected_nodes_paths = [NodePath("Bone-4"), NodePath("Bone-5"), NodePath("Bone-7"), NodePath("Bone-8")] +metadata/vert_owned = [365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395] +metadata/idx = 6 +metadata/connected_nodes_paths = [NodePath("Bone-5"), NodePath("Bone-7")] +metadata/connected_nodes_idx = [5, 7] metadata/_local_pose_override_enabled_ = true [node name="Bone-7" type="Bone2D" parent="Asparagus2/Skeleton2D"] -position = Vector2(41.5, 308.46) +position = Vector2(41.5, 307) rotation = 1.5708 -rest = Transform2D(-4.37114e-08, 1, -1, -4.37114e-08, 41.5, 308.46) +rest = Transform2D(-4.37114e-08, 1, -1, -4.37114e-08, 41.5, 307) auto_calculate_length_and_angle = false length = 37.0 bone_angle = 0.0 -metadata/vert_owned = [306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317] -metadata/connected_nodes_paths = [NodePath("Bone-5"), NodePath("Bone-6"), NodePath("Bone-8"), NodePath("Bone-9")] +metadata/vert_owned = [396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420] +metadata/idx = 7 +metadata/connected_nodes_paths = [NodePath("Bone-6"), NodePath("Bone-8")] +metadata/connected_nodes_idx = [6, 8] metadata/_local_pose_override_enabled_ = true [node name="Bone-8" type="Bone2D" parent="Asparagus2/Skeleton2D"] -position = Vector2(41.5, 343.967) -rotation = -1.5708 -rest = Transform2D(-4.37114e-08, -1, 1, -4.37114e-08, 41.5, 343.967) +position = Vector2(41.5, 344) +rotation = 1.5708 +rest = Transform2D(-4.37114e-08, 1, -1, -4.37114e-08, 41.5, 344) auto_calculate_length_and_angle = false length = 37.0 bone_angle = 0.0 -metadata/vert_owned = [318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332] -metadata/connected_nodes_paths = [NodePath("Bone-6"), NodePath("Bone-7"), NodePath("Bone-9")] +metadata/vert_owned = [421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444] +metadata/idx = 8 +metadata/connected_nodes_paths = [NodePath("Bone-7"), NodePath("Bone-9")] +metadata/connected_nodes_idx = [7, 9] metadata/_local_pose_override_enabled_ = true [node name="Bone-9" type="Bone2D" parent="Asparagus2/Skeleton2D"] -position = Vector2(41.5, 377.476) +position = Vector2(41.5, 378.25) rotation = -1.5708 -rest = Transform2D(-4.37114e-08, -1, 1, -4.37114e-08, 41.5, 377.476) +rest = Transform2D(-4.37114e-08, -1, 1, -4.37114e-08, 41.5, 378.25) auto_calculate_length_and_angle = false length = 37.0 bone_angle = 0.0 -metadata/vert_owned = [333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358] -metadata/connected_nodes_paths = [NodePath("Bone-7"), NodePath("Bone-8")] +metadata/vert_owned = [445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481] +metadata/idx = 9 +metadata/connected_nodes_paths = [NodePath("Bone-8")] +metadata/connected_nodes_idx = [8] metadata/_local_pose_override_enabled_ = true -[node name="Bone-0" parent="Asparagus2" instance=ExtResource("3_6ern4")] -position = Vector2(30, 40.0251) +[node name="Bone-0" type="RigidBody2D" parent="Asparagus2" instance=ExtResource("3_6ern4")] +position = Vector2(30, 38.75) +input_pickable = true mass = 0.1 physics_material_override = ExtResource("3_durpg") +script = ExtResource("11_tqnjl") +metadata/idx = 0 metadata/bone_name = &"Bone-0" [node name="RectangleShape2D" type="CollisionShape2D" parent="Asparagus2/Bone-0"] -shape = SubResource("RectangleShape2D_ons7v") +shape = SubResource("RectangleShape2D_3xtnn") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Asparagus2/Bone-0"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-0") update_rotation = false update_scale = false [node name="Joint2D-Bone-0-Bone-1" type="PinJoint2D" parent="Asparagus2/Bone-0"] visible = false -rotation = 0.0219911 +rotation = 0.0216183 node_a = NodePath("..") node_b = NodePath("../../Bone-1") disable_collision = false -softness = 60.0 +softness = 20.0 -[node name="Bone-1" parent="Asparagus2" instance=ExtResource("3_6ern4")] -position = Vector2(29, 85.4907) +[node name="Bone-1" type="RigidBody2D" parent="Asparagus2" instance=ExtResource("3_6ern4")] +position = Vector2(29, 85) +input_pickable = true mass = 0.1 physics_material_override = ExtResource("3_durpg") +script = ExtResource("11_tqnjl") +metadata/idx = 1 metadata/bone_name = &"Bone-1" [node name="RectangleShape2D" type="CollisionShape2D" parent="Asparagus2/Bone-1"] -shape = SubResource("RectangleShape2D_ons7v") +shape = SubResource("RectangleShape2D_3xtnn") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Asparagus2/Bone-1"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-1") update_rotation = false update_scale = false [node name="Joint2D-Bone-1-Bone-0" type="PinJoint2D" parent="Asparagus2/Bone-1"] visible = false -rotation = -3.1196 +rotation = -3.11997 node_a = NodePath("..") node_b = NodePath("../../Bone-0") disable_collision = false -softness = 60.0 +softness = 20.0 [node name="Joint2D-Bone-1-Bone-2" type="PinJoint2D" parent="Asparagus2/Bone-1"] visible = false -rotation = -0.0474829 +rotation = -0.0270204 node_a = NodePath("..") node_b = NodePath("../../Bone-2") disable_collision = false -softness = 60.0 - -[node name="Joint2D-Bone-1-Bone-3" type="PinJoint2D" parent="Asparagus2/Bone-1"] -visible = false -rotation = -0.00891955 -node_a = NodePath("..") -node_b = NodePath("../../Bone-3") -disable_collision = false -softness = 60.0 +softness = 20.0 -[node name="Bone-2" parent="Asparagus2" instance=ExtResource("3_6ern4")] -position = Vector2(30.7143, 121.567) +[node name="Bone-2" type="RigidBody2D" parent="Asparagus2" instance=ExtResource("3_6ern4")] +position = Vector2(30, 122) +input_pickable = true mass = 0.1 physics_material_override = ExtResource("3_durpg") +script = ExtResource("11_tqnjl") +metadata/idx = 2 metadata/bone_name = &"Bone-2" [node name="RectangleShape2D" type="CollisionShape2D" parent="Asparagus2/Bone-2"] -shape = SubResource("RectangleShape2D_ons7v") +shape = SubResource("RectangleShape2D_3xtnn") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Asparagus2/Bone-2"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-2") update_rotation = false update_scale = false [node name="Joint2D-Bone-2-Bone-1" type="PinJoint2D" parent="Asparagus2/Bone-2"] visible = false -rotation = -3.18908 +rotation = -3.16861 node_a = NodePath("..") node_b = NodePath("../../Bone-1") disable_collision = false -softness = 60.0 +softness = 20.0 [node name="Joint2D-Bone-2-Bone-3" type="PinJoint2D" parent="Asparagus2/Bone-2"] visible = false -rotation = 0.0286819 +rotation = 0.0135127 node_a = NodePath("..") node_b = NodePath("../../Bone-3") disable_collision = false -softness = 60.0 - -[node name="Joint2D-Bone-2-Bone-4" type="PinJoint2D" parent="Asparagus2/Bone-2"] -visible = false -rotation = -0.0435079 -node_a = NodePath("..") -node_b = NodePath("../../Bone-4") -disable_collision = false -softness = 60.0 +softness = 20.0 -[node name="Bone-3" parent="Asparagus2" instance=ExtResource("3_6ern4")] -position = Vector2(29.6521, 158.592) +[node name="Bone-3" type="RigidBody2D" parent="Asparagus2" instance=ExtResource("3_6ern4")] +position = Vector2(29.5, 159) +input_pickable = true mass = 0.1 physics_material_override = ExtResource("3_durpg") +script = ExtResource("11_tqnjl") +metadata/idx = 3 metadata/bone_name = &"Bone-3" [node name="RectangleShape2D" type="CollisionShape2D" parent="Asparagus2/Bone-3"] -shape = SubResource("RectangleShape2D_ons7v") +shape = SubResource("RectangleShape2D_3xtnn") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Asparagus2/Bone-3"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-3") update_rotation = false update_scale = false -[node name="Joint2D-Bone-3-Bone-1" type="PinJoint2D" parent="Asparagus2/Bone-3"] -visible = false -rotation = -3.15051 -node_a = NodePath("..") -node_b = NodePath("../../Bone-1") -disable_collision = false -softness = 60.0 - [node name="Joint2D-Bone-3-Bone-2" type="PinJoint2D" parent="Asparagus2/Bone-3"] visible = false -rotation = -3.11291 +rotation = -3.12808 node_a = NodePath("..") node_b = NodePath("../../Bone-2") disable_collision = false -softness = 60.0 +softness = 20.0 [node name="Joint2D-Bone-3-Bone-4" type="PinJoint2D" parent="Asparagus2/Bone-3"] visible = false -rotation = -0.112611 +rotation = -0.121027 node_a = NodePath("..") node_b = NodePath("../../Bone-4") disable_collision = false -softness = 60.0 - -[node name="Joint2D-Bone-3-Bone-5" type="PinJoint2D" parent="Asparagus2/Bone-3"] -visible = false -rotation = -0.0892249 -node_a = NodePath("..") -node_b = NodePath("../../Bone-5") -disable_collision = false -softness = 60.0 +softness = 20.0 -[node name="Bone-4" parent="Asparagus2" instance=ExtResource("3_6ern4")] -position = Vector2(34, 197.039) +[node name="Bone-4" type="RigidBody2D" parent="Asparagus2" instance=ExtResource("3_6ern4")] +position = Vector2(34, 196) +input_pickable = true mass = 0.1 physics_material_override = ExtResource("3_durpg") +script = ExtResource("11_tqnjl") +metadata/idx = 4 metadata/bone_name = &"Bone-4" [node name="RectangleShape2D" type="CollisionShape2D" parent="Asparagus2/Bone-4"] -shape = SubResource("RectangleShape2D_ons7v") +shape = SubResource("RectangleShape2D_3xtnn") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Asparagus2/Bone-4"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-4") update_rotation = false update_scale = false -[node name="Joint2D-Bone-4-Bone-2" type="PinJoint2D" parent="Asparagus2/Bone-4"] -visible = false -rotation = -3.1851 -node_a = NodePath("..") -node_b = NodePath("../../Bone-2") -disable_collision = false -softness = 60.0 - -[node name="Joint2D-Bone-4-Bone-3" type="PinJoint2D" parent="Asparagus2/Bone-4"] -visible = false -rotation = -3.2542 -node_a = NodePath("..") -node_b = NodePath("../../Bone-3") -disable_collision = false -softness = 60.0 - [node name="Joint2D-Bone-4-Bone-5" type="PinJoint2D" parent="Asparagus2/Bone-4"] visible = false -rotation = -0.0653178 +rotation = -0.066738 node_a = NodePath("..") node_b = NodePath("../../Bone-5") disable_collision = false -softness = 60.0 +softness = 20.0 -[node name="Joint2D-Bone-4-Bone-6" type="PinJoint2D" parent="Asparagus2/Bone-4"] +[node name="Joint2D-Bone-4-Bone-3" type="PinJoint2D" parent="Asparagus2/Bone-4"] visible = false -rotation = -0.0671908 +rotation = -3.26262 node_a = NodePath("..") -node_b = NodePath("../../Bone-6") +node_b = NodePath("../../Bone-3") disable_collision = false -softness = 60.0 +softness = 20.0 -[node name="Bone-5" parent="Asparagus2" instance=ExtResource("3_6ern4")] -position = Vector2(36.4704, 234.807) +[node name="Bone-5" type="RigidBody2D" parent="Asparagus2" instance=ExtResource("3_6ern4")] +position = Vector2(36.473, 233) +input_pickable = true mass = 0.1 physics_material_override = ExtResource("3_durpg") +script = ExtResource("11_tqnjl") +metadata/idx = 5 metadata/bone_name = &"Bone-5" [node name="RectangleShape2D" type="CollisionShape2D" parent="Asparagus2/Bone-5"] -shape = SubResource("RectangleShape2D_ons7v") +shape = SubResource("RectangleShape2D_3xtnn") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Asparagus2/Bone-5"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-5") update_rotation = false update_scale = false -[node name="Joint2D-Bone-5-Bone-3" type="PinJoint2D" parent="Asparagus2/Bone-5"] -visible = false -rotation = -3.23082 -node_a = NodePath("..") -node_b = NodePath("../../Bone-3") -disable_collision = false -softness = 60.0 - [node name="Joint2D-Bone-5-Bone-4" type="PinJoint2D" parent="Asparagus2/Bone-5"] visible = false -rotation = -3.20691 +rotation = -3.20833 node_a = NodePath("..") node_b = NodePath("../../Bone-4") disable_collision = false -softness = 60.0 +softness = 20.0 [node name="Joint2D-Bone-5-Bone-6" type="PinJoint2D" parent="Asparagus2/Bone-5"] visible = false -rotation = -0.0691747 +rotation = -0.0649968 node_a = NodePath("..") node_b = NodePath("../../Bone-6") disable_collision = false -softness = 60.0 - -[node name="Joint2D-Bone-5-Bone-7" type="PinJoint2D" parent="Asparagus2/Bone-5"] -visible = false -rotation = -0.0681816 -node_a = NodePath("..") -node_b = NodePath("../../Bone-7") -disable_collision = false -softness = 60.0 +softness = 20.0 -[node name="Bone-6" parent="Asparagus2" instance=ExtResource("3_6ern4")] -position = Vector2(38.9404, 270.456) +[node name="Bone-6" type="RigidBody2D" parent="Asparagus2" instance=ExtResource("3_6ern4")] +position = Vector2(38.8812, 270) +input_pickable = true mass = 0.1 physics_material_override = ExtResource("3_durpg") +script = ExtResource("11_tqnjl") +metadata/idx = 6 metadata/bone_name = &"Bone-6" [node name="RectangleShape2D" type="CollisionShape2D" parent="Asparagus2/Bone-6"] -shape = SubResource("RectangleShape2D_ons7v") +shape = SubResource("RectangleShape2D_3xtnn") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Asparagus2/Bone-6"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-6") update_rotation = false update_scale = false -[node name="Joint2D-Bone-6-Bone-4" type="PinJoint2D" parent="Asparagus2/Bone-6"] -visible = false -rotation = -3.20878 -node_a = NodePath("..") -node_b = NodePath("../../Bone-4") -disable_collision = false -softness = 60.0 - [node name="Joint2D-Bone-6-Bone-5" type="PinJoint2D" parent="Asparagus2/Bone-6"] visible = false -rotation = -3.21077 +rotation = -3.20659 node_a = NodePath("..") node_b = NodePath("../../Bone-5") disable_collision = false -softness = 60.0 +softness = 20.0 [node name="Joint2D-Bone-6-Bone-7" type="PinJoint2D" parent="Asparagus2/Bone-6"] visible = false -rotation = -0.0672498 +rotation = -0.0706592 node_a = NodePath("..") node_b = NodePath("../../Bone-7") disable_collision = false -softness = 60.0 - -[node name="Joint2D-Bone-6-Bone-8" type="PinJoint2D" parent="Asparagus2/Bone-6"] -visible = false -rotation = -0.0348056 -node_a = NodePath("..") -node_b = NodePath("../../Bone-8") -disable_collision = false -softness = 60.0 +softness = 20.0 -[node name="Bone-7" parent="Asparagus2" instance=ExtResource("3_6ern4")] -position = Vector2(41.5, 308.46) +[node name="Bone-7" type="RigidBody2D" parent="Asparagus2" instance=ExtResource("3_6ern4")] +position = Vector2(41.5, 307) +input_pickable = true mass = 0.1 physics_material_override = ExtResource("3_durpg") +script = ExtResource("11_tqnjl") +metadata/idx = 7 metadata/bone_name = &"Bone-7" [node name="RectangleShape2D" type="CollisionShape2D" parent="Asparagus2/Bone-7"] -shape = SubResource("RectangleShape2D_ons7v") +shape = SubResource("RectangleShape2D_3xtnn") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Asparagus2/Bone-7"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-7") update_rotation = false update_scale = false -[node name="Joint2D-Bone-7-Bone-5" type="PinJoint2D" parent="Asparagus2/Bone-7"] +[node name="Joint2D-Bone-7-Bone-6" type="PinJoint2D" parent="Asparagus2/Bone-7"] visible = false -rotation = -3.20977 -node_a = NodePath("..") -node_b = NodePath("../../Bone-5") -disable_collision = false -softness = 60.0 - -[node name="Joint2D-Bone-7-Bone-6" type="PinJoint2D" parent="Asparagus2/Bone-7"] -visible = false -rotation = -3.20884 +rotation = -3.21225 node_a = NodePath("..") node_b = NodePath("../../Bone-6") disable_collision = false -softness = 60.0 +softness = 20.0 [node name="Joint2D-Bone-7-Bone-8" type="PinJoint2D" parent="Asparagus2/Bone-7"] visible = false node_a = NodePath("..") node_b = NodePath("../../Bone-8") disable_collision = false -softness = 60.0 - -[node name="Joint2D-Bone-7-Bone-9" type="PinJoint2D" parent="Asparagus2/Bone-7"] -visible = false -node_a = NodePath("..") -node_b = NodePath("../../Bone-9") -disable_collision = false -softness = 60.0 +softness = 20.0 -[node name="Bone-8" parent="Asparagus2" instance=ExtResource("3_6ern4")] -position = Vector2(41.5, 343.967) +[node name="Bone-8" type="RigidBody2D" parent="Asparagus2" instance=ExtResource("3_6ern4")] +position = Vector2(41.5, 344) +input_pickable = true mass = 0.1 physics_material_override = ExtResource("3_durpg") +script = ExtResource("11_tqnjl") +metadata/idx = 8 metadata/bone_name = &"Bone-8" [node name="RectangleShape2D" type="CollisionShape2D" parent="Asparagus2/Bone-8"] -shape = SubResource("RectangleShape2D_ons7v") +shape = SubResource("RectangleShape2D_3xtnn") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Asparagus2/Bone-8"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-8") update_rotation = false update_scale = false -[node name="Joint2D-Bone-8-Bone-6" type="PinJoint2D" parent="Asparagus2/Bone-8"] -visible = false -rotation = -3.1764 -node_a = NodePath("..") -node_b = NodePath("../../Bone-6") -disable_collision = false -softness = 60.0 - [node name="Joint2D-Bone-8-Bone-7" type="PinJoint2D" parent="Asparagus2/Bone-8"] visible = false rotation = -3.14159 node_a = NodePath("..") node_b = NodePath("../../Bone-7") disable_collision = false -softness = 60.0 +softness = 20.0 [node name="Joint2D-Bone-8-Bone-9" type="PinJoint2D" parent="Asparagus2/Bone-8"] visible = false node_a = NodePath("..") node_b = NodePath("../../Bone-9") disable_collision = false -softness = 60.0 +softness = 20.0 -[node name="Bone-9" parent="Asparagus2" instance=ExtResource("3_6ern4")] -position = Vector2(41.5, 377.476) +[node name="Bone-9" type="RigidBody2D" parent="Asparagus2" instance=ExtResource("3_6ern4")] +position = Vector2(41.5, 378.25) +input_pickable = true mass = 0.1 physics_material_override = ExtResource("3_durpg") +script = ExtResource("11_tqnjl") +metadata/idx = 9 metadata/bone_name = &"Bone-9" [node name="RectangleShape2D" type="CollisionShape2D" parent="Asparagus2/Bone-9"] -shape = SubResource("RectangleShape2D_ons7v") +shape = SubResource("RectangleShape2D_3xtnn") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Asparagus2/Bone-9"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-9") update_rotation = false update_scale = false -[node name="Joint2D-Bone-9-Bone-7" type="PinJoint2D" parent="Asparagus2/Bone-9"] -visible = false -rotation = -3.14159 -node_a = NodePath("..") -node_b = NodePath("../../Bone-7") -disable_collision = false -softness = 60.0 - [node name="Joint2D-Bone-9-Bone-8" type="PinJoint2D" parent="Asparagus2/Bone-9"] visible = false rotation = -3.14159 node_a = NodePath("..") node_b = NodePath("../../Bone-8") disable_collision = false -softness = 60.0 +softness = 20.0 [node name="Asparagus3" type="Polygon2D" parent="."] z_index = 5 position = Vector2(586, -721) texture = ExtResource("1_bb0nr") skeleton = NodePath("Skeleton2D") -polygon = PackedVector2Array(23, 18, 22, 18, 22, 29, 20, 29, 18, 29, 14, 35, 13, 35, 12, 39, 11, 39, 11, 47, 14, 52, 15, 52, 15, 55, 13, 56, 13, 66, 11, 68, 11, 76, 13, 78, 13, 80, 17, 83, 17, 86, 16, 87, 15, 87, 15, 90, 14, 91, 13, 91, 10, 97, 9, 97, 9, 104, 11, 106, 11, 110, 14, 113, 15, 113, 15, 115, 16, 115, 15, 128, 14, 128, 14, 137, 16, 142, 16, 146, 15, 146, 15, 154, 14, 155, 13, 155, 13, 160, 11, 162, 11, 168, 12, 170, 13, 170, 14, 175, 15, 175, 14, 205, 14, 210, 15, 214, 16, 214, 16, 222, 17, 222, 17, 248, 18, 250, 19, 250, 19, 259, 21, 266, 22, 266, 22, 279, 23, 279, 23, 342, 23, 370, 27, 382, 27, 387, 31, 391, 31, 393, 34, 393, 34, 394, 39, 393, 48, 393, 49, 391, 51, 391, 54, 387, 56, 387, 59, 375, 60, 375, 60, 343, 60, 305, 57, 265, 57, 252, 53, 215, 52, 215, 52, 209, 54, 206, 54, 202, 48, 185, 47, 185, 48, 176, 48, 159, 45, 148, 44, 148, 50, 136, 51, 136, 51, 127, 50, 124, 49, 124, 49, 118, 46, 109, 45, 109, 46, 99, 47, 99, 47, 90, 45, 86, 44, 86, 45, 80, 45, 73, 49, 67, 49, 57, 40, 41, 39, 41, 40, 39, 40, 32, 36, 26, 36, 24, 34, 23, 34, 22, 33, 23, 32, 23, 23, 11, 40, 32, 40, 39, 39, 41, 40, 41, 49, 57, 49, 64.9902, 32.6264, 64.5565, 30.0177, 28.248, 36.7599, 27.1399, 25.83, 14.7733, 26.1315, 25.3782, 22, 25.9422, 22, 18, 23, 18, 23, 11, 30.0177, 28.248, 32.6264, 64.5565, 27.3579, 69.0501, 11.974, 67.026, 13, 66, 13, 56, 15, 55, 15, 52, 14, 52, 11, 47, 11, 39, 12, 39, 13, 35, 14, 35, 18, 29, 22, 29, 22, 25.9422, 26.1315, 25.3782, 32, 23, 33, 23, 34, 22, 34, 23, 36, 24, 36, 26, 36.7599, 27.1399, 30.0177, 28.248, 26.1315, 25.3782, 25.83, 14.7733, 49, 64.9902, 49, 67, 45, 73, 45, 80, 44, 86, 45, 86, 47, 90, 47, 99, 46, 99, 45.6157, 102.843, 28.5506, 102.526, 27.3579, 69.0501, 32.6264, 64.5565, 27.3579, 69.0501, 28.5506, 102.526, 25.2691, 106.425, 10.4286, 105.429, 9, 104, 9, 97, 10, 97, 13, 91, 14, 91, 15, 90, 15, 87, 16, 87, 17, 86, 17, 83, 13, 80, 13, 78, 11, 76, 11, 68, 11.974, 67.026, 45.6157, 102.843, 45, 109, 46, 109, 49, 118, 49, 124, 50, 124, 51, 127, 51, 136, 50, 136, 48.3041, 139.392, 27.7875, 137.724, 25.2691, 106.425, 28.5506, 102.526, 25.2691, 106.425, 27.7875, 137.724, 25.0742, 140.608, 15.3286, 140.322, 14, 137, 14, 128, 15, 128, 16, 115, 15, 115, 15, 113, 14, 113, 11, 110, 11, 106, 10.4286, 105.429, 48.3041, 139.392, 44, 148, 45, 148, 48, 159, 48, 176, 47.6156, 179.46, 25.6578, 178.493, 23.6501, 176.832, 25.0742, 140.608, 27.7875, 137.724, 25.0742, 140.608, 23.6501, 176.832, 14.9091, 177.728, 15, 175, 14, 175, 13, 170, 12, 170, 11, 168, 11, 162, 13, 160, 13, 155, 14, 155, 15, 154, 15, 146, 16, 146, 16, 142, 15.3286, 140.322, 47.6156, 179.46, 47, 185, 48, 185, 54, 202, 54, 206, 52, 209, 52, 214.035, 25.7179, 215.987, 25.6578, 178.493, 25.6578, 178.493, 25.7179, 215.987, 25.3167, 216.46, 16, 217.247, 16, 214, 15, 214, 14, 210, 14, 205, 14.9091, 177.728, 23.6501, 176.832, 52, 215, 53, 215, 56.9408, 251.453, 31.7086, 250.835, 25.3167, 216.46, 25.7179, 215.987, 52, 214.035, 31.7086, 250.835, 25.9058, 255.578, 19, 255.391, 19, 250, 18, 250, 17, 248, 17, 222, 16, 222, 16, 217.247, 25.3167, 216.46, 56.9408, 251.453, 57, 252, 57, 265, 58.8808, 290.077, 28.3398, 289.615, 28.3227, 289.595, 25.9058, 255.578, 31.7086, 250.835, 25.9058, 255.578, 28.3227, 289.595, 23, 289.209, 23, 279, 22, 279, 22, 266, 21, 266, 19, 259, 19, 255.391, 58.8808, 290.077, 60, 305, 60, 325.106, 58.4373, 326.792, 30.2646, 327.711, 23.2605, 321.151, 28.3398, 289.615, 28.3227, 289.595, 28.3398, 289.615, 23.2605, 321.151, 23, 321.156, 23, 289.209, 60, 335.24, 60, 364.59, 58.0779, 366.782, 28.1748, 365.271, 23.9506, 360.952, 30.2646, 327.711, 58.4373, 326.792, 30.2646, 327.711, 23.9506, 360.952, 23, 360.952, 23, 321.156, 23.2605, 321.151, 60, 335.24, 58.4373, 326.792, 60, 325.106, 58.0779, 366.782, 59.4062, 375, 59, 375, 56, 387, 54, 387, 51, 391, 49, 391, 48, 393, 39, 393, 34, 394, 34, 393, 31, 393, 31, 391, 27, 387, 27, 382, 26.4137, 380.241, 28.1748, 365.271, 28.1748, 365.271, 26.4137, 380.241, 23, 370, 23, 360.952, 23.9506, 360.952, 60, 375, 59.4062, 375, 58.0779, 366.782, 60, 364.59) -polygons = [PackedInt32Array(132, 124, 125), PackedInt32Array(126, 127, 128), PackedInt32Array(128, 129, 130), PackedInt32Array(130, 131, 132), PackedInt32Array(132, 125, 126), PackedInt32Array(126, 128, 130), PackedInt32Array(130, 132, 126), PackedInt32Array(138, 133, 134), PackedInt32Array(134, 135, 136), PackedInt32Array(137, 138, 134), PackedInt32Array(134, 136, 137), PackedInt32Array(156, 139, 140), PackedInt32Array(140, 141, 142), PackedInt32Array(143, 144, 145), PackedInt32Array(146, 147, 148), PackedInt32Array(148, 149, 150), PackedInt32Array(150, 151, 152), PackedInt32Array(152, 153, 154), PackedInt32Array(154, 155, 156), PackedInt32Array(140, 142, 143), PackedInt32Array(146, 148, 150), PackedInt32Array(150, 152, 154), PackedInt32Array(154, 156, 140), PackedInt32Array(140, 143, 145), PackedInt32Array(146, 150, 154), PackedInt32Array(154, 140, 145), PackedInt32Array(145, 146, 154), PackedInt32Array(158, 159, 160), PackedInt32Array(160, 161, 162), PackedInt32Array(162, 163, 164), PackedInt32Array(164, 165, 166), PackedInt32Array(158, 160, 162), PackedInt32Array(164, 166, 157), PackedInt32Array(157, 158, 162), PackedInt32Array(162, 164, 157), PackedInt32Array(179, 167, 168), PackedInt32Array(169, 170, 171), PackedInt32Array(171, 172, 173), PackedInt32Array(173, 174, 175), PackedInt32Array(175, 176, 177), PackedInt32Array(177, 178, 179), PackedInt32Array(179, 168, 169), PackedInt32Array(171, 173, 175), PackedInt32Array(175, 177, 179), PackedInt32Array(179, 169, 171), PackedInt32Array(171, 175, 179), PackedInt32Array(198, 180, 181), PackedInt32Array(181, 182, 183), PackedInt32Array(183, 184, 185), PackedInt32Array(186, 187, 188), PackedInt32Array(189, 190, 191), PackedInt32Array(193, 194, 195), PackedInt32Array(195, 196, 197), PackedInt32Array(197, 198, 181), PackedInt32Array(181, 183, 185), PackedInt32Array(186, 188, 189), PackedInt32Array(189, 191, 192), PackedInt32Array(193, 195, 197), PackedInt32Array(181, 185, 186), PackedInt32Array(193, 197, 181), PackedInt32Array(181, 186, 189), PackedInt32Array(192, 193, 181), PackedInt32Array(181, 189, 192), PackedInt32Array(211, 199, 200), PackedInt32Array(200, 201, 202), PackedInt32Array(203, 204, 205), PackedInt32Array(205, 206, 207), PackedInt32Array(207, 208, 209), PackedInt32Array(209, 210, 211), PackedInt32Array(211, 200, 202), PackedInt32Array(203, 205, 207), PackedInt32Array(207, 209, 211), PackedInt32Array(211, 202, 203), PackedInt32Array(203, 207, 211), PackedInt32Array(212, 213, 214), PackedInt32Array(214, 215, 216), PackedInt32Array(216, 217, 218), PackedInt32Array(219, 220, 221), PackedInt32Array(221, 222, 223), PackedInt32Array(224, 225, 212), PackedInt32Array(212, 214, 216), PackedInt32Array(221, 223, 224), PackedInt32Array(212, 216, 218), PackedInt32Array(221, 224, 212), PackedInt32Array(212, 218, 219), PackedInt32Array(219, 221, 212), PackedInt32Array(235, 226, 227), PackedInt32Array(227, 228, 229), PackedInt32Array(229, 230, 231), PackedInt32Array(231, 232, 233), PackedInt32Array(233, 234, 235), PackedInt32Array(235, 227, 229), PackedInt32Array(229, 231, 233), PackedInt32Array(233, 235, 229), PackedInt32Array(236, 237, 238), PackedInt32Array(239, 240, 241), PackedInt32Array(241, 242, 243), PackedInt32Array(243, 244, 245), PackedInt32Array(245, 246, 247), PackedInt32Array(248, 249, 250), PackedInt32Array(251, 252, 236), PackedInt32Array(236, 238, 239), PackedInt32Array(241, 243, 245), PackedInt32Array(245, 247, 248), PackedInt32Array(250, 251, 236), PackedInt32Array(236, 239, 241), PackedInt32Array(241, 245, 248), PackedInt32Array(248, 250, 236), PackedInt32Array(236, 241, 248), PackedInt32Array(261, 253, 254), PackedInt32Array(254, 255, 256), PackedInt32Array(256, 257, 258), PackedInt32Array(258, 259, 260), PackedInt32Array(260, 261, 254), PackedInt32Array(254, 256, 258), PackedInt32Array(258, 260, 254), PackedInt32Array(271, 262, 263), PackedInt32Array(263, 264, 265), PackedInt32Array(266, 267, 268), PackedInt32Array(268, 269, 270), PackedInt32Array(270, 271, 263), PackedInt32Array(263, 265, 266), PackedInt32Array(266, 268, 270), PackedInt32Array(270, 263, 266), PackedInt32Array(272, 273, 274), PackedInt32Array(274, 275, 276), PackedInt32Array(276, 277, 278), PackedInt32Array(272, 274, 276), PackedInt32Array(276, 278, 272), PackedInt32Array(288, 279, 280), PackedInt32Array(280, 281, 282), PackedInt32Array(282, 283, 284), PackedInt32Array(285, 286, 287), PackedInt32Array(287, 288, 280), PackedInt32Array(280, 282, 284), PackedInt32Array(285, 287, 280), PackedInt32Array(280, 284, 285), PackedInt32Array(296, 289, 290), PackedInt32Array(291, 292, 293), PackedInt32Array(293, 294, 295), PackedInt32Array(295, 296, 290), PackedInt32Array(290, 291, 293), PackedInt32Array(293, 295, 290), PackedInt32Array(297, 298, 299), PackedInt32Array(300, 301, 302), PackedInt32Array(302, 303, 304), PackedInt32Array(304, 305, 297), PackedInt32Array(297, 299, 300), PackedInt32Array(302, 304, 297), PackedInt32Array(297, 300, 302), PackedInt32Array(312, 306, 307), PackedInt32Array(307, 308, 309), PackedInt32Array(309, 310, 311), PackedInt32Array(311, 312, 307), PackedInt32Array(307, 309, 311), PackedInt32Array(317, 313, 314), PackedInt32Array(314, 315, 316), PackedInt32Array(316, 317, 314), PackedInt32Array(324, 318, 319), PackedInt32Array(319, 320, 321), PackedInt32Array(321, 322, 323), PackedInt32Array(323, 324, 319), PackedInt32Array(319, 321, 323), PackedInt32Array(329, 325, 326), PackedInt32Array(326, 327, 328), PackedInt32Array(328, 329, 326), PackedInt32Array(332, 330, 331), PackedInt32Array(349, 333, 334), PackedInt32Array(335, 336, 337), PackedInt32Array(337, 338, 339), PackedInt32Array(339, 340, 341), PackedInt32Array(341, 342, 343), PackedInt32Array(343, 344, 345), PackedInt32Array(345, 346, 347), PackedInt32Array(347, 348, 349), PackedInt32Array(349, 334, 335), PackedInt32Array(335, 337, 339), PackedInt32Array(339, 341, 343), PackedInt32Array(343, 345, 347), PackedInt32Array(347, 349, 335), PackedInt32Array(335, 339, 343), PackedInt32Array(343, 347, 335), PackedInt32Array(354, 350, 351), PackedInt32Array(351, 352, 353), PackedInt32Array(353, 354, 351), PackedInt32Array(358, 355, 356), PackedInt32Array(356, 357, 358)] -bones = ["Bone-0", PackedFloat32Array(0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 1, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 1, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-1", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0.7, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 1, 0.7, 1, 1, 0.7, 0.7, 0.7, 1, 1, 1, 1, 1, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-2", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0.7, 0.7, 0, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 1, 0.7, 0.7, 1, 1, 1, 1, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-3", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-4", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-5", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0.7, 0.7, 0.7, 0.7, 0, 0.7, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-6", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-7", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0.7, 0.7, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-8", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0.7, 0.7, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7), "Bone-9", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7)] -internal_vertex_count = 235 +polygon = PackedVector2Array(23, 18, 22, 18, 22, 29, 20, 29, 18, 29, 14, 35, 13, 35, 12, 39, 11, 39, 11, 47, 14, 52, 15, 52, 15, 55, 13, 56, 13, 66, 11, 68, 11, 76, 13, 78, 13, 80, 17, 83, 17, 86, 16, 87, 15, 87, 15, 90, 14, 91, 13, 91, 10, 97, 9, 97, 9, 104, 11, 106, 11, 110, 14, 113, 15, 113, 15, 115, 16, 115, 15, 128, 14, 128, 14, 137, 16, 142, 16, 146, 15, 146, 15, 154, 14, 155, 13, 155, 13, 160, 11, 162, 11, 168, 12, 170, 13, 170, 14, 175, 15, 175, 14, 205, 14, 210, 15, 214, 16, 214, 16, 222, 17, 222, 17, 248, 18, 250, 19, 250, 19, 259, 21, 266, 22, 266, 22, 279, 23, 279, 23, 342, 23, 370, 27, 382, 27, 387, 31, 391, 31, 393, 34, 393, 34, 394, 39, 393, 48, 393, 49, 391, 51, 391, 54, 387, 56, 387, 59, 375, 60, 375, 60, 343, 60, 305, 57, 265, 57, 252, 53, 215, 52, 215, 52, 209, 54, 206, 54, 202, 48, 185, 47, 185, 48, 176, 48, 159, 45, 148, 44, 148, 50, 136, 51, 136, 51, 127, 50, 124, 49, 124, 49, 118, 46, 109, 45, 109, 46, 99, 47, 99, 47, 90, 45, 86, 44, 86, 45, 80, 45, 73, 49, 67, 49, 57, 40, 41, 39, 41, 40, 39, 40, 32, 36, 26, 36, 24, 34, 23, 34, 22, 33, 23, 32, 23, 23, 11, 40, 32, 40, 39, 39, 41, 40, 41, 43.9375, 48, 27.5, 48, 27.5, 29.5, 38.3333, 29.5, 49, 57, 49, 66.5, 46, 66.5, 46, 51.6667, 46, 51.6667, 46, 66.5, 27.5, 66.5, 27.5, 48, 43.9375, 48, 27.5, 17, 27.5, 29.5, 17.6667, 29.5, 18, 29, 22, 29, 22, 18, 23, 18, 23, 11, 27.5, 66.5, 12.5, 66.5, 13, 66, 13, 56, 15, 55, 15, 52, 14, 52, 11.6, 48, 27.5, 48, 27.5, 48, 11.6, 48, 11, 47, 11, 39, 12, 39, 13, 35, 14, 35, 17.6667, 29.5, 27.5, 29.5, 32, 23, 33, 23, 34, 22, 34, 23, 36, 24, 36, 26, 38.3333, 29.5, 27.5, 29.5, 27.5, 17, 46, 71.5, 45, 73, 45, 80, 44.1667, 85, 27.5, 85, 27.5, 66.5, 46, 66.5, 47, 90, 47, 99, 46, 99, 46, 88, 44, 86, 45, 86, 46, 88, 46, 99, 45.55, 103.5, 27.5, 103.5, 27.5, 85, 44.1667, 85, 49, 67, 46, 71.5, 46, 66.5, 49, 66.5, 27.5, 103.5, 9, 103.5, 9, 97, 10, 97, 13, 91, 14, 91, 15, 90, 15, 87, 16, 87, 17, 86, 17, 85, 27.5, 85, 27.5, 85, 17, 85, 17, 83, 13, 80, 13, 78, 11, 76, 11, 68, 12.5, 66.5, 27.5, 66.5, 45, 109, 46, 109, 46, 122, 27.5, 122, 27.5, 103.5, 45.55, 103.5, 49, 124, 50, 124, 51, 127, 51, 136, 50, 136, 47.75, 140.5, 46, 140.5, 46, 122, 49, 122, 46, 140.5, 27.5, 140.5, 27.5, 122, 46, 122, 49, 118, 49, 122, 46, 122, 46, 109, 27.5, 140.5, 15.4, 140.5, 14, 137, 14, 128, 15, 128, 15.4615, 122, 27.5, 122, 27.5, 122, 15.4615, 122, 16, 115, 15, 115, 15, 113, 14, 113, 11, 110, 11, 106, 9, 104, 9, 103.5, 27.5, 103.5, 46, 159, 27.5, 159, 27.5, 140.5, 46, 140.5, 48, 176, 47.8333, 177.5, 46, 177.5, 46, 159, 48, 159, 46, 177.5, 27.5, 177.5, 27.5, 159, 46, 159, 48, 159, 46, 159, 46, 151.667, 46, 144, 46, 140.5, 47.75, 140.5, 27.5, 177.5, 14.9167, 177.5, 15, 175, 14, 175, 13, 170, 12, 170, 11, 168, 11, 162, 13, 160, 13, 159, 27.5, 159, 27.5, 159, 13, 159, 13, 155, 14, 155, 15, 154, 15, 146, 16, 146, 16, 142, 15.4, 140.5, 27.5, 140.5, 46, 196, 27.5, 196, 27.5, 177.5, 46, 177.5, 54, 202, 54, 206, 52, 209, 52, 214.5, 46, 214.5, 46, 196, 51.8824, 196, 46, 214.5, 27.5, 214.5, 27.5, 196, 46, 196, 47, 185, 48, 185, 51.8824, 196, 46, 196, 46, 177.5, 47.8333, 177.5, 27.5, 214.5, 16, 214.5, 16, 214, 15, 214, 14, 210, 14, 205, 14.3, 196, 27.5, 196, 27.5, 196, 14.3, 196, 14.9167, 177.5, 27.5, 177.5, 46, 233, 27.5, 233, 27.5, 214.5, 46, 214.5, 56.9459, 251.5, 46, 251.5, 46, 233, 54.9459, 233, 46, 251.5, 27.5, 251.5, 27.5, 233, 46, 233, 52, 215, 53, 215, 54.9459, 233, 46, 233, 46, 214.5, 52, 214.5, 27.5, 251.5, 19, 251.5, 19, 250, 18, 250, 17, 248, 17, 233, 27.5, 233, 27.5, 233, 17, 233, 17, 222, 16, 222, 16, 214.5, 27.5, 214.5, 46, 270, 27.5, 270, 27.5, 251.5, 46, 251.5, 58.7625, 288.5, 46, 288.5, 46, 270, 57.375, 270, 46, 288.5, 27.5, 288.5, 27.5, 270, 46, 270, 57, 252, 57, 265, 57.375, 270, 46, 270, 46, 251.5, 56.9459, 251.5, 27.5, 288.5, 23, 288.5, 23, 279, 22, 279, 22, 270, 27.5, 270, 27.5, 270, 22, 270, 22, 266, 21, 266, 19, 259, 19, 251.5, 27.5, 251.5, 46, 307, 27.5, 307, 27.5, 288.5, 46, 288.5, 60, 325.5, 46, 325.5, 46, 307, 60, 307, 46, 325.5, 27.5, 325.5, 27.5, 307, 46, 307, 60, 305, 60, 307, 46, 307, 46, 288.5, 58.7625, 288.5, 27.5, 325.5, 23, 325.5, 23, 307, 27.5, 307, 27.5, 307, 23, 307, 23, 288.5, 27.5, 288.5, 46, 344, 27.5, 344, 27.5, 325.5, 46, 325.5, 60, 362.5, 46, 362.5, 46, 344, 60, 344, 46, 362.5, 27.5, 362.5, 27.5, 344, 46, 344, 60, 344, 46, 344, 46, 325.5, 60, 325.5, 27.5, 362.5, 23, 362.5, 23, 344, 27.5, 344, 27.5, 344, 23, 344, 23, 325.5, 27.5, 325.5, 46, 381, 27.5, 381, 27.5, 362.5, 46, 362.5, 56, 387, 54, 387, 51, 391, 49, 391, 48, 393, 46, 393, 46, 381, 57.5, 381, 46, 393, 39, 393, 34, 394, 34, 393, 31, 393, 31, 391, 27.5, 387.5, 27.5, 381, 46, 381, 60, 375, 59, 375, 57.5, 381, 46, 381, 46, 362.5, 60, 362.5, 27.5, 387.5, 27, 387, 27, 382, 26.6667, 381, 27.5, 381, 27.5, 381, 26.6667, 381, 23, 370, 23, 362.5, 27.5, 362.5) +polygons = [PackedInt32Array(131, 124, 125), PackedInt32Array(126, 127, 128), PackedInt32Array(128, 129, 130), PackedInt32Array(130, 131, 125), PackedInt32Array(126, 128, 130), PackedInt32Array(130, 125, 126), PackedInt32Array(135, 132, 133), PackedInt32Array(133, 134, 135), PackedInt32Array(140, 136, 137), PackedInt32Array(137, 138, 139), PackedInt32Array(139, 140, 137), PackedInt32Array(148, 141, 142), PackedInt32Array(142, 143, 144), PackedInt32Array(145, 146, 147), PackedInt32Array(147, 148, 142), PackedInt32Array(142, 144, 145), PackedInt32Array(145, 147, 142), PackedInt32Array(149, 150, 151), PackedInt32Array(151, 152, 153), PackedInt32Array(154, 155, 156), PackedInt32Array(156, 157, 149), PackedInt32Array(149, 151, 153), PackedInt32Array(154, 156, 149), PackedInt32Array(149, 153, 154), PackedInt32Array(166, 158, 159), PackedInt32Array(159, 160, 161), PackedInt32Array(162, 163, 164), PackedInt32Array(164, 165, 166), PackedInt32Array(159, 161, 162), PackedInt32Array(162, 164, 166), PackedInt32Array(166, 159, 162), PackedInt32Array(168, 169, 170), PackedInt32Array(170, 171, 172), PackedInt32Array(172, 173, 174), PackedInt32Array(174, 175, 167), PackedInt32Array(168, 170, 172), PackedInt32Array(172, 174, 167), PackedInt32Array(167, 168, 172), PackedInt32Array(182, 176, 177), PackedInt32Array(177, 178, 179), PackedInt32Array(179, 180, 181), PackedInt32Array(181, 182, 177), PackedInt32Array(177, 179, 181), PackedInt32Array(186, 183, 184), PackedInt32Array(184, 185, 186), PackedInt32Array(187, 188, 189), PackedInt32Array(189, 190, 191), PackedInt32Array(191, 192, 193), PackedInt32Array(193, 194, 187), PackedInt32Array(187, 189, 191), PackedInt32Array(191, 193, 187), PackedInt32Array(198, 195, 196), PackedInt32Array(196, 197, 198), PackedInt32Array(210, 199, 200), PackedInt32Array(200, 201, 202), PackedInt32Array(202, 203, 204), PackedInt32Array(205, 206, 207), PackedInt32Array(208, 209, 210), PackedInt32Array(210, 200, 202), PackedInt32Array(202, 204, 205), PackedInt32Array(205, 207, 208), PackedInt32Array(210, 202, 205), PackedInt32Array(205, 208, 210), PackedInt32Array(219, 211, 212), PackedInt32Array(213, 214, 215), PackedInt32Array(215, 216, 217), PackedInt32Array(217, 218, 219), PackedInt32Array(219, 212, 213), PackedInt32Array(213, 215, 217), PackedInt32Array(217, 219, 213), PackedInt32Array(220, 221, 222), PackedInt32Array(222, 223, 224), PackedInt32Array(224, 225, 220), PackedInt32Array(220, 222, 224), PackedInt32Array(226, 227, 228), PackedInt32Array(228, 229, 230), PackedInt32Array(230, 231, 232), PackedInt32Array(232, 233, 234), PackedInt32Array(226, 228, 230), PackedInt32Array(232, 234, 226), PackedInt32Array(226, 230, 232), PackedInt32Array(238, 235, 236), PackedInt32Array(236, 237, 238), PackedInt32Array(242, 239, 240), PackedInt32Array(240, 241, 242), PackedInt32Array(249, 243, 244), PackedInt32Array(244, 245, 246), PackedInt32Array(247, 248, 249), PackedInt32Array(244, 246, 247), PackedInt32Array(247, 249, 244), PackedInt32Array(260, 250, 251), PackedInt32Array(252, 253, 254), PackedInt32Array(254, 255, 256), PackedInt32Array(257, 258, 259), PackedInt32Array(260, 251, 252), PackedInt32Array(254, 256, 257), PackedInt32Array(257, 259, 260), PackedInt32Array(260, 252, 254), PackedInt32Array(254, 257, 260), PackedInt32Array(264, 261, 262), PackedInt32Array(262, 263, 264), PackedInt32Array(269, 265, 266), PackedInt32Array(266, 267, 268), PackedInt32Array(268, 269, 266), PackedInt32Array(273, 270, 271), PackedInt32Array(271, 272, 273), PackedInt32Array(276, 274, 275), PackedInt32Array(279, 277, 278), PackedInt32Array(290, 280, 281), PackedInt32Array(282, 283, 284), PackedInt32Array(284, 285, 286), PackedInt32Array(286, 287, 288), PackedInt32Array(288, 289, 290), PackedInt32Array(290, 281, 282), PackedInt32Array(284, 286, 288), PackedInt32Array(288, 290, 282), PackedInt32Array(282, 284, 288), PackedInt32Array(300, 291, 292), PackedInt32Array(292, 293, 294), PackedInt32Array(295, 296, 297), PackedInt32Array(298, 299, 300), PackedInt32Array(292, 294, 295), PackedInt32Array(297, 298, 300), PackedInt32Array(300, 292, 295), PackedInt32Array(295, 297, 300), PackedInt32Array(304, 301, 302), PackedInt32Array(302, 303, 304), PackedInt32Array(311, 305, 306), PackedInt32Array(307, 308, 309), PackedInt32Array(309, 310, 311), PackedInt32Array(311, 306, 307), PackedInt32Array(307, 309, 311), PackedInt32Array(315, 312, 313), PackedInt32Array(313, 314, 315), PackedInt32Array(316, 317, 318), PackedInt32Array(320, 321, 316), PackedInt32Array(316, 318, 319), PackedInt32Array(319, 320, 316), PackedInt32Array(329, 322, 323), PackedInt32Array(324, 325, 326), PackedInt32Array(326, 327, 328), PackedInt32Array(329, 323, 324), PackedInt32Array(324, 326, 328), PackedInt32Array(328, 329, 324), PackedInt32Array(333, 330, 331), PackedInt32Array(331, 332, 333), PackedInt32Array(337, 334, 335), PackedInt32Array(335, 336, 337), PackedInt32Array(341, 338, 339), PackedInt32Array(339, 340, 341), PackedInt32Array(345, 342, 343), PackedInt32Array(343, 344, 345), PackedInt32Array(346, 347, 348), PackedInt32Array(348, 349, 350), PackedInt32Array(350, 351, 346), PackedInt32Array(346, 348, 350), PackedInt32Array(358, 352, 353), PackedInt32Array(354, 355, 356), PackedInt32Array(356, 357, 358), PackedInt32Array(358, 353, 354), PackedInt32Array(354, 356, 358), PackedInt32Array(364, 359, 360), PackedInt32Array(361, 362, 363), PackedInt32Array(364, 360, 361), PackedInt32Array(361, 363, 364), PackedInt32Array(368, 365, 366), PackedInt32Array(366, 367, 368), PackedInt32Array(372, 369, 370), PackedInt32Array(370, 371, 372), PackedInt32Array(376, 373, 374), PackedInt32Array(374, 375, 376), PackedInt32Array(382, 377, 378), PackedInt32Array(378, 379, 380), PackedInt32Array(380, 381, 382), PackedInt32Array(382, 378, 380), PackedInt32Array(388, 383, 384), PackedInt32Array(385, 386, 387), PackedInt32Array(388, 384, 385), PackedInt32Array(385, 387, 388), PackedInt32Array(395, 389, 390), PackedInt32Array(391, 392, 393), PackedInt32Array(393, 394, 395), PackedInt32Array(395, 390, 391), PackedInt32Array(391, 393, 395), PackedInt32Array(399, 396, 397), PackedInt32Array(397, 398, 399), PackedInt32Array(403, 400, 401), PackedInt32Array(401, 402, 403), PackedInt32Array(407, 404, 405), PackedInt32Array(405, 406, 407), PackedInt32Array(412, 408, 409), PackedInt32Array(409, 410, 411), PackedInt32Array(411, 412, 409), PackedInt32Array(416, 413, 414), PackedInt32Array(414, 415, 416), PackedInt32Array(420, 417, 418), PackedInt32Array(418, 419, 420), PackedInt32Array(424, 421, 422), PackedInt32Array(422, 423, 424), PackedInt32Array(428, 425, 426), PackedInt32Array(426, 427, 428), PackedInt32Array(432, 429, 430), PackedInt32Array(430, 431, 432), PackedInt32Array(436, 433, 434), PackedInt32Array(434, 435, 436), PackedInt32Array(440, 437, 438), PackedInt32Array(438, 439, 440), PackedInt32Array(444, 441, 442), PackedInt32Array(442, 443, 444), PackedInt32Array(448, 445, 446), PackedInt32Array(446, 447, 448), PackedInt32Array(456, 449, 450), PackedInt32Array(450, 451, 452), PackedInt32Array(452, 453, 454), PackedInt32Array(454, 455, 456), PackedInt32Array(456, 450, 452), PackedInt32Array(452, 454, 456), PackedInt32Array(465, 457, 458), PackedInt32Array(458, 459, 460), PackedInt32Array(460, 461, 462), PackedInt32Array(462, 463, 464), PackedInt32Array(464, 465, 458), PackedInt32Array(458, 460, 462), PackedInt32Array(462, 464, 458), PackedInt32Array(471, 466, 467), PackedInt32Array(467, 468, 469), PackedInt32Array(469, 470, 471), PackedInt32Array(471, 467, 469), PackedInt32Array(476, 472, 473), PackedInt32Array(474, 475, 476), PackedInt32Array(476, 473, 474), PackedInt32Array(481, 477, 478), PackedInt32Array(478, 479, 480), PackedInt32Array(480, 481, 478)] +bones = ["Bone-0", PackedFloat32Array(1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-1", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-2", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-3", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-4", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-5", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-6", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-7", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-8", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1), "Bone-9", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1)] +internal_vertex_count = 358 script = ExtResource("2_2dapw") vertex_interval = 37 -radius = 35 -shape_type = "Rectangle" -rigidbody_scene = ExtResource("3_6ern4") margin_pixels = -1 -voronoi_interval = 0.15 -max_joint_distance_ratio = 1.5 +min_area = 0.45 disable_collision = false stiffness = 128.0 damping = 0.6 rest_length_ratio = 1.1 length_ratio = 0.1 +softness = 20.0 +radius = 35 +shape_type = "Rectangle" +rigidbody_scene = ExtResource("3_6ern4") physics_material_override = ExtResource("3_durpg") [node name="Skeleton2D" type="Skeleton2D" parent="Asparagus3"] visible = false -modification_stack = SubResource("SkeletonModificationStack2D_2aa8t") +modification_stack = SubResource("SkeletonModificationStack2D_utlts") [node name="Bone-0" type="Bone2D" parent="Asparagus3/Skeleton2D"] -position = Vector2(30, 40.0251) -rotation = 1.59279 -scale = Vector2(1, 1) -rest = Transform2D(-0.0219893, 0.999758, -0.999758, -0.0219893, 30, 40.0251) +position = Vector2(30, 38.75) +rotation = 1.59241 +rest = Transform2D(-0.0216166, 0.999766, -0.999766, -0.0216166, 30, 38.75) auto_calculate_length_and_angle = false length = 37.0 bone_angle = 0.0 -metadata/vert_owned = [124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166] +metadata/vert_owned = [124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175] +metadata/idx = 0 metadata/connected_nodes_paths = [NodePath("Bone-1")] +metadata/connected_nodes_idx = [1] metadata/_local_pose_override_enabled_ = true [node name="Bone-1" type="Bone2D" parent="Asparagus3/Skeleton2D"] -position = Vector2(29, 85.4907) -rotation = 1.52331 -rest = Transform2D(0.0474652, 0.998873, -0.998873, 0.0474652, 29, 85.4907) +position = Vector2(29, 85) +rotation = 1.54378 +rest = Transform2D(0.0270171, 0.999635, -0.999635, 0.0270171, 29, 85) auto_calculate_length_and_angle = false length = 37.0 bone_angle = 0.0 -metadata/vert_owned = [167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198] -metadata/connected_nodes_paths = [NodePath("Bone-0"), NodePath("Bone-2"), NodePath("Bone-3")] +metadata/vert_owned = [176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219] +metadata/idx = 1 +metadata/connected_nodes_paths = [NodePath("Bone-0"), NodePath("Bone-2")] +metadata/connected_nodes_idx = [0, 2] metadata/_local_pose_override_enabled_ = true [node name="Bone-2" type="Bone2D" parent="Asparagus3/Skeleton2D"] -position = Vector2(30.7143, 121.567) -rotation = 1.59948 -rest = Transform2D(-0.0286785, 0.999589, -0.999589, -0.0286785, 30.7143, 121.567) +position = Vector2(30, 122) +rotation = 1.58431 +scale = Vector2(1, 1) +rest = Transform2D(-0.0135122, 0.999909, -0.999909, -0.0135122, 30, 122) auto_calculate_length_and_angle = false length = 37.0 bone_angle = 0.0 -metadata/vert_owned = [199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225] -metadata/connected_nodes_paths = [NodePath("Bone-1"), NodePath("Bone-3"), NodePath("Bone-4")] +metadata/vert_owned = [220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260] +metadata/idx = 2 +metadata/connected_nodes_paths = [NodePath("Bone-1"), NodePath("Bone-3")] +metadata/connected_nodes_idx = [1, 3] metadata/_local_pose_override_enabled_ = true [node name="Bone-3" type="Bone2D" parent="Asparagus3/Skeleton2D"] -position = Vector2(29.6521, 158.592) -rotation = 1.45819 -rest = Transform2D(0.112373, 0.993666, -0.993666, 0.112373, 29.6521, 158.592) +position = Vector2(29.5, 159) +rotation = 1.44977 +rest = Transform2D(0.120732, 0.992685, -0.992685, 0.120732, 29.5, 159) auto_calculate_length_and_angle = false length = 37.0 bone_angle = 0.0 -metadata/vert_owned = [226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252] -metadata/connected_nodes_paths = [NodePath("Bone-1"), NodePath("Bone-2"), NodePath("Bone-4"), NodePath("Bone-5")] +metadata/vert_owned = [261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300] +metadata/idx = 3 +metadata/connected_nodes_paths = [NodePath("Bone-2"), NodePath("Bone-4")] +metadata/connected_nodes_idx = [2, 4] metadata/_local_pose_override_enabled_ = true [node name="Bone-4" type="Bone2D" parent="Asparagus3/Skeleton2D"] -position = Vector2(34, 197.039) -rotation = 1.50548 -scale = Vector2(1, 1) -rest = Transform2D(0.0652709, 0.997868, -0.997868, 0.0652709, 34, 197.039) +position = Vector2(34, 196) +rotation = -1.69182 +rest = Transform2D(-0.120732, -0.992685, 0.992685, -0.120732, 34, 196) auto_calculate_length_and_angle = false length = 37.0 bone_angle = 0.0 -metadata/vert_owned = [253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271] -metadata/connected_nodes_paths = [NodePath("Bone-2"), NodePath("Bone-3"), NodePath("Bone-5"), NodePath("Bone-6")] +metadata/vert_owned = [301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333] +metadata/idx = 4 +metadata/connected_nodes_paths = [NodePath("Bone-5"), NodePath("Bone-3")] +metadata/connected_nodes_idx = [5, 3] metadata/_local_pose_override_enabled_ = true [node name="Bone-5" type="Bone2D" parent="Asparagus3/Skeleton2D"] -position = Vector2(36.4704, 234.807) -rotation = 1.50162 -rest = Transform2D(0.0691196, 0.997608, -0.997608, 0.0691196, 36.4704, 234.807) +position = Vector2(36.473, 233) +rotation = 1.5058 +scale = Vector2(1, 1) +rest = Transform2D(0.0649508, 0.997888, -0.997888, 0.0649508, 36.473, 233) auto_calculate_length_and_angle = false length = 37.0 bone_angle = 0.0 -metadata/vert_owned = [272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288] -metadata/connected_nodes_paths = [NodePath("Bone-3"), NodePath("Bone-4"), NodePath("Bone-6"), NodePath("Bone-7")] +metadata/vert_owned = [334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364] +metadata/idx = 5 +metadata/connected_nodes_paths = [NodePath("Bone-4"), NodePath("Bone-6")] +metadata/connected_nodes_idx = [4, 6] metadata/_local_pose_override_enabled_ = true [node name="Bone-6" type="Bone2D" parent="Asparagus3/Skeleton2D"] -position = Vector2(38.9404, 270.456) -rotation = 1.50355 -scale = Vector2(1, 1) -rest = Transform2D(0.0671995, 0.99774, -0.99774, 0.0671995, 38.9404, 270.456) +position = Vector2(38.8812, 270) +rotation = 1.50014 +rest = Transform2D(0.070601, 0.997505, -0.997505, 0.070601, 38.8812, 270) auto_calculate_length_and_angle = false length = 37.0 bone_angle = 0.0 -metadata/vert_owned = [289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305] -metadata/connected_nodes_paths = [NodePath("Bone-4"), NodePath("Bone-5"), NodePath("Bone-7"), NodePath("Bone-8")] +metadata/vert_owned = [365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395] +metadata/idx = 6 +metadata/connected_nodes_paths = [NodePath("Bone-5"), NodePath("Bone-7")] +metadata/connected_nodes_idx = [5, 7] metadata/_local_pose_override_enabled_ = true [node name="Bone-7" type="Bone2D" parent="Asparagus3/Skeleton2D"] -position = Vector2(41.5, 308.46) +position = Vector2(41.5, 307) rotation = 1.5708 -rest = Transform2D(-4.37114e-08, 1, -1, -4.37114e-08, 41.5, 308.46) +rest = Transform2D(-4.37114e-08, 1, -1, -4.37114e-08, 41.5, 307) auto_calculate_length_and_angle = false length = 37.0 bone_angle = 0.0 -metadata/vert_owned = [306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317] -metadata/connected_nodes_paths = [NodePath("Bone-5"), NodePath("Bone-6"), NodePath("Bone-8"), NodePath("Bone-9")] +metadata/vert_owned = [396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420] +metadata/idx = 7 +metadata/connected_nodes_paths = [NodePath("Bone-6"), NodePath("Bone-8")] +metadata/connected_nodes_idx = [6, 8] metadata/_local_pose_override_enabled_ = true [node name="Bone-8" type="Bone2D" parent="Asparagus3/Skeleton2D"] -position = Vector2(41.5, 343.967) -rotation = -1.5708 -rest = Transform2D(-4.37114e-08, -1, 1, -4.37114e-08, 41.5, 343.967) +position = Vector2(41.5, 344) +rotation = 1.5708 +rest = Transform2D(-4.37114e-08, 1, -1, -4.37114e-08, 41.5, 344) auto_calculate_length_and_angle = false length = 37.0 bone_angle = 0.0 -metadata/vert_owned = [318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332] -metadata/connected_nodes_paths = [NodePath("Bone-6"), NodePath("Bone-7"), NodePath("Bone-9")] +metadata/vert_owned = [421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444] +metadata/idx = 8 +metadata/connected_nodes_paths = [NodePath("Bone-7"), NodePath("Bone-9")] +metadata/connected_nodes_idx = [7, 9] metadata/_local_pose_override_enabled_ = true [node name="Bone-9" type="Bone2D" parent="Asparagus3/Skeleton2D"] -position = Vector2(41.5, 377.476) +position = Vector2(41.5, 378.25) rotation = -1.5708 -rest = Transform2D(-4.37114e-08, -1, 1, -4.37114e-08, 41.5, 377.476) +rest = Transform2D(-4.37114e-08, -1, 1, -4.37114e-08, 41.5, 378.25) auto_calculate_length_and_angle = false length = 37.0 bone_angle = 0.0 -metadata/vert_owned = [333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358] -metadata/connected_nodes_paths = [NodePath("Bone-7"), NodePath("Bone-8")] +metadata/vert_owned = [445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481] +metadata/idx = 9 +metadata/connected_nodes_paths = [NodePath("Bone-8")] +metadata/connected_nodes_idx = [8] metadata/_local_pose_override_enabled_ = true -[node name="Bone-0" parent="Asparagus3" instance=ExtResource("3_6ern4")] -position = Vector2(30, 40.0251) +[node name="Bone-0" type="RigidBody2D" parent="Asparagus3" instance=ExtResource("3_6ern4")] +position = Vector2(30, 38.75) +input_pickable = true mass = 0.1 physics_material_override = ExtResource("3_durpg") +script = ExtResource("11_tqnjl") +metadata/idx = 0 metadata/bone_name = &"Bone-0" [node name="RectangleShape2D" type="CollisionShape2D" parent="Asparagus3/Bone-0"] -shape = SubResource("RectangleShape2D_hg0tg") +shape = SubResource("RectangleShape2D_4p8eb") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Asparagus3/Bone-0"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-0") update_rotation = false update_scale = false [node name="Joint2D-Bone-0-Bone-1" type="PinJoint2D" parent="Asparagus3/Bone-0"] visible = false -rotation = 0.0219911 +rotation = 0.0216183 node_a = NodePath("..") node_b = NodePath("../../Bone-1") disable_collision = false -softness = 60.0 +softness = 20.0 -[node name="Bone-1" parent="Asparagus3" instance=ExtResource("3_6ern4")] -position = Vector2(29, 85.4907) +[node name="Bone-1" type="RigidBody2D" parent="Asparagus3" instance=ExtResource("3_6ern4")] +position = Vector2(29, 85) +input_pickable = true mass = 0.1 physics_material_override = ExtResource("3_durpg") +script = ExtResource("11_tqnjl") +metadata/idx = 1 metadata/bone_name = &"Bone-1" [node name="RectangleShape2D" type="CollisionShape2D" parent="Asparagus3/Bone-1"] -shape = SubResource("RectangleShape2D_hg0tg") +shape = SubResource("RectangleShape2D_4p8eb") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Asparagus3/Bone-1"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-1") update_rotation = false update_scale = false [node name="Joint2D-Bone-1-Bone-0" type="PinJoint2D" parent="Asparagus3/Bone-1"] visible = false -rotation = -3.1196 +rotation = -3.11997 node_a = NodePath("..") node_b = NodePath("../../Bone-0") disable_collision = false -softness = 60.0 +softness = 20.0 [node name="Joint2D-Bone-1-Bone-2" type="PinJoint2D" parent="Asparagus3/Bone-1"] visible = false -rotation = -0.0474829 +rotation = -0.0270204 node_a = NodePath("..") node_b = NodePath("../../Bone-2") disable_collision = false -softness = 60.0 - -[node name="Joint2D-Bone-1-Bone-3" type="PinJoint2D" parent="Asparagus3/Bone-1"] -visible = false -rotation = -0.00891955 -node_a = NodePath("..") -node_b = NodePath("../../Bone-3") -disable_collision = false -softness = 60.0 +softness = 20.0 -[node name="Bone-2" parent="Asparagus3" instance=ExtResource("3_6ern4")] -position = Vector2(30.7143, 121.567) +[node name="Bone-2" type="RigidBody2D" parent="Asparagus3" instance=ExtResource("3_6ern4")] +position = Vector2(30, 122) +input_pickable = true mass = 0.1 physics_material_override = ExtResource("3_durpg") +script = ExtResource("11_tqnjl") +metadata/idx = 2 metadata/bone_name = &"Bone-2" [node name="RectangleShape2D" type="CollisionShape2D" parent="Asparagus3/Bone-2"] -shape = SubResource("RectangleShape2D_hg0tg") +shape = SubResource("RectangleShape2D_4p8eb") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Asparagus3/Bone-2"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-2") update_rotation = false update_scale = false [node name="Joint2D-Bone-2-Bone-1" type="PinJoint2D" parent="Asparagus3/Bone-2"] visible = false -rotation = -3.18908 +rotation = -3.16861 node_a = NodePath("..") node_b = NodePath("../../Bone-1") disable_collision = false -softness = 60.0 +softness = 20.0 [node name="Joint2D-Bone-2-Bone-3" type="PinJoint2D" parent="Asparagus3/Bone-2"] visible = false -rotation = 0.0286819 +rotation = 0.0135127 node_a = NodePath("..") node_b = NodePath("../../Bone-3") disable_collision = false -softness = 60.0 - -[node name="Joint2D-Bone-2-Bone-4" type="PinJoint2D" parent="Asparagus3/Bone-2"] -visible = false -rotation = -0.0435079 -node_a = NodePath("..") -node_b = NodePath("../../Bone-4") -disable_collision = false -softness = 60.0 +softness = 20.0 -[node name="Bone-3" parent="Asparagus3" instance=ExtResource("3_6ern4")] -position = Vector2(29.6521, 158.592) +[node name="Bone-3" type="RigidBody2D" parent="Asparagus3" instance=ExtResource("3_6ern4")] +position = Vector2(29.5, 159) +input_pickable = true mass = 0.1 physics_material_override = ExtResource("3_durpg") +script = ExtResource("11_tqnjl") +metadata/idx = 3 metadata/bone_name = &"Bone-3" [node name="RectangleShape2D" type="CollisionShape2D" parent="Asparagus3/Bone-3"] -shape = SubResource("RectangleShape2D_hg0tg") +shape = SubResource("RectangleShape2D_4p8eb") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Asparagus3/Bone-3"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-3") update_rotation = false update_scale = false -[node name="Joint2D-Bone-3-Bone-1" type="PinJoint2D" parent="Asparagus3/Bone-3"] -visible = false -rotation = -3.15051 -node_a = NodePath("..") -node_b = NodePath("../../Bone-1") -disable_collision = false -softness = 60.0 - [node name="Joint2D-Bone-3-Bone-2" type="PinJoint2D" parent="Asparagus3/Bone-3"] visible = false -rotation = -3.11291 +rotation = -3.12808 node_a = NodePath("..") node_b = NodePath("../../Bone-2") disable_collision = false -softness = 60.0 +softness = 20.0 [node name="Joint2D-Bone-3-Bone-4" type="PinJoint2D" parent="Asparagus3/Bone-3"] visible = false -rotation = -0.112611 +rotation = -0.121027 node_a = NodePath("..") node_b = NodePath("../../Bone-4") disable_collision = false -softness = 60.0 - -[node name="Joint2D-Bone-3-Bone-5" type="PinJoint2D" parent="Asparagus3/Bone-3"] -visible = false -rotation = -0.0892249 -node_a = NodePath("..") -node_b = NodePath("../../Bone-5") -disable_collision = false -softness = 60.0 +softness = 20.0 -[node name="Bone-4" parent="Asparagus3" instance=ExtResource("3_6ern4")] -position = Vector2(34, 197.039) +[node name="Bone-4" type="RigidBody2D" parent="Asparagus3" instance=ExtResource("3_6ern4")] +position = Vector2(34, 196) +input_pickable = true mass = 0.1 physics_material_override = ExtResource("3_durpg") +script = ExtResource("11_tqnjl") +metadata/idx = 4 metadata/bone_name = &"Bone-4" [node name="RectangleShape2D" type="CollisionShape2D" parent="Asparagus3/Bone-4"] -shape = SubResource("RectangleShape2D_hg0tg") +shape = SubResource("RectangleShape2D_4p8eb") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Asparagus3/Bone-4"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-4") update_rotation = false update_scale = false -[node name="Joint2D-Bone-4-Bone-2" type="PinJoint2D" parent="Asparagus3/Bone-4"] -visible = false -rotation = -3.1851 -node_a = NodePath("..") -node_b = NodePath("../../Bone-2") -disable_collision = false -softness = 60.0 - -[node name="Joint2D-Bone-4-Bone-3" type="PinJoint2D" parent="Asparagus3/Bone-4"] -visible = false -rotation = -3.2542 -node_a = NodePath("..") -node_b = NodePath("../../Bone-3") -disable_collision = false -softness = 60.0 - [node name="Joint2D-Bone-4-Bone-5" type="PinJoint2D" parent="Asparagus3/Bone-4"] visible = false -rotation = -0.0653178 +rotation = -0.066738 node_a = NodePath("..") node_b = NodePath("../../Bone-5") disable_collision = false -softness = 60.0 +softness = 20.0 -[node name="Joint2D-Bone-4-Bone-6" type="PinJoint2D" parent="Asparagus3/Bone-4"] +[node name="Joint2D-Bone-4-Bone-3" type="PinJoint2D" parent="Asparagus3/Bone-4"] visible = false -rotation = -0.0671908 +rotation = -3.26262 node_a = NodePath("..") -node_b = NodePath("../../Bone-6") +node_b = NodePath("../../Bone-3") disable_collision = false -softness = 60.0 +softness = 20.0 -[node name="Bone-5" parent="Asparagus3" instance=ExtResource("3_6ern4")] -position = Vector2(36.4704, 234.807) +[node name="Bone-5" type="RigidBody2D" parent="Asparagus3" instance=ExtResource("3_6ern4")] +position = Vector2(36.473, 233) +input_pickable = true mass = 0.1 physics_material_override = ExtResource("3_durpg") +script = ExtResource("11_tqnjl") +metadata/idx = 5 metadata/bone_name = &"Bone-5" [node name="RectangleShape2D" type="CollisionShape2D" parent="Asparagus3/Bone-5"] -shape = SubResource("RectangleShape2D_hg0tg") +shape = SubResource("RectangleShape2D_4p8eb") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Asparagus3/Bone-5"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-5") update_rotation = false update_scale = false -[node name="Joint2D-Bone-5-Bone-3" type="PinJoint2D" parent="Asparagus3/Bone-5"] -visible = false -rotation = -3.23082 -node_a = NodePath("..") -node_b = NodePath("../../Bone-3") -disable_collision = false -softness = 60.0 - [node name="Joint2D-Bone-5-Bone-4" type="PinJoint2D" parent="Asparagus3/Bone-5"] visible = false -rotation = -3.20691 +rotation = -3.20833 node_a = NodePath("..") node_b = NodePath("../../Bone-4") disable_collision = false -softness = 60.0 +softness = 20.0 [node name="Joint2D-Bone-5-Bone-6" type="PinJoint2D" parent="Asparagus3/Bone-5"] visible = false -rotation = -0.0691747 +rotation = -0.0649968 node_a = NodePath("..") node_b = NodePath("../../Bone-6") disable_collision = false -softness = 60.0 - -[node name="Joint2D-Bone-5-Bone-7" type="PinJoint2D" parent="Asparagus3/Bone-5"] -visible = false -rotation = -0.0681816 -node_a = NodePath("..") -node_b = NodePath("../../Bone-7") -disable_collision = false -softness = 60.0 +softness = 20.0 -[node name="Bone-6" parent="Asparagus3" instance=ExtResource("3_6ern4")] -position = Vector2(38.9404, 270.456) +[node name="Bone-6" type="RigidBody2D" parent="Asparagus3" instance=ExtResource("3_6ern4")] +position = Vector2(38.8812, 270) +input_pickable = true mass = 0.1 physics_material_override = ExtResource("3_durpg") +script = ExtResource("11_tqnjl") +metadata/idx = 6 metadata/bone_name = &"Bone-6" [node name="RectangleShape2D" type="CollisionShape2D" parent="Asparagus3/Bone-6"] -shape = SubResource("RectangleShape2D_hg0tg") +shape = SubResource("RectangleShape2D_4p8eb") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Asparagus3/Bone-6"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-6") update_rotation = false update_scale = false -[node name="Joint2D-Bone-6-Bone-4" type="PinJoint2D" parent="Asparagus3/Bone-6"] -visible = false -rotation = -3.20878 -node_a = NodePath("..") -node_b = NodePath("../../Bone-4") -disable_collision = false -softness = 60.0 - [node name="Joint2D-Bone-6-Bone-5" type="PinJoint2D" parent="Asparagus3/Bone-6"] visible = false -rotation = -3.21077 +rotation = -3.20659 node_a = NodePath("..") node_b = NodePath("../../Bone-5") disable_collision = false -softness = 60.0 +softness = 20.0 [node name="Joint2D-Bone-6-Bone-7" type="PinJoint2D" parent="Asparagus3/Bone-6"] visible = false -rotation = -0.0672498 +rotation = -0.0706592 node_a = NodePath("..") node_b = NodePath("../../Bone-7") disable_collision = false -softness = 60.0 - -[node name="Joint2D-Bone-6-Bone-8" type="PinJoint2D" parent="Asparagus3/Bone-6"] -visible = false -rotation = -0.0348056 -node_a = NodePath("..") -node_b = NodePath("../../Bone-8") -disable_collision = false -softness = 60.0 +softness = 20.0 -[node name="Bone-7" parent="Asparagus3" instance=ExtResource("3_6ern4")] -position = Vector2(41.5, 308.46) +[node name="Bone-7" type="RigidBody2D" parent="Asparagus3" instance=ExtResource("3_6ern4")] +position = Vector2(41.5, 307) +input_pickable = true mass = 0.1 physics_material_override = ExtResource("3_durpg") +script = ExtResource("11_tqnjl") +metadata/idx = 7 metadata/bone_name = &"Bone-7" [node name="RectangleShape2D" type="CollisionShape2D" parent="Asparagus3/Bone-7"] -shape = SubResource("RectangleShape2D_hg0tg") +shape = SubResource("RectangleShape2D_4p8eb") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Asparagus3/Bone-7"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-7") update_rotation = false update_scale = false -[node name="Joint2D-Bone-7-Bone-5" type="PinJoint2D" parent="Asparagus3/Bone-7"] -visible = false -rotation = -3.20977 -node_a = NodePath("..") -node_b = NodePath("../../Bone-5") -disable_collision = false -softness = 60.0 - [node name="Joint2D-Bone-7-Bone-6" type="PinJoint2D" parent="Asparagus3/Bone-7"] visible = false -rotation = -3.20884 +rotation = -3.21225 node_a = NodePath("..") node_b = NodePath("../../Bone-6") disable_collision = false -softness = 60.0 +softness = 20.0 [node name="Joint2D-Bone-7-Bone-8" type="PinJoint2D" parent="Asparagus3/Bone-7"] visible = false node_a = NodePath("..") node_b = NodePath("../../Bone-8") disable_collision = false -softness = 60.0 - -[node name="Joint2D-Bone-7-Bone-9" type="PinJoint2D" parent="Asparagus3/Bone-7"] -visible = false -node_a = NodePath("..") -node_b = NodePath("../../Bone-9") -disable_collision = false -softness = 60.0 +softness = 20.0 -[node name="Bone-8" parent="Asparagus3" instance=ExtResource("3_6ern4")] -position = Vector2(41.5, 343.967) +[node name="Bone-8" type="RigidBody2D" parent="Asparagus3" instance=ExtResource("3_6ern4")] +position = Vector2(41.5, 344) +input_pickable = true mass = 0.1 physics_material_override = ExtResource("3_durpg") +script = ExtResource("11_tqnjl") +metadata/idx = 8 metadata/bone_name = &"Bone-8" [node name="RectangleShape2D" type="CollisionShape2D" parent="Asparagus3/Bone-8"] -shape = SubResource("RectangleShape2D_hg0tg") +shape = SubResource("RectangleShape2D_4p8eb") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Asparagus3/Bone-8"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-8") update_rotation = false update_scale = false -[node name="Joint2D-Bone-8-Bone-6" type="PinJoint2D" parent="Asparagus3/Bone-8"] -visible = false -rotation = -3.1764 -node_a = NodePath("..") -node_b = NodePath("../../Bone-6") -disable_collision = false -softness = 60.0 - [node name="Joint2D-Bone-8-Bone-7" type="PinJoint2D" parent="Asparagus3/Bone-8"] visible = false rotation = -3.14159 node_a = NodePath("..") node_b = NodePath("../../Bone-7") disable_collision = false -softness = 60.0 +softness = 20.0 [node name="Joint2D-Bone-8-Bone-9" type="PinJoint2D" parent="Asparagus3/Bone-8"] visible = false node_a = NodePath("..") node_b = NodePath("../../Bone-9") disable_collision = false -softness = 60.0 +softness = 20.0 -[node name="Bone-9" parent="Asparagus3" instance=ExtResource("3_6ern4")] -position = Vector2(41.5, 377.476) +[node name="Bone-9" type="RigidBody2D" parent="Asparagus3" instance=ExtResource("3_6ern4")] +position = Vector2(41.5, 378.25) +input_pickable = true mass = 0.1 physics_material_override = ExtResource("3_durpg") +script = ExtResource("11_tqnjl") +metadata/idx = 9 metadata/bone_name = &"Bone-9" [node name="RectangleShape2D" type="CollisionShape2D" parent="Asparagus3/Bone-9"] -shape = SubResource("RectangleShape2D_hg0tg") +shape = SubResource("RectangleShape2D_4p8eb") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Asparagus3/Bone-9"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-9") update_rotation = false update_scale = false -[node name="Joint2D-Bone-9-Bone-7" type="PinJoint2D" parent="Asparagus3/Bone-9"] -visible = false -rotation = -3.14159 -node_a = NodePath("..") -node_b = NodePath("../../Bone-7") -disable_collision = false -softness = 60.0 - [node name="Joint2D-Bone-9-Bone-8" type="PinJoint2D" parent="Asparagus3/Bone-9"] visible = false rotation = -3.14159 node_a = NodePath("..") node_b = NodePath("../../Bone-8") disable_collision = false -softness = 60.0 +softness = 20.0 [node name="Butter" type="Polygon2D" parent="."] z_index = 6 -position = Vector2(169, -178) +position = Vector2(863, -306) texture = ExtResource("4_xackp") skeleton = NodePath("Skeleton2D") -polygon = PackedVector2Array(70, 4, 67, 4, 65, 6, 65, 7, 61, 7, 60, 8, 60, 9, 58, 10, 55, 10, 53, 12, 51, 12, 49, 15, 44, 15, 39, 19, 34, 19, 29, 23, 24, 23, 22, 25, 22, 26, 14, 30, 14, 31, 10, 31, 6, 34, 4, 34, 5, 37, 6, 37, 6, 42, 7, 42, 6, 99, 6, 105, 11, 108, 11, 109, 14, 110, 18, 110, 22, 113, 22, 114, 26, 114, 30, 117, 30, 118, 36, 118, 42, 121, 42, 122, 46, 122, 47, 123, 47, 124, 51, 125, 51, 126, 67, 126, 70, 122, 76, 122, 78, 119, 78, 118, 83, 118, 88, 114, 92, 114, 95, 111, 95, 110, 98, 109, 100, 109, 102, 107, 102, 106, 105, 106, 106, 105, 106, 104, 110, 102, 113, 102, 114, 100, 115, 100, 115, 87, 113, 83, 113, 35, 110, 35, 109, 34, 109, 31, 106, 31, 105, 30, 105, 28, 103, 28, 93, 19, 90, 19, 89, 18, 89, 15, 85, 13, 85, 11, 82, 11, 74, 4, 74, 3, 70, 3, 23.1566, 46.4242, 18.8848, 50.0677, 6.88616, 48.4889, 7, 42, 6, 42, 6, 37, 5, 37, 4, 34, 6, 34, 10, 31, 14, 31, 14, 30, 21.6999, 26.15, 18.8848, 50.0677, 19.8519, 77.2101, 17.1912, 80.3716, 6.3396, 79.643, 6.88616, 48.4889, 17.1912, 80.3716, 19.2331, 105.749, 17.0331, 108.088, 10.8427, 107.906, 6, 105, 6, 99, 6.3396, 79.643, 17.0331, 108.088, 16.9579, 110, 14, 110, 11, 109, 11, 108, 10.8427, 107.906, 53.5199, 16.7802, 49.4735, 47.1214, 23.1566, 46.4242, 21.6999, 26.15, 22, 26, 22, 25, 24, 23, 29, 23, 34, 19, 39, 19, 44, 15, 49, 15, 50.1079, 13.3382, 49.4735, 47.1214, 51.3073, 49.0567, 49.623, 77.764, 19.8519, 77.2101, 18.8848, 50.0677, 23.1566, 46.4242, 49.623, 77.764, 51.7112, 80.2751, 47.1151, 108.016, 19.2331, 105.749, 17.1912, 80.3716, 19.8519, 77.2101, 47.1151, 108.016, 47.2077, 108.127, 48.3061, 124.327, 47, 124, 47, 123, 46, 122, 42, 122, 42, 121, 36, 118, 30, 118, 30, 117, 26, 114, 22, 114, 22, 113, 18, 110, 16.9579, 110, 17.0331, 108.088, 19.2331, 105.749, 82.6966, 21.4256, 79.6887, 49.6195, 79.0408, 50.244, 51.3073, 49.0567, 49.4735, 47.1214, 53.5199, 16.7802, 77.7536, 16.5774, 74, 4, 79.3887, 8.71509, 77.7536, 16.5774, 53.5199, 16.7802, 50.1079, 13.3382, 51, 12, 53, 12, 55, 10, 58, 10, 60, 9, 60, 8, 61, 7, 65, 7, 65, 6, 67, 4, 70, 4, 70, 3, 74, 3, 79.0408, 50.244, 81.6278, 79.7159, 80.1489, 81.4628, 51.7112, 80.2751, 49.623, 77.764, 51.3073, 49.0567, 80.1489, 81.4628, 82.1289, 105.32, 79.2862, 108.399, 47.2077, 108.127, 47.1151, 108.016, 51.7112, 80.2751, 79.2862, 108.399, 78.6405, 118, 78, 118, 78, 119, 76, 122, 70, 122, 67, 126, 51, 126, 51, 125, 48.3061, 124.327, 47.2077, 108.127, 103, 28, 105, 28, 105, 30, 106, 31, 109, 31, 109, 34, 110, 35, 111.628, 35, 113, 47.3275, 113, 47.4136, 109.864, 50.2181, 79.6887, 49.6195, 82.6966, 21.4256, 95.3574, 21.1216, 82, 11, 85, 11, 85, 13, 89, 15, 89, 18, 90, 19, 93, 19, 95.3574, 21.1216, 82.6966, 21.4256, 77.7536, 16.5774, 79.3887, 8.71509, 113, 47.3275, 111.628, 35, 113, 35, 109.864, 50.2181, 106.871, 77.0328, 81.6278, 79.7159, 79.0408, 50.244, 79.6887, 49.6195, 113, 82.099, 112.836, 82.123, 106.871, 77.0328, 109.864, 50.2181, 113, 47.4136, 112.836, 82.123, 111.492, 102, 110, 102, 106, 104, 106, 105, 105, 106, 102, 106, 102, 107, 100.278, 108.722, 82.1289, 105.32, 80.1489, 81.4628, 81.6278, 79.7159, 106.871, 77.0328, 100.278, 108.722, 100, 109, 98, 109, 95, 110, 95, 111, 92, 114, 88, 114, 83, 118, 78.6405, 118, 79.2862, 108.399, 82.1289, 105.32, 113, 83, 115, 87, 115, 100, 114, 100, 113, 102, 111.492, 102, 112.836, 82.123, 113, 82.099) -polygons = [PackedInt32Array(100, 88, 89), PackedInt32Array(89, 90, 91), PackedInt32Array(91, 92, 93), PackedInt32Array(93, 94, 95), PackedInt32Array(96, 97, 98), PackedInt32Array(98, 99, 100), PackedInt32Array(100, 89, 91), PackedInt32Array(93, 95, 96), PackedInt32Array(98, 100, 91), PackedInt32Array(91, 93, 96), PackedInt32Array(96, 98, 91), PackedInt32Array(105, 101, 102), PackedInt32Array(102, 103, 104), PackedInt32Array(104, 105, 102), PackedInt32Array(112, 106, 107), PackedInt32Array(107, 108, 109), PackedInt32Array(109, 110, 111), PackedInt32Array(111, 112, 107), PackedInt32Array(107, 109, 111), PackedInt32Array(118, 113, 114), PackedInt32Array(114, 115, 116), PackedInt32Array(117, 118, 114), PackedInt32Array(114, 116, 117), PackedInt32Array(131, 119, 120), PackedInt32Array(120, 121, 122), PackedInt32Array(123, 124, 125), PackedInt32Array(126, 127, 128), PackedInt32Array(128, 129, 130), PackedInt32Array(130, 131, 120), PackedInt32Array(120, 122, 123), PackedInt32Array(123, 125, 126), PackedInt32Array(128, 130, 120), PackedInt32Array(120, 123, 126), PackedInt32Array(126, 128, 120), PackedInt32Array(137, 132, 133), PackedInt32Array(133, 134, 135), PackedInt32Array(135, 136, 137), PackedInt32Array(137, 133, 135), PackedInt32Array(143, 138, 139), PackedInt32Array(139, 140, 141), PackedInt32Array(141, 142, 143), PackedInt32Array(143, 139, 141), PackedInt32Array(161, 144, 145), PackedInt32Array(145, 146, 147), PackedInt32Array(149, 150, 151), PackedInt32Array(152, 153, 154), PackedInt32Array(155, 156, 157), PackedInt32Array(158, 159, 160), PackedInt32Array(160, 161, 145), PackedInt32Array(145, 147, 148), PackedInt32Array(149, 151, 152), PackedInt32Array(152, 154, 155), PackedInt32Array(155, 157, 158), PackedInt32Array(158, 160, 145), PackedInt32Array(145, 148, 149), PackedInt32Array(152, 155, 158), PackedInt32Array(158, 145, 149), PackedInt32Array(149, 152, 158), PackedInt32Array(168, 162, 163), PackedInt32Array(163, 164, 165), PackedInt32Array(165, 166, 167), PackedInt32Array(167, 168, 163), PackedInt32Array(163, 165, 167), PackedInt32Array(169, 170, 171), PackedInt32Array(171, 172, 173), PackedInt32Array(173, 174, 175), PackedInt32Array(175, 176, 177), PackedInt32Array(178, 179, 180), PackedInt32Array(181, 182, 183), PackedInt32Array(184, 185, 186), PackedInt32Array(169, 171, 173), PackedInt32Array(173, 175, 177), PackedInt32Array(178, 180, 181), PackedInt32Array(181, 183, 184), PackedInt32Array(184, 186, 169), PackedInt32Array(169, 173, 177), PackedInt32Array(177, 178, 181), PackedInt32Array(181, 184, 169), PackedInt32Array(169, 177, 181), PackedInt32Array(192, 187, 188), PackedInt32Array(188, 189, 190), PackedInt32Array(190, 191, 192), PackedInt32Array(192, 188, 190), PackedInt32Array(198, 193, 194), PackedInt32Array(194, 195, 196), PackedInt32Array(196, 197, 198), PackedInt32Array(198, 194, 196), PackedInt32Array(209, 199, 200), PackedInt32Array(201, 202, 203), PackedInt32Array(204, 205, 206), PackedInt32Array(207, 208, 209), PackedInt32Array(209, 200, 201), PackedInt32Array(201, 203, 204), PackedInt32Array(204, 206, 207), PackedInt32Array(207, 209, 201), PackedInt32Array(201, 204, 207), PackedInt32Array(210, 211, 212), PackedInt32Array(213, 214, 215), PackedInt32Array(216, 217, 218), PackedInt32Array(218, 219, 220), PackedInt32Array(220, 221, 222), PackedInt32Array(222, 223, 210), PackedInt32Array(215, 216, 218), PackedInt32Array(218, 220, 222), PackedInt32Array(222, 210, 212), PackedInt32Array(213, 215, 218), PackedInt32Array(218, 222, 212), PackedInt32Array(212, 213, 218), PackedInt32Array(224, 225, 226), PackedInt32Array(226, 227, 228), PackedInt32Array(229, 230, 231), PackedInt32Array(231, 232, 233), PackedInt32Array(233, 234, 224), PackedInt32Array(224, 226, 228), PackedInt32Array(229, 231, 233), PackedInt32Array(233, 224, 228), PackedInt32Array(228, 229, 233), PackedInt32Array(237, 235, 236), PackedInt32Array(242, 238, 239), PackedInt32Array(239, 240, 241), PackedInt32Array(241, 242, 239), PackedInt32Array(247, 243, 244), PackedInt32Array(244, 245, 246), PackedInt32Array(246, 247, 244), PackedInt32Array(260, 248, 249), PackedInt32Array(251, 252, 253), PackedInt32Array(254, 255, 256), PackedInt32Array(256, 257, 258), PackedInt32Array(258, 259, 260), PackedInt32Array(260, 249, 250), PackedInt32Array(251, 253, 254), PackedInt32Array(254, 256, 258), PackedInt32Array(258, 260, 250), PackedInt32Array(251, 254, 258), PackedInt32Array(258, 250, 251), PackedInt32Array(271, 261, 262), PackedInt32Array(264, 265, 266), PackedInt32Array(267, 268, 269), PackedInt32Array(269, 270, 271), PackedInt32Array(271, 262, 263), PackedInt32Array(264, 266, 267), PackedInt32Array(267, 269, 271), PackedInt32Array(271, 263, 264), PackedInt32Array(264, 267, 271), PackedInt32Array(272, 273, 274), PackedInt32Array(275, 276, 277), PackedInt32Array(277, 278, 279), PackedInt32Array(272, 274, 275), PackedInt32Array(277, 279, 272), PackedInt32Array(272, 275, 277)] -bones = ["Bone-0", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0.7, 0.7, 0.7, 0.7, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 1, 0.7, 0.7, 0.7, 0.7, 1, 0.7, 0.7, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-1", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-2", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-3", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 1, 0.7, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-4", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-5", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-6", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0.7, 0.7, 1, 1, 1, 0.7, 1, 0.7, 0.7, 0.7, 0.7, 0.7, 1, 0.7, 0.7, 1, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-7", PackedFloat32Array(0.7, 0.7, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 1, 0.7, 1, 0.7, 0.7, 0.7, 0.7, 0.7, 1, 0.7, 0.7, 1, 0.7, 0.7, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-8", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-9", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-10", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-11", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0.7, 0.7, 0.7, 0.7, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0.7, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 1, 0.7, 0.7, 0.7, 0.7, 1, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0.7, 0.7, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-12", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0.7, 0.7), "Bone-13", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7)] -internal_vertex_count = 192 +polygon = PackedVector2Array(70, 4, 67, 4, 65, 6, 65, 7, 61, 7, 60, 8, 60, 9, 58, 10, 55, 10, 53, 12, 51, 12, 49, 15, 44, 15, 39, 19, 34, 19, 29, 23, 24, 23, 22, 25, 22, 26, 14, 30, 14, 31, 10, 31, 6, 34, 4, 34, 5, 37, 6, 37, 6, 42, 7, 42, 6, 99, 6, 105, 11, 108, 11, 109, 14, 110, 18, 110, 22, 113, 22, 114, 26, 114, 30, 117, 30, 118, 36, 118, 42, 121, 42, 122, 46, 122, 47, 123, 47, 124, 51, 125, 51, 126, 67, 126, 70, 122, 76, 122, 78, 119, 78, 118, 83, 118, 88, 114, 92, 114, 95, 111, 95, 110, 98, 109, 100, 109, 102, 107, 102, 106, 105, 106, 106, 105, 106, 104, 110, 102, 113, 102, 114, 100, 115, 100, 115, 87, 113, 83, 113, 35, 110, 35, 109, 34, 109, 31, 106, 31, 105, 30, 105, 28, 103, 28, 93, 19, 90, 19, 89, 18, 89, 15, 85, 13, 85, 11, 82, 11, 74, 4, 74, 3, 70, 3, 19, 78, 6.36842, 78, 6.63158, 63, 19, 63, 19, 63, 6.63158, 63, 6.89474, 48, 19, 48, 19, 108, 11, 108, 6, 105, 6, 99, 6.10526, 93, 19, 93, 19, 93, 6.10526, 93, 6.36842, 78, 19, 78, 19, 110.75, 18, 110, 14, 110, 11, 109, 11, 108, 19, 108, 34, 33, 19, 33, 19, 27.5, 22, 26, 22, 25, 24, 23, 29, 23, 34, 19, 49, 48, 34, 48, 34, 33, 49, 33, 34, 48, 19, 48, 19, 33, 34, 33, 49, 33, 34, 33, 34, 19, 39, 19, 40.25, 18, 49, 18, 19, 48, 6.89474, 48, 7, 42, 6, 42, 6, 37, 5, 37, 4, 34, 6, 34, 7.33333, 33, 19, 33, 19, 33, 7.33333, 33, 10, 31, 14, 31, 14, 30, 19, 27.5, 34, 63, 19, 63, 19, 48, 34, 48, 49, 78, 34, 78, 34, 63, 49, 63, 34, 78, 19, 78, 19, 63, 34, 63, 49, 63, 34, 63, 34, 48, 49, 48, 34, 93, 19, 93, 19, 78, 34, 78, 49, 108, 34, 108, 34, 93, 49, 93, 34, 108, 19, 108, 19, 93, 34, 93, 49, 93, 34, 93, 34, 78, 49, 78, 34, 118, 30, 118, 30, 117, 26, 114, 22, 114, 22, 113, 19, 110.75, 19, 108, 34, 108, 49, 124.5, 47, 124, 47, 123, 49, 123, 49, 123, 47, 123, 46, 122, 42, 122, 42, 121, 36, 118, 34, 118, 34, 108, 49, 108, 74, 4, 79, 8.375, 79, 18, 64, 18, 64, 7, 65, 7, 65, 6, 67, 4, 70, 4, 70, 3, 74, 3, 64, 18, 49, 18, 49, 15, 51, 12, 53, 12, 55, 10, 58, 10, 60, 9, 60, 8, 61, 7, 64, 7, 49, 18, 40.25, 18, 44, 15, 49, 15, 64, 33, 49, 33, 49, 18, 64, 18, 79, 48, 64, 48, 64, 33, 79, 33, 64, 48, 49, 48, 49, 33, 64, 33, 79, 33, 64, 33, 64, 18, 79, 18, 64, 63, 49, 63, 49, 48, 64, 48, 79, 78, 64, 78, 64, 63, 79, 63, 64, 78, 49, 78, 49, 63, 64, 63, 79, 63, 64, 63, 64, 48, 79, 48, 64, 93, 49, 93, 49, 78, 64, 78, 79, 108, 64, 108, 64, 93, 79, 93, 64, 108, 49, 108, 49, 93, 64, 93, 79, 93, 64, 93, 64, 78, 79, 78, 64, 123, 49, 123, 49, 108, 64, 108, 67, 126, 64, 126, 64, 123, 69.25, 123, 64, 126, 51, 126, 51, 125, 49, 124.5, 49, 123, 64, 123, 79, 118, 78, 118, 78, 119, 76, 122, 70, 122, 69.25, 123, 64, 123, 64, 108, 79, 108, 90, 19, 93, 19, 94, 19.9, 94, 33, 79, 33, 79, 18, 89, 18, 109, 48, 94, 48, 94, 33, 109, 33, 94, 48, 79, 48, 79, 33, 94, 33, 103, 28, 105, 28, 105, 30, 106, 31, 109, 31, 109, 33, 94, 33, 94, 19.9, 82, 11, 85, 11, 85, 13, 89, 15, 89, 18, 79, 18, 79, 8.375, 110, 35, 113, 35, 113, 48, 109, 48, 109, 34, 94, 63, 79, 63, 79, 48, 94, 48, 109, 78, 94, 78, 94, 63, 109, 63, 94, 78, 79, 78, 79, 63, 94, 63, 109, 63, 94, 63, 94, 48, 109, 48, 113, 63, 109, 63, 109, 48, 113, 48, 113, 78, 109, 78, 109, 63, 113, 63, 94, 93, 79, 93, 79, 78, 94, 78, 109, 102.5, 106, 104, 106, 105, 105, 106, 102, 106, 102, 107, 101, 108, 94, 108, 94, 93, 109, 93, 94, 108, 79, 108, 79, 93, 94, 93, 109, 93, 94, 93, 94, 78, 109, 78, 94, 112, 92, 114, 88, 114, 83, 118, 79, 118, 79, 108, 94, 108, 100, 109, 98, 109, 95, 110, 95, 111, 94, 112, 94, 108, 101, 108, 113, 83, 115, 87, 115, 93, 109, 93, 109, 78, 113, 78, 115, 100, 114, 100, 113, 102, 110, 102, 109, 102.5, 109, 93, 115, 93) +polygons = [PackedInt32Array(91, 88, 89), PackedInt32Array(89, 90, 91), PackedInt32Array(95, 92, 93), PackedInt32Array(93, 94, 95), PackedInt32Array(101, 96, 97), PackedInt32Array(97, 98, 99), PackedInt32Array(99, 100, 101), PackedInt32Array(101, 97, 99), PackedInt32Array(105, 102, 103), PackedInt32Array(103, 104, 105), PackedInt32Array(111, 106, 107), PackedInt32Array(107, 108, 109), PackedInt32Array(109, 110, 111), PackedInt32Array(111, 107, 109), PackedInt32Array(119, 112, 113), PackedInt32Array(113, 114, 115), PackedInt32Array(115, 116, 117), PackedInt32Array(118, 119, 113), PackedInt32Array(113, 115, 117), PackedInt32Array(117, 118, 113), PackedInt32Array(123, 120, 121), PackedInt32Array(121, 122, 123), PackedInt32Array(127, 124, 125), PackedInt32Array(125, 126, 127), PackedInt32Array(133, 128, 129), PackedInt32Array(129, 130, 131), PackedInt32Array(131, 132, 133), PackedInt32Array(133, 129, 131), PackedInt32Array(143, 134, 135), PackedInt32Array(136, 137, 138), PackedInt32Array(138, 139, 140), PackedInt32Array(141, 142, 143), PackedInt32Array(143, 135, 136), PackedInt32Array(138, 140, 141), PackedInt32Array(141, 143, 136), PackedInt32Array(136, 138, 141), PackedInt32Array(144, 145, 146), PackedInt32Array(147, 148, 149), PackedInt32Array(144, 146, 147), PackedInt32Array(147, 149, 144), PackedInt32Array(153, 150, 151), PackedInt32Array(151, 152, 153), PackedInt32Array(157, 154, 155), PackedInt32Array(155, 156, 157), PackedInt32Array(161, 158, 159), PackedInt32Array(159, 160, 161), PackedInt32Array(165, 162, 163), PackedInt32Array(163, 164, 165), PackedInt32Array(169, 166, 167), PackedInt32Array(167, 168, 169), PackedInt32Array(173, 170, 171), PackedInt32Array(171, 172, 173), PackedInt32Array(177, 174, 175), PackedInt32Array(175, 176, 177), PackedInt32Array(181, 178, 179), PackedInt32Array(179, 180, 181), PackedInt32Array(190, 182, 183), PackedInt32Array(185, 186, 187), PackedInt32Array(187, 188, 189), PackedInt32Array(190, 183, 184), PackedInt32Array(185, 187, 189), PackedInt32Array(189, 190, 184), PackedInt32Array(184, 185, 189), PackedInt32Array(194, 191, 192), PackedInt32Array(192, 193, 194), PackedInt32Array(203, 195, 196), PackedInt32Array(197, 198, 199), PackedInt32Array(200, 201, 202), PackedInt32Array(202, 203, 196), PackedInt32Array(197, 199, 200), PackedInt32Array(202, 196, 197), PackedInt32Array(197, 200, 202), PackedInt32Array(204, 205, 206), PackedInt32Array(206, 207, 208), PackedInt32Array(209, 210, 211), PackedInt32Array(212, 213, 214), PackedInt32Array(206, 208, 209), PackedInt32Array(209, 211, 212), PackedInt32Array(212, 214, 204), PackedInt32Array(204, 206, 209), PackedInt32Array(209, 212, 204), PackedInt32Array(225, 215, 216), PackedInt32Array(216, 217, 218), PackedInt32Array(219, 220, 221), PackedInt32Array(222, 223, 224), PackedInt32Array(216, 218, 219), PackedInt32Array(222, 224, 225), PackedInt32Array(216, 219, 221), PackedInt32Array(222, 225, 216), PackedInt32Array(216, 221, 222), PackedInt32Array(229, 226, 227), PackedInt32Array(227, 228, 229), PackedInt32Array(233, 230, 231), PackedInt32Array(231, 232, 233), PackedInt32Array(237, 234, 235), PackedInt32Array(235, 236, 237), PackedInt32Array(241, 238, 239), PackedInt32Array(239, 240, 241), PackedInt32Array(245, 242, 243), PackedInt32Array(243, 244, 245), PackedInt32Array(249, 246, 247), PackedInt32Array(247, 248, 249), PackedInt32Array(253, 250, 251), PackedInt32Array(251, 252, 253), PackedInt32Array(257, 254, 255), PackedInt32Array(255, 256, 257), PackedInt32Array(261, 258, 259), PackedInt32Array(259, 260, 261), PackedInt32Array(265, 262, 263), PackedInt32Array(263, 264, 265), PackedInt32Array(269, 266, 267), PackedInt32Array(267, 268, 269), PackedInt32Array(273, 270, 271), PackedInt32Array(271, 272, 273), PackedInt32Array(277, 274, 275), PackedInt32Array(275, 276, 277), PackedInt32Array(281, 278, 279), PackedInt32Array(279, 280, 281), PackedInt32Array(285, 282, 283), PackedInt32Array(283, 284, 285), PackedInt32Array(291, 286, 287), PackedInt32Array(288, 289, 290), PackedInt32Array(291, 287, 288), PackedInt32Array(288, 290, 291), PackedInt32Array(300, 292, 293), PackedInt32Array(293, 294, 295), PackedInt32Array(296, 297, 298), PackedInt32Array(298, 299, 300), PackedInt32Array(300, 293, 295), PackedInt32Array(296, 298, 300), PackedInt32Array(300, 295, 296), PackedInt32Array(301, 302, 303), PackedInt32Array(303, 304, 305), PackedInt32Array(305, 306, 307), PackedInt32Array(301, 303, 305), PackedInt32Array(305, 307, 301), PackedInt32Array(311, 308, 309), PackedInt32Array(309, 310, 311), PackedInt32Array(315, 312, 313), PackedInt32Array(313, 314, 315), PackedInt32Array(316, 317, 318), PackedInt32Array(319, 320, 321), PackedInt32Array(322, 323, 316), PackedInt32Array(319, 321, 322), PackedInt32Array(322, 316, 318), PackedInt32Array(318, 319, 322), PackedInt32Array(324, 325, 326), PackedInt32Array(326, 327, 328), PackedInt32Array(328, 329, 330), PackedInt32Array(324, 326, 328), PackedInt32Array(328, 330, 324), PackedInt32Array(331, 332, 333), PackedInt32Array(333, 334, 335), PackedInt32Array(335, 331, 333), PackedInt32Array(339, 336, 337), PackedInt32Array(337, 338, 339), PackedInt32Array(343, 340, 341), PackedInt32Array(341, 342, 343), PackedInt32Array(347, 344, 345), PackedInt32Array(345, 346, 347), PackedInt32Array(351, 348, 349), PackedInt32Array(349, 350, 351), PackedInt32Array(355, 352, 353), PackedInt32Array(353, 354, 355), PackedInt32Array(359, 356, 357), PackedInt32Array(357, 358, 359), PackedInt32Array(363, 360, 361), PackedInt32Array(361, 362, 363), PackedInt32Array(373, 364, 365), PackedInt32Array(365, 366, 367), PackedInt32Array(368, 369, 370), PackedInt32Array(370, 371, 372), PackedInt32Array(372, 373, 365), PackedInt32Array(365, 367, 368), PackedInt32Array(368, 370, 372), PackedInt32Array(372, 365, 368), PackedInt32Array(377, 374, 375), PackedInt32Array(375, 376, 377), PackedInt32Array(381, 378, 379), PackedInt32Array(379, 380, 381), PackedInt32Array(388, 382, 383), PackedInt32Array(384, 385, 386), PackedInt32Array(386, 387, 388), PackedInt32Array(388, 383, 384), PackedInt32Array(384, 386, 388), PackedInt32Array(395, 389, 390), PackedInt32Array(391, 392, 393), PackedInt32Array(394, 395, 390), PackedInt32Array(391, 393, 394), PackedInt32Array(394, 390, 391), PackedInt32Array(396, 397, 398), PackedInt32Array(398, 399, 400), PackedInt32Array(400, 401, 396), PackedInt32Array(396, 398, 400), PackedInt32Array(408, 402, 403), PackedInt32Array(403, 404, 405), PackedInt32Array(405, 406, 407), PackedInt32Array(407, 408, 403), PackedInt32Array(403, 405, 407)] +bones = ["Bone-0", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-1", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-2", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-3", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-4", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 1, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-5", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-6", PackedFloat32Array(1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-7", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-8", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-9", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-10", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-11", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-12", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0), "Bone-13", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1)] +internal_vertex_count = 321 script = ExtResource("2_2dapw") -radius = 19 -rigidbody_scene = ExtResource("3_6ern4") margin_pixels = -1 -voronoi_interval = 0.15 +min_area = 0.3 stiffness = 0.1 damping = 9.1 rest_length_ratio = 1.1 length_ratio = 0.1 softness = 100.0 +radius = 19 +gravity_scale = 2.08167e-17 +rigidbody_scene = ExtResource("3_6ern4") physics_material_override = ExtResource("5_221ya") [node name="Skeleton2D" type="Skeleton2D" parent="Butter"] visible = false -modification_stack = SubResource("SkeletonModificationStack2D_w6xhu") +modification_stack = SubResource("SkeletonModificationStack2D_jwx42") [node name="Bone-0" type="Bone2D" parent="Butter/Skeleton2D"] -position = Vector2(13.5783, 38.1089) -rotation = -0.31682 -rest = Transform2D(0.950231, -0.311546, 0.311546, 0.950231, 13.5783, 38.1089) +position = Vector2(12.6842, 63) +rotation = 0.95304 +rest = Transform2D(0.579207, 0.81518, -0.81518, 0.579207, 12.6842, 63) auto_calculate_length_and_angle = false length = 30.0 bone_angle = 0.0 -metadata/vert_owned = [88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100] -metadata/connected_nodes_paths = [NodePath("Bone-1"), NodePath("Bone-3"), NodePath("Bone-4")] +metadata/vert_owned = [88, 89, 90, 91, 92, 93, 94, 95] +metadata/idx = 0 +metadata/connected_nodes_paths = [NodePath("Bone-1"), NodePath("Bone-3"), NodePath("Bone-4"), NodePath("Bone-2")] +metadata/connected_nodes_idx = [1, 3, 4, 2] metadata/_local_pose_override_enabled_ = true [node name="Bone-1" type="Bone2D" parent="Butter/Skeleton2D"] -position = Vector2(13.0957, 64.4303) -rotation = -0.948899 +position = Vector2(12.5, 94.375) +rotation = -0.970032 scale = Vector2(1, 1) -rest = Transform2D(0.582579, -0.812774, 0.812774, 0.582579, 13.0957, 64.4303) +rest = Transform2D(0.565273, -0.824904, 0.824904, 0.565273, 12.5, 94.375) auto_calculate_length_and_angle = false length = 30.0 bone_angle = 0.0 -metadata/vert_owned = [101, 102, 103, 104, 105] -metadata/connected_nodes_paths = [NodePath("Bone-0"), NodePath("Bone-2"), NodePath("Bone-3"), NodePath("Bone-4"), NodePath("Bone-5")] +metadata/vert_owned = [96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111] +metadata/idx = 1 +metadata/connected_nodes_paths = [NodePath("Bone-5"), NodePath("Bone-0"), NodePath("Bone-3"), NodePath("Bone-4")] +metadata/connected_nodes_idx = [5, 0, 3, 4] metadata/_local_pose_override_enabled_ = true [node name="Bone-2" type="Bone2D" parent="Butter/Skeleton2D"] -position = Vector2(12.6165, 94.8215) -rotation = -0.100812 -scale = Vector2(1, 1) -rest = Transform2D(0.994923, -0.100641, 0.100641, 0.994923, 12.6165, 94.8215) +position = Vector2(26.5, 33) +rest = Transform2D(1, 0, 0, 1, 26.5, 33) auto_calculate_length_and_angle = false length = 30.0 bone_angle = 0.0 -metadata/vert_owned = [106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118] -metadata/connected_nodes_paths = [NodePath("Bone-1"), NodePath("Bone-4"), NodePath("Bone-5"), NodePath("Bone-6")] +metadata/vert_owned = [112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149] +metadata/idx = 2 +metadata/connected_nodes_paths = [NodePath("Bone-0"), NodePath("Bone-3"), NodePath("Bone-7"), NodePath("Bone-8"), NodePath("Bone-6")] +metadata/connected_nodes_idx = [0, 3, 7, 8, 6] metadata/_local_pose_override_enabled_ = true [node name="Bone-3" type="Bone2D" parent="Butter/Skeleton2D"] -position = Vector2(37.6099, 30.2298) -rotation = 1.64952 -rest = Transform2D(-0.0786471, 0.996903, -0.996903, -0.0786471, 37.6099, 30.2298) +position = Vector2(34, 63) +rotation = -1.81578 +scale = Vector2(1, 1) +rest = Transform2D(-0.242536, -0.970142, 0.970142, -0.242536, 34, 63) auto_calculate_length_and_angle = false length = 30.0 bone_angle = 0.0 -metadata/vert_owned = [119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131] -metadata/connected_nodes_paths = [NodePath("Bone-0"), NodePath("Bone-1"), NodePath("Bone-4"), NodePath("Bone-7"), NodePath("Bone-8")] +metadata/vert_owned = [150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165] +metadata/idx = 3 +metadata/connected_nodes_paths = [NodePath("Bone-0"), NodePath("Bone-1"), NodePath("Bone-4"), NodePath("Bone-2"), NodePath("Bone-7"), NodePath("Bone-8"), NodePath("Bone-9")] +metadata/connected_nodes_idx = [0, 1, 4, 2, 7, 8, 9] metadata/_local_pose_override_enabled_ = true [node name="Bone-4" type="Bone2D" parent="Butter/Skeleton2D"] -position = Vector2(35.0961, 62.0941) -rotation = -1.49207 -rest = Transform2D(0.0786471, -0.996903, 0.996903, 0.0786471, 35.0961, 62.0941) +position = Vector2(34, 93) +rotation = 1.5708 +rest = Transform2D(-4.37114e-08, 1, -1, -4.37114e-08, 34, 93) auto_calculate_length_and_angle = false length = 30.0 bone_angle = 0.0 -metadata/vert_owned = [132, 133, 134, 135, 136, 137] -metadata/connected_nodes_paths = [NodePath("Bone-0"), NodePath("Bone-1"), NodePath("Bone-2"), NodePath("Bone-3"), NodePath("Bone-5"), NodePath("Bone-8"), NodePath("Bone-9")] +metadata/vert_owned = [166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181] +metadata/idx = 4 +metadata/connected_nodes_paths = [NodePath("Bone-0"), NodePath("Bone-1"), NodePath("Bone-3"), NodePath("Bone-5"), NodePath("Bone-8"), NodePath("Bone-9"), NodePath("Bone-10")] +metadata/connected_nodes_idx = [0, 1, 3, 5, 8, 9, 10] metadata/_local_pose_override_enabled_ = true [node name="Bone-5" type="Bone2D" parent="Butter/Skeleton2D"] -position = Vector2(34.4512, 92.6128) -rotation = 1.65174 -rest = Transform2D(-0.0808563, 0.996726, -0.996726, -0.0808563, 34.4512, 92.6128) +position = Vector2(34, 116.25) +rotation = -0.65931 +rest = Transform2D(0.790415, -0.612572, 0.612572, 0.790415, 34, 116.25) auto_calculate_length_and_angle = false length = 30.0 bone_angle = 0.0 -metadata/vert_owned = [138, 139, 140, 141, 142, 143] -metadata/connected_nodes_paths = [NodePath("Bone-1"), NodePath("Bone-2"), NodePath("Bone-4"), NodePath("Bone-6"), NodePath("Bone-8"), NodePath("Bone-9"), NodePath("Bone-10")] +metadata/vert_owned = [182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203] +metadata/idx = 5 +metadata/connected_nodes_paths = [NodePath("Bone-1"), NodePath("Bone-4"), NodePath("Bone-9"), NodePath("Bone-10")] +metadata/connected_nodes_idx = [1, 4, 9, 10] metadata/_local_pose_override_enabled_ = true [node name="Bone-6" type="Bone2D" parent="Butter/Skeleton2D"] -position = Vector2(32.632, 115.038) -rotation = -0.57434 +position = Vector2(59.625, 10.5) +rotation = 1.37875 scale = Vector2(1, 1) -rest = Transform2D(0.839551, -0.543281, 0.543281, 0.839551, 32.632, 115.038) +rest = Transform2D(0.19087, 0.981615, -0.981615, 0.19087, 59.625, 10.5) auto_calculate_length_and_angle = false length = 30.0 bone_angle = 0.0 -metadata/vert_owned = [144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161] -metadata/connected_nodes_paths = [NodePath("Bone-2"), NodePath("Bone-5"), NodePath("Bone-9"), NodePath("Bone-10")] +metadata/vert_owned = [204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229] +metadata/idx = 6 +metadata/connected_nodes_paths = [NodePath("Bone-2"), NodePath("Bone-7"), NodePath("Bone-11")] +metadata/connected_nodes_idx = [2, 7, 11] metadata/_local_pose_override_enabled_ = true [node name="Bone-7" type="Bone2D" parent="Butter/Skeleton2D"] -position = Vector2(66.0851, 26.622) -rotation = 1.58269 +position = Vector2(64, 33) +rotation = -1.76284 scale = Vector2(1, 1) -rest = Transform2D(-0.0118969, 0.999929, -0.999929, -0.0118969, 66.0851, 26.622) +rest = Transform2D(-0.19087, -0.981615, 0.981615, -0.19087, 64, 33) auto_calculate_length_and_angle = false length = 30.0 bone_angle = 0.0 -metadata/vert_owned = [162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186] -metadata/connected_nodes_paths = [NodePath("Bone-3"), NodePath("Bone-8"), NodePath("Bone-11")] +metadata/vert_owned = [230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245] +metadata/idx = 7 +metadata/connected_nodes_paths = [NodePath("Bone-2"), NodePath("Bone-3"), NodePath("Bone-8"), NodePath("Bone-6"), NodePath("Bone-11"), NodePath("Bone-12")] +metadata/connected_nodes_idx = [2, 3, 8, 6, 11, 12] metadata/_local_pose_override_enabled_ = true [node name="Bone-8" type="Bone2D" parent="Butter/Skeleton2D"] -position = Vector2(65.6254, 65.2598) -rotation = 1.60529 -rest = Transform2D(-0.0344871, 0.999405, -0.999405, -0.0344871, 65.6254, 65.2598) +position = Vector2(64, 63) +rotation = 1.5708 +rest = Transform2D(-4.37114e-08, 1, -1, -4.37114e-08, 64, 63) auto_calculate_length_and_angle = false length = 30.0 bone_angle = 0.0 -metadata/vert_owned = [187, 188, 189, 190, 191, 192] -metadata/connected_nodes_paths = [NodePath("Bone-3"), NodePath("Bone-4"), NodePath("Bone-5"), NodePath("Bone-7"), NodePath("Bone-9"), NodePath("Bone-11"), NodePath("Bone-12"), NodePath("Bone-13")] +metadata/vert_owned = [246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261] +metadata/idx = 8 +metadata/connected_nodes_paths = [NodePath("Bone-2"), NodePath("Bone-3"), NodePath("Bone-7"), NodePath("Bone-4"), NodePath("Bone-9"), NodePath("Bone-11"), NodePath("Bone-12"), NodePath("Bone-13")] +metadata/connected_nodes_idx = [2, 3, 7, 4, 9, 11, 12, 13] metadata/_local_pose_override_enabled_ = true [node name="Bone-9" type="Bone2D" parent="Butter/Skeleton2D"] -position = Vector2(64.622, 94.337) -rotation = -1.5363 -rest = Transform2D(0.0344872, -0.999405, 0.999405, 0.0344872, 64.622, 94.337) +position = Vector2(64, 93) +rotation = 2.48228 +rest = Transform2D(-0.790415, 0.612572, -0.612572, -0.790415, 64, 93) auto_calculate_length_and_angle = false length = 30.0 bone_angle = 0.0 -metadata/vert_owned = [193, 194, 195, 196, 197, 198] -metadata/connected_nodes_paths = [NodePath("Bone-4"), NodePath("Bone-5"), NodePath("Bone-6"), NodePath("Bone-8"), NodePath("Bone-10"), NodePath("Bone-12"), NodePath("Bone-13")] +metadata/vert_owned = [262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277] +metadata/idx = 9 +metadata/connected_nodes_paths = [NodePath("Bone-3"), NodePath("Bone-4"), NodePath("Bone-8"), NodePath("Bone-5"), NodePath("Bone-10"), NodePath("Bone-12"), NodePath("Bone-13")] +metadata/connected_nodes_idx = [3, 4, 8, 5, 10, 12, 13] metadata/_local_pose_override_enabled_ = true [node name="Bone-10" type="Bone2D" parent="Butter/Skeleton2D"] -position = Vector2(63.2469, 117.064) -rotation = -1.51037 -rest = Transform2D(0.0603923, -0.998175, 0.998175, 0.0603923, 63.2469, 117.064) +position = Vector2(64, 117) +rotation = -3.1166 +rest = Transform2D(-0.999688, -0.0249922, 0.0249922, -0.999688, 64, 117) auto_calculate_length_and_angle = false length = 30.0 bone_angle = 0.0 -metadata/vert_owned = [199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209] -metadata/connected_nodes_paths = [NodePath("Bone-5"), NodePath("Bone-6"), NodePath("Bone-9"), NodePath("Bone-13")] +metadata/vert_owned = [278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300] +metadata/idx = 10 +metadata/connected_nodes_paths = [NodePath("Bone-13"), NodePath("Bone-4"), NodePath("Bone-5"), NodePath("Bone-9")] +metadata/connected_nodes_idx = [13, 4, 5, 9] metadata/_local_pose_override_enabled_ = true [node name="Bone-11" type="Bone2D" parent="Butter/Skeleton2D"] -position = Vector2(95.3768, 29.4666) -rotation = 2.26428 -scale = Vector2(1, 1) -rest = Transform2D(-0.639217, 0.769026, -0.769026, -0.639217, 95.3768, 29.4666) +position = Vector2(96, 28.1875) +rotation = 2.31412 +rest = Transform2D(-0.676741, 0.736221, -0.736221, -0.676741, 96, 28.1875) auto_calculate_length_and_angle = false length = 30.0 bone_angle = 0.0 -metadata/vert_owned = [210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237] -metadata/connected_nodes_paths = [NodePath("Bone-7"), NodePath("Bone-8"), NodePath("Bone-12")] +metadata/vert_owned = [301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335] +metadata/idx = 11 +metadata/connected_nodes_paths = [NodePath("Bone-6"), NodePath("Bone-7"), NodePath("Bone-8"), NodePath("Bone-12")] +metadata/connected_nodes_idx = [6, 7, 8, 12] metadata/_local_pose_override_enabled_ = true [node name="Bone-12" type="Bone2D" parent="Butter/Skeleton2D"] -position = Vector2(96.0204, 64.7683) -rotation = -1.58903 -scale = Vector2(1, 1) -rest = Transform2D(-0.0182289, -0.999834, 0.999834, -0.0182289, 96.0204, 64.7683) +position = Vector2(96, 63) +rotation = -1.5708 +rest = Transform2D(-4.37114e-08, -1, 1, -4.37114e-08, 96, 63) auto_calculate_length_and_angle = false length = 30.0 bone_angle = 0.0 -metadata/vert_owned = [238, 239, 240, 241, 242, 243, 244, 245, 246, 247] -metadata/connected_nodes_paths = [NodePath("Bone-8"), NodePath("Bone-9"), NodePath("Bone-11"), NodePath("Bone-13")] +metadata/vert_owned = [336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359] +metadata/idx = 12 +metadata/connected_nodes_paths = [NodePath("Bone-7"), NodePath("Bone-8"), NodePath("Bone-11"), NodePath("Bone-9"), NodePath("Bone-13")] +metadata/connected_nodes_idx = [7, 8, 11, 9, 13] metadata/_local_pose_override_enabled_ = true [node name="Bone-13" type="Bone2D" parent="Butter/Skeleton2D"] -position = Vector2(96.8203, 97.5164) -rotation = 2.61434 -rest = Transform2D(-0.864194, 0.503158, -0.503158, -0.864194, 96.8203, 97.5164) +position = Vector2(97, 98) +rotation = -2.99122 +scale = Vector2(1, 1) +rest = Transform2D(-0.988715, -0.149805, 0.149805, -0.988715, 97, 98) auto_calculate_length_and_angle = false length = 30.0 bone_angle = 0.0 -metadata/vert_owned = [248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279] -metadata/connected_nodes_paths = [NodePath("Bone-8"), NodePath("Bone-9"), NodePath("Bone-10"), NodePath("Bone-12")] +metadata/vert_owned = [360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408] +metadata/idx = 13 +metadata/connected_nodes_paths = [NodePath("Bone-10"), NodePath("Bone-8"), NodePath("Bone-9"), NodePath("Bone-12")] +metadata/connected_nodes_idx = [10, 8, 9, 12] metadata/_local_pose_override_enabled_ = true -[node name="Bone-0" parent="Butter" instance=ExtResource("3_6ern4")] -position = Vector2(13.5783, 38.1089) +[node name="Bone-0" type="RigidBody2D" parent="Butter" instance=ExtResource("3_6ern4")] +position = Vector2(12.6842, 63) +input_pickable = true mass = 0.0714286 physics_material_override = ExtResource("5_221ya") +gravity_scale = 2.08167e-17 +script = ExtResource("11_tqnjl") +metadata/idx = 0 metadata/bone_name = &"Bone-0" [node name="CircleShape2D" type="CollisionShape2D" parent="Butter/Bone-0"] -shape = SubResource("CircleShape2D_hdg3f") +shape = SubResource("CircleShape2D_3jrhf") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Butter/Bone-0"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-0") update_rotation = false update_scale = false [node name="Joint2D-Bone-0-Bone-1" type="PinJoint2D" parent="Butter/Bone-0"] visible = false -rotation = 0.0183311 +rotation = 0.00587122 node_a = NodePath("..") node_b = NodePath("../../Bone-1") softness = 100.0 [node name="Joint2D-Bone-0-Bone-3" type="PinJoint2D" parent="Butter/Bone-0"] visible = false -rotation = -1.88762 +rotation = -1.5708 node_a = NodePath("..") node_b = NodePath("../../Bone-3") softness = 100.0 [node name="Joint2D-Bone-0-Bone-4" type="PinJoint2D" parent="Butter/Bone-0"] visible = false -rotation = -0.731225 +rotation = -0.617756 node_a = NodePath("..") node_b = NodePath("../../Bone-4") softness = 100.0 -[node name="Bone-1" parent="Butter" instance=ExtResource("3_6ern4")] -position = Vector2(13.0957, 64.4303) +[node name="Joint2D-Bone-0-Bone-2" type="PinJoint2D" parent="Butter/Bone-0"] +visible = false +rotation = -2.71002 +node_a = NodePath("..") +node_b = NodePath("../../Bone-2") +softness = 100.0 + +[node name="Bone-1" type="RigidBody2D" parent="Butter" instance=ExtResource("3_6ern4")] +position = Vector2(12.5, 94.375) +input_pickable = true mass = 0.0714286 physics_material_override = ExtResource("5_221ya") +gravity_scale = 2.08167e-17 +script = ExtResource("11_tqnjl") +metadata/idx = 1 metadata/bone_name = &"Bone-1" [node name="CircleShape2D" type="CollisionShape2D" parent="Butter/Bone-1"] -shape = SubResource("CircleShape2D_hdg3f") +shape = SubResource("CircleShape2D_3jrhf") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Butter/Bone-1"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-1") update_rotation = false update_scale = false -[node name="Joint2D-Bone-1-Bone-0" type="PinJoint2D" parent="Butter/Bone-1"] +[node name="Joint2D-Bone-1-Bone-5" type="PinJoint2D" parent="Butter/Bone-1"] visible = false -rotation = -3.12326 +rotation = -0.776753 node_a = NodePath("..") -node_b = NodePath("../../Bone-0") +node_b = NodePath("../../Bone-5") softness = 100.0 -[node name="Joint2D-Bone-1-Bone-2" type="PinJoint2D" parent="Butter/Bone-1"] +[node name="Joint2D-Bone-1-Bone-0" type="PinJoint2D" parent="Butter/Bone-1"] visible = false -rotation = 0.0157661 +rotation = -3.13572 node_a = NodePath("..") -node_b = NodePath("../../Bone-2") +node_b = NodePath("../../Bone-0") softness = 100.0 [node name="Joint2D-Bone-1-Bone-3" type="PinJoint2D" parent="Butter/Bone-1"] visible = false -rotation = -2.51969 +rotation = -2.54083 node_a = NodePath("..") node_b = NodePath("../../Bone-3") softness = 100.0 [node name="Joint2D-Bone-1-Bone-4" type="PinJoint2D" parent="Butter/Bone-1"] visible = false -rotation = -1.67659 +rotation = -1.63466 node_a = NodePath("..") node_b = NodePath("../../Bone-4") softness = 100.0 -[node name="Joint2D-Bone-1-Bone-5" type="PinJoint2D" parent="Butter/Bone-1"] -visible = false -rotation = -0.648445 -node_a = NodePath("..") -node_b = NodePath("../../Bone-5") -softness = 100.0 - -[node name="Bone-2" parent="Butter" instance=ExtResource("3_6ern4")] -position = Vector2(12.6165, 94.8215) +[node name="Bone-2" type="RigidBody2D" parent="Butter" instance=ExtResource("3_6ern4")] +position = Vector2(26.5, 33) +input_pickable = true mass = 0.0714286 physics_material_override = ExtResource("5_221ya") +gravity_scale = 2.08167e-17 +script = ExtResource("11_tqnjl") +metadata/idx = 2 metadata/bone_name = &"Bone-2" [node name="CircleShape2D" type="CollisionShape2D" parent="Butter/Bone-2"] -shape = SubResource("CircleShape2D_hdg3f") +shape = SubResource("CircleShape2D_3jrhf") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Butter/Bone-2"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-2") update_rotation = false update_scale = false -[node name="Joint2D-Bone-2-Bone-1" type="PinJoint2D" parent="Butter/Bone-2"] +[node name="Joint2D-Bone-2-Bone-0" type="PinJoint2D" parent="Butter/Bone-2"] visible = false -rotation = -3.12583 +rotation = 0.431573 node_a = NodePath("..") -node_b = NodePath("../../Bone-1") +node_b = NodePath("../../Bone-0") softness = 100.0 -[node name="Joint2D-Bone-2-Bone-4" type="PinJoint2D" parent="Butter/Bone-2"] +[node name="Joint2D-Bone-2-Bone-3" type="PinJoint2D" parent="Butter/Bone-2"] visible = false -rotation = -2.53973 +rotation = -0.244979 node_a = NodePath("..") -node_b = NodePath("../../Bone-4") +node_b = NodePath("../../Bone-3") softness = 100.0 -[node name="Joint2D-Bone-2-Bone-5" type="PinJoint2D" parent="Butter/Bone-2"] +[node name="Joint2D-Bone-2-Bone-7" type="PinJoint2D" parent="Butter/Bone-2"] visible = false -rotation = -1.67161 +rotation = -1.5708 node_a = NodePath("..") -node_b = NodePath("../../Bone-5") +node_b = NodePath("../../Bone-7") softness = 100.0 -[node name="Joint2D-Bone-2-Bone-6" type="PinJoint2D" parent="Butter/Bone-2"] +[node name="Joint2D-Bone-2-Bone-8" type="PinJoint2D" parent="Butter/Bone-2"] visible = false -rotation = -0.780403 +rotation = -0.896055 +node_a = NodePath("..") +node_b = NodePath("../../Bone-8") +softness = 100.0 + +[node name="Joint2D-Bone-2-Bone-6" type="PinJoint2D" parent="Butter/Bone-2"] +visible = false +rotation = -2.16746 node_a = NodePath("..") node_b = NodePath("../../Bone-6") softness = 100.0 -[node name="Bone-3" parent="Butter" instance=ExtResource("3_6ern4")] -position = Vector2(37.6099, 30.2298) +[node name="Bone-3" type="RigidBody2D" parent="Butter" instance=ExtResource("3_6ern4")] +position = Vector2(34, 63) +input_pickable = true mass = 0.0714286 physics_material_override = ExtResource("5_221ya") +gravity_scale = 2.08167e-17 +script = ExtResource("11_tqnjl") +metadata/idx = 3 metadata/bone_name = &"Bone-3" [node name="CircleShape2D" type="CollisionShape2D" parent="Butter/Bone-3"] -shape = SubResource("CircleShape2D_hdg3f") +shape = SubResource("CircleShape2D_3jrhf") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Butter/Bone-3"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-3") update_rotation = false update_scale = false [node name="Joint2D-Bone-3-Bone-0" type="PinJoint2D" parent="Butter/Bone-3"] visible = false -rotation = 1.25398 +rotation = 1.5708 node_a = NodePath("..") node_b = NodePath("../../Bone-0") softness = 100.0 [node name="Joint2D-Bone-3-Bone-1" type="PinJoint2D" parent="Butter/Bone-3"] visible = false -rotation = 0.621898 +rotation = 0.600764 node_a = NodePath("..") node_b = NodePath("../../Bone-1") softness = 100.0 [node name="Joint2D-Bone-3-Bone-4" type="PinJoint2D" parent="Butter/Bone-3"] visible = false -rotation = 0.078728 node_a = NodePath("..") node_b = NodePath("../../Bone-4") softness = 100.0 +[node name="Joint2D-Bone-3-Bone-2" type="PinJoint2D" parent="Butter/Bone-3"] +visible = false +rotation = -3.38657 +node_a = NodePath("..") +node_b = NodePath("../../Bone-2") +softness = 100.0 + [node name="Joint2D-Bone-3-Bone-7" type="PinJoint2D" parent="Butter/Bone-3"] visible = false -rotation = -1.69682 +rotation = -2.35619 node_a = NodePath("..") node_b = NodePath("../../Bone-7") softness = 100.0 [node name="Joint2D-Bone-3-Bone-8" type="PinJoint2D" parent="Butter/Bone-3"] visible = false -rotation = -0.674593 +rotation = -1.5708 node_a = NodePath("..") node_b = NodePath("../../Bone-8") softness = 100.0 -[node name="Bone-4" parent="Butter" instance=ExtResource("3_6ern4")] -position = Vector2(35.0961, 62.0941) +[node name="Joint2D-Bone-3-Bone-9" type="PinJoint2D" parent="Butter/Bone-3"] +visible = false +rotation = -0.785398 +node_a = NodePath("..") +node_b = NodePath("../../Bone-9") +softness = 100.0 + +[node name="Bone-4" type="RigidBody2D" parent="Butter" instance=ExtResource("3_6ern4")] +position = Vector2(34, 93) +input_pickable = true mass = 0.0714286 physics_material_override = ExtResource("5_221ya") +gravity_scale = 2.08167e-17 +script = ExtResource("11_tqnjl") +metadata/idx = 4 metadata/bone_name = &"Bone-4" [node name="CircleShape2D" type="CollisionShape2D" parent="Butter/Bone-4"] -shape = SubResource("CircleShape2D_hdg3f") +shape = SubResource("CircleShape2D_3jrhf") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Butter/Bone-4"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-4") update_rotation = false update_scale = false [node name="Joint2D-Bone-4-Bone-0" type="PinJoint2D" parent="Butter/Bone-4"] visible = false -rotation = -3.87282 +rotation = -3.75935 node_a = NodePath("..") node_b = NodePath("../../Bone-0") softness = 100.0 [node name="Joint2D-Bone-4-Bone-1" type="PinJoint2D" parent="Butter/Bone-4"] visible = false -rotation = 1.46501 +rotation = 1.50693 node_a = NodePath("..") node_b = NodePath("../../Bone-1") softness = 100.0 -[node name="Joint2D-Bone-4-Bone-2" type="PinJoint2D" parent="Butter/Bone-4"] -visible = false -rotation = 0.601861 -node_a = NodePath("..") -node_b = NodePath("../../Bone-2") -softness = 100.0 - [node name="Joint2D-Bone-4-Bone-3" type="PinJoint2D" parent="Butter/Bone-4"] visible = false -rotation = -3.06286 +rotation = -3.14159 node_a = NodePath("..") node_b = NodePath("../../Bone-3") softness = 100.0 [node name="Joint2D-Bone-4-Bone-5" type="PinJoint2D" parent="Butter/Bone-4"] visible = false -rotation = 0.0211282 node_a = NodePath("..") node_b = NodePath("../../Bone-5") softness = 100.0 [node name="Joint2D-Bone-4-Bone-8" type="PinJoint2D" parent="Butter/Bone-4"] visible = false -rotation = -1.46747 +rotation = -2.35619 node_a = NodePath("..") node_b = NodePath("../../Bone-8") softness = 100.0 [node name="Joint2D-Bone-4-Bone-9" type="PinJoint2D" parent="Butter/Bone-4"] visible = false -rotation = -0.741441 +rotation = -1.5708 node_a = NodePath("..") node_b = NodePath("../../Bone-9") softness = 100.0 -[node name="Bone-5" parent="Butter" instance=ExtResource("3_6ern4")] -position = Vector2(34.4512, 92.6128) +[node name="Joint2D-Bone-4-Bone-10" type="PinJoint2D" parent="Butter/Bone-4"] +visible = false +rotation = -0.896055 +node_a = NodePath("..") +node_b = NodePath("../../Bone-10") +softness = 100.0 + +[node name="Bone-5" type="RigidBody2D" parent="Butter" instance=ExtResource("3_6ern4")] +position = Vector2(34, 116.25) +input_pickable = true mass = 0.0714286 physics_material_override = ExtResource("5_221ya") +gravity_scale = 2.08167e-17 +script = ExtResource("11_tqnjl") +metadata/idx = 5 metadata/bone_name = &"Bone-5" [node name="CircleShape2D" type="CollisionShape2D" parent="Butter/Bone-5"] -shape = SubResource("CircleShape2D_hdg3f") +shape = SubResource("CircleShape2D_3jrhf") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Butter/Bone-5"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-5") update_rotation = false update_scale = false [node name="Joint2D-Bone-5-Bone-1" type="PinJoint2D" parent="Butter/Bone-5"] visible = false -rotation = -3.79004 +rotation = -3.91835 node_a = NodePath("..") node_b = NodePath("../../Bone-1") softness = 100.0 -[node name="Joint2D-Bone-5-Bone-2" type="PinJoint2D" parent="Butter/Bone-5"] -visible = false -rotation = 1.46998 -node_a = NodePath("..") -node_b = NodePath("../../Bone-2") -softness = 100.0 - [node name="Joint2D-Bone-5-Bone-4" type="PinJoint2D" parent="Butter/Bone-5"] visible = false -rotation = -3.12046 +rotation = -3.14159 node_a = NodePath("..") node_b = NodePath("../../Bone-4") softness = 100.0 -[node name="Joint2D-Bone-5-Bone-6" type="PinJoint2D" parent="Butter/Bone-5"] -visible = false -rotation = 0.0809449 -node_a = NodePath("..") -node_b = NodePath("../../Bone-6") -softness = 100.0 - -[node name="Joint2D-Bone-5-Bone-8" type="PinJoint2D" parent="Butter/Bone-5"] -visible = false -rotation = -2.291 -node_a = NodePath("..") -node_b = NodePath("../../Bone-8") -softness = 100.0 - [node name="Joint2D-Bone-5-Bone-9" type="PinJoint2D" parent="Butter/Bone-5"] visible = false -rotation = -1.51371 +rotation = -2.23011 node_a = NodePath("..") node_b = NodePath("../../Bone-9") softness = 100.0 [node name="Joint2D-Bone-5-Bone-10" type="PinJoint2D" parent="Butter/Bone-5"] visible = false -rotation = -0.866817 +rotation = -1.5458 node_a = NodePath("..") node_b = NodePath("../../Bone-10") softness = 100.0 -[node name="Bone-6" parent="Butter" instance=ExtResource("3_6ern4")] -position = Vector2(32.632, 115.038) +[node name="Bone-6" type="RigidBody2D" parent="Butter" instance=ExtResource("3_6ern4")] +position = Vector2(59.625, 10.5) +input_pickable = true mass = 0.0714286 physics_material_override = ExtResource("5_221ya") +gravity_scale = 2.08167e-17 +script = ExtResource("11_tqnjl") +metadata/idx = 6 metadata/bone_name = &"Bone-6" [node name="CircleShape2D" type="CollisionShape2D" parent="Butter/Bone-6"] -shape = SubResource("CircleShape2D_hdg3f") +shape = SubResource("CircleShape2D_3jrhf") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Butter/Bone-6"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-6") update_rotation = false update_scale = false [node name="Joint2D-Bone-6-Bone-2" type="PinJoint2D" parent="Butter/Bone-6"] visible = false -rotation = -3.922 +rotation = 0.974136 node_a = NodePath("..") node_b = NodePath("../../Bone-2") softness = 100.0 -[node name="Joint2D-Bone-6-Bone-5" type="PinJoint2D" parent="Butter/Bone-6"] -visible = false -rotation = -3.06065 -node_a = NodePath("..") -node_b = NodePath("../../Bone-5") -softness = 100.0 - -[node name="Joint2D-Bone-6-Bone-9" type="PinJoint2D" parent="Butter/Bone-6"] +[node name="Joint2D-Bone-6-Bone-7" type="PinJoint2D" parent="Butter/Bone-6"] visible = false -rotation = -2.14514 +rotation = -0.192048 node_a = NodePath("..") -node_b = NodePath("../../Bone-9") +node_b = NodePath("../../Bone-7") softness = 100.0 -[node name="Joint2D-Bone-6-Bone-10" type="PinJoint2D" parent="Butter/Bone-6"] +[node name="Joint2D-Bone-6-Bone-11" type="PinJoint2D" parent="Butter/Bone-6"] visible = false -rotation = -1.50472 +rotation = -1.11821 node_a = NodePath("..") -node_b = NodePath("../../Bone-10") +node_b = NodePath("../../Bone-11") softness = 100.0 -[node name="Bone-7" parent="Butter" instance=ExtResource("3_6ern4")] -position = Vector2(66.0851, 26.622) +[node name="Bone-7" type="RigidBody2D" parent="Butter" instance=ExtResource("3_6ern4")] +position = Vector2(64, 33) +input_pickable = true mass = 0.0714286 physics_material_override = ExtResource("5_221ya") +gravity_scale = 2.08167e-17 +script = ExtResource("11_tqnjl") +metadata/idx = 7 metadata/bone_name = &"Bone-7" [node name="CircleShape2D" type="CollisionShape2D" parent="Butter/Bone-7"] -shape = SubResource("CircleShape2D_hdg3f") +shape = SubResource("CircleShape2D_3jrhf") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Butter/Bone-7"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-7") update_rotation = false update_scale = false +[node name="Joint2D-Bone-7-Bone-2" type="PinJoint2D" parent="Butter/Bone-7"] +visible = false +rotation = 1.5708 +node_a = NodePath("..") +node_b = NodePath("../../Bone-2") +softness = 100.0 + [node name="Joint2D-Bone-7-Bone-3" type="PinJoint2D" parent="Butter/Bone-7"] visible = false -rotation = 1.44477 +rotation = 0.785398 node_a = NodePath("..") node_b = NodePath("../../Bone-3") softness = 100.0 [node name="Joint2D-Bone-7-Bone-8" type="PinJoint2D" parent="Butter/Bone-7"] visible = false -rotation = 0.011897 node_a = NodePath("..") node_b = NodePath("../../Bone-8") softness = 100.0 +[node name="Joint2D-Bone-7-Bone-6" type="PinJoint2D" parent="Butter/Bone-7"] +visible = false +rotation = -3.33364 +node_a = NodePath("..") +node_b = NodePath("../../Bone-6") +softness = 100.0 + [node name="Joint2D-Bone-7-Bone-11" type="PinJoint2D" parent="Butter/Bone-7"] visible = false -rotation = -1.47399 +rotation = -1.72007 node_a = NodePath("..") node_b = NodePath("../../Bone-11") softness = 100.0 -[node name="Bone-8" parent="Butter" instance=ExtResource("3_6ern4")] -position = Vector2(65.6254, 65.2598) +[node name="Joint2D-Bone-7-Bone-12" type="PinJoint2D" parent="Butter/Bone-7"] +visible = false +rotation = -0.817645 +node_a = NodePath("..") +node_b = NodePath("../../Bone-12") +softness = 100.0 + +[node name="Bone-8" type="RigidBody2D" parent="Butter" instance=ExtResource("3_6ern4")] +position = Vector2(64, 63) +input_pickable = true mass = 0.0714286 physics_material_override = ExtResource("5_221ya") +gravity_scale = 2.08167e-17 +script = ExtResource("11_tqnjl") +metadata/idx = 8 metadata/bone_name = &"Bone-8" [node name="CircleShape2D" type="CollisionShape2D" parent="Butter/Bone-8"] -shape = SubResource("CircleShape2D_hdg3f") +shape = SubResource("CircleShape2D_3jrhf") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Butter/Bone-8"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-8") update_rotation = false update_scale = false -[node name="Joint2D-Bone-8-Bone-3" type="PinJoint2D" parent="Butter/Bone-8"] +[node name="Joint2D-Bone-8-Bone-2" type="PinJoint2D" parent="Butter/Bone-8"] visible = false -rotation = -3.81619 +rotation = -4.03765 node_a = NodePath("..") -node_b = NodePath("../../Bone-3") +node_b = NodePath("../../Bone-2") softness = 100.0 -[node name="Joint2D-Bone-8-Bone-4" type="PinJoint2D" parent="Butter/Bone-8"] +[node name="Joint2D-Bone-8-Bone-3" type="PinJoint2D" parent="Butter/Bone-8"] visible = false -rotation = -4.60907 +rotation = 1.5708 node_a = NodePath("..") -node_b = NodePath("../../Bone-4") +node_b = NodePath("../../Bone-3") softness = 100.0 -[node name="Joint2D-Bone-8-Bone-5" type="PinJoint2D" parent="Butter/Bone-8"] +[node name="Joint2D-Bone-8-Bone-7" type="PinJoint2D" parent="Butter/Bone-8"] visible = false -rotation = 0.850594 +rotation = -3.14159 node_a = NodePath("..") -node_b = NodePath("../../Bone-5") +node_b = NodePath("../../Bone-7") softness = 100.0 -[node name="Joint2D-Bone-8-Bone-7" type="PinJoint2D" parent="Butter/Bone-8"] +[node name="Joint2D-Bone-8-Bone-4" type="PinJoint2D" parent="Butter/Bone-8"] visible = false -rotation = -3.1297 +rotation = 0.785398 node_a = NodePath("..") -node_b = NodePath("../../Bone-7") +node_b = NodePath("../../Bone-4") softness = 100.0 [node name="Joint2D-Bone-8-Bone-9" type="PinJoint2D" parent="Butter/Bone-8"] visible = false -rotation = 0.034494 node_a = NodePath("..") node_b = NodePath("../../Bone-9") softness = 100.0 [node name="Joint2D-Bone-8-Bone-11" type="PinJoint2D" parent="Butter/Bone-8"] visible = false -rotation = -2.44811 +rotation = -2.39827 node_a = NodePath("..") node_b = NodePath("../../Bone-11") softness = 100.0 [node name="Joint2D-Bone-8-Bone-12" type="PinJoint2D" parent="Butter/Bone-8"] visible = false -rotation = -1.58696 +rotation = -1.5708 node_a = NodePath("..") node_b = NodePath("../../Bone-12") softness = 100.0 [node name="Joint2D-Bone-8-Bone-13" type="PinJoint2D" parent="Butter/Bone-8"] visible = false -rotation = -0.768667 +rotation = -0.755995 node_a = NodePath("..") node_b = NodePath("../../Bone-13") softness = 100.0 -[node name="Bone-9" parent="Butter" instance=ExtResource("3_6ern4")] -position = Vector2(64.622, 94.337) +[node name="Bone-9" type="RigidBody2D" parent="Butter" instance=ExtResource("3_6ern4")] +position = Vector2(64, 93) +input_pickable = true mass = 0.0714286 physics_material_override = ExtResource("5_221ya") +gravity_scale = 2.08167e-17 +script = ExtResource("11_tqnjl") +metadata/idx = 9 metadata/bone_name = &"Bone-9" [node name="CircleShape2D" type="CollisionShape2D" parent="Butter/Bone-9"] -shape = SubResource("CircleShape2D_hdg3f") +shape = SubResource("CircleShape2D_3jrhf") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Butter/Bone-9"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-9") update_rotation = false update_scale = false -[node name="Joint2D-Bone-9-Bone-4" type="PinJoint2D" parent="Butter/Bone-9"] +[node name="Joint2D-Bone-9-Bone-3" type="PinJoint2D" parent="Butter/Bone-9"] visible = false -rotation = -3.88303 +rotation = -3.92699 node_a = NodePath("..") -node_b = NodePath("../../Bone-4") +node_b = NodePath("../../Bone-3") softness = 100.0 -[node name="Joint2D-Bone-9-Bone-5" type="PinJoint2D" parent="Butter/Bone-9"] +[node name="Joint2D-Bone-9-Bone-4" type="PinJoint2D" parent="Butter/Bone-9"] visible = false -rotation = -4.65531 +rotation = 1.5708 node_a = NodePath("..") -node_b = NodePath("../../Bone-5") +node_b = NodePath("../../Bone-4") softness = 100.0 -[node name="Joint2D-Bone-9-Bone-6" type="PinJoint2D" parent="Butter/Bone-9"] +[node name="Joint2D-Bone-9-Bone-8" type="PinJoint2D" parent="Butter/Bone-9"] visible = false -rotation = 0.996456 +rotation = -3.14159 node_a = NodePath("..") -node_b = NodePath("../../Bone-6") +node_b = NodePath("../../Bone-8") softness = 100.0 -[node name="Joint2D-Bone-9-Bone-8" type="PinJoint2D" parent="Butter/Bone-9"] +[node name="Joint2D-Bone-9-Bone-5" type="PinJoint2D" parent="Butter/Bone-9"] visible = false -rotation = -3.1071 +rotation = 0.911486 node_a = NodePath("..") -node_b = NodePath("../../Bone-8") +node_b = NodePath("../../Bone-5") softness = 100.0 [node name="Joint2D-Bone-9-Bone-10" type="PinJoint2D" parent="Butter/Bone-9"] visible = false -rotation = 0.0604297 node_a = NodePath("..") node_b = NodePath("../../Bone-10") softness = 100.0 [node name="Joint2D-Bone-9-Bone-12" type="PinJoint2D" parent="Butter/Bone-9"] visible = false -rotation = -2.32619 +rotation = -2.32395 node_a = NodePath("..") node_b = NodePath("../../Bone-12") softness = 100.0 [node name="Joint2D-Bone-9-Bone-13" type="PinJoint2D" parent="Butter/Bone-9"] visible = false -rotation = -1.47237 +rotation = -1.42042 node_a = NodePath("..") node_b = NodePath("../../Bone-13") softness = 100.0 -[node name="Bone-10" parent="Butter" instance=ExtResource("3_6ern4")] -position = Vector2(63.2469, 117.064) +[node name="Bone-10" type="RigidBody2D" parent="Butter" instance=ExtResource("3_6ern4")] +position = Vector2(64, 117) +input_pickable = true mass = 0.0714286 physics_material_override = ExtResource("5_221ya") +gravity_scale = 2.08167e-17 +script = ExtResource("11_tqnjl") +metadata/idx = 10 metadata/bone_name = &"Bone-10" [node name="CircleShape2D" type="CollisionShape2D" parent="Butter/Bone-10"] -shape = SubResource("CircleShape2D_hdg3f") +shape = SubResource("CircleShape2D_3jrhf") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Butter/Bone-10"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-10") update_rotation = false update_scale = false -[node name="Joint2D-Bone-10-Bone-5" type="PinJoint2D" parent="Butter/Bone-10"] +[node name="Joint2D-Bone-10-Bone-13" type="PinJoint2D" parent="Butter/Bone-10"] visible = false -rotation = -4.00841 +rotation = -2.0932 node_a = NodePath("..") -node_b = NodePath("../../Bone-5") +node_b = NodePath("../../Bone-13") softness = 100.0 -[node name="Joint2D-Bone-10-Bone-6" type="PinJoint2D" parent="Butter/Bone-10"] +[node name="Joint2D-Bone-10-Bone-4" type="PinJoint2D" parent="Butter/Bone-10"] visible = false -rotation = -4.64632 +rotation = -4.03765 node_a = NodePath("..") -node_b = NodePath("../../Bone-6") +node_b = NodePath("../../Bone-4") softness = 100.0 -[node name="Joint2D-Bone-10-Bone-9" type="PinJoint2D" parent="Butter/Bone-10"] +[node name="Joint2D-Bone-10-Bone-5" type="PinJoint2D" parent="Butter/Bone-10"] visible = false -rotation = -3.08116 +rotation = -4.68739 node_a = NodePath("..") -node_b = NodePath("../../Bone-9") +node_b = NodePath("../../Bone-5") softness = 100.0 -[node name="Joint2D-Bone-10-Bone-13" type="PinJoint2D" parent="Butter/Bone-10"] +[node name="Joint2D-Bone-10-Bone-9" type="PinJoint2D" parent="Butter/Bone-10"] visible = false -rotation = -2.09805 +rotation = -3.14159 node_a = NodePath("..") -node_b = NodePath("../../Bone-13") +node_b = NodePath("../../Bone-9") softness = 100.0 -[node name="Bone-11" parent="Butter" instance=ExtResource("3_6ern4")] -position = Vector2(95.3768, 29.4666) +[node name="Bone-11" type="RigidBody2D" parent="Butter" instance=ExtResource("3_6ern4")] +position = Vector2(96, 28.1875) +input_pickable = true mass = 0.0714286 physics_material_override = ExtResource("5_221ya") +gravity_scale = 2.08167e-17 +script = ExtResource("11_tqnjl") +metadata/idx = 11 metadata/bone_name = &"Bone-11" [node name="CircleShape2D" type="CollisionShape2D" parent="Butter/Bone-11"] -shape = SubResource("CircleShape2D_hdg3f") +shape = SubResource("CircleShape2D_3jrhf") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Butter/Bone-11"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-11") update_rotation = false update_scale = false +[node name="Joint2D-Bone-11-Bone-6" type="PinJoint2D" parent="Butter/Bone-11"] +visible = false +rotation = -4.2598 +node_a = NodePath("..") +node_b = NodePath("../../Bone-6") +softness = 100.0 + [node name="Joint2D-Bone-11-Bone-7" type="PinJoint2D" parent="Butter/Bone-11"] visible = false -rotation = -4.61558 +rotation = 1.42152 node_a = NodePath("..") node_b = NodePath("../../Bone-7") softness = 100.0 [node name="Joint2D-Bone-11-Bone-8" type="PinJoint2D" parent="Butter/Bone-11"] visible = false -rotation = 0.69348 +rotation = 0.743328 node_a = NodePath("..") node_b = NodePath("../../Bone-8") softness = 100.0 [node name="Joint2D-Bone-11-Bone-12" type="PinJoint2D" parent="Butter/Bone-11"] visible = false -rotation = -0.0182294 node_a = NodePath("..") node_b = NodePath("../../Bone-12") softness = 100.0 -[node name="Bone-12" parent="Butter" instance=ExtResource("3_6ern4")] -position = Vector2(96.0204, 64.7683) +[node name="Bone-12" type="RigidBody2D" parent="Butter" instance=ExtResource("3_6ern4")] +position = Vector2(96, 63) +input_pickable = true mass = 0.0714286 physics_material_override = ExtResource("5_221ya") +gravity_scale = 2.08167e-17 +script = ExtResource("11_tqnjl") +metadata/idx = 12 metadata/bone_name = &"Bone-12" [node name="CircleShape2D" type="CollisionShape2D" parent="Butter/Bone-12"] -shape = SubResource("CircleShape2D_hdg3f") +shape = SubResource("CircleShape2D_3jrhf") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Butter/Bone-12"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-12") update_rotation = false update_scale = false -[node name="Joint2D-Bone-12-Bone-8" type="PinJoint2D" parent="Butter/Bone-12"] +[node name="Joint2D-Bone-12-Bone-7" type="PinJoint2D" parent="Butter/Bone-12"] visible = false -rotation = 1.55463 +rotation = -3.95924 node_a = NodePath("..") -node_b = NodePath("../../Bone-8") +node_b = NodePath("../../Bone-7") softness = 100.0 -[node name="Joint2D-Bone-12-Bone-9" type="PinJoint2D" parent="Butter/Bone-12"] +[node name="Joint2D-Bone-12-Bone-8" type="PinJoint2D" parent="Butter/Bone-12"] visible = false -rotation = 0.815401 +rotation = 1.5708 node_a = NodePath("..") -node_b = NodePath("../../Bone-9") +node_b = NodePath("../../Bone-8") softness = 100.0 [node name="Joint2D-Bone-12-Bone-11" type="PinJoint2D" parent="Butter/Bone-12"] visible = false -rotation = -3.15982 +rotation = -3.14159 node_a = NodePath("..") node_b = NodePath("../../Bone-11") softness = 100.0 +[node name="Joint2D-Bone-12-Bone-9" type="PinJoint2D" parent="Butter/Bone-12"] +visible = false +rotation = 0.817645 +node_a = NodePath("..") +node_b = NodePath("../../Bone-9") +softness = 100.0 + [node name="Joint2D-Bone-12-Bone-13" type="PinJoint2D" parent="Butter/Bone-12"] visible = false -rotation = -0.0244207 +rotation = -0.0285637 node_a = NodePath("..") node_b = NodePath("../../Bone-13") softness = 100.0 -[node name="Bone-13" parent="Butter" instance=ExtResource("3_6ern4")] -position = Vector2(96.8203, 97.5164) +[node name="Bone-13" type="RigidBody2D" parent="Butter" instance=ExtResource("3_6ern4")] +position = Vector2(97, 98) +input_pickable = true mass = 0.0714286 physics_material_override = ExtResource("5_221ya") +gravity_scale = 2.08167e-17 +script = ExtResource("11_tqnjl") +metadata/idx = 13 metadata/bone_name = &"Bone-13" [node name="CircleShape2D" type="CollisionShape2D" parent="Butter/Bone-13"] -shape = SubResource("CircleShape2D_hdg3f") +shape = SubResource("CircleShape2D_3jrhf") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Butter/Bone-13"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-13") update_rotation = false update_scale = false -[node name="Joint2D-Bone-13-Bone-8" type="PinJoint2D" parent="Butter/Bone-13"] +[node name="Joint2D-Bone-13-Bone-10" type="PinJoint2D" parent="Butter/Bone-13"] visible = false -rotation = -3.91026 +rotation = 1.04839 node_a = NodePath("..") -node_b = NodePath("../../Bone-8") +node_b = NodePath("../../Bone-10") softness = 100.0 -[node name="Joint2D-Bone-13-Bone-9" type="PinJoint2D" parent="Butter/Bone-13"] +[node name="Joint2D-Bone-13-Bone-8" type="PinJoint2D" parent="Butter/Bone-13"] visible = false -rotation = -4.61396 +rotation = -3.89759 node_a = NodePath("..") -node_b = NodePath("../../Bone-9") +node_b = NodePath("../../Bone-8") softness = 100.0 -[node name="Joint2D-Bone-13-Bone-10" type="PinJoint2D" parent="Butter/Bone-13"] +[node name="Joint2D-Bone-13-Bone-9" type="PinJoint2D" parent="Butter/Bone-13"] visible = false -rotation = 1.04355 +rotation = -4.56202 node_a = NodePath("..") -node_b = NodePath("../../Bone-10") +node_b = NodePath("../../Bone-9") softness = 100.0 [node name="Joint2D-Bone-13-Bone-12" type="PinJoint2D" parent="Butter/Bone-13"] visible = false -rotation = -3.16601 +rotation = -3.17016 node_a = NodePath("..") node_b = NodePath("../../Bone-12") softness = 100.0 @@ -6141,1286 +6106,1337 @@ z_index = 8 position = Vector2(321, -162) texture = ExtResource("4_xackp") skeleton = NodePath("Skeleton2D") -polygon = PackedVector2Array(70, 4, 67, 4, 65, 6, 65, 7, 61, 7, 60, 8, 60, 9, 58, 10, 55, 10, 53, 12, 51, 12, 49, 15, 44, 15, 39, 19, 34, 19, 29, 23, 24, 23, 22, 25, 22, 26, 14, 30, 14, 31, 10, 31, 6, 34, 4, 34, 5, 37, 6, 37, 6, 42, 7, 42, 6, 99, 6, 105, 11, 108, 11, 109, 14, 110, 18, 110, 22, 113, 22, 114, 26, 114, 30, 117, 30, 118, 36, 118, 42, 121, 42, 122, 46, 122, 47, 123, 47, 124, 51, 125, 51, 126, 67, 126, 70, 122, 76, 122, 78, 119, 78, 118, 83, 118, 88, 114, 92, 114, 95, 111, 95, 110, 98, 109, 100, 109, 102, 107, 102, 106, 105, 106, 106, 105, 106, 104, 110, 102, 113, 102, 114, 100, 115, 100, 115, 87, 113, 83, 113, 35, 110, 35, 109, 34, 109, 31, 106, 31, 105, 30, 105, 28, 103, 28, 93, 19, 90, 19, 89, 18, 89, 15, 85, 13, 85, 11, 82, 11, 74, 4, 74, 3, 70, 3, 16.404, 42.2231, 17.2099, 64.8417, 14.9926, 67.4763, 6.56298, 66.9104, 7, 42, 6, 42, 6, 40.8541, 19.9638, 39.1868, 16.404, 42.2231, 6, 40.8541, 6, 37, 5, 37, 4, 34, 6, 34, 10, 31, 14, 31, 14, 30, 19.1198, 27.4401, 14.9926, 67.4763, 16.6942, 88.6245, 14.8609, 90.573, 6.15233, 90.317, 6.56298, 66.9104, 41.8946, 39.7678, 19.9638, 39.1868, 19.1198, 27.4401, 22, 26, 22, 25, 24, 23, 29, 23, 34, 19, 39, 19, 44, 15, 45.1977, 15, 41.8946, 39.7678, 43.4228, 41.3806, 42.0191, 65.3034, 17.2099, 64.8417, 16.404, 42.2231, 19.9638, 39.1868, 42.0191, 65.3034, 43.7593, 67.3959, 39.9293, 90.513, 16.6942, 88.6245, 14.9926, 67.4763, 17.2099, 64.8417, 39.9293, 90.513, 40.0064, 90.6062, 41.7542, 116.383, 40.9418, 117.302, 29.7451, 116.809, 26, 114, 22, 114, 22, 113, 18, 110, 14.0972, 110, 14.8609, 90.573, 16.6942, 88.6245, 14.8609, 90.573, 14.0972, 110, 14, 110, 11, 109, 11, 108, 6, 105, 6, 99, 6.15233, 90.317, 69.5805, 18.3546, 67.0739, 41.8496, 66.534, 42.37, 43.4228, 41.3806, 41.8946, 39.7678, 45.2666, 14.4835, 65.4613, 14.3145, 66.534, 42.37, 68.6898, 66.9299, 67.4574, 68.3857, 43.7593, 67.3959, 42.0191, 65.3034, 43.4228, 41.3806, 67.4574, 68.3857, 69.1074, 88.2666, 66.7385, 90.8323, 40.0064, 90.6062, 39.9293, 90.513, 43.7593, 67.3959, 66.7385, 90.8323, 65.1923, 113.826, 41.7542, 116.383, 40.0064, 90.6062, 74, 4, 82, 11, 85, 11, 85, 13, 89, 15, 89, 17.8885, 69.5805, 18.3546, 65.4613, 14.3145, 67.6064, 4, 70, 4, 70, 3, 74, 3, 65.4613, 14.3145, 49.3672, 14.4492, 51, 12, 53, 12, 55, 10, 58, 10, 60, 9, 60, 8, 61, 7, 65, 7, 65, 6, 67, 4, 67.6064, 4, 94.8406, 40.0048, 92.2197, 42.3484, 67.0739, 41.8496, 69.5805, 18.3546, 92.3703, 17.8076, 92.2197, 42.3484, 89.726, 64.694, 68.6898, 66.9299, 66.534, 42.37, 67.0739, 41.8496, 94.6971, 68.9358, 93.0974, 92.5784, 92.9017, 92.7277, 69.1074, 88.2666, 67.4574, 68.3857, 68.6898, 66.9299, 89.726, 64.694, 92.9017, 92.7277, 89.0792, 117.303, 68.2836, 116.274, 65.1923, 113.826, 66.7385, 90.8323, 69.1074, 88.2666, 84.175, 117.06, 83, 118, 78, 118, 78, 119, 76, 122, 70, 122, 67.2874, 125.617, 68.2836, 116.274, 103, 28, 105, 28, 105, 30, 106, 31, 109, 31, 109, 34, 110, 35, 113, 35, 113, 43.4565, 94.8406, 40.0048, 92.503, 19, 93, 19, 113.848, 43.6177, 117.565, 63.6165, 115.747, 65.8505, 94.6971, 68.9358, 89.726, 64.694, 92.2197, 42.3484, 94.8406, 40.0048, 118.281, 89.2678, 114.613, 93.6621, 93.0974, 92.5784, 94.6971, 68.9358, 115.747, 65.8505, 114.613, 93.6621, 115, 95.2133, 115, 100, 114, 100, 113, 102, 110, 102, 106, 104, 106, 105, 105, 106, 102, 106, 102, 107, 100, 109, 98, 109, 95, 110, 95, 111, 92, 114, 89.5929, 114, 92.9017, 92.7277, 93.0974, 92.5784, 115, 95.2133, 114.613, 93.6621, 115, 93.1981, 68.2836, 116.274, 67.2874, 125.617, 67, 126, 51, 126, 51, 125, 47, 124, 47, 123, 46, 122, 42, 122, 42, 121, 41.1336, 120.567, 40.9418, 117.302, 41.7542, 116.383, 65.1923, 113.826, 40.9418, 117.302, 41.1336, 120.567, 36, 118, 30, 118, 30, 117, 29.7451, 116.809) -polygons = [PackedInt32Array(88, 89, 90), PackedInt32Array(90, 91, 92), PackedInt32Array(92, 93, 94), PackedInt32Array(88, 90, 92), PackedInt32Array(92, 94, 88), PackedInt32Array(105, 95, 96), PackedInt32Array(96, 97, 98), PackedInt32Array(98, 99, 100), PackedInt32Array(101, 102, 103), PackedInt32Array(103, 104, 105), PackedInt32Array(105, 96, 98), PackedInt32Array(98, 100, 101), PackedInt32Array(103, 105, 98), PackedInt32Array(98, 101, 103), PackedInt32Array(110, 106, 107), PackedInt32Array(107, 108, 109), PackedInt32Array(109, 110, 107), PackedInt32Array(121, 111, 112), PackedInt32Array(112, 113, 114), PackedInt32Array(114, 115, 116), PackedInt32Array(117, 118, 119), PackedInt32Array(119, 120, 121), PackedInt32Array(112, 114, 116), PackedInt32Array(119, 121, 112), PackedInt32Array(112, 116, 117), PackedInt32Array(117, 119, 112), PackedInt32Array(127, 122, 123), PackedInt32Array(123, 124, 125), PackedInt32Array(125, 126, 127), PackedInt32Array(127, 123, 125), PackedInt32Array(133, 128, 129), PackedInt32Array(129, 130, 131), PackedInt32Array(131, 132, 133), PackedInt32Array(133, 129, 131), PackedInt32Array(145, 134, 135), PackedInt32Array(135, 136, 137), PackedInt32Array(137, 138, 139), PackedInt32Array(139, 140, 141), PackedInt32Array(142, 143, 144), PackedInt32Array(144, 145, 135), PackedInt32Array(135, 137, 139), PackedInt32Array(139, 141, 142), PackedInt32Array(142, 144, 135), PackedInt32Array(135, 139, 142), PackedInt32Array(153, 146, 147), PackedInt32Array(147, 148, 149), PackedInt32Array(150, 151, 152), PackedInt32Array(152, 153, 147), PackedInt32Array(147, 149, 150), PackedInt32Array(150, 152, 147), PackedInt32Array(160, 154, 155), PackedInt32Array(155, 156, 157), PackedInt32Array(157, 158, 159), PackedInt32Array(159, 160, 155), PackedInt32Array(155, 157, 159), PackedInt32Array(166, 161, 162), PackedInt32Array(162, 163, 164), PackedInt32Array(164, 165, 166), PackedInt32Array(166, 162, 164), PackedInt32Array(172, 167, 168), PackedInt32Array(168, 169, 170), PackedInt32Array(170, 171, 172), PackedInt32Array(172, 168, 170), PackedInt32Array(176, 173, 174), PackedInt32Array(174, 175, 176), PackedInt32Array(178, 179, 180), PackedInt32Array(180, 181, 182), PackedInt32Array(182, 183, 184), PackedInt32Array(184, 185, 186), PackedInt32Array(186, 187, 188), PackedInt32Array(178, 180, 182), PackedInt32Array(182, 184, 186), PackedInt32Array(186, 188, 177), PackedInt32Array(177, 178, 182), PackedInt32Array(182, 186, 177), PackedInt32Array(189, 190, 191), PackedInt32Array(192, 193, 194), PackedInt32Array(195, 196, 197), PackedInt32Array(198, 199, 200), PackedInt32Array(200, 201, 189), PackedInt32Array(189, 191, 192), PackedInt32Array(195, 197, 198), PackedInt32Array(198, 200, 189), PackedInt32Array(189, 192, 194), PackedInt32Array(194, 195, 198), PackedInt32Array(198, 189, 194), PackedInt32Array(206, 202, 203), PackedInt32Array(203, 204, 205), PackedInt32Array(205, 206, 203), PackedInt32Array(211, 207, 208), PackedInt32Array(208, 209, 210), PackedInt32Array(210, 211, 208), PackedInt32Array(218, 212, 213), PackedInt32Array(213, 214, 215), PackedInt32Array(215, 216, 217), PackedInt32Array(217, 218, 213), PackedInt32Array(213, 215, 217), PackedInt32Array(224, 219, 220), PackedInt32Array(220, 221, 222), PackedInt32Array(222, 223, 224), PackedInt32Array(224, 220, 222), PackedInt32Array(232, 225, 226), PackedInt32Array(227, 228, 229), PackedInt32Array(230, 231, 232), PackedInt32Array(232, 226, 227), PackedInt32Array(227, 229, 230), PackedInt32Array(230, 232, 227), PackedInt32Array(233, 234, 235), PackedInt32Array(236, 237, 238), PackedInt32Array(239, 240, 241), PackedInt32Array(241, 242, 243), PackedInt32Array(243, 244, 233), PackedInt32Array(238, 239, 241), PackedInt32Array(241, 243, 233), PackedInt32Array(236, 238, 241), PackedInt32Array(241, 233, 235), PackedInt32Array(235, 236, 241), PackedInt32Array(251, 245, 246), PackedInt32Array(246, 247, 248), PackedInt32Array(248, 249, 250), PackedInt32Array(250, 251, 246), PackedInt32Array(246, 248, 250), PackedInt32Array(256, 252, 253), PackedInt32Array(253, 254, 255), PackedInt32Array(255, 256, 253), PackedInt32Array(275, 257, 258), PackedInt32Array(258, 259, 260), PackedInt32Array(260, 261, 262), PackedInt32Array(263, 264, 265), PackedInt32Array(266, 267, 268), PackedInt32Array(270, 271, 272), PackedInt32Array(272, 273, 274), PackedInt32Array(274, 275, 258), PackedInt32Array(258, 260, 262), PackedInt32Array(263, 265, 266), PackedInt32Array(266, 268, 269), PackedInt32Array(270, 272, 274), PackedInt32Array(274, 258, 262), PackedInt32Array(266, 269, 270), PackedInt32Array(274, 262, 263), PackedInt32Array(266, 270, 274), PackedInt32Array(274, 263, 266), PackedInt32Array(278, 276, 277), PackedInt32Array(292, 279, 280), PackedInt32Array(280, 281, 282), PackedInt32Array(283, 284, 285), PackedInt32Array(286, 287, 288), PackedInt32Array(288, 289, 290), PackedInt32Array(290, 291, 292), PackedInt32Array(292, 280, 282), PackedInt32Array(283, 285, 286), PackedInt32Array(286, 288, 290), PackedInt32Array(292, 282, 283), PackedInt32Array(283, 286, 290), PackedInt32Array(290, 292, 283), PackedInt32Array(293, 294, 295), PackedInt32Array(295, 296, 297), PackedInt32Array(297, 298, 293), PackedInt32Array(293, 295, 297)] -bones = ["Bone-0", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 1, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 1, 0.7, 0.7, 0, 0, 0, 0.7, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-1", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-2", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 1, 0.7, 0.7, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-3", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-4", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-5", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 1, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0.7, 0, 0.7, 0, 0.7, 0.7), "Bone-6", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-7", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-8", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-9", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0), "Bone-10", PackedFloat32Array(0.7, 0.7, 0, 0.7, 0.7, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0.7, 0.7, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 1, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 1, 0.7, 0.7, 1, 0.7, 1, 1, 1, 1, 0.7, 0.7, 1, 0.7, 0.7, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-11", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-12", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-13", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-14", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 1, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0), "Bone-15", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 1, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-16", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-17", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-18", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0.7, 0.7, 1, 0.7, 1, 0.7, 0.7, 0.7, 0.7, 0.7, 1, 0.7, 0.7, 0.7, 1, 1, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-19", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7)] -internal_vertex_count = 211 +polygon = PackedVector2Array(70, 4, 67, 4, 65, 6, 65, 7, 61, 7, 60, 8, 60, 9, 58, 10, 55, 10, 53, 12, 51, 12, 49, 15, 44, 15, 39, 19, 34, 19, 29, 23, 24, 23, 22, 25, 22, 26, 14, 30, 14, 31, 10, 31, 6, 34, 4, 34, 5, 37, 6, 37, 6, 42, 7, 42, 6, 99, 6, 105, 11, 108, 11, 109, 14, 110, 18, 110, 22, 113, 22, 114, 26, 114, 30, 117, 30, 118, 36, 118, 42, 121, 42, 122, 46, 122, 47, 123, 47, 124, 51, 125, 51, 126, 67, 126, 70, 122, 76, 122, 78, 119, 78, 118, 83, 118, 88, 114, 92, 114, 95, 111, 95, 110, 98, 109, 100, 109, 102, 107, 102, 106, 105, 106, 106, 105, 106, 104, 110, 102, 113, 102, 114, 100, 115, 100, 115, 87, 113, 83, 113, 35, 110, 35, 109, 34, 109, 31, 106, 31, 105, 30, 105, 28, 103, 28, 93, 19, 90, 19, 89, 18, 89, 15, 85, 13, 85, 11, 82, 11, 74, 4, 74, 3, 70, 3, 16.5, 65.5, 6.58772, 65.5, 6.80702, 53, 16.5, 53, 16.5, 53, 6.80702, 53, 7, 42, 6, 42, 6, 40.5, 16.5, 40.5, 16.5, 40.5, 6, 40.5, 6, 37, 5, 37, 4, 34, 6, 34, 10, 31, 14, 31, 14, 30, 16.5, 28.75, 16.5, 90.5, 6.14912, 90.5, 6.36842, 78, 16.5, 78, 16.5, 78, 6.36842, 78, 6.58772, 65.5, 16.5, 65.5, 29, 28, 18, 28, 22, 26, 22, 25, 24, 23, 29, 23, 41.5, 40.5, 29, 40.5, 29, 28, 41.5, 28, 29, 40.5, 16.5, 40.5, 16.5, 28.75, 18, 28, 29, 28, 41.5, 28, 29, 28, 29, 23, 34, 19, 39, 19, 41.5, 17, 29, 53, 16.5, 53, 16.5, 40.5, 29, 40.5, 41.5, 65.5, 29, 65.5, 29, 53, 41.5, 53, 29, 65.5, 16.5, 65.5, 16.5, 53, 29, 53, 41.5, 53, 29, 53, 29, 40.5, 41.5, 40.5, 29, 78, 16.5, 78, 16.5, 65.5, 29, 65.5, 41.5, 90.5, 29, 90.5, 29, 78, 41.5, 78, 29, 90.5, 16.5, 90.5, 16.5, 78, 29, 78, 41.5, 78, 29, 78, 29, 65.5, 41.5, 65.5, 29, 103, 16.5, 103, 16.5, 90.5, 29, 90.5, 41.5, 115.5, 29, 115.5, 29, 103, 41.5, 103, 29, 115.5, 28, 115.5, 26, 114, 22, 114, 22, 113, 18, 110, 16.5, 110, 16.5, 103, 29, 103, 41.5, 103, 29, 103, 29, 90.5, 41.5, 90.5, 16.5, 110, 14, 110, 11, 109, 11, 108, 6, 105, 6, 103, 16.5, 103, 16.5, 103, 6, 103, 6, 99, 6.14912, 90.5, 16.5, 90.5, 29, 116.25, 28, 115.5, 29, 115.5, 41.5, 120.75, 36, 118, 30, 118, 30, 117, 29, 116.25, 29, 115.5, 41.5, 115.5, 54, 28, 41.5, 28, 41.5, 17, 43.375, 15.5, 54, 15.5, 66.5, 40.5, 54, 40.5, 54, 28, 66.5, 28, 54, 40.5, 41.5, 40.5, 41.5, 28, 54, 28, 66.5, 28, 54, 28, 54, 15.5, 66.5, 15.5, 66.5, 15.5, 54, 15.5, 54, 11, 55, 10, 58, 10, 60, 9, 60, 8, 61, 7, 65, 7, 65, 6, 66.5, 4.5, 54, 15.5, 43.375, 15.5, 44, 15, 49, 15, 51, 12, 53, 12, 54, 11, 54, 53, 41.5, 53, 41.5, 40.5, 54, 40.5, 66.5, 65.5, 54, 65.5, 54, 53, 66.5, 53, 54, 65.5, 41.5, 65.5, 41.5, 53, 54, 53, 66.5, 53, 54, 53, 54, 40.5, 66.5, 40.5, 54, 78, 41.5, 78, 41.5, 65.5, 54, 65.5, 66.5, 90.5, 54, 90.5, 54, 78, 66.5, 78, 54, 90.5, 41.5, 90.5, 41.5, 78, 54, 78, 66.5, 78, 54, 78, 54, 65.5, 66.5, 65.5, 54, 103, 41.5, 103, 41.5, 90.5, 54, 90.5, 66.5, 115.5, 54, 115.5, 54, 103, 66.5, 103, 54, 115.5, 41.5, 115.5, 41.5, 103, 54, 103, 66.5, 103, 54, 103, 54, 90.5, 66.5, 90.5, 79, 28, 66.5, 28, 66.5, 15.5, 79, 15.5, 91.5, 40.5, 79, 40.5, 79, 28, 91.5, 28, 79, 40.5, 66.5, 40.5, 66.5, 28, 79, 28, 89, 18, 90, 19, 91.5, 19, 91.5, 28, 79, 28, 79, 15.5, 89, 15.5, 82, 11, 85, 11, 85, 13, 89, 15, 89, 15.5, 79, 15.5, 79, 8.375, 74, 4, 79, 8.375, 79, 15.5, 66.5, 15.5, 66.5, 4.5, 67, 4, 70, 4, 70, 3, 74, 3, 79, 53, 66.5, 53, 66.5, 40.5, 79, 40.5, 91.5, 65.5, 79, 65.5, 79, 53, 91.5, 53, 79, 65.5, 66.5, 65.5, 66.5, 53, 79, 53, 91.5, 53, 79, 53, 79, 40.5, 91.5, 40.5, 79, 78, 66.5, 78, 66.5, 65.5, 79, 65.5, 91.5, 90.5, 79, 90.5, 79, 78, 91.5, 78, 79, 90.5, 66.5, 90.5, 66.5, 78, 79, 78, 91.5, 78, 79, 78, 79, 65.5, 91.5, 65.5, 79, 103, 66.5, 103, 66.5, 90.5, 79, 90.5, 91.5, 114, 88, 114, 86.125, 115.5, 79, 115.5, 79, 103, 91.5, 103, 79, 115.5, 66.5, 115.5, 66.5, 103, 79, 103, 91.5, 103, 79, 103, 79, 90.5, 91.5, 90.5, 79, 118, 78, 118, 78, 119, 76, 122, 70, 122, 67, 126, 66.5, 126, 66.5, 115.5, 79, 115.5, 83, 118, 79, 118, 79, 115.5, 86.125, 115.5, 103, 28, 91.5, 28, 91.5, 19, 93, 19, 105, 30, 106, 31, 109, 31, 109, 34, 110, 35, 113, 35, 113, 40.5, 104, 40.5, 104, 28, 105, 28, 104, 40.5, 91.5, 40.5, 91.5, 28, 104, 28, 104, 53, 91.5, 53, 91.5, 40.5, 104, 40.5, 113, 65.5, 104, 65.5, 104, 53, 113, 53, 104, 65.5, 91.5, 65.5, 91.5, 53, 104, 53, 113, 53, 104, 53, 104, 40.5, 113, 40.5, 104, 78, 91.5, 78, 91.5, 65.5, 104, 65.5, 113, 83, 115, 87, 115, 90.5, 104, 90.5, 104, 78, 113, 78, 104, 90.5, 91.5, 90.5, 91.5, 78, 104, 78, 113, 78, 104, 78, 104, 65.5, 113, 65.5, 104, 103, 91.5, 103, 91.5, 90.5, 104, 90.5, 106, 104, 106, 105, 105, 106, 104, 106, 104, 103, 108, 103, 104, 106, 102, 106, 102, 107, 100, 109, 98, 109, 95, 110, 95, 111, 92, 114, 91.5, 114, 91.5, 103, 104, 103, 115, 100, 114, 100, 113, 102, 110, 102, 108, 103, 104, 103, 104, 90.5, 115, 90.5, 54, 126, 51, 126, 51, 125, 47, 124, 47, 123, 46, 122, 42, 122, 42, 121, 41.5, 120.75, 41.5, 115.5, 54, 115.5, 66.5, 126, 54, 126, 54, 115.5, 66.5, 115.5) +polygons = [PackedInt32Array(91, 88, 89), PackedInt32Array(89, 90, 91), PackedInt32Array(97, 92, 93), PackedInt32Array(94, 95, 96), PackedInt32Array(97, 93, 94), PackedInt32Array(94, 96, 97), PackedInt32Array(107, 98, 99), PackedInt32Array(100, 101, 102), PackedInt32Array(103, 104, 105), PackedInt32Array(105, 106, 107), PackedInt32Array(100, 102, 103), PackedInt32Array(105, 107, 99), PackedInt32Array(100, 103, 105), PackedInt32Array(105, 99, 100), PackedInt32Array(111, 108, 109), PackedInt32Array(109, 110, 111), PackedInt32Array(115, 112, 113), PackedInt32Array(113, 114, 115), PackedInt32Array(121, 116, 117), PackedInt32Array(118, 119, 120), PackedInt32Array(121, 117, 118), PackedInt32Array(118, 120, 121), PackedInt32Array(125, 122, 123), PackedInt32Array(123, 124, 125), PackedInt32Array(130, 126, 127), PackedInt32Array(127, 128, 129), PackedInt32Array(129, 130, 127), PackedInt32Array(136, 131, 132), PackedInt32Array(132, 133, 134), PackedInt32Array(135, 136, 132), PackedInt32Array(132, 134, 135), PackedInt32Array(140, 137, 138), PackedInt32Array(138, 139, 140), PackedInt32Array(144, 141, 142), PackedInt32Array(142, 143, 144), PackedInt32Array(148, 145, 146), PackedInt32Array(146, 147, 148), PackedInt32Array(152, 149, 150), PackedInt32Array(150, 151, 152), PackedInt32Array(156, 153, 154), PackedInt32Array(154, 155, 156), PackedInt32Array(160, 157, 158), PackedInt32Array(158, 159, 160), PackedInt32Array(164, 161, 162), PackedInt32Array(162, 163, 164), PackedInt32Array(168, 165, 166), PackedInt32Array(166, 167, 168), PackedInt32Array(172, 169, 170), PackedInt32Array(170, 171, 172), PackedInt32Array(176, 173, 174), PackedInt32Array(174, 175, 176), PackedInt32Array(185, 177, 178), PackedInt32Array(179, 180, 181), PackedInt32Array(182, 183, 184), PackedInt32Array(184, 185, 178), PackedInt32Array(179, 181, 182), PackedInt32Array(184, 178, 179), PackedInt32Array(179, 182, 184), PackedInt32Array(189, 186, 187), PackedInt32Array(187, 188, 189), PackedInt32Array(196, 190, 191), PackedInt32Array(191, 192, 193), PackedInt32Array(193, 194, 195), PackedInt32Array(195, 196, 191), PackedInt32Array(191, 193, 195), PackedInt32Array(201, 197, 198), PackedInt32Array(198, 199, 200), PackedInt32Array(200, 201, 198), PackedInt32Array(204, 202, 203), PackedInt32Array(211, 205, 206), PackedInt32Array(206, 207, 208), PackedInt32Array(208, 209, 210), PackedInt32Array(210, 211, 206), PackedInt32Array(206, 208, 210), PackedInt32Array(216, 212, 213), PackedInt32Array(213, 214, 215), PackedInt32Array(215, 216, 213), PackedInt32Array(220, 217, 218), PackedInt32Array(218, 219, 220), PackedInt32Array(224, 221, 222), PackedInt32Array(222, 223, 224), PackedInt32Array(228, 225, 226), PackedInt32Array(226, 227, 228), PackedInt32Array(229, 230, 231), PackedInt32Array(231, 232, 233), PackedInt32Array(234, 235, 236), PackedInt32Array(237, 238, 239), PackedInt32Array(229, 231, 233), PackedInt32Array(234, 236, 237), PackedInt32Array(237, 239, 229), PackedInt32Array(229, 233, 234), PackedInt32Array(234, 237, 229), PackedInt32Array(240, 241, 242), PackedInt32Array(243, 244, 245), PackedInt32Array(245, 246, 240), PackedInt32Array(240, 242, 243), PackedInt32Array(243, 245, 240), PackedInt32Array(250, 247, 248), PackedInt32Array(248, 249, 250), PackedInt32Array(254, 251, 252), PackedInt32Array(252, 253, 254), PackedInt32Array(258, 255, 256), PackedInt32Array(256, 257, 258), PackedInt32Array(262, 259, 260), PackedInt32Array(260, 261, 262), PackedInt32Array(266, 263, 264), PackedInt32Array(264, 265, 266), PackedInt32Array(270, 267, 268), PackedInt32Array(268, 269, 270), PackedInt32Array(274, 271, 272), PackedInt32Array(272, 273, 274), PackedInt32Array(278, 275, 276), PackedInt32Array(276, 277, 278), PackedInt32Array(282, 279, 280), PackedInt32Array(280, 281, 282), PackedInt32Array(286, 283, 284), PackedInt32Array(284, 285, 286), PackedInt32Array(290, 287, 288), PackedInt32Array(288, 289, 290), PackedInt32Array(294, 291, 292), PackedInt32Array(292, 293, 294), PackedInt32Array(298, 295, 296), PackedInt32Array(296, 297, 298), PackedInt32Array(302, 299, 300), PackedInt32Array(300, 301, 302), PackedInt32Array(306, 303, 304), PackedInt32Array(304, 305, 306), PackedInt32Array(308, 309, 310), PackedInt32Array(310, 311, 312), PackedInt32Array(312, 313, 307), PackedInt32Array(307, 308, 310), PackedInt32Array(310, 312, 307), PackedInt32Array(314, 315, 316), PackedInt32Array(316, 317, 318), PackedInt32Array(319, 320, 314), PackedInt32Array(316, 318, 319), PackedInt32Array(319, 314, 316), PackedInt32Array(321, 322, 323), PackedInt32Array(323, 324, 325), PackedInt32Array(325, 326, 327), PackedInt32Array(327, 328, 329), PackedInt32Array(321, 323, 325), PackedInt32Array(327, 329, 321), PackedInt32Array(321, 325, 327), PackedInt32Array(333, 330, 331), PackedInt32Array(331, 332, 333), PackedInt32Array(337, 334, 335), PackedInt32Array(335, 336, 337), PackedInt32Array(341, 338, 339), PackedInt32Array(339, 340, 341), PackedInt32Array(345, 342, 343), PackedInt32Array(343, 344, 345), PackedInt32Array(349, 346, 347), PackedInt32Array(347, 348, 349), PackedInt32Array(353, 350, 351), PackedInt32Array(351, 352, 353), PackedInt32Array(357, 354, 355), PackedInt32Array(355, 356, 357), PackedInt32Array(361, 358, 359), PackedInt32Array(359, 360, 361), PackedInt32Array(365, 362, 363), PackedInt32Array(363, 364, 365), PackedInt32Array(371, 366, 367), PackedInt32Array(367, 368, 369), PackedInt32Array(369, 370, 371), PackedInt32Array(371, 367, 369), PackedInt32Array(375, 372, 373), PackedInt32Array(373, 374, 375), PackedInt32Array(379, 376, 377), PackedInt32Array(377, 378, 379), PackedInt32Array(388, 380, 381), PackedInt32Array(381, 382, 383), PackedInt32Array(384, 385, 386), PackedInt32Array(387, 388, 381), PackedInt32Array(381, 383, 384), PackedInt32Array(384, 386, 387), PackedInt32Array(387, 381, 384), PackedInt32Array(392, 389, 390), PackedInt32Array(390, 391, 392), PackedInt32Array(396, 393, 394), PackedInt32Array(394, 395, 396), PackedInt32Array(398, 399, 400), PackedInt32Array(401, 402, 403), PackedInt32Array(404, 405, 406), PackedInt32Array(400, 401, 403), PackedInt32Array(404, 406, 397), PackedInt32Array(398, 400, 403), PackedInt32Array(403, 404, 397), PackedInt32Array(397, 398, 403), PackedInt32Array(410, 407, 408), PackedInt32Array(408, 409, 410), PackedInt32Array(414, 411, 412), PackedInt32Array(412, 413, 414), PackedInt32Array(418, 415, 416), PackedInt32Array(416, 417, 418), PackedInt32Array(422, 419, 420), PackedInt32Array(420, 421, 422), PackedInt32Array(426, 423, 424), PackedInt32Array(424, 425, 426), PackedInt32Array(430, 427, 428), PackedInt32Array(428, 429, 430), PackedInt32Array(431, 432, 433), PackedInt32Array(433, 434, 435), PackedInt32Array(435, 436, 431), PackedInt32Array(431, 433, 435), PackedInt32Array(440, 437, 438), PackedInt32Array(438, 439, 440), PackedInt32Array(444, 441, 442), PackedInt32Array(442, 443, 444), PackedInt32Array(448, 445, 446), PackedInt32Array(446, 447, 448), PackedInt32Array(449, 450, 451), PackedInt32Array(451, 452, 453), PackedInt32Array(453, 454, 449), PackedInt32Array(449, 451, 453), PackedInt32Array(465, 455, 456), PackedInt32Array(456, 457, 458), PackedInt32Array(460, 461, 462), PackedInt32Array(462, 463, 464), PackedInt32Array(464, 465, 456), PackedInt32Array(456, 458, 459), PackedInt32Array(460, 462, 464), PackedInt32Array(464, 456, 459), PackedInt32Array(459, 460, 464), PackedInt32Array(473, 466, 467), PackedInt32Array(467, 468, 469), PackedInt32Array(469, 470, 471), PackedInt32Array(471, 472, 473), PackedInt32Array(473, 467, 469), PackedInt32Array(469, 471, 473), PackedInt32Array(484, 474, 475), PackedInt32Array(476, 477, 478), PackedInt32Array(479, 480, 481), PackedInt32Array(481, 482, 483), PackedInt32Array(484, 475, 476), PackedInt32Array(476, 478, 479), PackedInt32Array(479, 481, 483), PackedInt32Array(483, 484, 476), PackedInt32Array(476, 479, 483), PackedInt32Array(488, 485, 486), PackedInt32Array(486, 487, 488)] +bones = ["Bone-0", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-1", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-2", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-3", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-4", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-5", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0), "Bone-6", PackedFloat32Array(0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-7", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-8", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-9", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1), "Bone-10", PackedFloat32Array(1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-11", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-12", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-13", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1), "Bone-14", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-15", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-16", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-17", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-18", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1)] +internal_vertex_count = 401 script = ExtResource("2_2dapw") vertex_interval = 25 -radius = 19 -rigidbody_scene = ExtResource("3_6ern4") margin_pixels = -1 -voronoi_interval = 0.15 +min_area = 0.3 stiffness = 0.1 damping = 9.1 rest_length_ratio = 1.1 length_ratio = 0.1 softness = 100.0 +radius = 19 +rigidbody_scene = ExtResource("3_6ern4") physics_material_override = ExtResource("5_221ya") [node name="Skeleton2D" type="Skeleton2D" parent="Butter6"] visible = false -modification_stack = SubResource("SkeletonModificationStack2D_c22vf") +modification_stack = SubResource("SkeletonModificationStack2D_xrggm") [node name="Bone-0" type="Bone2D" parent="Butter6/Skeleton2D"] -position = Vector2(11.9819, 47.4582) -rotation = 0.260871 -rest = Transform2D(0.966166, 0.257922, -0.257922, 0.966166, 11.9819, 47.4582) +position = Vector2(10.25, 47.125) +rotation = 1.02504 +rest = Transform2D(0.519068, 0.854733, -0.854733, 0.519068, 10.25, 47.125) auto_calculate_length_and_angle = false length = 25.0 bone_angle = 0.0 -metadata/vert_owned = [88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105] -metadata/connected_nodes_paths = [NodePath("Bone-1"), NodePath("Bone-2"), NodePath("Bone-3"), NodePath("Bone-4")] +metadata/vert_owned = [88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107] +metadata/idx = 0 +metadata/connected_nodes_paths = [NodePath("Bone-1"), NodePath("Bone-3"), NodePath("Bone-4"), NodePath("Bone-2")] +metadata/connected_nodes_idx = [1, 3, 4, 2] metadata/_local_pose_override_enabled_ = true [node name="Bone-1" type="Bone2D" parent="Butter6/Skeleton2D"] -position = Vector2(11.4233, 78.7417) -rotation = -0.0592156 -rest = Transform2D(0.998247, -0.059181, 0.059181, 0.998247, 11.4233, 78.7417) +position = Vector2(11.3246, 78) +rest = Transform2D(1, 0, 0, 1, 11.3246, 78) auto_calculate_length_and_angle = false length = 25.0 bone_angle = 0.0 -metadata/vert_owned = [106, 107, 108, 109, 110] +metadata/vert_owned = [108, 109, 110, 111, 112, 113, 114, 115] +metadata/idx = 1 metadata/connected_nodes_paths = [NodePath("Bone-0"), NodePath("Bone-3"), NodePath("Bone-4"), NodePath("Bone-5")] +metadata/connected_nodes_idx = [0, 3, 4, 5] metadata/_local_pose_override_enabled_ = true [node name="Bone-2" type="Bone2D" parent="Butter6/Skeleton2D"] -position = Vector2(32.1588, 27.3839) -rotation = 0.0406226 +position = Vector2(29, 28.75) +rotation = -0.244979 scale = Vector2(1, 1) -rest = Transform2D(0.999175, 0.0406114, -0.0406114, 0.999175, 32.1588, 27.3839) +rest = Transform2D(0.970142, -0.242536, 0.242536, 0.970142, 29, 28.75) auto_calculate_length_and_angle = false length = 25.0 bone_angle = 0.0 -metadata/vert_owned = [111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121] +metadata/vert_owned = [116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136] +metadata/idx = 2 metadata/connected_nodes_paths = [NodePath("Bone-0"), NodePath("Bone-3"), NodePath("Bone-6"), NodePath("Bone-7")] +metadata/connected_nodes_idx = [0, 3, 6, 7] metadata/_local_pose_override_enabled_ = true [node name="Bone-3" type="Bone2D" parent="Butter6/Skeleton2D"] -position = Vector2(29.9134, 52.2451) -rotation = 1.59192 -rest = Transform2D(-0.0211265, 0.999777, -0.999777, -0.0211265, 29.9134, 52.2451) +position = Vector2(29, 53) +rotation = -1.5708 +rest = Transform2D(-4.37114e-08, -1, 1, -4.37114e-08, 29, 53) auto_calculate_length_and_angle = false length = 25.0 bone_angle = 0.0 -metadata/vert_owned = [122, 123, 124, 125, 126, 127] -metadata/connected_nodes_paths = [NodePath("Bone-0"), NodePath("Bone-1"), NodePath("Bone-2"), NodePath("Bone-4"), NodePath("Bone-6"), NodePath("Bone-7"), NodePath("Bone-8")] +metadata/vert_owned = [137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152] +metadata/idx = 3 +metadata/connected_nodes_paths = [NodePath("Bone-0"), NodePath("Bone-1"), NodePath("Bone-4"), NodePath("Bone-2"), NodePath("Bone-6"), NodePath("Bone-7"), NodePath("Bone-8")] +metadata/connected_nodes_idx = [0, 1, 4, 2, 6, 7, 8] metadata/_local_pose_override_enabled_ = true [node name="Bone-4" type="Bone2D" parent="Butter6/Skeleton2D"] -position = Vector2(29.376, 77.6774) -rotation = 1.78493 -rest = Transform2D(-0.212503, 0.97716, -0.97716, -0.212503, 29.376, 77.6774) +position = Vector2(29, 78) +rotation = 1.7586 +rest = Transform2D(-0.186704, 0.982416, -0.982416, -0.186704, 29, 78) auto_calculate_length_and_angle = false length = 25.0 bone_angle = 0.0 -metadata/vert_owned = [128, 129, 130, 131, 132, 133] +metadata/vert_owned = [153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168] +metadata/idx = 4 metadata/connected_nodes_paths = [NodePath("Bone-0"), NodePath("Bone-1"), NodePath("Bone-3"), NodePath("Bone-5"), NodePath("Bone-7"), NodePath("Bone-8"), NodePath("Bone-9")] +metadata/connected_nodes_idx = [0, 1, 3, 5, 7, 8, 9] metadata/_local_pose_override_enabled_ = true [node name="Bone-5" type="Bone2D" parent="Butter6/Skeleton2D"] -position = Vector2(23.8771, 102.963) -rotation = -0.661389 -rest = Transform2D(0.78914, -0.614213, 0.614213, 0.78914, 23.8771, 102.963) +position = Vector2(23.75, 105.625) +rotation = -1.38299 +scale = Vector2(1, 1) +rest = Transform2D(0.186704, -0.982416, 0.982416, 0.186704, 23.75, 105.625) auto_calculate_length_and_angle = false length = 25.0 bone_angle = 0.0 -metadata/vert_owned = [134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153] -metadata/connected_nodes_paths = [NodePath("Bone-1"), NodePath("Bone-4"), NodePath("Bone-8"), NodePath("Bone-9"), NodePath("Bone-19")] +metadata/vert_owned = [169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211] +metadata/idx = 5 +metadata/connected_nodes_paths = [NodePath("Bone-18"), NodePath("Bone-1"), NodePath("Bone-4"), NodePath("Bone-8"), NodePath("Bone-9")] +metadata/connected_nodes_idx = [18, 1, 4, 8, 9] metadata/_local_pose_override_enabled_ = true [node name="Bone-6" type="Bone2D" parent="Butter6/Skeleton2D"] -position = Vector2(55.7376, 28.3423) -rotation = -0.920184 +position = Vector2(54, 22.5) +rotation = 2.25742 scale = Vector2(1, 1) -rest = Transform2D(0.605673, -0.795713, 0.795713, 0.605673, 55.7376, 28.3423) +rest = Transform2D(-0.633928, 0.773392, -0.773392, -0.633928, 54, 22.5) auto_calculate_length_and_angle = false length = 25.0 bone_angle = 0.0 -metadata/vert_owned = [154, 155, 156, 157, 158, 159, 160] -metadata/connected_nodes_paths = [NodePath("Bone-2"), NodePath("Bone-3"), NodePath("Bone-7"), NodePath("Bone-10"), NodePath("Bone-11"), NodePath("Bone-12")] +metadata/vert_owned = [212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246] +metadata/idx = 6 +metadata/connected_nodes_paths = [NodePath("Bone-10"), NodePath("Bone-2"), NodePath("Bone-3"), NodePath("Bone-7"), NodePath("Bone-11")] +metadata/connected_nodes_idx = [10, 2, 3, 7, 11] metadata/_local_pose_override_enabled_ = true [node name="Bone-7" type="Bone2D" parent="Butter6/Skeleton2D"] -position = Vector2(55.3545, 54.8831) -rotation = 1.60529 -rest = Transform2D(-0.0344882, 0.999405, -0.999405, -0.0344882, 55.3545, 54.8831) +position = Vector2(54, 53) +rotation = 1.5708 +rest = Transform2D(-4.37114e-08, 1, -1, -4.37114e-08, 54, 53) auto_calculate_length_and_angle = false length = 25.0 bone_angle = 0.0 -metadata/vert_owned = [161, 162, 163, 164, 165, 166] -metadata/connected_nodes_paths = [NodePath("Bone-2"), NodePath("Bone-3"), NodePath("Bone-4"), NodePath("Bone-6"), NodePath("Bone-8"), NodePath("Bone-11"), NodePath("Bone-12"), NodePath("Bone-13")] +metadata/vert_owned = [247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262] +metadata/idx = 7 +metadata/connected_nodes_paths = [NodePath("Bone-2"), NodePath("Bone-3"), NodePath("Bone-6"), NodePath("Bone-4"), NodePath("Bone-8"), NodePath("Bone-10"), NodePath("Bone-11"), NodePath("Bone-12")] +metadata/connected_nodes_idx = [2, 3, 6, 4, 8, 10, 11, 12] metadata/_local_pose_override_enabled_ = true [node name="Bone-8" type="Bone2D" parent="Butter6/Skeleton2D"] -position = Vector2(54.5183, 79.1141) -rotation = 1.61776 -rest = Transform2D(-0.0469479, 0.998897, -0.998897, -0.0469479, 54.5183, 79.1141) +position = Vector2(54, 78) +rotation = 1.5708 +rest = Transform2D(-4.37114e-08, 1, -1, -4.37114e-08, 54, 78) auto_calculate_length_and_angle = false length = 25.0 bone_angle = 0.0 -metadata/vert_owned = [167, 168, 169, 170, 171, 172] -metadata/connected_nodes_paths = [NodePath("Bone-3"), NodePath("Bone-4"), NodePath("Bone-5"), NodePath("Bone-7"), NodePath("Bone-9"), NodePath("Bone-12"), NodePath("Bone-13"), NodePath("Bone-14")] +metadata/vert_owned = [263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278] +metadata/idx = 8 +metadata/connected_nodes_paths = [NodePath("Bone-3"), NodePath("Bone-4"), NodePath("Bone-7"), NodePath("Bone-5"), NodePath("Bone-9"), NodePath("Bone-11"), NodePath("Bone-12"), NodePath("Bone-13")] +metadata/connected_nodes_idx = [3, 4, 7, 5, 9, 11, 12, 13] metadata/_local_pose_override_enabled_ = true [node name="Bone-9" type="Bone2D" parent="Butter6/Skeleton2D"] -position = Vector2(53.3725, 103.495) -rotation = -0.729803 -scale = Vector2(1, 1) -rest = Transform2D(0.745306, -0.666723, 0.666723, 0.745306, 53.3725, 103.495) +position = Vector2(54, 103) +rotation = 1.5708 +rest = Transform2D(-4.37114e-08, 1, -1, -4.37114e-08, 54, 103) auto_calculate_length_and_angle = false length = 25.0 bone_angle = 0.0 -metadata/vert_owned = [173, 174, 175, 176] -metadata/connected_nodes_paths = [NodePath("Bone-4"), NodePath("Bone-5"), NodePath("Bone-8"), NodePath("Bone-13"), NodePath("Bone-14"), NodePath("Bone-19")] +metadata/vert_owned = [279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294] +metadata/idx = 9 +metadata/connected_nodes_paths = [NodePath("Bone-4"), NodePath("Bone-5"), NodePath("Bone-8"), NodePath("Bone-18"), NodePath("Bone-12"), NodePath("Bone-13")] +metadata/connected_nodes_idx = [4, 5, 8, 18, 12, 13] metadata/_local_pose_override_enabled_ = true [node name="Bone-10" type="Bone2D" parent="Butter6/Skeleton2D"] -position = Vector2(69.1836, 10.6773) -rotation = 1.02534 -rest = Transform2D(0.518808, 0.854891, -0.854891, 0.518808, 69.1836, 10.6773) +position = Vector2(79, 21.75) +rotation = 1.5708 +rest = Transform2D(-4.37114e-08, 1, -1, -4.37114e-08, 79, 21.75) auto_calculate_length_and_angle = false length = 25.0 bone_angle = 0.0 -metadata/vert_owned = [177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201] -metadata/connected_nodes_paths = [NodePath("Bone-6"), NodePath("Bone-11")] +metadata/vert_owned = [295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329] +metadata/idx = 10 +metadata/connected_nodes_paths = [NodePath("Bone-6"), NodePath("Bone-7"), NodePath("Bone-11"), NodePath("Bone-14"), NodePath("Bone-15")] +metadata/connected_nodes_idx = [6, 7, 11, 14, 15] metadata/_local_pose_override_enabled_ = true [node name="Bone-11" type="Bone2D" parent="Butter6/Skeleton2D"] -position = Vector2(80.9573, 30.078) -rotation = 1.63571 -rest = Transform2D(-0.0648705, 0.997894, -0.997894, -0.0648705, 80.9573, 30.078) +position = Vector2(79, 53) +rotation = 1.5708 +rest = Transform2D(-4.37114e-08, 1, -1, -4.37114e-08, 79, 53) auto_calculate_length_and_angle = false length = 25.0 bone_angle = 0.0 -metadata/vert_owned = [202, 203, 204, 205, 206] -metadata/connected_nodes_paths = [NodePath("Bone-6"), NodePath("Bone-7"), NodePath("Bone-10"), NodePath("Bone-12"), NodePath("Bone-15"), NodePath("Bone-16")] +metadata/vert_owned = [330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345] +metadata/idx = 11 +metadata/connected_nodes_paths = [NodePath("Bone-6"), NodePath("Bone-7"), NodePath("Bone-10"), NodePath("Bone-8"), NodePath("Bone-12"), NodePath("Bone-14"), NodePath("Bone-15"), NodePath("Bone-16")] +metadata/connected_nodes_idx = [6, 7, 10, 8, 12, 14, 15, 16] metadata/_local_pose_override_enabled_ = true [node name="Bone-12" type="Bone2D" parent="Butter6/Skeleton2D"] -position = Vector2(79.3768, 54.3897) -rotation = 1.50099 -rest = Transform2D(0.0697459, 0.997565, -0.997565, 0.0697459, 79.3768, 54.3897) +position = Vector2(79, 78) +rotation = 1.5708 +rest = Transform2D(-4.37114e-08, 1, -1, -4.37114e-08, 79, 78) auto_calculate_length_and_angle = false length = 25.0 bone_angle = 0.0 -metadata/vert_owned = [207, 208, 209, 210, 211] -metadata/connected_nodes_paths = [NodePath("Bone-6"), NodePath("Bone-7"), NodePath("Bone-8"), NodePath("Bone-11"), NodePath("Bone-13"), NodePath("Bone-15"), NodePath("Bone-16"), NodePath("Bone-17")] +metadata/vert_owned = [346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361] +metadata/idx = 12 +metadata/connected_nodes_paths = [NodePath("Bone-7"), NodePath("Bone-8"), NodePath("Bone-11"), NodePath("Bone-9"), NodePath("Bone-13"), NodePath("Bone-15"), NodePath("Bone-16"), NodePath("Bone-17")] +metadata/connected_nodes_idx = [7, 8, 11, 9, 13, 15, 16, 17] metadata/_local_pose_override_enabled_ = true [node name="Bone-13" type="Bone2D" parent="Butter6/Skeleton2D"] -position = Vector2(81.0773, 78.7108) -rotation = 1.64259 -rest = Transform2D(-0.0717316, 0.997424, -0.997424, -0.0717316, 81.0773, 78.7108) +position = Vector2(79, 108.25) +rotation = -2.9346 +rest = Transform2D(-0.978653, -0.205517, 0.205517, -0.978653, 79, 108.25) auto_calculate_length_and_angle = false length = 25.0 bone_angle = 0.0 -metadata/vert_owned = [212, 213, 214, 215, 216, 217, 218] -metadata/connected_nodes_paths = [NodePath("Bone-7"), NodePath("Bone-8"), NodePath("Bone-9"), NodePath("Bone-12"), NodePath("Bone-14"), NodePath("Bone-16"), NodePath("Bone-17"), NodePath("Bone-18")] +metadata/vert_owned = [362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392] +metadata/idx = 13 +metadata/connected_nodes_paths = [NodePath("Bone-18"), NodePath("Bone-17"), NodePath("Bone-8"), NodePath("Bone-9"), NodePath("Bone-12"), NodePath("Bone-16")] +metadata/connected_nodes_idx = [18, 17, 8, 9, 12, 16] metadata/_local_pose_override_enabled_ = true [node name="Bone-14" type="Bone2D" parent="Butter6/Skeleton2D"] -position = Vector2(79.047, 106.942) -rotation = -0.795486 -rest = Transform2D(0.699938, -0.714204, 0.714204, 0.699938, 79.047, 106.942) +position = Vector2(102.25, 29.75) +rotation = 2.35619 +scale = Vector2(1, 1) +rest = Transform2D(-0.707107, 0.707107, -0.707107, -0.707107, 102.25, 29.75) auto_calculate_length_and_angle = false length = 25.0 bone_angle = 0.0 -metadata/vert_owned = [219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232] -metadata/connected_nodes_paths = [NodePath("Bone-8"), NodePath("Bone-9"), NodePath("Bone-13"), NodePath("Bone-17"), NodePath("Bone-18"), NodePath("Bone-19")] +metadata/vert_owned = [393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410] +metadata/idx = 14 +metadata/connected_nodes_paths = [NodePath("Bone-10"), NodePath("Bone-11"), NodePath("Bone-15")] +metadata/connected_nodes_idx = [10, 11, 15] metadata/_local_pose_override_enabled_ = true [node name="Bone-15" type="Bone2D" parent="Butter6/Skeleton2D"] -position = Vector2(102.751, 31.2282) -rotation = 2.36077 -rest = Transform2D(-0.710338, 0.70386, -0.70386, -0.710338, 102.751, 31.2282) +position = Vector2(102.25, 53) +rotation = -1.5708 +rest = Transform2D(-4.37114e-08, -1, 1, -4.37114e-08, 102.25, 53) auto_calculate_length_and_angle = false length = 25.0 bone_angle = 0.0 -metadata/vert_owned = [233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244] -metadata/connected_nodes_paths = [NodePath("Bone-11"), NodePath("Bone-12"), NodePath("Bone-16")] +metadata/vert_owned = [411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426] +metadata/idx = 15 +metadata/connected_nodes_paths = [NodePath("Bone-10"), NodePath("Bone-11"), NodePath("Bone-14"), NodePath("Bone-12"), NodePath("Bone-16")] +metadata/connected_nodes_idx = [10, 11, 14, 12, 16] metadata/_local_pose_override_enabled_ = true [node name="Bone-16" type="Bone2D" parent="Butter6/Skeleton2D"] -position = Vector2(103.646, 54.4703) -rotation = 2.32049 +position = Vector2(103.25, 78) +rotation = -1.61077 scale = Vector2(1, 1) -rest = Transform2D(-0.681412, 0.7319, -0.7319, -0.681412, 103.646, 54.4703) +rest = Transform2D(-0.039968, -0.999201, 0.999201, -0.039968, 103.25, 78) auto_calculate_length_and_angle = false length = 25.0 bone_angle = 0.0 -metadata/vert_owned = [245, 246, 247, 248, 249, 250, 251] -metadata/connected_nodes_paths = [NodePath("Bone-11"), NodePath("Bone-12"), NodePath("Bone-13"), NodePath("Bone-15"), NodePath("Bone-17")] +metadata/vert_owned = [427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444] +metadata/idx = 16 +metadata/connected_nodes_paths = [NodePath("Bone-11"), NodePath("Bone-12"), NodePath("Bone-15"), NodePath("Bone-13"), NodePath("Bone-17")] +metadata/connected_nodes_idx = [11, 12, 15, 13, 17] metadata/_local_pose_override_enabled_ = true [node name="Bone-17" type="Bone2D" parent="Butter6/Skeleton2D"] -position = Vector2(105.689, 79.7563) -rotation = 2.34611 -rest = Transform2D(-0.699938, 0.714204, -0.714204, -0.699938, 105.689, 79.7563) +position = Vector2(103.25, 102.25) +rotation = -2.35619 +scale = Vector2(1, 1) +rest = Transform2D(-0.707107, -0.707107, 0.707107, -0.707107, 103.25, 102.25) auto_calculate_length_and_angle = false length = 25.0 bone_angle = 0.0 -metadata/vert_owned = [252, 253, 254, 255, 256] -metadata/connected_nodes_paths = [NodePath("Bone-12"), NodePath("Bone-13"), NodePath("Bone-14"), NodePath("Bone-16"), NodePath("Bone-18")] +metadata/vert_owned = [445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473] +metadata/idx = 17 +metadata/connected_nodes_paths = [NodePath("Bone-13"), NodePath("Bone-12"), NodePath("Bone-16")] +metadata/connected_nodes_idx = [13, 12, 16] metadata/_local_pose_override_enabled_ = true [node name="Bone-18" type="Bone2D" parent="Butter6/Skeleton2D"] -position = Vector2(102.296, 103.289) -rotation = 2.98577 +position = Vector2(54, 120.75) +rotation = -0.463648 scale = Vector2(1, 1) -rest = Transform2D(-0.987884, 0.155195, -0.155195, -0.987884, 102.296, 103.289) -auto_calculate_length_and_angle = false -length = 25.0 -bone_angle = 0.0 -metadata/vert_owned = [257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278] -metadata/connected_nodes_paths = [NodePath("Bone-13"), NodePath("Bone-14"), NodePath("Bone-17")] -metadata/_local_pose_override_enabled_ = true - -[node name="Bone-19" type="Bone2D" parent="Butter6/Skeleton2D"] -position = Vector2(49.0143, 119.913) -rotation = -1.31134 -rest = Transform2D(0.256555, -0.96653, 0.96653, 0.256555, 49.0143, 119.913) +rest = Transform2D(0.894427, -0.447214, 0.447214, 0.894427, 54, 120.75) auto_calculate_length_and_angle = false length = 25.0 bone_angle = 0.0 -metadata/vert_owned = [279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298] -metadata/connected_nodes_paths = [NodePath("Bone-5"), NodePath("Bone-9"), NodePath("Bone-14")] +metadata/vert_owned = [474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488] +metadata/idx = 18 +metadata/connected_nodes_paths = [NodePath("Bone-5"), NodePath("Bone-13"), NodePath("Bone-9")] +metadata/connected_nodes_idx = [5, 13, 9] metadata/_local_pose_override_enabled_ = true -[node name="Bone-0" parent="Butter6" instance=ExtResource("3_6ern4")] -position = Vector2(11.9819, 47.4582) -mass = 0.05 +[node name="Bone-0" type="RigidBody2D" parent="Butter6" instance=ExtResource("3_6ern4")] +position = Vector2(10.25, 47.125) +input_pickable = true +mass = 0.0526316 physics_material_override = ExtResource("5_221ya") +script = ExtResource("11_tqnjl") +metadata/idx = 0 metadata/bone_name = &"Bone-0" [node name="CircleShape2D" type="CollisionShape2D" parent="Butter6/Bone-0"] -shape = SubResource("CircleShape2D_ctd0h") +shape = SubResource("CircleShape2D_1la4v") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Butter6/Bone-0"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-0") update_rotation = false update_scale = false [node name="Joint2D-Bone-0-Bone-1" type="PinJoint2D" parent="Butter6/Bone-0"] visible = false -rotation = 0.017855 +rotation = -0.0347895 node_a = NodePath("..") node_b = NodePath("../../Bone-1") softness = 100.0 -[node name="Joint2D-Bone-0-Bone-2" type="PinJoint2D" parent="Butter6/Bone-0"] -visible = false -rotation = -2.35365 -node_a = NodePath("..") -node_b = NodePath("../../Bone-2") -softness = 100.0 - [node name="Joint2D-Bone-0-Bone-3" type="PinJoint2D" parent="Butter6/Bone-0"] visible = false -rotation = -1.30993 +rotation = -1.26715 node_a = NodePath("..") node_b = NodePath("../../Bone-3") softness = 100.0 [node name="Joint2D-Bone-0-Bone-4" type="PinJoint2D" parent="Butter6/Bone-0"] visible = false -rotation = -0.522283 +rotation = -0.545761 node_a = NodePath("..") node_b = NodePath("../../Bone-4") softness = 100.0 -[node name="Bone-1" parent="Butter6" instance=ExtResource("3_6ern4")] -position = Vector2(11.4233, 78.7417) -mass = 0.05 +[node name="Joint2D-Bone-0-Bone-2" type="PinJoint2D" parent="Butter6/Bone-0"] +visible = false +rotation = -2.34609 +node_a = NodePath("..") +node_b = NodePath("../../Bone-2") +softness = 100.0 + +[node name="Bone-1" type="RigidBody2D" parent="Butter6" instance=ExtResource("3_6ern4")] +position = Vector2(11.3246, 78) +input_pickable = true +mass = 0.0526316 physics_material_override = ExtResource("5_221ya") +script = ExtResource("11_tqnjl") +metadata/idx = 1 metadata/bone_name = &"Bone-1" [node name="CircleShape2D" type="CollisionShape2D" parent="Butter6/Bone-1"] -shape = SubResource("CircleShape2D_ctd0h") +shape = SubResource("CircleShape2D_1la4v") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Butter6/Bone-1"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-1") update_rotation = false update_scale = false [node name="Joint2D-Bone-1-Bone-0" type="PinJoint2D" parent="Butter6/Bone-1"] visible = false -rotation = -3.12374 +rotation = -3.17638 node_a = NodePath("..") node_b = NodePath("../../Bone-0") softness = 100.0 [node name="Joint2D-Bone-1-Bone-3" type="PinJoint2D" parent="Butter6/Bone-1"] visible = false -rotation = -2.53232 +rotation = -2.52617 node_a = NodePath("..") node_b = NodePath("../../Bone-3") softness = 100.0 [node name="Joint2D-Bone-1-Bone-4" type="PinJoint2D" parent="Butter6/Bone-1"] visible = false -rotation = -1.63001 +rotation = -1.5708 node_a = NodePath("..") node_b = NodePath("../../Bone-4") softness = 100.0 [node name="Joint2D-Bone-1-Bone-5" type="PinJoint2D" parent="Butter6/Bone-1"] visible = false -rotation = -0.474914 +rotation = -0.422679 node_a = NodePath("..") node_b = NodePath("../../Bone-5") softness = 100.0 -[node name="Bone-2" parent="Butter6" instance=ExtResource("3_6ern4")] -position = Vector2(32.1588, 27.3839) -mass = 0.05 +[node name="Bone-2" type="RigidBody2D" parent="Butter6" instance=ExtResource("3_6ern4")] +position = Vector2(29, 28.75) +input_pickable = true +mass = 0.0526316 physics_material_override = ExtResource("5_221ya") +script = ExtResource("11_tqnjl") +metadata/idx = 2 metadata/bone_name = &"Bone-2" [node name="CircleShape2D" type="CollisionShape2D" parent="Butter6/Bone-2"] -shape = SubResource("CircleShape2D_ctd0h") +shape = SubResource("CircleShape2D_1la4v") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Butter6/Bone-2"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-2") update_rotation = false update_scale = false [node name="Joint2D-Bone-2-Bone-0" type="PinJoint2D" parent="Butter6/Bone-2"] visible = false -rotation = 0.787946 +rotation = 0.795499 node_a = NodePath("..") node_b = NodePath("../../Bone-0") softness = 100.0 [node name="Joint2D-Bone-2-Bone-3" type="PinJoint2D" parent="Butter6/Bone-2"] visible = false -rotation = 0.0900715 node_a = NodePath("..") node_b = NodePath("../../Bone-3") softness = 100.0 [node name="Joint2D-Bone-2-Bone-6" type="PinJoint2D" parent="Butter6/Bone-2"] visible = false -rotation = -1.53017 +rotation = -1.81578 node_a = NodePath("..") node_b = NodePath("../../Bone-6") softness = 100.0 [node name="Joint2D-Bone-2-Bone-7" type="PinJoint2D" parent="Butter6/Bone-2"] visible = false -rotation = -0.700711 +rotation = -0.800625 node_a = NodePath("..") node_b = NodePath("../../Bone-7") softness = 100.0 -[node name="Bone-3" parent="Butter6" instance=ExtResource("3_6ern4")] -position = Vector2(29.9134, 52.2451) -mass = 0.05 +[node name="Bone-3" type="RigidBody2D" parent="Butter6" instance=ExtResource("3_6ern4")] +position = Vector2(29, 53) +input_pickable = true +mass = 0.0526316 physics_material_override = ExtResource("5_221ya") +script = ExtResource("11_tqnjl") +metadata/idx = 3 metadata/bone_name = &"Bone-3" [node name="CircleShape2D" type="CollisionShape2D" parent="Butter6/Bone-3"] -shape = SubResource("CircleShape2D_ctd0h") +shape = SubResource("CircleShape2D_1la4v") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Butter6/Bone-3"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-3") update_rotation = false update_scale = false [node name="Joint2D-Bone-3-Bone-0" type="PinJoint2D" parent="Butter6/Bone-3"] visible = false -rotation = -4.45152 +rotation = -4.40875 node_a = NodePath("..") node_b = NodePath("../../Bone-0") softness = 100.0 [node name="Joint2D-Bone-3-Bone-1" type="PinJoint2D" parent="Butter6/Bone-3"] visible = false -rotation = 0.609268 +rotation = 0.61542 node_a = NodePath("..") node_b = NodePath("../../Bone-1") softness = 100.0 -[node name="Joint2D-Bone-3-Bone-2" type="PinJoint2D" parent="Butter6/Bone-3"] +[node name="Joint2D-Bone-3-Bone-4" type="PinJoint2D" parent="Butter6/Bone-3"] visible = false -rotation = -3.05152 node_a = NodePath("..") -node_b = NodePath("../../Bone-2") +node_b = NodePath("../../Bone-4") softness = 100.0 -[node name="Joint2D-Bone-3-Bone-4" type="PinJoint2D" parent="Butter6/Bone-3"] +[node name="Joint2D-Bone-3-Bone-2" type="PinJoint2D" parent="Butter6/Bone-3"] visible = false -rotation = 0.0211281 +rotation = -3.14159 node_a = NodePath("..") -node_b = NodePath("../../Bone-4") +node_b = NodePath("../../Bone-2") softness = 100.0 [node name="Joint2D-Bone-3-Bone-6" type="PinJoint2D" parent="Butter6/Bone-3"] visible = false -rotation = -2.31758 +rotation = -2.45497 node_a = NodePath("..") node_b = NodePath("../../Bone-6") softness = 100.0 [node name="Joint2D-Bone-3-Bone-7" type="PinJoint2D" parent="Butter6/Bone-3"] visible = false -rotation = -1.46747 +rotation = -1.5708 node_a = NodePath("..") node_b = NodePath("../../Bone-7") softness = 100.0 [node name="Joint2D-Bone-3-Bone-8" type="PinJoint2D" parent="Butter6/Bone-3"] visible = false -rotation = -0.741441 +rotation = -0.785398 node_a = NodePath("..") node_b = NodePath("../../Bone-8") softness = 100.0 -[node name="Bone-4" parent="Butter6" instance=ExtResource("3_6ern4")] -position = Vector2(29.376, 77.6774) -mass = 0.05 +[node name="Bone-4" type="RigidBody2D" parent="Butter6" instance=ExtResource("3_6ern4")] +position = Vector2(29, 78) +input_pickable = true +mass = 0.0526316 physics_material_override = ExtResource("5_221ya") +script = ExtResource("11_tqnjl") +metadata/idx = 4 metadata/bone_name = &"Bone-4" [node name="CircleShape2D" type="CollisionShape2D" parent="Butter6/Bone-4"] -shape = SubResource("CircleShape2D_ctd0h") +shape = SubResource("CircleShape2D_1la4v") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Butter6/Bone-4"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-4") update_rotation = false update_scale = false [node name="Joint2D-Bone-4-Bone-0" type="PinJoint2D" parent="Butter6/Bone-4"] visible = false -rotation = -3.66388 +rotation = -3.68735 node_a = NodePath("..") node_b = NodePath("../../Bone-0") softness = 100.0 [node name="Joint2D-Bone-4-Bone-1" type="PinJoint2D" parent="Butter6/Bone-4"] visible = false -rotation = 1.51158 +rotation = 1.5708 node_a = NodePath("..") node_b = NodePath("../../Bone-1") softness = 100.0 [node name="Joint2D-Bone-4-Bone-3" type="PinJoint2D" parent="Butter6/Bone-4"] visible = false -rotation = -3.12046 +rotation = -3.14159 node_a = NodePath("..") node_b = NodePath("../../Bone-3") softness = 100.0 [node name="Joint2D-Bone-4-Bone-5" type="PinJoint2D" parent="Butter6/Bone-4"] visible = false -rotation = 0.214135 +rotation = 0.187806 node_a = NodePath("..") node_b = NodePath("../../Bone-5") softness = 100.0 [node name="Joint2D-Bone-4-Bone-7" type="PinJoint2D" parent="Butter6/Bone-4"] visible = false -rotation = -2.291 +rotation = -2.35619 node_a = NodePath("..") node_b = NodePath("../../Bone-7") softness = 100.0 [node name="Joint2D-Bone-4-Bone-8" type="PinJoint2D" parent="Butter6/Bone-4"] visible = false -rotation = -1.51371 +rotation = -1.5708 node_a = NodePath("..") node_b = NodePath("../../Bone-8") softness = 100.0 [node name="Joint2D-Bone-4-Bone-9" type="PinJoint2D" parent="Butter6/Bone-4"] visible = false -rotation = -0.748864 +rotation = -0.785398 node_a = NodePath("..") node_b = NodePath("../../Bone-9") softness = 100.0 -[node name="Bone-5" parent="Butter6" instance=ExtResource("3_6ern4")] -position = Vector2(23.8771, 102.963) -mass = 0.05 +[node name="Bone-5" type="RigidBody2D" parent="Butter6" instance=ExtResource("3_6ern4")] +position = Vector2(23.75, 105.625) +input_pickable = true +mass = 0.0526316 physics_material_override = ExtResource("5_221ya") +script = ExtResource("11_tqnjl") +metadata/idx = 5 metadata/bone_name = &"Bone-5" [node name="CircleShape2D" type="CollisionShape2D" parent="Butter6/Bone-5"] -shape = SubResource("CircleShape2D_ctd0h") +shape = SubResource("CircleShape2D_1la4v") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Butter6/Bone-5"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-5") update_rotation = false update_scale = false +[node name="Joint2D-Bone-5-Bone-18" type="PinJoint2D" parent="Butter6/Bone-5"] +visible = false +rotation = -1.10715 +node_a = NodePath("..") +node_b = NodePath("../../Bone-18") +softness = 100.0 + [node name="Joint2D-Bone-5-Bone-1" type="PinJoint2D" parent="Butter6/Bone-5"] visible = false -rotation = -3.61651 +rotation = -3.56427 node_a = NodePath("..") node_b = NodePath("../../Bone-1") softness = 100.0 [node name="Joint2D-Bone-5-Bone-4" type="PinJoint2D" parent="Butter6/Bone-5"] visible = false -rotation = -2.92746 +rotation = -2.95379 node_a = NodePath("..") node_b = NodePath("../../Bone-4") softness = 100.0 [node name="Joint2D-Bone-5-Bone-8" type="PinJoint2D" parent="Butter6/Bone-5"] visible = false -rotation = -2.23219 +rotation = -2.31087 node_a = NodePath("..") node_b = NodePath("../../Bone-8") softness = 100.0 [node name="Joint2D-Bone-5-Bone-9" type="PinJoint2D" parent="Butter6/Bone-5"] visible = false -rotation = -1.55278 +rotation = -1.65736 node_a = NodePath("..") node_b = NodePath("../../Bone-9") softness = 100.0 -[node name="Joint2D-Bone-5-Bone-19" type="PinJoint2D" parent="Butter6/Bone-5"] -visible = false -rotation = -0.977532 -node_a = NodePath("..") -node_b = NodePath("../../Bone-19") -softness = 100.0 - -[node name="Bone-6" parent="Butter6" instance=ExtResource("3_6ern4")] -position = Vector2(55.7376, 28.3423) -mass = 0.05 +[node name="Bone-6" type="RigidBody2D" parent="Butter6" instance=ExtResource("3_6ern4")] +position = Vector2(54, 22.5) +input_pickable = true +mass = 0.0526316 physics_material_override = ExtResource("5_221ya") +script = ExtResource("11_tqnjl") +metadata/idx = 6 metadata/bone_name = &"Bone-6" [node name="CircleShape2D" type="CollisionShape2D" parent="Butter6/Bone-6"] -shape = SubResource("CircleShape2D_ctd0h") +shape = SubResource("CircleShape2D_1la4v") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Butter6/Bone-6"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-6") update_rotation = false update_scale = false +[node name="Joint2D-Bone-6-Bone-10" type="PinJoint2D" parent="Butter6/Bone-6"] +visible = false +rotation = -1.60079 +node_a = NodePath("..") +node_b = NodePath("../../Bone-10") +softness = 100.0 + [node name="Joint2D-Bone-6-Bone-2" type="PinJoint2D" parent="Butter6/Bone-6"] visible = false -rotation = -4.67177 +rotation = 1.32582 node_a = NodePath("..") node_b = NodePath("../../Bone-2") softness = 100.0 [node name="Joint2D-Bone-6-Bone-3" type="PinJoint2D" parent="Butter6/Bone-6"] visible = false -rotation = 0.824017 +rotation = 0.686622 node_a = NodePath("..") node_b = NodePath("../../Bone-3") softness = 100.0 [node name="Joint2D-Bone-6-Bone-7" type="PinJoint2D" parent="Butter6/Bone-6"] visible = false -rotation = 0.0144326 node_a = NodePath("..") node_b = NodePath("../../Bone-7") softness = 100.0 -[node name="Joint2D-Bone-6-Bone-10" type="PinJoint2D" parent="Butter6/Bone-6"] -visible = false -rotation = -2.49098 -node_a = NodePath("..") -node_b = NodePath("../../Bone-10") -softness = 100.0 - [node name="Joint2D-Bone-6-Bone-11" type="PinJoint2D" parent="Butter6/Bone-6"] visible = false -rotation = -1.50208 +rotation = -0.686622 node_a = NodePath("..") node_b = NodePath("../../Bone-11") softness = 100.0 -[node name="Joint2D-Bone-6-Bone-12" type="PinJoint2D" parent="Butter6/Bone-6"] -visible = false -rotation = -0.736969 -node_a = NodePath("..") -node_b = NodePath("../../Bone-12") -softness = 100.0 - -[node name="Bone-7" parent="Butter6" instance=ExtResource("3_6ern4")] -position = Vector2(55.3545, 54.8831) -mass = 0.05 +[node name="Bone-7" type="RigidBody2D" parent="Butter6" instance=ExtResource("3_6ern4")] +position = Vector2(54, 53) +input_pickable = true +mass = 0.0526316 physics_material_override = ExtResource("5_221ya") +script = ExtResource("11_tqnjl") +metadata/idx = 7 metadata/bone_name = &"Bone-7" [node name="CircleShape2D" type="CollisionShape2D" parent="Butter6/Bone-7"] -shape = SubResource("CircleShape2D_ctd0h") +shape = SubResource("CircleShape2D_1la4v") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Butter6/Bone-7"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-7") update_rotation = false update_scale = false [node name="Joint2D-Bone-7-Bone-2" type="PinJoint2D" parent="Butter6/Bone-7"] visible = false -rotation = -3.8423 +rotation = -3.94222 node_a = NodePath("..") node_b = NodePath("../../Bone-2") softness = 100.0 [node name="Joint2D-Bone-7-Bone-3" type="PinJoint2D" parent="Butter6/Bone-7"] visible = false -rotation = -4.60907 +rotation = 1.5708 node_a = NodePath("..") node_b = NodePath("../../Bone-3") softness = 100.0 -[node name="Joint2D-Bone-7-Bone-4" type="PinJoint2D" parent="Butter6/Bone-7"] +[node name="Joint2D-Bone-7-Bone-6" type="PinJoint2D" parent="Butter6/Bone-7"] visible = false -rotation = 0.850593 +rotation = -3.14159 node_a = NodePath("..") -node_b = NodePath("../../Bone-4") +node_b = NodePath("../../Bone-6") softness = 100.0 -[node name="Joint2D-Bone-7-Bone-6" type="PinJoint2D" parent="Butter6/Bone-7"] +[node name="Joint2D-Bone-7-Bone-4" type="PinJoint2D" parent="Butter6/Bone-7"] visible = false -rotation = -3.12716 +rotation = 0.785398 node_a = NodePath("..") -node_b = NodePath("../../Bone-6") +node_b = NodePath("../../Bone-4") softness = 100.0 [node name="Joint2D-Bone-7-Bone-8" type="PinJoint2D" parent="Butter6/Bone-7"] visible = false -rotation = 0.0344938 node_a = NodePath("..") node_b = NodePath("../../Bone-8") softness = 100.0 -[node name="Joint2D-Bone-7-Bone-11" type="PinJoint2D" parent="Butter6/Bone-7"] +[node name="Joint2D-Bone-7-Bone-10" type="PinJoint2D" parent="Butter6/Bone-7"] visible = false -rotation = -2.34037 +rotation = -2.46685 node_a = NodePath("..") -node_b = NodePath("../../Bone-11") +node_b = NodePath("../../Bone-10") softness = 100.0 -[node name="Joint2D-Bone-7-Bone-12" type="PinJoint2D" parent="Butter6/Bone-7"] +[node name="Joint2D-Bone-7-Bone-11" type="PinJoint2D" parent="Butter6/Bone-7"] visible = false -rotation = -1.59133 +rotation = -1.5708 node_a = NodePath("..") -node_b = NodePath("../../Bone-12") +node_b = NodePath("../../Bone-11") softness = 100.0 -[node name="Joint2D-Bone-7-Bone-13" type="PinJoint2D" parent="Butter6/Bone-7"] +[node name="Joint2D-Bone-7-Bone-12" type="PinJoint2D" parent="Butter6/Bone-7"] visible = false -rotation = -0.823625 +rotation = -0.785398 node_a = NodePath("..") -node_b = NodePath("../../Bone-13") +node_b = NodePath("../../Bone-12") softness = 100.0 -[node name="Bone-8" parent="Butter6" instance=ExtResource("3_6ern4")] -position = Vector2(54.5183, 79.1141) -mass = 0.05 +[node name="Bone-8" type="RigidBody2D" parent="Butter6" instance=ExtResource("3_6ern4")] +position = Vector2(54, 78) +input_pickable = true +mass = 0.0526316 physics_material_override = ExtResource("5_221ya") +script = ExtResource("11_tqnjl") +metadata/idx = 8 metadata/bone_name = &"Bone-8" [node name="CircleShape2D" type="CollisionShape2D" parent="Butter6/Bone-8"] -shape = SubResource("CircleShape2D_ctd0h") +shape = SubResource("CircleShape2D_1la4v") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Butter6/Bone-8"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-8") update_rotation = false update_scale = false [node name="Joint2D-Bone-8-Bone-3" type="PinJoint2D" parent="Butter6/Bone-8"] visible = false -rotation = -3.88303 +rotation = -3.92699 node_a = NodePath("..") node_b = NodePath("../../Bone-3") softness = 100.0 [node name="Joint2D-Bone-8-Bone-4" type="PinJoint2D" parent="Butter6/Bone-8"] visible = false -rotation = -4.65531 +rotation = 1.5708 node_a = NodePath("..") node_b = NodePath("../../Bone-4") softness = 100.0 -[node name="Joint2D-Bone-8-Bone-5" type="PinJoint2D" parent="Butter6/Bone-8"] +[node name="Joint2D-Bone-8-Bone-7" type="PinJoint2D" parent="Butter6/Bone-8"] visible = false -rotation = 0.909408 +rotation = -3.14159 node_a = NodePath("..") -node_b = NodePath("../../Bone-5") +node_b = NodePath("../../Bone-7") softness = 100.0 -[node name="Joint2D-Bone-8-Bone-7" type="PinJoint2D" parent="Butter6/Bone-8"] +[node name="Joint2D-Bone-8-Bone-5" type="PinJoint2D" parent="Butter6/Bone-8"] visible = false -rotation = -3.1071 +rotation = 0.830723 node_a = NodePath("..") -node_b = NodePath("../../Bone-7") +node_b = NodePath("../../Bone-5") softness = 100.0 [node name="Joint2D-Bone-8-Bone-9" type="PinJoint2D" parent="Butter6/Bone-8"] visible = false -rotation = 0.0469652 node_a = NodePath("..") node_b = NodePath("../../Bone-9") softness = 100.0 -[node name="Joint2D-Bone-8-Bone-12" type="PinJoint2D" parent="Butter6/Bone-8"] +[node name="Joint2D-Bone-8-Bone-11" type="PinJoint2D" parent="Butter6/Bone-8"] visible = false -rotation = -2.35349 +rotation = -2.35619 node_a = NodePath("..") -node_b = NodePath("../../Bone-12") +node_b = NodePath("../../Bone-11") softness = 100.0 -[node name="Joint2D-Bone-8-Bone-13" type="PinJoint2D" parent="Butter6/Bone-8"] +[node name="Joint2D-Bone-8-Bone-12" type="PinJoint2D" parent="Butter6/Bone-8"] visible = false -rotation = -1.58598 +rotation = -1.5708 node_a = NodePath("..") -node_b = NodePath("../../Bone-13") +node_b = NodePath("../../Bone-12") softness = 100.0 -[node name="Joint2D-Bone-8-Bone-14" type="PinJoint2D" parent="Butter6/Bone-8"] +[node name="Joint2D-Bone-8-Bone-13" type="PinJoint2D" parent="Butter6/Bone-8"] visible = false -rotation = -0.722473 +rotation = -0.69066 node_a = NodePath("..") -node_b = NodePath("../../Bone-14") +node_b = NodePath("../../Bone-13") softness = 100.0 -[node name="Bone-9" parent="Butter6" instance=ExtResource("3_6ern4")] -position = Vector2(53.3725, 103.495) -mass = 0.05 +[node name="Bone-9" type="RigidBody2D" parent="Butter6" instance=ExtResource("3_6ern4")] +position = Vector2(54, 103) +input_pickable = true +mass = 0.0526316 physics_material_override = ExtResource("5_221ya") +script = ExtResource("11_tqnjl") +metadata/idx = 9 metadata/bone_name = &"Bone-9" [node name="CircleShape2D" type="CollisionShape2D" parent="Butter6/Bone-9"] -shape = SubResource("CircleShape2D_ctd0h") +shape = SubResource("CircleShape2D_1la4v") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Butter6/Bone-9"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-9") update_rotation = false update_scale = false [node name="Joint2D-Bone-9-Bone-4" type="PinJoint2D" parent="Butter6/Bone-9"] visible = false -rotation = -3.89046 +rotation = -3.92699 node_a = NodePath("..") node_b = NodePath("../../Bone-4") softness = 100.0 [node name="Joint2D-Bone-9-Bone-5" type="PinJoint2D" parent="Butter6/Bone-9"] visible = false -rotation = -4.69438 +rotation = 1.48424 node_a = NodePath("..") node_b = NodePath("../../Bone-5") softness = 100.0 [node name="Joint2D-Bone-9-Bone-8" type="PinJoint2D" parent="Butter6/Bone-9"] visible = false -rotation = -3.09463 +rotation = -3.14159 node_a = NodePath("..") node_b = NodePath("../../Bone-8") softness = 100.0 -[node name="Joint2D-Bone-9-Bone-13" type="PinJoint2D" parent="Butter6/Bone-9"] +[node name="Joint2D-Bone-9-Bone-18" type="PinJoint2D" parent="Butter6/Bone-9"] visible = false -rotation = -2.3006 node_a = NodePath("..") -node_b = NodePath("../../Bone-13") +node_b = NodePath("../../Bone-18") softness = 100.0 -[node name="Joint2D-Bone-9-Bone-14" type="PinJoint2D" parent="Butter6/Bone-9"] +[node name="Joint2D-Bone-9-Bone-12" type="PinJoint2D" parent="Butter6/Bone-9"] visible = false -rotation = -1.43733 +rotation = -2.35619 node_a = NodePath("..") -node_b = NodePath("../../Bone-14") +node_b = NodePath("../../Bone-12") softness = 100.0 -[node name="Joint2D-Bone-9-Bone-19" type="PinJoint2D" parent="Butter6/Bone-9"] +[node name="Joint2D-Bone-9-Bone-13" type="PinJoint2D" parent="Butter6/Bone-9"] visible = false -rotation = 0.259457 +rotation = -1.3638 node_a = NodePath("..") -node_b = NodePath("../../Bone-19") +node_b = NodePath("../../Bone-13") softness = 100.0 -[node name="Bone-10" parent="Butter6" instance=ExtResource("3_6ern4")] -position = Vector2(69.1836, 10.6773) -mass = 0.05 +[node name="Bone-10" type="RigidBody2D" parent="Butter6" instance=ExtResource("3_6ern4")] +position = Vector2(79, 21.75) +input_pickable = true +mass = 0.0526316 physics_material_override = ExtResource("5_221ya") +script = ExtResource("11_tqnjl") +metadata/idx = 10 metadata/bone_name = &"Bone-10" [node name="CircleShape2D" type="CollisionShape2D" parent="Butter6/Bone-10"] -shape = SubResource("CircleShape2D_ctd0h") +shape = SubResource("CircleShape2D_1la4v") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Butter6/Bone-10"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-10") update_rotation = false update_scale = false [node name="Joint2D-Bone-10-Bone-6" type="PinJoint2D" parent="Butter6/Bone-10"] visible = false -rotation = 0.650612 +rotation = 1.54081 node_a = NodePath("..") node_b = NodePath("../../Bone-6") softness = 100.0 +[node name="Joint2D-Bone-10-Bone-7" type="PinJoint2D" parent="Butter6/Bone-10"] +visible = false +rotation = 0.674741 +node_a = NodePath("..") +node_b = NodePath("../../Bone-7") +softness = 100.0 + [node name="Joint2D-Bone-10-Bone-11" type="PinJoint2D" parent="Butter6/Bone-10"] visible = false -rotation = -0.545454 node_a = NodePath("..") node_b = NodePath("../../Bone-11") softness = 100.0 -[node name="Bone-11" parent="Butter6" instance=ExtResource("3_6ern4")] -position = Vector2(80.9573, 30.078) -mass = 0.05 +[node name="Joint2D-Bone-10-Bone-14" type="PinJoint2D" parent="Butter6/Bone-10"] +visible = false +rotation = -1.2394 +node_a = NodePath("..") +node_b = NodePath("../../Bone-14") +softness = 100.0 + +[node name="Joint2D-Bone-10-Bone-15" type="PinJoint2D" parent="Butter6/Bone-10"] +visible = false +rotation = -0.63965 +node_a = NodePath("..") +node_b = NodePath("../../Bone-15") +softness = 100.0 + +[node name="Bone-11" type="RigidBody2D" parent="Butter6" instance=ExtResource("3_6ern4")] +position = Vector2(79, 53) +input_pickable = true +mass = 0.0526316 physics_material_override = ExtResource("5_221ya") +script = ExtResource("11_tqnjl") +metadata/idx = 11 metadata/bone_name = &"Bone-11" [node name="CircleShape2D" type="CollisionShape2D" parent="Butter6/Bone-11"] -shape = SubResource("CircleShape2D_ctd0h") +shape = SubResource("CircleShape2D_1la4v") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Butter6/Bone-11"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-11") update_rotation = false update_scale = false [node name="Joint2D-Bone-11-Bone-6" type="PinJoint2D" parent="Butter6/Bone-11"] visible = false -rotation = -4.64367 +rotation = -3.82821 node_a = NodePath("..") node_b = NodePath("../../Bone-6") softness = 100.0 [node name="Joint2D-Bone-11-Bone-7" type="PinJoint2D" parent="Butter6/Bone-11"] visible = false -rotation = 0.80122 +rotation = 1.5708 node_a = NodePath("..") node_b = NodePath("../../Bone-7") softness = 100.0 [node name="Joint2D-Bone-11-Bone-10" type="PinJoint2D" parent="Butter6/Bone-11"] visible = false -rotation = -3.68705 +rotation = -3.14159 node_a = NodePath("..") node_b = NodePath("../../Bone-10") softness = 100.0 +[node name="Joint2D-Bone-11-Bone-8" type="PinJoint2D" parent="Butter6/Bone-11"] +visible = false +rotation = 0.785398 +node_a = NodePath("..") +node_b = NodePath("../../Bone-8") +softness = 100.0 + [node name="Joint2D-Bone-11-Bone-12" type="PinJoint2D" parent="Butter6/Bone-11"] visible = false -rotation = 0.0649149 node_a = NodePath("..") node_b = NodePath("../../Bone-12") softness = 100.0 +[node name="Joint2D-Bone-11-Bone-14" type="PinJoint2D" parent="Butter6/Bone-11"] +visible = false +rotation = -2.35619 +node_a = NodePath("..") +node_b = NodePath("../../Bone-14") +softness = 100.0 + [node name="Joint2D-Bone-11-Bone-15" type="PinJoint2D" parent="Butter6/Bone-11"] visible = false -rotation = -1.51807 +rotation = -1.5708 node_a = NodePath("..") node_b = NodePath("../../Bone-15") softness = 100.0 [node name="Joint2D-Bone-11-Bone-16" type="PinJoint2D" parent="Butter6/Bone-11"] visible = false -rotation = -0.749219 +rotation = -0.770171 node_a = NodePath("..") node_b = NodePath("../../Bone-16") softness = 100.0 -[node name="Bone-12" parent="Butter6" instance=ExtResource("3_6ern4")] -position = Vector2(79.3768, 54.3897) -mass = 0.05 +[node name="Bone-12" type="RigidBody2D" parent="Butter6" instance=ExtResource("3_6ern4")] +position = Vector2(79, 78) +input_pickable = true +mass = 0.0526316 physics_material_override = ExtResource("5_221ya") +script = ExtResource("11_tqnjl") +metadata/idx = 12 metadata/bone_name = &"Bone-12" [node name="CircleShape2D" type="CollisionShape2D" parent="Butter6/Bone-12"] -shape = SubResource("CircleShape2D_ctd0h") +shape = SubResource("CircleShape2D_1la4v") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Butter6/Bone-12"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-12") update_rotation = false update_scale = false -[node name="Joint2D-Bone-12-Bone-6" type="PinJoint2D" parent="Butter6/Bone-12"] -visible = false -rotation = -3.87856 -node_a = NodePath("..") -node_b = NodePath("../../Bone-6") -softness = 100.0 - [node name="Joint2D-Bone-12-Bone-7" type="PinJoint2D" parent="Butter6/Bone-12"] visible = false -rotation = 1.55026 +rotation = -3.92699 node_a = NodePath("..") node_b = NodePath("../../Bone-7") softness = 100.0 [node name="Joint2D-Bone-12-Bone-8" type="PinJoint2D" parent="Butter6/Bone-12"] visible = false -rotation = 0.788103 +rotation = 1.5708 node_a = NodePath("..") node_b = NodePath("../../Bone-8") softness = 100.0 [node name="Joint2D-Bone-12-Bone-11" type="PinJoint2D" parent="Butter6/Bone-12"] visible = false -rotation = -3.07668 +rotation = -3.14159 node_a = NodePath("..") node_b = NodePath("../../Bone-11") softness = 100.0 +[node name="Joint2D-Bone-12-Bone-9" type="PinJoint2D" parent="Butter6/Bone-12"] +visible = false +rotation = 0.785398 +node_a = NodePath("..") +node_b = NodePath("../../Bone-9") +softness = 100.0 + [node name="Joint2D-Bone-12-Bone-13" type="PinJoint2D" parent="Butter6/Bone-12"] visible = false -rotation = -0.0698014 node_a = NodePath("..") node_b = NodePath("../../Bone-13") softness = 100.0 [node name="Joint2D-Bone-12-Bone-15" type="PinJoint2D" parent="Butter6/Bone-12"] visible = false -rotation = -2.35161 +rotation = -2.39245 node_a = NodePath("..") node_b = NodePath("../../Bone-15") softness = 100.0 [node name="Joint2D-Bone-12-Bone-16" type="PinJoint2D" parent="Butter6/Bone-12"] visible = false -rotation = -1.56748 +rotation = -1.5708 node_a = NodePath("..") node_b = NodePath("../../Bone-16") softness = 100.0 [node name="Joint2D-Bone-12-Bone-17" type="PinJoint2D" parent="Butter6/Bone-12"] visible = false -rotation = -0.803699 +rotation = -0.785398 node_a = NodePath("..") node_b = NodePath("../../Bone-17") softness = 100.0 -[node name="Bone-13" parent="Butter6" instance=ExtResource("3_6ern4")] -position = Vector2(81.0773, 78.7108) -mass = 0.05 +[node name="Bone-13" type="RigidBody2D" parent="Butter6" instance=ExtResource("3_6ern4")] +position = Vector2(79, 108.25) +input_pickable = true +mass = 0.0526316 physics_material_override = ExtResource("5_221ya") +script = ExtResource("11_tqnjl") +metadata/idx = 13 metadata/bone_name = &"Bone-13" [node name="CircleShape2D" type="CollisionShape2D" parent="Butter6/Bone-13"] -shape = SubResource("CircleShape2D_ctd0h") +shape = SubResource("CircleShape2D_1la4v") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Butter6/Bone-13"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-13") update_rotation = false update_scale = false -[node name="Joint2D-Bone-13-Bone-7" type="PinJoint2D" parent="Butter6/Bone-13"] +[node name="Joint2D-Bone-13-Bone-18" type="PinJoint2D" parent="Butter6/Bone-13"] +visible = false +rotation = 1.10715 +node_a = NodePath("..") +node_b = NodePath("../../Bone-18") +softness = 100.0 + +[node name="Joint2D-Bone-13-Bone-17" type="PinJoint2D" parent="Butter6/Bone-13"] visible = false -rotation = -3.96522 +rotation = -1.81335 node_a = NodePath("..") -node_b = NodePath("../../Bone-7") +node_b = NodePath("../../Bone-17") softness = 100.0 [node name="Joint2D-Bone-13-Bone-8" type="PinJoint2D" parent="Butter6/Bone-13"] visible = false -rotation = 1.55561 +rotation = -3.83225 node_a = NodePath("..") node_b = NodePath("../../Bone-8") softness = 100.0 [node name="Joint2D-Bone-13-Bone-9" type="PinJoint2D" parent="Butter6/Bone-13"] visible = false -rotation = 0.840993 +rotation = -4.5054 node_a = NodePath("..") node_b = NodePath("../../Bone-9") softness = 100.0 [node name="Joint2D-Bone-13-Bone-12" type="PinJoint2D" parent="Butter6/Bone-13"] visible = false -rotation = -3.21139 +rotation = -3.14159 node_a = NodePath("..") node_b = NodePath("../../Bone-12") softness = 100.0 -[node name="Joint2D-Bone-13-Bone-14" type="PinJoint2D" parent="Butter6/Bone-13"] -visible = false -rotation = 0.0717928 -node_a = NodePath("..") -node_b = NodePath("../../Bone-14") -softness = 100.0 - [node name="Joint2D-Bone-13-Bone-16" type="PinJoint2D" parent="Butter6/Bone-13"] visible = false -rotation = -2.3919 +rotation = -2.46584 node_a = NodePath("..") node_b = NodePath("../../Bone-16") softness = 100.0 -[node name="Joint2D-Bone-13-Bone-17" type="PinJoint2D" parent="Butter6/Bone-13"] -visible = false -rotation = -1.52834 -node_a = NodePath("..") -node_b = NodePath("../../Bone-17") -softness = 100.0 - -[node name="Joint2D-Bone-13-Bone-18" type="PinJoint2D" parent="Butter6/Bone-13"] -visible = false -rotation = -0.71218 -node_a = NodePath("..") -node_b = NodePath("../../Bone-18") -softness = 100.0 - -[node name="Bone-14" parent="Butter6" instance=ExtResource("3_6ern4")] -position = Vector2(79.047, 106.942) -mass = 0.05 +[node name="Bone-14" type="RigidBody2D" parent="Butter6" instance=ExtResource("3_6ern4")] +position = Vector2(102.25, 29.75) +input_pickable = true +mass = 0.0526316 physics_material_override = ExtResource("5_221ya") +script = ExtResource("11_tqnjl") +metadata/idx = 14 metadata/bone_name = &"Bone-14" [node name="CircleShape2D" type="CollisionShape2D" parent="Butter6/Bone-14"] -shape = SubResource("CircleShape2D_ctd0h") +shape = SubResource("CircleShape2D_1la4v") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Butter6/Bone-14"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-14") update_rotation = false update_scale = false -[node name="Joint2D-Bone-14-Bone-8" type="PinJoint2D" parent="Butter6/Bone-14"] -visible = false -rotation = -3.86407 -node_a = NodePath("..") -node_b = NodePath("../../Bone-8") -softness = 100.0 - -[node name="Joint2D-Bone-14-Bone-9" type="PinJoint2D" parent="Butter6/Bone-14"] -visible = false -rotation = -4.57892 -node_a = NodePath("..") -node_b = NodePath("../../Bone-9") -softness = 100.0 - -[node name="Joint2D-Bone-14-Bone-13" type="PinJoint2D" parent="Butter6/Bone-14"] -visible = false -rotation = -3.0698 -node_a = NodePath("..") -node_b = NodePath("../../Bone-13") -softness = 100.0 - -[node name="Joint2D-Bone-14-Bone-17" type="PinJoint2D" parent="Butter6/Bone-14"] +[node name="Joint2D-Bone-14-Bone-10" type="PinJoint2D" parent="Butter6/Bone-14"] visible = false -rotation = -2.36628 +rotation = -4.38099 node_a = NodePath("..") -node_b = NodePath("../../Bone-17") +node_b = NodePath("../../Bone-10") softness = 100.0 -[node name="Joint2D-Bone-14-Bone-18" type="PinJoint2D" parent="Butter6/Bone-14"] +[node name="Joint2D-Bone-14-Bone-11" type="PinJoint2D" parent="Butter6/Bone-14"] visible = false -rotation = -1.72662 +rotation = 0.785398 node_a = NodePath("..") -node_b = NodePath("../../Bone-18") +node_b = NodePath("../../Bone-11") softness = 100.0 -[node name="Joint2D-Bone-14-Bone-19" type="PinJoint2D" parent="Butter6/Bone-14"] +[node name="Joint2D-Bone-14-Bone-15" type="PinJoint2D" parent="Butter6/Bone-14"] visible = false -rotation = 1.16309 node_a = NodePath("..") -node_b = NodePath("../../Bone-19") +node_b = NodePath("../../Bone-15") softness = 100.0 -[node name="Bone-15" parent="Butter6" instance=ExtResource("3_6ern4")] -position = Vector2(102.751, 31.2282) -mass = 0.05 +[node name="Bone-15" type="RigidBody2D" parent="Butter6" instance=ExtResource("3_6ern4")] +position = Vector2(102.25, 53) +input_pickable = true +mass = 0.0526316 physics_material_override = ExtResource("5_221ya") +script = ExtResource("11_tqnjl") +metadata/idx = 15 metadata/bone_name = &"Bone-15" [node name="CircleShape2D" type="CollisionShape2D" parent="Butter6/Bone-15"] -shape = SubResource("CircleShape2D_ctd0h") +shape = SubResource("CircleShape2D_1la4v") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Butter6/Bone-15"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-15") update_rotation = false update_scale = false +[node name="Joint2D-Bone-15-Bone-10" type="PinJoint2D" parent="Butter6/Bone-15"] +visible = false +rotation = -3.78124 +node_a = NodePath("..") +node_b = NodePath("../../Bone-10") +softness = 100.0 + [node name="Joint2D-Bone-15-Bone-11" type="PinJoint2D" parent="Butter6/Bone-15"] visible = false -rotation = -4.65966 +rotation = 1.5708 node_a = NodePath("..") node_b = NodePath("../../Bone-11") softness = 100.0 +[node name="Joint2D-Bone-15-Bone-14" type="PinJoint2D" parent="Butter6/Bone-15"] +visible = false +rotation = -3.14159 +node_a = NodePath("..") +node_b = NodePath("../../Bone-14") +softness = 100.0 + [node name="Joint2D-Bone-15-Bone-12" type="PinJoint2D" parent="Butter6/Bone-15"] visible = false -rotation = 0.789978 +rotation = 0.749145 node_a = NodePath("..") node_b = NodePath("../../Bone-12") softness = 100.0 [node name="Joint2D-Bone-15-Bone-16" type="PinJoint2D" parent="Butter6/Bone-15"] visible = false -rotation = -0.0384482 +rotation = -0.0399787 node_a = NodePath("..") node_b = NodePath("../../Bone-16") softness = 100.0 -[node name="Bone-16" parent="Butter6" instance=ExtResource("3_6ern4")] -position = Vector2(103.646, 54.4703) -mass = 0.05 +[node name="Bone-16" type="RigidBody2D" parent="Butter6" instance=ExtResource("3_6ern4")] +position = Vector2(103.25, 78) +input_pickable = true +mass = 0.0526316 physics_material_override = ExtResource("5_221ya") +script = ExtResource("11_tqnjl") +metadata/idx = 16 metadata/bone_name = &"Bone-16" [node name="CircleShape2D" type="CollisionShape2D" parent="Butter6/Bone-16"] -shape = SubResource("CircleShape2D_ctd0h") +shape = SubResource("CircleShape2D_1la4v") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Butter6/Bone-16"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-16") update_rotation = false update_scale = false [node name="Joint2D-Bone-16-Bone-11" type="PinJoint2D" parent="Butter6/Bone-16"] visible = false -rotation = -3.89081 +rotation = -3.91176 node_a = NodePath("..") node_b = NodePath("../../Bone-11") softness = 100.0 [node name="Joint2D-Bone-16-Bone-12" type="PinJoint2D" parent="Butter6/Bone-16"] visible = false -rotation = -4.70907 +rotation = 1.5708 node_a = NodePath("..") node_b = NodePath("../../Bone-12") softness = 100.0 -[node name="Joint2D-Bone-16-Bone-13" type="PinJoint2D" parent="Butter6/Bone-16"] +[node name="Joint2D-Bone-16-Bone-15" type="PinJoint2D" parent="Butter6/Bone-16"] visible = false -rotation = 0.749689 +rotation = -3.18157 node_a = NodePath("..") -node_b = NodePath("../../Bone-13") +node_b = NodePath("../../Bone-15") softness = 100.0 -[node name="Joint2D-Bone-16-Bone-15" type="PinJoint2D" parent="Butter6/Bone-16"] +[node name="Joint2D-Bone-16-Bone-13" type="PinJoint2D" parent="Butter6/Bone-16"] visible = false -rotation = -3.18004 +rotation = 0.675748 node_a = NodePath("..") -node_b = NodePath("../../Bone-15") +node_b = NodePath("../../Bone-13") softness = 100.0 [node name="Joint2D-Bone-16-Bone-17" type="PinJoint2D" parent="Butter6/Bone-16"] visible = false -rotation = -0.0806511 node_a = NodePath("..") node_b = NodePath("../../Bone-17") softness = 100.0 -[node name="Bone-17" parent="Butter6" instance=ExtResource("3_6ern4")] -position = Vector2(105.689, 79.7563) -mass = 0.05 +[node name="Bone-17" type="RigidBody2D" parent="Butter6" instance=ExtResource("3_6ern4")] +position = Vector2(103.25, 102.25) +input_pickable = true +mass = 0.0526316 physics_material_override = ExtResource("5_221ya") +script = ExtResource("11_tqnjl") +metadata/idx = 17 metadata/bone_name = &"Bone-17" [node name="CircleShape2D" type="CollisionShape2D" parent="Butter6/Bone-17"] -shape = SubResource("CircleShape2D_ctd0h") +shape = SubResource("CircleShape2D_1la4v") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Butter6/Bone-17"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-17") update_rotation = false update_scale = false -[node name="Joint2D-Bone-17-Bone-12" type="PinJoint2D" parent="Butter6/Bone-17"] -visible = false -rotation = -3.94529 -node_a = NodePath("..") -node_b = NodePath("../../Bone-12") -softness = 100.0 - [node name="Joint2D-Bone-17-Bone-13" type="PinJoint2D" parent="Butter6/Bone-17"] visible = false -rotation = -4.66994 +rotation = 1.32824 node_a = NodePath("..") node_b = NodePath("../../Bone-13") softness = 100.0 -[node name="Joint2D-Bone-17-Bone-14" type="PinJoint2D" parent="Butter6/Bone-17"] +[node name="Joint2D-Bone-17-Bone-12" type="PinJoint2D" parent="Butter6/Bone-17"] visible = false -rotation = 0.775311 +rotation = -3.92699 node_a = NodePath("..") -node_b = NodePath("../../Bone-14") +node_b = NodePath("../../Bone-12") softness = 100.0 [node name="Joint2D-Bone-17-Bone-16" type="PinJoint2D" parent="Butter6/Bone-17"] visible = false -rotation = -3.22224 +rotation = -3.14159 node_a = NodePath("..") node_b = NodePath("../../Bone-16") softness = 100.0 -[node name="Joint2D-Bone-17-Bone-18" type="PinJoint2D" parent="Butter6/Bone-17"] -visible = false -rotation = 0.14319 -node_a = NodePath("..") -node_b = NodePath("../../Bone-18") -softness = 100.0 - -[node name="Bone-18" parent="Butter6" instance=ExtResource("3_6ern4")] -position = Vector2(102.296, 103.289) -mass = 0.05 +[node name="Bone-18" type="RigidBody2D" parent="Butter6" instance=ExtResource("3_6ern4")] +position = Vector2(54, 120.75) +input_pickable = true +mass = 0.0526316 physics_material_override = ExtResource("5_221ya") +script = ExtResource("11_tqnjl") +metadata/idx = 18 metadata/bone_name = &"Bone-18" [node name="CircleShape2D" type="CollisionShape2D" parent="Butter6/Bone-18"] -shape = SubResource("CircleShape2D_ctd0h") +shape = SubResource("CircleShape2D_1la4v") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Butter6/Bone-18"] -remote_path = NodePath("../../Skeleton2D/Bone-18") -update_rotation = false -update_scale = false - -[node name="Joint2D-Bone-18-Bone-13" type="PinJoint2D" parent="Butter6/Bone-18"] -visible = false -rotation = -3.85377 -node_a = NodePath("..") -node_b = NodePath("../../Bone-13") -softness = 100.0 - -[node name="Joint2D-Bone-18-Bone-14" type="PinJoint2D" parent="Butter6/Bone-18"] -visible = false -rotation = 1.41497 -node_a = NodePath("..") -node_b = NodePath("../../Bone-14") -softness = 100.0 - -[node name="Joint2D-Bone-18-Bone-17" type="PinJoint2D" parent="Butter6/Bone-18"] visible = false -rotation = -2.9984 -node_a = NodePath("..") -node_b = NodePath("../../Bone-17") -softness = 100.0 - -[node name="Bone-19" parent="Butter6" instance=ExtResource("3_6ern4")] -position = Vector2(49.0143, 119.913) -mass = 0.05 -physics_material_override = ExtResource("5_221ya") -metadata/bone_name = &"Bone-19" - -[node name="CircleShape2D" type="CollisionShape2D" parent="Butter6/Bone-19"] -shape = SubResource("CircleShape2D_ctd0h") - -[node name="RemoteTransform2D" type="RemoteTransform2D" parent="Butter6/Bone-19"] -remote_path = NodePath("../../Skeleton2D/Bone-19") +remote_path = NodePath("../../Skeleton2D/Bone-18") update_rotation = false update_scale = false -[node name="Joint2D-Bone-19-Bone-5" type="PinJoint2D" parent="Butter6/Bone-19"] +[node name="Joint2D-Bone-18-Bone-5" type="PinJoint2D" parent="Butter6/Bone-18"] visible = false -rotation = -4.11912 +rotation = -4.24874 node_a = NodePath("..") node_b = NodePath("../../Bone-5") softness = 100.0 -[node name="Joint2D-Bone-19-Bone-9" type="PinJoint2D" parent="Butter6/Bone-19"] +[node name="Joint2D-Bone-18-Bone-13" type="PinJoint2D" parent="Butter6/Bone-18"] visible = false -rotation = -2.88214 +rotation = -2.03444 node_a = NodePath("..") -node_b = NodePath("../../Bone-9") +node_b = NodePath("../../Bone-13") softness = 100.0 -[node name="Joint2D-Bone-19-Bone-14" type="PinJoint2D" parent="Butter6/Bone-19"] +[node name="Joint2D-Bone-18-Bone-9" type="PinJoint2D" parent="Butter6/Bone-18"] visible = false -rotation = -1.9785 +rotation = -3.14159 node_a = NodePath("..") -node_b = NodePath("../../Bone-14") +node_b = NodePath("../../Bone-9") softness = 100.0 [node name="Butter7" type="Polygon2D" parent="."] @@ -7428,2245 +7444,2599 @@ z_index = 7 position = Vector2(457, -165) texture = ExtResource("4_xackp") skeleton = NodePath("Skeleton2D") -polygon = PackedVector2Array(70, 4, 67, 4, 65, 6, 65, 7, 61, 7, 60, 8, 60, 9, 58, 10, 55, 10, 53, 12, 51, 12, 49, 15, 44, 15, 39, 19, 34, 19, 29, 23, 24, 23, 22, 25, 22, 26, 14, 30, 14, 31, 10, 31, 6, 34, 4, 34, 5, 37, 6, 37, 6, 42, 7, 42, 6, 99, 6, 105, 11, 108, 11, 109, 14, 110, 18, 110, 22, 113, 22, 114, 26, 114, 30, 117, 30, 118, 36, 118, 42, 121, 42, 122, 46, 122, 47, 123, 47, 124, 51, 125, 51, 126, 67, 126, 70, 122, 76, 122, 78, 119, 78, 118, 83, 118, 88, 114, 92, 114, 95, 111, 95, 110, 98, 109, 100, 109, 102, 107, 102, 106, 105, 106, 106, 105, 106, 104, 110, 102, 113, 102, 114, 100, 115, 100, 115, 87, 113, 83, 113, 35, 110, 35, 109, 34, 109, 31, 106, 31, 105, 30, 105, 28, 103, 28, 93, 19, 90, 19, 89, 18, 89, 15, 85, 13, 85, 11, 82, 11, 74, 4, 74, 3, 70, 3, 16.9002, 43.792, 17.7383, 67.3154, 15.4323, 70.0554, 6.5183, 69.4569, 6.99143, 42.4882, 20.6024, 40.6343, 16.9002, 43.792, 6.99143, 42.4882, 7, 42, 6, 42, 6, 37, 5, 37, 4, 34, 6, 34, 10, 31, 14, 31, 14, 30, 19.6358, 27.1821, 15.4323, 70.0554, 17.202, 92.0495, 15.2954, 94.0759, 6.09113, 93.8053, 6.5183, 69.4569, 43.4104, 41.2385, 20.6024, 40.6343, 19.6358, 27.1821, 22, 26, 22, 25, 24, 23, 29, 23, 34, 19, 39, 19, 44, 15, 46.9096, 15, 43.4104, 41.2385, 44.9997, 42.9158, 43.5399, 67.7955, 17.7383, 67.3154, 16.9002, 43.792, 20.6024, 40.6343, 43.5399, 67.7955, 45.3497, 69.9718, 41.3664, 94.0135, 17.202, 92.0495, 15.4323, 70.0554, 17.7383, 67.3154, 41.3664, 94.0135, 41.4467, 94.1105, 43.2644, 120.918, 42.4195, 121.874, 42, 121.855, 42, 121, 36, 118, 30, 118, 30, 117, 26, 114, 22, 114, 22, 113, 18, 110, 14.6693, 110, 15.2954, 94.0759, 17.202, 92.0495, 15.2954, 94.0759, 14.6693, 110, 14, 110, 11, 109, 11, 108, 6, 105, 6, 99, 6.09113, 93.8053, 72.2038, 18.9688, 69.5969, 43.4036, 69.0353, 43.9448, 44.9997, 42.9158, 43.4104, 41.2385, 46.9172, 14.9428, 67.9197, 14.7671, 67.9197, 14.7671, 49.05, 14.925, 51, 12, 53, 12, 55, 10, 58, 10, 60, 9, 60, 8, 61, 7, 65, 7, 65, 6, 67, 4, 70, 4, 70, 3, 70.3669, 3, 69.0353, 43.9448, 71.2774, 69.4871, 69.9957, 71.0011, 45.3497, 69.9718, 43.5399, 67.7955, 44.9997, 42.9158, 69.9957, 71.0011, 71.7117, 91.6772, 69.248, 94.3456, 41.4467, 94.1105, 41.3664, 94.0135, 45.3497, 69.9718, 69.248, 94.3456, 67.64, 118.259, 43.2644, 120.918, 41.4467, 94.1105, 42.4195, 121.874, 42.4269, 122, 42, 122, 42, 121.855, 70.8549, 120.805, 70.7275, 122, 70, 122, 67, 126, 51, 126, 51, 125, 47, 124, 47, 123, 46, 122, 42.4269, 122, 42.4195, 121.874, 43.2644, 120.918, 67.64, 118.259, 98.4742, 41.4851, 95.7485, 43.9223, 69.5969, 43.4036, 72.2038, 18.9688, 95.9051, 18.3999, 74, 4, 82, 11, 85, 11, 85, 13, 89, 15, 89, 18, 89.5524, 18.5524, 72.2038, 18.9688, 67.9197, 14.7671, 70.3669, 3, 74, 3, 95.7485, 43.9223, 93.155, 67.1618, 71.2774, 69.4871, 69.0353, 43.9448, 69.5969, 43.4036, 98.325, 71.5733, 96.6613, 96.1615, 96.4578, 96.3168, 71.7117, 91.6772, 69.9957, 71.0011, 71.2774, 69.4871, 93.155, 67.1618, 96.4578, 96.3168, 94.0217, 111.978, 92, 114, 88, 114, 83, 118, 78, 118, 78, 119, 76.607, 121.089, 70.8549, 120.805, 67.64, 118.259, 69.248, 94.3456, 71.7117, 91.6772, 76.607, 121.089, 76, 122, 70.7275, 122, 70.8549, 120.805, 113, 44.246, 113, 69.4223, 98.325, 71.5733, 93.155, 67.1618, 95.7485, 43.9223, 98.4742, 41.4851, 103, 28, 105, 28, 105, 30, 106, 31, 109, 31, 109, 34, 110, 35, 113, 35, 113, 44.246, 98.4742, 41.4851, 96.3027, 21.9724, 113, 83, 115, 87, 115, 97.0853, 96.6613, 96.1615, 98.325, 71.5733, 113, 69.4223, 115, 97.0853, 115, 100, 114, 100, 113, 102, 110, 102, 106, 104, 106, 105, 105, 106, 102, 106, 102, 107, 100, 109, 98, 109, 95, 110, 95, 111, 94.0217, 111.978, 96.4578, 96.3168, 96.6613, 96.1615) -polygons = [PackedInt32Array(92, 88, 89), PackedInt32Array(89, 90, 91), PackedInt32Array(91, 92, 89), PackedInt32Array(105, 93, 94), PackedInt32Array(94, 95, 96), PackedInt32Array(96, 97, 98), PackedInt32Array(98, 99, 100), PackedInt32Array(101, 102, 103), PackedInt32Array(103, 104, 105), PackedInt32Array(105, 94, 96), PackedInt32Array(98, 100, 101), PackedInt32Array(103, 105, 96), PackedInt32Array(96, 98, 101), PackedInt32Array(101, 103, 96), PackedInt32Array(110, 106, 107), PackedInt32Array(107, 108, 109), PackedInt32Array(109, 110, 107), PackedInt32Array(121, 111, 112), PackedInt32Array(112, 113, 114), PackedInt32Array(114, 115, 116), PackedInt32Array(117, 118, 119), PackedInt32Array(119, 120, 121), PackedInt32Array(112, 114, 116), PackedInt32Array(119, 121, 112), PackedInt32Array(112, 116, 117), PackedInt32Array(117, 119, 112), PackedInt32Array(127, 122, 123), PackedInt32Array(123, 124, 125), PackedInt32Array(125, 126, 127), PackedInt32Array(127, 123, 125), PackedInt32Array(133, 128, 129), PackedInt32Array(129, 130, 131), PackedInt32Array(131, 132, 133), PackedInt32Array(133, 129, 131), PackedInt32Array(149, 134, 135), PackedInt32Array(135, 136, 137), PackedInt32Array(137, 138, 139), PackedInt32Array(140, 141, 142), PackedInt32Array(143, 144, 145), PackedInt32Array(146, 147, 148), PackedInt32Array(148, 149, 135), PackedInt32Array(135, 137, 139), PackedInt32Array(140, 142, 143), PackedInt32Array(143, 145, 146), PackedInt32Array(146, 148, 135), PackedInt32Array(135, 139, 140), PackedInt32Array(140, 143, 146), PackedInt32Array(146, 135, 140), PackedInt32Array(157, 150, 151), PackedInt32Array(151, 152, 153), PackedInt32Array(154, 155, 156), PackedInt32Array(156, 157, 151), PackedInt32Array(151, 153, 154), PackedInt32Array(154, 156, 151), PackedInt32Array(164, 158, 159), PackedInt32Array(159, 160, 161), PackedInt32Array(161, 162, 163), PackedInt32Array(163, 164, 159), PackedInt32Array(159, 161, 163), PackedInt32Array(165, 166, 167), PackedInt32Array(168, 169, 170), PackedInt32Array(171, 172, 173), PackedInt32Array(174, 175, 176), PackedInt32Array(177, 178, 179), PackedInt32Array(165, 167, 168), PackedInt32Array(171, 173, 174), PackedInt32Array(174, 176, 177), PackedInt32Array(177, 179, 165), PackedInt32Array(165, 168, 170), PackedInt32Array(170, 171, 174), PackedInt32Array(174, 177, 165), PackedInt32Array(165, 170, 174), PackedInt32Array(185, 180, 181), PackedInt32Array(181, 182, 183), PackedInt32Array(183, 184, 185), PackedInt32Array(185, 181, 183), PackedInt32Array(191, 186, 187), PackedInt32Array(187, 188, 189), PackedInt32Array(189, 190, 191), PackedInt32Array(191, 187, 189), PackedInt32Array(195, 192, 193), PackedInt32Array(193, 194, 195), PackedInt32Array(199, 196, 197), PackedInt32Array(197, 198, 199), PackedInt32Array(212, 200, 201), PackedInt32Array(202, 203, 204), PackedInt32Array(205, 206, 207), PackedInt32Array(208, 209, 210), PackedInt32Array(210, 211, 212), PackedInt32Array(212, 201, 202), PackedInt32Array(202, 204, 205), PackedInt32Array(205, 207, 208), PackedInt32Array(208, 210, 212), PackedInt32Array(212, 202, 205), PackedInt32Array(205, 208, 212), PackedInt32Array(217, 213, 214), PackedInt32Array(214, 215, 216), PackedInt32Array(216, 217, 214), PackedInt32Array(219, 220, 221), PackedInt32Array(221, 222, 223), PackedInt32Array(223, 224, 225), PackedInt32Array(225, 226, 227), PackedInt32Array(227, 228, 218), PackedInt32Array(219, 221, 223), PackedInt32Array(223, 225, 227), PackedInt32Array(227, 218, 219), PackedInt32Array(219, 223, 227), PackedInt32Array(233, 229, 230), PackedInt32Array(230, 231, 232), PackedInt32Array(232, 233, 230), PackedInt32Array(240, 234, 235), PackedInt32Array(235, 236, 237), PackedInt32Array(237, 238, 239), PackedInt32Array(239, 240, 235), PackedInt32Array(235, 237, 239), PackedInt32Array(252, 241, 242), PackedInt32Array(242, 243, 244), PackedInt32Array(244, 245, 246), PackedInt32Array(246, 247, 248), PackedInt32Array(248, 249, 250), PackedInt32Array(250, 251, 252), PackedInt32Array(252, 242, 244), PackedInt32Array(246, 248, 250), PackedInt32Array(250, 252, 244), PackedInt32Array(244, 246, 250), PackedInt32Array(256, 253, 254), PackedInt32Array(254, 255, 256), PackedInt32Array(262, 257, 258), PackedInt32Array(258, 259, 260), PackedInt32Array(260, 261, 262), PackedInt32Array(262, 258, 260), PackedInt32Array(263, 264, 265), PackedInt32Array(266, 267, 268), PackedInt32Array(269, 270, 271), PackedInt32Array(271, 272, 273), PackedInt32Array(273, 263, 265), PackedInt32Array(268, 269, 271), PackedInt32Array(271, 273, 265), PackedInt32Array(266, 268, 271), PackedInt32Array(271, 265, 266), PackedInt32Array(274, 275, 276), PackedInt32Array(276, 277, 278), PackedInt32Array(278, 279, 274), PackedInt32Array(274, 276, 278), PackedInt32Array(296, 280, 281), PackedInt32Array(282, 283, 284), PackedInt32Array(285, 286, 287), PackedInt32Array(288, 289, 290), PackedInt32Array(292, 293, 294), PackedInt32Array(294, 295, 296), PackedInt32Array(296, 281, 282), PackedInt32Array(285, 287, 288), PackedInt32Array(288, 290, 291), PackedInt32Array(292, 294, 296), PackedInt32Array(296, 282, 284), PackedInt32Array(288, 291, 292), PackedInt32Array(296, 284, 285), PackedInt32Array(288, 292, 296), PackedInt32Array(296, 285, 288)] -bones = ["Bone-0", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 1, 0.7, 0.7, 0, 0, 0, 0.7, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-1", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-2", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 1, 0.7, 0.7, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-3", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-4", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-5", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0.7, 0.7, 0.7, 1, 1, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 1, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-6", PackedFloat32Array(0.7, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0.7, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 1, 0.7, 1, 0.7, 0.7, 0.7, 0.7, 0.7, 1, 1, 0.7, 1, 1, 0.7, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-7", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-8", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-9", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-10", PackedFloat32Array(0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 1, 0.7, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-11", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-12", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7), "Bone-13", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 1, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7), "Bone-14", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 1, 0.7, 0.7, 0.7, 0.7, 0.7, 1, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-15", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0.7, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 1, 0.7, 1, 0.7, 0.7, 0.7, 0.7, 0.7, 1, 0.7, 0.7, 0.7, 1, 1, 0.7, 0.7)] -internal_vertex_count = 209 +polygon = PackedVector2Array(70, 4, 67, 4, 65, 6, 65, 7, 61, 7, 60, 8, 60, 9, 58, 10, 55, 10, 53, 12, 51, 12, 49, 15, 44, 15, 39, 19, 34, 19, 29, 23, 24, 23, 22, 25, 22, 26, 14, 30, 14, 31, 10, 31, 6, 34, 4, 34, 5, 37, 6, 37, 6, 42, 7, 42, 6, 99, 6, 105, 11, 108, 11, 109, 14, 110, 18, 110, 22, 113, 22, 114, 26, 114, 30, 117, 30, 118, 36, 118, 42, 121, 42, 122, 46, 122, 47, 123, 47, 124, 51, 125, 51, 126, 67, 126, 70, 122, 76, 122, 78, 119, 78, 118, 83, 118, 88, 114, 92, 114, 95, 111, 95, 110, 98, 109, 100, 109, 102, 107, 102, 106, 105, 106, 106, 105, 106, 104, 110, 102, 113, 102, 114, 100, 115, 100, 115, 87, 113, 83, 113, 35, 110, 35, 109, 34, 109, 31, 106, 31, 105, 30, 105, 28, 103, 28, 93, 19, 90, 19, 89, 18, 89, 15, 85, 13, 85, 11, 82, 11, 74, 4, 74, 3, 70, 3, 17, 68, 6.54386, 68, 6.77193, 55, 17, 55, 17, 55, 6.77193, 55, 7, 42, 17, 42, 17, 42, 6, 42, 6, 37, 5, 37, 4, 34, 6, 34, 10, 31, 14, 31, 14, 30, 16, 29, 17, 29, 17, 29, 16, 29, 17, 28.5, 17, 94, 6.08772, 94, 6.31579, 81, 17, 81, 17, 81, 6.31579, 81, 6.54386, 68, 17, 68, 30, 29, 17, 29, 17, 28.5, 22, 26, 22, 25, 24, 23, 29, 23, 30, 22.2, 43, 42, 30, 42, 30, 29, 43, 29, 30, 42, 17, 42, 17, 29, 30, 29, 43, 29, 30, 29, 30, 22.2, 34, 19, 39, 19, 42.75, 16, 43, 16, 43, 16, 42.75, 16, 43, 15.8, 30, 55, 17, 55, 17, 42, 30, 42, 43, 68, 30, 68, 30, 55, 43, 55, 30, 68, 17, 68, 17, 55, 30, 55, 43, 55, 30, 55, 30, 42, 43, 42, 30, 81, 17, 81, 17, 68, 30, 68, 43, 94, 30, 94, 30, 81, 43, 81, 30, 94, 17, 94, 17, 81, 30, 81, 43, 81, 30, 81, 30, 68, 43, 68, 30, 107, 17, 107, 17, 94, 30, 94, 43, 120, 40, 120, 36, 118, 30, 118, 30, 107, 43, 107, 30, 117, 26, 114, 22, 114, 22, 113, 18, 110, 17, 110, 17, 107, 30, 107, 43, 107, 30, 107, 30, 94, 43, 94, 17, 110, 14, 110, 11, 109, 11, 108, 9.33333, 107, 17, 107, 17, 107, 9.33333, 107, 6, 105, 6, 99, 6.08772, 94, 17, 94, 56, 29, 43, 29, 43, 16, 56, 16, 69, 42, 56, 42, 56, 29, 69, 29, 56, 42, 43, 42, 43, 29, 56, 29, 69, 29, 56, 29, 56, 16, 69, 16, 69, 16, 56, 16, 56, 10, 58, 10, 60, 9, 60, 8, 61, 7, 65, 7, 65, 6, 67, 4, 69, 4, 56, 16, 43, 16, 43, 15.8, 44, 15, 49, 15, 51, 12, 53, 12, 55, 10, 56, 10, 56, 55, 43, 55, 43, 42, 56, 42, 69, 68, 56, 68, 56, 55, 69, 55, 56, 68, 43, 68, 43, 55, 56, 55, 69, 55, 56, 55, 56, 42, 69, 42, 56, 81, 43, 81, 43, 68, 56, 68, 69, 94, 56, 94, 56, 81, 69, 81, 56, 94, 43, 94, 43, 81, 56, 81, 69, 81, 56, 81, 56, 68, 69, 68, 56, 107, 43, 107, 43, 94, 56, 94, 69, 120, 56, 120, 56, 107, 69, 107, 56, 120, 43, 120, 43, 107, 56, 107, 69, 107, 56, 107, 56, 94, 69, 94, 43, 122, 42, 122, 42, 121, 40, 120, 43, 120, 56, 126, 51, 126, 51, 125, 47, 124, 47, 123, 46, 122, 43, 122, 43, 120, 56, 120, 69, 123.333, 67, 126, 56, 126, 56, 120, 69, 120, 82, 29, 69, 29, 69, 16, 82, 16, 95, 42, 82, 42, 82, 29, 95, 29, 82, 42, 69, 42, 69, 29, 82, 29, 89, 18, 90, 19, 93, 19, 95, 20.8, 95, 29, 82, 29, 82, 16, 89, 16, 85, 13, 89, 15, 89, 16, 82, 16, 82, 11, 85, 11, 74, 4, 82, 11, 82, 16, 69, 16, 69, 4, 70, 4, 70, 3, 74, 3, 82, 55, 69, 55, 69, 42, 82, 42, 95, 68, 82, 68, 82, 55, 95, 55, 82, 68, 69, 68, 69, 55, 82, 55, 95, 55, 82, 55, 82, 42, 95, 42, 82, 81, 69, 81, 69, 68, 82, 68, 95, 94, 82, 94, 82, 81, 95, 81, 82, 94, 69, 94, 69, 81, 82, 81, 95, 81, 82, 81, 82, 68, 95, 68, 82, 107, 69, 107, 69, 94, 82, 94, 95, 111, 92, 114, 88, 114, 83, 118, 82, 118, 82, 107, 95, 107, 82, 118, 78, 118, 78, 119, 77.3333, 120, 69, 120, 69, 107, 82, 107, 95, 107, 82, 107, 82, 94, 95, 94, 76, 122, 70, 122, 69, 123.333, 69, 120, 77.3333, 120, 103, 28, 105, 28, 105, 29, 95, 29, 95, 20.8, 109, 34, 110, 35, 113, 35, 113, 42, 108, 42, 108, 31, 109, 31, 105, 30, 106, 31, 108, 31, 108, 42, 95, 42, 95, 29, 105, 29, 108, 55, 95, 55, 95, 42, 108, 42, 113, 68, 108, 68, 108, 55, 113, 55, 108, 68, 95, 68, 95, 55, 108, 55, 113, 55, 108, 55, 108, 42, 113, 42, 108, 81, 95, 81, 95, 68, 108, 68, 113, 83, 115, 87, 115, 94, 108, 94, 108, 81, 113, 81, 108, 94, 95, 94, 95, 81, 108, 81, 113, 81, 108, 81, 108, 68, 113, 68, 108, 103, 106, 104, 106, 105, 105, 106, 102, 106, 102, 107, 95, 107, 95, 94, 108, 94, 100, 109, 98, 109, 95, 110, 95, 107, 102, 107, 115, 100, 114, 100, 113, 102, 110, 102, 108, 103, 108, 94, 115, 94) +polygons = [PackedInt32Array(91, 88, 89), PackedInt32Array(89, 90, 91), PackedInt32Array(95, 92, 93), PackedInt32Array(93, 94, 95), PackedInt32Array(106, 96, 97), PackedInt32Array(98, 99, 100), PackedInt32Array(101, 102, 103), PackedInt32Array(103, 104, 105), PackedInt32Array(105, 106, 97), PackedInt32Array(98, 100, 101), PackedInt32Array(103, 105, 97), PackedInt32Array(98, 101, 103), PackedInt32Array(103, 97, 98), PackedInt32Array(109, 107, 108), PackedInt32Array(113, 110, 111), PackedInt32Array(111, 112, 113), PackedInt32Array(117, 114, 115), PackedInt32Array(115, 116, 117), PackedInt32Array(118, 119, 120), PackedInt32Array(121, 122, 123), PackedInt32Array(124, 125, 118), PackedInt32Array(118, 120, 121), PackedInt32Array(121, 123, 124), PackedInt32Array(124, 118, 121), PackedInt32Array(129, 126, 127), PackedInt32Array(127, 128, 129), PackedInt32Array(133, 130, 131), PackedInt32Array(131, 132, 133), PackedInt32Array(140, 134, 135), PackedInt32Array(135, 136, 137), PackedInt32Array(138, 139, 140), PackedInt32Array(135, 137, 138), PackedInt32Array(138, 140, 135), PackedInt32Array(143, 141, 142), PackedInt32Array(147, 144, 145), PackedInt32Array(145, 146, 147), PackedInt32Array(151, 148, 149), PackedInt32Array(149, 150, 151), PackedInt32Array(155, 152, 153), PackedInt32Array(153, 154, 155), PackedInt32Array(159, 156, 157), PackedInt32Array(157, 158, 159), PackedInt32Array(163, 160, 161), PackedInt32Array(161, 162, 163), PackedInt32Array(167, 164, 165), PackedInt32Array(165, 166, 167), PackedInt32Array(171, 168, 169), PackedInt32Array(169, 170, 171), PackedInt32Array(175, 172, 173), PackedInt32Array(173, 174, 175), PackedInt32Array(179, 176, 177), PackedInt32Array(177, 178, 179), PackedInt32Array(185, 180, 181), PackedInt32Array(182, 183, 184), PackedInt32Array(184, 185, 181), PackedInt32Array(181, 182, 184), PackedInt32Array(193, 186, 187), PackedInt32Array(187, 188, 189), PackedInt32Array(190, 191, 192), PackedInt32Array(192, 193, 187), PackedInt32Array(187, 189, 190), PackedInt32Array(190, 192, 187), PackedInt32Array(197, 194, 195), PackedInt32Array(195, 196, 197), PackedInt32Array(203, 198, 199), PackedInt32Array(199, 200, 201), PackedInt32Array(201, 202, 203), PackedInt32Array(203, 199, 201), PackedInt32Array(209, 204, 205), PackedInt32Array(205, 206, 207), PackedInt32Array(207, 208, 209), PackedInt32Array(209, 205, 207), PackedInt32Array(213, 210, 211), PackedInt32Array(211, 212, 213), PackedInt32Array(217, 214, 215), PackedInt32Array(215, 216, 217), PackedInt32Array(221, 218, 219), PackedInt32Array(219, 220, 221), PackedInt32Array(225, 222, 223), PackedInt32Array(223, 224, 225), PackedInt32Array(236, 226, 227), PackedInt32Array(227, 228, 229), PackedInt32Array(230, 231, 232), PackedInt32Array(233, 234, 235), PackedInt32Array(227, 229, 230), PackedInt32Array(230, 232, 233), PackedInt32Array(233, 235, 236), PackedInt32Array(227, 230, 233), PackedInt32Array(233, 236, 227), PackedInt32Array(237, 238, 239), PackedInt32Array(239, 240, 241), PackedInt32Array(241, 242, 243), PackedInt32Array(243, 244, 245), PackedInt32Array(237, 239, 241), PackedInt32Array(241, 243, 245), PackedInt32Array(245, 237, 241), PackedInt32Array(249, 246, 247), PackedInt32Array(247, 248, 249), PackedInt32Array(253, 250, 251), PackedInt32Array(251, 252, 253), PackedInt32Array(257, 254, 255), PackedInt32Array(255, 256, 257), PackedInt32Array(261, 258, 259), PackedInt32Array(259, 260, 261), PackedInt32Array(265, 262, 263), PackedInt32Array(263, 264, 265), PackedInt32Array(269, 266, 267), PackedInt32Array(267, 268, 269), PackedInt32Array(273, 270, 271), PackedInt32Array(271, 272, 273), PackedInt32Array(277, 274, 275), PackedInt32Array(275, 276, 277), PackedInt32Array(281, 278, 279), PackedInt32Array(279, 280, 281), PackedInt32Array(285, 282, 283), PackedInt32Array(283, 284, 285), PackedInt32Array(289, 286, 287), PackedInt32Array(287, 288, 289), PackedInt32Array(293, 290, 291), PackedInt32Array(291, 292, 293), PackedInt32Array(298, 294, 295), PackedInt32Array(296, 297, 298), PackedInt32Array(298, 295, 296), PackedInt32Array(307, 299, 300), PackedInt32Array(301, 302, 303), PackedInt32Array(304, 305, 306), PackedInt32Array(307, 300, 301), PackedInt32Array(301, 303, 304), PackedInt32Array(304, 306, 307), PackedInt32Array(307, 301, 304), PackedInt32Array(312, 308, 309), PackedInt32Array(309, 310, 311), PackedInt32Array(311, 312, 309), PackedInt32Array(316, 313, 314), PackedInt32Array(314, 315, 316), PackedInt32Array(320, 317, 318), PackedInt32Array(318, 319, 320), PackedInt32Array(324, 321, 322), PackedInt32Array(322, 323, 324), PackedInt32Array(326, 327, 328), PackedInt32Array(328, 329, 330), PackedInt32Array(330, 331, 332), PackedInt32Array(326, 328, 330), PackedInt32Array(330, 332, 325), PackedInt32Array(325, 326, 330), PackedInt32Array(333, 334, 335), PackedInt32Array(335, 336, 337), PackedInt32Array(337, 338, 333), PackedInt32Array(333, 335, 337), PackedInt32Array(339, 340, 341), PackedInt32Array(341, 342, 343), PackedInt32Array(344, 345, 346), PackedInt32Array(341, 343, 344), PackedInt32Array(344, 346, 339), PackedInt32Array(339, 341, 344), PackedInt32Array(350, 347, 348), PackedInt32Array(348, 349, 350), PackedInt32Array(354, 351, 352), PackedInt32Array(352, 353, 354), PackedInt32Array(358, 355, 356), PackedInt32Array(356, 357, 358), PackedInt32Array(362, 359, 360), PackedInt32Array(360, 361, 362), PackedInt32Array(366, 363, 364), PackedInt32Array(364, 365, 366), PackedInt32Array(370, 367, 368), PackedInt32Array(368, 369, 370), PackedInt32Array(374, 371, 372), PackedInt32Array(372, 373, 374), PackedInt32Array(378, 375, 376), PackedInt32Array(376, 377, 378), PackedInt32Array(382, 379, 380), PackedInt32Array(380, 381, 382), PackedInt32Array(389, 383, 384), PackedInt32Array(385, 386, 387), PackedInt32Array(387, 388, 389), PackedInt32Array(389, 384, 385), PackedInt32Array(385, 387, 389), PackedInt32Array(396, 390, 391), PackedInt32Array(391, 392, 393), PackedInt32Array(393, 394, 395), PackedInt32Array(395, 396, 391), PackedInt32Array(391, 393, 395), PackedInt32Array(400, 397, 398), PackedInt32Array(398, 399, 400), PackedInt32Array(405, 401, 402), PackedInt32Array(402, 403, 404), PackedInt32Array(404, 405, 402), PackedInt32Array(406, 407, 408), PackedInt32Array(409, 410, 406), PackedInt32Array(406, 408, 409), PackedInt32Array(412, 413, 414), PackedInt32Array(415, 416, 417), PackedInt32Array(411, 412, 414), PackedInt32Array(415, 417, 411), PackedInt32Array(411, 414, 415), PackedInt32Array(419, 420, 421), PackedInt32Array(421, 422, 423), PackedInt32Array(423, 424, 418), PackedInt32Array(418, 419, 421), PackedInt32Array(421, 423, 418), PackedInt32Array(428, 425, 426), PackedInt32Array(426, 427, 428), PackedInt32Array(432, 429, 430), PackedInt32Array(430, 431, 432), PackedInt32Array(436, 433, 434), PackedInt32Array(434, 435, 436), PackedInt32Array(440, 437, 438), PackedInt32Array(438, 439, 440), PackedInt32Array(444, 441, 442), PackedInt32Array(442, 443, 444), PackedInt32Array(445, 446, 447), PackedInt32Array(447, 448, 449), PackedInt32Array(449, 450, 445), PackedInt32Array(445, 447, 449), PackedInt32Array(454, 451, 452), PackedInt32Array(452, 453, 454), PackedInt32Array(458, 455, 456), PackedInt32Array(456, 457, 458), PackedInt32Array(467, 459, 460), PackedInt32Array(460, 461, 462), PackedInt32Array(463, 464, 465), PackedInt32Array(465, 466, 467), PackedInt32Array(467, 460, 462), PackedInt32Array(463, 465, 467), PackedInt32Array(467, 462, 463), PackedInt32Array(472, 468, 469), PackedInt32Array(469, 470, 471), PackedInt32Array(471, 472, 469), PackedInt32Array(479, 473, 474), PackedInt32Array(474, 475, 476), PackedInt32Array(476, 477, 478), PackedInt32Array(478, 479, 474), PackedInt32Array(474, 476, 478)] +bones = ["Bone-0", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-1", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-2", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-3", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-4", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-5", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-6", PackedFloat32Array(1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-7", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-8", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-9", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-10", PackedFloat32Array(1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-11", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-12", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-13", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-14", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-15", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-16", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1), "Bone-17", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1)] +internal_vertex_count = 392 script = ExtResource("2_2dapw") vertex_interval = 26 -rigidbody_scene = ExtResource("3_6ern4") margin_pixels = -1 -voronoi_interval = 0.15 +min_area = 0.3 stiffness = 0.1 damping = 9.1 rest_length_ratio = 1.1 length_ratio = 0.1 softness = 100.0 +radius = 26 +rigidbody_scene = ExtResource("3_6ern4") physics_material_override = ExtResource("5_221ya") [node name="Skeleton2D" type="Skeleton2D" parent="Butter7"] visible = false -modification_stack = SubResource("SkeletonModificationStack2D_wbdkg") +modification_stack = SubResource("SkeletonModificationStack2D_8b6k4") [node name="Bone-0" type="Bone2D" parent="Butter7/Skeleton2D"] -position = Vector2(12.3012, 48.6187) -rotation = 0.291532 -rest = Transform2D(0.957805, 0.28742, -0.28742, 0.957805, 12.3012, 48.6187) +position = Vector2(10.5, 48.25) +rotation = 1.03375 +scale = Vector2(1, 1) +rest = Transform2D(0.511599, 0.859224, -0.859224, 0.511599, 10.5, 48.25) auto_calculate_length_and_angle = false length = 26.0 bone_angle = 0.0 -metadata/vert_owned = [88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105] -metadata/connected_nodes_paths = [NodePath("Bone-1"), NodePath("Bone-2"), NodePath("Bone-3"), NodePath("Bone-4")] +metadata/vert_owned = [88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109] +metadata/idx = 0 +metadata/connected_nodes_paths = [NodePath("Bone-1"), NodePath("Bone-3"), NodePath("Bone-4"), NodePath("Bone-2")] +metadata/connected_nodes_idx = [1, 3, 4, 2] metadata/_local_pose_override_enabled_ = true [node name="Bone-1" type="Bone2D" parent="Butter7/Skeleton2D"] -position = Vector2(11.6466, 81.7664) -rotation = -0.058721 -rest = Transform2D(0.998276, -0.0586872, 0.0586872, 0.998276, 11.6466, 81.7664) +position = Vector2(11.5439, 81) +rest = Transform2D(1, 0, 0, 1, 11.5439, 81) auto_calculate_length_and_angle = false length = 26.0 bone_angle = 0.0 -metadata/vert_owned = [106, 107, 108, 109, 110] +metadata/vert_owned = [110, 111, 112, 113, 114, 115, 116, 117] +metadata/idx = 1 metadata/connected_nodes_paths = [NodePath("Bone-0"), NodePath("Bone-3"), NodePath("Bone-4"), NodePath("Bone-5")] +metadata/connected_nodes_idx = [0, 3, 4, 5] metadata/_local_pose_override_enabled_ = true [node name="Bone-2" type="Bone2D" parent="Butter7/Skeleton2D"] -position = Vector2(33.2727, 28.1193) -rotation = -0.187185 -scale = Vector2(1, 1) -rest = Transform2D(0.982532, -0.186093, 0.186093, 0.982532, 33.2727, 28.1193) +position = Vector2(30, 28.9) +rotation = 1.5708 +rest = Transform2D(-4.37114e-08, 1, -1, -4.37114e-08, 30, 28.9) auto_calculate_length_and_angle = false length = 26.0 bone_angle = 0.0 -metadata/vert_owned = [111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121] -metadata/connected_nodes_paths = [NodePath("Bone-0"), NodePath("Bone-3"), NodePath("Bone-6"), NodePath("Bone-7")] +metadata/vert_owned = [118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143] +metadata/idx = 2 +metadata/connected_nodes_paths = [NodePath("Bone-6"), NodePath("Bone-0"), NodePath("Bone-3"), NodePath("Bone-7")] +metadata/connected_nodes_idx = [6, 0, 3, 7] metadata/_local_pose_override_enabled_ = true [node name="Bone-3" type="Bone2D" parent="Butter7/Skeleton2D"] -position = Vector2(30.9499, 54.2149) -rotation = 1.59192 -rest = Transform2D(-0.0211261, 0.999777, -0.999777, -0.0211261, 30.9499, 54.2149) +position = Vector2(30, 55) +rotation = -1.5708 +rest = Transform2D(-4.37114e-08, -1, 1, -4.37114e-08, 30, 55) auto_calculate_length_and_angle = false length = 26.0 bone_angle = 0.0 -metadata/vert_owned = [122, 123, 124, 125, 126, 127] -metadata/connected_nodes_paths = [NodePath("Bone-0"), NodePath("Bone-1"), NodePath("Bone-2"), NodePath("Bone-4"), NodePath("Bone-7"), NodePath("Bone-8")] +metadata/vert_owned = [144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159] +metadata/idx = 3 +metadata/connected_nodes_paths = [NodePath("Bone-0"), NodePath("Bone-1"), NodePath("Bone-4"), NodePath("Bone-2"), NodePath("Bone-6"), NodePath("Bone-7"), NodePath("Bone-8")] +metadata/connected_nodes_idx = [0, 1, 4, 2, 6, 7, 8] metadata/_local_pose_override_enabled_ = true [node name="Bone-4" type="Bone2D" parent="Butter7/Skeleton2D"] -position = Vector2(30.391, 80.6645) -rotation = 1.78638 -rest = Transform2D(-0.213921, 0.976851, -0.976851, -0.213921, 30.391, 80.6645) +position = Vector2(30, 81) +rotation = 1.77926 +rest = Transform2D(-0.206959, 0.97835, -0.97835, -0.206959, 30, 81) auto_calculate_length_and_angle = false length = 26.0 bone_angle = 0.0 -metadata/vert_owned = [128, 129, 130, 131, 132, 133] +metadata/vert_owned = [160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175] +metadata/idx = 4 metadata/connected_nodes_paths = [NodePath("Bone-0"), NodePath("Bone-1"), NodePath("Bone-3"), NodePath("Bone-5"), NodePath("Bone-7"), NodePath("Bone-8"), NodePath("Bone-9")] +metadata/connected_nodes_idx = [0, 1, 3, 5, 7, 8, 9] metadata/_local_pose_override_enabled_ = true [node name="Bone-5" type="Bone2D" parent="Butter7/Skeleton2D"] -position = Vector2(24.6322, 106.962) -rotation = -0.66078 -rest = Transform2D(0.789514, -0.613733, 0.613733, 0.789514, 24.6322, 106.962) +position = Vector2(24.5, 107) +rotation = -0.690036 +scale = Vector2(1, 1) +rest = Transform2D(0.771223, -0.636565, 0.636565, 0.771223, 24.5, 107) auto_calculate_length_and_angle = false length = 26.0 bone_angle = 0.0 -metadata/vert_owned = [134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157] +metadata/vert_owned = [176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209] +metadata/idx = 5 metadata/connected_nodes_paths = [NodePath("Bone-1"), NodePath("Bone-4"), NodePath("Bone-8"), NodePath("Bone-9")] +metadata/connected_nodes_idx = [1, 4, 8, 9] metadata/_local_pose_override_enabled_ = true [node name="Bone-6" type="Bone2D" parent="Butter7/Skeleton2D"] -position = Vector2(57.8071, 23.4724) -rotation = 1.58269 -scale = Vector2(1, 1) -rest = Transform2D(-0.0118978, 0.999929, -0.999929, -0.0118978, 57.8071, 23.4724) +position = Vector2(56, 23) +rotation = 2.25311 +rest = Transform2D(-0.630593, 0.776114, -0.776114, -0.630593, 56, 23) auto_calculate_length_and_angle = false length = 26.0 bone_angle = 0.0 -metadata/vert_owned = [158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179] -metadata/connected_nodes_paths = [NodePath("Bone-2"), NodePath("Bone-7"), NodePath("Bone-10")] +metadata/vert_owned = [210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245] +metadata/idx = 6 +metadata/connected_nodes_paths = [NodePath("Bone-10"), NodePath("Bone-2"), NodePath("Bone-3"), NodePath("Bone-7"), NodePath("Bone-11")] +metadata/connected_nodes_idx = [10, 2, 3, 7, 11] metadata/_local_pose_override_enabled_ = true [node name="Bone-7" type="Bone2D" parent="Butter7/Skeleton2D"] -position = Vector2(57.4087, 56.9584) -rotation = -1.5589 -rest = Transform2D(0.0118978, -0.999929, 0.999929, 0.0118978, 57.4087, 56.9584) +position = Vector2(56, 55) +rotation = 1.5708 +rest = Transform2D(-4.37114e-08, 1, -1, -4.37114e-08, 56, 55) auto_calculate_length_and_angle = false length = 26.0 bone_angle = 0.0 -metadata/vert_owned = [180, 181, 182, 183, 184, 185] -metadata/connected_nodes_paths = [NodePath("Bone-2"), NodePath("Bone-3"), NodePath("Bone-4"), NodePath("Bone-6"), NodePath("Bone-8"), NodePath("Bone-11"), NodePath("Bone-12")] +metadata/vert_owned = [246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261] +metadata/idx = 7 +metadata/connected_nodes_paths = [NodePath("Bone-2"), NodePath("Bone-3"), NodePath("Bone-6"), NodePath("Bone-4"), NodePath("Bone-8"), NodePath("Bone-10"), NodePath("Bone-11"), NodePath("Bone-12")] +metadata/connected_nodes_idx = [2, 3, 6, 4, 8, 10, 11, 12] metadata/_local_pose_override_enabled_ = true [node name="Bone-8" type="Bone2D" parent="Butter7/Skeleton2D"] -position = Vector2(56.539, 82.1587) -rotation = 1.58471 -rest = Transform2D(-0.013916, 0.999903, -0.999903, -0.013916, 56.539, 82.1587) +position = Vector2(56, 81) +rotation = 1.62247 +rest = Transform2D(-0.0516551, 0.998665, -0.998665, -0.0516551, 56, 81) auto_calculate_length_and_angle = false length = 26.0 bone_angle = 0.0 -metadata/vert_owned = [186, 187, 188, 189, 190, 191] -metadata/connected_nodes_paths = [NodePath("Bone-3"), NodePath("Bone-4"), NodePath("Bone-5"), NodePath("Bone-7"), NodePath("Bone-9"), NodePath("Bone-11"), NodePath("Bone-12"), NodePath("Bone-13")] +metadata/vert_owned = [262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277] +metadata/idx = 8 +metadata/connected_nodes_paths = [NodePath("Bone-3"), NodePath("Bone-4"), NodePath("Bone-7"), NodePath("Bone-5"), NodePath("Bone-9"), NodePath("Bone-11"), NodePath("Bone-12"), NodePath("Bone-13")] +metadata/connected_nodes_idx = [3, 4, 7, 5, 9, 11, 12, 13] metadata/_local_pose_override_enabled_ = true [node name="Bone-9" type="Bone2D" parent="Butter7/Skeleton2D"] -position = Vector2(56.1508, 110.055) -rotation = -1.55688 -scale = Vector2(1, 1) -rest = Transform2D(0.013916, -0.999903, 0.999903, 0.013916, 56.1508, 110.055) +position = Vector2(54.5, 110) +rotation = -1.51912 +rest = Transform2D(0.0516551, -0.998665, 0.998665, 0.0516551, 54.5, 110) auto_calculate_length_and_angle = false length = 26.0 bone_angle = 0.0 -metadata/vert_owned = [192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212] +metadata/vert_owned = [278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312] +metadata/idx = 9 metadata/connected_nodes_paths = [NodePath("Bone-4"), NodePath("Bone-5"), NodePath("Bone-8"), NodePath("Bone-12"), NodePath("Bone-13")] +metadata/connected_nodes_idx = [4, 5, 8, 12, 13] metadata/_local_pose_override_enabled_ = true [node name="Bone-10" type="Bone2D" parent="Butter7/Skeleton2D"] -position = Vector2(83.197, 23.4612) -rotation = 1.5952 -rest = Transform2D(-0.0244, 0.999702, -0.999702, -0.0244, 83.197, 23.4612) +position = Vector2(82, 22.5) +rotation = 1.5708 +rest = Transform2D(-4.37114e-08, 1, -1, -4.37114e-08, 82, 22.5) auto_calculate_length_and_angle = false length = 26.0 bone_angle = 0.0 -metadata/vert_owned = [213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228] -metadata/connected_nodes_paths = [NodePath("Bone-6"), NodePath("Bone-11"), NodePath("Bone-14")] +metadata/vert_owned = [313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346] +metadata/idx = 10 +metadata/connected_nodes_paths = [NodePath("Bone-6"), NodePath("Bone-7"), NodePath("Bone-11"), NodePath("Bone-14"), NodePath("Bone-15")] +metadata/connected_nodes_idx = [6, 7, 11, 14, 15] metadata/_local_pose_override_enabled_ = true [node name="Bone-11" type="Bone2D" parent="Butter7/Skeleton2D"] -position = Vector2(82.3919, 56.4453) -rotation = -1.54639 -scale = Vector2(1, 1) -rest = Transform2D(0.0244, -0.999702, 0.999702, 0.0244, 82.3919, 56.4453) +position = Vector2(82, 55) +rotation = 1.5708 +rest = Transform2D(-4.37114e-08, 1, -1, -4.37114e-08, 82, 55) auto_calculate_length_and_angle = false length = 26.0 bone_angle = 0.0 -metadata/vert_owned = [229, 230, 231, 232, 233] -metadata/connected_nodes_paths = [NodePath("Bone-7"), NodePath("Bone-8"), NodePath("Bone-10"), NodePath("Bone-12"), NodePath("Bone-14")] +metadata/vert_owned = [347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362] +metadata/idx = 11 +metadata/connected_nodes_paths = [NodePath("Bone-6"), NodePath("Bone-7"), NodePath("Bone-10"), NodePath("Bone-8"), NodePath("Bone-12"), NodePath("Bone-14"), NodePath("Bone-15"), NodePath("Bone-16")] +metadata/connected_nodes_idx = [6, 7, 10, 8, 12, 14, 15, 16] metadata/_local_pose_override_enabled_ = true [node name="Bone-12" type="Bone2D" parent="Butter7/Skeleton2D"] -position = Vector2(84.1603, 81.7393) -rotation = -1.6406 -rest = Transform2D(-0.0697449, -0.997565, 0.997565, -0.0697449, 84.1603, 81.7393) +position = Vector2(82, 81) +rotation = 1.5708 +rest = Transform2D(-4.37114e-08, 1, -1, -4.37114e-08, 82, 81) auto_calculate_length_and_angle = false length = 26.0 bone_angle = 0.0 -metadata/vert_owned = [234, 235, 236, 237, 238, 239, 240] -metadata/connected_nodes_paths = [NodePath("Bone-7"), NodePath("Bone-8"), NodePath("Bone-9"), NodePath("Bone-11"), NodePath("Bone-13"), NodePath("Bone-14"), NodePath("Bone-15")] +metadata/vert_owned = [363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378] +metadata/idx = 12 +metadata/connected_nodes_paths = [NodePath("Bone-7"), NodePath("Bone-8"), NodePath("Bone-11"), NodePath("Bone-9"), NodePath("Bone-13"), NodePath("Bone-15"), NodePath("Bone-16"), NodePath("Bone-17")] +metadata/connected_nodes_idx = [7, 8, 11, 9, 13, 15, 16, 17] metadata/_local_pose_override_enabled_ = true [node name="Bone-13" type="Bone2D" parent="Butter7/Skeleton2D"] -position = Vector2(82.0489, 106.839) -rotation = -1.48687 -rest = Transform2D(0.0838275, -0.99648, 0.99648, 0.0838275, 82.0489, 106.839) +position = Vector2(82, 108.667) +rotation = 3.09315 +rest = Transform2D(-0.998827, 0.0484281, -0.0484281, -0.998827, 82, 108.667) auto_calculate_length_and_angle = false length = 26.0 bone_angle = 0.0 -metadata/vert_owned = [241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256] -metadata/connected_nodes_paths = [NodePath("Bone-8"), NodePath("Bone-9"), NodePath("Bone-12"), NodePath("Bone-15")] +metadata/vert_owned = [379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405] +metadata/idx = 13 +metadata/connected_nodes_paths = [NodePath("Bone-17"), NodePath("Bone-8"), NodePath("Bone-9"), NodePath("Bone-12"), NodePath("Bone-16")] +metadata/connected_nodes_idx = [17, 8, 9, 12, 16] metadata/_local_pose_override_enabled_ = true [node name="Bone-14" type="Bone2D" parent="Butter7/Skeleton2D"] -position = Vector2(103.077, 46.7729) -rotation = 2.7042 -rest = Transform2D(-0.905861, 0.423575, -0.423575, -0.905861, 103.077, 46.7729) +position = Vector2(104, 31.4) +rotation = 2.32112 +rest = Transform2D(-0.681876, 0.731468, -0.731468, -0.681876, 104, 31.4) auto_calculate_length_and_angle = false length = 26.0 bone_angle = 0.0 -metadata/vert_owned = [257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273] -metadata/connected_nodes_paths = [NodePath("Bone-10"), NodePath("Bone-11"), NodePath("Bone-12")] +metadata/vert_owned = [406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424] +metadata/idx = 14 +metadata/connected_nodes_paths = [NodePath("Bone-10"), NodePath("Bone-11"), NodePath("Bone-15")] +metadata/connected_nodes_idx = [10, 11, 15] metadata/_local_pose_override_enabled_ = true [node name="Bone-15" type="Bone2D" parent="Butter7/Skeleton2D"] -position = Vector2(104.511, 90.7003) -rotation = 2.51858 -rest = Transform2D(-0.812123, 0.583487, -0.583487, -0.812123, 104.511, 90.7003) +position = Vector2(104, 55) +rotation = -1.5708 +rest = Transform2D(-4.37114e-08, -1, 1, -4.37114e-08, 104, 55) auto_calculate_length_and_angle = false length = 26.0 bone_angle = 0.0 -metadata/vert_owned = [274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296] -metadata/connected_nodes_paths = [NodePath("Bone-12"), NodePath("Bone-13")] +metadata/vert_owned = [425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440] +metadata/idx = 15 +metadata/connected_nodes_paths = [NodePath("Bone-10"), NodePath("Bone-11"), NodePath("Bone-14"), NodePath("Bone-12"), NodePath("Bone-16")] +metadata/connected_nodes_idx = [10, 11, 14, 12, 16] metadata/_local_pose_override_enabled_ = true -[node name="Bone-0" parent="Butter7" instance=ExtResource("3_6ern4")] -position = Vector2(12.3012, 48.6187) -mass = 0.0625 -physics_material_override = ExtResource("5_221ya") -metadata/bone_name = &"Bone-0" - -[node name="CircleShape2D" type="CollisionShape2D" parent="Butter7/Bone-0"] -shape = SubResource("CircleShape2D_lv61x") +[node name="Bone-16" type="Bone2D" parent="Butter7/Skeleton2D"] +position = Vector2(105, 81) +rotation = -1.60924 +rest = Transform2D(-0.0384331, -0.999261, 0.999261, -0.0384331, 105, 81) +auto_calculate_length_and_angle = false +length = 26.0 +bone_angle = 0.0 +metadata/vert_owned = [441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458] +metadata/idx = 16 +metadata/connected_nodes_paths = [NodePath("Bone-11"), NodePath("Bone-12"), NodePath("Bone-15"), NodePath("Bone-13"), NodePath("Bone-17")] +metadata/connected_nodes_idx = [11, 12, 15, 13, 17] +metadata/_local_pose_override_enabled_ = true + +[node name="Bone-17" type="Bone2D" parent="Butter7/Skeleton2D"] +position = Vector2(105, 102) +rotation = -2.40162 +rest = Transform2D(-0.738486, -0.674269, 0.674269, -0.738486, 105, 102) +auto_calculate_length_and_angle = false +length = 26.0 +bone_angle = 0.0 +metadata/vert_owned = [459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479] +metadata/idx = 17 +metadata/connected_nodes_paths = [NodePath("Bone-13"), NodePath("Bone-12"), NodePath("Bone-16")] +metadata/connected_nodes_idx = [13, 12, 16] +metadata/_local_pose_override_enabled_ = true + +[node name="Bone-0" type="RigidBody2D" parent="Butter7" instance=ExtResource("3_6ern4")] +position = Vector2(10.5, 48.25) +input_pickable = true +mass = 0.0555556 +physics_material_override = ExtResource("5_221ya") +script = ExtResource("11_tqnjl") +metadata/idx = 0 +metadata/bone_name = &"Bone-0" + +[node name="CircleShape2D" type="CollisionShape2D" parent="Butter7/Bone-0"] +shape = SubResource("CircleShape2D_ndv12") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Butter7/Bone-0"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-0") update_rotation = false update_scale = false [node name="Joint2D-Bone-0-Bone-1" type="PinJoint2D" parent="Butter7/Bone-0"] visible = false -rotation = 0.0197459 +rotation = -0.0318628 node_a = NodePath("..") node_b = NodePath("../../Bone-1") softness = 100.0 -[node name="Joint2D-Bone-0-Bone-2" type="PinJoint2D" parent="Butter7/Bone-0"] -visible = false -rotation = -2.34481 -node_a = NodePath("..") -node_b = NodePath("../../Bone-2") -softness = 100.0 - [node name="Joint2D-Bone-0-Bone-3" type="PinJoint2D" parent="Butter7/Bone-0"] visible = false -rotation = -1.27926 +rotation = -1.23755 node_a = NodePath("..") node_b = NodePath("../../Bone-3") softness = 100.0 [node name="Joint2D-Bone-0-Bone-4" type="PinJoint2D" parent="Butter7/Bone-0"] visible = false -rotation = -0.513908 +rotation = -0.537045 node_a = NodePath("..") node_b = NodePath("../../Bone-4") softness = 100.0 -[node name="Bone-1" parent="Butter7" instance=ExtResource("3_6ern4")] -position = Vector2(11.6466, 81.7664) -mass = 0.0625 +[node name="Joint2D-Bone-0-Bone-2" type="PinJoint2D" parent="Butter7/Bone-0"] +visible = false +rotation = -2.35233 +node_a = NodePath("..") +node_b = NodePath("../../Bone-2") +softness = 100.0 + +[node name="Bone-1" type="RigidBody2D" parent="Butter7" instance=ExtResource("3_6ern4")] +position = Vector2(11.5439, 81) +input_pickable = true +mass = 0.0555556 physics_material_override = ExtResource("5_221ya") +script = ExtResource("11_tqnjl") +metadata/idx = 1 metadata/bone_name = &"Bone-1" [node name="CircleShape2D" type="CollisionShape2D" parent="Butter7/Bone-1"] -shape = SubResource("CircleShape2D_lv61x") +shape = SubResource("CircleShape2D_ndv12") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Butter7/Bone-1"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-1") update_rotation = false update_scale = false [node name="Joint2D-Bone-1-Bone-0" type="PinJoint2D" parent="Butter7/Bone-1"] visible = false -rotation = -3.12185 +rotation = -3.17346 node_a = NodePath("..") node_b = NodePath("../../Bone-0") softness = 100.0 [node name="Joint2D-Bone-1-Bone-3" type="PinJoint2D" parent="Butter7/Bone-1"] visible = false -rotation = -2.53045 +rotation = -2.52429 node_a = NodePath("..") node_b = NodePath("../../Bone-3") softness = 100.0 [node name="Joint2D-Bone-1-Bone-4" type="PinJoint2D" parent="Butter7/Bone-1"] visible = false -rotation = -1.62952 +rotation = -1.5708 node_a = NodePath("..") node_b = NodePath("../../Bone-4") softness = 100.0 [node name="Joint2D-Bone-1-Bone-5" type="PinJoint2D" parent="Butter7/Bone-1"] visible = false -rotation = -0.47589 +rotation = -0.462297 node_a = NodePath("..") node_b = NodePath("../../Bone-5") softness = 100.0 -[node name="Bone-2" parent="Butter7" instance=ExtResource("3_6ern4")] -position = Vector2(33.2727, 28.1193) -mass = 0.0625 +[node name="Bone-2" type="RigidBody2D" parent="Butter7" instance=ExtResource("3_6ern4")] +position = Vector2(30, 28.9) +input_pickable = true +mass = 0.0555556 physics_material_override = ExtResource("5_221ya") +script = ExtResource("11_tqnjl") +metadata/idx = 2 metadata/bone_name = &"Bone-2" [node name="CircleShape2D" type="CollisionShape2D" parent="Butter7/Bone-2"] -shape = SubResource("CircleShape2D_lv61x") +shape = SubResource("CircleShape2D_ndv12") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Butter7/Bone-2"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-2") update_rotation = false update_scale = false -[node name="Joint2D-Bone-2-Bone-0" type="PinJoint2D" parent="Butter7/Bone-2"] +[node name="Joint2D-Bone-2-Bone-6" type="PinJoint2D" parent="Butter7/Bone-2"] visible = false -rotation = 0.796781 +rotation = -1.79394 node_a = NodePath("..") -node_b = NodePath("../../Bone-0") +node_b = NodePath("../../Bone-6") softness = 100.0 -[node name="Joint2D-Bone-2-Bone-3" type="PinJoint2D" parent="Butter7/Bone-2"] +[node name="Joint2D-Bone-2-Bone-0" type="PinJoint2D" parent="Butter7/Bone-2"] visible = false -rotation = 0.0887771 +rotation = 0.789259 node_a = NodePath("..") -node_b = NodePath("../../Bone-3") +node_b = NodePath("../../Bone-0") softness = 100.0 -[node name="Joint2D-Bone-2-Bone-6" type="PinJoint2D" parent="Butter7/Bone-2"] +[node name="Joint2D-Bone-2-Bone-3" type="PinJoint2D" parent="Butter7/Bone-2"] visible = false -rotation = -1.75798 node_a = NodePath("..") -node_b = NodePath("../../Bone-6") +node_b = NodePath("../../Bone-3") softness = 100.0 [node name="Joint2D-Bone-2-Bone-7" type="PinJoint2D" parent="Butter7/Bone-2"] visible = false -rotation = -0.696848 +rotation = -0.783479 node_a = NodePath("..") node_b = NodePath("../../Bone-7") softness = 100.0 -[node name="Bone-3" parent="Butter7" instance=ExtResource("3_6ern4")] -position = Vector2(30.9499, 54.2149) -mass = 0.0625 +[node name="Bone-3" type="RigidBody2D" parent="Butter7" instance=ExtResource("3_6ern4")] +position = Vector2(30, 55) +input_pickable = true +mass = 0.0555556 physics_material_override = ExtResource("5_221ya") +script = ExtResource("11_tqnjl") +metadata/idx = 3 metadata/bone_name = &"Bone-3" [node name="CircleShape2D" type="CollisionShape2D" parent="Butter7/Bone-3"] -shape = SubResource("CircleShape2D_lv61x") +shape = SubResource("CircleShape2D_ndv12") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Butter7/Bone-3"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-3") update_rotation = false update_scale = false [node name="Joint2D-Bone-3-Bone-0" type="PinJoint2D" parent="Butter7/Bone-3"] visible = false -rotation = -4.42086 +rotation = -4.37914 node_a = NodePath("..") node_b = NodePath("../../Bone-0") softness = 100.0 [node name="Joint2D-Bone-3-Bone-1" type="PinJoint2D" parent="Butter7/Bone-3"] visible = false -rotation = 0.611147 +rotation = 0.617307 node_a = NodePath("..") node_b = NodePath("../../Bone-1") softness = 100.0 +[node name="Joint2D-Bone-3-Bone-4" type="PinJoint2D" parent="Butter7/Bone-3"] +visible = false +node_a = NodePath("..") +node_b = NodePath("../../Bone-4") +softness = 100.0 + [node name="Joint2D-Bone-3-Bone-2" type="PinJoint2D" parent="Butter7/Bone-3"] visible = false -rotation = -3.05282 +rotation = -3.14159 node_a = NodePath("..") node_b = NodePath("../../Bone-2") softness = 100.0 -[node name="Joint2D-Bone-3-Bone-4" type="PinJoint2D" parent="Butter7/Bone-3"] +[node name="Joint2D-Bone-3-Bone-6" type="PinJoint2D" parent="Butter7/Bone-3"] visible = false -rotation = 0.021128 +rotation = -2.45928 node_a = NodePath("..") -node_b = NodePath("../../Bone-4") +node_b = NodePath("../../Bone-6") softness = 100.0 [node name="Joint2D-Bone-3-Bone-7" type="PinJoint2D" parent="Butter7/Bone-3"] visible = false -rotation = -1.46747 +rotation = -1.5708 node_a = NodePath("..") node_b = NodePath("../../Bone-7") softness = 100.0 [node name="Joint2D-Bone-3-Bone-8" type="PinJoint2D" parent="Butter7/Bone-3"] visible = false -rotation = -0.741441 +rotation = -0.785398 node_a = NodePath("..") node_b = NodePath("../../Bone-8") softness = 100.0 -[node name="Bone-4" parent="Butter7" instance=ExtResource("3_6ern4")] -position = Vector2(30.391, 80.6645) -mass = 0.0625 +[node name="Bone-4" type="RigidBody2D" parent="Butter7" instance=ExtResource("3_6ern4")] +position = Vector2(30, 81) +input_pickable = true +mass = 0.0555556 physics_material_override = ExtResource("5_221ya") +script = ExtResource("11_tqnjl") +metadata/idx = 4 metadata/bone_name = &"Bone-4" [node name="CircleShape2D" type="CollisionShape2D" parent="Butter7/Bone-4"] -shape = SubResource("CircleShape2D_lv61x") +shape = SubResource("CircleShape2D_ndv12") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Butter7/Bone-4"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-4") update_rotation = false update_scale = false [node name="Joint2D-Bone-4-Bone-0" type="PinJoint2D" parent="Butter7/Bone-4"] visible = false -rotation = -3.6555 +rotation = -3.67864 node_a = NodePath("..") node_b = NodePath("../../Bone-0") softness = 100.0 [node name="Joint2D-Bone-4-Bone-1" type="PinJoint2D" parent="Butter7/Bone-4"] visible = false -rotation = 1.51208 +rotation = 1.5708 node_a = NodePath("..") node_b = NodePath("../../Bone-1") softness = 100.0 [node name="Joint2D-Bone-4-Bone-3" type="PinJoint2D" parent="Butter7/Bone-4"] visible = false -rotation = -3.12046 +rotation = -3.14159 node_a = NodePath("..") node_b = NodePath("../../Bone-3") softness = 100.0 [node name="Joint2D-Bone-4-Bone-5" type="PinJoint2D" parent="Butter7/Bone-4"] visible = false -rotation = 0.215587 +rotation = 0.208465 node_a = NodePath("..") node_b = NodePath("../../Bone-5") softness = 100.0 [node name="Joint2D-Bone-4-Bone-7" type="PinJoint2D" parent="Butter7/Bone-4"] visible = false -rotation = -2.291 +rotation = -2.35619 node_a = NodePath("..") node_b = NodePath("../../Bone-7") softness = 100.0 [node name="Joint2D-Bone-4-Bone-8" type="PinJoint2D" parent="Butter7/Bone-4"] visible = false -rotation = -1.51371 +rotation = -1.5708 node_a = NodePath("..") node_b = NodePath("../../Bone-8") softness = 100.0 [node name="Joint2D-Bone-4-Bone-9" type="PinJoint2D" parent="Butter7/Bone-4"] visible = false -rotation = -0.719655 +rotation = -0.701483 node_a = NodePath("..") node_b = NodePath("../../Bone-9") softness = 100.0 -[node name="Bone-5" parent="Butter7" instance=ExtResource("3_6ern4")] -position = Vector2(24.6322, 106.962) -mass = 0.0625 +[node name="Bone-5" type="RigidBody2D" parent="Butter7" instance=ExtResource("3_6ern4")] +position = Vector2(24.5, 107) +input_pickable = true +mass = 0.0555556 physics_material_override = ExtResource("5_221ya") +script = ExtResource("11_tqnjl") +metadata/idx = 5 metadata/bone_name = &"Bone-5" [node name="CircleShape2D" type="CollisionShape2D" parent="Butter7/Bone-5"] -shape = SubResource("CircleShape2D_lv61x") +shape = SubResource("CircleShape2D_ndv12") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Butter7/Bone-5"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-5") update_rotation = false update_scale = false [node name="Joint2D-Bone-5-Bone-1" type="PinJoint2D" parent="Butter7/Bone-5"] visible = false -rotation = -3.61748 +rotation = -3.60389 node_a = NodePath("..") node_b = NodePath("../../Bone-1") softness = 100.0 [node name="Joint2D-Bone-5-Bone-4" type="PinJoint2D" parent="Butter7/Bone-5"] visible = false -rotation = -2.92601 +rotation = -2.93313 node_a = NodePath("..") node_b = NodePath("../../Bone-4") softness = 100.0 [node name="Joint2D-Bone-5-Bone-8" type="PinJoint2D" parent="Butter7/Bone-5"] visible = false -rotation = -2.23158 +rotation = -2.26083 node_a = NodePath("..") node_b = NodePath("../../Bone-8") softness = 100.0 [node name="Joint2D-Bone-5-Bone-9" type="PinJoint2D" parent="Butter7/Bone-5"] visible = false -rotation = -1.47296 +rotation = -1.47113 node_a = NodePath("..") node_b = NodePath("../../Bone-9") softness = 100.0 -[node name="Bone-6" parent="Butter7" instance=ExtResource("3_6ern4")] -position = Vector2(57.8071, 23.4724) -mass = 0.0625 +[node name="Bone-6" type="RigidBody2D" parent="Butter7" instance=ExtResource("3_6ern4")] +position = Vector2(56, 23) +input_pickable = true +mass = 0.0555556 physics_material_override = ExtResource("5_221ya") +script = ExtResource("11_tqnjl") +metadata/idx = 6 metadata/bone_name = &"Bone-6" [node name="CircleShape2D" type="CollisionShape2D" parent="Butter7/Bone-6"] -shape = SubResource("CircleShape2D_lv61x") +shape = SubResource("CircleShape2D_ndv12") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Butter7/Bone-6"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-6") update_rotation = false update_scale = false +[node name="Joint2D-Bone-6-Bone-10" type="PinJoint2D" parent="Butter7/Bone-6"] +visible = false +rotation = -1.59002 +node_a = NodePath("..") +node_b = NodePath("../../Bone-10") +softness = 100.0 + [node name="Joint2D-Bone-6-Bone-2" type="PinJoint2D" parent="Butter7/Bone-6"] visible = false -rotation = 1.38361 +rotation = 1.34765 node_a = NodePath("..") node_b = NodePath("../../Bone-2") softness = 100.0 +[node name="Joint2D-Bone-6-Bone-3" type="PinJoint2D" parent="Butter7/Bone-6"] +visible = false +rotation = 0.682316 +node_a = NodePath("..") +node_b = NodePath("../../Bone-3") +softness = 100.0 + [node name="Joint2D-Bone-6-Bone-7" type="PinJoint2D" parent="Butter7/Bone-6"] visible = false -rotation = 0.0118971 node_a = NodePath("..") node_b = NodePath("../../Bone-7") softness = 100.0 -[node name="Joint2D-Bone-6-Bone-10" type="PinJoint2D" parent="Butter7/Bone-6"] +[node name="Joint2D-Bone-6-Bone-11" type="PinJoint2D" parent="Butter7/Bone-6"] visible = false -rotation = -1.57124 +rotation = -0.682317 node_a = NodePath("..") -node_b = NodePath("../../Bone-10") +node_b = NodePath("../../Bone-11") softness = 100.0 -[node name="Bone-7" parent="Butter7" instance=ExtResource("3_6ern4")] -position = Vector2(57.4087, 56.9584) -mass = 0.0625 +[node name="Bone-7" type="RigidBody2D" parent="Butter7" instance=ExtResource("3_6ern4")] +position = Vector2(56, 55) +input_pickable = true +mass = 0.0555556 physics_material_override = ExtResource("5_221ya") +script = ExtResource("11_tqnjl") +metadata/idx = 7 metadata/bone_name = &"Bone-7" [node name="CircleShape2D" type="CollisionShape2D" parent="Butter7/Bone-7"] -shape = SubResource("CircleShape2D_lv61x") +shape = SubResource("CircleShape2D_ndv12") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Butter7/Bone-7"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-7") update_rotation = false update_scale = false [node name="Joint2D-Bone-7-Bone-2" type="PinJoint2D" parent="Butter7/Bone-7"] visible = false -rotation = -3.83844 +rotation = -3.92507 node_a = NodePath("..") node_b = NodePath("../../Bone-2") softness = 100.0 [node name="Joint2D-Bone-7-Bone-3" type="PinJoint2D" parent="Butter7/Bone-7"] visible = false -rotation = -4.60907 +rotation = 1.5708 node_a = NodePath("..") node_b = NodePath("../../Bone-3") softness = 100.0 -[node name="Joint2D-Bone-7-Bone-4" type="PinJoint2D" parent="Butter7/Bone-7"] +[node name="Joint2D-Bone-7-Bone-6" type="PinJoint2D" parent="Butter7/Bone-7"] visible = false -rotation = 0.850593 +rotation = -3.14159 node_a = NodePath("..") -node_b = NodePath("../../Bone-4") +node_b = NodePath("../../Bone-6") softness = 100.0 -[node name="Joint2D-Bone-7-Bone-6" type="PinJoint2D" parent="Butter7/Bone-7"] +[node name="Joint2D-Bone-7-Bone-4" type="PinJoint2D" parent="Butter7/Bone-7"] visible = false -rotation = -3.1297 +rotation = 0.785398 node_a = NodePath("..") -node_b = NodePath("../../Bone-6") +node_b = NodePath("../../Bone-4") softness = 100.0 [node name="Joint2D-Bone-7-Bone-8" type="PinJoint2D" parent="Butter7/Bone-7"] visible = false -rotation = 0.0344942 node_a = NodePath("..") node_b = NodePath("../../Bone-8") softness = 100.0 +[node name="Joint2D-Bone-7-Bone-10" type="PinJoint2D" parent="Butter7/Bone-7"] +visible = false +rotation = -2.46685 +node_a = NodePath("..") +node_b = NodePath("../../Bone-10") +softness = 100.0 + [node name="Joint2D-Bone-7-Bone-11" type="PinJoint2D" parent="Butter7/Bone-7"] visible = false -rotation = -1.59133 +rotation = -1.5708 node_a = NodePath("..") node_b = NodePath("../../Bone-11") softness = 100.0 [node name="Joint2D-Bone-7-Bone-12" type="PinJoint2D" parent="Butter7/Bone-7"] visible = false -rotation = -0.823625 +rotation = -0.785398 node_a = NodePath("..") node_b = NodePath("../../Bone-12") softness = 100.0 -[node name="Bone-8" parent="Butter7" instance=ExtResource("3_6ern4")] -position = Vector2(56.539, 82.1587) -mass = 0.0625 +[node name="Bone-8" type="RigidBody2D" parent="Butter7" instance=ExtResource("3_6ern4")] +position = Vector2(56, 81) +input_pickable = true +mass = 0.0555556 physics_material_override = ExtResource("5_221ya") +script = ExtResource("11_tqnjl") +metadata/idx = 8 metadata/bone_name = &"Bone-8" [node name="CircleShape2D" type="CollisionShape2D" parent="Butter7/Bone-8"] -shape = SubResource("CircleShape2D_lv61x") +shape = SubResource("CircleShape2D_ndv12") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Butter7/Bone-8"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-8") update_rotation = false update_scale = false [node name="Joint2D-Bone-8-Bone-3" type="PinJoint2D" parent="Butter7/Bone-8"] visible = false -rotation = -3.88303 +rotation = -3.92699 node_a = NodePath("..") node_b = NodePath("../../Bone-3") softness = 100.0 [node name="Joint2D-Bone-8-Bone-4" type="PinJoint2D" parent="Butter7/Bone-8"] visible = false -rotation = -4.65531 +rotation = 1.5708 node_a = NodePath("..") node_b = NodePath("../../Bone-4") softness = 100.0 -[node name="Joint2D-Bone-8-Bone-5" type="PinJoint2D" parent="Butter7/Bone-8"] +[node name="Joint2D-Bone-8-Bone-7" type="PinJoint2D" parent="Butter7/Bone-8"] visible = false -rotation = 0.910016 +rotation = -3.14159 node_a = NodePath("..") -node_b = NodePath("../../Bone-5") +node_b = NodePath("../../Bone-7") softness = 100.0 -[node name="Joint2D-Bone-8-Bone-7" type="PinJoint2D" parent="Butter7/Bone-8"] +[node name="Joint2D-Bone-8-Bone-5" type="PinJoint2D" parent="Butter7/Bone-8"] visible = false -rotation = -3.1071 +rotation = 0.88076 node_a = NodePath("..") -node_b = NodePath("../../Bone-7") +node_b = NodePath("../../Bone-5") softness = 100.0 [node name="Joint2D-Bone-8-Bone-9" type="PinJoint2D" parent="Butter7/Bone-8"] visible = false -rotation = 0.0139167 +rotation = 0.0516781 node_a = NodePath("..") node_b = NodePath("../../Bone-9") softness = 100.0 [node name="Joint2D-Bone-8-Bone-11" type="PinJoint2D" parent="Butter7/Bone-8"] visible = false -rotation = -2.35349 +rotation = -2.35619 node_a = NodePath("..") node_b = NodePath("../../Bone-11") softness = 100.0 [node name="Joint2D-Bone-8-Bone-12" type="PinJoint2D" parent="Butter7/Bone-8"] visible = false -rotation = -1.58598 +rotation = -1.5708 node_a = NodePath("..") node_b = NodePath("../../Bone-12") softness = 100.0 [node name="Joint2D-Bone-8-Bone-13" type="PinJoint2D" parent="Butter7/Bone-8"] visible = false -rotation = -0.801932 +rotation = -0.754352 node_a = NodePath("..") node_b = NodePath("../../Bone-13") softness = 100.0 -[node name="Bone-9" parent="Butter7" instance=ExtResource("3_6ern4")] -position = Vector2(56.1508, 110.055) -mass = 0.0625 +[node name="Bone-9" type="RigidBody2D" parent="Butter7" instance=ExtResource("3_6ern4")] +position = Vector2(54.5, 110) +input_pickable = true +mass = 0.0555556 physics_material_override = ExtResource("5_221ya") +script = ExtResource("11_tqnjl") +metadata/idx = 9 metadata/bone_name = &"Bone-9" [node name="CircleShape2D" type="CollisionShape2D" parent="Butter7/Bone-9"] -shape = SubResource("CircleShape2D_lv61x") +shape = SubResource("CircleShape2D_ndv12") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Butter7/Bone-9"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-9") update_rotation = false update_scale = false [node name="Joint2D-Bone-9-Bone-4" type="PinJoint2D" parent="Butter7/Bone-9"] visible = false -rotation = -3.86125 +rotation = -3.84308 node_a = NodePath("..") node_b = NodePath("../../Bone-4") softness = 100.0 [node name="Joint2D-Bone-9-Bone-5" type="PinJoint2D" parent="Butter7/Bone-9"] visible = false -rotation = -4.61455 +rotation = -4.61272 node_a = NodePath("..") node_b = NodePath("../../Bone-5") softness = 100.0 [node name="Joint2D-Bone-9-Bone-8" type="PinJoint2D" parent="Butter7/Bone-9"] visible = false -rotation = -3.12768 +rotation = -3.08991 node_a = NodePath("..") node_b = NodePath("../../Bone-8") softness = 100.0 [node name="Joint2D-Bone-9-Bone-12" type="PinJoint2D" parent="Butter7/Bone-9"] visible = false -rotation = -2.36163 +rotation = -2.38274 node_a = NodePath("..") node_b = NodePath("../../Bone-12") softness = 100.0 [node name="Joint2D-Bone-9-Bone-13" type="PinJoint2D" parent="Butter7/Bone-9"] visible = false -rotation = -1.69437 +rotation = -1.61924 node_a = NodePath("..") node_b = NodePath("../../Bone-13") softness = 100.0 -[node name="Bone-10" parent="Butter7" instance=ExtResource("3_6ern4")] -position = Vector2(83.197, 23.4612) -mass = 0.0625 +[node name="Bone-10" type="RigidBody2D" parent="Butter7" instance=ExtResource("3_6ern4")] +position = Vector2(82, 22.5) +input_pickable = true +mass = 0.0555556 physics_material_override = ExtResource("5_221ya") +script = ExtResource("11_tqnjl") +metadata/idx = 10 metadata/bone_name = &"Bone-10" [node name="CircleShape2D" type="CollisionShape2D" parent="Butter7/Bone-10"] -shape = SubResource("CircleShape2D_lv61x") +shape = SubResource("CircleShape2D_ndv12") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Butter7/Bone-10"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-10") update_rotation = false update_scale = false [node name="Joint2D-Bone-10-Bone-6" type="PinJoint2D" parent="Butter7/Bone-10"] visible = false -rotation = 1.57035 +rotation = 1.55157 node_a = NodePath("..") node_b = NodePath("../../Bone-6") softness = 100.0 +[node name="Joint2D-Bone-10-Bone-7" type="PinJoint2D" parent="Butter7/Bone-10"] +visible = false +rotation = 0.674741 +node_a = NodePath("..") +node_b = NodePath("../../Bone-7") +softness = 100.0 + [node name="Joint2D-Bone-10-Bone-11" type="PinJoint2D" parent="Butter7/Bone-10"] visible = false -rotation = 0.0244024 node_a = NodePath("..") node_b = NodePath("../../Bone-11") softness = 100.0 [node name="Joint2D-Bone-10-Bone-14" type="PinJoint2D" parent="Butter7/Bone-10"] visible = false -rotation = -0.706125 +rotation = -1.18638 node_a = NodePath("..") node_b = NodePath("../../Bone-14") softness = 100.0 -[node name="Bone-11" parent="Butter7" instance=ExtResource("3_6ern4")] -position = Vector2(82.3919, 56.4453) -mass = 0.0625 +[node name="Joint2D-Bone-10-Bone-15" type="PinJoint2D" parent="Butter7/Bone-10"] +visible = false +rotation = -0.59507 +node_a = NodePath("..") +node_b = NodePath("../../Bone-15") +softness = 100.0 + +[node name="Bone-11" type="RigidBody2D" parent="Butter7" instance=ExtResource("3_6ern4")] +position = Vector2(82, 55) +input_pickable = true +mass = 0.0555556 physics_material_override = ExtResource("5_221ya") +script = ExtResource("11_tqnjl") +metadata/idx = 11 metadata/bone_name = &"Bone-11" [node name="CircleShape2D" type="CollisionShape2D" parent="Butter7/Bone-11"] -shape = SubResource("CircleShape2D_lv61x") +shape = SubResource("CircleShape2D_ndv12") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Butter7/Bone-11"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-11") update_rotation = false update_scale = false -[node name="Joint2D-Bone-11-Bone-7" type="PinJoint2D" parent="Butter7/Bone-11"] +[node name="Joint2D-Bone-11-Bone-6" type="PinJoint2D" parent="Butter7/Bone-11"] visible = false -rotation = 1.55026 +rotation = -3.82391 node_a = NodePath("..") -node_b = NodePath("../../Bone-7") +node_b = NodePath("../../Bone-6") softness = 100.0 -[node name="Joint2D-Bone-11-Bone-8" type="PinJoint2D" parent="Butter7/Bone-11"] +[node name="Joint2D-Bone-11-Bone-7" type="PinJoint2D" parent="Butter7/Bone-11"] visible = false -rotation = 0.788103 +rotation = 1.5708 node_a = NodePath("..") -node_b = NodePath("../../Bone-8") +node_b = NodePath("../../Bone-7") softness = 100.0 [node name="Joint2D-Bone-11-Bone-10" type="PinJoint2D" parent="Butter7/Bone-11"] visible = false -rotation = -3.11719 +rotation = -3.14159 node_a = NodePath("..") node_b = NodePath("../../Bone-10") softness = 100.0 +[node name="Joint2D-Bone-11-Bone-8" type="PinJoint2D" parent="Butter7/Bone-11"] +visible = false +rotation = 0.785398 +node_a = NodePath("..") +node_b = NodePath("../../Bone-8") +softness = 100.0 + [node name="Joint2D-Bone-11-Bone-12" type="PinJoint2D" parent="Butter7/Bone-11"] visible = false -rotation = -0.069801 node_a = NodePath("..") node_b = NodePath("../../Bone-12") softness = 100.0 [node name="Joint2D-Bone-11-Bone-14" type="PinJoint2D" parent="Butter7/Bone-11"] visible = false -rotation = -2.00818 +rotation = -2.39127 node_a = NodePath("..") node_b = NodePath("../../Bone-14") softness = 100.0 -[node name="Bone-12" parent="Butter7" instance=ExtResource("3_6ern4")] -position = Vector2(84.1603, 81.7393) -mass = 0.0625 +[node name="Joint2D-Bone-11-Bone-15" type="PinJoint2D" parent="Butter7/Bone-11"] +visible = false +rotation = -1.5708 +node_a = NodePath("..") +node_b = NodePath("../../Bone-15") +softness = 100.0 + +[node name="Joint2D-Bone-11-Bone-16" type="PinJoint2D" parent="Butter7/Bone-11"] +visible = false +rotation = -0.72425 +node_a = NodePath("..") +node_b = NodePath("../../Bone-16") +softness = 100.0 + +[node name="Bone-12" type="RigidBody2D" parent="Butter7" instance=ExtResource("3_6ern4")] +position = Vector2(82, 81) +input_pickable = true +mass = 0.0555556 physics_material_override = ExtResource("5_221ya") +script = ExtResource("11_tqnjl") +metadata/idx = 12 metadata/bone_name = &"Bone-12" [node name="CircleShape2D" type="CollisionShape2D" parent="Butter7/Bone-12"] -shape = SubResource("CircleShape2D_lv61x") +shape = SubResource("CircleShape2D_ndv12") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Butter7/Bone-12"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-12") update_rotation = false update_scale = false [node name="Joint2D-Bone-12-Bone-7" type="PinJoint2D" parent="Butter7/Bone-12"] visible = false -rotation = -3.96522 +rotation = -3.92699 node_a = NodePath("..") node_b = NodePath("../../Bone-7") softness = 100.0 [node name="Joint2D-Bone-12-Bone-8" type="PinJoint2D" parent="Butter7/Bone-12"] visible = false -rotation = 1.55561 +rotation = 1.5708 node_a = NodePath("..") node_b = NodePath("../../Bone-8") softness = 100.0 -[node name="Joint2D-Bone-12-Bone-9" type="PinJoint2D" parent="Butter7/Bone-12"] +[node name="Joint2D-Bone-12-Bone-11" type="PinJoint2D" parent="Butter7/Bone-12"] visible = false -rotation = 0.779958 +rotation = -3.14159 node_a = NodePath("..") -node_b = NodePath("../../Bone-9") +node_b = NodePath("../../Bone-11") softness = 100.0 -[node name="Joint2D-Bone-12-Bone-11" type="PinJoint2D" parent="Butter7/Bone-12"] +[node name="Joint2D-Bone-12-Bone-9" type="PinJoint2D" parent="Butter7/Bone-12"] visible = false -rotation = -3.21139 +rotation = 0.758856 node_a = NodePath("..") -node_b = NodePath("../../Bone-11") +node_b = NodePath("../../Bone-9") softness = 100.0 [node name="Joint2D-Bone-12-Bone-13" type="PinJoint2D" parent="Butter7/Bone-12"] visible = false -rotation = 0.0839264 node_a = NodePath("..") node_b = NodePath("../../Bone-13") softness = 100.0 -[node name="Joint2D-Bone-12-Bone-14" type="PinJoint2D" parent="Butter7/Bone-12"] +[node name="Joint2D-Bone-12-Bone-15" type="PinJoint2D" parent="Butter7/Bone-12"] visible = false -rotation = -2.64568 +rotation = -2.43934 node_a = NodePath("..") -node_b = NodePath("../../Bone-14") +node_b = NodePath("../../Bone-15") softness = 100.0 -[node name="Joint2D-Bone-12-Bone-15" type="PinJoint2D" parent="Butter7/Bone-12"] +[node name="Joint2D-Bone-12-Bone-16" type="PinJoint2D" parent="Butter7/Bone-12"] visible = false -rotation = -1.15601 +rotation = -1.5708 node_a = NodePath("..") -node_b = NodePath("../../Bone-15") +node_b = NodePath("../../Bone-16") +softness = 100.0 + +[node name="Joint2D-Bone-12-Bone-17" type="PinJoint2D" parent="Butter7/Bone-12"] +visible = false +rotation = -0.830821 +node_a = NodePath("..") +node_b = NodePath("../../Bone-17") softness = 100.0 -[node name="Bone-13" parent="Butter7" instance=ExtResource("3_6ern4")] -position = Vector2(82.0489, 106.839) -mass = 0.0625 +[node name="Bone-13" type="RigidBody2D" parent="Butter7" instance=ExtResource("3_6ern4")] +position = Vector2(82, 108.667) +input_pickable = true +mass = 0.0555556 physics_material_override = ExtResource("5_221ya") +script = ExtResource("11_tqnjl") +metadata/idx = 13 metadata/bone_name = &"Bone-13" [node name="CircleShape2D" type="CollisionShape2D" parent="Butter7/Bone-13"] -shape = SubResource("CircleShape2D_lv61x") +shape = SubResource("CircleShape2D_ndv12") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Butter7/Bone-13"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-13") update_rotation = false update_scale = false +[node name="Joint2D-Bone-13-Bone-17" type="PinJoint2D" parent="Butter7/Bone-13"] +visible = false +rotation = -1.85292 +node_a = NodePath("..") +node_b = NodePath("../../Bone-17") +softness = 100.0 + [node name="Joint2D-Bone-13-Bone-8" type="PinJoint2D" parent="Butter7/Bone-13"] visible = false -rotation = -3.94352 +rotation = -3.89594 node_a = NodePath("..") node_b = NodePath("../../Bone-8") softness = 100.0 [node name="Joint2D-Bone-13-Bone-9" type="PinJoint2D" parent="Butter7/Bone-13"] visible = false -rotation = 1.44723 +rotation = 1.52235 node_a = NodePath("..") node_b = NodePath("../../Bone-9") softness = 100.0 [node name="Joint2D-Bone-13-Bone-12" type="PinJoint2D" parent="Butter7/Bone-13"] visible = false -rotation = -3.05767 +rotation = -3.14159 node_a = NodePath("..") node_b = NodePath("../../Bone-12") softness = 100.0 -[node name="Joint2D-Bone-13-Bone-15" type="PinJoint2D" parent="Butter7/Bone-13"] +[node name="Joint2D-Bone-13-Bone-16" type="PinJoint2D" parent="Butter7/Bone-13"] visible = false -rotation = -2.19381 +rotation = -2.44804 node_a = NodePath("..") -node_b = NodePath("../../Bone-15") +node_b = NodePath("../../Bone-16") softness = 100.0 -[node name="Bone-14" parent="Butter7" instance=ExtResource("3_6ern4")] -position = Vector2(103.077, 46.7729) -mass = 0.0625 +[node name="Bone-14" type="RigidBody2D" parent="Butter7" instance=ExtResource("3_6ern4")] +position = Vector2(104, 31.4) +input_pickable = true +mass = 0.0555556 physics_material_override = ExtResource("5_221ya") +script = ExtResource("11_tqnjl") +metadata/idx = 14 metadata/bone_name = &"Bone-14" [node name="CircleShape2D" type="CollisionShape2D" parent="Butter7/Bone-14"] -shape = SubResource("CircleShape2D_lv61x") +shape = SubResource("CircleShape2D_ndv12") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Butter7/Bone-14"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-14") update_rotation = false update_scale = false [node name="Joint2D-Bone-14-Bone-10" type="PinJoint2D" parent="Butter7/Bone-14"] visible = false -rotation = -3.84772 +rotation = -4.32797 node_a = NodePath("..") node_b = NodePath("../../Bone-10") softness = 100.0 [node name="Joint2D-Bone-14-Bone-11" type="PinJoint2D" parent="Butter7/Bone-14"] visible = false -rotation = 1.13341 +rotation = 0.750325 node_a = NodePath("..") node_b = NodePath("../../Bone-11") softness = 100.0 -[node name="Joint2D-Bone-14-Bone-12" type="PinJoint2D" parent="Butter7/Bone-14"] +[node name="Joint2D-Bone-14-Bone-15" type="PinJoint2D" parent="Butter7/Bone-14"] visible = false -rotation = 0.495915 node_a = NodePath("..") -node_b = NodePath("../../Bone-12") +node_b = NodePath("../../Bone-15") softness = 100.0 -[node name="Bone-15" parent="Butter7" instance=ExtResource("3_6ern4")] -position = Vector2(104.511, 90.7003) -mass = 0.0625 +[node name="Bone-15" type="RigidBody2D" parent="Butter7" instance=ExtResource("3_6ern4")] +position = Vector2(104, 55) +input_pickable = true +mass = 0.0555556 physics_material_override = ExtResource("5_221ya") +script = ExtResource("11_tqnjl") +metadata/idx = 15 metadata/bone_name = &"Bone-15" [node name="CircleShape2D" type="CollisionShape2D" parent="Butter7/Bone-15"] -shape = SubResource("CircleShape2D_lv61x") +shape = SubResource("CircleShape2D_ndv12") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Butter7/Bone-15"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-15") update_rotation = false update_scale = false +[node name="Joint2D-Bone-15-Bone-10" type="PinJoint2D" parent="Butter7/Bone-15"] +visible = false +rotation = -3.73666 +node_a = NodePath("..") +node_b = NodePath("../../Bone-10") +softness = 100.0 + +[node name="Joint2D-Bone-15-Bone-11" type="PinJoint2D" parent="Butter7/Bone-15"] +visible = false +rotation = 1.5708 +node_a = NodePath("..") +node_b = NodePath("../../Bone-11") +softness = 100.0 + +[node name="Joint2D-Bone-15-Bone-14" type="PinJoint2D" parent="Butter7/Bone-15"] +visible = false +rotation = -3.14159 +node_a = NodePath("..") +node_b = NodePath("../../Bone-14") +softness = 100.0 + [node name="Joint2D-Bone-15-Bone-12" type="PinJoint2D" parent="Butter7/Bone-15"] visible = false -rotation = -4.2976 +rotation = 0.702257 node_a = NodePath("..") node_b = NodePath("../../Bone-12") softness = 100.0 -[node name="Joint2D-Bone-15-Bone-13" type="PinJoint2D" parent="Butter7/Bone-15"] +[node name="Joint2D-Bone-15-Bone-16" type="PinJoint2D" parent="Butter7/Bone-15"] visible = false -rotation = 0.947781 +rotation = -0.0384426 node_a = NodePath("..") -node_b = NodePath("../../Bone-13") +node_b = NodePath("../../Bone-16") softness = 100.0 -[node name="Butter8" type="Polygon2D" parent="."] -z_index = 4 -position = Vector2(526, -296) -texture = ExtResource("4_xackp") -skeleton = NodePath("Skeleton2D") -polygon = PackedVector2Array(70, 4, 67, 4, 65, 6, 65, 7, 61, 7, 60, 8, 60, 9, 58, 10, 55, 10, 53, 12, 51, 12, 49, 15, 44, 15, 39, 19, 34, 19, 29, 23, 24, 23, 22, 25, 22, 26, 14, 30, 14, 31, 10, 31, 6, 34, 4, 34, 5, 37, 6, 37, 6, 42, 7, 42, 6, 99, 6, 105, 11, 108, 11, 109, 14, 110, 18, 110, 22, 113, 22, 114, 26, 114, 30, 117, 30, 118, 36, 118, 42, 121, 42, 122, 46, 122, 47, 123, 47, 124, 51, 125, 51, 126, 67, 126, 70, 122, 76, 122, 78, 119, 78, 118, 83, 118, 88, 114, 92, 114, 95, 111, 95, 110, 98, 109, 100, 109, 102, 107, 102, 106, 105, 106, 106, 105, 106, 104, 110, 102, 113, 102, 114, 100, 115, 100, 115, 87, 113, 83, 113, 35, 110, 35, 109, 34, 109, 31, 106, 31, 105, 30, 105, 28, 103, 28, 93, 19, 90, 19, 89, 18, 89, 15, 85, 13, 85, 11, 82, 11, 74, 4, 74, 3, 70, 3, 16.404, 42.2231, 17.2099, 64.8417, 14.9926, 67.4763, 6.56298, 66.9104, 7, 42, 6, 42, 6, 40.8541, 19.9638, 39.1868, 16.404, 42.2231, 6, 40.8541, 6, 37, 5, 37, 4, 34, 6, 34, 10, 31, 14, 31, 14, 30, 19.1198, 27.4401, 14.9926, 67.4763, 16.6942, 88.6245, 14.8609, 90.573, 6.15233, 90.317, 6.56298, 66.9104, 41.8946, 39.7678, 19.9638, 39.1868, 19.1198, 27.4401, 22, 26, 22, 25, 24, 23, 29, 23, 34, 19, 39, 19, 44, 15, 45.1977, 15, 41.8946, 39.7678, 43.4228, 41.3806, 42.0191, 65.3034, 17.2099, 64.8417, 16.404, 42.2231, 19.9638, 39.1868, 42.0191, 65.3034, 43.7593, 67.3959, 39.9293, 90.513, 16.6942, 88.6245, 14.9926, 67.4763, 17.2099, 64.8417, 39.9293, 90.513, 40.0064, 90.6062, 41.7542, 116.383, 40.9418, 117.302, 29.7451, 116.809, 26, 114, 22, 114, 22, 113, 18, 110, 14.0972, 110, 14.8609, 90.573, 16.6942, 88.6245, 14.8609, 90.573, 14.0972, 110, 14, 110, 11, 109, 11, 108, 6, 105, 6, 99, 6.15233, 90.317, 69.5805, 18.3546, 67.0739, 41.8496, 66.534, 42.37, 43.4228, 41.3806, 41.8946, 39.7678, 45.2666, 14.4835, 65.4613, 14.3145, 66.534, 42.37, 68.6898, 66.9299, 67.4574, 68.3857, 43.7593, 67.3959, 42.0191, 65.3034, 43.4228, 41.3806, 67.4574, 68.3857, 69.1074, 88.2666, 66.7385, 90.8323, 40.0064, 90.6062, 39.9293, 90.513, 43.7593, 67.3959, 66.7385, 90.8323, 65.1923, 113.826, 41.7542, 116.383, 40.0064, 90.6062, 74, 4, 82, 11, 85, 11, 85, 13, 89, 15, 89, 17.8885, 69.5805, 18.3546, 65.4613, 14.3145, 67.6064, 4, 70, 4, 70, 3, 74, 3, 65.4613, 14.3145, 49.3672, 14.4492, 51, 12, 53, 12, 55, 10, 58, 10, 60, 9, 60, 8, 61, 7, 65, 7, 65, 6, 67, 4, 67.6064, 4, 94.8406, 40.0048, 92.2197, 42.3484, 67.0739, 41.8496, 69.5805, 18.3546, 92.3703, 17.8076, 92.2197, 42.3484, 89.726, 64.694, 68.6898, 66.9299, 66.534, 42.37, 67.0739, 41.8496, 94.6971, 68.9358, 93.0974, 92.5784, 92.9017, 92.7277, 69.1074, 88.2666, 67.4574, 68.3857, 68.6898, 66.9299, 89.726, 64.694, 92.9017, 92.7277, 89.0792, 117.303, 68.2836, 116.274, 65.1923, 113.826, 66.7385, 90.8323, 69.1074, 88.2666, 84.175, 117.06, 83, 118, 78, 118, 78, 119, 76, 122, 70, 122, 67.2874, 125.617, 68.2836, 116.274, 103, 28, 105, 28, 105, 30, 106, 31, 109, 31, 109, 34, 110, 35, 113, 35, 113, 43.4565, 94.8406, 40.0048, 92.503, 19, 93, 19, 113.848, 43.6177, 117.565, 63.6165, 115.747, 65.8505, 94.6971, 68.9358, 89.726, 64.694, 92.2197, 42.3484, 94.8406, 40.0048, 118.281, 89.2678, 114.613, 93.6621, 93.0974, 92.5784, 94.6971, 68.9358, 115.747, 65.8505, 114.613, 93.6621, 115, 95.2133, 115, 100, 114, 100, 113, 102, 110, 102, 106, 104, 106, 105, 105, 106, 102, 106, 102, 107, 100, 109, 98, 109, 95, 110, 95, 111, 92, 114, 89.5929, 114, 92.9017, 92.7277, 93.0974, 92.5784, 115, 95.2133, 114.613, 93.6621, 115, 93.1981, 68.2836, 116.274, 67.2874, 125.617, 67, 126, 51, 126, 51, 125, 47, 124, 47, 123, 46, 122, 42, 122, 42, 121, 41.1336, 120.567, 40.9418, 117.302, 41.7542, 116.383, 65.1923, 113.826, 40.9418, 117.302, 41.1336, 120.567, 36, 118, 30, 118, 30, 117, 29.7451, 116.809) -polygons = [PackedInt32Array(88, 89, 90), PackedInt32Array(90, 91, 92), PackedInt32Array(92, 93, 94), PackedInt32Array(88, 90, 92), PackedInt32Array(92, 94, 88), PackedInt32Array(105, 95, 96), PackedInt32Array(96, 97, 98), PackedInt32Array(98, 99, 100), PackedInt32Array(101, 102, 103), PackedInt32Array(103, 104, 105), PackedInt32Array(105, 96, 98), PackedInt32Array(98, 100, 101), PackedInt32Array(103, 105, 98), PackedInt32Array(98, 101, 103), PackedInt32Array(110, 106, 107), PackedInt32Array(107, 108, 109), PackedInt32Array(109, 110, 107), PackedInt32Array(121, 111, 112), PackedInt32Array(112, 113, 114), PackedInt32Array(114, 115, 116), PackedInt32Array(117, 118, 119), PackedInt32Array(119, 120, 121), PackedInt32Array(112, 114, 116), PackedInt32Array(119, 121, 112), PackedInt32Array(112, 116, 117), PackedInt32Array(117, 119, 112), PackedInt32Array(127, 122, 123), PackedInt32Array(123, 124, 125), PackedInt32Array(125, 126, 127), PackedInt32Array(127, 123, 125), PackedInt32Array(133, 128, 129), PackedInt32Array(129, 130, 131), PackedInt32Array(131, 132, 133), PackedInt32Array(133, 129, 131), PackedInt32Array(145, 134, 135), PackedInt32Array(135, 136, 137), PackedInt32Array(137, 138, 139), PackedInt32Array(139, 140, 141), PackedInt32Array(142, 143, 144), PackedInt32Array(144, 145, 135), PackedInt32Array(135, 137, 139), PackedInt32Array(139, 141, 142), PackedInt32Array(142, 144, 135), PackedInt32Array(135, 139, 142), PackedInt32Array(153, 146, 147), PackedInt32Array(147, 148, 149), PackedInt32Array(150, 151, 152), PackedInt32Array(152, 153, 147), PackedInt32Array(147, 149, 150), PackedInt32Array(150, 152, 147), PackedInt32Array(160, 154, 155), PackedInt32Array(155, 156, 157), PackedInt32Array(157, 158, 159), PackedInt32Array(159, 160, 155), PackedInt32Array(155, 157, 159), PackedInt32Array(166, 161, 162), PackedInt32Array(162, 163, 164), PackedInt32Array(164, 165, 166), PackedInt32Array(166, 162, 164), PackedInt32Array(172, 167, 168), PackedInt32Array(168, 169, 170), PackedInt32Array(170, 171, 172), PackedInt32Array(172, 168, 170), PackedInt32Array(176, 173, 174), PackedInt32Array(174, 175, 176), PackedInt32Array(178, 179, 180), PackedInt32Array(180, 181, 182), PackedInt32Array(182, 183, 184), PackedInt32Array(184, 185, 186), PackedInt32Array(186, 187, 188), PackedInt32Array(178, 180, 182), PackedInt32Array(182, 184, 186), PackedInt32Array(186, 188, 177), PackedInt32Array(177, 178, 182), PackedInt32Array(182, 186, 177), PackedInt32Array(189, 190, 191), PackedInt32Array(192, 193, 194), PackedInt32Array(195, 196, 197), PackedInt32Array(198, 199, 200), PackedInt32Array(200, 201, 189), PackedInt32Array(189, 191, 192), PackedInt32Array(195, 197, 198), PackedInt32Array(198, 200, 189), PackedInt32Array(189, 192, 194), PackedInt32Array(194, 195, 198), PackedInt32Array(198, 189, 194), PackedInt32Array(206, 202, 203), PackedInt32Array(203, 204, 205), PackedInt32Array(205, 206, 203), PackedInt32Array(211, 207, 208), PackedInt32Array(208, 209, 210), PackedInt32Array(210, 211, 208), PackedInt32Array(218, 212, 213), PackedInt32Array(213, 214, 215), PackedInt32Array(215, 216, 217), PackedInt32Array(217, 218, 213), PackedInt32Array(213, 215, 217), PackedInt32Array(224, 219, 220), PackedInt32Array(220, 221, 222), PackedInt32Array(222, 223, 224), PackedInt32Array(224, 220, 222), PackedInt32Array(232, 225, 226), PackedInt32Array(227, 228, 229), PackedInt32Array(230, 231, 232), PackedInt32Array(232, 226, 227), PackedInt32Array(227, 229, 230), PackedInt32Array(230, 232, 227), PackedInt32Array(233, 234, 235), PackedInt32Array(236, 237, 238), PackedInt32Array(239, 240, 241), PackedInt32Array(241, 242, 243), PackedInt32Array(243, 244, 233), PackedInt32Array(238, 239, 241), PackedInt32Array(241, 243, 233), PackedInt32Array(236, 238, 241), PackedInt32Array(241, 233, 235), PackedInt32Array(235, 236, 241), PackedInt32Array(251, 245, 246), PackedInt32Array(246, 247, 248), PackedInt32Array(248, 249, 250), PackedInt32Array(250, 251, 246), PackedInt32Array(246, 248, 250), PackedInt32Array(256, 252, 253), PackedInt32Array(253, 254, 255), PackedInt32Array(255, 256, 253), PackedInt32Array(275, 257, 258), PackedInt32Array(258, 259, 260), PackedInt32Array(260, 261, 262), PackedInt32Array(263, 264, 265), PackedInt32Array(266, 267, 268), PackedInt32Array(270, 271, 272), PackedInt32Array(272, 273, 274), PackedInt32Array(274, 275, 258), PackedInt32Array(258, 260, 262), PackedInt32Array(263, 265, 266), PackedInt32Array(266, 268, 269), PackedInt32Array(270, 272, 274), PackedInt32Array(274, 258, 262), PackedInt32Array(266, 269, 270), PackedInt32Array(274, 262, 263), PackedInt32Array(266, 270, 274), PackedInt32Array(274, 263, 266), PackedInt32Array(278, 276, 277), PackedInt32Array(292, 279, 280), PackedInt32Array(280, 281, 282), PackedInt32Array(283, 284, 285), PackedInt32Array(286, 287, 288), PackedInt32Array(288, 289, 290), PackedInt32Array(290, 291, 292), PackedInt32Array(292, 280, 282), PackedInt32Array(283, 285, 286), PackedInt32Array(286, 288, 290), PackedInt32Array(292, 282, 283), PackedInt32Array(283, 286, 290), PackedInt32Array(290, 292, 283), PackedInt32Array(293, 294, 295), PackedInt32Array(295, 296, 297), PackedInt32Array(297, 298, 293), PackedInt32Array(293, 295, 297)] -bones = ["Bone-0", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 1, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 1, 0.7, 0.7, 0, 0, 0, 0.7, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-1", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-2", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 1, 0.7, 0.7, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-3", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-4", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-5", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 1, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0.7, 0, 0.7, 0, 0.7, 0.7), "Bone-6", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-7", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-8", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-9", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0), "Bone-10", PackedFloat32Array(0.7, 0.7, 0, 0.7, 0.7, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0.7, 0.7, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 1, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 1, 0.7, 0.7, 1, 0.7, 1, 1, 1, 1, 0.7, 0.7, 1, 0.7, 0.7, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-11", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-12", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-13", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-14", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 1, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0), "Bone-15", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 1, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-16", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-17", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-18", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0.7, 0.7, 1, 0.7, 1, 0.7, 0.7, 0.7, 0.7, 0.7, 1, 0.7, 0.7, 0.7, 1, 1, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-19", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7)] -internal_vertex_count = 211 -script = ExtResource("2_2dapw") -vertex_interval = 25 -radius = 19 -rigidbody_scene = ExtResource("3_6ern4") -margin_pixels = -1 -voronoi_interval = 0.15 -stiffness = 0.1 -damping = 9.1 -rest_length_ratio = 1.1 -length_ratio = 0.1 -softness = 100.0 +[node name="Bone-16" type="RigidBody2D" parent="Butter7" instance=ExtResource("3_6ern4")] +position = Vector2(105, 81) +input_pickable = true +mass = 0.0555556 physics_material_override = ExtResource("5_221ya") +script = ExtResource("11_tqnjl") +metadata/idx = 16 +metadata/bone_name = &"Bone-16" -[node name="Skeleton2D" type="Skeleton2D" parent="Butter8"] +[node name="CircleShape2D" type="CollisionShape2D" parent="Butter7/Bone-16"] +shape = SubResource("CircleShape2D_ndv12") + +[node name="RemoteTransform2D" type="RemoteTransform2D" parent="Butter7/Bone-16"] visible = false -modification_stack = SubResource("SkeletonModificationStack2D_3exv5") +remote_path = NodePath("../../Skeleton2D/Bone-16") +update_rotation = false +update_scale = false -[node name="Bone-0" type="Bone2D" parent="Butter8/Skeleton2D"] -position = Vector2(11.9819, 47.4582) -rotation = 0.26087 -rest = Transform2D(0.966166, 0.257921, -0.257921, 0.966166, 11.9819, 47.4582) -auto_calculate_length_and_angle = false -length = 25.0 -bone_angle = 0.0 -metadata/vert_owned = [88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105] -metadata/connected_nodes_paths = [NodePath("Bone-1"), NodePath("Bone-2"), NodePath("Bone-3"), NodePath("Bone-4")] -metadata/_local_pose_override_enabled_ = true +[node name="Joint2D-Bone-16-Bone-11" type="PinJoint2D" parent="Butter7/Bone-16"] +visible = false +rotation = -3.86584 +node_a = NodePath("..") +node_b = NodePath("../../Bone-11") +softness = 100.0 -[node name="Bone-1" type="Bone2D" parent="Butter8/Skeleton2D"] -position = Vector2(11.4233, 78.7417) -rotation = -0.059216 -rest = Transform2D(0.998247, -0.0591814, 0.0591814, 0.998247, 11.4233, 78.7417) -auto_calculate_length_and_angle = false -length = 25.0 -bone_angle = 0.0 -metadata/vert_owned = [106, 107, 108, 109, 110] -metadata/connected_nodes_paths = [NodePath("Bone-0"), NodePath("Bone-3"), NodePath("Bone-4"), NodePath("Bone-5")] -metadata/_local_pose_override_enabled_ = true +[node name="Joint2D-Bone-16-Bone-12" type="PinJoint2D" parent="Butter7/Bone-16"] +visible = false +rotation = 1.5708 +node_a = NodePath("..") +node_b = NodePath("../../Bone-12") +softness = 100.0 -[node name="Bone-2" type="Bone2D" parent="Butter8/Skeleton2D"] -position = Vector2(32.1588, 27.3839) -rotation = 0.0406232 -rest = Transform2D(0.999175, 0.0406121, -0.0406121, 0.999175, 32.1588, 27.3839) +[node name="Joint2D-Bone-16-Bone-15" type="PinJoint2D" parent="Butter7/Bone-16"] +visible = false +rotation = -3.18004 +node_a = NodePath("..") +node_b = NodePath("../../Bone-15") +softness = 100.0 + +[node name="Joint2D-Bone-16-Bone-13" type="PinJoint2D" parent="Butter7/Bone-16"] +visible = false +rotation = 0.693552 +node_a = NodePath("..") +node_b = NodePath("../../Bone-13") +softness = 100.0 + +[node name="Joint2D-Bone-16-Bone-17" type="PinJoint2D" parent="Butter7/Bone-16"] +visible = false +node_a = NodePath("..") +node_b = NodePath("../../Bone-17") +softness = 100.0 + +[node name="Bone-17" type="RigidBody2D" parent="Butter7" instance=ExtResource("3_6ern4")] +position = Vector2(105, 102) +input_pickable = true +mass = 0.0555556 +physics_material_override = ExtResource("5_221ya") +script = ExtResource("11_tqnjl") +metadata/idx = 17 +metadata/bone_name = &"Bone-17" + +[node name="CircleShape2D" type="CollisionShape2D" parent="Butter7/Bone-17"] +shape = SubResource("CircleShape2D_ndv12") + +[node name="RemoteTransform2D" type="RemoteTransform2D" parent="Butter7/Bone-17"] +visible = false +remote_path = NodePath("../../Skeleton2D/Bone-17") +update_rotation = false +update_scale = false + +[node name="Joint2D-Bone-17-Bone-13" type="PinJoint2D" parent="Butter7/Bone-17"] +visible = false +rotation = 1.28867 +node_a = NodePath("..") +node_b = NodePath("../../Bone-13") +softness = 100.0 + +[node name="Joint2D-Bone-17-Bone-12" type="PinJoint2D" parent="Butter7/Bone-17"] +visible = false +rotation = -3.97241 +node_a = NodePath("..") +node_b = NodePath("../../Bone-12") +softness = 100.0 + +[node name="Joint2D-Bone-17-Bone-16" type="PinJoint2D" parent="Butter7/Bone-17"] +visible = false +rotation = -3.14159 +node_a = NodePath("..") +node_b = NodePath("../../Bone-16") +softness = 100.0 + +[node name="Butter8" type="Polygon2D" parent="."] +z_index = 4 +position = Vector2(526, -296) +texture = ExtResource("4_xackp") +skeleton = NodePath("Skeleton2D") +polygon = PackedVector2Array(70, 4, 67, 4, 65, 6, 65, 7, 61, 7, 60, 8, 60, 9, 58, 10, 55, 10, 53, 12, 51, 12, 49, 15, 44, 15, 39, 19, 34, 19, 29, 23, 24, 23, 22, 25, 22, 26, 14, 30, 14, 31, 10, 31, 6, 34, 4, 34, 5, 37, 6, 37, 6, 42, 7, 42, 6, 99, 6, 105, 11, 108, 11, 109, 14, 110, 18, 110, 22, 113, 22, 114, 26, 114, 30, 117, 30, 118, 36, 118, 42, 121, 42, 122, 46, 122, 47, 123, 47, 124, 51, 125, 51, 126, 67, 126, 70, 122, 76, 122, 78, 119, 78, 118, 83, 118, 88, 114, 92, 114, 95, 111, 95, 110, 98, 109, 100, 109, 102, 107, 102, 106, 105, 106, 106, 105, 106, 104, 110, 102, 113, 102, 114, 100, 115, 100, 115, 87, 113, 83, 113, 35, 110, 35, 109, 34, 109, 31, 106, 31, 105, 30, 105, 28, 103, 28, 93, 19, 90, 19, 89, 18, 89, 15, 85, 13, 85, 11, 82, 11, 74, 4, 74, 3, 70, 3, 16.5, 65.5, 6.58772, 65.5, 6.80702, 53, 16.5, 53, 16.5, 53, 6.80702, 53, 7, 42, 6, 42, 6, 40.5, 16.5, 40.5, 16.5, 40.5, 6, 40.5, 6, 37, 5, 37, 4, 34, 6, 34, 10, 31, 14, 31, 14, 30, 16.5, 28.75, 16.5, 90.5, 6.14912, 90.5, 6.36842, 78, 16.5, 78, 16.5, 78, 6.36842, 78, 6.58772, 65.5, 16.5, 65.5, 29, 28, 18, 28, 22, 26, 22, 25, 24, 23, 29, 23, 41.5, 40.5, 29, 40.5, 29, 28, 41.5, 28, 29, 40.5, 16.5, 40.5, 16.5, 28.75, 18, 28, 29, 28, 41.5, 28, 29, 28, 29, 23, 34, 19, 39, 19, 41.5, 17, 29, 53, 16.5, 53, 16.5, 40.5, 29, 40.5, 41.5, 65.5, 29, 65.5, 29, 53, 41.5, 53, 29, 65.5, 16.5, 65.5, 16.5, 53, 29, 53, 41.5, 53, 29, 53, 29, 40.5, 41.5, 40.5, 29, 78, 16.5, 78, 16.5, 65.5, 29, 65.5, 41.5, 90.5, 29, 90.5, 29, 78, 41.5, 78, 29, 90.5, 16.5, 90.5, 16.5, 78, 29, 78, 41.5, 78, 29, 78, 29, 65.5, 41.5, 65.5, 29, 103, 16.5, 103, 16.5, 90.5, 29, 90.5, 41.5, 115.5, 29, 115.5, 29, 103, 41.5, 103, 29, 115.5, 28, 115.5, 26, 114, 22, 114, 22, 113, 18, 110, 16.5, 110, 16.5, 103, 29, 103, 41.5, 103, 29, 103, 29, 90.5, 41.5, 90.5, 16.5, 110, 14, 110, 11, 109, 11, 108, 6, 105, 6, 103, 16.5, 103, 16.5, 103, 6, 103, 6, 99, 6.14912, 90.5, 16.5, 90.5, 29, 116.25, 28, 115.5, 29, 115.5, 41.5, 120.75, 36, 118, 30, 118, 30, 117, 29, 116.25, 29, 115.5, 41.5, 115.5, 54, 28, 41.5, 28, 41.5, 17, 43.375, 15.5, 54, 15.5, 66.5, 40.5, 54, 40.5, 54, 28, 66.5, 28, 54, 40.5, 41.5, 40.5, 41.5, 28, 54, 28, 66.5, 28, 54, 28, 54, 15.5, 66.5, 15.5, 66.5, 15.5, 54, 15.5, 54, 11, 55, 10, 58, 10, 60, 9, 60, 8, 61, 7, 65, 7, 65, 6, 66.5, 4.5, 54, 15.5, 43.375, 15.5, 44, 15, 49, 15, 51, 12, 53, 12, 54, 11, 54, 53, 41.5, 53, 41.5, 40.5, 54, 40.5, 66.5, 65.5, 54, 65.5, 54, 53, 66.5, 53, 54, 65.5, 41.5, 65.5, 41.5, 53, 54, 53, 66.5, 53, 54, 53, 54, 40.5, 66.5, 40.5, 54, 78, 41.5, 78, 41.5, 65.5, 54, 65.5, 66.5, 90.5, 54, 90.5, 54, 78, 66.5, 78, 54, 90.5, 41.5, 90.5, 41.5, 78, 54, 78, 66.5, 78, 54, 78, 54, 65.5, 66.5, 65.5, 54, 103, 41.5, 103, 41.5, 90.5, 54, 90.5, 66.5, 115.5, 54, 115.5, 54, 103, 66.5, 103, 54, 115.5, 41.5, 115.5, 41.5, 103, 54, 103, 66.5, 103, 54, 103, 54, 90.5, 66.5, 90.5, 79, 28, 66.5, 28, 66.5, 15.5, 79, 15.5, 91.5, 40.5, 79, 40.5, 79, 28, 91.5, 28, 79, 40.5, 66.5, 40.5, 66.5, 28, 79, 28, 89, 18, 90, 19, 91.5, 19, 91.5, 28, 79, 28, 79, 15.5, 89, 15.5, 82, 11, 85, 11, 85, 13, 89, 15, 89, 15.5, 79, 15.5, 79, 8.375, 74, 4, 79, 8.375, 79, 15.5, 66.5, 15.5, 66.5, 4.5, 67, 4, 70, 4, 70, 3, 74, 3, 79, 53, 66.5, 53, 66.5, 40.5, 79, 40.5, 91.5, 65.5, 79, 65.5, 79, 53, 91.5, 53, 79, 65.5, 66.5, 65.5, 66.5, 53, 79, 53, 91.5, 53, 79, 53, 79, 40.5, 91.5, 40.5, 79, 78, 66.5, 78, 66.5, 65.5, 79, 65.5, 91.5, 90.5, 79, 90.5, 79, 78, 91.5, 78, 79, 90.5, 66.5, 90.5, 66.5, 78, 79, 78, 91.5, 78, 79, 78, 79, 65.5, 91.5, 65.5, 79, 103, 66.5, 103, 66.5, 90.5, 79, 90.5, 91.5, 114, 88, 114, 86.125, 115.5, 79, 115.5, 79, 103, 91.5, 103, 79, 115.5, 66.5, 115.5, 66.5, 103, 79, 103, 91.5, 103, 79, 103, 79, 90.5, 91.5, 90.5, 79, 118, 78, 118, 78, 119, 76, 122, 70, 122, 67, 126, 66.5, 126, 66.5, 115.5, 79, 115.5, 83, 118, 79, 118, 79, 115.5, 86.125, 115.5, 103, 28, 91.5, 28, 91.5, 19, 93, 19, 105, 30, 106, 31, 109, 31, 109, 34, 110, 35, 113, 35, 113, 40.5, 104, 40.5, 104, 28, 105, 28, 104, 40.5, 91.5, 40.5, 91.5, 28, 104, 28, 104, 53, 91.5, 53, 91.5, 40.5, 104, 40.5, 113, 65.5, 104, 65.5, 104, 53, 113, 53, 104, 65.5, 91.5, 65.5, 91.5, 53, 104, 53, 113, 53, 104, 53, 104, 40.5, 113, 40.5, 104, 78, 91.5, 78, 91.5, 65.5, 104, 65.5, 113, 83, 115, 87, 115, 90.5, 104, 90.5, 104, 78, 113, 78, 104, 90.5, 91.5, 90.5, 91.5, 78, 104, 78, 113, 78, 104, 78, 104, 65.5, 113, 65.5, 104, 103, 91.5, 103, 91.5, 90.5, 104, 90.5, 106, 104, 106, 105, 105, 106, 104, 106, 104, 103, 108, 103, 104, 106, 102, 106, 102, 107, 100, 109, 98, 109, 95, 110, 95, 111, 92, 114, 91.5, 114, 91.5, 103, 104, 103, 115, 100, 114, 100, 113, 102, 110, 102, 108, 103, 104, 103, 104, 90.5, 115, 90.5, 54, 126, 51, 126, 51, 125, 47, 124, 47, 123, 46, 122, 42, 122, 42, 121, 41.5, 120.75, 41.5, 115.5, 54, 115.5, 66.5, 126, 54, 126, 54, 115.5, 66.5, 115.5) +polygons = [PackedInt32Array(91, 88, 89), PackedInt32Array(89, 90, 91), PackedInt32Array(97, 92, 93), PackedInt32Array(94, 95, 96), PackedInt32Array(97, 93, 94), PackedInt32Array(94, 96, 97), PackedInt32Array(107, 98, 99), PackedInt32Array(100, 101, 102), PackedInt32Array(103, 104, 105), PackedInt32Array(105, 106, 107), PackedInt32Array(100, 102, 103), PackedInt32Array(105, 107, 99), PackedInt32Array(100, 103, 105), PackedInt32Array(105, 99, 100), PackedInt32Array(111, 108, 109), PackedInt32Array(109, 110, 111), PackedInt32Array(115, 112, 113), PackedInt32Array(113, 114, 115), PackedInt32Array(121, 116, 117), PackedInt32Array(118, 119, 120), PackedInt32Array(121, 117, 118), PackedInt32Array(118, 120, 121), PackedInt32Array(125, 122, 123), PackedInt32Array(123, 124, 125), PackedInt32Array(130, 126, 127), PackedInt32Array(127, 128, 129), PackedInt32Array(129, 130, 127), PackedInt32Array(136, 131, 132), PackedInt32Array(132, 133, 134), PackedInt32Array(135, 136, 132), PackedInt32Array(132, 134, 135), PackedInt32Array(140, 137, 138), PackedInt32Array(138, 139, 140), PackedInt32Array(144, 141, 142), PackedInt32Array(142, 143, 144), PackedInt32Array(148, 145, 146), PackedInt32Array(146, 147, 148), PackedInt32Array(152, 149, 150), PackedInt32Array(150, 151, 152), PackedInt32Array(156, 153, 154), PackedInt32Array(154, 155, 156), PackedInt32Array(160, 157, 158), PackedInt32Array(158, 159, 160), PackedInt32Array(164, 161, 162), PackedInt32Array(162, 163, 164), PackedInt32Array(168, 165, 166), PackedInt32Array(166, 167, 168), PackedInt32Array(172, 169, 170), PackedInt32Array(170, 171, 172), PackedInt32Array(176, 173, 174), PackedInt32Array(174, 175, 176), PackedInt32Array(185, 177, 178), PackedInt32Array(179, 180, 181), PackedInt32Array(182, 183, 184), PackedInt32Array(184, 185, 178), PackedInt32Array(179, 181, 182), PackedInt32Array(184, 178, 179), PackedInt32Array(179, 182, 184), PackedInt32Array(189, 186, 187), PackedInt32Array(187, 188, 189), PackedInt32Array(196, 190, 191), PackedInt32Array(191, 192, 193), PackedInt32Array(193, 194, 195), PackedInt32Array(195, 196, 191), PackedInt32Array(191, 193, 195), PackedInt32Array(201, 197, 198), PackedInt32Array(198, 199, 200), PackedInt32Array(200, 201, 198), PackedInt32Array(204, 202, 203), PackedInt32Array(211, 205, 206), PackedInt32Array(206, 207, 208), PackedInt32Array(208, 209, 210), PackedInt32Array(210, 211, 206), PackedInt32Array(206, 208, 210), PackedInt32Array(216, 212, 213), PackedInt32Array(213, 214, 215), PackedInt32Array(215, 216, 213), PackedInt32Array(220, 217, 218), PackedInt32Array(218, 219, 220), PackedInt32Array(224, 221, 222), PackedInt32Array(222, 223, 224), PackedInt32Array(228, 225, 226), PackedInt32Array(226, 227, 228), PackedInt32Array(229, 230, 231), PackedInt32Array(231, 232, 233), PackedInt32Array(234, 235, 236), PackedInt32Array(237, 238, 239), PackedInt32Array(229, 231, 233), PackedInt32Array(234, 236, 237), PackedInt32Array(237, 239, 229), PackedInt32Array(229, 233, 234), PackedInt32Array(234, 237, 229), PackedInt32Array(240, 241, 242), PackedInt32Array(243, 244, 245), PackedInt32Array(245, 246, 240), PackedInt32Array(240, 242, 243), PackedInt32Array(243, 245, 240), PackedInt32Array(250, 247, 248), PackedInt32Array(248, 249, 250), PackedInt32Array(254, 251, 252), PackedInt32Array(252, 253, 254), PackedInt32Array(258, 255, 256), PackedInt32Array(256, 257, 258), PackedInt32Array(262, 259, 260), PackedInt32Array(260, 261, 262), PackedInt32Array(266, 263, 264), PackedInt32Array(264, 265, 266), PackedInt32Array(270, 267, 268), PackedInt32Array(268, 269, 270), PackedInt32Array(274, 271, 272), PackedInt32Array(272, 273, 274), PackedInt32Array(278, 275, 276), PackedInt32Array(276, 277, 278), PackedInt32Array(282, 279, 280), PackedInt32Array(280, 281, 282), PackedInt32Array(286, 283, 284), PackedInt32Array(284, 285, 286), PackedInt32Array(290, 287, 288), PackedInt32Array(288, 289, 290), PackedInt32Array(294, 291, 292), PackedInt32Array(292, 293, 294), PackedInt32Array(298, 295, 296), PackedInt32Array(296, 297, 298), PackedInt32Array(302, 299, 300), PackedInt32Array(300, 301, 302), PackedInt32Array(306, 303, 304), PackedInt32Array(304, 305, 306), PackedInt32Array(308, 309, 310), PackedInt32Array(310, 311, 312), PackedInt32Array(312, 313, 307), PackedInt32Array(307, 308, 310), PackedInt32Array(310, 312, 307), PackedInt32Array(314, 315, 316), PackedInt32Array(316, 317, 318), PackedInt32Array(319, 320, 314), PackedInt32Array(316, 318, 319), PackedInt32Array(319, 314, 316), PackedInt32Array(321, 322, 323), PackedInt32Array(323, 324, 325), PackedInt32Array(325, 326, 327), PackedInt32Array(327, 328, 329), PackedInt32Array(321, 323, 325), PackedInt32Array(327, 329, 321), PackedInt32Array(321, 325, 327), PackedInt32Array(333, 330, 331), PackedInt32Array(331, 332, 333), PackedInt32Array(337, 334, 335), PackedInt32Array(335, 336, 337), PackedInt32Array(341, 338, 339), PackedInt32Array(339, 340, 341), PackedInt32Array(345, 342, 343), PackedInt32Array(343, 344, 345), PackedInt32Array(349, 346, 347), PackedInt32Array(347, 348, 349), PackedInt32Array(353, 350, 351), PackedInt32Array(351, 352, 353), PackedInt32Array(357, 354, 355), PackedInt32Array(355, 356, 357), PackedInt32Array(361, 358, 359), PackedInt32Array(359, 360, 361), PackedInt32Array(365, 362, 363), PackedInt32Array(363, 364, 365), PackedInt32Array(371, 366, 367), PackedInt32Array(367, 368, 369), PackedInt32Array(369, 370, 371), PackedInt32Array(371, 367, 369), PackedInt32Array(375, 372, 373), PackedInt32Array(373, 374, 375), PackedInt32Array(379, 376, 377), PackedInt32Array(377, 378, 379), PackedInt32Array(388, 380, 381), PackedInt32Array(381, 382, 383), PackedInt32Array(384, 385, 386), PackedInt32Array(387, 388, 381), PackedInt32Array(381, 383, 384), PackedInt32Array(384, 386, 387), PackedInt32Array(387, 381, 384), PackedInt32Array(392, 389, 390), PackedInt32Array(390, 391, 392), PackedInt32Array(396, 393, 394), PackedInt32Array(394, 395, 396), PackedInt32Array(398, 399, 400), PackedInt32Array(401, 402, 403), PackedInt32Array(404, 405, 406), PackedInt32Array(400, 401, 403), PackedInt32Array(404, 406, 397), PackedInt32Array(398, 400, 403), PackedInt32Array(403, 404, 397), PackedInt32Array(397, 398, 403), PackedInt32Array(410, 407, 408), PackedInt32Array(408, 409, 410), PackedInt32Array(414, 411, 412), PackedInt32Array(412, 413, 414), PackedInt32Array(418, 415, 416), PackedInt32Array(416, 417, 418), PackedInt32Array(422, 419, 420), PackedInt32Array(420, 421, 422), PackedInt32Array(426, 423, 424), PackedInt32Array(424, 425, 426), PackedInt32Array(430, 427, 428), PackedInt32Array(428, 429, 430), PackedInt32Array(431, 432, 433), PackedInt32Array(433, 434, 435), PackedInt32Array(435, 436, 431), PackedInt32Array(431, 433, 435), PackedInt32Array(440, 437, 438), PackedInt32Array(438, 439, 440), PackedInt32Array(444, 441, 442), PackedInt32Array(442, 443, 444), PackedInt32Array(448, 445, 446), PackedInt32Array(446, 447, 448), PackedInt32Array(449, 450, 451), PackedInt32Array(451, 452, 453), PackedInt32Array(453, 454, 449), PackedInt32Array(449, 451, 453), PackedInt32Array(465, 455, 456), PackedInt32Array(456, 457, 458), PackedInt32Array(460, 461, 462), PackedInt32Array(462, 463, 464), PackedInt32Array(464, 465, 456), PackedInt32Array(456, 458, 459), PackedInt32Array(460, 462, 464), PackedInt32Array(464, 456, 459), PackedInt32Array(459, 460, 464), PackedInt32Array(473, 466, 467), PackedInt32Array(467, 468, 469), PackedInt32Array(469, 470, 471), PackedInt32Array(471, 472, 473), PackedInt32Array(473, 467, 469), PackedInt32Array(469, 471, 473), PackedInt32Array(484, 474, 475), PackedInt32Array(476, 477, 478), PackedInt32Array(479, 480, 481), PackedInt32Array(481, 482, 483), PackedInt32Array(484, 475, 476), PackedInt32Array(476, 478, 479), PackedInt32Array(479, 481, 483), PackedInt32Array(483, 484, 476), PackedInt32Array(476, 479, 483), PackedInt32Array(488, 485, 486), PackedInt32Array(486, 487, 488)] +bones = ["Bone-0", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-1", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-2", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-3", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-4", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-5", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0), "Bone-6", PackedFloat32Array(0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-7", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-8", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-9", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1), "Bone-10", PackedFloat32Array(1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-11", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-12", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-13", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1), "Bone-14", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-15", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-16", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-17", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-18", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1)] +internal_vertex_count = 401 +script = ExtResource("2_2dapw") +vertex_interval = 25 +margin_pixels = -1 +min_area = 0.3 +stiffness = 0.1 +damping = 9.1 +rest_length_ratio = 1.1 +length_ratio = 0.1 +softness = 100.0 +radius = 19 +rigidbody_scene = ExtResource("3_6ern4") +physics_material_override = ExtResource("5_221ya") + +[node name="Skeleton2D" type="Skeleton2D" parent="Butter8"] +visible = false +modification_stack = SubResource("SkeletonModificationStack2D_txsj5") + +[node name="Bone-0" type="Bone2D" parent="Butter8/Skeleton2D"] +position = Vector2(10.25, 47.125) +rotation = 1.02504 +rest = Transform2D(0.519068, 0.854733, -0.854733, 0.519068, 10.25, 47.125) +auto_calculate_length_and_angle = false +length = 25.0 +bone_angle = 0.0 +metadata/vert_owned = [88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107] +metadata/idx = 0 +metadata/connected_nodes_paths = [NodePath("Bone-1"), NodePath("Bone-3"), NodePath("Bone-4"), NodePath("Bone-2")] +metadata/connected_nodes_idx = [1, 3, 4, 2] +metadata/_local_pose_override_enabled_ = true + +[node name="Bone-1" type="Bone2D" parent="Butter8/Skeleton2D"] +position = Vector2(11.3246, 78) +rest = Transform2D(1, 0, 0, 1, 11.3246, 78) +auto_calculate_length_and_angle = false +length = 25.0 +bone_angle = 0.0 +metadata/vert_owned = [108, 109, 110, 111, 112, 113, 114, 115] +metadata/idx = 1 +metadata/connected_nodes_paths = [NodePath("Bone-0"), NodePath("Bone-3"), NodePath("Bone-4"), NodePath("Bone-5")] +metadata/connected_nodes_idx = [0, 3, 4, 5] +metadata/_local_pose_override_enabled_ = true + +[node name="Bone-2" type="Bone2D" parent="Butter8/Skeleton2D"] +position = Vector2(29, 28.75) +rotation = -0.244979 +scale = Vector2(1, 1) +rest = Transform2D(0.970142, -0.242536, 0.242536, 0.970142, 29, 28.75) auto_calculate_length_and_angle = false length = 25.0 bone_angle = 0.0 -metadata/vert_owned = [111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121] +metadata/vert_owned = [116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136] +metadata/idx = 2 metadata/connected_nodes_paths = [NodePath("Bone-0"), NodePath("Bone-3"), NodePath("Bone-6"), NodePath("Bone-7")] +metadata/connected_nodes_idx = [0, 3, 6, 7] metadata/_local_pose_override_enabled_ = true [node name="Bone-3" type="Bone2D" parent="Butter8/Skeleton2D"] -position = Vector2(29.9134, 52.2451) -rotation = 1.59192 -rest = Transform2D(-0.0211265, 0.999777, -0.999777, -0.0211265, 29.9134, 52.2451) +position = Vector2(29, 53) +rotation = -1.5708 +rest = Transform2D(-4.37114e-08, -1, 1, -4.37114e-08, 29, 53) auto_calculate_length_and_angle = false length = 25.0 bone_angle = 0.0 -metadata/vert_owned = [122, 123, 124, 125, 126, 127] -metadata/connected_nodes_paths = [NodePath("Bone-0"), NodePath("Bone-1"), NodePath("Bone-2"), NodePath("Bone-4"), NodePath("Bone-6"), NodePath("Bone-7"), NodePath("Bone-8")] +metadata/vert_owned = [137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152] +metadata/idx = 3 +metadata/connected_nodes_paths = [NodePath("Bone-0"), NodePath("Bone-1"), NodePath("Bone-4"), NodePath("Bone-2"), NodePath("Bone-6"), NodePath("Bone-7"), NodePath("Bone-8")] +metadata/connected_nodes_idx = [0, 1, 4, 2, 6, 7, 8] metadata/_local_pose_override_enabled_ = true [node name="Bone-4" type="Bone2D" parent="Butter8/Skeleton2D"] -position = Vector2(29.376, 77.6774) -rotation = 1.78493 -rest = Transform2D(-0.212503, 0.97716, -0.97716, -0.212503, 29.376, 77.6774) +position = Vector2(29, 78) +rotation = 1.7586 +rest = Transform2D(-0.186704, 0.982416, -0.982416, -0.186704, 29, 78) auto_calculate_length_and_angle = false length = 25.0 bone_angle = 0.0 -metadata/vert_owned = [128, 129, 130, 131, 132, 133] +metadata/vert_owned = [153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168] +metadata/idx = 4 metadata/connected_nodes_paths = [NodePath("Bone-0"), NodePath("Bone-1"), NodePath("Bone-3"), NodePath("Bone-5"), NodePath("Bone-7"), NodePath("Bone-8"), NodePath("Bone-9")] +metadata/connected_nodes_idx = [0, 1, 3, 5, 7, 8, 9] metadata/_local_pose_override_enabled_ = true [node name="Bone-5" type="Bone2D" parent="Butter8/Skeleton2D"] -position = Vector2(23.8771, 102.963) -rotation = -0.661389 -rest = Transform2D(0.78914, -0.614213, 0.614213, 0.78914, 23.8771, 102.963) +position = Vector2(23.75, 105.625) +rotation = -1.38299 +scale = Vector2(1, 1) +rest = Transform2D(0.186704, -0.982416, 0.982416, 0.186704, 23.75, 105.625) auto_calculate_length_and_angle = false length = 25.0 bone_angle = 0.0 -metadata/vert_owned = [134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153] -metadata/connected_nodes_paths = [NodePath("Bone-1"), NodePath("Bone-4"), NodePath("Bone-8"), NodePath("Bone-9"), NodePath("Bone-19")] +metadata/vert_owned = [169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211] +metadata/idx = 5 +metadata/connected_nodes_paths = [NodePath("Bone-18"), NodePath("Bone-1"), NodePath("Bone-4"), NodePath("Bone-8"), NodePath("Bone-9")] +metadata/connected_nodes_idx = [18, 1, 4, 8, 9] metadata/_local_pose_override_enabled_ = true [node name="Bone-6" type="Bone2D" parent="Butter8/Skeleton2D"] -position = Vector2(55.7376, 28.3423) -rotation = -0.920185 -rest = Transform2D(0.605673, -0.795714, 0.795714, 0.605673, 55.7376, 28.3423) +position = Vector2(54, 22.5) +rotation = 2.25742 +scale = Vector2(1, 1) +rest = Transform2D(-0.633928, 0.773392, -0.773392, -0.633928, 54, 22.5) auto_calculate_length_and_angle = false length = 25.0 bone_angle = 0.0 -metadata/vert_owned = [154, 155, 156, 157, 158, 159, 160] -metadata/connected_nodes_paths = [NodePath("Bone-2"), NodePath("Bone-3"), NodePath("Bone-7"), NodePath("Bone-10"), NodePath("Bone-11"), NodePath("Bone-12")] +metadata/vert_owned = [212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246] +metadata/idx = 6 +metadata/connected_nodes_paths = [NodePath("Bone-10"), NodePath("Bone-2"), NodePath("Bone-3"), NodePath("Bone-7"), NodePath("Bone-11")] +metadata/connected_nodes_idx = [10, 2, 3, 7, 11] metadata/_local_pose_override_enabled_ = true [node name="Bone-7" type="Bone2D" parent="Butter8/Skeleton2D"] -position = Vector2(55.3545, 54.8831) -rotation = 1.60529 -rest = Transform2D(-0.0344882, 0.999405, -0.999405, -0.0344882, 55.3545, 54.8831) +position = Vector2(54, 53) +rotation = 1.5708 +rest = Transform2D(-4.37114e-08, 1, -1, -4.37114e-08, 54, 53) auto_calculate_length_and_angle = false length = 25.0 bone_angle = 0.0 -metadata/vert_owned = [161, 162, 163, 164, 165, 166] -metadata/connected_nodes_paths = [NodePath("Bone-2"), NodePath("Bone-3"), NodePath("Bone-4"), NodePath("Bone-6"), NodePath("Bone-8"), NodePath("Bone-11"), NodePath("Bone-12"), NodePath("Bone-13")] +metadata/vert_owned = [247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262] +metadata/idx = 7 +metadata/connected_nodes_paths = [NodePath("Bone-2"), NodePath("Bone-3"), NodePath("Bone-6"), NodePath("Bone-4"), NodePath("Bone-8"), NodePath("Bone-10"), NodePath("Bone-11"), NodePath("Bone-12")] +metadata/connected_nodes_idx = [2, 3, 6, 4, 8, 10, 11, 12] metadata/_local_pose_override_enabled_ = true [node name="Bone-8" type="Bone2D" parent="Butter8/Skeleton2D"] -position = Vector2(54.5183, 79.1141) -rotation = 1.61776 -rest = Transform2D(-0.0469479, 0.998897, -0.998897, -0.0469479, 54.5183, 79.1141) +position = Vector2(54, 78) +rotation = 1.5708 +rest = Transform2D(-4.37114e-08, 1, -1, -4.37114e-08, 54, 78) auto_calculate_length_and_angle = false length = 25.0 bone_angle = 0.0 -metadata/vert_owned = [167, 168, 169, 170, 171, 172] -metadata/connected_nodes_paths = [NodePath("Bone-3"), NodePath("Bone-4"), NodePath("Bone-5"), NodePath("Bone-7"), NodePath("Bone-9"), NodePath("Bone-12"), NodePath("Bone-13"), NodePath("Bone-14")] +metadata/vert_owned = [263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278] +metadata/idx = 8 +metadata/connected_nodes_paths = [NodePath("Bone-3"), NodePath("Bone-4"), NodePath("Bone-7"), NodePath("Bone-5"), NodePath("Bone-9"), NodePath("Bone-11"), NodePath("Bone-12"), NodePath("Bone-13")] +metadata/connected_nodes_idx = [3, 4, 7, 5, 9, 11, 12, 13] metadata/_local_pose_override_enabled_ = true [node name="Bone-9" type="Bone2D" parent="Butter8/Skeleton2D"] -position = Vector2(53.3725, 103.495) -rotation = -0.729803 -scale = Vector2(1, 1) -rest = Transform2D(0.745306, -0.666723, 0.666723, 0.745306, 53.3725, 103.495) +position = Vector2(54, 103) +rotation = 1.5708 +rest = Transform2D(-4.37114e-08, 1, -1, -4.37114e-08, 54, 103) auto_calculate_length_and_angle = false length = 25.0 bone_angle = 0.0 -metadata/vert_owned = [173, 174, 175, 176] -metadata/connected_nodes_paths = [NodePath("Bone-4"), NodePath("Bone-5"), NodePath("Bone-8"), NodePath("Bone-13"), NodePath("Bone-14"), NodePath("Bone-19")] +metadata/vert_owned = [279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294] +metadata/idx = 9 +metadata/connected_nodes_paths = [NodePath("Bone-4"), NodePath("Bone-5"), NodePath("Bone-8"), NodePath("Bone-18"), NodePath("Bone-12"), NodePath("Bone-13")] +metadata/connected_nodes_idx = [4, 5, 8, 18, 12, 13] metadata/_local_pose_override_enabled_ = true [node name="Bone-10" type="Bone2D" parent="Butter8/Skeleton2D"] -position = Vector2(69.1836, 10.6773) -rotation = 1.02534 -rest = Transform2D(0.518808, 0.854891, -0.854891, 0.518808, 69.1836, 10.6773) +position = Vector2(79, 21.75) +rotation = 1.5708 +rest = Transform2D(-4.37114e-08, 1, -1, -4.37114e-08, 79, 21.75) auto_calculate_length_and_angle = false length = 25.0 bone_angle = 0.0 -metadata/vert_owned = [177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201] -metadata/connected_nodes_paths = [NodePath("Bone-6"), NodePath("Bone-11")] +metadata/vert_owned = [295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329] +metadata/idx = 10 +metadata/connected_nodes_paths = [NodePath("Bone-6"), NodePath("Bone-7"), NodePath("Bone-11"), NodePath("Bone-14"), NodePath("Bone-15")] +metadata/connected_nodes_idx = [6, 7, 11, 14, 15] metadata/_local_pose_override_enabled_ = true [node name="Bone-11" type="Bone2D" parent="Butter8/Skeleton2D"] -position = Vector2(80.9573, 30.078) -rotation = 1.63571 -rest = Transform2D(-0.0648705, 0.997894, -0.997894, -0.0648705, 80.9573, 30.078) +position = Vector2(79, 53) +rotation = 1.5708 +rest = Transform2D(-4.37114e-08, 1, -1, -4.37114e-08, 79, 53) auto_calculate_length_and_angle = false length = 25.0 bone_angle = 0.0 -metadata/vert_owned = [202, 203, 204, 205, 206] -metadata/connected_nodes_paths = [NodePath("Bone-6"), NodePath("Bone-7"), NodePath("Bone-10"), NodePath("Bone-12"), NodePath("Bone-15"), NodePath("Bone-16")] +metadata/vert_owned = [330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345] +metadata/idx = 11 +metadata/connected_nodes_paths = [NodePath("Bone-6"), NodePath("Bone-7"), NodePath("Bone-10"), NodePath("Bone-8"), NodePath("Bone-12"), NodePath("Bone-14"), NodePath("Bone-15"), NodePath("Bone-16")] +metadata/connected_nodes_idx = [6, 7, 10, 8, 12, 14, 15, 16] metadata/_local_pose_override_enabled_ = true [node name="Bone-12" type="Bone2D" parent="Butter8/Skeleton2D"] -position = Vector2(79.3768, 54.3897) -rotation = 1.50099 -rest = Transform2D(0.069746, 0.997565, -0.997565, 0.069746, 79.3768, 54.3897) +position = Vector2(79, 78) +rotation = 1.5708 +rest = Transform2D(-4.37114e-08, 1, -1, -4.37114e-08, 79, 78) auto_calculate_length_and_angle = false length = 25.0 bone_angle = 0.0 -metadata/vert_owned = [207, 208, 209, 210, 211] -metadata/connected_nodes_paths = [NodePath("Bone-6"), NodePath("Bone-7"), NodePath("Bone-8"), NodePath("Bone-11"), NodePath("Bone-13"), NodePath("Bone-15"), NodePath("Bone-16"), NodePath("Bone-17")] +metadata/vert_owned = [346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361] +metadata/idx = 12 +metadata/connected_nodes_paths = [NodePath("Bone-7"), NodePath("Bone-8"), NodePath("Bone-11"), NodePath("Bone-9"), NodePath("Bone-13"), NodePath("Bone-15"), NodePath("Bone-16"), NodePath("Bone-17")] +metadata/connected_nodes_idx = [7, 8, 11, 9, 13, 15, 16, 17] metadata/_local_pose_override_enabled_ = true [node name="Bone-13" type="Bone2D" parent="Butter8/Skeleton2D"] -position = Vector2(81.0773, 78.7108) -rotation = 1.64259 -rest = Transform2D(-0.0717316, 0.997424, -0.997424, -0.0717316, 81.0773, 78.7108) +position = Vector2(79, 108.25) +rotation = -2.9346 +rest = Transform2D(-0.978653, -0.205517, 0.205517, -0.978653, 79, 108.25) auto_calculate_length_and_angle = false length = 25.0 bone_angle = 0.0 -metadata/vert_owned = [212, 213, 214, 215, 216, 217, 218] -metadata/connected_nodes_paths = [NodePath("Bone-7"), NodePath("Bone-8"), NodePath("Bone-9"), NodePath("Bone-12"), NodePath("Bone-14"), NodePath("Bone-16"), NodePath("Bone-17"), NodePath("Bone-18")] +metadata/vert_owned = [362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392] +metadata/idx = 13 +metadata/connected_nodes_paths = [NodePath("Bone-18"), NodePath("Bone-17"), NodePath("Bone-8"), NodePath("Bone-9"), NodePath("Bone-12"), NodePath("Bone-16")] +metadata/connected_nodes_idx = [18, 17, 8, 9, 12, 16] metadata/_local_pose_override_enabled_ = true [node name="Bone-14" type="Bone2D" parent="Butter8/Skeleton2D"] -position = Vector2(79.047, 106.942) -rotation = -0.795486 -rest = Transform2D(0.699938, -0.714204, 0.714204, 0.699938, 79.047, 106.942) +position = Vector2(102.25, 29.75) +rotation = 2.35619 +scale = Vector2(1, 1) +rest = Transform2D(-0.707107, 0.707107, -0.707107, -0.707107, 102.25, 29.75) auto_calculate_length_and_angle = false length = 25.0 bone_angle = 0.0 -metadata/vert_owned = [219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232] -metadata/connected_nodes_paths = [NodePath("Bone-8"), NodePath("Bone-9"), NodePath("Bone-13"), NodePath("Bone-17"), NodePath("Bone-18"), NodePath("Bone-19")] +metadata/vert_owned = [393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410] +metadata/idx = 14 +metadata/connected_nodes_paths = [NodePath("Bone-10"), NodePath("Bone-11"), NodePath("Bone-15")] +metadata/connected_nodes_idx = [10, 11, 15] metadata/_local_pose_override_enabled_ = true [node name="Bone-15" type="Bone2D" parent="Butter8/Skeleton2D"] -position = Vector2(102.751, 31.2282) -rotation = 2.36077 -rest = Transform2D(-0.710337, 0.703861, -0.703861, -0.710337, 102.751, 31.2282) +position = Vector2(102.25, 53) +rotation = -1.5708 +rest = Transform2D(-4.37114e-08, -1, 1, -4.37114e-08, 102.25, 53) auto_calculate_length_and_angle = false length = 25.0 bone_angle = 0.0 -metadata/vert_owned = [233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244] -metadata/connected_nodes_paths = [NodePath("Bone-11"), NodePath("Bone-12"), NodePath("Bone-16")] +metadata/vert_owned = [411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426] +metadata/idx = 15 +metadata/connected_nodes_paths = [NodePath("Bone-10"), NodePath("Bone-11"), NodePath("Bone-14"), NodePath("Bone-12"), NodePath("Bone-16")] +metadata/connected_nodes_idx = [10, 11, 14, 12, 16] metadata/_local_pose_override_enabled_ = true [node name="Bone-16" type="Bone2D" parent="Butter8/Skeleton2D"] -position = Vector2(103.646, 54.4703) -rotation = 2.32049 +position = Vector2(103.25, 78) +rotation = -1.61077 scale = Vector2(1, 1) -rest = Transform2D(-0.681412, 0.7319, -0.7319, -0.681412, 103.646, 54.4703) +rest = Transform2D(-0.039968, -0.999201, 0.999201, -0.039968, 103.25, 78) auto_calculate_length_and_angle = false length = 25.0 bone_angle = 0.0 -metadata/vert_owned = [245, 246, 247, 248, 249, 250, 251] -metadata/connected_nodes_paths = [NodePath("Bone-11"), NodePath("Bone-12"), NodePath("Bone-13"), NodePath("Bone-15"), NodePath("Bone-17")] +metadata/vert_owned = [427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444] +metadata/idx = 16 +metadata/connected_nodes_paths = [NodePath("Bone-11"), NodePath("Bone-12"), NodePath("Bone-15"), NodePath("Bone-13"), NodePath("Bone-17")] +metadata/connected_nodes_idx = [11, 12, 15, 13, 17] metadata/_local_pose_override_enabled_ = true [node name="Bone-17" type="Bone2D" parent="Butter8/Skeleton2D"] -position = Vector2(105.689, 79.7563) -rotation = 2.34611 -rest = Transform2D(-0.699938, 0.714204, -0.714204, -0.699938, 105.689, 79.7563) +position = Vector2(103.25, 102.25) +rotation = -2.35619 +scale = Vector2(1, 1) +rest = Transform2D(-0.707107, -0.707107, 0.707107, -0.707107, 103.25, 102.25) auto_calculate_length_and_angle = false length = 25.0 bone_angle = 0.0 -metadata/vert_owned = [252, 253, 254, 255, 256] -metadata/connected_nodes_paths = [NodePath("Bone-12"), NodePath("Bone-13"), NodePath("Bone-14"), NodePath("Bone-16"), NodePath("Bone-18")] +metadata/vert_owned = [445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473] +metadata/idx = 17 +metadata/connected_nodes_paths = [NodePath("Bone-13"), NodePath("Bone-12"), NodePath("Bone-16")] +metadata/connected_nodes_idx = [13, 12, 16] metadata/_local_pose_override_enabled_ = true [node name="Bone-18" type="Bone2D" parent="Butter8/Skeleton2D"] -position = Vector2(102.296, 103.289) -rotation = 2.98577 +position = Vector2(54, 120.75) +rotation = -0.463648 scale = Vector2(1, 1) -rest = Transform2D(-0.987884, 0.155195, -0.155195, -0.987884, 102.296, 103.289) -auto_calculate_length_and_angle = false -length = 25.0 -bone_angle = 0.0 -metadata/vert_owned = [257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278] -metadata/connected_nodes_paths = [NodePath("Bone-13"), NodePath("Bone-14"), NodePath("Bone-17")] -metadata/_local_pose_override_enabled_ = true - -[node name="Bone-19" type="Bone2D" parent="Butter8/Skeleton2D"] -position = Vector2(49.0143, 119.913) -rotation = -1.31134 -rest = Transform2D(0.256557, -0.966529, 0.966529, 0.256557, 49.0143, 119.913) +rest = Transform2D(0.894427, -0.447214, 0.447214, 0.894427, 54, 120.75) auto_calculate_length_and_angle = false length = 25.0 bone_angle = 0.0 -metadata/vert_owned = [279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298] -metadata/connected_nodes_paths = [NodePath("Bone-5"), NodePath("Bone-9"), NodePath("Bone-14")] +metadata/vert_owned = [474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488] +metadata/idx = 18 +metadata/connected_nodes_paths = [NodePath("Bone-5"), NodePath("Bone-13"), NodePath("Bone-9")] +metadata/connected_nodes_idx = [5, 13, 9] metadata/_local_pose_override_enabled_ = true -[node name="Bone-0" parent="Butter8" instance=ExtResource("3_6ern4")] -position = Vector2(11.9819, 47.4582) -mass = 0.05 +[node name="Bone-0" type="RigidBody2D" parent="Butter8" instance=ExtResource("3_6ern4")] +position = Vector2(10.25, 47.125) +input_pickable = true +mass = 0.0526316 physics_material_override = ExtResource("5_221ya") +script = ExtResource("11_tqnjl") +metadata/idx = 0 metadata/bone_name = &"Bone-0" [node name="CircleShape2D" type="CollisionShape2D" parent="Butter8/Bone-0"] -shape = SubResource("CircleShape2D_a6wax") +shape = SubResource("CircleShape2D_a5d5c") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Butter8/Bone-0"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-0") update_rotation = false update_scale = false [node name="Joint2D-Bone-0-Bone-1" type="PinJoint2D" parent="Butter8/Bone-0"] visible = false -rotation = 0.017855 +rotation = -0.0347895 node_a = NodePath("..") node_b = NodePath("../../Bone-1") softness = 100.0 -[node name="Joint2D-Bone-0-Bone-2" type="PinJoint2D" parent="Butter8/Bone-0"] -visible = false -rotation = -2.35365 -node_a = NodePath("..") -node_b = NodePath("../../Bone-2") -softness = 100.0 - [node name="Joint2D-Bone-0-Bone-3" type="PinJoint2D" parent="Butter8/Bone-0"] visible = false -rotation = -1.30993 +rotation = -1.26715 node_a = NodePath("..") node_b = NodePath("../../Bone-3") softness = 100.0 [node name="Joint2D-Bone-0-Bone-4" type="PinJoint2D" parent="Butter8/Bone-0"] visible = false -rotation = -0.522283 +rotation = -0.545761 node_a = NodePath("..") node_b = NodePath("../../Bone-4") softness = 100.0 -[node name="Bone-1" parent="Butter8" instance=ExtResource("3_6ern4")] -position = Vector2(11.4233, 78.7417) -mass = 0.05 +[node name="Joint2D-Bone-0-Bone-2" type="PinJoint2D" parent="Butter8/Bone-0"] +visible = false +rotation = -2.34609 +node_a = NodePath("..") +node_b = NodePath("../../Bone-2") +softness = 100.0 + +[node name="Bone-1" type="RigidBody2D" parent="Butter8" instance=ExtResource("3_6ern4")] +position = Vector2(11.3246, 78) +input_pickable = true +mass = 0.0526316 physics_material_override = ExtResource("5_221ya") +script = ExtResource("11_tqnjl") +metadata/idx = 1 metadata/bone_name = &"Bone-1" [node name="CircleShape2D" type="CollisionShape2D" parent="Butter8/Bone-1"] -shape = SubResource("CircleShape2D_a6wax") +shape = SubResource("CircleShape2D_a5d5c") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Butter8/Bone-1"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-1") update_rotation = false update_scale = false [node name="Joint2D-Bone-1-Bone-0" type="PinJoint2D" parent="Butter8/Bone-1"] visible = false -rotation = -3.12374 +rotation = -3.17638 node_a = NodePath("..") node_b = NodePath("../../Bone-0") softness = 100.0 [node name="Joint2D-Bone-1-Bone-3" type="PinJoint2D" parent="Butter8/Bone-1"] visible = false -rotation = -2.53232 +rotation = -2.52617 node_a = NodePath("..") node_b = NodePath("../../Bone-3") softness = 100.0 [node name="Joint2D-Bone-1-Bone-4" type="PinJoint2D" parent="Butter8/Bone-1"] visible = false -rotation = -1.63001 +rotation = -1.5708 node_a = NodePath("..") node_b = NodePath("../../Bone-4") softness = 100.0 [node name="Joint2D-Bone-1-Bone-5" type="PinJoint2D" parent="Butter8/Bone-1"] visible = false -rotation = -0.474914 +rotation = -0.422679 node_a = NodePath("..") node_b = NodePath("../../Bone-5") softness = 100.0 -[node name="Bone-2" parent="Butter8" instance=ExtResource("3_6ern4")] -position = Vector2(32.1588, 27.3839) -mass = 0.05 +[node name="Bone-2" type="RigidBody2D" parent="Butter8" instance=ExtResource("3_6ern4")] +position = Vector2(29, 28.75) +input_pickable = true +mass = 0.0526316 physics_material_override = ExtResource("5_221ya") +script = ExtResource("11_tqnjl") +metadata/idx = 2 metadata/bone_name = &"Bone-2" [node name="CircleShape2D" type="CollisionShape2D" parent="Butter8/Bone-2"] -shape = SubResource("CircleShape2D_a6wax") +shape = SubResource("CircleShape2D_a5d5c") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Butter8/Bone-2"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-2") update_rotation = false update_scale = false [node name="Joint2D-Bone-2-Bone-0" type="PinJoint2D" parent="Butter8/Bone-2"] visible = false -rotation = 0.787946 +rotation = 0.795499 node_a = NodePath("..") node_b = NodePath("../../Bone-0") softness = 100.0 [node name="Joint2D-Bone-2-Bone-3" type="PinJoint2D" parent="Butter8/Bone-2"] visible = false -rotation = 0.0900715 node_a = NodePath("..") node_b = NodePath("../../Bone-3") softness = 100.0 [node name="Joint2D-Bone-2-Bone-6" type="PinJoint2D" parent="Butter8/Bone-2"] visible = false -rotation = -1.53017 +rotation = -1.81578 node_a = NodePath("..") node_b = NodePath("../../Bone-6") softness = 100.0 [node name="Joint2D-Bone-2-Bone-7" type="PinJoint2D" parent="Butter8/Bone-2"] visible = false -rotation = -0.700711 +rotation = -0.800625 node_a = NodePath("..") node_b = NodePath("../../Bone-7") softness = 100.0 -[node name="Bone-3" parent="Butter8" instance=ExtResource("3_6ern4")] -position = Vector2(29.9134, 52.2451) -mass = 0.05 +[node name="Bone-3" type="RigidBody2D" parent="Butter8" instance=ExtResource("3_6ern4")] +position = Vector2(29, 53) +input_pickable = true +mass = 0.0526316 physics_material_override = ExtResource("5_221ya") +script = ExtResource("11_tqnjl") +metadata/idx = 3 metadata/bone_name = &"Bone-3" [node name="CircleShape2D" type="CollisionShape2D" parent="Butter8/Bone-3"] -shape = SubResource("CircleShape2D_a6wax") +shape = SubResource("CircleShape2D_a5d5c") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Butter8/Bone-3"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-3") update_rotation = false update_scale = false [node name="Joint2D-Bone-3-Bone-0" type="PinJoint2D" parent="Butter8/Bone-3"] visible = false -rotation = -4.45152 +rotation = -4.40875 node_a = NodePath("..") node_b = NodePath("../../Bone-0") softness = 100.0 [node name="Joint2D-Bone-3-Bone-1" type="PinJoint2D" parent="Butter8/Bone-3"] visible = false -rotation = 0.609268 +rotation = 0.61542 node_a = NodePath("..") node_b = NodePath("../../Bone-1") softness = 100.0 -[node name="Joint2D-Bone-3-Bone-2" type="PinJoint2D" parent="Butter8/Bone-3"] +[node name="Joint2D-Bone-3-Bone-4" type="PinJoint2D" parent="Butter8/Bone-3"] visible = false -rotation = -3.05152 node_a = NodePath("..") -node_b = NodePath("../../Bone-2") +node_b = NodePath("../../Bone-4") softness = 100.0 -[node name="Joint2D-Bone-3-Bone-4" type="PinJoint2D" parent="Butter8/Bone-3"] +[node name="Joint2D-Bone-3-Bone-2" type="PinJoint2D" parent="Butter8/Bone-3"] visible = false -rotation = 0.0211281 +rotation = -3.14159 node_a = NodePath("..") -node_b = NodePath("../../Bone-4") +node_b = NodePath("../../Bone-2") softness = 100.0 [node name="Joint2D-Bone-3-Bone-6" type="PinJoint2D" parent="Butter8/Bone-3"] visible = false -rotation = -2.31758 +rotation = -2.45497 node_a = NodePath("..") node_b = NodePath("../../Bone-6") softness = 100.0 [node name="Joint2D-Bone-3-Bone-7" type="PinJoint2D" parent="Butter8/Bone-3"] visible = false -rotation = -1.46747 +rotation = -1.5708 node_a = NodePath("..") node_b = NodePath("../../Bone-7") softness = 100.0 [node name="Joint2D-Bone-3-Bone-8" type="PinJoint2D" parent="Butter8/Bone-3"] visible = false -rotation = -0.741441 +rotation = -0.785398 node_a = NodePath("..") node_b = NodePath("../../Bone-8") softness = 100.0 -[node name="Bone-4" parent="Butter8" instance=ExtResource("3_6ern4")] -position = Vector2(29.376, 77.6774) -mass = 0.05 +[node name="Bone-4" type="RigidBody2D" parent="Butter8" instance=ExtResource("3_6ern4")] +position = Vector2(29, 78) +input_pickable = true +mass = 0.0526316 physics_material_override = ExtResource("5_221ya") +script = ExtResource("11_tqnjl") +metadata/idx = 4 metadata/bone_name = &"Bone-4" [node name="CircleShape2D" type="CollisionShape2D" parent="Butter8/Bone-4"] -shape = SubResource("CircleShape2D_a6wax") +shape = SubResource("CircleShape2D_a5d5c") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Butter8/Bone-4"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-4") update_rotation = false update_scale = false [node name="Joint2D-Bone-4-Bone-0" type="PinJoint2D" parent="Butter8/Bone-4"] visible = false -rotation = -3.66388 +rotation = -3.68735 node_a = NodePath("..") node_b = NodePath("../../Bone-0") softness = 100.0 [node name="Joint2D-Bone-4-Bone-1" type="PinJoint2D" parent="Butter8/Bone-4"] visible = false -rotation = 1.51158 +rotation = 1.5708 node_a = NodePath("..") node_b = NodePath("../../Bone-1") softness = 100.0 [node name="Joint2D-Bone-4-Bone-3" type="PinJoint2D" parent="Butter8/Bone-4"] visible = false -rotation = -3.12046 +rotation = -3.14159 node_a = NodePath("..") node_b = NodePath("../../Bone-3") softness = 100.0 [node name="Joint2D-Bone-4-Bone-5" type="PinJoint2D" parent="Butter8/Bone-4"] visible = false -rotation = 0.214135 +rotation = 0.187806 node_a = NodePath("..") node_b = NodePath("../../Bone-5") softness = 100.0 [node name="Joint2D-Bone-4-Bone-7" type="PinJoint2D" parent="Butter8/Bone-4"] visible = false -rotation = -2.291 +rotation = -2.35619 node_a = NodePath("..") node_b = NodePath("../../Bone-7") softness = 100.0 [node name="Joint2D-Bone-4-Bone-8" type="PinJoint2D" parent="Butter8/Bone-4"] visible = false -rotation = -1.51371 +rotation = -1.5708 node_a = NodePath("..") node_b = NodePath("../../Bone-8") softness = 100.0 [node name="Joint2D-Bone-4-Bone-9" type="PinJoint2D" parent="Butter8/Bone-4"] visible = false -rotation = -0.748864 +rotation = -0.785398 node_a = NodePath("..") node_b = NodePath("../../Bone-9") softness = 100.0 -[node name="Bone-5" parent="Butter8" instance=ExtResource("3_6ern4")] -position = Vector2(23.8771, 102.963) -mass = 0.05 +[node name="Bone-5" type="RigidBody2D" parent="Butter8" instance=ExtResource("3_6ern4")] +position = Vector2(23.75, 105.625) +input_pickable = true +mass = 0.0526316 physics_material_override = ExtResource("5_221ya") +script = ExtResource("11_tqnjl") +metadata/idx = 5 metadata/bone_name = &"Bone-5" [node name="CircleShape2D" type="CollisionShape2D" parent="Butter8/Bone-5"] -shape = SubResource("CircleShape2D_a6wax") +shape = SubResource("CircleShape2D_a5d5c") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Butter8/Bone-5"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-5") update_rotation = false update_scale = false +[node name="Joint2D-Bone-5-Bone-18" type="PinJoint2D" parent="Butter8/Bone-5"] +visible = false +rotation = -1.10715 +node_a = NodePath("..") +node_b = NodePath("../../Bone-18") +softness = 100.0 + [node name="Joint2D-Bone-5-Bone-1" type="PinJoint2D" parent="Butter8/Bone-5"] visible = false -rotation = -3.61651 +rotation = -3.56427 node_a = NodePath("..") node_b = NodePath("../../Bone-1") softness = 100.0 [node name="Joint2D-Bone-5-Bone-4" type="PinJoint2D" parent="Butter8/Bone-5"] visible = false -rotation = -2.92746 +rotation = -2.95379 node_a = NodePath("..") node_b = NodePath("../../Bone-4") softness = 100.0 [node name="Joint2D-Bone-5-Bone-8" type="PinJoint2D" parent="Butter8/Bone-5"] visible = false -rotation = -2.23219 +rotation = -2.31087 node_a = NodePath("..") node_b = NodePath("../../Bone-8") softness = 100.0 [node name="Joint2D-Bone-5-Bone-9" type="PinJoint2D" parent="Butter8/Bone-5"] visible = false -rotation = -1.55278 +rotation = -1.65736 node_a = NodePath("..") node_b = NodePath("../../Bone-9") softness = 100.0 -[node name="Joint2D-Bone-5-Bone-19" type="PinJoint2D" parent="Butter8/Bone-5"] -visible = false -rotation = -0.977532 -node_a = NodePath("..") -node_b = NodePath("../../Bone-19") -softness = 100.0 - -[node name="Bone-6" parent="Butter8" instance=ExtResource("3_6ern4")] -position = Vector2(55.7376, 28.3423) -mass = 0.05 +[node name="Bone-6" type="RigidBody2D" parent="Butter8" instance=ExtResource("3_6ern4")] +position = Vector2(54, 22.5) +input_pickable = true +mass = 0.0526316 physics_material_override = ExtResource("5_221ya") +script = ExtResource("11_tqnjl") +metadata/idx = 6 metadata/bone_name = &"Bone-6" [node name="CircleShape2D" type="CollisionShape2D" parent="Butter8/Bone-6"] -shape = SubResource("CircleShape2D_a6wax") +shape = SubResource("CircleShape2D_a5d5c") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Butter8/Bone-6"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-6") update_rotation = false update_scale = false +[node name="Joint2D-Bone-6-Bone-10" type="PinJoint2D" parent="Butter8/Bone-6"] +visible = false +rotation = -1.60079 +node_a = NodePath("..") +node_b = NodePath("../../Bone-10") +softness = 100.0 + [node name="Joint2D-Bone-6-Bone-2" type="PinJoint2D" parent="Butter8/Bone-6"] visible = false -rotation = -4.67177 +rotation = 1.32582 node_a = NodePath("..") node_b = NodePath("../../Bone-2") softness = 100.0 [node name="Joint2D-Bone-6-Bone-3" type="PinJoint2D" parent="Butter8/Bone-6"] visible = false -rotation = 0.824017 +rotation = 0.686622 node_a = NodePath("..") node_b = NodePath("../../Bone-3") softness = 100.0 [node name="Joint2D-Bone-6-Bone-7" type="PinJoint2D" parent="Butter8/Bone-6"] visible = false -rotation = 0.0144326 node_a = NodePath("..") node_b = NodePath("../../Bone-7") softness = 100.0 -[node name="Joint2D-Bone-6-Bone-10" type="PinJoint2D" parent="Butter8/Bone-6"] -visible = false -rotation = -2.49098 -node_a = NodePath("..") -node_b = NodePath("../../Bone-10") -softness = 100.0 - [node name="Joint2D-Bone-6-Bone-11" type="PinJoint2D" parent="Butter8/Bone-6"] visible = false -rotation = -1.50208 +rotation = -0.686622 node_a = NodePath("..") node_b = NodePath("../../Bone-11") softness = 100.0 -[node name="Joint2D-Bone-6-Bone-12" type="PinJoint2D" parent="Butter8/Bone-6"] -visible = false -rotation = -0.736969 -node_a = NodePath("..") -node_b = NodePath("../../Bone-12") -softness = 100.0 - -[node name="Bone-7" parent="Butter8" instance=ExtResource("3_6ern4")] -position = Vector2(55.3545, 54.8831) -mass = 0.05 +[node name="Bone-7" type="RigidBody2D" parent="Butter8" instance=ExtResource("3_6ern4")] +position = Vector2(54, 53) +input_pickable = true +mass = 0.0526316 physics_material_override = ExtResource("5_221ya") +script = ExtResource("11_tqnjl") +metadata/idx = 7 metadata/bone_name = &"Bone-7" [node name="CircleShape2D" type="CollisionShape2D" parent="Butter8/Bone-7"] -shape = SubResource("CircleShape2D_a6wax") +shape = SubResource("CircleShape2D_a5d5c") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Butter8/Bone-7"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-7") update_rotation = false update_scale = false [node name="Joint2D-Bone-7-Bone-2" type="PinJoint2D" parent="Butter8/Bone-7"] visible = false -rotation = -3.8423 +rotation = -3.94222 node_a = NodePath("..") node_b = NodePath("../../Bone-2") softness = 100.0 [node name="Joint2D-Bone-7-Bone-3" type="PinJoint2D" parent="Butter8/Bone-7"] visible = false -rotation = -4.60907 +rotation = 1.5708 node_a = NodePath("..") node_b = NodePath("../../Bone-3") softness = 100.0 -[node name="Joint2D-Bone-7-Bone-4" type="PinJoint2D" parent="Butter8/Bone-7"] +[node name="Joint2D-Bone-7-Bone-6" type="PinJoint2D" parent="Butter8/Bone-7"] visible = false -rotation = 0.850593 +rotation = -3.14159 node_a = NodePath("..") -node_b = NodePath("../../Bone-4") +node_b = NodePath("../../Bone-6") softness = 100.0 -[node name="Joint2D-Bone-7-Bone-6" type="PinJoint2D" parent="Butter8/Bone-7"] +[node name="Joint2D-Bone-7-Bone-4" type="PinJoint2D" parent="Butter8/Bone-7"] visible = false -rotation = -3.12716 +rotation = 0.785398 node_a = NodePath("..") -node_b = NodePath("../../Bone-6") +node_b = NodePath("../../Bone-4") softness = 100.0 [node name="Joint2D-Bone-7-Bone-8" type="PinJoint2D" parent="Butter8/Bone-7"] visible = false -rotation = 0.0344938 node_a = NodePath("..") node_b = NodePath("../../Bone-8") softness = 100.0 -[node name="Joint2D-Bone-7-Bone-11" type="PinJoint2D" parent="Butter8/Bone-7"] +[node name="Joint2D-Bone-7-Bone-10" type="PinJoint2D" parent="Butter8/Bone-7"] visible = false -rotation = -2.34037 +rotation = -2.46685 node_a = NodePath("..") -node_b = NodePath("../../Bone-11") +node_b = NodePath("../../Bone-10") softness = 100.0 -[node name="Joint2D-Bone-7-Bone-12" type="PinJoint2D" parent="Butter8/Bone-7"] +[node name="Joint2D-Bone-7-Bone-11" type="PinJoint2D" parent="Butter8/Bone-7"] visible = false -rotation = -1.59133 +rotation = -1.5708 node_a = NodePath("..") -node_b = NodePath("../../Bone-12") +node_b = NodePath("../../Bone-11") softness = 100.0 -[node name="Joint2D-Bone-7-Bone-13" type="PinJoint2D" parent="Butter8/Bone-7"] +[node name="Joint2D-Bone-7-Bone-12" type="PinJoint2D" parent="Butter8/Bone-7"] visible = false -rotation = -0.823625 +rotation = -0.785398 node_a = NodePath("..") -node_b = NodePath("../../Bone-13") +node_b = NodePath("../../Bone-12") softness = 100.0 -[node name="Bone-8" parent="Butter8" instance=ExtResource("3_6ern4")] -position = Vector2(54.5183, 79.1141) -mass = 0.05 +[node name="Bone-8" type="RigidBody2D" parent="Butter8" instance=ExtResource("3_6ern4")] +position = Vector2(54, 78) +input_pickable = true +mass = 0.0526316 physics_material_override = ExtResource("5_221ya") +script = ExtResource("11_tqnjl") +metadata/idx = 8 metadata/bone_name = &"Bone-8" [node name="CircleShape2D" type="CollisionShape2D" parent="Butter8/Bone-8"] -shape = SubResource("CircleShape2D_a6wax") +shape = SubResource("CircleShape2D_a5d5c") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Butter8/Bone-8"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-8") update_rotation = false update_scale = false [node name="Joint2D-Bone-8-Bone-3" type="PinJoint2D" parent="Butter8/Bone-8"] visible = false -rotation = -3.88303 +rotation = -3.92699 node_a = NodePath("..") node_b = NodePath("../../Bone-3") softness = 100.0 [node name="Joint2D-Bone-8-Bone-4" type="PinJoint2D" parent="Butter8/Bone-8"] visible = false -rotation = -4.65531 +rotation = 1.5708 node_a = NodePath("..") node_b = NodePath("../../Bone-4") softness = 100.0 -[node name="Joint2D-Bone-8-Bone-5" type="PinJoint2D" parent="Butter8/Bone-8"] +[node name="Joint2D-Bone-8-Bone-7" type="PinJoint2D" parent="Butter8/Bone-8"] visible = false -rotation = 0.909408 +rotation = -3.14159 node_a = NodePath("..") -node_b = NodePath("../../Bone-5") +node_b = NodePath("../../Bone-7") softness = 100.0 -[node name="Joint2D-Bone-8-Bone-7" type="PinJoint2D" parent="Butter8/Bone-8"] +[node name="Joint2D-Bone-8-Bone-5" type="PinJoint2D" parent="Butter8/Bone-8"] visible = false -rotation = -3.1071 +rotation = 0.830723 node_a = NodePath("..") -node_b = NodePath("../../Bone-7") +node_b = NodePath("../../Bone-5") softness = 100.0 [node name="Joint2D-Bone-8-Bone-9" type="PinJoint2D" parent="Butter8/Bone-8"] visible = false -rotation = 0.0469652 node_a = NodePath("..") node_b = NodePath("../../Bone-9") softness = 100.0 -[node name="Joint2D-Bone-8-Bone-12" type="PinJoint2D" parent="Butter8/Bone-8"] +[node name="Joint2D-Bone-8-Bone-11" type="PinJoint2D" parent="Butter8/Bone-8"] visible = false -rotation = -2.35349 +rotation = -2.35619 node_a = NodePath("..") -node_b = NodePath("../../Bone-12") +node_b = NodePath("../../Bone-11") softness = 100.0 -[node name="Joint2D-Bone-8-Bone-13" type="PinJoint2D" parent="Butter8/Bone-8"] +[node name="Joint2D-Bone-8-Bone-12" type="PinJoint2D" parent="Butter8/Bone-8"] visible = false -rotation = -1.58598 +rotation = -1.5708 node_a = NodePath("..") -node_b = NodePath("../../Bone-13") +node_b = NodePath("../../Bone-12") softness = 100.0 -[node name="Joint2D-Bone-8-Bone-14" type="PinJoint2D" parent="Butter8/Bone-8"] +[node name="Joint2D-Bone-8-Bone-13" type="PinJoint2D" parent="Butter8/Bone-8"] visible = false -rotation = -0.722473 +rotation = -0.69066 node_a = NodePath("..") -node_b = NodePath("../../Bone-14") +node_b = NodePath("../../Bone-13") softness = 100.0 -[node name="Bone-9" parent="Butter8" instance=ExtResource("3_6ern4")] -position = Vector2(53.3725, 103.495) -mass = 0.05 +[node name="Bone-9" type="RigidBody2D" parent="Butter8" instance=ExtResource("3_6ern4")] +position = Vector2(54, 103) +input_pickable = true +mass = 0.0526316 physics_material_override = ExtResource("5_221ya") +script = ExtResource("11_tqnjl") +metadata/idx = 9 metadata/bone_name = &"Bone-9" [node name="CircleShape2D" type="CollisionShape2D" parent="Butter8/Bone-9"] -shape = SubResource("CircleShape2D_a6wax") +shape = SubResource("CircleShape2D_a5d5c") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Butter8/Bone-9"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-9") update_rotation = false update_scale = false [node name="Joint2D-Bone-9-Bone-4" type="PinJoint2D" parent="Butter8/Bone-9"] visible = false -rotation = -3.89046 +rotation = -3.92699 node_a = NodePath("..") node_b = NodePath("../../Bone-4") softness = 100.0 [node name="Joint2D-Bone-9-Bone-5" type="PinJoint2D" parent="Butter8/Bone-9"] visible = false -rotation = -4.69438 +rotation = 1.48424 node_a = NodePath("..") node_b = NodePath("../../Bone-5") softness = 100.0 [node name="Joint2D-Bone-9-Bone-8" type="PinJoint2D" parent="Butter8/Bone-9"] visible = false -rotation = -3.09463 +rotation = -3.14159 node_a = NodePath("..") node_b = NodePath("../../Bone-8") softness = 100.0 -[node name="Joint2D-Bone-9-Bone-13" type="PinJoint2D" parent="Butter8/Bone-9"] +[node name="Joint2D-Bone-9-Bone-18" type="PinJoint2D" parent="Butter8/Bone-9"] visible = false -rotation = -2.3006 node_a = NodePath("..") -node_b = NodePath("../../Bone-13") +node_b = NodePath("../../Bone-18") softness = 100.0 -[node name="Joint2D-Bone-9-Bone-14" type="PinJoint2D" parent="Butter8/Bone-9"] +[node name="Joint2D-Bone-9-Bone-12" type="PinJoint2D" parent="Butter8/Bone-9"] visible = false -rotation = -1.43733 +rotation = -2.35619 node_a = NodePath("..") -node_b = NodePath("../../Bone-14") +node_b = NodePath("../../Bone-12") softness = 100.0 -[node name="Joint2D-Bone-9-Bone-19" type="PinJoint2D" parent="Butter8/Bone-9"] +[node name="Joint2D-Bone-9-Bone-13" type="PinJoint2D" parent="Butter8/Bone-9"] visible = false -rotation = 0.259457 +rotation = -1.3638 node_a = NodePath("..") -node_b = NodePath("../../Bone-19") +node_b = NodePath("../../Bone-13") softness = 100.0 -[node name="Bone-10" parent="Butter8" instance=ExtResource("3_6ern4")] -position = Vector2(69.1836, 10.6773) -mass = 0.05 +[node name="Bone-10" type="RigidBody2D" parent="Butter8" instance=ExtResource("3_6ern4")] +position = Vector2(79, 21.75) +input_pickable = true +mass = 0.0526316 physics_material_override = ExtResource("5_221ya") +script = ExtResource("11_tqnjl") +metadata/idx = 10 metadata/bone_name = &"Bone-10" [node name="CircleShape2D" type="CollisionShape2D" parent="Butter8/Bone-10"] -shape = SubResource("CircleShape2D_a6wax") +shape = SubResource("CircleShape2D_a5d5c") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Butter8/Bone-10"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-10") update_rotation = false update_scale = false [node name="Joint2D-Bone-10-Bone-6" type="PinJoint2D" parent="Butter8/Bone-10"] visible = false -rotation = 0.650612 +rotation = 1.54081 node_a = NodePath("..") node_b = NodePath("../../Bone-6") softness = 100.0 +[node name="Joint2D-Bone-10-Bone-7" type="PinJoint2D" parent="Butter8/Bone-10"] +visible = false +rotation = 0.674741 +node_a = NodePath("..") +node_b = NodePath("../../Bone-7") +softness = 100.0 + [node name="Joint2D-Bone-10-Bone-11" type="PinJoint2D" parent="Butter8/Bone-10"] visible = false -rotation = -0.545454 node_a = NodePath("..") node_b = NodePath("../../Bone-11") softness = 100.0 -[node name="Bone-11" parent="Butter8" instance=ExtResource("3_6ern4")] -position = Vector2(80.9573, 30.078) -mass = 0.05 +[node name="Joint2D-Bone-10-Bone-14" type="PinJoint2D" parent="Butter8/Bone-10"] +visible = false +rotation = -1.2394 +node_a = NodePath("..") +node_b = NodePath("../../Bone-14") +softness = 100.0 + +[node name="Joint2D-Bone-10-Bone-15" type="PinJoint2D" parent="Butter8/Bone-10"] +visible = false +rotation = -0.63965 +node_a = NodePath("..") +node_b = NodePath("../../Bone-15") +softness = 100.0 + +[node name="Bone-11" type="RigidBody2D" parent="Butter8" instance=ExtResource("3_6ern4")] +position = Vector2(79, 53) +input_pickable = true +mass = 0.0526316 physics_material_override = ExtResource("5_221ya") +script = ExtResource("11_tqnjl") +metadata/idx = 11 metadata/bone_name = &"Bone-11" [node name="CircleShape2D" type="CollisionShape2D" parent="Butter8/Bone-11"] -shape = SubResource("CircleShape2D_a6wax") +shape = SubResource("CircleShape2D_a5d5c") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Butter8/Bone-11"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-11") update_rotation = false update_scale = false [node name="Joint2D-Bone-11-Bone-6" type="PinJoint2D" parent="Butter8/Bone-11"] visible = false -rotation = -4.64367 +rotation = -3.82821 node_a = NodePath("..") node_b = NodePath("../../Bone-6") softness = 100.0 [node name="Joint2D-Bone-11-Bone-7" type="PinJoint2D" parent="Butter8/Bone-11"] visible = false -rotation = 0.80122 +rotation = 1.5708 node_a = NodePath("..") node_b = NodePath("../../Bone-7") softness = 100.0 [node name="Joint2D-Bone-11-Bone-10" type="PinJoint2D" parent="Butter8/Bone-11"] visible = false -rotation = -3.68705 +rotation = -3.14159 node_a = NodePath("..") node_b = NodePath("../../Bone-10") softness = 100.0 +[node name="Joint2D-Bone-11-Bone-8" type="PinJoint2D" parent="Butter8/Bone-11"] +visible = false +rotation = 0.785398 +node_a = NodePath("..") +node_b = NodePath("../../Bone-8") +softness = 100.0 + [node name="Joint2D-Bone-11-Bone-12" type="PinJoint2D" parent="Butter8/Bone-11"] visible = false -rotation = 0.0649149 node_a = NodePath("..") node_b = NodePath("../../Bone-12") softness = 100.0 +[node name="Joint2D-Bone-11-Bone-14" type="PinJoint2D" parent="Butter8/Bone-11"] +visible = false +rotation = -2.35619 +node_a = NodePath("..") +node_b = NodePath("../../Bone-14") +softness = 100.0 + [node name="Joint2D-Bone-11-Bone-15" type="PinJoint2D" parent="Butter8/Bone-11"] visible = false -rotation = -1.51807 +rotation = -1.5708 node_a = NodePath("..") node_b = NodePath("../../Bone-15") softness = 100.0 [node name="Joint2D-Bone-11-Bone-16" type="PinJoint2D" parent="Butter8/Bone-11"] visible = false -rotation = -0.749219 +rotation = -0.770171 node_a = NodePath("..") node_b = NodePath("../../Bone-16") softness = 100.0 -[node name="Bone-12" parent="Butter8" instance=ExtResource("3_6ern4")] -position = Vector2(79.3768, 54.3897) -mass = 0.05 +[node name="Bone-12" type="RigidBody2D" parent="Butter8" instance=ExtResource("3_6ern4")] +position = Vector2(79, 78) +input_pickable = true +mass = 0.0526316 physics_material_override = ExtResource("5_221ya") +script = ExtResource("11_tqnjl") +metadata/idx = 12 metadata/bone_name = &"Bone-12" [node name="CircleShape2D" type="CollisionShape2D" parent="Butter8/Bone-12"] -shape = SubResource("CircleShape2D_a6wax") +shape = SubResource("CircleShape2D_a5d5c") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Butter8/Bone-12"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-12") update_rotation = false update_scale = false -[node name="Joint2D-Bone-12-Bone-6" type="PinJoint2D" parent="Butter8/Bone-12"] +[node name="Joint2D-Bone-12-Bone-7" type="PinJoint2D" parent="Butter8/Bone-12"] visible = false -rotation = -3.87856 +rotation = -3.92699 node_a = NodePath("..") -node_b = NodePath("../../Bone-6") -softness = 100.0 - -[node name="Joint2D-Bone-12-Bone-7" type="PinJoint2D" parent="Butter8/Bone-12"] -visible = false -rotation = 1.55026 -node_a = NodePath("..") -node_b = NodePath("../../Bone-7") +node_b = NodePath("../../Bone-7") softness = 100.0 [node name="Joint2D-Bone-12-Bone-8" type="PinJoint2D" parent="Butter8/Bone-12"] visible = false -rotation = 0.788103 +rotation = 1.5708 node_a = NodePath("..") node_b = NodePath("../../Bone-8") softness = 100.0 [node name="Joint2D-Bone-12-Bone-11" type="PinJoint2D" parent="Butter8/Bone-12"] visible = false -rotation = -3.07668 +rotation = -3.14159 node_a = NodePath("..") node_b = NodePath("../../Bone-11") softness = 100.0 +[node name="Joint2D-Bone-12-Bone-9" type="PinJoint2D" parent="Butter8/Bone-12"] +visible = false +rotation = 0.785398 +node_a = NodePath("..") +node_b = NodePath("../../Bone-9") +softness = 100.0 + [node name="Joint2D-Bone-12-Bone-13" type="PinJoint2D" parent="Butter8/Bone-12"] visible = false -rotation = -0.0698014 node_a = NodePath("..") node_b = NodePath("../../Bone-13") softness = 100.0 [node name="Joint2D-Bone-12-Bone-15" type="PinJoint2D" parent="Butter8/Bone-12"] visible = false -rotation = -2.35161 +rotation = -2.39245 node_a = NodePath("..") node_b = NodePath("../../Bone-15") softness = 100.0 [node name="Joint2D-Bone-12-Bone-16" type="PinJoint2D" parent="Butter8/Bone-12"] visible = false -rotation = -1.56748 +rotation = -1.5708 node_a = NodePath("..") node_b = NodePath("../../Bone-16") softness = 100.0 [node name="Joint2D-Bone-12-Bone-17" type="PinJoint2D" parent="Butter8/Bone-12"] visible = false -rotation = -0.803699 +rotation = -0.785398 node_a = NodePath("..") node_b = NodePath("../../Bone-17") softness = 100.0 -[node name="Bone-13" parent="Butter8" instance=ExtResource("3_6ern4")] -position = Vector2(81.0773, 78.7108) -mass = 0.05 +[node name="Bone-13" type="RigidBody2D" parent="Butter8" instance=ExtResource("3_6ern4")] +position = Vector2(79, 108.25) +input_pickable = true +mass = 0.0526316 physics_material_override = ExtResource("5_221ya") +script = ExtResource("11_tqnjl") +metadata/idx = 13 metadata/bone_name = &"Bone-13" [node name="CircleShape2D" type="CollisionShape2D" parent="Butter8/Bone-13"] -shape = SubResource("CircleShape2D_a6wax") +shape = SubResource("CircleShape2D_a5d5c") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Butter8/Bone-13"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-13") update_rotation = false update_scale = false -[node name="Joint2D-Bone-13-Bone-7" type="PinJoint2D" parent="Butter8/Bone-13"] +[node name="Joint2D-Bone-13-Bone-18" type="PinJoint2D" parent="Butter8/Bone-13"] visible = false -rotation = -3.96522 +rotation = 1.10715 node_a = NodePath("..") -node_b = NodePath("../../Bone-7") +node_b = NodePath("../../Bone-18") +softness = 100.0 + +[node name="Joint2D-Bone-13-Bone-17" type="PinJoint2D" parent="Butter8/Bone-13"] +visible = false +rotation = -1.81335 +node_a = NodePath("..") +node_b = NodePath("../../Bone-17") softness = 100.0 [node name="Joint2D-Bone-13-Bone-8" type="PinJoint2D" parent="Butter8/Bone-13"] visible = false -rotation = 1.55561 +rotation = -3.83225 node_a = NodePath("..") node_b = NodePath("../../Bone-8") softness = 100.0 [node name="Joint2D-Bone-13-Bone-9" type="PinJoint2D" parent="Butter8/Bone-13"] visible = false -rotation = 0.840993 +rotation = -4.5054 node_a = NodePath("..") node_b = NodePath("../../Bone-9") softness = 100.0 [node name="Joint2D-Bone-13-Bone-12" type="PinJoint2D" parent="Butter8/Bone-13"] visible = false -rotation = -3.21139 +rotation = -3.14159 node_a = NodePath("..") node_b = NodePath("../../Bone-12") softness = 100.0 -[node name="Joint2D-Bone-13-Bone-14" type="PinJoint2D" parent="Butter8/Bone-13"] -visible = false -rotation = 0.0717928 -node_a = NodePath("..") -node_b = NodePath("../../Bone-14") -softness = 100.0 - [node name="Joint2D-Bone-13-Bone-16" type="PinJoint2D" parent="Butter8/Bone-13"] visible = false -rotation = -2.3919 +rotation = -2.46584 node_a = NodePath("..") node_b = NodePath("../../Bone-16") softness = 100.0 -[node name="Joint2D-Bone-13-Bone-17" type="PinJoint2D" parent="Butter8/Bone-13"] -visible = false -rotation = -1.52834 -node_a = NodePath("..") -node_b = NodePath("../../Bone-17") -softness = 100.0 - -[node name="Joint2D-Bone-13-Bone-18" type="PinJoint2D" parent="Butter8/Bone-13"] -visible = false -rotation = -0.71218 -node_a = NodePath("..") -node_b = NodePath("../../Bone-18") -softness = 100.0 - -[node name="Bone-14" parent="Butter8" instance=ExtResource("3_6ern4")] -position = Vector2(79.047, 106.942) -mass = 0.05 +[node name="Bone-14" type="RigidBody2D" parent="Butter8" instance=ExtResource("3_6ern4")] +position = Vector2(102.25, 29.75) +input_pickable = true +mass = 0.0526316 physics_material_override = ExtResource("5_221ya") +script = ExtResource("11_tqnjl") +metadata/idx = 14 metadata/bone_name = &"Bone-14" [node name="CircleShape2D" type="CollisionShape2D" parent="Butter8/Bone-14"] -shape = SubResource("CircleShape2D_a6wax") +shape = SubResource("CircleShape2D_a5d5c") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Butter8/Bone-14"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-14") update_rotation = false update_scale = false -[node name="Joint2D-Bone-14-Bone-8" type="PinJoint2D" parent="Butter8/Bone-14"] -visible = false -rotation = -3.86407 -node_a = NodePath("..") -node_b = NodePath("../../Bone-8") -softness = 100.0 - -[node name="Joint2D-Bone-14-Bone-9" type="PinJoint2D" parent="Butter8/Bone-14"] -visible = false -rotation = -4.57892 -node_a = NodePath("..") -node_b = NodePath("../../Bone-9") -softness = 100.0 - -[node name="Joint2D-Bone-14-Bone-13" type="PinJoint2D" parent="Butter8/Bone-14"] -visible = false -rotation = -3.0698 -node_a = NodePath("..") -node_b = NodePath("../../Bone-13") -softness = 100.0 - -[node name="Joint2D-Bone-14-Bone-17" type="PinJoint2D" parent="Butter8/Bone-14"] +[node name="Joint2D-Bone-14-Bone-10" type="PinJoint2D" parent="Butter8/Bone-14"] visible = false -rotation = -2.36628 +rotation = -4.38099 node_a = NodePath("..") -node_b = NodePath("../../Bone-17") +node_b = NodePath("../../Bone-10") softness = 100.0 -[node name="Joint2D-Bone-14-Bone-18" type="PinJoint2D" parent="Butter8/Bone-14"] +[node name="Joint2D-Bone-14-Bone-11" type="PinJoint2D" parent="Butter8/Bone-14"] visible = false -rotation = -1.72662 +rotation = 0.785398 node_a = NodePath("..") -node_b = NodePath("../../Bone-18") +node_b = NodePath("../../Bone-11") softness = 100.0 -[node name="Joint2D-Bone-14-Bone-19" type="PinJoint2D" parent="Butter8/Bone-14"] +[node name="Joint2D-Bone-14-Bone-15" type="PinJoint2D" parent="Butter8/Bone-14"] visible = false -rotation = 1.16309 node_a = NodePath("..") -node_b = NodePath("../../Bone-19") +node_b = NodePath("../../Bone-15") softness = 100.0 -[node name="Bone-15" parent="Butter8" instance=ExtResource("3_6ern4")] -position = Vector2(102.751, 31.2282) -mass = 0.05 +[node name="Bone-15" type="RigidBody2D" parent="Butter8" instance=ExtResource("3_6ern4")] +position = Vector2(102.25, 53) +input_pickable = true +mass = 0.0526316 physics_material_override = ExtResource("5_221ya") +script = ExtResource("11_tqnjl") +metadata/idx = 15 metadata/bone_name = &"Bone-15" [node name="CircleShape2D" type="CollisionShape2D" parent="Butter8/Bone-15"] -shape = SubResource("CircleShape2D_a6wax") +shape = SubResource("CircleShape2D_a5d5c") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Butter8/Bone-15"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-15") update_rotation = false update_scale = false +[node name="Joint2D-Bone-15-Bone-10" type="PinJoint2D" parent="Butter8/Bone-15"] +visible = false +rotation = -3.78124 +node_a = NodePath("..") +node_b = NodePath("../../Bone-10") +softness = 100.0 + [node name="Joint2D-Bone-15-Bone-11" type="PinJoint2D" parent="Butter8/Bone-15"] visible = false -rotation = -4.65966 +rotation = 1.5708 node_a = NodePath("..") node_b = NodePath("../../Bone-11") softness = 100.0 +[node name="Joint2D-Bone-15-Bone-14" type="PinJoint2D" parent="Butter8/Bone-15"] +visible = false +rotation = -3.14159 +node_a = NodePath("..") +node_b = NodePath("../../Bone-14") +softness = 100.0 + [node name="Joint2D-Bone-15-Bone-12" type="PinJoint2D" parent="Butter8/Bone-15"] visible = false -rotation = 0.789978 +rotation = 0.749145 node_a = NodePath("..") node_b = NodePath("../../Bone-12") softness = 100.0 [node name="Joint2D-Bone-15-Bone-16" type="PinJoint2D" parent="Butter8/Bone-15"] visible = false -rotation = -0.0384482 +rotation = -0.0399787 node_a = NodePath("..") node_b = NodePath("../../Bone-16") softness = 100.0 -[node name="Bone-16" parent="Butter8" instance=ExtResource("3_6ern4")] -position = Vector2(103.646, 54.4703) -mass = 0.05 +[node name="Bone-16" type="RigidBody2D" parent="Butter8" instance=ExtResource("3_6ern4")] +position = Vector2(103.25, 78) +input_pickable = true +mass = 0.0526316 physics_material_override = ExtResource("5_221ya") +script = ExtResource("11_tqnjl") +metadata/idx = 16 metadata/bone_name = &"Bone-16" [node name="CircleShape2D" type="CollisionShape2D" parent="Butter8/Bone-16"] -shape = SubResource("CircleShape2D_a6wax") +shape = SubResource("CircleShape2D_a5d5c") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Butter8/Bone-16"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-16") update_rotation = false update_scale = false [node name="Joint2D-Bone-16-Bone-11" type="PinJoint2D" parent="Butter8/Bone-16"] visible = false -rotation = -3.89081 +rotation = -3.91176 node_a = NodePath("..") node_b = NodePath("../../Bone-11") softness = 100.0 [node name="Joint2D-Bone-16-Bone-12" type="PinJoint2D" parent="Butter8/Bone-16"] visible = false -rotation = -4.70907 +rotation = 1.5708 node_a = NodePath("..") node_b = NodePath("../../Bone-12") softness = 100.0 -[node name="Joint2D-Bone-16-Bone-13" type="PinJoint2D" parent="Butter8/Bone-16"] +[node name="Joint2D-Bone-16-Bone-15" type="PinJoint2D" parent="Butter8/Bone-16"] visible = false -rotation = 0.749689 +rotation = -3.18157 node_a = NodePath("..") -node_b = NodePath("../../Bone-13") +node_b = NodePath("../../Bone-15") softness = 100.0 -[node name="Joint2D-Bone-16-Bone-15" type="PinJoint2D" parent="Butter8/Bone-16"] +[node name="Joint2D-Bone-16-Bone-13" type="PinJoint2D" parent="Butter8/Bone-16"] visible = false -rotation = -3.18004 +rotation = 0.675748 node_a = NodePath("..") -node_b = NodePath("../../Bone-15") +node_b = NodePath("../../Bone-13") softness = 100.0 [node name="Joint2D-Bone-16-Bone-17" type="PinJoint2D" parent="Butter8/Bone-16"] visible = false -rotation = -0.0806511 node_a = NodePath("..") node_b = NodePath("../../Bone-17") softness = 100.0 -[node name="Bone-17" parent="Butter8" instance=ExtResource("3_6ern4")] -position = Vector2(105.689, 79.7563) -mass = 0.05 +[node name="Bone-17" type="RigidBody2D" parent="Butter8" instance=ExtResource("3_6ern4")] +position = Vector2(103.25, 102.25) +input_pickable = true +mass = 0.0526316 physics_material_override = ExtResource("5_221ya") +script = ExtResource("11_tqnjl") +metadata/idx = 17 metadata/bone_name = &"Bone-17" [node name="CircleShape2D" type="CollisionShape2D" parent="Butter8/Bone-17"] -shape = SubResource("CircleShape2D_a6wax") +shape = SubResource("CircleShape2D_a5d5c") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Butter8/Bone-17"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-17") update_rotation = false update_scale = false -[node name="Joint2D-Bone-17-Bone-12" type="PinJoint2D" parent="Butter8/Bone-17"] -visible = false -rotation = -3.94529 -node_a = NodePath("..") -node_b = NodePath("../../Bone-12") -softness = 100.0 - [node name="Joint2D-Bone-17-Bone-13" type="PinJoint2D" parent="Butter8/Bone-17"] visible = false -rotation = -4.66994 +rotation = 1.32824 node_a = NodePath("..") node_b = NodePath("../../Bone-13") softness = 100.0 -[node name="Joint2D-Bone-17-Bone-14" type="PinJoint2D" parent="Butter8/Bone-17"] +[node name="Joint2D-Bone-17-Bone-12" type="PinJoint2D" parent="Butter8/Bone-17"] visible = false -rotation = 0.775311 +rotation = -3.92699 node_a = NodePath("..") -node_b = NodePath("../../Bone-14") +node_b = NodePath("../../Bone-12") softness = 100.0 [node name="Joint2D-Bone-17-Bone-16" type="PinJoint2D" parent="Butter8/Bone-17"] visible = false -rotation = -3.22224 +rotation = -3.14159 node_a = NodePath("..") node_b = NodePath("../../Bone-16") softness = 100.0 -[node name="Joint2D-Bone-17-Bone-18" type="PinJoint2D" parent="Butter8/Bone-17"] -visible = false -rotation = 0.14319 -node_a = NodePath("..") -node_b = NodePath("../../Bone-18") -softness = 100.0 - -[node name="Bone-18" parent="Butter8" instance=ExtResource("3_6ern4")] -position = Vector2(102.296, 103.289) -mass = 0.05 +[node name="Bone-18" type="RigidBody2D" parent="Butter8" instance=ExtResource("3_6ern4")] +position = Vector2(54, 120.75) +input_pickable = true +mass = 0.0526316 physics_material_override = ExtResource("5_221ya") +script = ExtResource("11_tqnjl") +metadata/idx = 18 metadata/bone_name = &"Bone-18" [node name="CircleShape2D" type="CollisionShape2D" parent="Butter8/Bone-18"] -shape = SubResource("CircleShape2D_a6wax") +shape = SubResource("CircleShape2D_a5d5c") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Butter8/Bone-18"] -remote_path = NodePath("../../Skeleton2D/Bone-18") -update_rotation = false -update_scale = false - -[node name="Joint2D-Bone-18-Bone-13" type="PinJoint2D" parent="Butter8/Bone-18"] -visible = false -rotation = -3.85377 -node_a = NodePath("..") -node_b = NodePath("../../Bone-13") -softness = 100.0 - -[node name="Joint2D-Bone-18-Bone-14" type="PinJoint2D" parent="Butter8/Bone-18"] visible = false -rotation = 1.41497 -node_a = NodePath("..") -node_b = NodePath("../../Bone-14") -softness = 100.0 - -[node name="Joint2D-Bone-18-Bone-17" type="PinJoint2D" parent="Butter8/Bone-18"] -visible = false -rotation = -2.9984 -node_a = NodePath("..") -node_b = NodePath("../../Bone-17") -softness = 100.0 - -[node name="Bone-19" parent="Butter8" instance=ExtResource("3_6ern4")] -position = Vector2(49.0143, 119.913) -mass = 0.05 -physics_material_override = ExtResource("5_221ya") -metadata/bone_name = &"Bone-19" - -[node name="CircleShape2D" type="CollisionShape2D" parent="Butter8/Bone-19"] -shape = SubResource("CircleShape2D_a6wax") - -[node name="RemoteTransform2D" type="RemoteTransform2D" parent="Butter8/Bone-19"] -remote_path = NodePath("../../Skeleton2D/Bone-19") +remote_path = NodePath("../../Skeleton2D/Bone-18") update_rotation = false update_scale = false -[node name="Joint2D-Bone-19-Bone-5" type="PinJoint2D" parent="Butter8/Bone-19"] +[node name="Joint2D-Bone-18-Bone-5" type="PinJoint2D" parent="Butter8/Bone-18"] visible = false -rotation = -4.11912 +rotation = -4.24874 node_a = NodePath("..") node_b = NodePath("../../Bone-5") softness = 100.0 -[node name="Joint2D-Bone-19-Bone-9" type="PinJoint2D" parent="Butter8/Bone-19"] +[node name="Joint2D-Bone-18-Bone-13" type="PinJoint2D" parent="Butter8/Bone-18"] visible = false -rotation = -2.88214 +rotation = -2.03444 node_a = NodePath("..") -node_b = NodePath("../../Bone-9") +node_b = NodePath("../../Bone-13") softness = 100.0 -[node name="Joint2D-Bone-19-Bone-14" type="PinJoint2D" parent="Butter8/Bone-19"] +[node name="Joint2D-Bone-18-Bone-9" type="PinJoint2D" parent="Butter8/Bone-18"] visible = false -rotation = -1.9785 +rotation = -3.14159 node_a = NodePath("..") -node_b = NodePath("../../Bone-14") +node_b = NodePath("../../Bone-9") softness = 100.0 [node name="Butter9" type="Polygon2D" parent="."] @@ -9674,1284 +10044,1337 @@ z_index = 5 position = Vector2(676, -324) texture = ExtResource("4_xackp") skeleton = NodePath("Skeleton2D") -polygon = PackedVector2Array(70, 4, 67, 4, 65, 6, 65, 7, 61, 7, 60, 8, 60, 9, 58, 10, 55, 10, 53, 12, 51, 12, 49, 15, 44, 15, 39, 19, 34, 19, 29, 23, 24, 23, 22, 25, 22, 26, 14, 30, 14, 31, 10, 31, 6, 34, 4, 34, 5, 37, 6, 37, 6, 42, 7, 42, 6, 99, 6, 105, 11, 108, 11, 109, 14, 110, 18, 110, 22, 113, 22, 114, 26, 114, 30, 117, 30, 118, 36, 118, 42, 121, 42, 122, 46, 122, 47, 123, 47, 124, 51, 125, 51, 126, 67, 126, 70, 122, 76, 122, 78, 119, 78, 118, 83, 118, 88, 114, 92, 114, 95, 111, 95, 110, 98, 109, 100, 109, 102, 107, 102, 106, 105, 106, 106, 105, 106, 104, 110, 102, 113, 102, 114, 100, 115, 100, 115, 87, 113, 83, 113, 35, 110, 35, 109, 34, 109, 31, 106, 31, 105, 30, 105, 28, 103, 28, 93, 19, 90, 19, 89, 18, 89, 15, 85, 13, 85, 11, 82, 11, 74, 4, 74, 3, 70, 3, 16.404, 42.2231, 17.2099, 64.8417, 14.9926, 67.4763, 6.56298, 66.9104, 7, 42, 6, 42, 6, 40.8541, 19.9638, 39.1868, 16.404, 42.2231, 6, 40.8541, 6, 37, 5, 37, 4, 34, 6, 34, 10, 31, 14, 31, 14, 30, 19.1198, 27.4401, 14.9926, 67.4763, 16.6942, 88.6245, 14.8609, 90.573, 6.15233, 90.317, 6.56298, 66.9104, 41.8946, 39.7678, 19.9638, 39.1868, 19.1198, 27.4401, 22, 26, 22, 25, 24, 23, 29, 23, 34, 19, 39, 19, 44, 15, 45.1977, 15, 41.8946, 39.7678, 43.4228, 41.3806, 42.0191, 65.3034, 17.2099, 64.8417, 16.404, 42.2231, 19.9638, 39.1868, 42.0191, 65.3034, 43.7593, 67.3959, 39.9293, 90.513, 16.6942, 88.6245, 14.9926, 67.4763, 17.2099, 64.8417, 39.9293, 90.513, 40.0064, 90.6062, 41.7542, 116.383, 40.9418, 117.302, 29.7451, 116.809, 26, 114, 22, 114, 22, 113, 18, 110, 14.0972, 110, 14.8609, 90.573, 16.6942, 88.6245, 14.8609, 90.573, 14.0972, 110, 14, 110, 11, 109, 11, 108, 6, 105, 6, 99, 6.15233, 90.317, 69.5805, 18.3546, 67.0739, 41.8496, 66.534, 42.37, 43.4228, 41.3806, 41.8946, 39.7678, 45.2666, 14.4835, 65.4613, 14.3145, 66.534, 42.37, 68.6898, 66.9299, 67.4574, 68.3857, 43.7593, 67.3959, 42.0191, 65.3034, 43.4228, 41.3806, 67.4574, 68.3857, 69.1074, 88.2666, 66.7385, 90.8323, 40.0064, 90.6062, 39.9293, 90.513, 43.7593, 67.3959, 66.7385, 90.8323, 65.1923, 113.826, 41.7542, 116.383, 40.0064, 90.6062, 74, 4, 82, 11, 85, 11, 85, 13, 89, 15, 89, 17.8885, 69.5805, 18.3546, 65.4613, 14.3145, 67.6064, 4, 70, 4, 70, 3, 74, 3, 65.4613, 14.3145, 49.3672, 14.4492, 51, 12, 53, 12, 55, 10, 58, 10, 60, 9, 60, 8, 61, 7, 65, 7, 65, 6, 67, 4, 67.6064, 4, 94.8406, 40.0048, 92.2197, 42.3484, 67.0739, 41.8496, 69.5805, 18.3546, 92.3703, 17.8076, 92.2197, 42.3484, 89.726, 64.694, 68.6898, 66.9299, 66.534, 42.37, 67.0739, 41.8496, 94.6971, 68.9358, 93.0974, 92.5784, 92.9017, 92.7277, 69.1074, 88.2666, 67.4574, 68.3857, 68.6898, 66.9299, 89.726, 64.694, 92.9017, 92.7277, 89.0792, 117.303, 68.2836, 116.274, 65.1923, 113.826, 66.7385, 90.8323, 69.1074, 88.2666, 84.175, 117.06, 83, 118, 78, 118, 78, 119, 76, 122, 70, 122, 67.2874, 125.617, 68.2836, 116.274, 103, 28, 105, 28, 105, 30, 106, 31, 109, 31, 109, 34, 110, 35, 113, 35, 113, 43.4565, 94.8406, 40.0048, 92.503, 19, 93, 19, 113.848, 43.6177, 117.565, 63.6165, 115.747, 65.8505, 94.6971, 68.9358, 89.726, 64.694, 92.2197, 42.3484, 94.8406, 40.0048, 118.281, 89.2678, 114.613, 93.6621, 93.0974, 92.5784, 94.6971, 68.9358, 115.747, 65.8505, 114.613, 93.6621, 115, 95.2133, 115, 100, 114, 100, 113, 102, 110, 102, 106, 104, 106, 105, 105, 106, 102, 106, 102, 107, 100, 109, 98, 109, 95, 110, 95, 111, 92, 114, 89.5929, 114, 92.9017, 92.7277, 93.0974, 92.5784, 115, 95.2133, 114.613, 93.6621, 115, 93.1981, 68.2836, 116.274, 67.2874, 125.617, 67, 126, 51, 126, 51, 125, 47, 124, 47, 123, 46, 122, 42, 122, 42, 121, 41.1336, 120.567, 40.9418, 117.302, 41.7542, 116.383, 65.1923, 113.826, 40.9418, 117.302, 41.1336, 120.567, 36, 118, 30, 118, 30, 117, 29.7451, 116.809) -polygons = [PackedInt32Array(88, 89, 90), PackedInt32Array(90, 91, 92), PackedInt32Array(92, 93, 94), PackedInt32Array(88, 90, 92), PackedInt32Array(92, 94, 88), PackedInt32Array(105, 95, 96), PackedInt32Array(96, 97, 98), PackedInt32Array(98, 99, 100), PackedInt32Array(101, 102, 103), PackedInt32Array(103, 104, 105), PackedInt32Array(105, 96, 98), PackedInt32Array(98, 100, 101), PackedInt32Array(103, 105, 98), PackedInt32Array(98, 101, 103), PackedInt32Array(110, 106, 107), PackedInt32Array(107, 108, 109), PackedInt32Array(109, 110, 107), PackedInt32Array(121, 111, 112), PackedInt32Array(112, 113, 114), PackedInt32Array(114, 115, 116), PackedInt32Array(117, 118, 119), PackedInt32Array(119, 120, 121), PackedInt32Array(112, 114, 116), PackedInt32Array(119, 121, 112), PackedInt32Array(112, 116, 117), PackedInt32Array(117, 119, 112), PackedInt32Array(127, 122, 123), PackedInt32Array(123, 124, 125), PackedInt32Array(125, 126, 127), PackedInt32Array(127, 123, 125), PackedInt32Array(133, 128, 129), PackedInt32Array(129, 130, 131), PackedInt32Array(131, 132, 133), PackedInt32Array(133, 129, 131), PackedInt32Array(145, 134, 135), PackedInt32Array(135, 136, 137), PackedInt32Array(137, 138, 139), PackedInt32Array(139, 140, 141), PackedInt32Array(142, 143, 144), PackedInt32Array(144, 145, 135), PackedInt32Array(135, 137, 139), PackedInt32Array(139, 141, 142), PackedInt32Array(142, 144, 135), PackedInt32Array(135, 139, 142), PackedInt32Array(153, 146, 147), PackedInt32Array(147, 148, 149), PackedInt32Array(150, 151, 152), PackedInt32Array(152, 153, 147), PackedInt32Array(147, 149, 150), PackedInt32Array(150, 152, 147), PackedInt32Array(160, 154, 155), PackedInt32Array(155, 156, 157), PackedInt32Array(157, 158, 159), PackedInt32Array(159, 160, 155), PackedInt32Array(155, 157, 159), PackedInt32Array(166, 161, 162), PackedInt32Array(162, 163, 164), PackedInt32Array(164, 165, 166), PackedInt32Array(166, 162, 164), PackedInt32Array(172, 167, 168), PackedInt32Array(168, 169, 170), PackedInt32Array(170, 171, 172), PackedInt32Array(172, 168, 170), PackedInt32Array(176, 173, 174), PackedInt32Array(174, 175, 176), PackedInt32Array(178, 179, 180), PackedInt32Array(180, 181, 182), PackedInt32Array(182, 183, 184), PackedInt32Array(184, 185, 186), PackedInt32Array(186, 187, 188), PackedInt32Array(178, 180, 182), PackedInt32Array(182, 184, 186), PackedInt32Array(186, 188, 177), PackedInt32Array(177, 178, 182), PackedInt32Array(182, 186, 177), PackedInt32Array(189, 190, 191), PackedInt32Array(192, 193, 194), PackedInt32Array(195, 196, 197), PackedInt32Array(198, 199, 200), PackedInt32Array(200, 201, 189), PackedInt32Array(189, 191, 192), PackedInt32Array(195, 197, 198), PackedInt32Array(198, 200, 189), PackedInt32Array(189, 192, 194), PackedInt32Array(194, 195, 198), PackedInt32Array(198, 189, 194), PackedInt32Array(206, 202, 203), PackedInt32Array(203, 204, 205), PackedInt32Array(205, 206, 203), PackedInt32Array(211, 207, 208), PackedInt32Array(208, 209, 210), PackedInt32Array(210, 211, 208), PackedInt32Array(218, 212, 213), PackedInt32Array(213, 214, 215), PackedInt32Array(215, 216, 217), PackedInt32Array(217, 218, 213), PackedInt32Array(213, 215, 217), PackedInt32Array(224, 219, 220), PackedInt32Array(220, 221, 222), PackedInt32Array(222, 223, 224), PackedInt32Array(224, 220, 222), PackedInt32Array(232, 225, 226), PackedInt32Array(227, 228, 229), PackedInt32Array(230, 231, 232), PackedInt32Array(232, 226, 227), PackedInt32Array(227, 229, 230), PackedInt32Array(230, 232, 227), PackedInt32Array(233, 234, 235), PackedInt32Array(236, 237, 238), PackedInt32Array(239, 240, 241), PackedInt32Array(241, 242, 243), PackedInt32Array(243, 244, 233), PackedInt32Array(238, 239, 241), PackedInt32Array(241, 243, 233), PackedInt32Array(236, 238, 241), PackedInt32Array(241, 233, 235), PackedInt32Array(235, 236, 241), PackedInt32Array(251, 245, 246), PackedInt32Array(246, 247, 248), PackedInt32Array(248, 249, 250), PackedInt32Array(250, 251, 246), PackedInt32Array(246, 248, 250), PackedInt32Array(256, 252, 253), PackedInt32Array(253, 254, 255), PackedInt32Array(255, 256, 253), PackedInt32Array(275, 257, 258), PackedInt32Array(258, 259, 260), PackedInt32Array(260, 261, 262), PackedInt32Array(263, 264, 265), PackedInt32Array(266, 267, 268), PackedInt32Array(270, 271, 272), PackedInt32Array(272, 273, 274), PackedInt32Array(274, 275, 258), PackedInt32Array(258, 260, 262), PackedInt32Array(263, 265, 266), PackedInt32Array(266, 268, 269), PackedInt32Array(270, 272, 274), PackedInt32Array(274, 258, 262), PackedInt32Array(266, 269, 270), PackedInt32Array(274, 262, 263), PackedInt32Array(266, 270, 274), PackedInt32Array(274, 263, 266), PackedInt32Array(278, 276, 277), PackedInt32Array(292, 279, 280), PackedInt32Array(280, 281, 282), PackedInt32Array(283, 284, 285), PackedInt32Array(286, 287, 288), PackedInt32Array(288, 289, 290), PackedInt32Array(290, 291, 292), PackedInt32Array(292, 280, 282), PackedInt32Array(283, 285, 286), PackedInt32Array(286, 288, 290), PackedInt32Array(292, 282, 283), PackedInt32Array(283, 286, 290), PackedInt32Array(290, 292, 283), PackedInt32Array(293, 294, 295), PackedInt32Array(295, 296, 297), PackedInt32Array(297, 298, 293), PackedInt32Array(293, 295, 297)] -bones = ["Bone-0", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 1, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 1, 0.7, 0.7, 0, 0, 0, 0.7, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-1", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-2", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 1, 0.7, 0.7, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-3", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-4", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-5", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 1, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0.7, 0, 0.7, 0, 0.7, 0.7), "Bone-6", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-7", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-8", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-9", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0), "Bone-10", PackedFloat32Array(0.7, 0.7, 0, 0.7, 0.7, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0.7, 0.7, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 1, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 1, 0.7, 0.7, 1, 0.7, 1, 1, 1, 1, 0.7, 0.7, 1, 0.7, 0.7, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-11", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-12", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-13", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-14", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 1, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0), "Bone-15", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 1, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-16", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-17", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-18", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0.7, 0.7, 1, 0.7, 1, 0.7, 0.7, 0.7, 0.7, 0.7, 1, 0.7, 0.7, 0.7, 1, 1, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-19", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7)] -internal_vertex_count = 211 +polygon = PackedVector2Array(70, 4, 67, 4, 65, 6, 65, 7, 61, 7, 60, 8, 60, 9, 58, 10, 55, 10, 53, 12, 51, 12, 49, 15, 44, 15, 39, 19, 34, 19, 29, 23, 24, 23, 22, 25, 22, 26, 14, 30, 14, 31, 10, 31, 6, 34, 4, 34, 5, 37, 6, 37, 6, 42, 7, 42, 6, 99, 6, 105, 11, 108, 11, 109, 14, 110, 18, 110, 22, 113, 22, 114, 26, 114, 30, 117, 30, 118, 36, 118, 42, 121, 42, 122, 46, 122, 47, 123, 47, 124, 51, 125, 51, 126, 67, 126, 70, 122, 76, 122, 78, 119, 78, 118, 83, 118, 88, 114, 92, 114, 95, 111, 95, 110, 98, 109, 100, 109, 102, 107, 102, 106, 105, 106, 106, 105, 106, 104, 110, 102, 113, 102, 114, 100, 115, 100, 115, 87, 113, 83, 113, 35, 110, 35, 109, 34, 109, 31, 106, 31, 105, 30, 105, 28, 103, 28, 93, 19, 90, 19, 89, 18, 89, 15, 85, 13, 85, 11, 82, 11, 74, 4, 74, 3, 70, 3, 16.5, 65.5, 6.58772, 65.5, 6.80702, 53, 16.5, 53, 16.5, 53, 6.80702, 53, 7, 42, 6, 42, 6, 40.5, 16.5, 40.5, 16.5, 40.5, 6, 40.5, 6, 37, 5, 37, 4, 34, 6, 34, 10, 31, 14, 31, 14, 30, 16.5, 28.75, 16.5, 90.5, 6.14912, 90.5, 6.36842, 78, 16.5, 78, 16.5, 78, 6.36842, 78, 6.58772, 65.5, 16.5, 65.5, 29, 28, 18, 28, 22, 26, 22, 25, 24, 23, 29, 23, 41.5, 40.5, 29, 40.5, 29, 28, 41.5, 28, 29, 40.5, 16.5, 40.5, 16.5, 28.75, 18, 28, 29, 28, 41.5, 28, 29, 28, 29, 23, 34, 19, 39, 19, 41.5, 17, 29, 53, 16.5, 53, 16.5, 40.5, 29, 40.5, 41.5, 65.5, 29, 65.5, 29, 53, 41.5, 53, 29, 65.5, 16.5, 65.5, 16.5, 53, 29, 53, 41.5, 53, 29, 53, 29, 40.5, 41.5, 40.5, 29, 78, 16.5, 78, 16.5, 65.5, 29, 65.5, 41.5, 90.5, 29, 90.5, 29, 78, 41.5, 78, 29, 90.5, 16.5, 90.5, 16.5, 78, 29, 78, 41.5, 78, 29, 78, 29, 65.5, 41.5, 65.5, 29, 103, 16.5, 103, 16.5, 90.5, 29, 90.5, 41.5, 115.5, 29, 115.5, 29, 103, 41.5, 103, 29, 115.5, 28, 115.5, 26, 114, 22, 114, 22, 113, 18, 110, 16.5, 110, 16.5, 103, 29, 103, 41.5, 103, 29, 103, 29, 90.5, 41.5, 90.5, 16.5, 110, 14, 110, 11, 109, 11, 108, 6, 105, 6, 103, 16.5, 103, 16.5, 103, 6, 103, 6, 99, 6.14912, 90.5, 16.5, 90.5, 29, 116.25, 28, 115.5, 29, 115.5, 41.5, 120.75, 36, 118, 30, 118, 30, 117, 29, 116.25, 29, 115.5, 41.5, 115.5, 54, 28, 41.5, 28, 41.5, 17, 43.375, 15.5, 54, 15.5, 66.5, 40.5, 54, 40.5, 54, 28, 66.5, 28, 54, 40.5, 41.5, 40.5, 41.5, 28, 54, 28, 66.5, 28, 54, 28, 54, 15.5, 66.5, 15.5, 66.5, 15.5, 54, 15.5, 54, 11, 55, 10, 58, 10, 60, 9, 60, 8, 61, 7, 65, 7, 65, 6, 66.5, 4.5, 54, 15.5, 43.375, 15.5, 44, 15, 49, 15, 51, 12, 53, 12, 54, 11, 54, 53, 41.5, 53, 41.5, 40.5, 54, 40.5, 66.5, 65.5, 54, 65.5, 54, 53, 66.5, 53, 54, 65.5, 41.5, 65.5, 41.5, 53, 54, 53, 66.5, 53, 54, 53, 54, 40.5, 66.5, 40.5, 54, 78, 41.5, 78, 41.5, 65.5, 54, 65.5, 66.5, 90.5, 54, 90.5, 54, 78, 66.5, 78, 54, 90.5, 41.5, 90.5, 41.5, 78, 54, 78, 66.5, 78, 54, 78, 54, 65.5, 66.5, 65.5, 54, 103, 41.5, 103, 41.5, 90.5, 54, 90.5, 66.5, 115.5, 54, 115.5, 54, 103, 66.5, 103, 54, 115.5, 41.5, 115.5, 41.5, 103, 54, 103, 66.5, 103, 54, 103, 54, 90.5, 66.5, 90.5, 79, 28, 66.5, 28, 66.5, 15.5, 79, 15.5, 91.5, 40.5, 79, 40.5, 79, 28, 91.5, 28, 79, 40.5, 66.5, 40.5, 66.5, 28, 79, 28, 89, 18, 90, 19, 91.5, 19, 91.5, 28, 79, 28, 79, 15.5, 89, 15.5, 82, 11, 85, 11, 85, 13, 89, 15, 89, 15.5, 79, 15.5, 79, 8.375, 74, 4, 79, 8.375, 79, 15.5, 66.5, 15.5, 66.5, 4.5, 67, 4, 70, 4, 70, 3, 74, 3, 79, 53, 66.5, 53, 66.5, 40.5, 79, 40.5, 91.5, 65.5, 79, 65.5, 79, 53, 91.5, 53, 79, 65.5, 66.5, 65.5, 66.5, 53, 79, 53, 91.5, 53, 79, 53, 79, 40.5, 91.5, 40.5, 79, 78, 66.5, 78, 66.5, 65.5, 79, 65.5, 91.5, 90.5, 79, 90.5, 79, 78, 91.5, 78, 79, 90.5, 66.5, 90.5, 66.5, 78, 79, 78, 91.5, 78, 79, 78, 79, 65.5, 91.5, 65.5, 79, 103, 66.5, 103, 66.5, 90.5, 79, 90.5, 91.5, 114, 88, 114, 86.125, 115.5, 79, 115.5, 79, 103, 91.5, 103, 79, 115.5, 66.5, 115.5, 66.5, 103, 79, 103, 91.5, 103, 79, 103, 79, 90.5, 91.5, 90.5, 79, 118, 78, 118, 78, 119, 76, 122, 70, 122, 67, 126, 66.5, 126, 66.5, 115.5, 79, 115.5, 83, 118, 79, 118, 79, 115.5, 86.125, 115.5, 103, 28, 91.5, 28, 91.5, 19, 93, 19, 105, 30, 106, 31, 109, 31, 109, 34, 110, 35, 113, 35, 113, 40.5, 104, 40.5, 104, 28, 105, 28, 104, 40.5, 91.5, 40.5, 91.5, 28, 104, 28, 104, 53, 91.5, 53, 91.5, 40.5, 104, 40.5, 113, 65.5, 104, 65.5, 104, 53, 113, 53, 104, 65.5, 91.5, 65.5, 91.5, 53, 104, 53, 113, 53, 104, 53, 104, 40.5, 113, 40.5, 104, 78, 91.5, 78, 91.5, 65.5, 104, 65.5, 113, 83, 115, 87, 115, 90.5, 104, 90.5, 104, 78, 113, 78, 104, 90.5, 91.5, 90.5, 91.5, 78, 104, 78, 113, 78, 104, 78, 104, 65.5, 113, 65.5, 104, 103, 91.5, 103, 91.5, 90.5, 104, 90.5, 106, 104, 106, 105, 105, 106, 104, 106, 104, 103, 108, 103, 104, 106, 102, 106, 102, 107, 100, 109, 98, 109, 95, 110, 95, 111, 92, 114, 91.5, 114, 91.5, 103, 104, 103, 115, 100, 114, 100, 113, 102, 110, 102, 108, 103, 104, 103, 104, 90.5, 115, 90.5, 54, 126, 51, 126, 51, 125, 47, 124, 47, 123, 46, 122, 42, 122, 42, 121, 41.5, 120.75, 41.5, 115.5, 54, 115.5, 66.5, 126, 54, 126, 54, 115.5, 66.5, 115.5) +polygons = [PackedInt32Array(91, 88, 89), PackedInt32Array(89, 90, 91), PackedInt32Array(97, 92, 93), PackedInt32Array(94, 95, 96), PackedInt32Array(97, 93, 94), PackedInt32Array(94, 96, 97), PackedInt32Array(107, 98, 99), PackedInt32Array(100, 101, 102), PackedInt32Array(103, 104, 105), PackedInt32Array(105, 106, 107), PackedInt32Array(100, 102, 103), PackedInt32Array(105, 107, 99), PackedInt32Array(100, 103, 105), PackedInt32Array(105, 99, 100), PackedInt32Array(111, 108, 109), PackedInt32Array(109, 110, 111), PackedInt32Array(115, 112, 113), PackedInt32Array(113, 114, 115), PackedInt32Array(121, 116, 117), PackedInt32Array(118, 119, 120), PackedInt32Array(121, 117, 118), PackedInt32Array(118, 120, 121), PackedInt32Array(125, 122, 123), PackedInt32Array(123, 124, 125), PackedInt32Array(130, 126, 127), PackedInt32Array(127, 128, 129), PackedInt32Array(129, 130, 127), PackedInt32Array(136, 131, 132), PackedInt32Array(132, 133, 134), PackedInt32Array(135, 136, 132), PackedInt32Array(132, 134, 135), PackedInt32Array(140, 137, 138), PackedInt32Array(138, 139, 140), PackedInt32Array(144, 141, 142), PackedInt32Array(142, 143, 144), PackedInt32Array(148, 145, 146), PackedInt32Array(146, 147, 148), PackedInt32Array(152, 149, 150), PackedInt32Array(150, 151, 152), PackedInt32Array(156, 153, 154), PackedInt32Array(154, 155, 156), PackedInt32Array(160, 157, 158), PackedInt32Array(158, 159, 160), PackedInt32Array(164, 161, 162), PackedInt32Array(162, 163, 164), PackedInt32Array(168, 165, 166), PackedInt32Array(166, 167, 168), PackedInt32Array(172, 169, 170), PackedInt32Array(170, 171, 172), PackedInt32Array(176, 173, 174), PackedInt32Array(174, 175, 176), PackedInt32Array(185, 177, 178), PackedInt32Array(179, 180, 181), PackedInt32Array(182, 183, 184), PackedInt32Array(184, 185, 178), PackedInt32Array(179, 181, 182), PackedInt32Array(184, 178, 179), PackedInt32Array(179, 182, 184), PackedInt32Array(189, 186, 187), PackedInt32Array(187, 188, 189), PackedInt32Array(196, 190, 191), PackedInt32Array(191, 192, 193), PackedInt32Array(193, 194, 195), PackedInt32Array(195, 196, 191), PackedInt32Array(191, 193, 195), PackedInt32Array(201, 197, 198), PackedInt32Array(198, 199, 200), PackedInt32Array(200, 201, 198), PackedInt32Array(204, 202, 203), PackedInt32Array(211, 205, 206), PackedInt32Array(206, 207, 208), PackedInt32Array(208, 209, 210), PackedInt32Array(210, 211, 206), PackedInt32Array(206, 208, 210), PackedInt32Array(216, 212, 213), PackedInt32Array(213, 214, 215), PackedInt32Array(215, 216, 213), PackedInt32Array(220, 217, 218), PackedInt32Array(218, 219, 220), PackedInt32Array(224, 221, 222), PackedInt32Array(222, 223, 224), PackedInt32Array(228, 225, 226), PackedInt32Array(226, 227, 228), PackedInt32Array(229, 230, 231), PackedInt32Array(231, 232, 233), PackedInt32Array(234, 235, 236), PackedInt32Array(237, 238, 239), PackedInt32Array(229, 231, 233), PackedInt32Array(234, 236, 237), PackedInt32Array(237, 239, 229), PackedInt32Array(229, 233, 234), PackedInt32Array(234, 237, 229), PackedInt32Array(240, 241, 242), PackedInt32Array(243, 244, 245), PackedInt32Array(245, 246, 240), PackedInt32Array(240, 242, 243), PackedInt32Array(243, 245, 240), PackedInt32Array(250, 247, 248), PackedInt32Array(248, 249, 250), PackedInt32Array(254, 251, 252), PackedInt32Array(252, 253, 254), PackedInt32Array(258, 255, 256), PackedInt32Array(256, 257, 258), PackedInt32Array(262, 259, 260), PackedInt32Array(260, 261, 262), PackedInt32Array(266, 263, 264), PackedInt32Array(264, 265, 266), PackedInt32Array(270, 267, 268), PackedInt32Array(268, 269, 270), PackedInt32Array(274, 271, 272), PackedInt32Array(272, 273, 274), PackedInt32Array(278, 275, 276), PackedInt32Array(276, 277, 278), PackedInt32Array(282, 279, 280), PackedInt32Array(280, 281, 282), PackedInt32Array(286, 283, 284), PackedInt32Array(284, 285, 286), PackedInt32Array(290, 287, 288), PackedInt32Array(288, 289, 290), PackedInt32Array(294, 291, 292), PackedInt32Array(292, 293, 294), PackedInt32Array(298, 295, 296), PackedInt32Array(296, 297, 298), PackedInt32Array(302, 299, 300), PackedInt32Array(300, 301, 302), PackedInt32Array(306, 303, 304), PackedInt32Array(304, 305, 306), PackedInt32Array(308, 309, 310), PackedInt32Array(310, 311, 312), PackedInt32Array(312, 313, 307), PackedInt32Array(307, 308, 310), PackedInt32Array(310, 312, 307), PackedInt32Array(314, 315, 316), PackedInt32Array(316, 317, 318), PackedInt32Array(319, 320, 314), PackedInt32Array(316, 318, 319), PackedInt32Array(319, 314, 316), PackedInt32Array(321, 322, 323), PackedInt32Array(323, 324, 325), PackedInt32Array(325, 326, 327), PackedInt32Array(327, 328, 329), PackedInt32Array(321, 323, 325), PackedInt32Array(327, 329, 321), PackedInt32Array(321, 325, 327), PackedInt32Array(333, 330, 331), PackedInt32Array(331, 332, 333), PackedInt32Array(337, 334, 335), PackedInt32Array(335, 336, 337), PackedInt32Array(341, 338, 339), PackedInt32Array(339, 340, 341), PackedInt32Array(345, 342, 343), PackedInt32Array(343, 344, 345), PackedInt32Array(349, 346, 347), PackedInt32Array(347, 348, 349), PackedInt32Array(353, 350, 351), PackedInt32Array(351, 352, 353), PackedInt32Array(357, 354, 355), PackedInt32Array(355, 356, 357), PackedInt32Array(361, 358, 359), PackedInt32Array(359, 360, 361), PackedInt32Array(365, 362, 363), PackedInt32Array(363, 364, 365), PackedInt32Array(371, 366, 367), PackedInt32Array(367, 368, 369), PackedInt32Array(369, 370, 371), PackedInt32Array(371, 367, 369), PackedInt32Array(375, 372, 373), PackedInt32Array(373, 374, 375), PackedInt32Array(379, 376, 377), PackedInt32Array(377, 378, 379), PackedInt32Array(388, 380, 381), PackedInt32Array(381, 382, 383), PackedInt32Array(384, 385, 386), PackedInt32Array(387, 388, 381), PackedInt32Array(381, 383, 384), PackedInt32Array(384, 386, 387), PackedInt32Array(387, 381, 384), PackedInt32Array(392, 389, 390), PackedInt32Array(390, 391, 392), PackedInt32Array(396, 393, 394), PackedInt32Array(394, 395, 396), PackedInt32Array(398, 399, 400), PackedInt32Array(401, 402, 403), PackedInt32Array(404, 405, 406), PackedInt32Array(400, 401, 403), PackedInt32Array(404, 406, 397), PackedInt32Array(398, 400, 403), PackedInt32Array(403, 404, 397), PackedInt32Array(397, 398, 403), PackedInt32Array(410, 407, 408), PackedInt32Array(408, 409, 410), PackedInt32Array(414, 411, 412), PackedInt32Array(412, 413, 414), PackedInt32Array(418, 415, 416), PackedInt32Array(416, 417, 418), PackedInt32Array(422, 419, 420), PackedInt32Array(420, 421, 422), PackedInt32Array(426, 423, 424), PackedInt32Array(424, 425, 426), PackedInt32Array(430, 427, 428), PackedInt32Array(428, 429, 430), PackedInt32Array(431, 432, 433), PackedInt32Array(433, 434, 435), PackedInt32Array(435, 436, 431), PackedInt32Array(431, 433, 435), PackedInt32Array(440, 437, 438), PackedInt32Array(438, 439, 440), PackedInt32Array(444, 441, 442), PackedInt32Array(442, 443, 444), PackedInt32Array(448, 445, 446), PackedInt32Array(446, 447, 448), PackedInt32Array(449, 450, 451), PackedInt32Array(451, 452, 453), PackedInt32Array(453, 454, 449), PackedInt32Array(449, 451, 453), PackedInt32Array(465, 455, 456), PackedInt32Array(456, 457, 458), PackedInt32Array(460, 461, 462), PackedInt32Array(462, 463, 464), PackedInt32Array(464, 465, 456), PackedInt32Array(456, 458, 459), PackedInt32Array(460, 462, 464), PackedInt32Array(464, 456, 459), PackedInt32Array(459, 460, 464), PackedInt32Array(473, 466, 467), PackedInt32Array(467, 468, 469), PackedInt32Array(469, 470, 471), PackedInt32Array(471, 472, 473), PackedInt32Array(473, 467, 469), PackedInt32Array(469, 471, 473), PackedInt32Array(484, 474, 475), PackedInt32Array(476, 477, 478), PackedInt32Array(479, 480, 481), PackedInt32Array(481, 482, 483), PackedInt32Array(484, 475, 476), PackedInt32Array(476, 478, 479), PackedInt32Array(479, 481, 483), PackedInt32Array(483, 484, 476), PackedInt32Array(476, 479, 483), PackedInt32Array(488, 485, 486), PackedInt32Array(486, 487, 488)] +bones = ["Bone-0", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-1", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-2", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-3", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-4", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-5", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0), "Bone-6", PackedFloat32Array(0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-7", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-8", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-9", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1), "Bone-10", PackedFloat32Array(1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-11", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-12", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-13", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1), "Bone-14", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-15", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-16", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-17", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-18", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1)] +internal_vertex_count = 401 script = ExtResource("2_2dapw") vertex_interval = 25 -radius = 19 -rigidbody_scene = ExtResource("3_6ern4") margin_pixels = -1 -voronoi_interval = 0.15 +min_area = 0.3 stiffness = 0.1 damping = 9.1 rest_length_ratio = 1.1 length_ratio = 0.1 softness = 100.0 +radius = 19 +rigidbody_scene = ExtResource("3_6ern4") physics_material_override = ExtResource("5_221ya") [node name="Skeleton2D" type="Skeleton2D" parent="Butter9"] visible = false -modification_stack = SubResource("SkeletonModificationStack2D_d0i4p") +modification_stack = SubResource("SkeletonModificationStack2D_uj7dr") [node name="Bone-0" type="Bone2D" parent="Butter9/Skeleton2D"] -position = Vector2(11.9819, 47.4582) -rotation = 0.260871 -rest = Transform2D(0.966166, 0.257922, -0.257922, 0.966166, 11.9819, 47.4582) +position = Vector2(10.25, 47.125) +rotation = 1.02504 +rest = Transform2D(0.519068, 0.854733, -0.854733, 0.519068, 10.25, 47.125) auto_calculate_length_and_angle = false length = 25.0 bone_angle = 0.0 -metadata/vert_owned = [88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105] -metadata/connected_nodes_paths = [NodePath("Bone-1"), NodePath("Bone-2"), NodePath("Bone-3"), NodePath("Bone-4")] +metadata/vert_owned = [88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107] +metadata/idx = 0 +metadata/connected_nodes_paths = [NodePath("Bone-1"), NodePath("Bone-3"), NodePath("Bone-4"), NodePath("Bone-2")] +metadata/connected_nodes_idx = [1, 3, 4, 2] metadata/_local_pose_override_enabled_ = true [node name="Bone-1" type="Bone2D" parent="Butter9/Skeleton2D"] -position = Vector2(11.4233, 78.7417) -rotation = -0.059216 -rest = Transform2D(0.998247, -0.0591814, 0.0591814, 0.998247, 11.4233, 78.7417) +position = Vector2(11.3246, 78) +rest = Transform2D(1, 0, 0, 1, 11.3246, 78) auto_calculate_length_and_angle = false length = 25.0 bone_angle = 0.0 -metadata/vert_owned = [106, 107, 108, 109, 110] +metadata/vert_owned = [108, 109, 110, 111, 112, 113, 114, 115] +metadata/idx = 1 metadata/connected_nodes_paths = [NodePath("Bone-0"), NodePath("Bone-3"), NodePath("Bone-4"), NodePath("Bone-5")] +metadata/connected_nodes_idx = [0, 3, 4, 5] metadata/_local_pose_override_enabled_ = true [node name="Bone-2" type="Bone2D" parent="Butter9/Skeleton2D"] -position = Vector2(32.1588, 27.3839) -rotation = 0.0406232 -rest = Transform2D(0.999175, 0.0406121, -0.0406121, 0.999175, 32.1588, 27.3839) +position = Vector2(29, 28.75) +rotation = -0.244979 +scale = Vector2(1, 1) +rest = Transform2D(0.970142, -0.242536, 0.242536, 0.970142, 29, 28.75) auto_calculate_length_and_angle = false length = 25.0 bone_angle = 0.0 -metadata/vert_owned = [111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121] +metadata/vert_owned = [116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136] +metadata/idx = 2 metadata/connected_nodes_paths = [NodePath("Bone-0"), NodePath("Bone-3"), NodePath("Bone-6"), NodePath("Bone-7")] +metadata/connected_nodes_idx = [0, 3, 6, 7] metadata/_local_pose_override_enabled_ = true [node name="Bone-3" type="Bone2D" parent="Butter9/Skeleton2D"] -position = Vector2(29.9134, 52.2451) -rotation = 1.59192 -rest = Transform2D(-0.0211265, 0.999777, -0.999777, -0.0211265, 29.9134, 52.2451) +position = Vector2(29, 53) +rotation = -1.5708 +rest = Transform2D(-4.37114e-08, -1, 1, -4.37114e-08, 29, 53) auto_calculate_length_and_angle = false length = 25.0 bone_angle = 0.0 -metadata/vert_owned = [122, 123, 124, 125, 126, 127] -metadata/connected_nodes_paths = [NodePath("Bone-0"), NodePath("Bone-1"), NodePath("Bone-2"), NodePath("Bone-4"), NodePath("Bone-6"), NodePath("Bone-7"), NodePath("Bone-8")] +metadata/vert_owned = [137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152] +metadata/idx = 3 +metadata/connected_nodes_paths = [NodePath("Bone-0"), NodePath("Bone-1"), NodePath("Bone-4"), NodePath("Bone-2"), NodePath("Bone-6"), NodePath("Bone-7"), NodePath("Bone-8")] +metadata/connected_nodes_idx = [0, 1, 4, 2, 6, 7, 8] metadata/_local_pose_override_enabled_ = true [node name="Bone-4" type="Bone2D" parent="Butter9/Skeleton2D"] -position = Vector2(29.376, 77.6774) -rotation = 1.78493 -rest = Transform2D(-0.212503, 0.97716, -0.97716, -0.212503, 29.376, 77.6774) +position = Vector2(29, 78) +rotation = 1.7586 +rest = Transform2D(-0.186704, 0.982416, -0.982416, -0.186704, 29, 78) auto_calculate_length_and_angle = false length = 25.0 bone_angle = 0.0 -metadata/vert_owned = [128, 129, 130, 131, 132, 133] +metadata/vert_owned = [153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168] +metadata/idx = 4 metadata/connected_nodes_paths = [NodePath("Bone-0"), NodePath("Bone-1"), NodePath("Bone-3"), NodePath("Bone-5"), NodePath("Bone-7"), NodePath("Bone-8"), NodePath("Bone-9")] +metadata/connected_nodes_idx = [0, 1, 3, 5, 7, 8, 9] metadata/_local_pose_override_enabled_ = true [node name="Bone-5" type="Bone2D" parent="Butter9/Skeleton2D"] -position = Vector2(23.8771, 102.963) -rotation = -0.661389 -rest = Transform2D(0.78914, -0.614213, 0.614213, 0.78914, 23.8771, 102.963) +position = Vector2(23.75, 105.625) +rotation = -1.38299 +scale = Vector2(1, 1) +rest = Transform2D(0.186704, -0.982416, 0.982416, 0.186704, 23.75, 105.625) auto_calculate_length_and_angle = false length = 25.0 bone_angle = 0.0 -metadata/vert_owned = [134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153] -metadata/connected_nodes_paths = [NodePath("Bone-1"), NodePath("Bone-4"), NodePath("Bone-8"), NodePath("Bone-9"), NodePath("Bone-19")] +metadata/vert_owned = [169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211] +metadata/idx = 5 +metadata/connected_nodes_paths = [NodePath("Bone-18"), NodePath("Bone-1"), NodePath("Bone-4"), NodePath("Bone-8"), NodePath("Bone-9")] +metadata/connected_nodes_idx = [18, 1, 4, 8, 9] metadata/_local_pose_override_enabled_ = true [node name="Bone-6" type="Bone2D" parent="Butter9/Skeleton2D"] -position = Vector2(55.7376, 28.3423) -rotation = -0.920185 -rest = Transform2D(0.605673, -0.795714, 0.795714, 0.605673, 55.7376, 28.3423) +position = Vector2(54, 22.5) +rotation = 2.25742 +scale = Vector2(1, 1) +rest = Transform2D(-0.633928, 0.773392, -0.773392, -0.633928, 54, 22.5) auto_calculate_length_and_angle = false length = 25.0 bone_angle = 0.0 -metadata/vert_owned = [154, 155, 156, 157, 158, 159, 160] -metadata/connected_nodes_paths = [NodePath("Bone-2"), NodePath("Bone-3"), NodePath("Bone-7"), NodePath("Bone-10"), NodePath("Bone-11"), NodePath("Bone-12")] +metadata/vert_owned = [212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246] +metadata/idx = 6 +metadata/connected_nodes_paths = [NodePath("Bone-10"), NodePath("Bone-2"), NodePath("Bone-3"), NodePath("Bone-7"), NodePath("Bone-11")] +metadata/connected_nodes_idx = [10, 2, 3, 7, 11] metadata/_local_pose_override_enabled_ = true [node name="Bone-7" type="Bone2D" parent="Butter9/Skeleton2D"] -position = Vector2(55.3545, 54.8831) -rotation = 1.60529 -rest = Transform2D(-0.0344882, 0.999405, -0.999405, -0.0344882, 55.3545, 54.8831) +position = Vector2(54, 53) +rotation = 1.5708 +rest = Transform2D(-4.37114e-08, 1, -1, -4.37114e-08, 54, 53) auto_calculate_length_and_angle = false length = 25.0 bone_angle = 0.0 -metadata/vert_owned = [161, 162, 163, 164, 165, 166] -metadata/connected_nodes_paths = [NodePath("Bone-2"), NodePath("Bone-3"), NodePath("Bone-4"), NodePath("Bone-6"), NodePath("Bone-8"), NodePath("Bone-11"), NodePath("Bone-12"), NodePath("Bone-13")] +metadata/vert_owned = [247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262] +metadata/idx = 7 +metadata/connected_nodes_paths = [NodePath("Bone-2"), NodePath("Bone-3"), NodePath("Bone-6"), NodePath("Bone-4"), NodePath("Bone-8"), NodePath("Bone-10"), NodePath("Bone-11"), NodePath("Bone-12")] +metadata/connected_nodes_idx = [2, 3, 6, 4, 8, 10, 11, 12] metadata/_local_pose_override_enabled_ = true [node name="Bone-8" type="Bone2D" parent="Butter9/Skeleton2D"] -position = Vector2(54.5183, 79.1141) -rotation = 1.61776 -rest = Transform2D(-0.0469479, 0.998897, -0.998897, -0.0469479, 54.5183, 79.1141) +position = Vector2(54, 78) +rotation = 1.5708 +rest = Transform2D(-4.37114e-08, 1, -1, -4.37114e-08, 54, 78) auto_calculate_length_and_angle = false length = 25.0 bone_angle = 0.0 -metadata/vert_owned = [167, 168, 169, 170, 171, 172] -metadata/connected_nodes_paths = [NodePath("Bone-3"), NodePath("Bone-4"), NodePath("Bone-5"), NodePath("Bone-7"), NodePath("Bone-9"), NodePath("Bone-12"), NodePath("Bone-13"), NodePath("Bone-14")] +metadata/vert_owned = [263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278] +metadata/idx = 8 +metadata/connected_nodes_paths = [NodePath("Bone-3"), NodePath("Bone-4"), NodePath("Bone-7"), NodePath("Bone-5"), NodePath("Bone-9"), NodePath("Bone-11"), NodePath("Bone-12"), NodePath("Bone-13")] +metadata/connected_nodes_idx = [3, 4, 7, 5, 9, 11, 12, 13] metadata/_local_pose_override_enabled_ = true [node name="Bone-9" type="Bone2D" parent="Butter9/Skeleton2D"] -position = Vector2(53.3725, 103.495) -rotation = -0.729803 -scale = Vector2(1, 1) -rest = Transform2D(0.745306, -0.666723, 0.666723, 0.745306, 53.3725, 103.495) +position = Vector2(54, 103) +rotation = 1.5708 +rest = Transform2D(-4.37114e-08, 1, -1, -4.37114e-08, 54, 103) auto_calculate_length_and_angle = false length = 25.0 bone_angle = 0.0 -metadata/vert_owned = [173, 174, 175, 176] -metadata/connected_nodes_paths = [NodePath("Bone-4"), NodePath("Bone-5"), NodePath("Bone-8"), NodePath("Bone-13"), NodePath("Bone-14"), NodePath("Bone-19")] +metadata/vert_owned = [279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294] +metadata/idx = 9 +metadata/connected_nodes_paths = [NodePath("Bone-4"), NodePath("Bone-5"), NodePath("Bone-8"), NodePath("Bone-18"), NodePath("Bone-12"), NodePath("Bone-13")] +metadata/connected_nodes_idx = [4, 5, 8, 18, 12, 13] metadata/_local_pose_override_enabled_ = true [node name="Bone-10" type="Bone2D" parent="Butter9/Skeleton2D"] -position = Vector2(69.1836, 10.6773) -rotation = 1.02534 -rest = Transform2D(0.518808, 0.854891, -0.854891, 0.518808, 69.1836, 10.6773) +position = Vector2(79, 21.75) +rotation = 1.5708 +rest = Transform2D(-4.37114e-08, 1, -1, -4.37114e-08, 79, 21.75) auto_calculate_length_and_angle = false length = 25.0 bone_angle = 0.0 -metadata/vert_owned = [177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201] -metadata/connected_nodes_paths = [NodePath("Bone-6"), NodePath("Bone-11")] +metadata/vert_owned = [295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329] +metadata/idx = 10 +metadata/connected_nodes_paths = [NodePath("Bone-6"), NodePath("Bone-7"), NodePath("Bone-11"), NodePath("Bone-14"), NodePath("Bone-15")] +metadata/connected_nodes_idx = [6, 7, 11, 14, 15] metadata/_local_pose_override_enabled_ = true [node name="Bone-11" type="Bone2D" parent="Butter9/Skeleton2D"] -position = Vector2(80.9573, 30.078) -rotation = 1.63571 -rest = Transform2D(-0.0648705, 0.997894, -0.997894, -0.0648705, 80.9573, 30.078) +position = Vector2(79, 53) +rotation = 1.5708 +rest = Transform2D(-4.37114e-08, 1, -1, -4.37114e-08, 79, 53) auto_calculate_length_and_angle = false length = 25.0 bone_angle = 0.0 -metadata/vert_owned = [202, 203, 204, 205, 206] -metadata/connected_nodes_paths = [NodePath("Bone-6"), NodePath("Bone-7"), NodePath("Bone-10"), NodePath("Bone-12"), NodePath("Bone-15"), NodePath("Bone-16")] +metadata/vert_owned = [330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345] +metadata/idx = 11 +metadata/connected_nodes_paths = [NodePath("Bone-6"), NodePath("Bone-7"), NodePath("Bone-10"), NodePath("Bone-8"), NodePath("Bone-12"), NodePath("Bone-14"), NodePath("Bone-15"), NodePath("Bone-16")] +metadata/connected_nodes_idx = [6, 7, 10, 8, 12, 14, 15, 16] metadata/_local_pose_override_enabled_ = true [node name="Bone-12" type="Bone2D" parent="Butter9/Skeleton2D"] -position = Vector2(79.3768, 54.3897) -rotation = 1.50099 -rest = Transform2D(0.069746, 0.997565, -0.997565, 0.069746, 79.3768, 54.3897) +position = Vector2(79, 78) +rotation = 1.5708 +rest = Transform2D(-4.37114e-08, 1, -1, -4.37114e-08, 79, 78) auto_calculate_length_and_angle = false length = 25.0 bone_angle = 0.0 -metadata/vert_owned = [207, 208, 209, 210, 211] -metadata/connected_nodes_paths = [NodePath("Bone-6"), NodePath("Bone-7"), NodePath("Bone-8"), NodePath("Bone-11"), NodePath("Bone-13"), NodePath("Bone-15"), NodePath("Bone-16"), NodePath("Bone-17")] +metadata/vert_owned = [346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361] +metadata/idx = 12 +metadata/connected_nodes_paths = [NodePath("Bone-7"), NodePath("Bone-8"), NodePath("Bone-11"), NodePath("Bone-9"), NodePath("Bone-13"), NodePath("Bone-15"), NodePath("Bone-16"), NodePath("Bone-17")] +metadata/connected_nodes_idx = [7, 8, 11, 9, 13, 15, 16, 17] metadata/_local_pose_override_enabled_ = true [node name="Bone-13" type="Bone2D" parent="Butter9/Skeleton2D"] -position = Vector2(81.0773, 78.7108) -rotation = 1.64259 -rest = Transform2D(-0.0717316, 0.997424, -0.997424, -0.0717316, 81.0773, 78.7108) +position = Vector2(79, 108.25) +rotation = -2.9346 +rest = Transform2D(-0.978653, -0.205517, 0.205517, -0.978653, 79, 108.25) auto_calculate_length_and_angle = false length = 25.0 bone_angle = 0.0 -metadata/vert_owned = [212, 213, 214, 215, 216, 217, 218] -metadata/connected_nodes_paths = [NodePath("Bone-7"), NodePath("Bone-8"), NodePath("Bone-9"), NodePath("Bone-12"), NodePath("Bone-14"), NodePath("Bone-16"), NodePath("Bone-17"), NodePath("Bone-18")] +metadata/vert_owned = [362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392] +metadata/idx = 13 +metadata/connected_nodes_paths = [NodePath("Bone-18"), NodePath("Bone-17"), NodePath("Bone-8"), NodePath("Bone-9"), NodePath("Bone-12"), NodePath("Bone-16")] +metadata/connected_nodes_idx = [18, 17, 8, 9, 12, 16] metadata/_local_pose_override_enabled_ = true [node name="Bone-14" type="Bone2D" parent="Butter9/Skeleton2D"] -position = Vector2(79.047, 106.942) -rotation = -0.795486 -rest = Transform2D(0.699938, -0.714204, 0.714204, 0.699938, 79.047, 106.942) +position = Vector2(102.25, 29.75) +rotation = 2.35619 +scale = Vector2(1, 1) +rest = Transform2D(-0.707107, 0.707107, -0.707107, -0.707107, 102.25, 29.75) auto_calculate_length_and_angle = false length = 25.0 bone_angle = 0.0 -metadata/vert_owned = [219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232] -metadata/connected_nodes_paths = [NodePath("Bone-8"), NodePath("Bone-9"), NodePath("Bone-13"), NodePath("Bone-17"), NodePath("Bone-18"), NodePath("Bone-19")] +metadata/vert_owned = [393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410] +metadata/idx = 14 +metadata/connected_nodes_paths = [NodePath("Bone-10"), NodePath("Bone-11"), NodePath("Bone-15")] +metadata/connected_nodes_idx = [10, 11, 15] metadata/_local_pose_override_enabled_ = true [node name="Bone-15" type="Bone2D" parent="Butter9/Skeleton2D"] -position = Vector2(102.751, 31.2282) -rotation = 2.36077 -rest = Transform2D(-0.710337, 0.703861, -0.703861, -0.710337, 102.751, 31.2282) +position = Vector2(102.25, 53) +rotation = -1.5708 +rest = Transform2D(-4.37114e-08, -1, 1, -4.37114e-08, 102.25, 53) auto_calculate_length_and_angle = false length = 25.0 bone_angle = 0.0 -metadata/vert_owned = [233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244] -metadata/connected_nodes_paths = [NodePath("Bone-11"), NodePath("Bone-12"), NodePath("Bone-16")] +metadata/vert_owned = [411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426] +metadata/idx = 15 +metadata/connected_nodes_paths = [NodePath("Bone-10"), NodePath("Bone-11"), NodePath("Bone-14"), NodePath("Bone-12"), NodePath("Bone-16")] +metadata/connected_nodes_idx = [10, 11, 14, 12, 16] metadata/_local_pose_override_enabled_ = true [node name="Bone-16" type="Bone2D" parent="Butter9/Skeleton2D"] -position = Vector2(103.646, 54.4703) -rotation = 2.32049 +position = Vector2(103.25, 78) +rotation = -1.61077 scale = Vector2(1, 1) -rest = Transform2D(-0.681412, 0.7319, -0.7319, -0.681412, 103.646, 54.4703) +rest = Transform2D(-0.039968, -0.999201, 0.999201, -0.039968, 103.25, 78) auto_calculate_length_and_angle = false length = 25.0 bone_angle = 0.0 -metadata/vert_owned = [245, 246, 247, 248, 249, 250, 251] -metadata/connected_nodes_paths = [NodePath("Bone-11"), NodePath("Bone-12"), NodePath("Bone-13"), NodePath("Bone-15"), NodePath("Bone-17")] +metadata/vert_owned = [427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444] +metadata/idx = 16 +metadata/connected_nodes_paths = [NodePath("Bone-11"), NodePath("Bone-12"), NodePath("Bone-15"), NodePath("Bone-13"), NodePath("Bone-17")] +metadata/connected_nodes_idx = [11, 12, 15, 13, 17] metadata/_local_pose_override_enabled_ = true [node name="Bone-17" type="Bone2D" parent="Butter9/Skeleton2D"] -position = Vector2(105.689, 79.7563) -rotation = 2.34611 -rest = Transform2D(-0.699938, 0.714204, -0.714204, -0.699938, 105.689, 79.7563) +position = Vector2(103.25, 102.25) +rotation = -2.35619 +scale = Vector2(1, 1) +rest = Transform2D(-0.707107, -0.707107, 0.707107, -0.707107, 103.25, 102.25) auto_calculate_length_and_angle = false length = 25.0 bone_angle = 0.0 -metadata/vert_owned = [252, 253, 254, 255, 256] -metadata/connected_nodes_paths = [NodePath("Bone-12"), NodePath("Bone-13"), NodePath("Bone-14"), NodePath("Bone-16"), NodePath("Bone-18")] +metadata/vert_owned = [445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473] +metadata/idx = 17 +metadata/connected_nodes_paths = [NodePath("Bone-13"), NodePath("Bone-12"), NodePath("Bone-16")] +metadata/connected_nodes_idx = [13, 12, 16] metadata/_local_pose_override_enabled_ = true [node name="Bone-18" type="Bone2D" parent="Butter9/Skeleton2D"] -position = Vector2(102.296, 103.289) -rotation = 2.98577 +position = Vector2(54, 120.75) +rotation = -0.463648 scale = Vector2(1, 1) -rest = Transform2D(-0.987884, 0.155195, -0.155195, -0.987884, 102.296, 103.289) -auto_calculate_length_and_angle = false -length = 25.0 -bone_angle = 0.0 -metadata/vert_owned = [257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278] -metadata/connected_nodes_paths = [NodePath("Bone-13"), NodePath("Bone-14"), NodePath("Bone-17")] -metadata/_local_pose_override_enabled_ = true - -[node name="Bone-19" type="Bone2D" parent="Butter9/Skeleton2D"] -position = Vector2(49.0143, 119.913) -rotation = -1.31134 -rest = Transform2D(0.256557, -0.966529, 0.966529, 0.256557, 49.0143, 119.913) +rest = Transform2D(0.894427, -0.447214, 0.447214, 0.894427, 54, 120.75) auto_calculate_length_and_angle = false length = 25.0 bone_angle = 0.0 -metadata/vert_owned = [279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298] -metadata/connected_nodes_paths = [NodePath("Bone-5"), NodePath("Bone-9"), NodePath("Bone-14")] +metadata/vert_owned = [474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488] +metadata/idx = 18 +metadata/connected_nodes_paths = [NodePath("Bone-5"), NodePath("Bone-13"), NodePath("Bone-9")] +metadata/connected_nodes_idx = [5, 13, 9] metadata/_local_pose_override_enabled_ = true -[node name="Bone-0" parent="Butter9" instance=ExtResource("3_6ern4")] -position = Vector2(11.9819, 47.4582) -mass = 0.05 +[node name="Bone-0" type="RigidBody2D" parent="Butter9" instance=ExtResource("3_6ern4")] +position = Vector2(10.25, 47.125) +input_pickable = true +mass = 0.0526316 physics_material_override = ExtResource("5_221ya") +script = ExtResource("11_tqnjl") +metadata/idx = 0 metadata/bone_name = &"Bone-0" [node name="CircleShape2D" type="CollisionShape2D" parent="Butter9/Bone-0"] -shape = SubResource("CircleShape2D_jpo70") +shape = SubResource("CircleShape2D_pgvmq") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Butter9/Bone-0"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-0") update_rotation = false update_scale = false [node name="Joint2D-Bone-0-Bone-1" type="PinJoint2D" parent="Butter9/Bone-0"] visible = false -rotation = 0.017855 +rotation = -0.0347895 node_a = NodePath("..") node_b = NodePath("../../Bone-1") softness = 100.0 -[node name="Joint2D-Bone-0-Bone-2" type="PinJoint2D" parent="Butter9/Bone-0"] -visible = false -rotation = -2.35365 -node_a = NodePath("..") -node_b = NodePath("../../Bone-2") -softness = 100.0 - [node name="Joint2D-Bone-0-Bone-3" type="PinJoint2D" parent="Butter9/Bone-0"] visible = false -rotation = -1.30993 +rotation = -1.26715 node_a = NodePath("..") node_b = NodePath("../../Bone-3") softness = 100.0 [node name="Joint2D-Bone-0-Bone-4" type="PinJoint2D" parent="Butter9/Bone-0"] visible = false -rotation = -0.522283 +rotation = -0.545761 node_a = NodePath("..") node_b = NodePath("../../Bone-4") softness = 100.0 -[node name="Bone-1" parent="Butter9" instance=ExtResource("3_6ern4")] -position = Vector2(11.4233, 78.7417) -mass = 0.05 +[node name="Joint2D-Bone-0-Bone-2" type="PinJoint2D" parent="Butter9/Bone-0"] +visible = false +rotation = -2.34609 +node_a = NodePath("..") +node_b = NodePath("../../Bone-2") +softness = 100.0 + +[node name="Bone-1" type="RigidBody2D" parent="Butter9" instance=ExtResource("3_6ern4")] +position = Vector2(11.3246, 78) +input_pickable = true +mass = 0.0526316 physics_material_override = ExtResource("5_221ya") +script = ExtResource("11_tqnjl") +metadata/idx = 1 metadata/bone_name = &"Bone-1" [node name="CircleShape2D" type="CollisionShape2D" parent="Butter9/Bone-1"] -shape = SubResource("CircleShape2D_jpo70") +shape = SubResource("CircleShape2D_pgvmq") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Butter9/Bone-1"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-1") update_rotation = false update_scale = false [node name="Joint2D-Bone-1-Bone-0" type="PinJoint2D" parent="Butter9/Bone-1"] visible = false -rotation = -3.12374 +rotation = -3.17638 node_a = NodePath("..") node_b = NodePath("../../Bone-0") softness = 100.0 [node name="Joint2D-Bone-1-Bone-3" type="PinJoint2D" parent="Butter9/Bone-1"] visible = false -rotation = -2.53232 +rotation = -2.52617 node_a = NodePath("..") node_b = NodePath("../../Bone-3") softness = 100.0 [node name="Joint2D-Bone-1-Bone-4" type="PinJoint2D" parent="Butter9/Bone-1"] visible = false -rotation = -1.63001 +rotation = -1.5708 node_a = NodePath("..") node_b = NodePath("../../Bone-4") softness = 100.0 [node name="Joint2D-Bone-1-Bone-5" type="PinJoint2D" parent="Butter9/Bone-1"] visible = false -rotation = -0.474914 +rotation = -0.422679 node_a = NodePath("..") node_b = NodePath("../../Bone-5") softness = 100.0 -[node name="Bone-2" parent="Butter9" instance=ExtResource("3_6ern4")] -position = Vector2(32.1588, 27.3839) -mass = 0.05 +[node name="Bone-2" type="RigidBody2D" parent="Butter9" instance=ExtResource("3_6ern4")] +position = Vector2(29, 28.75) +input_pickable = true +mass = 0.0526316 physics_material_override = ExtResource("5_221ya") +script = ExtResource("11_tqnjl") +metadata/idx = 2 metadata/bone_name = &"Bone-2" [node name="CircleShape2D" type="CollisionShape2D" parent="Butter9/Bone-2"] -shape = SubResource("CircleShape2D_jpo70") +shape = SubResource("CircleShape2D_pgvmq") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Butter9/Bone-2"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-2") update_rotation = false update_scale = false [node name="Joint2D-Bone-2-Bone-0" type="PinJoint2D" parent="Butter9/Bone-2"] visible = false -rotation = 0.787946 +rotation = 0.795499 node_a = NodePath("..") node_b = NodePath("../../Bone-0") softness = 100.0 [node name="Joint2D-Bone-2-Bone-3" type="PinJoint2D" parent="Butter9/Bone-2"] visible = false -rotation = 0.0900715 node_a = NodePath("..") node_b = NodePath("../../Bone-3") softness = 100.0 [node name="Joint2D-Bone-2-Bone-6" type="PinJoint2D" parent="Butter9/Bone-2"] visible = false -rotation = -1.53017 +rotation = -1.81578 node_a = NodePath("..") node_b = NodePath("../../Bone-6") softness = 100.0 [node name="Joint2D-Bone-2-Bone-7" type="PinJoint2D" parent="Butter9/Bone-2"] visible = false -rotation = -0.700711 +rotation = -0.800625 node_a = NodePath("..") node_b = NodePath("../../Bone-7") softness = 100.0 -[node name="Bone-3" parent="Butter9" instance=ExtResource("3_6ern4")] -position = Vector2(29.9134, 52.2451) -mass = 0.05 +[node name="Bone-3" type="RigidBody2D" parent="Butter9" instance=ExtResource("3_6ern4")] +position = Vector2(29, 53) +input_pickable = true +mass = 0.0526316 physics_material_override = ExtResource("5_221ya") +script = ExtResource("11_tqnjl") +metadata/idx = 3 metadata/bone_name = &"Bone-3" [node name="CircleShape2D" type="CollisionShape2D" parent="Butter9/Bone-3"] -shape = SubResource("CircleShape2D_jpo70") +shape = SubResource("CircleShape2D_pgvmq") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Butter9/Bone-3"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-3") update_rotation = false update_scale = false [node name="Joint2D-Bone-3-Bone-0" type="PinJoint2D" parent="Butter9/Bone-3"] visible = false -rotation = -4.45152 +rotation = -4.40875 node_a = NodePath("..") node_b = NodePath("../../Bone-0") softness = 100.0 [node name="Joint2D-Bone-3-Bone-1" type="PinJoint2D" parent="Butter9/Bone-3"] visible = false -rotation = 0.609268 +rotation = 0.61542 node_a = NodePath("..") node_b = NodePath("../../Bone-1") softness = 100.0 -[node name="Joint2D-Bone-3-Bone-2" type="PinJoint2D" parent="Butter9/Bone-3"] +[node name="Joint2D-Bone-3-Bone-4" type="PinJoint2D" parent="Butter9/Bone-3"] visible = false -rotation = -3.05152 node_a = NodePath("..") -node_b = NodePath("../../Bone-2") +node_b = NodePath("../../Bone-4") softness = 100.0 -[node name="Joint2D-Bone-3-Bone-4" type="PinJoint2D" parent="Butter9/Bone-3"] +[node name="Joint2D-Bone-3-Bone-2" type="PinJoint2D" parent="Butter9/Bone-3"] visible = false -rotation = 0.0211281 +rotation = -3.14159 node_a = NodePath("..") -node_b = NodePath("../../Bone-4") +node_b = NodePath("../../Bone-2") softness = 100.0 [node name="Joint2D-Bone-3-Bone-6" type="PinJoint2D" parent="Butter9/Bone-3"] visible = false -rotation = -2.31758 +rotation = -2.45497 node_a = NodePath("..") node_b = NodePath("../../Bone-6") softness = 100.0 [node name="Joint2D-Bone-3-Bone-7" type="PinJoint2D" parent="Butter9/Bone-3"] visible = false -rotation = -1.46747 +rotation = -1.5708 node_a = NodePath("..") node_b = NodePath("../../Bone-7") softness = 100.0 [node name="Joint2D-Bone-3-Bone-8" type="PinJoint2D" parent="Butter9/Bone-3"] visible = false -rotation = -0.741441 +rotation = -0.785398 node_a = NodePath("..") node_b = NodePath("../../Bone-8") softness = 100.0 -[node name="Bone-4" parent="Butter9" instance=ExtResource("3_6ern4")] -position = Vector2(29.376, 77.6774) -mass = 0.05 +[node name="Bone-4" type="RigidBody2D" parent="Butter9" instance=ExtResource("3_6ern4")] +position = Vector2(29, 78) +input_pickable = true +mass = 0.0526316 physics_material_override = ExtResource("5_221ya") +script = ExtResource("11_tqnjl") +metadata/idx = 4 metadata/bone_name = &"Bone-4" [node name="CircleShape2D" type="CollisionShape2D" parent="Butter9/Bone-4"] -shape = SubResource("CircleShape2D_jpo70") +shape = SubResource("CircleShape2D_pgvmq") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Butter9/Bone-4"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-4") update_rotation = false update_scale = false [node name="Joint2D-Bone-4-Bone-0" type="PinJoint2D" parent="Butter9/Bone-4"] visible = false -rotation = -3.66388 +rotation = -3.68735 node_a = NodePath("..") node_b = NodePath("../../Bone-0") softness = 100.0 [node name="Joint2D-Bone-4-Bone-1" type="PinJoint2D" parent="Butter9/Bone-4"] visible = false -rotation = 1.51158 +rotation = 1.5708 node_a = NodePath("..") node_b = NodePath("../../Bone-1") softness = 100.0 [node name="Joint2D-Bone-4-Bone-3" type="PinJoint2D" parent="Butter9/Bone-4"] visible = false -rotation = -3.12046 +rotation = -3.14159 node_a = NodePath("..") node_b = NodePath("../../Bone-3") softness = 100.0 [node name="Joint2D-Bone-4-Bone-5" type="PinJoint2D" parent="Butter9/Bone-4"] visible = false -rotation = 0.214135 +rotation = 0.187806 node_a = NodePath("..") node_b = NodePath("../../Bone-5") softness = 100.0 [node name="Joint2D-Bone-4-Bone-7" type="PinJoint2D" parent="Butter9/Bone-4"] visible = false -rotation = -2.291 +rotation = -2.35619 node_a = NodePath("..") node_b = NodePath("../../Bone-7") softness = 100.0 [node name="Joint2D-Bone-4-Bone-8" type="PinJoint2D" parent="Butter9/Bone-4"] visible = false -rotation = -1.51371 +rotation = -1.5708 node_a = NodePath("..") node_b = NodePath("../../Bone-8") softness = 100.0 [node name="Joint2D-Bone-4-Bone-9" type="PinJoint2D" parent="Butter9/Bone-4"] visible = false -rotation = -0.748864 +rotation = -0.785398 node_a = NodePath("..") node_b = NodePath("../../Bone-9") softness = 100.0 -[node name="Bone-5" parent="Butter9" instance=ExtResource("3_6ern4")] -position = Vector2(23.8771, 102.963) -mass = 0.05 +[node name="Bone-5" type="RigidBody2D" parent="Butter9" instance=ExtResource("3_6ern4")] +position = Vector2(23.75, 105.625) +input_pickable = true +mass = 0.0526316 physics_material_override = ExtResource("5_221ya") +script = ExtResource("11_tqnjl") +metadata/idx = 5 metadata/bone_name = &"Bone-5" [node name="CircleShape2D" type="CollisionShape2D" parent="Butter9/Bone-5"] -shape = SubResource("CircleShape2D_jpo70") +shape = SubResource("CircleShape2D_pgvmq") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Butter9/Bone-5"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-5") update_rotation = false update_scale = false +[node name="Joint2D-Bone-5-Bone-18" type="PinJoint2D" parent="Butter9/Bone-5"] +visible = false +rotation = -1.10715 +node_a = NodePath("..") +node_b = NodePath("../../Bone-18") +softness = 100.0 + [node name="Joint2D-Bone-5-Bone-1" type="PinJoint2D" parent="Butter9/Bone-5"] visible = false -rotation = -3.61651 +rotation = -3.56427 node_a = NodePath("..") node_b = NodePath("../../Bone-1") softness = 100.0 [node name="Joint2D-Bone-5-Bone-4" type="PinJoint2D" parent="Butter9/Bone-5"] visible = false -rotation = -2.92746 +rotation = -2.95379 node_a = NodePath("..") node_b = NodePath("../../Bone-4") softness = 100.0 [node name="Joint2D-Bone-5-Bone-8" type="PinJoint2D" parent="Butter9/Bone-5"] visible = false -rotation = -2.23219 +rotation = -2.31087 node_a = NodePath("..") node_b = NodePath("../../Bone-8") softness = 100.0 [node name="Joint2D-Bone-5-Bone-9" type="PinJoint2D" parent="Butter9/Bone-5"] visible = false -rotation = -1.55278 +rotation = -1.65736 node_a = NodePath("..") node_b = NodePath("../../Bone-9") softness = 100.0 -[node name="Joint2D-Bone-5-Bone-19" type="PinJoint2D" parent="Butter9/Bone-5"] -visible = false -rotation = -0.977532 -node_a = NodePath("..") -node_b = NodePath("../../Bone-19") -softness = 100.0 - -[node name="Bone-6" parent="Butter9" instance=ExtResource("3_6ern4")] -position = Vector2(55.7376, 28.3423) -mass = 0.05 +[node name="Bone-6" type="RigidBody2D" parent="Butter9" instance=ExtResource("3_6ern4")] +position = Vector2(54, 22.5) +input_pickable = true +mass = 0.0526316 physics_material_override = ExtResource("5_221ya") +script = ExtResource("11_tqnjl") +metadata/idx = 6 metadata/bone_name = &"Bone-6" [node name="CircleShape2D" type="CollisionShape2D" parent="Butter9/Bone-6"] -shape = SubResource("CircleShape2D_jpo70") +shape = SubResource("CircleShape2D_pgvmq") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Butter9/Bone-6"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-6") update_rotation = false update_scale = false +[node name="Joint2D-Bone-6-Bone-10" type="PinJoint2D" parent="Butter9/Bone-6"] +visible = false +rotation = -1.60079 +node_a = NodePath("..") +node_b = NodePath("../../Bone-10") +softness = 100.0 + [node name="Joint2D-Bone-6-Bone-2" type="PinJoint2D" parent="Butter9/Bone-6"] visible = false -rotation = -4.67177 +rotation = 1.32582 node_a = NodePath("..") node_b = NodePath("../../Bone-2") softness = 100.0 [node name="Joint2D-Bone-6-Bone-3" type="PinJoint2D" parent="Butter9/Bone-6"] visible = false -rotation = 0.824017 +rotation = 0.686622 node_a = NodePath("..") node_b = NodePath("../../Bone-3") softness = 100.0 [node name="Joint2D-Bone-6-Bone-7" type="PinJoint2D" parent="Butter9/Bone-6"] visible = false -rotation = 0.0144326 node_a = NodePath("..") node_b = NodePath("../../Bone-7") softness = 100.0 -[node name="Joint2D-Bone-6-Bone-10" type="PinJoint2D" parent="Butter9/Bone-6"] -visible = false -rotation = -2.49098 -node_a = NodePath("..") -node_b = NodePath("../../Bone-10") -softness = 100.0 - [node name="Joint2D-Bone-6-Bone-11" type="PinJoint2D" parent="Butter9/Bone-6"] visible = false -rotation = -1.50208 +rotation = -0.686622 node_a = NodePath("..") node_b = NodePath("../../Bone-11") softness = 100.0 -[node name="Joint2D-Bone-6-Bone-12" type="PinJoint2D" parent="Butter9/Bone-6"] -visible = false -rotation = -0.736969 -node_a = NodePath("..") -node_b = NodePath("../../Bone-12") -softness = 100.0 - -[node name="Bone-7" parent="Butter9" instance=ExtResource("3_6ern4")] -position = Vector2(55.3545, 54.8831) -mass = 0.05 +[node name="Bone-7" type="RigidBody2D" parent="Butter9" instance=ExtResource("3_6ern4")] +position = Vector2(54, 53) +input_pickable = true +mass = 0.0526316 physics_material_override = ExtResource("5_221ya") +script = ExtResource("11_tqnjl") +metadata/idx = 7 metadata/bone_name = &"Bone-7" [node name="CircleShape2D" type="CollisionShape2D" parent="Butter9/Bone-7"] -shape = SubResource("CircleShape2D_jpo70") +shape = SubResource("CircleShape2D_pgvmq") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Butter9/Bone-7"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-7") update_rotation = false update_scale = false [node name="Joint2D-Bone-7-Bone-2" type="PinJoint2D" parent="Butter9/Bone-7"] visible = false -rotation = -3.8423 +rotation = -3.94222 node_a = NodePath("..") node_b = NodePath("../../Bone-2") softness = 100.0 [node name="Joint2D-Bone-7-Bone-3" type="PinJoint2D" parent="Butter9/Bone-7"] visible = false -rotation = -4.60907 +rotation = 1.5708 node_a = NodePath("..") node_b = NodePath("../../Bone-3") softness = 100.0 -[node name="Joint2D-Bone-7-Bone-4" type="PinJoint2D" parent="Butter9/Bone-7"] +[node name="Joint2D-Bone-7-Bone-6" type="PinJoint2D" parent="Butter9/Bone-7"] visible = false -rotation = 0.850593 +rotation = -3.14159 node_a = NodePath("..") -node_b = NodePath("../../Bone-4") +node_b = NodePath("../../Bone-6") softness = 100.0 -[node name="Joint2D-Bone-7-Bone-6" type="PinJoint2D" parent="Butter9/Bone-7"] +[node name="Joint2D-Bone-7-Bone-4" type="PinJoint2D" parent="Butter9/Bone-7"] visible = false -rotation = -3.12716 +rotation = 0.785398 node_a = NodePath("..") -node_b = NodePath("../../Bone-6") +node_b = NodePath("../../Bone-4") softness = 100.0 [node name="Joint2D-Bone-7-Bone-8" type="PinJoint2D" parent="Butter9/Bone-7"] visible = false -rotation = 0.0344938 node_a = NodePath("..") node_b = NodePath("../../Bone-8") softness = 100.0 -[node name="Joint2D-Bone-7-Bone-11" type="PinJoint2D" parent="Butter9/Bone-7"] +[node name="Joint2D-Bone-7-Bone-10" type="PinJoint2D" parent="Butter9/Bone-7"] visible = false -rotation = -2.34037 +rotation = -2.46685 node_a = NodePath("..") -node_b = NodePath("../../Bone-11") +node_b = NodePath("../../Bone-10") softness = 100.0 -[node name="Joint2D-Bone-7-Bone-12" type="PinJoint2D" parent="Butter9/Bone-7"] +[node name="Joint2D-Bone-7-Bone-11" type="PinJoint2D" parent="Butter9/Bone-7"] visible = false -rotation = -1.59133 +rotation = -1.5708 node_a = NodePath("..") -node_b = NodePath("../../Bone-12") +node_b = NodePath("../../Bone-11") softness = 100.0 -[node name="Joint2D-Bone-7-Bone-13" type="PinJoint2D" parent="Butter9/Bone-7"] +[node name="Joint2D-Bone-7-Bone-12" type="PinJoint2D" parent="Butter9/Bone-7"] visible = false -rotation = -0.823625 +rotation = -0.785398 node_a = NodePath("..") -node_b = NodePath("../../Bone-13") +node_b = NodePath("../../Bone-12") softness = 100.0 -[node name="Bone-8" parent="Butter9" instance=ExtResource("3_6ern4")] -position = Vector2(54.5183, 79.1141) -mass = 0.05 +[node name="Bone-8" type="RigidBody2D" parent="Butter9" instance=ExtResource("3_6ern4")] +position = Vector2(54, 78) +input_pickable = true +mass = 0.0526316 physics_material_override = ExtResource("5_221ya") +script = ExtResource("11_tqnjl") +metadata/idx = 8 metadata/bone_name = &"Bone-8" [node name="CircleShape2D" type="CollisionShape2D" parent="Butter9/Bone-8"] -shape = SubResource("CircleShape2D_jpo70") +shape = SubResource("CircleShape2D_pgvmq") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Butter9/Bone-8"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-8") update_rotation = false update_scale = false [node name="Joint2D-Bone-8-Bone-3" type="PinJoint2D" parent="Butter9/Bone-8"] visible = false -rotation = -3.88303 +rotation = -3.92699 node_a = NodePath("..") node_b = NodePath("../../Bone-3") softness = 100.0 [node name="Joint2D-Bone-8-Bone-4" type="PinJoint2D" parent="Butter9/Bone-8"] visible = false -rotation = -4.65531 +rotation = 1.5708 node_a = NodePath("..") node_b = NodePath("../../Bone-4") softness = 100.0 -[node name="Joint2D-Bone-8-Bone-5" type="PinJoint2D" parent="Butter9/Bone-8"] +[node name="Joint2D-Bone-8-Bone-7" type="PinJoint2D" parent="Butter9/Bone-8"] visible = false -rotation = 0.909408 +rotation = -3.14159 node_a = NodePath("..") -node_b = NodePath("../../Bone-5") +node_b = NodePath("../../Bone-7") softness = 100.0 -[node name="Joint2D-Bone-8-Bone-7" type="PinJoint2D" parent="Butter9/Bone-8"] +[node name="Joint2D-Bone-8-Bone-5" type="PinJoint2D" parent="Butter9/Bone-8"] visible = false -rotation = -3.1071 +rotation = 0.830723 node_a = NodePath("..") -node_b = NodePath("../../Bone-7") +node_b = NodePath("../../Bone-5") softness = 100.0 [node name="Joint2D-Bone-8-Bone-9" type="PinJoint2D" parent="Butter9/Bone-8"] visible = false -rotation = 0.0469652 node_a = NodePath("..") node_b = NodePath("../../Bone-9") softness = 100.0 -[node name="Joint2D-Bone-8-Bone-12" type="PinJoint2D" parent="Butter9/Bone-8"] +[node name="Joint2D-Bone-8-Bone-11" type="PinJoint2D" parent="Butter9/Bone-8"] visible = false -rotation = -2.35349 +rotation = -2.35619 node_a = NodePath("..") -node_b = NodePath("../../Bone-12") +node_b = NodePath("../../Bone-11") softness = 100.0 -[node name="Joint2D-Bone-8-Bone-13" type="PinJoint2D" parent="Butter9/Bone-8"] +[node name="Joint2D-Bone-8-Bone-12" type="PinJoint2D" parent="Butter9/Bone-8"] visible = false -rotation = -1.58598 +rotation = -1.5708 node_a = NodePath("..") -node_b = NodePath("../../Bone-13") +node_b = NodePath("../../Bone-12") softness = 100.0 -[node name="Joint2D-Bone-8-Bone-14" type="PinJoint2D" parent="Butter9/Bone-8"] +[node name="Joint2D-Bone-8-Bone-13" type="PinJoint2D" parent="Butter9/Bone-8"] visible = false -rotation = -0.722473 +rotation = -0.69066 node_a = NodePath("..") -node_b = NodePath("../../Bone-14") +node_b = NodePath("../../Bone-13") softness = 100.0 -[node name="Bone-9" parent="Butter9" instance=ExtResource("3_6ern4")] -position = Vector2(53.3725, 103.495) -mass = 0.05 +[node name="Bone-9" type="RigidBody2D" parent="Butter9" instance=ExtResource("3_6ern4")] +position = Vector2(54, 103) +input_pickable = true +mass = 0.0526316 physics_material_override = ExtResource("5_221ya") +script = ExtResource("11_tqnjl") +metadata/idx = 9 metadata/bone_name = &"Bone-9" [node name="CircleShape2D" type="CollisionShape2D" parent="Butter9/Bone-9"] -shape = SubResource("CircleShape2D_jpo70") +shape = SubResource("CircleShape2D_pgvmq") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Butter9/Bone-9"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-9") update_rotation = false update_scale = false [node name="Joint2D-Bone-9-Bone-4" type="PinJoint2D" parent="Butter9/Bone-9"] visible = false -rotation = -3.89046 +rotation = -3.92699 node_a = NodePath("..") node_b = NodePath("../../Bone-4") softness = 100.0 [node name="Joint2D-Bone-9-Bone-5" type="PinJoint2D" parent="Butter9/Bone-9"] visible = false -rotation = -4.69438 +rotation = 1.48424 node_a = NodePath("..") node_b = NodePath("../../Bone-5") softness = 100.0 [node name="Joint2D-Bone-9-Bone-8" type="PinJoint2D" parent="Butter9/Bone-9"] visible = false -rotation = -3.09463 +rotation = -3.14159 node_a = NodePath("..") node_b = NodePath("../../Bone-8") softness = 100.0 -[node name="Joint2D-Bone-9-Bone-13" type="PinJoint2D" parent="Butter9/Bone-9"] +[node name="Joint2D-Bone-9-Bone-18" type="PinJoint2D" parent="Butter9/Bone-9"] visible = false -rotation = -2.3006 node_a = NodePath("..") -node_b = NodePath("../../Bone-13") +node_b = NodePath("../../Bone-18") softness = 100.0 -[node name="Joint2D-Bone-9-Bone-14" type="PinJoint2D" parent="Butter9/Bone-9"] +[node name="Joint2D-Bone-9-Bone-12" type="PinJoint2D" parent="Butter9/Bone-9"] visible = false -rotation = -1.43733 +rotation = -2.35619 node_a = NodePath("..") -node_b = NodePath("../../Bone-14") +node_b = NodePath("../../Bone-12") softness = 100.0 -[node name="Joint2D-Bone-9-Bone-19" type="PinJoint2D" parent="Butter9/Bone-9"] +[node name="Joint2D-Bone-9-Bone-13" type="PinJoint2D" parent="Butter9/Bone-9"] visible = false -rotation = 0.259457 +rotation = -1.3638 node_a = NodePath("..") -node_b = NodePath("../../Bone-19") +node_b = NodePath("../../Bone-13") softness = 100.0 -[node name="Bone-10" parent="Butter9" instance=ExtResource("3_6ern4")] -position = Vector2(69.1836, 10.6773) -mass = 0.05 +[node name="Bone-10" type="RigidBody2D" parent="Butter9" instance=ExtResource("3_6ern4")] +position = Vector2(79, 21.75) +input_pickable = true +mass = 0.0526316 physics_material_override = ExtResource("5_221ya") +script = ExtResource("11_tqnjl") +metadata/idx = 10 metadata/bone_name = &"Bone-10" [node name="CircleShape2D" type="CollisionShape2D" parent="Butter9/Bone-10"] -shape = SubResource("CircleShape2D_jpo70") +shape = SubResource("CircleShape2D_pgvmq") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Butter9/Bone-10"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-10") update_rotation = false update_scale = false [node name="Joint2D-Bone-10-Bone-6" type="PinJoint2D" parent="Butter9/Bone-10"] visible = false -rotation = 0.650612 +rotation = 1.54081 node_a = NodePath("..") node_b = NodePath("../../Bone-6") softness = 100.0 +[node name="Joint2D-Bone-10-Bone-7" type="PinJoint2D" parent="Butter9/Bone-10"] +visible = false +rotation = 0.674741 +node_a = NodePath("..") +node_b = NodePath("../../Bone-7") +softness = 100.0 + [node name="Joint2D-Bone-10-Bone-11" type="PinJoint2D" parent="Butter9/Bone-10"] visible = false -rotation = -0.545454 node_a = NodePath("..") node_b = NodePath("../../Bone-11") softness = 100.0 -[node name="Bone-11" parent="Butter9" instance=ExtResource("3_6ern4")] -position = Vector2(80.9573, 30.078) -mass = 0.05 +[node name="Joint2D-Bone-10-Bone-14" type="PinJoint2D" parent="Butter9/Bone-10"] +visible = false +rotation = -1.2394 +node_a = NodePath("..") +node_b = NodePath("../../Bone-14") +softness = 100.0 + +[node name="Joint2D-Bone-10-Bone-15" type="PinJoint2D" parent="Butter9/Bone-10"] +visible = false +rotation = -0.63965 +node_a = NodePath("..") +node_b = NodePath("../../Bone-15") +softness = 100.0 + +[node name="Bone-11" type="RigidBody2D" parent="Butter9" instance=ExtResource("3_6ern4")] +position = Vector2(79, 53) +input_pickable = true +mass = 0.0526316 physics_material_override = ExtResource("5_221ya") +script = ExtResource("11_tqnjl") +metadata/idx = 11 metadata/bone_name = &"Bone-11" [node name="CircleShape2D" type="CollisionShape2D" parent="Butter9/Bone-11"] -shape = SubResource("CircleShape2D_jpo70") +shape = SubResource("CircleShape2D_pgvmq") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Butter9/Bone-11"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-11") update_rotation = false update_scale = false [node name="Joint2D-Bone-11-Bone-6" type="PinJoint2D" parent="Butter9/Bone-11"] visible = false -rotation = -4.64367 +rotation = -3.82821 node_a = NodePath("..") node_b = NodePath("../../Bone-6") softness = 100.0 [node name="Joint2D-Bone-11-Bone-7" type="PinJoint2D" parent="Butter9/Bone-11"] visible = false -rotation = 0.80122 +rotation = 1.5708 node_a = NodePath("..") node_b = NodePath("../../Bone-7") softness = 100.0 [node name="Joint2D-Bone-11-Bone-10" type="PinJoint2D" parent="Butter9/Bone-11"] visible = false -rotation = -3.68705 +rotation = -3.14159 node_a = NodePath("..") node_b = NodePath("../../Bone-10") softness = 100.0 +[node name="Joint2D-Bone-11-Bone-8" type="PinJoint2D" parent="Butter9/Bone-11"] +visible = false +rotation = 0.785398 +node_a = NodePath("..") +node_b = NodePath("../../Bone-8") +softness = 100.0 + [node name="Joint2D-Bone-11-Bone-12" type="PinJoint2D" parent="Butter9/Bone-11"] visible = false -rotation = 0.0649149 node_a = NodePath("..") node_b = NodePath("../../Bone-12") softness = 100.0 +[node name="Joint2D-Bone-11-Bone-14" type="PinJoint2D" parent="Butter9/Bone-11"] +visible = false +rotation = -2.35619 +node_a = NodePath("..") +node_b = NodePath("../../Bone-14") +softness = 100.0 + [node name="Joint2D-Bone-11-Bone-15" type="PinJoint2D" parent="Butter9/Bone-11"] visible = false -rotation = -1.51807 +rotation = -1.5708 node_a = NodePath("..") node_b = NodePath("../../Bone-15") softness = 100.0 [node name="Joint2D-Bone-11-Bone-16" type="PinJoint2D" parent="Butter9/Bone-11"] visible = false -rotation = -0.749219 +rotation = -0.770171 node_a = NodePath("..") node_b = NodePath("../../Bone-16") softness = 100.0 -[node name="Bone-12" parent="Butter9" instance=ExtResource("3_6ern4")] -position = Vector2(79.3768, 54.3897) -mass = 0.05 +[node name="Bone-12" type="RigidBody2D" parent="Butter9" instance=ExtResource("3_6ern4")] +position = Vector2(79, 78) +input_pickable = true +mass = 0.0526316 physics_material_override = ExtResource("5_221ya") +script = ExtResource("11_tqnjl") +metadata/idx = 12 metadata/bone_name = &"Bone-12" [node name="CircleShape2D" type="CollisionShape2D" parent="Butter9/Bone-12"] -shape = SubResource("CircleShape2D_jpo70") +shape = SubResource("CircleShape2D_pgvmq") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Butter9/Bone-12"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-12") update_rotation = false update_scale = false -[node name="Joint2D-Bone-12-Bone-6" type="PinJoint2D" parent="Butter9/Bone-12"] -visible = false -rotation = -3.87856 -node_a = NodePath("..") -node_b = NodePath("../../Bone-6") -softness = 100.0 - [node name="Joint2D-Bone-12-Bone-7" type="PinJoint2D" parent="Butter9/Bone-12"] visible = false -rotation = 1.55026 +rotation = -3.92699 node_a = NodePath("..") node_b = NodePath("../../Bone-7") softness = 100.0 [node name="Joint2D-Bone-12-Bone-8" type="PinJoint2D" parent="Butter9/Bone-12"] visible = false -rotation = 0.788103 +rotation = 1.5708 node_a = NodePath("..") node_b = NodePath("../../Bone-8") softness = 100.0 [node name="Joint2D-Bone-12-Bone-11" type="PinJoint2D" parent="Butter9/Bone-12"] visible = false -rotation = -3.07668 +rotation = -3.14159 node_a = NodePath("..") node_b = NodePath("../../Bone-11") softness = 100.0 +[node name="Joint2D-Bone-12-Bone-9" type="PinJoint2D" parent="Butter9/Bone-12"] +visible = false +rotation = 0.785398 +node_a = NodePath("..") +node_b = NodePath("../../Bone-9") +softness = 100.0 + [node name="Joint2D-Bone-12-Bone-13" type="PinJoint2D" parent="Butter9/Bone-12"] visible = false -rotation = -0.0698014 node_a = NodePath("..") node_b = NodePath("../../Bone-13") softness = 100.0 [node name="Joint2D-Bone-12-Bone-15" type="PinJoint2D" parent="Butter9/Bone-12"] visible = false -rotation = -2.35161 +rotation = -2.39245 node_a = NodePath("..") node_b = NodePath("../../Bone-15") softness = 100.0 [node name="Joint2D-Bone-12-Bone-16" type="PinJoint2D" parent="Butter9/Bone-12"] visible = false -rotation = -1.56748 +rotation = -1.5708 node_a = NodePath("..") node_b = NodePath("../../Bone-16") softness = 100.0 [node name="Joint2D-Bone-12-Bone-17" type="PinJoint2D" parent="Butter9/Bone-12"] visible = false -rotation = -0.803699 +rotation = -0.785398 node_a = NodePath("..") node_b = NodePath("../../Bone-17") softness = 100.0 -[node name="Bone-13" parent="Butter9" instance=ExtResource("3_6ern4")] -position = Vector2(81.0773, 78.7108) -mass = 0.05 +[node name="Bone-13" type="RigidBody2D" parent="Butter9" instance=ExtResource("3_6ern4")] +position = Vector2(79, 108.25) +input_pickable = true +mass = 0.0526316 physics_material_override = ExtResource("5_221ya") +script = ExtResource("11_tqnjl") +metadata/idx = 13 metadata/bone_name = &"Bone-13" [node name="CircleShape2D" type="CollisionShape2D" parent="Butter9/Bone-13"] -shape = SubResource("CircleShape2D_jpo70") +shape = SubResource("CircleShape2D_pgvmq") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Butter9/Bone-13"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-13") update_rotation = false update_scale = false -[node name="Joint2D-Bone-13-Bone-7" type="PinJoint2D" parent="Butter9/Bone-13"] +[node name="Joint2D-Bone-13-Bone-18" type="PinJoint2D" parent="Butter9/Bone-13"] visible = false -rotation = -3.96522 +rotation = 1.10715 node_a = NodePath("..") -node_b = NodePath("../../Bone-7") +node_b = NodePath("../../Bone-18") +softness = 100.0 + +[node name="Joint2D-Bone-13-Bone-17" type="PinJoint2D" parent="Butter9/Bone-13"] +visible = false +rotation = -1.81335 +node_a = NodePath("..") +node_b = NodePath("../../Bone-17") softness = 100.0 [node name="Joint2D-Bone-13-Bone-8" type="PinJoint2D" parent="Butter9/Bone-13"] visible = false -rotation = 1.55561 +rotation = -3.83225 node_a = NodePath("..") node_b = NodePath("../../Bone-8") softness = 100.0 [node name="Joint2D-Bone-13-Bone-9" type="PinJoint2D" parent="Butter9/Bone-13"] visible = false -rotation = 0.840993 +rotation = -4.5054 node_a = NodePath("..") node_b = NodePath("../../Bone-9") softness = 100.0 [node name="Joint2D-Bone-13-Bone-12" type="PinJoint2D" parent="Butter9/Bone-13"] visible = false -rotation = -3.21139 +rotation = -3.14159 node_a = NodePath("..") node_b = NodePath("../../Bone-12") softness = 100.0 -[node name="Joint2D-Bone-13-Bone-14" type="PinJoint2D" parent="Butter9/Bone-13"] -visible = false -rotation = 0.0717928 -node_a = NodePath("..") -node_b = NodePath("../../Bone-14") -softness = 100.0 - [node name="Joint2D-Bone-13-Bone-16" type="PinJoint2D" parent="Butter9/Bone-13"] visible = false -rotation = -2.3919 +rotation = -2.46584 node_a = NodePath("..") node_b = NodePath("../../Bone-16") softness = 100.0 -[node name="Joint2D-Bone-13-Bone-17" type="PinJoint2D" parent="Butter9/Bone-13"] -visible = false -rotation = -1.52834 -node_a = NodePath("..") -node_b = NodePath("../../Bone-17") -softness = 100.0 - -[node name="Joint2D-Bone-13-Bone-18" type="PinJoint2D" parent="Butter9/Bone-13"] -visible = false -rotation = -0.71218 -node_a = NodePath("..") -node_b = NodePath("../../Bone-18") -softness = 100.0 - -[node name="Bone-14" parent="Butter9" instance=ExtResource("3_6ern4")] -position = Vector2(79.047, 106.942) -mass = 0.05 +[node name="Bone-14" type="RigidBody2D" parent="Butter9" instance=ExtResource("3_6ern4")] +position = Vector2(102.25, 29.75) +input_pickable = true +mass = 0.0526316 physics_material_override = ExtResource("5_221ya") +script = ExtResource("11_tqnjl") +metadata/idx = 14 metadata/bone_name = &"Bone-14" [node name="CircleShape2D" type="CollisionShape2D" parent="Butter9/Bone-14"] -shape = SubResource("CircleShape2D_jpo70") +shape = SubResource("CircleShape2D_pgvmq") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Butter9/Bone-14"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-14") update_rotation = false update_scale = false -[node name="Joint2D-Bone-14-Bone-8" type="PinJoint2D" parent="Butter9/Bone-14"] -visible = false -rotation = -3.86407 -node_a = NodePath("..") -node_b = NodePath("../../Bone-8") -softness = 100.0 - -[node name="Joint2D-Bone-14-Bone-9" type="PinJoint2D" parent="Butter9/Bone-14"] -visible = false -rotation = -4.57892 -node_a = NodePath("..") -node_b = NodePath("../../Bone-9") -softness = 100.0 - -[node name="Joint2D-Bone-14-Bone-13" type="PinJoint2D" parent="Butter9/Bone-14"] +[node name="Joint2D-Bone-14-Bone-10" type="PinJoint2D" parent="Butter9/Bone-14"] visible = false -rotation = -3.0698 +rotation = -4.38099 node_a = NodePath("..") -node_b = NodePath("../../Bone-13") -softness = 100.0 - -[node name="Joint2D-Bone-14-Bone-17" type="PinJoint2D" parent="Butter9/Bone-14"] -visible = false -rotation = -2.36628 -node_a = NodePath("..") -node_b = NodePath("../../Bone-17") +node_b = NodePath("../../Bone-10") softness = 100.0 -[node name="Joint2D-Bone-14-Bone-18" type="PinJoint2D" parent="Butter9/Bone-14"] +[node name="Joint2D-Bone-14-Bone-11" type="PinJoint2D" parent="Butter9/Bone-14"] visible = false -rotation = -1.72662 +rotation = 0.785398 node_a = NodePath("..") -node_b = NodePath("../../Bone-18") +node_b = NodePath("../../Bone-11") softness = 100.0 -[node name="Joint2D-Bone-14-Bone-19" type="PinJoint2D" parent="Butter9/Bone-14"] +[node name="Joint2D-Bone-14-Bone-15" type="PinJoint2D" parent="Butter9/Bone-14"] visible = false -rotation = 1.16309 node_a = NodePath("..") -node_b = NodePath("../../Bone-19") +node_b = NodePath("../../Bone-15") softness = 100.0 -[node name="Bone-15" parent="Butter9" instance=ExtResource("3_6ern4")] -position = Vector2(102.751, 31.2282) -mass = 0.05 +[node name="Bone-15" type="RigidBody2D" parent="Butter9" instance=ExtResource("3_6ern4")] +position = Vector2(102.25, 53) +input_pickable = true +mass = 0.0526316 physics_material_override = ExtResource("5_221ya") +script = ExtResource("11_tqnjl") +metadata/idx = 15 metadata/bone_name = &"Bone-15" [node name="CircleShape2D" type="CollisionShape2D" parent="Butter9/Bone-15"] -shape = SubResource("CircleShape2D_jpo70") +shape = SubResource("CircleShape2D_pgvmq") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Butter9/Bone-15"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-15") update_rotation = false update_scale = false +[node name="Joint2D-Bone-15-Bone-10" type="PinJoint2D" parent="Butter9/Bone-15"] +visible = false +rotation = -3.78124 +node_a = NodePath("..") +node_b = NodePath("../../Bone-10") +softness = 100.0 + [node name="Joint2D-Bone-15-Bone-11" type="PinJoint2D" parent="Butter9/Bone-15"] visible = false -rotation = -4.65966 +rotation = 1.5708 node_a = NodePath("..") node_b = NodePath("../../Bone-11") softness = 100.0 +[node name="Joint2D-Bone-15-Bone-14" type="PinJoint2D" parent="Butter9/Bone-15"] +visible = false +rotation = -3.14159 +node_a = NodePath("..") +node_b = NodePath("../../Bone-14") +softness = 100.0 + [node name="Joint2D-Bone-15-Bone-12" type="PinJoint2D" parent="Butter9/Bone-15"] visible = false -rotation = 0.789978 +rotation = 0.749145 node_a = NodePath("..") node_b = NodePath("../../Bone-12") softness = 100.0 [node name="Joint2D-Bone-15-Bone-16" type="PinJoint2D" parent="Butter9/Bone-15"] visible = false -rotation = -0.0384482 +rotation = -0.0399787 node_a = NodePath("..") node_b = NodePath("../../Bone-16") softness = 100.0 -[node name="Bone-16" parent="Butter9" instance=ExtResource("3_6ern4")] -position = Vector2(103.646, 54.4703) -mass = 0.05 +[node name="Bone-16" type="RigidBody2D" parent="Butter9" instance=ExtResource("3_6ern4")] +position = Vector2(103.25, 78) +input_pickable = true +mass = 0.0526316 physics_material_override = ExtResource("5_221ya") +script = ExtResource("11_tqnjl") +metadata/idx = 16 metadata/bone_name = &"Bone-16" [node name="CircleShape2D" type="CollisionShape2D" parent="Butter9/Bone-16"] -shape = SubResource("CircleShape2D_jpo70") +shape = SubResource("CircleShape2D_pgvmq") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Butter9/Bone-16"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-16") update_rotation = false update_scale = false [node name="Joint2D-Bone-16-Bone-11" type="PinJoint2D" parent="Butter9/Bone-16"] visible = false -rotation = -3.89081 +rotation = -3.91176 node_a = NodePath("..") node_b = NodePath("../../Bone-11") softness = 100.0 [node name="Joint2D-Bone-16-Bone-12" type="PinJoint2D" parent="Butter9/Bone-16"] visible = false -rotation = -4.70907 +rotation = 1.5708 node_a = NodePath("..") node_b = NodePath("../../Bone-12") softness = 100.0 -[node name="Joint2D-Bone-16-Bone-13" type="PinJoint2D" parent="Butter9/Bone-16"] +[node name="Joint2D-Bone-16-Bone-15" type="PinJoint2D" parent="Butter9/Bone-16"] visible = false -rotation = 0.749689 +rotation = -3.18157 node_a = NodePath("..") -node_b = NodePath("../../Bone-13") +node_b = NodePath("../../Bone-15") softness = 100.0 -[node name="Joint2D-Bone-16-Bone-15" type="PinJoint2D" parent="Butter9/Bone-16"] +[node name="Joint2D-Bone-16-Bone-13" type="PinJoint2D" parent="Butter9/Bone-16"] visible = false -rotation = -3.18004 +rotation = 0.675748 node_a = NodePath("..") -node_b = NodePath("../../Bone-15") +node_b = NodePath("../../Bone-13") softness = 100.0 [node name="Joint2D-Bone-16-Bone-17" type="PinJoint2D" parent="Butter9/Bone-16"] visible = false -rotation = -0.0806511 node_a = NodePath("..") node_b = NodePath("../../Bone-17") softness = 100.0 -[node name="Bone-17" parent="Butter9" instance=ExtResource("3_6ern4")] -position = Vector2(105.689, 79.7563) -mass = 0.05 +[node name="Bone-17" type="RigidBody2D" parent="Butter9" instance=ExtResource("3_6ern4")] +position = Vector2(103.25, 102.25) +input_pickable = true +mass = 0.0526316 physics_material_override = ExtResource("5_221ya") +script = ExtResource("11_tqnjl") +metadata/idx = 17 metadata/bone_name = &"Bone-17" [node name="CircleShape2D" type="CollisionShape2D" parent="Butter9/Bone-17"] -shape = SubResource("CircleShape2D_jpo70") +shape = SubResource("CircleShape2D_pgvmq") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Butter9/Bone-17"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-17") update_rotation = false update_scale = false -[node name="Joint2D-Bone-17-Bone-12" type="PinJoint2D" parent="Butter9/Bone-17"] -visible = false -rotation = -3.94529 -node_a = NodePath("..") -node_b = NodePath("../../Bone-12") -softness = 100.0 - [node name="Joint2D-Bone-17-Bone-13" type="PinJoint2D" parent="Butter9/Bone-17"] visible = false -rotation = -4.66994 +rotation = 1.32824 node_a = NodePath("..") node_b = NodePath("../../Bone-13") softness = 100.0 -[node name="Joint2D-Bone-17-Bone-14" type="PinJoint2D" parent="Butter9/Bone-17"] +[node name="Joint2D-Bone-17-Bone-12" type="PinJoint2D" parent="Butter9/Bone-17"] visible = false -rotation = 0.775311 +rotation = -3.92699 node_a = NodePath("..") -node_b = NodePath("../../Bone-14") +node_b = NodePath("../../Bone-12") softness = 100.0 [node name="Joint2D-Bone-17-Bone-16" type="PinJoint2D" parent="Butter9/Bone-17"] visible = false -rotation = -3.22224 +rotation = -3.14159 node_a = NodePath("..") node_b = NodePath("../../Bone-16") softness = 100.0 -[node name="Joint2D-Bone-17-Bone-18" type="PinJoint2D" parent="Butter9/Bone-17"] -visible = false -rotation = 0.14319 -node_a = NodePath("..") -node_b = NodePath("../../Bone-18") -softness = 100.0 - -[node name="Bone-18" parent="Butter9" instance=ExtResource("3_6ern4")] -position = Vector2(102.296, 103.289) -mass = 0.05 +[node name="Bone-18" type="RigidBody2D" parent="Butter9" instance=ExtResource("3_6ern4")] +position = Vector2(54, 120.75) +input_pickable = true +mass = 0.0526316 physics_material_override = ExtResource("5_221ya") +script = ExtResource("11_tqnjl") +metadata/idx = 18 metadata/bone_name = &"Bone-18" [node name="CircleShape2D" type="CollisionShape2D" parent="Butter9/Bone-18"] -shape = SubResource("CircleShape2D_jpo70") +shape = SubResource("CircleShape2D_pgvmq") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Butter9/Bone-18"] -remote_path = NodePath("../../Skeleton2D/Bone-18") -update_rotation = false -update_scale = false - -[node name="Joint2D-Bone-18-Bone-13" type="PinJoint2D" parent="Butter9/Bone-18"] -visible = false -rotation = -3.85377 -node_a = NodePath("..") -node_b = NodePath("../../Bone-13") -softness = 100.0 - -[node name="Joint2D-Bone-18-Bone-14" type="PinJoint2D" parent="Butter9/Bone-18"] -visible = false -rotation = 1.41497 -node_a = NodePath("..") -node_b = NodePath("../../Bone-14") -softness = 100.0 - -[node name="Joint2D-Bone-18-Bone-17" type="PinJoint2D" parent="Butter9/Bone-18"] visible = false -rotation = -2.9984 -node_a = NodePath("..") -node_b = NodePath("../../Bone-17") -softness = 100.0 - -[node name="Bone-19" parent="Butter9" instance=ExtResource("3_6ern4")] -position = Vector2(49.0143, 119.913) -mass = 0.05 -physics_material_override = ExtResource("5_221ya") -metadata/bone_name = &"Bone-19" - -[node name="CircleShape2D" type="CollisionShape2D" parent="Butter9/Bone-19"] -shape = SubResource("CircleShape2D_jpo70") - -[node name="RemoteTransform2D" type="RemoteTransform2D" parent="Butter9/Bone-19"] -remote_path = NodePath("../../Skeleton2D/Bone-19") +remote_path = NodePath("../../Skeleton2D/Bone-18") update_rotation = false update_scale = false -[node name="Joint2D-Bone-19-Bone-5" type="PinJoint2D" parent="Butter9/Bone-19"] +[node name="Joint2D-Bone-18-Bone-5" type="PinJoint2D" parent="Butter9/Bone-18"] visible = false -rotation = -4.11912 +rotation = -4.24874 node_a = NodePath("..") node_b = NodePath("../../Bone-5") softness = 100.0 -[node name="Joint2D-Bone-19-Bone-9" type="PinJoint2D" parent="Butter9/Bone-19"] +[node name="Joint2D-Bone-18-Bone-13" type="PinJoint2D" parent="Butter9/Bone-18"] visible = false -rotation = -2.88214 +rotation = -2.03444 node_a = NodePath("..") -node_b = NodePath("../../Bone-9") +node_b = NodePath("../../Bone-13") softness = 100.0 -[node name="Joint2D-Bone-19-Bone-14" type="PinJoint2D" parent="Butter9/Bone-19"] +[node name="Joint2D-Bone-18-Bone-9" type="PinJoint2D" parent="Butter9/Bone-18"] visible = false -rotation = -1.9785 +rotation = -3.14159 node_a = NodePath("..") -node_b = NodePath("../../Bone-14") +node_b = NodePath("../../Bone-9") softness = 100.0 [node name="Butter10" type="Polygon2D" parent="."] @@ -10959,1285 +11382,1337 @@ z_index = 2 position = Vector2(134, -353) texture = ExtResource("4_xackp") skeleton = NodePath("Skeleton2D") -polygon = PackedVector2Array(70, 4, 67, 4, 65, 6, 65, 7, 61, 7, 60, 8, 60, 9, 58, 10, 55, 10, 53, 12, 51, 12, 49, 15, 44, 15, 39, 19, 34, 19, 29, 23, 24, 23, 22, 25, 22, 26, 14, 30, 14, 31, 10, 31, 6, 34, 4, 34, 5, 37, 6, 37, 6, 42, 7, 42, 6, 99, 6, 105, 11, 108, 11, 109, 14, 110, 18, 110, 22, 113, 22, 114, 26, 114, 30, 117, 30, 118, 36, 118, 42, 121, 42, 122, 46, 122, 47, 123, 47, 124, 51, 125, 51, 126, 67, 126, 70, 122, 76, 122, 78, 119, 78, 118, 83, 118, 88, 114, 92, 114, 95, 111, 95, 110, 98, 109, 100, 109, 102, 107, 102, 106, 105, 106, 106, 105, 106, 104, 110, 102, 113, 102, 114, 100, 115, 100, 115, 87, 113, 83, 113, 35, 110, 35, 109, 34, 109, 31, 106, 31, 105, 30, 105, 28, 103, 28, 93, 19, 90, 19, 89, 18, 89, 15, 85, 13, 85, 11, 82, 11, 74, 4, 74, 3, 70, 3, 16.404, 42.2231, 17.2099, 64.8417, 14.9926, 67.4763, 6.56298, 66.9104, 7, 42, 6, 42, 6, 40.8541, 19.9638, 39.1868, 16.404, 42.2231, 6, 40.8541, 6, 37, 5, 37, 4, 34, 6, 34, 10, 31, 14, 31, 14, 30, 19.1198, 27.4401, 14.9926, 67.4763, 16.6942, 88.6245, 14.8609, 90.573, 6.15233, 90.317, 6.56298, 66.9104, 41.8946, 39.7678, 19.9638, 39.1868, 19.1198, 27.4401, 22, 26, 22, 25, 24, 23, 29, 23, 34, 19, 39, 19, 44, 15, 45.1977, 15, 41.8946, 39.7678, 43.4228, 41.3806, 42.0191, 65.3034, 17.2099, 64.8417, 16.404, 42.2231, 19.9638, 39.1868, 42.0191, 65.3034, 43.7593, 67.3959, 39.9293, 90.513, 16.6942, 88.6245, 14.9926, 67.4763, 17.2099, 64.8417, 39.9293, 90.513, 40.0064, 90.6062, 41.7542, 116.383, 40.9418, 117.302, 29.7451, 116.809, 26, 114, 22, 114, 22, 113, 18, 110, 14.0972, 110, 14.8609, 90.573, 16.6942, 88.6245, 14.8609, 90.573, 14.0972, 110, 14, 110, 11, 109, 11, 108, 6, 105, 6, 99, 6.15233, 90.317, 69.5805, 18.3546, 67.0739, 41.8496, 66.534, 42.37, 43.4228, 41.3806, 41.8946, 39.7678, 45.2666, 14.4835, 65.4613, 14.3145, 66.534, 42.37, 68.6898, 66.9299, 67.4574, 68.3857, 43.7593, 67.3959, 42.0191, 65.3034, 43.4228, 41.3806, 67.4574, 68.3857, 69.1074, 88.2666, 66.7385, 90.8323, 40.0064, 90.6062, 39.9293, 90.513, 43.7593, 67.3959, 66.7385, 90.8323, 65.1923, 113.826, 41.7542, 116.383, 40.0064, 90.6062, 74, 4, 82, 11, 85, 11, 85, 13, 89, 15, 89, 17.8885, 69.5805, 18.3546, 65.4613, 14.3145, 67.6064, 4, 70, 4, 70, 3, 74, 3, 65.4613, 14.3145, 49.3672, 14.4492, 51, 12, 53, 12, 55, 10, 58, 10, 60, 9, 60, 8, 61, 7, 65, 7, 65, 6, 67, 4, 67.6064, 4, 94.8406, 40.0048, 92.2197, 42.3484, 67.0739, 41.8496, 69.5805, 18.3546, 92.3703, 17.8076, 92.2197, 42.3484, 89.726, 64.694, 68.6898, 66.9299, 66.534, 42.37, 67.0739, 41.8496, 94.6971, 68.9358, 93.0974, 92.5784, 92.9017, 92.7277, 69.1074, 88.2666, 67.4574, 68.3857, 68.6898, 66.9299, 89.726, 64.694, 92.9017, 92.7277, 89.0792, 117.303, 68.2836, 116.274, 65.1923, 113.826, 66.7385, 90.8323, 69.1074, 88.2666, 84.175, 117.06, 83, 118, 78, 118, 78, 119, 76, 122, 70, 122, 67.2874, 125.617, 68.2836, 116.274, 103, 28, 105, 28, 105, 30, 106, 31, 109, 31, 109, 34, 110, 35, 113, 35, 113, 43.4565, 94.8406, 40.0048, 92.503, 19, 93, 19, 113.848, 43.6177, 117.565, 63.6165, 115.747, 65.8505, 94.6971, 68.9358, 89.726, 64.694, 92.2197, 42.3484, 94.8406, 40.0048, 118.281, 89.2678, 114.613, 93.6621, 93.0974, 92.5784, 94.6971, 68.9358, 115.747, 65.8505, 114.613, 93.6621, 115, 95.2133, 115, 100, 114, 100, 113, 102, 110, 102, 106, 104, 106, 105, 105, 106, 102, 106, 102, 107, 100, 109, 98, 109, 95, 110, 95, 111, 92, 114, 89.5929, 114, 92.9017, 92.7277, 93.0974, 92.5784, 115, 95.2133, 114.613, 93.6621, 115, 93.1981, 68.2836, 116.274, 67.2874, 125.617, 67, 126, 51, 126, 51, 125, 47, 124, 47, 123, 46, 122, 42, 122, 42, 121, 41.1336, 120.567, 40.9418, 117.302, 41.7542, 116.383, 65.1923, 113.826, 40.9418, 117.302, 41.1336, 120.567, 36, 118, 30, 118, 30, 117, 29.7451, 116.809) -polygons = [PackedInt32Array(88, 89, 90), PackedInt32Array(90, 91, 92), PackedInt32Array(92, 93, 94), PackedInt32Array(88, 90, 92), PackedInt32Array(92, 94, 88), PackedInt32Array(105, 95, 96), PackedInt32Array(96, 97, 98), PackedInt32Array(98, 99, 100), PackedInt32Array(101, 102, 103), PackedInt32Array(103, 104, 105), PackedInt32Array(105, 96, 98), PackedInt32Array(98, 100, 101), PackedInt32Array(103, 105, 98), PackedInt32Array(98, 101, 103), PackedInt32Array(110, 106, 107), PackedInt32Array(107, 108, 109), PackedInt32Array(109, 110, 107), PackedInt32Array(121, 111, 112), PackedInt32Array(112, 113, 114), PackedInt32Array(114, 115, 116), PackedInt32Array(117, 118, 119), PackedInt32Array(119, 120, 121), PackedInt32Array(112, 114, 116), PackedInt32Array(119, 121, 112), PackedInt32Array(112, 116, 117), PackedInt32Array(117, 119, 112), PackedInt32Array(127, 122, 123), PackedInt32Array(123, 124, 125), PackedInt32Array(125, 126, 127), PackedInt32Array(127, 123, 125), PackedInt32Array(133, 128, 129), PackedInt32Array(129, 130, 131), PackedInt32Array(131, 132, 133), PackedInt32Array(133, 129, 131), PackedInt32Array(145, 134, 135), PackedInt32Array(135, 136, 137), PackedInt32Array(137, 138, 139), PackedInt32Array(139, 140, 141), PackedInt32Array(142, 143, 144), PackedInt32Array(144, 145, 135), PackedInt32Array(135, 137, 139), PackedInt32Array(139, 141, 142), PackedInt32Array(142, 144, 135), PackedInt32Array(135, 139, 142), PackedInt32Array(153, 146, 147), PackedInt32Array(147, 148, 149), PackedInt32Array(150, 151, 152), PackedInt32Array(152, 153, 147), PackedInt32Array(147, 149, 150), PackedInt32Array(150, 152, 147), PackedInt32Array(160, 154, 155), PackedInt32Array(155, 156, 157), PackedInt32Array(157, 158, 159), PackedInt32Array(159, 160, 155), PackedInt32Array(155, 157, 159), PackedInt32Array(166, 161, 162), PackedInt32Array(162, 163, 164), PackedInt32Array(164, 165, 166), PackedInt32Array(166, 162, 164), PackedInt32Array(172, 167, 168), PackedInt32Array(168, 169, 170), PackedInt32Array(170, 171, 172), PackedInt32Array(172, 168, 170), PackedInt32Array(176, 173, 174), PackedInt32Array(174, 175, 176), PackedInt32Array(178, 179, 180), PackedInt32Array(180, 181, 182), PackedInt32Array(182, 183, 184), PackedInt32Array(184, 185, 186), PackedInt32Array(186, 187, 188), PackedInt32Array(178, 180, 182), PackedInt32Array(182, 184, 186), PackedInt32Array(186, 188, 177), PackedInt32Array(177, 178, 182), PackedInt32Array(182, 186, 177), PackedInt32Array(189, 190, 191), PackedInt32Array(192, 193, 194), PackedInt32Array(195, 196, 197), PackedInt32Array(198, 199, 200), PackedInt32Array(200, 201, 189), PackedInt32Array(189, 191, 192), PackedInt32Array(195, 197, 198), PackedInt32Array(198, 200, 189), PackedInt32Array(189, 192, 194), PackedInt32Array(194, 195, 198), PackedInt32Array(198, 189, 194), PackedInt32Array(206, 202, 203), PackedInt32Array(203, 204, 205), PackedInt32Array(205, 206, 203), PackedInt32Array(211, 207, 208), PackedInt32Array(208, 209, 210), PackedInt32Array(210, 211, 208), PackedInt32Array(218, 212, 213), PackedInt32Array(213, 214, 215), PackedInt32Array(215, 216, 217), PackedInt32Array(217, 218, 213), PackedInt32Array(213, 215, 217), PackedInt32Array(224, 219, 220), PackedInt32Array(220, 221, 222), PackedInt32Array(222, 223, 224), PackedInt32Array(224, 220, 222), PackedInt32Array(232, 225, 226), PackedInt32Array(227, 228, 229), PackedInt32Array(230, 231, 232), PackedInt32Array(232, 226, 227), PackedInt32Array(227, 229, 230), PackedInt32Array(230, 232, 227), PackedInt32Array(233, 234, 235), PackedInt32Array(236, 237, 238), PackedInt32Array(239, 240, 241), PackedInt32Array(241, 242, 243), PackedInt32Array(243, 244, 233), PackedInt32Array(238, 239, 241), PackedInt32Array(241, 243, 233), PackedInt32Array(236, 238, 241), PackedInt32Array(241, 233, 235), PackedInt32Array(235, 236, 241), PackedInt32Array(251, 245, 246), PackedInt32Array(246, 247, 248), PackedInt32Array(248, 249, 250), PackedInt32Array(250, 251, 246), PackedInt32Array(246, 248, 250), PackedInt32Array(256, 252, 253), PackedInt32Array(253, 254, 255), PackedInt32Array(255, 256, 253), PackedInt32Array(275, 257, 258), PackedInt32Array(258, 259, 260), PackedInt32Array(260, 261, 262), PackedInt32Array(263, 264, 265), PackedInt32Array(266, 267, 268), PackedInt32Array(270, 271, 272), PackedInt32Array(272, 273, 274), PackedInt32Array(274, 275, 258), PackedInt32Array(258, 260, 262), PackedInt32Array(263, 265, 266), PackedInt32Array(266, 268, 269), PackedInt32Array(270, 272, 274), PackedInt32Array(274, 258, 262), PackedInt32Array(266, 269, 270), PackedInt32Array(274, 262, 263), PackedInt32Array(266, 270, 274), PackedInt32Array(274, 263, 266), PackedInt32Array(278, 276, 277), PackedInt32Array(292, 279, 280), PackedInt32Array(280, 281, 282), PackedInt32Array(283, 284, 285), PackedInt32Array(286, 287, 288), PackedInt32Array(288, 289, 290), PackedInt32Array(290, 291, 292), PackedInt32Array(292, 280, 282), PackedInt32Array(283, 285, 286), PackedInt32Array(286, 288, 290), PackedInt32Array(292, 282, 283), PackedInt32Array(283, 286, 290), PackedInt32Array(290, 292, 283), PackedInt32Array(293, 294, 295), PackedInt32Array(295, 296, 297), PackedInt32Array(297, 298, 293), PackedInt32Array(293, 295, 297)] -bones = ["Bone-0", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 1, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 1, 0.7, 0.7, 0, 0, 0, 0.7, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-1", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-2", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 1, 0.7, 0.7, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-3", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-4", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-5", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 1, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0.7, 0, 0.7, 0, 0.7, 0.7), "Bone-6", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-7", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-8", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-9", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0), "Bone-10", PackedFloat32Array(0.7, 0.7, 0, 0.7, 0.7, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0.7, 0.7, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 1, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 1, 0.7, 0.7, 1, 0.7, 1, 1, 1, 1, 0.7, 0.7, 1, 0.7, 0.7, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-11", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-12", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-13", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-14", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 1, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0), "Bone-15", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 1, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-16", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-17", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-18", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0.7, 0.7, 1, 0.7, 1, 0.7, 0.7, 0.7, 0.7, 0.7, 1, 0.7, 0.7, 0.7, 1, 1, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-19", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7)] -internal_vertex_count = 211 +polygon = PackedVector2Array(70, 4, 67, 4, 65, 6, 65, 7, 61, 7, 60, 8, 60, 9, 58, 10, 55, 10, 53, 12, 51, 12, 49, 15, 44, 15, 39, 19, 34, 19, 29, 23, 24, 23, 22, 25, 22, 26, 14, 30, 14, 31, 10, 31, 6, 34, 4, 34, 5, 37, 6, 37, 6, 42, 7, 42, 6, 99, 6, 105, 11, 108, 11, 109, 14, 110, 18, 110, 22, 113, 22, 114, 26, 114, 30, 117, 30, 118, 36, 118, 42, 121, 42, 122, 46, 122, 47, 123, 47, 124, 51, 125, 51, 126, 67, 126, 70, 122, 76, 122, 78, 119, 78, 118, 83, 118, 88, 114, 92, 114, 95, 111, 95, 110, 98, 109, 100, 109, 102, 107, 102, 106, 105, 106, 106, 105, 106, 104, 110, 102, 113, 102, 114, 100, 115, 100, 115, 87, 113, 83, 113, 35, 110, 35, 109, 34, 109, 31, 106, 31, 105, 30, 105, 28, 103, 28, 93, 19, 90, 19, 89, 18, 89, 15, 85, 13, 85, 11, 82, 11, 74, 4, 74, 3, 70, 3, 16.5, 65.5, 6.58772, 65.5, 6.80702, 53, 16.5, 53, 16.5, 53, 6.80702, 53, 7, 42, 6, 42, 6, 40.5, 16.5, 40.5, 16.5, 40.5, 6, 40.5, 6, 37, 5, 37, 4, 34, 6, 34, 10, 31, 14, 31, 14, 30, 16.5, 28.75, 16.5, 90.5, 6.14912, 90.5, 6.36842, 78, 16.5, 78, 16.5, 78, 6.36842, 78, 6.58772, 65.5, 16.5, 65.5, 29, 28, 18, 28, 22, 26, 22, 25, 24, 23, 29, 23, 41.5, 40.5, 29, 40.5, 29, 28, 41.5, 28, 29, 40.5, 16.5, 40.5, 16.5, 28.75, 18, 28, 29, 28, 41.5, 28, 29, 28, 29, 23, 34, 19, 39, 19, 41.5, 17, 29, 53, 16.5, 53, 16.5, 40.5, 29, 40.5, 41.5, 65.5, 29, 65.5, 29, 53, 41.5, 53, 29, 65.5, 16.5, 65.5, 16.5, 53, 29, 53, 41.5, 53, 29, 53, 29, 40.5, 41.5, 40.5, 29, 78, 16.5, 78, 16.5, 65.5, 29, 65.5, 41.5, 90.5, 29, 90.5, 29, 78, 41.5, 78, 29, 90.5, 16.5, 90.5, 16.5, 78, 29, 78, 41.5, 78, 29, 78, 29, 65.5, 41.5, 65.5, 29, 103, 16.5, 103, 16.5, 90.5, 29, 90.5, 41.5, 115.5, 29, 115.5, 29, 103, 41.5, 103, 29, 115.5, 28, 115.5, 26, 114, 22, 114, 22, 113, 18, 110, 16.5, 110, 16.5, 103, 29, 103, 41.5, 103, 29, 103, 29, 90.5, 41.5, 90.5, 16.5, 110, 14, 110, 11, 109, 11, 108, 6, 105, 6, 103, 16.5, 103, 16.5, 103, 6, 103, 6, 99, 6.14912, 90.5, 16.5, 90.5, 29, 116.25, 28, 115.5, 29, 115.5, 41.5, 120.75, 36, 118, 30, 118, 30, 117, 29, 116.25, 29, 115.5, 41.5, 115.5, 54, 28, 41.5, 28, 41.5, 17, 43.375, 15.5, 54, 15.5, 66.5, 40.5, 54, 40.5, 54, 28, 66.5, 28, 54, 40.5, 41.5, 40.5, 41.5, 28, 54, 28, 66.5, 28, 54, 28, 54, 15.5, 66.5, 15.5, 66.5, 15.5, 54, 15.5, 54, 11, 55, 10, 58, 10, 60, 9, 60, 8, 61, 7, 65, 7, 65, 6, 66.5, 4.5, 54, 15.5, 43.375, 15.5, 44, 15, 49, 15, 51, 12, 53, 12, 54, 11, 54, 53, 41.5, 53, 41.5, 40.5, 54, 40.5, 66.5, 65.5, 54, 65.5, 54, 53, 66.5, 53, 54, 65.5, 41.5, 65.5, 41.5, 53, 54, 53, 66.5, 53, 54, 53, 54, 40.5, 66.5, 40.5, 54, 78, 41.5, 78, 41.5, 65.5, 54, 65.5, 66.5, 90.5, 54, 90.5, 54, 78, 66.5, 78, 54, 90.5, 41.5, 90.5, 41.5, 78, 54, 78, 66.5, 78, 54, 78, 54, 65.5, 66.5, 65.5, 54, 103, 41.5, 103, 41.5, 90.5, 54, 90.5, 66.5, 115.5, 54, 115.5, 54, 103, 66.5, 103, 54, 115.5, 41.5, 115.5, 41.5, 103, 54, 103, 66.5, 103, 54, 103, 54, 90.5, 66.5, 90.5, 79, 28, 66.5, 28, 66.5, 15.5, 79, 15.5, 91.5, 40.5, 79, 40.5, 79, 28, 91.5, 28, 79, 40.5, 66.5, 40.5, 66.5, 28, 79, 28, 89, 18, 90, 19, 91.5, 19, 91.5, 28, 79, 28, 79, 15.5, 89, 15.5, 82, 11, 85, 11, 85, 13, 89, 15, 89, 15.5, 79, 15.5, 79, 8.375, 74, 4, 79, 8.375, 79, 15.5, 66.5, 15.5, 66.5, 4.5, 67, 4, 70, 4, 70, 3, 74, 3, 79, 53, 66.5, 53, 66.5, 40.5, 79, 40.5, 91.5, 65.5, 79, 65.5, 79, 53, 91.5, 53, 79, 65.5, 66.5, 65.5, 66.5, 53, 79, 53, 91.5, 53, 79, 53, 79, 40.5, 91.5, 40.5, 79, 78, 66.5, 78, 66.5, 65.5, 79, 65.5, 91.5, 90.5, 79, 90.5, 79, 78, 91.5, 78, 79, 90.5, 66.5, 90.5, 66.5, 78, 79, 78, 91.5, 78, 79, 78, 79, 65.5, 91.5, 65.5, 79, 103, 66.5, 103, 66.5, 90.5, 79, 90.5, 91.5, 114, 88, 114, 86.125, 115.5, 79, 115.5, 79, 103, 91.5, 103, 79, 115.5, 66.5, 115.5, 66.5, 103, 79, 103, 91.5, 103, 79, 103, 79, 90.5, 91.5, 90.5, 79, 118, 78, 118, 78, 119, 76, 122, 70, 122, 67, 126, 66.5, 126, 66.5, 115.5, 79, 115.5, 83, 118, 79, 118, 79, 115.5, 86.125, 115.5, 103, 28, 91.5, 28, 91.5, 19, 93, 19, 105, 30, 106, 31, 109, 31, 109, 34, 110, 35, 113, 35, 113, 40.5, 104, 40.5, 104, 28, 105, 28, 104, 40.5, 91.5, 40.5, 91.5, 28, 104, 28, 104, 53, 91.5, 53, 91.5, 40.5, 104, 40.5, 113, 65.5, 104, 65.5, 104, 53, 113, 53, 104, 65.5, 91.5, 65.5, 91.5, 53, 104, 53, 113, 53, 104, 53, 104, 40.5, 113, 40.5, 104, 78, 91.5, 78, 91.5, 65.5, 104, 65.5, 113, 83, 115, 87, 115, 90.5, 104, 90.5, 104, 78, 113, 78, 104, 90.5, 91.5, 90.5, 91.5, 78, 104, 78, 113, 78, 104, 78, 104, 65.5, 113, 65.5, 104, 103, 91.5, 103, 91.5, 90.5, 104, 90.5, 106, 104, 106, 105, 105, 106, 104, 106, 104, 103, 108, 103, 104, 106, 102, 106, 102, 107, 100, 109, 98, 109, 95, 110, 95, 111, 92, 114, 91.5, 114, 91.5, 103, 104, 103, 115, 100, 114, 100, 113, 102, 110, 102, 108, 103, 104, 103, 104, 90.5, 115, 90.5, 54, 126, 51, 126, 51, 125, 47, 124, 47, 123, 46, 122, 42, 122, 42, 121, 41.5, 120.75, 41.5, 115.5, 54, 115.5, 66.5, 126, 54, 126, 54, 115.5, 66.5, 115.5) +polygons = [PackedInt32Array(91, 88, 89), PackedInt32Array(89, 90, 91), PackedInt32Array(97, 92, 93), PackedInt32Array(94, 95, 96), PackedInt32Array(97, 93, 94), PackedInt32Array(94, 96, 97), PackedInt32Array(107, 98, 99), PackedInt32Array(100, 101, 102), PackedInt32Array(103, 104, 105), PackedInt32Array(105, 106, 107), PackedInt32Array(100, 102, 103), PackedInt32Array(105, 107, 99), PackedInt32Array(100, 103, 105), PackedInt32Array(105, 99, 100), PackedInt32Array(111, 108, 109), PackedInt32Array(109, 110, 111), PackedInt32Array(115, 112, 113), PackedInt32Array(113, 114, 115), PackedInt32Array(121, 116, 117), PackedInt32Array(118, 119, 120), PackedInt32Array(121, 117, 118), PackedInt32Array(118, 120, 121), PackedInt32Array(125, 122, 123), PackedInt32Array(123, 124, 125), PackedInt32Array(130, 126, 127), PackedInt32Array(127, 128, 129), PackedInt32Array(129, 130, 127), PackedInt32Array(136, 131, 132), PackedInt32Array(132, 133, 134), PackedInt32Array(135, 136, 132), PackedInt32Array(132, 134, 135), PackedInt32Array(140, 137, 138), PackedInt32Array(138, 139, 140), PackedInt32Array(144, 141, 142), PackedInt32Array(142, 143, 144), PackedInt32Array(148, 145, 146), PackedInt32Array(146, 147, 148), PackedInt32Array(152, 149, 150), PackedInt32Array(150, 151, 152), PackedInt32Array(156, 153, 154), PackedInt32Array(154, 155, 156), PackedInt32Array(160, 157, 158), PackedInt32Array(158, 159, 160), PackedInt32Array(164, 161, 162), PackedInt32Array(162, 163, 164), PackedInt32Array(168, 165, 166), PackedInt32Array(166, 167, 168), PackedInt32Array(172, 169, 170), PackedInt32Array(170, 171, 172), PackedInt32Array(176, 173, 174), PackedInt32Array(174, 175, 176), PackedInt32Array(185, 177, 178), PackedInt32Array(179, 180, 181), PackedInt32Array(182, 183, 184), PackedInt32Array(184, 185, 178), PackedInt32Array(179, 181, 182), PackedInt32Array(184, 178, 179), PackedInt32Array(179, 182, 184), PackedInt32Array(189, 186, 187), PackedInt32Array(187, 188, 189), PackedInt32Array(196, 190, 191), PackedInt32Array(191, 192, 193), PackedInt32Array(193, 194, 195), PackedInt32Array(195, 196, 191), PackedInt32Array(191, 193, 195), PackedInt32Array(201, 197, 198), PackedInt32Array(198, 199, 200), PackedInt32Array(200, 201, 198), PackedInt32Array(204, 202, 203), PackedInt32Array(211, 205, 206), PackedInt32Array(206, 207, 208), PackedInt32Array(208, 209, 210), PackedInt32Array(210, 211, 206), PackedInt32Array(206, 208, 210), PackedInt32Array(216, 212, 213), PackedInt32Array(213, 214, 215), PackedInt32Array(215, 216, 213), PackedInt32Array(220, 217, 218), PackedInt32Array(218, 219, 220), PackedInt32Array(224, 221, 222), PackedInt32Array(222, 223, 224), PackedInt32Array(228, 225, 226), PackedInt32Array(226, 227, 228), PackedInt32Array(229, 230, 231), PackedInt32Array(231, 232, 233), PackedInt32Array(234, 235, 236), PackedInt32Array(237, 238, 239), PackedInt32Array(229, 231, 233), PackedInt32Array(234, 236, 237), PackedInt32Array(237, 239, 229), PackedInt32Array(229, 233, 234), PackedInt32Array(234, 237, 229), PackedInt32Array(240, 241, 242), PackedInt32Array(243, 244, 245), PackedInt32Array(245, 246, 240), PackedInt32Array(240, 242, 243), PackedInt32Array(243, 245, 240), PackedInt32Array(250, 247, 248), PackedInt32Array(248, 249, 250), PackedInt32Array(254, 251, 252), PackedInt32Array(252, 253, 254), PackedInt32Array(258, 255, 256), PackedInt32Array(256, 257, 258), PackedInt32Array(262, 259, 260), PackedInt32Array(260, 261, 262), PackedInt32Array(266, 263, 264), PackedInt32Array(264, 265, 266), PackedInt32Array(270, 267, 268), PackedInt32Array(268, 269, 270), PackedInt32Array(274, 271, 272), PackedInt32Array(272, 273, 274), PackedInt32Array(278, 275, 276), PackedInt32Array(276, 277, 278), PackedInt32Array(282, 279, 280), PackedInt32Array(280, 281, 282), PackedInt32Array(286, 283, 284), PackedInt32Array(284, 285, 286), PackedInt32Array(290, 287, 288), PackedInt32Array(288, 289, 290), PackedInt32Array(294, 291, 292), PackedInt32Array(292, 293, 294), PackedInt32Array(298, 295, 296), PackedInt32Array(296, 297, 298), PackedInt32Array(302, 299, 300), PackedInt32Array(300, 301, 302), PackedInt32Array(306, 303, 304), PackedInt32Array(304, 305, 306), PackedInt32Array(308, 309, 310), PackedInt32Array(310, 311, 312), PackedInt32Array(312, 313, 307), PackedInt32Array(307, 308, 310), PackedInt32Array(310, 312, 307), PackedInt32Array(314, 315, 316), PackedInt32Array(316, 317, 318), PackedInt32Array(319, 320, 314), PackedInt32Array(316, 318, 319), PackedInt32Array(319, 314, 316), PackedInt32Array(321, 322, 323), PackedInt32Array(323, 324, 325), PackedInt32Array(325, 326, 327), PackedInt32Array(327, 328, 329), PackedInt32Array(321, 323, 325), PackedInt32Array(327, 329, 321), PackedInt32Array(321, 325, 327), PackedInt32Array(333, 330, 331), PackedInt32Array(331, 332, 333), PackedInt32Array(337, 334, 335), PackedInt32Array(335, 336, 337), PackedInt32Array(341, 338, 339), PackedInt32Array(339, 340, 341), PackedInt32Array(345, 342, 343), PackedInt32Array(343, 344, 345), PackedInt32Array(349, 346, 347), PackedInt32Array(347, 348, 349), PackedInt32Array(353, 350, 351), PackedInt32Array(351, 352, 353), PackedInt32Array(357, 354, 355), PackedInt32Array(355, 356, 357), PackedInt32Array(361, 358, 359), PackedInt32Array(359, 360, 361), PackedInt32Array(365, 362, 363), PackedInt32Array(363, 364, 365), PackedInt32Array(371, 366, 367), PackedInt32Array(367, 368, 369), PackedInt32Array(369, 370, 371), PackedInt32Array(371, 367, 369), PackedInt32Array(375, 372, 373), PackedInt32Array(373, 374, 375), PackedInt32Array(379, 376, 377), PackedInt32Array(377, 378, 379), PackedInt32Array(388, 380, 381), PackedInt32Array(381, 382, 383), PackedInt32Array(384, 385, 386), PackedInt32Array(387, 388, 381), PackedInt32Array(381, 383, 384), PackedInt32Array(384, 386, 387), PackedInt32Array(387, 381, 384), PackedInt32Array(392, 389, 390), PackedInt32Array(390, 391, 392), PackedInt32Array(396, 393, 394), PackedInt32Array(394, 395, 396), PackedInt32Array(398, 399, 400), PackedInt32Array(401, 402, 403), PackedInt32Array(404, 405, 406), PackedInt32Array(400, 401, 403), PackedInt32Array(404, 406, 397), PackedInt32Array(398, 400, 403), PackedInt32Array(403, 404, 397), PackedInt32Array(397, 398, 403), PackedInt32Array(410, 407, 408), PackedInt32Array(408, 409, 410), PackedInt32Array(414, 411, 412), PackedInt32Array(412, 413, 414), PackedInt32Array(418, 415, 416), PackedInt32Array(416, 417, 418), PackedInt32Array(422, 419, 420), PackedInt32Array(420, 421, 422), PackedInt32Array(426, 423, 424), PackedInt32Array(424, 425, 426), PackedInt32Array(430, 427, 428), PackedInt32Array(428, 429, 430), PackedInt32Array(431, 432, 433), PackedInt32Array(433, 434, 435), PackedInt32Array(435, 436, 431), PackedInt32Array(431, 433, 435), PackedInt32Array(440, 437, 438), PackedInt32Array(438, 439, 440), PackedInt32Array(444, 441, 442), PackedInt32Array(442, 443, 444), PackedInt32Array(448, 445, 446), PackedInt32Array(446, 447, 448), PackedInt32Array(449, 450, 451), PackedInt32Array(451, 452, 453), PackedInt32Array(453, 454, 449), PackedInt32Array(449, 451, 453), PackedInt32Array(465, 455, 456), PackedInt32Array(456, 457, 458), PackedInt32Array(460, 461, 462), PackedInt32Array(462, 463, 464), PackedInt32Array(464, 465, 456), PackedInt32Array(456, 458, 459), PackedInt32Array(460, 462, 464), PackedInt32Array(464, 456, 459), PackedInt32Array(459, 460, 464), PackedInt32Array(473, 466, 467), PackedInt32Array(467, 468, 469), PackedInt32Array(469, 470, 471), PackedInt32Array(471, 472, 473), PackedInt32Array(473, 467, 469), PackedInt32Array(469, 471, 473), PackedInt32Array(484, 474, 475), PackedInt32Array(476, 477, 478), PackedInt32Array(479, 480, 481), PackedInt32Array(481, 482, 483), PackedInt32Array(484, 475, 476), PackedInt32Array(476, 478, 479), PackedInt32Array(479, 481, 483), PackedInt32Array(483, 484, 476), PackedInt32Array(476, 479, 483), PackedInt32Array(488, 485, 486), PackedInt32Array(486, 487, 488)] +bones = ["Bone-0", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-1", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-2", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-3", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-4", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-5", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0), "Bone-6", PackedFloat32Array(0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-7", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-8", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-9", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1), "Bone-10", PackedFloat32Array(1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-11", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-12", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-13", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1), "Bone-14", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-15", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-16", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-17", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-18", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1)] +internal_vertex_count = 401 script = ExtResource("2_2dapw") vertex_interval = 25 -radius = 19 -rigidbody_scene = ExtResource("3_6ern4") margin_pixels = -1 -voronoi_interval = 0.15 +min_area = 0.3 stiffness = 0.1 damping = 9.1 rest_length_ratio = 1.1 length_ratio = 0.1 softness = 100.0 +radius = 19 +rigidbody_scene = ExtResource("3_6ern4") physics_material_override = ExtResource("5_221ya") [node name="Skeleton2D" type="Skeleton2D" parent="Butter10"] visible = false -modification_stack = SubResource("SkeletonModificationStack2D_8uuqq") +modification_stack = SubResource("SkeletonModificationStack2D_qsaij") [node name="Bone-0" type="Bone2D" parent="Butter10/Skeleton2D"] -position = Vector2(11.9819, 47.4582) -rotation = 0.260871 -rest = Transform2D(0.966166, 0.257923, -0.257923, 0.966166, 11.9819, 47.4582) +position = Vector2(10.25, 47.125) +rotation = 1.02504 +rest = Transform2D(0.519068, 0.854733, -0.854733, 0.519068, 10.25, 47.125) auto_calculate_length_and_angle = false length = 25.0 bone_angle = 0.0 -metadata/vert_owned = [88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105] -metadata/connected_nodes_paths = [NodePath("Bone-1"), NodePath("Bone-2"), NodePath("Bone-3"), NodePath("Bone-4")] +metadata/vert_owned = [88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107] +metadata/idx = 0 +metadata/connected_nodes_paths = [NodePath("Bone-1"), NodePath("Bone-3"), NodePath("Bone-4"), NodePath("Bone-2")] +metadata/connected_nodes_idx = [1, 3, 4, 2] metadata/_local_pose_override_enabled_ = true [node name="Bone-1" type="Bone2D" parent="Butter10/Skeleton2D"] -position = Vector2(11.4233, 78.7417) -rotation = -0.059216 -rest = Transform2D(0.998247, -0.0591814, 0.0591814, 0.998247, 11.4233, 78.7417) +position = Vector2(11.3246, 78) +rest = Transform2D(1, 0, 0, 1, 11.3246, 78) auto_calculate_length_and_angle = false length = 25.0 bone_angle = 0.0 -metadata/vert_owned = [106, 107, 108, 109, 110] +metadata/vert_owned = [108, 109, 110, 111, 112, 113, 114, 115] +metadata/idx = 1 metadata/connected_nodes_paths = [NodePath("Bone-0"), NodePath("Bone-3"), NodePath("Bone-4"), NodePath("Bone-5")] +metadata/connected_nodes_idx = [0, 3, 4, 5] metadata/_local_pose_override_enabled_ = true [node name="Bone-2" type="Bone2D" parent="Butter10/Skeleton2D"] -position = Vector2(32.1588, 27.3839) -rotation = 0.0406232 -rest = Transform2D(0.999175, 0.0406121, -0.0406121, 0.999175, 32.1588, 27.3839) +position = Vector2(29, 28.75) +rotation = -0.244979 +scale = Vector2(1, 1) +rest = Transform2D(0.970142, -0.242536, 0.242536, 0.970142, 29, 28.75) auto_calculate_length_and_angle = false length = 25.0 bone_angle = 0.0 -metadata/vert_owned = [111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121] +metadata/vert_owned = [116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136] +metadata/idx = 2 metadata/connected_nodes_paths = [NodePath("Bone-0"), NodePath("Bone-3"), NodePath("Bone-6"), NodePath("Bone-7")] +metadata/connected_nodes_idx = [0, 3, 6, 7] metadata/_local_pose_override_enabled_ = true [node name="Bone-3" type="Bone2D" parent="Butter10/Skeleton2D"] -position = Vector2(29.9134, 52.2451) -rotation = 1.59192 -rest = Transform2D(-0.0211265, 0.999777, -0.999777, -0.0211265, 29.9134, 52.2451) +position = Vector2(29, 53) +rotation = -1.5708 +rest = Transform2D(-4.37114e-08, -1, 1, -4.37114e-08, 29, 53) auto_calculate_length_and_angle = false length = 25.0 bone_angle = 0.0 -metadata/vert_owned = [122, 123, 124, 125, 126, 127] -metadata/connected_nodes_paths = [NodePath("Bone-0"), NodePath("Bone-1"), NodePath("Bone-2"), NodePath("Bone-4"), NodePath("Bone-6"), NodePath("Bone-7"), NodePath("Bone-8")] +metadata/vert_owned = [137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152] +metadata/idx = 3 +metadata/connected_nodes_paths = [NodePath("Bone-0"), NodePath("Bone-1"), NodePath("Bone-4"), NodePath("Bone-2"), NodePath("Bone-6"), NodePath("Bone-7"), NodePath("Bone-8")] +metadata/connected_nodes_idx = [0, 1, 4, 2, 6, 7, 8] metadata/_local_pose_override_enabled_ = true [node name="Bone-4" type="Bone2D" parent="Butter10/Skeleton2D"] -position = Vector2(29.376, 77.6774) -rotation = 1.78493 -rest = Transform2D(-0.212502, 0.977161, -0.977161, -0.212502, 29.376, 77.6774) +position = Vector2(29, 78) +rotation = 1.7586 +rest = Transform2D(-0.186704, 0.982416, -0.982416, -0.186704, 29, 78) auto_calculate_length_and_angle = false length = 25.0 bone_angle = 0.0 -metadata/vert_owned = [128, 129, 130, 131, 132, 133] +metadata/vert_owned = [153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168] +metadata/idx = 4 metadata/connected_nodes_paths = [NodePath("Bone-0"), NodePath("Bone-1"), NodePath("Bone-3"), NodePath("Bone-5"), NodePath("Bone-7"), NodePath("Bone-8"), NodePath("Bone-9")] +metadata/connected_nodes_idx = [0, 1, 3, 5, 7, 8, 9] metadata/_local_pose_override_enabled_ = true [node name="Bone-5" type="Bone2D" parent="Butter10/Skeleton2D"] -position = Vector2(23.8771, 102.963) -rotation = -0.661389 -rest = Transform2D(0.78914, -0.614213, 0.614213, 0.78914, 23.8771, 102.963) +position = Vector2(23.75, 105.625) +rotation = -1.38299 +scale = Vector2(1, 1) +rest = Transform2D(0.186704, -0.982416, 0.982416, 0.186704, 23.75, 105.625) auto_calculate_length_and_angle = false length = 25.0 bone_angle = 0.0 -metadata/vert_owned = [134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153] -metadata/connected_nodes_paths = [NodePath("Bone-1"), NodePath("Bone-4"), NodePath("Bone-8"), NodePath("Bone-9"), NodePath("Bone-19")] +metadata/vert_owned = [169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211] +metadata/idx = 5 +metadata/connected_nodes_paths = [NodePath("Bone-18"), NodePath("Bone-1"), NodePath("Bone-4"), NodePath("Bone-8"), NodePath("Bone-9")] +metadata/connected_nodes_idx = [18, 1, 4, 8, 9] metadata/_local_pose_override_enabled_ = true [node name="Bone-6" type="Bone2D" parent="Butter10/Skeleton2D"] -position = Vector2(55.7376, 28.3423) -rotation = -0.920184 +position = Vector2(54, 22.5) +rotation = 2.25742 scale = Vector2(1, 1) -rest = Transform2D(0.605673, -0.795713, 0.795713, 0.605673, 55.7376, 28.3423) +rest = Transform2D(-0.633928, 0.773392, -0.773392, -0.633928, 54, 22.5) auto_calculate_length_and_angle = false length = 25.0 bone_angle = 0.0 -metadata/vert_owned = [154, 155, 156, 157, 158, 159, 160] -metadata/connected_nodes_paths = [NodePath("Bone-2"), NodePath("Bone-3"), NodePath("Bone-7"), NodePath("Bone-10"), NodePath("Bone-11"), NodePath("Bone-12")] +metadata/vert_owned = [212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246] +metadata/idx = 6 +metadata/connected_nodes_paths = [NodePath("Bone-10"), NodePath("Bone-2"), NodePath("Bone-3"), NodePath("Bone-7"), NodePath("Bone-11")] +metadata/connected_nodes_idx = [10, 2, 3, 7, 11] metadata/_local_pose_override_enabled_ = true [node name="Bone-7" type="Bone2D" parent="Butter10/Skeleton2D"] -position = Vector2(55.3545, 54.8831) -rotation = 1.60529 -rest = Transform2D(-0.0344869, 0.999405, -0.999405, -0.0344869, 55.3545, 54.8831) +position = Vector2(54, 53) +rotation = 1.5708 +rest = Transform2D(-4.37114e-08, 1, -1, -4.37114e-08, 54, 53) auto_calculate_length_and_angle = false length = 25.0 bone_angle = 0.0 -metadata/vert_owned = [161, 162, 163, 164, 165, 166] -metadata/connected_nodes_paths = [NodePath("Bone-2"), NodePath("Bone-3"), NodePath("Bone-4"), NodePath("Bone-6"), NodePath("Bone-8"), NodePath("Bone-11"), NodePath("Bone-12"), NodePath("Bone-13")] +metadata/vert_owned = [247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262] +metadata/idx = 7 +metadata/connected_nodes_paths = [NodePath("Bone-2"), NodePath("Bone-3"), NodePath("Bone-6"), NodePath("Bone-4"), NodePath("Bone-8"), NodePath("Bone-10"), NodePath("Bone-11"), NodePath("Bone-12")] +metadata/connected_nodes_idx = [2, 3, 6, 4, 8, 10, 11, 12] metadata/_local_pose_override_enabled_ = true [node name="Bone-8" type="Bone2D" parent="Butter10/Skeleton2D"] -position = Vector2(54.5183, 79.1141) -rotation = 1.61776 -rest = Transform2D(-0.046948, 0.998897, -0.998897, -0.046948, 54.5183, 79.1141) +position = Vector2(54, 78) +rotation = 1.5708 +rest = Transform2D(-4.37114e-08, 1, -1, -4.37114e-08, 54, 78) auto_calculate_length_and_angle = false length = 25.0 bone_angle = 0.0 -metadata/vert_owned = [167, 168, 169, 170, 171, 172] -metadata/connected_nodes_paths = [NodePath("Bone-3"), NodePath("Bone-4"), NodePath("Bone-5"), NodePath("Bone-7"), NodePath("Bone-9"), NodePath("Bone-12"), NodePath("Bone-13"), NodePath("Bone-14")] +metadata/vert_owned = [263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278] +metadata/idx = 8 +metadata/connected_nodes_paths = [NodePath("Bone-3"), NodePath("Bone-4"), NodePath("Bone-7"), NodePath("Bone-5"), NodePath("Bone-9"), NodePath("Bone-11"), NodePath("Bone-12"), NodePath("Bone-13")] +metadata/connected_nodes_idx = [3, 4, 7, 5, 9, 11, 12, 13] metadata/_local_pose_override_enabled_ = true [node name="Bone-9" type="Bone2D" parent="Butter10/Skeleton2D"] -position = Vector2(53.3725, 103.495) -rotation = -0.729804 -rest = Transform2D(0.745305, -0.666723, 0.666723, 0.745305, 53.3725, 103.495) +position = Vector2(54, 103) +rotation = 1.5708 +rest = Transform2D(-4.37114e-08, 1, -1, -4.37114e-08, 54, 103) auto_calculate_length_and_angle = false length = 25.0 bone_angle = 0.0 -metadata/vert_owned = [173, 174, 175, 176] -metadata/connected_nodes_paths = [NodePath("Bone-4"), NodePath("Bone-5"), NodePath("Bone-8"), NodePath("Bone-13"), NodePath("Bone-14"), NodePath("Bone-19")] +metadata/vert_owned = [279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294] +metadata/idx = 9 +metadata/connected_nodes_paths = [NodePath("Bone-4"), NodePath("Bone-5"), NodePath("Bone-8"), NodePath("Bone-18"), NodePath("Bone-12"), NodePath("Bone-13")] +metadata/connected_nodes_idx = [4, 5, 8, 18, 12, 13] metadata/_local_pose_override_enabled_ = true [node name="Bone-10" type="Bone2D" parent="Butter10/Skeleton2D"] -position = Vector2(69.1836, 10.6773) -rotation = 1.02534 -rest = Transform2D(0.518807, 0.854892, -0.854892, 0.518807, 69.1836, 10.6773) +position = Vector2(79, 21.75) +rotation = 1.5708 +rest = Transform2D(-4.37114e-08, 1, -1, -4.37114e-08, 79, 21.75) auto_calculate_length_and_angle = false length = 25.0 bone_angle = 0.0 -metadata/vert_owned = [177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201] -metadata/connected_nodes_paths = [NodePath("Bone-6"), NodePath("Bone-11")] +metadata/vert_owned = [295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329] +metadata/idx = 10 +metadata/connected_nodes_paths = [NodePath("Bone-6"), NodePath("Bone-7"), NodePath("Bone-11"), NodePath("Bone-14"), NodePath("Bone-15")] +metadata/connected_nodes_idx = [6, 7, 11, 14, 15] metadata/_local_pose_override_enabled_ = true [node name="Bone-11" type="Bone2D" parent="Butter10/Skeleton2D"] -position = Vector2(80.9573, 30.078) -rotation = 1.63571 -rest = Transform2D(-0.0648692, 0.997894, -0.997894, -0.0648692, 80.9573, 30.078) +position = Vector2(79, 53) +rotation = 1.5708 +rest = Transform2D(-4.37114e-08, 1, -1, -4.37114e-08, 79, 53) auto_calculate_length_and_angle = false length = 25.0 bone_angle = 0.0 -metadata/vert_owned = [202, 203, 204, 205, 206] -metadata/connected_nodes_paths = [NodePath("Bone-6"), NodePath("Bone-7"), NodePath("Bone-10"), NodePath("Bone-12"), NodePath("Bone-15"), NodePath("Bone-16")] +metadata/vert_owned = [330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345] +metadata/idx = 11 +metadata/connected_nodes_paths = [NodePath("Bone-6"), NodePath("Bone-7"), NodePath("Bone-10"), NodePath("Bone-8"), NodePath("Bone-12"), NodePath("Bone-14"), NodePath("Bone-15"), NodePath("Bone-16")] +metadata/connected_nodes_idx = [6, 7, 10, 8, 12, 14, 15, 16] metadata/_local_pose_override_enabled_ = true [node name="Bone-12" type="Bone2D" parent="Butter10/Skeleton2D"] -position = Vector2(79.3768, 54.3897) -rotation = 1.50099 -rest = Transform2D(0.0697447, 0.997565, -0.997565, 0.0697447, 79.3768, 54.3897) +position = Vector2(79, 78) +rotation = 1.5708 +rest = Transform2D(-4.37114e-08, 1, -1, -4.37114e-08, 79, 78) auto_calculate_length_and_angle = false length = 25.0 bone_angle = 0.0 -metadata/vert_owned = [207, 208, 209, 210, 211] -metadata/connected_nodes_paths = [NodePath("Bone-6"), NodePath("Bone-7"), NodePath("Bone-8"), NodePath("Bone-11"), NodePath("Bone-13"), NodePath("Bone-15"), NodePath("Bone-16"), NodePath("Bone-17")] +metadata/vert_owned = [346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361] +metadata/idx = 12 +metadata/connected_nodes_paths = [NodePath("Bone-7"), NodePath("Bone-8"), NodePath("Bone-11"), NodePath("Bone-9"), NodePath("Bone-13"), NodePath("Bone-15"), NodePath("Bone-16"), NodePath("Bone-17")] +metadata/connected_nodes_idx = [7, 8, 11, 9, 13, 15, 16, 17] metadata/_local_pose_override_enabled_ = true [node name="Bone-13" type="Bone2D" parent="Butter10/Skeleton2D"] -position = Vector2(81.0773, 78.7108) -rotation = 1.64259 -rest = Transform2D(-0.071731, 0.997424, -0.997424, -0.071731, 81.0773, 78.7108) +position = Vector2(79, 108.25) +rotation = -2.9346 +rest = Transform2D(-0.978653, -0.205517, 0.205517, -0.978653, 79, 108.25) auto_calculate_length_and_angle = false length = 25.0 bone_angle = 0.0 -metadata/vert_owned = [212, 213, 214, 215, 216, 217, 218] -metadata/connected_nodes_paths = [NodePath("Bone-7"), NodePath("Bone-8"), NodePath("Bone-9"), NodePath("Bone-12"), NodePath("Bone-14"), NodePath("Bone-16"), NodePath("Bone-17"), NodePath("Bone-18")] +metadata/vert_owned = [362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392] +metadata/idx = 13 +metadata/connected_nodes_paths = [NodePath("Bone-18"), NodePath("Bone-17"), NodePath("Bone-8"), NodePath("Bone-9"), NodePath("Bone-12"), NodePath("Bone-16")] +metadata/connected_nodes_idx = [18, 17, 8, 9, 12, 16] metadata/_local_pose_override_enabled_ = true [node name="Bone-14" type="Bone2D" parent="Butter10/Skeleton2D"] -position = Vector2(79.047, 106.942) -rotation = -0.795485 +position = Vector2(102.25, 29.75) +rotation = 2.35619 scale = Vector2(1, 1) -rest = Transform2D(0.699938, -0.714203, 0.714203, 0.699938, 79.047, 106.942) +rest = Transform2D(-0.707107, 0.707107, -0.707107, -0.707107, 102.25, 29.75) auto_calculate_length_and_angle = false length = 25.0 bone_angle = 0.0 -metadata/vert_owned = [219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232] -metadata/connected_nodes_paths = [NodePath("Bone-8"), NodePath("Bone-9"), NodePath("Bone-13"), NodePath("Bone-17"), NodePath("Bone-18"), NodePath("Bone-19")] +metadata/vert_owned = [393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410] +metadata/idx = 14 +metadata/connected_nodes_paths = [NodePath("Bone-10"), NodePath("Bone-11"), NodePath("Bone-15")] +metadata/connected_nodes_idx = [10, 11, 15] metadata/_local_pose_override_enabled_ = true [node name="Bone-15" type="Bone2D" parent="Butter10/Skeleton2D"] -position = Vector2(102.751, 31.2282) -rotation = 2.36077 -rest = Transform2D(-0.710338, 0.703861, -0.703861, -0.710338, 102.751, 31.2282) +position = Vector2(102.25, 53) +rotation = -1.5708 +rest = Transform2D(-4.37114e-08, -1, 1, -4.37114e-08, 102.25, 53) auto_calculate_length_and_angle = false length = 25.0 bone_angle = 0.0 -metadata/vert_owned = [233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244] -metadata/connected_nodes_paths = [NodePath("Bone-11"), NodePath("Bone-12"), NodePath("Bone-16")] +metadata/vert_owned = [411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426] +metadata/idx = 15 +metadata/connected_nodes_paths = [NodePath("Bone-10"), NodePath("Bone-11"), NodePath("Bone-14"), NodePath("Bone-12"), NodePath("Bone-16")] +metadata/connected_nodes_idx = [10, 11, 14, 12, 16] metadata/_local_pose_override_enabled_ = true [node name="Bone-16" type="Bone2D" parent="Butter10/Skeleton2D"] -position = Vector2(103.646, 54.4703) -rotation = 2.32049 +position = Vector2(103.25, 78) +rotation = -1.61077 scale = Vector2(1, 1) -rest = Transform2D(-0.681412, 0.7319, -0.7319, -0.681412, 103.646, 54.4703) +rest = Transform2D(-0.039968, -0.999201, 0.999201, -0.039968, 103.25, 78) auto_calculate_length_and_angle = false length = 25.0 bone_angle = 0.0 -metadata/vert_owned = [245, 246, 247, 248, 249, 250, 251] -metadata/connected_nodes_paths = [NodePath("Bone-11"), NodePath("Bone-12"), NodePath("Bone-13"), NodePath("Bone-15"), NodePath("Bone-17")] +metadata/vert_owned = [427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444] +metadata/idx = 16 +metadata/connected_nodes_paths = [NodePath("Bone-11"), NodePath("Bone-12"), NodePath("Bone-15"), NodePath("Bone-13"), NodePath("Bone-17")] +metadata/connected_nodes_idx = [11, 12, 15, 13, 17] metadata/_local_pose_override_enabled_ = true [node name="Bone-17" type="Bone2D" parent="Butter10/Skeleton2D"] -position = Vector2(105.689, 79.7563) -rotation = 2.34611 -rest = Transform2D(-0.699938, 0.714203, -0.714203, -0.699938, 105.689, 79.7563) +position = Vector2(103.25, 102.25) +rotation = -2.35619 +scale = Vector2(1, 1) +rest = Transform2D(-0.707107, -0.707107, 0.707107, -0.707107, 103.25, 102.25) auto_calculate_length_and_angle = false length = 25.0 bone_angle = 0.0 -metadata/vert_owned = [252, 253, 254, 255, 256] -metadata/connected_nodes_paths = [NodePath("Bone-12"), NodePath("Bone-13"), NodePath("Bone-14"), NodePath("Bone-16"), NodePath("Bone-18")] +metadata/vert_owned = [445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473] +metadata/idx = 17 +metadata/connected_nodes_paths = [NodePath("Bone-13"), NodePath("Bone-12"), NodePath("Bone-16")] +metadata/connected_nodes_idx = [13, 12, 16] metadata/_local_pose_override_enabled_ = true [node name="Bone-18" type="Bone2D" parent="Butter10/Skeleton2D"] -position = Vector2(102.296, 103.289) -rotation = 2.98577 +position = Vector2(54, 120.75) +rotation = -0.463648 scale = Vector2(1, 1) -rest = Transform2D(-0.987884, 0.155195, -0.155195, -0.987884, 102.296, 103.289) -auto_calculate_length_and_angle = false -length = 25.0 -bone_angle = 0.0 -metadata/vert_owned = [257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278] -metadata/connected_nodes_paths = [NodePath("Bone-13"), NodePath("Bone-14"), NodePath("Bone-17")] -metadata/_local_pose_override_enabled_ = true - -[node name="Bone-19" type="Bone2D" parent="Butter10/Skeleton2D"] -position = Vector2(49.0143, 119.913) -rotation = -1.31134 -rest = Transform2D(0.256556, -0.966529, 0.966529, 0.256556, 49.0143, 119.913) +rest = Transform2D(0.894427, -0.447214, 0.447214, 0.894427, 54, 120.75) auto_calculate_length_and_angle = false length = 25.0 bone_angle = 0.0 -metadata/vert_owned = [279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298] -metadata/connected_nodes_paths = [NodePath("Bone-5"), NodePath("Bone-9"), NodePath("Bone-14")] +metadata/vert_owned = [474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488] +metadata/idx = 18 +metadata/connected_nodes_paths = [NodePath("Bone-5"), NodePath("Bone-13"), NodePath("Bone-9")] +metadata/connected_nodes_idx = [5, 13, 9] metadata/_local_pose_override_enabled_ = true -[node name="Bone-0" parent="Butter10" instance=ExtResource("3_6ern4")] -position = Vector2(11.9819, 47.4582) -mass = 0.05 +[node name="Bone-0" type="RigidBody2D" parent="Butter10" instance=ExtResource("3_6ern4")] +position = Vector2(10.25, 47.125) +input_pickable = true +mass = 0.0526316 physics_material_override = ExtResource("5_221ya") +script = ExtResource("11_tqnjl") +metadata/idx = 0 metadata/bone_name = &"Bone-0" [node name="CircleShape2D" type="CollisionShape2D" parent="Butter10/Bone-0"] -shape = SubResource("CircleShape2D_rp0md") +shape = SubResource("CircleShape2D_jfhsm") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Butter10/Bone-0"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-0") update_rotation = false update_scale = false [node name="Joint2D-Bone-0-Bone-1" type="PinJoint2D" parent="Butter10/Bone-0"] visible = false -rotation = 0.017855 +rotation = -0.0347895 node_a = NodePath("..") node_b = NodePath("../../Bone-1") softness = 100.0 -[node name="Joint2D-Bone-0-Bone-2" type="PinJoint2D" parent="Butter10/Bone-0"] -visible = false -rotation = -2.35365 -node_a = NodePath("..") -node_b = NodePath("../../Bone-2") -softness = 100.0 - [node name="Joint2D-Bone-0-Bone-3" type="PinJoint2D" parent="Butter10/Bone-0"] visible = false -rotation = -1.30993 +rotation = -1.26715 node_a = NodePath("..") node_b = NodePath("../../Bone-3") softness = 100.0 [node name="Joint2D-Bone-0-Bone-4" type="PinJoint2D" parent="Butter10/Bone-0"] visible = false -rotation = -0.522283 +rotation = -0.545761 node_a = NodePath("..") node_b = NodePath("../../Bone-4") softness = 100.0 -[node name="Bone-1" parent="Butter10" instance=ExtResource("3_6ern4")] -position = Vector2(11.4233, 78.7417) -mass = 0.05 +[node name="Joint2D-Bone-0-Bone-2" type="PinJoint2D" parent="Butter10/Bone-0"] +visible = false +rotation = -2.34609 +node_a = NodePath("..") +node_b = NodePath("../../Bone-2") +softness = 100.0 + +[node name="Bone-1" type="RigidBody2D" parent="Butter10" instance=ExtResource("3_6ern4")] +position = Vector2(11.3246, 78) +input_pickable = true +mass = 0.0526316 physics_material_override = ExtResource("5_221ya") +script = ExtResource("11_tqnjl") +metadata/idx = 1 metadata/bone_name = &"Bone-1" [node name="CircleShape2D" type="CollisionShape2D" parent="Butter10/Bone-1"] -shape = SubResource("CircleShape2D_rp0md") +shape = SubResource("CircleShape2D_jfhsm") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Butter10/Bone-1"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-1") update_rotation = false update_scale = false [node name="Joint2D-Bone-1-Bone-0" type="PinJoint2D" parent="Butter10/Bone-1"] visible = false -rotation = -3.12374 +rotation = -3.17638 node_a = NodePath("..") node_b = NodePath("../../Bone-0") softness = 100.0 [node name="Joint2D-Bone-1-Bone-3" type="PinJoint2D" parent="Butter10/Bone-1"] visible = false -rotation = -2.53232 +rotation = -2.52617 node_a = NodePath("..") node_b = NodePath("../../Bone-3") softness = 100.0 [node name="Joint2D-Bone-1-Bone-4" type="PinJoint2D" parent="Butter10/Bone-1"] visible = false -rotation = -1.63001 +rotation = -1.5708 node_a = NodePath("..") node_b = NodePath("../../Bone-4") softness = 100.0 [node name="Joint2D-Bone-1-Bone-5" type="PinJoint2D" parent="Butter10/Bone-1"] visible = false -rotation = -0.474914 +rotation = -0.422679 node_a = NodePath("..") node_b = NodePath("../../Bone-5") softness = 100.0 -[node name="Bone-2" parent="Butter10" instance=ExtResource("3_6ern4")] -position = Vector2(32.1588, 27.3839) -mass = 0.05 +[node name="Bone-2" type="RigidBody2D" parent="Butter10" instance=ExtResource("3_6ern4")] +position = Vector2(29, 28.75) +input_pickable = true +mass = 0.0526316 physics_material_override = ExtResource("5_221ya") +script = ExtResource("11_tqnjl") +metadata/idx = 2 metadata/bone_name = &"Bone-2" [node name="CircleShape2D" type="CollisionShape2D" parent="Butter10/Bone-2"] -shape = SubResource("CircleShape2D_rp0md") +shape = SubResource("CircleShape2D_jfhsm") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Butter10/Bone-2"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-2") update_rotation = false update_scale = false [node name="Joint2D-Bone-2-Bone-0" type="PinJoint2D" parent="Butter10/Bone-2"] visible = false -rotation = 0.787946 +rotation = 0.795499 node_a = NodePath("..") node_b = NodePath("../../Bone-0") softness = 100.0 [node name="Joint2D-Bone-2-Bone-3" type="PinJoint2D" parent="Butter10/Bone-2"] visible = false -rotation = 0.0900715 node_a = NodePath("..") node_b = NodePath("../../Bone-3") softness = 100.0 [node name="Joint2D-Bone-2-Bone-6" type="PinJoint2D" parent="Butter10/Bone-2"] visible = false -rotation = -1.53017 +rotation = -1.81578 node_a = NodePath("..") node_b = NodePath("../../Bone-6") softness = 100.0 [node name="Joint2D-Bone-2-Bone-7" type="PinJoint2D" parent="Butter10/Bone-2"] visible = false -rotation = -0.700711 +rotation = -0.800625 node_a = NodePath("..") node_b = NodePath("../../Bone-7") softness = 100.0 -[node name="Bone-3" parent="Butter10" instance=ExtResource("3_6ern4")] -position = Vector2(29.9134, 52.2451) -mass = 0.05 +[node name="Bone-3" type="RigidBody2D" parent="Butter10" instance=ExtResource("3_6ern4")] +position = Vector2(29, 53) +input_pickable = true +mass = 0.0526316 physics_material_override = ExtResource("5_221ya") +script = ExtResource("11_tqnjl") +metadata/idx = 3 metadata/bone_name = &"Bone-3" [node name="CircleShape2D" type="CollisionShape2D" parent="Butter10/Bone-3"] -shape = SubResource("CircleShape2D_rp0md") +shape = SubResource("CircleShape2D_jfhsm") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Butter10/Bone-3"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-3") update_rotation = false update_scale = false [node name="Joint2D-Bone-3-Bone-0" type="PinJoint2D" parent="Butter10/Bone-3"] visible = false -rotation = -4.45152 +rotation = -4.40875 node_a = NodePath("..") node_b = NodePath("../../Bone-0") softness = 100.0 [node name="Joint2D-Bone-3-Bone-1" type="PinJoint2D" parent="Butter10/Bone-3"] visible = false -rotation = 0.609268 +rotation = 0.61542 node_a = NodePath("..") node_b = NodePath("../../Bone-1") softness = 100.0 -[node name="Joint2D-Bone-3-Bone-2" type="PinJoint2D" parent="Butter10/Bone-3"] +[node name="Joint2D-Bone-3-Bone-4" type="PinJoint2D" parent="Butter10/Bone-3"] visible = false -rotation = -3.05152 node_a = NodePath("..") -node_b = NodePath("../../Bone-2") +node_b = NodePath("../../Bone-4") softness = 100.0 -[node name="Joint2D-Bone-3-Bone-4" type="PinJoint2D" parent="Butter10/Bone-3"] +[node name="Joint2D-Bone-3-Bone-2" type="PinJoint2D" parent="Butter10/Bone-3"] visible = false -rotation = 0.0211281 +rotation = -3.14159 node_a = NodePath("..") -node_b = NodePath("../../Bone-4") +node_b = NodePath("../../Bone-2") softness = 100.0 [node name="Joint2D-Bone-3-Bone-6" type="PinJoint2D" parent="Butter10/Bone-3"] visible = false -rotation = -2.31758 +rotation = -2.45497 node_a = NodePath("..") node_b = NodePath("../../Bone-6") softness = 100.0 [node name="Joint2D-Bone-3-Bone-7" type="PinJoint2D" parent="Butter10/Bone-3"] visible = false -rotation = -1.46747 +rotation = -1.5708 node_a = NodePath("..") node_b = NodePath("../../Bone-7") softness = 100.0 [node name="Joint2D-Bone-3-Bone-8" type="PinJoint2D" parent="Butter10/Bone-3"] visible = false -rotation = -0.741441 +rotation = -0.785398 node_a = NodePath("..") node_b = NodePath("../../Bone-8") softness = 100.0 -[node name="Bone-4" parent="Butter10" instance=ExtResource("3_6ern4")] -position = Vector2(29.376, 77.6774) -mass = 0.05 +[node name="Bone-4" type="RigidBody2D" parent="Butter10" instance=ExtResource("3_6ern4")] +position = Vector2(29, 78) +input_pickable = true +mass = 0.0526316 physics_material_override = ExtResource("5_221ya") +script = ExtResource("11_tqnjl") +metadata/idx = 4 metadata/bone_name = &"Bone-4" [node name="CircleShape2D" type="CollisionShape2D" parent="Butter10/Bone-4"] -shape = SubResource("CircleShape2D_rp0md") +shape = SubResource("CircleShape2D_jfhsm") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Butter10/Bone-4"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-4") update_rotation = false update_scale = false [node name="Joint2D-Bone-4-Bone-0" type="PinJoint2D" parent="Butter10/Bone-4"] visible = false -rotation = -3.66388 +rotation = -3.68735 node_a = NodePath("..") node_b = NodePath("../../Bone-0") softness = 100.0 [node name="Joint2D-Bone-4-Bone-1" type="PinJoint2D" parent="Butter10/Bone-4"] visible = false -rotation = 1.51158 +rotation = 1.5708 node_a = NodePath("..") node_b = NodePath("../../Bone-1") softness = 100.0 [node name="Joint2D-Bone-4-Bone-3" type="PinJoint2D" parent="Butter10/Bone-4"] visible = false -rotation = -3.12046 +rotation = -3.14159 node_a = NodePath("..") node_b = NodePath("../../Bone-3") softness = 100.0 [node name="Joint2D-Bone-4-Bone-5" type="PinJoint2D" parent="Butter10/Bone-4"] visible = false -rotation = 0.214135 +rotation = 0.187806 node_a = NodePath("..") node_b = NodePath("../../Bone-5") softness = 100.0 [node name="Joint2D-Bone-4-Bone-7" type="PinJoint2D" parent="Butter10/Bone-4"] visible = false -rotation = -2.291 +rotation = -2.35619 node_a = NodePath("..") node_b = NodePath("../../Bone-7") softness = 100.0 [node name="Joint2D-Bone-4-Bone-8" type="PinJoint2D" parent="Butter10/Bone-4"] visible = false -rotation = -1.51371 +rotation = -1.5708 node_a = NodePath("..") node_b = NodePath("../../Bone-8") softness = 100.0 [node name="Joint2D-Bone-4-Bone-9" type="PinJoint2D" parent="Butter10/Bone-4"] visible = false -rotation = -0.748864 +rotation = -0.785398 node_a = NodePath("..") node_b = NodePath("../../Bone-9") softness = 100.0 -[node name="Bone-5" parent="Butter10" instance=ExtResource("3_6ern4")] -position = Vector2(23.8771, 102.963) -mass = 0.05 +[node name="Bone-5" type="RigidBody2D" parent="Butter10" instance=ExtResource("3_6ern4")] +position = Vector2(23.75, 105.625) +input_pickable = true +mass = 0.0526316 physics_material_override = ExtResource("5_221ya") +script = ExtResource("11_tqnjl") +metadata/idx = 5 metadata/bone_name = &"Bone-5" [node name="CircleShape2D" type="CollisionShape2D" parent="Butter10/Bone-5"] -shape = SubResource("CircleShape2D_rp0md") +shape = SubResource("CircleShape2D_jfhsm") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Butter10/Bone-5"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-5") update_rotation = false update_scale = false +[node name="Joint2D-Bone-5-Bone-18" type="PinJoint2D" parent="Butter10/Bone-5"] +visible = false +rotation = -1.10715 +node_a = NodePath("..") +node_b = NodePath("../../Bone-18") +softness = 100.0 + [node name="Joint2D-Bone-5-Bone-1" type="PinJoint2D" parent="Butter10/Bone-5"] visible = false -rotation = -3.61651 +rotation = -3.56427 node_a = NodePath("..") node_b = NodePath("../../Bone-1") softness = 100.0 [node name="Joint2D-Bone-5-Bone-4" type="PinJoint2D" parent="Butter10/Bone-5"] visible = false -rotation = -2.92746 +rotation = -2.95379 node_a = NodePath("..") node_b = NodePath("../../Bone-4") softness = 100.0 [node name="Joint2D-Bone-5-Bone-8" type="PinJoint2D" parent="Butter10/Bone-5"] visible = false -rotation = -2.23219 +rotation = -2.31087 node_a = NodePath("..") node_b = NodePath("../../Bone-8") softness = 100.0 [node name="Joint2D-Bone-5-Bone-9" type="PinJoint2D" parent="Butter10/Bone-5"] visible = false -rotation = -1.55278 +rotation = -1.65736 node_a = NodePath("..") node_b = NodePath("../../Bone-9") softness = 100.0 -[node name="Joint2D-Bone-5-Bone-19" type="PinJoint2D" parent="Butter10/Bone-5"] -visible = false -rotation = -0.977532 -node_a = NodePath("..") -node_b = NodePath("../../Bone-19") -softness = 100.0 - -[node name="Bone-6" parent="Butter10" instance=ExtResource("3_6ern4")] -position = Vector2(55.7376, 28.3423) -mass = 0.05 +[node name="Bone-6" type="RigidBody2D" parent="Butter10" instance=ExtResource("3_6ern4")] +position = Vector2(54, 22.5) +input_pickable = true +mass = 0.0526316 physics_material_override = ExtResource("5_221ya") +script = ExtResource("11_tqnjl") +metadata/idx = 6 metadata/bone_name = &"Bone-6" [node name="CircleShape2D" type="CollisionShape2D" parent="Butter10/Bone-6"] -shape = SubResource("CircleShape2D_rp0md") +shape = SubResource("CircleShape2D_jfhsm") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Butter10/Bone-6"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-6") update_rotation = false update_scale = false +[node name="Joint2D-Bone-6-Bone-10" type="PinJoint2D" parent="Butter10/Bone-6"] +visible = false +rotation = -1.60079 +node_a = NodePath("..") +node_b = NodePath("../../Bone-10") +softness = 100.0 + [node name="Joint2D-Bone-6-Bone-2" type="PinJoint2D" parent="Butter10/Bone-6"] visible = false -rotation = -4.67177 +rotation = 1.32582 node_a = NodePath("..") node_b = NodePath("../../Bone-2") softness = 100.0 [node name="Joint2D-Bone-6-Bone-3" type="PinJoint2D" parent="Butter10/Bone-6"] visible = false -rotation = 0.824017 +rotation = 0.686622 node_a = NodePath("..") node_b = NodePath("../../Bone-3") softness = 100.0 [node name="Joint2D-Bone-6-Bone-7" type="PinJoint2D" parent="Butter10/Bone-6"] visible = false -rotation = 0.0144326 node_a = NodePath("..") node_b = NodePath("../../Bone-7") softness = 100.0 -[node name="Joint2D-Bone-6-Bone-10" type="PinJoint2D" parent="Butter10/Bone-6"] -visible = false -rotation = -2.49098 -node_a = NodePath("..") -node_b = NodePath("../../Bone-10") -softness = 100.0 - [node name="Joint2D-Bone-6-Bone-11" type="PinJoint2D" parent="Butter10/Bone-6"] visible = false -rotation = -1.50208 +rotation = -0.686622 node_a = NodePath("..") node_b = NodePath("../../Bone-11") softness = 100.0 -[node name="Joint2D-Bone-6-Bone-12" type="PinJoint2D" parent="Butter10/Bone-6"] -visible = false -rotation = -0.736969 -node_a = NodePath("..") -node_b = NodePath("../../Bone-12") -softness = 100.0 - -[node name="Bone-7" parent="Butter10" instance=ExtResource("3_6ern4")] -position = Vector2(55.3545, 54.8831) -mass = 0.05 +[node name="Bone-7" type="RigidBody2D" parent="Butter10" instance=ExtResource("3_6ern4")] +position = Vector2(54, 53) +input_pickable = true +mass = 0.0526316 physics_material_override = ExtResource("5_221ya") +script = ExtResource("11_tqnjl") +metadata/idx = 7 metadata/bone_name = &"Bone-7" [node name="CircleShape2D" type="CollisionShape2D" parent="Butter10/Bone-7"] -shape = SubResource("CircleShape2D_rp0md") +shape = SubResource("CircleShape2D_jfhsm") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Butter10/Bone-7"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-7") update_rotation = false update_scale = false [node name="Joint2D-Bone-7-Bone-2" type="PinJoint2D" parent="Butter10/Bone-7"] visible = false -rotation = -3.8423 +rotation = -3.94222 node_a = NodePath("..") node_b = NodePath("../../Bone-2") softness = 100.0 [node name="Joint2D-Bone-7-Bone-3" type="PinJoint2D" parent="Butter10/Bone-7"] visible = false -rotation = -4.60907 +rotation = 1.5708 node_a = NodePath("..") node_b = NodePath("../../Bone-3") softness = 100.0 -[node name="Joint2D-Bone-7-Bone-4" type="PinJoint2D" parent="Butter10/Bone-7"] +[node name="Joint2D-Bone-7-Bone-6" type="PinJoint2D" parent="Butter10/Bone-7"] visible = false -rotation = 0.850593 +rotation = -3.14159 node_a = NodePath("..") -node_b = NodePath("../../Bone-4") +node_b = NodePath("../../Bone-6") softness = 100.0 -[node name="Joint2D-Bone-7-Bone-6" type="PinJoint2D" parent="Butter10/Bone-7"] +[node name="Joint2D-Bone-7-Bone-4" type="PinJoint2D" parent="Butter10/Bone-7"] visible = false -rotation = -3.12716 +rotation = 0.785398 node_a = NodePath("..") -node_b = NodePath("../../Bone-6") +node_b = NodePath("../../Bone-4") softness = 100.0 [node name="Joint2D-Bone-7-Bone-8" type="PinJoint2D" parent="Butter10/Bone-7"] visible = false -rotation = 0.0344938 node_a = NodePath("..") node_b = NodePath("../../Bone-8") softness = 100.0 -[node name="Joint2D-Bone-7-Bone-11" type="PinJoint2D" parent="Butter10/Bone-7"] +[node name="Joint2D-Bone-7-Bone-10" type="PinJoint2D" parent="Butter10/Bone-7"] visible = false -rotation = -2.34037 +rotation = -2.46685 node_a = NodePath("..") -node_b = NodePath("../../Bone-11") +node_b = NodePath("../../Bone-10") softness = 100.0 -[node name="Joint2D-Bone-7-Bone-12" type="PinJoint2D" parent="Butter10/Bone-7"] +[node name="Joint2D-Bone-7-Bone-11" type="PinJoint2D" parent="Butter10/Bone-7"] visible = false -rotation = -1.59133 +rotation = -1.5708 node_a = NodePath("..") -node_b = NodePath("../../Bone-12") +node_b = NodePath("../../Bone-11") softness = 100.0 -[node name="Joint2D-Bone-7-Bone-13" type="PinJoint2D" parent="Butter10/Bone-7"] +[node name="Joint2D-Bone-7-Bone-12" type="PinJoint2D" parent="Butter10/Bone-7"] visible = false -rotation = -0.823625 +rotation = -0.785398 node_a = NodePath("..") -node_b = NodePath("../../Bone-13") +node_b = NodePath("../../Bone-12") softness = 100.0 -[node name="Bone-8" parent="Butter10" instance=ExtResource("3_6ern4")] -position = Vector2(54.5183, 79.1141) -mass = 0.05 +[node name="Bone-8" type="RigidBody2D" parent="Butter10" instance=ExtResource("3_6ern4")] +position = Vector2(54, 78) +input_pickable = true +mass = 0.0526316 physics_material_override = ExtResource("5_221ya") +script = ExtResource("11_tqnjl") +metadata/idx = 8 metadata/bone_name = &"Bone-8" [node name="CircleShape2D" type="CollisionShape2D" parent="Butter10/Bone-8"] -shape = SubResource("CircleShape2D_rp0md") +shape = SubResource("CircleShape2D_jfhsm") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Butter10/Bone-8"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-8") update_rotation = false update_scale = false [node name="Joint2D-Bone-8-Bone-3" type="PinJoint2D" parent="Butter10/Bone-8"] visible = false -rotation = -3.88303 +rotation = -3.92699 node_a = NodePath("..") node_b = NodePath("../../Bone-3") softness = 100.0 [node name="Joint2D-Bone-8-Bone-4" type="PinJoint2D" parent="Butter10/Bone-8"] visible = false -rotation = -4.65531 +rotation = 1.5708 node_a = NodePath("..") node_b = NodePath("../../Bone-4") softness = 100.0 -[node name="Joint2D-Bone-8-Bone-5" type="PinJoint2D" parent="Butter10/Bone-8"] +[node name="Joint2D-Bone-8-Bone-7" type="PinJoint2D" parent="Butter10/Bone-8"] visible = false -rotation = 0.909408 +rotation = -3.14159 node_a = NodePath("..") -node_b = NodePath("../../Bone-5") +node_b = NodePath("../../Bone-7") softness = 100.0 -[node name="Joint2D-Bone-8-Bone-7" type="PinJoint2D" parent="Butter10/Bone-8"] +[node name="Joint2D-Bone-8-Bone-5" type="PinJoint2D" parent="Butter10/Bone-8"] visible = false -rotation = -3.1071 +rotation = 0.830723 node_a = NodePath("..") -node_b = NodePath("../../Bone-7") +node_b = NodePath("../../Bone-5") softness = 100.0 [node name="Joint2D-Bone-8-Bone-9" type="PinJoint2D" parent="Butter10/Bone-8"] visible = false -rotation = 0.0469652 node_a = NodePath("..") node_b = NodePath("../../Bone-9") softness = 100.0 -[node name="Joint2D-Bone-8-Bone-12" type="PinJoint2D" parent="Butter10/Bone-8"] +[node name="Joint2D-Bone-8-Bone-11" type="PinJoint2D" parent="Butter10/Bone-8"] visible = false -rotation = -2.35349 +rotation = -2.35619 node_a = NodePath("..") -node_b = NodePath("../../Bone-12") +node_b = NodePath("../../Bone-11") softness = 100.0 -[node name="Joint2D-Bone-8-Bone-13" type="PinJoint2D" parent="Butter10/Bone-8"] +[node name="Joint2D-Bone-8-Bone-12" type="PinJoint2D" parent="Butter10/Bone-8"] visible = false -rotation = -1.58598 +rotation = -1.5708 node_a = NodePath("..") -node_b = NodePath("../../Bone-13") +node_b = NodePath("../../Bone-12") softness = 100.0 -[node name="Joint2D-Bone-8-Bone-14" type="PinJoint2D" parent="Butter10/Bone-8"] +[node name="Joint2D-Bone-8-Bone-13" type="PinJoint2D" parent="Butter10/Bone-8"] visible = false -rotation = -0.722473 +rotation = -0.69066 node_a = NodePath("..") -node_b = NodePath("../../Bone-14") +node_b = NodePath("../../Bone-13") softness = 100.0 -[node name="Bone-9" parent="Butter10" instance=ExtResource("3_6ern4")] -position = Vector2(53.3725, 103.495) -mass = 0.05 +[node name="Bone-9" type="RigidBody2D" parent="Butter10" instance=ExtResource("3_6ern4")] +position = Vector2(54, 103) +input_pickable = true +mass = 0.0526316 physics_material_override = ExtResource("5_221ya") +script = ExtResource("11_tqnjl") +metadata/idx = 9 metadata/bone_name = &"Bone-9" [node name="CircleShape2D" type="CollisionShape2D" parent="Butter10/Bone-9"] -shape = SubResource("CircleShape2D_rp0md") +shape = SubResource("CircleShape2D_jfhsm") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Butter10/Bone-9"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-9") update_rotation = false update_scale = false [node name="Joint2D-Bone-9-Bone-4" type="PinJoint2D" parent="Butter10/Bone-9"] visible = false -rotation = -3.89046 +rotation = -3.92699 node_a = NodePath("..") node_b = NodePath("../../Bone-4") softness = 100.0 [node name="Joint2D-Bone-9-Bone-5" type="PinJoint2D" parent="Butter10/Bone-9"] visible = false -rotation = -4.69438 +rotation = 1.48424 node_a = NodePath("..") node_b = NodePath("../../Bone-5") softness = 100.0 [node name="Joint2D-Bone-9-Bone-8" type="PinJoint2D" parent="Butter10/Bone-9"] visible = false -rotation = -3.09463 +rotation = -3.14159 node_a = NodePath("..") node_b = NodePath("../../Bone-8") softness = 100.0 -[node name="Joint2D-Bone-9-Bone-13" type="PinJoint2D" parent="Butter10/Bone-9"] +[node name="Joint2D-Bone-9-Bone-18" type="PinJoint2D" parent="Butter10/Bone-9"] visible = false -rotation = -2.3006 node_a = NodePath("..") -node_b = NodePath("../../Bone-13") +node_b = NodePath("../../Bone-18") softness = 100.0 -[node name="Joint2D-Bone-9-Bone-14" type="PinJoint2D" parent="Butter10/Bone-9"] +[node name="Joint2D-Bone-9-Bone-12" type="PinJoint2D" parent="Butter10/Bone-9"] visible = false -rotation = -1.43733 +rotation = -2.35619 node_a = NodePath("..") -node_b = NodePath("../../Bone-14") +node_b = NodePath("../../Bone-12") softness = 100.0 -[node name="Joint2D-Bone-9-Bone-19" type="PinJoint2D" parent="Butter10/Bone-9"] +[node name="Joint2D-Bone-9-Bone-13" type="PinJoint2D" parent="Butter10/Bone-9"] visible = false -rotation = 0.259457 +rotation = -1.3638 node_a = NodePath("..") -node_b = NodePath("../../Bone-19") +node_b = NodePath("../../Bone-13") softness = 100.0 -[node name="Bone-10" parent="Butter10" instance=ExtResource("3_6ern4")] -position = Vector2(69.1836, 10.6773) -mass = 0.05 +[node name="Bone-10" type="RigidBody2D" parent="Butter10" instance=ExtResource("3_6ern4")] +position = Vector2(79, 21.75) +input_pickable = true +mass = 0.0526316 physics_material_override = ExtResource("5_221ya") +script = ExtResource("11_tqnjl") +metadata/idx = 10 metadata/bone_name = &"Bone-10" [node name="CircleShape2D" type="CollisionShape2D" parent="Butter10/Bone-10"] -shape = SubResource("CircleShape2D_rp0md") +shape = SubResource("CircleShape2D_jfhsm") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Butter10/Bone-10"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-10") update_rotation = false update_scale = false [node name="Joint2D-Bone-10-Bone-6" type="PinJoint2D" parent="Butter10/Bone-10"] visible = false -rotation = 0.650612 +rotation = 1.54081 node_a = NodePath("..") node_b = NodePath("../../Bone-6") softness = 100.0 +[node name="Joint2D-Bone-10-Bone-7" type="PinJoint2D" parent="Butter10/Bone-10"] +visible = false +rotation = 0.674741 +node_a = NodePath("..") +node_b = NodePath("../../Bone-7") +softness = 100.0 + [node name="Joint2D-Bone-10-Bone-11" type="PinJoint2D" parent="Butter10/Bone-10"] visible = false -rotation = -0.545454 node_a = NodePath("..") node_b = NodePath("../../Bone-11") softness = 100.0 -[node name="Bone-11" parent="Butter10" instance=ExtResource("3_6ern4")] -position = Vector2(80.9573, 30.078) -mass = 0.05 +[node name="Joint2D-Bone-10-Bone-14" type="PinJoint2D" parent="Butter10/Bone-10"] +visible = false +rotation = -1.2394 +node_a = NodePath("..") +node_b = NodePath("../../Bone-14") +softness = 100.0 + +[node name="Joint2D-Bone-10-Bone-15" type="PinJoint2D" parent="Butter10/Bone-10"] +visible = false +rotation = -0.63965 +node_a = NodePath("..") +node_b = NodePath("../../Bone-15") +softness = 100.0 + +[node name="Bone-11" type="RigidBody2D" parent="Butter10" instance=ExtResource("3_6ern4")] +position = Vector2(79, 53) +input_pickable = true +mass = 0.0526316 physics_material_override = ExtResource("5_221ya") +script = ExtResource("11_tqnjl") +metadata/idx = 11 metadata/bone_name = &"Bone-11" [node name="CircleShape2D" type="CollisionShape2D" parent="Butter10/Bone-11"] -shape = SubResource("CircleShape2D_rp0md") +shape = SubResource("CircleShape2D_jfhsm") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Butter10/Bone-11"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-11") update_rotation = false update_scale = false [node name="Joint2D-Bone-11-Bone-6" type="PinJoint2D" parent="Butter10/Bone-11"] visible = false -rotation = -4.64367 +rotation = -3.82821 node_a = NodePath("..") node_b = NodePath("../../Bone-6") softness = 100.0 [node name="Joint2D-Bone-11-Bone-7" type="PinJoint2D" parent="Butter10/Bone-11"] visible = false -rotation = 0.80122 +rotation = 1.5708 node_a = NodePath("..") node_b = NodePath("../../Bone-7") softness = 100.0 [node name="Joint2D-Bone-11-Bone-10" type="PinJoint2D" parent="Butter10/Bone-11"] visible = false -rotation = -3.68705 +rotation = -3.14159 node_a = NodePath("..") node_b = NodePath("../../Bone-10") softness = 100.0 +[node name="Joint2D-Bone-11-Bone-8" type="PinJoint2D" parent="Butter10/Bone-11"] +visible = false +rotation = 0.785398 +node_a = NodePath("..") +node_b = NodePath("../../Bone-8") +softness = 100.0 + [node name="Joint2D-Bone-11-Bone-12" type="PinJoint2D" parent="Butter10/Bone-11"] visible = false -rotation = 0.0649149 node_a = NodePath("..") node_b = NodePath("../../Bone-12") softness = 100.0 +[node name="Joint2D-Bone-11-Bone-14" type="PinJoint2D" parent="Butter10/Bone-11"] +visible = false +rotation = -2.35619 +node_a = NodePath("..") +node_b = NodePath("../../Bone-14") +softness = 100.0 + [node name="Joint2D-Bone-11-Bone-15" type="PinJoint2D" parent="Butter10/Bone-11"] visible = false -rotation = -1.51807 +rotation = -1.5708 node_a = NodePath("..") node_b = NodePath("../../Bone-15") softness = 100.0 [node name="Joint2D-Bone-11-Bone-16" type="PinJoint2D" parent="Butter10/Bone-11"] visible = false -rotation = -0.749219 +rotation = -0.770171 node_a = NodePath("..") node_b = NodePath("../../Bone-16") softness = 100.0 -[node name="Bone-12" parent="Butter10" instance=ExtResource("3_6ern4")] -position = Vector2(79.3768, 54.3897) -mass = 0.05 +[node name="Bone-12" type="RigidBody2D" parent="Butter10" instance=ExtResource("3_6ern4")] +position = Vector2(79, 78) +input_pickable = true +mass = 0.0526316 physics_material_override = ExtResource("5_221ya") +script = ExtResource("11_tqnjl") +metadata/idx = 12 metadata/bone_name = &"Bone-12" [node name="CircleShape2D" type="CollisionShape2D" parent="Butter10/Bone-12"] -shape = SubResource("CircleShape2D_rp0md") +shape = SubResource("CircleShape2D_jfhsm") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Butter10/Bone-12"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-12") update_rotation = false update_scale = false -[node name="Joint2D-Bone-12-Bone-6" type="PinJoint2D" parent="Butter10/Bone-12"] -visible = false -rotation = -3.87856 -node_a = NodePath("..") -node_b = NodePath("../../Bone-6") -softness = 100.0 - [node name="Joint2D-Bone-12-Bone-7" type="PinJoint2D" parent="Butter10/Bone-12"] visible = false -rotation = 1.55026 +rotation = -3.92699 node_a = NodePath("..") node_b = NodePath("../../Bone-7") softness = 100.0 [node name="Joint2D-Bone-12-Bone-8" type="PinJoint2D" parent="Butter10/Bone-12"] visible = false -rotation = 0.788103 +rotation = 1.5708 node_a = NodePath("..") node_b = NodePath("../../Bone-8") softness = 100.0 [node name="Joint2D-Bone-12-Bone-11" type="PinJoint2D" parent="Butter10/Bone-12"] visible = false -rotation = -3.07668 +rotation = -3.14159 node_a = NodePath("..") node_b = NodePath("../../Bone-11") softness = 100.0 +[node name="Joint2D-Bone-12-Bone-9" type="PinJoint2D" parent="Butter10/Bone-12"] +visible = false +rotation = 0.785398 +node_a = NodePath("..") +node_b = NodePath("../../Bone-9") +softness = 100.0 + [node name="Joint2D-Bone-12-Bone-13" type="PinJoint2D" parent="Butter10/Bone-12"] visible = false -rotation = -0.0698014 node_a = NodePath("..") node_b = NodePath("../../Bone-13") softness = 100.0 [node name="Joint2D-Bone-12-Bone-15" type="PinJoint2D" parent="Butter10/Bone-12"] visible = false -rotation = -2.35161 +rotation = -2.39245 node_a = NodePath("..") node_b = NodePath("../../Bone-15") softness = 100.0 [node name="Joint2D-Bone-12-Bone-16" type="PinJoint2D" parent="Butter10/Bone-12"] visible = false -rotation = -1.56748 +rotation = -1.5708 node_a = NodePath("..") node_b = NodePath("../../Bone-16") softness = 100.0 [node name="Joint2D-Bone-12-Bone-17" type="PinJoint2D" parent="Butter10/Bone-12"] visible = false -rotation = -0.803699 +rotation = -0.785398 node_a = NodePath("..") node_b = NodePath("../../Bone-17") softness = 100.0 -[node name="Bone-13" parent="Butter10" instance=ExtResource("3_6ern4")] -position = Vector2(81.0773, 78.7108) -mass = 0.05 +[node name="Bone-13" type="RigidBody2D" parent="Butter10" instance=ExtResource("3_6ern4")] +position = Vector2(79, 108.25) +input_pickable = true +mass = 0.0526316 physics_material_override = ExtResource("5_221ya") +script = ExtResource("11_tqnjl") +metadata/idx = 13 metadata/bone_name = &"Bone-13" [node name="CircleShape2D" type="CollisionShape2D" parent="Butter10/Bone-13"] -shape = SubResource("CircleShape2D_rp0md") +shape = SubResource("CircleShape2D_jfhsm") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Butter10/Bone-13"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-13") update_rotation = false update_scale = false -[node name="Joint2D-Bone-13-Bone-7" type="PinJoint2D" parent="Butter10/Bone-13"] +[node name="Joint2D-Bone-13-Bone-18" type="PinJoint2D" parent="Butter10/Bone-13"] +visible = false +rotation = 1.10715 +node_a = NodePath("..") +node_b = NodePath("../../Bone-18") +softness = 100.0 + +[node name="Joint2D-Bone-13-Bone-17" type="PinJoint2D" parent="Butter10/Bone-13"] visible = false -rotation = -3.96522 +rotation = -1.81335 node_a = NodePath("..") -node_b = NodePath("../../Bone-7") +node_b = NodePath("../../Bone-17") softness = 100.0 [node name="Joint2D-Bone-13-Bone-8" type="PinJoint2D" parent="Butter10/Bone-13"] visible = false -rotation = 1.55561 +rotation = -3.83225 node_a = NodePath("..") node_b = NodePath("../../Bone-8") softness = 100.0 [node name="Joint2D-Bone-13-Bone-9" type="PinJoint2D" parent="Butter10/Bone-13"] visible = false -rotation = 0.840993 +rotation = -4.5054 node_a = NodePath("..") node_b = NodePath("../../Bone-9") softness = 100.0 [node name="Joint2D-Bone-13-Bone-12" type="PinJoint2D" parent="Butter10/Bone-13"] visible = false -rotation = -3.21139 +rotation = -3.14159 node_a = NodePath("..") node_b = NodePath("../../Bone-12") softness = 100.0 -[node name="Joint2D-Bone-13-Bone-14" type="PinJoint2D" parent="Butter10/Bone-13"] -visible = false -rotation = 0.0717928 -node_a = NodePath("..") -node_b = NodePath("../../Bone-14") -softness = 100.0 - [node name="Joint2D-Bone-13-Bone-16" type="PinJoint2D" parent="Butter10/Bone-13"] visible = false -rotation = -2.3919 +rotation = -2.46584 node_a = NodePath("..") node_b = NodePath("../../Bone-16") softness = 100.0 -[node name="Joint2D-Bone-13-Bone-17" type="PinJoint2D" parent="Butter10/Bone-13"] -visible = false -rotation = -1.52834 -node_a = NodePath("..") -node_b = NodePath("../../Bone-17") -softness = 100.0 - -[node name="Joint2D-Bone-13-Bone-18" type="PinJoint2D" parent="Butter10/Bone-13"] -visible = false -rotation = -0.71218 -node_a = NodePath("..") -node_b = NodePath("../../Bone-18") -softness = 100.0 - -[node name="Bone-14" parent="Butter10" instance=ExtResource("3_6ern4")] -position = Vector2(79.047, 106.942) -mass = 0.05 +[node name="Bone-14" type="RigidBody2D" parent="Butter10" instance=ExtResource("3_6ern4")] +position = Vector2(102.25, 29.75) +input_pickable = true +mass = 0.0526316 physics_material_override = ExtResource("5_221ya") +script = ExtResource("11_tqnjl") +metadata/idx = 14 metadata/bone_name = &"Bone-14" [node name="CircleShape2D" type="CollisionShape2D" parent="Butter10/Bone-14"] -shape = SubResource("CircleShape2D_rp0md") +shape = SubResource("CircleShape2D_jfhsm") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Butter10/Bone-14"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-14") update_rotation = false update_scale = false -[node name="Joint2D-Bone-14-Bone-8" type="PinJoint2D" parent="Butter10/Bone-14"] -visible = false -rotation = -3.86407 -node_a = NodePath("..") -node_b = NodePath("../../Bone-8") -softness = 100.0 - -[node name="Joint2D-Bone-14-Bone-9" type="PinJoint2D" parent="Butter10/Bone-14"] -visible = false -rotation = -4.57892 -node_a = NodePath("..") -node_b = NodePath("../../Bone-9") -softness = 100.0 - -[node name="Joint2D-Bone-14-Bone-13" type="PinJoint2D" parent="Butter10/Bone-14"] -visible = false -rotation = -3.0698 -node_a = NodePath("..") -node_b = NodePath("../../Bone-13") -softness = 100.0 - -[node name="Joint2D-Bone-14-Bone-17" type="PinJoint2D" parent="Butter10/Bone-14"] +[node name="Joint2D-Bone-14-Bone-10" type="PinJoint2D" parent="Butter10/Bone-14"] visible = false -rotation = -2.36628 +rotation = -4.38099 node_a = NodePath("..") -node_b = NodePath("../../Bone-17") +node_b = NodePath("../../Bone-10") softness = 100.0 -[node name="Joint2D-Bone-14-Bone-18" type="PinJoint2D" parent="Butter10/Bone-14"] +[node name="Joint2D-Bone-14-Bone-11" type="PinJoint2D" parent="Butter10/Bone-14"] visible = false -rotation = -1.72662 +rotation = 0.785398 node_a = NodePath("..") -node_b = NodePath("../../Bone-18") +node_b = NodePath("../../Bone-11") softness = 100.0 -[node name="Joint2D-Bone-14-Bone-19" type="PinJoint2D" parent="Butter10/Bone-14"] +[node name="Joint2D-Bone-14-Bone-15" type="PinJoint2D" parent="Butter10/Bone-14"] visible = false -rotation = 1.16309 node_a = NodePath("..") -node_b = NodePath("../../Bone-19") +node_b = NodePath("../../Bone-15") softness = 100.0 -[node name="Bone-15" parent="Butter10" instance=ExtResource("3_6ern4")] -position = Vector2(102.751, 31.2282) -mass = 0.05 +[node name="Bone-15" type="RigidBody2D" parent="Butter10" instance=ExtResource("3_6ern4")] +position = Vector2(102.25, 53) +input_pickable = true +mass = 0.0526316 physics_material_override = ExtResource("5_221ya") +script = ExtResource("11_tqnjl") +metadata/idx = 15 metadata/bone_name = &"Bone-15" [node name="CircleShape2D" type="CollisionShape2D" parent="Butter10/Bone-15"] -shape = SubResource("CircleShape2D_rp0md") +shape = SubResource("CircleShape2D_jfhsm") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Butter10/Bone-15"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-15") update_rotation = false update_scale = false +[node name="Joint2D-Bone-15-Bone-10" type="PinJoint2D" parent="Butter10/Bone-15"] +visible = false +rotation = -3.78124 +node_a = NodePath("..") +node_b = NodePath("../../Bone-10") +softness = 100.0 + [node name="Joint2D-Bone-15-Bone-11" type="PinJoint2D" parent="Butter10/Bone-15"] visible = false -rotation = -4.65966 +rotation = 1.5708 node_a = NodePath("..") node_b = NodePath("../../Bone-11") softness = 100.0 +[node name="Joint2D-Bone-15-Bone-14" type="PinJoint2D" parent="Butter10/Bone-15"] +visible = false +rotation = -3.14159 +node_a = NodePath("..") +node_b = NodePath("../../Bone-14") +softness = 100.0 + [node name="Joint2D-Bone-15-Bone-12" type="PinJoint2D" parent="Butter10/Bone-15"] visible = false -rotation = 0.789978 +rotation = 0.749145 node_a = NodePath("..") node_b = NodePath("../../Bone-12") softness = 100.0 [node name="Joint2D-Bone-15-Bone-16" type="PinJoint2D" parent="Butter10/Bone-15"] visible = false -rotation = -0.0384482 +rotation = -0.0399787 node_a = NodePath("..") node_b = NodePath("../../Bone-16") softness = 100.0 -[node name="Bone-16" parent="Butter10" instance=ExtResource("3_6ern4")] -position = Vector2(103.646, 54.4703) -mass = 0.05 +[node name="Bone-16" type="RigidBody2D" parent="Butter10" instance=ExtResource("3_6ern4")] +position = Vector2(103.25, 78) +input_pickable = true +mass = 0.0526316 physics_material_override = ExtResource("5_221ya") +script = ExtResource("11_tqnjl") +metadata/idx = 16 metadata/bone_name = &"Bone-16" [node name="CircleShape2D" type="CollisionShape2D" parent="Butter10/Bone-16"] -shape = SubResource("CircleShape2D_rp0md") +shape = SubResource("CircleShape2D_jfhsm") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Butter10/Bone-16"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-16") update_rotation = false update_scale = false [node name="Joint2D-Bone-16-Bone-11" type="PinJoint2D" parent="Butter10/Bone-16"] visible = false -rotation = -3.89081 +rotation = -3.91176 node_a = NodePath("..") node_b = NodePath("../../Bone-11") softness = 100.0 [node name="Joint2D-Bone-16-Bone-12" type="PinJoint2D" parent="Butter10/Bone-16"] visible = false -rotation = -4.70907 +rotation = 1.5708 node_a = NodePath("..") node_b = NodePath("../../Bone-12") softness = 100.0 -[node name="Joint2D-Bone-16-Bone-13" type="PinJoint2D" parent="Butter10/Bone-16"] +[node name="Joint2D-Bone-16-Bone-15" type="PinJoint2D" parent="Butter10/Bone-16"] visible = false -rotation = 0.749689 +rotation = -3.18157 node_a = NodePath("..") -node_b = NodePath("../../Bone-13") +node_b = NodePath("../../Bone-15") softness = 100.0 -[node name="Joint2D-Bone-16-Bone-15" type="PinJoint2D" parent="Butter10/Bone-16"] +[node name="Joint2D-Bone-16-Bone-13" type="PinJoint2D" parent="Butter10/Bone-16"] visible = false -rotation = -3.18004 +rotation = 0.675748 node_a = NodePath("..") -node_b = NodePath("../../Bone-15") +node_b = NodePath("../../Bone-13") softness = 100.0 [node name="Joint2D-Bone-16-Bone-17" type="PinJoint2D" parent="Butter10/Bone-16"] visible = false -rotation = -0.0806511 node_a = NodePath("..") node_b = NodePath("../../Bone-17") softness = 100.0 -[node name="Bone-17" parent="Butter10" instance=ExtResource("3_6ern4")] -position = Vector2(105.689, 79.7563) -mass = 0.05 +[node name="Bone-17" type="RigidBody2D" parent="Butter10" instance=ExtResource("3_6ern4")] +position = Vector2(103.25, 102.25) +input_pickable = true +mass = 0.0526316 physics_material_override = ExtResource("5_221ya") +script = ExtResource("11_tqnjl") +metadata/idx = 17 metadata/bone_name = &"Bone-17" [node name="CircleShape2D" type="CollisionShape2D" parent="Butter10/Bone-17"] -shape = SubResource("CircleShape2D_rp0md") +shape = SubResource("CircleShape2D_jfhsm") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Butter10/Bone-17"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-17") update_rotation = false update_scale = false -[node name="Joint2D-Bone-17-Bone-12" type="PinJoint2D" parent="Butter10/Bone-17"] -visible = false -rotation = -3.94529 -node_a = NodePath("..") -node_b = NodePath("../../Bone-12") -softness = 100.0 - [node name="Joint2D-Bone-17-Bone-13" type="PinJoint2D" parent="Butter10/Bone-17"] visible = false -rotation = -4.66994 +rotation = 1.32824 node_a = NodePath("..") node_b = NodePath("../../Bone-13") softness = 100.0 -[node name="Joint2D-Bone-17-Bone-14" type="PinJoint2D" parent="Butter10/Bone-17"] +[node name="Joint2D-Bone-17-Bone-12" type="PinJoint2D" parent="Butter10/Bone-17"] visible = false -rotation = 0.775311 +rotation = -3.92699 node_a = NodePath("..") -node_b = NodePath("../../Bone-14") +node_b = NodePath("../../Bone-12") softness = 100.0 [node name="Joint2D-Bone-17-Bone-16" type="PinJoint2D" parent="Butter10/Bone-17"] visible = false -rotation = -3.22224 +rotation = -3.14159 node_a = NodePath("..") node_b = NodePath("../../Bone-16") softness = 100.0 -[node name="Joint2D-Bone-17-Bone-18" type="PinJoint2D" parent="Butter10/Bone-17"] -visible = false -rotation = 0.14319 -node_a = NodePath("..") -node_b = NodePath("../../Bone-18") -softness = 100.0 - -[node name="Bone-18" parent="Butter10" instance=ExtResource("3_6ern4")] -position = Vector2(102.296, 103.289) -mass = 0.05 +[node name="Bone-18" type="RigidBody2D" parent="Butter10" instance=ExtResource("3_6ern4")] +position = Vector2(54, 120.75) +input_pickable = true +mass = 0.0526316 physics_material_override = ExtResource("5_221ya") +script = ExtResource("11_tqnjl") +metadata/idx = 18 metadata/bone_name = &"Bone-18" [node name="CircleShape2D" type="CollisionShape2D" parent="Butter10/Bone-18"] -shape = SubResource("CircleShape2D_rp0md") +shape = SubResource("CircleShape2D_jfhsm") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Butter10/Bone-18"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-18") update_rotation = false update_scale = false -[node name="Joint2D-Bone-18-Bone-13" type="PinJoint2D" parent="Butter10/Bone-18"] +[node name="Joint2D-Bone-18-Bone-5" type="PinJoint2D" parent="Butter10/Bone-18"] visible = false -rotation = -3.85377 +rotation = -4.24874 node_a = NodePath("..") -node_b = NodePath("../../Bone-13") +node_b = NodePath("../../Bone-5") softness = 100.0 -[node name="Joint2D-Bone-18-Bone-14" type="PinJoint2D" parent="Butter10/Bone-18"] +[node name="Joint2D-Bone-18-Bone-13" type="PinJoint2D" parent="Butter10/Bone-18"] visible = false -rotation = 1.41497 +rotation = -2.03444 node_a = NodePath("..") -node_b = NodePath("../../Bone-14") +node_b = NodePath("../../Bone-13") softness = 100.0 -[node name="Joint2D-Bone-18-Bone-17" type="PinJoint2D" parent="Butter10/Bone-18"] +[node name="Joint2D-Bone-18-Bone-9" type="PinJoint2D" parent="Butter10/Bone-18"] visible = false -rotation = -2.9984 +rotation = -3.14159 node_a = NodePath("..") -node_b = NodePath("../../Bone-17") -softness = 100.0 - -[node name="Bone-19" parent="Butter10" instance=ExtResource("3_6ern4")] -position = Vector2(49.0143, 119.913) -mass = 0.05 -physics_material_override = ExtResource("5_221ya") -metadata/bone_name = &"Bone-19" - -[node name="CircleShape2D" type="CollisionShape2D" parent="Butter10/Bone-19"] -shape = SubResource("CircleShape2D_rp0md") - -[node name="RemoteTransform2D" type="RemoteTransform2D" parent="Butter10/Bone-19"] -remote_path = NodePath("../../Skeleton2D/Bone-19") -update_rotation = false -update_scale = false - -[node name="Joint2D-Bone-19-Bone-5" type="PinJoint2D" parent="Butter10/Bone-19"] -visible = false -rotation = -4.11912 -node_a = NodePath("..") -node_b = NodePath("../../Bone-5") -softness = 100.0 - -[node name="Joint2D-Bone-19-Bone-9" type="PinJoint2D" parent="Butter10/Bone-19"] -visible = false -rotation = -2.88214 -node_a = NodePath("..") -node_b = NodePath("../../Bone-9") -softness = 100.0 - -[node name="Joint2D-Bone-19-Bone-14" type="PinJoint2D" parent="Butter10/Bone-19"] -visible = false -rotation = -1.9785 -node_a = NodePath("..") -node_b = NodePath("../../Bone-14") +node_b = NodePath("../../Bone-9") softness = 100.0 [node name="Butter2" type="Polygon2D" parent="."] @@ -12245,1284 +12720,1337 @@ z_index = 3 position = Vector2(309, -310) texture = ExtResource("4_xackp") skeleton = NodePath("Skeleton2D") -polygon = PackedVector2Array(70, 4, 67, 4, 65, 6, 65, 7, 61, 7, 60, 8, 60, 9, 58, 10, 55, 10, 53, 12, 51, 12, 49, 15, 44, 15, 39, 19, 34, 19, 29, 23, 24, 23, 22, 25, 22, 26, 14, 30, 14, 31, 10, 31, 6, 34, 4, 34, 5, 37, 6, 37, 6, 42, 7, 42, 6, 99, 6, 105, 11, 108, 11, 109, 14, 110, 18, 110, 22, 113, 22, 114, 26, 114, 30, 117, 30, 118, 36, 118, 42, 121, 42, 122, 46, 122, 47, 123, 47, 124, 51, 125, 51, 126, 67, 126, 70, 122, 76, 122, 78, 119, 78, 118, 83, 118, 88, 114, 92, 114, 95, 111, 95, 110, 98, 109, 100, 109, 102, 107, 102, 106, 105, 106, 106, 105, 106, 104, 110, 102, 113, 102, 114, 100, 115, 100, 115, 87, 113, 83, 113, 35, 110, 35, 109, 34, 109, 31, 106, 31, 105, 30, 105, 28, 103, 28, 93, 19, 90, 19, 89, 18, 89, 15, 85, 13, 85, 11, 82, 11, 74, 4, 74, 3, 70, 3, 16.404, 42.2231, 17.2099, 64.8417, 14.9926, 67.4763, 6.56298, 66.9104, 7, 42, 6, 42, 6, 40.8541, 19.9638, 39.1868, 16.404, 42.2231, 6, 40.8541, 6, 37, 5, 37, 4, 34, 6, 34, 10, 31, 14, 31, 14, 30, 19.1198, 27.4401, 14.9926, 67.4763, 16.6942, 88.6245, 14.8609, 90.573, 6.15233, 90.317, 6.56298, 66.9104, 41.8946, 39.7678, 19.9638, 39.1868, 19.1198, 27.4401, 22, 26, 22, 25, 24, 23, 29, 23, 34, 19, 39, 19, 44, 15, 45.1977, 15, 41.8946, 39.7678, 43.4228, 41.3806, 42.0191, 65.3034, 17.2099, 64.8417, 16.404, 42.2231, 19.9638, 39.1868, 42.0191, 65.3034, 43.7593, 67.3959, 39.9293, 90.513, 16.6942, 88.6245, 14.9926, 67.4763, 17.2099, 64.8417, 39.9293, 90.513, 40.0064, 90.6062, 41.7542, 116.383, 40.9418, 117.302, 29.7451, 116.809, 26, 114, 22, 114, 22, 113, 18, 110, 14.0972, 110, 14.8609, 90.573, 16.6942, 88.6245, 14.8609, 90.573, 14.0972, 110, 14, 110, 11, 109, 11, 108, 6, 105, 6, 99, 6.15233, 90.317, 69.5805, 18.3546, 67.0739, 41.8496, 66.534, 42.37, 43.4228, 41.3806, 41.8946, 39.7678, 45.2666, 14.4835, 65.4613, 14.3145, 66.534, 42.37, 68.6898, 66.9299, 67.4574, 68.3857, 43.7593, 67.3959, 42.0191, 65.3034, 43.4228, 41.3806, 67.4574, 68.3857, 69.1074, 88.2666, 66.7385, 90.8323, 40.0064, 90.6062, 39.9293, 90.513, 43.7593, 67.3959, 66.7385, 90.8323, 65.1923, 113.826, 41.7542, 116.383, 40.0064, 90.6062, 74, 4, 82, 11, 85, 11, 85, 13, 89, 15, 89, 17.8885, 69.5805, 18.3546, 65.4613, 14.3145, 67.6064, 4, 70, 4, 70, 3, 74, 3, 65.4613, 14.3145, 49.3672, 14.4492, 51, 12, 53, 12, 55, 10, 58, 10, 60, 9, 60, 8, 61, 7, 65, 7, 65, 6, 67, 4, 67.6064, 4, 94.8406, 40.0048, 92.2197, 42.3484, 67.0739, 41.8496, 69.5805, 18.3546, 92.3703, 17.8076, 92.2197, 42.3484, 89.726, 64.694, 68.6898, 66.9299, 66.534, 42.37, 67.0739, 41.8496, 94.6971, 68.9358, 93.0974, 92.5784, 92.9017, 92.7277, 69.1074, 88.2666, 67.4574, 68.3857, 68.6898, 66.9299, 89.726, 64.694, 92.9017, 92.7277, 89.0792, 117.303, 68.2836, 116.274, 65.1923, 113.826, 66.7385, 90.8323, 69.1074, 88.2666, 84.175, 117.06, 83, 118, 78, 118, 78, 119, 76, 122, 70, 122, 67.2874, 125.617, 68.2836, 116.274, 103, 28, 105, 28, 105, 30, 106, 31, 109, 31, 109, 34, 110, 35, 113, 35, 113, 43.4565, 94.8406, 40.0048, 92.503, 19, 93, 19, 113.848, 43.6177, 117.565, 63.6165, 115.747, 65.8505, 94.6971, 68.9358, 89.726, 64.694, 92.2197, 42.3484, 94.8406, 40.0048, 118.281, 89.2678, 114.613, 93.6621, 93.0974, 92.5784, 94.6971, 68.9358, 115.747, 65.8505, 114.613, 93.6621, 115, 95.2133, 115, 100, 114, 100, 113, 102, 110, 102, 106, 104, 106, 105, 105, 106, 102, 106, 102, 107, 100, 109, 98, 109, 95, 110, 95, 111, 92, 114, 89.5929, 114, 92.9017, 92.7277, 93.0974, 92.5784, 115, 95.2133, 114.613, 93.6621, 115, 93.1981, 68.2836, 116.274, 67.2874, 125.617, 67, 126, 51, 126, 51, 125, 47, 124, 47, 123, 46, 122, 42, 122, 42, 121, 41.1336, 120.567, 40.9418, 117.302, 41.7542, 116.383, 65.1923, 113.826, 40.9418, 117.302, 41.1336, 120.567, 36, 118, 30, 118, 30, 117, 29.7451, 116.809) -polygons = [PackedInt32Array(88, 89, 90), PackedInt32Array(90, 91, 92), PackedInt32Array(92, 93, 94), PackedInt32Array(88, 90, 92), PackedInt32Array(92, 94, 88), PackedInt32Array(105, 95, 96), PackedInt32Array(96, 97, 98), PackedInt32Array(98, 99, 100), PackedInt32Array(101, 102, 103), PackedInt32Array(103, 104, 105), PackedInt32Array(105, 96, 98), PackedInt32Array(98, 100, 101), PackedInt32Array(103, 105, 98), PackedInt32Array(98, 101, 103), PackedInt32Array(110, 106, 107), PackedInt32Array(107, 108, 109), PackedInt32Array(109, 110, 107), PackedInt32Array(121, 111, 112), PackedInt32Array(112, 113, 114), PackedInt32Array(114, 115, 116), PackedInt32Array(117, 118, 119), PackedInt32Array(119, 120, 121), PackedInt32Array(112, 114, 116), PackedInt32Array(119, 121, 112), PackedInt32Array(112, 116, 117), PackedInt32Array(117, 119, 112), PackedInt32Array(127, 122, 123), PackedInt32Array(123, 124, 125), PackedInt32Array(125, 126, 127), PackedInt32Array(127, 123, 125), PackedInt32Array(133, 128, 129), PackedInt32Array(129, 130, 131), PackedInt32Array(131, 132, 133), PackedInt32Array(133, 129, 131), PackedInt32Array(145, 134, 135), PackedInt32Array(135, 136, 137), PackedInt32Array(137, 138, 139), PackedInt32Array(139, 140, 141), PackedInt32Array(142, 143, 144), PackedInt32Array(144, 145, 135), PackedInt32Array(135, 137, 139), PackedInt32Array(139, 141, 142), PackedInt32Array(142, 144, 135), PackedInt32Array(135, 139, 142), PackedInt32Array(153, 146, 147), PackedInt32Array(147, 148, 149), PackedInt32Array(150, 151, 152), PackedInt32Array(152, 153, 147), PackedInt32Array(147, 149, 150), PackedInt32Array(150, 152, 147), PackedInt32Array(160, 154, 155), PackedInt32Array(155, 156, 157), PackedInt32Array(157, 158, 159), PackedInt32Array(159, 160, 155), PackedInt32Array(155, 157, 159), PackedInt32Array(166, 161, 162), PackedInt32Array(162, 163, 164), PackedInt32Array(164, 165, 166), PackedInt32Array(166, 162, 164), PackedInt32Array(172, 167, 168), PackedInt32Array(168, 169, 170), PackedInt32Array(170, 171, 172), PackedInt32Array(172, 168, 170), PackedInt32Array(176, 173, 174), PackedInt32Array(174, 175, 176), PackedInt32Array(178, 179, 180), PackedInt32Array(180, 181, 182), PackedInt32Array(182, 183, 184), PackedInt32Array(184, 185, 186), PackedInt32Array(186, 187, 188), PackedInt32Array(178, 180, 182), PackedInt32Array(182, 184, 186), PackedInt32Array(186, 188, 177), PackedInt32Array(177, 178, 182), PackedInt32Array(182, 186, 177), PackedInt32Array(189, 190, 191), PackedInt32Array(192, 193, 194), PackedInt32Array(195, 196, 197), PackedInt32Array(198, 199, 200), PackedInt32Array(200, 201, 189), PackedInt32Array(189, 191, 192), PackedInt32Array(195, 197, 198), PackedInt32Array(198, 200, 189), PackedInt32Array(189, 192, 194), PackedInt32Array(194, 195, 198), PackedInt32Array(198, 189, 194), PackedInt32Array(206, 202, 203), PackedInt32Array(203, 204, 205), PackedInt32Array(205, 206, 203), PackedInt32Array(211, 207, 208), PackedInt32Array(208, 209, 210), PackedInt32Array(210, 211, 208), PackedInt32Array(218, 212, 213), PackedInt32Array(213, 214, 215), PackedInt32Array(215, 216, 217), PackedInt32Array(217, 218, 213), PackedInt32Array(213, 215, 217), PackedInt32Array(224, 219, 220), PackedInt32Array(220, 221, 222), PackedInt32Array(222, 223, 224), PackedInt32Array(224, 220, 222), PackedInt32Array(232, 225, 226), PackedInt32Array(227, 228, 229), PackedInt32Array(230, 231, 232), PackedInt32Array(232, 226, 227), PackedInt32Array(227, 229, 230), PackedInt32Array(230, 232, 227), PackedInt32Array(233, 234, 235), PackedInt32Array(236, 237, 238), PackedInt32Array(239, 240, 241), PackedInt32Array(241, 242, 243), PackedInt32Array(243, 244, 233), PackedInt32Array(238, 239, 241), PackedInt32Array(241, 243, 233), PackedInt32Array(236, 238, 241), PackedInt32Array(241, 233, 235), PackedInt32Array(235, 236, 241), PackedInt32Array(251, 245, 246), PackedInt32Array(246, 247, 248), PackedInt32Array(248, 249, 250), PackedInt32Array(250, 251, 246), PackedInt32Array(246, 248, 250), PackedInt32Array(256, 252, 253), PackedInt32Array(253, 254, 255), PackedInt32Array(255, 256, 253), PackedInt32Array(275, 257, 258), PackedInt32Array(258, 259, 260), PackedInt32Array(260, 261, 262), PackedInt32Array(263, 264, 265), PackedInt32Array(266, 267, 268), PackedInt32Array(270, 271, 272), PackedInt32Array(272, 273, 274), PackedInt32Array(274, 275, 258), PackedInt32Array(258, 260, 262), PackedInt32Array(263, 265, 266), PackedInt32Array(266, 268, 269), PackedInt32Array(270, 272, 274), PackedInt32Array(274, 258, 262), PackedInt32Array(266, 269, 270), PackedInt32Array(274, 262, 263), PackedInt32Array(266, 270, 274), PackedInt32Array(274, 263, 266), PackedInt32Array(278, 276, 277), PackedInt32Array(292, 279, 280), PackedInt32Array(280, 281, 282), PackedInt32Array(283, 284, 285), PackedInt32Array(286, 287, 288), PackedInt32Array(288, 289, 290), PackedInt32Array(290, 291, 292), PackedInt32Array(292, 280, 282), PackedInt32Array(283, 285, 286), PackedInt32Array(286, 288, 290), PackedInt32Array(292, 282, 283), PackedInt32Array(283, 286, 290), PackedInt32Array(290, 292, 283), PackedInt32Array(293, 294, 295), PackedInt32Array(295, 296, 297), PackedInt32Array(297, 298, 293), PackedInt32Array(293, 295, 297)] -bones = ["Bone-0", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 1, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 1, 0.7, 0.7, 0, 0, 0, 0.7, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-1", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-2", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 1, 0.7, 0.7, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-3", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-4", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-5", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 1, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0.7, 0, 0.7, 0, 0.7, 0.7), "Bone-6", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-7", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-8", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-9", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0), "Bone-10", PackedFloat32Array(0.7, 0.7, 0, 0.7, 0.7, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0.7, 0.7, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 1, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 1, 0.7, 0.7, 1, 0.7, 1, 1, 1, 1, 0.7, 0.7, 1, 0.7, 0.7, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-11", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-12", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-13", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-14", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 1, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0), "Bone-15", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 1, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-16", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-17", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-18", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0.7, 0.7, 1, 0.7, 1, 0.7, 0.7, 0.7, 0.7, 0.7, 1, 0.7, 0.7, 0.7, 1, 1, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-19", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7)] -internal_vertex_count = 211 +polygon = PackedVector2Array(70, 4, 67, 4, 65, 6, 65, 7, 61, 7, 60, 8, 60, 9, 58, 10, 55, 10, 53, 12, 51, 12, 49, 15, 44, 15, 39, 19, 34, 19, 29, 23, 24, 23, 22, 25, 22, 26, 14, 30, 14, 31, 10, 31, 6, 34, 4, 34, 5, 37, 6, 37, 6, 42, 7, 42, 6, 99, 6, 105, 11, 108, 11, 109, 14, 110, 18, 110, 22, 113, 22, 114, 26, 114, 30, 117, 30, 118, 36, 118, 42, 121, 42, 122, 46, 122, 47, 123, 47, 124, 51, 125, 51, 126, 67, 126, 70, 122, 76, 122, 78, 119, 78, 118, 83, 118, 88, 114, 92, 114, 95, 111, 95, 110, 98, 109, 100, 109, 102, 107, 102, 106, 105, 106, 106, 105, 106, 104, 110, 102, 113, 102, 114, 100, 115, 100, 115, 87, 113, 83, 113, 35, 110, 35, 109, 34, 109, 31, 106, 31, 105, 30, 105, 28, 103, 28, 93, 19, 90, 19, 89, 18, 89, 15, 85, 13, 85, 11, 82, 11, 74, 4, 74, 3, 70, 3, 16.5, 65.5, 6.58772, 65.5, 6.80702, 53, 16.5, 53, 16.5, 53, 6.80702, 53, 7, 42, 6, 42, 6, 40.5, 16.5, 40.5, 16.5, 40.5, 6, 40.5, 6, 37, 5, 37, 4, 34, 6, 34, 10, 31, 14, 31, 14, 30, 16.5, 28.75, 16.5, 90.5, 6.14912, 90.5, 6.36842, 78, 16.5, 78, 16.5, 78, 6.36842, 78, 6.58772, 65.5, 16.5, 65.5, 29, 28, 18, 28, 22, 26, 22, 25, 24, 23, 29, 23, 41.5, 40.5, 29, 40.5, 29, 28, 41.5, 28, 29, 40.5, 16.5, 40.5, 16.5, 28.75, 18, 28, 29, 28, 41.5, 28, 29, 28, 29, 23, 34, 19, 39, 19, 41.5, 17, 29, 53, 16.5, 53, 16.5, 40.5, 29, 40.5, 41.5, 65.5, 29, 65.5, 29, 53, 41.5, 53, 29, 65.5, 16.5, 65.5, 16.5, 53, 29, 53, 41.5, 53, 29, 53, 29, 40.5, 41.5, 40.5, 29, 78, 16.5, 78, 16.5, 65.5, 29, 65.5, 41.5, 90.5, 29, 90.5, 29, 78, 41.5, 78, 29, 90.5, 16.5, 90.5, 16.5, 78, 29, 78, 41.5, 78, 29, 78, 29, 65.5, 41.5, 65.5, 29, 103, 16.5, 103, 16.5, 90.5, 29, 90.5, 41.5, 115.5, 29, 115.5, 29, 103, 41.5, 103, 29, 115.5, 28, 115.5, 26, 114, 22, 114, 22, 113, 18, 110, 16.5, 110, 16.5, 103, 29, 103, 41.5, 103, 29, 103, 29, 90.5, 41.5, 90.5, 16.5, 110, 14, 110, 11, 109, 11, 108, 6, 105, 6, 103, 16.5, 103, 16.5, 103, 6, 103, 6, 99, 6.14912, 90.5, 16.5, 90.5, 29, 116.25, 28, 115.5, 29, 115.5, 41.5, 120.75, 36, 118, 30, 118, 30, 117, 29, 116.25, 29, 115.5, 41.5, 115.5, 54, 28, 41.5, 28, 41.5, 17, 43.375, 15.5, 54, 15.5, 66.5, 40.5, 54, 40.5, 54, 28, 66.5, 28, 54, 40.5, 41.5, 40.5, 41.5, 28, 54, 28, 66.5, 28, 54, 28, 54, 15.5, 66.5, 15.5, 66.5, 15.5, 54, 15.5, 54, 11, 55, 10, 58, 10, 60, 9, 60, 8, 61, 7, 65, 7, 65, 6, 66.5, 4.5, 54, 15.5, 43.375, 15.5, 44, 15, 49, 15, 51, 12, 53, 12, 54, 11, 54, 53, 41.5, 53, 41.5, 40.5, 54, 40.5, 66.5, 65.5, 54, 65.5, 54, 53, 66.5, 53, 54, 65.5, 41.5, 65.5, 41.5, 53, 54, 53, 66.5, 53, 54, 53, 54, 40.5, 66.5, 40.5, 54, 78, 41.5, 78, 41.5, 65.5, 54, 65.5, 66.5, 90.5, 54, 90.5, 54, 78, 66.5, 78, 54, 90.5, 41.5, 90.5, 41.5, 78, 54, 78, 66.5, 78, 54, 78, 54, 65.5, 66.5, 65.5, 54, 103, 41.5, 103, 41.5, 90.5, 54, 90.5, 66.5, 115.5, 54, 115.5, 54, 103, 66.5, 103, 54, 115.5, 41.5, 115.5, 41.5, 103, 54, 103, 66.5, 103, 54, 103, 54, 90.5, 66.5, 90.5, 79, 28, 66.5, 28, 66.5, 15.5, 79, 15.5, 91.5, 40.5, 79, 40.5, 79, 28, 91.5, 28, 79, 40.5, 66.5, 40.5, 66.5, 28, 79, 28, 89, 18, 90, 19, 91.5, 19, 91.5, 28, 79, 28, 79, 15.5, 89, 15.5, 82, 11, 85, 11, 85, 13, 89, 15, 89, 15.5, 79, 15.5, 79, 8.375, 74, 4, 79, 8.375, 79, 15.5, 66.5, 15.5, 66.5, 4.5, 67, 4, 70, 4, 70, 3, 74, 3, 79, 53, 66.5, 53, 66.5, 40.5, 79, 40.5, 91.5, 65.5, 79, 65.5, 79, 53, 91.5, 53, 79, 65.5, 66.5, 65.5, 66.5, 53, 79, 53, 91.5, 53, 79, 53, 79, 40.5, 91.5, 40.5, 79, 78, 66.5, 78, 66.5, 65.5, 79, 65.5, 91.5, 90.5, 79, 90.5, 79, 78, 91.5, 78, 79, 90.5, 66.5, 90.5, 66.5, 78, 79, 78, 91.5, 78, 79, 78, 79, 65.5, 91.5, 65.5, 79, 103, 66.5, 103, 66.5, 90.5, 79, 90.5, 91.5, 114, 88, 114, 86.125, 115.5, 79, 115.5, 79, 103, 91.5, 103, 79, 115.5, 66.5, 115.5, 66.5, 103, 79, 103, 91.5, 103, 79, 103, 79, 90.5, 91.5, 90.5, 79, 118, 78, 118, 78, 119, 76, 122, 70, 122, 67, 126, 66.5, 126, 66.5, 115.5, 79, 115.5, 83, 118, 79, 118, 79, 115.5, 86.125, 115.5, 103, 28, 91.5, 28, 91.5, 19, 93, 19, 105, 30, 106, 31, 109, 31, 109, 34, 110, 35, 113, 35, 113, 40.5, 104, 40.5, 104, 28, 105, 28, 104, 40.5, 91.5, 40.5, 91.5, 28, 104, 28, 104, 53, 91.5, 53, 91.5, 40.5, 104, 40.5, 113, 65.5, 104, 65.5, 104, 53, 113, 53, 104, 65.5, 91.5, 65.5, 91.5, 53, 104, 53, 113, 53, 104, 53, 104, 40.5, 113, 40.5, 104, 78, 91.5, 78, 91.5, 65.5, 104, 65.5, 113, 83, 115, 87, 115, 90.5, 104, 90.5, 104, 78, 113, 78, 104, 90.5, 91.5, 90.5, 91.5, 78, 104, 78, 113, 78, 104, 78, 104, 65.5, 113, 65.5, 104, 103, 91.5, 103, 91.5, 90.5, 104, 90.5, 106, 104, 106, 105, 105, 106, 104, 106, 104, 103, 108, 103, 104, 106, 102, 106, 102, 107, 100, 109, 98, 109, 95, 110, 95, 111, 92, 114, 91.5, 114, 91.5, 103, 104, 103, 115, 100, 114, 100, 113, 102, 110, 102, 108, 103, 104, 103, 104, 90.5, 115, 90.5, 54, 126, 51, 126, 51, 125, 47, 124, 47, 123, 46, 122, 42, 122, 42, 121, 41.5, 120.75, 41.5, 115.5, 54, 115.5, 66.5, 126, 54, 126, 54, 115.5, 66.5, 115.5) +polygons = [PackedInt32Array(91, 88, 89), PackedInt32Array(89, 90, 91), PackedInt32Array(97, 92, 93), PackedInt32Array(94, 95, 96), PackedInt32Array(97, 93, 94), PackedInt32Array(94, 96, 97), PackedInt32Array(107, 98, 99), PackedInt32Array(100, 101, 102), PackedInt32Array(103, 104, 105), PackedInt32Array(105, 106, 107), PackedInt32Array(100, 102, 103), PackedInt32Array(105, 107, 99), PackedInt32Array(100, 103, 105), PackedInt32Array(105, 99, 100), PackedInt32Array(111, 108, 109), PackedInt32Array(109, 110, 111), PackedInt32Array(115, 112, 113), PackedInt32Array(113, 114, 115), PackedInt32Array(121, 116, 117), PackedInt32Array(118, 119, 120), PackedInt32Array(121, 117, 118), PackedInt32Array(118, 120, 121), PackedInt32Array(125, 122, 123), PackedInt32Array(123, 124, 125), PackedInt32Array(130, 126, 127), PackedInt32Array(127, 128, 129), PackedInt32Array(129, 130, 127), PackedInt32Array(136, 131, 132), PackedInt32Array(132, 133, 134), PackedInt32Array(135, 136, 132), PackedInt32Array(132, 134, 135), PackedInt32Array(140, 137, 138), PackedInt32Array(138, 139, 140), PackedInt32Array(144, 141, 142), PackedInt32Array(142, 143, 144), PackedInt32Array(148, 145, 146), PackedInt32Array(146, 147, 148), PackedInt32Array(152, 149, 150), PackedInt32Array(150, 151, 152), PackedInt32Array(156, 153, 154), PackedInt32Array(154, 155, 156), PackedInt32Array(160, 157, 158), PackedInt32Array(158, 159, 160), PackedInt32Array(164, 161, 162), PackedInt32Array(162, 163, 164), PackedInt32Array(168, 165, 166), PackedInt32Array(166, 167, 168), PackedInt32Array(172, 169, 170), PackedInt32Array(170, 171, 172), PackedInt32Array(176, 173, 174), PackedInt32Array(174, 175, 176), PackedInt32Array(185, 177, 178), PackedInt32Array(179, 180, 181), PackedInt32Array(182, 183, 184), PackedInt32Array(184, 185, 178), PackedInt32Array(179, 181, 182), PackedInt32Array(184, 178, 179), PackedInt32Array(179, 182, 184), PackedInt32Array(189, 186, 187), PackedInt32Array(187, 188, 189), PackedInt32Array(196, 190, 191), PackedInt32Array(191, 192, 193), PackedInt32Array(193, 194, 195), PackedInt32Array(195, 196, 191), PackedInt32Array(191, 193, 195), PackedInt32Array(201, 197, 198), PackedInt32Array(198, 199, 200), PackedInt32Array(200, 201, 198), PackedInt32Array(204, 202, 203), PackedInt32Array(211, 205, 206), PackedInt32Array(206, 207, 208), PackedInt32Array(208, 209, 210), PackedInt32Array(210, 211, 206), PackedInt32Array(206, 208, 210), PackedInt32Array(216, 212, 213), PackedInt32Array(213, 214, 215), PackedInt32Array(215, 216, 213), PackedInt32Array(220, 217, 218), PackedInt32Array(218, 219, 220), PackedInt32Array(224, 221, 222), PackedInt32Array(222, 223, 224), PackedInt32Array(228, 225, 226), PackedInt32Array(226, 227, 228), PackedInt32Array(229, 230, 231), PackedInt32Array(231, 232, 233), PackedInt32Array(234, 235, 236), PackedInt32Array(237, 238, 239), PackedInt32Array(229, 231, 233), PackedInt32Array(234, 236, 237), PackedInt32Array(237, 239, 229), PackedInt32Array(229, 233, 234), PackedInt32Array(234, 237, 229), PackedInt32Array(240, 241, 242), PackedInt32Array(243, 244, 245), PackedInt32Array(245, 246, 240), PackedInt32Array(240, 242, 243), PackedInt32Array(243, 245, 240), PackedInt32Array(250, 247, 248), PackedInt32Array(248, 249, 250), PackedInt32Array(254, 251, 252), PackedInt32Array(252, 253, 254), PackedInt32Array(258, 255, 256), PackedInt32Array(256, 257, 258), PackedInt32Array(262, 259, 260), PackedInt32Array(260, 261, 262), PackedInt32Array(266, 263, 264), PackedInt32Array(264, 265, 266), PackedInt32Array(270, 267, 268), PackedInt32Array(268, 269, 270), PackedInt32Array(274, 271, 272), PackedInt32Array(272, 273, 274), PackedInt32Array(278, 275, 276), PackedInt32Array(276, 277, 278), PackedInt32Array(282, 279, 280), PackedInt32Array(280, 281, 282), PackedInt32Array(286, 283, 284), PackedInt32Array(284, 285, 286), PackedInt32Array(290, 287, 288), PackedInt32Array(288, 289, 290), PackedInt32Array(294, 291, 292), PackedInt32Array(292, 293, 294), PackedInt32Array(298, 295, 296), PackedInt32Array(296, 297, 298), PackedInt32Array(302, 299, 300), PackedInt32Array(300, 301, 302), PackedInt32Array(306, 303, 304), PackedInt32Array(304, 305, 306), PackedInt32Array(308, 309, 310), PackedInt32Array(310, 311, 312), PackedInt32Array(312, 313, 307), PackedInt32Array(307, 308, 310), PackedInt32Array(310, 312, 307), PackedInt32Array(314, 315, 316), PackedInt32Array(316, 317, 318), PackedInt32Array(319, 320, 314), PackedInt32Array(316, 318, 319), PackedInt32Array(319, 314, 316), PackedInt32Array(321, 322, 323), PackedInt32Array(323, 324, 325), PackedInt32Array(325, 326, 327), PackedInt32Array(327, 328, 329), PackedInt32Array(321, 323, 325), PackedInt32Array(327, 329, 321), PackedInt32Array(321, 325, 327), PackedInt32Array(333, 330, 331), PackedInt32Array(331, 332, 333), PackedInt32Array(337, 334, 335), PackedInt32Array(335, 336, 337), PackedInt32Array(341, 338, 339), PackedInt32Array(339, 340, 341), PackedInt32Array(345, 342, 343), PackedInt32Array(343, 344, 345), PackedInt32Array(349, 346, 347), PackedInt32Array(347, 348, 349), PackedInt32Array(353, 350, 351), PackedInt32Array(351, 352, 353), PackedInt32Array(357, 354, 355), PackedInt32Array(355, 356, 357), PackedInt32Array(361, 358, 359), PackedInt32Array(359, 360, 361), PackedInt32Array(365, 362, 363), PackedInt32Array(363, 364, 365), PackedInt32Array(371, 366, 367), PackedInt32Array(367, 368, 369), PackedInt32Array(369, 370, 371), PackedInt32Array(371, 367, 369), PackedInt32Array(375, 372, 373), PackedInt32Array(373, 374, 375), PackedInt32Array(379, 376, 377), PackedInt32Array(377, 378, 379), PackedInt32Array(388, 380, 381), PackedInt32Array(381, 382, 383), PackedInt32Array(384, 385, 386), PackedInt32Array(387, 388, 381), PackedInt32Array(381, 383, 384), PackedInt32Array(384, 386, 387), PackedInt32Array(387, 381, 384), PackedInt32Array(392, 389, 390), PackedInt32Array(390, 391, 392), PackedInt32Array(396, 393, 394), PackedInt32Array(394, 395, 396), PackedInt32Array(398, 399, 400), PackedInt32Array(401, 402, 403), PackedInt32Array(404, 405, 406), PackedInt32Array(400, 401, 403), PackedInt32Array(404, 406, 397), PackedInt32Array(398, 400, 403), PackedInt32Array(403, 404, 397), PackedInt32Array(397, 398, 403), PackedInt32Array(410, 407, 408), PackedInt32Array(408, 409, 410), PackedInt32Array(414, 411, 412), PackedInt32Array(412, 413, 414), PackedInt32Array(418, 415, 416), PackedInt32Array(416, 417, 418), PackedInt32Array(422, 419, 420), PackedInt32Array(420, 421, 422), PackedInt32Array(426, 423, 424), PackedInt32Array(424, 425, 426), PackedInt32Array(430, 427, 428), PackedInt32Array(428, 429, 430), PackedInt32Array(431, 432, 433), PackedInt32Array(433, 434, 435), PackedInt32Array(435, 436, 431), PackedInt32Array(431, 433, 435), PackedInt32Array(440, 437, 438), PackedInt32Array(438, 439, 440), PackedInt32Array(444, 441, 442), PackedInt32Array(442, 443, 444), PackedInt32Array(448, 445, 446), PackedInt32Array(446, 447, 448), PackedInt32Array(449, 450, 451), PackedInt32Array(451, 452, 453), PackedInt32Array(453, 454, 449), PackedInt32Array(449, 451, 453), PackedInt32Array(465, 455, 456), PackedInt32Array(456, 457, 458), PackedInt32Array(460, 461, 462), PackedInt32Array(462, 463, 464), PackedInt32Array(464, 465, 456), PackedInt32Array(456, 458, 459), PackedInt32Array(460, 462, 464), PackedInt32Array(464, 456, 459), PackedInt32Array(459, 460, 464), PackedInt32Array(473, 466, 467), PackedInt32Array(467, 468, 469), PackedInt32Array(469, 470, 471), PackedInt32Array(471, 472, 473), PackedInt32Array(473, 467, 469), PackedInt32Array(469, 471, 473), PackedInt32Array(484, 474, 475), PackedInt32Array(476, 477, 478), PackedInt32Array(479, 480, 481), PackedInt32Array(481, 482, 483), PackedInt32Array(484, 475, 476), PackedInt32Array(476, 478, 479), PackedInt32Array(479, 481, 483), PackedInt32Array(483, 484, 476), PackedInt32Array(476, 479, 483), PackedInt32Array(488, 485, 486), PackedInt32Array(486, 487, 488)] +bones = ["Bone-0", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-1", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-2", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-3", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-4", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-5", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0), "Bone-6", PackedFloat32Array(0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-7", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-8", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-9", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1), "Bone-10", PackedFloat32Array(1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-11", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-12", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-13", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1), "Bone-14", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-15", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-16", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-17", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-18", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1)] +internal_vertex_count = 401 script = ExtResource("2_2dapw") vertex_interval = 25 -radius = 19 -rigidbody_scene = ExtResource("3_6ern4") margin_pixels = -1 -voronoi_interval = 0.15 +min_area = 0.3 stiffness = 0.1 damping = 9.1 rest_length_ratio = 1.1 length_ratio = 0.1 softness = 100.0 +radius = 19 +rigidbody_scene = ExtResource("3_6ern4") physics_material_override = ExtResource("5_221ya") [node name="Skeleton2D" type="Skeleton2D" parent="Butter2"] visible = false -modification_stack = SubResource("SkeletonModificationStack2D_qthhb") +modification_stack = SubResource("SkeletonModificationStack2D_q1k0q") [node name="Bone-0" type="Bone2D" parent="Butter2/Skeleton2D"] -position = Vector2(11.9819, 47.4582) -rotation = 0.260871 -rest = Transform2D(0.966166, 0.257923, -0.257923, 0.966166, 11.9819, 47.4582) +position = Vector2(10.25, 47.125) +rotation = 1.02504 +rest = Transform2D(0.519068, 0.854733, -0.854733, 0.519068, 10.25, 47.125) auto_calculate_length_and_angle = false length = 25.0 bone_angle = 0.0 -metadata/vert_owned = [88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105] -metadata/connected_nodes_paths = [NodePath("Bone-1"), NodePath("Bone-2"), NodePath("Bone-3"), NodePath("Bone-4")] +metadata/vert_owned = [88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107] +metadata/idx = 0 +metadata/connected_nodes_paths = [NodePath("Bone-1"), NodePath("Bone-3"), NodePath("Bone-4"), NodePath("Bone-2")] +metadata/connected_nodes_idx = [1, 3, 4, 2] metadata/_local_pose_override_enabled_ = true [node name="Bone-1" type="Bone2D" parent="Butter2/Skeleton2D"] -position = Vector2(11.4233, 78.7417) -rotation = -0.059216 -rest = Transform2D(0.998247, -0.0591814, 0.0591814, 0.998247, 11.4233, 78.7417) +position = Vector2(11.3246, 78) +rest = Transform2D(1, 0, 0, 1, 11.3246, 78) auto_calculate_length_and_angle = false length = 25.0 bone_angle = 0.0 -metadata/vert_owned = [106, 107, 108, 109, 110] +metadata/vert_owned = [108, 109, 110, 111, 112, 113, 114, 115] +metadata/idx = 1 metadata/connected_nodes_paths = [NodePath("Bone-0"), NodePath("Bone-3"), NodePath("Bone-4"), NodePath("Bone-5")] +metadata/connected_nodes_idx = [0, 3, 4, 5] metadata/_local_pose_override_enabled_ = true [node name="Bone-2" type="Bone2D" parent="Butter2/Skeleton2D"] -position = Vector2(32.1588, 27.3839) -rotation = 0.0406232 -rest = Transform2D(0.999175, 0.0406121, -0.0406121, 0.999175, 32.1588, 27.3839) +position = Vector2(29, 28.75) +rotation = -0.244979 +scale = Vector2(1, 1) +rest = Transform2D(0.970142, -0.242536, 0.242536, 0.970142, 29, 28.75) auto_calculate_length_and_angle = false length = 25.0 bone_angle = 0.0 -metadata/vert_owned = [111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121] +metadata/vert_owned = [116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136] +metadata/idx = 2 metadata/connected_nodes_paths = [NodePath("Bone-0"), NodePath("Bone-3"), NodePath("Bone-6"), NodePath("Bone-7")] +metadata/connected_nodes_idx = [0, 3, 6, 7] metadata/_local_pose_override_enabled_ = true [node name="Bone-3" type="Bone2D" parent="Butter2/Skeleton2D"] -position = Vector2(29.9134, 52.2451) -rotation = 1.59192 -rest = Transform2D(-0.0211265, 0.999777, -0.999777, -0.0211265, 29.9134, 52.2451) +position = Vector2(29, 53) +rotation = -1.5708 +rest = Transform2D(-4.37114e-08, -1, 1, -4.37114e-08, 29, 53) auto_calculate_length_and_angle = false length = 25.0 bone_angle = 0.0 -metadata/vert_owned = [122, 123, 124, 125, 126, 127] -metadata/connected_nodes_paths = [NodePath("Bone-0"), NodePath("Bone-1"), NodePath("Bone-2"), NodePath("Bone-4"), NodePath("Bone-6"), NodePath("Bone-7"), NodePath("Bone-8")] +metadata/vert_owned = [137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152] +metadata/idx = 3 +metadata/connected_nodes_paths = [NodePath("Bone-0"), NodePath("Bone-1"), NodePath("Bone-4"), NodePath("Bone-2"), NodePath("Bone-6"), NodePath("Bone-7"), NodePath("Bone-8")] +metadata/connected_nodes_idx = [0, 1, 4, 2, 6, 7, 8] metadata/_local_pose_override_enabled_ = true [node name="Bone-4" type="Bone2D" parent="Butter2/Skeleton2D"] -position = Vector2(29.376, 77.6774) -rotation = 1.78493 -rest = Transform2D(-0.212503, 0.97716, -0.97716, -0.212503, 29.376, 77.6774) +position = Vector2(29, 78) +rotation = 1.7586 +rest = Transform2D(-0.186704, 0.982416, -0.982416, -0.186704, 29, 78) auto_calculate_length_and_angle = false length = 25.0 bone_angle = 0.0 -metadata/vert_owned = [128, 129, 130, 131, 132, 133] +metadata/vert_owned = [153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168] +metadata/idx = 4 metadata/connected_nodes_paths = [NodePath("Bone-0"), NodePath("Bone-1"), NodePath("Bone-3"), NodePath("Bone-5"), NodePath("Bone-7"), NodePath("Bone-8"), NodePath("Bone-9")] +metadata/connected_nodes_idx = [0, 1, 3, 5, 7, 8, 9] metadata/_local_pose_override_enabled_ = true [node name="Bone-5" type="Bone2D" parent="Butter2/Skeleton2D"] -position = Vector2(23.8771, 102.963) -rotation = -0.661389 -rest = Transform2D(0.78914, -0.614213, 0.614213, 0.78914, 23.8771, 102.963) +position = Vector2(23.75, 105.625) +rotation = -1.38299 +scale = Vector2(1, 1) +rest = Transform2D(0.186704, -0.982416, 0.982416, 0.186704, 23.75, 105.625) auto_calculate_length_and_angle = false length = 25.0 bone_angle = 0.0 -metadata/vert_owned = [134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153] -metadata/connected_nodes_paths = [NodePath("Bone-1"), NodePath("Bone-4"), NodePath("Bone-8"), NodePath("Bone-9"), NodePath("Bone-19")] +metadata/vert_owned = [169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211] +metadata/idx = 5 +metadata/connected_nodes_paths = [NodePath("Bone-18"), NodePath("Bone-1"), NodePath("Bone-4"), NodePath("Bone-8"), NodePath("Bone-9")] +metadata/connected_nodes_idx = [18, 1, 4, 8, 9] metadata/_local_pose_override_enabled_ = true [node name="Bone-6" type="Bone2D" parent="Butter2/Skeleton2D"] -position = Vector2(55.7376, 28.3423) -rotation = -0.920185 -rest = Transform2D(0.605673, -0.795714, 0.795714, 0.605673, 55.7376, 28.3423) +position = Vector2(54, 22.5) +rotation = 2.25742 +scale = Vector2(1, 1) +rest = Transform2D(-0.633928, 0.773392, -0.773392, -0.633928, 54, 22.5) auto_calculate_length_and_angle = false length = 25.0 bone_angle = 0.0 -metadata/vert_owned = [154, 155, 156, 157, 158, 159, 160] -metadata/connected_nodes_paths = [NodePath("Bone-2"), NodePath("Bone-3"), NodePath("Bone-7"), NodePath("Bone-10"), NodePath("Bone-11"), NodePath("Bone-12")] +metadata/vert_owned = [212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246] +metadata/idx = 6 +metadata/connected_nodes_paths = [NodePath("Bone-10"), NodePath("Bone-2"), NodePath("Bone-3"), NodePath("Bone-7"), NodePath("Bone-11")] +metadata/connected_nodes_idx = [10, 2, 3, 7, 11] metadata/_local_pose_override_enabled_ = true [node name="Bone-7" type="Bone2D" parent="Butter2/Skeleton2D"] -position = Vector2(55.3545, 54.8831) -rotation = 1.60529 -rest = Transform2D(-0.0344882, 0.999405, -0.999405, -0.0344882, 55.3545, 54.8831) +position = Vector2(54, 53) +rotation = 1.5708 +rest = Transform2D(-4.37114e-08, 1, -1, -4.37114e-08, 54, 53) auto_calculate_length_and_angle = false length = 25.0 bone_angle = 0.0 -metadata/vert_owned = [161, 162, 163, 164, 165, 166] -metadata/connected_nodes_paths = [NodePath("Bone-2"), NodePath("Bone-3"), NodePath("Bone-4"), NodePath("Bone-6"), NodePath("Bone-8"), NodePath("Bone-11"), NodePath("Bone-12"), NodePath("Bone-13")] +metadata/vert_owned = [247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262] +metadata/idx = 7 +metadata/connected_nodes_paths = [NodePath("Bone-2"), NodePath("Bone-3"), NodePath("Bone-6"), NodePath("Bone-4"), NodePath("Bone-8"), NodePath("Bone-10"), NodePath("Bone-11"), NodePath("Bone-12")] +metadata/connected_nodes_idx = [2, 3, 6, 4, 8, 10, 11, 12] metadata/_local_pose_override_enabled_ = true [node name="Bone-8" type="Bone2D" parent="Butter2/Skeleton2D"] -position = Vector2(54.5183, 79.1141) -rotation = 1.61776 -rest = Transform2D(-0.0469479, 0.998897, -0.998897, -0.0469479, 54.5183, 79.1141) +position = Vector2(54, 78) +rotation = 1.5708 +rest = Transform2D(-4.37114e-08, 1, -1, -4.37114e-08, 54, 78) auto_calculate_length_and_angle = false length = 25.0 bone_angle = 0.0 -metadata/vert_owned = [167, 168, 169, 170, 171, 172] -metadata/connected_nodes_paths = [NodePath("Bone-3"), NodePath("Bone-4"), NodePath("Bone-5"), NodePath("Bone-7"), NodePath("Bone-9"), NodePath("Bone-12"), NodePath("Bone-13"), NodePath("Bone-14")] +metadata/vert_owned = [263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278] +metadata/idx = 8 +metadata/connected_nodes_paths = [NodePath("Bone-3"), NodePath("Bone-4"), NodePath("Bone-7"), NodePath("Bone-5"), NodePath("Bone-9"), NodePath("Bone-11"), NodePath("Bone-12"), NodePath("Bone-13")] +metadata/connected_nodes_idx = [3, 4, 7, 5, 9, 11, 12, 13] metadata/_local_pose_override_enabled_ = true [node name="Bone-9" type="Bone2D" parent="Butter2/Skeleton2D"] -position = Vector2(53.3725, 103.495) -rotation = -0.729803 -scale = Vector2(1, 1) -rest = Transform2D(0.745306, -0.666723, 0.666723, 0.745306, 53.3725, 103.495) +position = Vector2(54, 103) +rotation = 1.5708 +rest = Transform2D(-4.37114e-08, 1, -1, -4.37114e-08, 54, 103) auto_calculate_length_and_angle = false length = 25.0 bone_angle = 0.0 -metadata/vert_owned = [173, 174, 175, 176] -metadata/connected_nodes_paths = [NodePath("Bone-4"), NodePath("Bone-5"), NodePath("Bone-8"), NodePath("Bone-13"), NodePath("Bone-14"), NodePath("Bone-19")] +metadata/vert_owned = [279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294] +metadata/idx = 9 +metadata/connected_nodes_paths = [NodePath("Bone-4"), NodePath("Bone-5"), NodePath("Bone-8"), NodePath("Bone-18"), NodePath("Bone-12"), NodePath("Bone-13")] +metadata/connected_nodes_idx = [4, 5, 8, 18, 12, 13] metadata/_local_pose_override_enabled_ = true [node name="Bone-10" type="Bone2D" parent="Butter2/Skeleton2D"] -position = Vector2(69.1836, 10.6773) -rotation = 1.02534 -rest = Transform2D(0.518808, 0.854891, -0.854891, 0.518808, 69.1836, 10.6773) +position = Vector2(79, 21.75) +rotation = 1.5708 +rest = Transform2D(-4.37114e-08, 1, -1, -4.37114e-08, 79, 21.75) auto_calculate_length_and_angle = false length = 25.0 bone_angle = 0.0 -metadata/vert_owned = [177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201] -metadata/connected_nodes_paths = [NodePath("Bone-6"), NodePath("Bone-11")] +metadata/vert_owned = [295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329] +metadata/idx = 10 +metadata/connected_nodes_paths = [NodePath("Bone-6"), NodePath("Bone-7"), NodePath("Bone-11"), NodePath("Bone-14"), NodePath("Bone-15")] +metadata/connected_nodes_idx = [6, 7, 11, 14, 15] metadata/_local_pose_override_enabled_ = true [node name="Bone-11" type="Bone2D" parent="Butter2/Skeleton2D"] -position = Vector2(80.9573, 30.078) -rotation = 1.63571 -rest = Transform2D(-0.0648705, 0.997894, -0.997894, -0.0648705, 80.9573, 30.078) +position = Vector2(79, 53) +rotation = 1.5708 +rest = Transform2D(-4.37114e-08, 1, -1, -4.37114e-08, 79, 53) auto_calculate_length_and_angle = false length = 25.0 bone_angle = 0.0 -metadata/vert_owned = [202, 203, 204, 205, 206] -metadata/connected_nodes_paths = [NodePath("Bone-6"), NodePath("Bone-7"), NodePath("Bone-10"), NodePath("Bone-12"), NodePath("Bone-15"), NodePath("Bone-16")] +metadata/vert_owned = [330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345] +metadata/idx = 11 +metadata/connected_nodes_paths = [NodePath("Bone-6"), NodePath("Bone-7"), NodePath("Bone-10"), NodePath("Bone-8"), NodePath("Bone-12"), NodePath("Bone-14"), NodePath("Bone-15"), NodePath("Bone-16")] +metadata/connected_nodes_idx = [6, 7, 10, 8, 12, 14, 15, 16] metadata/_local_pose_override_enabled_ = true [node name="Bone-12" type="Bone2D" parent="Butter2/Skeleton2D"] -position = Vector2(79.3768, 54.3897) -rotation = 1.50099 -rest = Transform2D(0.069746, 0.997565, -0.997565, 0.069746, 79.3768, 54.3897) +position = Vector2(79, 78) +rotation = 1.5708 +rest = Transform2D(-4.37114e-08, 1, -1, -4.37114e-08, 79, 78) auto_calculate_length_and_angle = false length = 25.0 bone_angle = 0.0 -metadata/vert_owned = [207, 208, 209, 210, 211] -metadata/connected_nodes_paths = [NodePath("Bone-6"), NodePath("Bone-7"), NodePath("Bone-8"), NodePath("Bone-11"), NodePath("Bone-13"), NodePath("Bone-15"), NodePath("Bone-16"), NodePath("Bone-17")] +metadata/vert_owned = [346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361] +metadata/idx = 12 +metadata/connected_nodes_paths = [NodePath("Bone-7"), NodePath("Bone-8"), NodePath("Bone-11"), NodePath("Bone-9"), NodePath("Bone-13"), NodePath("Bone-15"), NodePath("Bone-16"), NodePath("Bone-17")] +metadata/connected_nodes_idx = [7, 8, 11, 9, 13, 15, 16, 17] metadata/_local_pose_override_enabled_ = true [node name="Bone-13" type="Bone2D" parent="Butter2/Skeleton2D"] -position = Vector2(81.0773, 78.7108) -rotation = 1.64259 -rest = Transform2D(-0.0717316, 0.997424, -0.997424, -0.0717316, 81.0773, 78.7108) +position = Vector2(79, 108.25) +rotation = -2.9346 +rest = Transform2D(-0.978653, -0.205517, 0.205517, -0.978653, 79, 108.25) auto_calculate_length_and_angle = false length = 25.0 bone_angle = 0.0 -metadata/vert_owned = [212, 213, 214, 215, 216, 217, 218] -metadata/connected_nodes_paths = [NodePath("Bone-7"), NodePath("Bone-8"), NodePath("Bone-9"), NodePath("Bone-12"), NodePath("Bone-14"), NodePath("Bone-16"), NodePath("Bone-17"), NodePath("Bone-18")] +metadata/vert_owned = [362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392] +metadata/idx = 13 +metadata/connected_nodes_paths = [NodePath("Bone-18"), NodePath("Bone-17"), NodePath("Bone-8"), NodePath("Bone-9"), NodePath("Bone-12"), NodePath("Bone-16")] +metadata/connected_nodes_idx = [18, 17, 8, 9, 12, 16] metadata/_local_pose_override_enabled_ = true [node name="Bone-14" type="Bone2D" parent="Butter2/Skeleton2D"] -position = Vector2(79.047, 106.942) -rotation = -0.795486 -rest = Transform2D(0.699938, -0.714204, 0.714204, 0.699938, 79.047, 106.942) +position = Vector2(102.25, 29.75) +rotation = 2.35619 +scale = Vector2(1, 1) +rest = Transform2D(-0.707107, 0.707107, -0.707107, -0.707107, 102.25, 29.75) auto_calculate_length_and_angle = false length = 25.0 bone_angle = 0.0 -metadata/vert_owned = [219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232] -metadata/connected_nodes_paths = [NodePath("Bone-8"), NodePath("Bone-9"), NodePath("Bone-13"), NodePath("Bone-17"), NodePath("Bone-18"), NodePath("Bone-19")] +metadata/vert_owned = [393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410] +metadata/idx = 14 +metadata/connected_nodes_paths = [NodePath("Bone-10"), NodePath("Bone-11"), NodePath("Bone-15")] +metadata/connected_nodes_idx = [10, 11, 15] metadata/_local_pose_override_enabled_ = true [node name="Bone-15" type="Bone2D" parent="Butter2/Skeleton2D"] -position = Vector2(102.751, 31.2282) -rotation = 2.36077 -rest = Transform2D(-0.710338, 0.703861, -0.703861, -0.710338, 102.751, 31.2282) +position = Vector2(102.25, 53) +rotation = -1.5708 +rest = Transform2D(-4.37114e-08, -1, 1, -4.37114e-08, 102.25, 53) auto_calculate_length_and_angle = false length = 25.0 bone_angle = 0.0 -metadata/vert_owned = [233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244] -metadata/connected_nodes_paths = [NodePath("Bone-11"), NodePath("Bone-12"), NodePath("Bone-16")] +metadata/vert_owned = [411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426] +metadata/idx = 15 +metadata/connected_nodes_paths = [NodePath("Bone-10"), NodePath("Bone-11"), NodePath("Bone-14"), NodePath("Bone-12"), NodePath("Bone-16")] +metadata/connected_nodes_idx = [10, 11, 14, 12, 16] metadata/_local_pose_override_enabled_ = true [node name="Bone-16" type="Bone2D" parent="Butter2/Skeleton2D"] -position = Vector2(103.646, 54.4703) -rotation = 2.32049 +position = Vector2(103.25, 78) +rotation = -1.61077 scale = Vector2(1, 1) -rest = Transform2D(-0.681412, 0.7319, -0.7319, -0.681412, 103.646, 54.4703) +rest = Transform2D(-0.039968, -0.999201, 0.999201, -0.039968, 103.25, 78) auto_calculate_length_and_angle = false length = 25.0 bone_angle = 0.0 -metadata/vert_owned = [245, 246, 247, 248, 249, 250, 251] -metadata/connected_nodes_paths = [NodePath("Bone-11"), NodePath("Bone-12"), NodePath("Bone-13"), NodePath("Bone-15"), NodePath("Bone-17")] +metadata/vert_owned = [427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444] +metadata/idx = 16 +metadata/connected_nodes_paths = [NodePath("Bone-11"), NodePath("Bone-12"), NodePath("Bone-15"), NodePath("Bone-13"), NodePath("Bone-17")] +metadata/connected_nodes_idx = [11, 12, 15, 13, 17] metadata/_local_pose_override_enabled_ = true [node name="Bone-17" type="Bone2D" parent="Butter2/Skeleton2D"] -position = Vector2(105.689, 79.7563) -rotation = 2.34611 -rest = Transform2D(-0.699938, 0.714204, -0.714204, -0.699938, 105.689, 79.7563) +position = Vector2(103.25, 102.25) +rotation = -2.35619 +scale = Vector2(1, 1) +rest = Transform2D(-0.707107, -0.707107, 0.707107, -0.707107, 103.25, 102.25) auto_calculate_length_and_angle = false length = 25.0 bone_angle = 0.0 -metadata/vert_owned = [252, 253, 254, 255, 256] -metadata/connected_nodes_paths = [NodePath("Bone-12"), NodePath("Bone-13"), NodePath("Bone-14"), NodePath("Bone-16"), NodePath("Bone-18")] +metadata/vert_owned = [445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473] +metadata/idx = 17 +metadata/connected_nodes_paths = [NodePath("Bone-13"), NodePath("Bone-12"), NodePath("Bone-16")] +metadata/connected_nodes_idx = [13, 12, 16] metadata/_local_pose_override_enabled_ = true [node name="Bone-18" type="Bone2D" parent="Butter2/Skeleton2D"] -position = Vector2(102.296, 103.289) -rotation = 2.98577 +position = Vector2(54, 120.75) +rotation = -0.463648 scale = Vector2(1, 1) -rest = Transform2D(-0.987884, 0.155195, -0.155195, -0.987884, 102.296, 103.289) +rest = Transform2D(0.894427, -0.447214, 0.447214, 0.894427, 54, 120.75) auto_calculate_length_and_angle = false length = 25.0 bone_angle = 0.0 -metadata/vert_owned = [257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278] -metadata/connected_nodes_paths = [NodePath("Bone-13"), NodePath("Bone-14"), NodePath("Bone-17")] +metadata/vert_owned = [474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488] +metadata/idx = 18 +metadata/connected_nodes_paths = [NodePath("Bone-5"), NodePath("Bone-13"), NodePath("Bone-9")] +metadata/connected_nodes_idx = [5, 13, 9] metadata/_local_pose_override_enabled_ = true -[node name="Bone-19" type="Bone2D" parent="Butter2/Skeleton2D"] -position = Vector2(49.0143, 119.913) -rotation = -1.31134 -rest = Transform2D(0.256555, -0.96653, 0.96653, 0.256555, 49.0143, 119.913) -auto_calculate_length_and_angle = false -length = 25.0 -bone_angle = 0.0 -metadata/vert_owned = [279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298] -metadata/connected_nodes_paths = [NodePath("Bone-5"), NodePath("Bone-9"), NodePath("Bone-14")] -metadata/_local_pose_override_enabled_ = true - -[node name="Bone-0" parent="Butter2" instance=ExtResource("3_6ern4")] -position = Vector2(11.9819, 47.4582) -mass = 0.05 +[node name="Bone-0" type="RigidBody2D" parent="Butter2" instance=ExtResource("3_6ern4")] +position = Vector2(10.25, 47.125) +input_pickable = true +mass = 0.0526316 physics_material_override = ExtResource("5_221ya") +script = ExtResource("11_tqnjl") +metadata/idx = 0 metadata/bone_name = &"Bone-0" [node name="CircleShape2D" type="CollisionShape2D" parent="Butter2/Bone-0"] -shape = SubResource("CircleShape2D_hvgye") +shape = SubResource("CircleShape2D_0pn6q") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Butter2/Bone-0"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-0") update_rotation = false update_scale = false [node name="Joint2D-Bone-0-Bone-1" type="PinJoint2D" parent="Butter2/Bone-0"] visible = false -rotation = 0.017855 +rotation = -0.0347895 node_a = NodePath("..") node_b = NodePath("../../Bone-1") softness = 100.0 -[node name="Joint2D-Bone-0-Bone-2" type="PinJoint2D" parent="Butter2/Bone-0"] -visible = false -rotation = -2.35365 -node_a = NodePath("..") -node_b = NodePath("../../Bone-2") -softness = 100.0 - [node name="Joint2D-Bone-0-Bone-3" type="PinJoint2D" parent="Butter2/Bone-0"] visible = false -rotation = -1.30993 +rotation = -1.26715 node_a = NodePath("..") node_b = NodePath("../../Bone-3") softness = 100.0 [node name="Joint2D-Bone-0-Bone-4" type="PinJoint2D" parent="Butter2/Bone-0"] visible = false -rotation = -0.522283 +rotation = -0.545761 node_a = NodePath("..") node_b = NodePath("../../Bone-4") softness = 100.0 -[node name="Bone-1" parent="Butter2" instance=ExtResource("3_6ern4")] -position = Vector2(11.4233, 78.7417) -mass = 0.05 +[node name="Joint2D-Bone-0-Bone-2" type="PinJoint2D" parent="Butter2/Bone-0"] +visible = false +rotation = -2.34609 +node_a = NodePath("..") +node_b = NodePath("../../Bone-2") +softness = 100.0 + +[node name="Bone-1" type="RigidBody2D" parent="Butter2" instance=ExtResource("3_6ern4")] +position = Vector2(11.3246, 78) +input_pickable = true +mass = 0.0526316 physics_material_override = ExtResource("5_221ya") +script = ExtResource("11_tqnjl") +metadata/idx = 1 metadata/bone_name = &"Bone-1" [node name="CircleShape2D" type="CollisionShape2D" parent="Butter2/Bone-1"] -shape = SubResource("CircleShape2D_hvgye") +shape = SubResource("CircleShape2D_0pn6q") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Butter2/Bone-1"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-1") update_rotation = false update_scale = false [node name="Joint2D-Bone-1-Bone-0" type="PinJoint2D" parent="Butter2/Bone-1"] visible = false -rotation = -3.12374 +rotation = -3.17638 node_a = NodePath("..") node_b = NodePath("../../Bone-0") softness = 100.0 [node name="Joint2D-Bone-1-Bone-3" type="PinJoint2D" parent="Butter2/Bone-1"] visible = false -rotation = -2.53232 +rotation = -2.52617 node_a = NodePath("..") node_b = NodePath("../../Bone-3") softness = 100.0 [node name="Joint2D-Bone-1-Bone-4" type="PinJoint2D" parent="Butter2/Bone-1"] visible = false -rotation = -1.63001 +rotation = -1.5708 node_a = NodePath("..") node_b = NodePath("../../Bone-4") softness = 100.0 [node name="Joint2D-Bone-1-Bone-5" type="PinJoint2D" parent="Butter2/Bone-1"] visible = false -rotation = -0.474914 +rotation = -0.422679 node_a = NodePath("..") node_b = NodePath("../../Bone-5") softness = 100.0 -[node name="Bone-2" parent="Butter2" instance=ExtResource("3_6ern4")] -position = Vector2(32.1588, 27.3839) -mass = 0.05 +[node name="Bone-2" type="RigidBody2D" parent="Butter2" instance=ExtResource("3_6ern4")] +position = Vector2(29, 28.75) +input_pickable = true +mass = 0.0526316 physics_material_override = ExtResource("5_221ya") +script = ExtResource("11_tqnjl") +metadata/idx = 2 metadata/bone_name = &"Bone-2" [node name="CircleShape2D" type="CollisionShape2D" parent="Butter2/Bone-2"] -shape = SubResource("CircleShape2D_hvgye") +shape = SubResource("CircleShape2D_0pn6q") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Butter2/Bone-2"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-2") update_rotation = false update_scale = false [node name="Joint2D-Bone-2-Bone-0" type="PinJoint2D" parent="Butter2/Bone-2"] visible = false -rotation = 0.787946 +rotation = 0.795499 node_a = NodePath("..") node_b = NodePath("../../Bone-0") softness = 100.0 [node name="Joint2D-Bone-2-Bone-3" type="PinJoint2D" parent="Butter2/Bone-2"] visible = false -rotation = 0.0900715 node_a = NodePath("..") node_b = NodePath("../../Bone-3") softness = 100.0 [node name="Joint2D-Bone-2-Bone-6" type="PinJoint2D" parent="Butter2/Bone-2"] visible = false -rotation = -1.53017 +rotation = -1.81578 node_a = NodePath("..") node_b = NodePath("../../Bone-6") softness = 100.0 [node name="Joint2D-Bone-2-Bone-7" type="PinJoint2D" parent="Butter2/Bone-2"] visible = false -rotation = -0.700711 +rotation = -0.800625 node_a = NodePath("..") node_b = NodePath("../../Bone-7") softness = 100.0 -[node name="Bone-3" parent="Butter2" instance=ExtResource("3_6ern4")] -position = Vector2(29.9134, 52.2451) -mass = 0.05 +[node name="Bone-3" type="RigidBody2D" parent="Butter2" instance=ExtResource("3_6ern4")] +position = Vector2(29, 53) +input_pickable = true +mass = 0.0526316 physics_material_override = ExtResource("5_221ya") +script = ExtResource("11_tqnjl") +metadata/idx = 3 metadata/bone_name = &"Bone-3" [node name="CircleShape2D" type="CollisionShape2D" parent="Butter2/Bone-3"] -shape = SubResource("CircleShape2D_hvgye") +shape = SubResource("CircleShape2D_0pn6q") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Butter2/Bone-3"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-3") update_rotation = false update_scale = false [node name="Joint2D-Bone-3-Bone-0" type="PinJoint2D" parent="Butter2/Bone-3"] visible = false -rotation = -4.45152 +rotation = -4.40875 node_a = NodePath("..") node_b = NodePath("../../Bone-0") softness = 100.0 [node name="Joint2D-Bone-3-Bone-1" type="PinJoint2D" parent="Butter2/Bone-3"] visible = false -rotation = 0.609268 +rotation = 0.61542 node_a = NodePath("..") node_b = NodePath("../../Bone-1") softness = 100.0 -[node name="Joint2D-Bone-3-Bone-2" type="PinJoint2D" parent="Butter2/Bone-3"] +[node name="Joint2D-Bone-3-Bone-4" type="PinJoint2D" parent="Butter2/Bone-3"] visible = false -rotation = -3.05152 node_a = NodePath("..") -node_b = NodePath("../../Bone-2") +node_b = NodePath("../../Bone-4") softness = 100.0 -[node name="Joint2D-Bone-3-Bone-4" type="PinJoint2D" parent="Butter2/Bone-3"] +[node name="Joint2D-Bone-3-Bone-2" type="PinJoint2D" parent="Butter2/Bone-3"] visible = false -rotation = 0.0211281 +rotation = -3.14159 node_a = NodePath("..") -node_b = NodePath("../../Bone-4") +node_b = NodePath("../../Bone-2") softness = 100.0 [node name="Joint2D-Bone-3-Bone-6" type="PinJoint2D" parent="Butter2/Bone-3"] visible = false -rotation = -2.31758 +rotation = -2.45497 node_a = NodePath("..") node_b = NodePath("../../Bone-6") softness = 100.0 [node name="Joint2D-Bone-3-Bone-7" type="PinJoint2D" parent="Butter2/Bone-3"] visible = false -rotation = -1.46747 +rotation = -1.5708 node_a = NodePath("..") node_b = NodePath("../../Bone-7") softness = 100.0 [node name="Joint2D-Bone-3-Bone-8" type="PinJoint2D" parent="Butter2/Bone-3"] visible = false -rotation = -0.741441 +rotation = -0.785398 node_a = NodePath("..") node_b = NodePath("../../Bone-8") softness = 100.0 -[node name="Bone-4" parent="Butter2" instance=ExtResource("3_6ern4")] -position = Vector2(29.376, 77.6774) -mass = 0.05 +[node name="Bone-4" type="RigidBody2D" parent="Butter2" instance=ExtResource("3_6ern4")] +position = Vector2(29, 78) +input_pickable = true +mass = 0.0526316 physics_material_override = ExtResource("5_221ya") +script = ExtResource("11_tqnjl") +metadata/idx = 4 metadata/bone_name = &"Bone-4" [node name="CircleShape2D" type="CollisionShape2D" parent="Butter2/Bone-4"] -shape = SubResource("CircleShape2D_hvgye") +shape = SubResource("CircleShape2D_0pn6q") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Butter2/Bone-4"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-4") update_rotation = false update_scale = false [node name="Joint2D-Bone-4-Bone-0" type="PinJoint2D" parent="Butter2/Bone-4"] visible = false -rotation = -3.66388 +rotation = -3.68735 node_a = NodePath("..") node_b = NodePath("../../Bone-0") softness = 100.0 [node name="Joint2D-Bone-4-Bone-1" type="PinJoint2D" parent="Butter2/Bone-4"] visible = false -rotation = 1.51158 +rotation = 1.5708 node_a = NodePath("..") node_b = NodePath("../../Bone-1") softness = 100.0 [node name="Joint2D-Bone-4-Bone-3" type="PinJoint2D" parent="Butter2/Bone-4"] visible = false -rotation = -3.12046 +rotation = -3.14159 node_a = NodePath("..") node_b = NodePath("../../Bone-3") softness = 100.0 [node name="Joint2D-Bone-4-Bone-5" type="PinJoint2D" parent="Butter2/Bone-4"] visible = false -rotation = 0.214135 +rotation = 0.187806 node_a = NodePath("..") node_b = NodePath("../../Bone-5") softness = 100.0 [node name="Joint2D-Bone-4-Bone-7" type="PinJoint2D" parent="Butter2/Bone-4"] visible = false -rotation = -2.291 +rotation = -2.35619 node_a = NodePath("..") node_b = NodePath("../../Bone-7") softness = 100.0 [node name="Joint2D-Bone-4-Bone-8" type="PinJoint2D" parent="Butter2/Bone-4"] visible = false -rotation = -1.51371 +rotation = -1.5708 node_a = NodePath("..") node_b = NodePath("../../Bone-8") softness = 100.0 [node name="Joint2D-Bone-4-Bone-9" type="PinJoint2D" parent="Butter2/Bone-4"] visible = false -rotation = -0.748864 +rotation = -0.785398 node_a = NodePath("..") node_b = NodePath("../../Bone-9") softness = 100.0 -[node name="Bone-5" parent="Butter2" instance=ExtResource("3_6ern4")] -position = Vector2(23.8771, 102.963) -mass = 0.05 +[node name="Bone-5" type="RigidBody2D" parent="Butter2" instance=ExtResource("3_6ern4")] +position = Vector2(23.75, 105.625) +input_pickable = true +mass = 0.0526316 physics_material_override = ExtResource("5_221ya") +script = ExtResource("11_tqnjl") +metadata/idx = 5 metadata/bone_name = &"Bone-5" [node name="CircleShape2D" type="CollisionShape2D" parent="Butter2/Bone-5"] -shape = SubResource("CircleShape2D_hvgye") +shape = SubResource("CircleShape2D_0pn6q") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Butter2/Bone-5"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-5") update_rotation = false update_scale = false +[node name="Joint2D-Bone-5-Bone-18" type="PinJoint2D" parent="Butter2/Bone-5"] +visible = false +rotation = -1.10715 +node_a = NodePath("..") +node_b = NodePath("../../Bone-18") +softness = 100.0 + [node name="Joint2D-Bone-5-Bone-1" type="PinJoint2D" parent="Butter2/Bone-5"] visible = false -rotation = -3.61651 +rotation = -3.56427 node_a = NodePath("..") node_b = NodePath("../../Bone-1") softness = 100.0 [node name="Joint2D-Bone-5-Bone-4" type="PinJoint2D" parent="Butter2/Bone-5"] visible = false -rotation = -2.92746 +rotation = -2.95379 node_a = NodePath("..") node_b = NodePath("../../Bone-4") softness = 100.0 [node name="Joint2D-Bone-5-Bone-8" type="PinJoint2D" parent="Butter2/Bone-5"] visible = false -rotation = -2.23219 +rotation = -2.31087 node_a = NodePath("..") node_b = NodePath("../../Bone-8") softness = 100.0 [node name="Joint2D-Bone-5-Bone-9" type="PinJoint2D" parent="Butter2/Bone-5"] visible = false -rotation = -1.55278 +rotation = -1.65736 node_a = NodePath("..") node_b = NodePath("../../Bone-9") softness = 100.0 -[node name="Joint2D-Bone-5-Bone-19" type="PinJoint2D" parent="Butter2/Bone-5"] -visible = false -rotation = -0.977532 -node_a = NodePath("..") -node_b = NodePath("../../Bone-19") -softness = 100.0 - -[node name="Bone-6" parent="Butter2" instance=ExtResource("3_6ern4")] -position = Vector2(55.7376, 28.3423) -mass = 0.05 +[node name="Bone-6" type="RigidBody2D" parent="Butter2" instance=ExtResource("3_6ern4")] +position = Vector2(54, 22.5) +input_pickable = true +mass = 0.0526316 physics_material_override = ExtResource("5_221ya") +script = ExtResource("11_tqnjl") +metadata/idx = 6 metadata/bone_name = &"Bone-6" [node name="CircleShape2D" type="CollisionShape2D" parent="Butter2/Bone-6"] -shape = SubResource("CircleShape2D_hvgye") +shape = SubResource("CircleShape2D_0pn6q") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Butter2/Bone-6"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-6") update_rotation = false update_scale = false +[node name="Joint2D-Bone-6-Bone-10" type="PinJoint2D" parent="Butter2/Bone-6"] +visible = false +rotation = -1.60079 +node_a = NodePath("..") +node_b = NodePath("../../Bone-10") +softness = 100.0 + [node name="Joint2D-Bone-6-Bone-2" type="PinJoint2D" parent="Butter2/Bone-6"] visible = false -rotation = -4.67177 +rotation = 1.32582 node_a = NodePath("..") node_b = NodePath("../../Bone-2") softness = 100.0 [node name="Joint2D-Bone-6-Bone-3" type="PinJoint2D" parent="Butter2/Bone-6"] visible = false -rotation = 0.824017 +rotation = 0.686622 node_a = NodePath("..") node_b = NodePath("../../Bone-3") softness = 100.0 [node name="Joint2D-Bone-6-Bone-7" type="PinJoint2D" parent="Butter2/Bone-6"] visible = false -rotation = 0.0144326 node_a = NodePath("..") node_b = NodePath("../../Bone-7") softness = 100.0 -[node name="Joint2D-Bone-6-Bone-10" type="PinJoint2D" parent="Butter2/Bone-6"] -visible = false -rotation = -2.49098 -node_a = NodePath("..") -node_b = NodePath("../../Bone-10") -softness = 100.0 - [node name="Joint2D-Bone-6-Bone-11" type="PinJoint2D" parent="Butter2/Bone-6"] visible = false -rotation = -1.50208 +rotation = -0.686622 node_a = NodePath("..") node_b = NodePath("../../Bone-11") softness = 100.0 -[node name="Joint2D-Bone-6-Bone-12" type="PinJoint2D" parent="Butter2/Bone-6"] -visible = false -rotation = -0.736969 -node_a = NodePath("..") -node_b = NodePath("../../Bone-12") -softness = 100.0 - -[node name="Bone-7" parent="Butter2" instance=ExtResource("3_6ern4")] -position = Vector2(55.3545, 54.8831) -mass = 0.05 +[node name="Bone-7" type="RigidBody2D" parent="Butter2" instance=ExtResource("3_6ern4")] +position = Vector2(54, 53) +input_pickable = true +mass = 0.0526316 physics_material_override = ExtResource("5_221ya") +script = ExtResource("11_tqnjl") +metadata/idx = 7 metadata/bone_name = &"Bone-7" [node name="CircleShape2D" type="CollisionShape2D" parent="Butter2/Bone-7"] -shape = SubResource("CircleShape2D_hvgye") +shape = SubResource("CircleShape2D_0pn6q") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Butter2/Bone-7"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-7") update_rotation = false update_scale = false [node name="Joint2D-Bone-7-Bone-2" type="PinJoint2D" parent="Butter2/Bone-7"] visible = false -rotation = -3.8423 +rotation = -3.94222 node_a = NodePath("..") node_b = NodePath("../../Bone-2") softness = 100.0 [node name="Joint2D-Bone-7-Bone-3" type="PinJoint2D" parent="Butter2/Bone-7"] visible = false -rotation = -4.60907 +rotation = 1.5708 node_a = NodePath("..") node_b = NodePath("../../Bone-3") softness = 100.0 -[node name="Joint2D-Bone-7-Bone-4" type="PinJoint2D" parent="Butter2/Bone-7"] +[node name="Joint2D-Bone-7-Bone-6" type="PinJoint2D" parent="Butter2/Bone-7"] visible = false -rotation = 0.850593 +rotation = -3.14159 node_a = NodePath("..") -node_b = NodePath("../../Bone-4") +node_b = NodePath("../../Bone-6") softness = 100.0 -[node name="Joint2D-Bone-7-Bone-6" type="PinJoint2D" parent="Butter2/Bone-7"] +[node name="Joint2D-Bone-7-Bone-4" type="PinJoint2D" parent="Butter2/Bone-7"] visible = false -rotation = -3.12716 +rotation = 0.785398 node_a = NodePath("..") -node_b = NodePath("../../Bone-6") +node_b = NodePath("../../Bone-4") softness = 100.0 [node name="Joint2D-Bone-7-Bone-8" type="PinJoint2D" parent="Butter2/Bone-7"] visible = false -rotation = 0.0344938 node_a = NodePath("..") node_b = NodePath("../../Bone-8") softness = 100.0 -[node name="Joint2D-Bone-7-Bone-11" type="PinJoint2D" parent="Butter2/Bone-7"] +[node name="Joint2D-Bone-7-Bone-10" type="PinJoint2D" parent="Butter2/Bone-7"] visible = false -rotation = -2.34037 +rotation = -2.46685 node_a = NodePath("..") -node_b = NodePath("../../Bone-11") +node_b = NodePath("../../Bone-10") softness = 100.0 -[node name="Joint2D-Bone-7-Bone-12" type="PinJoint2D" parent="Butter2/Bone-7"] +[node name="Joint2D-Bone-7-Bone-11" type="PinJoint2D" parent="Butter2/Bone-7"] visible = false -rotation = -1.59133 +rotation = -1.5708 node_a = NodePath("..") -node_b = NodePath("../../Bone-12") +node_b = NodePath("../../Bone-11") softness = 100.0 -[node name="Joint2D-Bone-7-Bone-13" type="PinJoint2D" parent="Butter2/Bone-7"] +[node name="Joint2D-Bone-7-Bone-12" type="PinJoint2D" parent="Butter2/Bone-7"] visible = false -rotation = -0.823625 +rotation = -0.785398 node_a = NodePath("..") -node_b = NodePath("../../Bone-13") +node_b = NodePath("../../Bone-12") softness = 100.0 -[node name="Bone-8" parent="Butter2" instance=ExtResource("3_6ern4")] -position = Vector2(54.5183, 79.1141) -mass = 0.05 +[node name="Bone-8" type="RigidBody2D" parent="Butter2" instance=ExtResource("3_6ern4")] +position = Vector2(54, 78) +input_pickable = true +mass = 0.0526316 physics_material_override = ExtResource("5_221ya") +script = ExtResource("11_tqnjl") +metadata/idx = 8 metadata/bone_name = &"Bone-8" [node name="CircleShape2D" type="CollisionShape2D" parent="Butter2/Bone-8"] -shape = SubResource("CircleShape2D_hvgye") +shape = SubResource("CircleShape2D_0pn6q") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Butter2/Bone-8"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-8") update_rotation = false update_scale = false [node name="Joint2D-Bone-8-Bone-3" type="PinJoint2D" parent="Butter2/Bone-8"] visible = false -rotation = -3.88303 +rotation = -3.92699 node_a = NodePath("..") node_b = NodePath("../../Bone-3") softness = 100.0 [node name="Joint2D-Bone-8-Bone-4" type="PinJoint2D" parent="Butter2/Bone-8"] visible = false -rotation = -4.65531 +rotation = 1.5708 node_a = NodePath("..") node_b = NodePath("../../Bone-4") softness = 100.0 -[node name="Joint2D-Bone-8-Bone-5" type="PinJoint2D" parent="Butter2/Bone-8"] +[node name="Joint2D-Bone-8-Bone-7" type="PinJoint2D" parent="Butter2/Bone-8"] visible = false -rotation = 0.909408 +rotation = -3.14159 node_a = NodePath("..") -node_b = NodePath("../../Bone-5") +node_b = NodePath("../../Bone-7") softness = 100.0 -[node name="Joint2D-Bone-8-Bone-7" type="PinJoint2D" parent="Butter2/Bone-8"] +[node name="Joint2D-Bone-8-Bone-5" type="PinJoint2D" parent="Butter2/Bone-8"] visible = false -rotation = -3.1071 +rotation = 0.830723 node_a = NodePath("..") -node_b = NodePath("../../Bone-7") +node_b = NodePath("../../Bone-5") softness = 100.0 [node name="Joint2D-Bone-8-Bone-9" type="PinJoint2D" parent="Butter2/Bone-8"] visible = false -rotation = 0.0469652 node_a = NodePath("..") node_b = NodePath("../../Bone-9") softness = 100.0 -[node name="Joint2D-Bone-8-Bone-12" type="PinJoint2D" parent="Butter2/Bone-8"] +[node name="Joint2D-Bone-8-Bone-11" type="PinJoint2D" parent="Butter2/Bone-8"] visible = false -rotation = -2.35349 +rotation = -2.35619 node_a = NodePath("..") -node_b = NodePath("../../Bone-12") +node_b = NodePath("../../Bone-11") softness = 100.0 -[node name="Joint2D-Bone-8-Bone-13" type="PinJoint2D" parent="Butter2/Bone-8"] +[node name="Joint2D-Bone-8-Bone-12" type="PinJoint2D" parent="Butter2/Bone-8"] visible = false -rotation = -1.58598 +rotation = -1.5708 node_a = NodePath("..") -node_b = NodePath("../../Bone-13") +node_b = NodePath("../../Bone-12") softness = 100.0 -[node name="Joint2D-Bone-8-Bone-14" type="PinJoint2D" parent="Butter2/Bone-8"] +[node name="Joint2D-Bone-8-Bone-13" type="PinJoint2D" parent="Butter2/Bone-8"] visible = false -rotation = -0.722473 +rotation = -0.69066 node_a = NodePath("..") -node_b = NodePath("../../Bone-14") +node_b = NodePath("../../Bone-13") softness = 100.0 -[node name="Bone-9" parent="Butter2" instance=ExtResource("3_6ern4")] -position = Vector2(53.3725, 103.495) -mass = 0.05 +[node name="Bone-9" type="RigidBody2D" parent="Butter2" instance=ExtResource("3_6ern4")] +position = Vector2(54, 103) +input_pickable = true +mass = 0.0526316 physics_material_override = ExtResource("5_221ya") +script = ExtResource("11_tqnjl") +metadata/idx = 9 metadata/bone_name = &"Bone-9" [node name="CircleShape2D" type="CollisionShape2D" parent="Butter2/Bone-9"] -shape = SubResource("CircleShape2D_hvgye") +shape = SubResource("CircleShape2D_0pn6q") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Butter2/Bone-9"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-9") update_rotation = false update_scale = false [node name="Joint2D-Bone-9-Bone-4" type="PinJoint2D" parent="Butter2/Bone-9"] visible = false -rotation = -3.89046 +rotation = -3.92699 node_a = NodePath("..") node_b = NodePath("../../Bone-4") softness = 100.0 [node name="Joint2D-Bone-9-Bone-5" type="PinJoint2D" parent="Butter2/Bone-9"] visible = false -rotation = -4.69438 +rotation = 1.48424 node_a = NodePath("..") node_b = NodePath("../../Bone-5") softness = 100.0 [node name="Joint2D-Bone-9-Bone-8" type="PinJoint2D" parent="Butter2/Bone-9"] visible = false -rotation = -3.09463 +rotation = -3.14159 node_a = NodePath("..") node_b = NodePath("../../Bone-8") softness = 100.0 -[node name="Joint2D-Bone-9-Bone-13" type="PinJoint2D" parent="Butter2/Bone-9"] +[node name="Joint2D-Bone-9-Bone-18" type="PinJoint2D" parent="Butter2/Bone-9"] visible = false -rotation = -2.3006 node_a = NodePath("..") -node_b = NodePath("../../Bone-13") +node_b = NodePath("../../Bone-18") softness = 100.0 -[node name="Joint2D-Bone-9-Bone-14" type="PinJoint2D" parent="Butter2/Bone-9"] +[node name="Joint2D-Bone-9-Bone-12" type="PinJoint2D" parent="Butter2/Bone-9"] visible = false -rotation = -1.43733 +rotation = -2.35619 node_a = NodePath("..") -node_b = NodePath("../../Bone-14") +node_b = NodePath("../../Bone-12") softness = 100.0 -[node name="Joint2D-Bone-9-Bone-19" type="PinJoint2D" parent="Butter2/Bone-9"] +[node name="Joint2D-Bone-9-Bone-13" type="PinJoint2D" parent="Butter2/Bone-9"] visible = false -rotation = 0.259457 +rotation = -1.3638 node_a = NodePath("..") -node_b = NodePath("../../Bone-19") +node_b = NodePath("../../Bone-13") softness = 100.0 -[node name="Bone-10" parent="Butter2" instance=ExtResource("3_6ern4")] -position = Vector2(69.1836, 10.6773) -mass = 0.05 +[node name="Bone-10" type="RigidBody2D" parent="Butter2" instance=ExtResource("3_6ern4")] +position = Vector2(79, 21.75) +input_pickable = true +mass = 0.0526316 physics_material_override = ExtResource("5_221ya") +script = ExtResource("11_tqnjl") +metadata/idx = 10 metadata/bone_name = &"Bone-10" [node name="CircleShape2D" type="CollisionShape2D" parent="Butter2/Bone-10"] -shape = SubResource("CircleShape2D_hvgye") +shape = SubResource("CircleShape2D_0pn6q") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Butter2/Bone-10"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-10") update_rotation = false update_scale = false [node name="Joint2D-Bone-10-Bone-6" type="PinJoint2D" parent="Butter2/Bone-10"] visible = false -rotation = 0.650612 +rotation = 1.54081 node_a = NodePath("..") node_b = NodePath("../../Bone-6") softness = 100.0 +[node name="Joint2D-Bone-10-Bone-7" type="PinJoint2D" parent="Butter2/Bone-10"] +visible = false +rotation = 0.674741 +node_a = NodePath("..") +node_b = NodePath("../../Bone-7") +softness = 100.0 + [node name="Joint2D-Bone-10-Bone-11" type="PinJoint2D" parent="Butter2/Bone-10"] visible = false -rotation = -0.545454 node_a = NodePath("..") node_b = NodePath("../../Bone-11") softness = 100.0 -[node name="Bone-11" parent="Butter2" instance=ExtResource("3_6ern4")] -position = Vector2(80.9573, 30.078) -mass = 0.05 +[node name="Joint2D-Bone-10-Bone-14" type="PinJoint2D" parent="Butter2/Bone-10"] +visible = false +rotation = -1.2394 +node_a = NodePath("..") +node_b = NodePath("../../Bone-14") +softness = 100.0 + +[node name="Joint2D-Bone-10-Bone-15" type="PinJoint2D" parent="Butter2/Bone-10"] +visible = false +rotation = -0.63965 +node_a = NodePath("..") +node_b = NodePath("../../Bone-15") +softness = 100.0 + +[node name="Bone-11" type="RigidBody2D" parent="Butter2" instance=ExtResource("3_6ern4")] +position = Vector2(79, 53) +input_pickable = true +mass = 0.0526316 physics_material_override = ExtResource("5_221ya") +script = ExtResource("11_tqnjl") +metadata/idx = 11 metadata/bone_name = &"Bone-11" [node name="CircleShape2D" type="CollisionShape2D" parent="Butter2/Bone-11"] -shape = SubResource("CircleShape2D_hvgye") +shape = SubResource("CircleShape2D_0pn6q") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Butter2/Bone-11"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-11") update_rotation = false update_scale = false [node name="Joint2D-Bone-11-Bone-6" type="PinJoint2D" parent="Butter2/Bone-11"] visible = false -rotation = -4.64367 +rotation = -3.82821 node_a = NodePath("..") node_b = NodePath("../../Bone-6") softness = 100.0 [node name="Joint2D-Bone-11-Bone-7" type="PinJoint2D" parent="Butter2/Bone-11"] visible = false -rotation = 0.80122 +rotation = 1.5708 node_a = NodePath("..") node_b = NodePath("../../Bone-7") softness = 100.0 [node name="Joint2D-Bone-11-Bone-10" type="PinJoint2D" parent="Butter2/Bone-11"] visible = false -rotation = -3.68705 +rotation = -3.14159 node_a = NodePath("..") node_b = NodePath("../../Bone-10") softness = 100.0 +[node name="Joint2D-Bone-11-Bone-8" type="PinJoint2D" parent="Butter2/Bone-11"] +visible = false +rotation = 0.785398 +node_a = NodePath("..") +node_b = NodePath("../../Bone-8") +softness = 100.0 + [node name="Joint2D-Bone-11-Bone-12" type="PinJoint2D" parent="Butter2/Bone-11"] visible = false -rotation = 0.0649149 node_a = NodePath("..") node_b = NodePath("../../Bone-12") softness = 100.0 +[node name="Joint2D-Bone-11-Bone-14" type="PinJoint2D" parent="Butter2/Bone-11"] +visible = false +rotation = -2.35619 +node_a = NodePath("..") +node_b = NodePath("../../Bone-14") +softness = 100.0 + [node name="Joint2D-Bone-11-Bone-15" type="PinJoint2D" parent="Butter2/Bone-11"] visible = false -rotation = -1.51807 +rotation = -1.5708 node_a = NodePath("..") node_b = NodePath("../../Bone-15") softness = 100.0 [node name="Joint2D-Bone-11-Bone-16" type="PinJoint2D" parent="Butter2/Bone-11"] visible = false -rotation = -0.749219 +rotation = -0.770171 node_a = NodePath("..") node_b = NodePath("../../Bone-16") softness = 100.0 -[node name="Bone-12" parent="Butter2" instance=ExtResource("3_6ern4")] -position = Vector2(79.3768, 54.3897) -mass = 0.05 +[node name="Bone-12" type="RigidBody2D" parent="Butter2" instance=ExtResource("3_6ern4")] +position = Vector2(79, 78) +input_pickable = true +mass = 0.0526316 physics_material_override = ExtResource("5_221ya") +script = ExtResource("11_tqnjl") +metadata/idx = 12 metadata/bone_name = &"Bone-12" [node name="CircleShape2D" type="CollisionShape2D" parent="Butter2/Bone-12"] -shape = SubResource("CircleShape2D_hvgye") +shape = SubResource("CircleShape2D_0pn6q") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Butter2/Bone-12"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-12") update_rotation = false update_scale = false -[node name="Joint2D-Bone-12-Bone-6" type="PinJoint2D" parent="Butter2/Bone-12"] -visible = false -rotation = -3.87856 -node_a = NodePath("..") -node_b = NodePath("../../Bone-6") -softness = 100.0 - [node name="Joint2D-Bone-12-Bone-7" type="PinJoint2D" parent="Butter2/Bone-12"] visible = false -rotation = 1.55026 +rotation = -3.92699 node_a = NodePath("..") node_b = NodePath("../../Bone-7") softness = 100.0 [node name="Joint2D-Bone-12-Bone-8" type="PinJoint2D" parent="Butter2/Bone-12"] visible = false -rotation = 0.788103 +rotation = 1.5708 node_a = NodePath("..") node_b = NodePath("../../Bone-8") softness = 100.0 [node name="Joint2D-Bone-12-Bone-11" type="PinJoint2D" parent="Butter2/Bone-12"] visible = false -rotation = -3.07668 +rotation = -3.14159 node_a = NodePath("..") node_b = NodePath("../../Bone-11") softness = 100.0 +[node name="Joint2D-Bone-12-Bone-9" type="PinJoint2D" parent="Butter2/Bone-12"] +visible = false +rotation = 0.785398 +node_a = NodePath("..") +node_b = NodePath("../../Bone-9") +softness = 100.0 + [node name="Joint2D-Bone-12-Bone-13" type="PinJoint2D" parent="Butter2/Bone-12"] visible = false -rotation = -0.0698014 node_a = NodePath("..") node_b = NodePath("../../Bone-13") softness = 100.0 [node name="Joint2D-Bone-12-Bone-15" type="PinJoint2D" parent="Butter2/Bone-12"] visible = false -rotation = -2.35161 +rotation = -2.39245 node_a = NodePath("..") node_b = NodePath("../../Bone-15") softness = 100.0 [node name="Joint2D-Bone-12-Bone-16" type="PinJoint2D" parent="Butter2/Bone-12"] visible = false -rotation = -1.56748 +rotation = -1.5708 node_a = NodePath("..") node_b = NodePath("../../Bone-16") softness = 100.0 [node name="Joint2D-Bone-12-Bone-17" type="PinJoint2D" parent="Butter2/Bone-12"] visible = false -rotation = -0.803699 +rotation = -0.785398 node_a = NodePath("..") node_b = NodePath("../../Bone-17") softness = 100.0 -[node name="Bone-13" parent="Butter2" instance=ExtResource("3_6ern4")] -position = Vector2(81.0773, 78.7108) -mass = 0.05 +[node name="Bone-13" type="RigidBody2D" parent="Butter2" instance=ExtResource("3_6ern4")] +position = Vector2(79, 108.25) +input_pickable = true +mass = 0.0526316 physics_material_override = ExtResource("5_221ya") +script = ExtResource("11_tqnjl") +metadata/idx = 13 metadata/bone_name = &"Bone-13" [node name="CircleShape2D" type="CollisionShape2D" parent="Butter2/Bone-13"] -shape = SubResource("CircleShape2D_hvgye") +shape = SubResource("CircleShape2D_0pn6q") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Butter2/Bone-13"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-13") update_rotation = false update_scale = false -[node name="Joint2D-Bone-13-Bone-7" type="PinJoint2D" parent="Butter2/Bone-13"] +[node name="Joint2D-Bone-13-Bone-18" type="PinJoint2D" parent="Butter2/Bone-13"] visible = false -rotation = -3.96522 +rotation = 1.10715 node_a = NodePath("..") -node_b = NodePath("../../Bone-7") +node_b = NodePath("../../Bone-18") +softness = 100.0 + +[node name="Joint2D-Bone-13-Bone-17" type="PinJoint2D" parent="Butter2/Bone-13"] +visible = false +rotation = -1.81335 +node_a = NodePath("..") +node_b = NodePath("../../Bone-17") softness = 100.0 [node name="Joint2D-Bone-13-Bone-8" type="PinJoint2D" parent="Butter2/Bone-13"] visible = false -rotation = 1.55561 +rotation = -3.83225 node_a = NodePath("..") node_b = NodePath("../../Bone-8") softness = 100.0 [node name="Joint2D-Bone-13-Bone-9" type="PinJoint2D" parent="Butter2/Bone-13"] visible = false -rotation = 0.840993 +rotation = -4.5054 node_a = NodePath("..") node_b = NodePath("../../Bone-9") softness = 100.0 [node name="Joint2D-Bone-13-Bone-12" type="PinJoint2D" parent="Butter2/Bone-13"] visible = false -rotation = -3.21139 +rotation = -3.14159 node_a = NodePath("..") node_b = NodePath("../../Bone-12") softness = 100.0 -[node name="Joint2D-Bone-13-Bone-14" type="PinJoint2D" parent="Butter2/Bone-13"] -visible = false -rotation = 0.0717928 -node_a = NodePath("..") -node_b = NodePath("../../Bone-14") -softness = 100.0 - [node name="Joint2D-Bone-13-Bone-16" type="PinJoint2D" parent="Butter2/Bone-13"] visible = false -rotation = -2.3919 +rotation = -2.46584 node_a = NodePath("..") node_b = NodePath("../../Bone-16") softness = 100.0 -[node name="Joint2D-Bone-13-Bone-17" type="PinJoint2D" parent="Butter2/Bone-13"] -visible = false -rotation = -1.52834 -node_a = NodePath("..") -node_b = NodePath("../../Bone-17") -softness = 100.0 - -[node name="Joint2D-Bone-13-Bone-18" type="PinJoint2D" parent="Butter2/Bone-13"] -visible = false -rotation = -0.71218 -node_a = NodePath("..") -node_b = NodePath("../../Bone-18") -softness = 100.0 - -[node name="Bone-14" parent="Butter2" instance=ExtResource("3_6ern4")] -position = Vector2(79.047, 106.942) -mass = 0.05 +[node name="Bone-14" type="RigidBody2D" parent="Butter2" instance=ExtResource("3_6ern4")] +position = Vector2(102.25, 29.75) +input_pickable = true +mass = 0.0526316 physics_material_override = ExtResource("5_221ya") +script = ExtResource("11_tqnjl") +metadata/idx = 14 metadata/bone_name = &"Bone-14" [node name="CircleShape2D" type="CollisionShape2D" parent="Butter2/Bone-14"] -shape = SubResource("CircleShape2D_hvgye") +shape = SubResource("CircleShape2D_0pn6q") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Butter2/Bone-14"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-14") update_rotation = false update_scale = false -[node name="Joint2D-Bone-14-Bone-8" type="PinJoint2D" parent="Butter2/Bone-14"] +[node name="Joint2D-Bone-14-Bone-10" type="PinJoint2D" parent="Butter2/Bone-14"] visible = false -rotation = -3.86407 +rotation = -4.38099 node_a = NodePath("..") -node_b = NodePath("../../Bone-8") +node_b = NodePath("../../Bone-10") softness = 100.0 -[node name="Joint2D-Bone-14-Bone-9" type="PinJoint2D" parent="Butter2/Bone-14"] +[node name="Joint2D-Bone-14-Bone-11" type="PinJoint2D" parent="Butter2/Bone-14"] visible = false -rotation = -4.57892 +rotation = 0.785398 node_a = NodePath("..") -node_b = NodePath("../../Bone-9") +node_b = NodePath("../../Bone-11") softness = 100.0 -[node name="Joint2D-Bone-14-Bone-13" type="PinJoint2D" parent="Butter2/Bone-14"] +[node name="Joint2D-Bone-14-Bone-15" type="PinJoint2D" parent="Butter2/Bone-14"] visible = false -rotation = -3.0698 node_a = NodePath("..") -node_b = NodePath("../../Bone-13") +node_b = NodePath("../../Bone-15") softness = 100.0 -[node name="Joint2D-Bone-14-Bone-17" type="PinJoint2D" parent="Butter2/Bone-14"] -visible = false -rotation = -2.36628 -node_a = NodePath("..") -node_b = NodePath("../../Bone-17") -softness = 100.0 +[node name="Bone-15" type="RigidBody2D" parent="Butter2" instance=ExtResource("3_6ern4")] +position = Vector2(102.25, 53) +input_pickable = true +mass = 0.0526316 +physics_material_override = ExtResource("5_221ya") +script = ExtResource("11_tqnjl") +metadata/idx = 15 +metadata/bone_name = &"Bone-15" -[node name="Joint2D-Bone-14-Bone-18" type="PinJoint2D" parent="Butter2/Bone-14"] +[node name="CircleShape2D" type="CollisionShape2D" parent="Butter2/Bone-15"] +shape = SubResource("CircleShape2D_0pn6q") + +[node name="RemoteTransform2D" type="RemoteTransform2D" parent="Butter2/Bone-15"] visible = false -rotation = -1.72662 -node_a = NodePath("..") -node_b = NodePath("../../Bone-18") -softness = 100.0 +remote_path = NodePath("../../Skeleton2D/Bone-15") +update_rotation = false +update_scale = false -[node name="Joint2D-Bone-14-Bone-19" type="PinJoint2D" parent="Butter2/Bone-14"] +[node name="Joint2D-Bone-15-Bone-10" type="PinJoint2D" parent="Butter2/Bone-15"] visible = false -rotation = 1.16309 +rotation = -3.78124 node_a = NodePath("..") -node_b = NodePath("../../Bone-19") +node_b = NodePath("../../Bone-10") softness = 100.0 -[node name="Bone-15" parent="Butter2" instance=ExtResource("3_6ern4")] -position = Vector2(102.751, 31.2282) -mass = 0.05 -physics_material_override = ExtResource("5_221ya") -metadata/bone_name = &"Bone-15" - -[node name="CircleShape2D" type="CollisionShape2D" parent="Butter2/Bone-15"] -shape = SubResource("CircleShape2D_hvgye") - -[node name="RemoteTransform2D" type="RemoteTransform2D" parent="Butter2/Bone-15"] -remote_path = NodePath("../../Skeleton2D/Bone-15") -update_rotation = false -update_scale = false - [node name="Joint2D-Bone-15-Bone-11" type="PinJoint2D" parent="Butter2/Bone-15"] visible = false -rotation = -4.65966 +rotation = 1.5708 node_a = NodePath("..") node_b = NodePath("../../Bone-11") softness = 100.0 +[node name="Joint2D-Bone-15-Bone-14" type="PinJoint2D" parent="Butter2/Bone-15"] +visible = false +rotation = -3.14159 +node_a = NodePath("..") +node_b = NodePath("../../Bone-14") +softness = 100.0 + [node name="Joint2D-Bone-15-Bone-12" type="PinJoint2D" parent="Butter2/Bone-15"] visible = false -rotation = 0.789978 +rotation = 0.749145 node_a = NodePath("..") node_b = NodePath("../../Bone-12") softness = 100.0 [node name="Joint2D-Bone-15-Bone-16" type="PinJoint2D" parent="Butter2/Bone-15"] visible = false -rotation = -0.0384482 +rotation = -0.0399787 node_a = NodePath("..") node_b = NodePath("../../Bone-16") softness = 100.0 -[node name="Bone-16" parent="Butter2" instance=ExtResource("3_6ern4")] -position = Vector2(103.646, 54.4703) -mass = 0.05 +[node name="Bone-16" type="RigidBody2D" parent="Butter2" instance=ExtResource("3_6ern4")] +position = Vector2(103.25, 78) +input_pickable = true +mass = 0.0526316 physics_material_override = ExtResource("5_221ya") +script = ExtResource("11_tqnjl") +metadata/idx = 16 metadata/bone_name = &"Bone-16" [node name="CircleShape2D" type="CollisionShape2D" parent="Butter2/Bone-16"] -shape = SubResource("CircleShape2D_hvgye") +shape = SubResource("CircleShape2D_0pn6q") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Butter2/Bone-16"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-16") update_rotation = false update_scale = false [node name="Joint2D-Bone-16-Bone-11" type="PinJoint2D" parent="Butter2/Bone-16"] visible = false -rotation = -3.89081 +rotation = -3.91176 node_a = NodePath("..") node_b = NodePath("../../Bone-11") softness = 100.0 [node name="Joint2D-Bone-16-Bone-12" type="PinJoint2D" parent="Butter2/Bone-16"] visible = false -rotation = -4.70907 +rotation = 1.5708 node_a = NodePath("..") node_b = NodePath("../../Bone-12") softness = 100.0 -[node name="Joint2D-Bone-16-Bone-13" type="PinJoint2D" parent="Butter2/Bone-16"] +[node name="Joint2D-Bone-16-Bone-15" type="PinJoint2D" parent="Butter2/Bone-16"] visible = false -rotation = 0.749689 +rotation = -3.18157 node_a = NodePath("..") -node_b = NodePath("../../Bone-13") +node_b = NodePath("../../Bone-15") softness = 100.0 -[node name="Joint2D-Bone-16-Bone-15" type="PinJoint2D" parent="Butter2/Bone-16"] +[node name="Joint2D-Bone-16-Bone-13" type="PinJoint2D" parent="Butter2/Bone-16"] visible = false -rotation = -3.18004 +rotation = 0.675748 node_a = NodePath("..") -node_b = NodePath("../../Bone-15") +node_b = NodePath("../../Bone-13") softness = 100.0 [node name="Joint2D-Bone-16-Bone-17" type="PinJoint2D" parent="Butter2/Bone-16"] visible = false -rotation = -0.0806511 node_a = NodePath("..") node_b = NodePath("../../Bone-17") softness = 100.0 -[node name="Bone-17" parent="Butter2" instance=ExtResource("3_6ern4")] -position = Vector2(105.689, 79.7563) -mass = 0.05 +[node name="Bone-17" type="RigidBody2D" parent="Butter2" instance=ExtResource("3_6ern4")] +position = Vector2(103.25, 102.25) +input_pickable = true +mass = 0.0526316 physics_material_override = ExtResource("5_221ya") +script = ExtResource("11_tqnjl") +metadata/idx = 17 metadata/bone_name = &"Bone-17" [node name="CircleShape2D" type="CollisionShape2D" parent="Butter2/Bone-17"] -shape = SubResource("CircleShape2D_hvgye") +shape = SubResource("CircleShape2D_0pn6q") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Butter2/Bone-17"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-17") update_rotation = false update_scale = false -[node name="Joint2D-Bone-17-Bone-12" type="PinJoint2D" parent="Butter2/Bone-17"] -visible = false -rotation = -3.94529 -node_a = NodePath("..") -node_b = NodePath("../../Bone-12") -softness = 100.0 - [node name="Joint2D-Bone-17-Bone-13" type="PinJoint2D" parent="Butter2/Bone-17"] visible = false -rotation = -4.66994 +rotation = 1.32824 node_a = NodePath("..") node_b = NodePath("../../Bone-13") softness = 100.0 -[node name="Joint2D-Bone-17-Bone-14" type="PinJoint2D" parent="Butter2/Bone-17"] +[node name="Joint2D-Bone-17-Bone-12" type="PinJoint2D" parent="Butter2/Bone-17"] visible = false -rotation = 0.775311 +rotation = -3.92699 node_a = NodePath("..") -node_b = NodePath("../../Bone-14") +node_b = NodePath("../../Bone-12") softness = 100.0 [node name="Joint2D-Bone-17-Bone-16" type="PinJoint2D" parent="Butter2/Bone-17"] visible = false -rotation = -3.22224 +rotation = -3.14159 node_a = NodePath("..") node_b = NodePath("../../Bone-16") softness = 100.0 -[node name="Joint2D-Bone-17-Bone-18" type="PinJoint2D" parent="Butter2/Bone-17"] -visible = false -rotation = 0.14319 -node_a = NodePath("..") -node_b = NodePath("../../Bone-18") -softness = 100.0 - -[node name="Bone-18" parent="Butter2" instance=ExtResource("3_6ern4")] -position = Vector2(102.296, 103.289) -mass = 0.05 +[node name="Bone-18" type="RigidBody2D" parent="Butter2" instance=ExtResource("3_6ern4")] +position = Vector2(54, 120.75) +input_pickable = true +mass = 0.0526316 physics_material_override = ExtResource("5_221ya") +script = ExtResource("11_tqnjl") +metadata/idx = 18 metadata/bone_name = &"Bone-18" [node name="CircleShape2D" type="CollisionShape2D" parent="Butter2/Bone-18"] -shape = SubResource("CircleShape2D_hvgye") +shape = SubResource("CircleShape2D_0pn6q") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Butter2/Bone-18"] -remote_path = NodePath("../../Skeleton2D/Bone-18") -update_rotation = false -update_scale = false - -[node name="Joint2D-Bone-18-Bone-13" type="PinJoint2D" parent="Butter2/Bone-18"] -visible = false -rotation = -3.85377 -node_a = NodePath("..") -node_b = NodePath("../../Bone-13") -softness = 100.0 - -[node name="Joint2D-Bone-18-Bone-14" type="PinJoint2D" parent="Butter2/Bone-18"] visible = false -rotation = 1.41497 -node_a = NodePath("..") -node_b = NodePath("../../Bone-14") -softness = 100.0 - -[node name="Joint2D-Bone-18-Bone-17" type="PinJoint2D" parent="Butter2/Bone-18"] -visible = false -rotation = -2.9984 -node_a = NodePath("..") -node_b = NodePath("../../Bone-17") -softness = 100.0 - -[node name="Bone-19" parent="Butter2" instance=ExtResource("3_6ern4")] -position = Vector2(49.0143, 119.913) -mass = 0.05 -physics_material_override = ExtResource("5_221ya") -metadata/bone_name = &"Bone-19" - -[node name="CircleShape2D" type="CollisionShape2D" parent="Butter2/Bone-19"] -shape = SubResource("CircleShape2D_hvgye") - -[node name="RemoteTransform2D" type="RemoteTransform2D" parent="Butter2/Bone-19"] -remote_path = NodePath("../../Skeleton2D/Bone-19") +remote_path = NodePath("../../Skeleton2D/Bone-18") update_rotation = false update_scale = false -[node name="Joint2D-Bone-19-Bone-5" type="PinJoint2D" parent="Butter2/Bone-19"] +[node name="Joint2D-Bone-18-Bone-5" type="PinJoint2D" parent="Butter2/Bone-18"] visible = false -rotation = -4.11912 +rotation = -4.24874 node_a = NodePath("..") node_b = NodePath("../../Bone-5") softness = 100.0 -[node name="Joint2D-Bone-19-Bone-9" type="PinJoint2D" parent="Butter2/Bone-19"] +[node name="Joint2D-Bone-18-Bone-13" type="PinJoint2D" parent="Butter2/Bone-18"] visible = false -rotation = -2.88214 +rotation = -2.03444 node_a = NodePath("..") -node_b = NodePath("../../Bone-9") +node_b = NodePath("../../Bone-13") softness = 100.0 -[node name="Joint2D-Bone-19-Bone-14" type="PinJoint2D" parent="Butter2/Bone-19"] +[node name="Joint2D-Bone-18-Bone-9" type="PinJoint2D" parent="Butter2/Bone-18"] visible = false -rotation = -1.9785 +rotation = -3.14159 node_a = NodePath("..") -node_b = NodePath("../../Bone-14") +node_b = NodePath("../../Bone-9") softness = 100.0 [node name="Butter3" type="Polygon2D" parent="."] @@ -13530,1285 +14058,1337 @@ z_index = 10 position = Vector2(315, -1) texture = ExtResource("4_xackp") skeleton = NodePath("Skeleton2D") -polygon = PackedVector2Array(70, 4, 67, 4, 65, 6, 65, 7, 61, 7, 60, 8, 60, 9, 58, 10, 55, 10, 53, 12, 51, 12, 49, 15, 44, 15, 39, 19, 34, 19, 29, 23, 24, 23, 22, 25, 22, 26, 14, 30, 14, 31, 10, 31, 6, 34, 4, 34, 5, 37, 6, 37, 6, 42, 7, 42, 6, 99, 6, 105, 11, 108, 11, 109, 14, 110, 18, 110, 22, 113, 22, 114, 26, 114, 30, 117, 30, 118, 36, 118, 42, 121, 42, 122, 46, 122, 47, 123, 47, 124, 51, 125, 51, 126, 67, 126, 70, 122, 76, 122, 78, 119, 78, 118, 83, 118, 88, 114, 92, 114, 95, 111, 95, 110, 98, 109, 100, 109, 102, 107, 102, 106, 105, 106, 106, 105, 106, 104, 110, 102, 113, 102, 114, 100, 115, 100, 115, 87, 113, 83, 113, 35, 110, 35, 109, 34, 109, 31, 106, 31, 105, 30, 105, 28, 103, 28, 93, 19, 90, 19, 89, 18, 89, 15, 85, 13, 85, 11, 82, 11, 74, 4, 74, 3, 70, 3, 16.404, 42.2231, 17.2099, 64.8417, 14.9926, 67.4763, 6.56298, 66.9104, 7, 42, 6, 42, 6, 40.8541, 19.9638, 39.1868, 16.404, 42.2231, 6, 40.8541, 6, 37, 5, 37, 4, 34, 6, 34, 10, 31, 14, 31, 14, 30, 19.1198, 27.4401, 14.9926, 67.4763, 16.6942, 88.6245, 14.8609, 90.573, 6.15233, 90.317, 6.56298, 66.9104, 41.8946, 39.7678, 19.9638, 39.1868, 19.1198, 27.4401, 22, 26, 22, 25, 24, 23, 29, 23, 34, 19, 39, 19, 44, 15, 45.1977, 15, 41.8946, 39.7678, 43.4228, 41.3806, 42.0191, 65.3034, 17.2099, 64.8417, 16.404, 42.2231, 19.9638, 39.1868, 42.0191, 65.3034, 43.7593, 67.3959, 39.9293, 90.513, 16.6942, 88.6245, 14.9926, 67.4763, 17.2099, 64.8417, 39.9293, 90.513, 40.0064, 90.6062, 41.7542, 116.383, 40.9418, 117.302, 29.7451, 116.809, 26, 114, 22, 114, 22, 113, 18, 110, 14.0972, 110, 14.8609, 90.573, 16.6942, 88.6245, 14.8609, 90.573, 14.0972, 110, 14, 110, 11, 109, 11, 108, 6, 105, 6, 99, 6.15233, 90.317, 69.5805, 18.3546, 67.0739, 41.8496, 66.534, 42.37, 43.4228, 41.3806, 41.8946, 39.7678, 45.2666, 14.4835, 65.4613, 14.3145, 66.534, 42.37, 68.6898, 66.9299, 67.4574, 68.3857, 43.7593, 67.3959, 42.0191, 65.3034, 43.4228, 41.3806, 67.4574, 68.3857, 69.1074, 88.2666, 66.7385, 90.8323, 40.0064, 90.6062, 39.9293, 90.513, 43.7593, 67.3959, 66.7385, 90.8323, 65.1923, 113.826, 41.7542, 116.383, 40.0064, 90.6062, 74, 4, 82, 11, 85, 11, 85, 13, 89, 15, 89, 17.8885, 69.5805, 18.3546, 65.4613, 14.3145, 67.6064, 4, 70, 4, 70, 3, 74, 3, 65.4613, 14.3145, 49.3672, 14.4492, 51, 12, 53, 12, 55, 10, 58, 10, 60, 9, 60, 8, 61, 7, 65, 7, 65, 6, 67, 4, 67.6064, 4, 94.8406, 40.0048, 92.2197, 42.3484, 67.0739, 41.8496, 69.5805, 18.3546, 92.3703, 17.8076, 92.2197, 42.3484, 89.726, 64.694, 68.6898, 66.9299, 66.534, 42.37, 67.0739, 41.8496, 94.6971, 68.9358, 93.0974, 92.5784, 92.9017, 92.7277, 69.1074, 88.2666, 67.4574, 68.3857, 68.6898, 66.9299, 89.726, 64.694, 92.9017, 92.7277, 89.0792, 117.303, 68.2836, 116.274, 65.1923, 113.826, 66.7385, 90.8323, 69.1074, 88.2666, 84.175, 117.06, 83, 118, 78, 118, 78, 119, 76, 122, 70, 122, 67.2874, 125.617, 68.2836, 116.274, 103, 28, 105, 28, 105, 30, 106, 31, 109, 31, 109, 34, 110, 35, 113, 35, 113, 43.4565, 94.8406, 40.0048, 92.503, 19, 93, 19, 113.848, 43.6177, 117.565, 63.6165, 115.747, 65.8505, 94.6971, 68.9358, 89.726, 64.694, 92.2197, 42.3484, 94.8406, 40.0048, 118.281, 89.2678, 114.613, 93.6621, 93.0974, 92.5784, 94.6971, 68.9358, 115.747, 65.8505, 114.613, 93.6621, 115, 95.2133, 115, 100, 114, 100, 113, 102, 110, 102, 106, 104, 106, 105, 105, 106, 102, 106, 102, 107, 100, 109, 98, 109, 95, 110, 95, 111, 92, 114, 89.5929, 114, 92.9017, 92.7277, 93.0974, 92.5784, 115, 95.2133, 114.613, 93.6621, 115, 93.1981, 68.2836, 116.274, 67.2874, 125.617, 67, 126, 51, 126, 51, 125, 47, 124, 47, 123, 46, 122, 42, 122, 42, 121, 41.1336, 120.567, 40.9418, 117.302, 41.7542, 116.383, 65.1923, 113.826, 40.9418, 117.302, 41.1336, 120.567, 36, 118, 30, 118, 30, 117, 29.7451, 116.809) -polygons = [PackedInt32Array(88, 89, 90), PackedInt32Array(90, 91, 92), PackedInt32Array(92, 93, 94), PackedInt32Array(88, 90, 92), PackedInt32Array(92, 94, 88), PackedInt32Array(105, 95, 96), PackedInt32Array(96, 97, 98), PackedInt32Array(98, 99, 100), PackedInt32Array(101, 102, 103), PackedInt32Array(103, 104, 105), PackedInt32Array(105, 96, 98), PackedInt32Array(98, 100, 101), PackedInt32Array(103, 105, 98), PackedInt32Array(98, 101, 103), PackedInt32Array(110, 106, 107), PackedInt32Array(107, 108, 109), PackedInt32Array(109, 110, 107), PackedInt32Array(121, 111, 112), PackedInt32Array(112, 113, 114), PackedInt32Array(114, 115, 116), PackedInt32Array(117, 118, 119), PackedInt32Array(119, 120, 121), PackedInt32Array(112, 114, 116), PackedInt32Array(119, 121, 112), PackedInt32Array(112, 116, 117), PackedInt32Array(117, 119, 112), PackedInt32Array(127, 122, 123), PackedInt32Array(123, 124, 125), PackedInt32Array(125, 126, 127), PackedInt32Array(127, 123, 125), PackedInt32Array(133, 128, 129), PackedInt32Array(129, 130, 131), PackedInt32Array(131, 132, 133), PackedInt32Array(133, 129, 131), PackedInt32Array(145, 134, 135), PackedInt32Array(135, 136, 137), PackedInt32Array(137, 138, 139), PackedInt32Array(139, 140, 141), PackedInt32Array(142, 143, 144), PackedInt32Array(144, 145, 135), PackedInt32Array(135, 137, 139), PackedInt32Array(139, 141, 142), PackedInt32Array(142, 144, 135), PackedInt32Array(135, 139, 142), PackedInt32Array(153, 146, 147), PackedInt32Array(147, 148, 149), PackedInt32Array(150, 151, 152), PackedInt32Array(152, 153, 147), PackedInt32Array(147, 149, 150), PackedInt32Array(150, 152, 147), PackedInt32Array(160, 154, 155), PackedInt32Array(155, 156, 157), PackedInt32Array(157, 158, 159), PackedInt32Array(159, 160, 155), PackedInt32Array(155, 157, 159), PackedInt32Array(166, 161, 162), PackedInt32Array(162, 163, 164), PackedInt32Array(164, 165, 166), PackedInt32Array(166, 162, 164), PackedInt32Array(172, 167, 168), PackedInt32Array(168, 169, 170), PackedInt32Array(170, 171, 172), PackedInt32Array(172, 168, 170), PackedInt32Array(176, 173, 174), PackedInt32Array(174, 175, 176), PackedInt32Array(178, 179, 180), PackedInt32Array(180, 181, 182), PackedInt32Array(182, 183, 184), PackedInt32Array(184, 185, 186), PackedInt32Array(186, 187, 188), PackedInt32Array(178, 180, 182), PackedInt32Array(182, 184, 186), PackedInt32Array(186, 188, 177), PackedInt32Array(177, 178, 182), PackedInt32Array(182, 186, 177), PackedInt32Array(189, 190, 191), PackedInt32Array(192, 193, 194), PackedInt32Array(195, 196, 197), PackedInt32Array(198, 199, 200), PackedInt32Array(200, 201, 189), PackedInt32Array(189, 191, 192), PackedInt32Array(195, 197, 198), PackedInt32Array(198, 200, 189), PackedInt32Array(189, 192, 194), PackedInt32Array(194, 195, 198), PackedInt32Array(198, 189, 194), PackedInt32Array(206, 202, 203), PackedInt32Array(203, 204, 205), PackedInt32Array(205, 206, 203), PackedInt32Array(211, 207, 208), PackedInt32Array(208, 209, 210), PackedInt32Array(210, 211, 208), PackedInt32Array(218, 212, 213), PackedInt32Array(213, 214, 215), PackedInt32Array(215, 216, 217), PackedInt32Array(217, 218, 213), PackedInt32Array(213, 215, 217), PackedInt32Array(224, 219, 220), PackedInt32Array(220, 221, 222), PackedInt32Array(222, 223, 224), PackedInt32Array(224, 220, 222), PackedInt32Array(232, 225, 226), PackedInt32Array(227, 228, 229), PackedInt32Array(230, 231, 232), PackedInt32Array(232, 226, 227), PackedInt32Array(227, 229, 230), PackedInt32Array(230, 232, 227), PackedInt32Array(233, 234, 235), PackedInt32Array(236, 237, 238), PackedInt32Array(239, 240, 241), PackedInt32Array(241, 242, 243), PackedInt32Array(243, 244, 233), PackedInt32Array(238, 239, 241), PackedInt32Array(241, 243, 233), PackedInt32Array(236, 238, 241), PackedInt32Array(241, 233, 235), PackedInt32Array(235, 236, 241), PackedInt32Array(251, 245, 246), PackedInt32Array(246, 247, 248), PackedInt32Array(248, 249, 250), PackedInt32Array(250, 251, 246), PackedInt32Array(246, 248, 250), PackedInt32Array(256, 252, 253), PackedInt32Array(253, 254, 255), PackedInt32Array(255, 256, 253), PackedInt32Array(275, 257, 258), PackedInt32Array(258, 259, 260), PackedInt32Array(260, 261, 262), PackedInt32Array(263, 264, 265), PackedInt32Array(266, 267, 268), PackedInt32Array(270, 271, 272), PackedInt32Array(272, 273, 274), PackedInt32Array(274, 275, 258), PackedInt32Array(258, 260, 262), PackedInt32Array(263, 265, 266), PackedInt32Array(266, 268, 269), PackedInt32Array(270, 272, 274), PackedInt32Array(274, 258, 262), PackedInt32Array(266, 269, 270), PackedInt32Array(274, 262, 263), PackedInt32Array(266, 270, 274), PackedInt32Array(274, 263, 266), PackedInt32Array(278, 276, 277), PackedInt32Array(292, 279, 280), PackedInt32Array(280, 281, 282), PackedInt32Array(283, 284, 285), PackedInt32Array(286, 287, 288), PackedInt32Array(288, 289, 290), PackedInt32Array(290, 291, 292), PackedInt32Array(292, 280, 282), PackedInt32Array(283, 285, 286), PackedInt32Array(286, 288, 290), PackedInt32Array(292, 282, 283), PackedInt32Array(283, 286, 290), PackedInt32Array(290, 292, 283), PackedInt32Array(293, 294, 295), PackedInt32Array(295, 296, 297), PackedInt32Array(297, 298, 293), PackedInt32Array(293, 295, 297)] -bones = ["Bone-0", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 1, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 1, 0.7, 0.7, 0, 0, 0, 0.7, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-1", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-2", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 1, 0.7, 0.7, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-3", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-4", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-5", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 1, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0.7, 0, 0.7, 0, 0.7, 0.7), "Bone-6", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-7", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-8", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-9", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0), "Bone-10", PackedFloat32Array(0.7, 0.7, 0, 0.7, 0.7, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0.7, 0.7, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 1, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 1, 0.7, 0.7, 1, 0.7, 1, 1, 1, 1, 0.7, 0.7, 1, 0.7, 0.7, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-11", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-12", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-13", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-14", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 1, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0), "Bone-15", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 1, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-16", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-17", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-18", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0.7, 0.7, 1, 0.7, 1, 0.7, 0.7, 0.7, 0.7, 0.7, 1, 0.7, 0.7, 0.7, 1, 1, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-19", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7)] -internal_vertex_count = 211 +polygon = PackedVector2Array(70, 4, 67, 4, 65, 6, 65, 7, 61, 7, 60, 8, 60, 9, 58, 10, 55, 10, 53, 12, 51, 12, 49, 15, 44, 15, 39, 19, 34, 19, 29, 23, 24, 23, 22, 25, 22, 26, 14, 30, 14, 31, 10, 31, 6, 34, 4, 34, 5, 37, 6, 37, 6, 42, 7, 42, 6, 99, 6, 105, 11, 108, 11, 109, 14, 110, 18, 110, 22, 113, 22, 114, 26, 114, 30, 117, 30, 118, 36, 118, 42, 121, 42, 122, 46, 122, 47, 123, 47, 124, 51, 125, 51, 126, 67, 126, 70, 122, 76, 122, 78, 119, 78, 118, 83, 118, 88, 114, 92, 114, 95, 111, 95, 110, 98, 109, 100, 109, 102, 107, 102, 106, 105, 106, 106, 105, 106, 104, 110, 102, 113, 102, 114, 100, 115, 100, 115, 87, 113, 83, 113, 35, 110, 35, 109, 34, 109, 31, 106, 31, 105, 30, 105, 28, 103, 28, 93, 19, 90, 19, 89, 18, 89, 15, 85, 13, 85, 11, 82, 11, 74, 4, 74, 3, 70, 3, 16.5, 65.5, 6.58772, 65.5, 6.80702, 53, 16.5, 53, 16.5, 53, 6.80702, 53, 7, 42, 6, 42, 6, 40.5, 16.5, 40.5, 16.5, 40.5, 6, 40.5, 6, 37, 5, 37, 4, 34, 6, 34, 10, 31, 14, 31, 14, 30, 16.5, 28.75, 16.5, 90.5, 6.14912, 90.5, 6.36842, 78, 16.5, 78, 16.5, 78, 6.36842, 78, 6.58772, 65.5, 16.5, 65.5, 29, 28, 18, 28, 22, 26, 22, 25, 24, 23, 29, 23, 41.5, 40.5, 29, 40.5, 29, 28, 41.5, 28, 29, 40.5, 16.5, 40.5, 16.5, 28.75, 18, 28, 29, 28, 41.5, 28, 29, 28, 29, 23, 34, 19, 39, 19, 41.5, 17, 29, 53, 16.5, 53, 16.5, 40.5, 29, 40.5, 41.5, 65.5, 29, 65.5, 29, 53, 41.5, 53, 29, 65.5, 16.5, 65.5, 16.5, 53, 29, 53, 41.5, 53, 29, 53, 29, 40.5, 41.5, 40.5, 29, 78, 16.5, 78, 16.5, 65.5, 29, 65.5, 41.5, 90.5, 29, 90.5, 29, 78, 41.5, 78, 29, 90.5, 16.5, 90.5, 16.5, 78, 29, 78, 41.5, 78, 29, 78, 29, 65.5, 41.5, 65.5, 29, 103, 16.5, 103, 16.5, 90.5, 29, 90.5, 41.5, 115.5, 29, 115.5, 29, 103, 41.5, 103, 29, 115.5, 28, 115.5, 26, 114, 22, 114, 22, 113, 18, 110, 16.5, 110, 16.5, 103, 29, 103, 41.5, 103, 29, 103, 29, 90.5, 41.5, 90.5, 16.5, 110, 14, 110, 11, 109, 11, 108, 6, 105, 6, 103, 16.5, 103, 16.5, 103, 6, 103, 6, 99, 6.14912, 90.5, 16.5, 90.5, 29, 116.25, 28, 115.5, 29, 115.5, 41.5, 120.75, 36, 118, 30, 118, 30, 117, 29, 116.25, 29, 115.5, 41.5, 115.5, 54, 28, 41.5, 28, 41.5, 17, 43.375, 15.5, 54, 15.5, 66.5, 40.5, 54, 40.5, 54, 28, 66.5, 28, 54, 40.5, 41.5, 40.5, 41.5, 28, 54, 28, 66.5, 28, 54, 28, 54, 15.5, 66.5, 15.5, 66.5, 15.5, 54, 15.5, 54, 11, 55, 10, 58, 10, 60, 9, 60, 8, 61, 7, 65, 7, 65, 6, 66.5, 4.5, 54, 15.5, 43.375, 15.5, 44, 15, 49, 15, 51, 12, 53, 12, 54, 11, 54, 53, 41.5, 53, 41.5, 40.5, 54, 40.5, 66.5, 65.5, 54, 65.5, 54, 53, 66.5, 53, 54, 65.5, 41.5, 65.5, 41.5, 53, 54, 53, 66.5, 53, 54, 53, 54, 40.5, 66.5, 40.5, 54, 78, 41.5, 78, 41.5, 65.5, 54, 65.5, 66.5, 90.5, 54, 90.5, 54, 78, 66.5, 78, 54, 90.5, 41.5, 90.5, 41.5, 78, 54, 78, 66.5, 78, 54, 78, 54, 65.5, 66.5, 65.5, 54, 103, 41.5, 103, 41.5, 90.5, 54, 90.5, 66.5, 115.5, 54, 115.5, 54, 103, 66.5, 103, 54, 115.5, 41.5, 115.5, 41.5, 103, 54, 103, 66.5, 103, 54, 103, 54, 90.5, 66.5, 90.5, 79, 28, 66.5, 28, 66.5, 15.5, 79, 15.5, 91.5, 40.5, 79, 40.5, 79, 28, 91.5, 28, 79, 40.5, 66.5, 40.5, 66.5, 28, 79, 28, 89, 18, 90, 19, 91.5, 19, 91.5, 28, 79, 28, 79, 15.5, 89, 15.5, 82, 11, 85, 11, 85, 13, 89, 15, 89, 15.5, 79, 15.5, 79, 8.375, 74, 4, 79, 8.375, 79, 15.5, 66.5, 15.5, 66.5, 4.5, 67, 4, 70, 4, 70, 3, 74, 3, 79, 53, 66.5, 53, 66.5, 40.5, 79, 40.5, 91.5, 65.5, 79, 65.5, 79, 53, 91.5, 53, 79, 65.5, 66.5, 65.5, 66.5, 53, 79, 53, 91.5, 53, 79, 53, 79, 40.5, 91.5, 40.5, 79, 78, 66.5, 78, 66.5, 65.5, 79, 65.5, 91.5, 90.5, 79, 90.5, 79, 78, 91.5, 78, 79, 90.5, 66.5, 90.5, 66.5, 78, 79, 78, 91.5, 78, 79, 78, 79, 65.5, 91.5, 65.5, 79, 103, 66.5, 103, 66.5, 90.5, 79, 90.5, 91.5, 114, 88, 114, 86.125, 115.5, 79, 115.5, 79, 103, 91.5, 103, 79, 115.5, 66.5, 115.5, 66.5, 103, 79, 103, 91.5, 103, 79, 103, 79, 90.5, 91.5, 90.5, 79, 118, 78, 118, 78, 119, 76, 122, 70, 122, 67, 126, 66.5, 126, 66.5, 115.5, 79, 115.5, 83, 118, 79, 118, 79, 115.5, 86.125, 115.5, 103, 28, 91.5, 28, 91.5, 19, 93, 19, 105, 30, 106, 31, 109, 31, 109, 34, 110, 35, 113, 35, 113, 40.5, 104, 40.5, 104, 28, 105, 28, 104, 40.5, 91.5, 40.5, 91.5, 28, 104, 28, 104, 53, 91.5, 53, 91.5, 40.5, 104, 40.5, 113, 65.5, 104, 65.5, 104, 53, 113, 53, 104, 65.5, 91.5, 65.5, 91.5, 53, 104, 53, 113, 53, 104, 53, 104, 40.5, 113, 40.5, 104, 78, 91.5, 78, 91.5, 65.5, 104, 65.5, 113, 83, 115, 87, 115, 90.5, 104, 90.5, 104, 78, 113, 78, 104, 90.5, 91.5, 90.5, 91.5, 78, 104, 78, 113, 78, 104, 78, 104, 65.5, 113, 65.5, 104, 103, 91.5, 103, 91.5, 90.5, 104, 90.5, 106, 104, 106, 105, 105, 106, 104, 106, 104, 103, 108, 103, 104, 106, 102, 106, 102, 107, 100, 109, 98, 109, 95, 110, 95, 111, 92, 114, 91.5, 114, 91.5, 103, 104, 103, 115, 100, 114, 100, 113, 102, 110, 102, 108, 103, 104, 103, 104, 90.5, 115, 90.5, 54, 126, 51, 126, 51, 125, 47, 124, 47, 123, 46, 122, 42, 122, 42, 121, 41.5, 120.75, 41.5, 115.5, 54, 115.5, 66.5, 126, 54, 126, 54, 115.5, 66.5, 115.5) +polygons = [PackedInt32Array(91, 88, 89), PackedInt32Array(89, 90, 91), PackedInt32Array(97, 92, 93), PackedInt32Array(94, 95, 96), PackedInt32Array(97, 93, 94), PackedInt32Array(94, 96, 97), PackedInt32Array(107, 98, 99), PackedInt32Array(100, 101, 102), PackedInt32Array(103, 104, 105), PackedInt32Array(105, 106, 107), PackedInt32Array(100, 102, 103), PackedInt32Array(105, 107, 99), PackedInt32Array(100, 103, 105), PackedInt32Array(105, 99, 100), PackedInt32Array(111, 108, 109), PackedInt32Array(109, 110, 111), PackedInt32Array(115, 112, 113), PackedInt32Array(113, 114, 115), PackedInt32Array(121, 116, 117), PackedInt32Array(118, 119, 120), PackedInt32Array(121, 117, 118), PackedInt32Array(118, 120, 121), PackedInt32Array(125, 122, 123), PackedInt32Array(123, 124, 125), PackedInt32Array(130, 126, 127), PackedInt32Array(127, 128, 129), PackedInt32Array(129, 130, 127), PackedInt32Array(136, 131, 132), PackedInt32Array(132, 133, 134), PackedInt32Array(135, 136, 132), PackedInt32Array(132, 134, 135), PackedInt32Array(140, 137, 138), PackedInt32Array(138, 139, 140), PackedInt32Array(144, 141, 142), PackedInt32Array(142, 143, 144), PackedInt32Array(148, 145, 146), PackedInt32Array(146, 147, 148), PackedInt32Array(152, 149, 150), PackedInt32Array(150, 151, 152), PackedInt32Array(156, 153, 154), PackedInt32Array(154, 155, 156), PackedInt32Array(160, 157, 158), PackedInt32Array(158, 159, 160), PackedInt32Array(164, 161, 162), PackedInt32Array(162, 163, 164), PackedInt32Array(168, 165, 166), PackedInt32Array(166, 167, 168), PackedInt32Array(172, 169, 170), PackedInt32Array(170, 171, 172), PackedInt32Array(176, 173, 174), PackedInt32Array(174, 175, 176), PackedInt32Array(185, 177, 178), PackedInt32Array(179, 180, 181), PackedInt32Array(182, 183, 184), PackedInt32Array(184, 185, 178), PackedInt32Array(179, 181, 182), PackedInt32Array(184, 178, 179), PackedInt32Array(179, 182, 184), PackedInt32Array(189, 186, 187), PackedInt32Array(187, 188, 189), PackedInt32Array(196, 190, 191), PackedInt32Array(191, 192, 193), PackedInt32Array(193, 194, 195), PackedInt32Array(195, 196, 191), PackedInt32Array(191, 193, 195), PackedInt32Array(201, 197, 198), PackedInt32Array(198, 199, 200), PackedInt32Array(200, 201, 198), PackedInt32Array(204, 202, 203), PackedInt32Array(211, 205, 206), PackedInt32Array(206, 207, 208), PackedInt32Array(208, 209, 210), PackedInt32Array(210, 211, 206), PackedInt32Array(206, 208, 210), PackedInt32Array(216, 212, 213), PackedInt32Array(213, 214, 215), PackedInt32Array(215, 216, 213), PackedInt32Array(220, 217, 218), PackedInt32Array(218, 219, 220), PackedInt32Array(224, 221, 222), PackedInt32Array(222, 223, 224), PackedInt32Array(228, 225, 226), PackedInt32Array(226, 227, 228), PackedInt32Array(229, 230, 231), PackedInt32Array(231, 232, 233), PackedInt32Array(234, 235, 236), PackedInt32Array(237, 238, 239), PackedInt32Array(229, 231, 233), PackedInt32Array(234, 236, 237), PackedInt32Array(237, 239, 229), PackedInt32Array(229, 233, 234), PackedInt32Array(234, 237, 229), PackedInt32Array(240, 241, 242), PackedInt32Array(243, 244, 245), PackedInt32Array(245, 246, 240), PackedInt32Array(240, 242, 243), PackedInt32Array(243, 245, 240), PackedInt32Array(250, 247, 248), PackedInt32Array(248, 249, 250), PackedInt32Array(254, 251, 252), PackedInt32Array(252, 253, 254), PackedInt32Array(258, 255, 256), PackedInt32Array(256, 257, 258), PackedInt32Array(262, 259, 260), PackedInt32Array(260, 261, 262), PackedInt32Array(266, 263, 264), PackedInt32Array(264, 265, 266), PackedInt32Array(270, 267, 268), PackedInt32Array(268, 269, 270), PackedInt32Array(274, 271, 272), PackedInt32Array(272, 273, 274), PackedInt32Array(278, 275, 276), PackedInt32Array(276, 277, 278), PackedInt32Array(282, 279, 280), PackedInt32Array(280, 281, 282), PackedInt32Array(286, 283, 284), PackedInt32Array(284, 285, 286), PackedInt32Array(290, 287, 288), PackedInt32Array(288, 289, 290), PackedInt32Array(294, 291, 292), PackedInt32Array(292, 293, 294), PackedInt32Array(298, 295, 296), PackedInt32Array(296, 297, 298), PackedInt32Array(302, 299, 300), PackedInt32Array(300, 301, 302), PackedInt32Array(306, 303, 304), PackedInt32Array(304, 305, 306), PackedInt32Array(308, 309, 310), PackedInt32Array(310, 311, 312), PackedInt32Array(312, 313, 307), PackedInt32Array(307, 308, 310), PackedInt32Array(310, 312, 307), PackedInt32Array(314, 315, 316), PackedInt32Array(316, 317, 318), PackedInt32Array(319, 320, 314), PackedInt32Array(316, 318, 319), PackedInt32Array(319, 314, 316), PackedInt32Array(321, 322, 323), PackedInt32Array(323, 324, 325), PackedInt32Array(325, 326, 327), PackedInt32Array(327, 328, 329), PackedInt32Array(321, 323, 325), PackedInt32Array(327, 329, 321), PackedInt32Array(321, 325, 327), PackedInt32Array(333, 330, 331), PackedInt32Array(331, 332, 333), PackedInt32Array(337, 334, 335), PackedInt32Array(335, 336, 337), PackedInt32Array(341, 338, 339), PackedInt32Array(339, 340, 341), PackedInt32Array(345, 342, 343), PackedInt32Array(343, 344, 345), PackedInt32Array(349, 346, 347), PackedInt32Array(347, 348, 349), PackedInt32Array(353, 350, 351), PackedInt32Array(351, 352, 353), PackedInt32Array(357, 354, 355), PackedInt32Array(355, 356, 357), PackedInt32Array(361, 358, 359), PackedInt32Array(359, 360, 361), PackedInt32Array(365, 362, 363), PackedInt32Array(363, 364, 365), PackedInt32Array(371, 366, 367), PackedInt32Array(367, 368, 369), PackedInt32Array(369, 370, 371), PackedInt32Array(371, 367, 369), PackedInt32Array(375, 372, 373), PackedInt32Array(373, 374, 375), PackedInt32Array(379, 376, 377), PackedInt32Array(377, 378, 379), PackedInt32Array(388, 380, 381), PackedInt32Array(381, 382, 383), PackedInt32Array(384, 385, 386), PackedInt32Array(387, 388, 381), PackedInt32Array(381, 383, 384), PackedInt32Array(384, 386, 387), PackedInt32Array(387, 381, 384), PackedInt32Array(392, 389, 390), PackedInt32Array(390, 391, 392), PackedInt32Array(396, 393, 394), PackedInt32Array(394, 395, 396), PackedInt32Array(398, 399, 400), PackedInt32Array(401, 402, 403), PackedInt32Array(404, 405, 406), PackedInt32Array(400, 401, 403), PackedInt32Array(404, 406, 397), PackedInt32Array(398, 400, 403), PackedInt32Array(403, 404, 397), PackedInt32Array(397, 398, 403), PackedInt32Array(410, 407, 408), PackedInt32Array(408, 409, 410), PackedInt32Array(414, 411, 412), PackedInt32Array(412, 413, 414), PackedInt32Array(418, 415, 416), PackedInt32Array(416, 417, 418), PackedInt32Array(422, 419, 420), PackedInt32Array(420, 421, 422), PackedInt32Array(426, 423, 424), PackedInt32Array(424, 425, 426), PackedInt32Array(430, 427, 428), PackedInt32Array(428, 429, 430), PackedInt32Array(431, 432, 433), PackedInt32Array(433, 434, 435), PackedInt32Array(435, 436, 431), PackedInt32Array(431, 433, 435), PackedInt32Array(440, 437, 438), PackedInt32Array(438, 439, 440), PackedInt32Array(444, 441, 442), PackedInt32Array(442, 443, 444), PackedInt32Array(448, 445, 446), PackedInt32Array(446, 447, 448), PackedInt32Array(449, 450, 451), PackedInt32Array(451, 452, 453), PackedInt32Array(453, 454, 449), PackedInt32Array(449, 451, 453), PackedInt32Array(465, 455, 456), PackedInt32Array(456, 457, 458), PackedInt32Array(460, 461, 462), PackedInt32Array(462, 463, 464), PackedInt32Array(464, 465, 456), PackedInt32Array(456, 458, 459), PackedInt32Array(460, 462, 464), PackedInt32Array(464, 456, 459), PackedInt32Array(459, 460, 464), PackedInt32Array(473, 466, 467), PackedInt32Array(467, 468, 469), PackedInt32Array(469, 470, 471), PackedInt32Array(471, 472, 473), PackedInt32Array(473, 467, 469), PackedInt32Array(469, 471, 473), PackedInt32Array(484, 474, 475), PackedInt32Array(476, 477, 478), PackedInt32Array(479, 480, 481), PackedInt32Array(481, 482, 483), PackedInt32Array(484, 475, 476), PackedInt32Array(476, 478, 479), PackedInt32Array(479, 481, 483), PackedInt32Array(483, 484, 476), PackedInt32Array(476, 479, 483), PackedInt32Array(488, 485, 486), PackedInt32Array(486, 487, 488)] +bones = ["Bone-0", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-1", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-2", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-3", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-4", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-5", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0), "Bone-6", PackedFloat32Array(0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-7", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-8", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-9", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1), "Bone-10", PackedFloat32Array(1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-11", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-12", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-13", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1), "Bone-14", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-15", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-16", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-17", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-18", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1)] +internal_vertex_count = 401 script = ExtResource("2_2dapw") vertex_interval = 25 -radius = 19 -rigidbody_scene = ExtResource("3_6ern4") margin_pixels = -1 -voronoi_interval = 0.15 +min_area = 0.3 stiffness = 0.1 damping = 9.1 rest_length_ratio = 1.1 length_ratio = 0.1 softness = 100.0 +radius = 19 +rigidbody_scene = ExtResource("3_6ern4") physics_material_override = ExtResource("5_221ya") [node name="Skeleton2D" type="Skeleton2D" parent="Butter3"] visible = false -modification_stack = SubResource("SkeletonModificationStack2D_wjxl7") +modification_stack = SubResource("SkeletonModificationStack2D_qcx0f") [node name="Bone-0" type="Bone2D" parent="Butter3/Skeleton2D"] -position = Vector2(11.9819, 47.4582) -rotation = 0.260871 -rest = Transform2D(0.966166, 0.257922, -0.257922, 0.966166, 11.9819, 47.4582) +position = Vector2(10.25, 47.125) +rotation = 1.02504 +rest = Transform2D(0.519068, 0.854733, -0.854733, 0.519068, 10.25, 47.125) auto_calculate_length_and_angle = false length = 25.0 bone_angle = 0.0 -metadata/vert_owned = [88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105] -metadata/connected_nodes_paths = [NodePath("Bone-1"), NodePath("Bone-2"), NodePath("Bone-3"), NodePath("Bone-4")] +metadata/vert_owned = [88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107] +metadata/idx = 0 +metadata/connected_nodes_paths = [NodePath("Bone-1"), NodePath("Bone-3"), NodePath("Bone-4"), NodePath("Bone-2")] +metadata/connected_nodes_idx = [1, 3, 4, 2] metadata/_local_pose_override_enabled_ = true [node name="Bone-1" type="Bone2D" parent="Butter3/Skeleton2D"] -position = Vector2(11.4233, 78.7417) -rotation = -0.0592156 -rest = Transform2D(0.998247, -0.059181, 0.059181, 0.998247, 11.4233, 78.7417) +position = Vector2(11.3246, 78) +rest = Transform2D(1, 0, 0, 1, 11.3246, 78) auto_calculate_length_and_angle = false length = 25.0 bone_angle = 0.0 -metadata/vert_owned = [106, 107, 108, 109, 110] +metadata/vert_owned = [108, 109, 110, 111, 112, 113, 114, 115] +metadata/idx = 1 metadata/connected_nodes_paths = [NodePath("Bone-0"), NodePath("Bone-3"), NodePath("Bone-4"), NodePath("Bone-5")] +metadata/connected_nodes_idx = [0, 3, 4, 5] metadata/_local_pose_override_enabled_ = true [node name="Bone-2" type="Bone2D" parent="Butter3/Skeleton2D"] -position = Vector2(32.1588, 27.3839) -rotation = 0.040623 -rest = Transform2D(0.999175, 0.0406118, -0.0406118, 0.999175, 32.1588, 27.3839) +position = Vector2(29, 28.75) +rotation = -0.244979 +scale = Vector2(1, 1) +rest = Transform2D(0.970142, -0.242536, 0.242536, 0.970142, 29, 28.75) auto_calculate_length_and_angle = false length = 25.0 bone_angle = 0.0 -metadata/vert_owned = [111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121] +metadata/vert_owned = [116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136] +metadata/idx = 2 metadata/connected_nodes_paths = [NodePath("Bone-0"), NodePath("Bone-3"), NodePath("Bone-6"), NodePath("Bone-7")] +metadata/connected_nodes_idx = [0, 3, 6, 7] metadata/_local_pose_override_enabled_ = true [node name="Bone-3" type="Bone2D" parent="Butter3/Skeleton2D"] -position = Vector2(29.9134, 52.2451) -rotation = 1.59192 -rest = Transform2D(-0.0211265, 0.999777, -0.999777, -0.0211265, 29.9134, 52.2451) +position = Vector2(29, 53) +rotation = -1.5708 +rest = Transform2D(-4.37114e-08, -1, 1, -4.37114e-08, 29, 53) auto_calculate_length_and_angle = false length = 25.0 bone_angle = 0.0 -metadata/vert_owned = [122, 123, 124, 125, 126, 127] -metadata/connected_nodes_paths = [NodePath("Bone-0"), NodePath("Bone-1"), NodePath("Bone-2"), NodePath("Bone-4"), NodePath("Bone-6"), NodePath("Bone-7"), NodePath("Bone-8")] +metadata/vert_owned = [137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152] +metadata/idx = 3 +metadata/connected_nodes_paths = [NodePath("Bone-0"), NodePath("Bone-1"), NodePath("Bone-4"), NodePath("Bone-2"), NodePath("Bone-6"), NodePath("Bone-7"), NodePath("Bone-8")] +metadata/connected_nodes_idx = [0, 1, 4, 2, 6, 7, 8] metadata/_local_pose_override_enabled_ = true [node name="Bone-4" type="Bone2D" parent="Butter3/Skeleton2D"] -position = Vector2(29.376, 77.6774) -rotation = 1.78493 -rest = Transform2D(-0.212503, 0.97716, -0.97716, -0.212503, 29.376, 77.6774) +position = Vector2(29, 78) +rotation = 1.7586 +rest = Transform2D(-0.186704, 0.982416, -0.982416, -0.186704, 29, 78) auto_calculate_length_and_angle = false length = 25.0 bone_angle = 0.0 -metadata/vert_owned = [128, 129, 130, 131, 132, 133] +metadata/vert_owned = [153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168] +metadata/idx = 4 metadata/connected_nodes_paths = [NodePath("Bone-0"), NodePath("Bone-1"), NodePath("Bone-3"), NodePath("Bone-5"), NodePath("Bone-7"), NodePath("Bone-8"), NodePath("Bone-9")] +metadata/connected_nodes_idx = [0, 1, 3, 5, 7, 8, 9] metadata/_local_pose_override_enabled_ = true [node name="Bone-5" type="Bone2D" parent="Butter3/Skeleton2D"] -position = Vector2(23.8771, 102.963) -rotation = -0.661389 -rest = Transform2D(0.78914, -0.614213, 0.614213, 0.78914, 23.8771, 102.963) +position = Vector2(23.75, 105.625) +rotation = -1.38299 +scale = Vector2(1, 1) +rest = Transform2D(0.186704, -0.982416, 0.982416, 0.186704, 23.75, 105.625) auto_calculate_length_and_angle = false length = 25.0 bone_angle = 0.0 -metadata/vert_owned = [134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153] -metadata/connected_nodes_paths = [NodePath("Bone-1"), NodePath("Bone-4"), NodePath("Bone-8"), NodePath("Bone-9"), NodePath("Bone-19")] +metadata/vert_owned = [169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211] +metadata/idx = 5 +metadata/connected_nodes_paths = [NodePath("Bone-18"), NodePath("Bone-1"), NodePath("Bone-4"), NodePath("Bone-8"), NodePath("Bone-9")] +metadata/connected_nodes_idx = [18, 1, 4, 8, 9] metadata/_local_pose_override_enabled_ = true [node name="Bone-6" type="Bone2D" parent="Butter3/Skeleton2D"] -position = Vector2(55.7376, 28.3423) -rotation = -0.920184 +position = Vector2(54, 22.5) +rotation = 2.25742 scale = Vector2(1, 1) -rest = Transform2D(0.605673, -0.795713, 0.795713, 0.605673, 55.7376, 28.3423) +rest = Transform2D(-0.633928, 0.773392, -0.773392, -0.633928, 54, 22.5) auto_calculate_length_and_angle = false length = 25.0 bone_angle = 0.0 -metadata/vert_owned = [154, 155, 156, 157, 158, 159, 160] -metadata/connected_nodes_paths = [NodePath("Bone-2"), NodePath("Bone-3"), NodePath("Bone-7"), NodePath("Bone-10"), NodePath("Bone-11"), NodePath("Bone-12")] +metadata/vert_owned = [212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246] +metadata/idx = 6 +metadata/connected_nodes_paths = [NodePath("Bone-10"), NodePath("Bone-2"), NodePath("Bone-3"), NodePath("Bone-7"), NodePath("Bone-11")] +metadata/connected_nodes_idx = [10, 2, 3, 7, 11] metadata/_local_pose_override_enabled_ = true [node name="Bone-7" type="Bone2D" parent="Butter3/Skeleton2D"] -position = Vector2(55.3545, 54.8831) -rotation = 1.60529 -rest = Transform2D(-0.0344882, 0.999405, -0.999405, -0.0344882, 55.3545, 54.8831) +position = Vector2(54, 53) +rotation = 1.5708 +rest = Transform2D(-4.37114e-08, 1, -1, -4.37114e-08, 54, 53) auto_calculate_length_and_angle = false length = 25.0 bone_angle = 0.0 -metadata/vert_owned = [161, 162, 163, 164, 165, 166] -metadata/connected_nodes_paths = [NodePath("Bone-2"), NodePath("Bone-3"), NodePath("Bone-4"), NodePath("Bone-6"), NodePath("Bone-8"), NodePath("Bone-11"), NodePath("Bone-12"), NodePath("Bone-13")] +metadata/vert_owned = [247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262] +metadata/idx = 7 +metadata/connected_nodes_paths = [NodePath("Bone-2"), NodePath("Bone-3"), NodePath("Bone-6"), NodePath("Bone-4"), NodePath("Bone-8"), NodePath("Bone-10"), NodePath("Bone-11"), NodePath("Bone-12")] +metadata/connected_nodes_idx = [2, 3, 6, 4, 8, 10, 11, 12] metadata/_local_pose_override_enabled_ = true [node name="Bone-8" type="Bone2D" parent="Butter3/Skeleton2D"] -position = Vector2(54.5183, 79.1141) -rotation = 1.61776 -rest = Transform2D(-0.0469479, 0.998897, -0.998897, -0.0469479, 54.5183, 79.1141) +position = Vector2(54, 78) +rotation = 1.5708 +rest = Transform2D(-4.37114e-08, 1, -1, -4.37114e-08, 54, 78) auto_calculate_length_and_angle = false length = 25.0 bone_angle = 0.0 -metadata/vert_owned = [167, 168, 169, 170, 171, 172] -metadata/connected_nodes_paths = [NodePath("Bone-3"), NodePath("Bone-4"), NodePath("Bone-5"), NodePath("Bone-7"), NodePath("Bone-9"), NodePath("Bone-12"), NodePath("Bone-13"), NodePath("Bone-14")] +metadata/vert_owned = [263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278] +metadata/idx = 8 +metadata/connected_nodes_paths = [NodePath("Bone-3"), NodePath("Bone-4"), NodePath("Bone-7"), NodePath("Bone-5"), NodePath("Bone-9"), NodePath("Bone-11"), NodePath("Bone-12"), NodePath("Bone-13")] +metadata/connected_nodes_idx = [3, 4, 7, 5, 9, 11, 12, 13] metadata/_local_pose_override_enabled_ = true [node name="Bone-9" type="Bone2D" parent="Butter3/Skeleton2D"] -position = Vector2(53.3725, 103.495) -rotation = -0.729803 -scale = Vector2(1, 1) -rest = Transform2D(0.745306, -0.666723, 0.666723, 0.745306, 53.3725, 103.495) +position = Vector2(54, 103) +rotation = 1.5708 +rest = Transform2D(-4.37114e-08, 1, -1, -4.37114e-08, 54, 103) auto_calculate_length_and_angle = false length = 25.0 bone_angle = 0.0 -metadata/vert_owned = [173, 174, 175, 176] -metadata/connected_nodes_paths = [NodePath("Bone-4"), NodePath("Bone-5"), NodePath("Bone-8"), NodePath("Bone-13"), NodePath("Bone-14"), NodePath("Bone-19")] +metadata/vert_owned = [279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294] +metadata/idx = 9 +metadata/connected_nodes_paths = [NodePath("Bone-4"), NodePath("Bone-5"), NodePath("Bone-8"), NodePath("Bone-18"), NodePath("Bone-12"), NodePath("Bone-13")] +metadata/connected_nodes_idx = [4, 5, 8, 18, 12, 13] metadata/_local_pose_override_enabled_ = true [node name="Bone-10" type="Bone2D" parent="Butter3/Skeleton2D"] -position = Vector2(69.1836, 10.6773) -rotation = 1.02534 -rest = Transform2D(0.518808, 0.854891, -0.854891, 0.518808, 69.1836, 10.6773) +position = Vector2(79, 21.75) +rotation = 1.5708 +rest = Transform2D(-4.37114e-08, 1, -1, -4.37114e-08, 79, 21.75) auto_calculate_length_and_angle = false length = 25.0 bone_angle = 0.0 -metadata/vert_owned = [177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201] -metadata/connected_nodes_paths = [NodePath("Bone-6"), NodePath("Bone-11")] +metadata/vert_owned = [295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329] +metadata/idx = 10 +metadata/connected_nodes_paths = [NodePath("Bone-6"), NodePath("Bone-7"), NodePath("Bone-11"), NodePath("Bone-14"), NodePath("Bone-15")] +metadata/connected_nodes_idx = [6, 7, 11, 14, 15] metadata/_local_pose_override_enabled_ = true [node name="Bone-11" type="Bone2D" parent="Butter3/Skeleton2D"] -position = Vector2(80.9573, 30.078) -rotation = 1.63571 -rest = Transform2D(-0.0648705, 0.997894, -0.997894, -0.0648705, 80.9573, 30.078) +position = Vector2(79, 53) +rotation = 1.5708 +rest = Transform2D(-4.37114e-08, 1, -1, -4.37114e-08, 79, 53) auto_calculate_length_and_angle = false length = 25.0 bone_angle = 0.0 -metadata/vert_owned = [202, 203, 204, 205, 206] -metadata/connected_nodes_paths = [NodePath("Bone-6"), NodePath("Bone-7"), NodePath("Bone-10"), NodePath("Bone-12"), NodePath("Bone-15"), NodePath("Bone-16")] +metadata/vert_owned = [330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345] +metadata/idx = 11 +metadata/connected_nodes_paths = [NodePath("Bone-6"), NodePath("Bone-7"), NodePath("Bone-10"), NodePath("Bone-8"), NodePath("Bone-12"), NodePath("Bone-14"), NodePath("Bone-15"), NodePath("Bone-16")] +metadata/connected_nodes_idx = [6, 7, 10, 8, 12, 14, 15, 16] metadata/_local_pose_override_enabled_ = true [node name="Bone-12" type="Bone2D" parent="Butter3/Skeleton2D"] -position = Vector2(79.3768, 54.3897) -rotation = 1.50099 -rest = Transform2D(0.0697459, 0.997565, -0.997565, 0.0697459, 79.3768, 54.3897) +position = Vector2(79, 78) +rotation = 1.5708 +rest = Transform2D(-4.37114e-08, 1, -1, -4.37114e-08, 79, 78) auto_calculate_length_and_angle = false length = 25.0 bone_angle = 0.0 -metadata/vert_owned = [207, 208, 209, 210, 211] -metadata/connected_nodes_paths = [NodePath("Bone-6"), NodePath("Bone-7"), NodePath("Bone-8"), NodePath("Bone-11"), NodePath("Bone-13"), NodePath("Bone-15"), NodePath("Bone-16"), NodePath("Bone-17")] +metadata/vert_owned = [346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361] +metadata/idx = 12 +metadata/connected_nodes_paths = [NodePath("Bone-7"), NodePath("Bone-8"), NodePath("Bone-11"), NodePath("Bone-9"), NodePath("Bone-13"), NodePath("Bone-15"), NodePath("Bone-16"), NodePath("Bone-17")] +metadata/connected_nodes_idx = [7, 8, 11, 9, 13, 15, 16, 17] metadata/_local_pose_override_enabled_ = true [node name="Bone-13" type="Bone2D" parent="Butter3/Skeleton2D"] -position = Vector2(81.0773, 78.7108) -rotation = 1.64259 -rest = Transform2D(-0.0717316, 0.997424, -0.997424, -0.0717316, 81.0773, 78.7108) +position = Vector2(79, 108.25) +rotation = -2.9346 +rest = Transform2D(-0.978653, -0.205517, 0.205517, -0.978653, 79, 108.25) auto_calculate_length_and_angle = false length = 25.0 bone_angle = 0.0 -metadata/vert_owned = [212, 213, 214, 215, 216, 217, 218] -metadata/connected_nodes_paths = [NodePath("Bone-7"), NodePath("Bone-8"), NodePath("Bone-9"), NodePath("Bone-12"), NodePath("Bone-14"), NodePath("Bone-16"), NodePath("Bone-17"), NodePath("Bone-18")] +metadata/vert_owned = [362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392] +metadata/idx = 13 +metadata/connected_nodes_paths = [NodePath("Bone-18"), NodePath("Bone-17"), NodePath("Bone-8"), NodePath("Bone-9"), NodePath("Bone-12"), NodePath("Bone-16")] +metadata/connected_nodes_idx = [18, 17, 8, 9, 12, 16] metadata/_local_pose_override_enabled_ = true [node name="Bone-14" type="Bone2D" parent="Butter3/Skeleton2D"] -position = Vector2(79.047, 106.942) -rotation = -0.795486 -rest = Transform2D(0.699938, -0.714204, 0.714204, 0.699938, 79.047, 106.942) +position = Vector2(102.25, 29.75) +rotation = 2.35619 +scale = Vector2(1, 1) +rest = Transform2D(-0.707107, 0.707107, -0.707107, -0.707107, 102.25, 29.75) auto_calculate_length_and_angle = false length = 25.0 bone_angle = 0.0 -metadata/vert_owned = [219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232] -metadata/connected_nodes_paths = [NodePath("Bone-8"), NodePath("Bone-9"), NodePath("Bone-13"), NodePath("Bone-17"), NodePath("Bone-18"), NodePath("Bone-19")] +metadata/vert_owned = [393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410] +metadata/idx = 14 +metadata/connected_nodes_paths = [NodePath("Bone-10"), NodePath("Bone-11"), NodePath("Bone-15")] +metadata/connected_nodes_idx = [10, 11, 15] metadata/_local_pose_override_enabled_ = true [node name="Bone-15" type="Bone2D" parent="Butter3/Skeleton2D"] -position = Vector2(102.751, 31.2282) -rotation = 2.36077 -rest = Transform2D(-0.710338, 0.70386, -0.70386, -0.710338, 102.751, 31.2282) +position = Vector2(102.25, 53) +rotation = -1.5708 +rest = Transform2D(-4.37114e-08, -1, 1, -4.37114e-08, 102.25, 53) auto_calculate_length_and_angle = false length = 25.0 bone_angle = 0.0 -metadata/vert_owned = [233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244] -metadata/connected_nodes_paths = [NodePath("Bone-11"), NodePath("Bone-12"), NodePath("Bone-16")] +metadata/vert_owned = [411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426] +metadata/idx = 15 +metadata/connected_nodes_paths = [NodePath("Bone-10"), NodePath("Bone-11"), NodePath("Bone-14"), NodePath("Bone-12"), NodePath("Bone-16")] +metadata/connected_nodes_idx = [10, 11, 14, 12, 16] metadata/_local_pose_override_enabled_ = true [node name="Bone-16" type="Bone2D" parent="Butter3/Skeleton2D"] -position = Vector2(103.646, 54.4703) -rotation = 2.32049 +position = Vector2(103.25, 78) +rotation = -1.61077 scale = Vector2(1, 1) -rest = Transform2D(-0.681411, 0.731901, -0.731901, -0.681411, 103.646, 54.4703) +rest = Transform2D(-0.039968, -0.999201, 0.999201, -0.039968, 103.25, 78) auto_calculate_length_and_angle = false length = 25.0 bone_angle = 0.0 -metadata/vert_owned = [245, 246, 247, 248, 249, 250, 251] -metadata/connected_nodes_paths = [NodePath("Bone-11"), NodePath("Bone-12"), NodePath("Bone-13"), NodePath("Bone-15"), NodePath("Bone-17")] +metadata/vert_owned = [427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444] +metadata/idx = 16 +metadata/connected_nodes_paths = [NodePath("Bone-11"), NodePath("Bone-12"), NodePath("Bone-15"), NodePath("Bone-13"), NodePath("Bone-17")] +metadata/connected_nodes_idx = [11, 12, 15, 13, 17] metadata/_local_pose_override_enabled_ = true [node name="Bone-17" type="Bone2D" parent="Butter3/Skeleton2D"] -position = Vector2(105.689, 79.7563) -rotation = 2.34611 -rest = Transform2D(-0.699938, 0.714204, -0.714204, -0.699938, 105.689, 79.7563) +position = Vector2(103.25, 102.25) +rotation = -2.35619 +scale = Vector2(1, 1) +rest = Transform2D(-0.707107, -0.707107, 0.707107, -0.707107, 103.25, 102.25) auto_calculate_length_and_angle = false length = 25.0 bone_angle = 0.0 -metadata/vert_owned = [252, 253, 254, 255, 256] -metadata/connected_nodes_paths = [NodePath("Bone-12"), NodePath("Bone-13"), NodePath("Bone-14"), NodePath("Bone-16"), NodePath("Bone-18")] +metadata/vert_owned = [445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473] +metadata/idx = 17 +metadata/connected_nodes_paths = [NodePath("Bone-13"), NodePath("Bone-12"), NodePath("Bone-16")] +metadata/connected_nodes_idx = [13, 12, 16] metadata/_local_pose_override_enabled_ = true [node name="Bone-18" type="Bone2D" parent="Butter3/Skeleton2D"] -position = Vector2(102.296, 103.289) -rotation = 2.98577 +position = Vector2(54, 120.75) +rotation = -0.463648 scale = Vector2(1, 1) -rest = Transform2D(-0.987884, 0.155195, -0.155195, -0.987884, 102.296, 103.289) -auto_calculate_length_and_angle = false -length = 25.0 -bone_angle = 0.0 -metadata/vert_owned = [257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278] -metadata/connected_nodes_paths = [NodePath("Bone-13"), NodePath("Bone-14"), NodePath("Bone-17")] -metadata/_local_pose_override_enabled_ = true - -[node name="Bone-19" type="Bone2D" parent="Butter3/Skeleton2D"] -position = Vector2(49.0143, 119.913) -rotation = -1.31134 -rest = Transform2D(0.256555, -0.96653, 0.96653, 0.256555, 49.0143, 119.913) +rest = Transform2D(0.894427, -0.447214, 0.447214, 0.894427, 54, 120.75) auto_calculate_length_and_angle = false length = 25.0 bone_angle = 0.0 -metadata/vert_owned = [279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298] -metadata/connected_nodes_paths = [NodePath("Bone-5"), NodePath("Bone-9"), NodePath("Bone-14")] +metadata/vert_owned = [474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488] +metadata/idx = 18 +metadata/connected_nodes_paths = [NodePath("Bone-5"), NodePath("Bone-13"), NodePath("Bone-9")] +metadata/connected_nodes_idx = [5, 13, 9] metadata/_local_pose_override_enabled_ = true -[node name="Bone-0" parent="Butter3" instance=ExtResource("3_6ern4")] -position = Vector2(11.9819, 47.4582) -mass = 0.05 +[node name="Bone-0" type="RigidBody2D" parent="Butter3" instance=ExtResource("3_6ern4")] +position = Vector2(10.25, 47.125) +input_pickable = true +mass = 0.0526316 physics_material_override = ExtResource("5_221ya") +script = ExtResource("11_tqnjl") +metadata/idx = 0 metadata/bone_name = &"Bone-0" [node name="CircleShape2D" type="CollisionShape2D" parent="Butter3/Bone-0"] -shape = SubResource("CircleShape2D_nnd07") +shape = SubResource("CircleShape2D_faxuv") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Butter3/Bone-0"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-0") update_rotation = false update_scale = false [node name="Joint2D-Bone-0-Bone-1" type="PinJoint2D" parent="Butter3/Bone-0"] visible = false -rotation = 0.017855 +rotation = -0.0347895 node_a = NodePath("..") node_b = NodePath("../../Bone-1") softness = 100.0 -[node name="Joint2D-Bone-0-Bone-2" type="PinJoint2D" parent="Butter3/Bone-0"] -visible = false -rotation = -2.35365 -node_a = NodePath("..") -node_b = NodePath("../../Bone-2") -softness = 100.0 - [node name="Joint2D-Bone-0-Bone-3" type="PinJoint2D" parent="Butter3/Bone-0"] visible = false -rotation = -1.30993 +rotation = -1.26715 node_a = NodePath("..") node_b = NodePath("../../Bone-3") softness = 100.0 [node name="Joint2D-Bone-0-Bone-4" type="PinJoint2D" parent="Butter3/Bone-0"] visible = false -rotation = -0.522283 +rotation = -0.545761 node_a = NodePath("..") node_b = NodePath("../../Bone-4") softness = 100.0 -[node name="Bone-1" parent="Butter3" instance=ExtResource("3_6ern4")] -position = Vector2(11.4233, 78.7417) -mass = 0.05 +[node name="Joint2D-Bone-0-Bone-2" type="PinJoint2D" parent="Butter3/Bone-0"] +visible = false +rotation = -2.34609 +node_a = NodePath("..") +node_b = NodePath("../../Bone-2") +softness = 100.0 + +[node name="Bone-1" type="RigidBody2D" parent="Butter3" instance=ExtResource("3_6ern4")] +position = Vector2(11.3246, 78) +input_pickable = true +mass = 0.0526316 physics_material_override = ExtResource("5_221ya") +script = ExtResource("11_tqnjl") +metadata/idx = 1 metadata/bone_name = &"Bone-1" [node name="CircleShape2D" type="CollisionShape2D" parent="Butter3/Bone-1"] -shape = SubResource("CircleShape2D_nnd07") +shape = SubResource("CircleShape2D_faxuv") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Butter3/Bone-1"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-1") update_rotation = false update_scale = false [node name="Joint2D-Bone-1-Bone-0" type="PinJoint2D" parent="Butter3/Bone-1"] visible = false -rotation = -3.12374 +rotation = -3.17638 node_a = NodePath("..") node_b = NodePath("../../Bone-0") softness = 100.0 [node name="Joint2D-Bone-1-Bone-3" type="PinJoint2D" parent="Butter3/Bone-1"] visible = false -rotation = -2.53232 +rotation = -2.52617 node_a = NodePath("..") node_b = NodePath("../../Bone-3") softness = 100.0 [node name="Joint2D-Bone-1-Bone-4" type="PinJoint2D" parent="Butter3/Bone-1"] visible = false -rotation = -1.63001 +rotation = -1.5708 node_a = NodePath("..") node_b = NodePath("../../Bone-4") softness = 100.0 [node name="Joint2D-Bone-1-Bone-5" type="PinJoint2D" parent="Butter3/Bone-1"] visible = false -rotation = -0.474914 +rotation = -0.422679 node_a = NodePath("..") node_b = NodePath("../../Bone-5") softness = 100.0 -[node name="Bone-2" parent="Butter3" instance=ExtResource("3_6ern4")] -position = Vector2(32.1588, 27.3839) -mass = 0.05 +[node name="Bone-2" type="RigidBody2D" parent="Butter3" instance=ExtResource("3_6ern4")] +position = Vector2(29, 28.75) +input_pickable = true +mass = 0.0526316 physics_material_override = ExtResource("5_221ya") +script = ExtResource("11_tqnjl") +metadata/idx = 2 metadata/bone_name = &"Bone-2" [node name="CircleShape2D" type="CollisionShape2D" parent="Butter3/Bone-2"] -shape = SubResource("CircleShape2D_nnd07") +shape = SubResource("CircleShape2D_faxuv") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Butter3/Bone-2"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-2") update_rotation = false update_scale = false [node name="Joint2D-Bone-2-Bone-0" type="PinJoint2D" parent="Butter3/Bone-2"] visible = false -rotation = 0.787946 +rotation = 0.795499 node_a = NodePath("..") node_b = NodePath("../../Bone-0") softness = 100.0 [node name="Joint2D-Bone-2-Bone-3" type="PinJoint2D" parent="Butter3/Bone-2"] visible = false -rotation = 0.0900715 node_a = NodePath("..") node_b = NodePath("../../Bone-3") softness = 100.0 [node name="Joint2D-Bone-2-Bone-6" type="PinJoint2D" parent="Butter3/Bone-2"] visible = false -rotation = -1.53017 +rotation = -1.81578 node_a = NodePath("..") node_b = NodePath("../../Bone-6") softness = 100.0 [node name="Joint2D-Bone-2-Bone-7" type="PinJoint2D" parent="Butter3/Bone-2"] visible = false -rotation = -0.700711 +rotation = -0.800625 node_a = NodePath("..") node_b = NodePath("../../Bone-7") softness = 100.0 -[node name="Bone-3" parent="Butter3" instance=ExtResource("3_6ern4")] -position = Vector2(29.9134, 52.2451) -mass = 0.05 +[node name="Bone-3" type="RigidBody2D" parent="Butter3" instance=ExtResource("3_6ern4")] +position = Vector2(29, 53) +input_pickable = true +mass = 0.0526316 physics_material_override = ExtResource("5_221ya") +script = ExtResource("11_tqnjl") +metadata/idx = 3 metadata/bone_name = &"Bone-3" [node name="CircleShape2D" type="CollisionShape2D" parent="Butter3/Bone-3"] -shape = SubResource("CircleShape2D_nnd07") +shape = SubResource("CircleShape2D_faxuv") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Butter3/Bone-3"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-3") update_rotation = false update_scale = false [node name="Joint2D-Bone-3-Bone-0" type="PinJoint2D" parent="Butter3/Bone-3"] visible = false -rotation = -4.45152 +rotation = -4.40875 node_a = NodePath("..") node_b = NodePath("../../Bone-0") softness = 100.0 [node name="Joint2D-Bone-3-Bone-1" type="PinJoint2D" parent="Butter3/Bone-3"] visible = false -rotation = 0.609268 +rotation = 0.61542 node_a = NodePath("..") node_b = NodePath("../../Bone-1") softness = 100.0 -[node name="Joint2D-Bone-3-Bone-2" type="PinJoint2D" parent="Butter3/Bone-3"] +[node name="Joint2D-Bone-3-Bone-4" type="PinJoint2D" parent="Butter3/Bone-3"] visible = false -rotation = -3.05152 node_a = NodePath("..") -node_b = NodePath("../../Bone-2") +node_b = NodePath("../../Bone-4") softness = 100.0 -[node name="Joint2D-Bone-3-Bone-4" type="PinJoint2D" parent="Butter3/Bone-3"] +[node name="Joint2D-Bone-3-Bone-2" type="PinJoint2D" parent="Butter3/Bone-3"] visible = false -rotation = 0.0211281 +rotation = -3.14159 node_a = NodePath("..") -node_b = NodePath("../../Bone-4") +node_b = NodePath("../../Bone-2") softness = 100.0 [node name="Joint2D-Bone-3-Bone-6" type="PinJoint2D" parent="Butter3/Bone-3"] visible = false -rotation = -2.31758 +rotation = -2.45497 node_a = NodePath("..") node_b = NodePath("../../Bone-6") softness = 100.0 [node name="Joint2D-Bone-3-Bone-7" type="PinJoint2D" parent="Butter3/Bone-3"] visible = false -rotation = -1.46747 +rotation = -1.5708 node_a = NodePath("..") node_b = NodePath("../../Bone-7") softness = 100.0 [node name="Joint2D-Bone-3-Bone-8" type="PinJoint2D" parent="Butter3/Bone-3"] visible = false -rotation = -0.741441 +rotation = -0.785398 node_a = NodePath("..") node_b = NodePath("../../Bone-8") softness = 100.0 -[node name="Bone-4" parent="Butter3" instance=ExtResource("3_6ern4")] -position = Vector2(29.376, 77.6774) -mass = 0.05 +[node name="Bone-4" type="RigidBody2D" parent="Butter3" instance=ExtResource("3_6ern4")] +position = Vector2(29, 78) +input_pickable = true +mass = 0.0526316 physics_material_override = ExtResource("5_221ya") +script = ExtResource("11_tqnjl") +metadata/idx = 4 metadata/bone_name = &"Bone-4" [node name="CircleShape2D" type="CollisionShape2D" parent="Butter3/Bone-4"] -shape = SubResource("CircleShape2D_nnd07") +shape = SubResource("CircleShape2D_faxuv") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Butter3/Bone-4"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-4") update_rotation = false update_scale = false [node name="Joint2D-Bone-4-Bone-0" type="PinJoint2D" parent="Butter3/Bone-4"] visible = false -rotation = -3.66388 +rotation = -3.68735 node_a = NodePath("..") node_b = NodePath("../../Bone-0") softness = 100.0 [node name="Joint2D-Bone-4-Bone-1" type="PinJoint2D" parent="Butter3/Bone-4"] visible = false -rotation = 1.51158 +rotation = 1.5708 node_a = NodePath("..") node_b = NodePath("../../Bone-1") softness = 100.0 [node name="Joint2D-Bone-4-Bone-3" type="PinJoint2D" parent="Butter3/Bone-4"] visible = false -rotation = -3.12046 +rotation = -3.14159 node_a = NodePath("..") node_b = NodePath("../../Bone-3") softness = 100.0 [node name="Joint2D-Bone-4-Bone-5" type="PinJoint2D" parent="Butter3/Bone-4"] visible = false -rotation = 0.214135 +rotation = 0.187806 node_a = NodePath("..") node_b = NodePath("../../Bone-5") softness = 100.0 [node name="Joint2D-Bone-4-Bone-7" type="PinJoint2D" parent="Butter3/Bone-4"] visible = false -rotation = -2.291 +rotation = -2.35619 node_a = NodePath("..") node_b = NodePath("../../Bone-7") softness = 100.0 [node name="Joint2D-Bone-4-Bone-8" type="PinJoint2D" parent="Butter3/Bone-4"] visible = false -rotation = -1.51371 +rotation = -1.5708 node_a = NodePath("..") node_b = NodePath("../../Bone-8") softness = 100.0 [node name="Joint2D-Bone-4-Bone-9" type="PinJoint2D" parent="Butter3/Bone-4"] visible = false -rotation = -0.748864 +rotation = -0.785398 node_a = NodePath("..") node_b = NodePath("../../Bone-9") softness = 100.0 -[node name="Bone-5" parent="Butter3" instance=ExtResource("3_6ern4")] -position = Vector2(23.8771, 102.963) -mass = 0.05 +[node name="Bone-5" type="RigidBody2D" parent="Butter3" instance=ExtResource("3_6ern4")] +position = Vector2(23.75, 105.625) +input_pickable = true +mass = 0.0526316 physics_material_override = ExtResource("5_221ya") +script = ExtResource("11_tqnjl") +metadata/idx = 5 metadata/bone_name = &"Bone-5" [node name="CircleShape2D" type="CollisionShape2D" parent="Butter3/Bone-5"] -shape = SubResource("CircleShape2D_nnd07") +shape = SubResource("CircleShape2D_faxuv") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Butter3/Bone-5"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-5") update_rotation = false update_scale = false +[node name="Joint2D-Bone-5-Bone-18" type="PinJoint2D" parent="Butter3/Bone-5"] +visible = false +rotation = -1.10715 +node_a = NodePath("..") +node_b = NodePath("../../Bone-18") +softness = 100.0 + [node name="Joint2D-Bone-5-Bone-1" type="PinJoint2D" parent="Butter3/Bone-5"] visible = false -rotation = -3.61651 +rotation = -3.56427 node_a = NodePath("..") node_b = NodePath("../../Bone-1") softness = 100.0 [node name="Joint2D-Bone-5-Bone-4" type="PinJoint2D" parent="Butter3/Bone-5"] visible = false -rotation = -2.92746 +rotation = -2.95379 node_a = NodePath("..") node_b = NodePath("../../Bone-4") softness = 100.0 [node name="Joint2D-Bone-5-Bone-8" type="PinJoint2D" parent="Butter3/Bone-5"] visible = false -rotation = -2.23219 +rotation = -2.31087 node_a = NodePath("..") node_b = NodePath("../../Bone-8") softness = 100.0 [node name="Joint2D-Bone-5-Bone-9" type="PinJoint2D" parent="Butter3/Bone-5"] visible = false -rotation = -1.55278 +rotation = -1.65736 node_a = NodePath("..") node_b = NodePath("../../Bone-9") softness = 100.0 -[node name="Joint2D-Bone-5-Bone-19" type="PinJoint2D" parent="Butter3/Bone-5"] -visible = false -rotation = -0.977532 -node_a = NodePath("..") -node_b = NodePath("../../Bone-19") -softness = 100.0 - -[node name="Bone-6" parent="Butter3" instance=ExtResource("3_6ern4")] -position = Vector2(55.7376, 28.3423) -mass = 0.05 +[node name="Bone-6" type="RigidBody2D" parent="Butter3" instance=ExtResource("3_6ern4")] +position = Vector2(54, 22.5) +input_pickable = true +mass = 0.0526316 physics_material_override = ExtResource("5_221ya") +script = ExtResource("11_tqnjl") +metadata/idx = 6 metadata/bone_name = &"Bone-6" [node name="CircleShape2D" type="CollisionShape2D" parent="Butter3/Bone-6"] -shape = SubResource("CircleShape2D_nnd07") +shape = SubResource("CircleShape2D_faxuv") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Butter3/Bone-6"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-6") update_rotation = false update_scale = false +[node name="Joint2D-Bone-6-Bone-10" type="PinJoint2D" parent="Butter3/Bone-6"] +visible = false +rotation = -1.60079 +node_a = NodePath("..") +node_b = NodePath("../../Bone-10") +softness = 100.0 + [node name="Joint2D-Bone-6-Bone-2" type="PinJoint2D" parent="Butter3/Bone-6"] visible = false -rotation = -4.67177 +rotation = 1.32582 node_a = NodePath("..") node_b = NodePath("../../Bone-2") softness = 100.0 [node name="Joint2D-Bone-6-Bone-3" type="PinJoint2D" parent="Butter3/Bone-6"] visible = false -rotation = 0.824017 +rotation = 0.686622 node_a = NodePath("..") node_b = NodePath("../../Bone-3") softness = 100.0 [node name="Joint2D-Bone-6-Bone-7" type="PinJoint2D" parent="Butter3/Bone-6"] visible = false -rotation = 0.0144326 node_a = NodePath("..") node_b = NodePath("../../Bone-7") softness = 100.0 -[node name="Joint2D-Bone-6-Bone-10" type="PinJoint2D" parent="Butter3/Bone-6"] -visible = false -rotation = -2.49098 -node_a = NodePath("..") -node_b = NodePath("../../Bone-10") -softness = 100.0 - [node name="Joint2D-Bone-6-Bone-11" type="PinJoint2D" parent="Butter3/Bone-6"] visible = false -rotation = -1.50208 +rotation = -0.686622 node_a = NodePath("..") node_b = NodePath("../../Bone-11") softness = 100.0 -[node name="Joint2D-Bone-6-Bone-12" type="PinJoint2D" parent="Butter3/Bone-6"] -visible = false -rotation = -0.736969 -node_a = NodePath("..") -node_b = NodePath("../../Bone-12") -softness = 100.0 - -[node name="Bone-7" parent="Butter3" instance=ExtResource("3_6ern4")] -position = Vector2(55.3545, 54.8831) -mass = 0.05 +[node name="Bone-7" type="RigidBody2D" parent="Butter3" instance=ExtResource("3_6ern4")] +position = Vector2(54, 53) +input_pickable = true +mass = 0.0526316 physics_material_override = ExtResource("5_221ya") +script = ExtResource("11_tqnjl") +metadata/idx = 7 metadata/bone_name = &"Bone-7" [node name="CircleShape2D" type="CollisionShape2D" parent="Butter3/Bone-7"] -shape = SubResource("CircleShape2D_nnd07") +shape = SubResource("CircleShape2D_faxuv") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Butter3/Bone-7"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-7") update_rotation = false update_scale = false [node name="Joint2D-Bone-7-Bone-2" type="PinJoint2D" parent="Butter3/Bone-7"] visible = false -rotation = -3.8423 +rotation = -3.94222 node_a = NodePath("..") node_b = NodePath("../../Bone-2") softness = 100.0 [node name="Joint2D-Bone-7-Bone-3" type="PinJoint2D" parent="Butter3/Bone-7"] visible = false -rotation = -4.60907 +rotation = 1.5708 node_a = NodePath("..") node_b = NodePath("../../Bone-3") softness = 100.0 -[node name="Joint2D-Bone-7-Bone-4" type="PinJoint2D" parent="Butter3/Bone-7"] +[node name="Joint2D-Bone-7-Bone-6" type="PinJoint2D" parent="Butter3/Bone-7"] visible = false -rotation = 0.850593 +rotation = -3.14159 node_a = NodePath("..") -node_b = NodePath("../../Bone-4") +node_b = NodePath("../../Bone-6") softness = 100.0 -[node name="Joint2D-Bone-7-Bone-6" type="PinJoint2D" parent="Butter3/Bone-7"] +[node name="Joint2D-Bone-7-Bone-4" type="PinJoint2D" parent="Butter3/Bone-7"] visible = false -rotation = -3.12716 +rotation = 0.785398 node_a = NodePath("..") -node_b = NodePath("../../Bone-6") +node_b = NodePath("../../Bone-4") softness = 100.0 [node name="Joint2D-Bone-7-Bone-8" type="PinJoint2D" parent="Butter3/Bone-7"] visible = false -rotation = 0.0344938 node_a = NodePath("..") node_b = NodePath("../../Bone-8") softness = 100.0 -[node name="Joint2D-Bone-7-Bone-11" type="PinJoint2D" parent="Butter3/Bone-7"] +[node name="Joint2D-Bone-7-Bone-10" type="PinJoint2D" parent="Butter3/Bone-7"] visible = false -rotation = -2.34037 +rotation = -2.46685 node_a = NodePath("..") -node_b = NodePath("../../Bone-11") +node_b = NodePath("../../Bone-10") softness = 100.0 -[node name="Joint2D-Bone-7-Bone-12" type="PinJoint2D" parent="Butter3/Bone-7"] +[node name="Joint2D-Bone-7-Bone-11" type="PinJoint2D" parent="Butter3/Bone-7"] visible = false -rotation = -1.59133 +rotation = -1.5708 node_a = NodePath("..") -node_b = NodePath("../../Bone-12") +node_b = NodePath("../../Bone-11") softness = 100.0 -[node name="Joint2D-Bone-7-Bone-13" type="PinJoint2D" parent="Butter3/Bone-7"] +[node name="Joint2D-Bone-7-Bone-12" type="PinJoint2D" parent="Butter3/Bone-7"] visible = false -rotation = -0.823625 +rotation = -0.785398 node_a = NodePath("..") -node_b = NodePath("../../Bone-13") +node_b = NodePath("../../Bone-12") softness = 100.0 -[node name="Bone-8" parent="Butter3" instance=ExtResource("3_6ern4")] -position = Vector2(54.5183, 79.1141) -mass = 0.05 +[node name="Bone-8" type="RigidBody2D" parent="Butter3" instance=ExtResource("3_6ern4")] +position = Vector2(54, 78) +input_pickable = true +mass = 0.0526316 physics_material_override = ExtResource("5_221ya") +script = ExtResource("11_tqnjl") +metadata/idx = 8 metadata/bone_name = &"Bone-8" [node name="CircleShape2D" type="CollisionShape2D" parent="Butter3/Bone-8"] -shape = SubResource("CircleShape2D_nnd07") +shape = SubResource("CircleShape2D_faxuv") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Butter3/Bone-8"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-8") update_rotation = false update_scale = false [node name="Joint2D-Bone-8-Bone-3" type="PinJoint2D" parent="Butter3/Bone-8"] visible = false -rotation = -3.88303 +rotation = -3.92699 node_a = NodePath("..") node_b = NodePath("../../Bone-3") softness = 100.0 [node name="Joint2D-Bone-8-Bone-4" type="PinJoint2D" parent="Butter3/Bone-8"] visible = false -rotation = -4.65531 +rotation = 1.5708 node_a = NodePath("..") node_b = NodePath("../../Bone-4") softness = 100.0 -[node name="Joint2D-Bone-8-Bone-5" type="PinJoint2D" parent="Butter3/Bone-8"] +[node name="Joint2D-Bone-8-Bone-7" type="PinJoint2D" parent="Butter3/Bone-8"] visible = false -rotation = 0.909408 +rotation = -3.14159 node_a = NodePath("..") -node_b = NodePath("../../Bone-5") +node_b = NodePath("../../Bone-7") softness = 100.0 -[node name="Joint2D-Bone-8-Bone-7" type="PinJoint2D" parent="Butter3/Bone-8"] +[node name="Joint2D-Bone-8-Bone-5" type="PinJoint2D" parent="Butter3/Bone-8"] visible = false -rotation = -3.1071 +rotation = 0.830723 node_a = NodePath("..") -node_b = NodePath("../../Bone-7") +node_b = NodePath("../../Bone-5") softness = 100.0 [node name="Joint2D-Bone-8-Bone-9" type="PinJoint2D" parent="Butter3/Bone-8"] visible = false -rotation = 0.0469652 node_a = NodePath("..") node_b = NodePath("../../Bone-9") softness = 100.0 -[node name="Joint2D-Bone-8-Bone-12" type="PinJoint2D" parent="Butter3/Bone-8"] +[node name="Joint2D-Bone-8-Bone-11" type="PinJoint2D" parent="Butter3/Bone-8"] visible = false -rotation = -2.35349 +rotation = -2.35619 node_a = NodePath("..") -node_b = NodePath("../../Bone-12") +node_b = NodePath("../../Bone-11") softness = 100.0 -[node name="Joint2D-Bone-8-Bone-13" type="PinJoint2D" parent="Butter3/Bone-8"] +[node name="Joint2D-Bone-8-Bone-12" type="PinJoint2D" parent="Butter3/Bone-8"] visible = false -rotation = -1.58598 +rotation = -1.5708 node_a = NodePath("..") -node_b = NodePath("../../Bone-13") +node_b = NodePath("../../Bone-12") softness = 100.0 -[node name="Joint2D-Bone-8-Bone-14" type="PinJoint2D" parent="Butter3/Bone-8"] +[node name="Joint2D-Bone-8-Bone-13" type="PinJoint2D" parent="Butter3/Bone-8"] visible = false -rotation = -0.722473 +rotation = -0.69066 node_a = NodePath("..") -node_b = NodePath("../../Bone-14") +node_b = NodePath("../../Bone-13") softness = 100.0 -[node name="Bone-9" parent="Butter3" instance=ExtResource("3_6ern4")] -position = Vector2(53.3725, 103.495) -mass = 0.05 +[node name="Bone-9" type="RigidBody2D" parent="Butter3" instance=ExtResource("3_6ern4")] +position = Vector2(54, 103) +input_pickable = true +mass = 0.0526316 physics_material_override = ExtResource("5_221ya") +script = ExtResource("11_tqnjl") +metadata/idx = 9 metadata/bone_name = &"Bone-9" [node name="CircleShape2D" type="CollisionShape2D" parent="Butter3/Bone-9"] -shape = SubResource("CircleShape2D_nnd07") +shape = SubResource("CircleShape2D_faxuv") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Butter3/Bone-9"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-9") update_rotation = false update_scale = false [node name="Joint2D-Bone-9-Bone-4" type="PinJoint2D" parent="Butter3/Bone-9"] visible = false -rotation = -3.89046 +rotation = -3.92699 node_a = NodePath("..") node_b = NodePath("../../Bone-4") softness = 100.0 [node name="Joint2D-Bone-9-Bone-5" type="PinJoint2D" parent="Butter3/Bone-9"] visible = false -rotation = -4.69438 +rotation = 1.48424 node_a = NodePath("..") node_b = NodePath("../../Bone-5") softness = 100.0 [node name="Joint2D-Bone-9-Bone-8" type="PinJoint2D" parent="Butter3/Bone-9"] visible = false -rotation = -3.09463 +rotation = -3.14159 node_a = NodePath("..") node_b = NodePath("../../Bone-8") softness = 100.0 -[node name="Joint2D-Bone-9-Bone-13" type="PinJoint2D" parent="Butter3/Bone-9"] +[node name="Joint2D-Bone-9-Bone-18" type="PinJoint2D" parent="Butter3/Bone-9"] visible = false -rotation = -2.3006 node_a = NodePath("..") -node_b = NodePath("../../Bone-13") +node_b = NodePath("../../Bone-18") softness = 100.0 -[node name="Joint2D-Bone-9-Bone-14" type="PinJoint2D" parent="Butter3/Bone-9"] +[node name="Joint2D-Bone-9-Bone-12" type="PinJoint2D" parent="Butter3/Bone-9"] visible = false -rotation = -1.43733 +rotation = -2.35619 node_a = NodePath("..") -node_b = NodePath("../../Bone-14") +node_b = NodePath("../../Bone-12") softness = 100.0 -[node name="Joint2D-Bone-9-Bone-19" type="PinJoint2D" parent="Butter3/Bone-9"] +[node name="Joint2D-Bone-9-Bone-13" type="PinJoint2D" parent="Butter3/Bone-9"] visible = false -rotation = 0.259457 +rotation = -1.3638 node_a = NodePath("..") -node_b = NodePath("../../Bone-19") +node_b = NodePath("../../Bone-13") softness = 100.0 -[node name="Bone-10" parent="Butter3" instance=ExtResource("3_6ern4")] -position = Vector2(69.1836, 10.6773) -mass = 0.05 +[node name="Bone-10" type="RigidBody2D" parent="Butter3" instance=ExtResource("3_6ern4")] +position = Vector2(79, 21.75) +input_pickable = true +mass = 0.0526316 physics_material_override = ExtResource("5_221ya") +script = ExtResource("11_tqnjl") +metadata/idx = 10 metadata/bone_name = &"Bone-10" [node name="CircleShape2D" type="CollisionShape2D" parent="Butter3/Bone-10"] -shape = SubResource("CircleShape2D_nnd07") +shape = SubResource("CircleShape2D_faxuv") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Butter3/Bone-10"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-10") update_rotation = false update_scale = false [node name="Joint2D-Bone-10-Bone-6" type="PinJoint2D" parent="Butter3/Bone-10"] visible = false -rotation = 0.650612 +rotation = 1.54081 node_a = NodePath("..") node_b = NodePath("../../Bone-6") softness = 100.0 +[node name="Joint2D-Bone-10-Bone-7" type="PinJoint2D" parent="Butter3/Bone-10"] +visible = false +rotation = 0.674741 +node_a = NodePath("..") +node_b = NodePath("../../Bone-7") +softness = 100.0 + [node name="Joint2D-Bone-10-Bone-11" type="PinJoint2D" parent="Butter3/Bone-10"] visible = false -rotation = -0.545454 node_a = NodePath("..") node_b = NodePath("../../Bone-11") softness = 100.0 -[node name="Bone-11" parent="Butter3" instance=ExtResource("3_6ern4")] -position = Vector2(80.9573, 30.078) -mass = 0.05 +[node name="Joint2D-Bone-10-Bone-14" type="PinJoint2D" parent="Butter3/Bone-10"] +visible = false +rotation = -1.2394 +node_a = NodePath("..") +node_b = NodePath("../../Bone-14") +softness = 100.0 + +[node name="Joint2D-Bone-10-Bone-15" type="PinJoint2D" parent="Butter3/Bone-10"] +visible = false +rotation = -0.63965 +node_a = NodePath("..") +node_b = NodePath("../../Bone-15") +softness = 100.0 + +[node name="Bone-11" type="RigidBody2D" parent="Butter3" instance=ExtResource("3_6ern4")] +position = Vector2(79, 53) +input_pickable = true +mass = 0.0526316 physics_material_override = ExtResource("5_221ya") +script = ExtResource("11_tqnjl") +metadata/idx = 11 metadata/bone_name = &"Bone-11" [node name="CircleShape2D" type="CollisionShape2D" parent="Butter3/Bone-11"] -shape = SubResource("CircleShape2D_nnd07") +shape = SubResource("CircleShape2D_faxuv") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Butter3/Bone-11"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-11") update_rotation = false update_scale = false [node name="Joint2D-Bone-11-Bone-6" type="PinJoint2D" parent="Butter3/Bone-11"] visible = false -rotation = -4.64367 +rotation = -3.82821 node_a = NodePath("..") node_b = NodePath("../../Bone-6") softness = 100.0 [node name="Joint2D-Bone-11-Bone-7" type="PinJoint2D" parent="Butter3/Bone-11"] visible = false -rotation = 0.80122 +rotation = 1.5708 node_a = NodePath("..") node_b = NodePath("../../Bone-7") softness = 100.0 [node name="Joint2D-Bone-11-Bone-10" type="PinJoint2D" parent="Butter3/Bone-11"] visible = false -rotation = -3.68705 +rotation = -3.14159 node_a = NodePath("..") node_b = NodePath("../../Bone-10") softness = 100.0 -[node name="Joint2D-Bone-11-Bone-12" type="PinJoint2D" parent="Butter3/Bone-11"] +[node name="Joint2D-Bone-11-Bone-8" type="PinJoint2D" parent="Butter3/Bone-11"] visible = false -rotation = 0.0649149 +rotation = 0.785398 node_a = NodePath("..") -node_b = NodePath("../../Bone-12") +node_b = NodePath("../../Bone-8") softness = 100.0 -[node name="Joint2D-Bone-11-Bone-15" type="PinJoint2D" parent="Butter3/Bone-11"] +[node name="Joint2D-Bone-11-Bone-12" type="PinJoint2D" parent="Butter3/Bone-11"] +visible = false +node_a = NodePath("..") +node_b = NodePath("../../Bone-12") +softness = 100.0 + +[node name="Joint2D-Bone-11-Bone-14" type="PinJoint2D" parent="Butter3/Bone-11"] +visible = false +rotation = -2.35619 +node_a = NodePath("..") +node_b = NodePath("../../Bone-14") +softness = 100.0 + +[node name="Joint2D-Bone-11-Bone-15" type="PinJoint2D" parent="Butter3/Bone-11"] visible = false -rotation = -1.51807 +rotation = -1.5708 node_a = NodePath("..") node_b = NodePath("../../Bone-15") softness = 100.0 [node name="Joint2D-Bone-11-Bone-16" type="PinJoint2D" parent="Butter3/Bone-11"] visible = false -rotation = -0.749219 +rotation = -0.770171 node_a = NodePath("..") node_b = NodePath("../../Bone-16") softness = 100.0 -[node name="Bone-12" parent="Butter3" instance=ExtResource("3_6ern4")] -position = Vector2(79.3768, 54.3897) -mass = 0.05 +[node name="Bone-12" type="RigidBody2D" parent="Butter3" instance=ExtResource("3_6ern4")] +position = Vector2(79, 78) +input_pickable = true +mass = 0.0526316 physics_material_override = ExtResource("5_221ya") +script = ExtResource("11_tqnjl") +metadata/idx = 12 metadata/bone_name = &"Bone-12" [node name="CircleShape2D" type="CollisionShape2D" parent="Butter3/Bone-12"] -shape = SubResource("CircleShape2D_nnd07") +shape = SubResource("CircleShape2D_faxuv") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Butter3/Bone-12"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-12") update_rotation = false update_scale = false -[node name="Joint2D-Bone-12-Bone-6" type="PinJoint2D" parent="Butter3/Bone-12"] -visible = false -rotation = -3.87856 -node_a = NodePath("..") -node_b = NodePath("../../Bone-6") -softness = 100.0 - [node name="Joint2D-Bone-12-Bone-7" type="PinJoint2D" parent="Butter3/Bone-12"] visible = false -rotation = 1.55026 +rotation = -3.92699 node_a = NodePath("..") node_b = NodePath("../../Bone-7") softness = 100.0 [node name="Joint2D-Bone-12-Bone-8" type="PinJoint2D" parent="Butter3/Bone-12"] visible = false -rotation = 0.788103 +rotation = 1.5708 node_a = NodePath("..") node_b = NodePath("../../Bone-8") softness = 100.0 [node name="Joint2D-Bone-12-Bone-11" type="PinJoint2D" parent="Butter3/Bone-12"] visible = false -rotation = -3.07668 +rotation = -3.14159 node_a = NodePath("..") node_b = NodePath("../../Bone-11") softness = 100.0 +[node name="Joint2D-Bone-12-Bone-9" type="PinJoint2D" parent="Butter3/Bone-12"] +visible = false +rotation = 0.785398 +node_a = NodePath("..") +node_b = NodePath("../../Bone-9") +softness = 100.0 + [node name="Joint2D-Bone-12-Bone-13" type="PinJoint2D" parent="Butter3/Bone-12"] visible = false -rotation = -0.0698014 node_a = NodePath("..") node_b = NodePath("../../Bone-13") softness = 100.0 [node name="Joint2D-Bone-12-Bone-15" type="PinJoint2D" parent="Butter3/Bone-12"] visible = false -rotation = -2.35161 +rotation = -2.39245 node_a = NodePath("..") node_b = NodePath("../../Bone-15") softness = 100.0 [node name="Joint2D-Bone-12-Bone-16" type="PinJoint2D" parent="Butter3/Bone-12"] visible = false -rotation = -1.56748 +rotation = -1.5708 node_a = NodePath("..") node_b = NodePath("../../Bone-16") softness = 100.0 [node name="Joint2D-Bone-12-Bone-17" type="PinJoint2D" parent="Butter3/Bone-12"] visible = false -rotation = -0.803699 +rotation = -0.785398 node_a = NodePath("..") node_b = NodePath("../../Bone-17") softness = 100.0 -[node name="Bone-13" parent="Butter3" instance=ExtResource("3_6ern4")] -position = Vector2(81.0773, 78.7108) -mass = 0.05 +[node name="Bone-13" type="RigidBody2D" parent="Butter3" instance=ExtResource("3_6ern4")] +position = Vector2(79, 108.25) +input_pickable = true +mass = 0.0526316 physics_material_override = ExtResource("5_221ya") +script = ExtResource("11_tqnjl") +metadata/idx = 13 metadata/bone_name = &"Bone-13" [node name="CircleShape2D" type="CollisionShape2D" parent="Butter3/Bone-13"] -shape = SubResource("CircleShape2D_nnd07") +shape = SubResource("CircleShape2D_faxuv") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Butter3/Bone-13"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-13") update_rotation = false update_scale = false -[node name="Joint2D-Bone-13-Bone-7" type="PinJoint2D" parent="Butter3/Bone-13"] +[node name="Joint2D-Bone-13-Bone-18" type="PinJoint2D" parent="Butter3/Bone-13"] visible = false -rotation = -3.96522 +rotation = 1.10715 node_a = NodePath("..") -node_b = NodePath("../../Bone-7") +node_b = NodePath("../../Bone-18") +softness = 100.0 + +[node name="Joint2D-Bone-13-Bone-17" type="PinJoint2D" parent="Butter3/Bone-13"] +visible = false +rotation = -1.81335 +node_a = NodePath("..") +node_b = NodePath("../../Bone-17") softness = 100.0 [node name="Joint2D-Bone-13-Bone-8" type="PinJoint2D" parent="Butter3/Bone-13"] visible = false -rotation = 1.55561 +rotation = -3.83225 node_a = NodePath("..") node_b = NodePath("../../Bone-8") softness = 100.0 [node name="Joint2D-Bone-13-Bone-9" type="PinJoint2D" parent="Butter3/Bone-13"] visible = false -rotation = 0.840993 +rotation = -4.5054 node_a = NodePath("..") node_b = NodePath("../../Bone-9") softness = 100.0 [node name="Joint2D-Bone-13-Bone-12" type="PinJoint2D" parent="Butter3/Bone-13"] visible = false -rotation = -3.21139 +rotation = -3.14159 node_a = NodePath("..") node_b = NodePath("../../Bone-12") softness = 100.0 -[node name="Joint2D-Bone-13-Bone-14" type="PinJoint2D" parent="Butter3/Bone-13"] -visible = false -rotation = 0.0717928 -node_a = NodePath("..") -node_b = NodePath("../../Bone-14") -softness = 100.0 - [node name="Joint2D-Bone-13-Bone-16" type="PinJoint2D" parent="Butter3/Bone-13"] visible = false -rotation = -2.3919 +rotation = -2.46584 node_a = NodePath("..") node_b = NodePath("../../Bone-16") softness = 100.0 -[node name="Joint2D-Bone-13-Bone-17" type="PinJoint2D" parent="Butter3/Bone-13"] -visible = false -rotation = -1.52834 -node_a = NodePath("..") -node_b = NodePath("../../Bone-17") -softness = 100.0 - -[node name="Joint2D-Bone-13-Bone-18" type="PinJoint2D" parent="Butter3/Bone-13"] -visible = false -rotation = -0.71218 -node_a = NodePath("..") -node_b = NodePath("../../Bone-18") -softness = 100.0 - -[node name="Bone-14" parent="Butter3" instance=ExtResource("3_6ern4")] -position = Vector2(79.047, 106.942) -mass = 0.05 +[node name="Bone-14" type="RigidBody2D" parent="Butter3" instance=ExtResource("3_6ern4")] +position = Vector2(102.25, 29.75) +input_pickable = true +mass = 0.0526316 physics_material_override = ExtResource("5_221ya") +script = ExtResource("11_tqnjl") +metadata/idx = 14 metadata/bone_name = &"Bone-14" [node name="CircleShape2D" type="CollisionShape2D" parent="Butter3/Bone-14"] -shape = SubResource("CircleShape2D_nnd07") +shape = SubResource("CircleShape2D_faxuv") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Butter3/Bone-14"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-14") update_rotation = false update_scale = false -[node name="Joint2D-Bone-14-Bone-8" type="PinJoint2D" parent="Butter3/Bone-14"] -visible = false -rotation = -3.86407 -node_a = NodePath("..") -node_b = NodePath("../../Bone-8") -softness = 100.0 - -[node name="Joint2D-Bone-14-Bone-9" type="PinJoint2D" parent="Butter3/Bone-14"] +[node name="Joint2D-Bone-14-Bone-10" type="PinJoint2D" parent="Butter3/Bone-14"] visible = false -rotation = -4.57892 +rotation = -4.38099 node_a = NodePath("..") -node_b = NodePath("../../Bone-9") -softness = 100.0 - -[node name="Joint2D-Bone-14-Bone-13" type="PinJoint2D" parent="Butter3/Bone-14"] -visible = false -rotation = -3.0698 -node_a = NodePath("..") -node_b = NodePath("../../Bone-13") -softness = 100.0 - -[node name="Joint2D-Bone-14-Bone-17" type="PinJoint2D" parent="Butter3/Bone-14"] -visible = false -rotation = -2.36628 -node_a = NodePath("..") -node_b = NodePath("../../Bone-17") +node_b = NodePath("../../Bone-10") softness = 100.0 -[node name="Joint2D-Bone-14-Bone-18" type="PinJoint2D" parent="Butter3/Bone-14"] +[node name="Joint2D-Bone-14-Bone-11" type="PinJoint2D" parent="Butter3/Bone-14"] visible = false -rotation = -1.72662 +rotation = 0.785398 node_a = NodePath("..") -node_b = NodePath("../../Bone-18") +node_b = NodePath("../../Bone-11") softness = 100.0 -[node name="Joint2D-Bone-14-Bone-19" type="PinJoint2D" parent="Butter3/Bone-14"] +[node name="Joint2D-Bone-14-Bone-15" type="PinJoint2D" parent="Butter3/Bone-14"] visible = false -rotation = 1.16309 node_a = NodePath("..") -node_b = NodePath("../../Bone-19") +node_b = NodePath("../../Bone-15") softness = 100.0 -[node name="Bone-15" parent="Butter3" instance=ExtResource("3_6ern4")] -position = Vector2(102.751, 31.2282) -mass = 0.05 +[node name="Bone-15" type="RigidBody2D" parent="Butter3" instance=ExtResource("3_6ern4")] +position = Vector2(102.25, 53) +input_pickable = true +mass = 0.0526316 physics_material_override = ExtResource("5_221ya") +script = ExtResource("11_tqnjl") +metadata/idx = 15 metadata/bone_name = &"Bone-15" [node name="CircleShape2D" type="CollisionShape2D" parent="Butter3/Bone-15"] -shape = SubResource("CircleShape2D_nnd07") +shape = SubResource("CircleShape2D_faxuv") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Butter3/Bone-15"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-15") update_rotation = false update_scale = false +[node name="Joint2D-Bone-15-Bone-10" type="PinJoint2D" parent="Butter3/Bone-15"] +visible = false +rotation = -3.78124 +node_a = NodePath("..") +node_b = NodePath("../../Bone-10") +softness = 100.0 + [node name="Joint2D-Bone-15-Bone-11" type="PinJoint2D" parent="Butter3/Bone-15"] visible = false -rotation = -4.65966 +rotation = 1.5708 node_a = NodePath("..") node_b = NodePath("../../Bone-11") softness = 100.0 +[node name="Joint2D-Bone-15-Bone-14" type="PinJoint2D" parent="Butter3/Bone-15"] +visible = false +rotation = -3.14159 +node_a = NodePath("..") +node_b = NodePath("../../Bone-14") +softness = 100.0 + [node name="Joint2D-Bone-15-Bone-12" type="PinJoint2D" parent="Butter3/Bone-15"] visible = false -rotation = 0.789978 +rotation = 0.749145 node_a = NodePath("..") node_b = NodePath("../../Bone-12") softness = 100.0 [node name="Joint2D-Bone-15-Bone-16" type="PinJoint2D" parent="Butter3/Bone-15"] visible = false -rotation = -0.0384482 +rotation = -0.0399787 node_a = NodePath("..") node_b = NodePath("../../Bone-16") softness = 100.0 -[node name="Bone-16" parent="Butter3" instance=ExtResource("3_6ern4")] -position = Vector2(103.646, 54.4703) -mass = 0.05 +[node name="Bone-16" type="RigidBody2D" parent="Butter3" instance=ExtResource("3_6ern4")] +position = Vector2(103.25, 78) +input_pickable = true +mass = 0.0526316 physics_material_override = ExtResource("5_221ya") +script = ExtResource("11_tqnjl") +metadata/idx = 16 metadata/bone_name = &"Bone-16" [node name="CircleShape2D" type="CollisionShape2D" parent="Butter3/Bone-16"] -shape = SubResource("CircleShape2D_nnd07") +shape = SubResource("CircleShape2D_faxuv") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Butter3/Bone-16"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-16") update_rotation = false update_scale = false [node name="Joint2D-Bone-16-Bone-11" type="PinJoint2D" parent="Butter3/Bone-16"] visible = false -rotation = -3.89081 +rotation = -3.91176 node_a = NodePath("..") node_b = NodePath("../../Bone-11") softness = 100.0 [node name="Joint2D-Bone-16-Bone-12" type="PinJoint2D" parent="Butter3/Bone-16"] visible = false -rotation = -4.70907 +rotation = 1.5708 node_a = NodePath("..") node_b = NodePath("../../Bone-12") softness = 100.0 -[node name="Joint2D-Bone-16-Bone-13" type="PinJoint2D" parent="Butter3/Bone-16"] +[node name="Joint2D-Bone-16-Bone-15" type="PinJoint2D" parent="Butter3/Bone-16"] visible = false -rotation = 0.749689 +rotation = -3.18157 node_a = NodePath("..") -node_b = NodePath("../../Bone-13") +node_b = NodePath("../../Bone-15") softness = 100.0 -[node name="Joint2D-Bone-16-Bone-15" type="PinJoint2D" parent="Butter3/Bone-16"] +[node name="Joint2D-Bone-16-Bone-13" type="PinJoint2D" parent="Butter3/Bone-16"] visible = false -rotation = -3.18004 +rotation = 0.675748 node_a = NodePath("..") -node_b = NodePath("../../Bone-15") +node_b = NodePath("../../Bone-13") softness = 100.0 [node name="Joint2D-Bone-16-Bone-17" type="PinJoint2D" parent="Butter3/Bone-16"] visible = false -rotation = -0.0806511 node_a = NodePath("..") node_b = NodePath("../../Bone-17") softness = 100.0 -[node name="Bone-17" parent="Butter3" instance=ExtResource("3_6ern4")] -position = Vector2(105.689, 79.7563) -mass = 0.05 +[node name="Bone-17" type="RigidBody2D" parent="Butter3" instance=ExtResource("3_6ern4")] +position = Vector2(103.25, 102.25) +input_pickable = true +mass = 0.0526316 physics_material_override = ExtResource("5_221ya") +script = ExtResource("11_tqnjl") +metadata/idx = 17 metadata/bone_name = &"Bone-17" [node name="CircleShape2D" type="CollisionShape2D" parent="Butter3/Bone-17"] -shape = SubResource("CircleShape2D_nnd07") +shape = SubResource("CircleShape2D_faxuv") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Butter3/Bone-17"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-17") update_rotation = false update_scale = false -[node name="Joint2D-Bone-17-Bone-12" type="PinJoint2D" parent="Butter3/Bone-17"] -visible = false -rotation = -3.94529 -node_a = NodePath("..") -node_b = NodePath("../../Bone-12") -softness = 100.0 - [node name="Joint2D-Bone-17-Bone-13" type="PinJoint2D" parent="Butter3/Bone-17"] visible = false -rotation = -4.66994 +rotation = 1.32824 node_a = NodePath("..") node_b = NodePath("../../Bone-13") softness = 100.0 -[node name="Joint2D-Bone-17-Bone-14" type="PinJoint2D" parent="Butter3/Bone-17"] +[node name="Joint2D-Bone-17-Bone-12" type="PinJoint2D" parent="Butter3/Bone-17"] visible = false -rotation = 0.775311 +rotation = -3.92699 node_a = NodePath("..") -node_b = NodePath("../../Bone-14") +node_b = NodePath("../../Bone-12") softness = 100.0 [node name="Joint2D-Bone-17-Bone-16" type="PinJoint2D" parent="Butter3/Bone-17"] visible = false -rotation = -3.22224 +rotation = -3.14159 node_a = NodePath("..") node_b = NodePath("../../Bone-16") softness = 100.0 -[node name="Joint2D-Bone-17-Bone-18" type="PinJoint2D" parent="Butter3/Bone-17"] -visible = false -rotation = 0.14319 -node_a = NodePath("..") -node_b = NodePath("../../Bone-18") -softness = 100.0 - -[node name="Bone-18" parent="Butter3" instance=ExtResource("3_6ern4")] -position = Vector2(102.296, 103.289) -mass = 0.05 +[node name="Bone-18" type="RigidBody2D" parent="Butter3" instance=ExtResource("3_6ern4")] +position = Vector2(54, 120.75) +input_pickable = true +mass = 0.0526316 physics_material_override = ExtResource("5_221ya") +script = ExtResource("11_tqnjl") +metadata/idx = 18 metadata/bone_name = &"Bone-18" [node name="CircleShape2D" type="CollisionShape2D" parent="Butter3/Bone-18"] -shape = SubResource("CircleShape2D_nnd07") +shape = SubResource("CircleShape2D_faxuv") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Butter3/Bone-18"] -remote_path = NodePath("../../Skeleton2D/Bone-18") -update_rotation = false -update_scale = false - -[node name="Joint2D-Bone-18-Bone-13" type="PinJoint2D" parent="Butter3/Bone-18"] -visible = false -rotation = -3.85377 -node_a = NodePath("..") -node_b = NodePath("../../Bone-13") -softness = 100.0 - -[node name="Joint2D-Bone-18-Bone-14" type="PinJoint2D" parent="Butter3/Bone-18"] -visible = false -rotation = 1.41497 -node_a = NodePath("..") -node_b = NodePath("../../Bone-14") -softness = 100.0 - -[node name="Joint2D-Bone-18-Bone-17" type="PinJoint2D" parent="Butter3/Bone-18"] visible = false -rotation = -2.9984 -node_a = NodePath("..") -node_b = NodePath("../../Bone-17") -softness = 100.0 - -[node name="Bone-19" parent="Butter3" instance=ExtResource("3_6ern4")] -position = Vector2(49.0143, 119.913) -mass = 0.05 -physics_material_override = ExtResource("5_221ya") -metadata/bone_name = &"Bone-19" - -[node name="CircleShape2D" type="CollisionShape2D" parent="Butter3/Bone-19"] -shape = SubResource("CircleShape2D_nnd07") - -[node name="RemoteTransform2D" type="RemoteTransform2D" parent="Butter3/Bone-19"] -remote_path = NodePath("../../Skeleton2D/Bone-19") +remote_path = NodePath("../../Skeleton2D/Bone-18") update_rotation = false update_scale = false -[node name="Joint2D-Bone-19-Bone-5" type="PinJoint2D" parent="Butter3/Bone-19"] +[node name="Joint2D-Bone-18-Bone-5" type="PinJoint2D" parent="Butter3/Bone-18"] visible = false -rotation = -4.11912 +rotation = -4.24874 node_a = NodePath("..") node_b = NodePath("../../Bone-5") softness = 100.0 -[node name="Joint2D-Bone-19-Bone-9" type="PinJoint2D" parent="Butter3/Bone-19"] +[node name="Joint2D-Bone-18-Bone-13" type="PinJoint2D" parent="Butter3/Bone-18"] visible = false -rotation = -2.88214 +rotation = -2.03444 node_a = NodePath("..") -node_b = NodePath("../../Bone-9") +node_b = NodePath("../../Bone-13") softness = 100.0 -[node name="Joint2D-Bone-19-Bone-14" type="PinJoint2D" parent="Butter3/Bone-19"] +[node name="Joint2D-Bone-18-Bone-9" type="PinJoint2D" parent="Butter3/Bone-18"] visible = false -rotation = -1.9785 +rotation = -3.14159 node_a = NodePath("..") -node_b = NodePath("../../Bone-14") +node_b = NodePath("../../Bone-9") softness = 100.0 [node name="Butter4" type="Polygon2D" parent="."] @@ -14816,1285 +15396,1337 @@ z_index = 9 position = Vector2(596, -103) texture = ExtResource("4_xackp") skeleton = NodePath("Skeleton2D") -polygon = PackedVector2Array(70, 4, 67, 4, 65, 6, 65, 7, 61, 7, 60, 8, 60, 9, 58, 10, 55, 10, 53, 12, 51, 12, 49, 15, 44, 15, 39, 19, 34, 19, 29, 23, 24, 23, 22, 25, 22, 26, 14, 30, 14, 31, 10, 31, 6, 34, 4, 34, 5, 37, 6, 37, 6, 42, 7, 42, 6, 99, 6, 105, 11, 108, 11, 109, 14, 110, 18, 110, 22, 113, 22, 114, 26, 114, 30, 117, 30, 118, 36, 118, 42, 121, 42, 122, 46, 122, 47, 123, 47, 124, 51, 125, 51, 126, 67, 126, 70, 122, 76, 122, 78, 119, 78, 118, 83, 118, 88, 114, 92, 114, 95, 111, 95, 110, 98, 109, 100, 109, 102, 107, 102, 106, 105, 106, 106, 105, 106, 104, 110, 102, 113, 102, 114, 100, 115, 100, 115, 87, 113, 83, 113, 35, 110, 35, 109, 34, 109, 31, 106, 31, 105, 30, 105, 28, 103, 28, 93, 19, 90, 19, 89, 18, 89, 15, 85, 13, 85, 11, 82, 11, 74, 4, 74, 3, 70, 3, 16.404, 42.2231, 17.2099, 64.8417, 14.9926, 67.4763, 6.56298, 66.9104, 7, 42, 6, 42, 6, 40.8541, 19.9638, 39.1868, 16.404, 42.2231, 6, 40.8541, 6, 37, 5, 37, 4, 34, 6, 34, 10, 31, 14, 31, 14, 30, 19.1198, 27.4401, 14.9926, 67.4763, 16.6942, 88.6245, 14.8609, 90.573, 6.15233, 90.317, 6.56298, 66.9104, 41.8946, 39.7678, 19.9638, 39.1868, 19.1198, 27.4401, 22, 26, 22, 25, 24, 23, 29, 23, 34, 19, 39, 19, 44, 15, 45.1977, 15, 41.8946, 39.7678, 43.4228, 41.3806, 42.0191, 65.3034, 17.2099, 64.8417, 16.404, 42.2231, 19.9638, 39.1868, 42.0191, 65.3034, 43.7593, 67.3959, 39.9293, 90.513, 16.6942, 88.6245, 14.9926, 67.4763, 17.2099, 64.8417, 39.9293, 90.513, 40.0064, 90.6062, 41.7542, 116.383, 40.9418, 117.302, 29.7451, 116.809, 26, 114, 22, 114, 22, 113, 18, 110, 14.0972, 110, 14.8609, 90.573, 16.6942, 88.6245, 14.8609, 90.573, 14.0972, 110, 14, 110, 11, 109, 11, 108, 6, 105, 6, 99, 6.15233, 90.317, 69.5805, 18.3546, 67.0739, 41.8496, 66.534, 42.37, 43.4228, 41.3806, 41.8946, 39.7678, 45.2666, 14.4835, 65.4613, 14.3145, 66.534, 42.37, 68.6898, 66.9299, 67.4574, 68.3857, 43.7593, 67.3959, 42.0191, 65.3034, 43.4228, 41.3806, 67.4574, 68.3857, 69.1074, 88.2666, 66.7385, 90.8323, 40.0064, 90.6062, 39.9293, 90.513, 43.7593, 67.3959, 66.7385, 90.8323, 65.1923, 113.826, 41.7542, 116.383, 40.0064, 90.6062, 74, 4, 82, 11, 85, 11, 85, 13, 89, 15, 89, 17.8885, 69.5805, 18.3546, 65.4613, 14.3145, 67.6064, 4, 70, 4, 70, 3, 74, 3, 65.4613, 14.3145, 49.3672, 14.4492, 51, 12, 53, 12, 55, 10, 58, 10, 60, 9, 60, 8, 61, 7, 65, 7, 65, 6, 67, 4, 67.6064, 4, 94.8406, 40.0048, 92.2197, 42.3484, 67.0739, 41.8496, 69.5805, 18.3546, 92.3703, 17.8076, 92.2197, 42.3484, 89.726, 64.694, 68.6898, 66.9299, 66.534, 42.37, 67.0739, 41.8496, 94.6971, 68.9358, 93.0974, 92.5784, 92.9017, 92.7277, 69.1074, 88.2666, 67.4574, 68.3857, 68.6898, 66.9299, 89.726, 64.694, 92.9017, 92.7277, 89.0792, 117.303, 68.2836, 116.274, 65.1923, 113.826, 66.7385, 90.8323, 69.1074, 88.2666, 84.175, 117.06, 83, 118, 78, 118, 78, 119, 76, 122, 70, 122, 67.2874, 125.617, 68.2836, 116.274, 103, 28, 105, 28, 105, 30, 106, 31, 109, 31, 109, 34, 110, 35, 113, 35, 113, 43.4565, 94.8406, 40.0048, 92.503, 19, 93, 19, 113.848, 43.6177, 117.565, 63.6165, 115.747, 65.8505, 94.6971, 68.9358, 89.726, 64.694, 92.2197, 42.3484, 94.8406, 40.0048, 118.281, 89.2678, 114.613, 93.6621, 93.0974, 92.5784, 94.6971, 68.9358, 115.747, 65.8505, 114.613, 93.6621, 115, 95.2133, 115, 100, 114, 100, 113, 102, 110, 102, 106, 104, 106, 105, 105, 106, 102, 106, 102, 107, 100, 109, 98, 109, 95, 110, 95, 111, 92, 114, 89.5929, 114, 92.9017, 92.7277, 93.0974, 92.5784, 115, 95.2133, 114.613, 93.6621, 115, 93.1981, 68.2836, 116.274, 67.2874, 125.617, 67, 126, 51, 126, 51, 125, 47, 124, 47, 123, 46, 122, 42, 122, 42, 121, 41.1336, 120.567, 40.9418, 117.302, 41.7542, 116.383, 65.1923, 113.826, 40.9418, 117.302, 41.1336, 120.567, 36, 118, 30, 118, 30, 117, 29.7451, 116.809) -polygons = [PackedInt32Array(88, 89, 90), PackedInt32Array(90, 91, 92), PackedInt32Array(92, 93, 94), PackedInt32Array(88, 90, 92), PackedInt32Array(92, 94, 88), PackedInt32Array(105, 95, 96), PackedInt32Array(96, 97, 98), PackedInt32Array(98, 99, 100), PackedInt32Array(101, 102, 103), PackedInt32Array(103, 104, 105), PackedInt32Array(105, 96, 98), PackedInt32Array(98, 100, 101), PackedInt32Array(103, 105, 98), PackedInt32Array(98, 101, 103), PackedInt32Array(110, 106, 107), PackedInt32Array(107, 108, 109), PackedInt32Array(109, 110, 107), PackedInt32Array(121, 111, 112), PackedInt32Array(112, 113, 114), PackedInt32Array(114, 115, 116), PackedInt32Array(117, 118, 119), PackedInt32Array(119, 120, 121), PackedInt32Array(112, 114, 116), PackedInt32Array(119, 121, 112), PackedInt32Array(112, 116, 117), PackedInt32Array(117, 119, 112), PackedInt32Array(127, 122, 123), PackedInt32Array(123, 124, 125), PackedInt32Array(125, 126, 127), PackedInt32Array(127, 123, 125), PackedInt32Array(133, 128, 129), PackedInt32Array(129, 130, 131), PackedInt32Array(131, 132, 133), PackedInt32Array(133, 129, 131), PackedInt32Array(145, 134, 135), PackedInt32Array(135, 136, 137), PackedInt32Array(137, 138, 139), PackedInt32Array(139, 140, 141), PackedInt32Array(142, 143, 144), PackedInt32Array(144, 145, 135), PackedInt32Array(135, 137, 139), PackedInt32Array(139, 141, 142), PackedInt32Array(142, 144, 135), PackedInt32Array(135, 139, 142), PackedInt32Array(153, 146, 147), PackedInt32Array(147, 148, 149), PackedInt32Array(150, 151, 152), PackedInt32Array(152, 153, 147), PackedInt32Array(147, 149, 150), PackedInt32Array(150, 152, 147), PackedInt32Array(160, 154, 155), PackedInt32Array(155, 156, 157), PackedInt32Array(157, 158, 159), PackedInt32Array(159, 160, 155), PackedInt32Array(155, 157, 159), PackedInt32Array(166, 161, 162), PackedInt32Array(162, 163, 164), PackedInt32Array(164, 165, 166), PackedInt32Array(166, 162, 164), PackedInt32Array(172, 167, 168), PackedInt32Array(168, 169, 170), PackedInt32Array(170, 171, 172), PackedInt32Array(172, 168, 170), PackedInt32Array(176, 173, 174), PackedInt32Array(174, 175, 176), PackedInt32Array(178, 179, 180), PackedInt32Array(180, 181, 182), PackedInt32Array(182, 183, 184), PackedInt32Array(184, 185, 186), PackedInt32Array(186, 187, 188), PackedInt32Array(178, 180, 182), PackedInt32Array(182, 184, 186), PackedInt32Array(186, 188, 177), PackedInt32Array(177, 178, 182), PackedInt32Array(182, 186, 177), PackedInt32Array(189, 190, 191), PackedInt32Array(192, 193, 194), PackedInt32Array(195, 196, 197), PackedInt32Array(198, 199, 200), PackedInt32Array(200, 201, 189), PackedInt32Array(189, 191, 192), PackedInt32Array(195, 197, 198), PackedInt32Array(198, 200, 189), PackedInt32Array(189, 192, 194), PackedInt32Array(194, 195, 198), PackedInt32Array(198, 189, 194), PackedInt32Array(206, 202, 203), PackedInt32Array(203, 204, 205), PackedInt32Array(205, 206, 203), PackedInt32Array(211, 207, 208), PackedInt32Array(208, 209, 210), PackedInt32Array(210, 211, 208), PackedInt32Array(218, 212, 213), PackedInt32Array(213, 214, 215), PackedInt32Array(215, 216, 217), PackedInt32Array(217, 218, 213), PackedInt32Array(213, 215, 217), PackedInt32Array(224, 219, 220), PackedInt32Array(220, 221, 222), PackedInt32Array(222, 223, 224), PackedInt32Array(224, 220, 222), PackedInt32Array(232, 225, 226), PackedInt32Array(227, 228, 229), PackedInt32Array(230, 231, 232), PackedInt32Array(232, 226, 227), PackedInt32Array(227, 229, 230), PackedInt32Array(230, 232, 227), PackedInt32Array(233, 234, 235), PackedInt32Array(236, 237, 238), PackedInt32Array(239, 240, 241), PackedInt32Array(241, 242, 243), PackedInt32Array(243, 244, 233), PackedInt32Array(238, 239, 241), PackedInt32Array(241, 243, 233), PackedInt32Array(236, 238, 241), PackedInt32Array(241, 233, 235), PackedInt32Array(235, 236, 241), PackedInt32Array(251, 245, 246), PackedInt32Array(246, 247, 248), PackedInt32Array(248, 249, 250), PackedInt32Array(250, 251, 246), PackedInt32Array(246, 248, 250), PackedInt32Array(256, 252, 253), PackedInt32Array(253, 254, 255), PackedInt32Array(255, 256, 253), PackedInt32Array(275, 257, 258), PackedInt32Array(258, 259, 260), PackedInt32Array(260, 261, 262), PackedInt32Array(263, 264, 265), PackedInt32Array(266, 267, 268), PackedInt32Array(270, 271, 272), PackedInt32Array(272, 273, 274), PackedInt32Array(274, 275, 258), PackedInt32Array(258, 260, 262), PackedInt32Array(263, 265, 266), PackedInt32Array(266, 268, 269), PackedInt32Array(270, 272, 274), PackedInt32Array(274, 258, 262), PackedInt32Array(266, 269, 270), PackedInt32Array(274, 262, 263), PackedInt32Array(266, 270, 274), PackedInt32Array(274, 263, 266), PackedInt32Array(278, 276, 277), PackedInt32Array(292, 279, 280), PackedInt32Array(280, 281, 282), PackedInt32Array(283, 284, 285), PackedInt32Array(286, 287, 288), PackedInt32Array(288, 289, 290), PackedInt32Array(290, 291, 292), PackedInt32Array(292, 280, 282), PackedInt32Array(283, 285, 286), PackedInt32Array(286, 288, 290), PackedInt32Array(292, 282, 283), PackedInt32Array(283, 286, 290), PackedInt32Array(290, 292, 283), PackedInt32Array(293, 294, 295), PackedInt32Array(295, 296, 297), PackedInt32Array(297, 298, 293), PackedInt32Array(293, 295, 297)] -bones = ["Bone-0", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 1, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 1, 0.7, 0.7, 0, 0, 0, 0.7, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-1", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-2", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 1, 0.7, 0.7, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-3", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-4", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-5", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 1, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0.7, 0, 0.7, 0, 0.7, 0.7), "Bone-6", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-7", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-8", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-9", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0), "Bone-10", PackedFloat32Array(0.7, 0.7, 0, 0.7, 0.7, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0.7, 0.7, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 1, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 1, 0.7, 0.7, 1, 0.7, 1, 1, 1, 1, 0.7, 0.7, 1, 0.7, 0.7, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-11", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-12", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-13", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-14", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 1, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0), "Bone-15", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 1, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-16", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-17", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-18", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0.7, 0.7, 1, 0.7, 1, 0.7, 0.7, 0.7, 0.7, 0.7, 1, 0.7, 0.7, 0.7, 1, 1, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-19", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7)] -internal_vertex_count = 211 +polygon = PackedVector2Array(70, 4, 67, 4, 65, 6, 65, 7, 61, 7, 60, 8, 60, 9, 58, 10, 55, 10, 53, 12, 51, 12, 49, 15, 44, 15, 39, 19, 34, 19, 29, 23, 24, 23, 22, 25, 22, 26, 14, 30, 14, 31, 10, 31, 6, 34, 4, 34, 5, 37, 6, 37, 6, 42, 7, 42, 6, 99, 6, 105, 11, 108, 11, 109, 14, 110, 18, 110, 22, 113, 22, 114, 26, 114, 30, 117, 30, 118, 36, 118, 42, 121, 42, 122, 46, 122, 47, 123, 47, 124, 51, 125, 51, 126, 67, 126, 70, 122, 76, 122, 78, 119, 78, 118, 83, 118, 88, 114, 92, 114, 95, 111, 95, 110, 98, 109, 100, 109, 102, 107, 102, 106, 105, 106, 106, 105, 106, 104, 110, 102, 113, 102, 114, 100, 115, 100, 115, 87, 113, 83, 113, 35, 110, 35, 109, 34, 109, 31, 106, 31, 105, 30, 105, 28, 103, 28, 93, 19, 90, 19, 89, 18, 89, 15, 85, 13, 85, 11, 82, 11, 74, 4, 74, 3, 70, 3, 16.5, 65.5, 6.58772, 65.5, 6.80702, 53, 16.5, 53, 16.5, 53, 6.80702, 53, 7, 42, 6, 42, 6, 40.5, 16.5, 40.5, 16.5, 40.5, 6, 40.5, 6, 37, 5, 37, 4, 34, 6, 34, 10, 31, 14, 31, 14, 30, 16.5, 28.75, 16.5, 90.5, 6.14912, 90.5, 6.36842, 78, 16.5, 78, 16.5, 78, 6.36842, 78, 6.58772, 65.5, 16.5, 65.5, 29, 28, 18, 28, 22, 26, 22, 25, 24, 23, 29, 23, 41.5, 40.5, 29, 40.5, 29, 28, 41.5, 28, 29, 40.5, 16.5, 40.5, 16.5, 28.75, 18, 28, 29, 28, 41.5, 28, 29, 28, 29, 23, 34, 19, 39, 19, 41.5, 17, 29, 53, 16.5, 53, 16.5, 40.5, 29, 40.5, 41.5, 65.5, 29, 65.5, 29, 53, 41.5, 53, 29, 65.5, 16.5, 65.5, 16.5, 53, 29, 53, 41.5, 53, 29, 53, 29, 40.5, 41.5, 40.5, 29, 78, 16.5, 78, 16.5, 65.5, 29, 65.5, 41.5, 90.5, 29, 90.5, 29, 78, 41.5, 78, 29, 90.5, 16.5, 90.5, 16.5, 78, 29, 78, 41.5, 78, 29, 78, 29, 65.5, 41.5, 65.5, 29, 103, 16.5, 103, 16.5, 90.5, 29, 90.5, 41.5, 115.5, 29, 115.5, 29, 103, 41.5, 103, 29, 115.5, 28, 115.5, 26, 114, 22, 114, 22, 113, 18, 110, 16.5, 110, 16.5, 103, 29, 103, 41.5, 103, 29, 103, 29, 90.5, 41.5, 90.5, 16.5, 110, 14, 110, 11, 109, 11, 108, 6, 105, 6, 103, 16.5, 103, 16.5, 103, 6, 103, 6, 99, 6.14912, 90.5, 16.5, 90.5, 29, 116.25, 28, 115.5, 29, 115.5, 41.5, 120.75, 36, 118, 30, 118, 30, 117, 29, 116.25, 29, 115.5, 41.5, 115.5, 54, 28, 41.5, 28, 41.5, 17, 43.375, 15.5, 54, 15.5, 66.5, 40.5, 54, 40.5, 54, 28, 66.5, 28, 54, 40.5, 41.5, 40.5, 41.5, 28, 54, 28, 66.5, 28, 54, 28, 54, 15.5, 66.5, 15.5, 66.5, 15.5, 54, 15.5, 54, 11, 55, 10, 58, 10, 60, 9, 60, 8, 61, 7, 65, 7, 65, 6, 66.5, 4.5, 54, 15.5, 43.375, 15.5, 44, 15, 49, 15, 51, 12, 53, 12, 54, 11, 54, 53, 41.5, 53, 41.5, 40.5, 54, 40.5, 66.5, 65.5, 54, 65.5, 54, 53, 66.5, 53, 54, 65.5, 41.5, 65.5, 41.5, 53, 54, 53, 66.5, 53, 54, 53, 54, 40.5, 66.5, 40.5, 54, 78, 41.5, 78, 41.5, 65.5, 54, 65.5, 66.5, 90.5, 54, 90.5, 54, 78, 66.5, 78, 54, 90.5, 41.5, 90.5, 41.5, 78, 54, 78, 66.5, 78, 54, 78, 54, 65.5, 66.5, 65.5, 54, 103, 41.5, 103, 41.5, 90.5, 54, 90.5, 66.5, 115.5, 54, 115.5, 54, 103, 66.5, 103, 54, 115.5, 41.5, 115.5, 41.5, 103, 54, 103, 66.5, 103, 54, 103, 54, 90.5, 66.5, 90.5, 79, 28, 66.5, 28, 66.5, 15.5, 79, 15.5, 91.5, 40.5, 79, 40.5, 79, 28, 91.5, 28, 79, 40.5, 66.5, 40.5, 66.5, 28, 79, 28, 89, 18, 90, 19, 91.5, 19, 91.5, 28, 79, 28, 79, 15.5, 89, 15.5, 82, 11, 85, 11, 85, 13, 89, 15, 89, 15.5, 79, 15.5, 79, 8.375, 74, 4, 79, 8.375, 79, 15.5, 66.5, 15.5, 66.5, 4.5, 67, 4, 70, 4, 70, 3, 74, 3, 79, 53, 66.5, 53, 66.5, 40.5, 79, 40.5, 91.5, 65.5, 79, 65.5, 79, 53, 91.5, 53, 79, 65.5, 66.5, 65.5, 66.5, 53, 79, 53, 91.5, 53, 79, 53, 79, 40.5, 91.5, 40.5, 79, 78, 66.5, 78, 66.5, 65.5, 79, 65.5, 91.5, 90.5, 79, 90.5, 79, 78, 91.5, 78, 79, 90.5, 66.5, 90.5, 66.5, 78, 79, 78, 91.5, 78, 79, 78, 79, 65.5, 91.5, 65.5, 79, 103, 66.5, 103, 66.5, 90.5, 79, 90.5, 91.5, 114, 88, 114, 86.125, 115.5, 79, 115.5, 79, 103, 91.5, 103, 79, 115.5, 66.5, 115.5, 66.5, 103, 79, 103, 91.5, 103, 79, 103, 79, 90.5, 91.5, 90.5, 79, 118, 78, 118, 78, 119, 76, 122, 70, 122, 67, 126, 66.5, 126, 66.5, 115.5, 79, 115.5, 83, 118, 79, 118, 79, 115.5, 86.125, 115.5, 103, 28, 91.5, 28, 91.5, 19, 93, 19, 105, 30, 106, 31, 109, 31, 109, 34, 110, 35, 113, 35, 113, 40.5, 104, 40.5, 104, 28, 105, 28, 104, 40.5, 91.5, 40.5, 91.5, 28, 104, 28, 104, 53, 91.5, 53, 91.5, 40.5, 104, 40.5, 113, 65.5, 104, 65.5, 104, 53, 113, 53, 104, 65.5, 91.5, 65.5, 91.5, 53, 104, 53, 113, 53, 104, 53, 104, 40.5, 113, 40.5, 104, 78, 91.5, 78, 91.5, 65.5, 104, 65.5, 113, 83, 115, 87, 115, 90.5, 104, 90.5, 104, 78, 113, 78, 104, 90.5, 91.5, 90.5, 91.5, 78, 104, 78, 113, 78, 104, 78, 104, 65.5, 113, 65.5, 104, 103, 91.5, 103, 91.5, 90.5, 104, 90.5, 106, 104, 106, 105, 105, 106, 104, 106, 104, 103, 108, 103, 104, 106, 102, 106, 102, 107, 100, 109, 98, 109, 95, 110, 95, 111, 92, 114, 91.5, 114, 91.5, 103, 104, 103, 115, 100, 114, 100, 113, 102, 110, 102, 108, 103, 104, 103, 104, 90.5, 115, 90.5, 54, 126, 51, 126, 51, 125, 47, 124, 47, 123, 46, 122, 42, 122, 42, 121, 41.5, 120.75, 41.5, 115.5, 54, 115.5, 66.5, 126, 54, 126, 54, 115.5, 66.5, 115.5) +polygons = [PackedInt32Array(91, 88, 89), PackedInt32Array(89, 90, 91), PackedInt32Array(97, 92, 93), PackedInt32Array(94, 95, 96), PackedInt32Array(97, 93, 94), PackedInt32Array(94, 96, 97), PackedInt32Array(107, 98, 99), PackedInt32Array(100, 101, 102), PackedInt32Array(103, 104, 105), PackedInt32Array(105, 106, 107), PackedInt32Array(100, 102, 103), PackedInt32Array(105, 107, 99), PackedInt32Array(100, 103, 105), PackedInt32Array(105, 99, 100), PackedInt32Array(111, 108, 109), PackedInt32Array(109, 110, 111), PackedInt32Array(115, 112, 113), PackedInt32Array(113, 114, 115), PackedInt32Array(121, 116, 117), PackedInt32Array(118, 119, 120), PackedInt32Array(121, 117, 118), PackedInt32Array(118, 120, 121), PackedInt32Array(125, 122, 123), PackedInt32Array(123, 124, 125), PackedInt32Array(130, 126, 127), PackedInt32Array(127, 128, 129), PackedInt32Array(129, 130, 127), PackedInt32Array(136, 131, 132), PackedInt32Array(132, 133, 134), PackedInt32Array(135, 136, 132), PackedInt32Array(132, 134, 135), PackedInt32Array(140, 137, 138), PackedInt32Array(138, 139, 140), PackedInt32Array(144, 141, 142), PackedInt32Array(142, 143, 144), PackedInt32Array(148, 145, 146), PackedInt32Array(146, 147, 148), PackedInt32Array(152, 149, 150), PackedInt32Array(150, 151, 152), PackedInt32Array(156, 153, 154), PackedInt32Array(154, 155, 156), PackedInt32Array(160, 157, 158), PackedInt32Array(158, 159, 160), PackedInt32Array(164, 161, 162), PackedInt32Array(162, 163, 164), PackedInt32Array(168, 165, 166), PackedInt32Array(166, 167, 168), PackedInt32Array(172, 169, 170), PackedInt32Array(170, 171, 172), PackedInt32Array(176, 173, 174), PackedInt32Array(174, 175, 176), PackedInt32Array(185, 177, 178), PackedInt32Array(179, 180, 181), PackedInt32Array(182, 183, 184), PackedInt32Array(184, 185, 178), PackedInt32Array(179, 181, 182), PackedInt32Array(184, 178, 179), PackedInt32Array(179, 182, 184), PackedInt32Array(189, 186, 187), PackedInt32Array(187, 188, 189), PackedInt32Array(196, 190, 191), PackedInt32Array(191, 192, 193), PackedInt32Array(193, 194, 195), PackedInt32Array(195, 196, 191), PackedInt32Array(191, 193, 195), PackedInt32Array(201, 197, 198), PackedInt32Array(198, 199, 200), PackedInt32Array(200, 201, 198), PackedInt32Array(204, 202, 203), PackedInt32Array(211, 205, 206), PackedInt32Array(206, 207, 208), PackedInt32Array(208, 209, 210), PackedInt32Array(210, 211, 206), PackedInt32Array(206, 208, 210), PackedInt32Array(216, 212, 213), PackedInt32Array(213, 214, 215), PackedInt32Array(215, 216, 213), PackedInt32Array(220, 217, 218), PackedInt32Array(218, 219, 220), PackedInt32Array(224, 221, 222), PackedInt32Array(222, 223, 224), PackedInt32Array(228, 225, 226), PackedInt32Array(226, 227, 228), PackedInt32Array(229, 230, 231), PackedInt32Array(231, 232, 233), PackedInt32Array(234, 235, 236), PackedInt32Array(237, 238, 239), PackedInt32Array(229, 231, 233), PackedInt32Array(234, 236, 237), PackedInt32Array(237, 239, 229), PackedInt32Array(229, 233, 234), PackedInt32Array(234, 237, 229), PackedInt32Array(240, 241, 242), PackedInt32Array(243, 244, 245), PackedInt32Array(245, 246, 240), PackedInt32Array(240, 242, 243), PackedInt32Array(243, 245, 240), PackedInt32Array(250, 247, 248), PackedInt32Array(248, 249, 250), PackedInt32Array(254, 251, 252), PackedInt32Array(252, 253, 254), PackedInt32Array(258, 255, 256), PackedInt32Array(256, 257, 258), PackedInt32Array(262, 259, 260), PackedInt32Array(260, 261, 262), PackedInt32Array(266, 263, 264), PackedInt32Array(264, 265, 266), PackedInt32Array(270, 267, 268), PackedInt32Array(268, 269, 270), PackedInt32Array(274, 271, 272), PackedInt32Array(272, 273, 274), PackedInt32Array(278, 275, 276), PackedInt32Array(276, 277, 278), PackedInt32Array(282, 279, 280), PackedInt32Array(280, 281, 282), PackedInt32Array(286, 283, 284), PackedInt32Array(284, 285, 286), PackedInt32Array(290, 287, 288), PackedInt32Array(288, 289, 290), PackedInt32Array(294, 291, 292), PackedInt32Array(292, 293, 294), PackedInt32Array(298, 295, 296), PackedInt32Array(296, 297, 298), PackedInt32Array(302, 299, 300), PackedInt32Array(300, 301, 302), PackedInt32Array(306, 303, 304), PackedInt32Array(304, 305, 306), PackedInt32Array(308, 309, 310), PackedInt32Array(310, 311, 312), PackedInt32Array(312, 313, 307), PackedInt32Array(307, 308, 310), PackedInt32Array(310, 312, 307), PackedInt32Array(314, 315, 316), PackedInt32Array(316, 317, 318), PackedInt32Array(319, 320, 314), PackedInt32Array(316, 318, 319), PackedInt32Array(319, 314, 316), PackedInt32Array(321, 322, 323), PackedInt32Array(323, 324, 325), PackedInt32Array(325, 326, 327), PackedInt32Array(327, 328, 329), PackedInt32Array(321, 323, 325), PackedInt32Array(327, 329, 321), PackedInt32Array(321, 325, 327), PackedInt32Array(333, 330, 331), PackedInt32Array(331, 332, 333), PackedInt32Array(337, 334, 335), PackedInt32Array(335, 336, 337), PackedInt32Array(341, 338, 339), PackedInt32Array(339, 340, 341), PackedInt32Array(345, 342, 343), PackedInt32Array(343, 344, 345), PackedInt32Array(349, 346, 347), PackedInt32Array(347, 348, 349), PackedInt32Array(353, 350, 351), PackedInt32Array(351, 352, 353), PackedInt32Array(357, 354, 355), PackedInt32Array(355, 356, 357), PackedInt32Array(361, 358, 359), PackedInt32Array(359, 360, 361), PackedInt32Array(365, 362, 363), PackedInt32Array(363, 364, 365), PackedInt32Array(371, 366, 367), PackedInt32Array(367, 368, 369), PackedInt32Array(369, 370, 371), PackedInt32Array(371, 367, 369), PackedInt32Array(375, 372, 373), PackedInt32Array(373, 374, 375), PackedInt32Array(379, 376, 377), PackedInt32Array(377, 378, 379), PackedInt32Array(388, 380, 381), PackedInt32Array(381, 382, 383), PackedInt32Array(384, 385, 386), PackedInt32Array(387, 388, 381), PackedInt32Array(381, 383, 384), PackedInt32Array(384, 386, 387), PackedInt32Array(387, 381, 384), PackedInt32Array(392, 389, 390), PackedInt32Array(390, 391, 392), PackedInt32Array(396, 393, 394), PackedInt32Array(394, 395, 396), PackedInt32Array(398, 399, 400), PackedInt32Array(401, 402, 403), PackedInt32Array(404, 405, 406), PackedInt32Array(400, 401, 403), PackedInt32Array(404, 406, 397), PackedInt32Array(398, 400, 403), PackedInt32Array(403, 404, 397), PackedInt32Array(397, 398, 403), PackedInt32Array(410, 407, 408), PackedInt32Array(408, 409, 410), PackedInt32Array(414, 411, 412), PackedInt32Array(412, 413, 414), PackedInt32Array(418, 415, 416), PackedInt32Array(416, 417, 418), PackedInt32Array(422, 419, 420), PackedInt32Array(420, 421, 422), PackedInt32Array(426, 423, 424), PackedInt32Array(424, 425, 426), PackedInt32Array(430, 427, 428), PackedInt32Array(428, 429, 430), PackedInt32Array(431, 432, 433), PackedInt32Array(433, 434, 435), PackedInt32Array(435, 436, 431), PackedInt32Array(431, 433, 435), PackedInt32Array(440, 437, 438), PackedInt32Array(438, 439, 440), PackedInt32Array(444, 441, 442), PackedInt32Array(442, 443, 444), PackedInt32Array(448, 445, 446), PackedInt32Array(446, 447, 448), PackedInt32Array(449, 450, 451), PackedInt32Array(451, 452, 453), PackedInt32Array(453, 454, 449), PackedInt32Array(449, 451, 453), PackedInt32Array(465, 455, 456), PackedInt32Array(456, 457, 458), PackedInt32Array(460, 461, 462), PackedInt32Array(462, 463, 464), PackedInt32Array(464, 465, 456), PackedInt32Array(456, 458, 459), PackedInt32Array(460, 462, 464), PackedInt32Array(464, 456, 459), PackedInt32Array(459, 460, 464), PackedInt32Array(473, 466, 467), PackedInt32Array(467, 468, 469), PackedInt32Array(469, 470, 471), PackedInt32Array(471, 472, 473), PackedInt32Array(473, 467, 469), PackedInt32Array(469, 471, 473), PackedInt32Array(484, 474, 475), PackedInt32Array(476, 477, 478), PackedInt32Array(479, 480, 481), PackedInt32Array(481, 482, 483), PackedInt32Array(484, 475, 476), PackedInt32Array(476, 478, 479), PackedInt32Array(479, 481, 483), PackedInt32Array(483, 484, 476), PackedInt32Array(476, 479, 483), PackedInt32Array(488, 485, 486), PackedInt32Array(486, 487, 488)] +bones = ["Bone-0", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-1", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-2", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-3", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-4", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-5", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0), "Bone-6", PackedFloat32Array(0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-7", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-8", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-9", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1), "Bone-10", PackedFloat32Array(1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-11", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-12", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-13", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1), "Bone-14", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-15", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-16", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-17", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-18", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1)] +internal_vertex_count = 401 script = ExtResource("2_2dapw") vertex_interval = 25 -radius = 19 -rigidbody_scene = ExtResource("3_6ern4") margin_pixels = -1 -voronoi_interval = 0.15 +min_area = 0.3 stiffness = 0.1 damping = 9.1 rest_length_ratio = 1.1 length_ratio = 0.1 softness = 100.0 +radius = 19 +rigidbody_scene = ExtResource("3_6ern4") physics_material_override = ExtResource("5_221ya") [node name="Skeleton2D" type="Skeleton2D" parent="Butter4"] visible = false -modification_stack = SubResource("SkeletonModificationStack2D_e0llx") +modification_stack = SubResource("SkeletonModificationStack2D_dtf1u") [node name="Bone-0" type="Bone2D" parent="Butter4/Skeleton2D"] -position = Vector2(11.9819, 47.4582) -rotation = 0.26087 -rest = Transform2D(0.966166, 0.257921, -0.257921, 0.966166, 11.9819, 47.4582) +position = Vector2(10.25, 47.125) +rotation = 1.02504 +rest = Transform2D(0.519068, 0.854733, -0.854733, 0.519068, 10.25, 47.125) auto_calculate_length_and_angle = false length = 25.0 bone_angle = 0.0 -metadata/vert_owned = [88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105] -metadata/connected_nodes_paths = [NodePath("Bone-1"), NodePath("Bone-2"), NodePath("Bone-3"), NodePath("Bone-4")] +metadata/vert_owned = [88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107] +metadata/idx = 0 +metadata/connected_nodes_paths = [NodePath("Bone-1"), NodePath("Bone-3"), NodePath("Bone-4"), NodePath("Bone-2")] +metadata/connected_nodes_idx = [1, 3, 4, 2] metadata/_local_pose_override_enabled_ = true [node name="Bone-1" type="Bone2D" parent="Butter4/Skeleton2D"] -position = Vector2(11.4233, 78.7417) -rotation = -0.0592156 -rest = Transform2D(0.998247, -0.059181, 0.059181, 0.998247, 11.4233, 78.7417) +position = Vector2(11.3246, 78) +rest = Transform2D(1, 0, 0, 1, 11.3246, 78) auto_calculate_length_and_angle = false length = 25.0 bone_angle = 0.0 -metadata/vert_owned = [106, 107, 108, 109, 110] +metadata/vert_owned = [108, 109, 110, 111, 112, 113, 114, 115] +metadata/idx = 1 metadata/connected_nodes_paths = [NodePath("Bone-0"), NodePath("Bone-3"), NodePath("Bone-4"), NodePath("Bone-5")] +metadata/connected_nodes_idx = [0, 3, 4, 5] metadata/_local_pose_override_enabled_ = true [node name="Bone-2" type="Bone2D" parent="Butter4/Skeleton2D"] -position = Vector2(32.1588, 27.3839) -rotation = 0.0406229 -rest = Transform2D(0.999175, 0.0406117, -0.0406117, 0.999175, 32.1588, 27.3839) +position = Vector2(29, 28.75) +rotation = -0.244979 +scale = Vector2(1, 1) +rest = Transform2D(0.970142, -0.242536, 0.242536, 0.970142, 29, 28.75) auto_calculate_length_and_angle = false length = 25.0 bone_angle = 0.0 -metadata/vert_owned = [111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121] +metadata/vert_owned = [116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136] +metadata/idx = 2 metadata/connected_nodes_paths = [NodePath("Bone-0"), NodePath("Bone-3"), NodePath("Bone-6"), NodePath("Bone-7")] +metadata/connected_nodes_idx = [0, 3, 6, 7] metadata/_local_pose_override_enabled_ = true [node name="Bone-3" type="Bone2D" parent="Butter4/Skeleton2D"] -position = Vector2(29.9134, 52.2451) -rotation = 1.59192 -rest = Transform2D(-0.0211265, 0.999777, -0.999777, -0.0211265, 29.9134, 52.2451) +position = Vector2(29, 53) +rotation = -1.5708 +rest = Transform2D(-4.37114e-08, -1, 1, -4.37114e-08, 29, 53) auto_calculate_length_and_angle = false length = 25.0 bone_angle = 0.0 -metadata/vert_owned = [122, 123, 124, 125, 126, 127] -metadata/connected_nodes_paths = [NodePath("Bone-0"), NodePath("Bone-1"), NodePath("Bone-2"), NodePath("Bone-4"), NodePath("Bone-6"), NodePath("Bone-7"), NodePath("Bone-8")] +metadata/vert_owned = [137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152] +metadata/idx = 3 +metadata/connected_nodes_paths = [NodePath("Bone-0"), NodePath("Bone-1"), NodePath("Bone-4"), NodePath("Bone-2"), NodePath("Bone-6"), NodePath("Bone-7"), NodePath("Bone-8")] +metadata/connected_nodes_idx = [0, 1, 4, 2, 6, 7, 8] metadata/_local_pose_override_enabled_ = true [node name="Bone-4" type="Bone2D" parent="Butter4/Skeleton2D"] -position = Vector2(29.376, 77.6774) -rotation = 1.78493 -rest = Transform2D(-0.212503, 0.97716, -0.97716, -0.212503, 29.376, 77.6774) +position = Vector2(29, 78) +rotation = 1.7586 +rest = Transform2D(-0.186704, 0.982416, -0.982416, -0.186704, 29, 78) auto_calculate_length_and_angle = false length = 25.0 bone_angle = 0.0 -metadata/vert_owned = [128, 129, 130, 131, 132, 133] +metadata/vert_owned = [153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168] +metadata/idx = 4 metadata/connected_nodes_paths = [NodePath("Bone-0"), NodePath("Bone-1"), NodePath("Bone-3"), NodePath("Bone-5"), NodePath("Bone-7"), NodePath("Bone-8"), NodePath("Bone-9")] +metadata/connected_nodes_idx = [0, 1, 3, 5, 7, 8, 9] metadata/_local_pose_override_enabled_ = true [node name="Bone-5" type="Bone2D" parent="Butter4/Skeleton2D"] -position = Vector2(23.8771, 102.963) -rotation = -0.661389 -rest = Transform2D(0.78914, -0.614213, 0.614213, 0.78914, 23.8771, 102.963) +position = Vector2(23.75, 105.625) +rotation = -1.38299 +scale = Vector2(1, 1) +rest = Transform2D(0.186704, -0.982416, 0.982416, 0.186704, 23.75, 105.625) auto_calculate_length_and_angle = false length = 25.0 bone_angle = 0.0 -metadata/vert_owned = [134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153] -metadata/connected_nodes_paths = [NodePath("Bone-1"), NodePath("Bone-4"), NodePath("Bone-8"), NodePath("Bone-9"), NodePath("Bone-19")] +metadata/vert_owned = [169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211] +metadata/idx = 5 +metadata/connected_nodes_paths = [NodePath("Bone-18"), NodePath("Bone-1"), NodePath("Bone-4"), NodePath("Bone-8"), NodePath("Bone-9")] +metadata/connected_nodes_idx = [18, 1, 4, 8, 9] metadata/_local_pose_override_enabled_ = true [node name="Bone-6" type="Bone2D" parent="Butter4/Skeleton2D"] -position = Vector2(55.7376, 28.3423) -rotation = -0.920184 +position = Vector2(54, 22.5) +rotation = 2.25742 scale = Vector2(1, 1) -rest = Transform2D(0.605673, -0.795713, 0.795713, 0.605673, 55.7376, 28.3423) +rest = Transform2D(-0.633928, 0.773392, -0.773392, -0.633928, 54, 22.5) auto_calculate_length_and_angle = false length = 25.0 bone_angle = 0.0 -metadata/vert_owned = [154, 155, 156, 157, 158, 159, 160] -metadata/connected_nodes_paths = [NodePath("Bone-2"), NodePath("Bone-3"), NodePath("Bone-7"), NodePath("Bone-10"), NodePath("Bone-11"), NodePath("Bone-12")] +metadata/vert_owned = [212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246] +metadata/idx = 6 +metadata/connected_nodes_paths = [NodePath("Bone-10"), NodePath("Bone-2"), NodePath("Bone-3"), NodePath("Bone-7"), NodePath("Bone-11")] +metadata/connected_nodes_idx = [10, 2, 3, 7, 11] metadata/_local_pose_override_enabled_ = true [node name="Bone-7" type="Bone2D" parent="Butter4/Skeleton2D"] -position = Vector2(55.3545, 54.8831) -rotation = 1.60529 -rest = Transform2D(-0.0344882, 0.999405, -0.999405, -0.0344882, 55.3545, 54.8831) +position = Vector2(54, 53) +rotation = 1.5708 +rest = Transform2D(-4.37114e-08, 1, -1, -4.37114e-08, 54, 53) auto_calculate_length_and_angle = false length = 25.0 bone_angle = 0.0 -metadata/vert_owned = [161, 162, 163, 164, 165, 166] -metadata/connected_nodes_paths = [NodePath("Bone-2"), NodePath("Bone-3"), NodePath("Bone-4"), NodePath("Bone-6"), NodePath("Bone-8"), NodePath("Bone-11"), NodePath("Bone-12"), NodePath("Bone-13")] +metadata/vert_owned = [247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262] +metadata/idx = 7 +metadata/connected_nodes_paths = [NodePath("Bone-2"), NodePath("Bone-3"), NodePath("Bone-6"), NodePath("Bone-4"), NodePath("Bone-8"), NodePath("Bone-10"), NodePath("Bone-11"), NodePath("Bone-12")] +metadata/connected_nodes_idx = [2, 3, 6, 4, 8, 10, 11, 12] metadata/_local_pose_override_enabled_ = true [node name="Bone-8" type="Bone2D" parent="Butter4/Skeleton2D"] -position = Vector2(54.5183, 79.1141) -rotation = 1.61776 -rest = Transform2D(-0.0469479, 0.998897, -0.998897, -0.0469479, 54.5183, 79.1141) +position = Vector2(54, 78) +rotation = 1.5708 +rest = Transform2D(-4.37114e-08, 1, -1, -4.37114e-08, 54, 78) auto_calculate_length_and_angle = false length = 25.0 bone_angle = 0.0 -metadata/vert_owned = [167, 168, 169, 170, 171, 172] -metadata/connected_nodes_paths = [NodePath("Bone-3"), NodePath("Bone-4"), NodePath("Bone-5"), NodePath("Bone-7"), NodePath("Bone-9"), NodePath("Bone-12"), NodePath("Bone-13"), NodePath("Bone-14")] +metadata/vert_owned = [263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278] +metadata/idx = 8 +metadata/connected_nodes_paths = [NodePath("Bone-3"), NodePath("Bone-4"), NodePath("Bone-7"), NodePath("Bone-5"), NodePath("Bone-9"), NodePath("Bone-11"), NodePath("Bone-12"), NodePath("Bone-13")] +metadata/connected_nodes_idx = [3, 4, 7, 5, 9, 11, 12, 13] metadata/_local_pose_override_enabled_ = true [node name="Bone-9" type="Bone2D" parent="Butter4/Skeleton2D"] -position = Vector2(53.3725, 103.495) -rotation = -0.729803 -scale = Vector2(1, 1) -rest = Transform2D(0.745306, -0.666723, 0.666723, 0.745306, 53.3725, 103.495) +position = Vector2(54, 103) +rotation = 1.5708 +rest = Transform2D(-4.37114e-08, 1, -1, -4.37114e-08, 54, 103) auto_calculate_length_and_angle = false length = 25.0 bone_angle = 0.0 -metadata/vert_owned = [173, 174, 175, 176] -metadata/connected_nodes_paths = [NodePath("Bone-4"), NodePath("Bone-5"), NodePath("Bone-8"), NodePath("Bone-13"), NodePath("Bone-14"), NodePath("Bone-19")] +metadata/vert_owned = [279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294] +metadata/idx = 9 +metadata/connected_nodes_paths = [NodePath("Bone-4"), NodePath("Bone-5"), NodePath("Bone-8"), NodePath("Bone-18"), NodePath("Bone-12"), NodePath("Bone-13")] +metadata/connected_nodes_idx = [4, 5, 8, 18, 12, 13] metadata/_local_pose_override_enabled_ = true [node name="Bone-10" type="Bone2D" parent="Butter4/Skeleton2D"] -position = Vector2(69.1836, 10.6773) -rotation = 1.02534 -rest = Transform2D(0.518808, 0.854891, -0.854891, 0.518808, 69.1836, 10.6773) +position = Vector2(79, 21.75) +rotation = 1.5708 +rest = Transform2D(-4.37114e-08, 1, -1, -4.37114e-08, 79, 21.75) auto_calculate_length_and_angle = false length = 25.0 bone_angle = 0.0 -metadata/vert_owned = [177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201] -metadata/connected_nodes_paths = [NodePath("Bone-6"), NodePath("Bone-11")] +metadata/vert_owned = [295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329] +metadata/idx = 10 +metadata/connected_nodes_paths = [NodePath("Bone-6"), NodePath("Bone-7"), NodePath("Bone-11"), NodePath("Bone-14"), NodePath("Bone-15")] +metadata/connected_nodes_idx = [6, 7, 11, 14, 15] metadata/_local_pose_override_enabled_ = true [node name="Bone-11" type="Bone2D" parent="Butter4/Skeleton2D"] -position = Vector2(80.9573, 30.078) -rotation = 1.63571 -rest = Transform2D(-0.0648705, 0.997894, -0.997894, -0.0648705, 80.9573, 30.078) +position = Vector2(79, 53) +rotation = 1.5708 +rest = Transform2D(-4.37114e-08, 1, -1, -4.37114e-08, 79, 53) auto_calculate_length_and_angle = false length = 25.0 bone_angle = 0.0 -metadata/vert_owned = [202, 203, 204, 205, 206] -metadata/connected_nodes_paths = [NodePath("Bone-6"), NodePath("Bone-7"), NodePath("Bone-10"), NodePath("Bone-12"), NodePath("Bone-15"), NodePath("Bone-16")] +metadata/vert_owned = [330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345] +metadata/idx = 11 +metadata/connected_nodes_paths = [NodePath("Bone-6"), NodePath("Bone-7"), NodePath("Bone-10"), NodePath("Bone-8"), NodePath("Bone-12"), NodePath("Bone-14"), NodePath("Bone-15"), NodePath("Bone-16")] +metadata/connected_nodes_idx = [6, 7, 10, 8, 12, 14, 15, 16] metadata/_local_pose_override_enabled_ = true [node name="Bone-12" type="Bone2D" parent="Butter4/Skeleton2D"] -position = Vector2(79.3768, 54.3897) -rotation = 1.50099 -rest = Transform2D(0.0697459, 0.997565, -0.997565, 0.0697459, 79.3768, 54.3897) +position = Vector2(79, 78) +rotation = 1.5708 +rest = Transform2D(-4.37114e-08, 1, -1, -4.37114e-08, 79, 78) auto_calculate_length_and_angle = false length = 25.0 bone_angle = 0.0 -metadata/vert_owned = [207, 208, 209, 210, 211] -metadata/connected_nodes_paths = [NodePath("Bone-6"), NodePath("Bone-7"), NodePath("Bone-8"), NodePath("Bone-11"), NodePath("Bone-13"), NodePath("Bone-15"), NodePath("Bone-16"), NodePath("Bone-17")] +metadata/vert_owned = [346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361] +metadata/idx = 12 +metadata/connected_nodes_paths = [NodePath("Bone-7"), NodePath("Bone-8"), NodePath("Bone-11"), NodePath("Bone-9"), NodePath("Bone-13"), NodePath("Bone-15"), NodePath("Bone-16"), NodePath("Bone-17")] +metadata/connected_nodes_idx = [7, 8, 11, 9, 13, 15, 16, 17] metadata/_local_pose_override_enabled_ = true [node name="Bone-13" type="Bone2D" parent="Butter4/Skeleton2D"] -position = Vector2(81.0773, 78.7108) -rotation = 1.64259 -rest = Transform2D(-0.0717316, 0.997424, -0.997424, -0.0717316, 81.0773, 78.7108) +position = Vector2(79, 108.25) +rotation = -2.9346 +rest = Transform2D(-0.978653, -0.205517, 0.205517, -0.978653, 79, 108.25) auto_calculate_length_and_angle = false length = 25.0 bone_angle = 0.0 -metadata/vert_owned = [212, 213, 214, 215, 216, 217, 218] -metadata/connected_nodes_paths = [NodePath("Bone-7"), NodePath("Bone-8"), NodePath("Bone-9"), NodePath("Bone-12"), NodePath("Bone-14"), NodePath("Bone-16"), NodePath("Bone-17"), NodePath("Bone-18")] +metadata/vert_owned = [362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392] +metadata/idx = 13 +metadata/connected_nodes_paths = [NodePath("Bone-18"), NodePath("Bone-17"), NodePath("Bone-8"), NodePath("Bone-9"), NodePath("Bone-12"), NodePath("Bone-16")] +metadata/connected_nodes_idx = [18, 17, 8, 9, 12, 16] metadata/_local_pose_override_enabled_ = true [node name="Bone-14" type="Bone2D" parent="Butter4/Skeleton2D"] -position = Vector2(79.047, 106.942) -rotation = -0.795486 -rest = Transform2D(0.699938, -0.714204, 0.714204, 0.699938, 79.047, 106.942) +position = Vector2(102.25, 29.75) +rotation = 2.35619 +scale = Vector2(1, 1) +rest = Transform2D(-0.707107, 0.707107, -0.707107, -0.707107, 102.25, 29.75) auto_calculate_length_and_angle = false length = 25.0 bone_angle = 0.0 -metadata/vert_owned = [219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232] -metadata/connected_nodes_paths = [NodePath("Bone-8"), NodePath("Bone-9"), NodePath("Bone-13"), NodePath("Bone-17"), NodePath("Bone-18"), NodePath("Bone-19")] +metadata/vert_owned = [393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410] +metadata/idx = 14 +metadata/connected_nodes_paths = [NodePath("Bone-10"), NodePath("Bone-11"), NodePath("Bone-15")] +metadata/connected_nodes_idx = [10, 11, 15] metadata/_local_pose_override_enabled_ = true [node name="Bone-15" type="Bone2D" parent="Butter4/Skeleton2D"] -position = Vector2(102.751, 31.2282) -rotation = 2.36077 -rest = Transform2D(-0.710338, 0.703861, -0.703861, -0.710338, 102.751, 31.2282) +position = Vector2(102.25, 53) +rotation = -1.5708 +rest = Transform2D(-4.37114e-08, -1, 1, -4.37114e-08, 102.25, 53) auto_calculate_length_and_angle = false length = 25.0 bone_angle = 0.0 -metadata/vert_owned = [233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244] -metadata/connected_nodes_paths = [NodePath("Bone-11"), NodePath("Bone-12"), NodePath("Bone-16")] +metadata/vert_owned = [411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426] +metadata/idx = 15 +metadata/connected_nodes_paths = [NodePath("Bone-10"), NodePath("Bone-11"), NodePath("Bone-14"), NodePath("Bone-12"), NodePath("Bone-16")] +metadata/connected_nodes_idx = [10, 11, 14, 12, 16] metadata/_local_pose_override_enabled_ = true [node name="Bone-16" type="Bone2D" parent="Butter4/Skeleton2D"] -position = Vector2(103.646, 54.4703) -rotation = 2.32049 +position = Vector2(103.25, 78) +rotation = -1.61077 scale = Vector2(1, 1) -rest = Transform2D(-0.681411, 0.731901, -0.731901, -0.681411, 103.646, 54.4703) +rest = Transform2D(-0.039968, -0.999201, 0.999201, -0.039968, 103.25, 78) auto_calculate_length_and_angle = false length = 25.0 bone_angle = 0.0 -metadata/vert_owned = [245, 246, 247, 248, 249, 250, 251] -metadata/connected_nodes_paths = [NodePath("Bone-11"), NodePath("Bone-12"), NodePath("Bone-13"), NodePath("Bone-15"), NodePath("Bone-17")] +metadata/vert_owned = [427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444] +metadata/idx = 16 +metadata/connected_nodes_paths = [NodePath("Bone-11"), NodePath("Bone-12"), NodePath("Bone-15"), NodePath("Bone-13"), NodePath("Bone-17")] +metadata/connected_nodes_idx = [11, 12, 15, 13, 17] metadata/_local_pose_override_enabled_ = true [node name="Bone-17" type="Bone2D" parent="Butter4/Skeleton2D"] -position = Vector2(105.689, 79.7563) -rotation = 2.34611 -rest = Transform2D(-0.699938, 0.714204, -0.714204, -0.699938, 105.689, 79.7563) +position = Vector2(103.25, 102.25) +rotation = -2.35619 +scale = Vector2(1, 1) +rest = Transform2D(-0.707107, -0.707107, 0.707107, -0.707107, 103.25, 102.25) auto_calculate_length_and_angle = false length = 25.0 bone_angle = 0.0 -metadata/vert_owned = [252, 253, 254, 255, 256] -metadata/connected_nodes_paths = [NodePath("Bone-12"), NodePath("Bone-13"), NodePath("Bone-14"), NodePath("Bone-16"), NodePath("Bone-18")] +metadata/vert_owned = [445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473] +metadata/idx = 17 +metadata/connected_nodes_paths = [NodePath("Bone-13"), NodePath("Bone-12"), NodePath("Bone-16")] +metadata/connected_nodes_idx = [13, 12, 16] metadata/_local_pose_override_enabled_ = true [node name="Bone-18" type="Bone2D" parent="Butter4/Skeleton2D"] -position = Vector2(102.296, 103.289) -rotation = 2.98577 +position = Vector2(54, 120.75) +rotation = -0.463648 scale = Vector2(1, 1) -rest = Transform2D(-0.987884, 0.155195, -0.155195, -0.987884, 102.296, 103.289) -auto_calculate_length_and_angle = false -length = 25.0 -bone_angle = 0.0 -metadata/vert_owned = [257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278] -metadata/connected_nodes_paths = [NodePath("Bone-13"), NodePath("Bone-14"), NodePath("Bone-17")] -metadata/_local_pose_override_enabled_ = true - -[node name="Bone-19" type="Bone2D" parent="Butter4/Skeleton2D"] -position = Vector2(49.0143, 119.913) -rotation = -1.31134 -rest = Transform2D(0.256557, -0.966529, 0.966529, 0.256557, 49.0143, 119.913) +rest = Transform2D(0.894427, -0.447214, 0.447214, 0.894427, 54, 120.75) auto_calculate_length_and_angle = false length = 25.0 bone_angle = 0.0 -metadata/vert_owned = [279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298] -metadata/connected_nodes_paths = [NodePath("Bone-5"), NodePath("Bone-9"), NodePath("Bone-14")] +metadata/vert_owned = [474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488] +metadata/idx = 18 +metadata/connected_nodes_paths = [NodePath("Bone-5"), NodePath("Bone-13"), NodePath("Bone-9")] +metadata/connected_nodes_idx = [5, 13, 9] metadata/_local_pose_override_enabled_ = true -[node name="Bone-0" parent="Butter4" instance=ExtResource("3_6ern4")] -position = Vector2(11.9819, 47.4582) -mass = 0.05 +[node name="Bone-0" type="RigidBody2D" parent="Butter4" instance=ExtResource("3_6ern4")] +position = Vector2(10.25, 47.125) +input_pickable = true +mass = 0.0526316 physics_material_override = ExtResource("5_221ya") +script = ExtResource("11_tqnjl") +metadata/idx = 0 metadata/bone_name = &"Bone-0" [node name="CircleShape2D" type="CollisionShape2D" parent="Butter4/Bone-0"] -shape = SubResource("CircleShape2D_1leud") +shape = SubResource("CircleShape2D_4xdtt") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Butter4/Bone-0"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-0") update_rotation = false update_scale = false [node name="Joint2D-Bone-0-Bone-1" type="PinJoint2D" parent="Butter4/Bone-0"] visible = false -rotation = 0.017855 +rotation = -0.0347895 node_a = NodePath("..") node_b = NodePath("../../Bone-1") softness = 100.0 -[node name="Joint2D-Bone-0-Bone-2" type="PinJoint2D" parent="Butter4/Bone-0"] -visible = false -rotation = -2.35365 -node_a = NodePath("..") -node_b = NodePath("../../Bone-2") -softness = 100.0 - [node name="Joint2D-Bone-0-Bone-3" type="PinJoint2D" parent="Butter4/Bone-0"] visible = false -rotation = -1.30993 +rotation = -1.26715 node_a = NodePath("..") node_b = NodePath("../../Bone-3") softness = 100.0 [node name="Joint2D-Bone-0-Bone-4" type="PinJoint2D" parent="Butter4/Bone-0"] visible = false -rotation = -0.522283 +rotation = -0.545761 node_a = NodePath("..") node_b = NodePath("../../Bone-4") softness = 100.0 -[node name="Bone-1" parent="Butter4" instance=ExtResource("3_6ern4")] -position = Vector2(11.4233, 78.7417) -mass = 0.05 +[node name="Joint2D-Bone-0-Bone-2" type="PinJoint2D" parent="Butter4/Bone-0"] +visible = false +rotation = -2.34609 +node_a = NodePath("..") +node_b = NodePath("../../Bone-2") +softness = 100.0 + +[node name="Bone-1" type="RigidBody2D" parent="Butter4" instance=ExtResource("3_6ern4")] +position = Vector2(11.3246, 78) +input_pickable = true +mass = 0.0526316 physics_material_override = ExtResource("5_221ya") +script = ExtResource("11_tqnjl") +metadata/idx = 1 metadata/bone_name = &"Bone-1" [node name="CircleShape2D" type="CollisionShape2D" parent="Butter4/Bone-1"] -shape = SubResource("CircleShape2D_1leud") +shape = SubResource("CircleShape2D_4xdtt") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Butter4/Bone-1"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-1") update_rotation = false update_scale = false [node name="Joint2D-Bone-1-Bone-0" type="PinJoint2D" parent="Butter4/Bone-1"] visible = false -rotation = -3.12374 +rotation = -3.17638 node_a = NodePath("..") node_b = NodePath("../../Bone-0") softness = 100.0 [node name="Joint2D-Bone-1-Bone-3" type="PinJoint2D" parent="Butter4/Bone-1"] visible = false -rotation = -2.53232 +rotation = -2.52617 node_a = NodePath("..") node_b = NodePath("../../Bone-3") softness = 100.0 [node name="Joint2D-Bone-1-Bone-4" type="PinJoint2D" parent="Butter4/Bone-1"] visible = false -rotation = -1.63001 +rotation = -1.5708 node_a = NodePath("..") node_b = NodePath("../../Bone-4") softness = 100.0 [node name="Joint2D-Bone-1-Bone-5" type="PinJoint2D" parent="Butter4/Bone-1"] visible = false -rotation = -0.474914 +rotation = -0.422679 node_a = NodePath("..") node_b = NodePath("../../Bone-5") softness = 100.0 -[node name="Bone-2" parent="Butter4" instance=ExtResource("3_6ern4")] -position = Vector2(32.1588, 27.3839) -mass = 0.05 +[node name="Bone-2" type="RigidBody2D" parent="Butter4" instance=ExtResource("3_6ern4")] +position = Vector2(29, 28.75) +input_pickable = true +mass = 0.0526316 physics_material_override = ExtResource("5_221ya") +script = ExtResource("11_tqnjl") +metadata/idx = 2 metadata/bone_name = &"Bone-2" [node name="CircleShape2D" type="CollisionShape2D" parent="Butter4/Bone-2"] -shape = SubResource("CircleShape2D_1leud") +shape = SubResource("CircleShape2D_4xdtt") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Butter4/Bone-2"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-2") update_rotation = false update_scale = false [node name="Joint2D-Bone-2-Bone-0" type="PinJoint2D" parent="Butter4/Bone-2"] visible = false -rotation = 0.787946 +rotation = 0.795499 node_a = NodePath("..") node_b = NodePath("../../Bone-0") softness = 100.0 [node name="Joint2D-Bone-2-Bone-3" type="PinJoint2D" parent="Butter4/Bone-2"] visible = false -rotation = 0.0900715 node_a = NodePath("..") node_b = NodePath("../../Bone-3") softness = 100.0 [node name="Joint2D-Bone-2-Bone-6" type="PinJoint2D" parent="Butter4/Bone-2"] visible = false -rotation = -1.53017 +rotation = -1.81578 node_a = NodePath("..") node_b = NodePath("../../Bone-6") softness = 100.0 [node name="Joint2D-Bone-2-Bone-7" type="PinJoint2D" parent="Butter4/Bone-2"] visible = false -rotation = -0.700711 +rotation = -0.800625 node_a = NodePath("..") node_b = NodePath("../../Bone-7") softness = 100.0 -[node name="Bone-3" parent="Butter4" instance=ExtResource("3_6ern4")] -position = Vector2(29.9134, 52.2451) -mass = 0.05 +[node name="Bone-3" type="RigidBody2D" parent="Butter4" instance=ExtResource("3_6ern4")] +position = Vector2(29, 53) +input_pickable = true +mass = 0.0526316 physics_material_override = ExtResource("5_221ya") +script = ExtResource("11_tqnjl") +metadata/idx = 3 metadata/bone_name = &"Bone-3" [node name="CircleShape2D" type="CollisionShape2D" parent="Butter4/Bone-3"] -shape = SubResource("CircleShape2D_1leud") +shape = SubResource("CircleShape2D_4xdtt") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Butter4/Bone-3"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-3") update_rotation = false update_scale = false [node name="Joint2D-Bone-3-Bone-0" type="PinJoint2D" parent="Butter4/Bone-3"] visible = false -rotation = -4.45152 +rotation = -4.40875 node_a = NodePath("..") node_b = NodePath("../../Bone-0") softness = 100.0 [node name="Joint2D-Bone-3-Bone-1" type="PinJoint2D" parent="Butter4/Bone-3"] visible = false -rotation = 0.609268 +rotation = 0.61542 node_a = NodePath("..") node_b = NodePath("../../Bone-1") softness = 100.0 -[node name="Joint2D-Bone-3-Bone-2" type="PinJoint2D" parent="Butter4/Bone-3"] +[node name="Joint2D-Bone-3-Bone-4" type="PinJoint2D" parent="Butter4/Bone-3"] visible = false -rotation = -3.05152 node_a = NodePath("..") -node_b = NodePath("../../Bone-2") +node_b = NodePath("../../Bone-4") softness = 100.0 -[node name="Joint2D-Bone-3-Bone-4" type="PinJoint2D" parent="Butter4/Bone-3"] +[node name="Joint2D-Bone-3-Bone-2" type="PinJoint2D" parent="Butter4/Bone-3"] visible = false -rotation = 0.0211281 +rotation = -3.14159 node_a = NodePath("..") -node_b = NodePath("../../Bone-4") +node_b = NodePath("../../Bone-2") softness = 100.0 [node name="Joint2D-Bone-3-Bone-6" type="PinJoint2D" parent="Butter4/Bone-3"] visible = false -rotation = -2.31758 +rotation = -2.45497 node_a = NodePath("..") node_b = NodePath("../../Bone-6") softness = 100.0 [node name="Joint2D-Bone-3-Bone-7" type="PinJoint2D" parent="Butter4/Bone-3"] visible = false -rotation = -1.46747 +rotation = -1.5708 node_a = NodePath("..") node_b = NodePath("../../Bone-7") softness = 100.0 [node name="Joint2D-Bone-3-Bone-8" type="PinJoint2D" parent="Butter4/Bone-3"] visible = false -rotation = -0.741441 +rotation = -0.785398 node_a = NodePath("..") node_b = NodePath("../../Bone-8") softness = 100.0 -[node name="Bone-4" parent="Butter4" instance=ExtResource("3_6ern4")] -position = Vector2(29.376, 77.6774) -mass = 0.05 +[node name="Bone-4" type="RigidBody2D" parent="Butter4" instance=ExtResource("3_6ern4")] +position = Vector2(29, 78) +input_pickable = true +mass = 0.0526316 physics_material_override = ExtResource("5_221ya") +script = ExtResource("11_tqnjl") +metadata/idx = 4 metadata/bone_name = &"Bone-4" [node name="CircleShape2D" type="CollisionShape2D" parent="Butter4/Bone-4"] -shape = SubResource("CircleShape2D_1leud") +shape = SubResource("CircleShape2D_4xdtt") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Butter4/Bone-4"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-4") update_rotation = false update_scale = false [node name="Joint2D-Bone-4-Bone-0" type="PinJoint2D" parent="Butter4/Bone-4"] visible = false -rotation = -3.66388 +rotation = -3.68735 node_a = NodePath("..") node_b = NodePath("../../Bone-0") softness = 100.0 [node name="Joint2D-Bone-4-Bone-1" type="PinJoint2D" parent="Butter4/Bone-4"] visible = false -rotation = 1.51158 +rotation = 1.5708 node_a = NodePath("..") node_b = NodePath("../../Bone-1") softness = 100.0 [node name="Joint2D-Bone-4-Bone-3" type="PinJoint2D" parent="Butter4/Bone-4"] visible = false -rotation = -3.12046 +rotation = -3.14159 node_a = NodePath("..") node_b = NodePath("../../Bone-3") softness = 100.0 [node name="Joint2D-Bone-4-Bone-5" type="PinJoint2D" parent="Butter4/Bone-4"] visible = false -rotation = 0.214135 +rotation = 0.187806 node_a = NodePath("..") node_b = NodePath("../../Bone-5") softness = 100.0 [node name="Joint2D-Bone-4-Bone-7" type="PinJoint2D" parent="Butter4/Bone-4"] visible = false -rotation = -2.291 +rotation = -2.35619 node_a = NodePath("..") node_b = NodePath("../../Bone-7") softness = 100.0 [node name="Joint2D-Bone-4-Bone-8" type="PinJoint2D" parent="Butter4/Bone-4"] visible = false -rotation = -1.51371 +rotation = -1.5708 node_a = NodePath("..") node_b = NodePath("../../Bone-8") softness = 100.0 [node name="Joint2D-Bone-4-Bone-9" type="PinJoint2D" parent="Butter4/Bone-4"] visible = false -rotation = -0.748864 +rotation = -0.785398 node_a = NodePath("..") node_b = NodePath("../../Bone-9") softness = 100.0 -[node name="Bone-5" parent="Butter4" instance=ExtResource("3_6ern4")] -position = Vector2(23.8771, 102.963) -mass = 0.05 +[node name="Bone-5" type="RigidBody2D" parent="Butter4" instance=ExtResource("3_6ern4")] +position = Vector2(23.75, 105.625) +input_pickable = true +mass = 0.0526316 physics_material_override = ExtResource("5_221ya") +script = ExtResource("11_tqnjl") +metadata/idx = 5 metadata/bone_name = &"Bone-5" [node name="CircleShape2D" type="CollisionShape2D" parent="Butter4/Bone-5"] -shape = SubResource("CircleShape2D_1leud") +shape = SubResource("CircleShape2D_4xdtt") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Butter4/Bone-5"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-5") update_rotation = false update_scale = false +[node name="Joint2D-Bone-5-Bone-18" type="PinJoint2D" parent="Butter4/Bone-5"] +visible = false +rotation = -1.10715 +node_a = NodePath("..") +node_b = NodePath("../../Bone-18") +softness = 100.0 + [node name="Joint2D-Bone-5-Bone-1" type="PinJoint2D" parent="Butter4/Bone-5"] visible = false -rotation = -3.61651 +rotation = -3.56427 node_a = NodePath("..") node_b = NodePath("../../Bone-1") softness = 100.0 [node name="Joint2D-Bone-5-Bone-4" type="PinJoint2D" parent="Butter4/Bone-5"] visible = false -rotation = -2.92746 +rotation = -2.95379 node_a = NodePath("..") node_b = NodePath("../../Bone-4") softness = 100.0 [node name="Joint2D-Bone-5-Bone-8" type="PinJoint2D" parent="Butter4/Bone-5"] visible = false -rotation = -2.23219 +rotation = -2.31087 node_a = NodePath("..") node_b = NodePath("../../Bone-8") softness = 100.0 [node name="Joint2D-Bone-5-Bone-9" type="PinJoint2D" parent="Butter4/Bone-5"] visible = false -rotation = -1.55278 +rotation = -1.65736 node_a = NodePath("..") node_b = NodePath("../../Bone-9") softness = 100.0 -[node name="Joint2D-Bone-5-Bone-19" type="PinJoint2D" parent="Butter4/Bone-5"] -visible = false -rotation = -0.977532 -node_a = NodePath("..") -node_b = NodePath("../../Bone-19") -softness = 100.0 - -[node name="Bone-6" parent="Butter4" instance=ExtResource("3_6ern4")] -position = Vector2(55.7376, 28.3423) -mass = 0.05 +[node name="Bone-6" type="RigidBody2D" parent="Butter4" instance=ExtResource("3_6ern4")] +position = Vector2(54, 22.5) +input_pickable = true +mass = 0.0526316 physics_material_override = ExtResource("5_221ya") +script = ExtResource("11_tqnjl") +metadata/idx = 6 metadata/bone_name = &"Bone-6" [node name="CircleShape2D" type="CollisionShape2D" parent="Butter4/Bone-6"] -shape = SubResource("CircleShape2D_1leud") +shape = SubResource("CircleShape2D_4xdtt") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Butter4/Bone-6"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-6") update_rotation = false update_scale = false +[node name="Joint2D-Bone-6-Bone-10" type="PinJoint2D" parent="Butter4/Bone-6"] +visible = false +rotation = -1.60079 +node_a = NodePath("..") +node_b = NodePath("../../Bone-10") +softness = 100.0 + [node name="Joint2D-Bone-6-Bone-2" type="PinJoint2D" parent="Butter4/Bone-6"] visible = false -rotation = -4.67177 +rotation = 1.32582 node_a = NodePath("..") node_b = NodePath("../../Bone-2") softness = 100.0 [node name="Joint2D-Bone-6-Bone-3" type="PinJoint2D" parent="Butter4/Bone-6"] visible = false -rotation = 0.824017 +rotation = 0.686622 node_a = NodePath("..") node_b = NodePath("../../Bone-3") softness = 100.0 [node name="Joint2D-Bone-6-Bone-7" type="PinJoint2D" parent="Butter4/Bone-6"] visible = false -rotation = 0.0144326 node_a = NodePath("..") node_b = NodePath("../../Bone-7") softness = 100.0 -[node name="Joint2D-Bone-6-Bone-10" type="PinJoint2D" parent="Butter4/Bone-6"] -visible = false -rotation = -2.49098 -node_a = NodePath("..") -node_b = NodePath("../../Bone-10") -softness = 100.0 - [node name="Joint2D-Bone-6-Bone-11" type="PinJoint2D" parent="Butter4/Bone-6"] visible = false -rotation = -1.50208 +rotation = -0.686622 node_a = NodePath("..") node_b = NodePath("../../Bone-11") softness = 100.0 -[node name="Joint2D-Bone-6-Bone-12" type="PinJoint2D" parent="Butter4/Bone-6"] -visible = false -rotation = -0.736969 -node_a = NodePath("..") -node_b = NodePath("../../Bone-12") -softness = 100.0 - -[node name="Bone-7" parent="Butter4" instance=ExtResource("3_6ern4")] -position = Vector2(55.3545, 54.8831) -mass = 0.05 +[node name="Bone-7" type="RigidBody2D" parent="Butter4" instance=ExtResource("3_6ern4")] +position = Vector2(54, 53) +input_pickable = true +mass = 0.0526316 physics_material_override = ExtResource("5_221ya") +script = ExtResource("11_tqnjl") +metadata/idx = 7 metadata/bone_name = &"Bone-7" [node name="CircleShape2D" type="CollisionShape2D" parent="Butter4/Bone-7"] -shape = SubResource("CircleShape2D_1leud") +shape = SubResource("CircleShape2D_4xdtt") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Butter4/Bone-7"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-7") update_rotation = false update_scale = false [node name="Joint2D-Bone-7-Bone-2" type="PinJoint2D" parent="Butter4/Bone-7"] visible = false -rotation = -3.8423 +rotation = -3.94222 node_a = NodePath("..") node_b = NodePath("../../Bone-2") softness = 100.0 [node name="Joint2D-Bone-7-Bone-3" type="PinJoint2D" parent="Butter4/Bone-7"] visible = false -rotation = -4.60907 +rotation = 1.5708 node_a = NodePath("..") node_b = NodePath("../../Bone-3") softness = 100.0 -[node name="Joint2D-Bone-7-Bone-4" type="PinJoint2D" parent="Butter4/Bone-7"] +[node name="Joint2D-Bone-7-Bone-6" type="PinJoint2D" parent="Butter4/Bone-7"] visible = false -rotation = 0.850593 +rotation = -3.14159 node_a = NodePath("..") -node_b = NodePath("../../Bone-4") +node_b = NodePath("../../Bone-6") softness = 100.0 -[node name="Joint2D-Bone-7-Bone-6" type="PinJoint2D" parent="Butter4/Bone-7"] +[node name="Joint2D-Bone-7-Bone-4" type="PinJoint2D" parent="Butter4/Bone-7"] visible = false -rotation = -3.12716 +rotation = 0.785398 node_a = NodePath("..") -node_b = NodePath("../../Bone-6") +node_b = NodePath("../../Bone-4") softness = 100.0 [node name="Joint2D-Bone-7-Bone-8" type="PinJoint2D" parent="Butter4/Bone-7"] visible = false -rotation = 0.0344938 node_a = NodePath("..") node_b = NodePath("../../Bone-8") softness = 100.0 -[node name="Joint2D-Bone-7-Bone-11" type="PinJoint2D" parent="Butter4/Bone-7"] +[node name="Joint2D-Bone-7-Bone-10" type="PinJoint2D" parent="Butter4/Bone-7"] visible = false -rotation = -2.34037 +rotation = -2.46685 node_a = NodePath("..") -node_b = NodePath("../../Bone-11") +node_b = NodePath("../../Bone-10") softness = 100.0 -[node name="Joint2D-Bone-7-Bone-12" type="PinJoint2D" parent="Butter4/Bone-7"] +[node name="Joint2D-Bone-7-Bone-11" type="PinJoint2D" parent="Butter4/Bone-7"] visible = false -rotation = -1.59133 +rotation = -1.5708 node_a = NodePath("..") -node_b = NodePath("../../Bone-12") +node_b = NodePath("../../Bone-11") softness = 100.0 -[node name="Joint2D-Bone-7-Bone-13" type="PinJoint2D" parent="Butter4/Bone-7"] +[node name="Joint2D-Bone-7-Bone-12" type="PinJoint2D" parent="Butter4/Bone-7"] visible = false -rotation = -0.823625 +rotation = -0.785398 node_a = NodePath("..") -node_b = NodePath("../../Bone-13") +node_b = NodePath("../../Bone-12") softness = 100.0 -[node name="Bone-8" parent="Butter4" instance=ExtResource("3_6ern4")] -position = Vector2(54.5183, 79.1141) -mass = 0.05 +[node name="Bone-8" type="RigidBody2D" parent="Butter4" instance=ExtResource("3_6ern4")] +position = Vector2(54, 78) +input_pickable = true +mass = 0.0526316 physics_material_override = ExtResource("5_221ya") +script = ExtResource("11_tqnjl") +metadata/idx = 8 metadata/bone_name = &"Bone-8" [node name="CircleShape2D" type="CollisionShape2D" parent="Butter4/Bone-8"] -shape = SubResource("CircleShape2D_1leud") +shape = SubResource("CircleShape2D_4xdtt") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Butter4/Bone-8"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-8") update_rotation = false update_scale = false [node name="Joint2D-Bone-8-Bone-3" type="PinJoint2D" parent="Butter4/Bone-8"] visible = false -rotation = -3.88303 +rotation = -3.92699 node_a = NodePath("..") node_b = NodePath("../../Bone-3") softness = 100.0 [node name="Joint2D-Bone-8-Bone-4" type="PinJoint2D" parent="Butter4/Bone-8"] visible = false -rotation = -4.65531 +rotation = 1.5708 node_a = NodePath("..") node_b = NodePath("../../Bone-4") softness = 100.0 -[node name="Joint2D-Bone-8-Bone-5" type="PinJoint2D" parent="Butter4/Bone-8"] +[node name="Joint2D-Bone-8-Bone-7" type="PinJoint2D" parent="Butter4/Bone-8"] visible = false -rotation = 0.909408 +rotation = -3.14159 node_a = NodePath("..") -node_b = NodePath("../../Bone-5") +node_b = NodePath("../../Bone-7") softness = 100.0 -[node name="Joint2D-Bone-8-Bone-7" type="PinJoint2D" parent="Butter4/Bone-8"] +[node name="Joint2D-Bone-8-Bone-5" type="PinJoint2D" parent="Butter4/Bone-8"] visible = false -rotation = -3.1071 +rotation = 0.830723 node_a = NodePath("..") -node_b = NodePath("../../Bone-7") +node_b = NodePath("../../Bone-5") softness = 100.0 [node name="Joint2D-Bone-8-Bone-9" type="PinJoint2D" parent="Butter4/Bone-8"] visible = false -rotation = 0.0469652 node_a = NodePath("..") node_b = NodePath("../../Bone-9") softness = 100.0 -[node name="Joint2D-Bone-8-Bone-12" type="PinJoint2D" parent="Butter4/Bone-8"] +[node name="Joint2D-Bone-8-Bone-11" type="PinJoint2D" parent="Butter4/Bone-8"] visible = false -rotation = -2.35349 +rotation = -2.35619 node_a = NodePath("..") -node_b = NodePath("../../Bone-12") +node_b = NodePath("../../Bone-11") softness = 100.0 -[node name="Joint2D-Bone-8-Bone-13" type="PinJoint2D" parent="Butter4/Bone-8"] +[node name="Joint2D-Bone-8-Bone-12" type="PinJoint2D" parent="Butter4/Bone-8"] visible = false -rotation = -1.58598 +rotation = -1.5708 node_a = NodePath("..") -node_b = NodePath("../../Bone-13") +node_b = NodePath("../../Bone-12") softness = 100.0 -[node name="Joint2D-Bone-8-Bone-14" type="PinJoint2D" parent="Butter4/Bone-8"] +[node name="Joint2D-Bone-8-Bone-13" type="PinJoint2D" parent="Butter4/Bone-8"] visible = false -rotation = -0.722473 +rotation = -0.69066 node_a = NodePath("..") -node_b = NodePath("../../Bone-14") +node_b = NodePath("../../Bone-13") softness = 100.0 -[node name="Bone-9" parent="Butter4" instance=ExtResource("3_6ern4")] -position = Vector2(53.3725, 103.495) -mass = 0.05 +[node name="Bone-9" type="RigidBody2D" parent="Butter4" instance=ExtResource("3_6ern4")] +position = Vector2(54, 103) +input_pickable = true +mass = 0.0526316 physics_material_override = ExtResource("5_221ya") +script = ExtResource("11_tqnjl") +metadata/idx = 9 metadata/bone_name = &"Bone-9" [node name="CircleShape2D" type="CollisionShape2D" parent="Butter4/Bone-9"] -shape = SubResource("CircleShape2D_1leud") +shape = SubResource("CircleShape2D_4xdtt") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Butter4/Bone-9"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-9") update_rotation = false update_scale = false [node name="Joint2D-Bone-9-Bone-4" type="PinJoint2D" parent="Butter4/Bone-9"] visible = false -rotation = -3.89046 +rotation = -3.92699 node_a = NodePath("..") node_b = NodePath("../../Bone-4") softness = 100.0 [node name="Joint2D-Bone-9-Bone-5" type="PinJoint2D" parent="Butter4/Bone-9"] visible = false -rotation = -4.69438 +rotation = 1.48424 node_a = NodePath("..") node_b = NodePath("../../Bone-5") softness = 100.0 [node name="Joint2D-Bone-9-Bone-8" type="PinJoint2D" parent="Butter4/Bone-9"] visible = false -rotation = -3.09463 +rotation = -3.14159 node_a = NodePath("..") node_b = NodePath("../../Bone-8") softness = 100.0 -[node name="Joint2D-Bone-9-Bone-13" type="PinJoint2D" parent="Butter4/Bone-9"] +[node name="Joint2D-Bone-9-Bone-18" type="PinJoint2D" parent="Butter4/Bone-9"] visible = false -rotation = -2.3006 node_a = NodePath("..") -node_b = NodePath("../../Bone-13") +node_b = NodePath("../../Bone-18") softness = 100.0 -[node name="Joint2D-Bone-9-Bone-14" type="PinJoint2D" parent="Butter4/Bone-9"] +[node name="Joint2D-Bone-9-Bone-12" type="PinJoint2D" parent="Butter4/Bone-9"] visible = false -rotation = -1.43733 +rotation = -2.35619 node_a = NodePath("..") -node_b = NodePath("../../Bone-14") +node_b = NodePath("../../Bone-12") softness = 100.0 -[node name="Joint2D-Bone-9-Bone-19" type="PinJoint2D" parent="Butter4/Bone-9"] +[node name="Joint2D-Bone-9-Bone-13" type="PinJoint2D" parent="Butter4/Bone-9"] visible = false -rotation = 0.259457 +rotation = -1.3638 node_a = NodePath("..") -node_b = NodePath("../../Bone-19") +node_b = NodePath("../../Bone-13") softness = 100.0 -[node name="Bone-10" parent="Butter4" instance=ExtResource("3_6ern4")] -position = Vector2(69.1836, 10.6773) -mass = 0.05 +[node name="Bone-10" type="RigidBody2D" parent="Butter4" instance=ExtResource("3_6ern4")] +position = Vector2(79, 21.75) +input_pickable = true +mass = 0.0526316 physics_material_override = ExtResource("5_221ya") +script = ExtResource("11_tqnjl") +metadata/idx = 10 metadata/bone_name = &"Bone-10" [node name="CircleShape2D" type="CollisionShape2D" parent="Butter4/Bone-10"] -shape = SubResource("CircleShape2D_1leud") +shape = SubResource("CircleShape2D_4xdtt") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Butter4/Bone-10"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-10") update_rotation = false update_scale = false [node name="Joint2D-Bone-10-Bone-6" type="PinJoint2D" parent="Butter4/Bone-10"] visible = false -rotation = 0.650612 +rotation = 1.54081 node_a = NodePath("..") node_b = NodePath("../../Bone-6") softness = 100.0 +[node name="Joint2D-Bone-10-Bone-7" type="PinJoint2D" parent="Butter4/Bone-10"] +visible = false +rotation = 0.674741 +node_a = NodePath("..") +node_b = NodePath("../../Bone-7") +softness = 100.0 + [node name="Joint2D-Bone-10-Bone-11" type="PinJoint2D" parent="Butter4/Bone-10"] visible = false -rotation = -0.545454 node_a = NodePath("..") node_b = NodePath("../../Bone-11") softness = 100.0 -[node name="Bone-11" parent="Butter4" instance=ExtResource("3_6ern4")] -position = Vector2(80.9573, 30.078) -mass = 0.05 +[node name="Joint2D-Bone-10-Bone-14" type="PinJoint2D" parent="Butter4/Bone-10"] +visible = false +rotation = -1.2394 +node_a = NodePath("..") +node_b = NodePath("../../Bone-14") +softness = 100.0 + +[node name="Joint2D-Bone-10-Bone-15" type="PinJoint2D" parent="Butter4/Bone-10"] +visible = false +rotation = -0.63965 +node_a = NodePath("..") +node_b = NodePath("../../Bone-15") +softness = 100.0 + +[node name="Bone-11" type="RigidBody2D" parent="Butter4" instance=ExtResource("3_6ern4")] +position = Vector2(79, 53) +input_pickable = true +mass = 0.0526316 physics_material_override = ExtResource("5_221ya") +script = ExtResource("11_tqnjl") +metadata/idx = 11 metadata/bone_name = &"Bone-11" [node name="CircleShape2D" type="CollisionShape2D" parent="Butter4/Bone-11"] -shape = SubResource("CircleShape2D_1leud") +shape = SubResource("CircleShape2D_4xdtt") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Butter4/Bone-11"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-11") update_rotation = false update_scale = false [node name="Joint2D-Bone-11-Bone-6" type="PinJoint2D" parent="Butter4/Bone-11"] visible = false -rotation = -4.64367 +rotation = -3.82821 node_a = NodePath("..") node_b = NodePath("../../Bone-6") softness = 100.0 [node name="Joint2D-Bone-11-Bone-7" type="PinJoint2D" parent="Butter4/Bone-11"] visible = false -rotation = 0.80122 +rotation = 1.5708 node_a = NodePath("..") node_b = NodePath("../../Bone-7") softness = 100.0 [node name="Joint2D-Bone-11-Bone-10" type="PinJoint2D" parent="Butter4/Bone-11"] visible = false -rotation = -3.68705 +rotation = -3.14159 node_a = NodePath("..") node_b = NodePath("../../Bone-10") softness = 100.0 +[node name="Joint2D-Bone-11-Bone-8" type="PinJoint2D" parent="Butter4/Bone-11"] +visible = false +rotation = 0.785398 +node_a = NodePath("..") +node_b = NodePath("../../Bone-8") +softness = 100.0 + [node name="Joint2D-Bone-11-Bone-12" type="PinJoint2D" parent="Butter4/Bone-11"] visible = false -rotation = 0.0649149 node_a = NodePath("..") node_b = NodePath("../../Bone-12") softness = 100.0 +[node name="Joint2D-Bone-11-Bone-14" type="PinJoint2D" parent="Butter4/Bone-11"] +visible = false +rotation = -2.35619 +node_a = NodePath("..") +node_b = NodePath("../../Bone-14") +softness = 100.0 + [node name="Joint2D-Bone-11-Bone-15" type="PinJoint2D" parent="Butter4/Bone-11"] visible = false -rotation = -1.51807 +rotation = -1.5708 node_a = NodePath("..") node_b = NodePath("../../Bone-15") softness = 100.0 [node name="Joint2D-Bone-11-Bone-16" type="PinJoint2D" parent="Butter4/Bone-11"] visible = false -rotation = -0.749219 +rotation = -0.770171 node_a = NodePath("..") node_b = NodePath("../../Bone-16") softness = 100.0 -[node name="Bone-12" parent="Butter4" instance=ExtResource("3_6ern4")] -position = Vector2(79.3768, 54.3897) -mass = 0.05 +[node name="Bone-12" type="RigidBody2D" parent="Butter4" instance=ExtResource("3_6ern4")] +position = Vector2(79, 78) +input_pickable = true +mass = 0.0526316 physics_material_override = ExtResource("5_221ya") +script = ExtResource("11_tqnjl") +metadata/idx = 12 metadata/bone_name = &"Bone-12" [node name="CircleShape2D" type="CollisionShape2D" parent="Butter4/Bone-12"] -shape = SubResource("CircleShape2D_1leud") +shape = SubResource("CircleShape2D_4xdtt") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Butter4/Bone-12"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-12") update_rotation = false update_scale = false -[node name="Joint2D-Bone-12-Bone-6" type="PinJoint2D" parent="Butter4/Bone-12"] -visible = false -rotation = -3.87856 -node_a = NodePath("..") -node_b = NodePath("../../Bone-6") -softness = 100.0 - [node name="Joint2D-Bone-12-Bone-7" type="PinJoint2D" parent="Butter4/Bone-12"] visible = false -rotation = 1.55026 +rotation = -3.92699 node_a = NodePath("..") node_b = NodePath("../../Bone-7") softness = 100.0 [node name="Joint2D-Bone-12-Bone-8" type="PinJoint2D" parent="Butter4/Bone-12"] visible = false -rotation = 0.788103 +rotation = 1.5708 node_a = NodePath("..") node_b = NodePath("../../Bone-8") softness = 100.0 [node name="Joint2D-Bone-12-Bone-11" type="PinJoint2D" parent="Butter4/Bone-12"] visible = false -rotation = -3.07668 +rotation = -3.14159 node_a = NodePath("..") node_b = NodePath("../../Bone-11") softness = 100.0 +[node name="Joint2D-Bone-12-Bone-9" type="PinJoint2D" parent="Butter4/Bone-12"] +visible = false +rotation = 0.785398 +node_a = NodePath("..") +node_b = NodePath("../../Bone-9") +softness = 100.0 + [node name="Joint2D-Bone-12-Bone-13" type="PinJoint2D" parent="Butter4/Bone-12"] visible = false -rotation = -0.0698014 node_a = NodePath("..") node_b = NodePath("../../Bone-13") softness = 100.0 [node name="Joint2D-Bone-12-Bone-15" type="PinJoint2D" parent="Butter4/Bone-12"] visible = false -rotation = -2.35161 +rotation = -2.39245 node_a = NodePath("..") node_b = NodePath("../../Bone-15") softness = 100.0 [node name="Joint2D-Bone-12-Bone-16" type="PinJoint2D" parent="Butter4/Bone-12"] visible = false -rotation = -1.56748 +rotation = -1.5708 node_a = NodePath("..") node_b = NodePath("../../Bone-16") softness = 100.0 [node name="Joint2D-Bone-12-Bone-17" type="PinJoint2D" parent="Butter4/Bone-12"] visible = false -rotation = -0.803699 +rotation = -0.785398 node_a = NodePath("..") node_b = NodePath("../../Bone-17") softness = 100.0 -[node name="Bone-13" parent="Butter4" instance=ExtResource("3_6ern4")] -position = Vector2(81.0773, 78.7108) -mass = 0.05 +[node name="Bone-13" type="RigidBody2D" parent="Butter4" instance=ExtResource("3_6ern4")] +position = Vector2(79, 108.25) +input_pickable = true +mass = 0.0526316 physics_material_override = ExtResource("5_221ya") +script = ExtResource("11_tqnjl") +metadata/idx = 13 metadata/bone_name = &"Bone-13" [node name="CircleShape2D" type="CollisionShape2D" parent="Butter4/Bone-13"] -shape = SubResource("CircleShape2D_1leud") +shape = SubResource("CircleShape2D_4xdtt") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Butter4/Bone-13"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-13") update_rotation = false update_scale = false -[node name="Joint2D-Bone-13-Bone-7" type="PinJoint2D" parent="Butter4/Bone-13"] +[node name="Joint2D-Bone-13-Bone-18" type="PinJoint2D" parent="Butter4/Bone-13"] visible = false -rotation = -3.96522 +rotation = 1.10715 node_a = NodePath("..") -node_b = NodePath("../../Bone-7") +node_b = NodePath("../../Bone-18") +softness = 100.0 + +[node name="Joint2D-Bone-13-Bone-17" type="PinJoint2D" parent="Butter4/Bone-13"] +visible = false +rotation = -1.81335 +node_a = NodePath("..") +node_b = NodePath("../../Bone-17") softness = 100.0 [node name="Joint2D-Bone-13-Bone-8" type="PinJoint2D" parent="Butter4/Bone-13"] visible = false -rotation = 1.55561 +rotation = -3.83225 node_a = NodePath("..") node_b = NodePath("../../Bone-8") softness = 100.0 [node name="Joint2D-Bone-13-Bone-9" type="PinJoint2D" parent="Butter4/Bone-13"] visible = false -rotation = 0.840993 +rotation = -4.5054 node_a = NodePath("..") node_b = NodePath("../../Bone-9") softness = 100.0 [node name="Joint2D-Bone-13-Bone-12" type="PinJoint2D" parent="Butter4/Bone-13"] visible = false -rotation = -3.21139 +rotation = -3.14159 node_a = NodePath("..") node_b = NodePath("../../Bone-12") softness = 100.0 -[node name="Joint2D-Bone-13-Bone-14" type="PinJoint2D" parent="Butter4/Bone-13"] -visible = false -rotation = 0.0717928 -node_a = NodePath("..") -node_b = NodePath("../../Bone-14") -softness = 100.0 - [node name="Joint2D-Bone-13-Bone-16" type="PinJoint2D" parent="Butter4/Bone-13"] visible = false -rotation = -2.3919 +rotation = -2.46584 node_a = NodePath("..") node_b = NodePath("../../Bone-16") softness = 100.0 -[node name="Joint2D-Bone-13-Bone-17" type="PinJoint2D" parent="Butter4/Bone-13"] -visible = false -rotation = -1.52834 -node_a = NodePath("..") -node_b = NodePath("../../Bone-17") -softness = 100.0 - -[node name="Joint2D-Bone-13-Bone-18" type="PinJoint2D" parent="Butter4/Bone-13"] -visible = false -rotation = -0.71218 -node_a = NodePath("..") -node_b = NodePath("../../Bone-18") -softness = 100.0 - -[node name="Bone-14" parent="Butter4" instance=ExtResource("3_6ern4")] -position = Vector2(79.047, 106.942) -mass = 0.05 +[node name="Bone-14" type="RigidBody2D" parent="Butter4" instance=ExtResource("3_6ern4")] +position = Vector2(102.25, 29.75) +input_pickable = true +mass = 0.0526316 physics_material_override = ExtResource("5_221ya") +script = ExtResource("11_tqnjl") +metadata/idx = 14 metadata/bone_name = &"Bone-14" [node name="CircleShape2D" type="CollisionShape2D" parent="Butter4/Bone-14"] -shape = SubResource("CircleShape2D_1leud") +shape = SubResource("CircleShape2D_4xdtt") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Butter4/Bone-14"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-14") update_rotation = false update_scale = false -[node name="Joint2D-Bone-14-Bone-8" type="PinJoint2D" parent="Butter4/Bone-14"] -visible = false -rotation = -3.86407 -node_a = NodePath("..") -node_b = NodePath("../../Bone-8") -softness = 100.0 - -[node name="Joint2D-Bone-14-Bone-9" type="PinJoint2D" parent="Butter4/Bone-14"] +[node name="Joint2D-Bone-14-Bone-10" type="PinJoint2D" parent="Butter4/Bone-14"] visible = false -rotation = -4.57892 +rotation = -4.38099 node_a = NodePath("..") -node_b = NodePath("../../Bone-9") -softness = 100.0 - -[node name="Joint2D-Bone-14-Bone-13" type="PinJoint2D" parent="Butter4/Bone-14"] -visible = false -rotation = -3.0698 -node_a = NodePath("..") -node_b = NodePath("../../Bone-13") -softness = 100.0 - -[node name="Joint2D-Bone-14-Bone-17" type="PinJoint2D" parent="Butter4/Bone-14"] -visible = false -rotation = -2.36628 -node_a = NodePath("..") -node_b = NodePath("../../Bone-17") +node_b = NodePath("../../Bone-10") softness = 100.0 -[node name="Joint2D-Bone-14-Bone-18" type="PinJoint2D" parent="Butter4/Bone-14"] +[node name="Joint2D-Bone-14-Bone-11" type="PinJoint2D" parent="Butter4/Bone-14"] visible = false -rotation = -1.72662 +rotation = 0.785398 node_a = NodePath("..") -node_b = NodePath("../../Bone-18") +node_b = NodePath("../../Bone-11") softness = 100.0 -[node name="Joint2D-Bone-14-Bone-19" type="PinJoint2D" parent="Butter4/Bone-14"] +[node name="Joint2D-Bone-14-Bone-15" type="PinJoint2D" parent="Butter4/Bone-14"] visible = false -rotation = 1.16309 node_a = NodePath("..") -node_b = NodePath("../../Bone-19") +node_b = NodePath("../../Bone-15") softness = 100.0 -[node name="Bone-15" parent="Butter4" instance=ExtResource("3_6ern4")] -position = Vector2(102.751, 31.2282) -mass = 0.05 +[node name="Bone-15" type="RigidBody2D" parent="Butter4" instance=ExtResource("3_6ern4")] +position = Vector2(102.25, 53) +input_pickable = true +mass = 0.0526316 physics_material_override = ExtResource("5_221ya") +script = ExtResource("11_tqnjl") +metadata/idx = 15 metadata/bone_name = &"Bone-15" [node name="CircleShape2D" type="CollisionShape2D" parent="Butter4/Bone-15"] -shape = SubResource("CircleShape2D_1leud") +shape = SubResource("CircleShape2D_4xdtt") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Butter4/Bone-15"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-15") update_rotation = false update_scale = false +[node name="Joint2D-Bone-15-Bone-10" type="PinJoint2D" parent="Butter4/Bone-15"] +visible = false +rotation = -3.78124 +node_a = NodePath("..") +node_b = NodePath("../../Bone-10") +softness = 100.0 + [node name="Joint2D-Bone-15-Bone-11" type="PinJoint2D" parent="Butter4/Bone-15"] visible = false -rotation = -4.65966 +rotation = 1.5708 node_a = NodePath("..") node_b = NodePath("../../Bone-11") softness = 100.0 +[node name="Joint2D-Bone-15-Bone-14" type="PinJoint2D" parent="Butter4/Bone-15"] +visible = false +rotation = -3.14159 +node_a = NodePath("..") +node_b = NodePath("../../Bone-14") +softness = 100.0 + [node name="Joint2D-Bone-15-Bone-12" type="PinJoint2D" parent="Butter4/Bone-15"] visible = false -rotation = 0.789978 +rotation = 0.749145 node_a = NodePath("..") node_b = NodePath("../../Bone-12") softness = 100.0 [node name="Joint2D-Bone-15-Bone-16" type="PinJoint2D" parent="Butter4/Bone-15"] visible = false -rotation = -0.0384482 +rotation = -0.0399787 node_a = NodePath("..") node_b = NodePath("../../Bone-16") softness = 100.0 -[node name="Bone-16" parent="Butter4" instance=ExtResource("3_6ern4")] -position = Vector2(103.646, 54.4703) -mass = 0.05 +[node name="Bone-16" type="RigidBody2D" parent="Butter4" instance=ExtResource("3_6ern4")] +position = Vector2(103.25, 78) +input_pickable = true +mass = 0.0526316 physics_material_override = ExtResource("5_221ya") +script = ExtResource("11_tqnjl") +metadata/idx = 16 metadata/bone_name = &"Bone-16" [node name="CircleShape2D" type="CollisionShape2D" parent="Butter4/Bone-16"] -shape = SubResource("CircleShape2D_1leud") +shape = SubResource("CircleShape2D_4xdtt") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Butter4/Bone-16"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-16") update_rotation = false update_scale = false [node name="Joint2D-Bone-16-Bone-11" type="PinJoint2D" parent="Butter4/Bone-16"] visible = false -rotation = -3.89081 +rotation = -3.91176 node_a = NodePath("..") node_b = NodePath("../../Bone-11") softness = 100.0 [node name="Joint2D-Bone-16-Bone-12" type="PinJoint2D" parent="Butter4/Bone-16"] visible = false -rotation = -4.70907 +rotation = 1.5708 node_a = NodePath("..") node_b = NodePath("../../Bone-12") softness = 100.0 -[node name="Joint2D-Bone-16-Bone-13" type="PinJoint2D" parent="Butter4/Bone-16"] +[node name="Joint2D-Bone-16-Bone-15" type="PinJoint2D" parent="Butter4/Bone-16"] visible = false -rotation = 0.749689 +rotation = -3.18157 node_a = NodePath("..") -node_b = NodePath("../../Bone-13") +node_b = NodePath("../../Bone-15") softness = 100.0 -[node name="Joint2D-Bone-16-Bone-15" type="PinJoint2D" parent="Butter4/Bone-16"] +[node name="Joint2D-Bone-16-Bone-13" type="PinJoint2D" parent="Butter4/Bone-16"] visible = false -rotation = -3.18004 +rotation = 0.675748 node_a = NodePath("..") -node_b = NodePath("../../Bone-15") +node_b = NodePath("../../Bone-13") softness = 100.0 [node name="Joint2D-Bone-16-Bone-17" type="PinJoint2D" parent="Butter4/Bone-16"] visible = false -rotation = -0.0806511 node_a = NodePath("..") node_b = NodePath("../../Bone-17") softness = 100.0 -[node name="Bone-17" parent="Butter4" instance=ExtResource("3_6ern4")] -position = Vector2(105.689, 79.7563) -mass = 0.05 +[node name="Bone-17" type="RigidBody2D" parent="Butter4" instance=ExtResource("3_6ern4")] +position = Vector2(103.25, 102.25) +input_pickable = true +mass = 0.0526316 physics_material_override = ExtResource("5_221ya") +script = ExtResource("11_tqnjl") +metadata/idx = 17 metadata/bone_name = &"Bone-17" [node name="CircleShape2D" type="CollisionShape2D" parent="Butter4/Bone-17"] -shape = SubResource("CircleShape2D_1leud") +shape = SubResource("CircleShape2D_4xdtt") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Butter4/Bone-17"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-17") update_rotation = false update_scale = false -[node name="Joint2D-Bone-17-Bone-12" type="PinJoint2D" parent="Butter4/Bone-17"] -visible = false -rotation = -3.94529 -node_a = NodePath("..") -node_b = NodePath("../../Bone-12") -softness = 100.0 - [node name="Joint2D-Bone-17-Bone-13" type="PinJoint2D" parent="Butter4/Bone-17"] visible = false -rotation = -4.66994 +rotation = 1.32824 node_a = NodePath("..") node_b = NodePath("../../Bone-13") softness = 100.0 -[node name="Joint2D-Bone-17-Bone-14" type="PinJoint2D" parent="Butter4/Bone-17"] +[node name="Joint2D-Bone-17-Bone-12" type="PinJoint2D" parent="Butter4/Bone-17"] visible = false -rotation = 0.775311 +rotation = -3.92699 node_a = NodePath("..") -node_b = NodePath("../../Bone-14") +node_b = NodePath("../../Bone-12") softness = 100.0 [node name="Joint2D-Bone-17-Bone-16" type="PinJoint2D" parent="Butter4/Bone-17"] visible = false -rotation = -3.22224 +rotation = -3.14159 node_a = NodePath("..") node_b = NodePath("../../Bone-16") softness = 100.0 -[node name="Joint2D-Bone-17-Bone-18" type="PinJoint2D" parent="Butter4/Bone-17"] -visible = false -rotation = 0.14319 -node_a = NodePath("..") -node_b = NodePath("../../Bone-18") -softness = 100.0 - -[node name="Bone-18" parent="Butter4" instance=ExtResource("3_6ern4")] -position = Vector2(102.296, 103.289) -mass = 0.05 +[node name="Bone-18" type="RigidBody2D" parent="Butter4" instance=ExtResource("3_6ern4")] +position = Vector2(54, 120.75) +input_pickable = true +mass = 0.0526316 physics_material_override = ExtResource("5_221ya") +script = ExtResource("11_tqnjl") +metadata/idx = 18 metadata/bone_name = &"Bone-18" [node name="CircleShape2D" type="CollisionShape2D" parent="Butter4/Bone-18"] -shape = SubResource("CircleShape2D_1leud") +shape = SubResource("CircleShape2D_4xdtt") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Butter4/Bone-18"] -remote_path = NodePath("../../Skeleton2D/Bone-18") -update_rotation = false -update_scale = false - -[node name="Joint2D-Bone-18-Bone-13" type="PinJoint2D" parent="Butter4/Bone-18"] -visible = false -rotation = -3.85377 -node_a = NodePath("..") -node_b = NodePath("../../Bone-13") -softness = 100.0 - -[node name="Joint2D-Bone-18-Bone-14" type="PinJoint2D" parent="Butter4/Bone-18"] -visible = false -rotation = 1.41497 -node_a = NodePath("..") -node_b = NodePath("../../Bone-14") -softness = 100.0 - -[node name="Joint2D-Bone-18-Bone-17" type="PinJoint2D" parent="Butter4/Bone-18"] visible = false -rotation = -2.9984 -node_a = NodePath("..") -node_b = NodePath("../../Bone-17") -softness = 100.0 - -[node name="Bone-19" parent="Butter4" instance=ExtResource("3_6ern4")] -position = Vector2(49.0143, 119.913) -mass = 0.05 -physics_material_override = ExtResource("5_221ya") -metadata/bone_name = &"Bone-19" - -[node name="CircleShape2D" type="CollisionShape2D" parent="Butter4/Bone-19"] -shape = SubResource("CircleShape2D_1leud") - -[node name="RemoteTransform2D" type="RemoteTransform2D" parent="Butter4/Bone-19"] -remote_path = NodePath("../../Skeleton2D/Bone-19") +remote_path = NodePath("../../Skeleton2D/Bone-18") update_rotation = false update_scale = false -[node name="Joint2D-Bone-19-Bone-5" type="PinJoint2D" parent="Butter4/Bone-19"] +[node name="Joint2D-Bone-18-Bone-5" type="PinJoint2D" parent="Butter4/Bone-18"] visible = false -rotation = -4.11912 +rotation = -4.24874 node_a = NodePath("..") node_b = NodePath("../../Bone-5") softness = 100.0 -[node name="Joint2D-Bone-19-Bone-9" type="PinJoint2D" parent="Butter4/Bone-19"] +[node name="Joint2D-Bone-18-Bone-13" type="PinJoint2D" parent="Butter4/Bone-18"] visible = false -rotation = -2.88214 +rotation = -2.03444 node_a = NodePath("..") -node_b = NodePath("../../Bone-9") +node_b = NodePath("../../Bone-13") softness = 100.0 -[node name="Joint2D-Bone-19-Bone-14" type="PinJoint2D" parent="Butter4/Bone-19"] +[node name="Joint2D-Bone-18-Bone-9" type="PinJoint2D" parent="Butter4/Bone-18"] visible = false -rotation = -1.9785 +rotation = -3.14159 node_a = NodePath("..") -node_b = NodePath("../../Bone-14") +node_b = NodePath("../../Bone-9") softness = 100.0 [node name="Butter5" type="Polygon2D" parent="."] @@ -16102,5001 +16734,9034 @@ z_index = 11 position = Vector2(571, 84) texture = ExtResource("4_xackp") skeleton = NodePath("Skeleton2D") -polygon = PackedVector2Array(70, 4, 67, 4, 65, 6, 65, 7, 61, 7, 60, 8, 60, 9, 58, 10, 55, 10, 53, 12, 51, 12, 49, 15, 44, 15, 39, 19, 34, 19, 29, 23, 24, 23, 22, 25, 22, 26, 14, 30, 14, 31, 10, 31, 6, 34, 4, 34, 5, 37, 6, 37, 6, 42, 7, 42, 6, 99, 6, 105, 11, 108, 11, 109, 14, 110, 18, 110, 22, 113, 22, 114, 26, 114, 30, 117, 30, 118, 36, 118, 42, 121, 42, 122, 46, 122, 47, 123, 47, 124, 51, 125, 51, 126, 67, 126, 70, 122, 76, 122, 78, 119, 78, 118, 83, 118, 88, 114, 92, 114, 95, 111, 95, 110, 98, 109, 100, 109, 102, 107, 102, 106, 105, 106, 106, 105, 106, 104, 110, 102, 113, 102, 114, 100, 115, 100, 115, 87, 113, 83, 113, 35, 110, 35, 109, 34, 109, 31, 106, 31, 105, 30, 105, 28, 103, 28, 93, 19, 90, 19, 89, 18, 89, 15, 85, 13, 85, 11, 82, 11, 74, 4, 74, 3, 70, 3, 16.404, 42.2231, 17.2099, 64.8417, 14.9926, 67.4763, 6.56298, 66.9104, 7, 42, 6, 42, 6, 40.8541, 19.9638, 39.1868, 16.404, 42.2231, 6, 40.8541, 6, 37, 5, 37, 4, 34, 6, 34, 10, 31, 14, 31, 14, 30, 19.1198, 27.4401, 14.9926, 67.4763, 16.6942, 88.6245, 14.8609, 90.573, 6.15233, 90.317, 6.56298, 66.9104, 41.8946, 39.7678, 19.9638, 39.1868, 19.1198, 27.4401, 22, 26, 22, 25, 24, 23, 29, 23, 34, 19, 39, 19, 44, 15, 45.1977, 15, 41.8946, 39.7678, 43.4228, 41.3806, 42.0191, 65.3034, 17.2099, 64.8417, 16.404, 42.2231, 19.9638, 39.1868, 42.0191, 65.3034, 43.7593, 67.3959, 39.9293, 90.513, 16.6942, 88.6245, 14.9926, 67.4763, 17.2099, 64.8417, 39.9293, 90.513, 40.0064, 90.6062, 41.7542, 116.383, 40.9418, 117.302, 29.7451, 116.809, 26, 114, 22, 114, 22, 113, 18, 110, 14.0972, 110, 14.8609, 90.573, 16.6942, 88.6245, 14.8609, 90.573, 14.0972, 110, 14, 110, 11, 109, 11, 108, 6, 105, 6, 99, 6.15233, 90.317, 69.5805, 18.3546, 67.0739, 41.8496, 66.534, 42.37, 43.4228, 41.3806, 41.8946, 39.7678, 45.2666, 14.4835, 65.4613, 14.3145, 66.534, 42.37, 68.6898, 66.9299, 67.4574, 68.3857, 43.7593, 67.3959, 42.0191, 65.3034, 43.4228, 41.3806, 67.4574, 68.3857, 69.1074, 88.2666, 66.7385, 90.8323, 40.0064, 90.6062, 39.9293, 90.513, 43.7593, 67.3959, 66.7385, 90.8323, 65.1923, 113.826, 41.7542, 116.383, 40.0064, 90.6062, 74, 4, 82, 11, 85, 11, 85, 13, 89, 15, 89, 17.8885, 69.5805, 18.3546, 65.4613, 14.3145, 67.6064, 4, 70, 4, 70, 3, 74, 3, 65.4613, 14.3145, 49.3672, 14.4492, 51, 12, 53, 12, 55, 10, 58, 10, 60, 9, 60, 8, 61, 7, 65, 7, 65, 6, 67, 4, 67.6064, 4, 94.8406, 40.0048, 92.2197, 42.3484, 67.0739, 41.8496, 69.5805, 18.3546, 92.3703, 17.8076, 92.2197, 42.3484, 89.726, 64.694, 68.6898, 66.9299, 66.534, 42.37, 67.0739, 41.8496, 94.6971, 68.9358, 93.0974, 92.5784, 92.9017, 92.7277, 69.1074, 88.2666, 67.4574, 68.3857, 68.6898, 66.9299, 89.726, 64.694, 92.9017, 92.7277, 89.0792, 117.303, 68.2836, 116.274, 65.1923, 113.826, 66.7385, 90.8323, 69.1074, 88.2666, 84.175, 117.06, 83, 118, 78, 118, 78, 119, 76, 122, 70, 122, 67.2874, 125.617, 68.2836, 116.274, 103, 28, 105, 28, 105, 30, 106, 31, 109, 31, 109, 34, 110, 35, 113, 35, 113, 43.4565, 94.8406, 40.0048, 92.503, 19, 93, 19, 113.848, 43.6177, 117.565, 63.6165, 115.747, 65.8505, 94.6971, 68.9358, 89.726, 64.694, 92.2197, 42.3484, 94.8406, 40.0048, 118.281, 89.2678, 114.613, 93.6621, 93.0974, 92.5784, 94.6971, 68.9358, 115.747, 65.8505, 114.613, 93.6621, 115, 95.2133, 115, 100, 114, 100, 113, 102, 110, 102, 106, 104, 106, 105, 105, 106, 102, 106, 102, 107, 100, 109, 98, 109, 95, 110, 95, 111, 92, 114, 89.5929, 114, 92.9017, 92.7277, 93.0974, 92.5784, 115, 95.2133, 114.613, 93.6621, 115, 93.1981, 68.2836, 116.274, 67.2874, 125.617, 67, 126, 51, 126, 51, 125, 47, 124, 47, 123, 46, 122, 42, 122, 42, 121, 41.1336, 120.567, 40.9418, 117.302, 41.7542, 116.383, 65.1923, 113.826, 40.9418, 117.302, 41.1336, 120.567, 36, 118, 30, 118, 30, 117, 29.7451, 116.809) -polygons = [PackedInt32Array(88, 89, 90), PackedInt32Array(90, 91, 92), PackedInt32Array(92, 93, 94), PackedInt32Array(88, 90, 92), PackedInt32Array(92, 94, 88), PackedInt32Array(105, 95, 96), PackedInt32Array(96, 97, 98), PackedInt32Array(98, 99, 100), PackedInt32Array(101, 102, 103), PackedInt32Array(103, 104, 105), PackedInt32Array(105, 96, 98), PackedInt32Array(98, 100, 101), PackedInt32Array(103, 105, 98), PackedInt32Array(98, 101, 103), PackedInt32Array(110, 106, 107), PackedInt32Array(107, 108, 109), PackedInt32Array(109, 110, 107), PackedInt32Array(121, 111, 112), PackedInt32Array(112, 113, 114), PackedInt32Array(114, 115, 116), PackedInt32Array(117, 118, 119), PackedInt32Array(119, 120, 121), PackedInt32Array(112, 114, 116), PackedInt32Array(119, 121, 112), PackedInt32Array(112, 116, 117), PackedInt32Array(117, 119, 112), PackedInt32Array(127, 122, 123), PackedInt32Array(123, 124, 125), PackedInt32Array(125, 126, 127), PackedInt32Array(127, 123, 125), PackedInt32Array(133, 128, 129), PackedInt32Array(129, 130, 131), PackedInt32Array(131, 132, 133), PackedInt32Array(133, 129, 131), PackedInt32Array(145, 134, 135), PackedInt32Array(135, 136, 137), PackedInt32Array(137, 138, 139), PackedInt32Array(139, 140, 141), PackedInt32Array(142, 143, 144), PackedInt32Array(144, 145, 135), PackedInt32Array(135, 137, 139), PackedInt32Array(139, 141, 142), PackedInt32Array(142, 144, 135), PackedInt32Array(135, 139, 142), PackedInt32Array(153, 146, 147), PackedInt32Array(147, 148, 149), PackedInt32Array(150, 151, 152), PackedInt32Array(152, 153, 147), PackedInt32Array(147, 149, 150), PackedInt32Array(150, 152, 147), PackedInt32Array(160, 154, 155), PackedInt32Array(155, 156, 157), PackedInt32Array(157, 158, 159), PackedInt32Array(159, 160, 155), PackedInt32Array(155, 157, 159), PackedInt32Array(166, 161, 162), PackedInt32Array(162, 163, 164), PackedInt32Array(164, 165, 166), PackedInt32Array(166, 162, 164), PackedInt32Array(172, 167, 168), PackedInt32Array(168, 169, 170), PackedInt32Array(170, 171, 172), PackedInt32Array(172, 168, 170), PackedInt32Array(176, 173, 174), PackedInt32Array(174, 175, 176), PackedInt32Array(178, 179, 180), PackedInt32Array(180, 181, 182), PackedInt32Array(182, 183, 184), PackedInt32Array(184, 185, 186), PackedInt32Array(186, 187, 188), PackedInt32Array(178, 180, 182), PackedInt32Array(182, 184, 186), PackedInt32Array(186, 188, 177), PackedInt32Array(177, 178, 182), PackedInt32Array(182, 186, 177), PackedInt32Array(189, 190, 191), PackedInt32Array(192, 193, 194), PackedInt32Array(195, 196, 197), PackedInt32Array(198, 199, 200), PackedInt32Array(200, 201, 189), PackedInt32Array(189, 191, 192), PackedInt32Array(195, 197, 198), PackedInt32Array(198, 200, 189), PackedInt32Array(189, 192, 194), PackedInt32Array(194, 195, 198), PackedInt32Array(198, 189, 194), PackedInt32Array(206, 202, 203), PackedInt32Array(203, 204, 205), PackedInt32Array(205, 206, 203), PackedInt32Array(211, 207, 208), PackedInt32Array(208, 209, 210), PackedInt32Array(210, 211, 208), PackedInt32Array(218, 212, 213), PackedInt32Array(213, 214, 215), PackedInt32Array(215, 216, 217), PackedInt32Array(217, 218, 213), PackedInt32Array(213, 215, 217), PackedInt32Array(224, 219, 220), PackedInt32Array(220, 221, 222), PackedInt32Array(222, 223, 224), PackedInt32Array(224, 220, 222), PackedInt32Array(232, 225, 226), PackedInt32Array(227, 228, 229), PackedInt32Array(230, 231, 232), PackedInt32Array(232, 226, 227), PackedInt32Array(227, 229, 230), PackedInt32Array(230, 232, 227), PackedInt32Array(233, 234, 235), PackedInt32Array(236, 237, 238), PackedInt32Array(239, 240, 241), PackedInt32Array(241, 242, 243), PackedInt32Array(243, 244, 233), PackedInt32Array(238, 239, 241), PackedInt32Array(241, 243, 233), PackedInt32Array(236, 238, 241), PackedInt32Array(241, 233, 235), PackedInt32Array(235, 236, 241), PackedInt32Array(251, 245, 246), PackedInt32Array(246, 247, 248), PackedInt32Array(248, 249, 250), PackedInt32Array(250, 251, 246), PackedInt32Array(246, 248, 250), PackedInt32Array(256, 252, 253), PackedInt32Array(253, 254, 255), PackedInt32Array(255, 256, 253), PackedInt32Array(275, 257, 258), PackedInt32Array(258, 259, 260), PackedInt32Array(260, 261, 262), PackedInt32Array(263, 264, 265), PackedInt32Array(266, 267, 268), PackedInt32Array(270, 271, 272), PackedInt32Array(272, 273, 274), PackedInt32Array(274, 275, 258), PackedInt32Array(258, 260, 262), PackedInt32Array(263, 265, 266), PackedInt32Array(266, 268, 269), PackedInt32Array(270, 272, 274), PackedInt32Array(274, 258, 262), PackedInt32Array(266, 269, 270), PackedInt32Array(274, 262, 263), PackedInt32Array(266, 270, 274), PackedInt32Array(274, 263, 266), PackedInt32Array(278, 276, 277), PackedInt32Array(292, 279, 280), PackedInt32Array(280, 281, 282), PackedInt32Array(283, 284, 285), PackedInt32Array(286, 287, 288), PackedInt32Array(288, 289, 290), PackedInt32Array(290, 291, 292), PackedInt32Array(292, 280, 282), PackedInt32Array(283, 285, 286), PackedInt32Array(286, 288, 290), PackedInt32Array(292, 282, 283), PackedInt32Array(283, 286, 290), PackedInt32Array(290, 292, 283), PackedInt32Array(293, 294, 295), PackedInt32Array(295, 296, 297), PackedInt32Array(297, 298, 293), PackedInt32Array(293, 295, 297)] -bones = ["Bone-0", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 1, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 1, 0.7, 0.7, 0, 0, 0, 0.7, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-1", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-2", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 1, 0.7, 0.7, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-3", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-4", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-5", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 1, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0.7, 0, 0.7, 0, 0.7, 0.7), "Bone-6", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-7", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-8", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-9", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0), "Bone-10", PackedFloat32Array(0.7, 0.7, 0, 0.7, 0.7, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0.7, 0.7, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 1, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 1, 0.7, 0.7, 1, 0.7, 1, 1, 1, 1, 0.7, 0.7, 1, 0.7, 0.7, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-11", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-12", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-13", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-14", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 1, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0), "Bone-15", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 1, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-16", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-17", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-18", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0.7, 0.7, 1, 0.7, 1, 0.7, 0.7, 0.7, 0.7, 0.7, 1, 0.7, 0.7, 0.7, 1, 1, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-19", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7)] -internal_vertex_count = 211 +polygon = PackedVector2Array(70, 4, 67, 4, 65, 6, 65, 7, 61, 7, 60, 8, 60, 9, 58, 10, 55, 10, 53, 12, 51, 12, 49, 15, 44, 15, 39, 19, 34, 19, 29, 23, 24, 23, 22, 25, 22, 26, 14, 30, 14, 31, 10, 31, 6, 34, 4, 34, 5, 37, 6, 37, 6, 42, 7, 42, 6, 99, 6, 105, 11, 108, 11, 109, 14, 110, 18, 110, 22, 113, 22, 114, 26, 114, 30, 117, 30, 118, 36, 118, 42, 121, 42, 122, 46, 122, 47, 123, 47, 124, 51, 125, 51, 126, 67, 126, 70, 122, 76, 122, 78, 119, 78, 118, 83, 118, 88, 114, 92, 114, 95, 111, 95, 110, 98, 109, 100, 109, 102, 107, 102, 106, 105, 106, 106, 105, 106, 104, 110, 102, 113, 102, 114, 100, 115, 100, 115, 87, 113, 83, 113, 35, 110, 35, 109, 34, 109, 31, 106, 31, 105, 30, 105, 28, 103, 28, 93, 19, 90, 19, 89, 18, 89, 15, 85, 13, 85, 11, 82, 11, 74, 4, 74, 3, 70, 3, 16.5, 65.5, 6.58772, 65.5, 6.80702, 53, 16.5, 53, 16.5, 53, 6.80702, 53, 7, 42, 6, 42, 6, 40.5, 16.5, 40.5, 16.5, 40.5, 6, 40.5, 6, 37, 5, 37, 4, 34, 6, 34, 10, 31, 14, 31, 14, 30, 16.5, 28.75, 16.5, 90.5, 6.14912, 90.5, 6.36842, 78, 16.5, 78, 16.5, 78, 6.36842, 78, 6.58772, 65.5, 16.5, 65.5, 29, 28, 18, 28, 22, 26, 22, 25, 24, 23, 29, 23, 41.5, 40.5, 29, 40.5, 29, 28, 41.5, 28, 29, 40.5, 16.5, 40.5, 16.5, 28.75, 18, 28, 29, 28, 41.5, 28, 29, 28, 29, 23, 34, 19, 39, 19, 41.5, 17, 29, 53, 16.5, 53, 16.5, 40.5, 29, 40.5, 41.5, 65.5, 29, 65.5, 29, 53, 41.5, 53, 29, 65.5, 16.5, 65.5, 16.5, 53, 29, 53, 41.5, 53, 29, 53, 29, 40.5, 41.5, 40.5, 29, 78, 16.5, 78, 16.5, 65.5, 29, 65.5, 41.5, 90.5, 29, 90.5, 29, 78, 41.5, 78, 29, 90.5, 16.5, 90.5, 16.5, 78, 29, 78, 41.5, 78, 29, 78, 29, 65.5, 41.5, 65.5, 29, 103, 16.5, 103, 16.5, 90.5, 29, 90.5, 41.5, 115.5, 29, 115.5, 29, 103, 41.5, 103, 29, 115.5, 28, 115.5, 26, 114, 22, 114, 22, 113, 18, 110, 16.5, 110, 16.5, 103, 29, 103, 41.5, 103, 29, 103, 29, 90.5, 41.5, 90.5, 16.5, 110, 14, 110, 11, 109, 11, 108, 6, 105, 6, 103, 16.5, 103, 16.5, 103, 6, 103, 6, 99, 6.14912, 90.5, 16.5, 90.5, 29, 116.25, 28, 115.5, 29, 115.5, 41.5, 120.75, 36, 118, 30, 118, 30, 117, 29, 116.25, 29, 115.5, 41.5, 115.5, 54, 28, 41.5, 28, 41.5, 17, 43.375, 15.5, 54, 15.5, 66.5, 40.5, 54, 40.5, 54, 28, 66.5, 28, 54, 40.5, 41.5, 40.5, 41.5, 28, 54, 28, 66.5, 28, 54, 28, 54, 15.5, 66.5, 15.5, 66.5, 15.5, 54, 15.5, 54, 11, 55, 10, 58, 10, 60, 9, 60, 8, 61, 7, 65, 7, 65, 6, 66.5, 4.5, 54, 15.5, 43.375, 15.5, 44, 15, 49, 15, 51, 12, 53, 12, 54, 11, 54, 53, 41.5, 53, 41.5, 40.5, 54, 40.5, 66.5, 65.5, 54, 65.5, 54, 53, 66.5, 53, 54, 65.5, 41.5, 65.5, 41.5, 53, 54, 53, 66.5, 53, 54, 53, 54, 40.5, 66.5, 40.5, 54, 78, 41.5, 78, 41.5, 65.5, 54, 65.5, 66.5, 90.5, 54, 90.5, 54, 78, 66.5, 78, 54, 90.5, 41.5, 90.5, 41.5, 78, 54, 78, 66.5, 78, 54, 78, 54, 65.5, 66.5, 65.5, 54, 103, 41.5, 103, 41.5, 90.5, 54, 90.5, 66.5, 115.5, 54, 115.5, 54, 103, 66.5, 103, 54, 115.5, 41.5, 115.5, 41.5, 103, 54, 103, 66.5, 103, 54, 103, 54, 90.5, 66.5, 90.5, 79, 28, 66.5, 28, 66.5, 15.5, 79, 15.5, 91.5, 40.5, 79, 40.5, 79, 28, 91.5, 28, 79, 40.5, 66.5, 40.5, 66.5, 28, 79, 28, 89, 18, 90, 19, 91.5, 19, 91.5, 28, 79, 28, 79, 15.5, 89, 15.5, 82, 11, 85, 11, 85, 13, 89, 15, 89, 15.5, 79, 15.5, 79, 8.375, 74, 4, 79, 8.375, 79, 15.5, 66.5, 15.5, 66.5, 4.5, 67, 4, 70, 4, 70, 3, 74, 3, 79, 53, 66.5, 53, 66.5, 40.5, 79, 40.5, 91.5, 65.5, 79, 65.5, 79, 53, 91.5, 53, 79, 65.5, 66.5, 65.5, 66.5, 53, 79, 53, 91.5, 53, 79, 53, 79, 40.5, 91.5, 40.5, 79, 78, 66.5, 78, 66.5, 65.5, 79, 65.5, 91.5, 90.5, 79, 90.5, 79, 78, 91.5, 78, 79, 90.5, 66.5, 90.5, 66.5, 78, 79, 78, 91.5, 78, 79, 78, 79, 65.5, 91.5, 65.5, 79, 103, 66.5, 103, 66.5, 90.5, 79, 90.5, 91.5, 114, 88, 114, 86.125, 115.5, 79, 115.5, 79, 103, 91.5, 103, 79, 115.5, 66.5, 115.5, 66.5, 103, 79, 103, 91.5, 103, 79, 103, 79, 90.5, 91.5, 90.5, 79, 118, 78, 118, 78, 119, 76, 122, 70, 122, 67, 126, 66.5, 126, 66.5, 115.5, 79, 115.5, 83, 118, 79, 118, 79, 115.5, 86.125, 115.5, 103, 28, 91.5, 28, 91.5, 19, 93, 19, 105, 30, 106, 31, 109, 31, 109, 34, 110, 35, 113, 35, 113, 40.5, 104, 40.5, 104, 28, 105, 28, 104, 40.5, 91.5, 40.5, 91.5, 28, 104, 28, 104, 53, 91.5, 53, 91.5, 40.5, 104, 40.5, 113, 65.5, 104, 65.5, 104, 53, 113, 53, 104, 65.5, 91.5, 65.5, 91.5, 53, 104, 53, 113, 53, 104, 53, 104, 40.5, 113, 40.5, 104, 78, 91.5, 78, 91.5, 65.5, 104, 65.5, 113, 83, 115, 87, 115, 90.5, 104, 90.5, 104, 78, 113, 78, 104, 90.5, 91.5, 90.5, 91.5, 78, 104, 78, 113, 78, 104, 78, 104, 65.5, 113, 65.5, 104, 103, 91.5, 103, 91.5, 90.5, 104, 90.5, 106, 104, 106, 105, 105, 106, 104, 106, 104, 103, 108, 103, 104, 106, 102, 106, 102, 107, 100, 109, 98, 109, 95, 110, 95, 111, 92, 114, 91.5, 114, 91.5, 103, 104, 103, 115, 100, 114, 100, 113, 102, 110, 102, 108, 103, 104, 103, 104, 90.5, 115, 90.5, 54, 126, 51, 126, 51, 125, 47, 124, 47, 123, 46, 122, 42, 122, 42, 121, 41.5, 120.75, 41.5, 115.5, 54, 115.5, 66.5, 126, 54, 126, 54, 115.5, 66.5, 115.5) +polygons = [PackedInt32Array(91, 88, 89), PackedInt32Array(89, 90, 91), PackedInt32Array(97, 92, 93), PackedInt32Array(94, 95, 96), PackedInt32Array(97, 93, 94), PackedInt32Array(94, 96, 97), PackedInt32Array(107, 98, 99), PackedInt32Array(100, 101, 102), PackedInt32Array(103, 104, 105), PackedInt32Array(105, 106, 107), PackedInt32Array(100, 102, 103), PackedInt32Array(105, 107, 99), PackedInt32Array(100, 103, 105), PackedInt32Array(105, 99, 100), PackedInt32Array(111, 108, 109), PackedInt32Array(109, 110, 111), PackedInt32Array(115, 112, 113), PackedInt32Array(113, 114, 115), PackedInt32Array(121, 116, 117), PackedInt32Array(118, 119, 120), PackedInt32Array(121, 117, 118), PackedInt32Array(118, 120, 121), PackedInt32Array(125, 122, 123), PackedInt32Array(123, 124, 125), PackedInt32Array(130, 126, 127), PackedInt32Array(127, 128, 129), PackedInt32Array(129, 130, 127), PackedInt32Array(136, 131, 132), PackedInt32Array(132, 133, 134), PackedInt32Array(135, 136, 132), PackedInt32Array(132, 134, 135), PackedInt32Array(140, 137, 138), PackedInt32Array(138, 139, 140), PackedInt32Array(144, 141, 142), PackedInt32Array(142, 143, 144), PackedInt32Array(148, 145, 146), PackedInt32Array(146, 147, 148), PackedInt32Array(152, 149, 150), PackedInt32Array(150, 151, 152), PackedInt32Array(156, 153, 154), PackedInt32Array(154, 155, 156), PackedInt32Array(160, 157, 158), PackedInt32Array(158, 159, 160), PackedInt32Array(164, 161, 162), PackedInt32Array(162, 163, 164), PackedInt32Array(168, 165, 166), PackedInt32Array(166, 167, 168), PackedInt32Array(172, 169, 170), PackedInt32Array(170, 171, 172), PackedInt32Array(176, 173, 174), PackedInt32Array(174, 175, 176), PackedInt32Array(185, 177, 178), PackedInt32Array(179, 180, 181), PackedInt32Array(182, 183, 184), PackedInt32Array(184, 185, 178), PackedInt32Array(179, 181, 182), PackedInt32Array(184, 178, 179), PackedInt32Array(179, 182, 184), PackedInt32Array(189, 186, 187), PackedInt32Array(187, 188, 189), PackedInt32Array(196, 190, 191), PackedInt32Array(191, 192, 193), PackedInt32Array(193, 194, 195), PackedInt32Array(195, 196, 191), PackedInt32Array(191, 193, 195), PackedInt32Array(201, 197, 198), PackedInt32Array(198, 199, 200), PackedInt32Array(200, 201, 198), PackedInt32Array(204, 202, 203), PackedInt32Array(211, 205, 206), PackedInt32Array(206, 207, 208), PackedInt32Array(208, 209, 210), PackedInt32Array(210, 211, 206), PackedInt32Array(206, 208, 210), PackedInt32Array(216, 212, 213), PackedInt32Array(213, 214, 215), PackedInt32Array(215, 216, 213), PackedInt32Array(220, 217, 218), PackedInt32Array(218, 219, 220), PackedInt32Array(224, 221, 222), PackedInt32Array(222, 223, 224), PackedInt32Array(228, 225, 226), PackedInt32Array(226, 227, 228), PackedInt32Array(229, 230, 231), PackedInt32Array(231, 232, 233), PackedInt32Array(234, 235, 236), PackedInt32Array(237, 238, 239), PackedInt32Array(229, 231, 233), PackedInt32Array(234, 236, 237), PackedInt32Array(237, 239, 229), PackedInt32Array(229, 233, 234), PackedInt32Array(234, 237, 229), PackedInt32Array(240, 241, 242), PackedInt32Array(243, 244, 245), PackedInt32Array(245, 246, 240), PackedInt32Array(240, 242, 243), PackedInt32Array(243, 245, 240), PackedInt32Array(250, 247, 248), PackedInt32Array(248, 249, 250), PackedInt32Array(254, 251, 252), PackedInt32Array(252, 253, 254), PackedInt32Array(258, 255, 256), PackedInt32Array(256, 257, 258), PackedInt32Array(262, 259, 260), PackedInt32Array(260, 261, 262), PackedInt32Array(266, 263, 264), PackedInt32Array(264, 265, 266), PackedInt32Array(270, 267, 268), PackedInt32Array(268, 269, 270), PackedInt32Array(274, 271, 272), PackedInt32Array(272, 273, 274), PackedInt32Array(278, 275, 276), PackedInt32Array(276, 277, 278), PackedInt32Array(282, 279, 280), PackedInt32Array(280, 281, 282), PackedInt32Array(286, 283, 284), PackedInt32Array(284, 285, 286), PackedInt32Array(290, 287, 288), PackedInt32Array(288, 289, 290), PackedInt32Array(294, 291, 292), PackedInt32Array(292, 293, 294), PackedInt32Array(298, 295, 296), PackedInt32Array(296, 297, 298), PackedInt32Array(302, 299, 300), PackedInt32Array(300, 301, 302), PackedInt32Array(306, 303, 304), PackedInt32Array(304, 305, 306), PackedInt32Array(308, 309, 310), PackedInt32Array(310, 311, 312), PackedInt32Array(312, 313, 307), PackedInt32Array(307, 308, 310), PackedInt32Array(310, 312, 307), PackedInt32Array(314, 315, 316), PackedInt32Array(316, 317, 318), PackedInt32Array(319, 320, 314), PackedInt32Array(316, 318, 319), PackedInt32Array(319, 314, 316), PackedInt32Array(321, 322, 323), PackedInt32Array(323, 324, 325), PackedInt32Array(325, 326, 327), PackedInt32Array(327, 328, 329), PackedInt32Array(321, 323, 325), PackedInt32Array(327, 329, 321), PackedInt32Array(321, 325, 327), PackedInt32Array(333, 330, 331), PackedInt32Array(331, 332, 333), PackedInt32Array(337, 334, 335), PackedInt32Array(335, 336, 337), PackedInt32Array(341, 338, 339), PackedInt32Array(339, 340, 341), PackedInt32Array(345, 342, 343), PackedInt32Array(343, 344, 345), PackedInt32Array(349, 346, 347), PackedInt32Array(347, 348, 349), PackedInt32Array(353, 350, 351), PackedInt32Array(351, 352, 353), PackedInt32Array(357, 354, 355), PackedInt32Array(355, 356, 357), PackedInt32Array(361, 358, 359), PackedInt32Array(359, 360, 361), PackedInt32Array(365, 362, 363), PackedInt32Array(363, 364, 365), PackedInt32Array(371, 366, 367), PackedInt32Array(367, 368, 369), PackedInt32Array(369, 370, 371), PackedInt32Array(371, 367, 369), PackedInt32Array(375, 372, 373), PackedInt32Array(373, 374, 375), PackedInt32Array(379, 376, 377), PackedInt32Array(377, 378, 379), PackedInt32Array(388, 380, 381), PackedInt32Array(381, 382, 383), PackedInt32Array(384, 385, 386), PackedInt32Array(387, 388, 381), PackedInt32Array(381, 383, 384), PackedInt32Array(384, 386, 387), PackedInt32Array(387, 381, 384), PackedInt32Array(392, 389, 390), PackedInt32Array(390, 391, 392), PackedInt32Array(396, 393, 394), PackedInt32Array(394, 395, 396), PackedInt32Array(398, 399, 400), PackedInt32Array(401, 402, 403), PackedInt32Array(404, 405, 406), PackedInt32Array(400, 401, 403), PackedInt32Array(404, 406, 397), PackedInt32Array(398, 400, 403), PackedInt32Array(403, 404, 397), PackedInt32Array(397, 398, 403), PackedInt32Array(410, 407, 408), PackedInt32Array(408, 409, 410), PackedInt32Array(414, 411, 412), PackedInt32Array(412, 413, 414), PackedInt32Array(418, 415, 416), PackedInt32Array(416, 417, 418), PackedInt32Array(422, 419, 420), PackedInt32Array(420, 421, 422), PackedInt32Array(426, 423, 424), PackedInt32Array(424, 425, 426), PackedInt32Array(430, 427, 428), PackedInt32Array(428, 429, 430), PackedInt32Array(431, 432, 433), PackedInt32Array(433, 434, 435), PackedInt32Array(435, 436, 431), PackedInt32Array(431, 433, 435), PackedInt32Array(440, 437, 438), PackedInt32Array(438, 439, 440), PackedInt32Array(444, 441, 442), PackedInt32Array(442, 443, 444), PackedInt32Array(448, 445, 446), PackedInt32Array(446, 447, 448), PackedInt32Array(449, 450, 451), PackedInt32Array(451, 452, 453), PackedInt32Array(453, 454, 449), PackedInt32Array(449, 451, 453), PackedInt32Array(465, 455, 456), PackedInt32Array(456, 457, 458), PackedInt32Array(460, 461, 462), PackedInt32Array(462, 463, 464), PackedInt32Array(464, 465, 456), PackedInt32Array(456, 458, 459), PackedInt32Array(460, 462, 464), PackedInt32Array(464, 456, 459), PackedInt32Array(459, 460, 464), PackedInt32Array(473, 466, 467), PackedInt32Array(467, 468, 469), PackedInt32Array(469, 470, 471), PackedInt32Array(471, 472, 473), PackedInt32Array(473, 467, 469), PackedInt32Array(469, 471, 473), PackedInt32Array(484, 474, 475), PackedInt32Array(476, 477, 478), PackedInt32Array(479, 480, 481), PackedInt32Array(481, 482, 483), PackedInt32Array(484, 475, 476), PackedInt32Array(476, 478, 479), PackedInt32Array(479, 481, 483), PackedInt32Array(483, 484, 476), PackedInt32Array(476, 479, 483), PackedInt32Array(488, 485, 486), PackedInt32Array(486, 487, 488)] +bones = ["Bone-0", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-1", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-2", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-3", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-4", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-5", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0), "Bone-6", PackedFloat32Array(0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-7", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-8", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-9", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1), "Bone-10", PackedFloat32Array(1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-11", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-12", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-13", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1), "Bone-14", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-15", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-16", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-17", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-18", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1)] +internal_vertex_count = 401 script = ExtResource("2_2dapw") vertex_interval = 25 -radius = 19 -rigidbody_scene = ExtResource("3_6ern4") margin_pixels = -1 -voronoi_interval = 0.15 +min_area = 0.3 stiffness = 0.1 damping = 9.1 rest_length_ratio = 1.1 length_ratio = 0.1 softness = 100.0 +radius = 19 +rigidbody_scene = ExtResource("3_6ern4") physics_material_override = ExtResource("5_221ya") [node name="Skeleton2D" type="Skeleton2D" parent="Butter5"] visible = false -modification_stack = SubResource("SkeletonModificationStack2D_va3ul") +modification_stack = SubResource("SkeletonModificationStack2D_4cx2k") [node name="Bone-0" type="Bone2D" parent="Butter5/Skeleton2D"] -position = Vector2(11.9819, 47.4582) -rotation = 0.26087 -rest = Transform2D(0.966166, 0.257921, -0.257921, 0.966166, 11.9819, 47.4582) +position = Vector2(10.25, 47.125) +rotation = 1.02504 +rest = Transform2D(0.519068, 0.854733, -0.854733, 0.519068, 10.25, 47.125) auto_calculate_length_and_angle = false length = 25.0 bone_angle = 0.0 -metadata/vert_owned = [88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105] -metadata/connected_nodes_paths = [NodePath("Bone-1"), NodePath("Bone-2"), NodePath("Bone-3"), NodePath("Bone-4")] +metadata/vert_owned = [88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107] +metadata/idx = 0 +metadata/connected_nodes_paths = [NodePath("Bone-1"), NodePath("Bone-3"), NodePath("Bone-4"), NodePath("Bone-2")] +metadata/connected_nodes_idx = [1, 3, 4, 2] metadata/_local_pose_override_enabled_ = true [node name="Bone-1" type="Bone2D" parent="Butter5/Skeleton2D"] -position = Vector2(11.4233, 78.7417) -rotation = -0.059216 -rest = Transform2D(0.998247, -0.0591814, 0.0591814, 0.998247, 11.4233, 78.7417) +position = Vector2(11.3246, 78) +rest = Transform2D(1, 0, 0, 1, 11.3246, 78) auto_calculate_length_and_angle = false length = 25.0 bone_angle = 0.0 -metadata/vert_owned = [106, 107, 108, 109, 110] +metadata/vert_owned = [108, 109, 110, 111, 112, 113, 114, 115] +metadata/idx = 1 metadata/connected_nodes_paths = [NodePath("Bone-0"), NodePath("Bone-3"), NodePath("Bone-4"), NodePath("Bone-5")] +metadata/connected_nodes_idx = [0, 3, 4, 5] metadata/_local_pose_override_enabled_ = true [node name="Bone-2" type="Bone2D" parent="Butter5/Skeleton2D"] -position = Vector2(32.1588, 27.3839) -rotation = 0.0406229 -rest = Transform2D(0.999175, 0.0406117, -0.0406117, 0.999175, 32.1588, 27.3839) +position = Vector2(29, 28.75) +rotation = -0.244979 +scale = Vector2(1, 1) +rest = Transform2D(0.970142, -0.242536, 0.242536, 0.970142, 29, 28.75) auto_calculate_length_and_angle = false length = 25.0 bone_angle = 0.0 -metadata/vert_owned = [111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121] +metadata/vert_owned = [116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136] +metadata/idx = 2 metadata/connected_nodes_paths = [NodePath("Bone-0"), NodePath("Bone-3"), NodePath("Bone-6"), NodePath("Bone-7")] +metadata/connected_nodes_idx = [0, 3, 6, 7] metadata/_local_pose_override_enabled_ = true [node name="Bone-3" type="Bone2D" parent="Butter5/Skeleton2D"] -position = Vector2(29.9134, 52.2451) -rotation = 1.59192 -rest = Transform2D(-0.0211265, 0.999777, -0.999777, -0.0211265, 29.9134, 52.2451) +position = Vector2(29, 53) +rotation = -1.5708 +rest = Transform2D(-4.37114e-08, -1, 1, -4.37114e-08, 29, 53) auto_calculate_length_and_angle = false length = 25.0 bone_angle = 0.0 -metadata/vert_owned = [122, 123, 124, 125, 126, 127] -metadata/connected_nodes_paths = [NodePath("Bone-0"), NodePath("Bone-1"), NodePath("Bone-2"), NodePath("Bone-4"), NodePath("Bone-6"), NodePath("Bone-7"), NodePath("Bone-8")] +metadata/vert_owned = [137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152] +metadata/idx = 3 +metadata/connected_nodes_paths = [NodePath("Bone-0"), NodePath("Bone-1"), NodePath("Bone-4"), NodePath("Bone-2"), NodePath("Bone-6"), NodePath("Bone-7"), NodePath("Bone-8")] +metadata/connected_nodes_idx = [0, 1, 4, 2, 6, 7, 8] metadata/_local_pose_override_enabled_ = true [node name="Bone-4" type="Bone2D" parent="Butter5/Skeleton2D"] -position = Vector2(29.376, 77.6774) -rotation = 1.78493 -rest = Transform2D(-0.212503, 0.97716, -0.97716, -0.212503, 29.376, 77.6774) +position = Vector2(29, 78) +rotation = 1.7586 +rest = Transform2D(-0.186704, 0.982416, -0.982416, -0.186704, 29, 78) auto_calculate_length_and_angle = false length = 25.0 bone_angle = 0.0 -metadata/vert_owned = [128, 129, 130, 131, 132, 133] +metadata/vert_owned = [153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168] +metadata/idx = 4 metadata/connected_nodes_paths = [NodePath("Bone-0"), NodePath("Bone-1"), NodePath("Bone-3"), NodePath("Bone-5"), NodePath("Bone-7"), NodePath("Bone-8"), NodePath("Bone-9")] +metadata/connected_nodes_idx = [0, 1, 3, 5, 7, 8, 9] metadata/_local_pose_override_enabled_ = true [node name="Bone-5" type="Bone2D" parent="Butter5/Skeleton2D"] -position = Vector2(23.8771, 102.963) -rotation = -0.661389 -rest = Transform2D(0.78914, -0.614213, 0.614213, 0.78914, 23.8771, 102.963) +position = Vector2(23.75, 105.625) +rotation = -1.38299 +scale = Vector2(1, 1) +rest = Transform2D(0.186704, -0.982416, 0.982416, 0.186704, 23.75, 105.625) auto_calculate_length_and_angle = false length = 25.0 bone_angle = 0.0 -metadata/vert_owned = [134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153] -metadata/connected_nodes_paths = [NodePath("Bone-1"), NodePath("Bone-4"), NodePath("Bone-8"), NodePath("Bone-9"), NodePath("Bone-19")] +metadata/vert_owned = [169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211] +metadata/idx = 5 +metadata/connected_nodes_paths = [NodePath("Bone-18"), NodePath("Bone-1"), NodePath("Bone-4"), NodePath("Bone-8"), NodePath("Bone-9")] +metadata/connected_nodes_idx = [18, 1, 4, 8, 9] metadata/_local_pose_override_enabled_ = true [node name="Bone-6" type="Bone2D" parent="Butter5/Skeleton2D"] -position = Vector2(55.7376, 28.3423) -rotation = -0.920184 +position = Vector2(54, 22.5) +rotation = 2.25742 scale = Vector2(1, 1) -rest = Transform2D(0.605673, -0.795713, 0.795713, 0.605673, 55.7376, 28.3423) +rest = Transform2D(-0.633928, 0.773392, -0.773392, -0.633928, 54, 22.5) auto_calculate_length_and_angle = false length = 25.0 bone_angle = 0.0 -metadata/vert_owned = [154, 155, 156, 157, 158, 159, 160] -metadata/connected_nodes_paths = [NodePath("Bone-2"), NodePath("Bone-3"), NodePath("Bone-7"), NodePath("Bone-10"), NodePath("Bone-11"), NodePath("Bone-12")] +metadata/vert_owned = [212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246] +metadata/idx = 6 +metadata/connected_nodes_paths = [NodePath("Bone-10"), NodePath("Bone-2"), NodePath("Bone-3"), NodePath("Bone-7"), NodePath("Bone-11")] +metadata/connected_nodes_idx = [10, 2, 3, 7, 11] metadata/_local_pose_override_enabled_ = true [node name="Bone-7" type="Bone2D" parent="Butter5/Skeleton2D"] -position = Vector2(55.3545, 54.8831) -rotation = 1.60529 -rest = Transform2D(-0.0344882, 0.999405, -0.999405, -0.0344882, 55.3545, 54.8831) +position = Vector2(54, 53) +rotation = 1.5708 +rest = Transform2D(-4.37114e-08, 1, -1, -4.37114e-08, 54, 53) auto_calculate_length_and_angle = false length = 25.0 bone_angle = 0.0 -metadata/vert_owned = [161, 162, 163, 164, 165, 166] -metadata/connected_nodes_paths = [NodePath("Bone-2"), NodePath("Bone-3"), NodePath("Bone-4"), NodePath("Bone-6"), NodePath("Bone-8"), NodePath("Bone-11"), NodePath("Bone-12"), NodePath("Bone-13")] +metadata/vert_owned = [247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262] +metadata/idx = 7 +metadata/connected_nodes_paths = [NodePath("Bone-2"), NodePath("Bone-3"), NodePath("Bone-6"), NodePath("Bone-4"), NodePath("Bone-8"), NodePath("Bone-10"), NodePath("Bone-11"), NodePath("Bone-12")] +metadata/connected_nodes_idx = [2, 3, 6, 4, 8, 10, 11, 12] metadata/_local_pose_override_enabled_ = true [node name="Bone-8" type="Bone2D" parent="Butter5/Skeleton2D"] -position = Vector2(54.5183, 79.1141) -rotation = 1.61776 -rest = Transform2D(-0.0469479, 0.998897, -0.998897, -0.0469479, 54.5183, 79.1141) +position = Vector2(54, 78) +rotation = 1.5708 +rest = Transform2D(-4.37114e-08, 1, -1, -4.37114e-08, 54, 78) auto_calculate_length_and_angle = false length = 25.0 bone_angle = 0.0 -metadata/vert_owned = [167, 168, 169, 170, 171, 172] -metadata/connected_nodes_paths = [NodePath("Bone-3"), NodePath("Bone-4"), NodePath("Bone-5"), NodePath("Bone-7"), NodePath("Bone-9"), NodePath("Bone-12"), NodePath("Bone-13"), NodePath("Bone-14")] +metadata/vert_owned = [263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278] +metadata/idx = 8 +metadata/connected_nodes_paths = [NodePath("Bone-3"), NodePath("Bone-4"), NodePath("Bone-7"), NodePath("Bone-5"), NodePath("Bone-9"), NodePath("Bone-11"), NodePath("Bone-12"), NodePath("Bone-13")] +metadata/connected_nodes_idx = [3, 4, 7, 5, 9, 11, 12, 13] metadata/_local_pose_override_enabled_ = true [node name="Bone-9" type="Bone2D" parent="Butter5/Skeleton2D"] -position = Vector2(53.3725, 103.495) -rotation = -0.729803 -scale = Vector2(1, 1) -rest = Transform2D(0.745306, -0.666723, 0.666723, 0.745306, 53.3725, 103.495) +position = Vector2(54, 103) +rotation = 1.5708 +rest = Transform2D(-4.37114e-08, 1, -1, -4.37114e-08, 54, 103) auto_calculate_length_and_angle = false length = 25.0 bone_angle = 0.0 -metadata/vert_owned = [173, 174, 175, 176] -metadata/connected_nodes_paths = [NodePath("Bone-4"), NodePath("Bone-5"), NodePath("Bone-8"), NodePath("Bone-13"), NodePath("Bone-14"), NodePath("Bone-19")] +metadata/vert_owned = [279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294] +metadata/idx = 9 +metadata/connected_nodes_paths = [NodePath("Bone-4"), NodePath("Bone-5"), NodePath("Bone-8"), NodePath("Bone-18"), NodePath("Bone-12"), NodePath("Bone-13")] +metadata/connected_nodes_idx = [4, 5, 8, 18, 12, 13] metadata/_local_pose_override_enabled_ = true [node name="Bone-10" type="Bone2D" parent="Butter5/Skeleton2D"] -position = Vector2(69.1836, 10.6773) -rotation = 1.02534 -rest = Transform2D(0.518808, 0.854891, -0.854891, 0.518808, 69.1836, 10.6773) +position = Vector2(79, 21.75) +rotation = 1.5708 +rest = Transform2D(-4.37114e-08, 1, -1, -4.37114e-08, 79, 21.75) auto_calculate_length_and_angle = false length = 25.0 bone_angle = 0.0 -metadata/vert_owned = [177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201] -metadata/connected_nodes_paths = [NodePath("Bone-6"), NodePath("Bone-11")] +metadata/vert_owned = [295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329] +metadata/idx = 10 +metadata/connected_nodes_paths = [NodePath("Bone-6"), NodePath("Bone-7"), NodePath("Bone-11"), NodePath("Bone-14"), NodePath("Bone-15")] +metadata/connected_nodes_idx = [6, 7, 11, 14, 15] metadata/_local_pose_override_enabled_ = true [node name="Bone-11" type="Bone2D" parent="Butter5/Skeleton2D"] -position = Vector2(80.9573, 30.078) -rotation = 1.63571 -rest = Transform2D(-0.0648705, 0.997894, -0.997894, -0.0648705, 80.9573, 30.078) +position = Vector2(79, 53) +rotation = 1.5708 +rest = Transform2D(-4.37114e-08, 1, -1, -4.37114e-08, 79, 53) auto_calculate_length_and_angle = false length = 25.0 bone_angle = 0.0 -metadata/vert_owned = [202, 203, 204, 205, 206] -metadata/connected_nodes_paths = [NodePath("Bone-6"), NodePath("Bone-7"), NodePath("Bone-10"), NodePath("Bone-12"), NodePath("Bone-15"), NodePath("Bone-16")] +metadata/vert_owned = [330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345] +metadata/idx = 11 +metadata/connected_nodes_paths = [NodePath("Bone-6"), NodePath("Bone-7"), NodePath("Bone-10"), NodePath("Bone-8"), NodePath("Bone-12"), NodePath("Bone-14"), NodePath("Bone-15"), NodePath("Bone-16")] +metadata/connected_nodes_idx = [6, 7, 10, 8, 12, 14, 15, 16] metadata/_local_pose_override_enabled_ = true [node name="Bone-12" type="Bone2D" parent="Butter5/Skeleton2D"] -position = Vector2(79.3768, 54.3897) -rotation = 1.50099 -rest = Transform2D(0.069746, 0.997565, -0.997565, 0.069746, 79.3768, 54.3897) +position = Vector2(79, 78) +rotation = 1.5708 +rest = Transform2D(-4.37114e-08, 1, -1, -4.37114e-08, 79, 78) auto_calculate_length_and_angle = false length = 25.0 bone_angle = 0.0 -metadata/vert_owned = [207, 208, 209, 210, 211] -metadata/connected_nodes_paths = [NodePath("Bone-6"), NodePath("Bone-7"), NodePath("Bone-8"), NodePath("Bone-11"), NodePath("Bone-13"), NodePath("Bone-15"), NodePath("Bone-16"), NodePath("Bone-17")] +metadata/vert_owned = [346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361] +metadata/idx = 12 +metadata/connected_nodes_paths = [NodePath("Bone-7"), NodePath("Bone-8"), NodePath("Bone-11"), NodePath("Bone-9"), NodePath("Bone-13"), NodePath("Bone-15"), NodePath("Bone-16"), NodePath("Bone-17")] +metadata/connected_nodes_idx = [7, 8, 11, 9, 13, 15, 16, 17] metadata/_local_pose_override_enabled_ = true [node name="Bone-13" type="Bone2D" parent="Butter5/Skeleton2D"] -position = Vector2(81.0773, 78.7108) -rotation = 1.64259 -rest = Transform2D(-0.0717316, 0.997424, -0.997424, -0.0717316, 81.0773, 78.7108) +position = Vector2(79, 108.25) +rotation = -2.9346 +rest = Transform2D(-0.978653, -0.205517, 0.205517, -0.978653, 79, 108.25) auto_calculate_length_and_angle = false length = 25.0 bone_angle = 0.0 -metadata/vert_owned = [212, 213, 214, 215, 216, 217, 218] -metadata/connected_nodes_paths = [NodePath("Bone-7"), NodePath("Bone-8"), NodePath("Bone-9"), NodePath("Bone-12"), NodePath("Bone-14"), NodePath("Bone-16"), NodePath("Bone-17"), NodePath("Bone-18")] +metadata/vert_owned = [362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392] +metadata/idx = 13 +metadata/connected_nodes_paths = [NodePath("Bone-18"), NodePath("Bone-17"), NodePath("Bone-8"), NodePath("Bone-9"), NodePath("Bone-12"), NodePath("Bone-16")] +metadata/connected_nodes_idx = [18, 17, 8, 9, 12, 16] metadata/_local_pose_override_enabled_ = true [node name="Bone-14" type="Bone2D" parent="Butter5/Skeleton2D"] -position = Vector2(79.047, 106.942) -rotation = -0.795486 -rest = Transform2D(0.699938, -0.714204, 0.714204, 0.699938, 79.047, 106.942) +position = Vector2(102.25, 29.75) +rotation = 2.35619 +scale = Vector2(1, 1) +rest = Transform2D(-0.707107, 0.707107, -0.707107, -0.707107, 102.25, 29.75) auto_calculate_length_and_angle = false length = 25.0 bone_angle = 0.0 -metadata/vert_owned = [219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232] -metadata/connected_nodes_paths = [NodePath("Bone-8"), NodePath("Bone-9"), NodePath("Bone-13"), NodePath("Bone-17"), NodePath("Bone-18"), NodePath("Bone-19")] +metadata/vert_owned = [393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410] +metadata/idx = 14 +metadata/connected_nodes_paths = [NodePath("Bone-10"), NodePath("Bone-11"), NodePath("Bone-15")] +metadata/connected_nodes_idx = [10, 11, 15] metadata/_local_pose_override_enabled_ = true [node name="Bone-15" type="Bone2D" parent="Butter5/Skeleton2D"] -position = Vector2(102.751, 31.2282) -rotation = 2.36077 -rest = Transform2D(-0.710338, 0.703861, -0.703861, -0.710338, 102.751, 31.2282) +position = Vector2(102.25, 53) +rotation = -1.5708 +rest = Transform2D(-4.37114e-08, -1, 1, -4.37114e-08, 102.25, 53) auto_calculate_length_and_angle = false length = 25.0 bone_angle = 0.0 -metadata/vert_owned = [233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244] -metadata/connected_nodes_paths = [NodePath("Bone-11"), NodePath("Bone-12"), NodePath("Bone-16")] +metadata/vert_owned = [411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426] +metadata/idx = 15 +metadata/connected_nodes_paths = [NodePath("Bone-10"), NodePath("Bone-11"), NodePath("Bone-14"), NodePath("Bone-12"), NodePath("Bone-16")] +metadata/connected_nodes_idx = [10, 11, 14, 12, 16] metadata/_local_pose_override_enabled_ = true [node name="Bone-16" type="Bone2D" parent="Butter5/Skeleton2D"] -position = Vector2(103.646, 54.4703) -rotation = 2.32049 +position = Vector2(103.25, 78) +rotation = -1.61077 scale = Vector2(1, 1) -rest = Transform2D(-0.681412, 0.7319, -0.7319, -0.681412, 103.646, 54.4703) +rest = Transform2D(-0.039968, -0.999201, 0.999201, -0.039968, 103.25, 78) auto_calculate_length_and_angle = false length = 25.0 bone_angle = 0.0 -metadata/vert_owned = [245, 246, 247, 248, 249, 250, 251] -metadata/connected_nodes_paths = [NodePath("Bone-11"), NodePath("Bone-12"), NodePath("Bone-13"), NodePath("Bone-15"), NodePath("Bone-17")] +metadata/vert_owned = [427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444] +metadata/idx = 16 +metadata/connected_nodes_paths = [NodePath("Bone-11"), NodePath("Bone-12"), NodePath("Bone-15"), NodePath("Bone-13"), NodePath("Bone-17")] +metadata/connected_nodes_idx = [11, 12, 15, 13, 17] metadata/_local_pose_override_enabled_ = true [node name="Bone-17" type="Bone2D" parent="Butter5/Skeleton2D"] -position = Vector2(105.689, 79.7563) -rotation = 2.34611 -rest = Transform2D(-0.699938, 0.714204, -0.714204, -0.699938, 105.689, 79.7563) +position = Vector2(103.25, 102.25) +rotation = -2.35619 +scale = Vector2(1, 1) +rest = Transform2D(-0.707107, -0.707107, 0.707107, -0.707107, 103.25, 102.25) auto_calculate_length_and_angle = false length = 25.0 bone_angle = 0.0 -metadata/vert_owned = [252, 253, 254, 255, 256] -metadata/connected_nodes_paths = [NodePath("Bone-12"), NodePath("Bone-13"), NodePath("Bone-14"), NodePath("Bone-16"), NodePath("Bone-18")] +metadata/vert_owned = [445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473] +metadata/idx = 17 +metadata/connected_nodes_paths = [NodePath("Bone-13"), NodePath("Bone-12"), NodePath("Bone-16")] +metadata/connected_nodes_idx = [13, 12, 16] metadata/_local_pose_override_enabled_ = true [node name="Bone-18" type="Bone2D" parent="Butter5/Skeleton2D"] -position = Vector2(102.296, 103.289) -rotation = 2.98577 +position = Vector2(54, 120.75) +rotation = -0.463648 scale = Vector2(1, 1) -rest = Transform2D(-0.987884, 0.155195, -0.155195, -0.987884, 102.296, 103.289) -auto_calculate_length_and_angle = false -length = 25.0 -bone_angle = 0.0 -metadata/vert_owned = [257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278] -metadata/connected_nodes_paths = [NodePath("Bone-13"), NodePath("Bone-14"), NodePath("Bone-17")] -metadata/_local_pose_override_enabled_ = true - -[node name="Bone-19" type="Bone2D" parent="Butter5/Skeleton2D"] -position = Vector2(49.0143, 119.913) -rotation = -1.31134 -rest = Transform2D(0.256557, -0.966529, 0.966529, 0.256557, 49.0143, 119.913) +rest = Transform2D(0.894427, -0.447214, 0.447214, 0.894427, 54, 120.75) auto_calculate_length_and_angle = false length = 25.0 bone_angle = 0.0 -metadata/vert_owned = [279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298] -metadata/connected_nodes_paths = [NodePath("Bone-5"), NodePath("Bone-9"), NodePath("Bone-14")] +metadata/vert_owned = [474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488] +metadata/idx = 18 +metadata/connected_nodes_paths = [NodePath("Bone-5"), NodePath("Bone-13"), NodePath("Bone-9")] +metadata/connected_nodes_idx = [5, 13, 9] metadata/_local_pose_override_enabled_ = true -[node name="Bone-0" parent="Butter5" instance=ExtResource("3_6ern4")] -position = Vector2(11.9819, 47.4582) -mass = 0.05 +[node name="Bone-0" type="RigidBody2D" parent="Butter5" instance=ExtResource("3_6ern4")] +position = Vector2(10.25, 47.125) +input_pickable = true +mass = 0.0526316 physics_material_override = ExtResource("5_221ya") +script = ExtResource("11_tqnjl") +metadata/idx = 0 metadata/bone_name = &"Bone-0" [node name="CircleShape2D" type="CollisionShape2D" parent="Butter5/Bone-0"] -shape = SubResource("CircleShape2D_2usbw") +shape = SubResource("CircleShape2D_ki3ar") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Butter5/Bone-0"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-0") update_rotation = false update_scale = false [node name="Joint2D-Bone-0-Bone-1" type="PinJoint2D" parent="Butter5/Bone-0"] visible = false -rotation = 0.017855 +rotation = -0.0347895 node_a = NodePath("..") node_b = NodePath("../../Bone-1") softness = 100.0 -[node name="Joint2D-Bone-0-Bone-2" type="PinJoint2D" parent="Butter5/Bone-0"] -visible = false -rotation = -2.35365 -node_a = NodePath("..") -node_b = NodePath("../../Bone-2") -softness = 100.0 - [node name="Joint2D-Bone-0-Bone-3" type="PinJoint2D" parent="Butter5/Bone-0"] visible = false -rotation = -1.30993 +rotation = -1.26715 node_a = NodePath("..") node_b = NodePath("../../Bone-3") softness = 100.0 [node name="Joint2D-Bone-0-Bone-4" type="PinJoint2D" parent="Butter5/Bone-0"] visible = false -rotation = -0.522283 +rotation = -0.545761 node_a = NodePath("..") node_b = NodePath("../../Bone-4") softness = 100.0 -[node name="Bone-1" parent="Butter5" instance=ExtResource("3_6ern4")] -position = Vector2(11.4233, 78.7417) -mass = 0.05 +[node name="Joint2D-Bone-0-Bone-2" type="PinJoint2D" parent="Butter5/Bone-0"] +visible = false +rotation = -2.34609 +node_a = NodePath("..") +node_b = NodePath("../../Bone-2") +softness = 100.0 + +[node name="Bone-1" type="RigidBody2D" parent="Butter5" instance=ExtResource("3_6ern4")] +position = Vector2(11.3246, 78) +input_pickable = true +mass = 0.0526316 physics_material_override = ExtResource("5_221ya") +script = ExtResource("11_tqnjl") +metadata/idx = 1 metadata/bone_name = &"Bone-1" [node name="CircleShape2D" type="CollisionShape2D" parent="Butter5/Bone-1"] -shape = SubResource("CircleShape2D_2usbw") +shape = SubResource("CircleShape2D_ki3ar") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Butter5/Bone-1"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-1") update_rotation = false update_scale = false [node name="Joint2D-Bone-1-Bone-0" type="PinJoint2D" parent="Butter5/Bone-1"] visible = false -rotation = -3.12374 +rotation = -3.17638 node_a = NodePath("..") node_b = NodePath("../../Bone-0") softness = 100.0 [node name="Joint2D-Bone-1-Bone-3" type="PinJoint2D" parent="Butter5/Bone-1"] visible = false -rotation = -2.53232 +rotation = -2.52617 node_a = NodePath("..") node_b = NodePath("../../Bone-3") softness = 100.0 [node name="Joint2D-Bone-1-Bone-4" type="PinJoint2D" parent="Butter5/Bone-1"] visible = false -rotation = -1.63001 +rotation = -1.5708 node_a = NodePath("..") node_b = NodePath("../../Bone-4") softness = 100.0 [node name="Joint2D-Bone-1-Bone-5" type="PinJoint2D" parent="Butter5/Bone-1"] visible = false -rotation = -0.474914 +rotation = -0.422679 node_a = NodePath("..") node_b = NodePath("../../Bone-5") softness = 100.0 -[node name="Bone-2" parent="Butter5" instance=ExtResource("3_6ern4")] -position = Vector2(32.1588, 27.3839) -mass = 0.05 +[node name="Bone-2" type="RigidBody2D" parent="Butter5" instance=ExtResource("3_6ern4")] +position = Vector2(29, 28.75) +input_pickable = true +mass = 0.0526316 physics_material_override = ExtResource("5_221ya") +script = ExtResource("11_tqnjl") +metadata/idx = 2 metadata/bone_name = &"Bone-2" [node name="CircleShape2D" type="CollisionShape2D" parent="Butter5/Bone-2"] -shape = SubResource("CircleShape2D_2usbw") +shape = SubResource("CircleShape2D_ki3ar") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Butter5/Bone-2"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-2") update_rotation = false update_scale = false [node name="Joint2D-Bone-2-Bone-0" type="PinJoint2D" parent="Butter5/Bone-2"] visible = false -rotation = 0.787946 +rotation = 0.795499 node_a = NodePath("..") node_b = NodePath("../../Bone-0") softness = 100.0 [node name="Joint2D-Bone-2-Bone-3" type="PinJoint2D" parent="Butter5/Bone-2"] visible = false -rotation = 0.0900715 node_a = NodePath("..") node_b = NodePath("../../Bone-3") softness = 100.0 [node name="Joint2D-Bone-2-Bone-6" type="PinJoint2D" parent="Butter5/Bone-2"] visible = false -rotation = -1.53017 +rotation = -1.81578 node_a = NodePath("..") node_b = NodePath("../../Bone-6") softness = 100.0 [node name="Joint2D-Bone-2-Bone-7" type="PinJoint2D" parent="Butter5/Bone-2"] visible = false -rotation = -0.700711 +rotation = -0.800625 node_a = NodePath("..") node_b = NodePath("../../Bone-7") softness = 100.0 -[node name="Bone-3" parent="Butter5" instance=ExtResource("3_6ern4")] -position = Vector2(29.9134, 52.2451) -mass = 0.05 +[node name="Bone-3" type="RigidBody2D" parent="Butter5" instance=ExtResource("3_6ern4")] +position = Vector2(29, 53) +input_pickable = true +mass = 0.0526316 physics_material_override = ExtResource("5_221ya") +script = ExtResource("11_tqnjl") +metadata/idx = 3 metadata/bone_name = &"Bone-3" [node name="CircleShape2D" type="CollisionShape2D" parent="Butter5/Bone-3"] -shape = SubResource("CircleShape2D_2usbw") +shape = SubResource("CircleShape2D_ki3ar") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Butter5/Bone-3"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-3") update_rotation = false update_scale = false [node name="Joint2D-Bone-3-Bone-0" type="PinJoint2D" parent="Butter5/Bone-3"] visible = false -rotation = -4.45152 +rotation = -4.40875 node_a = NodePath("..") node_b = NodePath("../../Bone-0") softness = 100.0 [node name="Joint2D-Bone-3-Bone-1" type="PinJoint2D" parent="Butter5/Bone-3"] visible = false -rotation = 0.609268 +rotation = 0.61542 node_a = NodePath("..") node_b = NodePath("../../Bone-1") softness = 100.0 -[node name="Joint2D-Bone-3-Bone-2" type="PinJoint2D" parent="Butter5/Bone-3"] +[node name="Joint2D-Bone-3-Bone-4" type="PinJoint2D" parent="Butter5/Bone-3"] visible = false -rotation = -3.05152 node_a = NodePath("..") -node_b = NodePath("../../Bone-2") +node_b = NodePath("../../Bone-4") softness = 100.0 -[node name="Joint2D-Bone-3-Bone-4" type="PinJoint2D" parent="Butter5/Bone-3"] +[node name="Joint2D-Bone-3-Bone-2" type="PinJoint2D" parent="Butter5/Bone-3"] visible = false -rotation = 0.0211281 +rotation = -3.14159 node_a = NodePath("..") -node_b = NodePath("../../Bone-4") +node_b = NodePath("../../Bone-2") softness = 100.0 [node name="Joint2D-Bone-3-Bone-6" type="PinJoint2D" parent="Butter5/Bone-3"] visible = false -rotation = -2.31758 +rotation = -2.45497 node_a = NodePath("..") node_b = NodePath("../../Bone-6") softness = 100.0 [node name="Joint2D-Bone-3-Bone-7" type="PinJoint2D" parent="Butter5/Bone-3"] visible = false -rotation = -1.46747 +rotation = -1.5708 node_a = NodePath("..") node_b = NodePath("../../Bone-7") softness = 100.0 [node name="Joint2D-Bone-3-Bone-8" type="PinJoint2D" parent="Butter5/Bone-3"] visible = false -rotation = -0.741441 +rotation = -0.785398 node_a = NodePath("..") node_b = NodePath("../../Bone-8") softness = 100.0 -[node name="Bone-4" parent="Butter5" instance=ExtResource("3_6ern4")] -position = Vector2(29.376, 77.6774) -mass = 0.05 +[node name="Bone-4" type="RigidBody2D" parent="Butter5" instance=ExtResource("3_6ern4")] +position = Vector2(29, 78) +input_pickable = true +mass = 0.0526316 physics_material_override = ExtResource("5_221ya") +script = ExtResource("11_tqnjl") +metadata/idx = 4 metadata/bone_name = &"Bone-4" [node name="CircleShape2D" type="CollisionShape2D" parent="Butter5/Bone-4"] -shape = SubResource("CircleShape2D_2usbw") +shape = SubResource("CircleShape2D_ki3ar") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Butter5/Bone-4"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-4") update_rotation = false update_scale = false [node name="Joint2D-Bone-4-Bone-0" type="PinJoint2D" parent="Butter5/Bone-4"] visible = false -rotation = -3.66388 +rotation = -3.68735 node_a = NodePath("..") node_b = NodePath("../../Bone-0") softness = 100.0 [node name="Joint2D-Bone-4-Bone-1" type="PinJoint2D" parent="Butter5/Bone-4"] visible = false -rotation = 1.51158 +rotation = 1.5708 node_a = NodePath("..") node_b = NodePath("../../Bone-1") softness = 100.0 [node name="Joint2D-Bone-4-Bone-3" type="PinJoint2D" parent="Butter5/Bone-4"] visible = false -rotation = -3.12046 +rotation = -3.14159 node_a = NodePath("..") node_b = NodePath("../../Bone-3") softness = 100.0 [node name="Joint2D-Bone-4-Bone-5" type="PinJoint2D" parent="Butter5/Bone-4"] visible = false -rotation = 0.214135 +rotation = 0.187806 node_a = NodePath("..") node_b = NodePath("../../Bone-5") softness = 100.0 [node name="Joint2D-Bone-4-Bone-7" type="PinJoint2D" parent="Butter5/Bone-4"] visible = false -rotation = -2.291 +rotation = -2.35619 node_a = NodePath("..") node_b = NodePath("../../Bone-7") softness = 100.0 [node name="Joint2D-Bone-4-Bone-8" type="PinJoint2D" parent="Butter5/Bone-4"] visible = false -rotation = -1.51371 +rotation = -1.5708 node_a = NodePath("..") node_b = NodePath("../../Bone-8") softness = 100.0 [node name="Joint2D-Bone-4-Bone-9" type="PinJoint2D" parent="Butter5/Bone-4"] visible = false -rotation = -0.748864 +rotation = -0.785398 node_a = NodePath("..") node_b = NodePath("../../Bone-9") softness = 100.0 -[node name="Bone-5" parent="Butter5" instance=ExtResource("3_6ern4")] -position = Vector2(23.8771, 102.963) -mass = 0.05 +[node name="Bone-5" type="RigidBody2D" parent="Butter5" instance=ExtResource("3_6ern4")] +position = Vector2(23.75, 105.625) +input_pickable = true +mass = 0.0526316 physics_material_override = ExtResource("5_221ya") +script = ExtResource("11_tqnjl") +metadata/idx = 5 metadata/bone_name = &"Bone-5" [node name="CircleShape2D" type="CollisionShape2D" parent="Butter5/Bone-5"] -shape = SubResource("CircleShape2D_2usbw") +shape = SubResource("CircleShape2D_ki3ar") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Butter5/Bone-5"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-5") update_rotation = false update_scale = false +[node name="Joint2D-Bone-5-Bone-18" type="PinJoint2D" parent="Butter5/Bone-5"] +visible = false +rotation = -1.10715 +node_a = NodePath("..") +node_b = NodePath("../../Bone-18") +softness = 100.0 + [node name="Joint2D-Bone-5-Bone-1" type="PinJoint2D" parent="Butter5/Bone-5"] visible = false -rotation = -3.61651 +rotation = -3.56427 node_a = NodePath("..") node_b = NodePath("../../Bone-1") softness = 100.0 [node name="Joint2D-Bone-5-Bone-4" type="PinJoint2D" parent="Butter5/Bone-5"] visible = false -rotation = -2.92746 +rotation = -2.95379 node_a = NodePath("..") node_b = NodePath("../../Bone-4") softness = 100.0 [node name="Joint2D-Bone-5-Bone-8" type="PinJoint2D" parent="Butter5/Bone-5"] visible = false -rotation = -2.23219 +rotation = -2.31087 node_a = NodePath("..") node_b = NodePath("../../Bone-8") softness = 100.0 [node name="Joint2D-Bone-5-Bone-9" type="PinJoint2D" parent="Butter5/Bone-5"] visible = false -rotation = -1.55278 +rotation = -1.65736 node_a = NodePath("..") node_b = NodePath("../../Bone-9") softness = 100.0 -[node name="Joint2D-Bone-5-Bone-19" type="PinJoint2D" parent="Butter5/Bone-5"] -visible = false -rotation = -0.977532 -node_a = NodePath("..") -node_b = NodePath("../../Bone-19") -softness = 100.0 - -[node name="Bone-6" parent="Butter5" instance=ExtResource("3_6ern4")] -position = Vector2(55.7376, 28.3423) -mass = 0.05 +[node name="Bone-6" type="RigidBody2D" parent="Butter5" instance=ExtResource("3_6ern4")] +position = Vector2(54, 22.5) +input_pickable = true +mass = 0.0526316 physics_material_override = ExtResource("5_221ya") +script = ExtResource("11_tqnjl") +metadata/idx = 6 metadata/bone_name = &"Bone-6" [node name="CircleShape2D" type="CollisionShape2D" parent="Butter5/Bone-6"] -shape = SubResource("CircleShape2D_2usbw") +shape = SubResource("CircleShape2D_ki3ar") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Butter5/Bone-6"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-6") update_rotation = false update_scale = false +[node name="Joint2D-Bone-6-Bone-10" type="PinJoint2D" parent="Butter5/Bone-6"] +visible = false +rotation = -1.60079 +node_a = NodePath("..") +node_b = NodePath("../../Bone-10") +softness = 100.0 + [node name="Joint2D-Bone-6-Bone-2" type="PinJoint2D" parent="Butter5/Bone-6"] visible = false -rotation = -4.67177 +rotation = 1.32582 node_a = NodePath("..") node_b = NodePath("../../Bone-2") softness = 100.0 [node name="Joint2D-Bone-6-Bone-3" type="PinJoint2D" parent="Butter5/Bone-6"] visible = false -rotation = 0.824017 +rotation = 0.686622 node_a = NodePath("..") node_b = NodePath("../../Bone-3") softness = 100.0 [node name="Joint2D-Bone-6-Bone-7" type="PinJoint2D" parent="Butter5/Bone-6"] visible = false -rotation = 0.0144326 node_a = NodePath("..") node_b = NodePath("../../Bone-7") softness = 100.0 -[node name="Joint2D-Bone-6-Bone-10" type="PinJoint2D" parent="Butter5/Bone-6"] -visible = false -rotation = -2.49098 -node_a = NodePath("..") -node_b = NodePath("../../Bone-10") -softness = 100.0 - [node name="Joint2D-Bone-6-Bone-11" type="PinJoint2D" parent="Butter5/Bone-6"] visible = false -rotation = -1.50208 +rotation = -0.686622 node_a = NodePath("..") node_b = NodePath("../../Bone-11") softness = 100.0 -[node name="Joint2D-Bone-6-Bone-12" type="PinJoint2D" parent="Butter5/Bone-6"] -visible = false -rotation = -0.736969 -node_a = NodePath("..") -node_b = NodePath("../../Bone-12") -softness = 100.0 - -[node name="Bone-7" parent="Butter5" instance=ExtResource("3_6ern4")] -position = Vector2(55.3545, 54.8831) -mass = 0.05 +[node name="Bone-7" type="RigidBody2D" parent="Butter5" instance=ExtResource("3_6ern4")] +position = Vector2(54, 53) +input_pickable = true +mass = 0.0526316 physics_material_override = ExtResource("5_221ya") +script = ExtResource("11_tqnjl") +metadata/idx = 7 metadata/bone_name = &"Bone-7" [node name="CircleShape2D" type="CollisionShape2D" parent="Butter5/Bone-7"] -shape = SubResource("CircleShape2D_2usbw") +shape = SubResource("CircleShape2D_ki3ar") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Butter5/Bone-7"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-7") update_rotation = false update_scale = false [node name="Joint2D-Bone-7-Bone-2" type="PinJoint2D" parent="Butter5/Bone-7"] visible = false -rotation = -3.8423 +rotation = -3.94222 node_a = NodePath("..") node_b = NodePath("../../Bone-2") softness = 100.0 [node name="Joint2D-Bone-7-Bone-3" type="PinJoint2D" parent="Butter5/Bone-7"] visible = false -rotation = -4.60907 +rotation = 1.5708 node_a = NodePath("..") node_b = NodePath("../../Bone-3") softness = 100.0 -[node name="Joint2D-Bone-7-Bone-4" type="PinJoint2D" parent="Butter5/Bone-7"] +[node name="Joint2D-Bone-7-Bone-6" type="PinJoint2D" parent="Butter5/Bone-7"] visible = false -rotation = 0.850593 +rotation = -3.14159 node_a = NodePath("..") -node_b = NodePath("../../Bone-4") +node_b = NodePath("../../Bone-6") softness = 100.0 -[node name="Joint2D-Bone-7-Bone-6" type="PinJoint2D" parent="Butter5/Bone-7"] +[node name="Joint2D-Bone-7-Bone-4" type="PinJoint2D" parent="Butter5/Bone-7"] visible = false -rotation = -3.12716 +rotation = 0.785398 node_a = NodePath("..") -node_b = NodePath("../../Bone-6") +node_b = NodePath("../../Bone-4") softness = 100.0 [node name="Joint2D-Bone-7-Bone-8" type="PinJoint2D" parent="Butter5/Bone-7"] visible = false -rotation = 0.0344938 node_a = NodePath("..") node_b = NodePath("../../Bone-8") softness = 100.0 -[node name="Joint2D-Bone-7-Bone-11" type="PinJoint2D" parent="Butter5/Bone-7"] +[node name="Joint2D-Bone-7-Bone-10" type="PinJoint2D" parent="Butter5/Bone-7"] visible = false -rotation = -2.34037 +rotation = -2.46685 node_a = NodePath("..") -node_b = NodePath("../../Bone-11") +node_b = NodePath("../../Bone-10") softness = 100.0 -[node name="Joint2D-Bone-7-Bone-12" type="PinJoint2D" parent="Butter5/Bone-7"] +[node name="Joint2D-Bone-7-Bone-11" type="PinJoint2D" parent="Butter5/Bone-7"] visible = false -rotation = -1.59133 +rotation = -1.5708 node_a = NodePath("..") -node_b = NodePath("../../Bone-12") +node_b = NodePath("../../Bone-11") softness = 100.0 -[node name="Joint2D-Bone-7-Bone-13" type="PinJoint2D" parent="Butter5/Bone-7"] +[node name="Joint2D-Bone-7-Bone-12" type="PinJoint2D" parent="Butter5/Bone-7"] visible = false -rotation = -0.823625 +rotation = -0.785398 node_a = NodePath("..") -node_b = NodePath("../../Bone-13") +node_b = NodePath("../../Bone-12") softness = 100.0 -[node name="Bone-8" parent="Butter5" instance=ExtResource("3_6ern4")] -position = Vector2(54.5183, 79.1141) -mass = 0.05 +[node name="Bone-8" type="RigidBody2D" parent="Butter5" instance=ExtResource("3_6ern4")] +position = Vector2(54, 78) +input_pickable = true +mass = 0.0526316 physics_material_override = ExtResource("5_221ya") +script = ExtResource("11_tqnjl") +metadata/idx = 8 metadata/bone_name = &"Bone-8" [node name="CircleShape2D" type="CollisionShape2D" parent="Butter5/Bone-8"] -shape = SubResource("CircleShape2D_2usbw") +shape = SubResource("CircleShape2D_ki3ar") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Butter5/Bone-8"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-8") update_rotation = false update_scale = false [node name="Joint2D-Bone-8-Bone-3" type="PinJoint2D" parent="Butter5/Bone-8"] visible = false -rotation = -3.88303 +rotation = -3.92699 node_a = NodePath("..") node_b = NodePath("../../Bone-3") softness = 100.0 [node name="Joint2D-Bone-8-Bone-4" type="PinJoint2D" parent="Butter5/Bone-8"] visible = false -rotation = -4.65531 +rotation = 1.5708 node_a = NodePath("..") node_b = NodePath("../../Bone-4") softness = 100.0 -[node name="Joint2D-Bone-8-Bone-5" type="PinJoint2D" parent="Butter5/Bone-8"] +[node name="Joint2D-Bone-8-Bone-7" type="PinJoint2D" parent="Butter5/Bone-8"] visible = false -rotation = 0.909408 +rotation = -3.14159 node_a = NodePath("..") -node_b = NodePath("../../Bone-5") +node_b = NodePath("../../Bone-7") softness = 100.0 -[node name="Joint2D-Bone-8-Bone-7" type="PinJoint2D" parent="Butter5/Bone-8"] +[node name="Joint2D-Bone-8-Bone-5" type="PinJoint2D" parent="Butter5/Bone-8"] visible = false -rotation = -3.1071 +rotation = 0.830723 node_a = NodePath("..") -node_b = NodePath("../../Bone-7") +node_b = NodePath("../../Bone-5") softness = 100.0 [node name="Joint2D-Bone-8-Bone-9" type="PinJoint2D" parent="Butter5/Bone-8"] visible = false -rotation = 0.0469652 node_a = NodePath("..") node_b = NodePath("../../Bone-9") softness = 100.0 -[node name="Joint2D-Bone-8-Bone-12" type="PinJoint2D" parent="Butter5/Bone-8"] +[node name="Joint2D-Bone-8-Bone-11" type="PinJoint2D" parent="Butter5/Bone-8"] visible = false -rotation = -2.35349 +rotation = -2.35619 node_a = NodePath("..") -node_b = NodePath("../../Bone-12") +node_b = NodePath("../../Bone-11") softness = 100.0 -[node name="Joint2D-Bone-8-Bone-13" type="PinJoint2D" parent="Butter5/Bone-8"] +[node name="Joint2D-Bone-8-Bone-12" type="PinJoint2D" parent="Butter5/Bone-8"] visible = false -rotation = -1.58598 +rotation = -1.5708 node_a = NodePath("..") -node_b = NodePath("../../Bone-13") +node_b = NodePath("../../Bone-12") softness = 100.0 -[node name="Joint2D-Bone-8-Bone-14" type="PinJoint2D" parent="Butter5/Bone-8"] +[node name="Joint2D-Bone-8-Bone-13" type="PinJoint2D" parent="Butter5/Bone-8"] visible = false -rotation = -0.722473 +rotation = -0.69066 node_a = NodePath("..") -node_b = NodePath("../../Bone-14") +node_b = NodePath("../../Bone-13") softness = 100.0 -[node name="Bone-9" parent="Butter5" instance=ExtResource("3_6ern4")] -position = Vector2(53.3725, 103.495) -mass = 0.05 +[node name="Bone-9" type="RigidBody2D" parent="Butter5" instance=ExtResource("3_6ern4")] +position = Vector2(54, 103) +input_pickable = true +mass = 0.0526316 physics_material_override = ExtResource("5_221ya") +script = ExtResource("11_tqnjl") +metadata/idx = 9 metadata/bone_name = &"Bone-9" [node name="CircleShape2D" type="CollisionShape2D" parent="Butter5/Bone-9"] -shape = SubResource("CircleShape2D_2usbw") +shape = SubResource("CircleShape2D_ki3ar") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Butter5/Bone-9"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-9") update_rotation = false update_scale = false [node name="Joint2D-Bone-9-Bone-4" type="PinJoint2D" parent="Butter5/Bone-9"] visible = false -rotation = -3.89046 +rotation = -3.92699 node_a = NodePath("..") node_b = NodePath("../../Bone-4") softness = 100.0 [node name="Joint2D-Bone-9-Bone-5" type="PinJoint2D" parent="Butter5/Bone-9"] visible = false -rotation = -4.69438 +rotation = 1.48424 node_a = NodePath("..") node_b = NodePath("../../Bone-5") softness = 100.0 [node name="Joint2D-Bone-9-Bone-8" type="PinJoint2D" parent="Butter5/Bone-9"] visible = false -rotation = -3.09463 +rotation = -3.14159 node_a = NodePath("..") node_b = NodePath("../../Bone-8") softness = 100.0 -[node name="Joint2D-Bone-9-Bone-13" type="PinJoint2D" parent="Butter5/Bone-9"] +[node name="Joint2D-Bone-9-Bone-18" type="PinJoint2D" parent="Butter5/Bone-9"] visible = false -rotation = -2.3006 node_a = NodePath("..") -node_b = NodePath("../../Bone-13") +node_b = NodePath("../../Bone-18") softness = 100.0 -[node name="Joint2D-Bone-9-Bone-14" type="PinJoint2D" parent="Butter5/Bone-9"] +[node name="Joint2D-Bone-9-Bone-12" type="PinJoint2D" parent="Butter5/Bone-9"] visible = false -rotation = -1.43733 +rotation = -2.35619 node_a = NodePath("..") -node_b = NodePath("../../Bone-14") +node_b = NodePath("../../Bone-12") softness = 100.0 -[node name="Joint2D-Bone-9-Bone-19" type="PinJoint2D" parent="Butter5/Bone-9"] +[node name="Joint2D-Bone-9-Bone-13" type="PinJoint2D" parent="Butter5/Bone-9"] visible = false -rotation = 0.259457 +rotation = -1.3638 node_a = NodePath("..") -node_b = NodePath("../../Bone-19") +node_b = NodePath("../../Bone-13") softness = 100.0 -[node name="Bone-10" parent="Butter5" instance=ExtResource("3_6ern4")] -position = Vector2(69.1836, 10.6773) -mass = 0.05 +[node name="Bone-10" type="RigidBody2D" parent="Butter5" instance=ExtResource("3_6ern4")] +position = Vector2(79, 21.75) +input_pickable = true +mass = 0.0526316 physics_material_override = ExtResource("5_221ya") +script = ExtResource("11_tqnjl") +metadata/idx = 10 metadata/bone_name = &"Bone-10" [node name="CircleShape2D" type="CollisionShape2D" parent="Butter5/Bone-10"] -shape = SubResource("CircleShape2D_2usbw") +shape = SubResource("CircleShape2D_ki3ar") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Butter5/Bone-10"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-10") update_rotation = false update_scale = false [node name="Joint2D-Bone-10-Bone-6" type="PinJoint2D" parent="Butter5/Bone-10"] visible = false -rotation = 0.650612 +rotation = 1.54081 node_a = NodePath("..") node_b = NodePath("../../Bone-6") softness = 100.0 +[node name="Joint2D-Bone-10-Bone-7" type="PinJoint2D" parent="Butter5/Bone-10"] +visible = false +rotation = 0.674741 +node_a = NodePath("..") +node_b = NodePath("../../Bone-7") +softness = 100.0 + [node name="Joint2D-Bone-10-Bone-11" type="PinJoint2D" parent="Butter5/Bone-10"] visible = false -rotation = -0.545454 node_a = NodePath("..") node_b = NodePath("../../Bone-11") softness = 100.0 -[node name="Bone-11" parent="Butter5" instance=ExtResource("3_6ern4")] -position = Vector2(80.9573, 30.078) -mass = 0.05 +[node name="Joint2D-Bone-10-Bone-14" type="PinJoint2D" parent="Butter5/Bone-10"] +visible = false +rotation = -1.2394 +node_a = NodePath("..") +node_b = NodePath("../../Bone-14") +softness = 100.0 + +[node name="Joint2D-Bone-10-Bone-15" type="PinJoint2D" parent="Butter5/Bone-10"] +visible = false +rotation = -0.63965 +node_a = NodePath("..") +node_b = NodePath("../../Bone-15") +softness = 100.0 + +[node name="Bone-11" type="RigidBody2D" parent="Butter5" instance=ExtResource("3_6ern4")] +position = Vector2(79, 53) +input_pickable = true +mass = 0.0526316 physics_material_override = ExtResource("5_221ya") +script = ExtResource("11_tqnjl") +metadata/idx = 11 metadata/bone_name = &"Bone-11" [node name="CircleShape2D" type="CollisionShape2D" parent="Butter5/Bone-11"] -shape = SubResource("CircleShape2D_2usbw") +shape = SubResource("CircleShape2D_ki3ar") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Butter5/Bone-11"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-11") update_rotation = false update_scale = false [node name="Joint2D-Bone-11-Bone-6" type="PinJoint2D" parent="Butter5/Bone-11"] visible = false -rotation = -4.64367 +rotation = -3.82821 node_a = NodePath("..") node_b = NodePath("../../Bone-6") softness = 100.0 [node name="Joint2D-Bone-11-Bone-7" type="PinJoint2D" parent="Butter5/Bone-11"] visible = false -rotation = 0.80122 +rotation = 1.5708 node_a = NodePath("..") node_b = NodePath("../../Bone-7") softness = 100.0 [node name="Joint2D-Bone-11-Bone-10" type="PinJoint2D" parent="Butter5/Bone-11"] visible = false -rotation = -3.68705 +rotation = -3.14159 node_a = NodePath("..") node_b = NodePath("../../Bone-10") softness = 100.0 +[node name="Joint2D-Bone-11-Bone-8" type="PinJoint2D" parent="Butter5/Bone-11"] +visible = false +rotation = 0.785398 +node_a = NodePath("..") +node_b = NodePath("../../Bone-8") +softness = 100.0 + [node name="Joint2D-Bone-11-Bone-12" type="PinJoint2D" parent="Butter5/Bone-11"] visible = false -rotation = 0.0649149 node_a = NodePath("..") node_b = NodePath("../../Bone-12") softness = 100.0 +[node name="Joint2D-Bone-11-Bone-14" type="PinJoint2D" parent="Butter5/Bone-11"] +visible = false +rotation = -2.35619 +node_a = NodePath("..") +node_b = NodePath("../../Bone-14") +softness = 100.0 + [node name="Joint2D-Bone-11-Bone-15" type="PinJoint2D" parent="Butter5/Bone-11"] visible = false -rotation = -1.51807 +rotation = -1.5708 node_a = NodePath("..") node_b = NodePath("../../Bone-15") softness = 100.0 [node name="Joint2D-Bone-11-Bone-16" type="PinJoint2D" parent="Butter5/Bone-11"] visible = false -rotation = -0.749219 +rotation = -0.770171 node_a = NodePath("..") node_b = NodePath("../../Bone-16") softness = 100.0 -[node name="Bone-12" parent="Butter5" instance=ExtResource("3_6ern4")] -position = Vector2(79.3768, 54.3897) -mass = 0.05 +[node name="Bone-12" type="RigidBody2D" parent="Butter5" instance=ExtResource("3_6ern4")] +position = Vector2(79, 78) +input_pickable = true +mass = 0.0526316 physics_material_override = ExtResource("5_221ya") +script = ExtResource("11_tqnjl") +metadata/idx = 12 metadata/bone_name = &"Bone-12" [node name="CircleShape2D" type="CollisionShape2D" parent="Butter5/Bone-12"] -shape = SubResource("CircleShape2D_2usbw") +shape = SubResource("CircleShape2D_ki3ar") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Butter5/Bone-12"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-12") update_rotation = false update_scale = false -[node name="Joint2D-Bone-12-Bone-6" type="PinJoint2D" parent="Butter5/Bone-12"] -visible = false -rotation = -3.87856 -node_a = NodePath("..") -node_b = NodePath("../../Bone-6") -softness = 100.0 - [node name="Joint2D-Bone-12-Bone-7" type="PinJoint2D" parent="Butter5/Bone-12"] visible = false -rotation = 1.55026 +rotation = -3.92699 node_a = NodePath("..") node_b = NodePath("../../Bone-7") softness = 100.0 [node name="Joint2D-Bone-12-Bone-8" type="PinJoint2D" parent="Butter5/Bone-12"] visible = false -rotation = 0.788103 +rotation = 1.5708 node_a = NodePath("..") node_b = NodePath("../../Bone-8") softness = 100.0 [node name="Joint2D-Bone-12-Bone-11" type="PinJoint2D" parent="Butter5/Bone-12"] visible = false -rotation = -3.07668 +rotation = -3.14159 node_a = NodePath("..") node_b = NodePath("../../Bone-11") softness = 100.0 +[node name="Joint2D-Bone-12-Bone-9" type="PinJoint2D" parent="Butter5/Bone-12"] +visible = false +rotation = 0.785398 +node_a = NodePath("..") +node_b = NodePath("../../Bone-9") +softness = 100.0 + [node name="Joint2D-Bone-12-Bone-13" type="PinJoint2D" parent="Butter5/Bone-12"] visible = false -rotation = -0.0698014 node_a = NodePath("..") node_b = NodePath("../../Bone-13") softness = 100.0 [node name="Joint2D-Bone-12-Bone-15" type="PinJoint2D" parent="Butter5/Bone-12"] visible = false -rotation = -2.35161 +rotation = -2.39245 node_a = NodePath("..") node_b = NodePath("../../Bone-15") softness = 100.0 [node name="Joint2D-Bone-12-Bone-16" type="PinJoint2D" parent="Butter5/Bone-12"] visible = false -rotation = -1.56748 +rotation = -1.5708 node_a = NodePath("..") node_b = NodePath("../../Bone-16") softness = 100.0 [node name="Joint2D-Bone-12-Bone-17" type="PinJoint2D" parent="Butter5/Bone-12"] visible = false -rotation = -0.803699 +rotation = -0.785398 node_a = NodePath("..") node_b = NodePath("../../Bone-17") softness = 100.0 -[node name="Bone-13" parent="Butter5" instance=ExtResource("3_6ern4")] -position = Vector2(81.0773, 78.7108) -mass = 0.05 +[node name="Bone-13" type="RigidBody2D" parent="Butter5" instance=ExtResource("3_6ern4")] +position = Vector2(79, 108.25) +input_pickable = true +mass = 0.0526316 physics_material_override = ExtResource("5_221ya") +script = ExtResource("11_tqnjl") +metadata/idx = 13 metadata/bone_name = &"Bone-13" [node name="CircleShape2D" type="CollisionShape2D" parent="Butter5/Bone-13"] -shape = SubResource("CircleShape2D_2usbw") +shape = SubResource("CircleShape2D_ki3ar") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Butter5/Bone-13"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-13") update_rotation = false update_scale = false -[node name="Joint2D-Bone-13-Bone-7" type="PinJoint2D" parent="Butter5/Bone-13"] +[node name="Joint2D-Bone-13-Bone-18" type="PinJoint2D" parent="Butter5/Bone-13"] visible = false -rotation = -3.96522 +rotation = 1.10715 node_a = NodePath("..") -node_b = NodePath("../../Bone-7") +node_b = NodePath("../../Bone-18") +softness = 100.0 + +[node name="Joint2D-Bone-13-Bone-17" type="PinJoint2D" parent="Butter5/Bone-13"] +visible = false +rotation = -1.81335 +node_a = NodePath("..") +node_b = NodePath("../../Bone-17") softness = 100.0 [node name="Joint2D-Bone-13-Bone-8" type="PinJoint2D" parent="Butter5/Bone-13"] visible = false -rotation = 1.55561 +rotation = -3.83225 node_a = NodePath("..") node_b = NodePath("../../Bone-8") softness = 100.0 [node name="Joint2D-Bone-13-Bone-9" type="PinJoint2D" parent="Butter5/Bone-13"] visible = false -rotation = 0.840993 +rotation = -4.5054 node_a = NodePath("..") node_b = NodePath("../../Bone-9") softness = 100.0 [node name="Joint2D-Bone-13-Bone-12" type="PinJoint2D" parent="Butter5/Bone-13"] visible = false -rotation = -3.21139 +rotation = -3.14159 node_a = NodePath("..") node_b = NodePath("../../Bone-12") softness = 100.0 -[node name="Joint2D-Bone-13-Bone-14" type="PinJoint2D" parent="Butter5/Bone-13"] -visible = false -rotation = 0.0717928 -node_a = NodePath("..") -node_b = NodePath("../../Bone-14") -softness = 100.0 - [node name="Joint2D-Bone-13-Bone-16" type="PinJoint2D" parent="Butter5/Bone-13"] visible = false -rotation = -2.3919 +rotation = -2.46584 node_a = NodePath("..") node_b = NodePath("../../Bone-16") softness = 100.0 -[node name="Joint2D-Bone-13-Bone-17" type="PinJoint2D" parent="Butter5/Bone-13"] -visible = false -rotation = -1.52834 -node_a = NodePath("..") -node_b = NodePath("../../Bone-17") -softness = 100.0 - -[node name="Joint2D-Bone-13-Bone-18" type="PinJoint2D" parent="Butter5/Bone-13"] -visible = false -rotation = -0.71218 -node_a = NodePath("..") -node_b = NodePath("../../Bone-18") -softness = 100.0 - -[node name="Bone-14" parent="Butter5" instance=ExtResource("3_6ern4")] -position = Vector2(79.047, 106.942) -mass = 0.05 +[node name="Bone-14" type="RigidBody2D" parent="Butter5" instance=ExtResource("3_6ern4")] +position = Vector2(102.25, 29.75) +input_pickable = true +mass = 0.0526316 physics_material_override = ExtResource("5_221ya") +script = ExtResource("11_tqnjl") +metadata/idx = 14 metadata/bone_name = &"Bone-14" [node name="CircleShape2D" type="CollisionShape2D" parent="Butter5/Bone-14"] -shape = SubResource("CircleShape2D_2usbw") +shape = SubResource("CircleShape2D_ki3ar") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Butter5/Bone-14"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-14") update_rotation = false update_scale = false -[node name="Joint2D-Bone-14-Bone-8" type="PinJoint2D" parent="Butter5/Bone-14"] -visible = false -rotation = -3.86407 -node_a = NodePath("..") -node_b = NodePath("../../Bone-8") -softness = 100.0 - -[node name="Joint2D-Bone-14-Bone-9" type="PinJoint2D" parent="Butter5/Bone-14"] +[node name="Joint2D-Bone-14-Bone-10" type="PinJoint2D" parent="Butter5/Bone-14"] visible = false -rotation = -4.57892 +rotation = -4.38099 node_a = NodePath("..") -node_b = NodePath("../../Bone-9") -softness = 100.0 - -[node name="Joint2D-Bone-14-Bone-13" type="PinJoint2D" parent="Butter5/Bone-14"] -visible = false -rotation = -3.0698 -node_a = NodePath("..") -node_b = NodePath("../../Bone-13") -softness = 100.0 - -[node name="Joint2D-Bone-14-Bone-17" type="PinJoint2D" parent="Butter5/Bone-14"] -visible = false -rotation = -2.36628 -node_a = NodePath("..") -node_b = NodePath("../../Bone-17") +node_b = NodePath("../../Bone-10") softness = 100.0 -[node name="Joint2D-Bone-14-Bone-18" type="PinJoint2D" parent="Butter5/Bone-14"] +[node name="Joint2D-Bone-14-Bone-11" type="PinJoint2D" parent="Butter5/Bone-14"] visible = false -rotation = -1.72662 +rotation = 0.785398 node_a = NodePath("..") -node_b = NodePath("../../Bone-18") +node_b = NodePath("../../Bone-11") softness = 100.0 -[node name="Joint2D-Bone-14-Bone-19" type="PinJoint2D" parent="Butter5/Bone-14"] +[node name="Joint2D-Bone-14-Bone-15" type="PinJoint2D" parent="Butter5/Bone-14"] visible = false -rotation = 1.16309 node_a = NodePath("..") -node_b = NodePath("../../Bone-19") +node_b = NodePath("../../Bone-15") softness = 100.0 -[node name="Bone-15" parent="Butter5" instance=ExtResource("3_6ern4")] -position = Vector2(102.751, 31.2282) -mass = 0.05 +[node name="Bone-15" type="RigidBody2D" parent="Butter5" instance=ExtResource("3_6ern4")] +position = Vector2(102.25, 53) +input_pickable = true +mass = 0.0526316 physics_material_override = ExtResource("5_221ya") +script = ExtResource("11_tqnjl") +metadata/idx = 15 metadata/bone_name = &"Bone-15" [node name="CircleShape2D" type="CollisionShape2D" parent="Butter5/Bone-15"] -shape = SubResource("CircleShape2D_2usbw") +shape = SubResource("CircleShape2D_ki3ar") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Butter5/Bone-15"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-15") update_rotation = false update_scale = false +[node name="Joint2D-Bone-15-Bone-10" type="PinJoint2D" parent="Butter5/Bone-15"] +visible = false +rotation = -3.78124 +node_a = NodePath("..") +node_b = NodePath("../../Bone-10") +softness = 100.0 + [node name="Joint2D-Bone-15-Bone-11" type="PinJoint2D" parent="Butter5/Bone-15"] visible = false -rotation = -4.65966 +rotation = 1.5708 node_a = NodePath("..") node_b = NodePath("../../Bone-11") softness = 100.0 +[node name="Joint2D-Bone-15-Bone-14" type="PinJoint2D" parent="Butter5/Bone-15"] +visible = false +rotation = -3.14159 +node_a = NodePath("..") +node_b = NodePath("../../Bone-14") +softness = 100.0 + [node name="Joint2D-Bone-15-Bone-12" type="PinJoint2D" parent="Butter5/Bone-15"] visible = false -rotation = 0.789978 +rotation = 0.749145 node_a = NodePath("..") node_b = NodePath("../../Bone-12") softness = 100.0 [node name="Joint2D-Bone-15-Bone-16" type="PinJoint2D" parent="Butter5/Bone-15"] visible = false -rotation = -0.0384482 +rotation = -0.0399787 node_a = NodePath("..") node_b = NodePath("../../Bone-16") softness = 100.0 -[node name="Bone-16" parent="Butter5" instance=ExtResource("3_6ern4")] -position = Vector2(103.646, 54.4703) -mass = 0.05 +[node name="Bone-16" type="RigidBody2D" parent="Butter5" instance=ExtResource("3_6ern4")] +position = Vector2(103.25, 78) +input_pickable = true +mass = 0.0526316 physics_material_override = ExtResource("5_221ya") +script = ExtResource("11_tqnjl") +metadata/idx = 16 metadata/bone_name = &"Bone-16" [node name="CircleShape2D" type="CollisionShape2D" parent="Butter5/Bone-16"] -shape = SubResource("CircleShape2D_2usbw") +shape = SubResource("CircleShape2D_ki3ar") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Butter5/Bone-16"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-16") update_rotation = false update_scale = false [node name="Joint2D-Bone-16-Bone-11" type="PinJoint2D" parent="Butter5/Bone-16"] visible = false -rotation = -3.89081 +rotation = -3.91176 node_a = NodePath("..") node_b = NodePath("../../Bone-11") softness = 100.0 [node name="Joint2D-Bone-16-Bone-12" type="PinJoint2D" parent="Butter5/Bone-16"] visible = false -rotation = -4.70907 +rotation = 1.5708 node_a = NodePath("..") node_b = NodePath("../../Bone-12") softness = 100.0 -[node name="Joint2D-Bone-16-Bone-13" type="PinJoint2D" parent="Butter5/Bone-16"] +[node name="Joint2D-Bone-16-Bone-15" type="PinJoint2D" parent="Butter5/Bone-16"] visible = false -rotation = 0.749689 +rotation = -3.18157 node_a = NodePath("..") -node_b = NodePath("../../Bone-13") +node_b = NodePath("../../Bone-15") softness = 100.0 -[node name="Joint2D-Bone-16-Bone-15" type="PinJoint2D" parent="Butter5/Bone-16"] +[node name="Joint2D-Bone-16-Bone-13" type="PinJoint2D" parent="Butter5/Bone-16"] visible = false -rotation = -3.18004 +rotation = 0.675748 node_a = NodePath("..") -node_b = NodePath("../../Bone-15") +node_b = NodePath("../../Bone-13") softness = 100.0 [node name="Joint2D-Bone-16-Bone-17" type="PinJoint2D" parent="Butter5/Bone-16"] visible = false -rotation = -0.0806511 node_a = NodePath("..") node_b = NodePath("../../Bone-17") softness = 100.0 -[node name="Bone-17" parent="Butter5" instance=ExtResource("3_6ern4")] -position = Vector2(105.689, 79.7563) -mass = 0.05 +[node name="Bone-17" type="RigidBody2D" parent="Butter5" instance=ExtResource("3_6ern4")] +position = Vector2(103.25, 102.25) +input_pickable = true +mass = 0.0526316 physics_material_override = ExtResource("5_221ya") +script = ExtResource("11_tqnjl") +metadata/idx = 17 metadata/bone_name = &"Bone-17" [node name="CircleShape2D" type="CollisionShape2D" parent="Butter5/Bone-17"] -shape = SubResource("CircleShape2D_2usbw") +shape = SubResource("CircleShape2D_ki3ar") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Butter5/Bone-17"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-17") update_rotation = false update_scale = false -[node name="Joint2D-Bone-17-Bone-12" type="PinJoint2D" parent="Butter5/Bone-17"] -visible = false -rotation = -3.94529 -node_a = NodePath("..") -node_b = NodePath("../../Bone-12") -softness = 100.0 - [node name="Joint2D-Bone-17-Bone-13" type="PinJoint2D" parent="Butter5/Bone-17"] visible = false -rotation = -4.66994 +rotation = 1.32824 node_a = NodePath("..") node_b = NodePath("../../Bone-13") softness = 100.0 -[node name="Joint2D-Bone-17-Bone-14" type="PinJoint2D" parent="Butter5/Bone-17"] +[node name="Joint2D-Bone-17-Bone-12" type="PinJoint2D" parent="Butter5/Bone-17"] visible = false -rotation = 0.775311 +rotation = -3.92699 node_a = NodePath("..") -node_b = NodePath("../../Bone-14") +node_b = NodePath("../../Bone-12") softness = 100.0 [node name="Joint2D-Bone-17-Bone-16" type="PinJoint2D" parent="Butter5/Bone-17"] visible = false -rotation = -3.22224 +rotation = -3.14159 node_a = NodePath("..") node_b = NodePath("../../Bone-16") softness = 100.0 -[node name="Joint2D-Bone-17-Bone-18" type="PinJoint2D" parent="Butter5/Bone-17"] -visible = false -rotation = 0.14319 -node_a = NodePath("..") -node_b = NodePath("../../Bone-18") -softness = 100.0 - -[node name="Bone-18" parent="Butter5" instance=ExtResource("3_6ern4")] -position = Vector2(102.296, 103.289) -mass = 0.05 +[node name="Bone-18" type="RigidBody2D" parent="Butter5" instance=ExtResource("3_6ern4")] +position = Vector2(54, 120.75) +input_pickable = true +mass = 0.0526316 physics_material_override = ExtResource("5_221ya") +script = ExtResource("11_tqnjl") +metadata/idx = 18 metadata/bone_name = &"Bone-18" [node name="CircleShape2D" type="CollisionShape2D" parent="Butter5/Bone-18"] -shape = SubResource("CircleShape2D_2usbw") +shape = SubResource("CircleShape2D_ki3ar") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Butter5/Bone-18"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-18") update_rotation = false update_scale = false -[node name="Joint2D-Bone-18-Bone-13" type="PinJoint2D" parent="Butter5/Bone-18"] +[node name="Joint2D-Bone-18-Bone-5" type="PinJoint2D" parent="Butter5/Bone-18"] visible = false -rotation = -3.85377 +rotation = -4.24874 node_a = NodePath("..") -node_b = NodePath("../../Bone-13") +node_b = NodePath("../../Bone-5") softness = 100.0 -[node name="Joint2D-Bone-18-Bone-14" type="PinJoint2D" parent="Butter5/Bone-18"] -visible = false -rotation = 1.41497 -node_a = NodePath("..") -node_b = NodePath("../../Bone-14") -softness = 100.0 - -[node name="Joint2D-Bone-18-Bone-17" type="PinJoint2D" parent="Butter5/Bone-18"] -visible = false -rotation = -2.9984 -node_a = NodePath("..") -node_b = NodePath("../../Bone-17") -softness = 100.0 - -[node name="Bone-19" parent="Butter5" instance=ExtResource("3_6ern4")] -position = Vector2(49.0143, 119.913) -mass = 0.05 -physics_material_override = ExtResource("5_221ya") -metadata/bone_name = &"Bone-19" - -[node name="CircleShape2D" type="CollisionShape2D" parent="Butter5/Bone-19"] -shape = SubResource("CircleShape2D_2usbw") - -[node name="RemoteTransform2D" type="RemoteTransform2D" parent="Butter5/Bone-19"] -remote_path = NodePath("../../Skeleton2D/Bone-19") -update_rotation = false -update_scale = false - -[node name="Joint2D-Bone-19-Bone-5" type="PinJoint2D" parent="Butter5/Bone-19"] +[node name="Joint2D-Bone-18-Bone-13" type="PinJoint2D" parent="Butter5/Bone-18"] visible = false -rotation = -4.11912 +rotation = -2.03444 node_a = NodePath("..") -node_b = NodePath("../../Bone-5") +node_b = NodePath("../../Bone-13") softness = 100.0 -[node name="Joint2D-Bone-19-Bone-9" type="PinJoint2D" parent="Butter5/Bone-19"] +[node name="Joint2D-Bone-18-Bone-9" type="PinJoint2D" parent="Butter5/Bone-18"] visible = false -rotation = -2.88214 +rotation = -3.14159 node_a = NodePath("..") node_b = NodePath("../../Bone-9") softness = 100.0 -[node name="Joint2D-Bone-19-Bone-14" type="PinJoint2D" parent="Butter5/Bone-19"] -visible = false -rotation = -1.9785 -node_a = NodePath("..") -node_b = NodePath("../../Bone-14") -softness = 100.0 - [node name="Egg5" type="Polygon2D" parent="."] z_index = 1 -position = Vector2(947.634, 40) +position = Vector2(941, 40) rotation = -1.51639 texture = ExtResource("6_du2cs") skeleton = NodePath("Skeleton2D") -polygon = PackedVector2Array(81, 12, 75, 14, 72, 14, 64, 20, 62, 20, 50, 32, 49, 32, 49, 34, 45, 38, 44, 38, 44, 40, 42, 42, 41, 42, 34, 55, 33, 55, 30, 63, 29, 63, 29, 66, 27, 70, 26, 70, 24, 77, 23, 77, 23, 81, 22, 83, 21, 83, 19, 91, 18, 91, 12, 119, 11, 119, 8, 138, 8, 166, 11, 181, 11, 186, 19, 202, 19, 204, 23, 208, 23, 210, 29, 215, 29, 217, 43, 229, 43, 230, 45, 230, 47, 232, 47, 233, 53, 236, 53, 237, 61, 240, 61, 241, 77, 245, 77, 246, 89, 247, 89, 248, 106, 248, 114, 246, 120, 246, 134, 241, 137, 241, 141, 238, 144, 238, 156, 229, 158, 229, 166, 221, 167, 221, 171, 214, 172, 214, 175, 206, 176, 206, 178, 198, 179, 198, 181, 175, 182, 175, 181, 152, 181, 143, 176, 119, 176, 114, 173, 107, 173, 103, 168, 92, 168, 89, 159, 72, 159, 69, 150, 54, 150, 52, 147, 49, 147, 47, 140, 39, 140, 37, 128, 26, 128, 25, 121, 21, 121, 20, 108, 15, 108, 14, 98, 12, 98, 11, 81, 11, 20.3943, 98.5017, 20.3261, 123.448, 10.2852, 123.527, 11, 119, 12, 119, 16.3941, 98.4945, 45.5262, 48.4556, 45.6267, 48.5565, 45.5283, 73.486, 25.0106, 73.4628, 26, 70, 27, 70, 29, 66, 29, 63, 30, 63, 33, 55, 34, 55, 37.5324, 48.4398, 45.5283, 73.486, 45.6628, 73.622, 45.392, 98.5091, 45.3916, 98.5095, 20.5267, 98.3687, 20.3812, 73.6311, 20.5529, 73.4577, 20.5267, 98.3687, 20.3943, 98.5017, 16.3941, 98.4945, 18, 91, 19, 91, 20.4493, 85.2029, 45.3916, 98.5095, 45.5114, 123.56, 45.4521, 123.62, 20.4174, 123.538, 20.3261, 123.448, 20.3943, 98.5017, 20.5267, 98.3687, 70.4312, 23.4183, 58.5742, 23.4258, 62, 20, 64, 20, 70.54, 15.095, 70.7076, 23.6944, 70.538, 48.5927, 70.4991, 48.6314, 45.6267, 48.5565, 45.5262, 48.4556, 45.7538, 23.4339, 70.4312, 23.4183, 45.5262, 48.4556, 37.5324, 48.4398, 41, 42, 42, 42, 44, 40, 44, 38, 45, 38, 45.627, 37.373, 70.4991, 48.6314, 70.6428, 73.5959, 70.5477, 73.6923, 45.6628, 73.622, 45.5283, 73.486, 45.6267, 48.5565, 70.5477, 73.6923, 70.7008, 98.3399, 70.5205, 98.5209, 45.392, 98.5091, 45.6628, 73.622, 70.5205, 98.5209, 70.4137, 123.359, 45.5114, 123.56, 45.3916, 98.5095, 45.392, 98.5091, 95.5809, 23.6191, 95.5477, 23.6528, 70.7076, 23.6944, 70.4312, 23.4183, 70.54, 15.095, 72, 14, 75, 14, 81, 12, 81, 11, 95.4292, 11, 95.744, 48.4216, 95.5422, 48.6216, 70.538, 48.5927, 70.7076, 23.6944, 95.5477, 23.6528, 95.5422, 48.6216, 95.3779, 73.4194, 70.6428, 73.5959, 70.4991, 48.6314, 70.538, 48.5927, 95.7191, 73.7576, 95.6154, 98.6342, 95.6059, 98.6427, 70.7008, 98.3399, 70.5477, 73.6923, 70.6428, 73.5959, 95.3779, 73.4194, 95.6059, 98.6427, 95.3354, 123.628, 70.5928, 123.536, 70.4137, 123.359, 70.5205, 98.5209, 70.7008, 98.3399, 98, 12, 108, 14, 108, 15, 120.228, 19.7031, 120.204, 23.2351, 95.5809, 23.6191, 95.4292, 11, 98, 11, 121, 20, 121, 21, 125.395, 23.5117, 120.513, 23.5388, 120.204, 23.2351, 120.228, 19.7031, 120.513, 23.5388, 120.597, 48.4356, 120.274, 48.7576, 95.744, 48.4216, 95.5477, 23.6528, 95.5809, 23.6191, 120.204, 23.2351, 120.274, 48.7576, 120.605, 73.372, 120.457, 73.5221, 95.7191, 73.7576, 95.3779, 73.4194, 95.5422, 48.6216, 95.744, 48.4216, 120.625, 98.4187, 120.325, 98.7219, 95.6154, 98.6342, 95.7191, 73.7576, 120.457, 73.5221, 120.325, 98.7219, 120.745, 123.28, 120.326, 123.7, 95.4237, 123.717, 95.3354, 123.628, 95.6059, 98.6427, 95.6154, 98.6342, 20.4174, 123.542, 20.4197, 148.555, 20.4022, 148.577, 8, 148.643, 8, 138, 10.2852, 123.527, 20.3261, 123.448, 20.6689, 173.46, 20.4358, 173.69, 9.53386, 173.669, 8, 166, 8, 148.643, 20.4022, 148.577, 20.4358, 173.69, 20.5376, 198.535, 17.2616, 198.523, 11, 186, 11, 181, 9.53386, 173.669, 20.5376, 198.535, 20.5513, 198.549, 20.4842, 205.484, 19, 204, 19, 202, 17.2616, 198.523, 45.4521, 123.62, 45.5695, 148.291, 45.4035, 148.459, 20.4197, 148.555, 20.4174, 123.542, 45.3335, 173.507, 20.6689, 173.46, 20.4022, 148.577, 20.4197, 148.555, 45.4035, 148.459, 45.3335, 173.507, 45.3709, 173.544, 45.4115, 198.572, 20.5513, 198.549, 20.5376, 198.535, 20.4358, 173.69, 20.6689, 173.46, 45.4115, 198.572, 45.5513, 198.713, 45.402, 223.374, 45.2254, 223.551, 36.6668, 223.572, 29, 217, 29, 215, 23, 210, 23, 208, 20.4842, 205.484, 20.5513, 198.549, 45.3058, 230.306, 45, 230, 43, 230, 43, 229, 36.6668, 223.572, 45.2254, 223.551, 70.5928, 123.536, 70.4524, 148.519, 70.2956, 148.673, 45.5695, 148.291, 45.4521, 123.62, 45.5114, 123.56, 70.4137, 123.359, 70.2956, 148.673, 70.2842, 173.452, 45.3709, 173.544, 45.3335, 173.507, 45.4035, 148.459, 45.5695, 148.291, 70.476, 173.641, 70.4079, 198.52, 45.5513, 198.713, 45.4115, 198.572, 45.3709, 173.544, 70.2842, 173.452, 70.4539, 198.566, 70.5012, 223.643, 45.402, 223.374, 45.5513, 198.713, 70.4079, 198.52, 70.5012, 223.643, 70.6384, 223.781, 70.4646, 243.366, 61, 241, 61, 240, 53, 237, 53, 236, 47, 233, 47, 232, 45.3058, 230.306, 45.2254, 223.551, 45.402, 223.374, 95.3354, 123.628, 95.4237, 123.72, 95.4408, 148.599, 70.4524, 148.519, 70.5928, 123.536, 95.4408, 148.599, 95.4439, 148.602, 95.4068, 173.359, 95.3304, 173.433, 70.476, 173.641, 70.2842, 173.452, 70.2956, 148.673, 70.4524, 148.519, 95.4024, 198.688, 70.4539, 198.566, 70.4079, 198.52, 70.476, 173.641, 95.3304, 173.433, 95.4024, 198.688, 95.4032, 198.689, 95.473, 223.413, 70.6384, 223.781, 70.5012, 223.643, 70.4539, 198.566, 95.5733, 223.513, 95.7321, 248.325, 95.4333, 248.619, 70.5574, 248.532, 70.4201, 248.391, 70.6384, 223.781, 95.473, 223.413, 120.524, 148.535, 95.4439, 148.602, 95.4408, 148.599, 95.4237, 123.72, 120.326, 123.7, 120.672, 148.682, 120.636, 173.439, 120.392, 173.684, 95.4068, 173.359, 95.4439, 148.602, 120.524, 148.535, 120.392, 173.684, 120.551, 198.422, 95.4032, 198.689, 95.4024, 198.688, 95.3304, 173.433, 95.4068, 173.359, 120.625, 198.496, 120.528, 223.453, 95.5733, 223.513, 95.473, 223.413, 95.4032, 198.689, 120.551, 198.422, 120.725, 223.651, 120.504, 248.439, 120.33, 248.613, 95.7321, 248.325, 95.5733, 223.513, 120.528, 223.453, 128, 25, 128, 26, 140, 37, 140, 39, 145.4, 45.1716, 145.391, 48.3231, 120.597, 48.4351, 120.513, 23.5388, 125.395, 23.5117, 145.518, 48.4505, 145.551, 73.3313, 145.479, 73.4042, 120.605, 73.3722, 120.274, 48.7576, 120.597, 48.4351, 145.391, 48.3231, 145.479, 73.4042, 145.511, 98.3402, 120.625, 98.4192, 120.457, 73.5221, 120.605, 73.3722, 145.633, 98.4627, 145.231, 123.512, 120.745, 123.28, 120.325, 98.7219, 120.625, 98.4192, 145.511, 98.3402, 147, 49, 150, 52, 150, 54, 159, 69, 159, 72, 159.719, 73.3578, 145.551, 73.3313, 145.518, 48.4505, 147, 48.4445, 147, 47, 147, 48.4445, 145.518, 48.4505, 145.391, 48.3231, 145.4, 45.1716, 159.719, 73.3578, 168, 89, 168, 92, 170.393, 97.2652, 170.386, 98.6635, 145.633, 98.4627, 145.511, 98.3402, 145.479, 73.4042, 145.551, 73.3313, 170.386, 98.6635, 170.527, 98.8045, 170.486, 123.479, 170.41, 123.556, 145.262, 123.543, 145.231, 123.512, 145.633, 98.4627, 173, 103, 173, 107, 176, 114, 176, 119, 176.939, 123.505, 170.486, 123.479, 170.527, 98.8045, 171.09, 98.7975, 171.09, 98.7975, 170.527, 98.8045, 170.386, 98.6635, 170.393, 97.2652, 145.231, 123.512, 145.262, 123.543, 145.351, 148.295, 120.672, 148.682, 120.524, 148.536, 120.326, 123.7, 120.745, 123.28, 145.536, 148.477, 145.645, 173.476, 120.636, 173.44, 120.672, 148.682, 145.351, 148.295, 145.645, 173.476, 145.733, 173.563, 145.645, 198.308, 145.398, 198.551, 120.625, 198.496, 120.551, 198.422, 120.392, 173.684, 120.636, 173.44, 145.398, 198.551, 145.594, 223.471, 145.429, 223.635, 120.725, 223.651, 120.528, 223.453, 120.625, 198.496, 145.571, 248.512, 120.504, 248.438, 120.725, 223.651, 145.429, 223.635, 170.41, 123.555, 170.49, 148.301, 145.536, 148.477, 145.351, 148.295, 145.262, 123.543, 170.498, 148.309, 170.526, 173.334, 145.733, 173.563, 145.645, 173.476, 145.536, 148.477, 170.49, 148.301, 170.634, 173.44, 170.712, 198.401, 170.479, 198.636, 145.645, 198.308, 145.733, 173.563, 170.526, 173.334, 170.479, 198.636, 170.574, 223.48, 145.594, 223.471, 145.398, 198.551, 145.645, 198.308, 163.523, 223.477, 158, 229, 156, 229, 145.505, 236.871, 145.429, 223.635, 145.594, 223.471, 176.938, 123.504, 181, 143, 181, 148.33, 170.498, 148.309, 170.49, 148.301, 170.41, 123.555, 170.486, 123.478, 181, 148.33, 181, 152, 181.93, 173.4, 170.634, 173.44, 170.526, 173.334, 170.498, 148.309, 182, 175, 181, 175, 179, 198, 178, 198, 177.902, 198.391, 170.712, 198.401, 170.634, 173.44, 181.93, 173.4, 176, 206, 175, 206, 172, 214, 171, 214, 170.54, 214.804, 170.479, 198.636, 170.712, 198.401, 177.902, 198.391) -polygons = [PackedInt32Array(101, 96, 97), PackedInt32Array(97, 98, 99), PackedInt32Array(100, 101, 97), PackedInt32Array(97, 99, 100), PackedInt32Array(113, 102, 103), PackedInt32Array(103, 104, 105), PackedInt32Array(105, 106, 107), PackedInt32Array(108, 109, 110), PackedInt32Array(110, 111, 112), PackedInt32Array(112, 113, 103), PackedInt32Array(103, 105, 107), PackedInt32Array(108, 110, 112), PackedInt32Array(103, 107, 108), PackedInt32Array(108, 112, 103), PackedInt32Array(120, 114, 115), PackedInt32Array(115, 116, 117), PackedInt32Array(117, 118, 119), PackedInt32Array(119, 120, 115), PackedInt32Array(115, 117, 119), PackedInt32Array(126, 121, 122), PackedInt32Array(122, 123, 124), PackedInt32Array(125, 126, 122), PackedInt32Array(122, 124, 125), PackedInt32Array(133, 127, 128), PackedInt32Array(128, 129, 130), PackedInt32Array(130, 131, 132), PackedInt32Array(132, 133, 128), PackedInt32Array(128, 130, 132), PackedInt32Array(134, 135, 136), PackedInt32Array(137, 138, 134), PackedInt32Array(134, 136, 137), PackedInt32Array(145, 139, 140), PackedInt32Array(140, 141, 142), PackedInt32Array(142, 143, 144), PackedInt32Array(144, 145, 140), PackedInt32Array(140, 142, 144), PackedInt32Array(146, 147, 148), PackedInt32Array(150, 151, 152), PackedInt32Array(152, 153, 146), PackedInt32Array(146, 148, 149), PackedInt32Array(150, 152, 146), PackedInt32Array(146, 149, 150), PackedInt32Array(159, 154, 155), PackedInt32Array(155, 156, 157), PackedInt32Array(157, 158, 159), PackedInt32Array(159, 155, 157), PackedInt32Array(164, 160, 161), PackedInt32Array(161, 162, 163), PackedInt32Array(163, 164, 161), PackedInt32Array(169, 165, 166), PackedInt32Array(166, 167, 168), PackedInt32Array(168, 169, 166), PackedInt32Array(179, 170, 171), PackedInt32Array(171, 172, 173), PackedInt32Array(173, 174, 175), PackedInt32Array(177, 178, 179), PackedInt32Array(179, 171, 173), PackedInt32Array(173, 175, 176), PackedInt32Array(176, 177, 179), PackedInt32Array(179, 173, 176), PackedInt32Array(184, 180, 181), PackedInt32Array(181, 182, 183), PackedInt32Array(183, 184, 181), PackedInt32Array(189, 185, 186), PackedInt32Array(186, 187, 188), PackedInt32Array(188, 189, 186), PackedInt32Array(196, 190, 191), PackedInt32Array(191, 192, 193), PackedInt32Array(193, 194, 195), PackedInt32Array(195, 196, 191), PackedInt32Array(191, 193, 195), PackedInt32Array(202, 197, 198), PackedInt32Array(198, 199, 200), PackedInt32Array(200, 201, 202), PackedInt32Array(202, 198, 200), PackedInt32Array(203, 204, 205), PackedInt32Array(205, 206, 207), PackedInt32Array(207, 208, 209), PackedInt32Array(209, 210, 203), PackedInt32Array(203, 205, 207), PackedInt32Array(207, 209, 203), PackedInt32Array(216, 211, 212), PackedInt32Array(212, 213, 214), PackedInt32Array(214, 215, 216), PackedInt32Array(216, 212, 214), PackedInt32Array(223, 217, 218), PackedInt32Array(218, 219, 220), PackedInt32Array(220, 221, 222), PackedInt32Array(222, 223, 218), PackedInt32Array(218, 220, 222), PackedInt32Array(230, 224, 225), PackedInt32Array(225, 226, 227), PackedInt32Array(227, 228, 229), PackedInt32Array(229, 230, 225), PackedInt32Array(225, 227, 229), PackedInt32Array(235, 231, 232), PackedInt32Array(232, 233, 234), PackedInt32Array(234, 235, 232), PackedInt32Array(242, 236, 237), PackedInt32Array(237, 238, 239), PackedInt32Array(239, 240, 241), PackedInt32Array(241, 242, 237), PackedInt32Array(237, 239, 241), PackedInt32Array(249, 243, 244), PackedInt32Array(244, 245, 246), PackedInt32Array(246, 247, 248), PackedInt32Array(248, 249, 244), PackedInt32Array(244, 246, 248), PackedInt32Array(255, 250, 251), PackedInt32Array(251, 252, 253), PackedInt32Array(253, 254, 255), PackedInt32Array(255, 251, 253), PackedInt32Array(261, 256, 257), PackedInt32Array(257, 258, 259), PackedInt32Array(260, 261, 257), PackedInt32Array(257, 259, 260), PackedInt32Array(267, 262, 263), PackedInt32Array(263, 264, 265), PackedInt32Array(266, 267, 263), PackedInt32Array(263, 265, 266), PackedInt32Array(272, 268, 269), PackedInt32Array(269, 270, 271), PackedInt32Array(271, 272, 269), PackedInt32Array(277, 273, 274), PackedInt32Array(274, 275, 276), PackedInt32Array(276, 277, 274), PackedInt32Array(284, 278, 279), PackedInt32Array(279, 280, 281), PackedInt32Array(281, 282, 283), PackedInt32Array(283, 284, 279), PackedInt32Array(279, 281, 283), PackedInt32Array(295, 285, 286), PackedInt32Array(286, 287, 288), PackedInt32Array(288, 289, 290), PackedInt32Array(291, 292, 293), PackedInt32Array(293, 294, 295), PackedInt32Array(295, 286, 288), PackedInt32Array(288, 290, 291), PackedInt32Array(291, 293, 295), PackedInt32Array(295, 288, 291), PackedInt32Array(301, 296, 297), PackedInt32Array(297, 298, 299), PackedInt32Array(299, 300, 301), PackedInt32Array(301, 297, 299), PackedInt32Array(308, 302, 303), PackedInt32Array(303, 304, 305), PackedInt32Array(305, 306, 307), PackedInt32Array(307, 308, 303), PackedInt32Array(303, 305, 307), PackedInt32Array(314, 309, 310), PackedInt32Array(310, 311, 312), PackedInt32Array(312, 313, 314), PackedInt32Array(314, 310, 312), PackedInt32Array(320, 315, 316), PackedInt32Array(316, 317, 318), PackedInt32Array(318, 319, 320), PackedInt32Array(320, 316, 318), PackedInt32Array(325, 321, 322), PackedInt32Array(322, 323, 324), PackedInt32Array(324, 325, 322), PackedInt32Array(337, 326, 327), PackedInt32Array(327, 328, 329), PackedInt32Array(330, 331, 332), PackedInt32Array(332, 333, 334), PackedInt32Array(334, 335, 336), PackedInt32Array(336, 337, 327), PackedInt32Array(327, 329, 330), PackedInt32Array(330, 332, 334), PackedInt32Array(334, 336, 327), PackedInt32Array(327, 330, 334), PackedInt32Array(342, 338, 339), PackedInt32Array(339, 340, 341), PackedInt32Array(341, 342, 339), PackedInt32Array(350, 343, 344), PackedInt32Array(344, 345, 346), PackedInt32Array(346, 347, 348), PackedInt32Array(348, 349, 350), PackedInt32Array(350, 344, 346), PackedInt32Array(346, 348, 350), PackedInt32Array(355, 351, 352), PackedInt32Array(352, 353, 354), PackedInt32Array(354, 355, 352), PackedInt32Array(361, 356, 357), PackedInt32Array(357, 358, 359), PackedInt32Array(359, 360, 361), PackedInt32Array(361, 357, 359), PackedInt32Array(368, 362, 363), PackedInt32Array(363, 364, 365), PackedInt32Array(365, 366, 367), PackedInt32Array(367, 368, 363), PackedInt32Array(363, 365, 367), PackedInt32Array(373, 369, 370), PackedInt32Array(370, 371, 372), PackedInt32Array(372, 373, 370), PackedInt32Array(379, 374, 375), PackedInt32Array(375, 376, 377), PackedInt32Array(377, 378, 379), PackedInt32Array(379, 375, 377), PackedInt32Array(385, 380, 381), PackedInt32Array(381, 382, 383), PackedInt32Array(383, 384, 385), PackedInt32Array(385, 381, 383), PackedInt32Array(391, 386, 387), PackedInt32Array(387, 388, 389), PackedInt32Array(389, 390, 391), PackedInt32Array(391, 387, 389), PackedInt32Array(397, 392, 393), PackedInt32Array(393, 394, 395), PackedInt32Array(395, 396, 397), PackedInt32Array(397, 393, 395), PackedInt32Array(406, 398, 399), PackedInt32Array(399, 400, 401), PackedInt32Array(401, 402, 403), PackedInt32Array(403, 404, 405), PackedInt32Array(405, 406, 399), PackedInt32Array(399, 401, 403), PackedInt32Array(403, 405, 399), PackedInt32Array(413, 407, 408), PackedInt32Array(408, 409, 410), PackedInt32Array(410, 411, 412), PackedInt32Array(412, 413, 408), PackedInt32Array(408, 410, 412), PackedInt32Array(418, 414, 415), PackedInt32Array(415, 416, 417), PackedInt32Array(417, 418, 415), PackedInt32Array(424, 419, 420), PackedInt32Array(420, 421, 422), PackedInt32Array(422, 423, 424), PackedInt32Array(424, 420, 422), PackedInt32Array(425, 426, 427), PackedInt32Array(427, 428, 429), PackedInt32Array(429, 430, 431), PackedInt32Array(431, 432, 433), PackedInt32Array(425, 427, 429), PackedInt32Array(431, 433, 425), PackedInt32Array(425, 429, 431), PackedInt32Array(438, 434, 435), PackedInt32Array(435, 436, 437), PackedInt32Array(437, 438, 435), PackedInt32Array(447, 439, 440), PackedInt32Array(441, 442, 443), PackedInt32Array(443, 444, 445), PackedInt32Array(445, 446, 447), PackedInt32Array(447, 440, 441), PackedInt32Array(441, 443, 445), PackedInt32Array(445, 447, 441), PackedInt32Array(454, 448, 449), PackedInt32Array(449, 450, 451), PackedInt32Array(451, 452, 453), PackedInt32Array(453, 454, 449), PackedInt32Array(449, 451, 453), PackedInt32Array(462, 455, 456), PackedInt32Array(456, 457, 458), PackedInt32Array(458, 459, 460), PackedInt32Array(460, 461, 462), PackedInt32Array(456, 458, 460), PackedInt32Array(460, 462, 456), PackedInt32Array(466, 463, 464), PackedInt32Array(464, 465, 466), PackedInt32Array(473, 467, 468), PackedInt32Array(468, 469, 470), PackedInt32Array(470, 471, 472), PackedInt32Array(472, 473, 468), PackedInt32Array(468, 470, 472), PackedInt32Array(478, 474, 475), PackedInt32Array(475, 476, 477), PackedInt32Array(477, 478, 475), PackedInt32Array(486, 479, 480), PackedInt32Array(480, 481, 482), PackedInt32Array(482, 483, 484), PackedInt32Array(484, 485, 486), PackedInt32Array(486, 480, 482), PackedInt32Array(482, 484, 486), PackedInt32Array(492, 487, 488), PackedInt32Array(488, 489, 490), PackedInt32Array(490, 491, 492), PackedInt32Array(492, 488, 490), PackedInt32Array(496, 493, 494), PackedInt32Array(494, 495, 496), PackedInt32Array(501, 497, 498), PackedInt32Array(498, 499, 500), PackedInt32Array(500, 501, 498), PackedInt32Array(507, 502, 503), PackedInt32Array(503, 504, 505), PackedInt32Array(505, 506, 507), PackedInt32Array(507, 503, 505), PackedInt32Array(513, 508, 509), PackedInt32Array(509, 510, 511), PackedInt32Array(511, 512, 513), PackedInt32Array(513, 509, 511), PackedInt32Array(518, 514, 515), PackedInt32Array(515, 516, 517), PackedInt32Array(517, 518, 515), PackedInt32Array(524, 519, 520), PackedInt32Array(521, 522, 523), PackedInt32Array(523, 524, 520), PackedInt32Array(520, 521, 523), PackedInt32Array(531, 525, 526), PackedInt32Array(526, 527, 528), PackedInt32Array(528, 529, 530), PackedInt32Array(530, 531, 526), PackedInt32Array(526, 528, 530), PackedInt32Array(537, 532, 533), PackedInt32Array(533, 534, 535), PackedInt32Array(535, 536, 537), PackedInt32Array(537, 533, 535), PackedInt32Array(545, 538, 539), PackedInt32Array(539, 540, 541), PackedInt32Array(541, 542, 543), PackedInt32Array(544, 545, 539), PackedInt32Array(539, 541, 543), PackedInt32Array(543, 544, 539), PackedInt32Array(553, 546, 547), PackedInt32Array(547, 548, 549), PackedInt32Array(549, 550, 551), PackedInt32Array(551, 552, 553), PackedInt32Array(553, 547, 549), PackedInt32Array(549, 551, 553)] -bones = ["Bone-0", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 1, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-1", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0.7, 0.7, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 1, 0.7, 0.7, 1, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-2", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0.7, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-3", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-4", PackedFloat32Array(0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-5", PackedFloat32Array(0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 1, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-6", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-7", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-8", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-9", PackedFloat32Array(0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-10", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-11", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-12", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-13", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-14", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 1, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-15", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0.7, 0.7, 0, 0.7, 0.7, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-16", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-17", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-18", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-19", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-20", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-21", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-22", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-23", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-24", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-25", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-26", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-27", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0.7, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-28", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-29", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-30", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-31", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-32", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-33", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-34", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-35", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-36", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-37", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-38", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0.7, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-39", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-40", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-41", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-42", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-43", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-44", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-45", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 1, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-46", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0.7, 0, 0, 0, 0, 0.7, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-47", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-48", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 1, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-49", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-50", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-51", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-52", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-53", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-54", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0.7, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-55", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-56", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0), "Bone-57", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0), "Bone-58", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-59", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0.7, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-60", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-61", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 1, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 1, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7), "Bone-62", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 1, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7)] -internal_vertex_count = 458 +polygon = PackedVector2Array(81, 11, 75, 13, 72, 13, 64, 19, 62, 19, 49, 32, 48, 32, 48, 34, 44, 38, 43, 38, 43, 40, 41, 42, 40, 42, 33, 55, 32, 55, 29, 63, 28, 63, 28, 66, 26, 70, 25, 70, 23, 77, 22, 77, 22, 81, 21, 83, 20, 83, 18, 91, 17, 91, 11, 119, 10, 119, 7, 138, 7, 166, 10, 181, 10, 186, 18, 202, 18, 204, 22, 208, 22, 210, 28, 215, 28, 217, 43, 230, 43, 231, 45, 231, 47, 233, 47, 234, 53, 237, 53, 238, 61, 241, 61, 242, 77, 246, 77, 247, 89, 248, 89, 249, 106, 249, 114, 247, 120, 247, 134, 242, 137, 242, 141, 239, 144, 239, 156, 230, 158, 230, 167, 221, 168, 221, 172, 214, 173, 214, 176, 206, 177, 206, 179, 198, 180, 198, 182, 175, 183, 175, 182, 152, 182, 143, 177, 119, 177, 114, 174, 107, 174, 103, 169, 92, 169, 89, 160, 72, 160, 69, 151, 54, 151, 52, 148, 49, 148, 47, 141, 39, 141, 37, 128, 25, 128, 24, 121, 20, 121, 19, 108, 14, 108, 13, 98, 11, 98, 10, 81, 10, 27, 70, 26, 70, 27, 68, 37, 80, 27, 80, 27, 70, 37, 70, 27, 80, 22, 80, 22, 77, 23, 77, 25, 70, 27, 70, 37, 70, 27, 70, 27, 68, 28, 66, 28, 63, 29, 63, 30.125, 60, 37, 60, 27, 90, 18.25, 90, 20, 83, 21, 83, 22, 81, 22, 80, 27, 80, 37, 100, 27, 100, 27, 90, 37, 90, 27, 100, 17, 100, 17, 91, 18, 91, 18.25, 90, 27, 90, 37, 90, 27, 90, 27, 80, 37, 80, 17, 100, 15.0714, 100, 17, 91, 47, 50, 37, 50, 37, 47.5714, 40, 42, 41, 42, 43, 40, 47, 40, 57, 60, 47, 60, 47, 50, 57, 50, 47, 60, 37, 60, 37, 50, 47, 50, 57, 50, 47, 50, 47, 40, 57, 40, 37, 60, 30.125, 60, 32, 55, 33, 55, 35.6923, 50, 37, 50, 37, 50, 35.6923, 50, 37, 47.5714, 47, 70, 37, 70, 37, 60, 47, 60, 57, 80, 47, 80, 47, 70, 57, 70, 47, 80, 37, 80, 37, 70, 47, 70, 57, 70, 47, 70, 47, 60, 57, 60, 47, 90, 37, 90, 37, 80, 47, 80, 57, 100, 47, 100, 47, 90, 57, 90, 47, 100, 37, 100, 37, 90, 47, 90, 57, 90, 47, 90, 47, 80, 57, 80, 67, 30, 57, 30, 57, 24, 61, 20, 67, 20, 77, 40, 67, 40, 67, 30, 77, 30, 67, 40, 57, 40, 57, 30, 67, 30, 77, 30, 67, 30, 67, 20, 77, 20, 57, 40, 47, 40, 47, 35, 48, 34, 48, 32, 49, 32, 51, 30, 57, 30, 47, 40, 43, 40, 43, 38, 44, 38, 47, 35, 57, 30, 51, 30, 57, 24, 77, 20, 67, 20, 67, 16.75, 72, 13, 75, 13, 77, 12.3333, 67, 20, 61, 20, 62, 19, 64, 19, 67, 16.75, 67, 50, 57, 50, 57, 40, 67, 40, 77, 60, 67, 60, 67, 50, 77, 50, 67, 60, 57, 60, 57, 50, 67, 50, 77, 50, 67, 50, 67, 40, 77, 40, 67, 70, 57, 70, 57, 60, 67, 60, 77, 80, 67, 80, 67, 70, 77, 70, 67, 80, 57, 80, 57, 70, 67, 70, 77, 70, 67, 70, 67, 60, 77, 60, 67, 90, 57, 90, 57, 80, 67, 80, 77, 100, 67, 100, 67, 90, 77, 90, 67, 100, 57, 100, 57, 90, 67, 90, 77, 90, 67, 90, 67, 80, 77, 80, 97, 20, 87, 20, 87, 10, 97, 10, 87, 20, 77, 20, 77, 12.3333, 81, 11, 81, 10, 87, 10, 87, 30, 77, 30, 77, 20, 87, 20, 97, 40, 87, 40, 87, 30, 97, 30, 87, 40, 77, 40, 77, 30, 87, 30, 97, 30, 87, 30, 87, 20, 97, 20, 87, 50, 77, 50, 77, 40, 87, 40, 97, 60, 87, 60, 87, 50, 97, 50, 87, 60, 77, 60, 77, 50, 87, 50, 97, 50, 87, 50, 87, 40, 97, 40, 87, 70, 77, 70, 77, 60, 87, 60, 97, 80, 87, 80, 87, 70, 97, 70, 87, 80, 77, 80, 77, 70, 87, 70, 97, 70, 87, 70, 87, 60, 97, 60, 87, 90, 77, 90, 77, 80, 87, 80, 97, 100, 87, 100, 87, 90, 97, 90, 87, 100, 77, 100, 77, 90, 87, 90, 97, 90, 87, 90, 87, 80, 97, 80, 17, 140, 7, 140, 7, 138, 8.26316, 130, 17, 130, 17, 130, 8.26316, 130, 9.8421, 120, 17, 120, 17, 160, 7, 160, 7, 150, 17, 150, 17, 150, 7, 150, 7, 140, 17, 140, 17, 180, 9.8, 180, 7.8, 170, 17, 170, 17, 170, 7, 170, 7, 160, 17, 160, 27, 110, 17, 110, 17, 100, 27, 100, 37, 120, 27, 120, 27, 110, 37, 110, 27, 120, 17, 120, 17, 110, 27, 110, 37, 110, 27, 110, 27, 100, 37, 100, 17, 120, 9.8421, 120, 10, 119, 11, 119, 12.9286, 110, 17, 110, 17, 110, 12.9286, 110, 15.0714, 100, 17, 100, 27, 130, 17, 130, 17, 120, 27, 120, 37, 140, 27, 140, 27, 130, 37, 130, 27, 140, 17, 140, 17, 130, 27, 130, 37, 130, 27, 130, 27, 120, 37, 120, 27, 150, 17, 150, 17, 140, 27, 140, 37, 160, 27, 160, 27, 150, 37, 150, 27, 160, 17, 160, 17, 150, 27, 150, 37, 150, 27, 150, 27, 140, 37, 140, 27, 170, 17, 170, 17, 160, 27, 160, 37, 180, 27, 180, 27, 170, 37, 170, 27, 180, 17, 180, 17, 170, 27, 170, 37, 170, 27, 170, 27, 160, 37, 160, 27, 190, 17, 190, 17, 180, 27, 180, 37, 200, 27, 200, 27, 190, 37, 190, 27, 200, 17, 200, 17, 190, 27, 190, 37, 190, 27, 190, 27, 180, 37, 180, 17, 200, 12, 190, 17, 190, 17, 190, 12, 190, 10, 186, 10, 181, 9.8, 180, 17, 180, 47, 110, 37, 110, 37, 100, 47, 100, 57, 120, 47, 120, 47, 110, 57, 110, 47, 120, 37, 120, 37, 110, 47, 110, 57, 110, 47, 110, 47, 100, 57, 100, 47, 130, 37, 130, 37, 120, 47, 120, 57, 140, 47, 140, 47, 130, 57, 130, 47, 140, 37, 140, 37, 130, 47, 130, 57, 130, 47, 130, 47, 120, 57, 120, 47, 150, 37, 150, 37, 140, 47, 140, 57, 160, 47, 160, 47, 150, 57, 150, 47, 160, 37, 160, 37, 150, 47, 150, 57, 150, 47, 150, 47, 140, 57, 140, 47, 170, 37, 170, 37, 160, 47, 160, 57, 180, 47, 180, 47, 170, 57, 170, 47, 180, 37, 180, 37, 170, 47, 170, 57, 170, 47, 170, 47, 160, 57, 160, 47, 190, 37, 190, 37, 180, 47, 180, 57, 200, 47, 200, 47, 190, 57, 190, 47, 200, 37, 200, 37, 190, 47, 190, 57, 190, 47, 190, 47, 180, 57, 180, 67, 110, 57, 110, 57, 100, 67, 100, 77, 120, 67, 120, 67, 110, 77, 110, 67, 120, 57, 120, 57, 110, 67, 110, 77, 110, 67, 110, 67, 100, 77, 100, 67, 130, 57, 130, 57, 120, 67, 120, 77, 140, 67, 140, 67, 130, 77, 130, 67, 140, 57, 140, 57, 130, 67, 130, 77, 130, 67, 130, 67, 120, 77, 120, 67, 150, 57, 150, 57, 140, 67, 140, 77, 160, 67, 160, 67, 150, 77, 150, 67, 160, 57, 160, 57, 150, 67, 150, 77, 150, 67, 150, 67, 140, 77, 140, 67, 170, 57, 170, 57, 160, 67, 160, 77, 180, 67, 180, 67, 170, 77, 170, 67, 180, 57, 180, 57, 170, 67, 170, 77, 170, 67, 170, 67, 160, 77, 160, 67, 190, 57, 190, 57, 180, 67, 180, 77, 200, 67, 200, 67, 190, 77, 190, 67, 200, 57, 200, 57, 190, 67, 190, 77, 190, 67, 190, 67, 180, 77, 180, 87, 110, 77, 110, 77, 100, 87, 100, 97, 120, 87, 120, 87, 110, 97, 110, 87, 120, 77, 120, 77, 110, 87, 110, 97, 110, 87, 110, 87, 100, 97, 100, 87, 130, 77, 130, 77, 120, 87, 120, 97, 140, 87, 140, 87, 130, 97, 130, 87, 140, 77, 140, 77, 130, 87, 130, 97, 130, 87, 130, 87, 120, 97, 120, 87, 150, 77, 150, 77, 140, 87, 140, 97, 160, 87, 160, 87, 150, 97, 150, 87, 160, 77, 160, 77, 150, 87, 150, 97, 150, 87, 150, 87, 140, 97, 140, 87, 170, 77, 170, 77, 160, 87, 160, 97, 180, 87, 180, 87, 170, 97, 170, 87, 180, 77, 180, 77, 170, 87, 170, 97, 170, 87, 170, 87, 160, 97, 160, 87, 190, 77, 190, 77, 180, 87, 180, 97, 200, 87, 200, 87, 190, 97, 190, 87, 200, 77, 200, 77, 190, 87, 190, 97, 190, 87, 190, 87, 180, 97, 180, 27, 210, 22, 210, 22, 208, 18, 204, 18, 202, 17, 200, 27, 200, 37, 220, 31.4615, 220, 28, 217, 28, 215, 27, 214.167, 27, 210, 37, 210, 27, 214.167, 22, 210, 27, 210, 37, 210, 27, 210, 27, 200, 37, 200, 37, 224.8, 31.4615, 220, 37, 220, 47, 210, 37, 210, 37, 200, 47, 200, 57, 220, 47, 220, 47, 210, 57, 210, 47, 220, 37, 220, 37, 210, 47, 210, 57, 210, 47, 210, 47, 200, 57, 200, 47, 230, 43, 230, 37, 224.8, 37, 220, 47, 220, 57, 239.5, 53, 238, 53, 237, 47, 234, 47, 230, 57, 230, 47, 233, 45, 231, 43, 231, 43, 230, 47, 230, 57, 230, 47, 230, 47, 220, 57, 220, 67, 210, 57, 210, 57, 200, 67, 200, 77, 220, 67, 220, 67, 210, 77, 210, 67, 220, 57, 220, 57, 210, 67, 210, 77, 210, 67, 210, 67, 200, 77, 200, 67, 230, 57, 230, 57, 220, 67, 220, 77, 240, 67, 240, 67, 230, 77, 230, 67, 240, 57, 240, 57, 230, 67, 230, 77, 230, 67, 230, 67, 220, 77, 220, 67, 243.5, 61, 242, 61, 241, 58.3333, 240, 67, 240, 77, 246, 67, 243.5, 67, 240, 77, 240, 87, 210, 77, 210, 77, 200, 87, 200, 97, 220, 87, 220, 87, 210, 97, 210, 87, 220, 77, 220, 77, 210, 87, 210, 97, 210, 87, 210, 87, 200, 97, 200, 87, 230, 77, 230, 77, 220, 87, 220, 97, 240, 87, 240, 87, 230, 97, 230, 87, 240, 77, 240, 77, 230, 87, 230, 97, 230, 87, 230, 87, 220, 97, 220, 87, 247.833, 77, 247, 77, 240, 87, 240, 97, 249, 89, 249, 89, 248, 87, 247.833, 87, 240, 97, 240, 107, 30, 97, 30, 97, 20, 107, 20, 117, 40, 107, 40, 107, 30, 117, 30, 107, 40, 97, 40, 97, 30, 107, 30, 117, 30, 107, 30, 107, 20, 117, 20, 108, 13, 108, 14, 117, 17.4615, 117, 20, 107, 20, 107, 12.8, 98, 11, 107, 12.8, 107, 20, 97, 20, 97, 10, 98, 10, 121, 19, 121, 20, 117, 20, 117, 17.4615, 107, 50, 97, 50, 97, 40, 107, 40, 117, 60, 107, 60, 107, 50, 117, 50, 107, 60, 97, 60, 97, 50, 107, 50, 117, 50, 107, 50, 107, 40, 117, 40, 107, 70, 97, 70, 97, 60, 107, 60, 117, 80, 107, 80, 107, 70, 117, 70, 107, 80, 97, 80, 97, 70, 107, 70, 117, 70, 107, 70, 107, 60, 117, 60, 107, 90, 97, 90, 97, 80, 107, 80, 117, 100, 107, 100, 107, 90, 117, 90, 107, 100, 97, 100, 97, 90, 107, 90, 117, 90, 107, 90, 107, 80, 117, 80, 127, 23.4286, 127, 30, 117, 30, 117, 20, 121, 20, 137, 33.3077, 137, 40, 127, 40, 127, 30, 133.417, 30, 127, 40, 117, 40, 117, 30, 127, 30, 128, 24, 128, 25, 133.417, 30, 127, 30, 127, 23.4286, 141, 37, 141, 39, 141.875, 40, 137, 40, 137, 33.3077, 127, 50, 117, 50, 117, 40, 127, 40, 137, 60, 127, 60, 127, 50, 137, 50, 127, 60, 117, 60, 117, 50, 127, 50, 137, 50, 127, 50, 127, 40, 137, 40, 127, 70, 117, 70, 117, 60, 127, 60, 137, 80, 127, 80, 127, 70, 137, 70, 127, 80, 117, 80, 117, 70, 127, 70, 137, 70, 127, 70, 127, 60, 137, 60, 127, 90, 117, 90, 117, 80, 127, 80, 137, 100, 127, 100, 127, 90, 137, 90, 127, 100, 117, 100, 117, 90, 127, 90, 137, 90, 127, 90, 127, 80, 137, 80, 147, 45.8571, 147, 50, 137, 50, 137, 40, 141.875, 40, 151, 52, 151, 54, 154.6, 60, 147, 60, 147, 50, 149, 50, 147, 60, 137, 60, 137, 50, 147, 50, 148, 47, 148, 49, 149, 50, 147, 50, 147, 45.8571, 147, 70, 137, 70, 137, 60, 147, 60, 157, 80, 147, 80, 147, 70, 157, 70, 147, 80, 137, 80, 137, 70, 147, 70, 157, 64, 157, 70, 147, 70, 147, 60, 154.6, 60, 160, 69, 160, 70, 157, 70, 157, 64, 160, 72, 164.235, 80, 157, 80, 157, 70, 160, 70, 147, 90, 137, 90, 137, 80, 147, 80, 157, 100, 147, 100, 147, 90, 157, 90, 147, 100, 137, 100, 137, 90, 147, 90, 157, 90, 147, 90, 147, 80, 157, 80, 167, 85.2222, 167, 90, 157, 90, 157, 80, 164.235, 80, 169, 92, 172.636, 100, 167, 100, 167, 90, 169, 90, 167, 100, 157, 100, 157, 90, 167, 90, 169, 89, 169, 90, 167, 90, 167, 85.2222, 107, 110, 97, 110, 97, 100, 107, 100, 117, 120, 107, 120, 107, 110, 117, 110, 107, 120, 97, 120, 97, 110, 107, 110, 117, 110, 107, 110, 107, 100, 117, 100, 107, 130, 97, 130, 97, 120, 107, 120, 117, 140, 107, 140, 107, 130, 117, 130, 107, 140, 97, 140, 97, 130, 107, 130, 117, 130, 107, 130, 107, 120, 117, 120, 107, 150, 97, 150, 97, 140, 107, 140, 117, 160, 107, 160, 107, 150, 117, 150, 107, 160, 97, 160, 97, 150, 107, 150, 117, 150, 107, 150, 107, 140, 117, 140, 107, 170, 97, 170, 97, 160, 107, 160, 117, 180, 107, 180, 107, 170, 117, 170, 107, 180, 97, 180, 97, 170, 107, 170, 117, 170, 107, 170, 107, 160, 117, 160, 107, 190, 97, 190, 97, 180, 107, 180, 117, 200, 107, 200, 107, 190, 117, 190, 107, 200, 97, 200, 97, 190, 107, 190, 117, 190, 107, 190, 107, 180, 117, 180, 127, 110, 117, 110, 117, 100, 127, 100, 137, 120, 127, 120, 127, 110, 137, 110, 127, 120, 117, 120, 117, 110, 127, 110, 137, 110, 127, 110, 127, 100, 137, 100, 127, 130, 117, 130, 117, 120, 127, 120, 137, 140, 127, 140, 127, 130, 137, 130, 127, 140, 117, 140, 117, 130, 127, 130, 137, 130, 127, 130, 127, 120, 137, 120, 127, 150, 117, 150, 117, 140, 127, 140, 137, 160, 127, 160, 127, 150, 137, 150, 127, 160, 117, 160, 117, 150, 127, 150, 137, 150, 127, 150, 127, 140, 137, 140, 127, 170, 117, 170, 117, 160, 127, 160, 137, 180, 127, 180, 127, 170, 137, 170, 127, 180, 117, 180, 117, 170, 127, 170, 137, 170, 127, 170, 127, 160, 137, 160, 127, 190, 117, 190, 117, 180, 127, 180, 137, 200, 127, 200, 127, 190, 137, 190, 127, 200, 117, 200, 117, 190, 127, 190, 137, 190, 127, 190, 127, 180, 137, 180, 147, 110, 137, 110, 137, 100, 147, 100, 157, 120, 147, 120, 147, 110, 157, 110, 147, 120, 137, 120, 137, 110, 147, 110, 157, 110, 147, 110, 147, 100, 157, 100, 147, 130, 137, 130, 137, 120, 147, 120, 157, 140, 147, 140, 147, 130, 157, 130, 147, 140, 137, 140, 137, 130, 147, 130, 157, 130, 147, 130, 147, 120, 157, 120, 147, 150, 137, 150, 137, 140, 147, 140, 157, 160, 147, 160, 147, 150, 157, 150, 147, 160, 137, 160, 137, 150, 147, 150, 157, 150, 147, 150, 147, 140, 157, 140, 147, 170, 137, 170, 137, 160, 147, 160, 157, 180, 147, 180, 147, 170, 157, 170, 147, 180, 137, 180, 137, 170, 147, 170, 157, 170, 147, 170, 147, 160, 157, 160, 147, 190, 137, 190, 137, 180, 147, 180, 157, 200, 147, 200, 147, 190, 157, 190, 147, 200, 137, 200, 137, 190, 147, 190, 157, 190, 147, 190, 147, 180, 157, 180, 167, 110, 157, 110, 157, 100, 167, 100, 177, 114, 177, 120, 167, 120, 167, 110, 175.286, 110, 167, 120, 157, 120, 157, 110, 167, 110, 174, 103, 174, 107, 175.286, 110, 167, 110, 167, 100, 172.636, 100, 177.208, 120, 177, 120, 177, 119, 167, 130, 157, 130, 157, 120, 167, 120, 177, 140, 167, 140, 167, 130, 177, 130, 167, 140, 157, 140, 157, 130, 167, 130, 177, 130, 167, 130, 167, 120, 177, 120, 179.292, 130, 177, 130, 177, 120, 177.208, 120, 181.375, 140, 177, 140, 177, 130, 179.292, 130, 167, 150, 157, 150, 157, 140, 167, 140, 177, 160, 167, 160, 167, 150, 177, 150, 167, 160, 157, 160, 157, 150, 167, 150, 177, 150, 167, 150, 167, 140, 177, 140, 182, 143, 182, 150, 177, 150, 177, 140, 181.375, 140, 182, 152, 182.348, 160, 177, 160, 177, 150, 182, 150, 167, 170, 157, 170, 157, 160, 167, 160, 177, 180, 167, 180, 167, 170, 177, 170, 167, 180, 157, 180, 157, 170, 167, 170, 177, 170, 167, 170, 167, 160, 177, 160, 182.783, 170, 177, 170, 177, 160, 182.348, 160, 183, 175, 182, 175, 181.565, 180, 177, 180, 177, 170, 182.783, 170, 167, 190, 157, 190, 157, 180, 167, 180, 177, 200, 167, 200, 167, 190, 177, 190, 167, 200, 157, 200, 157, 190, 167, 190, 177, 190, 167, 190, 167, 180, 177, 180, 180.696, 190, 177, 190, 177, 180, 181.565, 180, 180, 198, 179, 198, 178.5, 200, 177, 200, 177, 190, 180.696, 190, 177, 206, 177, 200, 178.5, 200, 107, 210, 97, 210, 97, 200, 107, 200, 117, 220, 107, 220, 107, 210, 117, 210, 107, 220, 97, 220, 97, 210, 107, 210, 117, 210, 107, 210, 107, 200, 117, 200, 107, 230, 97, 230, 97, 220, 107, 220, 117, 240, 107, 240, 107, 230, 117, 230, 107, 240, 97, 240, 97, 230, 107, 230, 117, 230, 107, 230, 107, 220, 117, 220, 107, 248.75, 106, 249, 97, 249, 97, 240, 107, 240, 117, 247, 114, 247, 107, 248.75, 107, 240, 117, 240, 127, 210, 117, 210, 117, 200, 127, 200, 137, 220, 127, 220, 127, 210, 137, 210, 127, 220, 117, 220, 117, 210, 127, 210, 137, 210, 127, 210, 127, 200, 137, 200, 127, 230, 117, 230, 117, 220, 127, 220, 137, 240, 127, 240, 127, 230, 137, 230, 127, 240, 117, 240, 117, 230, 127, 230, 137, 230, 127, 230, 127, 220, 137, 220, 127, 244.5, 120, 247, 117, 247, 117, 240, 127, 240, 137, 242, 134, 242, 127, 244.5, 127, 240, 137, 240, 137, 242, 137, 240, 139.667, 240, 147, 210, 137, 210, 137, 200, 147, 200, 157, 220, 147, 220, 147, 210, 157, 210, 147, 220, 137, 220, 137, 210, 147, 210, 157, 210, 147, 210, 147, 200, 157, 200, 147, 230, 137, 230, 137, 220, 147, 220, 147, 236.75, 147, 230, 156, 230, 147, 236.75, 144, 239, 141, 239, 139.667, 240, 137, 240, 137, 230, 147, 230, 157, 230, 147, 230, 147, 220, 157, 220, 167, 210, 157, 210, 157, 200, 167, 200, 173, 214, 172, 214, 168.571, 220, 167, 220, 167, 210, 174.5, 210, 167, 220, 157, 220, 157, 210, 167, 210, 177, 206, 176, 206, 174.5, 210, 167, 210, 167, 200, 177, 200, 167, 221, 158, 230, 157, 230, 157, 220, 167, 220, 168, 221, 167, 221, 167, 220, 168.571, 220) +polygons = [PackedInt32Array(98, 96, 97), PackedInt32Array(102, 99, 100), PackedInt32Array(100, 101, 102), PackedInt32Array(108, 103, 104), PackedInt32Array(104, 105, 106), PackedInt32Array(106, 107, 108), PackedInt32Array(108, 104, 106), PackedInt32Array(116, 109, 110), PackedInt32Array(110, 111, 112), PackedInt32Array(112, 113, 114), PackedInt32Array(114, 115, 116), PackedInt32Array(116, 110, 112), PackedInt32Array(112, 114, 116), PackedInt32Array(123, 117, 118), PackedInt32Array(118, 119, 120), PackedInt32Array(121, 122, 123), PackedInt32Array(123, 118, 120), PackedInt32Array(120, 121, 123), PackedInt32Array(127, 124, 125), PackedInt32Array(125, 126, 127), PackedInt32Array(133, 128, 129), PackedInt32Array(129, 130, 131), PackedInt32Array(131, 132, 133), PackedInt32Array(133, 129, 131), PackedInt32Array(137, 134, 135), PackedInt32Array(135, 136, 137), PackedInt32Array(140, 138, 139), PackedInt32Array(147, 141, 142), PackedInt32Array(142, 143, 144), PackedInt32Array(145, 146, 147), PackedInt32Array(142, 144, 145), PackedInt32Array(145, 147, 142), PackedInt32Array(151, 148, 149), PackedInt32Array(149, 150, 151), PackedInt32Array(155, 152, 153), PackedInt32Array(153, 154, 155), PackedInt32Array(159, 156, 157), PackedInt32Array(157, 158, 159), PackedInt32Array(165, 160, 161), PackedInt32Array(161, 162, 163), PackedInt32Array(163, 164, 165), PackedInt32Array(165, 161, 163), PackedInt32Array(168, 166, 167), PackedInt32Array(172, 169, 170), PackedInt32Array(170, 171, 172), PackedInt32Array(176, 173, 174), PackedInt32Array(174, 175, 176), PackedInt32Array(180, 177, 178), PackedInt32Array(178, 179, 180), PackedInt32Array(184, 181, 182), PackedInt32Array(182, 183, 184), PackedInt32Array(188, 185, 186), PackedInt32Array(186, 187, 188), PackedInt32Array(192, 189, 190), PackedInt32Array(190, 191, 192), PackedInt32Array(196, 193, 194), PackedInt32Array(194, 195, 196), PackedInt32Array(200, 197, 198), PackedInt32Array(198, 199, 200), PackedInt32Array(205, 201, 202), PackedInt32Array(202, 203, 204), PackedInt32Array(204, 205, 202), PackedInt32Array(209, 206, 207), PackedInt32Array(207, 208, 209), PackedInt32Array(213, 210, 211), PackedInt32Array(211, 212, 213), PackedInt32Array(217, 214, 215), PackedInt32Array(215, 216, 217), PackedInt32Array(225, 218, 219), PackedInt32Array(219, 220, 221), PackedInt32Array(221, 222, 223), PackedInt32Array(223, 224, 225), PackedInt32Array(225, 219, 221), PackedInt32Array(221, 223, 225), PackedInt32Array(230, 226, 227), PackedInt32Array(227, 228, 229), PackedInt32Array(229, 230, 227), PackedInt32Array(233, 231, 232), PackedInt32Array(239, 234, 235), PackedInt32Array(235, 236, 237), PackedInt32Array(238, 239, 235), PackedInt32Array(235, 237, 238), PackedInt32Array(240, 241, 242), PackedInt32Array(243, 244, 240), PackedInt32Array(240, 242, 243), PackedInt32Array(248, 245, 246), PackedInt32Array(246, 247, 248), PackedInt32Array(252, 249, 250), PackedInt32Array(250, 251, 252), PackedInt32Array(256, 253, 254), PackedInt32Array(254, 255, 256), PackedInt32Array(260, 257, 258), PackedInt32Array(258, 259, 260), PackedInt32Array(264, 261, 262), PackedInt32Array(262, 263, 264), PackedInt32Array(268, 265, 266), PackedInt32Array(266, 267, 268), PackedInt32Array(272, 269, 270), PackedInt32Array(270, 271, 272), PackedInt32Array(276, 273, 274), PackedInt32Array(274, 275, 276), PackedInt32Array(280, 277, 278), PackedInt32Array(278, 279, 280), PackedInt32Array(284, 281, 282), PackedInt32Array(282, 283, 284), PackedInt32Array(288, 285, 286), PackedInt32Array(286, 287, 288), PackedInt32Array(292, 289, 290), PackedInt32Array(290, 291, 292), PackedInt32Array(296, 293, 294), PackedInt32Array(294, 295, 296), PackedInt32Array(302, 297, 298), PackedInt32Array(298, 299, 300), PackedInt32Array(300, 301, 302), PackedInt32Array(302, 298, 300), PackedInt32Array(306, 303, 304), PackedInt32Array(304, 305, 306), PackedInt32Array(310, 307, 308), PackedInt32Array(308, 309, 310), PackedInt32Array(314, 311, 312), PackedInt32Array(312, 313, 314), PackedInt32Array(318, 315, 316), PackedInt32Array(316, 317, 318), PackedInt32Array(322, 319, 320), PackedInt32Array(320, 321, 322), PackedInt32Array(326, 323, 324), PackedInt32Array(324, 325, 326), PackedInt32Array(330, 327, 328), PackedInt32Array(328, 329, 330), PackedInt32Array(334, 331, 332), PackedInt32Array(332, 333, 334), PackedInt32Array(338, 335, 336), PackedInt32Array(336, 337, 338), PackedInt32Array(342, 339, 340), PackedInt32Array(340, 341, 342), PackedInt32Array(346, 343, 344), PackedInt32Array(344, 345, 346), PackedInt32Array(350, 347, 348), PackedInt32Array(348, 349, 350), PackedInt32Array(354, 351, 352), PackedInt32Array(352, 353, 354), PackedInt32Array(358, 355, 356), PackedInt32Array(356, 357, 358), PackedInt32Array(362, 359, 360), PackedInt32Array(360, 361, 362), PackedInt32Array(366, 363, 364), PackedInt32Array(364, 365, 366), PackedInt32Array(371, 367, 368), PackedInt32Array(368, 369, 370), PackedInt32Array(370, 371, 368), PackedInt32Array(375, 372, 373), PackedInt32Array(373, 374, 375), PackedInt32Array(379, 376, 377), PackedInt32Array(377, 378, 379), PackedInt32Array(383, 380, 381), PackedInt32Array(381, 382, 383), PackedInt32Array(387, 384, 385), PackedInt32Array(385, 386, 387), PackedInt32Array(391, 388, 389), PackedInt32Array(389, 390, 391), PackedInt32Array(395, 392, 393), PackedInt32Array(393, 394, 395), PackedInt32Array(399, 396, 397), PackedInt32Array(397, 398, 399), PackedInt32Array(403, 400, 401), PackedInt32Array(401, 402, 403), PackedInt32Array(407, 404, 405), PackedInt32Array(405, 406, 407), PackedInt32Array(408, 409, 410), PackedInt32Array(411, 412, 413), PackedInt32Array(408, 410, 411), PackedInt32Array(411, 413, 408), PackedInt32Array(417, 414, 415), PackedInt32Array(415, 416, 417), PackedInt32Array(421, 418, 419), PackedInt32Array(419, 420, 421), PackedInt32Array(425, 422, 423), PackedInt32Array(423, 424, 425), PackedInt32Array(429, 426, 427), PackedInt32Array(427, 428, 429), PackedInt32Array(433, 430, 431), PackedInt32Array(431, 432, 433), PackedInt32Array(437, 434, 435), PackedInt32Array(435, 436, 437), PackedInt32Array(441, 438, 439), PackedInt32Array(439, 440, 441), PackedInt32Array(445, 442, 443), PackedInt32Array(443, 444, 445), PackedInt32Array(449, 446, 447), PackedInt32Array(447, 448, 449), PackedInt32Array(453, 450, 451), PackedInt32Array(451, 452, 453), PackedInt32Array(457, 454, 455), PackedInt32Array(455, 456, 457), PackedInt32Array(461, 458, 459), PackedInt32Array(459, 460, 461), PackedInt32Array(465, 462, 463), PackedInt32Array(463, 464, 465), PackedInt32Array(469, 466, 467), PackedInt32Array(467, 468, 469), PackedInt32Array(473, 470, 471), PackedInt32Array(471, 472, 473), PackedInt32Array(477, 474, 475), PackedInt32Array(475, 476, 477), PackedInt32Array(481, 478, 479), PackedInt32Array(479, 480, 481), PackedInt32Array(484, 482, 483), PackedInt32Array(490, 485, 486), PackedInt32Array(486, 487, 488), PackedInt32Array(488, 489, 490), PackedInt32Array(490, 486, 488), PackedInt32Array(494, 491, 492), PackedInt32Array(492, 493, 494), PackedInt32Array(498, 495, 496), PackedInt32Array(496, 497, 498), PackedInt32Array(502, 499, 500), PackedInt32Array(500, 501, 502), PackedInt32Array(506, 503, 504), PackedInt32Array(504, 505, 506), PackedInt32Array(510, 507, 508), PackedInt32Array(508, 509, 510), PackedInt32Array(514, 511, 512), PackedInt32Array(512, 513, 514), PackedInt32Array(518, 515, 516), PackedInt32Array(516, 517, 518), PackedInt32Array(522, 519, 520), PackedInt32Array(520, 521, 522), PackedInt32Array(526, 523, 524), PackedInt32Array(524, 525, 526), PackedInt32Array(530, 527, 528), PackedInt32Array(528, 529, 530), PackedInt32Array(534, 531, 532), PackedInt32Array(532, 533, 534), PackedInt32Array(538, 535, 536), PackedInt32Array(536, 537, 538), PackedInt32Array(542, 539, 540), PackedInt32Array(540, 541, 542), PackedInt32Array(546, 543, 544), PackedInt32Array(544, 545, 546), PackedInt32Array(550, 547, 548), PackedInt32Array(548, 549, 550), PackedInt32Array(554, 551, 552), PackedInt32Array(552, 553, 554), PackedInt32Array(558, 555, 556), PackedInt32Array(556, 557, 558), PackedInt32Array(562, 559, 560), PackedInt32Array(560, 561, 562), PackedInt32Array(566, 563, 564), PackedInt32Array(564, 565, 566), PackedInt32Array(570, 567, 568), PackedInt32Array(568, 569, 570), PackedInt32Array(574, 571, 572), PackedInt32Array(572, 573, 574), PackedInt32Array(578, 575, 576), PackedInt32Array(576, 577, 578), PackedInt32Array(582, 579, 580), PackedInt32Array(580, 581, 582), PackedInt32Array(586, 583, 584), PackedInt32Array(584, 585, 586), PackedInt32Array(590, 587, 588), PackedInt32Array(588, 589, 590), PackedInt32Array(594, 591, 592), PackedInt32Array(592, 593, 594), PackedInt32Array(598, 595, 596), PackedInt32Array(596, 597, 598), PackedInt32Array(602, 599, 600), PackedInt32Array(600, 601, 602), PackedInt32Array(606, 603, 604), PackedInt32Array(604, 605, 606), PackedInt32Array(610, 607, 608), PackedInt32Array(608, 609, 610), PackedInt32Array(614, 611, 612), PackedInt32Array(612, 613, 614), PackedInt32Array(618, 615, 616), PackedInt32Array(616, 617, 618), PackedInt32Array(622, 619, 620), PackedInt32Array(620, 621, 622), PackedInt32Array(626, 623, 624), PackedInt32Array(624, 625, 626), PackedInt32Array(630, 627, 628), PackedInt32Array(628, 629, 630), PackedInt32Array(634, 631, 632), PackedInt32Array(632, 633, 634), PackedInt32Array(638, 635, 636), PackedInt32Array(636, 637, 638), PackedInt32Array(642, 639, 640), PackedInt32Array(640, 641, 642), PackedInt32Array(646, 643, 644), PackedInt32Array(644, 645, 646), PackedInt32Array(650, 647, 648), PackedInt32Array(648, 649, 650), PackedInt32Array(654, 651, 652), PackedInt32Array(652, 653, 654), PackedInt32Array(658, 655, 656), PackedInt32Array(656, 657, 658), PackedInt32Array(662, 659, 660), PackedInt32Array(660, 661, 662), PackedInt32Array(666, 663, 664), PackedInt32Array(664, 665, 666), PackedInt32Array(670, 667, 668), PackedInt32Array(668, 669, 670), PackedInt32Array(674, 671, 672), PackedInt32Array(672, 673, 674), PackedInt32Array(678, 675, 676), PackedInt32Array(676, 677, 678), PackedInt32Array(682, 679, 680), PackedInt32Array(680, 681, 682), PackedInt32Array(686, 683, 684), PackedInt32Array(684, 685, 686), PackedInt32Array(690, 687, 688), PackedInt32Array(688, 689, 690), PackedInt32Array(694, 691, 692), PackedInt32Array(692, 693, 694), PackedInt32Array(698, 695, 696), PackedInt32Array(696, 697, 698), PackedInt32Array(702, 699, 700), PackedInt32Array(700, 701, 702), PackedInt32Array(706, 703, 704), PackedInt32Array(704, 705, 706), PackedInt32Array(710, 707, 708), PackedInt32Array(708, 709, 710), PackedInt32Array(714, 711, 712), PackedInt32Array(712, 713, 714), PackedInt32Array(718, 715, 716), PackedInt32Array(716, 717, 718), PackedInt32Array(722, 719, 720), PackedInt32Array(720, 721, 722), PackedInt32Array(726, 723, 724), PackedInt32Array(724, 725, 726), PackedInt32Array(730, 727, 728), PackedInt32Array(728, 729, 730), PackedInt32Array(737, 731, 732), PackedInt32Array(733, 734, 735), PackedInt32Array(735, 736, 737), PackedInt32Array(737, 732, 733), PackedInt32Array(733, 735, 737), PackedInt32Array(744, 738, 739), PackedInt32Array(739, 740, 741), PackedInt32Array(741, 742, 743), PackedInt32Array(743, 744, 739), PackedInt32Array(739, 741, 743), PackedInt32Array(747, 745, 746), PackedInt32Array(751, 748, 749), PackedInt32Array(749, 750, 751), PackedInt32Array(754, 752, 753), PackedInt32Array(758, 755, 756), PackedInt32Array(756, 757, 758), PackedInt32Array(762, 759, 760), PackedInt32Array(760, 761, 762), PackedInt32Array(766, 763, 764), PackedInt32Array(764, 765, 766), PackedInt32Array(770, 767, 768), PackedInt32Array(768, 769, 770), PackedInt32Array(775, 771, 772), PackedInt32Array(772, 773, 774), PackedInt32Array(774, 775, 772), PackedInt32Array(781, 776, 777), PackedInt32Array(778, 779, 780), PackedInt32Array(781, 777, 778), PackedInt32Array(778, 780, 781), PackedInt32Array(786, 782, 783), PackedInt32Array(783, 784, 785), PackedInt32Array(785, 786, 783), PackedInt32Array(790, 787, 788), PackedInt32Array(788, 789, 790), PackedInt32Array(794, 791, 792), PackedInt32Array(792, 793, 794), PackedInt32Array(798, 795, 796), PackedInt32Array(796, 797, 798), PackedInt32Array(802, 799, 800), PackedInt32Array(800, 801, 802), PackedInt32Array(806, 803, 804), PackedInt32Array(804, 805, 806), PackedInt32Array(810, 807, 808), PackedInt32Array(808, 809, 810), PackedInt32Array(814, 811, 812), PackedInt32Array(812, 813, 814), PackedInt32Array(818, 815, 816), PackedInt32Array(816, 817, 818), PackedInt32Array(822, 819, 820), PackedInt32Array(820, 821, 822), PackedInt32Array(827, 823, 824), PackedInt32Array(825, 826, 827), PackedInt32Array(827, 824, 825), PackedInt32Array(831, 828, 829), PackedInt32Array(829, 830, 831), PackedInt32Array(835, 832, 833), PackedInt32Array(833, 834, 835), PackedInt32Array(839, 836, 837), PackedInt32Array(837, 838, 839), PackedInt32Array(843, 840, 841), PackedInt32Array(841, 842, 843), PackedInt32Array(847, 844, 845), PackedInt32Array(845, 846, 847), PackedInt32Array(851, 848, 849), PackedInt32Array(849, 850, 851), PackedInt32Array(855, 852, 853), PackedInt32Array(853, 854, 855), PackedInt32Array(859, 856, 857), PackedInt32Array(857, 858, 859), PackedInt32Array(863, 860, 861), PackedInt32Array(861, 862, 863), PackedInt32Array(867, 864, 865), PackedInt32Array(865, 866, 867), PackedInt32Array(873, 868, 869), PackedInt32Array(870, 871, 872), PackedInt32Array(873, 869, 870), PackedInt32Array(870, 872, 873), PackedInt32Array(877, 874, 875), PackedInt32Array(875, 876, 877), PackedInt32Array(881, 878, 879), PackedInt32Array(879, 880, 881), PackedInt32Array(885, 882, 883), PackedInt32Array(883, 884, 885), PackedInt32Array(889, 886, 887), PackedInt32Array(887, 888, 889), PackedInt32Array(895, 890, 891), PackedInt32Array(891, 892, 893), PackedInt32Array(894, 895, 891), PackedInt32Array(891, 893, 894), PackedInt32Array(896, 897, 898), PackedInt32Array(899, 900, 901), PackedInt32Array(896, 898, 899), PackedInt32Array(899, 901, 896), PackedInt32Array(905, 902, 903), PackedInt32Array(903, 904, 905), PackedInt32Array(909, 906, 907), PackedInt32Array(907, 908, 909), PackedInt32Array(913, 910, 911), PackedInt32Array(911, 912, 913), PackedInt32Array(917, 914, 915), PackedInt32Array(915, 916, 917), PackedInt32Array(921, 918, 919), PackedInt32Array(919, 920, 921), PackedInt32Array(925, 922, 923), PackedInt32Array(923, 924, 925), PackedInt32Array(929, 926, 927), PackedInt32Array(927, 928, 929), PackedInt32Array(933, 930, 931), PackedInt32Array(931, 932, 933), PackedInt32Array(937, 934, 935), PackedInt32Array(935, 936, 937), PackedInt32Array(941, 938, 939), PackedInt32Array(939, 940, 941), PackedInt32Array(945, 942, 943), PackedInt32Array(943, 944, 945), PackedInt32Array(949, 946, 947), PackedInt32Array(947, 948, 949), PackedInt32Array(953, 950, 951), PackedInt32Array(951, 952, 953), PackedInt32Array(958, 954, 955), PackedInt32Array(955, 956, 957), PackedInt32Array(957, 958, 955), PackedInt32Array(963, 959, 960), PackedInt32Array(960, 961, 962), PackedInt32Array(962, 963, 960), PackedInt32Array(967, 964, 965), PackedInt32Array(965, 966, 967), PackedInt32Array(972, 968, 969), PackedInt32Array(969, 970, 971), PackedInt32Array(971, 972, 969), PackedInt32Array(977, 973, 974), PackedInt32Array(974, 975, 976), PackedInt32Array(976, 977, 974), PackedInt32Array(981, 978, 979), PackedInt32Array(979, 980, 981), PackedInt32Array(985, 982, 983), PackedInt32Array(983, 984, 985), PackedInt32Array(989, 986, 987), PackedInt32Array(987, 988, 989), PackedInt32Array(993, 990, 991), PackedInt32Array(991, 992, 993), PackedInt32Array(997, 994, 995), PackedInt32Array(995, 996, 997), PackedInt32Array(1001, 998, 999), PackedInt32Array(999, 1000, 1001), PackedInt32Array(1005, 1002, 1003), PackedInt32Array(1003, 1004, 1005), PackedInt32Array(1009, 1006, 1007), PackedInt32Array(1007, 1008, 1009), PackedInt32Array(1013, 1010, 1011), PackedInt32Array(1011, 1012, 1013), PackedInt32Array(1017, 1014, 1015), PackedInt32Array(1015, 1016, 1017), PackedInt32Array(1021, 1018, 1019), PackedInt32Array(1019, 1020, 1021), PackedInt32Array(1025, 1022, 1023), PackedInt32Array(1023, 1024, 1025), PackedInt32Array(1030, 1026, 1027), PackedInt32Array(1027, 1028, 1029), PackedInt32Array(1029, 1030, 1027), PackedInt32Array(1036, 1031, 1032), PackedInt32Array(1032, 1033, 1034), PackedInt32Array(1034, 1035, 1036), PackedInt32Array(1036, 1032, 1034), PackedInt32Array(1040, 1037, 1038), PackedInt32Array(1038, 1039, 1040), PackedInt32Array(1045, 1041, 1042), PackedInt32Array(1042, 1043, 1044), PackedInt32Array(1044, 1045, 1042), PackedInt32Array(1049, 1046, 1047), PackedInt32Array(1047, 1048, 1049), PackedInt32Array(1053, 1050, 1051), PackedInt32Array(1051, 1052, 1053), PackedInt32Array(1057, 1054, 1055), PackedInt32Array(1055, 1056, 1057), PackedInt32Array(1062, 1058, 1059), PackedInt32Array(1059, 1060, 1061), PackedInt32Array(1061, 1062, 1059), PackedInt32Array(1066, 1063, 1064), PackedInt32Array(1064, 1065, 1066), PackedInt32Array(1067, 1068, 1069), PackedInt32Array(1069, 1070, 1071), PackedInt32Array(1071, 1067, 1069), PackedInt32Array(1075, 1072, 1073), PackedInt32Array(1073, 1074, 1075), PackedInt32Array(1079, 1076, 1077), PackedInt32Array(1077, 1078, 1079), PackedInt32Array(1083, 1080, 1081), PackedInt32Array(1081, 1082, 1083), PackedInt32Array(1087, 1084, 1085), PackedInt32Array(1085, 1086, 1087), PackedInt32Array(1092, 1088, 1089), PackedInt32Array(1089, 1090, 1091), PackedInt32Array(1091, 1092, 1089), PackedInt32Array(1093, 1094, 1095), PackedInt32Array(1095, 1096, 1097), PackedInt32Array(1097, 1093, 1095), PackedInt32Array(1101, 1098, 1099), PackedInt32Array(1099, 1100, 1101), PackedInt32Array(1105, 1102, 1103), PackedInt32Array(1103, 1104, 1105), PackedInt32Array(1109, 1106, 1107), PackedInt32Array(1107, 1108, 1109), PackedInt32Array(1113, 1110, 1111), PackedInt32Array(1111, 1112, 1113), PackedInt32Array(1117, 1114, 1115), PackedInt32Array(1115, 1116, 1117), PackedInt32Array(1121, 1118, 1119), PackedInt32Array(1119, 1120, 1121), PackedInt32Array(1125, 1122, 1123), PackedInt32Array(1123, 1124, 1125), PackedInt32Array(1129, 1126, 1127), PackedInt32Array(1127, 1128, 1129), PackedInt32Array(1133, 1130, 1131), PackedInt32Array(1131, 1132, 1133), PackedInt32Array(1137, 1134, 1135), PackedInt32Array(1135, 1136, 1137), PackedInt32Array(1141, 1138, 1139), PackedInt32Array(1139, 1140, 1141), PackedInt32Array(1145, 1142, 1143), PackedInt32Array(1143, 1144, 1145), PackedInt32Array(1149, 1146, 1147), PackedInt32Array(1147, 1148, 1149), PackedInt32Array(1153, 1150, 1151), PackedInt32Array(1151, 1152, 1153), PackedInt32Array(1157, 1154, 1155), PackedInt32Array(1155, 1156, 1157), PackedInt32Array(1161, 1158, 1159), PackedInt32Array(1159, 1160, 1161), PackedInt32Array(1165, 1162, 1163), PackedInt32Array(1163, 1164, 1165), PackedInt32Array(1169, 1166, 1167), PackedInt32Array(1167, 1168, 1169), PackedInt32Array(1173, 1170, 1171), PackedInt32Array(1171, 1172, 1173), PackedInt32Array(1177, 1174, 1175), PackedInt32Array(1175, 1176, 1177), PackedInt32Array(1181, 1178, 1179), PackedInt32Array(1179, 1180, 1181), PackedInt32Array(1185, 1182, 1183), PackedInt32Array(1183, 1184, 1185), PackedInt32Array(1189, 1186, 1187), PackedInt32Array(1187, 1188, 1189), PackedInt32Array(1193, 1190, 1191), PackedInt32Array(1191, 1192, 1193), PackedInt32Array(1197, 1194, 1195), PackedInt32Array(1195, 1196, 1197), PackedInt32Array(1201, 1198, 1199), PackedInt32Array(1199, 1200, 1201), PackedInt32Array(1205, 1202, 1203), PackedInt32Array(1203, 1204, 1205), PackedInt32Array(1209, 1206, 1207), PackedInt32Array(1207, 1208, 1209), PackedInt32Array(1213, 1210, 1211), PackedInt32Array(1211, 1212, 1213), PackedInt32Array(1217, 1214, 1215), PackedInt32Array(1215, 1216, 1217), PackedInt32Array(1221, 1218, 1219), PackedInt32Array(1219, 1220, 1221), PackedInt32Array(1225, 1222, 1223), PackedInt32Array(1223, 1224, 1225), PackedInt32Array(1229, 1226, 1227), PackedInt32Array(1227, 1228, 1229), PackedInt32Array(1233, 1230, 1231), PackedInt32Array(1231, 1232, 1233), PackedInt32Array(1237, 1234, 1235), PackedInt32Array(1235, 1236, 1237), PackedInt32Array(1241, 1238, 1239), PackedInt32Array(1239, 1240, 1241), PackedInt32Array(1245, 1242, 1243), PackedInt32Array(1243, 1244, 1245), PackedInt32Array(1249, 1246, 1247), PackedInt32Array(1247, 1248, 1249), PackedInt32Array(1253, 1250, 1251), PackedInt32Array(1251, 1252, 1253), PackedInt32Array(1257, 1254, 1255), PackedInt32Array(1255, 1256, 1257), PackedInt32Array(1261, 1258, 1259), PackedInt32Array(1259, 1260, 1261), PackedInt32Array(1265, 1262, 1263), PackedInt32Array(1263, 1264, 1265), PackedInt32Array(1269, 1266, 1267), PackedInt32Array(1267, 1268, 1269), PackedInt32Array(1273, 1270, 1271), PackedInt32Array(1271, 1272, 1273), PackedInt32Array(1277, 1274, 1275), PackedInt32Array(1275, 1276, 1277), PackedInt32Array(1281, 1278, 1279), PackedInt32Array(1279, 1280, 1281), PackedInt32Array(1285, 1282, 1283), PackedInt32Array(1283, 1284, 1285), PackedInt32Array(1289, 1286, 1287), PackedInt32Array(1287, 1288, 1289), PackedInt32Array(1293, 1290, 1291), PackedInt32Array(1291, 1292, 1293), PackedInt32Array(1297, 1294, 1295), PackedInt32Array(1295, 1296, 1297), PackedInt32Array(1301, 1298, 1299), PackedInt32Array(1299, 1300, 1301), PackedInt32Array(1305, 1302, 1303), PackedInt32Array(1303, 1304, 1305), PackedInt32Array(1309, 1306, 1307), PackedInt32Array(1307, 1308, 1309), PackedInt32Array(1313, 1310, 1311), PackedInt32Array(1311, 1312, 1313), PackedInt32Array(1317, 1314, 1315), PackedInt32Array(1315, 1316, 1317), PackedInt32Array(1321, 1318, 1319), PackedInt32Array(1319, 1320, 1321), PackedInt32Array(1325, 1322, 1323), PackedInt32Array(1323, 1324, 1325), PackedInt32Array(1329, 1326, 1327), PackedInt32Array(1327, 1328, 1329), PackedInt32Array(1333, 1330, 1331), PackedInt32Array(1331, 1332, 1333), PackedInt32Array(1337, 1334, 1335), PackedInt32Array(1335, 1336, 1337), PackedInt32Array(1341, 1338, 1339), PackedInt32Array(1339, 1340, 1341), PackedInt32Array(1345, 1342, 1343), PackedInt32Array(1343, 1344, 1345), PackedInt32Array(1349, 1346, 1347), PackedInt32Array(1347, 1348, 1349), PackedInt32Array(1354, 1350, 1351), PackedInt32Array(1351, 1352, 1353), PackedInt32Array(1353, 1354, 1351), PackedInt32Array(1358, 1355, 1356), PackedInt32Array(1356, 1357, 1358), PackedInt32Array(1364, 1359, 1360), PackedInt32Array(1360, 1361, 1362), PackedInt32Array(1362, 1363, 1364), PackedInt32Array(1364, 1360, 1362), PackedInt32Array(1367, 1365, 1366), PackedInt32Array(1371, 1368, 1369), PackedInt32Array(1369, 1370, 1371), PackedInt32Array(1375, 1372, 1373), PackedInt32Array(1373, 1374, 1375), PackedInt32Array(1379, 1376, 1377), PackedInt32Array(1377, 1378, 1379), PackedInt32Array(1383, 1380, 1381), PackedInt32Array(1381, 1382, 1383), PackedInt32Array(1387, 1384, 1385), PackedInt32Array(1385, 1386, 1387), PackedInt32Array(1391, 1388, 1389), PackedInt32Array(1389, 1390, 1391), PackedInt32Array(1395, 1392, 1393), PackedInt32Array(1393, 1394, 1395), PackedInt32Array(1399, 1396, 1397), PackedInt32Array(1397, 1398, 1399), PackedInt32Array(1403, 1400, 1401), PackedInt32Array(1401, 1402, 1403), PackedInt32Array(1407, 1404, 1405), PackedInt32Array(1405, 1406, 1407), PackedInt32Array(1412, 1408, 1409), PackedInt32Array(1409, 1410, 1411), PackedInt32Array(1411, 1412, 1409), PackedInt32Array(1413, 1414, 1415), PackedInt32Array(1415, 1416, 1417), PackedInt32Array(1417, 1413, 1415), PackedInt32Array(1421, 1418, 1419), PackedInt32Array(1419, 1420, 1421), PackedInt32Array(1425, 1422, 1423), PackedInt32Array(1423, 1424, 1425), PackedInt32Array(1429, 1426, 1427), PackedInt32Array(1427, 1428, 1429), PackedInt32Array(1433, 1430, 1431), PackedInt32Array(1431, 1432, 1433), PackedInt32Array(1437, 1434, 1435), PackedInt32Array(1435, 1436, 1437), PackedInt32Array(1443, 1438, 1439), PackedInt32Array(1439, 1440, 1441), PackedInt32Array(1441, 1442, 1443), PackedInt32Array(1443, 1439, 1441), PackedInt32Array(1447, 1444, 1445), PackedInt32Array(1445, 1446, 1447), PackedInt32Array(1451, 1448, 1449), PackedInt32Array(1449, 1450, 1451), PackedInt32Array(1455, 1452, 1453), PackedInt32Array(1453, 1454, 1455), PackedInt32Array(1459, 1456, 1457), PackedInt32Array(1457, 1458, 1459), PackedInt32Array(1463, 1460, 1461), PackedInt32Array(1461, 1462, 1463), PackedInt32Array(1469, 1464, 1465), PackedInt32Array(1465, 1466, 1467), PackedInt32Array(1467, 1468, 1469), PackedInt32Array(1469, 1465, 1467), PackedInt32Array(1472, 1470, 1471), PackedInt32Array(1476, 1473, 1474), PackedInt32Array(1474, 1475, 1476), PackedInt32Array(1480, 1477, 1478), PackedInt32Array(1478, 1479, 1480), PackedInt32Array(1484, 1481, 1482), PackedInt32Array(1482, 1483, 1484), PackedInt32Array(1488, 1485, 1486), PackedInt32Array(1486, 1487, 1488), PackedInt32Array(1492, 1489, 1490), PackedInt32Array(1490, 1491, 1492), PackedInt32Array(1496, 1493, 1494), PackedInt32Array(1494, 1495, 1496), PackedInt32Array(1500, 1497, 1498), PackedInt32Array(1498, 1499, 1500), PackedInt32Array(1504, 1501, 1502), PackedInt32Array(1502, 1503, 1504), PackedInt32Array(1509, 1505, 1506), PackedInt32Array(1506, 1507, 1508), PackedInt32Array(1508, 1509, 1506), PackedInt32Array(1514, 1510, 1511), PackedInt32Array(1511, 1512, 1513), PackedInt32Array(1513, 1514, 1511), PackedInt32Array(1518, 1515, 1516), PackedInt32Array(1516, 1517, 1518), PackedInt32Array(1522, 1519, 1520), PackedInt32Array(1520, 1521, 1522), PackedInt32Array(1526, 1523, 1524), PackedInt32Array(1524, 1525, 1526), PackedInt32Array(1530, 1527, 1528), PackedInt32Array(1528, 1529, 1530), PackedInt32Array(1534, 1531, 1532), PackedInt32Array(1532, 1533, 1534), PackedInt32Array(1538, 1535, 1536), PackedInt32Array(1536, 1537, 1538), PackedInt32Array(1542, 1539, 1540), PackedInt32Array(1540, 1541, 1542), PackedInt32Array(1546, 1543, 1544), PackedInt32Array(1544, 1545, 1546), PackedInt32Array(1551, 1547, 1548), PackedInt32Array(1548, 1549, 1550), PackedInt32Array(1550, 1551, 1548), PackedInt32Array(1556, 1552, 1553), PackedInt32Array(1553, 1554, 1555), PackedInt32Array(1555, 1556, 1553), PackedInt32Array(1559, 1557, 1558), PackedInt32Array(1563, 1560, 1561), PackedInt32Array(1561, 1562, 1563), PackedInt32Array(1567, 1564, 1565), PackedInt32Array(1565, 1566, 1567), PackedInt32Array(1571, 1568, 1569), PackedInt32Array(1569, 1570, 1571), PackedInt32Array(1575, 1572, 1573), PackedInt32Array(1573, 1574, 1575), PackedInt32Array(1579, 1576, 1577), PackedInt32Array(1577, 1578, 1579), PackedInt32Array(1582, 1580, 1581), PackedInt32Array(1589, 1583, 1584), PackedInt32Array(1585, 1586, 1587), PackedInt32Array(1587, 1588, 1589), PackedInt32Array(1589, 1584, 1585), PackedInt32Array(1585, 1587, 1589), PackedInt32Array(1593, 1590, 1591), PackedInt32Array(1591, 1592, 1593), PackedInt32Array(1597, 1594, 1595), PackedInt32Array(1595, 1596, 1597), PackedInt32Array(1603, 1598, 1599), PackedInt32Array(1599, 1600, 1601), PackedInt32Array(1601, 1602, 1603), PackedInt32Array(1603, 1599, 1601), PackedInt32Array(1607, 1604, 1605), PackedInt32Array(1605, 1606, 1607), PackedInt32Array(1613, 1608, 1609), PackedInt32Array(1609, 1610, 1611), PackedInt32Array(1611, 1612, 1613), PackedInt32Array(1613, 1609, 1611), PackedInt32Array(1618, 1614, 1615), PackedInt32Array(1615, 1616, 1617), PackedInt32Array(1617, 1618, 1615), PackedInt32Array(1622, 1619, 1620), PackedInt32Array(1620, 1621, 1622)] +bones = ["Bone-0", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-1", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-2", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-3", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-4", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-5", PackedFloat32Array(0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-6", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-7", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-8", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-9", PackedFloat32Array(1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-10", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-11", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-12", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-13", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-14", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-15", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-16", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-17", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-18", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-19", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-20", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-21", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-22", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-23", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-24", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-25", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-26", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-27", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-28", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-29", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-30", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-31", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-32", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-33", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-34", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-35", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-36", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-37", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-38", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-39", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-40", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-41", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-42", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-43", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-44", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-45", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-46", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-47", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-48", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-49", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-50", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-51", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-52", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-53", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-54", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-55", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-56", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-57", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-58", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-59", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-60", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-61", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-62", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-63", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-64", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-65", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-66", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-67", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-68", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-69", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-70", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-71", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-72", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-73", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-74", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-75", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-76", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-77", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-78", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 1, 1, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-79", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-80", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-81", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-82", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0), "Bone-83", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 1, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0), "Bone-84", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1)] +internal_vertex_count = 1527 script = ExtResource("2_2dapw") -vertex_interval = 25 -radius = 22 -total_mass = 5.0 -break_distance_ratio = 1.5 +vertex_interval = 20 +softness = 100.0 +radius = 15 +total_mass = 8.01 +break_distance_ratio = 0.7 rigidbody_scene = ExtResource("3_6ern4") -margin_pixels = -1 -min_area = 0.01 -joint_both_ways = false -max_joint_distance_ratio = 1.3 -damping = 2.0 -rest_length_ratio = 1.1 -length_ratio = 0.1 -softness = 50.0 physics_material_override = ExtResource("3_durpg") [node name="Skeleton2D" type="Skeleton2D" parent="Egg5"] -visible = false -modification_stack = SubResource("SkeletonModificationStack2D_mx50s") +modification_stack = SubResource("SkeletonModificationStack2D_03t0f") [node name="Bone-0" type="Bone2D" parent="Egg5/Skeleton2D"] -position = Vector2(15.3398, 111.011) -scale = Vector2(1, 1) -rest = Transform2D(1, 0, 0, 1, 15.3398, 111.011) +position = Vector2(29.5003, 70.0001) +rotation = 0.852078 +scale = Vector2(1.00001, 1.00001) +rest = Transform2D(0.658505, 0.752577, -0.752577, 0.658505, 29.5, 70) auto_calculate_length_and_angle = false -length = 25.0 +length = 20.0 bone_angle = 0.0 -metadata/vert_owned = [96, 97, 98, 99, 100, 101] -metadata/connected_nodes_paths = [] +metadata/vert_owned = [96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116] +metadata/idx = 0 +metadata/connected_nodes_paths = [NodePath("Bone-1"), NodePath("Bone-3"), NodePath("Bone-4"), NodePath("Bone-2")] +metadata/connected_nodes_idx = [1, 3, 4, 2] +metadata/_local_pose_override_enabled_ = true [node name="Bone-1" type="Bone2D" parent="Egg5/Skeleton2D"] -position = Vector2(35.3187, 60.9629) +position = Vector2(26.0357, 90) scale = Vector2(1, 1) -rest = Transform2D(1, 0, 0, 1, 35.3187, 60.9629) +rest = Transform2D(1, 0, 0, 1, 26.0357, 90) auto_calculate_length_and_angle = false -length = 25.0 +length = 20.0 bone_angle = 0.0 -metadata/vert_owned = [102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113] -metadata/connected_nodes_paths = [] +metadata/vert_owned = [117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140] +metadata/idx = 1 +metadata/connected_nodes_paths = [NodePath("Bone-0"), NodePath("Bone-3"), NodePath("Bone-4"), NodePath("Bone-17"), NodePath("Bone-22")] +metadata/connected_nodes_idx = [0, 3, 4, 17, 22] +metadata/_local_pose_override_enabled_ = true [node name="Bone-2" type="Bone2D" parent="Egg5/Skeleton2D"] -position = Vector2(31.0284, 85.9836) -rotation = -1.40098 -rest = Transform2D(0.169002, -0.985616, 0.985616, 0.169002, 31.0284, 85.9836) +position = Vector2(43.5625, 50) +rotation = 1.40058 +rest = Transform2D(0.169391, 0.985549, -0.985549, 0.169391, 43.5625, 50) auto_calculate_length_and_angle = false -length = 25.0 +length = 20.0 bone_angle = 0.0 -metadata/vert_owned = [114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126] -metadata/connected_nodes_paths = [NodePath("Bone-0"), NodePath("Bone-1")] +metadata/vert_owned = [141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168] +metadata/idx = 2 +metadata/connected_nodes_paths = [NodePath("Bone-5"), NodePath("Bone-0"), NodePath("Bone-3"), NodePath("Bone-6"), NodePath("Bone-7")] +metadata/connected_nodes_idx = [5, 0, 3, 6, 7] metadata/_local_pose_override_enabled_ = true [node name="Bone-3" type="Bone2D" parent="Egg5/Skeleton2D"] -position = Vector2(32.9188, 110.994) -rotation = -1.64624 -scale = Vector2(1, 1) -rest = Transform2D(-0.0753678, -0.997156, 0.997156, -0.0753678, 32.9188, 110.994) +position = Vector2(47, 70) +rotation = -1.74101 +rest = Transform2D(-0.169391, -0.985549, 0.985549, -0.169391, 47, 70) auto_calculate_length_and_angle = false -length = 25.0 +length = 20.0 bone_angle = 0.0 -metadata/vert_owned = [127, 128, 129, 130, 131, 132, 133] -metadata/connected_nodes_paths = [NodePath("Bone-0"), NodePath("Bone-2")] +metadata/vert_owned = [169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184] +metadata/idx = 3 +metadata/connected_nodes_paths = [NodePath("Bone-0"), NodePath("Bone-1"), NodePath("Bone-4"), NodePath("Bone-2"), NodePath("Bone-6"), NodePath("Bone-7"), NodePath("Bone-8")] +metadata/connected_nodes_idx = [0, 1, 4, 2, 6, 7, 8] metadata/_local_pose_override_enabled_ = true [node name="Bone-4" type="Bone2D" parent="Egg5/Skeleton2D"] -position = Vector2(64.5571, 19.2604) +position = Vector2(47, 90) +rotation = 1.5708 scale = Vector2(1, 1) -rest = Transform2D(1, 0, 0, 1, 64.5571, 19.2604) +rest = Transform2D(1.94707e-07, 1, -1, 1.94707e-07, 47, 90) auto_calculate_length_and_angle = false -length = 25.0 +length = 20.0 bone_angle = 0.0 -metadata/vert_owned = [134, 135, 136, 137, 138] -metadata/connected_nodes_paths = [] +metadata/vert_owned = [185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200] +metadata/idx = 4 +metadata/connected_nodes_paths = [NodePath("Bone-0"), NodePath("Bone-1"), NodePath("Bone-3"), NodePath("Bone-17"), NodePath("Bone-22"), NodePath("Bone-7"), NodePath("Bone-8"), NodePath("Bone-27")] +metadata/connected_nodes_idx = [0, 1, 3, 17, 22, 7, 8, 27] +metadata/_local_pose_override_enabled_ = true [node name="Bone-5" type="Bone2D" parent="Egg5/Skeleton2D"] -position = Vector2(54.12, 36.0249) -rotation = -1.01395 +position = Vector2(60, 26.1666) +rotation = 0.141036 scale = Vector2(1, 1) -rest = Transform2D(0.528516, -0.848924, 0.848924, 0.528516, 54.12, 36.0249) +rest = Transform2D(0.990071, 0.140569, -0.140569, 0.990071, 60, 26.1667) auto_calculate_length_and_angle = false -length = 25.0 +length = 20.0 bone_angle = 0.0 -metadata/vert_owned = [139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153] -metadata/connected_nodes_paths = [NodePath("Bone-1"), NodePath("Bone-4")] +metadata/vert_owned = [201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244] +metadata/idx = 5 +metadata/connected_nodes_paths = [NodePath("Bone-2"), NodePath("Bone-6"), NodePath("Bone-10"), NodePath("Bone-11"), NodePath("Bone-9")] +metadata/connected_nodes_idx = [2, 6, 10, 11, 9] metadata/_local_pose_override_enabled_ = true [node name="Bone-6" type="Bone2D" parent="Egg5/Skeleton2D"] -position = Vector2(58.0856, 61.1245) -rotation = -1.41743 -scale = Vector2(1, 1) -rest = Transform2D(0.15277, -0.988262, 0.988262, 0.15277, 58.0856, 61.1244) +position = Vector2(67, 50) +rotation = -1.85647 +rest = Transform2D(-0.281803, -0.959472, 0.959472, -0.281803, 67, 50) auto_calculate_length_and_angle = false -length = 25.0 +length = 20.0 bone_angle = 0.0 -metadata/vert_owned = [154, 155, 156, 157, 158, 159] -metadata/connected_nodes_paths = [NodePath("Bone-1"), NodePath("Bone-2"), NodePath("Bone-4"), NodePath("Bone-5")] +metadata/vert_owned = [245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260] +metadata/idx = 6 +metadata/connected_nodes_paths = [NodePath("Bone-2"), NodePath("Bone-3"), NodePath("Bone-7"), NodePath("Bone-5"), NodePath("Bone-10"), NodePath("Bone-11"), NodePath("Bone-12")] +metadata/connected_nodes_idx = [2, 3, 7, 5, 10, 11, 12] metadata/_local_pose_override_enabled_ = true [node name="Bone-7" type="Bone2D" parent="Egg5/Skeleton2D"] -position = Vector2(58.0464, 86.0714) -rotation = 2.36029 -rest = Transform2D(-0.709993, 0.704208, -0.704208, -0.709993, 58.0464, 86.0714) +position = Vector2(67, 70) +rotation = 1.5708 +scale = Vector2(1, 1) +rest = Transform2D(-4.37114e-08, 1, -1, -4.37114e-08, 67, 70) auto_calculate_length_and_angle = false -length = 25.0 +length = 20.0 bone_angle = 0.0 -metadata/vert_owned = [160, 161, 162, 163, 164] -metadata/connected_nodes_paths = [NodePath("Bone-1"), NodePath("Bone-2"), NodePath("Bone-3"), NodePath("Bone-6")] +metadata/vert_owned = [261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276] +metadata/idx = 7 +metadata/connected_nodes_paths = [NodePath("Bone-2"), NodePath("Bone-3"), NodePath("Bone-6"), NodePath("Bone-4"), NodePath("Bone-8"), NodePath("Bone-11"), NodePath("Bone-12"), NodePath("Bone-13")] +metadata/connected_nodes_idx = [2, 3, 6, 4, 8, 11, 12, 13] metadata/_local_pose_override_enabled_ = true [node name="Bone-8" type="Bone2D" parent="Egg5/Skeleton2D"] -position = Vector2(57.9561, 111.034) -rotation = -3.13999 -rest = Transform2D(-0.999999, -0.00159922, 0.00159922, -0.999999, 57.9561, 111.034) +position = Vector2(67, 90.0001) +rotation = 1.5708 +scale = Vector2(1, 1) +rest = Transform2D(-4.37114e-08, 1, -1, -4.37114e-08, 67, 90) auto_calculate_length_and_angle = false -length = 25.0 +length = 20.0 bone_angle = 0.0 -metadata/vert_owned = [165, 166, 167, 168, 169] -metadata/connected_nodes_paths = [NodePath("Bone-0"), NodePath("Bone-2"), NodePath("Bone-3"), NodePath("Bone-7")] +metadata/vert_owned = [277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292] +metadata/idx = 8 +metadata/connected_nodes_paths = [NodePath("Bone-3"), NodePath("Bone-4"), NodePath("Bone-7"), NodePath("Bone-22"), NodePath("Bone-27"), NodePath("Bone-12"), NodePath("Bone-13"), NodePath("Bone-32")] +metadata/connected_nodes_idx = [3, 4, 7, 22, 27, 12, 13, 32] metadata/_local_pose_override_enabled_ = true [node name="Bone-9" type="Bone2D" parent="Egg5/Skeleton2D"] -position = Vector2(83.0061, 17.3472) -rotation = 2.56761 +position = Vector2(87, 15) +rotation = 2.74944 scale = Vector2(1, 1) -rest = Transform2D(-0.839746, 0.54298, -0.54298, -0.839746, 83.0061, 17.3472) +rest = Transform2D(-0.924087, 0.382183, -0.382183, -0.924087, 87, 15) auto_calculate_length_and_angle = false -length = 25.0 +length = 20.0 bone_angle = 0.0 -metadata/vert_owned = [170, 171, 172, 173, 174, 175, 176, 177, 178, 179] -metadata/connected_nodes_paths = [NodePath("Bone-4"), NodePath("Bone-5")] +metadata/vert_owned = [293, 294, 295, 296, 297, 298, 299, 300, 301, 302] +metadata/idx = 9 +metadata/connected_nodes_paths = [NodePath("Bone-45"), NodePath("Bone-5"), NodePath("Bone-10")] +metadata/connected_nodes_idx = [45, 5, 10] metadata/_local_pose_override_enabled_ = true [node name="Bone-10" type="Bone2D" parent="Egg5/Skeleton2D"] -position = Vector2(83.141, 36.1373) -rotation = 2.35756 -rest = Transform2D(-0.708071, 0.706142, -0.706142, -0.708071, 83.141, 36.1372) +position = Vector2(87, 30.0001) +rotation = -1.5708 +rest = Transform2D(-5.20549e-07, -1, 1, -5.20549e-07, 87, 30) auto_calculate_length_and_angle = false -length = 25.0 +length = 20.0 bone_angle = 0.0 -metadata/vert_owned = [180, 181, 182, 183, 184] -metadata/connected_nodes_paths = [NodePath("Bone-4"), NodePath("Bone-5"), NodePath("Bone-6"), NodePath("Bone-9")] +metadata/vert_owned = [303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318] +metadata/idx = 10 +metadata/connected_nodes_paths = [NodePath("Bone-5"), NodePath("Bone-6"), NodePath("Bone-11"), NodePath("Bone-9"), NodePath("Bone-45"), NodePath("Bone-46")] +metadata/connected_nodes_idx = [5, 6, 11, 9, 45, 46] metadata/_local_pose_override_enabled_ = true [node name="Bone-11" type="Bone2D" parent="Egg5/Skeleton2D"] -position = Vector2(83.0207, 61.0943) -rotation = 2.35614 +position = Vector2(87, 50) +rotation = 1.5708 scale = Vector2(1, 1) -rest = Transform2D(-0.707066, 0.707147, -0.707147, -0.707066, 83.0207, 61.0943) +rest = Transform2D(-4.37114e-08, 1, -1, -4.37114e-08, 87, 50) auto_calculate_length_and_angle = false -length = 25.0 +length = 20.0 bone_angle = 0.0 -metadata/vert_owned = [185, 186, 187, 188, 189] -metadata/connected_nodes_paths = [NodePath("Bone-4"), NodePath("Bone-5"), NodePath("Bone-6"), NodePath("Bone-7"), NodePath("Bone-9"), NodePath("Bone-10")] +metadata/vert_owned = [319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334] +metadata/idx = 11 +metadata/connected_nodes_paths = [NodePath("Bone-5"), NodePath("Bone-6"), NodePath("Bone-10"), NodePath("Bone-7"), NodePath("Bone-12"), NodePath("Bone-45"), NodePath("Bone-46"), NodePath("Bone-47")] +metadata/connected_nodes_idx = [5, 6, 10, 7, 12, 45, 46, 47] metadata/_local_pose_override_enabled_ = true [node name="Bone-12" type="Bone2D" parent="Egg5/Skeleton2D"] -position = Vector2(83.1334, 86.0311) -rotation = 2.35966 +position = Vector2(87, 70) +rotation = 1.5708 scale = Vector2(1, 1) -rest = Transform2D(-0.709555, 0.70465, -0.70465, -0.709555, 83.1334, 86.031) +rest = Transform2D(4.33126e-07, 1, -1, 4.33126e-07, 87, 70) auto_calculate_length_and_angle = false -length = 25.0 +length = 20.0 bone_angle = 0.0 -metadata/vert_owned = [190, 191, 192, 193, 194, 195, 196] -metadata/connected_nodes_paths = [NodePath("Bone-6"), NodePath("Bone-7"), NodePath("Bone-8"), NodePath("Bone-11")] +metadata/vert_owned = [335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350] +metadata/idx = 12 +metadata/connected_nodes_paths = [NodePath("Bone-6"), NodePath("Bone-7"), NodePath("Bone-11"), NodePath("Bone-8"), NodePath("Bone-13"), NodePath("Bone-46"), NodePath("Bone-47"), NodePath("Bone-48")] +metadata/connected_nodes_idx = [6, 7, 11, 8, 13, 46, 47, 48] metadata/_local_pose_override_enabled_ = true [node name="Bone-13" type="Bone2D" parent="Egg5/Skeleton2D"] -position = Vector2(83.0098, 110.984) -rotation = 3.13958 -rest = Transform2D(-0.999998, 0.00201717, -0.00201717, -0.999998, 83.0098, 110.984) +position = Vector2(87, 90) +rotation = 1.5708 +scale = Vector2(1, 1) +rest = Transform2D(-4.37114e-08, 1, -1, -4.37114e-08, 87, 90) auto_calculate_length_and_angle = false -length = 25.0 +length = 20.0 bone_angle = 0.0 -metadata/vert_owned = [197, 198, 199, 200, 201, 202] -metadata/connected_nodes_paths = [NodePath("Bone-7"), NodePath("Bone-8"), NodePath("Bone-12")] +metadata/vert_owned = [351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366] +metadata/idx = 13 +metadata/connected_nodes_paths = [NodePath("Bone-7"), NodePath("Bone-8"), NodePath("Bone-12"), NodePath("Bone-27"), NodePath("Bone-32"), NodePath("Bone-47"), NodePath("Bone-48"), NodePath("Bone-57")] +metadata/connected_nodes_idx = [7, 8, 12, 27, 32, 47, 48, 57] metadata/_local_pose_override_enabled_ = true [node name="Bone-14" type="Bone2D" parent="Egg5/Skeleton2D"] -position = Vector2(110.412, 17.3095) -rotation = 3.14022 -rest = Transform2D(-0.999999, 0.00137177, -0.00137177, -0.999999, 110.412, 17.3095) +position = Vector2(12, 130) +scale = Vector2(1, 1) +rest = Transform2D(1, 0, 0, 1, 12, 130) auto_calculate_length_and_angle = false -length = 25.0 +length = 20.0 bone_angle = 0.0 -metadata/vert_owned = [203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216] -metadata/connected_nodes_paths = [NodePath("Bone-4"), NodePath("Bone-9"), NodePath("Bone-10")] +metadata/vert_owned = [367, 368, 369, 370, 371, 372, 373, 374, 375] +metadata/idx = 14 +metadata/connected_nodes_paths = [NodePath("Bone-17"), NodePath("Bone-15"), NodePath("Bone-18"), NodePath("Bone-19")] +metadata/connected_nodes_idx = [17, 15, 18, 19] metadata/_local_pose_override_enabled_ = true [node name="Bone-15" type="Bone2D" parent="Egg5/Skeleton2D"] -position = Vector2(108.072, 35.9963) -rotation = 2.35527 +position = Vector2(12, 150) scale = Vector2(1, 1) -rest = Transform2D(-0.706453, 0.70776, -0.70776, -0.706453, 108.072, 35.9963) +rest = Transform2D(1, 0, 0, 1, 12, 150) auto_calculate_length_and_angle = false -length = 25.0 +length = 20.0 bone_angle = 0.0 -metadata/vert_owned = [217, 218, 219, 220, 221, 222, 223] -metadata/connected_nodes_paths = [NodePath("Bone-9"), NodePath("Bone-10"), NodePath("Bone-11"), NodePath("Bone-14")] +metadata/vert_owned = [376, 377, 378, 379, 380, 381, 382, 383] +metadata/idx = 15 +metadata/connected_nodes_paths = [NodePath("Bone-14"), NodePath("Bone-18"), NodePath("Bone-19"), NodePath("Bone-16"), NodePath("Bone-20")] +metadata/connected_nodes_idx = [14, 18, 19, 16, 20] metadata/_local_pose_override_enabled_ = true [node name="Bone-16" type="Bone2D" parent="Egg5/Skeleton2D"] -position = Vector2(107.991, 61.0896) -rotation = 2.35452 -scale = Vector2(1, 1) -rest = Transform2D(-0.705919, 0.708292, -0.708292, -0.705919, 107.991, 61.0896) +position = Vector2(12, 170) +rotation = -0.927298 +rest = Transform2D(0.599998, -0.800002, 0.800002, 0.599998, 12, 170) auto_calculate_length_and_angle = false -length = 25.0 +length = 20.0 bone_angle = 0.0 -metadata/vert_owned = [224, 225, 226, 227, 228, 229, 230] -metadata/connected_nodes_paths = [NodePath("Bone-10"), NodePath("Bone-11"), NodePath("Bone-12"), NodePath("Bone-14"), NodePath("Bone-15")] +metadata/vert_owned = [384, 385, 386, 387, 388, 389, 390, 391] +metadata/idx = 16 +metadata/connected_nodes_paths = [NodePath("Bone-21"), NodePath("Bone-15"), NodePath("Bone-19"), NodePath("Bone-20")] +metadata/connected_nodes_idx = [21, 15, 19, 20] metadata/_local_pose_override_enabled_ = true [node name="Bone-17" type="Bone2D" parent="Egg5/Skeleton2D"] -position = Vector2(108.12, 86.122) -rotation = 2.36116 +position = Vector2(23.4211, 110) scale = Vector2(1, 1) -rest = Transform2D(-0.710612, 0.703584, -0.703584, -0.710612, 108.12, 86.122) +rest = Transform2D(1, 5.17709e-06, -5.17709e-06, 1, 23.4211, 110) auto_calculate_length_and_angle = false -length = 25.0 +length = 20.0 bone_angle = 0.0 -metadata/vert_owned = [231, 232, 233, 234, 235] -metadata/connected_nodes_paths = [NodePath("Bone-11"), NodePath("Bone-12"), NodePath("Bone-13"), NodePath("Bone-16")] +metadata/vert_owned = [392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417] +metadata/idx = 17 +metadata/connected_nodes_paths = [NodePath("Bone-14"), NodePath("Bone-1"), NodePath("Bone-4"), NodePath("Bone-22"), NodePath("Bone-18"), NodePath("Bone-23")] +metadata/connected_nodes_idx = [14, 1, 4, 22, 18, 23] metadata/_local_pose_override_enabled_ = true [node name="Bone-18" type="Bone2D" parent="Egg5/Skeleton2D"] -position = Vector2(108.04, 111.175) -rotation = -3.13394 -rest = Transform2D(-0.999971, -0.00765164, 0.00765164, -0.999971, 108.04, 111.175) +position = Vector2(27, 130) +rotation = -1.74787 +scale = Vector2(1, 1) +rest = Transform2D(-0.176148, -0.984364, 0.984364, -0.176148, 27, 130) auto_calculate_length_and_angle = false -length = 25.0 +length = 20.0 bone_angle = 0.0 -metadata/vert_owned = [236, 237, 238, 239, 240, 241, 242] -metadata/connected_nodes_paths = [NodePath("Bone-12"), NodePath("Bone-13"), NodePath("Bone-17")] +metadata/vert_owned = [418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433] +metadata/idx = 18 +metadata/connected_nodes_paths = [NodePath("Bone-14"), NodePath("Bone-15"), NodePath("Bone-19"), NodePath("Bone-17"), NodePath("Bone-22"), NodePath("Bone-23"), NodePath("Bone-24")] +metadata/connected_nodes_idx = [14, 15, 19, 17, 22, 23, 24] metadata/_local_pose_override_enabled_ = true [node name="Bone-19" type="Bone2D" parent="Egg5/Skeleton2D"] -position = Vector2(14.2099, 136.046) -rotation = -0.929335 +position = Vector2(27, 150) +rotation = 1.5708 scale = Vector2(1, 1) -rest = Transform2D(0.598367, -0.801222, 0.801222, 0.598367, 14.2099, 136.046) +rest = Transform2D(-4.37114e-08, 1, -1, -4.37114e-08, 27, 150) auto_calculate_length_and_angle = false -length = 25.0 +length = 20.0 bone_angle = 0.0 -metadata/vert_owned = [243, 244, 245, 246, 247, 248, 249] -metadata/connected_nodes_paths = [NodePath("Bone-0"), NodePath("Bone-3")] +metadata/vert_owned = [434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449] +metadata/idx = 19 +metadata/connected_nodes_paths = [NodePath("Bone-14"), NodePath("Bone-15"), NodePath("Bone-18"), NodePath("Bone-16"), NodePath("Bone-20"), NodePath("Bone-23"), NodePath("Bone-24"), NodePath("Bone-25")] +metadata/connected_nodes_idx = [14, 15, 18, 16, 20, 23, 24, 25] metadata/_local_pose_override_enabled_ = true [node name="Bone-20" type="Bone2D" parent="Egg5/Skeleton2D"] -position = Vector2(14.3345, 161.133) -rotation = -1.57576 -rest = Transform2D(-0.00496628, -0.999988, 0.999988, -0.00496628, 14.3345, 161.133) +position = Vector2(27, 170) +rotation = 1.74889 +scale = Vector2(1, 1) +rest = Transform2D(-0.177153, 0.984183, -0.984183, -0.177153, 27, 170) auto_calculate_length_and_angle = false -length = 25.0 +length = 20.0 bone_angle = 0.0 -metadata/vert_owned = [250, 251, 252, 253, 254, 255] -metadata/connected_nodes_paths = [NodePath("Bone-19")] +metadata/vert_owned = [450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465] +metadata/idx = 20 +metadata/connected_nodes_paths = [NodePath("Bone-15"), NodePath("Bone-16"), NodePath("Bone-19"), NodePath("Bone-21"), NodePath("Bone-24"), NodePath("Bone-25"), NodePath("Bone-26")] +metadata/connected_nodes_idx = [15, 16, 19, 21, 24, 25, 26] metadata/_local_pose_override_enabled_ = true [node name="Bone-21" type="Bone2D" parent="Egg5/Skeleton2D"] -position = Vector2(15.0426, 189.577) -rotation = -1.59569 +position = Vector2(23.4, 190) scale = Vector2(1, 1) -rest = Transform2D(-0.0248885, -0.99969, 0.99969, -0.0248885, 15.0426, 189.577) +rest = Transform2D(1, 0, 0, 1, 23.4, 190) auto_calculate_length_and_angle = false -length = 25.0 +length = 20.0 bone_angle = 0.0 -metadata/vert_owned = [256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267] -metadata/connected_nodes_paths = [NodePath("Bone-20")] +metadata/vert_owned = [466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490] +metadata/idx = 21 +metadata/connected_nodes_paths = [NodePath("Bone-16"), NodePath("Bone-20"), NodePath("Bone-25"), NodePath("Bone-26"), NodePath("Bone-37"), NodePath("Bone-38")] +metadata/connected_nodes_idx = [16, 20, 25, 26, 37, 38] metadata/_local_pose_override_enabled_ = true [node name="Bone-22" type="Bone2D" parent="Egg5/Skeleton2D"] -position = Vector2(32.9935, 136.048) -rotation = -0.786429 +position = Vector2(47, 110) scale = Vector2(1, 1) -rest = Transform2D(0.706377, -0.707835, 0.707835, 0.706377, 32.9935, 136.048) +rest = Transform2D(1, -6.10352e-06, 6.10352e-06, 1, 47, 110) auto_calculate_length_and_angle = false -length = 25.0 +length = 20.0 bone_angle = 0.0 -metadata/vert_owned = [268, 269, 270, 271, 272] -metadata/connected_nodes_paths = [NodePath("Bone-0"), NodePath("Bone-3"), NodePath("Bone-8"), NodePath("Bone-19"), NodePath("Bone-20")] +metadata/vert_owned = [491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506] +metadata/idx = 22 +metadata/connected_nodes_paths = [NodePath("Bone-1"), NodePath("Bone-4"), NodePath("Bone-17"), NodePath("Bone-8"), NodePath("Bone-27"), NodePath("Bone-18"), NodePath("Bone-23"), NodePath("Bone-28")] +metadata/connected_nodes_idx = [1, 4, 17, 8, 27, 18, 23, 28] metadata/_local_pose_override_enabled_ = true [node name="Bone-23" type="Bone2D" parent="Egg5/Skeleton2D"] -position = Vector2(32.9029, 160.983) -rotation = 2.12912 +position = Vector2(47, 130) +rotation = 1.5708 scale = Vector2(1, 1) -rest = Transform2D(-0.529764, 0.848145, -0.848145, -0.529764, 32.9029, 160.983) +rest = Transform2D(-4.37114e-08, 1, -1, -4.37114e-08, 47, 130) auto_calculate_length_and_angle = false -length = 25.0 +length = 20.0 bone_angle = 0.0 -metadata/vert_owned = [273, 274, 275, 276, 277] -metadata/connected_nodes_paths = [NodePath("Bone-19"), NodePath("Bone-20"), NodePath("Bone-21"), NodePath("Bone-22")] +metadata/vert_owned = [507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522] +metadata/idx = 23 +metadata/connected_nodes_paths = [NodePath("Bone-17"), NodePath("Bone-18"), NodePath("Bone-22"), NodePath("Bone-19"), NodePath("Bone-24"), NodePath("Bone-27"), NodePath("Bone-28"), NodePath("Bone-29")] +metadata/connected_nodes_idx = [17, 18, 22, 19, 24, 27, 28, 29] metadata/_local_pose_override_enabled_ = true [node name="Bone-24" type="Bone2D" parent="Egg5/Skeleton2D"] -position = Vector2(32.9236, 186.016) -rotation = 2.94502 -rest = Transform2D(-0.980742, 0.19531, -0.19531, -0.980742, 32.9236, 186.016) +position = Vector2(47, 150) +rotation = 1.5708 +scale = Vector2(1, 1) +rest = Transform2D(-4.37114e-08, 1, -1, -4.37114e-08, 47, 150) auto_calculate_length_and_angle = false -length = 25.0 +length = 20.0 bone_angle = 0.0 -metadata/vert_owned = [278, 279, 280, 281, 282, 283, 284] -metadata/connected_nodes_paths = [NodePath("Bone-20"), NodePath("Bone-21"), NodePath("Bone-23")] +metadata/vert_owned = [523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538] +metadata/idx = 24 +metadata/connected_nodes_paths = [NodePath("Bone-18"), NodePath("Bone-19"), NodePath("Bone-23"), NodePath("Bone-20"), NodePath("Bone-25"), NodePath("Bone-28"), NodePath("Bone-29"), NodePath("Bone-30")] +metadata/connected_nodes_idx = [18, 19, 23, 20, 25, 28, 29, 30] metadata/_local_pose_override_enabled_ = true [node name="Bone-25" type="Bone2D" parent="Egg5/Skeleton2D"] -position = Vector2(33.0177, 214.427) -rotation = -1.57411 -rest = Transform2D(-0.00331286, -0.999995, 0.999995, -0.00331286, 33.0177, 214.427) +position = Vector2(47, 170) +rotation = 1.5708 +scale = Vector2(1, 1) +rest = Transform2D(1.94707e-07, 1, -1, 1.94707e-07, 47, 170) auto_calculate_length_and_angle = false -length = 25.0 +length = 20.0 bone_angle = 0.0 -metadata/vert_owned = [285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301] -metadata/connected_nodes_paths = [NodePath("Bone-21"), NodePath("Bone-24")] +metadata/vert_owned = [539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554] +metadata/idx = 25 +metadata/connected_nodes_paths = [NodePath("Bone-19"), NodePath("Bone-20"), NodePath("Bone-24"), NodePath("Bone-21"), NodePath("Bone-26"), NodePath("Bone-29"), NodePath("Bone-30"), NodePath("Bone-31")] +metadata/connected_nodes_idx = [19, 20, 24, 21, 26, 29, 30, 31] metadata/_local_pose_override_enabled_ = true [node name="Bone-26" type="Bone2D" parent="Egg5/Skeleton2D"] -position = Vector2(58.0225, 136.016) -rotation = 3.14092 +position = Vector2(47, 190) +rotation = 1.5708 scale = Vector2(1, 1) -rest = Transform2D(-1, 0.000677021, -0.000677021, -1, 58.0225, 136.016) +rest = Transform2D(-4.01339e-07, 1, -1, -4.01339e-07, 47, 190) auto_calculate_length_and_angle = false -length = 25.0 +length = 20.0 bone_angle = 0.0 -metadata/vert_owned = [302, 303, 304, 305, 306, 307, 308] -metadata/connected_nodes_paths = [NodePath("Bone-3"), NodePath("Bone-8"), NodePath("Bone-13"), NodePath("Bone-19"), NodePath("Bone-22"), NodePath("Bone-23")] +metadata/vert_owned = [555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570] +metadata/idx = 26 +metadata/connected_nodes_paths = [NodePath("Bone-20"), NodePath("Bone-21"), NodePath("Bone-25"), NodePath("Bone-37"), NodePath("Bone-38"), NodePath("Bone-30"), NodePath("Bone-31"), NodePath("Bone-40")] +metadata/connected_nodes_idx = [20, 21, 25, 37, 38, 30, 31, 40] metadata/_local_pose_override_enabled_ = true [node name="Bone-27" type="Bone2D" parent="Egg5/Skeleton2D"] -position = Vector2(57.8146, 160.917) -rotation = 3.13896 -rest = Transform2D(-0.999997, 0.00263134, -0.00263134, -0.999997, 57.8146, 160.917) +position = Vector2(67, 110) +scale = Vector2(1, 1) +rest = Transform2D(1, 6.10351e-06, -6.10351e-06, 1, 67, 110) auto_calculate_length_and_angle = false -length = 25.0 +length = 20.0 bone_angle = 0.0 -metadata/vert_owned = [309, 310, 311, 312, 313, 314] -metadata/connected_nodes_paths = [NodePath("Bone-20"), NodePath("Bone-22"), NodePath("Bone-23"), NodePath("Bone-24"), NodePath("Bone-26")] +metadata/vert_owned = [571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586] +metadata/idx = 27 +metadata/connected_nodes_paths = [NodePath("Bone-4"), NodePath("Bone-8"), NodePath("Bone-22"), NodePath("Bone-13"), NodePath("Bone-32"), NodePath("Bone-23"), NodePath("Bone-28"), NodePath("Bone-33")] +metadata/connected_nodes_idx = [4, 8, 22, 13, 32, 23, 28, 33] metadata/_local_pose_override_enabled_ = true [node name="Bone-28" type="Bone2D" parent="Egg5/Skeleton2D"] -position = Vector2(57.9235, 186.082) -rotation = -3.13894 -rest = Transform2D(-0.999996, -0.00265136, 0.00265136, -0.999996, 57.9235, 186.082) +position = Vector2(67, 130) +rotation = 1.5708 +scale = Vector2(1, 1) +rest = Transform2D(-4.01339e-07, 1, -1, -4.01339e-07, 67, 130) auto_calculate_length_and_angle = false -length = 25.0 +length = 20.0 bone_angle = 0.0 -metadata/vert_owned = [315, 316, 317, 318, 319, 320] -metadata/connected_nodes_paths = [NodePath("Bone-21"), NodePath("Bone-23"), NodePath("Bone-24"), NodePath("Bone-25"), NodePath("Bone-27")] +metadata/vert_owned = [587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602] +metadata/idx = 28 +metadata/connected_nodes_paths = [NodePath("Bone-22"), NodePath("Bone-23"), NodePath("Bone-27"), NodePath("Bone-24"), NodePath("Bone-29"), NodePath("Bone-32"), NodePath("Bone-33"), NodePath("Bone-34")] +metadata/connected_nodes_idx = [22, 23, 27, 24, 29, 32, 33, 34] metadata/_local_pose_override_enabled_ = true [node name="Bone-29" type="Bone2D" parent="Egg5/Skeleton2D"] -position = Vector2(57.9516, 211.082) -rotation = 3.00822 +position = Vector2(67, 150) +rotation = 1.5708 scale = Vector2(1, 1) -rest = Transform2D(-0.991119, 0.132977, -0.132977, -0.991119, 57.9516, 211.082) +rest = Transform2D(-4.37114e-08, 1, -1, -4.37114e-08, 67, 150) auto_calculate_length_and_angle = false -length = 25.0 +length = 20.0 bone_angle = 0.0 -metadata/vert_owned = [321, 322, 323, 324, 325] -metadata/connected_nodes_paths = [NodePath("Bone-24"), NodePath("Bone-25"), NodePath("Bone-28")] +metadata/vert_owned = [603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618] +metadata/idx = 29 +metadata/connected_nodes_paths = [NodePath("Bone-23"), NodePath("Bone-24"), NodePath("Bone-28"), NodePath("Bone-25"), NodePath("Bone-30"), NodePath("Bone-33"), NodePath("Bone-34"), NodePath("Bone-35")] +metadata/connected_nodes_idx = [23, 24, 28, 25, 30, 33, 34, 35] metadata/_local_pose_override_enabled_ = true [node name="Bone-30" type="Bone2D" parent="Egg5/Skeleton2D"] -position = Vector2(57.9319, 233.37) -rotation = -1.56991 -rest = Transform2D(0.000886516, -1, 1, 0.000886516, 57.9319, 233.37) +position = Vector2(67, 170) +rotation = 1.5708 +scale = Vector2(1, 1) +rest = Transform2D(-4.37114e-08, 1, -1, -4.37114e-08, 67, 170) auto_calculate_length_and_angle = false -length = 25.0 +length = 20.0 bone_angle = 0.0 -metadata/vert_owned = [326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337] -metadata/connected_nodes_paths = [NodePath("Bone-25"), NodePath("Bone-29")] +metadata/vert_owned = [619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634] +metadata/idx = 30 +metadata/connected_nodes_paths = [NodePath("Bone-24"), NodePath("Bone-25"), NodePath("Bone-29"), NodePath("Bone-26"), NodePath("Bone-31"), NodePath("Bone-34"), NodePath("Bone-35"), NodePath("Bone-36")] +metadata/connected_nodes_idx = [24, 25, 29, 26, 31, 34, 35, 36] metadata/_local_pose_override_enabled_ = true [node name="Bone-31" type="Bone2D" parent="Egg5/Skeleton2D"] -position = Vector2(82.9466, 136.068) -rotation = -0.781366 -rest = Transform2D(0.709952, -0.70425, 0.70425, 0.709952, 82.9466, 136.068) +position = Vector2(67, 190) +rotation = 1.5708 +scale = Vector2(1, 1) +rest = Transform2D(4.33126e-07, 1, -1, 4.33126e-07, 67, 190) auto_calculate_length_and_angle = false -length = 25.0 +length = 20.0 bone_angle = 0.0 -metadata/vert_owned = [338, 339, 340, 341, 342] -metadata/connected_nodes_paths = [NodePath("Bone-8"), NodePath("Bone-13"), NodePath("Bone-18"), NodePath("Bone-26"), NodePath("Bone-27")] +metadata/vert_owned = [635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650] +metadata/idx = 31 +metadata/connected_nodes_paths = [NodePath("Bone-25"), NodePath("Bone-26"), NodePath("Bone-30"), NodePath("Bone-38"), NodePath("Bone-40"), NodePath("Bone-35"), NodePath("Bone-36"), NodePath("Bone-42")] +metadata/connected_nodes_idx = [25, 26, 30, 38, 40, 35, 36, 42] metadata/_local_pose_override_enabled_ = true [node name="Bone-32" type="Bone2D" parent="Egg5/Skeleton2D"] -position = Vector2(82.8641, 161.08) -rotation = 2.35496 +position = Vector2(87, 110) scale = Vector2(1, 1) -rest = Transform2D(-0.706234, 0.707978, -0.707978, -0.706234, 82.8641, 161.08) +rest = Transform2D(1, -6.10352e-06, 6.10352e-06, 1, 87, 110) auto_calculate_length_and_angle = false -length = 25.0 +length = 20.0 bone_angle = 0.0 -metadata/vert_owned = [343, 344, 345, 346, 347, 348, 349, 350] -metadata/connected_nodes_paths = [NodePath("Bone-26"), NodePath("Bone-27"), NodePath("Bone-28"), NodePath("Bone-31")] +metadata/vert_owned = [651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666] +metadata/idx = 32 +metadata/connected_nodes_paths = [NodePath("Bone-8"), NodePath("Bone-13"), NodePath("Bone-27"), NodePath("Bone-48"), NodePath("Bone-57"), NodePath("Bone-28"), NodePath("Bone-33"), NodePath("Bone-58")] +metadata/connected_nodes_idx = [8, 13, 27, 48, 57, 28, 33, 58] metadata/_local_pose_override_enabled_ = true [node name="Bone-33" type="Bone2D" parent="Egg5/Skeleton2D"] -position = Vector2(82.9051, 186.061) -rotation = 2.35484 +position = Vector2(87, 130) +rotation = 1.5708 scale = Vector2(1, 1) -rest = Transform2D(-0.706152, 0.708061, -0.708061, -0.706152, 82.9051, 186.061) +rest = Transform2D(-4.37114e-08, 1, -1, -4.37114e-08, 87, 130) auto_calculate_length_and_angle = false -length = 25.0 +length = 20.0 bone_angle = 0.0 -metadata/vert_owned = [351, 352, 353, 354, 355] -metadata/connected_nodes_paths = [NodePath("Bone-27"), NodePath("Bone-28"), NodePath("Bone-29"), NodePath("Bone-32")] +metadata/vert_owned = [667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682] +metadata/idx = 33 +metadata/connected_nodes_paths = [NodePath("Bone-27"), NodePath("Bone-28"), NodePath("Bone-32"), NodePath("Bone-29"), NodePath("Bone-34"), NodePath("Bone-57"), NodePath("Bone-58"), NodePath("Bone-59")] +metadata/connected_nodes_idx = [27, 28, 32, 29, 34, 57, 58, 59] metadata/_local_pose_override_enabled_ = true [node name="Bone-34" type="Bone2D" parent="Egg5/Skeleton2D"] -position = Vector2(82.9635, 211.174) -rotation = 2.41616 -rest = Transform2D(-0.748213, 0.663459, -0.663459, -0.748213, 82.9635, 211.174) +position = Vector2(87, 150) +rotation = 1.5708 +scale = Vector2(1, 1) +rest = Transform2D(-4.01339e-07, 1, -1, -4.01339e-07, 87, 150) auto_calculate_length_and_angle = false -length = 25.0 +length = 20.0 bone_angle = 0.0 -metadata/vert_owned = [356, 357, 358, 359, 360, 361] -metadata/connected_nodes_paths = [NodePath("Bone-28"), NodePath("Bone-29"), NodePath("Bone-30"), NodePath("Bone-33")] +metadata/vert_owned = [683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698] +metadata/idx = 34 +metadata/connected_nodes_paths = [NodePath("Bone-28"), NodePath("Bone-29"), NodePath("Bone-33"), NodePath("Bone-30"), NodePath("Bone-35"), NodePath("Bone-58"), NodePath("Bone-59"), NodePath("Bone-60")] +metadata/connected_nodes_idx = [28, 29, 33, 30, 35, 58, 59, 60] metadata/_local_pose_override_enabled_ = true [node name="Bone-35" type="Bone2D" parent="Egg5/Skeleton2D"] -position = Vector2(83.0761, 236.016) -rotation = -3.03673 -rest = Transform2D(-0.994507, -0.104674, 0.104674, -0.994507, 83.0761, 236.016) +position = Vector2(87, 170) +rotation = 1.5708 +scale = Vector2(1, 1) +rest = Transform2D(4.33126e-07, 1, -1, 4.33126e-07, 87, 170) auto_calculate_length_and_angle = false -length = 25.0 +length = 20.0 bone_angle = 0.0 -metadata/vert_owned = [362, 363, 364, 365, 366, 367, 368] -metadata/connected_nodes_paths = [NodePath("Bone-29"), NodePath("Bone-30"), NodePath("Bone-34")] +metadata/vert_owned = [699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714] +metadata/idx = 35 +metadata/connected_nodes_paths = [NodePath("Bone-29"), NodePath("Bone-30"), NodePath("Bone-34"), NodePath("Bone-31"), NodePath("Bone-36"), NodePath("Bone-59"), NodePath("Bone-60"), NodePath("Bone-61")] +metadata/connected_nodes_idx = [29, 30, 34, 31, 36, 59, 60, 61] metadata/_local_pose_override_enabled_ = true [node name="Bone-36" type="Bone2D" parent="Egg5/Skeleton2D"] -position = Vector2(107.974, 136.151) -rotation = -3.13825 -rest = Transform2D(-0.999994, -0.00334587, 0.00334587, -0.999994, 107.974, 136.151) +position = Vector2(87, 190) +rotation = 1.5708 +scale = Vector2(1, 1) +rest = Transform2D(-4.01339e-07, 1, -1, -4.01339e-07, 87, 190) auto_calculate_length_and_angle = false -length = 25.0 +length = 20.0 bone_angle = 0.0 -metadata/vert_owned = [369, 370, 371, 372, 373] -metadata/connected_nodes_paths = [NodePath("Bone-13"), NodePath("Bone-18"), NodePath("Bone-31"), NodePath("Bone-32")] +metadata/vert_owned = [715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730] +metadata/idx = 36 +metadata/connected_nodes_paths = [NodePath("Bone-30"), NodePath("Bone-31"), NodePath("Bone-35"), NodePath("Bone-40"), NodePath("Bone-42"), NodePath("Bone-60"), NodePath("Bone-61"), NodePath("Bone-77")] +metadata/connected_nodes_idx = [30, 31, 35, 40, 42, 60, 61, 77] metadata/_local_pose_override_enabled_ = true [node name="Bone-37" type="Bone2D" parent="Egg5/Skeleton2D"] -position = Vector2(108.039, 161.11) -rotation = 2.35985 -rest = Transform2D(-0.709689, 0.704515, -0.704515, -0.709689, 108.039, 161.11) +position = Vector2(27, 212.4) +rotation = -0.11943 +scale = Vector2(1, 1) +rest = Transform2D(0.992877, -0.119146, 0.119146, 0.992877, 27, 212.4) auto_calculate_length_and_angle = false -length = 25.0 +length = 20.0 bone_angle = 0.0 -metadata/vert_owned = [374, 375, 376, 377, 378, 379] -metadata/connected_nodes_paths = [NodePath("Bone-31"), NodePath("Bone-32"), NodePath("Bone-33"), NodePath("Bone-36")] +metadata/vert_owned = [731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754] +metadata/idx = 37 +metadata/connected_nodes_paths = [NodePath("Bone-21"), NodePath("Bone-26"), NodePath("Bone-38"), NodePath("Bone-39")] +metadata/connected_nodes_idx = [21, 26, 38, 39] metadata/_local_pose_override_enabled_ = true [node name="Bone-38" type="Bone2D" parent="Egg5/Skeleton2D"] -position = Vector2(107.941, 186.024) -rotation = 2.35276 -scale = Vector2(1, 1) -rest = Transform2D(-0.704671, 0.709534, -0.709534, -0.704671, 107.941, 186.024) +position = Vector2(47, 210) +rotation = -0.785398 +rest = Transform2D(0.707107, -0.707107, 0.707107, 0.707107, 47, 210) auto_calculate_length_and_angle = false -length = 25.0 +length = 20.0 bone_angle = 0.0 -metadata/vert_owned = [380, 381, 382, 383, 384, 385] -metadata/connected_nodes_paths = [NodePath("Bone-32"), NodePath("Bone-33"), NodePath("Bone-34"), NodePath("Bone-37")] +metadata/vert_owned = [755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770] +metadata/idx = 38 +metadata/connected_nodes_paths = [NodePath("Bone-21"), NodePath("Bone-26"), NodePath("Bone-37"), NodePath("Bone-31"), NodePath("Bone-40"), NodePath("Bone-39"), NodePath("Bone-41")] +metadata/connected_nodes_idx = [21, 26, 37, 31, 40, 39, 41] metadata/_local_pose_override_enabled_ = true [node name="Bone-39" type="Bone2D" parent="Egg5/Skeleton2D"] -position = Vector2(108.014, 210.967) -rotation = 2.35397 +position = Vector2(47, 229.75) +rotation = -0.779109 scale = Vector2(1, 1) -rest = Transform2D(-0.705533, 0.708677, -0.708677, -0.705533, 108.014, 210.967) +rest = Transform2D(0.71154, -0.702646, 0.702646, 0.71154, 47, 229.75) auto_calculate_length_and_angle = false -length = 25.0 +length = 20.0 bone_angle = 0.0 -metadata/vert_owned = [386, 387, 388, 389, 390, 391] -metadata/connected_nodes_paths = [NodePath("Bone-33"), NodePath("Bone-34"), NodePath("Bone-35"), NodePath("Bone-38")] +metadata/vert_owned = [771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790] +metadata/idx = 39 +metadata/connected_nodes_paths = [NodePath("Bone-37"), NodePath("Bone-38"), NodePath("Bone-40"), NodePath("Bone-41")] +metadata/connected_nodes_idx = [37, 38, 40, 41] metadata/_local_pose_override_enabled_ = true [node name="Bone-40" type="Bone2D" parent="Egg5/Skeleton2D"] -position = Vector2(108.149, 236.033) -rotation = -3.14095 +position = Vector2(67, 210) scale = Vector2(1, 1) -rest = Transform2D(-1, -0.000647457, 0.000647457, -1, 108.149, 236.033) +rest = Transform2D(1, 0, 0, 1, 67, 210) auto_calculate_length_and_angle = false -length = 25.0 +length = 20.0 bone_angle = 0.0 -metadata/vert_owned = [392, 393, 394, 395, 396, 397] -metadata/connected_nodes_paths = [NodePath("Bone-34"), NodePath("Bone-35"), NodePath("Bone-39")] +metadata/vert_owned = [791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806] +metadata/idx = 40 +metadata/connected_nodes_paths = [NodePath("Bone-26"), NodePath("Bone-31"), NodePath("Bone-38"), NodePath("Bone-36"), NodePath("Bone-42"), NodePath("Bone-39"), NodePath("Bone-41"), NodePath("Bone-43")] +metadata/connected_nodes_idx = [26, 31, 38, 36, 42, 39, 41, 43] metadata/_local_pose_override_enabled_ = true [node name="Bone-41" type="Bone2D" parent="Egg5/Skeleton2D"] -position = Vector2(132.956, 35.9734) -rotation = 3.14067 -rest = Transform2D(-1, 0.000924738, -0.000924738, -1, 132.956, 35.9734) +position = Vector2(67, 233) +rotation = -1.5708 +scale = Vector2(1, 1) +rest = Transform2D(3.13916e-07, -1, 1, 3.13916e-07, 67, 233) auto_calculate_length_and_angle = false -length = 25.0 +length = 20.0 bone_angle = 0.0 -metadata/vert_owned = [398, 399, 400, 401, 402, 403, 404, 405, 406] -metadata/connected_nodes_paths = [NodePath("Bone-14"), NodePath("Bone-15"), NodePath("Bone-16")] +metadata/vert_owned = [807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831] +metadata/idx = 41 +metadata/connected_nodes_paths = [NodePath("Bone-44"), NodePath("Bone-38"), NodePath("Bone-39"), NodePath("Bone-40"), NodePath("Bone-42"), NodePath("Bone-43")] +metadata/connected_nodes_idx = [44, 38, 39, 40, 42, 43] metadata/_local_pose_override_enabled_ = true [node name="Bone-42" type="Bone2D" parent="Egg5/Skeleton2D"] -position = Vector2(132.913, 60.8636) -rotation = 2.3469 +position = Vector2(87, 210) scale = Vector2(1, 1) -rest = Transform2D(-0.700501, 0.713652, -0.713652, -0.700501, 132.913, 60.8636) +rest = Transform2D(1, 0, 0, 1, 87, 210) auto_calculate_length_and_angle = false -length = 25.0 +length = 20.0 bone_angle = 0.0 -metadata/vert_owned = [407, 408, 409, 410, 411, 412, 413] -metadata/connected_nodes_paths = [NodePath("Bone-15"), NodePath("Bone-16"), NodePath("Bone-17"), NodePath("Bone-41")] +metadata/vert_owned = [832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847] +metadata/idx = 42 +metadata/connected_nodes_paths = [NodePath("Bone-31"), NodePath("Bone-36"), NodePath("Bone-40"), NodePath("Bone-61"), NodePath("Bone-77"), NodePath("Bone-41"), NodePath("Bone-43"), NodePath("Bone-78")] +metadata/connected_nodes_idx = [31, 36, 40, 61, 77, 41, 43, 78] metadata/_local_pose_override_enabled_ = true [node name="Bone-43" type="Bone2D" parent="Egg5/Skeleton2D"] -position = Vector2(132.984, 85.8957) -rotation = 2.3495 +position = Vector2(87, 230) +rotation = 1.5708 scale = Vector2(1, 1) -rest = Transform2D(-0.702359, 0.711823, -0.711823, -0.702359, 132.984, 85.8957) +rest = Transform2D(-4.37114e-08, 1, -1, -4.37114e-08, 87, 230) auto_calculate_length_and_angle = false -length = 25.0 +length = 20.0 bone_angle = 0.0 -metadata/vert_owned = [414, 415, 416, 417, 418] -metadata/connected_nodes_paths = [NodePath("Bone-16"), NodePath("Bone-17"), NodePath("Bone-18"), NodePath("Bone-42")] +metadata/vert_owned = [848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863] +metadata/idx = 43 +metadata/connected_nodes_paths = [NodePath("Bone-40"), NodePath("Bone-41"), NodePath("Bone-42"), NodePath("Bone-44"), NodePath("Bone-77"), NodePath("Bone-78"), NodePath("Bone-79")] +metadata/connected_nodes_idx = [40, 41, 42, 44, 77, 78, 79] metadata/_local_pose_override_enabled_ = true [node name="Bone-44" type="Bone2D" parent="Egg5/Skeleton2D"] -position = Vector2(132.979, 110.926) -rotation = 2.35182 -scale = Vector2(1, 1) -rest = Transform2D(-0.704004, 0.710196, -0.710196, -0.704004, 132.979, 110.926) +position = Vector2(87, 244.5) +rotation = -0.627304 +rest = Transform2D(0.809613, -0.586964, 0.586964, 0.809613, 87, 244.5) auto_calculate_length_and_angle = false -length = 25.0 +length = 20.0 bone_angle = 0.0 -metadata/vert_owned = [419, 420, 421, 422, 423, 424] -metadata/connected_nodes_paths = [NodePath("Bone-17"), NodePath("Bone-18"), NodePath("Bone-36"), NodePath("Bone-43")] +metadata/vert_owned = [864, 865, 866, 867, 868, 869, 870, 871, 872, 873] +metadata/idx = 44 +metadata/connected_nodes_paths = [NodePath("Bone-41"), NodePath("Bone-43"), NodePath("Bone-78"), NodePath("Bone-79")] +metadata/connected_nodes_idx = [41, 43, 78, 79] metadata/_local_pose_override_enabled_ = true [node name="Bone-45" type="Bone2D" parent="Egg5/Skeleton2D"] -position = Vector2(152.555, 59.2648) -rotation = 3.06036 -rest = Transform2D(-0.996703, 0.0811389, -0.0811389, -0.996703, 152.555, 59.2647) +position = Vector2(109, 25) +rotation = 2.29245 +scale = Vector2(1, 1) +rest = Transform2D(-0.660628, 0.750713, -0.750713, -0.660628, 109, 25) auto_calculate_length_and_angle = false -length = 25.0 +length = 20.0 bone_angle = 0.0 -metadata/vert_owned = [425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438] -metadata/connected_nodes_paths = [NodePath("Bone-16"), NodePath("Bone-41"), NodePath("Bone-42"), NodePath("Bone-43")] +metadata/vert_owned = [874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905] +metadata/idx = 45 +metadata/connected_nodes_paths = [NodePath("Bone-49"), NodePath("Bone-9"), NodePath("Bone-10"), NodePath("Bone-11"), NodePath("Bone-46"), NodePath("Bone-50")] +metadata/connected_nodes_idx = [49, 9, 10, 11, 46, 50] metadata/_local_pose_override_enabled_ = true [node name="Bone-46" type="Bone2D" parent="Egg5/Skeleton2D"] -position = Vector2(157.936, 85.9975) -rotation = 2.35676 -rest = Transform2D(-0.707506, 0.706707, -0.706707, -0.707506, 157.936, 85.9974) +position = Vector2(107, 50) +rotation = 1.5708 +scale = Vector2(1, 1) +rest = Transform2D(4.33126e-07, 1, -1, 4.33126e-07, 107, 50) auto_calculate_length_and_angle = false -length = 25.0 +length = 20.0 bone_angle = 0.0 -metadata/vert_owned = [439, 440, 441, 442, 443, 444, 445, 446, 447] -metadata/connected_nodes_paths = [NodePath("Bone-42"), NodePath("Bone-43"), NodePath("Bone-44"), NodePath("Bone-45")] +metadata/vert_owned = [906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 918, 919, 920, 921] +metadata/idx = 46 +metadata/connected_nodes_paths = [NodePath("Bone-10"), NodePath("Bone-11"), NodePath("Bone-45"), NodePath("Bone-12"), NodePath("Bone-47"), NodePath("Bone-49"), NodePath("Bone-50"), NodePath("Bone-51")] +metadata/connected_nodes_idx = [10, 11, 45, 12, 47, 49, 50, 51] metadata/_local_pose_override_enabled_ = true [node name="Bone-47" type="Bone2D" parent="Egg5/Skeleton2D"] -position = Vector2(157.879, 111.009) -rotation = -3.13824 -rest = Transform2D(-0.999994, -0.00334826, 0.00334826, -0.999994, 157.879, 111.009) +position = Vector2(107, 70) +rotation = 1.5708 +scale = Vector2(1, 1) +rest = Transform2D(-4.37114e-08, 1, -1, -4.37114e-08, 107, 70) auto_calculate_length_and_angle = false -length = 25.0 +length = 20.0 bone_angle = 0.0 -metadata/vert_owned = [448, 449, 450, 451, 452, 453, 454] -metadata/connected_nodes_paths = [NodePath("Bone-43"), NodePath("Bone-44"), NodePath("Bone-46")] +metadata/vert_owned = [922, 923, 924, 925, 926, 927, 928, 929, 930, 931, 932, 933, 934, 935, 936, 937] +metadata/idx = 47 +metadata/connected_nodes_paths = [NodePath("Bone-11"), NodePath("Bone-12"), NodePath("Bone-46"), NodePath("Bone-13"), NodePath("Bone-48"), NodePath("Bone-50"), NodePath("Bone-51"), NodePath("Bone-52")] +metadata/connected_nodes_idx = [11, 12, 46, 13, 48, 50, 51, 52] metadata/_local_pose_override_enabled_ = true [node name="Bone-48" type="Bone2D" parent="Egg5/Skeleton2D"] -position = Vector2(173.662, 110.385) -rotation = -2.14354 +position = Vector2(107, 90.0001) +rotation = 1.5708 scale = Vector2(1, 1) -rest = Transform2D(-0.541939, -0.840418, 0.840418, -0.541939, 173.662, 110.385) +rest = Transform2D(-4.01339e-07, 1, -1, -4.01339e-07, 107, 90) auto_calculate_length_and_angle = false -length = 25.0 +length = 20.0 bone_angle = 0.0 -metadata/vert_owned = [455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466] -metadata/connected_nodes_paths = [NodePath("Bone-44"), NodePath("Bone-46"), NodePath("Bone-47")] +metadata/vert_owned = [938, 939, 940, 941, 942, 943, 944, 945, 946, 947, 948, 949, 950, 951, 952, 953] +metadata/idx = 48 +metadata/connected_nodes_paths = [NodePath("Bone-12"), NodePath("Bone-13"), NodePath("Bone-47"), NodePath("Bone-32"), NodePath("Bone-57"), NodePath("Bone-51"), NodePath("Bone-52"), NodePath("Bone-62")] +metadata/connected_nodes_idx = [12, 13, 47, 32, 57, 51, 52, 62] metadata/_local_pose_override_enabled_ = true [node name="Bone-49" type="Bone2D" parent="Egg5/Skeleton2D"] -position = Vector2(132.838, 135.981) -rotation = 2.34959 -rest = Transform2D(-0.702424, 0.711759, -0.711759, -0.702424, 132.838, 135.981) +position = Vector2(129.438, 30.0001) +rotation = 2.41357 +scale = Vector2(1, 1) +rest = Transform2D(-0.746492, 0.665394, -0.665394, -0.746492, 129.438, 30) auto_calculate_length_and_angle = false -length = 25.0 +length = 20.0 bone_angle = 0.0 -metadata/vert_owned = [467, 468, 469, 470, 471, 472, 473] -metadata/connected_nodes_paths = [NodePath("Bone-18"), NodePath("Bone-36"), NodePath("Bone-37"), NodePath("Bone-44"), NodePath("Bone-47")] +metadata/vert_owned = [954, 955, 956, 957, 958, 959, 960, 961, 962, 963, 964, 965, 966, 967, 968, 969, 970, 971, 972, 973, 974, 975, 976, 977] +metadata/idx = 49 +metadata/connected_nodes_paths = [NodePath("Bone-53"), NodePath("Bone-45"), NodePath("Bone-46"), NodePath("Bone-50")] +metadata/connected_nodes_idx = [53, 45, 46, 50] metadata/_local_pose_override_enabled_ = true [node name="Bone-50" type="Bone2D" parent="Egg5/Skeleton2D"] -position = Vector2(133.14, 160.886) -rotation = 2.35741 -scale = Vector2(1, 1) -rest = Transform2D(-0.707965, 0.706247, -0.706247, -0.707965, 133.14, 160.886) +position = Vector2(127, 50) +rotation = 2.35619 +rest = Transform2D(-0.707107, 0.707107, -0.707107, -0.707107, 127, 50) auto_calculate_length_and_angle = false -length = 25.0 +length = 20.0 bone_angle = 0.0 -metadata/vert_owned = [474, 475, 476, 477, 478] -metadata/connected_nodes_paths = [NodePath("Bone-36"), NodePath("Bone-37"), NodePath("Bone-38"), NodePath("Bone-49")] +metadata/vert_owned = [978, 979, 980, 981, 982, 983, 984, 985, 986, 987, 988, 989, 990, 991, 992, 993] +metadata/idx = 50 +metadata/connected_nodes_paths = [NodePath("Bone-45"), NodePath("Bone-46"), NodePath("Bone-49"), NodePath("Bone-47"), NodePath("Bone-51"), NodePath("Bone-53"), NodePath("Bone-54")] +metadata/connected_nodes_idx = [45, 46, 49, 47, 51, 53, 54] metadata/_local_pose_override_enabled_ = true [node name="Bone-51" type="Bone2D" parent="Egg5/Skeleton2D"] -position = Vector2(133.063, 185.995) -rotation = 2.35772 +position = Vector2(127, 70) +rotation = 1.5708 scale = Vector2(1, 1) -rest = Transform2D(-0.708186, 0.706026, -0.706026, -0.708186, 133.063, 185.995) +rest = Transform2D(-4.37114e-08, 1, -1, -4.37114e-08, 127, 70) auto_calculate_length_and_angle = false -length = 25.0 +length = 20.0 bone_angle = 0.0 -metadata/vert_owned = [479, 480, 481, 482, 483, 484, 485, 486] -metadata/connected_nodes_paths = [NodePath("Bone-37"), NodePath("Bone-38"), NodePath("Bone-39"), NodePath("Bone-50")] +metadata/vert_owned = [994, 995, 996, 997, 998, 999, 1000, 1001, 1002, 1003, 1004, 1005, 1006, 1007, 1008, 1009] +metadata/idx = 51 +metadata/connected_nodes_paths = [NodePath("Bone-46"), NodePath("Bone-47"), NodePath("Bone-50"), NodePath("Bone-48"), NodePath("Bone-52"), NodePath("Bone-53"), NodePath("Bone-54"), NodePath("Bone-55")] +metadata/connected_nodes_idx = [46, 47, 50, 48, 52, 53, 54, 55] metadata/_local_pose_override_enabled_ = true [node name="Bone-52" type="Bone2D" parent="Egg5/Skeleton2D"] -position = Vector2(133.061, 211.074) -rotation = 2.35525 +position = Vector2(127, 90) +rotation = 1.5708 scale = Vector2(1, 1) -rest = Transform2D(-0.706438, 0.707775, -0.707775, -0.706438, 133.061, 211.074) +rest = Transform2D(-4.37114e-08, 1, -1, -4.37114e-08, 127, 90) auto_calculate_length_and_angle = false -length = 25.0 +length = 20.0 bone_angle = 0.0 -metadata/vert_owned = [487, 488, 489, 490, 491, 492] -metadata/connected_nodes_paths = [NodePath("Bone-38"), NodePath("Bone-39"), NodePath("Bone-40"), NodePath("Bone-51")] +metadata/vert_owned = [1010, 1011, 1012, 1013, 1014, 1015, 1016, 1017, 1018, 1019, 1020, 1021, 1022, 1023, 1024, 1025] +metadata/idx = 52 +metadata/connected_nodes_paths = [NodePath("Bone-47"), NodePath("Bone-48"), NodePath("Bone-51"), NodePath("Bone-57"), NodePath("Bone-62"), NodePath("Bone-54"), NodePath("Bone-55"), NodePath("Bone-67")] +metadata/connected_nodes_idx = [47, 48, 51, 57, 62, 54, 55, 67] metadata/_local_pose_override_enabled_ = true [node name="Bone-53" type="Bone2D" parent="Egg5/Skeleton2D"] -position = Vector2(133.038, 236.074) -rotation = -3.13995 -rest = Transform2D(-0.999999, -0.00164309, 0.00164309, -0.999999, 133.038, 236.074) +position = Vector2(145.8, 50) +rotation = 2.32528 +rest = Transform2D(-0.68491, 0.728628, -0.728628, -0.68491, 145.8, 50) auto_calculate_length_and_angle = false -length = 25.0 +length = 20.0 bone_angle = 0.0 -metadata/vert_owned = [493, 494, 495, 496] -metadata/connected_nodes_paths = [NodePath("Bone-39"), NodePath("Bone-40"), NodePath("Bone-52")] +metadata/vert_owned = [1026, 1027, 1028, 1029, 1030, 1031, 1032, 1033, 1034, 1035, 1036, 1037, 1038, 1039, 1040, 1041, 1042, 1043, 1044, 1045] +metadata/idx = 53 +metadata/connected_nodes_paths = [NodePath("Bone-49"), NodePath("Bone-50"), NodePath("Bone-51"), NodePath("Bone-54")] +metadata/connected_nodes_idx = [49, 50, 51, 54] metadata/_local_pose_override_enabled_ = true [node name="Bone-54" type="Bone2D" parent="Egg5/Skeleton2D"] -position = Vector2(157.876, 136.01) -rotation = -1.01865 -rest = Transform2D(0.524519, -0.851399, 0.851399, 0.524519, 157.876, 136.01) +position = Vector2(150.618, 70) +rotation = 2.43894 +rest = Transform2D(-0.763134, 0.646241, -0.646241, -0.763134, 150.618, 70) auto_calculate_length_and_angle = false -length = 25.0 +length = 20.0 bone_angle = 0.0 -metadata/vert_owned = [497, 498, 499, 500, 501] -metadata/connected_nodes_paths = [NodePath("Bone-44"), NodePath("Bone-47"), NodePath("Bone-48"), NodePath("Bone-49"), NodePath("Bone-50")] +metadata/vert_owned = [1046, 1047, 1048, 1049, 1050, 1051, 1052, 1053, 1054, 1055, 1056, 1057, 1058, 1059, 1060, 1061, 1062, 1063, 1064, 1065, 1066, 1067, 1068, 1069, 1070, 1071] +metadata/idx = 54 +metadata/connected_nodes_paths = [NodePath("Bone-50"), NodePath("Bone-51"), NodePath("Bone-53"), NodePath("Bone-52"), NodePath("Bone-55"), NodePath("Bone-56")] +metadata/connected_nodes_idx = [50, 51, 53, 52, 55, 56] metadata/_local_pose_override_enabled_ = true [node name="Bone-55" type="Bone2D" parent="Egg5/Skeleton2D"] -position = Vector2(158.031, 160.932) -rotation = 2.3543 -rest = Transform2D(-0.705768, 0.708443, -0.708443, -0.705768, 158.031, 160.932) +position = Vector2(147, 90) +rotation = 2.35619 +rest = Transform2D(-0.707107, 0.707107, -0.707107, -0.707107, 147, 90) auto_calculate_length_and_angle = false -length = 25.0 +length = 20.0 bone_angle = 0.0 -metadata/vert_owned = [502, 503, 504, 505, 506, 507] -metadata/connected_nodes_paths = [NodePath("Bone-49"), NodePath("Bone-50"), NodePath("Bone-51"), NodePath("Bone-54")] +metadata/vert_owned = [1072, 1073, 1074, 1075, 1076, 1077, 1078, 1079, 1080, 1081, 1082, 1083, 1084, 1085, 1086, 1087] +metadata/idx = 55 +metadata/connected_nodes_paths = [NodePath("Bone-51"), NodePath("Bone-52"), NodePath("Bone-54"), NodePath("Bone-62"), NodePath("Bone-67"), NodePath("Bone-56"), NodePath("Bone-72")] +metadata/connected_nodes_idx = [51, 52, 54, 62, 67, 56, 72] metadata/_local_pose_override_enabled_ = true [node name="Bone-56" type="Bone2D" parent="Egg5/Skeleton2D"] -position = Vector2(158.178, 185.985) -rotation = 2.35676 -rest = Transform2D(-0.707506, 0.706708, -0.706708, -0.707506, 158.178, 185.985) +position = Vector2(164.818, 90) +rotation = 2.29857 +scale = Vector2(1, 1) +rest = Transform2D(-0.665206, 0.74666, -0.74666, -0.665206, 164.818, 90) auto_calculate_length_and_angle = false -length = 25.0 +length = 20.0 bone_angle = 0.0 -metadata/vert_owned = [508, 509, 510, 511, 512, 513] -metadata/connected_nodes_paths = [NodePath("Bone-50"), NodePath("Bone-51"), NodePath("Bone-52"), NodePath("Bone-55")] +metadata/vert_owned = [1088, 1089, 1090, 1091, 1092, 1093, 1094, 1095, 1096, 1097, 1098, 1099, 1100, 1101, 1102, 1103, 1104, 1105] +metadata/idx = 56 +metadata/connected_nodes_paths = [NodePath("Bone-54"), NodePath("Bone-55"), NodePath("Bone-67"), NodePath("Bone-72")] +metadata/connected_nodes_idx = [54, 55, 67, 72] metadata/_local_pose_override_enabled_ = true [node name="Bone-57" type="Bone2D" parent="Egg5/Skeleton2D"] -position = Vector2(157.986, 210.894) -rotation = 2.35157 +position = Vector2(107, 110) +rotation = 1.5708 scale = Vector2(1, 1) -rest = Transform2D(-0.703829, 0.710369, -0.710369, -0.703829, 157.986, 210.894) +rest = Transform2D(4.33126e-07, 1, -1, 4.33126e-07, 107, 110) auto_calculate_length_and_angle = false -length = 25.0 +length = 20.0 bone_angle = 0.0 -metadata/vert_owned = [514, 515, 516, 517, 518] -metadata/connected_nodes_paths = [NodePath("Bone-51"), NodePath("Bone-52"), NodePath("Bone-53"), NodePath("Bone-56")] +metadata/vert_owned = [1106, 1107, 1108, 1109, 1110, 1111, 1112, 1113, 1114, 1115, 1116, 1117, 1118, 1119, 1120, 1121] +metadata/idx = 57 +metadata/connected_nodes_paths = [NodePath("Bone-13"), NodePath("Bone-32"), NodePath("Bone-48"), NodePath("Bone-33"), NodePath("Bone-58"), NodePath("Bone-52"), NodePath("Bone-62"), NodePath("Bone-63")] +metadata/connected_nodes_idx = [13, 32, 48, 33, 58, 52, 62, 63] metadata/_local_pose_override_enabled_ = true [node name="Bone-58" type="Bone2D" parent="Egg5/Skeleton2D"] -position = Vector2(154.476, 230.171) -rotation = -1.48721 +position = Vector2(107, 130) +rotation = 1.5708 scale = Vector2(1, 1) -rest = Transform2D(0.0834905, -0.996509, 0.996509, 0.0834905, 154.476, 230.171) +rest = Transform2D(-4.37114e-08, 1, -1, -4.37114e-08, 107, 130) auto_calculate_length_and_angle = false -length = 25.0 +length = 20.0 bone_angle = 0.0 -metadata/vert_owned = [519, 520, 521, 522, 523, 524] -metadata/connected_nodes_paths = [NodePath("Bone-52"), NodePath("Bone-53"), NodePath("Bone-56"), NodePath("Bone-57")] +metadata/vert_owned = [1122, 1123, 1124, 1125, 1126, 1127, 1128, 1129, 1130, 1131, 1132, 1133, 1134, 1135, 1136, 1137] +metadata/idx = 58 +metadata/connected_nodes_paths = [NodePath("Bone-32"), NodePath("Bone-33"), NodePath("Bone-57"), NodePath("Bone-34"), NodePath("Bone-59"), NodePath("Bone-62"), NodePath("Bone-63"), NodePath("Bone-64")] +metadata/connected_nodes_idx = [32, 33, 57, 34, 59, 62, 63, 64] metadata/_local_pose_override_enabled_ = true [node name="Bone-59" type="Bone2D" parent="Egg5/Skeleton2D"] -position = Vector2(175.705, 135.904) -rotation = 3.1398 -rest = Transform2D(-0.999998, 0.00179687, -0.00179687, -0.999998, 175.705, 135.904) +position = Vector2(107, 150) +rotation = 1.5708 +scale = Vector2(1, 1) +rest = Transform2D(-4.01339e-07, 1, -1, -4.01339e-07, 107, 150) auto_calculate_length_and_angle = false -length = 25.0 +length = 20.0 bone_angle = 0.0 -metadata/vert_owned = [525, 526, 527, 528, 529, 530, 531] -metadata/connected_nodes_paths = [NodePath("Bone-47"), NodePath("Bone-48"), NodePath("Bone-49"), NodePath("Bone-54"), NodePath("Bone-55")] +metadata/vert_owned = [1138, 1139, 1140, 1141, 1142, 1143, 1144, 1145, 1146, 1147, 1148, 1149, 1150, 1151, 1152, 1153] +metadata/idx = 59 +metadata/connected_nodes_paths = [NodePath("Bone-33"), NodePath("Bone-34"), NodePath("Bone-58"), NodePath("Bone-35"), NodePath("Bone-60"), NodePath("Bone-63"), NodePath("Bone-64"), NodePath("Bone-65")] +metadata/connected_nodes_idx = [33, 34, 58, 35, 60, 63, 64, 65] metadata/_local_pose_override_enabled_ = true [node name="Bone-60" type="Bone2D" parent="Egg5/Skeleton2D"] -position = Vector2(176.214, 160.874) -rotation = 3.13842 +position = Vector2(107, 170) +rotation = 1.5708 scale = Vector2(1, 1) -rest = Transform2D(-0.999995, 0.00316873, -0.00316873, -0.999995, 176.214, 160.874) +rest = Transform2D(4.33126e-07, 1, -1, 4.33126e-07, 107, 170) auto_calculate_length_and_angle = false -length = 25.0 +length = 20.0 bone_angle = 0.0 -metadata/vert_owned = [532, 533, 534, 535, 536, 537] -metadata/connected_nodes_paths = [NodePath("Bone-50"), NodePath("Bone-54"), NodePath("Bone-55"), NodePath("Bone-56"), NodePath("Bone-59")] +metadata/vert_owned = [1154, 1155, 1156, 1157, 1158, 1159, 1160, 1161, 1162, 1163, 1164, 1165, 1166, 1167, 1168, 1169] +metadata/idx = 60 +metadata/connected_nodes_paths = [NodePath("Bone-34"), NodePath("Bone-35"), NodePath("Bone-59"), NodePath("Bone-36"), NodePath("Bone-61"), NodePath("Bone-64"), NodePath("Bone-65"), NodePath("Bone-66")] +metadata/connected_nodes_idx = [34, 35, 59, 36, 61, 64, 65, 66] metadata/_local_pose_override_enabled_ = true [node name="Bone-61" type="Bone2D" parent="Egg5/Skeleton2D"] -position = Vector2(176.317, 185.901) -rotation = 3.13696 +position = Vector2(107, 190) +rotation = 1.5708 scale = Vector2(1, 1) -rest = Transform2D(-0.999989, 0.0046369, -0.0046369, -0.999989, 176.317, 185.901) +rest = Transform2D(-4.37114e-08, 1, -1, -4.37114e-08, 107, 190) auto_calculate_length_and_angle = false -length = 25.0 +length = 20.0 bone_angle = 0.0 -metadata/vert_owned = [538, 539, 540, 541, 542, 543, 544, 545] -metadata/connected_nodes_paths = [NodePath("Bone-51"), NodePath("Bone-55"), NodePath("Bone-56"), NodePath("Bone-57"), NodePath("Bone-60")] +metadata/vert_owned = [1170, 1171, 1172, 1173, 1174, 1175, 1176, 1177, 1178, 1179, 1180, 1181, 1182, 1183, 1184, 1185] +metadata/idx = 61 +metadata/connected_nodes_paths = [NodePath("Bone-35"), NodePath("Bone-36"), NodePath("Bone-60"), NodePath("Bone-42"), NodePath("Bone-77"), NodePath("Bone-65"), NodePath("Bone-66"), NodePath("Bone-80")] +metadata/connected_nodes_idx = [35, 36, 60, 42, 77, 65, 66, 80] metadata/_local_pose_override_enabled_ = true [node name="Bone-62" type="Bone2D" parent="Egg5/Skeleton2D"] -position = Vector2(174.19, 206.598) -rotation = 2.26728 +position = Vector2(127, 110) scale = Vector2(1, 1) -rest = Transform2D(-0.641526, 0.767101, -0.767101, -0.641526, 174.19, 206.598) +rest = Transform2D(1, 0, 0, 1, 127, 110) auto_calculate_length_and_angle = false -length = 25.0 +length = 20.0 bone_angle = 0.0 -metadata/vert_owned = [546, 547, 548, 549, 550, 551, 552, 553] -metadata/connected_nodes_paths = [NodePath("Bone-52"), NodePath("Bone-56"), NodePath("Bone-57"), NodePath("Bone-58"), NodePath("Bone-60"), NodePath("Bone-61")] +metadata/vert_owned = [1186, 1187, 1188, 1189, 1190, 1191, 1192, 1193, 1194, 1195, 1196, 1197, 1198, 1199, 1200, 1201] +metadata/idx = 62 +metadata/connected_nodes_paths = [NodePath("Bone-48"), NodePath("Bone-52"), NodePath("Bone-57"), NodePath("Bone-55"), NodePath("Bone-67"), NodePath("Bone-58"), NodePath("Bone-63"), NodePath("Bone-68")] +metadata/connected_nodes_idx = [48, 52, 57, 55, 67, 58, 63, 68] metadata/_local_pose_override_enabled_ = true -[node name="Bone-0" parent="Egg5" instance=ExtResource("3_6ern4")] -position = Vector2(15.3398, 111.011) -mass = 0.0793651 -physics_material_override = ExtResource("3_durpg") -metadata/bone_name = &"Bone-0" +[node name="Bone-63" type="Bone2D" parent="Egg5/Skeleton2D"] +position = Vector2(127, 130) +rotation = 1.5708 +scale = Vector2(1, 1) +rest = Transform2D(-4.37114e-08, 1, -1, -4.37114e-08, 127, 130) +auto_calculate_length_and_angle = false +length = 20.0 +bone_angle = 0.0 +metadata/vert_owned = [1202, 1203, 1204, 1205, 1206, 1207, 1208, 1209, 1210, 1211, 1212, 1213, 1214, 1215, 1216, 1217] +metadata/idx = 63 +metadata/connected_nodes_paths = [NodePath("Bone-57"), NodePath("Bone-58"), NodePath("Bone-62"), NodePath("Bone-59"), NodePath("Bone-64"), NodePath("Bone-67"), NodePath("Bone-68"), NodePath("Bone-69")] +metadata/connected_nodes_idx = [57, 58, 62, 59, 64, 67, 68, 69] +metadata/_local_pose_override_enabled_ = true -[node name="CircleShape2D" type="CollisionShape2D" parent="Egg5/Bone-0"] -shape = SubResource("CircleShape2D_4yipm") +[node name="Bone-64" type="Bone2D" parent="Egg5/Skeleton2D"] +position = Vector2(127, 150) +rotation = 1.5708 +scale = Vector2(1, 1) +rest = Transform2D(-4.37114e-08, 1, -1, -4.37114e-08, 127, 150) +auto_calculate_length_and_angle = false +length = 20.0 +bone_angle = 0.0 +metadata/vert_owned = [1218, 1219, 1220, 1221, 1222, 1223, 1224, 1225, 1226, 1227, 1228, 1229, 1230, 1231, 1232, 1233] +metadata/idx = 64 +metadata/connected_nodes_paths = [NodePath("Bone-58"), NodePath("Bone-59"), NodePath("Bone-63"), NodePath("Bone-60"), NodePath("Bone-65"), NodePath("Bone-68"), NodePath("Bone-69"), NodePath("Bone-70")] +metadata/connected_nodes_idx = [58, 59, 63, 60, 65, 68, 69, 70] +metadata/_local_pose_override_enabled_ = true -[node name="RemoteTransform2D" type="RemoteTransform2D" parent="Egg5/Bone-0"] -remote_path = NodePath("../../Skeleton2D/Bone-0") -update_rotation = false -update_scale = false +[node name="Bone-65" type="Bone2D" parent="Egg5/Skeleton2D"] +position = Vector2(127, 170) +rotation = 1.5708 +scale = Vector2(1, 1) +rest = Transform2D(-4.37114e-08, 1, -1, -4.37114e-08, 127, 170) +auto_calculate_length_and_angle = false +length = 20.0 +bone_angle = 0.0 +metadata/vert_owned = [1234, 1235, 1236, 1237, 1238, 1239, 1240, 1241, 1242, 1243, 1244, 1245, 1246, 1247, 1248, 1249] +metadata/idx = 65 +metadata/connected_nodes_paths = [NodePath("Bone-59"), NodePath("Bone-60"), NodePath("Bone-64"), NodePath("Bone-61"), NodePath("Bone-66"), NodePath("Bone-69"), NodePath("Bone-70"), NodePath("Bone-71")] +metadata/connected_nodes_idx = [59, 60, 64, 61, 66, 69, 70, 71] +metadata/_local_pose_override_enabled_ = true -[node name="Bone-1" parent="Egg5" instance=ExtResource("3_6ern4")] -position = Vector2(35.3187, 60.9629) -mass = 0.0793651 -physics_material_override = ExtResource("3_durpg") -metadata/bone_name = &"Bone-1" +[node name="Bone-66" type="Bone2D" parent="Egg5/Skeleton2D"] +position = Vector2(127, 190) +rotation = 1.5708 +scale = Vector2(1, 1) +rest = Transform2D(-4.37114e-08, 1, -1, -4.37114e-08, 127, 190) +auto_calculate_length_and_angle = false +length = 20.0 +bone_angle = 0.0 +metadata/vert_owned = [1250, 1251, 1252, 1253, 1254, 1255, 1256, 1257, 1258, 1259, 1260, 1261, 1262, 1263, 1264, 1265] +metadata/idx = 66 +metadata/connected_nodes_paths = [NodePath("Bone-60"), NodePath("Bone-61"), NodePath("Bone-65"), NodePath("Bone-77"), NodePath("Bone-80"), NodePath("Bone-70"), NodePath("Bone-71"), NodePath("Bone-82")] +metadata/connected_nodes_idx = [60, 61, 65, 77, 80, 70, 71, 82] +metadata/_local_pose_override_enabled_ = true -[node name="CircleShape2D" type="CollisionShape2D" parent="Egg5/Bone-1"] -shape = SubResource("CircleShape2D_4yipm") +[node name="Bone-67" type="Bone2D" parent="Egg5/Skeleton2D"] +position = Vector2(147, 110) +scale = Vector2(1, 1) +rest = Transform2D(1, 0, 0, 1, 147, 110) +auto_calculate_length_and_angle = false +length = 20.0 +bone_angle = 0.0 +metadata/vert_owned = [1266, 1267, 1268, 1269, 1270, 1271, 1272, 1273, 1274, 1275, 1276, 1277, 1278, 1279, 1280, 1281] +metadata/idx = 67 +metadata/connected_nodes_paths = [NodePath("Bone-52"), NodePath("Bone-55"), NodePath("Bone-62"), NodePath("Bone-56"), NodePath("Bone-72"), NodePath("Bone-63"), NodePath("Bone-68"), NodePath("Bone-73")] +metadata/connected_nodes_idx = [52, 55, 62, 56, 72, 63, 68, 73] +metadata/_local_pose_override_enabled_ = true -[node name="RemoteTransform2D" type="RemoteTransform2D" parent="Egg5/Bone-1"] -remote_path = NodePath("../../Skeleton2D/Bone-1") -update_rotation = false -update_scale = false +[node name="Bone-68" type="Bone2D" parent="Egg5/Skeleton2D"] +position = Vector2(147, 130) +rotation = 1.5708 +scale = Vector2(1, 1) +rest = Transform2D(-4.37114e-08, 1, -1, -4.37114e-08, 147, 130) +auto_calculate_length_and_angle = false +length = 20.0 +bone_angle = 0.0 +metadata/vert_owned = [1282, 1283, 1284, 1285, 1286, 1287, 1288, 1289, 1290, 1291, 1292, 1293, 1294, 1295, 1296, 1297] +metadata/idx = 68 +metadata/connected_nodes_paths = [NodePath("Bone-62"), NodePath("Bone-63"), NodePath("Bone-67"), NodePath("Bone-64"), NodePath("Bone-69"), NodePath("Bone-72"), NodePath("Bone-73"), NodePath("Bone-74")] +metadata/connected_nodes_idx = [62, 63, 67, 64, 69, 72, 73, 74] +metadata/_local_pose_override_enabled_ = true -[node name="Bone-2" parent="Egg5" instance=ExtResource("3_6ern4")] -position = Vector2(31.0284, 85.9836) -mass = 0.0793651 -physics_material_override = ExtResource("3_durpg") -metadata/bone_name = &"Bone-2" +[node name="Bone-69" type="Bone2D" parent="Egg5/Skeleton2D"] +position = Vector2(147, 150) +rotation = 1.5708 +scale = Vector2(1, 1) +rest = Transform2D(-7.58967e-07, 1, -1, -7.58967e-07, 147, 150) +auto_calculate_length_and_angle = false +length = 20.0 +bone_angle = 0.0 +metadata/vert_owned = [1298, 1299, 1300, 1301, 1302, 1303, 1304, 1305, 1306, 1307, 1308, 1309, 1310, 1311, 1312, 1313] +metadata/idx = 69 +metadata/connected_nodes_paths = [NodePath("Bone-63"), NodePath("Bone-64"), NodePath("Bone-68"), NodePath("Bone-65"), NodePath("Bone-70"), NodePath("Bone-73"), NodePath("Bone-74"), NodePath("Bone-75")] +metadata/connected_nodes_idx = [63, 64, 68, 65, 70, 73, 74, 75] +metadata/_local_pose_override_enabled_ = true -[node name="CircleShape2D" type="CollisionShape2D" parent="Egg5/Bone-2"] -shape = SubResource("CircleShape2D_4yipm") +[node name="Bone-70" type="Bone2D" parent="Egg5/Skeleton2D"] +position = Vector2(147, 170) +rotation = 1.5708 +scale = Vector2(1, 1) +rest = Transform2D(7.90754e-07, 1, -1, 7.90754e-07, 147, 170) +auto_calculate_length_and_angle = false +length = 20.0 +bone_angle = 0.0 +metadata/vert_owned = [1314, 1315, 1316, 1317, 1318, 1319, 1320, 1321, 1322, 1323, 1324, 1325, 1326, 1327, 1328, 1329] +metadata/idx = 70 +metadata/connected_nodes_paths = [NodePath("Bone-64"), NodePath("Bone-65"), NodePath("Bone-69"), NodePath("Bone-66"), NodePath("Bone-71"), NodePath("Bone-74"), NodePath("Bone-75"), NodePath("Bone-76")] +metadata/connected_nodes_idx = [64, 65, 69, 66, 71, 74, 75, 76] +metadata/_local_pose_override_enabled_ = true -[node name="RemoteTransform2D" type="RemoteTransform2D" parent="Egg5/Bone-2"] -remote_path = NodePath("../../Skeleton2D/Bone-2") -update_rotation = false -update_scale = false +[node name="Bone-71" type="Bone2D" parent="Egg5/Skeleton2D"] +position = Vector2(147, 190) +rotation = 1.5708 +scale = Vector2(1, 1) +rest = Transform2D(-4.37114e-08, 1, -1, -4.37114e-08, 147, 190) +auto_calculate_length_and_angle = false +length = 20.0 +bone_angle = 0.0 +metadata/vert_owned = [1330, 1331, 1332, 1333, 1334, 1335, 1336, 1337, 1338, 1339, 1340, 1341, 1342, 1343, 1344, 1345] +metadata/idx = 71 +metadata/connected_nodes_paths = [NodePath("Bone-65"), NodePath("Bone-66"), NodePath("Bone-70"), NodePath("Bone-80"), NodePath("Bone-82"), NodePath("Bone-75"), NodePath("Bone-76"), NodePath("Bone-84")] +metadata/connected_nodes_idx = [65, 66, 70, 80, 82, 75, 76, 84] +metadata/_local_pose_override_enabled_ = true -[node name="Joint2D-Bone-2-Bone-0" type="PinJoint2D" parent="Egg5/Bone-2"] -visible = false -rotation = 0.559939 -node_a = NodePath("..") -node_b = NodePath("../../Bone-0") -softness = 50.0 +[node name="Bone-72" type="Bone2D" parent="Egg5/Skeleton2D"] +position = Vector2(167.104, 110) +rotation = -1.6846 +scale = Vector2(1, 1) +rest = Transform2D(-0.11356, -0.993531, 0.993531, -0.11356, 167.104, 110) +auto_calculate_length_and_angle = false +length = 20.0 +bone_angle = 0.0 +metadata/vert_owned = [1346, 1347, 1348, 1349, 1350, 1351, 1352, 1353, 1354, 1355, 1356, 1357, 1358, 1359, 1360, 1361, 1362, 1363, 1364, 1365, 1366, 1367] +metadata/idx = 72 +metadata/connected_nodes_paths = [NodePath("Bone-73"), NodePath("Bone-55"), NodePath("Bone-56"), NodePath("Bone-67"), NodePath("Bone-68")] +metadata/connected_nodes_idx = [73, 55, 56, 67, 68] +metadata/_local_pose_override_enabled_ = true -[node name="Joint2D-Bone-2-Bone-1" type="PinJoint2D" parent="Egg5/Bone-2"] -visible = false -rotation = -2.97178 -node_a = NodePath("..") -node_b = NodePath("../../Bone-1") -softness = 50.0 +[node name="Bone-73" type="Bone2D" parent="Egg5/Skeleton2D"] +position = Vector2(169.188, 130) +rotation = 3.14159 +scale = Vector2(1, 1) +rest = Transform2D(-1, 1.50996e-07, -1.50996e-07, -1, 169.188, 130) +auto_calculate_length_and_angle = false +length = 20.0 +bone_angle = 0.0 +metadata/vert_owned = [1368, 1369, 1370, 1371, 1372, 1373, 1374, 1375, 1376, 1377, 1378, 1379, 1380, 1381, 1382, 1383, 1384, 1385, 1386, 1387, 1388, 1389, 1390, 1391] +metadata/idx = 73 +metadata/connected_nodes_paths = [NodePath("Bone-72"), NodePath("Bone-67"), NodePath("Bone-68"), NodePath("Bone-69"), NodePath("Bone-74")] +metadata/connected_nodes_idx = [72, 67, 68, 69, 74] +metadata/_local_pose_override_enabled_ = true -[node name="Bone-3" parent="Egg5" instance=ExtResource("3_6ern4")] -position = Vector2(32.9188, 110.994) -mass = 0.0793651 -physics_material_override = ExtResource("3_durpg") -metadata/bone_name = &"Bone-3" +[node name="Bone-74" type="Bone2D" parent="Egg5/Skeleton2D"] +position = Vector2(169.674, 150) +rotation = -1.59511 +scale = Vector2(1, 1) +rest = Transform2D(-0.0243138, -0.999704, 0.999704, -0.0243138, 169.674, 150) +auto_calculate_length_and_angle = false +length = 20.0 +bone_angle = 0.0 +metadata/vert_owned = [1392, 1393, 1394, 1395, 1396, 1397, 1398, 1399, 1400, 1401, 1402, 1403, 1404, 1405, 1406, 1407, 1408, 1409, 1410, 1411, 1412, 1413, 1414, 1415, 1416, 1417] +metadata/idx = 74 +metadata/connected_nodes_paths = [NodePath("Bone-68"), NodePath("Bone-69"), NodePath("Bone-73"), NodePath("Bone-70"), NodePath("Bone-75")] +metadata/connected_nodes_idx = [68, 69, 73, 70, 75] +metadata/_local_pose_override_enabled_ = true -[node name="CircleShape2D" type="CollisionShape2D" parent="Egg5/Bone-3"] -shape = SubResource("CircleShape2D_4yipm") +[node name="Bone-75" type="Bone2D" parent="Egg5/Skeleton2D"] +position = Vector2(170, 170) +rotation = -1.5871 +rest = Transform2D(-0.0163019, -0.999867, 0.999867, -0.0163019, 170, 170) +auto_calculate_length_and_angle = false +length = 20.0 +bone_angle = 0.0 +metadata/vert_owned = [1418, 1419, 1420, 1421, 1422, 1423, 1424, 1425, 1426, 1427, 1428, 1429, 1430, 1431, 1432, 1433, 1434, 1435, 1436, 1437, 1438, 1439, 1440, 1441, 1442, 1443] +metadata/idx = 75 +metadata/connected_nodes_paths = [NodePath("Bone-69"), NodePath("Bone-70"), NodePath("Bone-74"), NodePath("Bone-71"), NodePath("Bone-76")] +metadata/connected_nodes_idx = [69, 70, 74, 71, 76] +metadata/_local_pose_override_enabled_ = true -[node name="RemoteTransform2D" type="RemoteTransform2D" parent="Egg5/Bone-3"] -remote_path = NodePath("../../Skeleton2D/Bone-3") -update_rotation = false -update_scale = false - -[node name="Joint2D-Bone-3-Bone-0" type="PinJoint2D" parent="Egg5/Bone-3"] -visible = false -rotation = 1.56986 -node_a = NodePath("..") -node_b = NodePath("../../Bone-0") -softness = 50.0 - -[node name="Joint2D-Bone-3-Bone-2" type="PinJoint2D" parent="Egg5/Bone-3"] -visible = false -rotation = -3.21703 -node_a = NodePath("..") -node_b = NodePath("../../Bone-2") -softness = 50.0 +[node name="Bone-76" type="Bone2D" parent="Egg5/Skeleton2D"] +position = Vector2(169.283, 193) +rotation = -3.00776 +scale = Vector2(1, 1) +rest = Transform2D(-0.991058, -0.13343, 0.13343, -0.991058, 169.283, 193) +auto_calculate_length_and_angle = false +length = 20.0 +bone_angle = 0.0 +metadata/vert_owned = [1444, 1445, 1446, 1447, 1448, 1449, 1450, 1451, 1452, 1453, 1454, 1455, 1456, 1457, 1458, 1459, 1460, 1461, 1462, 1463, 1464, 1465, 1466, 1467, 1468, 1469, 1470, 1471, 1472] +metadata/idx = 76 +metadata/connected_nodes_paths = [NodePath("Bone-84"), NodePath("Bone-70"), NodePath("Bone-71"), NodePath("Bone-75"), NodePath("Bone-82")] +metadata/connected_nodes_idx = [84, 70, 71, 75, 82] +metadata/_local_pose_override_enabled_ = true -[node name="Bone-4" parent="Egg5" instance=ExtResource("3_6ern4")] -position = Vector2(64.5571, 19.2604) -mass = 0.0793651 -physics_material_override = ExtResource("3_durpg") -metadata/bone_name = &"Bone-4" +[node name="Bone-77" type="Bone2D" parent="Egg5/Skeleton2D"] +position = Vector2(107, 210) +rotation = 1.5708 +scale = Vector2(1, 1) +rest = Transform2D(-4.37114e-08, 1, -1, -4.37114e-08, 107, 210) +auto_calculate_length_and_angle = false +length = 20.0 +bone_angle = 0.0 +metadata/vert_owned = [1473, 1474, 1475, 1476, 1477, 1478, 1479, 1480, 1481, 1482, 1483, 1484, 1485, 1486, 1487, 1488] +metadata/idx = 77 +metadata/connected_nodes_paths = [NodePath("Bone-36"), NodePath("Bone-42"), NodePath("Bone-61"), NodePath("Bone-43"), NodePath("Bone-78"), NodePath("Bone-66"), NodePath("Bone-80"), NodePath("Bone-81")] +metadata/connected_nodes_idx = [36, 42, 61, 43, 78, 66, 80, 81] +metadata/_local_pose_override_enabled_ = true -[node name="CircleShape2D" type="CollisionShape2D" parent="Egg5/Bone-4"] -shape = SubResource("CircleShape2D_4yipm") +[node name="Bone-78" type="Bone2D" parent="Egg5/Skeleton2D"] +position = Vector2(107, 230) +rotation = 2.51429 +rest = Transform2D(-0.809613, 0.586964, -0.586964, -0.809613, 107, 230) +auto_calculate_length_and_angle = false +length = 20.0 +bone_angle = 0.0 +metadata/vert_owned = [1489, 1490, 1491, 1492, 1493, 1494, 1495, 1496, 1497, 1498, 1499, 1500, 1501, 1502, 1503, 1504] +metadata/idx = 78 +metadata/connected_nodes_paths = [NodePath("Bone-42"), NodePath("Bone-43"), NodePath("Bone-77"), NodePath("Bone-44"), NodePath("Bone-79"), NodePath("Bone-80"), NodePath("Bone-81")] +metadata/connected_nodes_idx = [42, 43, 77, 44, 79, 80, 81] +metadata/_local_pose_override_enabled_ = true -[node name="RemoteTransform2D" type="RemoteTransform2D" parent="Egg5/Bone-4"] -remote_path = NodePath("../../Skeleton2D/Bone-4") -update_rotation = false -update_scale = false +[node name="Bone-79" type="Bone2D" parent="Egg5/Skeleton2D"] +position = Vector2(107, 244.5) +rotation = -1.5708 +scale = Vector2(1, 1) +rest = Transform2D(-4.37114e-08, -1, 1, -4.37114e-08, 107, 244.5) +auto_calculate_length_and_angle = false +length = 20.0 +bone_angle = 0.0 +metadata/vert_owned = [1505, 1506, 1507, 1508, 1509, 1510, 1511, 1512, 1513, 1514] +metadata/idx = 79 +metadata/connected_nodes_paths = [NodePath("Bone-43"), NodePath("Bone-44"), NodePath("Bone-78"), NodePath("Bone-81")] +metadata/connected_nodes_idx = [43, 44, 78, 81] +metadata/_local_pose_override_enabled_ = true -[node name="Bone-5" parent="Egg5" instance=ExtResource("3_6ern4")] -position = Vector2(54.12, 36.0249) -mass = 0.0793651 -physics_material_override = ExtResource("3_durpg") -metadata/bone_name = &"Bone-5" +[node name="Bone-80" type="Bone2D" parent="Egg5/Skeleton2D"] +position = Vector2(127, 210) +scale = Vector2(1, 1) +rest = Transform2D(1, -6.10352e-06, 6.10352e-06, 1, 127, 210) +auto_calculate_length_and_angle = false +length = 20.0 +bone_angle = 0.0 +metadata/vert_owned = [1515, 1516, 1517, 1518, 1519, 1520, 1521, 1522, 1523, 1524, 1525, 1526, 1527, 1528, 1529, 1530] +metadata/idx = 80 +metadata/connected_nodes_paths = [NodePath("Bone-61"), NodePath("Bone-66"), NodePath("Bone-77"), NodePath("Bone-71"), NodePath("Bone-82"), NodePath("Bone-78"), NodePath("Bone-81"), NodePath("Bone-83")] +metadata/connected_nodes_idx = [61, 66, 77, 71, 82, 78, 81, 83] +metadata/_local_pose_override_enabled_ = true -[node name="CircleShape2D" type="CollisionShape2D" parent="Egg5/Bone-5"] -shape = SubResource("CircleShape2D_4yipm") +[node name="Bone-81" type="Bone2D" parent="Egg5/Skeleton2D"] +position = Vector2(128.333, 233.5) +rotation = 2.66553 +rest = Transform2D(-0.888805, 0.458285, -0.458285, -0.888805, 128.333, 233.5) +auto_calculate_length_and_angle = false +length = 20.0 +bone_angle = 0.0 +metadata/vert_owned = [1531, 1532, 1533, 1534, 1535, 1536, 1537, 1538, 1539, 1540, 1541, 1542, 1543, 1544, 1545, 1546, 1547, 1548, 1549, 1550, 1551, 1552, 1553, 1554, 1555, 1556, 1557, 1558, 1559] +metadata/idx = 81 +metadata/connected_nodes_paths = [NodePath("Bone-77"), NodePath("Bone-78"), NodePath("Bone-80"), NodePath("Bone-79"), NodePath("Bone-82"), NodePath("Bone-83")] +metadata/connected_nodes_idx = [77, 78, 80, 79, 82, 83] +metadata/_local_pose_override_enabled_ = true -[node name="RemoteTransform2D" type="RemoteTransform2D" parent="Egg5/Bone-5"] -remote_path = NodePath("../../Skeleton2D/Bone-5") -update_rotation = false -update_scale = false +[node name="Bone-82" type="Bone2D" parent="Egg5/Skeleton2D"] +position = Vector2(147, 210) +rotation = -0.65172 +scale = Vector2(1, 1) +rest = Transform2D(0.795042, -0.606555, 0.606555, 0.795042, 147, 210) +auto_calculate_length_and_angle = false +length = 20.0 +bone_angle = 0.0 +metadata/vert_owned = [1560, 1561, 1562, 1563, 1564, 1565, 1566, 1567, 1568, 1569, 1570, 1571, 1572, 1573, 1574, 1575] +metadata/idx = 82 +metadata/connected_nodes_paths = [NodePath("Bone-66"), NodePath("Bone-71"), NodePath("Bone-80"), NodePath("Bone-76"), NodePath("Bone-84"), NodePath("Bone-81"), NodePath("Bone-83")] +metadata/connected_nodes_idx = [66, 71, 80, 76, 84, 81, 83] +metadata/_local_pose_override_enabled_ = true -[node name="Joint2D-Bone-5-Bone-1" type="PinJoint2D" parent="Egg5/Bone-5"] -visible = false -rotation = 0.646007 -node_a = NodePath("..") -node_b = NodePath("../../Bone-1") -softness = 50.0 +[node name="Bone-83" type="Bone2D" parent="Egg5/Skeleton2D"] +position = Vector2(147, 230) +rotation = 2.95624 +rest = Transform2D(-0.982872, 0.184289, -0.184289, -0.982872, 147, 230) +auto_calculate_length_and_angle = false +length = 20.0 +bone_angle = 0.0 +metadata/vert_owned = [1576, 1577, 1578, 1579, 1580, 1581, 1582, 1583, 1584, 1585, 1586, 1587, 1588, 1589, 1590, 1591, 1592, 1593] +metadata/idx = 83 +metadata/connected_nodes_paths = [NodePath("Bone-84"), NodePath("Bone-80"), NodePath("Bone-81"), NodePath("Bone-82")] +metadata/connected_nodes_idx = [84, 80, 81, 82] +metadata/_local_pose_override_enabled_ = true -[node name="Joint2D-Bone-5-Bone-4" type="PinJoint2D" parent="Egg5/Bone-5"] -visible = false -rotation = -2.58474 -node_a = NodePath("..") -node_b = NodePath("../../Bone-4") -softness = 50.0 +[node name="Bone-84" type="Bone2D" parent="Egg5/Skeleton2D"] +position = Vector2(167, 215) +rotation = -2.24554 +scale = Vector2(1, 1) +rest = Transform2D(-0.624697, -0.780867, 0.780867, -0.624697, 167, 215) +auto_calculate_length_and_angle = false +length = 20.0 +bone_angle = 0.0 +metadata/vert_owned = [1594, 1595, 1596, 1597, 1598, 1599, 1600, 1601, 1602, 1603, 1604, 1605, 1606, 1607, 1608, 1609, 1610, 1611, 1612, 1613, 1614, 1615, 1616, 1617, 1618, 1619, 1620, 1621, 1622] +metadata/idx = 84 +metadata/connected_nodes_paths = [NodePath("Bone-83"), NodePath("Bone-76"), NodePath("Bone-71"), NodePath("Bone-82")] +metadata/connected_nodes_idx = [83, 76, 71, 82] +metadata/_local_pose_override_enabled_ = true -[node name="Bone-6" parent="Egg5" instance=ExtResource("3_6ern4")] -position = Vector2(58.0856, 61.1244) -mass = 0.0793651 +[node name="Bone-0" type="RigidBody2D" parent="Egg5" instance=ExtResource("3_6ern4")] +position = Vector2(29.5, 70) +input_pickable = true +mass = 0.0942353 physics_material_override = ExtResource("3_durpg") -metadata/bone_name = &"Bone-6" +script = ExtResource("11_tqnjl") +metadata/idx = 0 +metadata/bone_name = &"Bone-0" -[node name="CircleShape2D" type="CollisionShape2D" parent="Egg5/Bone-6"] -shape = SubResource("CircleShape2D_4yipm") +[node name="CircleShape2D" type="CollisionShape2D" parent="Egg5/Bone-0"] +shape = SubResource("CircleShape2D_tkaeo") -[node name="RemoteTransform2D" type="RemoteTransform2D" parent="Egg5/Bone-6"] -remote_path = NodePath("../../Skeleton2D/Bone-6") +[node name="RemoteTransform2D" type="RemoteTransform2D" parent="Egg5/Bone-0"] +visible = false +remote_path = NodePath("../../Skeleton2D/Bone-0") update_rotation = false update_scale = false -[node name="Joint2D-Bone-6-Bone-1" type="PinJoint2D" parent="Egg5/Bone-6"] +[node name="Joint2D-Bone-0-Bone-1" type="PinJoint2D" parent="Egg5/Bone-0"] visible = false -rotation = -4.70529 +rotation = 0.171512 node_a = NodePath("..") node_b = NodePath("../../Bone-1") -softness = 50.0 +softness = 100.0 -[node name="Joint2D-Bone-6-Bone-2" type="PinJoint2D" parent="Egg5/Bone-6"] +[node name="Joint2D-Bone-0-Bone-3" type="PinJoint2D" parent="Egg5/Bone-0"] visible = false -rotation = 0.82771 +rotation = -1.5708 node_a = NodePath("..") -node_b = NodePath("../../Bone-2") -softness = 50.0 +node_b = NodePath("../../Bone-3") +softness = 100.0 -[node name="Joint2D-Bone-6-Bone-4" type="PinJoint2D" parent="Egg5/Bone-6"] +[node name="Joint2D-Bone-0-Bone-4" type="PinJoint2D" parent="Egg5/Bone-0"] visible = false -rotation = -2.98822 +rotation = -0.71883 node_a = NodePath("..") node_b = NodePath("../../Bone-4") -softness = 50.0 +softness = 100.0 -[node name="Joint2D-Bone-6-Bone-5" type="PinJoint2D" parent="Egg5/Bone-6"] +[node name="Joint2D-Bone-0-Bone-2" type="PinJoint2D" parent="Egg5/Bone-0"] visible = false -rotation = -3.29829 +rotation = -2.52877 node_a = NodePath("..") -node_b = NodePath("../../Bone-5") -softness = 50.0 +node_b = NodePath("../../Bone-2") +softness = 100.0 -[node name="Bone-7" parent="Egg5" instance=ExtResource("3_6ern4")] -position = Vector2(58.0464, 86.0714) -mass = 0.0793651 +[node name="Bone-1" type="RigidBody2D" parent="Egg5" instance=ExtResource("3_6ern4")] +position = Vector2(26.0357, 90) +input_pickable = true +mass = 0.0942353 physics_material_override = ExtResource("3_durpg") -metadata/bone_name = &"Bone-7" +script = ExtResource("11_tqnjl") +metadata/idx = 1 +metadata/bone_name = &"Bone-1" -[node name="CircleShape2D" type="CollisionShape2D" parent="Egg5/Bone-7"] -shape = SubResource("CircleShape2D_4yipm") +[node name="CircleShape2D" type="CollisionShape2D" parent="Egg5/Bone-1"] +shape = SubResource("CircleShape2D_tkaeo") -[node name="RemoteTransform2D" type="RemoteTransform2D" parent="Egg5/Bone-7"] -remote_path = NodePath("../../Skeleton2D/Bone-7") +[node name="RemoteTransform2D" type="RemoteTransform2D" parent="Egg5/Bone-1"] +visible = false +remote_path = NodePath("../../Skeleton2D/Bone-1") update_rotation = false update_scale = false -[node name="Joint2D-Bone-7-Bone-1" type="PinJoint2D" parent="Egg5/Bone-7"] +[node name="Joint2D-Bone-1-Bone-0" type="PinJoint2D" parent="Egg5/Bone-1"] visible = false -rotation = -3.87726 +rotation = -2.97008 node_a = NodePath("..") -node_b = NodePath("../../Bone-1") -softness = 50.0 +node_b = NodePath("../../Bone-0") +softness = 100.0 -[node name="Joint2D-Bone-7-Bone-2" type="PinJoint2D" parent="Egg5/Bone-7"] +[node name="Joint2D-Bone-1-Bone-3" type="PinJoint2D" parent="Egg5/Bone-1"] visible = false -rotation = -4.70914 +rotation = -2.33266 node_a = NodePath("..") -node_b = NodePath("../../Bone-2") -softness = 50.0 +node_b = NodePath("../../Bone-3") +softness = 100.0 -[node name="Joint2D-Bone-7-Bone-3" type="PinJoint2D" parent="Egg5/Bone-7"] +[node name="Joint2D-Bone-1-Bone-4" type="PinJoint2D" parent="Egg5/Bone-1"] visible = false -rotation = 0.789488 +rotation = -1.5708 node_a = NodePath("..") -node_b = NodePath("../../Bone-3") -softness = 50.0 +node_b = NodePath("../../Bone-4") +softness = 100.0 -[node name="Joint2D-Bone-7-Bone-6" type="PinJoint2D" parent="Egg5/Bone-7"] +[node name="Joint2D-Bone-1-Bone-17" type="PinJoint2D" parent="Egg5/Bone-1"] visible = false -rotation = -3.14002 +rotation = 0.129996 node_a = NodePath("..") -node_b = NodePath("../../Bone-6") -softness = 50.0 +node_b = NodePath("../../Bone-17") +softness = 100.0 + +[node name="Joint2D-Bone-1-Bone-22" type="PinJoint2D" parent="Egg5/Bone-1"] +visible = false +rotation = -0.808933 +node_a = NodePath("..") +node_b = NodePath("../../Bone-22") +softness = 100.0 -[node name="Bone-8" parent="Egg5" instance=ExtResource("3_6ern4")] -position = Vector2(57.9561, 111.034) -mass = 0.0793651 +[node name="Bone-2" type="RigidBody2D" parent="Egg5" instance=ExtResource("3_6ern4")] +position = Vector2(43.5625, 50) +input_pickable = true +mass = 0.0942353 physics_material_override = ExtResource("3_durpg") -metadata/bone_name = &"Bone-8" +script = ExtResource("11_tqnjl") +metadata/idx = 2 +metadata/bone_name = &"Bone-2" -[node name="CircleShape2D" type="CollisionShape2D" parent="Egg5/Bone-8"] -shape = SubResource("CircleShape2D_4yipm") +[node name="CircleShape2D" type="CollisionShape2D" parent="Egg5/Bone-2"] +shape = SubResource("CircleShape2D_tkaeo") -[node name="RemoteTransform2D" type="RemoteTransform2D" parent="Egg5/Bone-8"] -remote_path = NodePath("../../Skeleton2D/Bone-8") +[node name="RemoteTransform2D" type="RemoteTransform2D" parent="Egg5/Bone-2"] +visible = false +remote_path = NodePath("../../Skeleton2D/Bone-2") update_rotation = false update_scale = false -[node name="Joint2D-Bone-8-Bone-0" type="PinJoint2D" parent="Egg5/Bone-8"] +[node name="Joint2D-Bone-2-Bone-5" type="PinJoint2D" parent="Egg5/Bone-2"] visible = false -rotation = -4.71183 +rotation = -2.53782 node_a = NodePath("..") -node_b = NodePath("../../Bone-0") -softness = 50.0 +node_b = NodePath("../../Bone-5") +softness = 100.0 -[node name="Joint2D-Bone-8-Bone-2" type="PinJoint2D" parent="Egg5/Bone-8"] +[node name="Joint2D-Bone-2-Bone-0" type="PinJoint2D" parent="Egg5/Bone-2"] visible = false -rotation = -3.96308 +rotation = 0.61282 node_a = NodePath("..") -node_b = NodePath("../../Bone-2") -softness = 50.0 +node_b = NodePath("../../Bone-0") +softness = 100.0 -[node name="Joint2D-Bone-8-Bone-3" type="PinJoint2D" parent="Egg5/Bone-8"] +[node name="Joint2D-Bone-2-Bone-3" type="PinJoint2D" parent="Egg5/Bone-2"] visible = false -rotation = -4.71079 +rotation = -0.170212 node_a = NodePath("..") node_b = NodePath("../../Bone-3") -softness = 50.0 +softness = 100.0 -[node name="Joint2D-Bone-8-Bone-7" type="PinJoint2D" parent="Egg5/Bone-8"] +[node name="Joint2D-Bone-2-Bone-6" type="PinJoint2D" parent="Egg5/Bone-2"] +visible = false +rotation = -1.5708 +node_a = NodePath("..") +node_b = NodePath("../../Bone-6") +softness = 100.0 + +[node name="Joint2D-Bone-2-Bone-7" type="PinJoint2D" parent="Egg5/Bone-2"] visible = false -rotation = -3.13798 +rotation = -0.86437 node_a = NodePath("..") node_b = NodePath("../../Bone-7") -softness = 50.0 +softness = 100.0 -[node name="Bone-9" parent="Egg5" instance=ExtResource("3_6ern4")] -position = Vector2(83.0061, 17.3472) -mass = 0.0793651 +[node name="Bone-3" type="RigidBody2D" parent="Egg5" instance=ExtResource("3_6ern4")] +position = Vector2(47, 70) +input_pickable = true +mass = 0.0942353 physics_material_override = ExtResource("3_durpg") -metadata/bone_name = &"Bone-9" +script = ExtResource("11_tqnjl") +metadata/idx = 3 +metadata/bone_name = &"Bone-3" -[node name="CircleShape2D" type="CollisionShape2D" parent="Egg5/Bone-9"] -shape = SubResource("CircleShape2D_4yipm") +[node name="CircleShape2D" type="CollisionShape2D" parent="Egg5/Bone-3"] +shape = SubResource("CircleShape2D_tkaeo") -[node name="RemoteTransform2D" type="RemoteTransform2D" parent="Egg5/Bone-9"] -remote_path = NodePath("../../Skeleton2D/Bone-9") +[node name="RemoteTransform2D" type="RemoteTransform2D" parent="Egg5/Bone-3"] +visible = false +remote_path = NodePath("../../Skeleton2D/Bone-3") update_rotation = false update_scale = false -[node name="Joint2D-Bone-9-Bone-4" type="PinJoint2D" parent="Egg5/Bone-9"] +[node name="Joint2D-Bone-3-Bone-0" type="PinJoint2D" parent="Egg5/Bone-3"] visible = false -rotation = 1.46746 +rotation = 1.5708 node_a = NodePath("..") -node_b = NodePath("../../Bone-4") -softness = 50.0 +node_b = NodePath("../../Bone-0") +softness = 100.0 -[node name="Joint2D-Bone-9-Bone-5" type="PinJoint2D" parent="Egg5/Bone-9"] +[node name="Joint2D-Bone-3-Bone-1" type="PinJoint2D" parent="Egg5/Bone-3"] visible = false -rotation = 0.996816 +rotation = 0.808933 node_a = NodePath("..") -node_b = NodePath("../../Bone-5") -softness = 50.0 - -[node name="Bone-10" parent="Egg5" instance=ExtResource("3_6ern4")] -position = Vector2(83.141, 36.1372) -mass = 0.0793651 -physics_material_override = ExtResource("3_durpg") -metadata/bone_name = &"Bone-10" - -[node name="CircleShape2D" type="CollisionShape2D" parent="Egg5/Bone-10"] -shape = SubResource("CircleShape2D_4yipm") - -[node name="RemoteTransform2D" type="RemoteTransform2D" parent="Egg5/Bone-10"] -remote_path = NodePath("../../Skeleton2D/Bone-10") -update_rotation = false -update_scale = false +node_b = NodePath("../../Bone-1") +softness = 100.0 -[node name="Joint2D-Bone-10-Bone-4" type="PinJoint2D" parent="Egg5/Bone-10"] +[node name="Joint2D-Bone-3-Bone-4" type="PinJoint2D" parent="Egg5/Bone-3"] visible = false -rotation = -3.9751 node_a = NodePath("..") node_b = NodePath("../../Bone-4") -softness = 50.0 +softness = 100.0 -[node name="Joint2D-Bone-10-Bone-5" type="PinJoint2D" parent="Egg5/Bone-10"] +[node name="Joint2D-Bone-3-Bone-2" type="PinJoint2D" parent="Egg5/Bone-3"] visible = false -rotation = -4.70852 +rotation = -3.3118 node_a = NodePath("..") -node_b = NodePath("../../Bone-5") -softness = 50.0 +node_b = NodePath("../../Bone-2") +softness = 100.0 -[node name="Joint2D-Bone-10-Bone-6" type="PinJoint2D" parent="Egg5/Bone-10"] +[node name="Joint2D-Bone-3-Bone-6" type="PinJoint2D" parent="Egg5/Bone-3"] visible = false -rotation = 0.786761 +rotation = -2.35619 node_a = NodePath("..") node_b = NodePath("../../Bone-6") -softness = 50.0 +softness = 100.0 -[node name="Joint2D-Bone-10-Bone-9" type="PinJoint2D" parent="Egg5/Bone-10"] +[node name="Joint2D-Bone-3-Bone-7" type="PinJoint2D" parent="Egg5/Bone-3"] visible = false -rotation = -3.14878 +rotation = -1.5708 node_a = NodePath("..") -node_b = NodePath("../../Bone-9") -softness = 50.0 +node_b = NodePath("../../Bone-7") +softness = 100.0 + +[node name="Joint2D-Bone-3-Bone-8" type="PinJoint2D" parent="Egg5/Bone-3"] +visible = false +rotation = -0.785398 +node_a = NodePath("..") +node_b = NodePath("../../Bone-8") +softness = 100.0 -[node name="Bone-11" parent="Egg5" instance=ExtResource("3_6ern4")] -position = Vector2(83.0207, 61.0943) -mass = 0.0793651 +[node name="Bone-4" type="RigidBody2D" parent="Egg5" instance=ExtResource("3_6ern4")] +position = Vector2(47, 90) +input_pickable = true +mass = 0.0942353 physics_material_override = ExtResource("3_durpg") -metadata/bone_name = &"Bone-11" +script = ExtResource("11_tqnjl") +metadata/idx = 4 +metadata/bone_name = &"Bone-4" -[node name="CircleShape2D" type="CollisionShape2D" parent="Egg5/Bone-11"] -shape = SubResource("CircleShape2D_4yipm") +[node name="CircleShape2D" type="CollisionShape2D" parent="Egg5/Bone-4"] +shape = SubResource("CircleShape2D_tkaeo") -[node name="RemoteTransform2D" type="RemoteTransform2D" parent="Egg5/Bone-11"] -remote_path = NodePath("../../Skeleton2D/Bone-11") +[node name="RemoteTransform2D" type="RemoteTransform2D" parent="Egg5/Bone-4"] +visible = false +remote_path = NodePath("../../Skeleton2D/Bone-4") update_rotation = false update_scale = false -[node name="Joint2D-Bone-11-Bone-4" type="PinJoint2D" parent="Egg5/Bone-11"] +[node name="Joint2D-Bone-4-Bone-0" type="PinJoint2D" parent="Egg5/Bone-4"] visible = false -rotation = -3.55723 +rotation = -3.86042 node_a = NodePath("..") -node_b = NodePath("../../Bone-4") -softness = 50.0 +node_b = NodePath("../../Bone-0") +softness = 100.0 -[node name="Joint2D-Bone-11-Bone-5" type="PinJoint2D" parent="Egg5/Bone-11"] +[node name="Joint2D-Bone-4-Bone-1" type="PinJoint2D" parent="Egg5/Bone-4"] visible = false -rotation = -3.99786 +rotation = 1.5708 node_a = NodePath("..") -node_b = NodePath("../../Bone-5") -softness = 50.0 +node_b = NodePath("../../Bone-1") +softness = 100.0 -[node name="Joint2D-Bone-11-Bone-6" type="PinJoint2D" parent="Egg5/Bone-11"] +[node name="Joint2D-Bone-4-Bone-3" type="PinJoint2D" parent="Egg5/Bone-4"] visible = false -rotation = 1.56959 +rotation = -3.14159 node_a = NodePath("..") -node_b = NodePath("../../Bone-6") -softness = 50.0 +node_b = NodePath("../../Bone-3") +softness = 100.0 -[node name="Joint2D-Bone-11-Bone-7" type="PinJoint2D" parent="Egg5/Bone-11"] +[node name="Joint2D-Bone-4-Bone-17" type="PinJoint2D" parent="Egg5/Bone-4"] +visible = false +rotation = 0.86734 +node_a = NodePath("..") +node_b = NodePath("../../Bone-17") +softness = 100.0 + +[node name="Joint2D-Bone-4-Bone-22" type="PinJoint2D" parent="Egg5/Bone-4"] visible = false -rotation = 0.785342 +node_a = NodePath("..") +node_b = NodePath("../../Bone-22") +softness = 100.0 + +[node name="Joint2D-Bone-4-Bone-7" type="PinJoint2D" parent="Egg5/Bone-4"] +visible = false +rotation = -2.35619 node_a = NodePath("..") node_b = NodePath("../../Bone-7") -softness = 50.0 +softness = 100.0 -[node name="Joint2D-Bone-11-Bone-9" type="PinJoint2D" parent="Egg5/Bone-11"] +[node name="Joint2D-Bone-4-Bone-8" type="PinJoint2D" parent="Egg5/Bone-4"] visible = false -rotation = -3.14193 +rotation = -1.5708 node_a = NodePath("..") -node_b = NodePath("../../Bone-9") -softness = 50.0 +node_b = NodePath("../../Bone-8") +softness = 100.0 -[node name="Joint2D-Bone-11-Bone-10" type="PinJoint2D" parent="Egg5/Bone-11"] +[node name="Joint2D-Bone-4-Bone-27" type="PinJoint2D" parent="Egg5/Bone-4"] visible = false -rotation = -3.13677 +rotation = -0.785398 node_a = NodePath("..") -node_b = NodePath("../../Bone-10") -softness = 50.0 +node_b = NodePath("../../Bone-27") +softness = 100.0 -[node name="Bone-12" parent="Egg5" instance=ExtResource("3_6ern4")] -position = Vector2(83.1334, 86.031) -mass = 0.0793651 +[node name="Bone-5" type="RigidBody2D" parent="Egg5" instance=ExtResource("3_6ern4")] +position = Vector2(60, 26.1667) +input_pickable = true +mass = 0.0942353 physics_material_override = ExtResource("3_durpg") -metadata/bone_name = &"Bone-12" +script = ExtResource("11_tqnjl") +metadata/idx = 5 +metadata/bone_name = &"Bone-5" -[node name="CircleShape2D" type="CollisionShape2D" parent="Egg5/Bone-12"] -shape = SubResource("CircleShape2D_4yipm") +[node name="CircleShape2D" type="CollisionShape2D" parent="Egg5/Bone-5"] +shape = SubResource("CircleShape2D_tkaeo") -[node name="RemoteTransform2D" type="RemoteTransform2D" parent="Egg5/Bone-12"] -remote_path = NodePath("../../Skeleton2D/Bone-12") +[node name="RemoteTransform2D" type="RemoteTransform2D" parent="Egg5/Bone-5"] +visible = false +remote_path = NodePath("../../Skeleton2D/Bone-5") update_rotation = false update_scale = false -[node name="Joint2D-Bone-12-Bone-6" type="PinJoint2D" parent="Egg5/Bone-12"] +[node name="Joint2D-Bone-5-Bone-2" type="PinJoint2D" parent="Egg5/Bone-5"] visible = false -rotation = -3.92982 +rotation = 0.60377 node_a = NodePath("..") -node_b = NodePath("../../Bone-6") -softness = 50.0 +node_b = NodePath("../../Bone-2") +softness = 100.0 -[node name="Joint2D-Bone-12-Bone-7" type="PinJoint2D" parent="Egg5/Bone-12"] +[node name="Joint2D-Bone-5-Bone-6" type="PinJoint2D" parent="Egg5/Bone-5"] visible = false -rotation = 1.56919 +rotation = -0.285673 node_a = NodePath("..") -node_b = NodePath("../../Bone-7") -softness = 50.0 +node_b = NodePath("../../Bone-6") +softness = 100.0 -[node name="Joint2D-Bone-12-Bone-8" type="PinJoint2D" parent="Egg5/Bone-12"] +[node name="Joint2D-Bone-5-Bone-10" type="PinJoint2D" parent="Egg5/Bone-5"] visible = false -rotation = 0.788865 +rotation = -1.42976 node_a = NodePath("..") -node_b = NodePath("../../Bone-8") -softness = 50.0 +node_b = NodePath("../../Bone-10") +softness = 100.0 -[node name="Joint2D-Bone-12-Bone-11" type="PinJoint2D" parent="Egg5/Bone-12"] +[node name="Joint2D-Bone-5-Bone-11" type="PinJoint2D" parent="Egg5/Bone-5"] visible = false -rotation = -3.14611 +rotation = -0.847613 node_a = NodePath("..") node_b = NodePath("../../Bone-11") -softness = 50.0 +softness = 100.0 + +[node name="Joint2D-Bone-5-Bone-9" type="PinJoint2D" parent="Egg5/Bone-5"] +visible = false +rotation = -1.96295 +node_a = NodePath("..") +node_b = NodePath("../../Bone-9") +softness = 100.0 -[node name="Bone-13" parent="Egg5" instance=ExtResource("3_6ern4")] -position = Vector2(83.0098, 110.984) -mass = 0.0793651 +[node name="Bone-6" type="RigidBody2D" parent="Egg5" instance=ExtResource("3_6ern4")] +position = Vector2(67, 50) +input_pickable = true +mass = 0.0942353 physics_material_override = ExtResource("3_durpg") -metadata/bone_name = &"Bone-13" +script = ExtResource("11_tqnjl") +metadata/idx = 6 +metadata/bone_name = &"Bone-6" -[node name="CircleShape2D" type="CollisionShape2D" parent="Egg5/Bone-13"] -shape = SubResource("CircleShape2D_4yipm") +[node name="CircleShape2D" type="CollisionShape2D" parent="Egg5/Bone-6"] +shape = SubResource("CircleShape2D_tkaeo") -[node name="RemoteTransform2D" type="RemoteTransform2D" parent="Egg5/Bone-13"] -remote_path = NodePath("../../Skeleton2D/Bone-13") +[node name="RemoteTransform2D" type="RemoteTransform2D" parent="Egg5/Bone-6"] +visible = false +remote_path = NodePath("../../Skeleton2D/Bone-6") update_rotation = false update_scale = false -[node name="Joint2D-Bone-13-Bone-7" type="PinJoint2D" parent="Egg5/Bone-13"] +[node name="Joint2D-Bone-6-Bone-2" type="PinJoint2D" parent="Egg5/Bone-6"] visible = false -rotation = -3.92801 +rotation = 1.5708 node_a = NodePath("..") -node_b = NodePath("../../Bone-7") -softness = 50.0 +node_b = NodePath("../../Bone-2") +softness = 100.0 -[node name="Joint2D-Bone-13-Bone-8" type="PinJoint2D" parent="Egg5/Bone-13"] +[node name="Joint2D-Bone-6-Bone-3" type="PinJoint2D" parent="Egg5/Bone-6"] visible = false -rotation = 1.56878 +rotation = 0.785398 node_a = NodePath("..") -node_b = NodePath("../../Bone-8") -softness = 50.0 +node_b = NodePath("../../Bone-3") +softness = 100.0 -[node name="Joint2D-Bone-13-Bone-12" type="PinJoint2D" parent="Egg5/Bone-13"] +[node name="Joint2D-Bone-6-Bone-7" type="PinJoint2D" parent="Egg5/Bone-6"] visible = false -rotation = -3.13664 node_a = NodePath("..") -node_b = NodePath("../../Bone-12") -softness = 50.0 - -[node name="Bone-14" parent="Egg5" instance=ExtResource("3_6ern4")] -position = Vector2(110.412, 17.3095) -mass = 0.0793651 -physics_material_override = ExtResource("3_durpg") -metadata/bone_name = &"Bone-14" - -[node name="CircleShape2D" type="CollisionShape2D" parent="Egg5/Bone-14"] -shape = SubResource("CircleShape2D_4yipm") +node_b = NodePath("../../Bone-7") +softness = 100.0 -[node name="RemoteTransform2D" type="RemoteTransform2D" parent="Egg5/Bone-14"] -remote_path = NodePath("../../Skeleton2D/Bone-14") -update_rotation = false -update_scale = false +[node name="Joint2D-Bone-6-Bone-5" type="PinJoint2D" parent="Egg5/Bone-6"] +visible = false +rotation = -3.42727 +node_a = NodePath("..") +node_b = NodePath("../../Bone-5") +softness = 100.0 -[node name="Joint2D-Bone-14-Bone-4" type="PinJoint2D" parent="Egg5/Bone-14"] +[node name="Joint2D-Bone-6-Bone-10" type="PinJoint2D" parent="Egg5/Bone-6"] visible = false -rotation = 1.52828 +rotation = -2.35619 node_a = NodePath("..") -node_b = NodePath("../../Bone-4") -softness = 50.0 +node_b = NodePath("../../Bone-10") +softness = 100.0 -[node name="Joint2D-Bone-14-Bone-9" type="PinJoint2D" parent="Egg5/Bone-14"] +[node name="Joint2D-Bone-6-Bone-11" type="PinJoint2D" parent="Egg5/Bone-6"] visible = false -rotation = 1.56942 +rotation = -1.5708 node_a = NodePath("..") -node_b = NodePath("../../Bone-9") -softness = 50.0 +node_b = NodePath("../../Bone-11") +softness = 100.0 -[node name="Joint2D-Bone-14-Bone-10" type="PinJoint2D" parent="Egg5/Bone-14"] +[node name="Joint2D-Bone-6-Bone-12" type="PinJoint2D" parent="Egg5/Bone-6"] visible = false -rotation = 0.966553 +rotation = -0.785398 node_a = NodePath("..") -node_b = NodePath("../../Bone-10") -softness = 50.0 +node_b = NodePath("../../Bone-12") +softness = 100.0 -[node name="Bone-15" parent="Egg5" instance=ExtResource("3_6ern4")] -position = Vector2(108.072, 35.9963) -mass = 0.0793651 +[node name="Bone-7" type="RigidBody2D" parent="Egg5" instance=ExtResource("3_6ern4")] +position = Vector2(67, 70) +input_pickable = true +mass = 0.0942353 physics_material_override = ExtResource("3_durpg") -metadata/bone_name = &"Bone-15" +script = ExtResource("11_tqnjl") +metadata/idx = 7 +metadata/bone_name = &"Bone-7" -[node name="CircleShape2D" type="CollisionShape2D" parent="Egg5/Bone-15"] -shape = SubResource("CircleShape2D_4yipm") +[node name="CircleShape2D" type="CollisionShape2D" parent="Egg5/Bone-7"] +shape = SubResource("CircleShape2D_tkaeo") -[node name="RemoteTransform2D" type="RemoteTransform2D" parent="Egg5/Bone-15"] -remote_path = NodePath("../../Skeleton2D/Bone-15") +[node name="RemoteTransform2D" type="RemoteTransform2D" parent="Egg5/Bone-7"] +visible = false +remote_path = NodePath("../../Skeleton2D/Bone-7") update_rotation = false update_scale = false -[node name="Joint2D-Bone-15-Bone-9" type="PinJoint2D" parent="Egg5/Bone-15"] +[node name="Joint2D-Bone-7-Bone-2" type="PinJoint2D" parent="Egg5/Bone-7"] visible = false -rotation = -4.07274 +rotation = -4.00596 node_a = NodePath("..") -node_b = NodePath("../../Bone-9") -softness = 50.0 +node_b = NodePath("../../Bone-2") +softness = 100.0 -[node name="Joint2D-Bone-15-Bone-10" type="PinJoint2D" parent="Egg5/Bone-15"] +[node name="Joint2D-Bone-7-Bone-3" type="PinJoint2D" parent="Egg5/Bone-7"] visible = false -rotation = 1.56515 +rotation = 1.5708 node_a = NodePath("..") -node_b = NodePath("../../Bone-10") -softness = 50.0 +node_b = NodePath("../../Bone-3") +softness = 100.0 -[node name="Joint2D-Bone-15-Bone-11" type="PinJoint2D" parent="Egg5/Bone-15"] +[node name="Joint2D-Bone-7-Bone-6" type="PinJoint2D" parent="Egg5/Bone-7"] visible = false -rotation = 0.784473 +rotation = -3.14159 node_a = NodePath("..") -node_b = NodePath("../../Bone-11") -softness = 50.0 +node_b = NodePath("../../Bone-6") +softness = 100.0 -[node name="Joint2D-Bone-15-Bone-14" type="PinJoint2D" parent="Egg5/Bone-15"] +[node name="Joint2D-Bone-7-Bone-4" type="PinJoint2D" parent="Egg5/Bone-7"] visible = false -rotation = -3.01701 +rotation = 0.785398 node_a = NodePath("..") -node_b = NodePath("../../Bone-14") -softness = 50.0 - -[node name="Bone-16" parent="Egg5" instance=ExtResource("3_6ern4")] -position = Vector2(107.991, 61.0896) -mass = 0.0793651 -physics_material_override = ExtResource("3_durpg") -metadata/bone_name = &"Bone-16" - -[node name="CircleShape2D" type="CollisionShape2D" parent="Egg5/Bone-16"] -shape = SubResource("CircleShape2D_4yipm") - -[node name="RemoteTransform2D" type="RemoteTransform2D" parent="Egg5/Bone-16"] -remote_path = NodePath("../../Skeleton2D/Bone-16") -update_rotation = false -update_scale = false +node_b = NodePath("../../Bone-4") +softness = 100.0 -[node name="Joint2D-Bone-16-Bone-10" type="PinJoint2D" parent="Egg5/Bone-16"] +[node name="Joint2D-Bone-7-Bone-8" type="PinJoint2D" parent="Egg5/Bone-7"] visible = false -rotation = -3.92494 node_a = NodePath("..") -node_b = NodePath("../../Bone-10") -softness = 50.0 +node_b = NodePath("../../Bone-8") +softness = 100.0 -[node name="Joint2D-Bone-16-Bone-11" type="PinJoint2D" parent="Egg5/Bone-16"] +[node name="Joint2D-Bone-7-Bone-11" type="PinJoint2D" parent="Egg5/Bone-7"] visible = false -rotation = 1.57061 +rotation = -2.35619 node_a = NodePath("..") node_b = NodePath("../../Bone-11") -softness = 50.0 +softness = 100.0 -[node name="Joint2D-Bone-16-Bone-12" type="PinJoint2D" parent="Egg5/Bone-16"] +[node name="Joint2D-Bone-7-Bone-12" type="PinJoint2D" parent="Egg5/Bone-7"] visible = false -rotation = 0.783721 +rotation = -1.5708 node_a = NodePath("..") node_b = NodePath("../../Bone-12") -softness = 50.0 - -[node name="Joint2D-Bone-16-Bone-14" type="PinJoint2D" parent="Egg5/Bone-16"] -visible = false -rotation = -3.08635 -node_a = NodePath("..") -node_b = NodePath("../../Bone-14") -softness = 50.0 +softness = 100.0 -[node name="Joint2D-Bone-16-Bone-15" type="PinJoint2D" parent="Egg5/Bone-16"] +[node name="Joint2D-Bone-7-Bone-13" type="PinJoint2D" parent="Egg5/Bone-7"] visible = false -rotation = -3.13837 +rotation = -0.785398 node_a = NodePath("..") -node_b = NodePath("../../Bone-15") -softness = 50.0 +node_b = NodePath("../../Bone-13") +softness = 100.0 -[node name="Bone-17" parent="Egg5" instance=ExtResource("3_6ern4")] -position = Vector2(108.12, 86.122) -mass = 0.0793651 +[node name="Bone-8" type="RigidBody2D" parent="Egg5" instance=ExtResource("3_6ern4")] +position = Vector2(67, 90) +input_pickable = true +mass = 0.0942353 physics_material_override = ExtResource("3_durpg") -metadata/bone_name = &"Bone-17" +script = ExtResource("11_tqnjl") +metadata/idx = 8 +metadata/bone_name = &"Bone-8" -[node name="CircleShape2D" type="CollisionShape2D" parent="Egg5/Bone-17"] -shape = SubResource("CircleShape2D_4yipm") +[node name="CircleShape2D" type="CollisionShape2D" parent="Egg5/Bone-8"] +shape = SubResource("CircleShape2D_tkaeo") -[node name="RemoteTransform2D" type="RemoteTransform2D" parent="Egg5/Bone-17"] -remote_path = NodePath("../../Skeleton2D/Bone-17") +[node name="RemoteTransform2D" type="RemoteTransform2D" parent="Egg5/Bone-8"] +visible = false +remote_path = NodePath("../../Skeleton2D/Bone-8") update_rotation = false update_scale = false -[node name="Joint2D-Bone-17-Bone-11" type="PinJoint2D" parent="Egg5/Bone-17"] +[node name="Joint2D-Bone-8-Bone-3" type="PinJoint2D" parent="Egg5/Bone-8"] visible = false -rotation = -3.92842 +rotation = -3.92699 node_a = NodePath("..") -node_b = NodePath("../../Bone-11") -softness = 50.0 +node_b = NodePath("../../Bone-3") +softness = 100.0 -[node name="Joint2D-Bone-17-Bone-12" type="PinJoint2D" parent="Egg5/Bone-17"] +[node name="Joint2D-Bone-8-Bone-4" type="PinJoint2D" parent="Egg5/Bone-8"] visible = false -rotation = -4.70875 +rotation = 1.5708 node_a = NodePath("..") -node_b = NodePath("../../Bone-12") -softness = 50.0 +node_b = NodePath("../../Bone-4") +softness = 100.0 -[node name="Joint2D-Bone-17-Bone-13" type="PinJoint2D" parent="Egg5/Bone-17"] +[node name="Joint2D-Bone-8-Bone-7" type="PinJoint2D" parent="Egg5/Bone-8"] visible = false -rotation = 0.790369 +rotation = -3.14159 node_a = NodePath("..") -node_b = NodePath("../../Bone-13") -softness = 50.0 +node_b = NodePath("../../Bone-7") +softness = 100.0 -[node name="Joint2D-Bone-17-Bone-16" type="PinJoint2D" parent="Egg5/Bone-17"] +[node name="Joint2D-Bone-8-Bone-22" type="PinJoint2D" parent="Egg5/Bone-8"] visible = false -rotation = -3.14673 +rotation = 0.785398 node_a = NodePath("..") -node_b = NodePath("../../Bone-16") -softness = 50.0 - -[node name="Bone-18" parent="Egg5" instance=ExtResource("3_6ern4")] -position = Vector2(108.04, 111.175) -mass = 0.0793651 -physics_material_override = ExtResource("3_durpg") -metadata/bone_name = &"Bone-18" - -[node name="CircleShape2D" type="CollisionShape2D" parent="Egg5/Bone-18"] -shape = SubResource("CircleShape2D_4yipm") +node_b = NodePath("../../Bone-22") +softness = 100.0 -[node name="RemoteTransform2D" type="RemoteTransform2D" parent="Egg5/Bone-18"] -remote_path = NodePath("../../Skeleton2D/Bone-18") -update_rotation = false -update_scale = false +[node name="Joint2D-Bone-8-Bone-27" type="PinJoint2D" parent="Egg5/Bone-8"] +visible = false +node_a = NodePath("..") +node_b = NodePath("../../Bone-27") +softness = 100.0 -[node name="Joint2D-Bone-18-Bone-12" type="PinJoint2D" parent="Egg5/Bone-18"] +[node name="Joint2D-Bone-8-Bone-12" type="PinJoint2D" parent="Egg5/Bone-8"] visible = false -rotation = -3.92225 +rotation = -2.35619 node_a = NodePath("..") node_b = NodePath("../../Bone-12") -softness = 50.0 +softness = 100.0 -[node name="Joint2D-Bone-18-Bone-13" type="PinJoint2D" parent="Egg5/Bone-18"] +[node name="Joint2D-Bone-8-Bone-13" type="PinJoint2D" parent="Egg5/Bone-8"] visible = false -rotation = -4.70473 +rotation = -1.5708 node_a = NodePath("..") node_b = NodePath("../../Bone-13") -softness = 50.0 +softness = 100.0 -[node name="Joint2D-Bone-18-Bone-17" type="PinJoint2D" parent="Egg5/Bone-18"] +[node name="Joint2D-Bone-8-Bone-32" type="PinJoint2D" parent="Egg5/Bone-8"] visible = false -rotation = -3.13842 +rotation = -0.785398 node_a = NodePath("..") -node_b = NodePath("../../Bone-17") -softness = 50.0 +node_b = NodePath("../../Bone-32") +softness = 100.0 -[node name="Bone-19" parent="Egg5" instance=ExtResource("3_6ern4")] -position = Vector2(14.2099, 136.046) -mass = 0.0793651 +[node name="Bone-9" type="RigidBody2D" parent="Egg5" instance=ExtResource("3_6ern4")] +position = Vector2(87, 15) +input_pickable = true +mass = 0.0942353 physics_material_override = ExtResource("3_durpg") -metadata/bone_name = &"Bone-19" +script = ExtResource("11_tqnjl") +metadata/idx = 9 +metadata/bone_name = &"Bone-9" -[node name="CircleShape2D" type="CollisionShape2D" parent="Egg5/Bone-19"] -shape = SubResource("CircleShape2D_4yipm") +[node name="CircleShape2D" type="CollisionShape2D" parent="Egg5/Bone-9"] +shape = SubResource("CircleShape2D_tkaeo") -[node name="RemoteTransform2D" type="RemoteTransform2D" parent="Egg5/Bone-19"] -remote_path = NodePath("../../Skeleton2D/Bone-19") +[node name="RemoteTransform2D" type="RemoteTransform2D" parent="Egg5/Bone-9"] +visible = false +remote_path = NodePath("../../Skeleton2D/Bone-9") update_rotation = false update_scale = false -[node name="Joint2D-Bone-19-Bone-0" type="PinJoint2D" parent="Egg5/Bone-19"] +[node name="Joint2D-Bone-9-Bone-45" type="PinJoint2D" parent="Egg5/Bone-9"] visible = false -rotation = -3.09649 +rotation = -1.14417 node_a = NodePath("..") -node_b = NodePath("../../Bone-0") -softness = 50.0 +node_b = NodePath("../../Bone-45") +softness = 100.0 -[node name="Joint2D-Bone-19-Bone-3" type="PinJoint2D" parent="Egg5/Bone-19"] +[node name="Joint2D-Bone-9-Bone-5" type="PinJoint2D" parent="Egg5/Bone-9"] visible = false -rotation = -2.50013 +rotation = 1.17864 node_a = NodePath("..") -node_b = NodePath("../../Bone-3") -softness = 50.0 - -[node name="Bone-20" parent="Egg5" instance=ExtResource("3_6ern4")] -position = Vector2(14.3345, 161.133) -mass = 0.0793651 -physics_material_override = ExtResource("3_durpg") -metadata/bone_name = &"Bone-20" - -[node name="CircleShape2D" type="CollisionShape2D" parent="Egg5/Bone-20"] -shape = SubResource("CircleShape2D_4yipm") - -[node name="RemoteTransform2D" type="RemoteTransform2D" parent="Egg5/Bone-20"] -remote_path = NodePath("../../Skeleton2D/Bone-20") -update_rotation = false -update_scale = false +node_b = NodePath("../../Bone-5") +softness = 100.0 -[node name="Joint2D-Bone-20-Bone-19" type="PinJoint2D" parent="Egg5/Bone-20"] +[node name="Joint2D-Bone-9-Bone-10" type="PinJoint2D" parent="Egg5/Bone-9"] visible = false -rotation = -3.14656 node_a = NodePath("..") -node_b = NodePath("../../Bone-19") -softness = 50.0 +node_b = NodePath("../../Bone-10") +softness = 100.0 -[node name="Bone-21" parent="Egg5" instance=ExtResource("3_6ern4")] -position = Vector2(15.0426, 189.577) -mass = 0.0793651 +[node name="Bone-10" type="RigidBody2D" parent="Egg5" instance=ExtResource("3_6ern4")] +position = Vector2(87, 30) +input_pickable = true +mass = 0.0942353 physics_material_override = ExtResource("3_durpg") -metadata/bone_name = &"Bone-21" +script = ExtResource("11_tqnjl") +metadata/idx = 10 +metadata/bone_name = &"Bone-10" -[node name="CircleShape2D" type="CollisionShape2D" parent="Egg5/Bone-21"] -shape = SubResource("CircleShape2D_4yipm") +[node name="CircleShape2D" type="CollisionShape2D" parent="Egg5/Bone-10"] +shape = SubResource("CircleShape2D_tkaeo") -[node name="RemoteTransform2D" type="RemoteTransform2D" parent="Egg5/Bone-21"] -remote_path = NodePath("../../Skeleton2D/Bone-21") +[node name="RemoteTransform2D" type="RemoteTransform2D" parent="Egg5/Bone-10"] +visible = false +remote_path = NodePath("../../Skeleton2D/Bone-10") update_rotation = false update_scale = false -[node name="Joint2D-Bone-21-Bone-20" type="PinJoint2D" parent="Egg5/Bone-21"] +[node name="Joint2D-Bone-10-Bone-5" type="PinJoint2D" parent="Egg5/Bone-10"] visible = false -rotation = -3.16648 +rotation = -4.57136 node_a = NodePath("..") -node_b = NodePath("../../Bone-20") -softness = 50.0 - -[node name="Bone-22" parent="Egg5" instance=ExtResource("3_6ern4")] -position = Vector2(32.9935, 136.048) -mass = 0.0793651 -physics_material_override = ExtResource("3_durpg") -metadata/bone_name = &"Bone-22" - -[node name="CircleShape2D" type="CollisionShape2D" parent="Egg5/Bone-22"] -shape = SubResource("CircleShape2D_4yipm") - -[node name="RemoteTransform2D" type="RemoteTransform2D" parent="Egg5/Bone-22"] -remote_path = NodePath("../../Skeleton2D/Bone-22") -update_rotation = false -update_scale = false +node_b = NodePath("../../Bone-5") +softness = 100.0 -[node name="Joint2D-Bone-22-Bone-0" type="PinJoint2D" parent="Egg5/Bone-22"] +[node name="Joint2D-Bone-10-Bone-6" type="PinJoint2D" parent="Egg5/Bone-10"] visible = false -rotation = -3.75572 +rotation = 0.785398 node_a = NodePath("..") -node_b = NodePath("../../Bone-0") -softness = 50.0 +node_b = NodePath("../../Bone-6") +softness = 100.0 -[node name="Joint2D-Bone-22-Bone-3" type="PinJoint2D" parent="Egg5/Bone-22"] +[node name="Joint2D-Bone-10-Bone-11" type="PinJoint2D" parent="Egg5/Bone-10"] visible = false -rotation = -3.14457 node_a = NodePath("..") -node_b = NodePath("../../Bone-3") -softness = 50.0 +node_b = NodePath("../../Bone-11") +softness = 100.0 -[node name="Joint2D-Bone-22-Bone-8" type="PinJoint2D" parent="Egg5/Bone-22"] +[node name="Joint2D-Bone-10-Bone-9" type="PinJoint2D" parent="Egg5/Bone-10"] visible = false -rotation = -2.35722 +rotation = -3.14159 node_a = NodePath("..") -node_b = NodePath("../../Bone-8") -softness = 50.0 +node_b = NodePath("../../Bone-9") +softness = 100.0 -[node name="Joint2D-Bone-22-Bone-19" type="PinJoint2D" parent="Egg5/Bone-22"] +[node name="Joint2D-Bone-10-Bone-45" type="PinJoint2D" parent="Egg5/Bone-10"] visible = false -rotation = -4.71225 +rotation = -1.79427 node_a = NodePath("..") -node_b = NodePath("../../Bone-19") -softness = 50.0 +node_b = NodePath("../../Bone-45") +softness = 100.0 -[node name="Joint2D-Bone-22-Bone-20" type="PinJoint2D" parent="Egg5/Bone-22"] +[node name="Joint2D-Bone-10-Bone-46" type="PinJoint2D" parent="Egg5/Bone-10"] visible = false -rotation = 0.63954 +rotation = -0.785398 node_a = NodePath("..") -node_b = NodePath("../../Bone-20") -softness = 50.0 +node_b = NodePath("../../Bone-46") +softness = 100.0 -[node name="Bone-23" parent="Egg5" instance=ExtResource("3_6ern4")] -position = Vector2(32.9029, 160.983) -mass = 0.0793651 +[node name="Bone-11" type="RigidBody2D" parent="Egg5" instance=ExtResource("3_6ern4")] +position = Vector2(87, 50) +input_pickable = true +mass = 0.0942353 physics_material_override = ExtResource("3_durpg") -metadata/bone_name = &"Bone-23" +script = ExtResource("11_tqnjl") +metadata/idx = 11 +metadata/bone_name = &"Bone-11" -[node name="CircleShape2D" type="CollisionShape2D" parent="Egg5/Bone-23"] -shape = SubResource("CircleShape2D_4yipm") +[node name="CircleShape2D" type="CollisionShape2D" parent="Egg5/Bone-11"] +shape = SubResource("CircleShape2D_tkaeo") -[node name="RemoteTransform2D" type="RemoteTransform2D" parent="Egg5/Bone-23"] -remote_path = NodePath("../../Skeleton2D/Bone-23") +[node name="RemoteTransform2D" type="RemoteTransform2D" parent="Egg5/Bone-11"] +visible = false +remote_path = NodePath("../../Skeleton2D/Bone-11") update_rotation = false update_scale = false -[node name="Joint2D-Bone-23-Bone-19" type="PinJoint2D" parent="Egg5/Bone-23"] +[node name="Joint2D-Bone-11-Bone-5" type="PinJoint2D" parent="Egg5/Bone-11"] visible = false -rotation = -3.78484 +rotation = -3.98921 node_a = NodePath("..") -node_b = NodePath("../../Bone-19") -softness = 50.0 +node_b = NodePath("../../Bone-5") +softness = 100.0 -[node name="Joint2D-Bone-23-Bone-20" type="PinJoint2D" parent="Egg5/Bone-23"] +[node name="Joint2D-Bone-11-Bone-6" type="PinJoint2D" parent="Egg5/Bone-11"] visible = false -rotation = 1.56268 +rotation = 1.5708 node_a = NodePath("..") -node_b = NodePath("../../Bone-20") -softness = 50.0 +node_b = NodePath("../../Bone-6") +softness = 100.0 -[node name="Joint2D-Bone-23-Bone-21" type="PinJoint2D" parent="Egg5/Bone-23"] +[node name="Joint2D-Bone-11-Bone-10" type="PinJoint2D" parent="Egg5/Bone-11"] visible = false -rotation = 0.558324 +rotation = -3.14159 node_a = NodePath("..") -node_b = NodePath("../../Bone-21") -softness = 50.0 - -[node name="Joint2D-Bone-23-Bone-22" type="PinJoint2D" parent="Egg5/Bone-23"] +node_b = NodePath("../../Bone-10") +softness = 100.0 + +[node name="Joint2D-Bone-11-Bone-7" type="PinJoint2D" parent="Egg5/Bone-11"] visible = false -rotation = -3.13796 +rotation = 0.785398 node_a = NodePath("..") -node_b = NodePath("../../Bone-22") -softness = 50.0 - -[node name="Bone-24" parent="Egg5" instance=ExtResource("3_6ern4")] -position = Vector2(32.9236, 186.016) -mass = 0.0793651 -physics_material_override = ExtResource("3_durpg") -metadata/bone_name = &"Bone-24" - -[node name="CircleShape2D" type="CollisionShape2D" parent="Egg5/Bone-24"] -shape = SubResource("CircleShape2D_4yipm") +node_b = NodePath("../../Bone-7") +softness = 100.0 -[node name="RemoteTransform2D" type="RemoteTransform2D" parent="Egg5/Bone-24"] -remote_path = NodePath("../../Skeleton2D/Bone-24") -update_rotation = false -update_scale = false +[node name="Joint2D-Bone-11-Bone-12" type="PinJoint2D" parent="Egg5/Bone-11"] +visible = false +node_a = NodePath("..") +node_b = NodePath("../../Bone-12") +softness = 100.0 -[node name="Joint2D-Bone-24-Bone-20" type="PinJoint2D" parent="Egg5/Bone-24"] +[node name="Joint2D-Bone-11-Bone-45" type="PinJoint2D" parent="Egg5/Bone-11"] visible = false -rotation = -3.78322 +rotation = -2.41994 node_a = NodePath("..") -node_b = NodePath("../../Bone-20") -softness = 50.0 +node_b = NodePath("../../Bone-45") +softness = 100.0 -[node name="Joint2D-Bone-24-Bone-21" type="PinJoint2D" parent="Egg5/Bone-24"] +[node name="Joint2D-Bone-11-Bone-46" type="PinJoint2D" parent="Egg5/Bone-11"] visible = false -rotation = 1.37423 +rotation = -1.5708 node_a = NodePath("..") -node_b = NodePath("../../Bone-21") -softness = 50.0 +node_b = NodePath("../../Bone-46") +softness = 100.0 -[node name="Joint2D-Bone-24-Bone-23" type="PinJoint2D" parent="Egg5/Bone-24"] +[node name="Joint2D-Bone-11-Bone-47" type="PinJoint2D" parent="Egg5/Bone-11"] visible = false -rotation = -3.14242 +rotation = -0.785398 node_a = NodePath("..") -node_b = NodePath("../../Bone-23") -softness = 50.0 +node_b = NodePath("../../Bone-47") +softness = 100.0 -[node name="Bone-25" parent="Egg5" instance=ExtResource("3_6ern4")] -position = Vector2(33.0177, 214.427) -mass = 0.0793651 +[node name="Bone-12" type="RigidBody2D" parent="Egg5" instance=ExtResource("3_6ern4")] +position = Vector2(87, 70) +input_pickable = true +mass = 0.0942353 physics_material_override = ExtResource("3_durpg") -metadata/bone_name = &"Bone-25" +script = ExtResource("11_tqnjl") +metadata/idx = 12 +metadata/bone_name = &"Bone-12" -[node name="CircleShape2D" type="CollisionShape2D" parent="Egg5/Bone-25"] -shape = SubResource("CircleShape2D_4yipm") +[node name="CircleShape2D" type="CollisionShape2D" parent="Egg5/Bone-12"] +shape = SubResource("CircleShape2D_tkaeo") -[node name="RemoteTransform2D" type="RemoteTransform2D" parent="Egg5/Bone-25"] -remote_path = NodePath("../../Skeleton2D/Bone-25") +[node name="RemoteTransform2D" type="RemoteTransform2D" parent="Egg5/Bone-12"] +visible = false +remote_path = NodePath("../../Skeleton2D/Bone-12") update_rotation = false update_scale = false -[node name="Joint2D-Bone-25-Bone-21" type="PinJoint2D" parent="Egg5/Bone-25"] +[node name="Joint2D-Bone-12-Bone-6" type="PinJoint2D" parent="Egg5/Bone-12"] visible = false -rotation = -3.76781 +rotation = -3.92699 node_a = NodePath("..") -node_b = NodePath("../../Bone-21") -softness = 50.0 +node_b = NodePath("../../Bone-6") +softness = 100.0 -[node name="Joint2D-Bone-25-Bone-24" type="PinJoint2D" parent="Egg5/Bone-25"] +[node name="Joint2D-Bone-12-Bone-7" type="PinJoint2D" parent="Egg5/Bone-12"] visible = false -rotation = -3.14491 +rotation = 1.5708 node_a = NodePath("..") -node_b = NodePath("../../Bone-24") -softness = 50.0 - -[node name="Bone-26" parent="Egg5" instance=ExtResource("3_6ern4")] -position = Vector2(58.0225, 136.016) -mass = 0.0793651 -physics_material_override = ExtResource("3_durpg") -metadata/bone_name = &"Bone-26" - -[node name="CircleShape2D" type="CollisionShape2D" parent="Egg5/Bone-26"] -shape = SubResource("CircleShape2D_4yipm") - -[node name="RemoteTransform2D" type="RemoteTransform2D" parent="Egg5/Bone-26"] -remote_path = NodePath("../../Skeleton2D/Bone-26") -update_rotation = false -update_scale = false +node_b = NodePath("../../Bone-7") +softness = 100.0 -[node name="Joint2D-Bone-26-Bone-3" type="PinJoint2D" parent="Egg5/Bone-26"] +[node name="Joint2D-Bone-12-Bone-11" type="PinJoint2D" parent="Egg5/Bone-12"] visible = false -rotation = -3.92862 +rotation = -3.14159 node_a = NodePath("..") -node_b = NodePath("../../Bone-3") -softness = 50.0 +node_b = NodePath("../../Bone-11") +softness = 100.0 -[node name="Joint2D-Bone-26-Bone-8" type="PinJoint2D" parent="Egg5/Bone-26"] +[node name="Joint2D-Bone-12-Bone-8" type="PinJoint2D" parent="Egg5/Bone-12"] visible = false -rotation = -3.14425 +rotation = 0.785398 node_a = NodePath("..") node_b = NodePath("../../Bone-8") -softness = 50.0 +softness = 100.0 -[node name="Joint2D-Bone-26-Bone-13" type="PinJoint2D" parent="Egg5/Bone-26"] +[node name="Joint2D-Bone-12-Bone-13" type="PinJoint2D" parent="Egg5/Bone-12"] visible = false -rotation = -2.3571 node_a = NodePath("..") node_b = NodePath("../../Bone-13") -softness = 50.0 +softness = 100.0 -[node name="Joint2D-Bone-26-Bone-19" type="PinJoint2D" parent="Egg5/Bone-26"] +[node name="Joint2D-Bone-12-Bone-46" type="PinJoint2D" parent="Egg5/Bone-12"] visible = false -rotation = 1.57012 +rotation = -2.35619 node_a = NodePath("..") -node_b = NodePath("../../Bone-19") -softness = 50.0 +node_b = NodePath("../../Bone-46") +softness = 100.0 -[node name="Joint2D-Bone-26-Bone-22" type="PinJoint2D" parent="Egg5/Bone-26"] +[node name="Joint2D-Bone-12-Bone-47" type="PinJoint2D" parent="Egg5/Bone-12"] visible = false -rotation = 1.56951 +rotation = -1.5708 node_a = NodePath("..") -node_b = NodePath("../../Bone-22") -softness = 50.0 +node_b = NodePath("../../Bone-47") +softness = 100.0 -[node name="Joint2D-Bone-26-Bone-23" type="PinJoint2D" parent="Egg5/Bone-26"] +[node name="Joint2D-Bone-12-Bone-48" type="PinJoint2D" parent="Egg5/Bone-12"] visible = false -rotation = 0.788452 +rotation = -0.785398 node_a = NodePath("..") -node_b = NodePath("../../Bone-23") -softness = 50.0 +node_b = NodePath("../../Bone-48") +softness = 100.0 -[node name="Bone-27" parent="Egg5" instance=ExtResource("3_6ern4")] -position = Vector2(57.8146, 160.917) -mass = 0.0793651 +[node name="Bone-13" type="RigidBody2D" parent="Egg5" instance=ExtResource("3_6ern4")] +position = Vector2(87, 90) +input_pickable = true +mass = 0.0942353 physics_material_override = ExtResource("3_durpg") -metadata/bone_name = &"Bone-27" +script = ExtResource("11_tqnjl") +metadata/idx = 13 +metadata/bone_name = &"Bone-13" -[node name="CircleShape2D" type="CollisionShape2D" parent="Egg5/Bone-27"] -shape = SubResource("CircleShape2D_4yipm") +[node name="CircleShape2D" type="CollisionShape2D" parent="Egg5/Bone-13"] +shape = SubResource("CircleShape2D_tkaeo") -[node name="RemoteTransform2D" type="RemoteTransform2D" parent="Egg5/Bone-27"] -remote_path = NodePath("../../Skeleton2D/Bone-27") +[node name="RemoteTransform2D" type="RemoteTransform2D" parent="Egg5/Bone-13"] +visible = false +remote_path = NodePath("../../Skeleton2D/Bone-13") update_rotation = false update_scale = false -[node name="Joint2D-Bone-27-Bone-20" type="PinJoint2D" parent="Egg5/Bone-27"] -visible = false -rotation = 1.56582 -node_a = NodePath("..") -node_b = NodePath("../../Bone-20") -softness = 50.0 - -[node name="Joint2D-Bone-27-Bone-22" type="PinJoint2D" parent="Egg5/Bone-27"] -visible = false -rotation = -3.92603 -node_a = NodePath("..") -node_b = NodePath("../../Bone-22") -softness = 50.0 - -[node name="Joint2D-Bone-27-Bone-23" type="PinJoint2D" parent="Egg5/Bone-27"] +[node name="Joint2D-Bone-13-Bone-7" type="PinJoint2D" parent="Egg5/Bone-13"] visible = false -rotation = 1.56817 +rotation = -3.92699 node_a = NodePath("..") -node_b = NodePath("../../Bone-23") -softness = 50.0 +node_b = NodePath("../../Bone-7") +softness = 100.0 -[node name="Joint2D-Bone-27-Bone-24" type="PinJoint2D" parent="Egg5/Bone-27"] +[node name="Joint2D-Bone-13-Bone-8" type="PinJoint2D" parent="Egg5/Bone-13"] visible = false -rotation = 0.781244 +rotation = 1.5708 node_a = NodePath("..") -node_b = NodePath("../../Bone-24") -softness = 50.0 +node_b = NodePath("../../Bone-8") +softness = 100.0 -[node name="Joint2D-Bone-27-Bone-26" type="PinJoint2D" parent="Egg5/Bone-27"] +[node name="Joint2D-Bone-13-Bone-12" type="PinJoint2D" parent="Egg5/Bone-13"] visible = false -rotation = -3.13324 +rotation = -3.14159 node_a = NodePath("..") -node_b = NodePath("../../Bone-26") -softness = 50.0 - -[node name="Bone-28" parent="Egg5" instance=ExtResource("3_6ern4")] -position = Vector2(57.9235, 186.082) -mass = 0.0793651 -physics_material_override = ExtResource("3_durpg") -metadata/bone_name = &"Bone-28" - -[node name="CircleShape2D" type="CollisionShape2D" parent="Egg5/Bone-28"] -shape = SubResource("CircleShape2D_4yipm") - -[node name="RemoteTransform2D" type="RemoteTransform2D" parent="Egg5/Bone-28"] -remote_path = NodePath("../../Skeleton2D/Bone-28") -update_rotation = false -update_scale = false +node_b = NodePath("../../Bone-12") +softness = 100.0 -[node name="Joint2D-Bone-28-Bone-21" type="PinJoint2D" parent="Egg5/Bone-28"] +[node name="Joint2D-Bone-13-Bone-27" type="PinJoint2D" parent="Egg5/Bone-13"] visible = false -rotation = 1.48948 +rotation = 0.785398 node_a = NodePath("..") -node_b = NodePath("../../Bone-21") -softness = 50.0 +node_b = NodePath("../../Bone-27") +softness = 100.0 -[node name="Joint2D-Bone-28-Bone-23" type="PinJoint2D" parent="Egg5/Bone-28"] +[node name="Joint2D-Bone-13-Bone-32" type="PinJoint2D" parent="Egg5/Bone-13"] visible = false -rotation = -3.92542 node_a = NodePath("..") -node_b = NodePath("../../Bone-23") -softness = 50.0 +node_b = NodePath("../../Bone-32") +softness = 100.0 -[node name="Joint2D-Bone-28-Bone-24" type="PinJoint2D" parent="Egg5/Bone-28"] +[node name="Joint2D-Bone-13-Bone-47" type="PinJoint2D" parent="Egg5/Bone-13"] visible = false -rotation = -4.70974 +rotation = -2.35619 node_a = NodePath("..") -node_b = NodePath("../../Bone-24") -softness = 50.0 +node_b = NodePath("../../Bone-47") +softness = 100.0 -[node name="Joint2D-Bone-28-Bone-25" type="PinJoint2D" parent="Egg5/Bone-28"] +[node name="Joint2D-Bone-13-Bone-48" type="PinJoint2D" parent="Egg5/Bone-13"] visible = false -rotation = 0.720901 +rotation = -1.5708 node_a = NodePath("..") -node_b = NodePath("../../Bone-25") -softness = 50.0 +node_b = NodePath("../../Bone-48") +softness = 100.0 -[node name="Joint2D-Bone-28-Bone-27" type="PinJoint2D" parent="Egg5/Bone-28"] +[node name="Joint2D-Bone-13-Bone-57" type="PinJoint2D" parent="Egg5/Bone-13"] visible = false -rotation = -3.14592 +rotation = -0.785398 node_a = NodePath("..") -node_b = NodePath("../../Bone-27") -softness = 50.0 +node_b = NodePath("../../Bone-57") +softness = 100.0 -[node name="Bone-29" parent="Egg5" instance=ExtResource("3_6ern4")] -position = Vector2(57.9516, 211.082) -mass = 0.0793651 +[node name="Bone-14" type="RigidBody2D" parent="Egg5" instance=ExtResource("3_6ern4")] +position = Vector2(12, 130) +input_pickable = true +mass = 0.0942353 physics_material_override = ExtResource("3_durpg") -metadata/bone_name = &"Bone-29" +script = ExtResource("11_tqnjl") +metadata/idx = 14 +metadata/bone_name = &"Bone-14" -[node name="CircleShape2D" type="CollisionShape2D" parent="Egg5/Bone-29"] -shape = SubResource("CircleShape2D_4yipm") +[node name="CircleShape2D" type="CollisionShape2D" parent="Egg5/Bone-14"] +shape = SubResource("CircleShape2D_tkaeo") -[node name="RemoteTransform2D" type="RemoteTransform2D" parent="Egg5/Bone-29"] -remote_path = NodePath("../../Skeleton2D/Bone-29") +[node name="RemoteTransform2D" type="RemoteTransform2D" parent="Egg5/Bone-14"] +visible = false +remote_path = NodePath("../../Skeleton2D/Bone-14") update_rotation = false update_scale = false -[node name="Joint2D-Bone-29-Bone-24" type="PinJoint2D" parent="Egg5/Bone-29"] -visible = false -rotation = -3.92623 -node_a = NodePath("..") -node_b = NodePath("../../Bone-24") -softness = 50.0 - -[node name="Joint2D-Bone-29-Bone-25" type="PinJoint2D" parent="Egg5/Bone-29"] +[node name="Joint2D-Bone-14-Bone-17" type="PinJoint2D" parent="Egg5/Bone-14"] visible = false -rotation = 1.43742 +rotation = -2.62273 node_a = NodePath("..") -node_b = NodePath("../../Bone-25") -softness = 50.0 +node_b = NodePath("../../Bone-17") +softness = 100.0 -[node name="Joint2D-Bone-29-Bone-28" type="PinJoint2D" parent="Egg5/Bone-29"] +[node name="Joint2D-Bone-14-Bone-15" type="PinJoint2D" parent="Egg5/Bone-14"] visible = false -rotation = -3.14272 node_a = NodePath("..") -node_b = NodePath("../../Bone-28") -softness = 50.0 - -[node name="Bone-30" parent="Egg5" instance=ExtResource("3_6ern4")] -position = Vector2(57.9319, 233.37) -mass = 0.0793651 -physics_material_override = ExtResource("3_durpg") -metadata/bone_name = &"Bone-30" - -[node name="CircleShape2D" type="CollisionShape2D" parent="Egg5/Bone-30"] -shape = SubResource("CircleShape2D_4yipm") - -[node name="RemoteTransform2D" type="RemoteTransform2D" parent="Egg5/Bone-30"] -remote_path = NodePath("../../Skeleton2D/Bone-30") -update_rotation = false -update_scale = false +node_b = NodePath("../../Bone-15") +softness = 100.0 -[node name="Joint2D-Bone-30-Bone-25" type="PinJoint2D" parent="Egg5/Bone-30"] +[node name="Joint2D-Bone-14-Bone-18" type="PinJoint2D" parent="Egg5/Bone-14"] visible = false -rotation = -4.06231 +rotation = -1.5708 node_a = NodePath("..") -node_b = NodePath("../../Bone-25") -softness = 50.0 +node_b = NodePath("../../Bone-18") +softness = 100.0 -[node name="Joint2D-Bone-30-Bone-29" type="PinJoint2D" parent="Egg5/Bone-30"] +[node name="Joint2D-Bone-14-Bone-19" type="PinJoint2D" parent="Egg5/Bone-14"] visible = false -rotation = -3.14071 +rotation = -0.643501 node_a = NodePath("..") -node_b = NodePath("../../Bone-29") -softness = 50.0 +node_b = NodePath("../../Bone-19") +softness = 100.0 -[node name="Bone-31" parent="Egg5" instance=ExtResource("3_6ern4")] -position = Vector2(82.9466, 136.068) -mass = 0.0793651 +[node name="Bone-15" type="RigidBody2D" parent="Egg5" instance=ExtResource("3_6ern4")] +position = Vector2(12, 150) +input_pickable = true +mass = 0.0942353 physics_material_override = ExtResource("3_durpg") -metadata/bone_name = &"Bone-31" +script = ExtResource("11_tqnjl") +metadata/idx = 15 +metadata/bone_name = &"Bone-15" -[node name="CircleShape2D" type="CollisionShape2D" parent="Egg5/Bone-31"] -shape = SubResource("CircleShape2D_4yipm") +[node name="CircleShape2D" type="CollisionShape2D" parent="Egg5/Bone-15"] +shape = SubResource("CircleShape2D_tkaeo") -[node name="RemoteTransform2D" type="RemoteTransform2D" parent="Egg5/Bone-31"] -remote_path = NodePath("../../Skeleton2D/Bone-31") +[node name="RemoteTransform2D" type="RemoteTransform2D" parent="Egg5/Bone-15"] +visible = false +remote_path = NodePath("../../Skeleton2D/Bone-15") update_rotation = false update_scale = false -[node name="Joint2D-Bone-31-Bone-8" type="PinJoint2D" parent="Egg5/Bone-31"] +[node name="Joint2D-Bone-15-Bone-14" type="PinJoint2D" parent="Egg5/Bone-15"] visible = false -rotation = -3.92614 +rotation = -3.14159 node_a = NodePath("..") -node_b = NodePath("../../Bone-8") -softness = 50.0 +node_b = NodePath("../../Bone-14") +softness = 100.0 -[node name="Joint2D-Bone-31-Bone-13" type="PinJoint2D" parent="Egg5/Bone-31"] +[node name="Joint2D-Bone-15-Bone-18" type="PinJoint2D" parent="Egg5/Bone-15"] visible = false -rotation = -3.13907 +rotation = -2.49809 node_a = NodePath("..") -node_b = NodePath("../../Bone-13") -softness = 50.0 +node_b = NodePath("../../Bone-18") +softness = 100.0 -[node name="Joint2D-Bone-31-Bone-18" type="PinJoint2D" parent="Egg5/Bone-31"] +[node name="Joint2D-Bone-15-Bone-19" type="PinJoint2D" parent="Egg5/Bone-15"] visible = false -rotation = -2.35216 +rotation = -1.5708 node_a = NodePath("..") -node_b = NodePath("../../Bone-18") -softness = 50.0 +node_b = NodePath("../../Bone-19") +softness = 100.0 -[node name="Joint2D-Bone-31-Bone-26" type="PinJoint2D" parent="Egg5/Bone-31"] +[node name="Joint2D-Bone-15-Bone-16" type="PinJoint2D" parent="Egg5/Bone-15"] visible = false -rotation = -4.71033 node_a = NodePath("..") -node_b = NodePath("../../Bone-26") -softness = 50.0 +node_b = NodePath("../../Bone-16") +softness = 100.0 -[node name="Joint2D-Bone-31-Bone-27" type="PinJoint2D" parent="Egg5/Bone-31"] +[node name="Joint2D-Bone-15-Bone-20" type="PinJoint2D" parent="Egg5/Bone-15"] visible = false -rotation = 0.791045 +rotation = -0.643501 node_a = NodePath("..") -node_b = NodePath("../../Bone-27") -softness = 50.0 +node_b = NodePath("../../Bone-20") +softness = 100.0 -[node name="Bone-32" parent="Egg5" instance=ExtResource("3_6ern4")] -position = Vector2(82.8641, 161.08) -mass = 0.0793651 +[node name="Bone-16" type="RigidBody2D" parent="Egg5" instance=ExtResource("3_6ern4")] +position = Vector2(12, 170) +input_pickable = true +mass = 0.0942353 physics_material_override = ExtResource("3_durpg") -metadata/bone_name = &"Bone-32" +script = ExtResource("11_tqnjl") +metadata/idx = 16 +metadata/bone_name = &"Bone-16" -[node name="CircleShape2D" type="CollisionShape2D" parent="Egg5/Bone-32"] -shape = SubResource("CircleShape2D_4yipm") +[node name="CircleShape2D" type="CollisionShape2D" parent="Egg5/Bone-16"] +shape = SubResource("CircleShape2D_tkaeo") -[node name="RemoteTransform2D" type="RemoteTransform2D" parent="Egg5/Bone-32"] -remote_path = NodePath("../../Skeleton2D/Bone-32") +[node name="RemoteTransform2D" type="RemoteTransform2D" parent="Egg5/Bone-16"] +visible = false +remote_path = NodePath("../../Skeleton2D/Bone-16") update_rotation = false update_scale = false -[node name="Joint2D-Bone-32-Bone-26" type="PinJoint2D" parent="Egg5/Bone-32"] +[node name="Joint2D-Bone-16-Bone-21" type="PinJoint2D" parent="Egg5/Bone-16"] visible = false -rotation = -3.92254 +rotation = -0.518069 node_a = NodePath("..") -node_b = NodePath("../../Bone-26") -softness = 50.0 +node_b = NodePath("../../Bone-21") +softness = 100.0 -[node name="Joint2D-Bone-32-Bone-27" type="PinJoint2D" parent="Egg5/Bone-32"] +[node name="Joint2D-Bone-16-Bone-15" type="PinJoint2D" parent="Egg5/Bone-16"] visible = false -rotation = -4.70589 +rotation = -3.14159 node_a = NodePath("..") -node_b = NodePath("../../Bone-27") -softness = 50.0 +node_b = NodePath("../../Bone-15") +softness = 100.0 -[node name="Joint2D-Bone-32-Bone-28" type="PinJoint2D" parent="Egg5/Bone-32"] +[node name="Joint2D-Bone-16-Bone-19" type="PinJoint2D" parent="Egg5/Bone-16"] visible = false -rotation = 0.784165 +rotation = -2.49809 node_a = NodePath("..") -node_b = NodePath("../../Bone-28") -softness = 50.0 +node_b = NodePath("../../Bone-19") +softness = 100.0 -[node name="Joint2D-Bone-32-Bone-31" type="PinJoint2D" parent="Egg5/Bone-32"] +[node name="Joint2D-Bone-16-Bone-20" type="PinJoint2D" parent="Egg5/Bone-16"] visible = false -rotation = -3.13829 +rotation = -1.5708 node_a = NodePath("..") -node_b = NodePath("../../Bone-31") -softness = 50.0 +node_b = NodePath("../../Bone-20") +softness = 100.0 -[node name="Bone-33" parent="Egg5" instance=ExtResource("3_6ern4")] -position = Vector2(82.9051, 186.061) -mass = 0.0793651 +[node name="Bone-17" type="RigidBody2D" parent="Egg5" instance=ExtResource("3_6ern4")] +position = Vector2(23.4211, 110) +input_pickable = true +mass = 0.0942353 physics_material_override = ExtResource("3_durpg") -metadata/bone_name = &"Bone-33" +script = ExtResource("11_tqnjl") +metadata/idx = 17 +metadata/bone_name = &"Bone-17" -[node name="CircleShape2D" type="CollisionShape2D" parent="Egg5/Bone-33"] -shape = SubResource("CircleShape2D_4yipm") +[node name="CircleShape2D" type="CollisionShape2D" parent="Egg5/Bone-17"] +shape = SubResource("CircleShape2D_tkaeo") -[node name="RemoteTransform2D" type="RemoteTransform2D" parent="Egg5/Bone-33"] -remote_path = NodePath("../../Skeleton2D/Bone-33") +[node name="RemoteTransform2D" type="RemoteTransform2D" parent="Egg5/Bone-17"] +visible = false +remote_path = NodePath("../../Skeleton2D/Bone-17") update_rotation = false update_scale = false -[node name="Joint2D-Bone-33-Bone-27" type="PinJoint2D" parent="Egg5/Bone-33"] +[node name="Joint2D-Bone-17-Bone-14" type="PinJoint2D" parent="Egg5/Bone-17"] visible = false -rotation = -3.92594 +rotation = 0.518863 node_a = NodePath("..") -node_b = NodePath("../../Bone-27") -softness = 50.0 - -[node name="Joint2D-Bone-33-Bone-28" type="PinJoint2D" parent="Egg5/Bone-33"] -visible = false -rotation = 1.56994 -node_a = NodePath("..") -node_b = NodePath("../../Bone-28") -softness = 50.0 - -[node name="Joint2D-Bone-33-Bone-29" type="PinJoint2D" parent="Egg5/Bone-33"] -visible = false -rotation = 0.784051 -node_a = NodePath("..") -node_b = NodePath("../../Bone-29") -softness = 50.0 +node_b = NodePath("../../Bone-14") +softness = 100.0 -[node name="Joint2D-Bone-33-Bone-32" type="PinJoint2D" parent="Egg5/Bone-33"] +[node name="Joint2D-Bone-17-Bone-1" type="PinJoint2D" parent="Egg5/Bone-17"] visible = false -rotation = -3.14324 +rotation = -3.0116 node_a = NodePath("..") -node_b = NodePath("../../Bone-32") -softness = 50.0 - -[node name="Bone-34" parent="Egg5" instance=ExtResource("3_6ern4")] -position = Vector2(82.9635, 211.174) -mass = 0.0793651 -physics_material_override = ExtResource("3_durpg") -metadata/bone_name = &"Bone-34" - -[node name="CircleShape2D" type="CollisionShape2D" parent="Egg5/Bone-34"] -shape = SubResource("CircleShape2D_4yipm") - -[node name="RemoteTransform2D" type="RemoteTransform2D" parent="Egg5/Bone-34"] -remote_path = NodePath("../../Skeleton2D/Bone-34") -update_rotation = false -update_scale = false +node_b = NodePath("../../Bone-1") +softness = 100.0 -[node name="Joint2D-Bone-34-Bone-28" type="PinJoint2D" parent="Egg5/Bone-34"] +[node name="Joint2D-Bone-17-Bone-4" type="PinJoint2D" parent="Egg5/Bone-17"] visible = false -rotation = -3.92596 +rotation = -2.27425 node_a = NodePath("..") -node_b = NodePath("../../Bone-28") -softness = 50.0 +node_b = NodePath("../../Bone-4") +softness = 100.0 -[node name="Joint2D-Bone-34-Bone-29" type="PinJoint2D" parent="Egg5/Bone-34"] +[node name="Joint2D-Bone-17-Bone-22" type="PinJoint2D" parent="Egg5/Bone-17"] visible = false -rotation = -4.70871 +rotation = -1.5708 node_a = NodePath("..") -node_b = NodePath("../../Bone-29") -softness = 50.0 +node_b = NodePath("../../Bone-22") +softness = 100.0 -[node name="Joint2D-Bone-34-Bone-30" type="PinJoint2D" parent="Egg5/Bone-34"] +[node name="Joint2D-Bone-17-Bone-18" type="PinJoint2D" parent="Egg5/Bone-17"] visible = false -rotation = 0.845364 +rotation = -0.177073 node_a = NodePath("..") -node_b = NodePath("../../Bone-30") -softness = 50.0 +node_b = NodePath("../../Bone-18") +softness = 100.0 -[node name="Joint2D-Bone-34-Bone-33" type="PinJoint2D" parent="Egg5/Bone-34"] +[node name="Joint2D-Bone-17-Bone-23" type="PinJoint2D" parent="Egg5/Bone-17"] visible = false -rotation = -3.14391 +rotation = -0.86734 node_a = NodePath("..") -node_b = NodePath("../../Bone-33") -softness = 50.0 +node_b = NodePath("../../Bone-23") +softness = 100.0 -[node name="Bone-35" parent="Egg5" instance=ExtResource("3_6ern4")] -position = Vector2(83.0761, 236.016) -mass = 0.0793651 +[node name="Bone-18" type="RigidBody2D" parent="Egg5" instance=ExtResource("3_6ern4")] +position = Vector2(27, 130) +input_pickable = true +mass = 0.0942353 physics_material_override = ExtResource("3_durpg") -metadata/bone_name = &"Bone-35" +script = ExtResource("11_tqnjl") +metadata/idx = 18 +metadata/bone_name = &"Bone-18" -[node name="CircleShape2D" type="CollisionShape2D" parent="Egg5/Bone-35"] -shape = SubResource("CircleShape2D_4yipm") +[node name="CircleShape2D" type="CollisionShape2D" parent="Egg5/Bone-18"] +shape = SubResource("CircleShape2D_tkaeo") -[node name="RemoteTransform2D" type="RemoteTransform2D" parent="Egg5/Bone-35"] -remote_path = NodePath("../../Skeleton2D/Bone-35") +[node name="RemoteTransform2D" type="RemoteTransform2D" parent="Egg5/Bone-18"] +visible = false +remote_path = NodePath("../../Skeleton2D/Bone-18") update_rotation = false update_scale = false -[node name="Joint2D-Bone-35-Bone-29" type="PinJoint2D" parent="Egg5/Bone-35"] +[node name="Joint2D-Bone-18-Bone-14" type="PinJoint2D" parent="Egg5/Bone-18"] visible = false -rotation = -3.93078 +rotation = 1.5708 node_a = NodePath("..") -node_b = NodePath("../../Bone-29") -softness = 50.0 +node_b = NodePath("../../Bone-14") +softness = 100.0 -[node name="Joint2D-Bone-35-Bone-30" type="PinJoint2D" parent="Egg5/Bone-35"] +[node name="Joint2D-Bone-18-Bone-15" type="PinJoint2D" parent="Egg5/Bone-18"] visible = false -rotation = -4.60753 +rotation = 0.643501 node_a = NodePath("..") -node_b = NodePath("../../Bone-30") -softness = 50.0 +node_b = NodePath("../../Bone-15") +softness = 100.0 -[node name="Joint2D-Bone-35-Bone-34" type="PinJoint2D" parent="Egg5/Bone-35"] +[node name="Joint2D-Bone-18-Bone-19" type="PinJoint2D" parent="Egg5/Bone-18"] visible = false -rotation = -3.14613 node_a = NodePath("..") -node_b = NodePath("../../Bone-34") -softness = 50.0 - -[node name="Bone-36" parent="Egg5" instance=ExtResource("3_6ern4")] -position = Vector2(107.974, 136.151) -mass = 0.0793651 -physics_material_override = ExtResource("3_durpg") -metadata/bone_name = &"Bone-36" - -[node name="CircleShape2D" type="CollisionShape2D" parent="Egg5/Bone-36"] -shape = SubResource("CircleShape2D_4yipm") - -[node name="RemoteTransform2D" type="RemoteTransform2D" parent="Egg5/Bone-36"] -remote_path = NodePath("../../Skeleton2D/Bone-36") -update_rotation = false -update_scale = false +node_b = NodePath("../../Bone-19") +softness = 100.0 -[node name="Joint2D-Bone-36-Bone-13" type="PinJoint2D" parent="Egg5/Bone-36"] +[node name="Joint2D-Bone-18-Bone-17" type="PinJoint2D" parent="Egg5/Bone-18"] visible = false -rotation = -3.92293 +rotation = -3.31867 node_a = NodePath("..") -node_b = NodePath("../../Bone-13") -softness = 50.0 +node_b = NodePath("../../Bone-17") +softness = 100.0 -[node name="Joint2D-Bone-36-Bone-18" type="PinJoint2D" parent="Egg5/Bone-36"] +[node name="Joint2D-Bone-18-Bone-22" type="PinJoint2D" parent="Egg5/Bone-18"] visible = false -rotation = -3.13892 +rotation = -2.35619 node_a = NodePath("..") -node_b = NodePath("../../Bone-18") -softness = 50.0 +node_b = NodePath("../../Bone-22") +softness = 100.0 -[node name="Joint2D-Bone-36-Bone-31" type="PinJoint2D" parent="Egg5/Bone-36"] +[node name="Joint2D-Bone-18-Bone-23" type="PinJoint2D" parent="Egg5/Bone-18"] visible = false -rotation = -4.70904 +rotation = -1.5708 node_a = NodePath("..") -node_b = NodePath("../../Bone-31") -softness = 50.0 +node_b = NodePath("../../Bone-23") +softness = 100.0 -[node name="Joint2D-Bone-36-Bone-32" type="PinJoint2D" parent="Egg5/Bone-36"] +[node name="Joint2D-Bone-18-Bone-24" type="PinJoint2D" parent="Egg5/Bone-18"] visible = false -rotation = 0.789014 +rotation = -0.785398 node_a = NodePath("..") -node_b = NodePath("../../Bone-32") -softness = 50.0 +node_b = NodePath("../../Bone-24") +softness = 100.0 -[node name="Bone-37" parent="Egg5" instance=ExtResource("3_6ern4")] -position = Vector2(108.039, 161.11) -mass = 0.0793651 +[node name="Bone-19" type="RigidBody2D" parent="Egg5" instance=ExtResource("3_6ern4")] +position = Vector2(27, 150) +input_pickable = true +mass = 0.0942353 physics_material_override = ExtResource("3_durpg") -metadata/bone_name = &"Bone-37" +script = ExtResource("11_tqnjl") +metadata/idx = 19 +metadata/bone_name = &"Bone-19" -[node name="CircleShape2D" type="CollisionShape2D" parent="Egg5/Bone-37"] -shape = SubResource("CircleShape2D_4yipm") +[node name="CircleShape2D" type="CollisionShape2D" parent="Egg5/Bone-19"] +shape = SubResource("CircleShape2D_tkaeo") -[node name="RemoteTransform2D" type="RemoteTransform2D" parent="Egg5/Bone-37"] -remote_path = NodePath("../../Skeleton2D/Bone-37") +[node name="RemoteTransform2D" type="RemoteTransform2D" parent="Egg5/Bone-19"] +visible = false +remote_path = NodePath("../../Skeleton2D/Bone-19") update_rotation = false update_scale = false -[node name="Joint2D-Bone-37-Bone-31" type="PinJoint2D" parent="Egg5/Bone-37"] +[node name="Joint2D-Bone-19-Bone-14" type="PinJoint2D" parent="Egg5/Bone-19"] visible = false -rotation = -3.92799 +rotation = -3.78509 node_a = NodePath("..") -node_b = NodePath("../../Bone-31") -softness = 50.0 +node_b = NodePath("../../Bone-14") +softness = 100.0 -[node name="Joint2D-Bone-37-Bone-32" type="PinJoint2D" parent="Egg5/Bone-37"] +[node name="Joint2D-Bone-19-Bone-15" type="PinJoint2D" parent="Egg5/Bone-19"] visible = false -rotation = -4.7112 +rotation = 1.5708 node_a = NodePath("..") -node_b = NodePath("../../Bone-32") -softness = 50.0 +node_b = NodePath("../../Bone-15") +softness = 100.0 -[node name="Joint2D-Bone-37-Bone-33" type="PinJoint2D" parent="Egg5/Bone-37"] +[node name="Joint2D-Bone-19-Bone-18" type="PinJoint2D" parent="Egg5/Bone-19"] visible = false -rotation = 0.789056 +rotation = -3.14159 node_a = NodePath("..") -node_b = NodePath("../../Bone-33") -softness = 50.0 +node_b = NodePath("../../Bone-18") +softness = 100.0 -[node name="Joint2D-Bone-37-Bone-36" type="PinJoint2D" parent="Egg5/Bone-37"] +[node name="Joint2D-Bone-19-Bone-16" type="PinJoint2D" parent="Egg5/Bone-19"] visible = false -rotation = -3.14422 +rotation = 0.643501 node_a = NodePath("..") -node_b = NodePath("../../Bone-36") -softness = 50.0 - -[node name="Bone-38" parent="Egg5" instance=ExtResource("3_6ern4")] -position = Vector2(107.941, 186.024) -mass = 0.0793651 -physics_material_override = ExtResource("3_durpg") -metadata/bone_name = &"Bone-38" - -[node name="CircleShape2D" type="CollisionShape2D" parent="Egg5/Bone-38"] -shape = SubResource("CircleShape2D_4yipm") - -[node name="RemoteTransform2D" type="RemoteTransform2D" parent="Egg5/Bone-38"] -remote_path = NodePath("../../Skeleton2D/Bone-38") -update_rotation = false -update_scale = false +node_b = NodePath("../../Bone-16") +softness = 100.0 -[node name="Joint2D-Bone-38-Bone-32" type="PinJoint2D" parent="Egg5/Bone-38"] +[node name="Joint2D-Bone-19-Bone-20" type="PinJoint2D" parent="Egg5/Bone-19"] visible = false -rotation = -3.92964 node_a = NodePath("..") -node_b = NodePath("../../Bone-32") -softness = 50.0 +node_b = NodePath("../../Bone-20") +softness = 100.0 -[node name="Joint2D-Bone-38-Bone-33" type="PinJoint2D" parent="Egg5/Bone-38"] +[node name="Joint2D-Bone-19-Bone-23" type="PinJoint2D" parent="Egg5/Bone-19"] visible = false -rotation = 1.56933 +rotation = -2.35619 node_a = NodePath("..") -node_b = NodePath("../../Bone-33") -softness = 50.0 +node_b = NodePath("../../Bone-23") +softness = 100.0 -[node name="Joint2D-Bone-38-Bone-34" type="PinJoint2D" parent="Egg5/Bone-38"] +[node name="Joint2D-Bone-19-Bone-24" type="PinJoint2D" parent="Egg5/Bone-19"] visible = false -rotation = 0.781959 +rotation = -1.5708 node_a = NodePath("..") -node_b = NodePath("../../Bone-34") -softness = 50.0 +node_b = NodePath("../../Bone-24") +softness = 100.0 -[node name="Joint2D-Bone-38-Bone-37" type="PinJoint2D" parent="Egg5/Bone-38"] +[node name="Joint2D-Bone-19-Bone-25" type="PinJoint2D" parent="Egg5/Bone-19"] visible = false -rotation = -3.13764 +rotation = -0.785398 node_a = NodePath("..") -node_b = NodePath("../../Bone-37") -softness = 50.0 +node_b = NodePath("../../Bone-25") +softness = 100.0 -[node name="Bone-39" parent="Egg5" instance=ExtResource("3_6ern4")] -position = Vector2(108.014, 210.967) -mass = 0.0793651 +[node name="Bone-20" type="RigidBody2D" parent="Egg5" instance=ExtResource("3_6ern4")] +position = Vector2(27, 170) +input_pickable = true +mass = 0.0942353 physics_material_override = ExtResource("3_durpg") -metadata/bone_name = &"Bone-39" +script = ExtResource("11_tqnjl") +metadata/idx = 20 +metadata/bone_name = &"Bone-20" -[node name="CircleShape2D" type="CollisionShape2D" parent="Egg5/Bone-39"] -shape = SubResource("CircleShape2D_4yipm") +[node name="CircleShape2D" type="CollisionShape2D" parent="Egg5/Bone-20"] +shape = SubResource("CircleShape2D_tkaeo") -[node name="RemoteTransform2D" type="RemoteTransform2D" parent="Egg5/Bone-39"] -remote_path = NodePath("../../Skeleton2D/Bone-39") +[node name="RemoteTransform2D" type="RemoteTransform2D" parent="Egg5/Bone-20"] +visible = false +remote_path = NodePath("../../Skeleton2D/Bone-20") update_rotation = false update_scale = false -[node name="Joint2D-Bone-39-Bone-33" type="PinJoint2D" parent="Egg5/Bone-39"] +[node name="Joint2D-Bone-20-Bone-15" type="PinJoint2D" parent="Egg5/Bone-20"] visible = false -rotation = -3.93104 +rotation = -3.78509 node_a = NodePath("..") -node_b = NodePath("../../Bone-33") -softness = 50.0 +node_b = NodePath("../../Bone-15") +softness = 100.0 -[node name="Joint2D-Bone-39-Bone-34" type="PinJoint2D" parent="Egg5/Bone-39"] +[node name="Joint2D-Bone-20-Bone-16" type="PinJoint2D" parent="Egg5/Bone-20"] visible = false -rotation = 1.56255 +rotation = 1.5708 node_a = NodePath("..") -node_b = NodePath("../../Bone-34") -softness = 50.0 +node_b = NodePath("../../Bone-16") +softness = 100.0 -[node name="Joint2D-Bone-39-Bone-35" type="PinJoint2D" parent="Egg5/Bone-39"] +[node name="Joint2D-Bone-20-Bone-19" type="PinJoint2D" parent="Egg5/Bone-20"] visible = false -rotation = 0.783175 +rotation = -3.14159 node_a = NodePath("..") -node_b = NodePath("../../Bone-35") -softness = 50.0 +node_b = NodePath("../../Bone-19") +softness = 100.0 -[node name="Joint2D-Bone-39-Bone-38" type="PinJoint2D" parent="Egg5/Bone-39"] +[node name="Joint2D-Bone-20-Bone-21" type="PinJoint2D" parent="Egg5/Bone-20"] visible = false -rotation = -3.14454 +rotation = 0.178093 node_a = NodePath("..") -node_b = NodePath("../../Bone-38") -softness = 50.0 - -[node name="Bone-40" parent="Egg5" instance=ExtResource("3_6ern4")] -position = Vector2(108.149, 236.033) -mass = 0.0793651 -physics_material_override = ExtResource("3_durpg") -metadata/bone_name = &"Bone-40" - -[node name="CircleShape2D" type="CollisionShape2D" parent="Egg5/Bone-40"] -shape = SubResource("CircleShape2D_4yipm") - -[node name="RemoteTransform2D" type="RemoteTransform2D" parent="Egg5/Bone-40"] -remote_path = NodePath("../../Skeleton2D/Bone-40") -update_rotation = false -update_scale = false +node_b = NodePath("../../Bone-21") +softness = 100.0 -[node name="Joint2D-Bone-40-Bone-34" type="PinJoint2D" parent="Egg5/Bone-40"] +[node name="Joint2D-Bone-20-Bone-24" type="PinJoint2D" parent="Egg5/Bone-20"] visible = false -rotation = -3.93352 +rotation = -2.35619 node_a = NodePath("..") -node_b = NodePath("../../Bone-34") -softness = 50.0 +node_b = NodePath("../../Bone-24") +softness = 100.0 -[node name="Joint2D-Bone-40-Bone-35" type="PinJoint2D" parent="Egg5/Bone-40"] +[node name="Joint2D-Bone-20-Bone-25" type="PinJoint2D" parent="Egg5/Bone-20"] visible = false -rotation = -4.71174 +rotation = -1.5708 node_a = NodePath("..") -node_b = NodePath("../../Bone-35") -softness = 50.0 +node_b = NodePath("../../Bone-25") +softness = 100.0 -[node name="Joint2D-Bone-40-Bone-39" type="PinJoint2D" parent="Egg5/Bone-40"] +[node name="Joint2D-Bone-20-Bone-26" type="PinJoint2D" parent="Egg5/Bone-20"] visible = false -rotation = -3.14697 +rotation = -0.785398 node_a = NodePath("..") -node_b = NodePath("../../Bone-39") -softness = 50.0 +node_b = NodePath("../../Bone-26") +softness = 100.0 -[node name="Bone-41" parent="Egg5" instance=ExtResource("3_6ern4")] -position = Vector2(132.956, 35.9734) -mass = 0.0793651 +[node name="Bone-21" type="RigidBody2D" parent="Egg5" instance=ExtResource("3_6ern4")] +position = Vector2(23.4, 190) +input_pickable = true +mass = 0.0942353 physics_material_override = ExtResource("3_durpg") -metadata/bone_name = &"Bone-41" +script = ExtResource("11_tqnjl") +metadata/idx = 21 +metadata/bone_name = &"Bone-21" -[node name="CircleShape2D" type="CollisionShape2D" parent="Egg5/Bone-41"] -shape = SubResource("CircleShape2D_4yipm") +[node name="CircleShape2D" type="CollisionShape2D" parent="Egg5/Bone-21"] +shape = SubResource("CircleShape2D_tkaeo") -[node name="RemoteTransform2D" type="RemoteTransform2D" parent="Egg5/Bone-41"] -remote_path = NodePath("../../Skeleton2D/Bone-41") +[node name="RemoteTransform2D" type="RemoteTransform2D" parent="Egg5/Bone-21"] +visible = false +remote_path = NodePath("../../Skeleton2D/Bone-21") update_rotation = false update_scale = false -[node name="Joint2D-Bone-41-Bone-14" type="PinJoint2D" parent="Egg5/Bone-41"] -visible = false -rotation = -4.02088 -node_a = NodePath("..") -node_b = NodePath("../../Bone-14") -softness = 50.0 - -[node name="Joint2D-Bone-41-Bone-15" type="PinJoint2D" parent="Egg5/Bone-41"] +[node name="Joint2D-Bone-21-Bone-16" type="PinJoint2D" parent="Egg5/Bone-21"] visible = false -rotation = 1.56987 +rotation = -3.65966 node_a = NodePath("..") -node_b = NodePath("../../Bone-15") -softness = 50.0 +node_b = NodePath("../../Bone-16") +softness = 100.0 -[node name="Joint2D-Bone-41-Bone-16" type="PinJoint2D" parent="Egg5/Bone-41"] +[node name="Joint2D-Bone-21-Bone-20" type="PinJoint2D" parent="Egg5/Bone-21"] visible = false -rotation = 0.782382 +rotation = -2.9635 node_a = NodePath("..") -node_b = NodePath("../../Bone-16") -softness = 50.0 - -[node name="Bone-42" parent="Egg5" instance=ExtResource("3_6ern4")] -position = Vector2(132.913, 60.8636) -mass = 0.0793651 -physics_material_override = ExtResource("3_durpg") -metadata/bone_name = &"Bone-42" - -[node name="CircleShape2D" type="CollisionShape2D" parent="Egg5/Bone-42"] -shape = SubResource("CircleShape2D_4yipm") - -[node name="RemoteTransform2D" type="RemoteTransform2D" parent="Egg5/Bone-42"] -remote_path = NodePath("../../Skeleton2D/Bone-42") -update_rotation = false -update_scale = false +node_b = NodePath("../../Bone-20") +softness = 100.0 -[node name="Joint2D-Bone-42-Bone-15" type="PinJoint2D" parent="Egg5/Bone-42"] +[node name="Joint2D-Bone-21-Bone-25" type="PinJoint2D" parent="Egg5/Bone-21"] visible = false -rotation = -3.92645 +rotation = -2.27381 node_a = NodePath("..") -node_b = NodePath("../../Bone-15") -softness = 50.0 +node_b = NodePath("../../Bone-25") +softness = 100.0 -[node name="Joint2D-Bone-42-Bone-16" type="PinJoint2D" parent="Egg5/Bone-42"] +[node name="Joint2D-Bone-21-Bone-26" type="PinJoint2D" parent="Egg5/Bone-21"] visible = false -rotation = 1.56173 +rotation = -1.5708 node_a = NodePath("..") -node_b = NodePath("../../Bone-16") -softness = 50.0 +node_b = NodePath("../../Bone-26") +softness = 100.0 -[node name="Joint2D-Bone-42-Bone-17" type="PinJoint2D" parent="Egg5/Bone-42"] +[node name="Joint2D-Bone-21-Bone-37" type="PinJoint2D" parent="Egg5/Bone-21"] visible = false -rotation = 0.776098 +rotation = -0.159352 node_a = NodePath("..") -node_b = NodePath("../../Bone-17") -softness = 50.0 +node_b = NodePath("../../Bone-37") +softness = 100.0 -[node name="Joint2D-Bone-42-Bone-41" type="PinJoint2D" parent="Egg5/Bone-42"] +[node name="Joint2D-Bone-21-Bone-38" type="PinJoint2D" parent="Egg5/Bone-21"] visible = false -rotation = -3.13984 +rotation = -0.86778 node_a = NodePath("..") -node_b = NodePath("../../Bone-41") -softness = 50.0 +node_b = NodePath("../../Bone-38") +softness = 100.0 -[node name="Bone-43" parent="Egg5" instance=ExtResource("3_6ern4")] -position = Vector2(132.984, 85.8957) -mass = 0.0793651 +[node name="Bone-22" type="RigidBody2D" parent="Egg5" instance=ExtResource("3_6ern4")] +position = Vector2(47, 110) +input_pickable = true +mass = 0.0942353 physics_material_override = ExtResource("3_durpg") -metadata/bone_name = &"Bone-43" +script = ExtResource("11_tqnjl") +metadata/idx = 22 +metadata/bone_name = &"Bone-22" -[node name="CircleShape2D" type="CollisionShape2D" parent="Egg5/Bone-43"] -shape = SubResource("CircleShape2D_4yipm") +[node name="CircleShape2D" type="CollisionShape2D" parent="Egg5/Bone-22"] +shape = SubResource("CircleShape2D_tkaeo") -[node name="RemoteTransform2D" type="RemoteTransform2D" parent="Egg5/Bone-43"] -remote_path = NodePath("../../Skeleton2D/Bone-43") +[node name="RemoteTransform2D" type="RemoteTransform2D" parent="Egg5/Bone-22"] +visible = false +remote_path = NodePath("../../Skeleton2D/Bone-22") update_rotation = false update_scale = false -[node name="Joint2D-Bone-43-Bone-16" type="PinJoint2D" parent="Egg5/Bone-43"] +[node name="Joint2D-Bone-22-Bone-1" type="PinJoint2D" parent="Egg5/Bone-22"] visible = false -rotation = -3.93074 +rotation = -3.95053 node_a = NodePath("..") -node_b = NodePath("../../Bone-16") -softness = 50.0 +node_b = NodePath("../../Bone-1") +softness = 100.0 -[node name="Joint2D-Bone-43-Bone-17" type="PinJoint2D" parent="Egg5/Bone-43"] +[node name="Joint2D-Bone-22-Bone-4" type="PinJoint2D" parent="Egg5/Bone-22"] visible = false -rotation = 1.56169 +rotation = -3.14159 node_a = NodePath("..") -node_b = NodePath("../../Bone-17") -softness = 50.0 +node_b = NodePath("../../Bone-4") +softness = 100.0 -[node name="Joint2D-Bone-43-Bone-18" type="PinJoint2D" parent="Egg5/Bone-43"] +[node name="Joint2D-Bone-22-Bone-17" type="PinJoint2D" parent="Egg5/Bone-22"] visible = false -rotation = 0.778705 +rotation = 1.5708 node_a = NodePath("..") -node_b = NodePath("../../Bone-18") -softness = 50.0 +node_b = NodePath("../../Bone-17") +softness = 100.0 -[node name="Joint2D-Bone-43-Bone-42" type="PinJoint2D" parent="Egg5/Bone-43"] +[node name="Joint2D-Bone-22-Bone-8" type="PinJoint2D" parent="Egg5/Bone-22"] visible = false -rotation = -3.14443 +rotation = -2.35619 node_a = NodePath("..") -node_b = NodePath("../../Bone-42") -softness = 50.0 +node_b = NodePath("../../Bone-8") +softness = 100.0 -[node name="Bone-44" parent="Egg5" instance=ExtResource("3_6ern4")] -position = Vector2(132.979, 110.926) -mass = 0.0793651 -physics_material_override = ExtResource("3_durpg") -metadata/bone_name = &"Bone-44" - -[node name="CircleShape2D" type="CollisionShape2D" parent="Egg5/Bone-44"] -shape = SubResource("CircleShape2D_4yipm") - -[node name="RemoteTransform2D" type="RemoteTransform2D" parent="Egg5/Bone-44"] -remote_path = NodePath("../../Skeleton2D/Bone-44") -update_rotation = false -update_scale = false - -[node name="Joint2D-Bone-44-Bone-17" type="PinJoint2D" parent="Egg5/Bone-44"] +[node name="Joint2D-Bone-22-Bone-27" type="PinJoint2D" parent="Egg5/Bone-22"] visible = false -rotation = -3.9281 +rotation = -1.5708 node_a = NodePath("..") -node_b = NodePath("../../Bone-17") -softness = 50.0 +node_b = NodePath("../../Bone-27") +softness = 100.0 -[node name="Joint2D-Bone-44-Bone-18" type="PinJoint2D" parent="Egg5/Bone-44"] +[node name="Joint2D-Bone-22-Bone-18" type="PinJoint2D" parent="Egg5/Bone-22"] visible = false -rotation = 1.56079 +rotation = 0.785398 node_a = NodePath("..") node_b = NodePath("../../Bone-18") -softness = 50.0 +softness = 100.0 -[node name="Joint2D-Bone-44-Bone-36" type="PinJoint2D" parent="Egg5/Bone-44"] +[node name="Joint2D-Bone-22-Bone-23" type="PinJoint2D" parent="Egg5/Bone-22"] visible = false -rotation = 0.781018 node_a = NodePath("..") -node_b = NodePath("../../Bone-36") -softness = 50.0 +node_b = NodePath("../../Bone-23") +softness = 100.0 -[node name="Joint2D-Bone-44-Bone-43" type="PinJoint2D" parent="Egg5/Bone-44"] +[node name="Joint2D-Bone-22-Bone-28" type="PinJoint2D" parent="Egg5/Bone-22"] visible = false -rotation = -3.1414 +rotation = -0.785398 node_a = NodePath("..") -node_b = NodePath("../../Bone-43") -softness = 50.0 +node_b = NodePath("../../Bone-28") +softness = 100.0 -[node name="Bone-45" parent="Egg5" instance=ExtResource("3_6ern4")] -position = Vector2(152.555, 59.2647) -mass = 0.0793651 +[node name="Bone-23" type="RigidBody2D" parent="Egg5" instance=ExtResource("3_6ern4")] +position = Vector2(47, 130) +input_pickable = true +mass = 0.0942353 physics_material_override = ExtResource("3_durpg") -metadata/bone_name = &"Bone-45" +script = ExtResource("11_tqnjl") +metadata/idx = 23 +metadata/bone_name = &"Bone-23" -[node name="CircleShape2D" type="CollisionShape2D" parent="Egg5/Bone-45"] -shape = SubResource("CircleShape2D_4yipm") +[node name="CircleShape2D" type="CollisionShape2D" parent="Egg5/Bone-23"] +shape = SubResource("CircleShape2D_tkaeo") -[node name="RemoteTransform2D" type="RemoteTransform2D" parent="Egg5/Bone-45"] -remote_path = NodePath("../../Skeleton2D/Bone-45") +[node name="RemoteTransform2D" type="RemoteTransform2D" parent="Egg5/Bone-23"] +visible = false +remote_path = NodePath("../../Skeleton2D/Bone-23") update_rotation = false update_scale = false -[node name="Joint2D-Bone-45-Bone-16" type="PinJoint2D" parent="Egg5/Bone-45"] +[node name="Joint2D-Bone-23-Bone-17" type="PinJoint2D" parent="Egg5/Bone-23"] visible = false -rotation = 1.52987 +rotation = -4.00893 node_a = NodePath("..") -node_b = NodePath("../../Bone-16") -softness = 50.0 +node_b = NodePath("../../Bone-17") +softness = 100.0 -[node name="Joint2D-Bone-45-Bone-41" type="PinJoint2D" parent="Egg5/Bone-45"] +[node name="Joint2D-Bone-23-Bone-18" type="PinJoint2D" parent="Egg5/Bone-23"] visible = false -rotation = -3.8411 +rotation = 1.5708 node_a = NodePath("..") -node_b = NodePath("../../Bone-41") -softness = 50.0 +node_b = NodePath("../../Bone-18") +softness = 100.0 -[node name="Joint2D-Bone-45-Bone-42" type="PinJoint2D" parent="Egg5/Bone-45"] +[node name="Joint2D-Bone-23-Bone-22" type="PinJoint2D" parent="Egg5/Bone-23"] visible = false -rotation = 1.48957 +rotation = -3.14159 node_a = NodePath("..") -node_b = NodePath("../../Bone-42") -softness = 50.0 +node_b = NodePath("../../Bone-22") +softness = 100.0 -[node name="Joint2D-Bone-45-Bone-43" type="PinJoint2D" parent="Egg5/Bone-45"] +[node name="Joint2D-Bone-23-Bone-19" type="PinJoint2D" parent="Egg5/Bone-23"] visible = false -rotation = 0.633761 +rotation = 0.785398 node_a = NodePath("..") -node_b = NodePath("../../Bone-43") -softness = 50.0 - -[node name="Bone-46" parent="Egg5" instance=ExtResource("3_6ern4")] -position = Vector2(157.936, 85.9974) -mass = 0.0793651 -physics_material_override = ExtResource("3_durpg") -metadata/bone_name = &"Bone-46" - -[node name="CircleShape2D" type="CollisionShape2D" parent="Egg5/Bone-46"] -shape = SubResource("CircleShape2D_4yipm") - -[node name="RemoteTransform2D" type="RemoteTransform2D" parent="Egg5/Bone-46"] -remote_path = NodePath("../../Skeleton2D/Bone-46") -update_rotation = false -update_scale = false +node_b = NodePath("../../Bone-19") +softness = 100.0 -[node name="Joint2D-Bone-46-Bone-42" type="PinJoint2D" parent="Egg5/Bone-46"] +[node name="Joint2D-Bone-23-Bone-24" type="PinJoint2D" parent="Egg5/Bone-23"] visible = false -rotation = -3.92478 node_a = NodePath("..") -node_b = NodePath("../../Bone-42") -softness = 50.0 +node_b = NodePath("../../Bone-24") +softness = 100.0 -[node name="Joint2D-Bone-46-Bone-43" type="PinJoint2D" parent="Egg5/Bone-46"] +[node name="Joint2D-Bone-23-Bone-27" type="PinJoint2D" parent="Egg5/Bone-23"] visible = false -rotation = -4.70831 +rotation = -2.35619 node_a = NodePath("..") -node_b = NodePath("../../Bone-43") -softness = 50.0 +node_b = NodePath("../../Bone-27") +softness = 100.0 -[node name="Joint2D-Bone-46-Bone-44" type="PinJoint2D" parent="Egg5/Bone-46"] +[node name="Joint2D-Bone-23-Bone-28" type="PinJoint2D" parent="Egg5/Bone-23"] visible = false -rotation = 0.785965 +rotation = -1.5708 node_a = NodePath("..") -node_b = NodePath("../../Bone-44") -softness = 50.0 +node_b = NodePath("../../Bone-28") +softness = 100.0 -[node name="Joint2D-Bone-46-Bone-45" type="PinJoint2D" parent="Egg5/Bone-46"] +[node name="Joint2D-Bone-23-Bone-29" type="PinJoint2D" parent="Egg5/Bone-23"] visible = false -rotation = -3.34023 +rotation = -0.785398 node_a = NodePath("..") -node_b = NodePath("../../Bone-45") -softness = 50.0 +node_b = NodePath("../../Bone-29") +softness = 100.0 -[node name="Bone-47" parent="Egg5" instance=ExtResource("3_6ern4")] -position = Vector2(157.879, 111.009) -mass = 0.0793651 +[node name="Bone-24" type="RigidBody2D" parent="Egg5" instance=ExtResource("3_6ern4")] +position = Vector2(47, 150) +input_pickable = true +mass = 0.0942353 physics_material_override = ExtResource("3_durpg") -metadata/bone_name = &"Bone-47" +script = ExtResource("11_tqnjl") +metadata/idx = 24 +metadata/bone_name = &"Bone-24" -[node name="CircleShape2D" type="CollisionShape2D" parent="Egg5/Bone-47"] -shape = SubResource("CircleShape2D_4yipm") +[node name="CircleShape2D" type="CollisionShape2D" parent="Egg5/Bone-24"] +shape = SubResource("CircleShape2D_tkaeo") -[node name="RemoteTransform2D" type="RemoteTransform2D" parent="Egg5/Bone-47"] -remote_path = NodePath("../../Skeleton2D/Bone-47") +[node name="RemoteTransform2D" type="RemoteTransform2D" parent="Egg5/Bone-24"] +visible = false +remote_path = NodePath("../../Skeleton2D/Bone-24") update_rotation = false update_scale = false -[node name="Joint2D-Bone-47-Bone-43" type="PinJoint2D" parent="Egg5/Bone-47"] +[node name="Joint2D-Bone-24-Bone-18" type="PinJoint2D" parent="Egg5/Bone-24"] visible = false -rotation = -3.92262 +rotation = -3.92699 node_a = NodePath("..") -node_b = NodePath("../../Bone-43") -softness = 50.0 +node_b = NodePath("../../Bone-18") +softness = 100.0 -[node name="Joint2D-Bone-47-Bone-44" type="PinJoint2D" parent="Egg5/Bone-47"] +[node name="Joint2D-Bone-24-Bone-19" type="PinJoint2D" parent="Egg5/Bone-24"] visible = false -rotation = -4.70904 +rotation = 1.5708 node_a = NodePath("..") -node_b = NodePath("../../Bone-44") -softness = 50.0 +node_b = NodePath("../../Bone-19") +softness = 100.0 -[node name="Joint2D-Bone-47-Bone-46" type="PinJoint2D" parent="Egg5/Bone-47"] +[node name="Joint2D-Bone-24-Bone-23" type="PinJoint2D" parent="Egg5/Bone-24"] visible = false -rotation = -3.13932 +rotation = -3.14159 node_a = NodePath("..") -node_b = NodePath("../../Bone-46") -softness = 50.0 - -[node name="Bone-48" parent="Egg5" instance=ExtResource("3_6ern4")] -position = Vector2(173.662, 110.385) -mass = 0.0793651 -physics_material_override = ExtResource("3_durpg") -metadata/bone_name = &"Bone-48" +node_b = NodePath("../../Bone-23") +softness = 100.0 -[node name="CircleShape2D" type="CollisionShape2D" parent="Egg5/Bone-48"] -shape = SubResource("CircleShape2D_4yipm") +[node name="Joint2D-Bone-24-Bone-20" type="PinJoint2D" parent="Egg5/Bone-24"] +visible = false +rotation = 0.785398 +node_a = NodePath("..") +node_b = NodePath("../../Bone-20") +softness = 100.0 -[node name="RemoteTransform2D" type="RemoteTransform2D" parent="Egg5/Bone-48"] -remote_path = NodePath("../../Skeleton2D/Bone-48") -update_rotation = false -update_scale = false +[node name="Joint2D-Bone-24-Bone-25" type="PinJoint2D" parent="Egg5/Bone-24"] +visible = false +node_a = NodePath("..") +node_b = NodePath("../../Bone-25") +softness = 100.0 -[node name="Joint2D-Bone-48-Bone-44" type="PinJoint2D" parent="Egg5/Bone-48"] +[node name="Joint2D-Bone-24-Bone-28" type="PinJoint2D" parent="Egg5/Bone-24"] visible = false -rotation = 1.5575 +rotation = -2.35619 node_a = NodePath("..") -node_b = NodePath("../../Bone-44") -softness = 50.0 +node_b = NodePath("../../Bone-28") +softness = 100.0 -[node name="Joint2D-Bone-48-Bone-46" type="PinJoint2D" parent="Egg5/Bone-48"] +[node name="Joint2D-Bone-24-Bone-29" type="PinJoint2D" parent="Egg5/Bone-24"] visible = false -rotation = -3.71434 +rotation = -1.5708 node_a = NodePath("..") -node_b = NodePath("../../Bone-46") -softness = 50.0 +node_b = NodePath("../../Bone-29") +softness = 100.0 -[node name="Joint2D-Bone-48-Bone-47" type="PinJoint2D" parent="Egg5/Bone-48"] +[node name="Joint2D-Bone-24-Bone-30" type="PinJoint2D" parent="Egg5/Bone-24"] visible = false -rotation = 1.53127 +rotation = -0.785398 node_a = NodePath("..") -node_b = NodePath("../../Bone-47") -softness = 50.0 +node_b = NodePath("../../Bone-30") +softness = 100.0 -[node name="Bone-49" parent="Egg5" instance=ExtResource("3_6ern4")] -position = Vector2(132.838, 135.981) -mass = 0.0793651 +[node name="Bone-25" type="RigidBody2D" parent="Egg5" instance=ExtResource("3_6ern4")] +position = Vector2(47, 170) +input_pickable = true +mass = 0.0942353 physics_material_override = ExtResource("3_durpg") -metadata/bone_name = &"Bone-49" +script = ExtResource("11_tqnjl") +metadata/idx = 25 +metadata/bone_name = &"Bone-25" -[node name="CircleShape2D" type="CollisionShape2D" parent="Egg5/Bone-49"] -shape = SubResource("CircleShape2D_4yipm") +[node name="CircleShape2D" type="CollisionShape2D" parent="Egg5/Bone-25"] +shape = SubResource("CircleShape2D_tkaeo") -[node name="RemoteTransform2D" type="RemoteTransform2D" parent="Egg5/Bone-49"] -remote_path = NodePath("../../Skeleton2D/Bone-49") +[node name="RemoteTransform2D" type="RemoteTransform2D" parent="Egg5/Bone-25"] +visible = false +remote_path = NodePath("../../Skeleton2D/Bone-25") update_rotation = false update_scale = false -[node name="Joint2D-Bone-49-Bone-18" type="PinJoint2D" parent="Egg5/Bone-49"] -visible = false -rotation = -3.92684 -node_a = NodePath("..") -node_b = NodePath("../../Bone-18") -softness = 50.0 - -[node name="Joint2D-Bone-49-Bone-36" type="PinJoint2D" parent="Egg5/Bone-49"] +[node name="Joint2D-Bone-25-Bone-19" type="PinJoint2D" parent="Egg5/Bone-25"] visible = false -rotation = 1.56395 +rotation = -3.92699 node_a = NodePath("..") -node_b = NodePath("../../Bone-36") -softness = 50.0 +node_b = NodePath("../../Bone-19") +softness = 100.0 -[node name="Joint2D-Bone-49-Bone-37" type="PinJoint2D" parent="Egg5/Bone-49"] +[node name="Joint2D-Bone-25-Bone-20" type="PinJoint2D" parent="Egg5/Bone-25"] visible = false -rotation = 0.778796 +rotation = 1.5708 node_a = NodePath("..") -node_b = NodePath("../../Bone-37") -softness = 50.0 +node_b = NodePath("../../Bone-20") +softness = 100.0 -[node name="Joint2D-Bone-49-Bone-44" type="PinJoint2D" parent="Egg5/Bone-49"] +[node name="Joint2D-Bone-25-Bone-24" type="PinJoint2D" parent="Egg5/Bone-25"] visible = false -rotation = -3.13598 +rotation = -3.14159 node_a = NodePath("..") -node_b = NodePath("../../Bone-44") -softness = 50.0 +node_b = NodePath("../../Bone-24") +softness = 100.0 -[node name="Joint2D-Bone-49-Bone-47" type="PinJoint2D" parent="Egg5/Bone-49"] +[node name="Joint2D-Bone-25-Bone-21" type="PinJoint2D" parent="Egg5/Bone-25"] visible = false -rotation = -2.35482 +rotation = 0.86778 node_a = NodePath("..") -node_b = NodePath("../../Bone-47") -softness = 50.0 - -[node name="Bone-50" parent="Egg5" instance=ExtResource("3_6ern4")] -position = Vector2(133.14, 160.886) -mass = 0.0793651 -physics_material_override = ExtResource("3_durpg") -metadata/bone_name = &"Bone-50" - -[node name="CircleShape2D" type="CollisionShape2D" parent="Egg5/Bone-50"] -shape = SubResource("CircleShape2D_4yipm") - -[node name="RemoteTransform2D" type="RemoteTransform2D" parent="Egg5/Bone-50"] -remote_path = NodePath("../../Skeleton2D/Bone-50") -update_rotation = false -update_scale = false +node_b = NodePath("../../Bone-21") +softness = 100.0 -[node name="Joint2D-Bone-50-Bone-36" type="PinJoint2D" parent="Egg5/Bone-50"] +[node name="Joint2D-Bone-25-Bone-26" type="PinJoint2D" parent="Egg5/Bone-25"] visible = false -rotation = -3.93565 node_a = NodePath("..") -node_b = NodePath("../../Bone-36") -softness = 50.0 +node_b = NodePath("../../Bone-26") +softness = 100.0 -[node name="Joint2D-Bone-50-Bone-37" type="PinJoint2D" parent="Egg5/Bone-50"] +[node name="Joint2D-Bone-25-Bone-29" type="PinJoint2D" parent="Egg5/Bone-25"] visible = false -rotation = 1.56187 +rotation = -2.35619 node_a = NodePath("..") -node_b = NodePath("../../Bone-37") -softness = 50.0 +node_b = NodePath("../../Bone-29") +softness = 100.0 -[node name="Joint2D-Bone-50-Bone-38" type="PinJoint2D" parent="Egg5/Bone-50"] +[node name="Joint2D-Bone-25-Bone-30" type="PinJoint2D" parent="Egg5/Bone-25"] visible = false -rotation = 0.786615 +rotation = -1.5708 node_a = NodePath("..") -node_b = NodePath("../../Bone-38") -softness = 50.0 +node_b = NodePath("../../Bone-30") +softness = 100.0 -[node name="Joint2D-Bone-50-Bone-49" type="PinJoint2D" parent="Egg5/Bone-50"] +[node name="Joint2D-Bone-25-Bone-31" type="PinJoint2D" parent="Egg5/Bone-25"] visible = false -rotation = -3.15372 +rotation = -0.785398 node_a = NodePath("..") -node_b = NodePath("../../Bone-49") -softness = 50.0 +node_b = NodePath("../../Bone-31") +softness = 100.0 -[node name="Bone-51" parent="Egg5" instance=ExtResource("3_6ern4")] -position = Vector2(133.063, 185.995) -mass = 0.0793651 +[node name="Bone-26" type="RigidBody2D" parent="Egg5" instance=ExtResource("3_6ern4")] +position = Vector2(47, 190) +input_pickable = true +mass = 0.0942353 physics_material_override = ExtResource("3_durpg") -metadata/bone_name = &"Bone-51" +script = ExtResource("11_tqnjl") +metadata/idx = 26 +metadata/bone_name = &"Bone-26" -[node name="CircleShape2D" type="CollisionShape2D" parent="Egg5/Bone-51"] -shape = SubResource("CircleShape2D_4yipm") +[node name="CircleShape2D" type="CollisionShape2D" parent="Egg5/Bone-26"] +shape = SubResource("CircleShape2D_tkaeo") -[node name="RemoteTransform2D" type="RemoteTransform2D" parent="Egg5/Bone-51"] -remote_path = NodePath("../../Skeleton2D/Bone-51") +[node name="RemoteTransform2D" type="RemoteTransform2D" parent="Egg5/Bone-26"] +visible = false +remote_path = NodePath("../../Skeleton2D/Bone-26") update_rotation = false update_scale = false -[node name="Joint2D-Bone-51-Bone-37" type="PinJoint2D" parent="Egg5/Bone-51"] +[node name="Joint2D-Bone-26-Bone-20" type="PinJoint2D" parent="Egg5/Bone-26"] visible = false -rotation = -3.92976 +rotation = -3.92699 node_a = NodePath("..") -node_b = NodePath("../../Bone-37") -softness = 50.0 +node_b = NodePath("../../Bone-20") +softness = 100.0 -[node name="Joint2D-Bone-51-Bone-38" type="PinJoint2D" parent="Egg5/Bone-51"] +[node name="Joint2D-Bone-26-Bone-21" type="PinJoint2D" parent="Egg5/Bone-26"] visible = false -rotation = 1.56964 +rotation = 1.5708 node_a = NodePath("..") -node_b = NodePath("../../Bone-38") -softness = 50.0 +node_b = NodePath("../../Bone-21") +softness = 100.0 -[node name="Joint2D-Bone-51-Bone-39" type="PinJoint2D" parent="Egg5/Bone-51"] +[node name="Joint2D-Bone-26-Bone-25" type="PinJoint2D" parent="Egg5/Bone-26"] visible = false -rotation = 0.786925 +rotation = -3.14159 node_a = NodePath("..") -node_b = NodePath("../../Bone-39") -softness = 50.0 +node_b = NodePath("../../Bone-25") +softness = 100.0 -[node name="Joint2D-Bone-51-Bone-50" type="PinJoint2D" parent="Egg5/Bone-51"] +[node name="Joint2D-Bone-26-Bone-37" type="PinJoint2D" parent="Egg5/Bone-26"] visible = false -rotation = -3.13849 +rotation = 0.728855 node_a = NodePath("..") -node_b = NodePath("../../Bone-50") -softness = 50.0 - -[node name="Bone-52" parent="Egg5" instance=ExtResource("3_6ern4")] -position = Vector2(133.061, 211.074) -mass = 0.0793651 -physics_material_override = ExtResource("3_durpg") -metadata/bone_name = &"Bone-52" - -[node name="CircleShape2D" type="CollisionShape2D" parent="Egg5/Bone-52"] -shape = SubResource("CircleShape2D_4yipm") - -[node name="RemoteTransform2D" type="RemoteTransform2D" parent="Egg5/Bone-52"] -remote_path = NodePath("../../Skeleton2D/Bone-52") -update_rotation = false -update_scale = false +node_b = NodePath("../../Bone-37") +softness = 100.0 -[node name="Joint2D-Bone-52-Bone-38" type="PinJoint2D" parent="Egg5/Bone-52"] +[node name="Joint2D-Bone-26-Bone-38" type="PinJoint2D" parent="Egg5/Bone-26"] visible = false -rotation = -3.9284 node_a = NodePath("..") node_b = NodePath("../../Bone-38") -softness = 50.0 +softness = 100.0 -[node name="Joint2D-Bone-52-Bone-39" type="PinJoint2D" parent="Egg5/Bone-52"] +[node name="Joint2D-Bone-26-Bone-30" type="PinJoint2D" parent="Egg5/Bone-26"] visible = false -rotation = -4.70814 +rotation = -2.35619 node_a = NodePath("..") -node_b = NodePath("../../Bone-39") -softness = 50.0 +node_b = NodePath("../../Bone-30") +softness = 100.0 -[node name="Joint2D-Bone-52-Bone-40" type="PinJoint2D" parent="Egg5/Bone-52"] +[node name="Joint2D-Bone-26-Bone-31" type="PinJoint2D" parent="Egg5/Bone-26"] visible = false -rotation = 0.784455 +rotation = -1.5708 node_a = NodePath("..") -node_b = NodePath("../../Bone-40") -softness = 50.0 +node_b = NodePath("../../Bone-31") +softness = 100.0 -[node name="Joint2D-Bone-52-Bone-51" type="PinJoint2D" parent="Egg5/Bone-52"] +[node name="Joint2D-Bone-26-Bone-40" type="PinJoint2D" parent="Egg5/Bone-26"] visible = false -rotation = -3.14152 +rotation = -0.785398 node_a = NodePath("..") -node_b = NodePath("../../Bone-51") -softness = 50.0 +node_b = NodePath("../../Bone-40") +softness = 100.0 -[node name="Bone-53" parent="Egg5" instance=ExtResource("3_6ern4")] -position = Vector2(133.038, 236.074) -mass = 0.0793651 +[node name="Bone-27" type="RigidBody2D" parent="Egg5" instance=ExtResource("3_6ern4")] +position = Vector2(67, 110) +input_pickable = true +mass = 0.0942353 physics_material_override = ExtResource("3_durpg") -metadata/bone_name = &"Bone-53" +script = ExtResource("11_tqnjl") +metadata/idx = 27 +metadata/bone_name = &"Bone-27" -[node name="CircleShape2D" type="CollisionShape2D" parent="Egg5/Bone-53"] -shape = SubResource("CircleShape2D_4yipm") +[node name="CircleShape2D" type="CollisionShape2D" parent="Egg5/Bone-27"] +shape = SubResource("CircleShape2D_tkaeo") -[node name="RemoteTransform2D" type="RemoteTransform2D" parent="Egg5/Bone-53"] -remote_path = NodePath("../../Skeleton2D/Bone-53") +[node name="RemoteTransform2D" type="RemoteTransform2D" parent="Egg5/Bone-27"] +visible = false +remote_path = NodePath("../../Skeleton2D/Bone-27") update_rotation = false update_scale = false -[node name="Joint2D-Bone-53-Bone-39" type="PinJoint2D" parent="Egg5/Bone-53"] +[node name="Joint2D-Bone-27-Bone-4" type="PinJoint2D" parent="Egg5/Bone-27"] visible = false -rotation = -3.92534 +rotation = -3.92699 node_a = NodePath("..") -node_b = NodePath("../../Bone-39") -softness = 50.0 +node_b = NodePath("../../Bone-4") +softness = 100.0 -[node name="Joint2D-Bone-53-Bone-40" type="PinJoint2D" parent="Egg5/Bone-53"] +[node name="Joint2D-Bone-27-Bone-8" type="PinJoint2D" parent="Egg5/Bone-27"] visible = false -rotation = -4.71075 +rotation = -3.14159 node_a = NodePath("..") -node_b = NodePath("../../Bone-40") -softness = 50.0 +node_b = NodePath("../../Bone-8") +softness = 100.0 -[node name="Joint2D-Bone-53-Bone-52" type="PinJoint2D" parent="Egg5/Bone-53"] +[node name="Joint2D-Bone-27-Bone-22" type="PinJoint2D" parent="Egg5/Bone-27"] visible = false -rotation = -3.14067 +rotation = 1.5708 node_a = NodePath("..") -node_b = NodePath("../../Bone-52") -softness = 50.0 - -[node name="Bone-54" parent="Egg5" instance=ExtResource("3_6ern4")] -position = Vector2(157.876, 136.01) -mass = 0.0793651 -physics_material_override = ExtResource("3_durpg") -metadata/bone_name = &"Bone-54" - -[node name="CircleShape2D" type="CollisionShape2D" parent="Egg5/Bone-54"] -shape = SubResource("CircleShape2D_4yipm") - -[node name="RemoteTransform2D" type="RemoteTransform2D" parent="Egg5/Bone-54"] -remote_path = NodePath("../../Skeleton2D/Bone-54") -update_rotation = false -update_scale = false +node_b = NodePath("../../Bone-22") +softness = 100.0 -[node name="Joint2D-Bone-54-Bone-44" type="PinJoint2D" parent="Egg5/Bone-54"] +[node name="Joint2D-Bone-27-Bone-13" type="PinJoint2D" parent="Egg5/Bone-27"] visible = false -rotation = -3.92324 +rotation = -2.35619 node_a = NodePath("..") -node_b = NodePath("../../Bone-44") -softness = 50.0 +node_b = NodePath("../../Bone-13") +softness = 100.0 -[node name="Joint2D-Bone-54-Bone-47" type="PinJoint2D" parent="Egg5/Bone-54"] +[node name="Joint2D-Bone-27-Bone-32" type="PinJoint2D" parent="Egg5/Bone-27"] visible = false -rotation = -3.14145 +rotation = -1.5708 node_a = NodePath("..") -node_b = NodePath("../../Bone-47") -softness = 50.0 +node_b = NodePath("../../Bone-32") +softness = 100.0 -[node name="Joint2D-Bone-54-Bone-48" type="PinJoint2D" parent="Egg5/Bone-54"] +[node name="Joint2D-Bone-27-Bone-23" type="PinJoint2D" parent="Egg5/Bone-27"] visible = false -rotation = -2.58944 +rotation = 0.785398 node_a = NodePath("..") -node_b = NodePath("../../Bone-48") -softness = 50.0 +node_b = NodePath("../../Bone-23") +softness = 100.0 -[node name="Joint2D-Bone-54-Bone-49" type="PinJoint2D" parent="Egg5/Bone-54"] +[node name="Joint2D-Bone-27-Bone-28" type="PinJoint2D" parent="Egg5/Bone-27"] visible = false -rotation = -4.71124 node_a = NodePath("..") -node_b = NodePath("../../Bone-49") -softness = 50.0 +node_b = NodePath("../../Bone-28") +softness = 100.0 -[node name="Joint2D-Bone-54-Bone-50" type="PinJoint2D" parent="Egg5/Bone-54"] +[node name="Joint2D-Bone-27-Bone-33" type="PinJoint2D" parent="Egg5/Bone-27"] visible = false -rotation = 0.782564 +rotation = -0.785398 node_a = NodePath("..") -node_b = NodePath("../../Bone-50") -softness = 50.0 +node_b = NodePath("../../Bone-33") +softness = 100.0 -[node name="Bone-55" parent="Egg5" instance=ExtResource("3_6ern4")] -position = Vector2(158.031, 160.932) -mass = 0.0793651 +[node name="Bone-28" type="RigidBody2D" parent="Egg5" instance=ExtResource("3_6ern4")] +position = Vector2(67, 130) +input_pickable = true +mass = 0.0942353 physics_material_override = ExtResource("3_durpg") -metadata/bone_name = &"Bone-55" +script = ExtResource("11_tqnjl") +metadata/idx = 28 +metadata/bone_name = &"Bone-28" -[node name="CircleShape2D" type="CollisionShape2D" parent="Egg5/Bone-55"] -shape = SubResource("CircleShape2D_4yipm") +[node name="CircleShape2D" type="CollisionShape2D" parent="Egg5/Bone-28"] +shape = SubResource("CircleShape2D_tkaeo") -[node name="RemoteTransform2D" type="RemoteTransform2D" parent="Egg5/Bone-55"] -remote_path = NodePath("../../Skeleton2D/Bone-55") +[node name="RemoteTransform2D" type="RemoteTransform2D" parent="Egg5/Bone-28"] +visible = false +remote_path = NodePath("../../Skeleton2D/Bone-28") update_rotation = false update_scale = false -[node name="Joint2D-Bone-55-Bone-49" type="PinJoint2D" parent="Egg5/Bone-55"] +[node name="Joint2D-Bone-28-Bone-22" type="PinJoint2D" parent="Egg5/Bone-28"] visible = false -rotation = -3.93182 +rotation = -3.92699 node_a = NodePath("..") -node_b = NodePath("../../Bone-49") -softness = 50.0 +node_b = NodePath("../../Bone-22") +softness = 100.0 -[node name="Joint2D-Bone-55-Bone-50" type="PinJoint2D" parent="Egg5/Bone-55"] +[node name="Joint2D-Bone-28-Bone-23" type="PinJoint2D" parent="Egg5/Bone-28"] visible = false -rotation = -4.71054 +rotation = 1.5708 node_a = NodePath("..") -node_b = NodePath("../../Bone-50") -softness = 50.0 +node_b = NodePath("../../Bone-23") +softness = 100.0 -[node name="Joint2D-Bone-55-Bone-51" type="PinJoint2D" parent="Egg5/Bone-55"] +[node name="Joint2D-Bone-28-Bone-27" type="PinJoint2D" parent="Egg5/Bone-28"] visible = false -rotation = 0.783508 +rotation = -3.14159 node_a = NodePath("..") -node_b = NodePath("../../Bone-51") -softness = 50.0 +node_b = NodePath("../../Bone-27") +softness = 100.0 -[node name="Joint2D-Bone-55-Bone-54" type="PinJoint2D" parent="Egg5/Bone-55"] +[node name="Joint2D-Bone-28-Bone-24" type="PinJoint2D" parent="Egg5/Bone-28"] visible = false -rotation = -3.14784 +rotation = 0.785398 node_a = NodePath("..") -node_b = NodePath("../../Bone-54") -softness = 50.0 - -[node name="Bone-56" parent="Egg5" instance=ExtResource("3_6ern4")] -position = Vector2(158.178, 185.985) -mass = 0.0793651 -physics_material_override = ExtResource("3_durpg") -metadata/bone_name = &"Bone-56" - -[node name="CircleShape2D" type="CollisionShape2D" parent="Egg5/Bone-56"] -shape = SubResource("CircleShape2D_4yipm") - -[node name="RemoteTransform2D" type="RemoteTransform2D" parent="Egg5/Bone-56"] -remote_path = NodePath("../../Skeleton2D/Bone-56") -update_rotation = false -update_scale = false +node_b = NodePath("../../Bone-24") +softness = 100.0 -[node name="Joint2D-Bone-56-Bone-50" type="PinJoint2D" parent="Egg5/Bone-56"] +[node name="Joint2D-Bone-28-Bone-29" type="PinJoint2D" parent="Egg5/Bone-28"] visible = false -rotation = -3.92577 node_a = NodePath("..") -node_b = NodePath("../../Bone-50") -softness = 50.0 +node_b = NodePath("../../Bone-29") +softness = 100.0 -[node name="Joint2D-Bone-56-Bone-51" type="PinJoint2D" parent="Egg5/Bone-56"] +[node name="Joint2D-Bone-28-Bone-32" type="PinJoint2D" parent="Egg5/Bone-28"] visible = false -rotation = 1.57038 +rotation = -2.35619 node_a = NodePath("..") -node_b = NodePath("../../Bone-51") -softness = 50.0 +node_b = NodePath("../../Bone-32") +softness = 100.0 -[node name="Joint2D-Bone-56-Bone-52" type="PinJoint2D" parent="Egg5/Bone-56"] +[node name="Joint2D-Bone-28-Bone-33" type="PinJoint2D" parent="Egg5/Bone-28"] visible = false -rotation = 0.785962 +rotation = -1.5708 node_a = NodePath("..") -node_b = NodePath("../../Bone-52") -softness = 50.0 +node_b = NodePath("../../Bone-33") +softness = 100.0 -[node name="Joint2D-Bone-56-Bone-55" type="PinJoint2D" parent="Egg5/Bone-56"] +[node name="Joint2D-Bone-28-Bone-34" type="PinJoint2D" parent="Egg5/Bone-28"] visible = false -rotation = -3.14745 +rotation = -0.785398 node_a = NodePath("..") -node_b = NodePath("../../Bone-55") -softness = 50.0 +node_b = NodePath("../../Bone-34") +softness = 100.0 -[node name="Bone-57" parent="Egg5" instance=ExtResource("3_6ern4")] -position = Vector2(157.986, 210.894) -mass = 0.0793651 +[node name="Bone-29" type="RigidBody2D" parent="Egg5" instance=ExtResource("3_6ern4")] +position = Vector2(67, 150) +input_pickable = true +mass = 0.0942353 physics_material_override = ExtResource("3_durpg") -metadata/bone_name = &"Bone-57" +script = ExtResource("11_tqnjl") +metadata/idx = 29 +metadata/bone_name = &"Bone-29" -[node name="CircleShape2D" type="CollisionShape2D" parent="Egg5/Bone-57"] -shape = SubResource("CircleShape2D_4yipm") +[node name="CircleShape2D" type="CollisionShape2D" parent="Egg5/Bone-29"] +shape = SubResource("CircleShape2D_tkaeo") -[node name="RemoteTransform2D" type="RemoteTransform2D" parent="Egg5/Bone-57"] -remote_path = NodePath("../../Skeleton2D/Bone-57") +[node name="RemoteTransform2D" type="RemoteTransform2D" parent="Egg5/Bone-29"] +visible = false +remote_path = NodePath("../../Skeleton2D/Bone-29") update_rotation = false update_scale = false -[node name="Joint2D-Bone-57-Bone-51" type="PinJoint2D" parent="Egg5/Bone-57"] +[node name="Joint2D-Bone-29-Bone-23" type="PinJoint2D" parent="Egg5/Bone-29"] visible = false -rotation = -3.92749 +rotation = -3.92699 node_a = NodePath("..") -node_b = NodePath("../../Bone-51") -softness = 50.0 +node_b = NodePath("../../Bone-23") +softness = 100.0 -[node name="Joint2D-Bone-57-Bone-52" type="PinJoint2D" parent="Egg5/Bone-57"] +[node name="Joint2D-Bone-29-Bone-24" type="PinJoint2D" parent="Egg5/Bone-29"] visible = false -rotation = 1.56357 +rotation = 1.5708 node_a = NodePath("..") -node_b = NodePath("../../Bone-52") -softness = 50.0 +node_b = NodePath("../../Bone-24") +softness = 100.0 -[node name="Joint2D-Bone-57-Bone-53" type="PinJoint2D" parent="Egg5/Bone-57"] +[node name="Joint2D-Bone-29-Bone-28" type="PinJoint2D" parent="Egg5/Bone-29"] visible = false -rotation = 0.780775 +rotation = -3.14159 node_a = NodePath("..") -node_b = NodePath("../../Bone-53") -softness = 50.0 +node_b = NodePath("../../Bone-28") +softness = 100.0 -[node name="Joint2D-Bone-57-Bone-56" type="PinJoint2D" parent="Egg5/Bone-57"] +[node name="Joint2D-Bone-29-Bone-25" type="PinJoint2D" parent="Egg5/Bone-29"] visible = false -rotation = -3.13388 +rotation = 0.785398 node_a = NodePath("..") -node_b = NodePath("../../Bone-56") -softness = 50.0 - -[node name="Bone-58" parent="Egg5" instance=ExtResource("3_6ern4")] -position = Vector2(154.476, 230.171) -mass = 0.0793651 -physics_material_override = ExtResource("3_durpg") -metadata/bone_name = &"Bone-58" - -[node name="CircleShape2D" type="CollisionShape2D" parent="Egg5/Bone-58"] -shape = SubResource("CircleShape2D_4yipm") - -[node name="RemoteTransform2D" type="RemoteTransform2D" parent="Egg5/Bone-58"] -remote_path = NodePath("../../Skeleton2D/Bone-58") -update_rotation = false -update_scale = false +node_b = NodePath("../../Bone-25") +softness = 100.0 -[node name="Joint2D-Bone-58-Bone-52" type="PinJoint2D" parent="Egg5/Bone-58"] +[node name="Joint2D-Bone-29-Bone-30" type="PinJoint2D" parent="Egg5/Bone-29"] visible = false -rotation = -3.98414 node_a = NodePath("..") -node_b = NodePath("../../Bone-52") -softness = 50.0 +node_b = NodePath("../../Bone-30") +softness = 100.0 -[node name="Joint2D-Bone-58-Bone-53" type="PinJoint2D" parent="Egg5/Bone-58"] +[node name="Joint2D-Bone-29-Bone-33" type="PinJoint2D" parent="Egg5/Bone-29"] visible = false -rotation = 1.30213 +rotation = -2.35619 node_a = NodePath("..") -node_b = NodePath("../../Bone-53") -softness = 50.0 +node_b = NodePath("../../Bone-33") +softness = 100.0 -[node name="Joint2D-Bone-58-Bone-56" type="PinJoint2D" parent="Egg5/Bone-58"] +[node name="Joint2D-Bone-29-Bone-34" type="PinJoint2D" parent="Egg5/Bone-29"] visible = false -rotation = -3.05801 +rotation = -1.5708 node_a = NodePath("..") -node_b = NodePath("../../Bone-56") -softness = 50.0 +node_b = NodePath("../../Bone-34") +softness = 100.0 -[node name="Joint2D-Bone-58-Bone-57" type="PinJoint2D" parent="Egg5/Bone-58"] +[node name="Joint2D-Bone-29-Bone-35" type="PinJoint2D" parent="Egg5/Bone-29"] visible = false -rotation = -2.96149 +rotation = -0.785398 node_a = NodePath("..") -node_b = NodePath("../../Bone-57") -softness = 50.0 +node_b = NodePath("../../Bone-35") +softness = 100.0 -[node name="Bone-59" parent="Egg5" instance=ExtResource("3_6ern4")] -position = Vector2(175.705, 135.904) -mass = 0.0793651 +[node name="Bone-30" type="RigidBody2D" parent="Egg5" instance=ExtResource("3_6ern4")] +position = Vector2(67, 170) +input_pickable = true +mass = 0.0942353 physics_material_override = ExtResource("3_durpg") -metadata/bone_name = &"Bone-59" +script = ExtResource("11_tqnjl") +metadata/idx = 30 +metadata/bone_name = &"Bone-30" -[node name="CircleShape2D" type="CollisionShape2D" parent="Egg5/Bone-59"] -shape = SubResource("CircleShape2D_4yipm") +[node name="CircleShape2D" type="CollisionShape2D" parent="Egg5/Bone-30"] +shape = SubResource("CircleShape2D_tkaeo") -[node name="RemoteTransform2D" type="RemoteTransform2D" parent="Egg5/Bone-59"] -remote_path = NodePath("../../Skeleton2D/Bone-59") +[node name="RemoteTransform2D" type="RemoteTransform2D" parent="Egg5/Bone-30"] +visible = false +remote_path = NodePath("../../Skeleton2D/Bone-30") update_rotation = false update_scale = false -[node name="Joint2D-Bone-59-Bone-47" type="PinJoint2D" parent="Egg5/Bone-59"] +[node name="Joint2D-Bone-30-Bone-24" type="PinJoint2D" parent="Egg5/Bone-30"] visible = false -rotation = -3.763 +rotation = -3.92699 node_a = NodePath("..") -node_b = NodePath("../../Bone-47") -softness = 50.0 +node_b = NodePath("../../Bone-24") +softness = 100.0 -[node name="Joint2D-Bone-59-Bone-48" type="PinJoint2D" parent="Egg5/Bone-59"] +[node name="Joint2D-Bone-30-Bone-25" type="PinJoint2D" parent="Egg5/Bone-30"] visible = false -rotation = -3.22146 +rotation = 1.5708 node_a = NodePath("..") -node_b = NodePath("../../Bone-48") -softness = 50.0 +node_b = NodePath("../../Bone-25") +softness = 100.0 -[node name="Joint2D-Bone-59-Bone-49" type="PinJoint2D" parent="Egg5/Bone-59"] +[node name="Joint2D-Bone-30-Bone-29" type="PinJoint2D" parent="Egg5/Bone-30"] visible = false -rotation = 1.569 +rotation = -3.14159 node_a = NodePath("..") -node_b = NodePath("../../Bone-49") -softness = 50.0 +node_b = NodePath("../../Bone-29") +softness = 100.0 -[node name="Joint2D-Bone-59-Bone-54" type="PinJoint2D" parent="Egg5/Bone-59"] +[node name="Joint2D-Bone-30-Bone-26" type="PinJoint2D" parent="Egg5/Bone-30"] visible = false -rotation = 1.56486 +rotation = 0.785398 node_a = NodePath("..") -node_b = NodePath("../../Bone-54") -softness = 50.0 +node_b = NodePath("../../Bone-26") +softness = 100.0 -[node name="Joint2D-Bone-59-Bone-55" type="PinJoint2D" parent="Egg5/Bone-59"] +[node name="Joint2D-Bone-30-Bone-31" type="PinJoint2D" parent="Egg5/Bone-30"] visible = false -rotation = 0.614845 node_a = NodePath("..") -node_b = NodePath("../../Bone-55") -softness = 50.0 - -[node name="Bone-60" parent="Egg5" instance=ExtResource("3_6ern4")] -position = Vector2(176.214, 160.874) -mass = 0.0793651 -physics_material_override = ExtResource("3_durpg") -metadata/bone_name = &"Bone-60" - -[node name="CircleShape2D" type="CollisionShape2D" parent="Egg5/Bone-60"] -shape = SubResource("CircleShape2D_4yipm") - -[node name="RemoteTransform2D" type="RemoteTransform2D" parent="Egg5/Bone-60"] -remote_path = NodePath("../../Skeleton2D/Bone-60") -update_rotation = false -update_scale = false +node_b = NodePath("../../Bone-31") +softness = 100.0 -[node name="Joint2D-Bone-60-Bone-50" type="PinJoint2D" parent="Egg5/Bone-60"] +[node name="Joint2D-Bone-30-Bone-34" type="PinJoint2D" parent="Egg5/Bone-30"] visible = false -rotation = 1.57053 +rotation = -2.35619 node_a = NodePath("..") -node_b = NodePath("../../Bone-50") -softness = 50.0 +node_b = NodePath("../../Bone-34") +softness = 100.0 -[node name="Joint2D-Bone-60-Bone-54" type="PinJoint2D" parent="Egg5/Bone-60"] +[node name="Joint2D-Bone-30-Bone-35" type="PinJoint2D" parent="Egg5/Bone-30"] visible = false -rotation = -3.77707 +rotation = -1.5708 node_a = NodePath("..") -node_b = NodePath("../../Bone-54") -softness = 50.0 +node_b = NodePath("../../Bone-35") +softness = 100.0 -[node name="Joint2D-Bone-60-Bone-55" type="PinJoint2D" parent="Egg5/Bone-60"] +[node name="Joint2D-Bone-30-Bone-36" type="PinJoint2D" parent="Egg5/Bone-30"] visible = false -rotation = 1.56763 +rotation = -0.785398 node_a = NodePath("..") -node_b = NodePath("../../Bone-55") -softness = 50.0 +node_b = NodePath("../../Bone-36") +softness = 100.0 + +[node name="Bone-31" type="RigidBody2D" parent="Egg5" instance=ExtResource("3_6ern4")] +position = Vector2(67, 190) +input_pickable = true +mass = 0.0942353 +physics_material_override = ExtResource("3_durpg") +script = ExtResource("11_tqnjl") +metadata/idx = 31 +metadata/bone_name = &"Bone-31" -[node name="Joint2D-Bone-60-Bone-56" type="PinJoint2D" parent="Egg5/Bone-60"] +[node name="CircleShape2D" type="CollisionShape2D" parent="Egg5/Bone-31"] +shape = SubResource("CircleShape2D_tkaeo") + +[node name="RemoteTransform2D" type="RemoteTransform2D" parent="Egg5/Bone-31"] visible = false -rotation = 0.62288 -node_a = NodePath("..") -node_b = NodePath("../../Bone-56") -softness = 50.0 +remote_path = NodePath("../../Skeleton2D/Bone-31") +update_rotation = false +update_scale = false -[node name="Joint2D-Bone-60-Bone-59" type="PinJoint2D" parent="Egg5/Bone-60"] +[node name="Joint2D-Bone-31-Bone-25" type="PinJoint2D" parent="Egg5/Bone-31"] visible = false -rotation = -3.16199 +rotation = -3.92699 node_a = NodePath("..") -node_b = NodePath("../../Bone-59") -softness = 50.0 - -[node name="Bone-61" parent="Egg5" instance=ExtResource("3_6ern4")] -position = Vector2(176.317, 185.901) -mass = 0.0793651 -physics_material_override = ExtResource("3_durpg") -metadata/bone_name = &"Bone-61" +node_b = NodePath("../../Bone-25") +softness = 100.0 -[node name="CircleShape2D" type="CollisionShape2D" parent="Egg5/Bone-61"] -shape = SubResource("CircleShape2D_4yipm") +[node name="Joint2D-Bone-31-Bone-26" type="PinJoint2D" parent="Egg5/Bone-31"] +visible = false +rotation = 1.5708 +node_a = NodePath("..") +node_b = NodePath("../../Bone-26") +softness = 100.0 -[node name="RemoteTransform2D" type="RemoteTransform2D" parent="Egg5/Bone-61"] -remote_path = NodePath("../../Skeleton2D/Bone-61") -update_rotation = false -update_scale = false +[node name="Joint2D-Bone-31-Bone-30" type="PinJoint2D" parent="Egg5/Bone-31"] +visible = false +rotation = -3.14159 +node_a = NodePath("..") +node_b = NodePath("../../Bone-30") +softness = 100.0 -[node name="Joint2D-Bone-61-Bone-51" type="PinJoint2D" parent="Egg5/Bone-61"] +[node name="Joint2D-Bone-31-Bone-38" type="PinJoint2D" parent="Egg5/Bone-31"] visible = false -rotation = 1.56861 +rotation = 0.785398 node_a = NodePath("..") -node_b = NodePath("../../Bone-51") -softness = 50.0 +node_b = NodePath("../../Bone-38") +softness = 100.0 -[node name="Joint2D-Bone-61-Bone-55" type="PinJoint2D" parent="Egg5/Bone-61"] +[node name="Joint2D-Bone-31-Bone-40" type="PinJoint2D" parent="Egg5/Bone-31"] visible = false -rotation = -3.77369 node_a = NodePath("..") -node_b = NodePath("../../Bone-55") -softness = 50.0 +node_b = NodePath("../../Bone-40") +softness = 100.0 -[node name="Joint2D-Bone-61-Bone-56" type="PinJoint2D" parent="Egg5/Bone-61"] +[node name="Joint2D-Bone-31-Bone-35" type="PinJoint2D" parent="Egg5/Bone-31"] visible = false -rotation = 1.56616 +rotation = -2.35619 node_a = NodePath("..") -node_b = NodePath("../../Bone-56") -softness = 50.0 +node_b = NodePath("../../Bone-35") +softness = 100.0 -[node name="Joint2D-Bone-61-Bone-57" type="PinJoint2D" parent="Egg5/Bone-61"] +[node name="Joint2D-Bone-31-Bone-36" type="PinJoint2D" parent="Egg5/Bone-31"] visible = false -rotation = 0.632818 +rotation = -1.5708 node_a = NodePath("..") -node_b = NodePath("../../Bone-57") -softness = 50.0 +node_b = NodePath("../../Bone-36") +softness = 100.0 -[node name="Joint2D-Bone-61-Bone-60" type="PinJoint2D" parent="Egg5/Bone-61"] +[node name="Joint2D-Bone-31-Bone-42" type="PinJoint2D" parent="Egg5/Bone-31"] visible = false -rotation = -3.14569 +rotation = -0.785398 node_a = NodePath("..") -node_b = NodePath("../../Bone-60") -softness = 50.0 +node_b = NodePath("../../Bone-42") +softness = 100.0 -[node name="Bone-62" parent="Egg5" instance=ExtResource("3_6ern4")] -position = Vector2(174.19, 206.598) -mass = 0.0793651 +[node name="Bone-32" type="RigidBody2D" parent="Egg5" instance=ExtResource("3_6ern4")] +position = Vector2(87, 110) +input_pickable = true +mass = 0.0942353 physics_material_override = ExtResource("3_durpg") -metadata/bone_name = &"Bone-62" +script = ExtResource("11_tqnjl") +metadata/idx = 32 +metadata/bone_name = &"Bone-32" -[node name="CircleShape2D" type="CollisionShape2D" parent="Egg5/Bone-62"] -shape = SubResource("CircleShape2D_4yipm") +[node name="CircleShape2D" type="CollisionShape2D" parent="Egg5/Bone-32"] +shape = SubResource("CircleShape2D_tkaeo") -[node name="RemoteTransform2D" type="RemoteTransform2D" parent="Egg5/Bone-62"] -remote_path = NodePath("../../Skeleton2D/Bone-62") +[node name="RemoteTransform2D" type="RemoteTransform2D" parent="Egg5/Bone-32"] +visible = false +remote_path = NodePath("../../Skeleton2D/Bone-32") update_rotation = false update_scale = false -[node name="Joint2D-Bone-62-Bone-52" type="PinJoint2D" parent="Egg5/Bone-62"] +[node name="Joint2D-Bone-32-Bone-8" type="PinJoint2D" parent="Egg5/Bone-32"] visible = false -rotation = 1.4624 +rotation = -3.92699 node_a = NodePath("..") -node_b = NodePath("../../Bone-52") -softness = 50.0 +node_b = NodePath("../../Bone-8") +softness = 100.0 -[node name="Joint2D-Bone-62-Bone-56" type="PinJoint2D" parent="Egg5/Bone-62"] +[node name="Joint2D-Bone-32-Bone-13" type="PinJoint2D" parent="Egg5/Bone-32"] visible = false -rotation = -3.80203 +rotation = -3.14159 node_a = NodePath("..") -node_b = NodePath("../../Bone-56") -softness = 50.0 +node_b = NodePath("../../Bone-13") +softness = 100.0 -[node name="Joint2D-Bone-62-Bone-57" type="PinJoint2D" parent="Egg5/Bone-62"] +[node name="Joint2D-Bone-32-Bone-27" type="PinJoint2D" parent="Egg5/Bone-32"] visible = false -rotation = 1.31166 +rotation = 1.5708 node_a = NodePath("..") -node_b = NodePath("../../Bone-57") -softness = 50.0 +node_b = NodePath("../../Bone-27") +softness = 100.0 -[node name="Joint2D-Bone-62-Bone-58" type="PinJoint2D" parent="Egg5/Bone-62"] +[node name="Joint2D-Bone-32-Bone-48" type="PinJoint2D" parent="Egg5/Bone-32"] visible = false -rotation = 0.696485 +rotation = -2.35619 node_a = NodePath("..") -node_b = NodePath("../../Bone-58") -softness = 50.0 +node_b = NodePath("../../Bone-48") +softness = 100.0 -[node name="Joint2D-Bone-62-Bone-60" type="PinJoint2D" parent="Egg5/Bone-62"] +[node name="Joint2D-Bone-32-Bone-57" type="PinJoint2D" parent="Egg5/Bone-32"] visible = false -rotation = -3.09736 +rotation = -1.5708 node_a = NodePath("..") -node_b = NodePath("../../Bone-60") -softness = 50.0 +node_b = NodePath("../../Bone-57") +softness = 100.0 -[node name="Joint2D-Bone-62-Bone-61" type="PinJoint2D" parent="Egg5/Bone-62"] +[node name="Joint2D-Bone-32-Bone-28" type="PinJoint2D" parent="Egg5/Bone-32"] +visible = false +rotation = 0.785398 +node_a = NodePath("..") +node_b = NodePath("../../Bone-28") +softness = 100.0 + +[node name="Joint2D-Bone-32-Bone-33" type="PinJoint2D" parent="Egg5/Bone-32"] +visible = false +node_a = NodePath("..") +node_b = NodePath("../../Bone-33") +softness = 100.0 + +[node name="Joint2D-Bone-32-Bone-58" type="PinJoint2D" parent="Egg5/Bone-32"] +visible = false +rotation = -0.785398 +node_a = NodePath("..") +node_b = NodePath("../../Bone-58") +softness = 100.0 + +[node name="Bone-33" type="RigidBody2D" parent="Egg5" instance=ExtResource("3_6ern4")] +position = Vector2(87, 130) +input_pickable = true +mass = 0.0942353 +physics_material_override = ExtResource("3_durpg") +script = ExtResource("11_tqnjl") +metadata/idx = 33 +metadata/bone_name = &"Bone-33" + +[node name="CircleShape2D" type="CollisionShape2D" parent="Egg5/Bone-33"] +shape = SubResource("CircleShape2D_tkaeo") + +[node name="RemoteTransform2D" type="RemoteTransform2D" parent="Egg5/Bone-33"] +visible = false +remote_path = NodePath("../../Skeleton2D/Bone-33") +update_rotation = false +update_scale = false + +[node name="Joint2D-Bone-33-Bone-27" type="PinJoint2D" parent="Egg5/Bone-33"] +visible = false +rotation = -3.92699 +node_a = NodePath("..") +node_b = NodePath("../../Bone-27") +softness = 100.0 + +[node name="Joint2D-Bone-33-Bone-28" type="PinJoint2D" parent="Egg5/Bone-33"] +visible = false +rotation = 1.5708 +node_a = NodePath("..") +node_b = NodePath("../../Bone-28") +softness = 100.0 + +[node name="Joint2D-Bone-33-Bone-32" type="PinJoint2D" parent="Egg5/Bone-33"] +visible = false +rotation = -3.14159 +node_a = NodePath("..") +node_b = NodePath("../../Bone-32") +softness = 100.0 + +[node name="Joint2D-Bone-33-Bone-29" type="PinJoint2D" parent="Egg5/Bone-33"] +visible = false +rotation = 0.785398 +node_a = NodePath("..") +node_b = NodePath("../../Bone-29") +softness = 100.0 + +[node name="Joint2D-Bone-33-Bone-34" type="PinJoint2D" parent="Egg5/Bone-33"] +visible = false +node_a = NodePath("..") +node_b = NodePath("../../Bone-34") +softness = 100.0 + +[node name="Joint2D-Bone-33-Bone-57" type="PinJoint2D" parent="Egg5/Bone-33"] +visible = false +rotation = -2.35619 +node_a = NodePath("..") +node_b = NodePath("../../Bone-57") +softness = 100.0 + +[node name="Joint2D-Bone-33-Bone-58" type="PinJoint2D" parent="Egg5/Bone-33"] +visible = false +rotation = -1.5708 +node_a = NodePath("..") +node_b = NodePath("../../Bone-58") +softness = 100.0 + +[node name="Joint2D-Bone-33-Bone-59" type="PinJoint2D" parent="Egg5/Bone-33"] +visible = false +rotation = -0.785398 +node_a = NodePath("..") +node_b = NodePath("../../Bone-59") +softness = 100.0 + +[node name="Bone-34" type="RigidBody2D" parent="Egg5" instance=ExtResource("3_6ern4")] +position = Vector2(87, 150) +input_pickable = true +mass = 0.0942353 +physics_material_override = ExtResource("3_durpg") +script = ExtResource("11_tqnjl") +metadata/idx = 34 +metadata/bone_name = &"Bone-34" + +[node name="CircleShape2D" type="CollisionShape2D" parent="Egg5/Bone-34"] +shape = SubResource("CircleShape2D_tkaeo") + +[node name="RemoteTransform2D" type="RemoteTransform2D" parent="Egg5/Bone-34"] +visible = false +remote_path = NodePath("../../Skeleton2D/Bone-34") +update_rotation = false +update_scale = false + +[node name="Joint2D-Bone-34-Bone-28" type="PinJoint2D" parent="Egg5/Bone-34"] +visible = false +rotation = -3.92699 +node_a = NodePath("..") +node_b = NodePath("../../Bone-28") +softness = 100.0 + +[node name="Joint2D-Bone-34-Bone-29" type="PinJoint2D" parent="Egg5/Bone-34"] +visible = false +rotation = 1.5708 +node_a = NodePath("..") +node_b = NodePath("../../Bone-29") +softness = 100.0 + +[node name="Joint2D-Bone-34-Bone-33" type="PinJoint2D" parent="Egg5/Bone-34"] +visible = false +rotation = -3.14159 +node_a = NodePath("..") +node_b = NodePath("../../Bone-33") +softness = 100.0 + +[node name="Joint2D-Bone-34-Bone-30" type="PinJoint2D" parent="Egg5/Bone-34"] +visible = false +rotation = 0.785398 +node_a = NodePath("..") +node_b = NodePath("../../Bone-30") +softness = 100.0 + +[node name="Joint2D-Bone-34-Bone-35" type="PinJoint2D" parent="Egg5/Bone-34"] +visible = false +node_a = NodePath("..") +node_b = NodePath("../../Bone-35") +softness = 100.0 + +[node name="Joint2D-Bone-34-Bone-58" type="PinJoint2D" parent="Egg5/Bone-34"] +visible = false +rotation = -2.35619 +node_a = NodePath("..") +node_b = NodePath("../../Bone-58") +softness = 100.0 + +[node name="Joint2D-Bone-34-Bone-59" type="PinJoint2D" parent="Egg5/Bone-34"] +visible = false +rotation = -1.5708 +node_a = NodePath("..") +node_b = NodePath("../../Bone-59") +softness = 100.0 + +[node name="Joint2D-Bone-34-Bone-60" type="PinJoint2D" parent="Egg5/Bone-34"] +visible = false +rotation = -0.785398 +node_a = NodePath("..") +node_b = NodePath("../../Bone-60") +softness = 100.0 + +[node name="Bone-35" type="RigidBody2D" parent="Egg5" instance=ExtResource("3_6ern4")] +position = Vector2(87, 170) +input_pickable = true +mass = 0.0942353 +physics_material_override = ExtResource("3_durpg") +script = ExtResource("11_tqnjl") +metadata/idx = 35 +metadata/bone_name = &"Bone-35" + +[node name="CircleShape2D" type="CollisionShape2D" parent="Egg5/Bone-35"] +shape = SubResource("CircleShape2D_tkaeo") + +[node name="RemoteTransform2D" type="RemoteTransform2D" parent="Egg5/Bone-35"] +visible = false +remote_path = NodePath("../../Skeleton2D/Bone-35") +update_rotation = false +update_scale = false + +[node name="Joint2D-Bone-35-Bone-29" type="PinJoint2D" parent="Egg5/Bone-35"] +visible = false +rotation = -3.92699 +node_a = NodePath("..") +node_b = NodePath("../../Bone-29") +softness = 100.0 + +[node name="Joint2D-Bone-35-Bone-30" type="PinJoint2D" parent="Egg5/Bone-35"] +visible = false +rotation = 1.5708 +node_a = NodePath("..") +node_b = NodePath("../../Bone-30") +softness = 100.0 + +[node name="Joint2D-Bone-35-Bone-34" type="PinJoint2D" parent="Egg5/Bone-35"] +visible = false +rotation = -3.14159 +node_a = NodePath("..") +node_b = NodePath("../../Bone-34") +softness = 100.0 + +[node name="Joint2D-Bone-35-Bone-31" type="PinJoint2D" parent="Egg5/Bone-35"] +visible = false +rotation = 0.785398 +node_a = NodePath("..") +node_b = NodePath("../../Bone-31") +softness = 100.0 + +[node name="Joint2D-Bone-35-Bone-36" type="PinJoint2D" parent="Egg5/Bone-35"] +visible = false +node_a = NodePath("..") +node_b = NodePath("../../Bone-36") +softness = 100.0 + +[node name="Joint2D-Bone-35-Bone-59" type="PinJoint2D" parent="Egg5/Bone-35"] +visible = false +rotation = -2.35619 +node_a = NodePath("..") +node_b = NodePath("../../Bone-59") +softness = 100.0 + +[node name="Joint2D-Bone-35-Bone-60" type="PinJoint2D" parent="Egg5/Bone-35"] +visible = false +rotation = -1.5708 +node_a = NodePath("..") +node_b = NodePath("../../Bone-60") +softness = 100.0 + +[node name="Joint2D-Bone-35-Bone-61" type="PinJoint2D" parent="Egg5/Bone-35"] +visible = false +rotation = -0.785398 +node_a = NodePath("..") +node_b = NodePath("../../Bone-61") +softness = 100.0 + +[node name="Bone-36" type="RigidBody2D" parent="Egg5" instance=ExtResource("3_6ern4")] +position = Vector2(87, 190) +input_pickable = true +mass = 0.0942353 +physics_material_override = ExtResource("3_durpg") +script = ExtResource("11_tqnjl") +metadata/idx = 36 +metadata/bone_name = &"Bone-36" + +[node name="CircleShape2D" type="CollisionShape2D" parent="Egg5/Bone-36"] +shape = SubResource("CircleShape2D_tkaeo") + +[node name="RemoteTransform2D" type="RemoteTransform2D" parent="Egg5/Bone-36"] +visible = false +remote_path = NodePath("../../Skeleton2D/Bone-36") +update_rotation = false +update_scale = false + +[node name="Joint2D-Bone-36-Bone-30" type="PinJoint2D" parent="Egg5/Bone-36"] +visible = false +rotation = -3.92699 +node_a = NodePath("..") +node_b = NodePath("../../Bone-30") +softness = 100.0 + +[node name="Joint2D-Bone-36-Bone-31" type="PinJoint2D" parent="Egg5/Bone-36"] +visible = false +rotation = 1.5708 +node_a = NodePath("..") +node_b = NodePath("../../Bone-31") +softness = 100.0 + +[node name="Joint2D-Bone-36-Bone-35" type="PinJoint2D" parent="Egg5/Bone-36"] +visible = false +rotation = -3.14159 +node_a = NodePath("..") +node_b = NodePath("../../Bone-35") +softness = 100.0 + +[node name="Joint2D-Bone-36-Bone-40" type="PinJoint2D" parent="Egg5/Bone-36"] +visible = false +rotation = 0.785398 +node_a = NodePath("..") +node_b = NodePath("../../Bone-40") +softness = 100.0 + +[node name="Joint2D-Bone-36-Bone-42" type="PinJoint2D" parent="Egg5/Bone-36"] +visible = false +node_a = NodePath("..") +node_b = NodePath("../../Bone-42") +softness = 100.0 + +[node name="Joint2D-Bone-36-Bone-60" type="PinJoint2D" parent="Egg5/Bone-36"] +visible = false +rotation = -2.35619 +node_a = NodePath("..") +node_b = NodePath("../../Bone-60") +softness = 100.0 + +[node name="Joint2D-Bone-36-Bone-61" type="PinJoint2D" parent="Egg5/Bone-36"] +visible = false +rotation = -1.5708 +node_a = NodePath("..") +node_b = NodePath("../../Bone-61") +softness = 100.0 + +[node name="Joint2D-Bone-36-Bone-77" type="PinJoint2D" parent="Egg5/Bone-36"] +visible = false +rotation = -0.785398 +node_a = NodePath("..") +node_b = NodePath("../../Bone-77") +softness = 100.0 + +[node name="Bone-37" type="RigidBody2D" parent="Egg5" instance=ExtResource("3_6ern4")] +position = Vector2(27, 212.4) +input_pickable = true +mass = 0.0942353 +physics_material_override = ExtResource("3_durpg") +script = ExtResource("11_tqnjl") +metadata/idx = 37 +metadata/bone_name = &"Bone-37" + +[node name="CircleShape2D" type="CollisionShape2D" parent="Egg5/Bone-37"] +shape = SubResource("CircleShape2D_tkaeo") + +[node name="RemoteTransform2D" type="RemoteTransform2D" parent="Egg5/Bone-37"] +visible = false +remote_path = NodePath("../../Skeleton2D/Bone-37") +update_rotation = false +update_scale = false + +[node name="Joint2D-Bone-37-Bone-21" type="PinJoint2D" parent="Egg5/Bone-37"] +visible = false +rotation = -3.30094 +node_a = NodePath("..") +node_b = NodePath("../../Bone-21") +softness = 100.0 + +[node name="Joint2D-Bone-37-Bone-26" type="PinJoint2D" parent="Egg5/Bone-37"] +visible = false +rotation = -2.41274 +node_a = NodePath("..") +node_b = NodePath("../../Bone-26") +softness = 100.0 + +[node name="Joint2D-Bone-37-Bone-38" type="PinJoint2D" parent="Egg5/Bone-37"] +visible = false +rotation = -1.69023 +node_a = NodePath("..") +node_b = NodePath("../../Bone-38") +softness = 100.0 + +[node name="Joint2D-Bone-37-Bone-39" type="PinJoint2D" parent="Egg5/Bone-37"] +visible = false +rotation = -0.85623 +node_a = NodePath("..") +node_b = NodePath("../../Bone-39") +softness = 100.0 + +[node name="Bone-38" type="RigidBody2D" parent="Egg5" instance=ExtResource("3_6ern4")] +position = Vector2(47, 210) +input_pickable = true +mass = 0.0942353 +physics_material_override = ExtResource("3_durpg") +script = ExtResource("11_tqnjl") +metadata/idx = 38 +metadata/bone_name = &"Bone-38" + +[node name="CircleShape2D" type="CollisionShape2D" parent="Egg5/Bone-38"] +shape = SubResource("CircleShape2D_tkaeo") + +[node name="RemoteTransform2D" type="RemoteTransform2D" parent="Egg5/Bone-38"] +visible = false +remote_path = NodePath("../../Skeleton2D/Bone-38") +update_rotation = false +update_scale = false + +[node name="Joint2D-Bone-38-Bone-21" type="PinJoint2D" parent="Egg5/Bone-38"] +visible = false +rotation = -4.00937 +node_a = NodePath("..") +node_b = NodePath("../../Bone-21") +softness = 100.0 + +[node name="Joint2D-Bone-38-Bone-26" type="PinJoint2D" parent="Egg5/Bone-38"] +visible = false +rotation = -3.14159 +node_a = NodePath("..") +node_b = NodePath("../../Bone-26") +softness = 100.0 + +[node name="Joint2D-Bone-38-Bone-37" type="PinJoint2D" parent="Egg5/Bone-38"] +visible = false +rotation = 1.45137 +node_a = NodePath("..") +node_b = NodePath("../../Bone-37") +softness = 100.0 + +[node name="Joint2D-Bone-38-Bone-31" type="PinJoint2D" parent="Egg5/Bone-38"] +visible = false +rotation = -2.35619 +node_a = NodePath("..") +node_b = NodePath("../../Bone-31") +softness = 100.0 + +[node name="Joint2D-Bone-38-Bone-40" type="PinJoint2D" parent="Egg5/Bone-38"] +visible = false +rotation = -1.5708 +node_a = NodePath("..") +node_b = NodePath("../../Bone-40") +softness = 100.0 + +[node name="Joint2D-Bone-38-Bone-39" type="PinJoint2D" parent="Egg5/Bone-38"] +visible = false +node_a = NodePath("..") +node_b = NodePath("../../Bone-39") +softness = 100.0 + +[node name="Joint2D-Bone-38-Bone-41" type="PinJoint2D" parent="Egg5/Bone-38"] +visible = false +rotation = -0.715744 +node_a = NodePath("..") +node_b = NodePath("../../Bone-41") +softness = 100.0 + +[node name="Bone-39" type="RigidBody2D" parent="Egg5" instance=ExtResource("3_6ern4")] +position = Vector2(47, 229.75) +input_pickable = true +mass = 0.0942353 +physics_material_override = ExtResource("3_durpg") +script = ExtResource("11_tqnjl") +metadata/idx = 39 +metadata/bone_name = &"Bone-39" + +[node name="CircleShape2D" type="CollisionShape2D" parent="Egg5/Bone-39"] +shape = SubResource("CircleShape2D_tkaeo") + +[node name="RemoteTransform2D" type="RemoteTransform2D" parent="Egg5/Bone-39"] +visible = false +remote_path = NodePath("../../Skeleton2D/Bone-39") +update_rotation = false +update_scale = false + +[node name="Joint2D-Bone-39-Bone-37" type="PinJoint2D" parent="Egg5/Bone-39"] +visible = false +rotation = -3.99782 +node_a = NodePath("..") +node_b = NodePath("../../Bone-37") +softness = 100.0 + +[node name="Joint2D-Bone-39-Bone-38" type="PinJoint2D" parent="Egg5/Bone-39"] +visible = false +rotation = -3.14159 +node_a = NodePath("..") +node_b = NodePath("../../Bone-38") +softness = 100.0 + +[node name="Joint2D-Bone-39-Bone-40" type="PinJoint2D" parent="Egg5/Bone-39"] +visible = false +rotation = -2.34991 +node_a = NodePath("..") +node_b = NodePath("../../Bone-40") +softness = 100.0 + +[node name="Joint2D-Bone-39-Bone-41" type="PinJoint2D" parent="Egg5/Bone-39"] +visible = false +rotation = -1.4097 +node_a = NodePath("..") +node_b = NodePath("../../Bone-41") +softness = 100.0 + +[node name="Bone-40" type="RigidBody2D" parent="Egg5" instance=ExtResource("3_6ern4")] +position = Vector2(67, 210) +input_pickable = true +mass = 0.0942353 +physics_material_override = ExtResource("3_durpg") +script = ExtResource("11_tqnjl") +metadata/idx = 40 +metadata/bone_name = &"Bone-40" + +[node name="CircleShape2D" type="CollisionShape2D" parent="Egg5/Bone-40"] +shape = SubResource("CircleShape2D_tkaeo") + +[node name="RemoteTransform2D" type="RemoteTransform2D" parent="Egg5/Bone-40"] +visible = false +remote_path = NodePath("../../Skeleton2D/Bone-40") +update_rotation = false +update_scale = false + +[node name="Joint2D-Bone-40-Bone-26" type="PinJoint2D" parent="Egg5/Bone-40"] +visible = false +rotation = -3.92699 +node_a = NodePath("..") +node_b = NodePath("../../Bone-26") +softness = 100.0 + +[node name="Joint2D-Bone-40-Bone-31" type="PinJoint2D" parent="Egg5/Bone-40"] +visible = false +rotation = -3.14159 +node_a = NodePath("..") +node_b = NodePath("../../Bone-31") +softness = 100.0 + +[node name="Joint2D-Bone-40-Bone-38" type="PinJoint2D" parent="Egg5/Bone-40"] +visible = false +rotation = 1.5708 +node_a = NodePath("..") +node_b = NodePath("../../Bone-38") +softness = 100.0 + +[node name="Joint2D-Bone-40-Bone-36" type="PinJoint2D" parent="Egg5/Bone-40"] +visible = false +rotation = -2.35619 +node_a = NodePath("..") +node_b = NodePath("../../Bone-36") +softness = 100.0 + +[node name="Joint2D-Bone-40-Bone-42" type="PinJoint2D" parent="Egg5/Bone-40"] +visible = false +rotation = -1.5708 +node_a = NodePath("..") +node_b = NodePath("../../Bone-42") +softness = 100.0 + +[node name="Joint2D-Bone-40-Bone-39" type="PinJoint2D" parent="Egg5/Bone-40"] +visible = false +rotation = 0.791687 +node_a = NodePath("..") +node_b = NodePath("../../Bone-39") +softness = 100.0 + +[node name="Joint2D-Bone-40-Bone-41" type="PinJoint2D" parent="Egg5/Bone-40"] +visible = false +node_a = NodePath("..") +node_b = NodePath("../../Bone-41") +softness = 100.0 + +[node name="Joint2D-Bone-40-Bone-43" type="PinJoint2D" parent="Egg5/Bone-40"] +visible = false +rotation = -0.785398 +node_a = NodePath("..") +node_b = NodePath("../../Bone-43") +softness = 100.0 + +[node name="Bone-41" type="RigidBody2D" parent="Egg5" instance=ExtResource("3_6ern4")] +position = Vector2(67, 233) +input_pickable = true +mass = 0.0942353 +physics_material_override = ExtResource("3_durpg") +script = ExtResource("11_tqnjl") +metadata/idx = 41 +metadata/bone_name = &"Bone-41" + +[node name="CircleShape2D" type="CollisionShape2D" parent="Egg5/Bone-41"] +shape = SubResource("CircleShape2D_tkaeo") + +[node name="RemoteTransform2D" type="RemoteTransform2D" parent="Egg5/Bone-41"] +visible = false +remote_path = NodePath("../../Skeleton2D/Bone-41") +update_rotation = false +update_scale = false + +[node name="Joint2D-Bone-41-Bone-44" type="PinJoint2D" parent="Egg5/Bone-41"] +visible = false +rotation = -1.04896 +node_a = NodePath("..") +node_b = NodePath("../../Bone-44") +softness = 100.0 + +[node name="Joint2D-Bone-41-Bone-38" type="PinJoint2D" parent="Egg5/Bone-41"] +visible = false +rotation = -3.85734 +node_a = NodePath("..") +node_b = NodePath("../../Bone-38") +softness = 100.0 + +[node name="Joint2D-Bone-41-Bone-39" type="PinJoint2D" parent="Egg5/Bone-41"] +visible = false +rotation = -4.5513 +node_a = NodePath("..") +node_b = NodePath("../../Bone-39") +softness = 100.0 + +[node name="Joint2D-Bone-41-Bone-40" type="PinJoint2D" parent="Egg5/Bone-41"] +visible = false +rotation = -3.14159 +node_a = NodePath("..") +node_b = NodePath("../../Bone-40") +softness = 100.0 + +[node name="Joint2D-Bone-41-Bone-42" type="PinJoint2D" parent="Egg5/Bone-41"] +visible = false +rotation = -2.42585 +node_a = NodePath("..") +node_b = NodePath("../../Bone-42") +softness = 100.0 + +[node name="Joint2D-Bone-41-Bone-43" type="PinJoint2D" parent="Egg5/Bone-41"] +visible = false +rotation = -1.71969 +node_a = NodePath("..") +node_b = NodePath("../../Bone-43") +softness = 100.0 + +[node name="Bone-42" type="RigidBody2D" parent="Egg5" instance=ExtResource("3_6ern4")] +position = Vector2(87, 210) +input_pickable = true +mass = 0.0942353 +physics_material_override = ExtResource("3_durpg") +script = ExtResource("11_tqnjl") +metadata/idx = 42 +metadata/bone_name = &"Bone-42" + +[node name="CircleShape2D" type="CollisionShape2D" parent="Egg5/Bone-42"] +shape = SubResource("CircleShape2D_tkaeo") + +[node name="RemoteTransform2D" type="RemoteTransform2D" parent="Egg5/Bone-42"] +visible = false +remote_path = NodePath("../../Skeleton2D/Bone-42") +update_rotation = false +update_scale = false + +[node name="Joint2D-Bone-42-Bone-31" type="PinJoint2D" parent="Egg5/Bone-42"] +visible = false +rotation = -3.92699 +node_a = NodePath("..") +node_b = NodePath("../../Bone-31") +softness = 100.0 + +[node name="Joint2D-Bone-42-Bone-36" type="PinJoint2D" parent="Egg5/Bone-42"] +visible = false +rotation = -3.14159 +node_a = NodePath("..") +node_b = NodePath("../../Bone-36") +softness = 100.0 + +[node name="Joint2D-Bone-42-Bone-40" type="PinJoint2D" parent="Egg5/Bone-42"] +visible = false +rotation = 1.5708 +node_a = NodePath("..") +node_b = NodePath("../../Bone-40") +softness = 100.0 + +[node name="Joint2D-Bone-42-Bone-61" type="PinJoint2D" parent="Egg5/Bone-42"] +visible = false +rotation = -2.35619 +node_a = NodePath("..") +node_b = NodePath("../../Bone-61") +softness = 100.0 + +[node name="Joint2D-Bone-42-Bone-77" type="PinJoint2D" parent="Egg5/Bone-42"] +visible = false +rotation = -1.5708 +node_a = NodePath("..") +node_b = NodePath("../../Bone-77") +softness = 100.0 + +[node name="Joint2D-Bone-42-Bone-41" type="PinJoint2D" parent="Egg5/Bone-42"] +visible = false +rotation = 0.715743 +node_a = NodePath("..") +node_b = NodePath("../../Bone-41") +softness = 100.0 + +[node name="Joint2D-Bone-42-Bone-43" type="PinJoint2D" parent="Egg5/Bone-42"] +visible = false +node_a = NodePath("..") +node_b = NodePath("../../Bone-43") +softness = 100.0 + +[node name="Joint2D-Bone-42-Bone-78" type="PinJoint2D" parent="Egg5/Bone-42"] +visible = false +rotation = -0.785398 +node_a = NodePath("..") +node_b = NodePath("../../Bone-78") +softness = 100.0 + +[node name="Bone-43" type="RigidBody2D" parent="Egg5" instance=ExtResource("3_6ern4")] +position = Vector2(87, 230) +input_pickable = true +mass = 0.0942353 +physics_material_override = ExtResource("3_durpg") +script = ExtResource("11_tqnjl") +metadata/idx = 43 +metadata/bone_name = &"Bone-43" + +[node name="CircleShape2D" type="CollisionShape2D" parent="Egg5/Bone-43"] +shape = SubResource("CircleShape2D_tkaeo") + +[node name="RemoteTransform2D" type="RemoteTransform2D" parent="Egg5/Bone-43"] +visible = false +remote_path = NodePath("../../Skeleton2D/Bone-43") +update_rotation = false +update_scale = false + +[node name="Joint2D-Bone-43-Bone-40" type="PinJoint2D" parent="Egg5/Bone-43"] +visible = false +rotation = -3.92699 +node_a = NodePath("..") +node_b = NodePath("../../Bone-40") +softness = 100.0 + +[node name="Joint2D-Bone-43-Bone-41" type="PinJoint2D" parent="Egg5/Bone-43"] +visible = false +rotation = 1.42191 +node_a = NodePath("..") +node_b = NodePath("../../Bone-41") +softness = 100.0 + +[node name="Joint2D-Bone-43-Bone-42" type="PinJoint2D" parent="Egg5/Bone-43"] +visible = false +rotation = -3.14159 +node_a = NodePath("..") +node_b = NodePath("../../Bone-42") +softness = 100.0 + +[node name="Joint2D-Bone-43-Bone-44" type="PinJoint2D" parent="Egg5/Bone-43"] +visible = false +node_a = NodePath("..") +node_b = NodePath("../../Bone-44") +softness = 100.0 + +[node name="Joint2D-Bone-43-Bone-77" type="PinJoint2D" parent="Egg5/Bone-43"] +visible = false +rotation = -2.35619 +node_a = NodePath("..") +node_b = NodePath("../../Bone-77") +softness = 100.0 + +[node name="Joint2D-Bone-43-Bone-78" type="PinJoint2D" parent="Egg5/Bone-43"] +visible = false +rotation = -1.5708 +node_a = NodePath("..") +node_b = NodePath("../../Bone-78") +softness = 100.0 + +[node name="Joint2D-Bone-43-Bone-79" type="PinJoint2D" parent="Egg5/Bone-43"] +visible = false +rotation = -0.943488 +node_a = NodePath("..") +node_b = NodePath("../../Bone-79") +softness = 100.0 + +[node name="Bone-44" type="RigidBody2D" parent="Egg5" instance=ExtResource("3_6ern4")] +position = Vector2(87, 244.5) +input_pickable = true +mass = 0.0942353 +physics_material_override = ExtResource("3_durpg") +script = ExtResource("11_tqnjl") +metadata/idx = 44 +metadata/bone_name = &"Bone-44" + +[node name="CircleShape2D" type="CollisionShape2D" parent="Egg5/Bone-44"] +shape = SubResource("CircleShape2D_tkaeo") + +[node name="RemoteTransform2D" type="RemoteTransform2D" parent="Egg5/Bone-44"] +visible = false +remote_path = NodePath("../../Skeleton2D/Bone-44") +update_rotation = false +update_scale = false + +[node name="Joint2D-Bone-44-Bone-41" type="PinJoint2D" parent="Egg5/Bone-44"] +visible = false +rotation = -4.19055 +node_a = NodePath("..") +node_b = NodePath("../../Bone-41") +softness = 100.0 + +[node name="Joint2D-Bone-44-Bone-43" type="PinJoint2D" parent="Egg5/Bone-44"] +visible = false +rotation = -3.14159 +node_a = NodePath("..") +node_b = NodePath("../../Bone-43") +softness = 100.0 + +[node name="Joint2D-Bone-44-Bone-78" type="PinJoint2D" parent="Egg5/Bone-44"] +visible = false +rotation = -2.1981 +node_a = NodePath("..") +node_b = NodePath("../../Bone-78") +softness = 100.0 + +[node name="Joint2D-Bone-44-Bone-79" type="PinJoint2D" parent="Egg5/Bone-44"] +visible = false +rotation = -1.5708 +node_a = NodePath("..") +node_b = NodePath("../../Bone-79") +softness = 100.0 + +[node name="Bone-45" type="RigidBody2D" parent="Egg5" instance=ExtResource("3_6ern4")] +position = Vector2(109, 25) +input_pickable = true +mass = 0.0942353 +physics_material_override = ExtResource("3_durpg") +script = ExtResource("11_tqnjl") +metadata/idx = 45 +metadata/bone_name = &"Bone-45" + +[node name="CircleShape2D" type="CollisionShape2D" parent="Egg5/Bone-45"] +shape = SubResource("CircleShape2D_tkaeo") + +[node name="RemoteTransform2D" type="RemoteTransform2D" parent="Egg5/Bone-45"] +visible = false +remote_path = NodePath("../../Skeleton2D/Bone-45") +update_rotation = false +update_scale = false + +[node name="Joint2D-Bone-45-Bone-49" type="PinJoint2D" parent="Egg5/Bone-45"] +visible = false +rotation = -1.33086 +node_a = NodePath("..") +node_b = NodePath("../../Bone-49") +softness = 100.0 + +[node name="Joint2D-Bone-45-Bone-9" type="PinJoint2D" parent="Egg5/Bone-45"] +visible = false +rotation = -4.28576 +node_a = NodePath("..") +node_b = NodePath("../../Bone-9") +softness = 100.0 + +[node name="Joint2D-Bone-45-Bone-10" type="PinJoint2D" parent="Egg5/Bone-45"] +visible = false +rotation = 1.34732 +node_a = NodePath("..") +node_b = NodePath("../../Bone-10") +softness = 100.0 + +[node name="Joint2D-Bone-45-Bone-11" type="PinJoint2D" parent="Egg5/Bone-45"] +visible = false +rotation = 0.721655 +node_a = NodePath("..") +node_b = NodePath("../../Bone-11") +softness = 100.0 + +[node name="Joint2D-Bone-45-Bone-46" type="PinJoint2D" parent="Egg5/Bone-45"] +visible = false +rotation = 0.07983 +node_a = NodePath("..") +node_b = NodePath("../../Bone-46") +softness = 100.0 + +[node name="Joint2D-Bone-45-Bone-50" type="PinJoint2D" parent="Egg5/Bone-45"] +visible = false +rotation = -0.624023 +node_a = NodePath("..") +node_b = NodePath("../../Bone-50") +softness = 100.0 + +[node name="Bone-46" type="RigidBody2D" parent="Egg5" instance=ExtResource("3_6ern4")] +position = Vector2(107, 50) +input_pickable = true +mass = 0.0942353 +physics_material_override = ExtResource("3_durpg") +script = ExtResource("11_tqnjl") +metadata/idx = 46 +metadata/bone_name = &"Bone-46" + +[node name="CircleShape2D" type="CollisionShape2D" parent="Egg5/Bone-46"] +shape = SubResource("CircleShape2D_tkaeo") + +[node name="RemoteTransform2D" type="RemoteTransform2D" parent="Egg5/Bone-46"] +visible = false +remote_path = NodePath("../../Skeleton2D/Bone-46") +update_rotation = false +update_scale = false + +[node name="Joint2D-Bone-46-Bone-10" type="PinJoint2D" parent="Egg5/Bone-46"] +visible = false +rotation = -3.92699 +node_a = NodePath("..") +node_b = NodePath("../../Bone-10") +softness = 100.0 + +[node name="Joint2D-Bone-46-Bone-11" type="PinJoint2D" parent="Egg5/Bone-46"] +visible = false +rotation = 1.5708 +node_a = NodePath("..") +node_b = NodePath("../../Bone-11") +softness = 100.0 + +[node name="Joint2D-Bone-46-Bone-45" type="PinJoint2D" parent="Egg5/Bone-46"] +visible = false +rotation = -3.06176 +node_a = NodePath("..") +node_b = NodePath("../../Bone-45") +softness = 100.0 + +[node name="Joint2D-Bone-46-Bone-12" type="PinJoint2D" parent="Egg5/Bone-46"] +visible = false +rotation = 0.785398 +node_a = NodePath("..") +node_b = NodePath("../../Bone-12") +softness = 100.0 + +[node name="Joint2D-Bone-46-Bone-47" type="PinJoint2D" parent="Egg5/Bone-46"] +visible = false +node_a = NodePath("..") +node_b = NodePath("../../Bone-47") +softness = 100.0 + +[node name="Joint2D-Bone-46-Bone-49" type="PinJoint2D" parent="Egg5/Bone-46"] +visible = false +rotation = -2.29882 +node_a = NodePath("..") +node_b = NodePath("../../Bone-49") +softness = 100.0 + +[node name="Joint2D-Bone-46-Bone-50" type="PinJoint2D" parent="Egg5/Bone-46"] +visible = false +rotation = -1.5708 +node_a = NodePath("..") +node_b = NodePath("../../Bone-50") +softness = 100.0 + +[node name="Joint2D-Bone-46-Bone-51" type="PinJoint2D" parent="Egg5/Bone-46"] +visible = false +rotation = -0.785398 +node_a = NodePath("..") +node_b = NodePath("../../Bone-51") +softness = 100.0 + +[node name="Bone-47" type="RigidBody2D" parent="Egg5" instance=ExtResource("3_6ern4")] +position = Vector2(107, 70) +input_pickable = true +mass = 0.0942353 +physics_material_override = ExtResource("3_durpg") +script = ExtResource("11_tqnjl") +metadata/idx = 47 +metadata/bone_name = &"Bone-47" + +[node name="CircleShape2D" type="CollisionShape2D" parent="Egg5/Bone-47"] +shape = SubResource("CircleShape2D_tkaeo") + +[node name="RemoteTransform2D" type="RemoteTransform2D" parent="Egg5/Bone-47"] +visible = false +remote_path = NodePath("../../Skeleton2D/Bone-47") +update_rotation = false +update_scale = false + +[node name="Joint2D-Bone-47-Bone-11" type="PinJoint2D" parent="Egg5/Bone-47"] +visible = false +rotation = -3.92699 +node_a = NodePath("..") +node_b = NodePath("../../Bone-11") +softness = 100.0 + +[node name="Joint2D-Bone-47-Bone-12" type="PinJoint2D" parent="Egg5/Bone-47"] +visible = false +rotation = 1.5708 +node_a = NodePath("..") +node_b = NodePath("../../Bone-12") +softness = 100.0 + +[node name="Joint2D-Bone-47-Bone-46" type="PinJoint2D" parent="Egg5/Bone-47"] +visible = false +rotation = -3.14159 +node_a = NodePath("..") +node_b = NodePath("../../Bone-46") +softness = 100.0 + +[node name="Joint2D-Bone-47-Bone-13" type="PinJoint2D" parent="Egg5/Bone-47"] +visible = false +rotation = 0.785398 +node_a = NodePath("..") +node_b = NodePath("../../Bone-13") +softness = 100.0 + +[node name="Joint2D-Bone-47-Bone-48" type="PinJoint2D" parent="Egg5/Bone-47"] +visible = false +node_a = NodePath("..") +node_b = NodePath("../../Bone-48") +softness = 100.0 + +[node name="Joint2D-Bone-47-Bone-50" type="PinJoint2D" parent="Egg5/Bone-47"] +visible = false +rotation = -2.35619 +node_a = NodePath("..") +node_b = NodePath("../../Bone-50") +softness = 100.0 + +[node name="Joint2D-Bone-47-Bone-51" type="PinJoint2D" parent="Egg5/Bone-47"] +visible = false +rotation = -1.5708 +node_a = NodePath("..") +node_b = NodePath("../../Bone-51") +softness = 100.0 + +[node name="Joint2D-Bone-47-Bone-52" type="PinJoint2D" parent="Egg5/Bone-47"] +visible = false +rotation = -0.785398 +node_a = NodePath("..") +node_b = NodePath("../../Bone-52") +softness = 100.0 + +[node name="Bone-48" type="RigidBody2D" parent="Egg5" instance=ExtResource("3_6ern4")] +position = Vector2(107, 90) +input_pickable = true +mass = 0.0942353 +physics_material_override = ExtResource("3_durpg") +script = ExtResource("11_tqnjl") +metadata/idx = 48 +metadata/bone_name = &"Bone-48" + +[node name="CircleShape2D" type="CollisionShape2D" parent="Egg5/Bone-48"] +shape = SubResource("CircleShape2D_tkaeo") + +[node name="RemoteTransform2D" type="RemoteTransform2D" parent="Egg5/Bone-48"] +visible = false +remote_path = NodePath("../../Skeleton2D/Bone-48") +update_rotation = false +update_scale = false + +[node name="Joint2D-Bone-48-Bone-12" type="PinJoint2D" parent="Egg5/Bone-48"] +visible = false +rotation = -3.92699 +node_a = NodePath("..") +node_b = NodePath("../../Bone-12") +softness = 100.0 + +[node name="Joint2D-Bone-48-Bone-13" type="PinJoint2D" parent="Egg5/Bone-48"] +visible = false +rotation = 1.5708 +node_a = NodePath("..") +node_b = NodePath("../../Bone-13") +softness = 100.0 + +[node name="Joint2D-Bone-48-Bone-47" type="PinJoint2D" parent="Egg5/Bone-48"] +visible = false +rotation = -3.14159 +node_a = NodePath("..") +node_b = NodePath("../../Bone-47") +softness = 100.0 + +[node name="Joint2D-Bone-48-Bone-32" type="PinJoint2D" parent="Egg5/Bone-48"] +visible = false +rotation = 0.785398 +node_a = NodePath("..") +node_b = NodePath("../../Bone-32") +softness = 100.0 + +[node name="Joint2D-Bone-48-Bone-57" type="PinJoint2D" parent="Egg5/Bone-48"] +visible = false +node_a = NodePath("..") +node_b = NodePath("../../Bone-57") +softness = 100.0 + +[node name="Joint2D-Bone-48-Bone-51" type="PinJoint2D" parent="Egg5/Bone-48"] +visible = false +rotation = -2.35619 +node_a = NodePath("..") +node_b = NodePath("../../Bone-51") +softness = 100.0 + +[node name="Joint2D-Bone-48-Bone-52" type="PinJoint2D" parent="Egg5/Bone-48"] +visible = false +rotation = -1.5708 +node_a = NodePath("..") +node_b = NodePath("../../Bone-52") +softness = 100.0 + +[node name="Joint2D-Bone-48-Bone-62" type="PinJoint2D" parent="Egg5/Bone-48"] +visible = false +rotation = -0.785398 +node_a = NodePath("..") +node_b = NodePath("../../Bone-62") +softness = 100.0 + +[node name="Bone-49" type="RigidBody2D" parent="Egg5" instance=ExtResource("3_6ern4")] +position = Vector2(129.438, 30) +input_pickable = true +mass = 0.0942353 +physics_material_override = ExtResource("3_durpg") +script = ExtResource("11_tqnjl") +metadata/idx = 49 +metadata/bone_name = &"Bone-49" + +[node name="CircleShape2D" type="CollisionShape2D" parent="Egg5/Bone-49"] +shape = SubResource("CircleShape2D_tkaeo") + +[node name="RemoteTransform2D" type="RemoteTransform2D" parent="Egg5/Bone-49"] +visible = false +remote_path = NodePath("../../Skeleton2D/Bone-49") +update_rotation = false +update_scale = false + +[node name="Joint2D-Bone-49-Bone-53" type="PinJoint2D" parent="Egg5/Bone-49"] +visible = false +rotation = -0.685696 +node_a = NodePath("..") +node_b = NodePath("../../Bone-53") +softness = 100.0 + +[node name="Joint2D-Bone-49-Bone-45" type="PinJoint2D" parent="Egg5/Bone-49"] +visible = false +rotation = -4.47245 +node_a = NodePath("..") +node_b = NodePath("../../Bone-45") +softness = 100.0 + +[node name="Joint2D-Bone-49-Bone-46" type="PinJoint2D" parent="Egg5/Bone-49"] +visible = false +rotation = 0.842773 +node_a = NodePath("..") +node_b = NodePath("../../Bone-46") +softness = 100.0 + +[node name="Joint2D-Bone-49-Bone-50" type="PinJoint2D" parent="Egg5/Bone-49"] +visible = false +rotation = 0.121277 +node_a = NodePath("..") +node_b = NodePath("../../Bone-50") +softness = 100.0 + +[node name="Bone-50" type="RigidBody2D" parent="Egg5" instance=ExtResource("3_6ern4")] +position = Vector2(127, 50) +input_pickable = true +mass = 0.0942353 +physics_material_override = ExtResource("3_durpg") +script = ExtResource("11_tqnjl") +metadata/idx = 50 +metadata/bone_name = &"Bone-50" + +[node name="CircleShape2D" type="CollisionShape2D" parent="Egg5/Bone-50"] +shape = SubResource("CircleShape2D_tkaeo") + +[node name="RemoteTransform2D" type="RemoteTransform2D" parent="Egg5/Bone-50"] +visible = false +remote_path = NodePath("../../Skeleton2D/Bone-50") +update_rotation = false +update_scale = false + +[node name="Joint2D-Bone-50-Bone-45" type="PinJoint2D" parent="Egg5/Bone-50"] +visible = false +rotation = -3.76562 +node_a = NodePath("..") +node_b = NodePath("../../Bone-45") +softness = 100.0 + +[node name="Joint2D-Bone-50-Bone-46" type="PinJoint2D" parent="Egg5/Bone-50"] +visible = false +rotation = 1.5708 +node_a = NodePath("..") +node_b = NodePath("../../Bone-46") +softness = 100.0 + +[node name="Joint2D-Bone-50-Bone-49" type="PinJoint2D" parent="Egg5/Bone-50"] +visible = false +rotation = -3.02032 +node_a = NodePath("..") +node_b = NodePath("../../Bone-49") +softness = 100.0 + +[node name="Joint2D-Bone-50-Bone-47" type="PinJoint2D" parent="Egg5/Bone-50"] +visible = false +rotation = 0.785398 +node_a = NodePath("..") +node_b = NodePath("../../Bone-47") +softness = 100.0 + +[node name="Joint2D-Bone-50-Bone-51" type="PinJoint2D" parent="Egg5/Bone-50"] +visible = false +node_a = NodePath("..") +node_b = NodePath("../../Bone-51") +softness = 100.0 + +[node name="Joint2D-Bone-50-Bone-53" type="PinJoint2D" parent="Egg5/Bone-50"] +visible = false +rotation = -1.5708 +node_a = NodePath("..") +node_b = NodePath("../../Bone-53") +softness = 100.0 + +[node name="Joint2D-Bone-50-Bone-54" type="PinJoint2D" parent="Egg5/Bone-50"] +visible = false +rotation = -0.868149 +node_a = NodePath("..") +node_b = NodePath("../../Bone-54") +softness = 100.0 + +[node name="Bone-51" type="RigidBody2D" parent="Egg5" instance=ExtResource("3_6ern4")] +position = Vector2(127, 70) +input_pickable = true +mass = 0.0942353 +physics_material_override = ExtResource("3_durpg") +script = ExtResource("11_tqnjl") +metadata/idx = 51 +metadata/bone_name = &"Bone-51" + +[node name="CircleShape2D" type="CollisionShape2D" parent="Egg5/Bone-51"] +shape = SubResource("CircleShape2D_tkaeo") + +[node name="RemoteTransform2D" type="RemoteTransform2D" parent="Egg5/Bone-51"] +visible = false +remote_path = NodePath("../../Skeleton2D/Bone-51") +update_rotation = false +update_scale = false + +[node name="Joint2D-Bone-51-Bone-46" type="PinJoint2D" parent="Egg5/Bone-51"] +visible = false +rotation = -3.92699 +node_a = NodePath("..") +node_b = NodePath("../../Bone-46") +softness = 100.0 + +[node name="Joint2D-Bone-51-Bone-47" type="PinJoint2D" parent="Egg5/Bone-51"] +visible = false +rotation = 1.5708 +node_a = NodePath("..") +node_b = NodePath("../../Bone-47") +softness = 100.0 + +[node name="Joint2D-Bone-51-Bone-50" type="PinJoint2D" parent="Egg5/Bone-51"] +visible = false +rotation = -3.14159 +node_a = NodePath("..") +node_b = NodePath("../../Bone-50") +softness = 100.0 + +[node name="Joint2D-Bone-51-Bone-48" type="PinJoint2D" parent="Egg5/Bone-51"] +visible = false +rotation = 0.785398 +node_a = NodePath("..") +node_b = NodePath("../../Bone-48") +softness = 100.0 + +[node name="Joint2D-Bone-51-Bone-52" type="PinJoint2D" parent="Egg5/Bone-51"] +visible = false +node_a = NodePath("..") +node_b = NodePath("../../Bone-52") +softness = 100.0 + +[node name="Joint2D-Bone-51-Bone-53" type="PinJoint2D" parent="Egg5/Bone-51"] +visible = false +rotation = -2.38711 +node_a = NodePath("..") +node_b = NodePath("../../Bone-53") +softness = 100.0 + +[node name="Joint2D-Bone-51-Bone-54" type="PinJoint2D" parent="Egg5/Bone-51"] +visible = false +rotation = -1.5708 +node_a = NodePath("..") +node_b = NodePath("../../Bone-54") +softness = 100.0 + +[node name="Joint2D-Bone-51-Bone-55" type="PinJoint2D" parent="Egg5/Bone-51"] +visible = false +rotation = -0.785398 +node_a = NodePath("..") +node_b = NodePath("../../Bone-55") +softness = 100.0 + +[node name="Bone-52" type="RigidBody2D" parent="Egg5" instance=ExtResource("3_6ern4")] +position = Vector2(127, 90) +input_pickable = true +mass = 0.0942353 +physics_material_override = ExtResource("3_durpg") +script = ExtResource("11_tqnjl") +metadata/idx = 52 +metadata/bone_name = &"Bone-52" + +[node name="CircleShape2D" type="CollisionShape2D" parent="Egg5/Bone-52"] +shape = SubResource("CircleShape2D_tkaeo") + +[node name="RemoteTransform2D" type="RemoteTransform2D" parent="Egg5/Bone-52"] +visible = false +remote_path = NodePath("../../Skeleton2D/Bone-52") +update_rotation = false +update_scale = false + +[node name="Joint2D-Bone-52-Bone-47" type="PinJoint2D" parent="Egg5/Bone-52"] +visible = false +rotation = -3.92699 +node_a = NodePath("..") +node_b = NodePath("../../Bone-47") +softness = 100.0 + +[node name="Joint2D-Bone-52-Bone-48" type="PinJoint2D" parent="Egg5/Bone-52"] +visible = false +rotation = 1.5708 +node_a = NodePath("..") +node_b = NodePath("../../Bone-48") +softness = 100.0 + +[node name="Joint2D-Bone-52-Bone-51" type="PinJoint2D" parent="Egg5/Bone-52"] +visible = false +rotation = -3.14159 +node_a = NodePath("..") +node_b = NodePath("../../Bone-51") +softness = 100.0 + +[node name="Joint2D-Bone-52-Bone-57" type="PinJoint2D" parent="Egg5/Bone-52"] +visible = false +rotation = 0.785398 +node_a = NodePath("..") +node_b = NodePath("../../Bone-57") +softness = 100.0 + +[node name="Joint2D-Bone-52-Bone-62" type="PinJoint2D" parent="Egg5/Bone-52"] +visible = false +node_a = NodePath("..") +node_b = NodePath("../../Bone-62") +softness = 100.0 + +[node name="Joint2D-Bone-52-Bone-54" type="PinJoint2D" parent="Egg5/Bone-52"] +visible = false +rotation = -2.27344 +node_a = NodePath("..") +node_b = NodePath("../../Bone-54") +softness = 100.0 + +[node name="Joint2D-Bone-52-Bone-55" type="PinJoint2D" parent="Egg5/Bone-52"] +visible = false +rotation = -1.5708 +node_a = NodePath("..") +node_b = NodePath("../../Bone-55") +softness = 100.0 + +[node name="Joint2D-Bone-52-Bone-67" type="PinJoint2D" parent="Egg5/Bone-52"] +visible = false +rotation = -0.785398 +node_a = NodePath("..") +node_b = NodePath("../../Bone-67") +softness = 100.0 + +[node name="Bone-53" type="RigidBody2D" parent="Egg5" instance=ExtResource("3_6ern4")] +position = Vector2(145.8, 50) +input_pickable = true +mass = 0.0942353 +physics_material_override = ExtResource("3_durpg") +script = ExtResource("11_tqnjl") +metadata/idx = 53 +metadata/bone_name = &"Bone-53" + +[node name="CircleShape2D" type="CollisionShape2D" parent="Egg5/Bone-53"] +shape = SubResource("CircleShape2D_tkaeo") + +[node name="RemoteTransform2D" type="RemoteTransform2D" parent="Egg5/Bone-53"] +visible = false +remote_path = NodePath("../../Skeleton2D/Bone-53") +update_rotation = false +update_scale = false + +[node name="Joint2D-Bone-53-Bone-49" type="PinJoint2D" parent="Egg5/Bone-53"] +visible = false +rotation = -3.82729 +node_a = NodePath("..") +node_b = NodePath("../../Bone-49") +softness = 100.0 + +[node name="Joint2D-Bone-53-Bone-50" type="PinJoint2D" parent="Egg5/Bone-53"] +visible = false +rotation = 1.5708 +node_a = NodePath("..") +node_b = NodePath("../../Bone-50") +softness = 100.0 + +[node name="Joint2D-Bone-53-Bone-51" type="PinJoint2D" parent="Egg5/Bone-53"] +visible = false +rotation = 0.75448 +node_a = NodePath("..") +node_b = NodePath("../../Bone-51") +softness = 100.0 + +[node name="Joint2D-Bone-53-Bone-54" type="PinJoint2D" parent="Egg5/Bone-53"] +visible = false +rotation = -0.236379 +node_a = NodePath("..") +node_b = NodePath("../../Bone-54") +softness = 100.0 + +[node name="Bone-54" type="RigidBody2D" parent="Egg5" instance=ExtResource("3_6ern4")] +position = Vector2(150.618, 70) +input_pickable = true +mass = 0.0942353 +physics_material_override = ExtResource("3_durpg") +script = ExtResource("11_tqnjl") +metadata/idx = 54 +metadata/bone_name = &"Bone-54" + +[node name="CircleShape2D" type="CollisionShape2D" parent="Egg5/Bone-54"] +shape = SubResource("CircleShape2D_tkaeo") + +[node name="RemoteTransform2D" type="RemoteTransform2D" parent="Egg5/Bone-54"] +visible = false +remote_path = NodePath("../../Skeleton2D/Bone-54") +update_rotation = false +update_scale = false + +[node name="Joint2D-Bone-54-Bone-50" type="PinJoint2D" parent="Egg5/Bone-54"] +visible = false +rotation = -4.00974 +node_a = NodePath("..") +node_b = NodePath("../../Bone-50") +softness = 100.0 + +[node name="Joint2D-Bone-54-Bone-51" type="PinJoint2D" parent="Egg5/Bone-54"] +visible = false +rotation = 1.5708 +node_a = NodePath("..") +node_b = NodePath("../../Bone-51") +softness = 100.0 + +[node name="Joint2D-Bone-54-Bone-53" type="PinJoint2D" parent="Egg5/Bone-54"] +visible = false +rotation = -3.37797 +node_a = NodePath("..") +node_b = NodePath("../../Bone-53") +softness = 100.0 + +[node name="Joint2D-Bone-54-Bone-52" type="PinJoint2D" parent="Egg5/Bone-54"] +visible = false +rotation = 0.868149 +node_a = NodePath("..") +node_b = NodePath("../../Bone-52") +softness = 100.0 + +[node name="Joint2D-Bone-54-Bone-55" type="PinJoint2D" parent="Egg5/Bone-54"] +visible = false +rotation = 0.178947 +node_a = NodePath("..") +node_b = NodePath("../../Bone-55") +softness = 100.0 + +[node name="Joint2D-Bone-54-Bone-56" type="PinJoint2D" parent="Egg5/Bone-54"] +visible = false +rotation = -0.617424 +node_a = NodePath("..") +node_b = NodePath("../../Bone-56") +softness = 100.0 + +[node name="Bone-55" type="RigidBody2D" parent="Egg5" instance=ExtResource("3_6ern4")] +position = Vector2(147, 90) +input_pickable = true +mass = 0.0942353 +physics_material_override = ExtResource("3_durpg") +script = ExtResource("11_tqnjl") +metadata/idx = 55 +metadata/bone_name = &"Bone-55" + +[node name="CircleShape2D" type="CollisionShape2D" parent="Egg5/Bone-55"] +shape = SubResource("CircleShape2D_tkaeo") + +[node name="RemoteTransform2D" type="RemoteTransform2D" parent="Egg5/Bone-55"] +visible = false +remote_path = NodePath("../../Skeleton2D/Bone-55") +update_rotation = false +update_scale = false + +[node name="Joint2D-Bone-55-Bone-51" type="PinJoint2D" parent="Egg5/Bone-55"] +visible = false +rotation = -3.92699 +node_a = NodePath("..") +node_b = NodePath("../../Bone-51") +softness = 100.0 + +[node name="Joint2D-Bone-55-Bone-52" type="PinJoint2D" parent="Egg5/Bone-55"] +visible = false +rotation = 1.5708 +node_a = NodePath("..") +node_b = NodePath("../../Bone-52") +softness = 100.0 + +[node name="Joint2D-Bone-55-Bone-54" type="PinJoint2D" parent="Egg5/Bone-55"] +visible = false +rotation = -2.96265 +node_a = NodePath("..") +node_b = NodePath("../../Bone-54") +softness = 100.0 + +[node name="Joint2D-Bone-55-Bone-62" type="PinJoint2D" parent="Egg5/Bone-55"] +visible = false +rotation = 0.785398 +node_a = NodePath("..") +node_b = NodePath("../../Bone-62") +softness = 100.0 + +[node name="Joint2D-Bone-55-Bone-67" type="PinJoint2D" parent="Egg5/Bone-55"] +visible = false +node_a = NodePath("..") +node_b = NodePath("../../Bone-67") +softness = 100.0 + +[node name="Joint2D-Bone-55-Bone-56" type="PinJoint2D" parent="Egg5/Bone-55"] +visible = false +rotation = -1.5708 +node_a = NodePath("..") +node_b = NodePath("../../Bone-56") +softness = 100.0 + +[node name="Joint2D-Bone-55-Bone-72" type="PinJoint2D" parent="Egg5/Bone-55"] +visible = false +rotation = -0.787995 +node_a = NodePath("..") +node_b = NodePath("../../Bone-72") +softness = 100.0 + +[node name="Bone-56" type="RigidBody2D" parent="Egg5" instance=ExtResource("3_6ern4")] +position = Vector2(164.818, 90) +input_pickable = true +mass = 0.0942353 +physics_material_override = ExtResource("3_durpg") +script = ExtResource("11_tqnjl") +metadata/idx = 56 +metadata/bone_name = &"Bone-56" + +[node name="CircleShape2D" type="CollisionShape2D" parent="Egg5/Bone-56"] +shape = SubResource("CircleShape2D_tkaeo") + +[node name="RemoteTransform2D" type="RemoteTransform2D" parent="Egg5/Bone-56"] +visible = false +remote_path = NodePath("../../Skeleton2D/Bone-56") +update_rotation = false +update_scale = false + +[node name="Joint2D-Bone-56-Bone-54" type="PinJoint2D" parent="Egg5/Bone-56"] +visible = false +rotation = -3.75902 +node_a = NodePath("..") +node_b = NodePath("../../Bone-54") +softness = 100.0 + +[node name="Joint2D-Bone-56-Bone-55" type="PinJoint2D" parent="Egg5/Bone-56"] +visible = false +rotation = 1.5708 +node_a = NodePath("..") +node_b = NodePath("../../Bone-55") +softness = 100.0 + +[node name="Joint2D-Bone-56-Bone-67" type="PinJoint2D" parent="Egg5/Bone-56"] +visible = false +rotation = 0.72777 +node_a = NodePath("..") +node_b = NodePath("../../Bone-67") +softness = 100.0 + +[node name="Joint2D-Bone-56-Bone-72" type="PinJoint2D" parent="Egg5/Bone-56"] +visible = false +rotation = -0.113805 +node_a = NodePath("..") +node_b = NodePath("../../Bone-72") +softness = 100.0 + +[node name="Bone-57" type="RigidBody2D" parent="Egg5" instance=ExtResource("3_6ern4")] +position = Vector2(107, 110) +input_pickable = true +mass = 0.0942353 +physics_material_override = ExtResource("3_durpg") +script = ExtResource("11_tqnjl") +metadata/idx = 57 +metadata/bone_name = &"Bone-57" + +[node name="CircleShape2D" type="CollisionShape2D" parent="Egg5/Bone-57"] +shape = SubResource("CircleShape2D_tkaeo") + +[node name="RemoteTransform2D" type="RemoteTransform2D" parent="Egg5/Bone-57"] +visible = false +remote_path = NodePath("../../Skeleton2D/Bone-57") +update_rotation = false +update_scale = false + +[node name="Joint2D-Bone-57-Bone-13" type="PinJoint2D" parent="Egg5/Bone-57"] +visible = false +rotation = -3.92699 +node_a = NodePath("..") +node_b = NodePath("../../Bone-13") +softness = 100.0 + +[node name="Joint2D-Bone-57-Bone-32" type="PinJoint2D" parent="Egg5/Bone-57"] +visible = false +rotation = 1.5708 +node_a = NodePath("..") +node_b = NodePath("../../Bone-32") +softness = 100.0 + +[node name="Joint2D-Bone-57-Bone-48" type="PinJoint2D" parent="Egg5/Bone-57"] +visible = false +rotation = -3.14159 +node_a = NodePath("..") +node_b = NodePath("../../Bone-48") +softness = 100.0 + +[node name="Joint2D-Bone-57-Bone-33" type="PinJoint2D" parent="Egg5/Bone-57"] +visible = false +rotation = 0.785398 +node_a = NodePath("..") +node_b = NodePath("../../Bone-33") +softness = 100.0 + +[node name="Joint2D-Bone-57-Bone-58" type="PinJoint2D" parent="Egg5/Bone-57"] +visible = false +node_a = NodePath("..") +node_b = NodePath("../../Bone-58") +softness = 100.0 + +[node name="Joint2D-Bone-57-Bone-52" type="PinJoint2D" parent="Egg5/Bone-57"] +visible = false +rotation = -2.35619 +node_a = NodePath("..") +node_b = NodePath("../../Bone-52") +softness = 100.0 + +[node name="Joint2D-Bone-57-Bone-62" type="PinJoint2D" parent="Egg5/Bone-57"] +visible = false +rotation = -1.5708 +node_a = NodePath("..") +node_b = NodePath("../../Bone-62") +softness = 100.0 + +[node name="Joint2D-Bone-57-Bone-63" type="PinJoint2D" parent="Egg5/Bone-57"] +visible = false +rotation = -0.785398 +node_a = NodePath("..") +node_b = NodePath("../../Bone-63") +softness = 100.0 + +[node name="Bone-58" type="RigidBody2D" parent="Egg5" instance=ExtResource("3_6ern4")] +position = Vector2(107, 130) +input_pickable = true +mass = 0.0942353 +physics_material_override = ExtResource("3_durpg") +script = ExtResource("11_tqnjl") +metadata/idx = 58 +metadata/bone_name = &"Bone-58" + +[node name="CircleShape2D" type="CollisionShape2D" parent="Egg5/Bone-58"] +shape = SubResource("CircleShape2D_tkaeo") + +[node name="RemoteTransform2D" type="RemoteTransform2D" parent="Egg5/Bone-58"] +visible = false +remote_path = NodePath("../../Skeleton2D/Bone-58") +update_rotation = false +update_scale = false + +[node name="Joint2D-Bone-58-Bone-32" type="PinJoint2D" parent="Egg5/Bone-58"] +visible = false +rotation = -3.92699 +node_a = NodePath("..") +node_b = NodePath("../../Bone-32") +softness = 100.0 + +[node name="Joint2D-Bone-58-Bone-33" type="PinJoint2D" parent="Egg5/Bone-58"] +visible = false +rotation = 1.5708 +node_a = NodePath("..") +node_b = NodePath("../../Bone-33") +softness = 100.0 + +[node name="Joint2D-Bone-58-Bone-57" type="PinJoint2D" parent="Egg5/Bone-58"] +visible = false +rotation = -3.14159 +node_a = NodePath("..") +node_b = NodePath("../../Bone-57") +softness = 100.0 + +[node name="Joint2D-Bone-58-Bone-34" type="PinJoint2D" parent="Egg5/Bone-58"] +visible = false +rotation = 0.785398 +node_a = NodePath("..") +node_b = NodePath("../../Bone-34") +softness = 100.0 + +[node name="Joint2D-Bone-58-Bone-59" type="PinJoint2D" parent="Egg5/Bone-58"] +visible = false +node_a = NodePath("..") +node_b = NodePath("../../Bone-59") +softness = 100.0 + +[node name="Joint2D-Bone-58-Bone-62" type="PinJoint2D" parent="Egg5/Bone-58"] +visible = false +rotation = -2.35619 +node_a = NodePath("..") +node_b = NodePath("../../Bone-62") +softness = 100.0 + +[node name="Joint2D-Bone-58-Bone-63" type="PinJoint2D" parent="Egg5/Bone-58"] +visible = false +rotation = -1.5708 +node_a = NodePath("..") +node_b = NodePath("../../Bone-63") +softness = 100.0 + +[node name="Joint2D-Bone-58-Bone-64" type="PinJoint2D" parent="Egg5/Bone-58"] +visible = false +rotation = -0.785398 +node_a = NodePath("..") +node_b = NodePath("../../Bone-64") +softness = 100.0 + +[node name="Bone-59" type="RigidBody2D" parent="Egg5" instance=ExtResource("3_6ern4")] +position = Vector2(107, 150) +input_pickable = true +mass = 0.0942353 +physics_material_override = ExtResource("3_durpg") +script = ExtResource("11_tqnjl") +metadata/idx = 59 +metadata/bone_name = &"Bone-59" + +[node name="CircleShape2D" type="CollisionShape2D" parent="Egg5/Bone-59"] +shape = SubResource("CircleShape2D_tkaeo") + +[node name="RemoteTransform2D" type="RemoteTransform2D" parent="Egg5/Bone-59"] +visible = false +remote_path = NodePath("../../Skeleton2D/Bone-59") +update_rotation = false +update_scale = false + +[node name="Joint2D-Bone-59-Bone-33" type="PinJoint2D" parent="Egg5/Bone-59"] +visible = false +rotation = -3.92699 +node_a = NodePath("..") +node_b = NodePath("../../Bone-33") +softness = 100.0 + +[node name="Joint2D-Bone-59-Bone-34" type="PinJoint2D" parent="Egg5/Bone-59"] +visible = false +rotation = 1.5708 +node_a = NodePath("..") +node_b = NodePath("../../Bone-34") +softness = 100.0 + +[node name="Joint2D-Bone-59-Bone-58" type="PinJoint2D" parent="Egg5/Bone-59"] +visible = false +rotation = -3.14159 +node_a = NodePath("..") +node_b = NodePath("../../Bone-58") +softness = 100.0 + +[node name="Joint2D-Bone-59-Bone-35" type="PinJoint2D" parent="Egg5/Bone-59"] +visible = false +rotation = 0.785398 +node_a = NodePath("..") +node_b = NodePath("../../Bone-35") +softness = 100.0 + +[node name="Joint2D-Bone-59-Bone-60" type="PinJoint2D" parent="Egg5/Bone-59"] +visible = false +node_a = NodePath("..") +node_b = NodePath("../../Bone-60") +softness = 100.0 + +[node name="Joint2D-Bone-59-Bone-63" type="PinJoint2D" parent="Egg5/Bone-59"] +visible = false +rotation = -2.35619 +node_a = NodePath("..") +node_b = NodePath("../../Bone-63") +softness = 100.0 + +[node name="Joint2D-Bone-59-Bone-64" type="PinJoint2D" parent="Egg5/Bone-59"] +visible = false +rotation = -1.5708 +node_a = NodePath("..") +node_b = NodePath("../../Bone-64") +softness = 100.0 + +[node name="Joint2D-Bone-59-Bone-65" type="PinJoint2D" parent="Egg5/Bone-59"] +visible = false +rotation = -0.785398 +node_a = NodePath("..") +node_b = NodePath("../../Bone-65") +softness = 100.0 + +[node name="Bone-60" type="RigidBody2D" parent="Egg5" instance=ExtResource("3_6ern4")] +position = Vector2(107, 170) +input_pickable = true +mass = 0.0942353 +physics_material_override = ExtResource("3_durpg") +script = ExtResource("11_tqnjl") +metadata/idx = 60 +metadata/bone_name = &"Bone-60" + +[node name="CircleShape2D" type="CollisionShape2D" parent="Egg5/Bone-60"] +shape = SubResource("CircleShape2D_tkaeo") + +[node name="RemoteTransform2D" type="RemoteTransform2D" parent="Egg5/Bone-60"] +visible = false +remote_path = NodePath("../../Skeleton2D/Bone-60") +update_rotation = false +update_scale = false + +[node name="Joint2D-Bone-60-Bone-34" type="PinJoint2D" parent="Egg5/Bone-60"] +visible = false +rotation = -3.92699 +node_a = NodePath("..") +node_b = NodePath("../../Bone-34") +softness = 100.0 + +[node name="Joint2D-Bone-60-Bone-35" type="PinJoint2D" parent="Egg5/Bone-60"] +visible = false +rotation = 1.5708 +node_a = NodePath("..") +node_b = NodePath("../../Bone-35") +softness = 100.0 + +[node name="Joint2D-Bone-60-Bone-59" type="PinJoint2D" parent="Egg5/Bone-60"] +visible = false +rotation = -3.14159 +node_a = NodePath("..") +node_b = NodePath("../../Bone-59") +softness = 100.0 + +[node name="Joint2D-Bone-60-Bone-36" type="PinJoint2D" parent="Egg5/Bone-60"] +visible = false +rotation = 0.785398 +node_a = NodePath("..") +node_b = NodePath("../../Bone-36") +softness = 100.0 + +[node name="Joint2D-Bone-60-Bone-61" type="PinJoint2D" parent="Egg5/Bone-60"] +visible = false +node_a = NodePath("..") +node_b = NodePath("../../Bone-61") +softness = 100.0 + +[node name="Joint2D-Bone-60-Bone-64" type="PinJoint2D" parent="Egg5/Bone-60"] +visible = false +rotation = -2.35619 +node_a = NodePath("..") +node_b = NodePath("../../Bone-64") +softness = 100.0 + +[node name="Joint2D-Bone-60-Bone-65" type="PinJoint2D" parent="Egg5/Bone-60"] +visible = false +rotation = -1.5708 +node_a = NodePath("..") +node_b = NodePath("../../Bone-65") +softness = 100.0 + +[node name="Joint2D-Bone-60-Bone-66" type="PinJoint2D" parent="Egg5/Bone-60"] +visible = false +rotation = -0.785398 +node_a = NodePath("..") +node_b = NodePath("../../Bone-66") +softness = 100.0 + +[node name="Bone-61" type="RigidBody2D" parent="Egg5" instance=ExtResource("3_6ern4")] +position = Vector2(107, 190) +input_pickable = true +mass = 0.0942353 +physics_material_override = ExtResource("3_durpg") +script = ExtResource("11_tqnjl") +metadata/idx = 61 +metadata/bone_name = &"Bone-61" + +[node name="CircleShape2D" type="CollisionShape2D" parent="Egg5/Bone-61"] +shape = SubResource("CircleShape2D_tkaeo") + +[node name="RemoteTransform2D" type="RemoteTransform2D" parent="Egg5/Bone-61"] +visible = false +remote_path = NodePath("../../Skeleton2D/Bone-61") +update_rotation = false +update_scale = false + +[node name="Joint2D-Bone-61-Bone-35" type="PinJoint2D" parent="Egg5/Bone-61"] +visible = false +rotation = -3.92699 +node_a = NodePath("..") +node_b = NodePath("../../Bone-35") +softness = 100.0 + +[node name="Joint2D-Bone-61-Bone-36" type="PinJoint2D" parent="Egg5/Bone-61"] +visible = false +rotation = 1.5708 +node_a = NodePath("..") +node_b = NodePath("../../Bone-36") +softness = 100.0 + +[node name="Joint2D-Bone-61-Bone-60" type="PinJoint2D" parent="Egg5/Bone-61"] +visible = false +rotation = -3.14159 +node_a = NodePath("..") +node_b = NodePath("../../Bone-60") +softness = 100.0 + +[node name="Joint2D-Bone-61-Bone-42" type="PinJoint2D" parent="Egg5/Bone-61"] +visible = false +rotation = 0.785398 +node_a = NodePath("..") +node_b = NodePath("../../Bone-42") +softness = 100.0 + +[node name="Joint2D-Bone-61-Bone-77" type="PinJoint2D" parent="Egg5/Bone-61"] +visible = false +node_a = NodePath("..") +node_b = NodePath("../../Bone-77") +softness = 100.0 + +[node name="Joint2D-Bone-61-Bone-65" type="PinJoint2D" parent="Egg5/Bone-61"] +visible = false +rotation = -2.35619 +node_a = NodePath("..") +node_b = NodePath("../../Bone-65") +softness = 100.0 + +[node name="Joint2D-Bone-61-Bone-66" type="PinJoint2D" parent="Egg5/Bone-61"] +visible = false +rotation = -1.5708 +node_a = NodePath("..") +node_b = NodePath("../../Bone-66") +softness = 100.0 + +[node name="Joint2D-Bone-61-Bone-80" type="PinJoint2D" parent="Egg5/Bone-61"] +visible = false +rotation = -0.785398 +node_a = NodePath("..") +node_b = NodePath("../../Bone-80") +softness = 100.0 + +[node name="Bone-62" type="RigidBody2D" parent="Egg5" instance=ExtResource("3_6ern4")] +position = Vector2(127, 110) +input_pickable = true +mass = 0.0942353 +physics_material_override = ExtResource("3_durpg") +script = ExtResource("11_tqnjl") +metadata/idx = 62 +metadata/bone_name = &"Bone-62" + +[node name="CircleShape2D" type="CollisionShape2D" parent="Egg5/Bone-62"] +shape = SubResource("CircleShape2D_tkaeo") + +[node name="RemoteTransform2D" type="RemoteTransform2D" parent="Egg5/Bone-62"] +visible = false +remote_path = NodePath("../../Skeleton2D/Bone-62") +update_rotation = false +update_scale = false + +[node name="Joint2D-Bone-62-Bone-48" type="PinJoint2D" parent="Egg5/Bone-62"] +visible = false +rotation = -3.92699 +node_a = NodePath("..") +node_b = NodePath("../../Bone-48") +softness = 100.0 + +[node name="Joint2D-Bone-62-Bone-52" type="PinJoint2D" parent="Egg5/Bone-62"] +visible = false +rotation = -3.14159 +node_a = NodePath("..") +node_b = NodePath("../../Bone-52") +softness = 100.0 + +[node name="Joint2D-Bone-62-Bone-57" type="PinJoint2D" parent="Egg5/Bone-62"] +visible = false +rotation = 1.5708 +node_a = NodePath("..") +node_b = NodePath("../../Bone-57") +softness = 100.0 + +[node name="Joint2D-Bone-62-Bone-55" type="PinJoint2D" parent="Egg5/Bone-62"] +visible = false +rotation = -2.35619 +node_a = NodePath("..") +node_b = NodePath("../../Bone-55") +softness = 100.0 + +[node name="Joint2D-Bone-62-Bone-67" type="PinJoint2D" parent="Egg5/Bone-62"] +visible = false +rotation = -1.5708 +node_a = NodePath("..") +node_b = NodePath("../../Bone-67") +softness = 100.0 + +[node name="Joint2D-Bone-62-Bone-58" type="PinJoint2D" parent="Egg5/Bone-62"] +visible = false +rotation = 0.785398 +node_a = NodePath("..") +node_b = NodePath("../../Bone-58") +softness = 100.0 + +[node name="Joint2D-Bone-62-Bone-63" type="PinJoint2D" parent="Egg5/Bone-62"] +visible = false +node_a = NodePath("..") +node_b = NodePath("../../Bone-63") +softness = 100.0 + +[node name="Joint2D-Bone-62-Bone-68" type="PinJoint2D" parent="Egg5/Bone-62"] +visible = false +rotation = -0.785398 +node_a = NodePath("..") +node_b = NodePath("../../Bone-68") +softness = 100.0 + +[node name="Bone-63" type="RigidBody2D" parent="Egg5" instance=ExtResource("3_6ern4")] +position = Vector2(127, 130) +input_pickable = true +mass = 0.0942353 +physics_material_override = ExtResource("3_durpg") +script = ExtResource("11_tqnjl") +metadata/idx = 63 +metadata/bone_name = &"Bone-63" + +[node name="CircleShape2D" type="CollisionShape2D" parent="Egg5/Bone-63"] +shape = SubResource("CircleShape2D_tkaeo") + +[node name="RemoteTransform2D" type="RemoteTransform2D" parent="Egg5/Bone-63"] +visible = false +remote_path = NodePath("../../Skeleton2D/Bone-63") +update_rotation = false +update_scale = false + +[node name="Joint2D-Bone-63-Bone-57" type="PinJoint2D" parent="Egg5/Bone-63"] +visible = false +rotation = -3.92699 +node_a = NodePath("..") +node_b = NodePath("../../Bone-57") +softness = 100.0 + +[node name="Joint2D-Bone-63-Bone-58" type="PinJoint2D" parent="Egg5/Bone-63"] +visible = false +rotation = 1.5708 +node_a = NodePath("..") +node_b = NodePath("../../Bone-58") +softness = 100.0 + +[node name="Joint2D-Bone-63-Bone-62" type="PinJoint2D" parent="Egg5/Bone-63"] +visible = false +rotation = -3.14159 +node_a = NodePath("..") +node_b = NodePath("../../Bone-62") +softness = 100.0 + +[node name="Joint2D-Bone-63-Bone-59" type="PinJoint2D" parent="Egg5/Bone-63"] +visible = false +rotation = 0.785398 +node_a = NodePath("..") +node_b = NodePath("../../Bone-59") +softness = 100.0 + +[node name="Joint2D-Bone-63-Bone-64" type="PinJoint2D" parent="Egg5/Bone-63"] +visible = false +node_a = NodePath("..") +node_b = NodePath("../../Bone-64") +softness = 100.0 + +[node name="Joint2D-Bone-63-Bone-67" type="PinJoint2D" parent="Egg5/Bone-63"] +visible = false +rotation = -2.35619 +node_a = NodePath("..") +node_b = NodePath("../../Bone-67") +softness = 100.0 + +[node name="Joint2D-Bone-63-Bone-68" type="PinJoint2D" parent="Egg5/Bone-63"] +visible = false +rotation = -1.5708 +node_a = NodePath("..") +node_b = NodePath("../../Bone-68") +softness = 100.0 + +[node name="Joint2D-Bone-63-Bone-69" type="PinJoint2D" parent="Egg5/Bone-63"] +visible = false +rotation = -0.785398 +node_a = NodePath("..") +node_b = NodePath("../../Bone-69") +softness = 100.0 + +[node name="Bone-64" type="RigidBody2D" parent="Egg5" instance=ExtResource("3_6ern4")] +position = Vector2(127, 150) +input_pickable = true +mass = 0.0942353 +physics_material_override = ExtResource("3_durpg") +script = ExtResource("11_tqnjl") +metadata/idx = 64 +metadata/bone_name = &"Bone-64" + +[node name="CircleShape2D" type="CollisionShape2D" parent="Egg5/Bone-64"] +shape = SubResource("CircleShape2D_tkaeo") + +[node name="RemoteTransform2D" type="RemoteTransform2D" parent="Egg5/Bone-64"] +visible = false +remote_path = NodePath("../../Skeleton2D/Bone-64") +update_rotation = false +update_scale = false + +[node name="Joint2D-Bone-64-Bone-58" type="PinJoint2D" parent="Egg5/Bone-64"] +visible = false +rotation = -3.92699 +node_a = NodePath("..") +node_b = NodePath("../../Bone-58") +softness = 100.0 + +[node name="Joint2D-Bone-64-Bone-59" type="PinJoint2D" parent="Egg5/Bone-64"] +visible = false +rotation = 1.5708 +node_a = NodePath("..") +node_b = NodePath("../../Bone-59") +softness = 100.0 + +[node name="Joint2D-Bone-64-Bone-63" type="PinJoint2D" parent="Egg5/Bone-64"] +visible = false +rotation = -3.14159 +node_a = NodePath("..") +node_b = NodePath("../../Bone-63") +softness = 100.0 + +[node name="Joint2D-Bone-64-Bone-60" type="PinJoint2D" parent="Egg5/Bone-64"] +visible = false +rotation = 0.785398 +node_a = NodePath("..") +node_b = NodePath("../../Bone-60") +softness = 100.0 + +[node name="Joint2D-Bone-64-Bone-65" type="PinJoint2D" parent="Egg5/Bone-64"] +visible = false +node_a = NodePath("..") +node_b = NodePath("../../Bone-65") +softness = 100.0 + +[node name="Joint2D-Bone-64-Bone-68" type="PinJoint2D" parent="Egg5/Bone-64"] +visible = false +rotation = -2.35619 +node_a = NodePath("..") +node_b = NodePath("../../Bone-68") +softness = 100.0 + +[node name="Joint2D-Bone-64-Bone-69" type="PinJoint2D" parent="Egg5/Bone-64"] +visible = false +rotation = -1.5708 +node_a = NodePath("..") +node_b = NodePath("../../Bone-69") +softness = 100.0 + +[node name="Joint2D-Bone-64-Bone-70" type="PinJoint2D" parent="Egg5/Bone-64"] +visible = false +rotation = -0.785398 +node_a = NodePath("..") +node_b = NodePath("../../Bone-70") +softness = 100.0 + +[node name="Bone-65" type="RigidBody2D" parent="Egg5" instance=ExtResource("3_6ern4")] +position = Vector2(127, 170) +input_pickable = true +mass = 0.0942353 +physics_material_override = ExtResource("3_durpg") +script = ExtResource("11_tqnjl") +metadata/idx = 65 +metadata/bone_name = &"Bone-65" + +[node name="CircleShape2D" type="CollisionShape2D" parent="Egg5/Bone-65"] +shape = SubResource("CircleShape2D_tkaeo") + +[node name="RemoteTransform2D" type="RemoteTransform2D" parent="Egg5/Bone-65"] +visible = false +remote_path = NodePath("../../Skeleton2D/Bone-65") +update_rotation = false +update_scale = false + +[node name="Joint2D-Bone-65-Bone-59" type="PinJoint2D" parent="Egg5/Bone-65"] +visible = false +rotation = -3.92699 +node_a = NodePath("..") +node_b = NodePath("../../Bone-59") +softness = 100.0 + +[node name="Joint2D-Bone-65-Bone-60" type="PinJoint2D" parent="Egg5/Bone-65"] +visible = false +rotation = 1.5708 +node_a = NodePath("..") +node_b = NodePath("../../Bone-60") +softness = 100.0 + +[node name="Joint2D-Bone-65-Bone-64" type="PinJoint2D" parent="Egg5/Bone-65"] +visible = false +rotation = -3.14159 +node_a = NodePath("..") +node_b = NodePath("../../Bone-64") +softness = 100.0 + +[node name="Joint2D-Bone-65-Bone-61" type="PinJoint2D" parent="Egg5/Bone-65"] +visible = false +rotation = 0.785398 +node_a = NodePath("..") +node_b = NodePath("../../Bone-61") +softness = 100.0 + +[node name="Joint2D-Bone-65-Bone-66" type="PinJoint2D" parent="Egg5/Bone-65"] +visible = false +node_a = NodePath("..") +node_b = NodePath("../../Bone-66") +softness = 100.0 + +[node name="Joint2D-Bone-65-Bone-69" type="PinJoint2D" parent="Egg5/Bone-65"] +visible = false +rotation = -2.35619 +node_a = NodePath("..") +node_b = NodePath("../../Bone-69") +softness = 100.0 + +[node name="Joint2D-Bone-65-Bone-70" type="PinJoint2D" parent="Egg5/Bone-65"] +visible = false +rotation = -1.5708 +node_a = NodePath("..") +node_b = NodePath("../../Bone-70") +softness = 100.0 + +[node name="Joint2D-Bone-65-Bone-71" type="PinJoint2D" parent="Egg5/Bone-65"] +visible = false +rotation = -0.785398 +node_a = NodePath("..") +node_b = NodePath("../../Bone-71") +softness = 100.0 + +[node name="Bone-66" type="RigidBody2D" parent="Egg5" instance=ExtResource("3_6ern4")] +position = Vector2(127, 190) +input_pickable = true +mass = 0.0942353 +physics_material_override = ExtResource("3_durpg") +script = ExtResource("11_tqnjl") +metadata/idx = 66 +metadata/bone_name = &"Bone-66" + +[node name="CircleShape2D" type="CollisionShape2D" parent="Egg5/Bone-66"] +shape = SubResource("CircleShape2D_tkaeo") + +[node name="RemoteTransform2D" type="RemoteTransform2D" parent="Egg5/Bone-66"] +visible = false +remote_path = NodePath("../../Skeleton2D/Bone-66") +update_rotation = false +update_scale = false + +[node name="Joint2D-Bone-66-Bone-60" type="PinJoint2D" parent="Egg5/Bone-66"] +visible = false +rotation = -3.92699 +node_a = NodePath("..") +node_b = NodePath("../../Bone-60") +softness = 100.0 + +[node name="Joint2D-Bone-66-Bone-61" type="PinJoint2D" parent="Egg5/Bone-66"] +visible = false +rotation = 1.5708 +node_a = NodePath("..") +node_b = NodePath("../../Bone-61") +softness = 100.0 + +[node name="Joint2D-Bone-66-Bone-65" type="PinJoint2D" parent="Egg5/Bone-66"] +visible = false +rotation = -3.14159 +node_a = NodePath("..") +node_b = NodePath("../../Bone-65") +softness = 100.0 + +[node name="Joint2D-Bone-66-Bone-77" type="PinJoint2D" parent="Egg5/Bone-66"] +visible = false +rotation = 0.785398 +node_a = NodePath("..") +node_b = NodePath("../../Bone-77") +softness = 100.0 + +[node name="Joint2D-Bone-66-Bone-80" type="PinJoint2D" parent="Egg5/Bone-66"] +visible = false +node_a = NodePath("..") +node_b = NodePath("../../Bone-80") +softness = 100.0 + +[node name="Joint2D-Bone-66-Bone-70" type="PinJoint2D" parent="Egg5/Bone-66"] +visible = false +rotation = -2.35619 +node_a = NodePath("..") +node_b = NodePath("../../Bone-70") +softness = 100.0 + +[node name="Joint2D-Bone-66-Bone-71" type="PinJoint2D" parent="Egg5/Bone-66"] +visible = false +rotation = -1.5708 +node_a = NodePath("..") +node_b = NodePath("../../Bone-71") +softness = 100.0 + +[node name="Joint2D-Bone-66-Bone-82" type="PinJoint2D" parent="Egg5/Bone-66"] +visible = false +rotation = -0.785398 +node_a = NodePath("..") +node_b = NodePath("../../Bone-82") +softness = 100.0 + +[node name="Bone-67" type="RigidBody2D" parent="Egg5" instance=ExtResource("3_6ern4")] +position = Vector2(147, 110) +input_pickable = true +mass = 0.0942353 +physics_material_override = ExtResource("3_durpg") +script = ExtResource("11_tqnjl") +metadata/idx = 67 +metadata/bone_name = &"Bone-67" + +[node name="CircleShape2D" type="CollisionShape2D" parent="Egg5/Bone-67"] +shape = SubResource("CircleShape2D_tkaeo") + +[node name="RemoteTransform2D" type="RemoteTransform2D" parent="Egg5/Bone-67"] +visible = false +remote_path = NodePath("../../Skeleton2D/Bone-67") +update_rotation = false +update_scale = false + +[node name="Joint2D-Bone-67-Bone-52" type="PinJoint2D" parent="Egg5/Bone-67"] +visible = false +rotation = -3.92699 +node_a = NodePath("..") +node_b = NodePath("../../Bone-52") +softness = 100.0 + +[node name="Joint2D-Bone-67-Bone-55" type="PinJoint2D" parent="Egg5/Bone-67"] +visible = false +rotation = -3.14159 +node_a = NodePath("..") +node_b = NodePath("../../Bone-55") +softness = 100.0 + +[node name="Joint2D-Bone-67-Bone-62" type="PinJoint2D" parent="Egg5/Bone-67"] +visible = false +rotation = 1.5708 +node_a = NodePath("..") +node_b = NodePath("../../Bone-62") +softness = 100.0 + +[node name="Joint2D-Bone-67-Bone-56" type="PinJoint2D" parent="Egg5/Bone-67"] +visible = false +rotation = -2.41382 +node_a = NodePath("..") +node_b = NodePath("../../Bone-56") +softness = 100.0 + +[node name="Joint2D-Bone-67-Bone-72" type="PinJoint2D" parent="Egg5/Bone-67"] +visible = false +rotation = -1.5708 +node_a = NodePath("..") +node_b = NodePath("../../Bone-72") +softness = 100.0 + +[node name="Joint2D-Bone-67-Bone-63" type="PinJoint2D" parent="Egg5/Bone-67"] +visible = false +rotation = 0.785398 +node_a = NodePath("..") +node_b = NodePath("../../Bone-63") +softness = 100.0 + +[node name="Joint2D-Bone-67-Bone-68" type="PinJoint2D" parent="Egg5/Bone-67"] +visible = false +node_a = NodePath("..") +node_b = NodePath("../../Bone-68") +softness = 100.0 + +[node name="Joint2D-Bone-67-Bone-73" type="PinJoint2D" parent="Egg5/Bone-67"] +visible = false +rotation = -0.837204 +node_a = NodePath("..") +node_b = NodePath("../../Bone-73") +softness = 100.0 + +[node name="Bone-68" type="RigidBody2D" parent="Egg5" instance=ExtResource("3_6ern4")] +position = Vector2(147, 130) +input_pickable = true +mass = 0.0942353 +physics_material_override = ExtResource("3_durpg") +script = ExtResource("11_tqnjl") +metadata/idx = 68 +metadata/bone_name = &"Bone-68" + +[node name="CircleShape2D" type="CollisionShape2D" parent="Egg5/Bone-68"] +shape = SubResource("CircleShape2D_tkaeo") + +[node name="RemoteTransform2D" type="RemoteTransform2D" parent="Egg5/Bone-68"] +visible = false +remote_path = NodePath("../../Skeleton2D/Bone-68") +update_rotation = false +update_scale = false + +[node name="Joint2D-Bone-68-Bone-62" type="PinJoint2D" parent="Egg5/Bone-68"] +visible = false +rotation = -3.92699 +node_a = NodePath("..") +node_b = NodePath("../../Bone-62") +softness = 100.0 + +[node name="Joint2D-Bone-68-Bone-63" type="PinJoint2D" parent="Egg5/Bone-68"] +visible = false +rotation = 1.5708 +node_a = NodePath("..") +node_b = NodePath("../../Bone-63") +softness = 100.0 + +[node name="Joint2D-Bone-68-Bone-67" type="PinJoint2D" parent="Egg5/Bone-68"] +visible = false +rotation = -3.14159 +node_a = NodePath("..") +node_b = NodePath("../../Bone-67") +softness = 100.0 + +[node name="Joint2D-Bone-68-Bone-64" type="PinJoint2D" parent="Egg5/Bone-68"] +visible = false +rotation = 0.785398 +node_a = NodePath("..") +node_b = NodePath("../../Bone-64") +softness = 100.0 + +[node name="Joint2D-Bone-68-Bone-69" type="PinJoint2D" parent="Egg5/Bone-68"] +visible = false +node_a = NodePath("..") +node_b = NodePath("../../Bone-69") +softness = 100.0 + +[node name="Joint2D-Bone-68-Bone-72" type="PinJoint2D" parent="Egg5/Bone-68"] +visible = false +rotation = -2.3536 +node_a = NodePath("..") +node_b = NodePath("../../Bone-72") +softness = 100.0 + +[node name="Joint2D-Bone-68-Bone-73" type="PinJoint2D" parent="Egg5/Bone-68"] +visible = false +rotation = -1.5708 +node_a = NodePath("..") +node_b = NodePath("../../Bone-73") +softness = 100.0 + +[node name="Joint2D-Bone-68-Bone-74" type="PinJoint2D" parent="Egg5/Bone-68"] +visible = false +rotation = -0.847976 +node_a = NodePath("..") +node_b = NodePath("../../Bone-74") +softness = 100.0 + +[node name="Bone-69" type="RigidBody2D" parent="Egg5" instance=ExtResource("3_6ern4")] +position = Vector2(147, 150) +input_pickable = true +mass = 0.0942353 +physics_material_override = ExtResource("3_durpg") +script = ExtResource("11_tqnjl") +metadata/idx = 69 +metadata/bone_name = &"Bone-69" + +[node name="CircleShape2D" type="CollisionShape2D" parent="Egg5/Bone-69"] +shape = SubResource("CircleShape2D_tkaeo") + +[node name="RemoteTransform2D" type="RemoteTransform2D" parent="Egg5/Bone-69"] +visible = false +remote_path = NodePath("../../Skeleton2D/Bone-69") +update_rotation = false +update_scale = false + +[node name="Joint2D-Bone-69-Bone-63" type="PinJoint2D" parent="Egg5/Bone-69"] +visible = false +rotation = -3.92699 +node_a = NodePath("..") +node_b = NodePath("../../Bone-63") +softness = 100.0 + +[node name="Joint2D-Bone-69-Bone-64" type="PinJoint2D" parent="Egg5/Bone-69"] +visible = false +rotation = 1.5708 +node_a = NodePath("..") +node_b = NodePath("../../Bone-64") +softness = 100.0 + +[node name="Joint2D-Bone-69-Bone-68" type="PinJoint2D" parent="Egg5/Bone-69"] +visible = false +rotation = -3.14159 +node_a = NodePath("..") +node_b = NodePath("../../Bone-68") +softness = 100.0 + +[node name="Joint2D-Bone-69-Bone-65" type="PinJoint2D" parent="Egg5/Bone-69"] +visible = false +rotation = 0.785398 +node_a = NodePath("..") +node_b = NodePath("../../Bone-65") +softness = 100.0 + +[node name="Joint2D-Bone-69-Bone-70" type="PinJoint2D" parent="Egg5/Bone-69"] +visible = false +node_a = NodePath("..") +node_b = NodePath("../../Bone-70") +softness = 100.0 + +[node name="Joint2D-Bone-69-Bone-73" type="PinJoint2D" parent="Egg5/Bone-69"] +visible = false +rotation = -2.30439 +node_a = NodePath("..") +node_b = NodePath("../../Bone-73") +softness = 100.0 + +[node name="Joint2D-Bone-69-Bone-74" type="PinJoint2D" parent="Egg5/Bone-69"] +visible = false +rotation = -1.5708 +node_a = NodePath("..") +node_b = NodePath("../../Bone-74") +softness = 100.0 + +[node name="Joint2D-Bone-69-Bone-75" type="PinJoint2D" parent="Egg5/Bone-69"] +visible = false +rotation = -0.855053 +node_a = NodePath("..") +node_b = NodePath("../../Bone-75") +softness = 100.0 + +[node name="Bone-70" type="RigidBody2D" parent="Egg5" instance=ExtResource("3_6ern4")] +position = Vector2(147, 170) +input_pickable = true +mass = 0.0942353 +physics_material_override = ExtResource("3_durpg") +script = ExtResource("11_tqnjl") +metadata/idx = 70 +metadata/bone_name = &"Bone-70" + +[node name="CircleShape2D" type="CollisionShape2D" parent="Egg5/Bone-70"] +shape = SubResource("CircleShape2D_tkaeo") + +[node name="RemoteTransform2D" type="RemoteTransform2D" parent="Egg5/Bone-70"] +visible = false +remote_path = NodePath("../../Skeleton2D/Bone-70") +update_rotation = false +update_scale = false + +[node name="Joint2D-Bone-70-Bone-64" type="PinJoint2D" parent="Egg5/Bone-70"] +visible = false +rotation = -3.92699 +node_a = NodePath("..") +node_b = NodePath("../../Bone-64") +softness = 100.0 + +[node name="Joint2D-Bone-70-Bone-65" type="PinJoint2D" parent="Egg5/Bone-70"] +visible = false +rotation = 1.5708 +node_a = NodePath("..") +node_b = NodePath("../../Bone-65") +softness = 100.0 + +[node name="Joint2D-Bone-70-Bone-69" type="PinJoint2D" parent="Egg5/Bone-70"] +visible = false +rotation = -3.14159 +node_a = NodePath("..") +node_b = NodePath("../../Bone-69") +softness = 100.0 + +[node name="Joint2D-Bone-70-Bone-66" type="PinJoint2D" parent="Egg5/Bone-70"] +visible = false +rotation = 0.785398 +node_a = NodePath("..") +node_b = NodePath("../../Bone-66") +softness = 100.0 + +[node name="Joint2D-Bone-70-Bone-71" type="PinJoint2D" parent="Egg5/Bone-70"] +visible = false +node_a = NodePath("..") +node_b = NodePath("../../Bone-71") +softness = 100.0 + +[node name="Joint2D-Bone-70-Bone-74" type="PinJoint2D" parent="Egg5/Bone-70"] +visible = false +rotation = -2.29362 +node_a = NodePath("..") +node_b = NodePath("../../Bone-74") +softness = 100.0 + +[node name="Joint2D-Bone-70-Bone-75" type="PinJoint2D" parent="Egg5/Bone-70"] +visible = false +rotation = -1.5708 +node_a = NodePath("..") +node_b = NodePath("../../Bone-75") +softness = 100.0 + +[node name="Joint2D-Bone-70-Bone-76" type="PinJoint2D" parent="Egg5/Bone-70"] +visible = false +rotation = -0.769557 +node_a = NodePath("..") +node_b = NodePath("../../Bone-76") +softness = 100.0 + +[node name="Bone-71" type="RigidBody2D" parent="Egg5" instance=ExtResource("3_6ern4")] +position = Vector2(147, 190) +input_pickable = true +mass = 0.0942353 +physics_material_override = ExtResource("3_durpg") +script = ExtResource("11_tqnjl") +metadata/idx = 71 +metadata/bone_name = &"Bone-71" + +[node name="CircleShape2D" type="CollisionShape2D" parent="Egg5/Bone-71"] +shape = SubResource("CircleShape2D_tkaeo") + +[node name="RemoteTransform2D" type="RemoteTransform2D" parent="Egg5/Bone-71"] +visible = false +remote_path = NodePath("../../Skeleton2D/Bone-71") +update_rotation = false +update_scale = false + +[node name="Joint2D-Bone-71-Bone-65" type="PinJoint2D" parent="Egg5/Bone-71"] +visible = false +rotation = -3.92699 +node_a = NodePath("..") +node_b = NodePath("../../Bone-65") +softness = 100.0 + +[node name="Joint2D-Bone-71-Bone-66" type="PinJoint2D" parent="Egg5/Bone-71"] +visible = false +rotation = 1.5708 +node_a = NodePath("..") +node_b = NodePath("../../Bone-66") +softness = 100.0 + +[node name="Joint2D-Bone-71-Bone-70" type="PinJoint2D" parent="Egg5/Bone-71"] +visible = false +rotation = -3.14159 +node_a = NodePath("..") +node_b = NodePath("../../Bone-70") +softness = 100.0 + +[node name="Joint2D-Bone-71-Bone-80" type="PinJoint2D" parent="Egg5/Bone-71"] +visible = false +rotation = 0.785398 +node_a = NodePath("..") +node_b = NodePath("../../Bone-80") +softness = 100.0 + +[node name="Joint2D-Bone-71-Bone-82" type="PinJoint2D" parent="Egg5/Bone-71"] +visible = false +node_a = NodePath("..") +node_b = NodePath("../../Bone-82") +softness = 100.0 + +[node name="Joint2D-Bone-71-Bone-75" type="PinJoint2D" parent="Egg5/Bone-71"] +visible = false +rotation = -2.28654 +node_a = NodePath("..") +node_b = NodePath("../../Bone-75") +softness = 100.0 + +[node name="Joint2D-Bone-71-Bone-76" type="PinJoint2D" parent="Egg5/Bone-71"] +visible = false +rotation = -1.43697 +node_a = NodePath("..") +node_b = NodePath("../../Bone-76") +softness = 100.0 + +[node name="Joint2D-Bone-71-Bone-84" type="PinJoint2D" parent="Egg5/Bone-71"] +visible = false +rotation = -0.674741 +node_a = NodePath("..") +node_b = NodePath("../../Bone-84") +softness = 100.0 + +[node name="Bone-72" type="RigidBody2D" parent="Egg5" instance=ExtResource("3_6ern4")] +position = Vector2(167.104, 110) +input_pickable = true +mass = 0.0942353 +physics_material_override = ExtResource("3_durpg") +script = ExtResource("11_tqnjl") +metadata/idx = 72 +metadata/bone_name = &"Bone-72" + +[node name="CircleShape2D" type="CollisionShape2D" parent="Egg5/Bone-72"] +shape = SubResource("CircleShape2D_tkaeo") + +[node name="RemoteTransform2D" type="RemoteTransform2D" parent="Egg5/Bone-72"] +visible = false +remote_path = NodePath("../../Skeleton2D/Bone-72") +update_rotation = false +update_scale = false + +[node name="Joint2D-Bone-72-Bone-73" type="PinJoint2D" parent="Egg5/Bone-72"] +visible = false +rotation = -0.103793 +node_a = NodePath("..") +node_b = NodePath("../../Bone-73") +softness = 100.0 + +[node name="Joint2D-Bone-72-Bone-55" type="PinJoint2D" parent="Egg5/Bone-72"] +visible = false +rotation = -3.92959 +node_a = NodePath("..") +node_b = NodePath("../../Bone-55") +softness = 100.0 + +[node name="Joint2D-Bone-72-Bone-56" type="PinJoint2D" parent="Egg5/Bone-72"] +visible = false +rotation = -3.2554 +node_a = NodePath("..") +node_b = NodePath("../../Bone-56") +softness = 100.0 + +[node name="Joint2D-Bone-72-Bone-67" type="PinJoint2D" parent="Egg5/Bone-72"] +visible = false +rotation = 1.5708 +node_a = NodePath("..") +node_b = NodePath("../../Bone-67") +softness = 100.0 + +[node name="Joint2D-Bone-72-Bone-68" type="PinJoint2D" parent="Egg5/Bone-72"] +visible = false +rotation = 0.787995 +node_a = NodePath("..") +node_b = NodePath("../../Bone-68") +softness = 100.0 + +[node name="Bone-73" type="RigidBody2D" parent="Egg5" instance=ExtResource("3_6ern4")] +position = Vector2(169.188, 130) +input_pickable = true +mass = 0.0942353 +physics_material_override = ExtResource("3_durpg") +script = ExtResource("11_tqnjl") +metadata/idx = 73 +metadata/bone_name = &"Bone-73" + +[node name="CircleShape2D" type="CollisionShape2D" parent="Egg5/Bone-73"] +shape = SubResource("CircleShape2D_tkaeo") + +[node name="RemoteTransform2D" type="RemoteTransform2D" parent="Egg5/Bone-73"] +visible = false +remote_path = NodePath("../../Skeleton2D/Bone-73") +update_rotation = false +update_scale = false + +[node name="Joint2D-Bone-73-Bone-72" type="PinJoint2D" parent="Egg5/Bone-73"] +visible = false +rotation = -3.24539 +node_a = NodePath("..") +node_b = NodePath("../../Bone-72") +softness = 100.0 + +[node name="Joint2D-Bone-73-Bone-67" type="PinJoint2D" parent="Egg5/Bone-73"] +visible = false +rotation = -3.9788 +node_a = NodePath("..") +node_b = NodePath("../../Bone-67") +softness = 100.0 + +[node name="Joint2D-Bone-73-Bone-68" type="PinJoint2D" parent="Egg5/Bone-73"] +visible = false +rotation = 1.5708 +node_a = NodePath("..") +node_b = NodePath("../../Bone-68") +softness = 100.0 + +[node name="Joint2D-Bone-73-Bone-69" type="PinJoint2D" parent="Egg5/Bone-73"] +visible = false +rotation = 0.837204 +node_a = NodePath("..") +node_b = NodePath("../../Bone-69") +softness = 100.0 + +[node name="Joint2D-Bone-73-Bone-74" type="PinJoint2D" parent="Egg5/Bone-73"] +visible = false +rotation = -0.0243161 +node_a = NodePath("..") +node_b = NodePath("../../Bone-74") +softness = 100.0 + +[node name="Bone-74" type="RigidBody2D" parent="Egg5" instance=ExtResource("3_6ern4")] +position = Vector2(169.674, 150) +input_pickable = true +mass = 0.0942353 +physics_material_override = ExtResource("3_durpg") +script = ExtResource("11_tqnjl") +metadata/idx = 74 +metadata/bone_name = &"Bone-74" + +[node name="CircleShape2D" type="CollisionShape2D" parent="Egg5/Bone-74"] +shape = SubResource("CircleShape2D_tkaeo") + +[node name="RemoteTransform2D" type="RemoteTransform2D" parent="Egg5/Bone-74"] +visible = false +remote_path = NodePath("../../Skeleton2D/Bone-74") +update_rotation = false +update_scale = false + +[node name="Joint2D-Bone-74-Bone-68" type="PinJoint2D" parent="Egg5/Bone-74"] +visible = false +rotation = -3.98957 +node_a = NodePath("..") +node_b = NodePath("../../Bone-68") +softness = 100.0 + +[node name="Joint2D-Bone-74-Bone-69" type="PinJoint2D" parent="Egg5/Bone-74"] +visible = false +rotation = 1.5708 +node_a = NodePath("..") +node_b = NodePath("../../Bone-69") +softness = 100.0 + +[node name="Joint2D-Bone-74-Bone-73" type="PinJoint2D" parent="Egg5/Bone-74"] +visible = false +rotation = -3.16591 +node_a = NodePath("..") +node_b = NodePath("../../Bone-73") +softness = 100.0 + +[node name="Joint2D-Bone-74-Bone-70" type="PinJoint2D" parent="Egg5/Bone-74"] +visible = false +rotation = 0.847976 +node_a = NodePath("..") +node_b = NodePath("../../Bone-70") +softness = 100.0 + +[node name="Joint2D-Bone-74-Bone-75" type="PinJoint2D" parent="Egg5/Bone-74"] +visible = false +rotation = -0.0163025 +node_a = NodePath("..") +node_b = NodePath("../../Bone-75") +softness = 100.0 + +[node name="Bone-75" type="RigidBody2D" parent="Egg5" instance=ExtResource("3_6ern4")] +position = Vector2(170, 170) +input_pickable = true +mass = 0.0942353 +physics_material_override = ExtResource("3_durpg") +script = ExtResource("11_tqnjl") +metadata/idx = 75 +metadata/bone_name = &"Bone-75" + +[node name="CircleShape2D" type="CollisionShape2D" parent="Egg5/Bone-75"] +shape = SubResource("CircleShape2D_tkaeo") + +[node name="RemoteTransform2D" type="RemoteTransform2D" parent="Egg5/Bone-75"] +visible = false +remote_path = NodePath("../../Skeleton2D/Bone-75") +update_rotation = false +update_scale = false + +[node name="Joint2D-Bone-75-Bone-69" type="PinJoint2D" parent="Egg5/Bone-75"] +visible = false +rotation = -3.99665 +node_a = NodePath("..") +node_b = NodePath("../../Bone-69") +softness = 100.0 + +[node name="Joint2D-Bone-75-Bone-70" type="PinJoint2D" parent="Egg5/Bone-75"] +visible = false +rotation = 1.5708 +node_a = NodePath("..") +node_b = NodePath("../../Bone-70") +softness = 100.0 + +[node name="Joint2D-Bone-75-Bone-74" type="PinJoint2D" parent="Egg5/Bone-75"] +visible = false +rotation = -3.1579 +node_a = NodePath("..") +node_b = NodePath("../../Bone-74") +softness = 100.0 + +[node name="Joint2D-Bone-75-Bone-71" type="PinJoint2D" parent="Egg5/Bone-75"] +visible = false +rotation = 0.855053 +node_a = NodePath("..") +node_b = NodePath("../../Bone-71") +softness = 100.0 + +[node name="Joint2D-Bone-75-Bone-76" type="PinJoint2D" parent="Egg5/Bone-75"] +visible = false +rotation = 0.0311809 +node_a = NodePath("..") +node_b = NodePath("../../Bone-76") +softness = 100.0 + +[node name="Bone-76" type="RigidBody2D" parent="Egg5" instance=ExtResource("3_6ern4")] +position = Vector2(169.283, 193) +input_pickable = true +mass = 0.0942353 +physics_material_override = ExtResource("3_durpg") +script = ExtResource("11_tqnjl") +metadata/idx = 76 +metadata/bone_name = &"Bone-76" + +[node name="CircleShape2D" type="CollisionShape2D" parent="Egg5/Bone-76"] +shape = SubResource("CircleShape2D_tkaeo") + +[node name="RemoteTransform2D" type="RemoteTransform2D" parent="Egg5/Bone-76"] +visible = false +remote_path = NodePath("../../Skeleton2D/Bone-76") +update_rotation = false +update_scale = false + +[node name="Joint2D-Bone-76-Bone-84" type="PinJoint2D" parent="Egg5/Bone-76"] +visible = false +rotation = 0.103385 +node_a = NodePath("..") +node_b = NodePath("../../Bone-84") +softness = 100.0 + +[node name="Joint2D-Bone-76-Bone-70" type="PinJoint2D" parent="Egg5/Bone-76"] +visible = false +rotation = -3.91115 +node_a = NodePath("..") +node_b = NodePath("../../Bone-70") +softness = 100.0 + +[node name="Joint2D-Bone-76-Bone-71" type="PinJoint2D" parent="Egg5/Bone-76"] +visible = false +rotation = -4.57856 +node_a = NodePath("..") +node_b = NodePath("../../Bone-71") +softness = 100.0 + +[node name="Joint2D-Bone-76-Bone-75" type="PinJoint2D" parent="Egg5/Bone-76"] +visible = false +rotation = -3.11041 +node_a = NodePath("..") +node_b = NodePath("../../Bone-75") +softness = 100.0 + +[node name="Joint2D-Bone-76-Bone-82" type="PinJoint2D" parent="Egg5/Bone-76"] +visible = false +rotation = 0.919073 +node_a = NodePath("..") +node_b = NodePath("../../Bone-82") +softness = 100.0 + +[node name="Bone-77" type="RigidBody2D" parent="Egg5" instance=ExtResource("3_6ern4")] +position = Vector2(107, 210) +input_pickable = true +mass = 0.0942353 +physics_material_override = ExtResource("3_durpg") +script = ExtResource("11_tqnjl") +metadata/idx = 77 +metadata/bone_name = &"Bone-77" + +[node name="CircleShape2D" type="CollisionShape2D" parent="Egg5/Bone-77"] +shape = SubResource("CircleShape2D_tkaeo") + +[node name="RemoteTransform2D" type="RemoteTransform2D" parent="Egg5/Bone-77"] +visible = false +remote_path = NodePath("../../Skeleton2D/Bone-77") +update_rotation = false +update_scale = false + +[node name="Joint2D-Bone-77-Bone-36" type="PinJoint2D" parent="Egg5/Bone-77"] +visible = false +rotation = -3.92699 +node_a = NodePath("..") +node_b = NodePath("../../Bone-36") +softness = 100.0 + +[node name="Joint2D-Bone-77-Bone-42" type="PinJoint2D" parent="Egg5/Bone-77"] +visible = false +rotation = 1.5708 +node_a = NodePath("..") +node_b = NodePath("../../Bone-42") +softness = 100.0 + +[node name="Joint2D-Bone-77-Bone-61" type="PinJoint2D" parent="Egg5/Bone-77"] +visible = false +rotation = -3.14159 +node_a = NodePath("..") +node_b = NodePath("../../Bone-61") +softness = 100.0 + +[node name="Joint2D-Bone-77-Bone-43" type="PinJoint2D" parent="Egg5/Bone-77"] +visible = false +rotation = 0.785398 +node_a = NodePath("..") +node_b = NodePath("../../Bone-43") +softness = 100.0 + +[node name="Joint2D-Bone-77-Bone-78" type="PinJoint2D" parent="Egg5/Bone-77"] +visible = false +node_a = NodePath("..") +node_b = NodePath("../../Bone-78") +softness = 100.0 + +[node name="Joint2D-Bone-77-Bone-66" type="PinJoint2D" parent="Egg5/Bone-77"] +visible = false +rotation = -2.35619 +node_a = NodePath("..") +node_b = NodePath("../../Bone-66") +softness = 100.0 + +[node name="Joint2D-Bone-77-Bone-80" type="PinJoint2D" parent="Egg5/Bone-77"] +visible = false +rotation = -1.5708 +node_a = NodePath("..") +node_b = NodePath("../../Bone-80") +softness = 100.0 + +[node name="Joint2D-Bone-77-Bone-81" type="PinJoint2D" parent="Egg5/Bone-77"] +visible = false +rotation = -0.737109 +node_a = NodePath("..") +node_b = NodePath("../../Bone-81") +softness = 100.0 + +[node name="Bone-78" type="RigidBody2D" parent="Egg5" instance=ExtResource("3_6ern4")] +position = Vector2(107, 230) +input_pickable = true +mass = 0.0942353 +physics_material_override = ExtResource("3_durpg") +script = ExtResource("11_tqnjl") +metadata/idx = 78 +metadata/bone_name = &"Bone-78" + +[node name="CircleShape2D" type="CollisionShape2D" parent="Egg5/Bone-78"] +shape = SubResource("CircleShape2D_tkaeo") + +[node name="RemoteTransform2D" type="RemoteTransform2D" parent="Egg5/Bone-78"] +visible = false +remote_path = NodePath("../../Skeleton2D/Bone-78") +update_rotation = false +update_scale = false + +[node name="Joint2D-Bone-78-Bone-42" type="PinJoint2D" parent="Egg5/Bone-78"] +visible = false +rotation = -3.92699 +node_a = NodePath("..") +node_b = NodePath("../../Bone-42") +softness = 100.0 + +[node name="Joint2D-Bone-78-Bone-43" type="PinJoint2D" parent="Egg5/Bone-78"] +visible = false +rotation = 1.5708 +node_a = NodePath("..") +node_b = NodePath("../../Bone-43") +softness = 100.0 + +[node name="Joint2D-Bone-78-Bone-77" type="PinJoint2D" parent="Egg5/Bone-78"] +visible = false +rotation = -3.14159 +node_a = NodePath("..") +node_b = NodePath("../../Bone-77") +softness = 100.0 + +[node name="Joint2D-Bone-78-Bone-44" type="PinJoint2D" parent="Egg5/Bone-78"] +visible = false +rotation = 0.943488 +node_a = NodePath("..") +node_b = NodePath("../../Bone-44") +softness = 100.0 + +[node name="Joint2D-Bone-78-Bone-79" type="PinJoint2D" parent="Egg5/Bone-78"] +visible = false +node_a = NodePath("..") +node_b = NodePath("../../Bone-79") +softness = 100.0 + +[node name="Joint2D-Bone-78-Bone-80" type="PinJoint2D" parent="Egg5/Bone-78"] +visible = false +rotation = -2.35619 +node_a = NodePath("..") +node_b = NodePath("../../Bone-80") +softness = 100.0 + +[node name="Joint2D-Bone-78-Bone-81" type="PinJoint2D" parent="Egg5/Bone-78"] +visible = false +rotation = -1.40818 +node_a = NodePath("..") +node_b = NodePath("../../Bone-81") +softness = 100.0 + +[node name="Bone-79" type="RigidBody2D" parent="Egg5" instance=ExtResource("3_6ern4")] +position = Vector2(107, 244.5) +input_pickable = true +mass = 0.0942353 +physics_material_override = ExtResource("3_durpg") +script = ExtResource("11_tqnjl") +metadata/idx = 79 +metadata/bone_name = &"Bone-79" + +[node name="CircleShape2D" type="CollisionShape2D" parent="Egg5/Bone-79"] +shape = SubResource("CircleShape2D_tkaeo") + +[node name="RemoteTransform2D" type="RemoteTransform2D" parent="Egg5/Bone-79"] +visible = false +remote_path = NodePath("../../Skeleton2D/Bone-79") +update_rotation = false +update_scale = false + +[node name="Joint2D-Bone-79-Bone-43" type="PinJoint2D" parent="Egg5/Bone-79"] +visible = false +rotation = -4.08508 +node_a = NodePath("..") +node_b = NodePath("../../Bone-43") +softness = 100.0 + +[node name="Joint2D-Bone-79-Bone-44" type="PinJoint2D" parent="Egg5/Bone-79"] +visible = false +rotation = 1.5708 +node_a = NodePath("..") +node_b = NodePath("../../Bone-44") +softness = 100.0 + +[node name="Joint2D-Bone-79-Bone-78" type="PinJoint2D" parent="Egg5/Bone-79"] +visible = false +rotation = -3.14159 +node_a = NodePath("..") +node_b = NodePath("../../Bone-78") +softness = 100.0 + +[node name="Joint2D-Bone-79-Bone-81" type="PinJoint2D" parent="Egg5/Bone-79"] +visible = false +rotation = -2.04687 +node_a = NodePath("..") +node_b = NodePath("../../Bone-81") +softness = 100.0 + +[node name="Bone-80" type="RigidBody2D" parent="Egg5" instance=ExtResource("3_6ern4")] +position = Vector2(127, 210) +input_pickable = true +mass = 0.0942353 +physics_material_override = ExtResource("3_durpg") +script = ExtResource("11_tqnjl") +metadata/idx = 80 +metadata/bone_name = &"Bone-80" + +[node name="CircleShape2D" type="CollisionShape2D" parent="Egg5/Bone-80"] +shape = SubResource("CircleShape2D_tkaeo") + +[node name="RemoteTransform2D" type="RemoteTransform2D" parent="Egg5/Bone-80"] +visible = false +remote_path = NodePath("../../Skeleton2D/Bone-80") +update_rotation = false +update_scale = false + +[node name="Joint2D-Bone-80-Bone-61" type="PinJoint2D" parent="Egg5/Bone-80"] +visible = false +rotation = -3.92699 +node_a = NodePath("..") +node_b = NodePath("../../Bone-61") +softness = 100.0 + +[node name="Joint2D-Bone-80-Bone-66" type="PinJoint2D" parent="Egg5/Bone-80"] +visible = false +rotation = -3.14159 +node_a = NodePath("..") +node_b = NodePath("../../Bone-66") +softness = 100.0 + +[node name="Joint2D-Bone-80-Bone-77" type="PinJoint2D" parent="Egg5/Bone-80"] +visible = false +rotation = 1.5708 +node_a = NodePath("..") +node_b = NodePath("../../Bone-77") +softness = 100.0 + +[node name="Joint2D-Bone-80-Bone-71" type="PinJoint2D" parent="Egg5/Bone-80"] +visible = false +rotation = -2.35619 +node_a = NodePath("..") +node_b = NodePath("../../Bone-71") +softness = 100.0 + +[node name="Joint2D-Bone-80-Bone-82" type="PinJoint2D" parent="Egg5/Bone-80"] +visible = false +rotation = -1.5708 +node_a = NodePath("..") +node_b = NodePath("../../Bone-82") +softness = 100.0 + +[node name="Joint2D-Bone-80-Bone-78" type="PinJoint2D" parent="Egg5/Bone-80"] +visible = false +rotation = 0.785398 +node_a = NodePath("..") +node_b = NodePath("../../Bone-78") +softness = 100.0 + +[node name="Joint2D-Bone-80-Bone-81" type="PinJoint2D" parent="Egg5/Bone-80"] +visible = false +rotation = -0.0566773 +node_a = NodePath("..") +node_b = NodePath("../../Bone-81") +softness = 100.0 + +[node name="Joint2D-Bone-80-Bone-83" type="PinJoint2D" parent="Egg5/Bone-80"] +visible = false +rotation = -0.785398 +node_a = NodePath("..") +node_b = NodePath("../../Bone-83") +softness = 100.0 + +[node name="Bone-81" type="RigidBody2D" parent="Egg5" instance=ExtResource("3_6ern4")] +position = Vector2(128.333, 233.5) +input_pickable = true +mass = 0.0942353 +physics_material_override = ExtResource("3_durpg") +script = ExtResource("11_tqnjl") +metadata/idx = 81 +metadata/bone_name = &"Bone-81" + +[node name="CircleShape2D" type="CollisionShape2D" parent="Egg5/Bone-81"] +shape = SubResource("CircleShape2D_tkaeo") + +[node name="RemoteTransform2D" type="RemoteTransform2D" parent="Egg5/Bone-81"] +visible = false +remote_path = NodePath("../../Skeleton2D/Bone-81") +update_rotation = false +update_scale = false + +[node name="Joint2D-Bone-81-Bone-77" type="PinJoint2D" parent="Egg5/Bone-81"] +visible = false +rotation = -3.8787 +node_a = NodePath("..") +node_b = NodePath("../../Bone-77") +softness = 100.0 + +[node name="Joint2D-Bone-81-Bone-78" type="PinJoint2D" parent="Egg5/Bone-81"] +visible = false +rotation = -4.54978 +node_a = NodePath("..") +node_b = NodePath("../../Bone-78") +softness = 100.0 + +[node name="Joint2D-Bone-81-Bone-80" type="PinJoint2D" parent="Egg5/Bone-81"] +visible = false +rotation = -3.19827 +node_a = NodePath("..") +node_b = NodePath("../../Bone-80") +softness = 100.0 + +[node name="Joint2D-Bone-81-Bone-79" type="PinJoint2D" parent="Egg5/Bone-81"] +visible = false +rotation = 1.09473 +node_a = NodePath("..") +node_b = NodePath("../../Bone-79") +softness = 100.0 + +[node name="Joint2D-Bone-81-Bone-82" type="PinJoint2D" parent="Egg5/Bone-81"] +visible = false +rotation = -2.47032 +node_a = NodePath("..") +node_b = NodePath("../../Bone-82") +softness = 100.0 + +[node name="Joint2D-Bone-81-Bone-83" type="PinJoint2D" parent="Egg5/Bone-81"] +visible = false +rotation = -1.75614 +node_a = NodePath("..") +node_b = NodePath("../../Bone-83") +softness = 100.0 + +[node name="Bone-82" type="RigidBody2D" parent="Egg5" instance=ExtResource("3_6ern4")] +position = Vector2(147, 210) +input_pickable = true +mass = 0.0942353 +physics_material_override = ExtResource("3_durpg") +script = ExtResource("11_tqnjl") +metadata/idx = 82 +metadata/bone_name = &"Bone-82" + +[node name="CircleShape2D" type="CollisionShape2D" parent="Egg5/Bone-82"] +shape = SubResource("CircleShape2D_tkaeo") + +[node name="RemoteTransform2D" type="RemoteTransform2D" parent="Egg5/Bone-82"] +visible = false +remote_path = NodePath("../../Skeleton2D/Bone-82") +update_rotation = false +update_scale = false + +[node name="Joint2D-Bone-82-Bone-66" type="PinJoint2D" parent="Egg5/Bone-82"] +visible = false +rotation = -3.92699 +node_a = NodePath("..") +node_b = NodePath("../../Bone-66") +softness = 100.0 + +[node name="Joint2D-Bone-82-Bone-71" type="PinJoint2D" parent="Egg5/Bone-82"] +visible = false +rotation = -3.14159 +node_a = NodePath("..") +node_b = NodePath("../../Bone-71") +softness = 100.0 + +[node name="Joint2D-Bone-82-Bone-80" type="PinJoint2D" parent="Egg5/Bone-82"] +visible = false +rotation = 1.5708 +node_a = NodePath("..") +node_b = NodePath("../../Bone-80") +softness = 100.0 + +[node name="Joint2D-Bone-82-Bone-76" type="PinJoint2D" parent="Egg5/Bone-82"] +visible = false +rotation = -2.22252 +node_a = NodePath("..") +node_b = NodePath("../../Bone-76") +softness = 100.0 + +[node name="Joint2D-Bone-82-Bone-84" type="PinJoint2D" parent="Egg5/Bone-82"] +visible = false +rotation = -1.32582 +node_a = NodePath("..") +node_b = NodePath("../../Bone-84") +softness = 100.0 + +[node name="Joint2D-Bone-82-Bone-81" type="PinJoint2D" parent="Egg5/Bone-82"] +visible = false +rotation = 0.671272 +node_a = NodePath("..") +node_b = NodePath("../../Bone-81") +softness = 100.0 + +[node name="Joint2D-Bone-82-Bone-83" type="PinJoint2D" parent="Egg5/Bone-82"] +visible = false +node_a = NodePath("..") +node_b = NodePath("../../Bone-83") +softness = 100.0 + +[node name="Bone-83" type="RigidBody2D" parent="Egg5" instance=ExtResource("3_6ern4")] +position = Vector2(147, 230) +input_pickable = true +mass = 0.0942353 +physics_material_override = ExtResource("3_durpg") +script = ExtResource("11_tqnjl") +metadata/idx = 83 +metadata/bone_name = &"Bone-83" + +[node name="CircleShape2D" type="CollisionShape2D" parent="Egg5/Bone-83"] +shape = SubResource("CircleShape2D_tkaeo") + +[node name="RemoteTransform2D" type="RemoteTransform2D" parent="Egg5/Bone-83"] +visible = false +remote_path = NodePath("../../Skeleton2D/Bone-83") +update_rotation = false +update_scale = false + +[node name="Joint2D-Bone-83-Bone-84" type="PinJoint2D" parent="Egg5/Bone-83"] +visible = false +rotation = -2.2143 +node_a = NodePath("..") +node_b = NodePath("../../Bone-84") +softness = 100.0 + +[node name="Joint2D-Bone-83-Bone-80" type="PinJoint2D" parent="Egg5/Bone-83"] +visible = false +rotation = -3.92699 +node_a = NodePath("..") +node_b = NodePath("../../Bone-80") +softness = 100.0 + +[node name="Joint2D-Bone-83-Bone-81" type="PinJoint2D" parent="Egg5/Bone-83"] +visible = false +rotation = 1.38545 +node_a = NodePath("..") +node_b = NodePath("../../Bone-81") +softness = 100.0 + +[node name="Joint2D-Bone-83-Bone-82" type="PinJoint2D" parent="Egg5/Bone-83"] +visible = false +rotation = -3.14159 +node_a = NodePath("..") +node_b = NodePath("../../Bone-82") +softness = 100.0 + +[node name="Bone-84" type="RigidBody2D" parent="Egg5" instance=ExtResource("3_6ern4")] +position = Vector2(167, 215) +input_pickable = true +mass = 0.0942353 +physics_material_override = ExtResource("3_durpg") +script = ExtResource("11_tqnjl") +metadata/idx = 84 +metadata/bone_name = &"Bone-84" + +[node name="CircleShape2D" type="CollisionShape2D" parent="Egg5/Bone-84"] +shape = SubResource("CircleShape2D_tkaeo") + +[node name="RemoteTransform2D" type="RemoteTransform2D" parent="Egg5/Bone-84"] +visible = false +remote_path = NodePath("../../Skeleton2D/Bone-84") +update_rotation = false +update_scale = false + +[node name="Joint2D-Bone-84-Bone-83" type="PinJoint2D" parent="Egg5/Bone-84"] +visible = false +rotation = 0.927295 +node_a = NodePath("..") +node_b = NodePath("../../Bone-83") +softness = 100.0 + +[node name="Joint2D-Bone-84-Bone-76" type="PinJoint2D" parent="Egg5/Bone-84"] +visible = false +rotation = -3.03821 +node_a = NodePath("..") +node_b = NodePath("../../Bone-76") +softness = 100.0 + +[node name="Joint2D-Bone-84-Bone-71" type="PinJoint2D" parent="Egg5/Bone-84"] +visible = false +rotation = -3.81633 +node_a = NodePath("..") +node_b = NodePath("../../Bone-71") +softness = 100.0 + +[node name="Joint2D-Bone-84-Bone-82" type="PinJoint2D" parent="Egg5/Bone-84"] +visible = false +rotation = -4.46741 +node_a = NodePath("..") +node_b = NodePath("../../Bone-82") +softness = 100.0 + +[node name="Asparagus5" type="Polygon2D" parent="."] +z_index = 5 +position = Vector2(893, -372) +rotation = -1.70473 +texture = ExtResource("1_bb0nr") +skeleton = NodePath("Skeleton2D") +polygon = PackedVector2Array(23, 18, 22, 18, 22, 29, 20, 29, 18, 29, 14, 35, 13, 35, 12, 39, 11, 39, 11, 47, 14, 52, 15, 52, 15, 55, 13, 56, 13, 66, 11, 68, 11, 76, 13, 78, 13, 80, 17, 83, 17, 86, 16, 87, 15, 87, 15, 90, 14, 91, 13, 91, 10, 97, 9, 97, 9, 104, 11, 106, 11, 110, 14, 113, 15, 113, 15, 115, 16, 115, 15, 128, 14, 128, 14, 137, 16, 142, 16, 146, 15, 146, 15, 154, 14, 155, 13, 155, 13, 160, 11, 162, 11, 168, 12, 170, 13, 170, 14, 175, 15, 175, 14, 205, 14, 210, 15, 214, 16, 214, 16, 222, 17, 222, 17, 248, 18, 250, 19, 250, 19, 259, 21, 266, 22, 266, 22, 279, 23, 279, 23, 342, 23, 370, 27, 382, 27, 387, 31, 391, 31, 393, 34, 393, 34, 394, 39, 393, 48, 393, 49, 391, 51, 391, 54, 387, 56, 387, 59, 375, 60, 375, 60, 343, 60, 305, 57, 265, 57, 252, 53, 215, 52, 215, 52, 209, 54, 206, 54, 202, 48, 185, 47, 185, 48, 176, 48, 159, 45, 148, 44, 148, 50, 136, 51, 136, 51, 127, 50, 124, 49, 124, 49, 118, 46, 109, 45, 109, 46, 99, 47, 99, 47, 90, 45, 86, 44, 86, 45, 80, 45, 73, 49, 67, 49, 57, 40, 41, 39, 41, 40, 39, 40, 32, 36, 26, 36, 24, 34, 23, 34, 22, 33, 23, 32, 23, 23, 11, 24, 56, 13, 56, 15, 55, 15, 52, 14, 52, 11, 47, 11, 41, 24, 41, 24, 41, 11, 41, 11, 39, 12, 39, 13, 35, 14, 35, 18, 29, 22, 29, 22, 26, 24, 26, 24, 12.3333, 24, 26, 22, 26, 22, 18, 23, 18, 23, 11, 32, 23, 33, 23, 34, 22, 34, 23, 36, 24, 36, 26, 24, 26, 24, 12.3333, 24, 86, 17, 86, 17, 83, 13, 80, 13, 78, 11, 76, 11, 71, 24, 71, 24, 71, 11, 71, 11, 68, 13, 66, 13, 56, 24, 56, 24, 116, 15.9231, 116, 16, 115, 15, 115, 15, 113, 14, 113, 11, 110, 11, 106, 9, 104, 9, 101, 24, 101, 24, 101, 9, 101, 9, 97, 10, 97, 13, 91, 14, 91, 15, 90, 15, 87, 16, 87, 17, 86, 24, 86, 39, 30.5, 39, 41, 24, 41, 24, 26, 36, 26, 48.4375, 56, 39, 56, 39, 41, 40, 41, 39, 56, 24, 56, 24, 41, 39, 41, 40, 32, 40, 39, 39, 41, 39, 30.5, 39, 71, 24, 71, 24, 56, 39, 56, 45, 73, 45, 80, 44, 86, 39, 86, 39, 71, 46.3333, 71, 39, 86, 24, 86, 24, 71, 39, 71, 49, 57, 49, 67, 46.3333, 71, 39, 71, 39, 56, 48.4375, 56, 39, 101, 24, 101, 24, 86, 39, 86, 45, 109, 46, 109, 48.3333, 116, 39, 116, 39, 101, 45.8, 101, 39, 116, 24, 116, 24, 101, 39, 101, 47, 90, 47, 99, 46, 99, 45.8, 101, 39, 101, 39, 86, 45, 86, 39, 131, 24, 131, 24, 116, 39, 116, 51, 136, 50, 136, 45, 146, 39, 146, 39, 131, 51, 131, 39, 146, 24, 146, 24, 131, 39, 131, 49, 118, 49, 124, 50, 124, 51, 127, 51, 131, 39, 131, 39, 116, 48.3333, 116, 24, 146, 16, 146, 16, 142, 14, 137, 14, 131, 24, 131, 24, 131, 14, 131, 14, 128, 15, 128, 15.9231, 116, 24, 116, 24, 176, 14.9667, 176, 15, 175, 14, 175, 13, 170, 12, 170, 11, 168, 11, 162, 12, 161, 24, 161, 24, 161, 12, 161, 13, 160, 13, 155, 14, 155, 15, 154, 15, 146, 24, 146, 24, 206, 14, 206, 14, 205, 14.4667, 191, 24, 191, 24, 191, 14.4667, 191, 14.9667, 176, 24, 176, 39, 161, 24, 161, 24, 146, 39, 146, 48, 176, 39, 176, 39, 161, 48, 161, 39, 176, 24, 176, 24, 161, 39, 161, 44, 148, 45, 148, 48, 159, 48, 161, 39, 161, 39, 146, 45, 146, 39, 191, 24, 191, 24, 176, 39, 176, 54, 202, 54, 206, 39, 206, 39, 191, 50.1176, 191, 39, 206, 24, 206, 24, 191, 39, 191, 47, 185, 48, 185, 50.1176, 191, 39, 191, 39, 176, 48, 176, 39, 221, 24, 221, 24, 206, 39, 206, 54, 224.25, 54, 236, 39, 236, 39, 221, 53.6487, 221, 39, 236, 24, 236, 24, 221, 39, 221, 52, 209, 52, 215, 53, 215, 53.6487, 221, 39, 221, 39, 206, 54, 206, 24, 236, 17, 236, 17, 222, 16, 222, 16, 221, 24, 221, 24, 221, 16, 221, 16, 214, 15, 214, 14, 210, 14, 206, 24, 206, 55.2703, 236, 54, 236, 54, 224.25, 39, 251, 24, 251, 24, 236, 39, 236, 54, 266, 39, 266, 39, 251, 54, 251, 39, 266, 24, 266, 24, 251, 39, 251, 54, 251, 39, 251, 39, 236, 54, 236, 24, 266, 21, 266, 19, 259, 19, 251, 24, 251, 24, 251, 19, 251, 19, 250, 18, 250, 17, 248, 17, 236, 24, 236, 56.8919, 251, 54, 251, 54, 236, 55.2703, 236, 57, 252, 57, 265, 57.075, 266, 54, 266, 54, 251, 56.8919, 251, 39, 281, 24, 281, 24, 266, 39, 266, 54, 296, 39, 296, 39, 281, 54, 281, 39, 296, 24, 296, 24, 281, 39, 281, 54, 281, 39, 281, 39, 266, 54, 266, 24, 296, 23, 296, 23, 281, 24, 281, 24, 281, 23, 281, 23, 279, 22, 279, 22, 266, 24, 266, 58.2, 281, 54, 281, 54, 266, 57.075, 266, 59.325, 296, 54, 296, 54, 281, 58.2, 281, 39, 311, 24, 311, 24, 296, 39, 296, 54, 326, 39, 326, 39, 311, 54, 311, 39, 326, 24, 326, 24, 311, 39, 311, 54, 311, 39, 311, 39, 296, 54, 296, 24, 326, 23, 326, 23, 311, 24, 311, 24, 311, 23, 311, 23, 296, 24, 296, 60, 305, 60, 311, 54, 311, 54, 296, 59.325, 296, 60, 326, 54, 326, 54, 311, 60, 311, 39, 341, 24, 341, 24, 326, 39, 326, 54, 356, 39, 356, 39, 341, 54, 341, 39, 356, 24, 356, 24, 341, 39, 341, 54, 341, 39, 341, 39, 326, 54, 326, 24, 356, 23, 356, 23, 341, 24, 341, 24, 341, 23, 341, 23, 326, 24, 326, 60, 341, 54, 341, 54, 326, 60, 326, 60, 356, 54, 356, 54, 341, 60, 341, 39, 371, 24, 371, 24, 356, 39, 356, 54, 386, 39, 386, 39, 371, 54, 371, 39, 386, 27, 386, 27, 382, 24, 373, 24, 371, 39, 371, 54, 371, 39, 371, 39, 356, 54, 356, 24, 373, 23.3333, 371, 24, 371, 24, 371, 23.3333, 371, 23, 370, 23, 356, 24, 356, 39, 393, 34, 394, 34, 393, 31, 393, 31, 391, 27, 387, 27, 386, 39, 386, 54, 387, 51, 391, 49, 391, 48, 393, 39, 393, 39, 386, 54, 386, 60, 371, 54, 371, 54, 356, 60, 356, 60, 375, 59, 375, 56.25, 386, 54, 386, 54, 371, 60, 371, 56, 387, 54, 387, 54, 386, 56.25, 386) +polygons = [PackedInt32Array(124, 125, 126), PackedInt32Array(127, 128, 129), PackedInt32Array(129, 130, 131), PackedInt32Array(131, 124, 126), PackedInt32Array(127, 129, 131), PackedInt32Array(131, 126, 127), PackedInt32Array(132, 133, 134), PackedInt32Array(135, 136, 137), PackedInt32Array(137, 138, 139), PackedInt32Array(139, 140, 141), PackedInt32Array(132, 134, 135), PackedInt32Array(135, 137, 139), PackedInt32Array(139, 141, 132), PackedInt32Array(132, 135, 139), PackedInt32Array(147, 142, 143), PackedInt32Array(143, 144, 145), PackedInt32Array(146, 147, 143), PackedInt32Array(143, 145, 146), PackedInt32Array(149, 150, 151), PackedInt32Array(151, 152, 153), PackedInt32Array(154, 155, 148), PackedInt32Array(149, 151, 153), PackedInt32Array(153, 154, 148), PackedInt32Array(148, 149, 153), PackedInt32Array(163, 156, 157), PackedInt32Array(158, 159, 160), PackedInt32Array(160, 161, 162), PackedInt32Array(163, 157, 158), PackedInt32Array(158, 160, 162), PackedInt32Array(162, 163, 158), PackedInt32Array(169, 164, 165), PackedInt32Array(165, 166, 167), PackedInt32Array(167, 168, 169), PackedInt32Array(169, 165, 167), PackedInt32Array(180, 170, 171), PackedInt32Array(172, 173, 174), PackedInt32Array(174, 175, 176), PackedInt32Array(177, 178, 179), PackedInt32Array(180, 171, 172), PackedInt32Array(174, 176, 177), PackedInt32Array(177, 179, 180), PackedInt32Array(180, 172, 174), PackedInt32Array(174, 177, 180), PackedInt32Array(191, 181, 182), PackedInt32Array(182, 183, 184), PackedInt32Array(184, 185, 186), PackedInt32Array(187, 188, 189), PackedInt32Array(189, 190, 191), PackedInt32Array(191, 182, 184), PackedInt32Array(184, 186, 187), PackedInt32Array(187, 189, 191), PackedInt32Array(191, 184, 187), PackedInt32Array(196, 192, 193), PackedInt32Array(193, 194, 195), PackedInt32Array(195, 196, 193), PackedInt32Array(200, 197, 198), PackedInt32Array(198, 199, 200), PackedInt32Array(204, 201, 202), PackedInt32Array(202, 203, 204), PackedInt32Array(208, 205, 206), PackedInt32Array(206, 207, 208), PackedInt32Array(212, 209, 210), PackedInt32Array(210, 211, 212), PackedInt32Array(213, 214, 215), PackedInt32Array(215, 216, 217), PackedInt32Array(217, 218, 213), PackedInt32Array(213, 215, 217), PackedInt32Array(222, 219, 220), PackedInt32Array(220, 221, 222), PackedInt32Array(228, 223, 224), PackedInt32Array(224, 225, 226), PackedInt32Array(226, 227, 228), PackedInt32Array(228, 224, 226), PackedInt32Array(232, 229, 230), PackedInt32Array(230, 231, 232), PackedInt32Array(233, 234, 235), PackedInt32Array(235, 236, 237), PackedInt32Array(237, 238, 233), PackedInt32Array(233, 235, 237), PackedInt32Array(242, 239, 240), PackedInt32Array(240, 241, 242), PackedInt32Array(249, 243, 244), PackedInt32Array(245, 246, 247), PackedInt32Array(247, 248, 249), PackedInt32Array(249, 244, 245), PackedInt32Array(245, 247, 249), PackedInt32Array(253, 250, 251), PackedInt32Array(251, 252, 253), PackedInt32Array(259, 254, 255), PackedInt32Array(255, 256, 257), PackedInt32Array(257, 258, 259), PackedInt32Array(259, 255, 257), PackedInt32Array(263, 260, 261), PackedInt32Array(261, 262, 263), PackedInt32Array(271, 264, 265), PackedInt32Array(265, 266, 267), PackedInt32Array(267, 268, 269), PackedInt32Array(269, 270, 271), PackedInt32Array(265, 267, 269), PackedInt32Array(269, 271, 265), PackedInt32Array(277, 272, 273), PackedInt32Array(274, 275, 276), PackedInt32Array(277, 273, 274), PackedInt32Array(274, 276, 277), PackedInt32Array(283, 278, 279), PackedInt32Array(279, 280, 281), PackedInt32Array(281, 282, 283), PackedInt32Array(283, 279, 281), PackedInt32Array(293, 284, 285), PackedInt32Array(286, 287, 288), PackedInt32Array(288, 289, 290), PackedInt32Array(290, 291, 292), PackedInt32Array(293, 285, 286), PackedInt32Array(288, 290, 292), PackedInt32Array(292, 293, 286), PackedInt32Array(286, 288, 292), PackedInt32Array(294, 295, 296), PackedInt32Array(296, 297, 298), PackedInt32Array(299, 300, 301), PackedInt32Array(301, 294, 296), PackedInt32Array(296, 298, 299), PackedInt32Array(299, 301, 296), PackedInt32Array(306, 302, 303), PackedInt32Array(303, 304, 305), PackedInt32Array(305, 306, 303), PackedInt32Array(310, 307, 308), PackedInt32Array(308, 309, 310), PackedInt32Array(314, 311, 312), PackedInt32Array(312, 313, 314), PackedInt32Array(318, 315, 316), PackedInt32Array(316, 317, 318), PackedInt32Array(322, 319, 320), PackedInt32Array(320, 321, 322), PackedInt32Array(323, 324, 325), PackedInt32Array(325, 326, 327), PackedInt32Array(328, 329, 323), PackedInt32Array(323, 325, 327), PackedInt32Array(327, 328, 323), PackedInt32Array(333, 330, 331), PackedInt32Array(331, 332, 333), PackedInt32Array(338, 334, 335), PackedInt32Array(335, 336, 337), PackedInt32Array(337, 338, 335), PackedInt32Array(342, 339, 340), PackedInt32Array(340, 341, 342), PackedInt32Array(343, 344, 345), PackedInt32Array(345, 346, 347), PackedInt32Array(347, 348, 343), PackedInt32Array(343, 345, 347), PackedInt32Array(352, 349, 350), PackedInt32Array(350, 351, 352), PackedInt32Array(357, 353, 354), PackedInt32Array(354, 355, 356), PackedInt32Array(356, 357, 354), PackedInt32Array(361, 358, 359), PackedInt32Array(359, 360, 361), PackedInt32Array(363, 364, 365), PackedInt32Array(365, 366, 367), PackedInt32Array(367, 368, 362), PackedInt32Array(363, 365, 367), PackedInt32Array(367, 362, 363), PackedInt32Array(374, 369, 370), PackedInt32Array(371, 372, 373), PackedInt32Array(374, 370, 371), PackedInt32Array(371, 373, 374), PackedInt32Array(381, 375, 376), PackedInt32Array(377, 378, 379), PackedInt32Array(379, 380, 381), PackedInt32Array(381, 376, 377), PackedInt32Array(377, 379, 381), PackedInt32Array(384, 382, 383), PackedInt32Array(388, 385, 386), PackedInt32Array(386, 387, 388), PackedInt32Array(392, 389, 390), PackedInt32Array(390, 391, 392), PackedInt32Array(396, 393, 394), PackedInt32Array(394, 395, 396), PackedInt32Array(400, 397, 398), PackedInt32Array(398, 399, 400), PackedInt32Array(405, 401, 402), PackedInt32Array(402, 403, 404), PackedInt32Array(404, 405, 402), PackedInt32Array(412, 406, 407), PackedInt32Array(408, 409, 410), PackedInt32Array(410, 411, 412), PackedInt32Array(412, 407, 408), PackedInt32Array(408, 410, 412), PackedInt32Array(416, 413, 414), PackedInt32Array(414, 415, 416), PackedInt32Array(422, 417, 418), PackedInt32Array(418, 419, 420), PackedInt32Array(420, 421, 422), PackedInt32Array(422, 418, 420), PackedInt32Array(426, 423, 424), PackedInt32Array(424, 425, 426), PackedInt32Array(430, 427, 428), PackedInt32Array(428, 429, 430), PackedInt32Array(434, 431, 432), PackedInt32Array(432, 433, 434), PackedInt32Array(438, 435, 436), PackedInt32Array(436, 437, 438), PackedInt32Array(442, 439, 440), PackedInt32Array(440, 441, 442), PackedInt32Array(448, 443, 444), PackedInt32Array(445, 446, 447), PackedInt32Array(448, 444, 445), PackedInt32Array(445, 447, 448), PackedInt32Array(452, 449, 450), PackedInt32Array(450, 451, 452), PackedInt32Array(456, 453, 454), PackedInt32Array(454, 455, 456), PackedInt32Array(460, 457, 458), PackedInt32Array(458, 459, 460), PackedInt32Array(464, 461, 462), PackedInt32Array(462, 463, 464), PackedInt32Array(468, 465, 466), PackedInt32Array(466, 467, 468), PackedInt32Array(472, 469, 470), PackedInt32Array(470, 471, 472), PackedInt32Array(476, 473, 474), PackedInt32Array(474, 475, 476), PackedInt32Array(480, 477, 478), PackedInt32Array(478, 479, 480), PackedInt32Array(485, 481, 482), PackedInt32Array(482, 483, 484), PackedInt32Array(484, 485, 482), PackedInt32Array(489, 486, 487), PackedInt32Array(487, 488, 489), PackedInt32Array(493, 490, 491), PackedInt32Array(491, 492, 493), PackedInt32Array(497, 494, 495), PackedInt32Array(495, 496, 497), PackedInt32Array(501, 498, 499), PackedInt32Array(499, 500, 501), PackedInt32Array(505, 502, 503), PackedInt32Array(503, 504, 505), PackedInt32Array(509, 506, 507), PackedInt32Array(507, 508, 509), PackedInt32Array(513, 510, 511), PackedInt32Array(511, 512, 513), PackedInt32Array(517, 514, 515), PackedInt32Array(515, 516, 517), PackedInt32Array(521, 518, 519), PackedInt32Array(519, 520, 521), PackedInt32Array(525, 522, 523), PackedInt32Array(523, 524, 525), PackedInt32Array(529, 526, 527), PackedInt32Array(527, 528, 529), PackedInt32Array(535, 530, 531), PackedInt32Array(532, 533, 534), PackedInt32Array(535, 531, 532), PackedInt32Array(532, 534, 535), PackedInt32Array(539, 536, 537), PackedInt32Array(537, 538, 539), PackedInt32Array(542, 540, 541), PackedInt32Array(547, 543, 544), PackedInt32Array(544, 545, 546), PackedInt32Array(546, 547, 544), PackedInt32Array(555, 548, 549), PackedInt32Array(550, 551, 552), PackedInt32Array(552, 553, 554), PackedInt32Array(555, 549, 550), PackedInt32Array(550, 552, 554), PackedInt32Array(554, 555, 550), PackedInt32Array(562, 556, 557), PackedInt32Array(558, 559, 560), PackedInt32Array(560, 561, 562), PackedInt32Array(562, 557, 558), PackedInt32Array(558, 560, 562), PackedInt32Array(566, 563, 564), PackedInt32Array(564, 565, 566), PackedInt32Array(572, 567, 568), PackedInt32Array(568, 569, 570), PackedInt32Array(570, 571, 572), PackedInt32Array(572, 568, 570), PackedInt32Array(576, 573, 574), PackedInt32Array(574, 575, 576)] +bones = ["Bone-0", PackedFloat32Array(1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-1", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-2", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-3", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-4", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-5", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-6", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-7", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-8", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-9", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-10", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 1, 0, 0, 1, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-11", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-12", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-13", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-14", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-15", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-16", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1)] +internal_vertex_count = 453 +script = ExtResource("2_2dapw") +margin_pixels = -1 +min_area = 0.3 +bias = 0.2 +stiffness = 3.8 +damping = 1.2 +rest_length_ratio = 1.1 +length_ratio = 0.1 +softness = 8.0 +radius = 27 +shape_type = "Rectangle" +break_distance_ratio = 1.2 +rigidbody_scene = ExtResource("3_6ern4") +physics_material_override = ExtResource("3_durpg") + +[node name="Skeleton2D" type="Skeleton2D" parent="Asparagus5"] +visible = false +modification_stack = SubResource("SkeletonModificationStack2D_s8i2x") + +[node name="Bone-0" type="Bone2D" parent="Asparagus5/Skeleton2D"] +position = Vector2(23.5, 33.5) +rotation = 0.532797 +scale = Vector2(1, 1) +rest = Transform2D(0.86139, 0.507945, -0.507945, 0.86139, 23.5, 33.5) +auto_calculate_length_and_angle = false +length = 30.0 +bone_angle = 0.0 +metadata/vert_owned = [124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155] +metadata/idx = 0 +metadata/connected_nodes_paths = [NodePath("Bone-1"), NodePath("Bone-3"), NodePath("Bone-4")] +metadata/connected_nodes_idx = [1, 3, 4] +metadata/_local_pose_override_enabled_ = true + +[node name="Bone-1" type="Bone2D" parent="Asparagus5/Skeleton2D"] +position = Vector2(17.5, 71) +rotation = -1.01295 +scale = Vector2(1, 1) +rest = Transform2D(0.529363, -0.848396, 0.848396, 0.529363, 17.5, 71) +auto_calculate_length_and_angle = false +length = 30.0 +bone_angle = 0.0 +metadata/vert_owned = [156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169] +metadata/idx = 1 +metadata/connected_nodes_paths = [NodePath("Bone-0"), NodePath("Bone-2"), NodePath("Bone-3"), NodePath("Bone-4"), NodePath("Bone-5")] +metadata/connected_nodes_idx = [0, 2, 3, 4, 5] +metadata/_local_pose_override_enabled_ = true + +[node name="Bone-2" type="Bone2D" parent="Asparagus5/Skeleton2D"] +position = Vector2(16.5, 101) +rotation = -0.982794 +rest = Transform2D(0.5547, -0.83205, 0.83205, 0.5547, 16.5, 101) +auto_calculate_length_and_angle = false +length = 30.0 +bone_angle = 0.0 +metadata/vert_owned = [170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191] +metadata/idx = 2 +metadata/connected_nodes_paths = [NodePath("Bone-1"), NodePath("Bone-6"), NodePath("Bone-4"), NodePath("Bone-5")] +metadata/connected_nodes_idx = [1, 6, 4, 5] +metadata/_local_pose_override_enabled_ = true + +[node name="Bone-3" type="Bone2D" parent="Asparagus5/Skeleton2D"] +position = Vector2(36.2187, 41) +rotation = -2.6088 +scale = Vector2(1, 1) +rest = Transform2D(-0.86139, -0.507945, 0.507945, -0.86139, 36.2188, 41) +auto_calculate_length_and_angle = false +length = 30.0 +bone_angle = 0.0 +metadata/vert_owned = [192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208] +metadata/idx = 3 +metadata/connected_nodes_paths = [NodePath("Bone-4"), NodePath("Bone-0"), NodePath("Bone-1")] +metadata/connected_nodes_idx = [4, 0, 1] +metadata/_local_pose_override_enabled_ = true + +[node name="Bone-4" type="Bone2D" parent="Asparagus5/Skeleton2D"] +position = Vector2(36.5, 71) +rotation = -1.9045 +rest = Transform2D(-0.327543, -0.944836, 0.944836, -0.327543, 36.5, 71) +auto_calculate_length_and_angle = false +length = 30.0 +bone_angle = 0.0 +metadata/vert_owned = [209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228] +metadata/idx = 4 +metadata/connected_nodes_paths = [NodePath("Bone-5"), NodePath("Bone-3"), NodePath("Bone-0"), NodePath("Bone-1"), NodePath("Bone-2")] +metadata/connected_nodes_idx = [5, 3, 0, 1, 2] +metadata/_local_pose_override_enabled_ = true + +[node name="Bone-5" type="Bone2D" parent="Asparagus5/Skeleton2D"] +position = Vector2(36.1666, 101) +rotation = 3.14159 +rest = Transform2D(-1, 1.50996e-07, -1.50996e-07, -1, 36.1667, 101) +auto_calculate_length_and_angle = false +length = 30.0 +bone_angle = 0.0 +metadata/vert_owned = [229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249] +metadata/idx = 5 +metadata/connected_nodes_paths = [NodePath("Bone-4"), NodePath("Bone-1"), NodePath("Bone-2"), NodePath("Bone-6")] +metadata/connected_nodes_idx = [4, 1, 2, 6] +metadata/_local_pose_override_enabled_ = true + +[node name="Bone-6" type="Bone2D" parent="Asparagus5/Skeleton2D"] +position = Vector2(32.5, 131) +rotation = -1.44918 +scale = Vector2(1, 1) +rest = Transform2D(0.121318, -0.992614, 0.992614, 0.121318, 32.5, 131) +auto_calculate_length_and_angle = false +length = 30.0 +bone_angle = 0.0 +metadata/vert_owned = [250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283] +metadata/idx = 6 +metadata/connected_nodes_paths = [NodePath("Bone-2"), NodePath("Bone-7"), NodePath("Bone-5"), NodePath("Bone-9")] +metadata/connected_nodes_idx = [2, 7, 5, 9] +metadata/_local_pose_override_enabled_ = true + +[node name="Bone-7" type="Bone2D" parent="Asparagus5/Skeleton2D"] +position = Vector2(17.5, 161) +rest = Transform2D(1, 0, 0, 1, 17.5, 161) +auto_calculate_length_and_angle = false +length = 30.0 +bone_angle = 0.0 +metadata/vert_owned = [284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301] +metadata/idx = 7 +metadata/connected_nodes_paths = [NodePath("Bone-6"), NodePath("Bone-8"), NodePath("Bone-9"), NodePath("Bone-10")] +metadata/connected_nodes_idx = [6, 8, 9, 10] +metadata/_local_pose_override_enabled_ = true + +[node name="Bone-8" type="Bone2D" parent="Asparagus5/Skeleton2D"] +position = Vector2(19, 191) +rotation = -1.05525 +scale = Vector2(1, 1) +rest = Transform2D(0.493013, -0.870022, 0.870022, 0.493013, 19, 191) +auto_calculate_length_and_angle = false +length = 30.0 +bone_angle = 0.0 +metadata/vert_owned = [302, 303, 304, 305, 306, 307, 308, 309, 310] +metadata/idx = 8 +metadata/connected_nodes_paths = [NodePath("Bone-7"), NodePath("Bone-11"), NodePath("Bone-9"), NodePath("Bone-10")] +metadata/connected_nodes_idx = [7, 11, 9, 10] +metadata/_local_pose_override_enabled_ = true + +[node name="Bone-9" type="Bone2D" parent="Asparagus5/Skeleton2D"] +position = Vector2(36, 161) +rotation = 3.14159 +rest = Transform2D(-1, 1.50996e-07, -1.50996e-07, -1, 36, 161) +auto_calculate_length_and_angle = false +length = 30.0 +bone_angle = 0.0 +metadata/vert_owned = [311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329] +metadata/idx = 9 +metadata/connected_nodes_paths = [NodePath("Bone-10"), NodePath("Bone-6"), NodePath("Bone-7"), NodePath("Bone-8")] +metadata/connected_nodes_idx = [10, 6, 7, 8] +metadata/_local_pose_override_enabled_ = true + +[node name="Bone-10" type="Bone2D" parent="Asparagus5/Skeleton2D"] +position = Vector2(39, 191) +rotation = -2.19262 +scale = Vector2(1, 1) +rest = Transform2D(-0.582518, -0.812817, 0.812817, -0.582518, 39, 191) +auto_calculate_length_and_angle = false +length = 30.0 +bone_angle = 0.0 +metadata/vert_owned = [330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348] +metadata/idx = 10 +metadata/connected_nodes_paths = [NodePath("Bone-11"), NodePath("Bone-9"), NodePath("Bone-7"), NodePath("Bone-8")] +metadata/connected_nodes_idx = [11, 9, 7, 8] +metadata/_local_pose_override_enabled_ = true + +[node name="Bone-11" type="Bone2D" parent="Asparagus5/Skeleton2D"] +position = Vector2(34.6351, 221) +rotation = -1.42631 +scale = Vector2(1, 1) +rest = Transform2D(0.14398, -0.989581, 0.989581, 0.14398, 34.6351, 221) +auto_calculate_length_and_angle = false +length = 30.0 +bone_angle = 0.0 +metadata/vert_owned = [349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384] +metadata/idx = 11 +metadata/connected_nodes_paths = [NodePath("Bone-8"), NodePath("Bone-10"), NodePath("Bone-12")] +metadata/connected_nodes_idx = [8, 10, 12] +metadata/_local_pose_override_enabled_ = true + +[node name="Bone-12" type="Bone2D" parent="Asparagus5/Skeleton2D"] +position = Vector2(37.0375, 251) +rotation = -1.6507 +scale = Vector2(1, 1) +rest = Transform2D(-0.0798236, -0.996809, 0.996809, -0.0798236, 37.0375, 251) +auto_calculate_length_and_angle = false +length = 30.0 +bone_angle = 0.0 +metadata/vert_owned = [385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422] +metadata/idx = 12 +metadata/connected_nodes_paths = [NodePath("Bone-13"), NodePath("Bone-11")] +metadata/connected_nodes_idx = [13, 11] +metadata/_local_pose_override_enabled_ = true + +[node name="Bone-13" type="Bone2D" parent="Asparagus5/Skeleton2D"] +position = Vector2(40.6625, 281) +rotation = 1.54289 +scale = Vector2(1, 1) +rest = Transform2D(0.0279045, 0.999611, -0.999611, 0.0279045, 40.6625, 281) +auto_calculate_length_and_angle = false +length = 30.0 +bone_angle = 0.0 +metadata/vert_owned = [423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456] +metadata/idx = 13 +metadata/connected_nodes_paths = [NodePath("Bone-12"), NodePath("Bone-14")] +metadata/connected_nodes_idx = [12, 14] +metadata/_local_pose_override_enabled_ = true + +[node name="Bone-14" type="Bone2D" parent="Asparagus5/Skeleton2D"] +position = Vector2(41.5, 311) +rotation = 1.5708 +rest = Transform2D(-4.37114e-08, 1, -1, -4.37114e-08, 41.5, 311) +auto_calculate_length_and_angle = false +length = 30.0 +bone_angle = 0.0 +metadata/vert_owned = [457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489] +metadata/idx = 14 +metadata/connected_nodes_paths = [NodePath("Bone-13"), NodePath("Bone-15")] +metadata/connected_nodes_idx = [13, 15] +metadata/_local_pose_override_enabled_ = true + +[node name="Bone-15" type="Bone2D" parent="Asparagus5/Skeleton2D"] +position = Vector2(41.5, 341) +rotation = 1.5708 +rest = Transform2D(9.09963e-07, 1, -1, 9.09963e-07, 41.5, 341) +auto_calculate_length_and_angle = false +length = 30.0 +bone_angle = 0.0 +metadata/vert_owned = [490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521] +metadata/idx = 15 +metadata/connected_nodes_paths = [NodePath("Bone-14"), NodePath("Bone-16")] +metadata/connected_nodes_idx = [14, 16] +metadata/_local_pose_override_enabled_ = true + +[node name="Bone-16" type="Bone2D" parent="Asparagus5/Skeleton2D"] +position = Vector2(41.5, 375) +rotation = -1.5708 +rest = Transform2D(-8.78176e-07, -1, 1, -8.78176e-07, 41.5, 375) +auto_calculate_length_and_angle = false +length = 30.0 +bone_angle = 0.0 +metadata/vert_owned = [522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576] +metadata/idx = 16 +metadata/connected_nodes_paths = [NodePath("Bone-15")] +metadata/connected_nodes_idx = [15] +metadata/_local_pose_override_enabled_ = true + +[node name="Bone-0" type="RigidBody2D" parent="Asparagus5" instance=ExtResource("3_6ern4")] +position = Vector2(23.5, 33.5) +input_pickable = true +mass = 0.0588235 +physics_material_override = ExtResource("3_durpg") +script = ExtResource("11_tqnjl") +metadata/idx = 0 +metadata/bone_name = &"Bone-0" + +[node name="RectangleShape2D" type="CollisionShape2D" parent="Asparagus5/Bone-0"] +shape = SubResource("RectangleShape2D_sei3x") + +[node name="RemoteTransform2D" type="RemoteTransform2D" parent="Asparagus5/Bone-0"] +visible = false +remote_path = NodePath("../../Skeleton2D/Bone-0") +update_rotation = false +update_scale = false + +[node name="Joint2D-Bone-0-Bone-1" type="PinJoint2D" parent="Asparagus5/Bone-0"] +visible = false +rotation = 0.158655 +node_a = NodePath("..") +node_b = NodePath("../../Bone-1") +bias = 0.2 +softness = 8.0 + +[node name="Joint2D-Bone-0-Bone-3" type="PinJoint2D" parent="Asparagus5/Bone-0"] +visible = false +rotation = -1.038 +node_a = NodePath("..") +node_b = NodePath("../../Bone-3") +bias = 0.2 +softness = 8.0 + +[node name="Joint2D-Bone-0-Bone-4" type="PinJoint2D" parent="Asparagus5/Bone-0"] +visible = false +rotation = -0.333702 +node_a = NodePath("..") +node_b = NodePath("../../Bone-4") +bias = 0.2 +softness = 8.0 + +[node name="Bone-1" type="RigidBody2D" parent="Asparagus5" instance=ExtResource("3_6ern4")] +position = Vector2(17.5, 71) +input_pickable = true +mass = 0.0588235 +physics_material_override = ExtResource("3_durpg") +script = ExtResource("11_tqnjl") +metadata/idx = 1 +metadata/bone_name = &"Bone-1" + +[node name="RectangleShape2D" type="CollisionShape2D" parent="Asparagus5/Bone-1"] +shape = SubResource("RectangleShape2D_sei3x") + +[node name="RemoteTransform2D" type="RemoteTransform2D" parent="Asparagus5/Bone-1"] +visible = false +remote_path = NodePath("../../Skeleton2D/Bone-1") +update_rotation = false +update_scale = false + +[node name="Joint2D-Bone-1-Bone-0" type="PinJoint2D" parent="Asparagus5/Bone-1"] +visible = false +rotation = -2.98294 +node_a = NodePath("..") +node_b = NodePath("../../Bone-0") +bias = 0.2 +softness = 8.0 + +[node name="Joint2D-Bone-1-Bone-2" type="PinJoint2D" parent="Asparagus5/Bone-1"] +visible = false +rotation = 0.0333209 +node_a = NodePath("..") +node_b = NodePath("../../Bone-2") +bias = 0.2 +softness = 8.0 + +[node name="Joint2D-Bone-1-Bone-3" type="PinJoint2D" parent="Asparagus5/Bone-1"] +visible = false +rotation = -2.58374 +node_a = NodePath("..") +node_b = NodePath("../../Bone-3") +bias = 0.2 +softness = 8.0 + +[node name="Joint2D-Bone-1-Bone-4" type="PinJoint2D" parent="Asparagus5/Bone-1"] +visible = false +rotation = -1.5708 +node_a = NodePath("..") +node_b = NodePath("../../Bone-4") +bias = 0.2 +softness = 8.0 + +[node name="Joint2D-Bone-1-Bone-5" type="PinJoint2D" parent="Asparagus5/Bone-1"] +visible = false +rotation = -0.556599 +node_a = NodePath("..") +node_b = NodePath("../../Bone-5") +bias = 0.2 +softness = 8.0 + +[node name="Bone-2" type="RigidBody2D" parent="Asparagus5" instance=ExtResource("3_6ern4")] +position = Vector2(16.5, 101) +input_pickable = true +mass = 0.0588235 +physics_material_override = ExtResource("3_durpg") +script = ExtResource("11_tqnjl") +metadata/idx = 2 +metadata/bone_name = &"Bone-2" + +[node name="RectangleShape2D" type="CollisionShape2D" parent="Asparagus5/Bone-2"] +shape = SubResource("RectangleShape2D_sei3x") + +[node name="RemoteTransform2D" type="RemoteTransform2D" parent="Asparagus5/Bone-2"] +visible = false +remote_path = NodePath("../../Skeleton2D/Bone-2") +update_rotation = false +update_scale = false + +[node name="Joint2D-Bone-2-Bone-1" type="PinJoint2D" parent="Asparagus5/Bone-2"] visible = false -rotation = -3.03922 +rotation = -3.10827 node_a = NodePath("..") -node_b = NodePath("../../Bone-61") -softness = 50.0 +node_b = NodePath("../../Bone-1") +bias = 0.2 +softness = 8.0 -[node name="Asparagus5" type="Polygon2D" parent="."] -z_index = 5 -position = Vector2(893, -372) -rotation = -1.70473 -texture = ExtResource("1_bb0nr") -skeleton = NodePath("Skeleton2D") -polygon = PackedVector2Array(23, 18, 22, 18, 22, 29, 20, 29, 18, 29, 14, 35, 13, 35, 12, 39, 11, 39, 11, 47, 14, 52, 15, 52, 15, 55, 13, 56, 13, 66, 11, 68, 11, 76, 13, 78, 13, 80, 17, 83, 17, 86, 16, 87, 15, 87, 15, 90, 14, 91, 13, 91, 10, 97, 9, 97, 9, 104, 11, 106, 11, 110, 14, 113, 15, 113, 15, 115, 16, 115, 15, 128, 14, 128, 14, 137, 16, 142, 16, 146, 15, 146, 15, 154, 14, 155, 13, 155, 13, 160, 11, 162, 11, 168, 12, 170, 13, 170, 14, 175, 15, 175, 14, 205, 14, 210, 15, 214, 16, 214, 16, 222, 17, 222, 17, 248, 18, 250, 19, 250, 19, 259, 21, 266, 22, 266, 22, 279, 23, 279, 23, 342, 23, 370, 27, 382, 27, 387, 31, 391, 31, 393, 34, 393, 34, 394, 39, 393, 48, 393, 49, 391, 51, 391, 54, 387, 56, 387, 59, 375, 60, 375, 60, 343, 60, 305, 57, 265, 57, 252, 53, 215, 52, 215, 52, 209, 54, 206, 54, 202, 48, 185, 47, 185, 48, 176, 48, 159, 45, 148, 44, 148, 50, 136, 51, 136, 51, 127, 50, 124, 49, 124, 49, 118, 46, 109, 45, 109, 46, 99, 47, 99, 47, 90, 45, 86, 44, 86, 45, 80, 45, 73, 49, 67, 49, 57, 40, 41, 39, 41, 40, 39, 40, 32, 36, 26, 36, 24, 34, 23, 34, 22, 33, 23, 32, 23, 23, 11, 36, 24, 36, 26, 40, 32, 40, 39, 39, 41, 40, 41, 47.8445, 54.9458, 28.1566, 54.4242, 26.0414, 24.9849, 35.0187, 23.5093, 22.8904, 22.658, 22, 22.7796, 22, 18, 22.7579, 18, 26.0414, 24.9849, 28.1566, 54.4242, 23.8848, 58.0677, 13, 56.6355, 13, 56, 15, 55, 15, 52, 14, 52, 11, 47, 11, 39, 12, 39, 13, 35, 14, 35, 18, 29, 22, 29, 22, 22.7796, 22.8904, 22.658, 32, 23, 33, 23, 34, 22, 34, 23, 35.0187, 23.5093, 26.0414, 24.9849, 22.8904, 22.658, 22.7579, 18, 23, 18, 23, 11, 47.8445, 54.9458, 49, 57, 49, 67, 45, 73, 45, 80, 44.072, 85.5677, 24.8519, 85.2101, 23.8848, 58.0677, 28.1566, 54.4242, 23.8848, 58.0677, 24.8519, 85.2101, 22.1912, 88.3716, 15, 87.8888, 15, 87, 16, 87, 17, 86, 17, 83, 13, 80, 13, 78, 11, 76, 11, 68, 13, 66, 13, 56.6355, 44.072, 85.5677, 44, 86, 45, 86, 47, 90, 47, 99, 46, 99, 45, 109, 46, 109, 48.2334, 115.7, 24.2331, 113.749, 22.1912, 88.3716, 24.8519, 85.2101, 22.1912, 88.3716, 24.2331, 113.749, 22.0331, 116.088, 15.9301, 115.908, 16, 115, 15, 115, 15, 113, 14, 113, 11, 110, 11, 106, 9, 104, 9, 97, 10, 97, 13, 91, 14, 91, 15, 90, 15, 87.8888, 48.2334, 115.7, 49, 118, 49, 124, 50, 124, 51, 127, 51, 136, 50, 136, 44.1216, 147.757, 22.5063, 146.805, 20.8784, 145.458, 22.0331, 116.088, 24.2331, 113.749, 15, 146.061, 15, 146, 15.5955, 146, 22.0331, 116.088, 20.8784, 145.458, 16, 145.958, 16, 142, 14, 137, 14, 128, 15, 128, 15.9301, 115.908, 44.1216, 147.757, 44, 148, 45, 148, 48, 159, 48, 175.316, 22.5551, 177.205, 22.5063, 146.805, 22.5063, 146.805, 22.5551, 177.205, 22.2298, 177.589, 14.8931, 178.209, 15, 175, 14, 175, 13, 170, 12, 170, 11, 168, 11, 162, 13, 160, 13, 155, 14, 155, 15, 154, 15, 146.061, 15.5955, 146, 16, 146, 16, 145.958, 20.8784, 145.458, 48, 176, 47, 185, 48, 185, 51.3807, 194.579, 50.8741, 206.035, 27.4124, 205.461, 22.2298, 177.589, 22.5551, 177.205, 48, 175.316, 27.4124, 205.461, 22.7074, 209.307, 14, 209.071, 14, 205, 14.8931, 178.209, 22.2298, 177.589, 54, 202, 54, 206, 53.5914, 206.613, 51.6584, 206.71, 50.8741, 206.035, 51.3807, 194.579, 50.8741, 206.035, 51.6584, 206.71, 52.3844, 237.323, 24.6809, 236.904, 24.6671, 236.888, 22.7074, 209.307, 27.4124, 205.461, 22.7074, 209.307, 24.6671, 236.888, 17, 236.331, 17, 222, 16, 222, 16, 214, 15, 214, 14, 210, 14, 209.071, 52, 209, 52, 215, 53, 215, 55.6607, 239.611, 54.5694, 239.734, 52.3844, 237.323, 51.6584, 206.71, 53.5914, 206.613, 52.3844, 237.323, 54.5694, 239.734, 52.7158, 263.129, 49.0843, 267.047, 26.2416, 267.793, 20.5625, 262.474, 24.6809, 236.904, 24.6671, 236.888, 24.6809, 236.904, 20.5625, 262.474, 19.9959, 262.486, 19, 259, 19, 250, 18, 250, 17, 248, 17, 236.331, 57, 252, 57, 263.947, 52.7158, 263.129, 54.5694, 239.734, 55.6607, 239.611, 53.9864, 293.55, 48.7929, 299.472, 24.5471, 298.247, 23, 296.665, 23, 284.858, 26.2416, 267.793, 49.0843, 267.047, 26.2416, 267.793, 23, 284.858, 23, 279, 22, 279, 22, 266, 21, 266, 19.9959, 262.486, 20.5625, 262.474, 57, 263.947, 57, 265, 59.1484, 293.645, 53.9864, 293.55, 49.0843, 267.047, 52.7158, 263.129, 48.7929, 299.472, 53.1417, 326.377, 50.5668, 329.745, 23, 328.762, 23, 311.398, 24.5471, 298.247, 24.5471, 298.247, 23, 311.398, 23, 296.665, 59.1484, 293.645, 60, 305, 60, 325.419, 53.1417, 326.377, 48.7929, 299.472, 53.9864, 293.55, 50.5668, 329.745, 54.0275, 354.61, 53.6385, 355.145, 24.289, 360.644, 23, 359.582, 23, 328.762, 60, 354.71, 54.0275, 354.61, 50.5668, 329.745, 53.1417, 326.377, 60, 325.419, 55.4484, 385.114, 26.3426, 388.368, 24.289, 360.644, 53.6385, 355.145, 24.289, 360.644, 25.5483, 377.645, 23, 370, 23, 359.582, 55.6862, 385.312, 55.7507, 387, 54, 387, 51, 391, 49, 391, 48, 393, 39, 393, 34, 394, 34, 393, 31, 393, 31, 391, 28.1646, 388.165, 55.4484, 385.114, 60, 354.71, 60, 375, 59, 375, 56.4224, 385.31, 55.6862, 385.312, 55.4484, 385.114, 53.6385, 355.145, 54.0275, 354.61, 56, 387, 55.7507, 387, 55.6862, 385.312, 56.4224, 385.31) -polygons = [PackedInt32Array(133, 124, 125), PackedInt32Array(125, 126, 127), PackedInt32Array(128, 129, 130), PackedInt32Array(130, 131, 132), PackedInt32Array(132, 133, 125), PackedInt32Array(125, 127, 128), PackedInt32Array(128, 130, 132), PackedInt32Array(132, 125, 128), PackedInt32Array(137, 134, 135), PackedInt32Array(135, 136, 137), PackedInt32Array(154, 138, 139), PackedInt32Array(139, 140, 141), PackedInt32Array(141, 142, 143), PackedInt32Array(144, 145, 146), PackedInt32Array(146, 147, 148), PackedInt32Array(148, 149, 150), PackedInt32Array(150, 151, 152), PackedInt32Array(152, 153, 154), PackedInt32Array(139, 141, 143), PackedInt32Array(144, 146, 148), PackedInt32Array(148, 150, 152), PackedInt32Array(152, 154, 139), PackedInt32Array(139, 143, 144), PackedInt32Array(144, 148, 152), PackedInt32Array(152, 139, 144), PackedInt32Array(156, 157, 158), PackedInt32Array(158, 159, 160), PackedInt32Array(160, 161, 162), PackedInt32Array(163, 164, 155), PackedInt32Array(156, 158, 160), PackedInt32Array(160, 162, 163), PackedInt32Array(155, 156, 160), PackedInt32Array(160, 163, 155), PackedInt32Array(173, 165, 166), PackedInt32Array(166, 167, 168), PackedInt32Array(168, 169, 170), PackedInt32Array(170, 171, 172), PackedInt32Array(172, 173, 166), PackedInt32Array(168, 170, 172), PackedInt32Array(172, 166, 168), PackedInt32Array(187, 174, 175), PackedInt32Array(175, 176, 177), PackedInt32Array(177, 178, 179), PackedInt32Array(181, 182, 183), PackedInt32Array(183, 184, 185), PackedInt32Array(186, 187, 175), PackedInt32Array(175, 177, 179), PackedInt32Array(181, 183, 185), PackedInt32Array(185, 186, 175), PackedInt32Array(175, 179, 180), PackedInt32Array(181, 185, 175), PackedInt32Array(175, 180, 181), PackedInt32Array(199, 188, 189), PackedInt32Array(189, 190, 191), PackedInt32Array(191, 192, 193), PackedInt32Array(194, 195, 196), PackedInt32Array(196, 197, 198), PackedInt32Array(198, 199, 189), PackedInt32Array(189, 191, 193), PackedInt32Array(194, 196, 198), PackedInt32Array(198, 189, 193), PackedInt32Array(193, 194, 198), PackedInt32Array(216, 200, 201), PackedInt32Array(201, 202, 203), PackedInt32Array(204, 205, 206), PackedInt32Array(206, 207, 208), PackedInt32Array(209, 210, 211), PackedInt32Array(212, 213, 214), PackedInt32Array(215, 216, 201), PackedInt32Array(201, 203, 204), PackedInt32Array(206, 208, 209), PackedInt32Array(209, 211, 212), PackedInt32Array(212, 214, 215), PackedInt32Array(215, 201, 204), PackedInt32Array(206, 209, 212), PackedInt32Array(212, 215, 204), PackedInt32Array(204, 206, 212), PackedInt32Array(228, 217, 218), PackedInt32Array(219, 220, 221), PackedInt32Array(221, 222, 223), PackedInt32Array(223, 224, 225), PackedInt32Array(225, 226, 227), PackedInt32Array(227, 228, 218), PackedInt32Array(219, 221, 223), PackedInt32Array(223, 225, 227), PackedInt32Array(227, 218, 219), PackedInt32Array(219, 223, 227), PackedInt32Array(231, 229, 230), PackedInt32Array(239, 232, 233), PackedInt32Array(233, 234, 235), PackedInt32Array(235, 236, 237), PackedInt32Array(238, 239, 233), PackedInt32Array(233, 235, 237), PackedInt32Array(237, 238, 233), PackedInt32Array(246, 240, 241), PackedInt32Array(241, 242, 243), PackedInt32Array(243, 244, 245), PackedInt32Array(245, 246, 241), PackedInt32Array(241, 243, 245), PackedInt32Array(265, 247, 248), PackedInt32Array(248, 249, 250), PackedInt32Array(251, 252, 253), PackedInt32Array(253, 254, 255), PackedInt32Array(255, 256, 257), PackedInt32Array(257, 258, 259), PackedInt32Array(260, 261, 262), PackedInt32Array(263, 264, 265), PackedInt32Array(265, 248, 250), PackedInt32Array(253, 255, 257), PackedInt32Array(257, 259, 260), PackedInt32Array(260, 262, 263), PackedInt32Array(263, 265, 250), PackedInt32Array(251, 253, 257), PackedInt32Array(263, 250, 251), PackedInt32Array(251, 257, 260), PackedInt32Array(260, 263, 251), PackedInt32Array(274, 266, 267), PackedInt32Array(267, 268, 269), PackedInt32Array(269, 270, 271), PackedInt32Array(271, 272, 273), PackedInt32Array(273, 274, 267), PackedInt32Array(267, 269, 271), PackedInt32Array(271, 273, 267), PackedInt32Array(280, 275, 276), PackedInt32Array(276, 277, 278), PackedInt32Array(278, 279, 280), PackedInt32Array(280, 276, 278), PackedInt32Array(286, 281, 282), PackedInt32Array(282, 283, 284), PackedInt32Array(284, 285, 286), PackedInt32Array(286, 282, 284), PackedInt32Array(293, 287, 288), PackedInt32Array(288, 289, 290), PackedInt32Array(290, 291, 292), PackedInt32Array(292, 293, 288), PackedInt32Array(288, 290, 292), PackedInt32Array(294, 295, 296), PackedInt32Array(297, 298, 299), PackedInt32Array(299, 300, 301), PackedInt32Array(301, 302, 294), PackedInt32Array(294, 296, 297), PackedInt32Array(299, 301, 294), PackedInt32Array(294, 297, 299), PackedInt32Array(304, 305, 306), PackedInt32Array(306, 307, 308), PackedInt32Array(309, 310, 303), PackedInt32Array(304, 306, 308), PackedInt32Array(309, 303, 304), PackedInt32Array(304, 308, 309), PackedInt32Array(317, 311, 312), PackedInt32Array(312, 313, 314), PackedInt32Array(314, 315, 316), PackedInt32Array(316, 317, 312), PackedInt32Array(312, 314, 316), PackedInt32Array(326, 318, 319), PackedInt32Array(319, 320, 321), PackedInt32Array(321, 322, 323), PackedInt32Array(323, 324, 325), PackedInt32Array(325, 326, 319), PackedInt32Array(319, 321, 323), PackedInt32Array(323, 325, 319), PackedInt32Array(331, 327, 328), PackedInt32Array(328, 329, 330), PackedInt32Array(330, 331, 328), PackedInt32Array(338, 332, 333), PackedInt32Array(333, 334, 335), PackedInt32Array(335, 336, 337), PackedInt32Array(337, 338, 333), PackedInt32Array(333, 335, 337), PackedInt32Array(339, 340, 341), PackedInt32Array(341, 342, 343), PackedInt32Array(343, 344, 345), PackedInt32Array(345, 346, 339), PackedInt32Array(339, 341, 343), PackedInt32Array(343, 345, 339), PackedInt32Array(352, 347, 348), PackedInt32Array(348, 349, 350), PackedInt32Array(350, 351, 352), PackedInt32Array(352, 348, 350), PackedInt32Array(358, 353, 354), PackedInt32Array(354, 355, 356), PackedInt32Array(356, 357, 358), PackedInt32Array(358, 354, 356), PackedInt32Array(361, 359, 360), PackedInt32Array(367, 362, 363), PackedInt32Array(363, 364, 365), PackedInt32Array(365, 366, 367), PackedInt32Array(367, 363, 365), PackedInt32Array(373, 368, 369), PackedInt32Array(369, 370, 371), PackedInt32Array(371, 372, 373), PackedInt32Array(373, 369, 371), PackedInt32Array(378, 374, 375), PackedInt32Array(375, 376, 377), PackedInt32Array(377, 378, 375), PackedInt32Array(382, 379, 380), PackedInt32Array(380, 381, 382), PackedInt32Array(386, 383, 384), PackedInt32Array(384, 385, 386), PackedInt32Array(399, 387, 388), PackedInt32Array(389, 390, 391), PackedInt32Array(391, 392, 393), PackedInt32Array(393, 394, 395), PackedInt32Array(395, 396, 397), PackedInt32Array(397, 398, 399), PackedInt32Array(399, 388, 389), PackedInt32Array(389, 391, 393), PackedInt32Array(393, 395, 397), PackedInt32Array(397, 399, 389), PackedInt32Array(389, 393, 397), PackedInt32Array(407, 400, 401), PackedInt32Array(402, 403, 404), PackedInt32Array(404, 405, 406), PackedInt32Array(406, 407, 401), PackedInt32Array(402, 404, 406), PackedInt32Array(406, 401, 402), PackedInt32Array(411, 408, 409), PackedInt32Array(409, 410, 411)] -bones = ["Bone-0", PackedFloat32Array(0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 1, 1, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-1", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 1, 1, 1, 1, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-2", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-3", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-4", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0.7, 0.7, 0.7, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-5", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-6", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 1, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-7", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-8", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 1, 1, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0.7, 0.7, 0, 0.7, 0.7, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-9", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0.7, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-10", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0), "Bone-11", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0, 0.7, 0.7, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7)] -internal_vertex_count = 288 -script = ExtResource("2_2dapw") -radius = 27 -shape_type = "Rectangle" -break_distance_ratio = 1.2 -rigidbody_scene = ExtResource("3_6ern4") -margin_pixels = -1 -voronoi_interval = 0.15 -max_joint_distance_ratio = 1.3 +[node name="Joint2D-Bone-2-Bone-6" type="PinJoint2D" parent="Asparagus5/Bone-2"] +visible = false +rotation = -0.489957 +node_a = NodePath("..") +node_b = NodePath("../../Bone-6") +bias = 0.2 +softness = 8.0 + +[node name="Joint2D-Bone-2-Bone-4" type="PinJoint2D" parent="Asparagus5/Bone-2"] +visible = false +rotation = -2.55359 +node_a = NodePath("..") +node_b = NodePath("../../Bone-4") +bias = 0.2 +softness = 8.0 + +[node name="Joint2D-Bone-2-Bone-5" type="PinJoint2D" parent="Asparagus5/Bone-2"] +visible = false +rotation = -1.5708 +node_a = NodePath("..") +node_b = NodePath("../../Bone-5") bias = 0.2 -stiffness = 3.8 -damping = 1.2 -rest_length_ratio = 1.1 -length_ratio = 0.1 softness = 8.0 + +[node name="Bone-3" type="RigidBody2D" parent="Asparagus5" instance=ExtResource("3_6ern4")] +position = Vector2(36.2188, 41) +input_pickable = true +mass = 0.0588235 physics_material_override = ExtResource("3_durpg") +script = ExtResource("11_tqnjl") +metadata/idx = 3 +metadata/bone_name = &"Bone-3" -[node name="Skeleton2D" type="Skeleton2D" parent="Asparagus5"] +[node name="RectangleShape2D" type="CollisionShape2D" parent="Asparagus5/Bone-3"] +shape = SubResource("RectangleShape2D_sei3x") + +[node name="RemoteTransform2D" type="RemoteTransform2D" parent="Asparagus5/Bone-3"] visible = false -modification_stack = SubResource("SkeletonModificationStack2D_w57bg") +remote_path = NodePath("../../Skeleton2D/Bone-3") +update_rotation = false +update_scale = false -[node name="Bone-0" type="Bone2D" parent="Asparagus5/Skeleton2D"] -position = Vector2(29.4222, 34.5338) -rotation = 1.55512 -scale = Vector2(1, 1) -rest = Transform2D(0.0156716, 0.999877, -0.999877, 0.0156716, 29.4222, 34.5338) -auto_calculate_length_and_angle = false -length = 30.0 -bone_angle = 0.0 -metadata/vert_owned = [124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164] -metadata/connected_nodes_paths = [NodePath("Bone-1")] -metadata/_local_pose_override_enabled_ = true +[node name="Joint2D-Bone-3-Bone-4" type="PinJoint2D" parent="Asparagus5/Bone-3"] +visible = false +rotation = -0.00937469 +node_a = NodePath("..") +node_b = NodePath("../../Bone-4") +bias = 0.2 +softness = 8.0 -[node name="Bone-1" type="Bone2D" parent="Asparagus5/Skeleton2D"] -position = Vector2(30, 71.3979) -rotation = 1.61805 -scale = Vector2(1, 1) -rest = Transform2D(-0.047239, 0.998884, -0.998884, -0.047239, 30, 71.3979) -auto_calculate_length_and_angle = false -length = 30.0 -bone_angle = 0.0 -metadata/vert_owned = [165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187] -metadata/connected_nodes_paths = [NodePath("Bone-0"), NodePath("Bone-2")] -metadata/_local_pose_override_enabled_ = true +[node name="Joint2D-Bone-3-Bone-0" type="PinJoint2D" parent="Asparagus5/Bone-3"] +visible = false +rotation = -4.17959 +node_a = NodePath("..") +node_b = NodePath("../../Bone-0") +bias = 0.2 +softness = 8.0 -[node name="Bone-2" type="Bone2D" parent="Asparagus5/Skeleton2D"] -position = Vector2(28.6167, 100.649) -rotation = 1.44251 -rest = Transform2D(0.127936, 0.991782, -0.991782, 0.127936, 28.6167, 100.649) -auto_calculate_length_and_angle = false -length = 30.0 -bone_angle = 0.0 -metadata/vert_owned = [188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216] -metadata/connected_nodes_paths = [NodePath("Bone-1"), NodePath("Bone-3")] -metadata/_local_pose_override_enabled_ = true +[node name="Joint2D-Bone-3-Bone-1" type="PinJoint2D" parent="Asparagus5/Bone-3"] +visible = false +rotation = 0.55785 +node_a = NodePath("..") +node_b = NodePath("../../Bone-1") +bias = 0.2 +softness = 8.0 -[node name="Bone-3" type="Bone2D" parent="Asparagus5/Skeleton2D"] -position = Vector2(32.5, 130.753) -rotation = 1.66702 -rest = Transform2D(-0.0960779, 0.995374, -0.995374, -0.0960779, 32.5, 130.753) -auto_calculate_length_and_angle = false -length = 30.0 -bone_angle = 0.0 -metadata/vert_owned = [217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239] -metadata/connected_nodes_paths = [NodePath("Bone-2"), NodePath("Bone-4")] -metadata/_local_pose_override_enabled_ = true +[node name="Bone-4" type="RigidBody2D" parent="Asparagus5" instance=ExtResource("3_6ern4")] +position = Vector2(36.5, 71) +input_pickable = true +mass = 0.0588235 +physics_material_override = ExtResource("3_durpg") +script = ExtResource("11_tqnjl") +metadata/idx = 4 +metadata/bone_name = &"Bone-4" -[node name="Bone-4" type="Bone2D" parent="Asparagus5/Skeleton2D"] -position = Vector2(29.5, 161.833) -rotation = 1.42421 -rest = Transform2D(0.146064, 0.989275, -0.989275, 0.146064, 29.5, 161.833) -auto_calculate_length_and_angle = false -length = 30.0 -bone_angle = 0.0 -metadata/vert_owned = [240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265] -metadata/connected_nodes_paths = [NodePath("Bone-3"), NodePath("Bone-5")] -metadata/_local_pose_override_enabled_ = true +[node name="RectangleShape2D" type="CollisionShape2D" parent="Asparagus5/Bone-4"] +shape = SubResource("RectangleShape2D_sei3x") -[node name="Bone-5" type="Bone2D" parent="Asparagus5/Skeleton2D"] -position = Vector2(34, 192.311) -rotation = 1.54339 -rest = Transform2D(0.0274058, 0.999624, -0.999624, 0.0274058, 34, 192.311) -auto_calculate_length_and_angle = false -length = 30.0 -bone_angle = 0.0 -metadata/vert_owned = [266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286] -metadata/connected_nodes_paths = [NodePath("Bone-4"), NodePath("Bone-6")] -metadata/_local_pose_override_enabled_ = true +[node name="RemoteTransform2D" type="RemoteTransform2D" parent="Asparagus5/Bone-4"] +visible = false +remote_path = NodePath("../../Skeleton2D/Bone-4") +update_rotation = false +update_scale = false -[node name="Bone-6" type="Bone2D" parent="Asparagus5/Skeleton2D"] -position = Vector2(34.8303, 222.597) -rotation = 1.49729 -scale = Vector2(1, 1) -rest = Transform2D(0.0734363, 0.9973, -0.9973, 0.0734363, 34.8303, 222.597) -auto_calculate_length_and_angle = false -length = 30.0 -bone_angle = 0.0 -metadata/vert_owned = [287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310] -metadata/connected_nodes_paths = [NodePath("Bone-5"), NodePath("Bone-7")] -metadata/_local_pose_override_enabled_ = true +[node name="Joint2D-Bone-4-Bone-5" type="PinJoint2D" parent="Asparagus5/Bone-4"] +visible = false +rotation = 0.0111107 +node_a = NodePath("..") +node_b = NodePath("../../Bone-5") +bias = 0.2 +softness = 8.0 -[node name="Bone-7" type="Bone2D" parent="Asparagus5/Skeleton2D"] -position = Vector2(37, 252.062) -rotation = 1.48206 -rest = Transform2D(0.0886183, 0.996066, -0.996066, 0.0886183, 37, 252.062) -auto_calculate_length_and_angle = false -length = 30.0 -bone_angle = 0.0 -metadata/vert_owned = [311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331] -metadata/connected_nodes_paths = [NodePath("Bone-6"), NodePath("Bone-8")] -metadata/_local_pose_override_enabled_ = true +[node name="Joint2D-Bone-4-Bone-3" type="PinJoint2D" parent="Asparagus5/Bone-4"] +visible = false +rotation = -3.15097 +node_a = NodePath("..") +node_b = NodePath("../../Bone-3") +bias = 0.2 +softness = 8.0 -[node name="Bone-8" type="Bone2D" parent="Asparagus5/Skeleton2D"] -position = Vector2(39.5721, 280.973) -rotation = 1.50803 -scale = Vector2(1, 1) -rest = Transform2D(0.062724, 0.998031, -0.998031, 0.062724, 39.5721, 280.973) -auto_calculate_length_and_angle = false -length = 30.0 -bone_angle = 0.0 -metadata/vert_owned = [332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352] -metadata/connected_nodes_paths = [NodePath("Bone-7"), NodePath("Bone-9")] -metadata/_local_pose_override_enabled_ = true +[node name="Joint2D-Bone-4-Bone-0" type="PinJoint2D" parent="Asparagus5/Bone-4"] +visible = false +rotation = -3.47529 +node_a = NodePath("..") +node_b = NodePath("../../Bone-0") +bias = 0.2 +softness = 8.0 -[node name="Bone-9" type="Bone2D" parent="Asparagus5/Skeleton2D"] -position = Vector2(41.5, 311.648) +[node name="Joint2D-Bone-4-Bone-1" type="PinJoint2D" parent="Asparagus5/Bone-4"] +visible = false rotation = 1.5708 -rest = Transform2D(1.02917e-06, 1, -1, 1.02917e-06, 41.5, 311.648) -auto_calculate_length_and_angle = false -length = 30.0 -bone_angle = 0.0 -metadata/vert_owned = [353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367] -metadata/connected_nodes_paths = [NodePath("Bone-8"), NodePath("Bone-10")] -metadata/_local_pose_override_enabled_ = true +node_a = NodePath("..") +node_b = NodePath("../../Bone-1") +bias = 0.2 +softness = 8.0 -[node name="Bone-10" type="Bone2D" parent="Asparagus5/Skeleton2D"] -position = Vector2(41.5, 343.032) +[node name="Joint2D-Bone-4-Bone-2" type="PinJoint2D" parent="Asparagus5/Bone-4"] +visible = false +rotation = 0.588003 +node_a = NodePath("..") +node_b = NodePath("../../Bone-2") +bias = 0.2 +softness = 8.0 + +[node name="Bone-5" type="RigidBody2D" parent="Asparagus5" instance=ExtResource("3_6ern4")] +position = Vector2(36.1667, 101) +input_pickable = true +mass = 0.0588235 +physics_material_override = ExtResource("3_durpg") +script = ExtResource("11_tqnjl") +metadata/idx = 5 +metadata/bone_name = &"Bone-5" + +[node name="RectangleShape2D" type="CollisionShape2D" parent="Asparagus5/Bone-5"] +shape = SubResource("RectangleShape2D_sei3x") + +[node name="RemoteTransform2D" type="RemoteTransform2D" parent="Asparagus5/Bone-5"] +visible = false +remote_path = NodePath("../../Skeleton2D/Bone-5") +update_rotation = false +update_scale = false + +[node name="Joint2D-Bone-5-Bone-4" type="PinJoint2D" parent="Asparagus5/Bone-5"] +visible = false +rotation = -3.13048 +node_a = NodePath("..") +node_b = NodePath("../../Bone-4") +bias = 0.2 +softness = 8.0 + +[node name="Joint2D-Bone-5-Bone-1" type="PinJoint2D" parent="Asparagus5/Bone-5"] +visible = false +rotation = -3.69819 +node_a = NodePath("..") +node_b = NodePath("../../Bone-1") +bias = 0.2 +softness = 8.0 + +[node name="Joint2D-Bone-5-Bone-2" type="PinJoint2D" parent="Asparagus5/Bone-5"] +visible = false rotation = 1.5708 -rest = Transform2D(-4.37114e-08, 1, -1, -4.37114e-08, 41.5, 343.032) -auto_calculate_length_and_angle = false -length = 30.0 -bone_angle = 0.0 -metadata/vert_owned = [368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378] -metadata/connected_nodes_paths = [NodePath("Bone-9"), NodePath("Bone-11")] -metadata/_local_pose_override_enabled_ = true +node_a = NodePath("..") +node_b = NodePath("../../Bone-2") +bias = 0.2 +softness = 8.0 -[node name="Bone-11" type="Bone2D" parent="Asparagus5/Skeleton2D"] -position = Vector2(41.5, 374.305) -rotation = -1.5708 -rest = Transform2D(-4.37114e-08, -1, 1, -4.37114e-08, 41.5, 374.305) -auto_calculate_length_and_angle = false -length = 30.0 -bone_angle = 0.0 -metadata/vert_owned = [379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411] -metadata/connected_nodes_paths = [NodePath("Bone-10")] -metadata/_local_pose_override_enabled_ = true +[node name="Joint2D-Bone-5-Bone-6" type="PinJoint2D" parent="Asparagus5/Bone-5"] +visible = false +rotation = 0.121619 +node_a = NodePath("..") +node_b = NodePath("../../Bone-6") +bias = 0.2 +softness = 8.0 + +[node name="Bone-6" type="RigidBody2D" parent="Asparagus5" instance=ExtResource("3_6ern4")] +position = Vector2(32.5, 131) +input_pickable = true +mass = 0.0588235 +physics_material_override = ExtResource("3_durpg") +script = ExtResource("11_tqnjl") +metadata/idx = 6 +metadata/bone_name = &"Bone-6" + +[node name="RectangleShape2D" type="CollisionShape2D" parent="Asparagus5/Bone-6"] +shape = SubResource("RectangleShape2D_sei3x") + +[node name="RemoteTransform2D" type="RemoteTransform2D" parent="Asparagus5/Bone-6"] +visible = false +remote_path = NodePath("../../Skeleton2D/Bone-6") +update_rotation = false +update_scale = false + +[node name="Joint2D-Bone-6-Bone-2" type="PinJoint2D" parent="Asparagus5/Bone-6"] +visible = false +rotation = -3.63155 +node_a = NodePath("..") +node_b = NodePath("../../Bone-2") +bias = 0.2 +softness = 8.0 + +[node name="Joint2D-Bone-6-Bone-7" type="PinJoint2D" parent="Asparagus5/Bone-6"] +visible = false +rotation = 0.463648 +node_a = NodePath("..") +node_b = NodePath("../../Bone-7") +bias = 0.2 +softness = 8.0 + +[node name="Joint2D-Bone-6-Bone-5" type="PinJoint2D" parent="Asparagus5/Bone-6"] +visible = false +rotation = -3.01997 +node_a = NodePath("..") +node_b = NodePath("../../Bone-5") +bias = 0.2 +softness = 8.0 + +[node name="Joint2D-Bone-6-Bone-9" type="PinJoint2D" parent="Asparagus5/Bone-6"] +visible = false +rotation = -0.116142 +node_a = NodePath("..") +node_b = NodePath("../../Bone-9") +bias = 0.2 +softness = 8.0 -[node name="Bone-0" parent="Asparagus5" instance=ExtResource("3_6ern4")] -position = Vector2(29.4222, 34.5338) -mass = 0.0833333 +[node name="Bone-7" type="RigidBody2D" parent="Asparagus5" instance=ExtResource("3_6ern4")] +position = Vector2(17.5, 161) +input_pickable = true +mass = 0.0588235 physics_material_override = ExtResource("3_durpg") -metadata/bone_name = &"Bone-0" +script = ExtResource("11_tqnjl") +metadata/idx = 7 +metadata/bone_name = &"Bone-7" -[node name="RectangleShape2D" type="CollisionShape2D" parent="Asparagus5/Bone-0"] -shape = SubResource("RectangleShape2D_o1g0h") +[node name="RectangleShape2D" type="CollisionShape2D" parent="Asparagus5/Bone-7"] +shape = SubResource("RectangleShape2D_sei3x") -[node name="RemoteTransform2D" type="RemoteTransform2D" parent="Asparagus5/Bone-0"] -remote_path = NodePath("../../Skeleton2D/Bone-0") +[node name="RemoteTransform2D" type="RemoteTransform2D" parent="Asparagus5/Bone-7"] +visible = false +remote_path = NodePath("../../Skeleton2D/Bone-7") update_rotation = false update_scale = false -[node name="Joint2D-Bone-0-Bone-1" type="PinJoint2D" parent="Asparagus5/Bone-0"] +[node name="Joint2D-Bone-7-Bone-6" type="PinJoint2D" parent="Asparagus5/Bone-7"] visible = false -rotation = -0.0156713 +rotation = -2.67795 node_a = NodePath("..") -node_b = NodePath("../../Bone-1") +node_b = NodePath("../../Bone-6") bias = 0.2 softness = 8.0 -[node name="Bone-1" parent="Asparagus5" instance=ExtResource("3_6ern4")] -position = Vector2(30, 71.3979) -mass = 0.0833333 -physics_material_override = ExtResource("3_durpg") -metadata/bone_name = &"Bone-1" - -[node name="RectangleShape2D" type="CollisionShape2D" parent="Asparagus5/Bone-1"] -shape = SubResource("RectangleShape2D_o1g0h") - -[node name="RemoteTransform2D" type="RemoteTransform2D" parent="Asparagus5/Bone-1"] -remote_path = NodePath("../../Skeleton2D/Bone-1") -update_rotation = false -update_scale = false +[node name="Joint2D-Bone-7-Bone-8" type="PinJoint2D" parent="Asparagus5/Bone-7"] +visible = false +rotation = -0.0499584 +node_a = NodePath("..") +node_b = NodePath("../../Bone-8") +bias = 0.2 +softness = 8.0 -[node name="Joint2D-Bone-1-Bone-0" type="PinJoint2D" parent="Asparagus5/Bone-1"] +[node name="Joint2D-Bone-7-Bone-9" type="PinJoint2D" parent="Asparagus5/Bone-7"] visible = false -rotation = -3.15726 +rotation = -1.5708 node_a = NodePath("..") -node_b = NodePath("../../Bone-0") +node_b = NodePath("../../Bone-9") bias = 0.2 softness = 8.0 -[node name="Joint2D-Bone-1-Bone-2" type="PinJoint2D" parent="Asparagus5/Bone-1"] +[node name="Joint2D-Bone-7-Bone-10" type="PinJoint2D" parent="Asparagus5/Bone-7"] visible = false -rotation = 0.047256 +rotation = -0.621824 node_a = NodePath("..") -node_b = NodePath("../../Bone-2") +node_b = NodePath("../../Bone-10") bias = 0.2 softness = 8.0 -[node name="Bone-2" parent="Asparagus5" instance=ExtResource("3_6ern4")] -position = Vector2(28.6167, 100.649) -mass = 0.0833333 +[node name="Bone-8" type="RigidBody2D" parent="Asparagus5" instance=ExtResource("3_6ern4")] +position = Vector2(19, 191) +input_pickable = true +mass = 0.0588235 physics_material_override = ExtResource("3_durpg") -metadata/bone_name = &"Bone-2" +script = ExtResource("11_tqnjl") +metadata/idx = 8 +metadata/bone_name = &"Bone-8" -[node name="RectangleShape2D" type="CollisionShape2D" parent="Asparagus5/Bone-2"] -shape = SubResource("RectangleShape2D_o1g0h") +[node name="RectangleShape2D" type="CollisionShape2D" parent="Asparagus5/Bone-8"] +shape = SubResource("RectangleShape2D_sei3x") -[node name="RemoteTransform2D" type="RemoteTransform2D" parent="Asparagus5/Bone-2"] -remote_path = NodePath("../../Skeleton2D/Bone-2") +[node name="RemoteTransform2D" type="RemoteTransform2D" parent="Asparagus5/Bone-8"] +visible = false +remote_path = NodePath("../../Skeleton2D/Bone-8") update_rotation = false update_scale = false -[node name="Joint2D-Bone-2-Bone-1" type="PinJoint2D" parent="Asparagus5/Bone-2"] +[node name="Joint2D-Bone-8-Bone-7" type="PinJoint2D" parent="Asparagus5/Bone-8"] visible = false -rotation = -3.09434 +rotation = -3.19155 node_a = NodePath("..") -node_b = NodePath("../../Bone-1") +node_b = NodePath("../../Bone-7") bias = 0.2 softness = 8.0 -[node name="Joint2D-Bone-2-Bone-3" type="PinJoint2D" parent="Asparagus5/Bone-2"] +[node name="Joint2D-Bone-8-Bone-11" type="PinJoint2D" parent="Asparagus5/Bone-8"] visible = false -rotation = -0.128287 +rotation = -0.480441 node_a = NodePath("..") -node_b = NodePath("../../Bone-3") +node_b = NodePath("../../Bone-11") bias = 0.2 softness = 8.0 -[node name="Bone-3" parent="Asparagus5" instance=ExtResource("3_6ern4")] -position = Vector2(32.5, 130.753) -mass = 0.0833333 -physics_material_override = ExtResource("3_durpg") -metadata/bone_name = &"Bone-3" - -[node name="RectangleShape2D" type="CollisionShape2D" parent="Asparagus5/Bone-3"] -shape = SubResource("RectangleShape2D_o1g0h") - -[node name="RemoteTransform2D" type="RemoteTransform2D" parent="Asparagus5/Bone-3"] -remote_path = NodePath("../../Skeleton2D/Bone-3") -update_rotation = false -update_scale = false - -[node name="Joint2D-Bone-3-Bone-2" type="PinJoint2D" parent="Asparagus5/Bone-3"] +[node name="Joint2D-Bone-8-Bone-9" type="PinJoint2D" parent="Asparagus5/Bone-8"] visible = false -rotation = -3.26988 +rotation = -2.62604 node_a = NodePath("..") -node_b = NodePath("../../Bone-2") +node_b = NodePath("../../Bone-9") bias = 0.2 softness = 8.0 -[node name="Joint2D-Bone-3-Bone-4" type="PinJoint2D" parent="Asparagus5/Bone-3"] +[node name="Joint2D-Bone-8-Bone-10" type="PinJoint2D" parent="Asparagus5/Bone-8"] visible = false -rotation = 0.0962263 +rotation = -1.5708 node_a = NodePath("..") -node_b = NodePath("../../Bone-4") +node_b = NodePath("../../Bone-10") bias = 0.2 softness = 8.0 -[node name="Bone-4" parent="Asparagus5" instance=ExtResource("3_6ern4")] -position = Vector2(29.5, 161.833) -mass = 0.0833333 +[node name="Bone-9" type="RigidBody2D" parent="Asparagus5" instance=ExtResource("3_6ern4")] +position = Vector2(36, 161) +input_pickable = true +mass = 0.0588235 physics_material_override = ExtResource("3_durpg") -metadata/bone_name = &"Bone-4" +script = ExtResource("11_tqnjl") +metadata/idx = 9 +metadata/bone_name = &"Bone-9" -[node name="RectangleShape2D" type="CollisionShape2D" parent="Asparagus5/Bone-4"] -shape = SubResource("RectangleShape2D_o1g0h") +[node name="RectangleShape2D" type="CollisionShape2D" parent="Asparagus5/Bone-9"] +shape = SubResource("RectangleShape2D_sei3x") -[node name="RemoteTransform2D" type="RemoteTransform2D" parent="Asparagus5/Bone-4"] -remote_path = NodePath("../../Skeleton2D/Bone-4") +[node name="RemoteTransform2D" type="RemoteTransform2D" parent="Asparagus5/Bone-9"] +visible = false +remote_path = NodePath("../../Skeleton2D/Bone-9") update_rotation = false update_scale = false -[node name="Joint2D-Bone-4-Bone-3" type="PinJoint2D" parent="Asparagus5/Bone-4"] +[node name="Joint2D-Bone-9-Bone-10" type="PinJoint2D" parent="Asparagus5/Bone-9"] visible = false -rotation = -3.04537 +rotation = -0.0996687 node_a = NodePath("..") -node_b = NodePath("../../Bone-3") +node_b = NodePath("../../Bone-10") bias = 0.2 softness = 8.0 -[node name="Joint2D-Bone-4-Bone-5" type="PinJoint2D" parent="Asparagus5/Bone-4"] +[node name="Joint2D-Bone-9-Bone-6" type="PinJoint2D" parent="Asparagus5/Bone-9"] visible = false -rotation = -0.146588 +rotation = -3.25773 node_a = NodePath("..") -node_b = NodePath("../../Bone-5") +node_b = NodePath("../../Bone-6") +bias = 0.2 +softness = 8.0 + +[node name="Joint2D-Bone-9-Bone-7" type="PinJoint2D" parent="Asparagus5/Bone-9"] +visible = false +rotation = 1.5708 +node_a = NodePath("..") +node_b = NodePath("../../Bone-7") +bias = 0.2 +softness = 8.0 + +[node name="Joint2D-Bone-9-Bone-8" type="PinJoint2D" parent="Asparagus5/Bone-9"] +visible = false +rotation = 0.515549 +node_a = NodePath("..") +node_b = NodePath("../../Bone-8") bias = 0.2 softness = 8.0 -[node name="Bone-5" parent="Asparagus5" instance=ExtResource("3_6ern4")] -position = Vector2(34, 192.311) -mass = 0.0833333 +[node name="Bone-10" type="RigidBody2D" parent="Asparagus5" instance=ExtResource("3_6ern4")] +position = Vector2(39, 191) +input_pickable = true +mass = 0.0588235 physics_material_override = ExtResource("3_durpg") -metadata/bone_name = &"Bone-5" +script = ExtResource("11_tqnjl") +metadata/idx = 10 +metadata/bone_name = &"Bone-10" -[node name="RectangleShape2D" type="CollisionShape2D" parent="Asparagus5/Bone-5"] -shape = SubResource("RectangleShape2D_o1g0h") +[node name="RectangleShape2D" type="CollisionShape2D" parent="Asparagus5/Bone-10"] +shape = SubResource("RectangleShape2D_sei3x") -[node name="RemoteTransform2D" type="RemoteTransform2D" parent="Asparagus5/Bone-5"] -remote_path = NodePath("../../Skeleton2D/Bone-5") +[node name="RemoteTransform2D" type="RemoteTransform2D" parent="Asparagus5/Bone-10"] +visible = false +remote_path = NodePath("../../Skeleton2D/Bone-10") update_rotation = false update_scale = false -[node name="Joint2D-Bone-5-Bone-4" type="PinJoint2D" parent="Asparagus5/Bone-5"] +[node name="Joint2D-Bone-10-Bone-11" type="PinJoint2D" parent="Asparagus5/Bone-10"] visible = false -rotation = -3.28818 +rotation = 0.144482 node_a = NodePath("..") -node_b = NodePath("../../Bone-4") +node_b = NodePath("../../Bone-11") bias = 0.2 softness = 8.0 -[node name="Joint2D-Bone-5-Bone-6" type="PinJoint2D" parent="Asparagus5/Bone-5"] +[node name="Joint2D-Bone-10-Bone-9" type="PinJoint2D" parent="Asparagus5/Bone-10"] visible = false -rotation = -0.0274099 +rotation = -3.24126 node_a = NodePath("..") -node_b = NodePath("../../Bone-6") +node_b = NodePath("../../Bone-9") +bias = 0.2 +softness = 8.0 + +[node name="Joint2D-Bone-10-Bone-7" type="PinJoint2D" parent="Asparagus5/Bone-10"] +visible = false +rotation = -3.76342 +node_a = NodePath("..") +node_b = NodePath("../../Bone-7") +bias = 0.2 +softness = 8.0 + +[node name="Joint2D-Bone-10-Bone-8" type="PinJoint2D" parent="Asparagus5/Bone-10"] +visible = false +rotation = 1.5708 +node_a = NodePath("..") +node_b = NodePath("../../Bone-8") bias = 0.2 softness = 8.0 -[node name="Bone-6" parent="Asparagus5" instance=ExtResource("3_6ern4")] -position = Vector2(34.8303, 222.597) -mass = 0.0833333 +[node name="Bone-11" type="RigidBody2D" parent="Asparagus5" instance=ExtResource("3_6ern4")] +position = Vector2(34.6351, 221) +input_pickable = true +mass = 0.0588235 physics_material_override = ExtResource("3_durpg") -metadata/bone_name = &"Bone-6" +script = ExtResource("11_tqnjl") +metadata/idx = 11 +metadata/bone_name = &"Bone-11" -[node name="RectangleShape2D" type="CollisionShape2D" parent="Asparagus5/Bone-6"] -shape = SubResource("RectangleShape2D_o1g0h") +[node name="RectangleShape2D" type="CollisionShape2D" parent="Asparagus5/Bone-11"] +shape = SubResource("RectangleShape2D_sei3x") -[node name="RemoteTransform2D" type="RemoteTransform2D" parent="Asparagus5/Bone-6"] -remote_path = NodePath("../../Skeleton2D/Bone-6") +[node name="RemoteTransform2D" type="RemoteTransform2D" parent="Asparagus5/Bone-11"] +visible = false +remote_path = NodePath("../../Skeleton2D/Bone-11") update_rotation = false update_scale = false -[node name="Joint2D-Bone-6-Bone-5" type="PinJoint2D" parent="Asparagus5/Bone-6"] +[node name="Joint2D-Bone-11-Bone-8" type="PinJoint2D" parent="Asparagus5/Bone-11"] visible = false -rotation = -3.169 +rotation = -3.62203 node_a = NodePath("..") -node_b = NodePath("../../Bone-5") +node_b = NodePath("../../Bone-8") bias = 0.2 softness = 8.0 -[node name="Joint2D-Bone-6-Bone-7" type="PinJoint2D" parent="Asparagus5/Bone-6"] +[node name="Joint2D-Bone-11-Bone-10" type="PinJoint2D" parent="Asparagus5/Bone-11"] visible = false -rotation = -0.073503 +rotation = -2.99711 node_a = NodePath("..") -node_b = NodePath("../../Bone-7") +node_b = NodePath("../../Bone-10") +bias = 0.2 +softness = 8.0 + +[node name="Joint2D-Bone-11-Bone-12" type="PinJoint2D" parent="Asparagus5/Bone-11"] +visible = false +rotation = -0.0799082 +node_a = NodePath("..") +node_b = NodePath("../../Bone-12") bias = 0.2 softness = 8.0 -[node name="Bone-7" parent="Asparagus5" instance=ExtResource("3_6ern4")] -position = Vector2(37, 252.062) -mass = 0.0833333 +[node name="Bone-12" type="RigidBody2D" parent="Asparagus5" instance=ExtResource("3_6ern4")] +position = Vector2(37.0375, 251) +input_pickable = true +mass = 0.0588235 physics_material_override = ExtResource("3_durpg") -metadata/bone_name = &"Bone-7" +script = ExtResource("11_tqnjl") +metadata/idx = 12 +metadata/bone_name = &"Bone-12" -[node name="RectangleShape2D" type="CollisionShape2D" parent="Asparagus5/Bone-7"] -shape = SubResource("RectangleShape2D_o1g0h") +[node name="RectangleShape2D" type="CollisionShape2D" parent="Asparagus5/Bone-12"] +shape = SubResource("RectangleShape2D_sei3x") -[node name="RemoteTransform2D" type="RemoteTransform2D" parent="Asparagus5/Bone-7"] -remote_path = NodePath("../../Skeleton2D/Bone-7") +[node name="RemoteTransform2D" type="RemoteTransform2D" parent="Asparagus5/Bone-12"] +visible = false +remote_path = NodePath("../../Skeleton2D/Bone-12") update_rotation = false update_scale = false -[node name="Joint2D-Bone-7-Bone-6" type="PinJoint2D" parent="Asparagus5/Bone-7"] +[node name="Joint2D-Bone-12-Bone-13" type="PinJoint2D" parent="Asparagus5/Bone-12"] visible = false -rotation = -3.2151 +rotation = -0.12025 node_a = NodePath("..") -node_b = NodePath("../../Bone-6") +node_b = NodePath("../../Bone-13") bias = 0.2 softness = 8.0 -[node name="Joint2D-Bone-7-Bone-8" type="PinJoint2D" parent="Asparagus5/Bone-7"] +[node name="Joint2D-Bone-12-Bone-11" type="PinJoint2D" parent="Asparagus5/Bone-12"] visible = false -rotation = -0.0887343 +rotation = -3.2215 node_a = NodePath("..") -node_b = NodePath("../../Bone-8") +node_b = NodePath("../../Bone-11") bias = 0.2 softness = 8.0 -[node name="Bone-8" parent="Asparagus5" instance=ExtResource("3_6ern4")] -position = Vector2(39.5721, 280.973) -mass = 0.0833333 +[node name="Bone-13" type="RigidBody2D" parent="Asparagus5" instance=ExtResource("3_6ern4")] +position = Vector2(40.6625, 281) +input_pickable = true +mass = 0.0588235 physics_material_override = ExtResource("3_durpg") -metadata/bone_name = &"Bone-8" +script = ExtResource("11_tqnjl") +metadata/idx = 13 +metadata/bone_name = &"Bone-13" -[node name="RectangleShape2D" type="CollisionShape2D" parent="Asparagus5/Bone-8"] -shape = SubResource("RectangleShape2D_o1g0h") +[node name="RectangleShape2D" type="CollisionShape2D" parent="Asparagus5/Bone-13"] +shape = SubResource("RectangleShape2D_sei3x") -[node name="RemoteTransform2D" type="RemoteTransform2D" parent="Asparagus5/Bone-8"] -remote_path = NodePath("../../Skeleton2D/Bone-8") +[node name="RemoteTransform2D" type="RemoteTransform2D" parent="Asparagus5/Bone-13"] +visible = false +remote_path = NodePath("../../Skeleton2D/Bone-13") update_rotation = false update_scale = false -[node name="Joint2D-Bone-8-Bone-7" type="PinJoint2D" parent="Asparagus5/Bone-8"] +[node name="Joint2D-Bone-13-Bone-12" type="PinJoint2D" parent="Asparagus5/Bone-13"] visible = false -rotation = -3.23033 +rotation = -3.26184 node_a = NodePath("..") -node_b = NodePath("../../Bone-7") +node_b = NodePath("../../Bone-12") bias = 0.2 softness = 8.0 -[node name="Joint2D-Bone-8-Bone-9" type="PinJoint2D" parent="Asparagus5/Bone-8"] +[node name="Joint2D-Bone-13-Bone-14" type="PinJoint2D" parent="Asparagus5/Bone-13"] visible = false -rotation = -0.0627657 +rotation = -0.0279095 node_a = NodePath("..") -node_b = NodePath("../../Bone-9") +node_b = NodePath("../../Bone-14") bias = 0.2 softness = 8.0 -[node name="Bone-9" parent="Asparagus5" instance=ExtResource("3_6ern4")] -position = Vector2(41.5, 311.648) -mass = 0.0833333 +[node name="Bone-14" type="RigidBody2D" parent="Asparagus5" instance=ExtResource("3_6ern4")] +position = Vector2(41.5, 311) +input_pickable = true +mass = 0.0588235 physics_material_override = ExtResource("3_durpg") -metadata/bone_name = &"Bone-9" +script = ExtResource("11_tqnjl") +metadata/idx = 14 +metadata/bone_name = &"Bone-14" -[node name="RectangleShape2D" type="CollisionShape2D" parent="Asparagus5/Bone-9"] -shape = SubResource("RectangleShape2D_o1g0h") +[node name="RectangleShape2D" type="CollisionShape2D" parent="Asparagus5/Bone-14"] +shape = SubResource("RectangleShape2D_sei3x") -[node name="RemoteTransform2D" type="RemoteTransform2D" parent="Asparagus5/Bone-9"] -remote_path = NodePath("../../Skeleton2D/Bone-9") +[node name="RemoteTransform2D" type="RemoteTransform2D" parent="Asparagus5/Bone-14"] +visible = false +remote_path = NodePath("../../Skeleton2D/Bone-14") update_rotation = false update_scale = false -[node name="Joint2D-Bone-9-Bone-8" type="PinJoint2D" parent="Asparagus5/Bone-9"] +[node name="Joint2D-Bone-14-Bone-13" type="PinJoint2D" parent="Asparagus5/Bone-14"] visible = false -rotation = -3.20436 +rotation = -3.1695 node_a = NodePath("..") -node_b = NodePath("../../Bone-8") +node_b = NodePath("../../Bone-13") bias = 0.2 softness = 8.0 -[node name="Joint2D-Bone-9-Bone-10" type="PinJoint2D" parent="Asparagus5/Bone-9"] +[node name="Joint2D-Bone-14-Bone-15" type="PinJoint2D" parent="Asparagus5/Bone-14"] visible = false node_a = NodePath("..") -node_b = NodePath("../../Bone-10") +node_b = NodePath("../../Bone-15") bias = 0.2 softness = 8.0 -[node name="Bone-10" parent="Asparagus5" instance=ExtResource("3_6ern4")] -position = Vector2(41.5, 343.032) -mass = 0.0833333 +[node name="Bone-15" type="RigidBody2D" parent="Asparagus5" instance=ExtResource("3_6ern4")] +position = Vector2(41.5, 341) +input_pickable = true +mass = 0.0588235 physics_material_override = ExtResource("3_durpg") -metadata/bone_name = &"Bone-10" +script = ExtResource("11_tqnjl") +metadata/idx = 15 +metadata/bone_name = &"Bone-15" -[node name="RectangleShape2D" type="CollisionShape2D" parent="Asparagus5/Bone-10"] -shape = SubResource("RectangleShape2D_o1g0h") +[node name="RectangleShape2D" type="CollisionShape2D" parent="Asparagus5/Bone-15"] +shape = SubResource("RectangleShape2D_sei3x") -[node name="RemoteTransform2D" type="RemoteTransform2D" parent="Asparagus5/Bone-10"] -remote_path = NodePath("../../Skeleton2D/Bone-10") +[node name="RemoteTransform2D" type="RemoteTransform2D" parent="Asparagus5/Bone-15"] +visible = false +remote_path = NodePath("../../Skeleton2D/Bone-15") update_rotation = false update_scale = false -[node name="Joint2D-Bone-10-Bone-9" type="PinJoint2D" parent="Asparagus5/Bone-10"] +[node name="Joint2D-Bone-15-Bone-14" type="PinJoint2D" parent="Asparagus5/Bone-15"] visible = false rotation = -3.14159 node_a = NodePath("..") -node_b = NodePath("../../Bone-9") +node_b = NodePath("../../Bone-14") bias = 0.2 softness = 8.0 -[node name="Joint2D-Bone-10-Bone-11" type="PinJoint2D" parent="Asparagus5/Bone-10"] +[node name="Joint2D-Bone-15-Bone-16" type="PinJoint2D" parent="Asparagus5/Bone-15"] visible = false node_a = NodePath("..") -node_b = NodePath("../../Bone-11") +node_b = NodePath("../../Bone-16") bias = 0.2 softness = 8.0 -[node name="Bone-11" parent="Asparagus5" instance=ExtResource("3_6ern4")] -position = Vector2(41.5, 374.305) -mass = 0.0833333 +[node name="Bone-16" type="RigidBody2D" parent="Asparagus5" instance=ExtResource("3_6ern4")] +position = Vector2(41.5, 375) +input_pickable = true +mass = 0.0588235 physics_material_override = ExtResource("3_durpg") -metadata/bone_name = &"Bone-11" +script = ExtResource("11_tqnjl") +metadata/idx = 16 +metadata/bone_name = &"Bone-16" -[node name="RectangleShape2D" type="CollisionShape2D" parent="Asparagus5/Bone-11"] -shape = SubResource("RectangleShape2D_o1g0h") +[node name="RectangleShape2D" type="CollisionShape2D" parent="Asparagus5/Bone-16"] +shape = SubResource("RectangleShape2D_sei3x") -[node name="RemoteTransform2D" type="RemoteTransform2D" parent="Asparagus5/Bone-11"] -remote_path = NodePath("../../Skeleton2D/Bone-11") +[node name="RemoteTransform2D" type="RemoteTransform2D" parent="Asparagus5/Bone-16"] +visible = false +remote_path = NodePath("../../Skeleton2D/Bone-16") update_rotation = false update_scale = false -[node name="Joint2D-Bone-11-Bone-10" type="PinJoint2D" parent="Asparagus5/Bone-11"] +[node name="Joint2D-Bone-16-Bone-15" type="PinJoint2D" parent="Asparagus5/Bone-16"] visible = false rotation = -3.14159 node_a = NodePath("..") -node_b = NodePath("../../Bone-10") +node_b = NodePath("../../Bone-15") bias = 0.2 softness = 8.0 @@ -21159,604 +25824,629 @@ position = Vector2(1286, 31) rotation = -0.58652 texture = ExtResource("8_r18ij") skeleton = NodePath("Skeleton2D") -polygon = PackedVector2Array(37, 21, 34, 26, 33, 26, 31, 32, 30, 32, 24, 49, 23, 49, 17, 70, 16, 70, 15, 76, 15, 82, 13, 87, 13, 111, 16, 120, 16, 123, 23, 135, 23, 137, 25, 137, 25, 139, 40, 152, 42, 152, 42, 154, 44, 154, 46, 157, 47, 157, 47, 159, 49, 159, 55, 171, 56, 171, 59, 183, 59, 197, 56, 209, 56, 213, 55, 214, 54, 214, 54, 219, 49, 230, 49, 233, 48, 234, 47, 234, 46, 236, 46, 239, 39, 250, 39, 253, 37, 253, 35, 257, 35, 260, 33, 260, 32, 262, 32, 264, 20, 280, 20, 281, 262, 281, 269, 265, 270, 265, 276, 246, 277, 246, 283, 220, 284, 220, 286, 202, 287, 202, 287, 173, 284, 164, 284, 160, 282, 158, 282, 155, 277, 147, 277, 145, 275, 145, 275, 143, 272, 141, 272, 139, 257, 127, 255, 127, 255, 125, 250, 120, 249, 120, 245, 111, 244, 111, 242, 100, 241, 100, 241, 88, 248, 67, 248, 64, 249, 63, 250, 63, 255, 53, 255, 51, 257, 49, 258, 49, 262, 42, 262, 40, 264, 40, 265, 38, 265, 36, 267, 36, 267, 34, 270, 32, 270, 30, 280, 20, 280, 19, 37, 19, 65.8553, 28.0775, 65.5366, 63.1079, 30.815, 63.0388, 30.6569, 28.1166, 65.5171, 27.7391, 30.815, 63.0388, 30.4871, 63.3633, 18.928, 63.2519, 23, 49, 24, 49, 30, 32, 30.6745, 32, 65.5171, 27.7391, 32.3004, 28.0988, 33, 26, 34, 26, 37, 21, 37, 19, 65.5062, 19, 65.5366, 63.1079, 65.6774, 63.2492, 65.6705, 65, 65, 65, 65, 67, 61, 71, 60, 71, 56, 78, 55, 78, 55, 81, 53, 83, 53, 87, 51, 89, 51, 98.1339, 30.574, 98.1106, 30.4871, 63.3633, 30.815, 63.0388, 30.4871, 63.3633, 30.574, 98.1106, 30.3336, 98.3536, 13, 98.2786, 13, 87, 15, 82, 15, 76, 16, 70, 17, 70, 18.928, 63.2519, 51, 98.1339, 51, 102, 55, 109, 55, 111, 58, 114, 58, 116, 60, 116, 61, 117, 61, 119, 65.4683, 122.192, 65.3487, 133.183, 65.3483, 133.183, 30.5374, 132.986, 30.3336, 98.3536, 30.574, 98.1106, 30.3336, 98.3536, 30.5374, 132.986, 30.3521, 133.172, 21.925, 133.157, 16, 123, 16, 120, 13, 111, 13, 98.2786, 65.3483, 133.183, 65.516, 168.254, 65.433, 168.338, 53.6497, 168.299, 49, 159, 47, 159, 47, 157, 46, 157, 44, 154, 42, 154, 42, 152, 40, 152, 30.3235, 143.614, 30.3521, 133.172, 30.5374, 132.986, 30.3521, 133.172, 30.3235, 143.614, 25, 139, 25, 137, 23, 137, 23, 135, 21.925, 133.157, 100.791, 28.4421, 100.596, 57, 75, 57, 75, 58, 74, 59, 72, 59, 68.4521, 63.2575, 65.6774, 63.2492, 65.5366, 63.1079, 65.8553, 28.0775, 100.404, 28.0557, 100.404, 28.0557, 65.8553, 28.0775, 65.5171, 27.7391, 65.5062, 19, 100.522, 19, 68.4521, 63.2575, 67, 65, 65.6705, 65, 65.6774, 63.2492, 78.8768, 133.189, 82, 136, 84, 136, 88, 141, 89, 141, 89, 143, 91, 143, 91, 145, 94, 148, 95, 148, 96, 151, 97, 151, 100.413, 160.101, 100.379, 167.973, 65.516, 168.254, 65.3483, 133.183, 65.3487, 133.183, 68, 124, 68, 126, 70, 127, 72, 127, 78.8768, 133.189, 65.3487, 133.183, 65.4683, 122.192, 103, 167, 104, 167, 104.247, 168.233, 100.63, 168.22, 100.379, 167.973, 100.413, 160.101, 135.794, 57, 100.596, 57, 100.791, 28.4421, 135.567, 28.3839, 135.613, 28.337, 135.567, 28.3839, 100.791, 28.4421, 100.404, 28.0557, 100.522, 19, 135.501, 19, 170.518, 28.2243, 170.615, 57, 135.794, 57, 135.567, 28.3839, 135.613, 28.337, 170.085, 27.7991, 170.085, 27.7991, 135.613, 28.337, 135.501, 19, 170.146, 19, 65.267, 238.179, 65.3192, 238.231, 65.3761, 273.271, 30.5719, 273.238, 30.5526, 273.219, 30.5229, 265.969, 32, 264, 32, 262, 33, 260, 35, 260, 35, 257, 37, 253, 39, 253, 39, 250, 46, 239, 46, 238.143, 30.5526, 273.219, 25.1005, 273.199, 30.5229, 265.969, 30.5526, 273.219, 30.5719, 273.238, 30.4967, 281, 20, 281, 20, 280, 25.1005, 273.199, 65.3761, 273.271, 65.5718, 273.468, 65.5262, 281, 30.4967, 281, 30.5719, 273.238, 100.63, 168.22, 100.433, 203.196, 100.214, 203.413, 65.5973, 202.877, 65.433, 168.338, 65.516, 168.254, 100.379, 167.973, 65.433, 168.338, 65.5973, 202.877, 65.3649, 203.113, 57.4641, 203.143, 59, 197, 59, 183, 56, 171, 55, 171, 53.6509, 168.302, 104.247, 168.234, 106, 177, 106, 203.214, 100.433, 203.196, 100.63, 168.22, 100.214, 203.413, 100.201, 230.799, 100, 231, 99, 231, 99, 235, 97, 238, 97, 238.114, 65.3192, 238.231, 65.267, 238.179, 65.3649, 203.113, 65.5973, 202.877, 65.267, 238.179, 46, 238.143, 46, 236, 47, 234, 48, 234, 49, 233, 49, 230, 54, 219, 54, 214, 55, 214, 56, 213, 56, 209, 57.4641, 203.143, 65.3649, 203.113, 106, 203.214, 106, 207, 104, 214, 104, 219, 103, 221, 102, 221, 101, 226, 101, 230, 100.201, 230.799, 100.214, 203.413, 100.433, 203.196, 97, 241, 95, 242, 95, 243, 100.454, 243, 100.371, 273.199, 65.5718, 273.468, 65.3761, 273.271, 65.3192, 238.231, 97, 238.114, 100.436, 273.263, 100.45, 281, 65.5262, 281, 65.5718, 273.468, 100.371, 273.199, 135.363, 273.434, 100.436, 273.263, 100.371, 273.199, 100.454, 243, 135.277, 243, 135.363, 273.434, 135.364, 273.435, 135.386, 281, 100.45, 281, 100.436, 273.263, 170.571, 273.06, 135.364, 273.435, 135.363, 273.434, 135.277, 243, 170.378, 243, 170.675, 273.164, 170.645, 281, 135.386, 281, 135.364, 273.435, 170.571, 273.06, 205.451, 28.1096, 205.347, 62.9223, 201.058, 62.9417, 203, 61, 203, 58, 205, 58, 205, 57, 170.615, 57, 170.518, 28.2243, 205.374, 28.0309, 205.374, 28.0309, 170.518, 28.2243, 170.085, 27.799, 170.146, 19, 205.435, 19, 240.532, 28.4891, 240.332, 62.9584, 205.525, 63.1007, 205.347, 62.9223, 205.451, 28.1096, 240.941, 28.0838, 240.532, 28.4891, 205.451, 28.1096, 205.374, 28.0309, 205.435, 19, 240.795, 19, 240.697, 63.3272, 240.427, 97.9991, 205.572, 97.9336, 205.525, 63.1007, 240.332, 62.9584, 205.525, 63.1007, 205.572, 97.9336, 205.47, 98.0359, 195, 98.0224, 195, 79, 199, 70, 199, 67, 200, 66, 201, 66, 201, 63, 201.058, 62.9417, 205.347, 62.9223, 248, 64, 248, 67, 241, 88, 241, 98.1005, 240.525, 98.0979, 240.427, 97.9991, 240.697, 63.3272, 248.701, 63.2992, 240.427, 97.9991, 240.525, 98.0979, 240.34, 133.399, 206, 133.12, 206, 133, 205.515, 132.515, 205.47, 98.0359, 205.572, 97.9336, 205.47, 98.0359, 205.515, 132.515, 204, 131, 203, 131, 200, 125, 199, 125, 196, 115, 195, 115, 195, 98.0224, 240.34, 133.399, 240.538, 133.596, 240.483, 166.483, 240, 166, 240, 164, 232, 157, 232, 156, 230, 156, 227, 153, 227, 152, 225, 152, 215, 143, 213, 143, 211, 139, 209, 139, 209, 137, 207, 135, 206, 135, 206, 133.12, 271.846, 28.1542, 270, 30, 270, 32, 267, 34, 267, 36, 265, 36, 265, 38, 264, 40, 262, 40, 262, 42, 258, 49, 257, 49, 255, 51, 255, 53, 250, 63, 249, 63, 248.701, 63.2992, 240.697, 63.3272, 240.332, 62.9584, 240.532, 28.4891, 240.941, 28.0838, 275.435, 24.5651, 271.846, 28.1542, 240.941, 28.0838, 240.795, 19, 275.489, 19, 280, 20, 275.435, 24.5651, 275.489, 19, 280, 19, 275.713, 133.547, 275.801, 168.284, 242.146, 168.146, 240.483, 166.483, 240.538, 133.596, 275.322, 133.164, 241, 98.1005, 241, 100, 242, 100, 244, 111, 245, 111, 249, 120, 250, 120, 255, 125, 255, 127, 257, 127, 264.868, 133.294, 240.538, 133.596, 240.34, 133.399, 240.525, 98.0979, 277, 147, 282, 155, 282, 158, 284, 160, 284, 164, 285.44, 168.321, 275.83, 168.314, 275.801, 168.284, 275.742, 145, 277, 145, 205.702, 272.901, 205.358, 273.241, 170.675, 273.164, 170.571, 273.06, 170.378, 243, 205.81, 243, 205.358, 273.241, 205.419, 281, 170.645, 281, 170.675, 273.164, 240.687, 238.086, 240.796, 273.032, 240.47, 273.36, 205.702, 272.901, 205.81, 243, 225, 243, 228.632, 238.048, 240.537, 237.937, 240.47, 273.36, 240.499, 281, 205.419, 281, 205.358, 273.241, 205.702, 272.901, 275.801, 168.284, 275.83, 168.314, 275.516, 202.974, 247.161, 202.916, 248, 199, 249, 199, 249, 183, 244, 172, 244, 170, 242.146, 168.146, 285.44, 168.321, 287, 173, 287, 202, 286, 202, 285.883, 203.057, 275.629, 203.088, 275.516, 202.974, 275.83, 168.314, 275.516, 202.974, 275.629, 203.088, 275.752, 237.748, 275.539, 237.962, 240.687, 238.086, 240.537, 237.937, 240.516, 219.726, 241, 219, 242, 219, 244, 213, 245, 213, 247.161, 202.916, 240.537, 237.937, 228.632, 238.048, 236, 228, 237, 228, 237, 225, 239, 225, 239, 222, 240.516, 219.726, 284, 220, 283, 220, 278.898, 237.774, 275.752, 237.748, 275.629, 203.088, 285.883, 203.057, 275.678, 272.932, 275.627, 272.983, 240.796, 273.032, 240.687, 238.086, 275.539, 237.962, 262, 281, 240.499, 281, 240.47, 273.36, 240.796, 273.032, 265.501, 272.997, 278.898, 237.774, 277, 246, 276, 246, 275.576, 247.343, 275.539, 237.962, 275.752, 237.748) -polygons = [PackedInt32Array(106, 102, 103), PackedInt32Array(103, 104, 105), PackedInt32Array(105, 106, 103), PackedInt32Array(113, 107, 108), PackedInt32Array(108, 109, 110), PackedInt32Array(111, 112, 113), PackedInt32Array(108, 110, 111), PackedInt32Array(111, 113, 108), PackedInt32Array(120, 114, 115), PackedInt32Array(115, 116, 117), PackedInt32Array(118, 119, 120), PackedInt32Array(120, 115, 117), PackedInt32Array(117, 118, 120), PackedInt32Array(137, 121, 122), PackedInt32Array(122, 123, 124), PackedInt32Array(124, 125, 126), PackedInt32Array(127, 128, 129), PackedInt32Array(129, 130, 131), PackedInt32Array(131, 132, 133), PackedInt32Array(133, 134, 135), PackedInt32Array(135, 136, 137), PackedInt32Array(137, 122, 124), PackedInt32Array(124, 126, 127), PackedInt32Array(131, 133, 135), PackedInt32Array(135, 137, 124), PackedInt32Array(129, 131, 135), PackedInt32Array(135, 124, 127), PackedInt32Array(127, 129, 135), PackedInt32Array(147, 138, 139), PackedInt32Array(139, 140, 141), PackedInt32Array(141, 142, 143), PackedInt32Array(143, 144, 145), PackedInt32Array(146, 147, 139), PackedInt32Array(139, 141, 143), PackedInt32Array(143, 145, 146), PackedInt32Array(146, 139, 143), PackedInt32Array(162, 148, 149), PackedInt32Array(149, 150, 151), PackedInt32Array(151, 152, 153), PackedInt32Array(153, 154, 155), PackedInt32Array(156, 157, 158), PackedInt32Array(158, 159, 160), PackedInt32Array(160, 161, 162), PackedInt32Array(162, 149, 151), PackedInt32Array(153, 155, 156), PackedInt32Array(156, 158, 160), PackedInt32Array(160, 162, 151), PackedInt32Array(153, 156, 160), PackedInt32Array(160, 151, 153), PackedInt32Array(170, 163, 164), PackedInt32Array(164, 165, 166), PackedInt32Array(166, 167, 168), PackedInt32Array(168, 169, 170), PackedInt32Array(170, 164, 166), PackedInt32Array(166, 168, 170), PackedInt32Array(185, 171, 172), PackedInt32Array(172, 173, 174), PackedInt32Array(175, 176, 177), PackedInt32Array(177, 178, 179), PackedInt32Array(179, 180, 181), PackedInt32Array(181, 182, 183), PackedInt32Array(183, 184, 185), PackedInt32Array(172, 174, 175), PackedInt32Array(181, 183, 185), PackedInt32Array(185, 172, 175), PackedInt32Array(179, 181, 185), PackedInt32Array(185, 175, 177), PackedInt32Array(177, 179, 185), PackedInt32Array(192, 186, 187), PackedInt32Array(187, 188, 189), PackedInt32Array(189, 190, 191), PackedInt32Array(192, 187, 189), PackedInt32Array(189, 191, 192), PackedInt32Array(203, 193, 194), PackedInt32Array(195, 196, 197), PackedInt32Array(198, 199, 200), PackedInt32Array(200, 201, 202), PackedInt32Array(202, 203, 194), PackedInt32Array(195, 197, 198), PackedInt32Array(198, 200, 202), PackedInt32Array(202, 194, 195), PackedInt32Array(195, 198, 202), PackedInt32Array(208, 204, 205), PackedInt32Array(205, 206, 207), PackedInt32Array(207, 208, 205), PackedInt32Array(212, 209, 210), PackedInt32Array(210, 211, 212), PackedInt32Array(229, 213, 214), PackedInt32Array(214, 215, 216), PackedInt32Array(216, 217, 218), PackedInt32Array(218, 219, 220), PackedInt32Array(221, 222, 223), PackedInt32Array(223, 224, 225), PackedInt32Array(225, 226, 227), PackedInt32Array(227, 228, 229), PackedInt32Array(229, 214, 216), PackedInt32Array(220, 221, 223), PackedInt32Array(223, 225, 227), PackedInt32Array(227, 229, 216), PackedInt32Array(218, 220, 223), PackedInt32Array(227, 216, 218), PackedInt32Array(218, 223, 227), PackedInt32Array(236, 230, 231), PackedInt32Array(232, 233, 234), PackedInt32Array(235, 236, 231), PackedInt32Array(231, 232, 234), PackedInt32Array(234, 235, 231), PackedInt32Array(237, 238, 239), PackedInt32Array(239, 240, 241), PackedInt32Array(241, 242, 237), PackedInt32Array(237, 239, 241), PackedInt32Array(246, 243, 244), PackedInt32Array(244, 245, 246), PackedInt32Array(252, 247, 248), PackedInt32Array(248, 249, 250), PackedInt32Array(250, 251, 252), PackedInt32Array(252, 248, 250), PackedInt32Array(258, 253, 254), PackedInt32Array(254, 255, 256), PackedInt32Array(256, 257, 258), PackedInt32Array(258, 254, 256), PackedInt32Array(262, 259, 260), PackedInt32Array(260, 261, 262), PackedInt32Array(278, 263, 264), PackedInt32Array(264, 265, 266), PackedInt32Array(266, 267, 268), PackedInt32Array(269, 270, 271), PackedInt32Array(272, 273, 274), PackedInt32Array(275, 276, 277), PackedInt32Array(277, 278, 264), PackedInt32Array(264, 266, 268), PackedInt32Array(269, 271, 272), PackedInt32Array(272, 274, 275), PackedInt32Array(275, 277, 264), PackedInt32Array(264, 268, 269), PackedInt32Array(272, 275, 264), PackedInt32Array(264, 269, 272), PackedInt32Array(281, 279, 280), PackedInt32Array(287, 282, 283), PackedInt32Array(283, 284, 285), PackedInt32Array(285, 286, 287), PackedInt32Array(287, 283, 285), PackedInt32Array(292, 288, 289), PackedInt32Array(289, 290, 291), PackedInt32Array(291, 292, 289), PackedInt32Array(299, 293, 294), PackedInt32Array(294, 295, 296), PackedInt32Array(296, 297, 298), PackedInt32Array(298, 299, 294), PackedInt32Array(294, 296, 298), PackedInt32Array(300, 301, 302), PackedInt32Array(302, 303, 304), PackedInt32Array(306, 307, 308), PackedInt32Array(300, 302, 304), PackedInt32Array(306, 308, 300), PackedInt32Array(300, 304, 305), PackedInt32Array(305, 306, 300), PackedInt32Array(313, 309, 310), PackedInt32Array(310, 311, 312), PackedInt32Array(312, 313, 310), PackedInt32Array(324, 314, 315), PackedInt32Array(315, 316, 317), PackedInt32Array(317, 318, 319), PackedInt32Array(319, 320, 321), PackedInt32Array(321, 322, 323), PackedInt32Array(323, 324, 315), PackedInt32Array(317, 319, 321), PackedInt32Array(323, 315, 317), PackedInt32Array(317, 321, 323), PackedInt32Array(325, 326, 327), PackedInt32Array(327, 328, 329), PackedInt32Array(330, 331, 332), PackedInt32Array(332, 333, 334), PackedInt32Array(335, 336, 337), PackedInt32Array(337, 338, 325), PackedInt32Array(325, 327, 329), PackedInt32Array(332, 334, 335), PackedInt32Array(335, 337, 325), PackedInt32Array(325, 329, 330), PackedInt32Array(332, 335, 325), PackedInt32Array(325, 330, 332), PackedInt32Array(349, 339, 340), PackedInt32Array(341, 342, 343), PackedInt32Array(345, 346, 347), PackedInt32Array(347, 348, 349), PackedInt32Array(349, 340, 341), PackedInt32Array(341, 343, 344), PackedInt32Array(345, 347, 349), PackedInt32Array(349, 341, 344), PackedInt32Array(344, 345, 349), PackedInt32Array(358, 350, 351), PackedInt32Array(352, 353, 354), PackedInt32Array(354, 355, 356), PackedInt32Array(356, 357, 358), PackedInt32Array(352, 354, 356), PackedInt32Array(356, 358, 351), PackedInt32Array(351, 352, 356), PackedInt32Array(363, 359, 360), PackedInt32Array(360, 361, 362), PackedInt32Array(362, 363, 360), PackedInt32Array(368, 364, 365), PackedInt32Array(365, 366, 367), PackedInt32Array(367, 368, 365), PackedInt32Array(373, 369, 370), PackedInt32Array(370, 371, 372), PackedInt32Array(372, 373, 370), PackedInt32Array(378, 374, 375), PackedInt32Array(375, 376, 377), PackedInt32Array(377, 378, 375), PackedInt32Array(383, 379, 380), PackedInt32Array(380, 381, 382), PackedInt32Array(382, 383, 380), PackedInt32Array(393, 384, 385), PackedInt32Array(385, 386, 387), PackedInt32Array(387, 388, 389), PackedInt32Array(390, 391, 392), PackedInt32Array(385, 387, 389), PackedInt32Array(390, 392, 393), PackedInt32Array(393, 385, 389), PackedInt32Array(389, 390, 393), PackedInt32Array(398, 394, 395), PackedInt32Array(395, 396, 397), PackedInt32Array(397, 398, 395), PackedInt32Array(403, 399, 400), PackedInt32Array(400, 401, 402), PackedInt32Array(402, 403, 400), PackedInt32Array(409, 404, 405), PackedInt32Array(405, 406, 407), PackedInt32Array(407, 408, 409), PackedInt32Array(409, 405, 407), PackedInt32Array(414, 410, 411), PackedInt32Array(411, 412, 413), PackedInt32Array(413, 414, 411), PackedInt32Array(426, 415, 416), PackedInt32Array(416, 417, 418), PackedInt32Array(418, 419, 420), PackedInt32Array(420, 421, 422), PackedInt32Array(423, 424, 425), PackedInt32Array(425, 426, 416), PackedInt32Array(416, 418, 420), PackedInt32Array(420, 422, 423), PackedInt32Array(423, 425, 416), PackedInt32Array(416, 420, 423), PackedInt32Array(427, 428, 429), PackedInt32Array(429, 430, 431), PackedInt32Array(431, 432, 433), PackedInt32Array(433, 434, 427), PackedInt32Array(429, 431, 433), PackedInt32Array(433, 427, 429), PackedInt32Array(442, 435, 436), PackedInt32Array(436, 437, 438), PackedInt32Array(439, 440, 441), PackedInt32Array(441, 442, 436), PackedInt32Array(436, 438, 439), PackedInt32Array(439, 441, 436), PackedInt32Array(451, 443, 444), PackedInt32Array(445, 446, 447), PackedInt32Array(447, 448, 449), PackedInt32Array(449, 450, 451), PackedInt32Array(451, 444, 445), PackedInt32Array(445, 447, 449), PackedInt32Array(449, 451, 445), PackedInt32Array(470, 452, 453), PackedInt32Array(453, 454, 455), PackedInt32Array(456, 457, 458), PackedInt32Array(458, 459, 460), PackedInt32Array(461, 462, 463), PackedInt32Array(463, 464, 465), PackedInt32Array(465, 466, 467), PackedInt32Array(468, 469, 470), PackedInt32Array(453, 455, 456), PackedInt32Array(458, 460, 461), PackedInt32Array(461, 463, 465), PackedInt32Array(467, 468, 470), PackedInt32Array(453, 456, 458), PackedInt32Array(458, 461, 465), PackedInt32Array(465, 467, 470), PackedInt32Array(470, 453, 458), PackedInt32Array(458, 465, 470), PackedInt32Array(491, 471, 472), PackedInt32Array(472, 473, 474), PackedInt32Array(474, 475, 476), PackedInt32Array(476, 477, 478), PackedInt32Array(479, 480, 481), PackedInt32Array(483, 484, 485), PackedInt32Array(486, 487, 488), PackedInt32Array(488, 489, 490), PackedInt32Array(490, 491, 472), PackedInt32Array(472, 474, 476), PackedInt32Array(476, 478, 479), PackedInt32Array(479, 481, 482), PackedInt32Array(483, 485, 486), PackedInt32Array(486, 488, 490), PackedInt32Array(490, 472, 476), PackedInt32Array(479, 482, 483), PackedInt32Array(483, 486, 490), PackedInt32Array(490, 476, 479), PackedInt32Array(479, 483, 490), PackedInt32Array(496, 492, 493), PackedInt32Array(493, 494, 495), PackedInt32Array(495, 496, 493), PackedInt32Array(500, 497, 498), PackedInt32Array(498, 499, 500), PackedInt32Array(506, 501, 502), PackedInt32Array(502, 503, 504), PackedInt32Array(504, 505, 506), PackedInt32Array(506, 502, 504), PackedInt32Array(520, 507, 508), PackedInt32Array(508, 509, 510), PackedInt32Array(510, 511, 512), PackedInt32Array(512, 513, 514), PackedInt32Array(515, 516, 517), PackedInt32Array(517, 518, 519), PackedInt32Array(519, 520, 508), PackedInt32Array(512, 514, 515), PackedInt32Array(515, 517, 519), PackedInt32Array(519, 508, 510), PackedInt32Array(512, 515, 519), PackedInt32Array(519, 510, 512), PackedInt32Array(521, 522, 523), PackedInt32Array(523, 524, 525), PackedInt32Array(525, 526, 527), PackedInt32Array(527, 528, 529), PackedInt32Array(529, 530, 521), PackedInt32Array(521, 523, 525), PackedInt32Array(525, 527, 529), PackedInt32Array(529, 521, 525), PackedInt32Array(536, 531, 532), PackedInt32Array(532, 533, 534), PackedInt32Array(534, 535, 536), PackedInt32Array(536, 532, 534), PackedInt32Array(540, 537, 538), PackedInt32Array(538, 539, 540), PackedInt32Array(548, 541, 542), PackedInt32Array(542, 543, 544), PackedInt32Array(544, 545, 546), PackedInt32Array(546, 547, 548), PackedInt32Array(548, 542, 544), PackedInt32Array(544, 546, 548), PackedInt32Array(553, 549, 550), PackedInt32Array(550, 551, 552), PackedInt32Array(552, 553, 550), PackedInt32Array(563, 554, 555), PackedInt32Array(555, 556, 557), PackedInt32Array(557, 558, 559), PackedInt32Array(560, 561, 562), PackedInt32Array(562, 563, 555), PackedInt32Array(555, 557, 559), PackedInt32Array(560, 562, 555), PackedInt32Array(555, 559, 560), PackedInt32Array(571, 564, 565), PackedInt32Array(565, 566, 567), PackedInt32Array(567, 568, 569), PackedInt32Array(569, 570, 571), PackedInt32Array(571, 565, 567), PackedInt32Array(567, 569, 571), PackedInt32Array(583, 572, 573), PackedInt32Array(573, 574, 575), PackedInt32Array(575, 576, 577), PackedInt32Array(577, 578, 579), PackedInt32Array(580, 581, 582), PackedInt32Array(582, 583, 573), PackedInt32Array(573, 575, 577), PackedInt32Array(577, 579, 580), PackedInt32Array(580, 582, 573), PackedInt32Array(573, 577, 580), PackedInt32Array(584, 585, 586), PackedInt32Array(587, 588, 589), PackedInt32Array(589, 590, 591), PackedInt32Array(584, 586, 587), PackedInt32Array(589, 591, 584), PackedInt32Array(584, 587, 589), PackedInt32Array(597, 592, 593), PackedInt32Array(593, 594, 595), PackedInt32Array(595, 596, 597), PackedInt32Array(597, 593, 595), PackedInt32Array(602, 598, 599), PackedInt32Array(599, 600, 601), PackedInt32Array(601, 602, 599), PackedInt32Array(607, 603, 604), PackedInt32Array(604, 605, 606), PackedInt32Array(606, 607, 604), PackedInt32Array(613, 608, 609), PackedInt32Array(610, 611, 612), PackedInt32Array(612, 613, 609), PackedInt32Array(609, 610, 612)] -bones = ["Bone-0", PackedFloat32Array(0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0, 0, 0.7, 0.7, 0.7, 0, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-1", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 1, 0.7, 1, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-2", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 1, 0.7, 0.7, 0.7, 0.7, 0.7, 1, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-3", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 1, 0.7, 0.7, 0.7, 0.7, 0.7, 1, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0.7, 0.7, 0.7, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0.7, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-4", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-5", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 1, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-6", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-7", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-8", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-9", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 1, 0.7, 0.7, 0.7, 1, 1, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-10", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0.7, 0.7, 0, 0.7, 0.7, 0.7, 0.7, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 1, 1, 1, 0.7, 0.7, 0.7, 0.7, 1, 0.7, 0.7, 1, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-11", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-12", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-13", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-14", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0.7, 0.7, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 1, 1, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0.7, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-15", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0.7, 0.7, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-16", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-17", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 1, 1, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 1, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-18", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 1, 0.7, 0.7, 0.7, 0.7, 0.7, 1, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-19", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0.7, 0.7, 0.7, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 1, 0.7, 1, 0.7, 0.7, 0.7, 1, 1, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-20", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-21", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0), "Bone-22", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-23", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0.7, 0.7), "Bone-24", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7)] -internal_vertex_count = 512 +polygon = PackedVector2Array(37, 21, 34, 26, 33, 26, 31, 32, 30, 32, 24, 49, 23, 49, 17, 70, 16, 70, 15, 76, 15, 82, 13, 87, 13, 111, 16, 120, 16, 123, 23, 135, 23, 137, 25, 137, 25, 139, 40, 152, 42, 152, 42, 154, 44, 154, 46, 157, 47, 157, 47, 159, 49, 159, 55, 171, 56, 171, 59, 183, 59, 197, 56, 209, 56, 213, 55, 214, 54, 214, 54, 219, 49, 230, 49, 233, 48, 234, 47, 234, 46, 236, 46, 239, 39, 250, 39, 253, 37, 253, 35, 257, 35, 260, 33, 260, 32, 262, 32, 264, 20, 280, 20, 281, 262, 281, 269, 265, 270, 265, 276, 246, 277, 246, 283, 220, 284, 220, 286, 202, 287, 202, 287, 173, 284, 164, 284, 160, 282, 158, 282, 155, 277, 147, 277, 145, 275, 145, 275, 143, 272, 141, 272, 139, 257, 127, 255, 127, 255, 125, 250, 120, 249, 120, 245, 111, 244, 111, 242, 100, 241, 100, 241, 88, 248, 67, 248, 64, 249, 63, 250, 63, 255, 53, 255, 51, 257, 49, 258, 49, 262, 42, 262, 40, 264, 40, 265, 38, 265, 36, 267, 36, 267, 34, 270, 32, 270, 30, 280, 20, 280, 19, 37, 19, 48, 45.67, 30.5, 45.67, 30.5, 32, 31, 32, 32.2767, 28.17, 48, 28.17, 65.5, 63.17, 48, 63.17, 48, 45.67, 65.5, 45.67, 48, 63.17, 30.5, 63.17, 30.5, 45.67, 48, 45.67, 65.5, 45.67, 48, 45.67, 48, 28.17, 65.5, 28.17, 30.5, 63.17, 18.9514, 63.17, 23, 49, 24, 49, 25.1753, 45.67, 30.5, 45.67, 30.5, 45.67, 25.1753, 45.67, 30, 32, 30.5, 32, 65.5, 28.17, 48, 28.17, 48, 19, 65.5, 19, 48, 28.17, 32.2767, 28.17, 33, 26, 34, 26, 37, 21, 37, 19, 48, 19, 48, 80.67, 30.5, 80.67, 30.5, 63.17, 48, 63.17, 55, 81, 53, 83, 53, 87, 51, 89, 51, 98.17, 48, 98.17, 48, 80.67, 55, 80.67, 48, 98.17, 30.5, 98.17, 30.5, 80.67, 48, 80.67, 65.5, 65, 65, 65, 65, 67, 61, 71, 60, 71, 56, 78, 55, 78, 55, 80.67, 48, 80.67, 48, 63.17, 65.5, 63.17, 30.5, 98.17, 13, 98.17, 13, 87, 15, 82, 15, 80.67, 30.5, 80.67, 30.5, 80.67, 15, 80.67, 15, 76, 16, 70, 17, 70, 18.9514, 63.17, 30.5, 63.17, 48, 115.67, 30.5, 115.67, 30.5, 98.17, 48, 98.17, 58, 116, 60, 116, 61, 117, 61, 119, 65.5, 122.214, 65.5, 133.17, 48, 133.17, 48, 115.67, 58, 115.67, 48, 133.17, 30.5, 133.17, 30.5, 115.67, 48, 115.67, 51, 102, 55, 109, 55, 111, 58, 114, 58, 115.67, 48, 115.67, 48, 98.17, 51, 98.17, 30.5, 133.17, 21.9325, 133.17, 16, 123, 16, 120, 14.5567, 115.67, 30.5, 115.67, 30.5, 115.67, 14.5567, 115.67, 13, 111, 13, 98.17, 30.5, 98.17, 48, 150.67, 38.4654, 150.67, 30.5, 143.767, 30.5, 133.17, 48, 133.17, 65.5, 168.17, 53.585, 168.17, 49, 159, 48, 159, 48, 150.67, 65.5, 150.67, 48, 159, 47, 159, 47, 157, 46, 157, 44, 154, 42, 154, 42, 152, 40, 152, 38.4654, 150.67, 48, 150.67, 65.5, 150.67, 48, 150.67, 48, 133.17, 65.5, 133.17, 30.5, 143.767, 25, 139, 25, 137, 23, 137, 23, 135, 21.9325, 133.17, 30.5, 133.17, 83, 45.67, 65.5, 45.67, 65.5, 28.17, 83, 28.17, 100.5, 57, 83, 57, 83, 45.67, 100.5, 45.67, 83, 57, 75, 57, 75, 58, 74, 59, 72, 59, 68.525, 63.17, 65.5, 63.17, 65.5, 45.67, 83, 45.67, 100.5, 45.67, 83, 45.67, 83, 28.17, 100.5, 28.17, 100.5, 28.17, 83, 28.17, 83, 19, 100.5, 19, 83, 28.17, 65.5, 28.17, 65.5, 19, 83, 19, 67, 65, 65.5, 65, 65.5, 63.17, 68.525, 63.17, 82, 136, 83, 136, 83, 150.67, 65.5, 150.67, 65.5, 133.17, 78.8556, 133.17, 96, 151, 97, 151, 100.5, 160.333, 100.5, 168.17, 83, 168.17, 83, 150.67, 95.89, 150.67, 83, 168.17, 65.5, 168.17, 65.5, 150.67, 83, 150.67, 84, 136, 88, 141, 89, 141, 89, 143, 91, 143, 91, 145, 94, 148, 95, 148, 95.89, 150.67, 83, 150.67, 83, 136, 68, 124, 68, 126, 70, 127, 72, 127, 78.8556, 133.17, 65.5, 133.17, 65.5, 122.214, 103, 167, 104, 167, 104.234, 168.17, 100.5, 168.17, 100.5, 160.333, 118, 45.67, 100.5, 45.67, 100.5, 28.17, 118, 28.17, 135.5, 57, 118, 57, 118, 45.67, 135.5, 45.67, 118, 57, 100.5, 57, 100.5, 45.67, 118, 45.67, 135.5, 45.67, 118, 45.67, 118, 28.17, 135.5, 28.17, 135.5, 28.17, 118, 28.17, 118, 19, 135.5, 19, 118, 28.17, 100.5, 28.17, 100.5, 19, 118, 19, 153, 45.67, 135.5, 45.67, 135.5, 28.17, 153, 28.17, 170.5, 57, 153, 57, 153, 45.67, 170.5, 45.67, 153, 57, 135.5, 57, 135.5, 45.67, 153, 45.67, 170.5, 45.67, 153, 45.67, 153, 28.17, 170.5, 28.17, 170.5, 28.17, 153, 28.17, 153, 19, 170.5, 19, 153, 28.17, 135.5, 28.17, 135.5, 19, 153, 19, 48, 255.67, 35.665, 255.67, 37, 253, 39, 253, 39, 250, 46, 239, 46, 238.17, 48, 238.17, 65.5, 273.17, 48, 273.17, 48, 255.67, 65.5, 255.67, 48, 273.17, 30.5, 273.17, 30.5, 266, 32, 264, 32, 262, 33, 260, 35, 260, 35, 257, 35.665, 255.67, 48, 255.67, 65.5, 255.67, 48, 255.67, 48, 238.17, 65.5, 238.17, 30.5, 273.17, 25.1225, 273.17, 30.5, 266, 30.5, 281, 20, 281, 20, 280, 25.1225, 273.17, 30.5, 273.17, 48, 281, 30.5, 281, 30.5, 273.17, 48, 273.17, 65.5, 281, 48, 281, 48, 273.17, 65.5, 273.17, 83, 185.67, 65.5, 185.67, 65.5, 168.17, 83, 168.17, 100.5, 203.17, 83, 203.17, 83, 185.67, 100.5, 185.67, 83, 203.17, 65.5, 203.17, 65.5, 185.67, 83, 185.67, 100.5, 185.67, 83, 185.67, 83, 168.17, 100.5, 168.17, 65.5, 203.17, 57.4575, 203.17, 59, 197, 59, 185.67, 65.5, 185.67, 65.5, 185.67, 59, 185.67, 59, 183, 56, 171, 55, 171, 53.585, 168.17, 65.5, 168.17, 106, 177, 106, 185.67, 100.5, 185.67, 100.5, 168.17, 104.234, 168.17, 106, 203.17, 100.5, 203.17, 100.5, 185.67, 106, 185.67, 83, 220.67, 65.5, 220.67, 65.5, 203.17, 83, 203.17, 100.5, 230.5, 100, 231, 99, 231, 99, 235, 97, 238, 97, 238.17, 83, 238.17, 83, 220.67, 100.5, 220.67, 83, 238.17, 65.5, 238.17, 65.5, 220.67, 83, 220.67, 100.5, 220.67, 83, 220.67, 83, 203.17, 100.5, 203.17, 65.5, 238.17, 48, 238.17, 48, 234, 49, 233, 49, 230, 53.2409, 220.67, 65.5, 220.67, 48, 238.17, 46, 238.17, 46, 236, 47, 234, 48, 234, 65.5, 220.67, 53.2409, 220.67, 54, 219, 54, 214, 55, 214, 56, 213, 56, 209, 57.4575, 203.17, 65.5, 203.17, 106, 207, 104, 214, 104, 219, 103.165, 220.67, 100.5, 220.67, 100.5, 203.17, 106, 203.17, 103, 221, 102, 221, 101, 226, 101, 230, 100.5, 230.5, 100.5, 220.67, 103.165, 220.67, 83, 255.67, 65.5, 255.67, 65.5, 238.17, 83, 238.17, 100.5, 273.17, 83, 273.17, 83, 255.67, 100.5, 255.67, 83, 273.17, 65.5, 273.17, 65.5, 255.67, 83, 255.67, 97, 241, 95, 242, 95, 243, 100.5, 243, 100.5, 255.67, 83, 255.67, 83, 238.17, 97, 238.17, 83, 281, 65.5, 281, 65.5, 273.17, 83, 273.17, 100.5, 281, 83, 281, 83, 273.17, 100.5, 273.17, 118, 255.67, 100.5, 255.67, 100.5, 243, 118, 243, 135.5, 273.17, 118, 273.17, 118, 255.67, 135.5, 255.67, 118, 273.17, 100.5, 273.17, 100.5, 255.67, 118, 255.67, 135.5, 255.67, 118, 255.67, 118, 243, 135.5, 243, 118, 281, 100.5, 281, 100.5, 273.17, 118, 273.17, 135.5, 281, 118, 281, 118, 273.17, 135.5, 273.17, 153, 255.67, 135.5, 255.67, 135.5, 243, 153, 243, 170.5, 273.17, 153, 273.17, 153, 255.67, 170.5, 255.67, 153, 273.17, 135.5, 273.17, 135.5, 255.67, 153, 255.67, 170.5, 255.67, 153, 255.67, 153, 243, 170.5, 243, 153, 281, 135.5, 281, 135.5, 273.17, 153, 273.17, 170.5, 281, 153, 281, 153, 273.17, 170.5, 273.17, 188, 45.67, 170.5, 45.67, 170.5, 28.17, 188, 28.17, 205.5, 63.17, 201, 63.17, 201, 63, 203, 61, 203, 58, 205, 58, 205, 57, 188, 57, 188, 45.67, 205.5, 45.67, 188, 57, 170.5, 57, 170.5, 45.67, 188, 45.67, 205.5, 45.67, 188, 45.67, 188, 28.17, 205.5, 28.17, 205.5, 28.17, 188, 28.17, 188, 19, 205.5, 19, 188, 28.17, 170.5, 28.17, 170.5, 19, 188, 19, 223, 45.67, 205.5, 45.67, 205.5, 28.17, 223, 28.17, 240.5, 63.17, 223, 63.17, 223, 45.67, 240.5, 45.67, 223, 63.17, 205.5, 63.17, 205.5, 45.67, 223, 45.67, 240.5, 45.67, 223, 45.67, 223, 28.17, 240.5, 28.17, 240.5, 28.17, 223, 28.17, 223, 19, 240.5, 19, 223, 28.17, 205.5, 28.17, 205.5, 19, 223, 19, 223, 80.67, 205.5, 80.67, 205.5, 63.17, 223, 63.17, 240.5, 98.17, 223, 98.17, 223, 80.67, 240.5, 80.67, 223, 98.17, 205.5, 98.17, 205.5, 80.67, 223, 80.67, 240.5, 80.67, 223, 80.67, 223, 63.17, 240.5, 63.17, 205.5, 98.17, 195, 98.17, 195, 80.67, 205.5, 80.67, 205.5, 80.67, 195, 80.67, 195, 79, 199, 70, 199, 67, 200, 66, 201, 66, 201, 63.17, 205.5, 63.17, 248, 64, 248, 67, 243.443, 80.67, 240.5, 80.67, 240.5, 63.17, 248.83, 63.17, 241, 88, 241, 98.17, 240.5, 98.17, 240.5, 80.67, 243.443, 80.67, 223, 115.67, 205.5, 115.67, 205.5, 98.17, 223, 98.17, 240.5, 133.17, 223, 133.17, 223, 115.67, 240.5, 115.67, 223, 133.17, 206, 133.17, 206, 133, 205.5, 132.5, 205.5, 115.67, 223, 115.67, 240.5, 115.67, 223, 115.67, 223, 98.17, 240.5, 98.17, 205.5, 132.5, 204, 131, 203, 131, 200, 125, 199, 125, 196.201, 115.67, 205.5, 115.67, 205.5, 115.67, 196.201, 115.67, 196, 115, 195, 115, 195, 98.17, 205.5, 98.17, 223, 150.2, 215, 143, 213, 143, 211, 139, 209, 139, 209, 137, 207, 135, 206, 135, 206, 133.17, 223, 133.17, 240.5, 166.5, 240, 166, 240, 164, 232, 157, 232, 156, 230, 156, 227, 153, 227, 152, 225, 152, 223.522, 150.67, 240.5, 150.67, 240.5, 150.67, 223.522, 150.67, 223, 150.2, 223, 133.17, 240.5, 133.17, 258, 45.67, 240.5, 45.67, 240.5, 28.17, 258, 28.17, 258, 49, 258, 45.67, 259.903, 45.67, 258, 49, 257, 49, 255, 51, 255, 53, 250, 63, 249, 63, 248.83, 63.17, 240.5, 63.17, 240.5, 45.67, 258, 45.67, 270, 30, 270, 32, 267, 34, 267, 36, 265, 36, 265, 38, 264, 40, 262, 40, 262, 42, 259.903, 45.67, 258, 45.67, 258, 28.17, 271.83, 28.17, 275.5, 24.5, 271.83, 28.17, 258, 28.17, 258, 19, 275.5, 19, 258, 28.17, 240.5, 28.17, 240.5, 19, 258, 19, 280, 20, 275.5, 24.5, 275.5, 19, 280, 19, 258, 150.67, 240.5, 150.67, 240.5, 133.17, 258, 133.17, 275.5, 168.17, 258, 168.17, 258, 150.67, 275.5, 150.67, 258, 168.17, 242.17, 168.17, 240.5, 166.5, 240.5, 150.67, 258, 150.67, 272, 139, 272, 141, 275, 143, 275, 145, 275.5, 145, 275.5, 150.67, 258, 150.67, 258, 133.17, 264.712, 133.17, 241, 100, 242, 100, 244, 111, 245, 111, 247.076, 115.67, 240.5, 115.67, 240.5, 98.17, 241, 98.17, 264.712, 133.17, 258, 133.17, 258, 127.8, 249, 120, 250, 120, 255, 125, 255, 127, 257, 127, 258, 127.8, 258, 133.17, 240.5, 133.17, 240.5, 115.67, 247.076, 115.67, 277, 147, 279.294, 150.67, 275.5, 150.67, 275.5, 145, 277, 145, 282, 155, 282, 158, 284, 160, 284, 164, 285.39, 168.17, 275.5, 168.17, 275.5, 150.67, 279.294, 150.67, 188, 255.67, 170.5, 255.67, 170.5, 243, 188, 243, 205.5, 273.17, 188, 273.17, 188, 255.67, 205.5, 255.67, 188, 273.17, 170.5, 273.17, 170.5, 255.67, 188, 255.67, 205.5, 255.67, 188, 255.67, 188, 243, 205.5, 243, 188, 281, 170.5, 281, 170.5, 273.17, 188, 273.17, 205.5, 281, 188, 281, 188, 273.17, 205.5, 273.17, 223, 255.67, 205.5, 255.67, 205.5, 243, 223, 243, 240.5, 273.17, 223, 273.17, 223, 255.67, 240.5, 255.67, 223, 273.17, 205.5, 273.17, 205.5, 255.67, 223, 255.67, 240.5, 255.67, 223, 255.67, 223, 243, 225, 243, 228.542, 238.17, 240.5, 238.17, 223, 281, 205.5, 281, 205.5, 273.17, 223, 273.17, 240.5, 281, 223, 281, 223, 273.17, 240.5, 273.17, 258, 185.67, 249, 185.67, 249, 183, 244, 172, 244, 170, 242.17, 168.17, 258, 168.17, 275.5, 203.17, 258, 203.17, 258, 185.67, 275.5, 185.67, 258, 203.17, 247.106, 203.17, 248, 199, 249, 199, 249, 185.67, 258, 185.67, 275.5, 185.67, 258, 185.67, 258, 168.17, 275.5, 168.17, 287, 173, 287, 185.67, 275.5, 185.67, 275.5, 168.17, 285.39, 168.17, 287, 202, 286, 202, 285.87, 203.17, 275.5, 203.17, 275.5, 185.67, 287, 185.67, 258, 220.67, 240.5, 220.67, 240.5, 219.75, 241, 219, 242, 219, 244, 213, 245, 213, 247.106, 203.17, 258, 203.17, 275.5, 238.17, 258, 238.17, 258, 220.67, 275.5, 220.67, 258, 238.17, 240.5, 238.17, 240.5, 220.67, 258, 220.67, 275.5, 220.67, 258, 220.67, 258, 203.17, 275.5, 203.17, 240.5, 238.17, 228.542, 238.17, 236, 228, 237, 228, 237, 225, 239, 225, 239, 222, 239.887, 220.67, 240.5, 220.67, 240.5, 220.67, 239.887, 220.67, 240.5, 219.75, 284, 220, 283, 220, 282.845, 220.67, 275.5, 220.67, 275.5, 203.17, 285.87, 203.17, 278.807, 238.17, 275.5, 238.17, 275.5, 220.67, 282.845, 220.67, 258, 255.67, 240.5, 255.67, 240.5, 238.17, 258, 238.17, 270, 265, 269, 265, 265.426, 273.17, 258, 273.17, 258, 255.67, 272.946, 255.67, 258, 273.17, 240.5, 273.17, 240.5, 255.67, 258, 255.67, 275.5, 247.583, 272.946, 255.67, 258, 255.67, 258, 238.17, 275.5, 238.17, 258, 281, 240.5, 281, 240.5, 273.17, 258, 273.17, 262, 281, 258, 281, 258, 273.17, 265.426, 273.17, 277, 246, 276, 246, 275.5, 247.583, 275.5, 238.17, 278.807, 238.17) +polygons = [PackedInt32Array(107, 102, 103), PackedInt32Array(103, 104, 105), PackedInt32Array(105, 106, 107), PackedInt32Array(107, 103, 105), PackedInt32Array(111, 108, 109), PackedInt32Array(109, 110, 111), PackedInt32Array(115, 112, 113), PackedInt32Array(113, 114, 115), PackedInt32Array(119, 116, 117), PackedInt32Array(117, 118, 119), PackedInt32Array(125, 120, 121), PackedInt32Array(121, 122, 123), PackedInt32Array(123, 124, 125), PackedInt32Array(125, 121, 123), PackedInt32Array(129, 126, 127), PackedInt32Array(127, 128, 129), PackedInt32Array(133, 130, 131), PackedInt32Array(131, 132, 133), PackedInt32Array(140, 134, 135), PackedInt32Array(135, 136, 137), PackedInt32Array(138, 139, 140), PackedInt32Array(140, 135, 137), PackedInt32Array(137, 138, 140), PackedInt32Array(144, 141, 142), PackedInt32Array(142, 143, 144), PackedInt32Array(152, 145, 146), PackedInt32Array(146, 147, 148), PackedInt32Array(148, 149, 150), PackedInt32Array(151, 152, 146), PackedInt32Array(148, 150, 151), PackedInt32Array(151, 146, 148), PackedInt32Array(156, 153, 154), PackedInt32Array(154, 155, 156), PackedInt32Array(167, 157, 158), PackedInt32Array(158, 159, 160), PackedInt32Array(161, 162, 163), PackedInt32Array(163, 164, 165), PackedInt32Array(165, 166, 167), PackedInt32Array(167, 158, 160), PackedInt32Array(161, 163, 165), PackedInt32Array(167, 160, 161), PackedInt32Array(161, 165, 167), PackedInt32Array(173, 168, 169), PackedInt32Array(169, 170, 171), PackedInt32Array(171, 172, 173), PackedInt32Array(173, 169, 171), PackedInt32Array(180, 174, 175), PackedInt32Array(175, 176, 177), PackedInt32Array(178, 179, 180), PackedInt32Array(175, 177, 178), PackedInt32Array(178, 180, 175), PackedInt32Array(184, 181, 182), PackedInt32Array(182, 183, 184), PackedInt32Array(185, 186, 187), PackedInt32Array(188, 189, 190), PackedInt32Array(190, 191, 192), PackedInt32Array(192, 193, 185), PackedInt32Array(185, 187, 188), PackedInt32Array(188, 190, 192), PackedInt32Array(192, 185, 188), PackedInt32Array(197, 194, 195), PackedInt32Array(195, 196, 197), PackedInt32Array(198, 199, 200), PackedInt32Array(200, 201, 202), PackedInt32Array(203, 204, 205), PackedInt32Array(200, 202, 203), PackedInt32Array(203, 205, 198), PackedInt32Array(198, 200, 203), PackedInt32Array(211, 206, 207), PackedInt32Array(207, 208, 209), PackedInt32Array(209, 210, 211), PackedInt32Array(211, 207, 209), PackedInt32Array(216, 212, 213), PackedInt32Array(213, 214, 215), PackedInt32Array(215, 216, 213), PackedInt32Array(221, 217, 218), PackedInt32Array(218, 219, 220), PackedInt32Array(220, 221, 218), PackedInt32Array(227, 222, 223), PackedInt32Array(224, 225, 226), PackedInt32Array(226, 227, 223), PackedInt32Array(223, 224, 226), PackedInt32Array(237, 228, 229), PackedInt32Array(230, 231, 232), PackedInt32Array(232, 233, 234), PackedInt32Array(234, 235, 236), PackedInt32Array(237, 229, 230), PackedInt32Array(234, 236, 237), PackedInt32Array(237, 230, 232), PackedInt32Array(232, 234, 237), PackedInt32Array(241, 238, 239), PackedInt32Array(239, 240, 241), PackedInt32Array(248, 242, 243), PackedInt32Array(244, 245, 246), PackedInt32Array(246, 247, 248), PackedInt32Array(248, 243, 244), PackedInt32Array(244, 246, 248), PackedInt32Array(252, 249, 250), PackedInt32Array(250, 251, 252), PackedInt32Array(256, 253, 254), PackedInt32Array(254, 255, 256), PackedInt32Array(265, 257, 258), PackedInt32Array(258, 259, 260), PackedInt32Array(261, 262, 263), PackedInt32Array(263, 264, 265), PackedInt32Array(258, 260, 261), PackedInt32Array(261, 263, 265), PackedInt32Array(265, 258, 261), PackedInt32Array(269, 266, 267), PackedInt32Array(267, 268, 269), PackedInt32Array(273, 270, 271), PackedInt32Array(271, 272, 273), PackedInt32Array(277, 274, 275), PackedInt32Array(275, 276, 277), PackedInt32Array(281, 278, 279), PackedInt32Array(279, 280, 281), PackedInt32Array(282, 283, 284), PackedInt32Array(284, 285, 286), PackedInt32Array(286, 287, 282), PackedInt32Array(282, 284, 286), PackedInt32Array(288, 289, 290), PackedInt32Array(290, 291, 292), PackedInt32Array(292, 293, 294), PackedInt32Array(288, 290, 292), PackedInt32Array(292, 294, 288), PackedInt32Array(298, 295, 296), PackedInt32Array(296, 297, 298), PackedInt32Array(309, 299, 300), PackedInt32Array(300, 301, 302), PackedInt32Array(302, 303, 304), PackedInt32Array(305, 306, 307), PackedInt32Array(308, 309, 300), PackedInt32Array(304, 305, 307), PackedInt32Array(308, 300, 302), PackedInt32Array(302, 304, 307), PackedInt32Array(307, 308, 302), PackedInt32Array(316, 310, 311), PackedInt32Array(312, 313, 314), PackedInt32Array(315, 316, 311), PackedInt32Array(311, 312, 314), PackedInt32Array(314, 315, 311), PackedInt32Array(317, 318, 319), PackedInt32Array(320, 321, 317), PackedInt32Array(317, 319, 320), PackedInt32Array(325, 322, 323), PackedInt32Array(323, 324, 325), PackedInt32Array(329, 326, 327), PackedInt32Array(327, 328, 329), PackedInt32Array(333, 330, 331), PackedInt32Array(331, 332, 333), PackedInt32Array(337, 334, 335), PackedInt32Array(335, 336, 337), PackedInt32Array(341, 338, 339), PackedInt32Array(339, 340, 341), PackedInt32Array(345, 342, 343), PackedInt32Array(343, 344, 345), PackedInt32Array(349, 346, 347), PackedInt32Array(347, 348, 349), PackedInt32Array(353, 350, 351), PackedInt32Array(351, 352, 353), PackedInt32Array(357, 354, 355), PackedInt32Array(355, 356, 357), PackedInt32Array(361, 358, 359), PackedInt32Array(359, 360, 361), PackedInt32Array(365, 362, 363), PackedInt32Array(363, 364, 365), PackedInt32Array(369, 366, 367), PackedInt32Array(367, 368, 369), PackedInt32Array(370, 371, 372), PackedInt32Array(373, 374, 375), PackedInt32Array(375, 376, 377), PackedInt32Array(370, 372, 373), PackedInt32Array(373, 375, 377), PackedInt32Array(377, 370, 373), PackedInt32Array(381, 378, 379), PackedInt32Array(379, 380, 381), PackedInt32Array(391, 382, 383), PackedInt32Array(383, 384, 385), PackedInt32Array(385, 386, 387), PackedInt32Array(388, 389, 390), PackedInt32Array(391, 383, 385), PackedInt32Array(385, 387, 388), PackedInt32Array(388, 390, 391), PackedInt32Array(391, 385, 388), PackedInt32Array(395, 392, 393), PackedInt32Array(393, 394, 395), PackedInt32Array(398, 396, 397), PackedInt32Array(403, 399, 400), PackedInt32Array(400, 401, 402), PackedInt32Array(402, 403, 400), PackedInt32Array(407, 404, 405), PackedInt32Array(405, 406, 407), PackedInt32Array(411, 408, 409), PackedInt32Array(409, 410, 411), PackedInt32Array(415, 412, 413), PackedInt32Array(413, 414, 415), PackedInt32Array(419, 416, 417), PackedInt32Array(417, 418, 419), PackedInt32Array(423, 420, 421), PackedInt32Array(421, 422, 423), PackedInt32Array(427, 424, 425), PackedInt32Array(425, 426, 427), PackedInt32Array(432, 428, 429), PackedInt32Array(430, 431, 432), PackedInt32Array(432, 429, 430), PackedInt32Array(439, 433, 434), PackedInt32Array(436, 437, 438), PackedInt32Array(439, 434, 435), PackedInt32Array(436, 438, 439), PackedInt32Array(439, 435, 436), PackedInt32Array(444, 440, 441), PackedInt32Array(441, 442, 443), PackedInt32Array(443, 444, 441), PackedInt32Array(448, 445, 446), PackedInt32Array(446, 447, 448), PackedInt32Array(452, 449, 450), PackedInt32Array(450, 451, 452), PackedInt32Array(461, 453, 454), PackedInt32Array(455, 456, 457), PackedInt32Array(457, 458, 459), PackedInt32Array(459, 460, 461), PackedInt32Array(461, 454, 455), PackedInt32Array(455, 457, 459), PackedInt32Array(459, 461, 455), PackedInt32Array(465, 462, 463), PackedInt32Array(463, 464, 465), PackedInt32Array(469, 466, 467), PackedInt32Array(467, 468, 469), PackedInt32Array(476, 470, 471), PackedInt32Array(471, 472, 473), PackedInt32Array(473, 474, 475), PackedInt32Array(475, 476, 471), PackedInt32Array(471, 473, 475), PackedInt32Array(481, 477, 478), PackedInt32Array(478, 479, 480), PackedInt32Array(480, 481, 478), PackedInt32Array(490, 482, 483), PackedInt32Array(484, 485, 486), PackedInt32Array(487, 488, 489), PackedInt32Array(490, 483, 484), PackedInt32Array(484, 486, 487), PackedInt32Array(487, 489, 490), PackedInt32Array(490, 484, 487), PackedInt32Array(497, 491, 492), PackedInt32Array(492, 493, 494), PackedInt32Array(494, 495, 496), PackedInt32Array(496, 497, 492), PackedInt32Array(492, 494, 496), PackedInt32Array(504, 498, 499), PackedInt32Array(500, 501, 502), PackedInt32Array(503, 504, 499), PackedInt32Array(500, 502, 503), PackedInt32Array(503, 499, 500), PackedInt32Array(508, 505, 506), PackedInt32Array(506, 507, 508), PackedInt32Array(512, 509, 510), PackedInt32Array(510, 511, 512), PackedInt32Array(516, 513, 514), PackedInt32Array(514, 515, 516), PackedInt32Array(524, 517, 518), PackedInt32Array(519, 520, 521), PackedInt32Array(521, 522, 523), PackedInt32Array(523, 524, 518), PackedInt32Array(519, 521, 523), PackedInt32Array(523, 518, 519), PackedInt32Array(528, 525, 526), PackedInt32Array(526, 527, 528), PackedInt32Array(532, 529, 530), PackedInt32Array(530, 531, 532), PackedInt32Array(536, 533, 534), PackedInt32Array(534, 535, 536), PackedInt32Array(540, 537, 538), PackedInt32Array(538, 539, 540), PackedInt32Array(544, 541, 542), PackedInt32Array(542, 543, 544), PackedInt32Array(548, 545, 546), PackedInt32Array(546, 547, 548), PackedInt32Array(552, 549, 550), PackedInt32Array(550, 551, 552), PackedInt32Array(556, 553, 554), PackedInt32Array(554, 555, 556), PackedInt32Array(560, 557, 558), PackedInt32Array(558, 559, 560), PackedInt32Array(564, 561, 562), PackedInt32Array(562, 563, 564), PackedInt32Array(568, 565, 566), PackedInt32Array(566, 567, 568), PackedInt32Array(572, 569, 570), PackedInt32Array(570, 571, 572), PackedInt32Array(576, 573, 574), PackedInt32Array(574, 575, 576), PackedInt32Array(580, 577, 578), PackedInt32Array(578, 579, 580), PackedInt32Array(584, 581, 582), PackedInt32Array(582, 583, 584), PackedInt32Array(585, 586, 587), PackedInt32Array(588, 589, 590), PackedInt32Array(591, 592, 593), PackedInt32Array(585, 587, 588), PackedInt32Array(591, 593, 594), PackedInt32Array(585, 588, 590), PackedInt32Array(590, 591, 594), PackedInt32Array(594, 585, 590), PackedInt32Array(598, 595, 596), PackedInt32Array(596, 597, 598), PackedInt32Array(602, 599, 600), PackedInt32Array(600, 601, 602), PackedInt32Array(606, 603, 604), PackedInt32Array(604, 605, 606), PackedInt32Array(610, 607, 608), PackedInt32Array(608, 609, 610), PackedInt32Array(614, 611, 612), PackedInt32Array(612, 613, 614), PackedInt32Array(618, 615, 616), PackedInt32Array(616, 617, 618), PackedInt32Array(622, 619, 620), PackedInt32Array(620, 621, 622), PackedInt32Array(626, 623, 624), PackedInt32Array(624, 625, 626), PackedInt32Array(630, 627, 628), PackedInt32Array(628, 629, 630), PackedInt32Array(634, 631, 632), PackedInt32Array(632, 633, 634), PackedInt32Array(638, 635, 636), PackedInt32Array(636, 637, 638), PackedInt32Array(642, 639, 640), PackedInt32Array(640, 641, 642), PackedInt32Array(646, 643, 644), PackedInt32Array(644, 645, 646), PackedInt32Array(650, 647, 648), PackedInt32Array(648, 649, 650), PackedInt32Array(654, 651, 652), PackedInt32Array(652, 653, 654), PackedInt32Array(663, 655, 656), PackedInt32Array(656, 657, 658), PackedInt32Array(658, 659, 660), PackedInt32Array(661, 662, 663), PackedInt32Array(663, 656, 658), PackedInt32Array(658, 660, 661), PackedInt32Array(661, 663, 658), PackedInt32Array(664, 665, 666), PackedInt32Array(666, 667, 668), PackedInt32Array(668, 669, 664), PackedInt32Array(664, 666, 668), PackedInt32Array(670, 671, 672), PackedInt32Array(673, 674, 670), PackedInt32Array(670, 672, 673), PackedInt32Array(678, 675, 676), PackedInt32Array(676, 677, 678), PackedInt32Array(682, 679, 680), PackedInt32Array(680, 681, 682), PackedInt32Array(688, 683, 684), PackedInt32Array(685, 686, 687), PackedInt32Array(688, 684, 685), PackedInt32Array(685, 687, 688), PackedInt32Array(692, 689, 690), PackedInt32Array(690, 691, 692), PackedInt32Array(699, 693, 694), PackedInt32Array(694, 695, 696), PackedInt32Array(696, 697, 698), PackedInt32Array(698, 699, 694), PackedInt32Array(694, 696, 698), PackedInt32Array(705, 700, 701), PackedInt32Array(702, 703, 704), PackedInt32Array(704, 705, 701), PackedInt32Array(701, 702, 704), PackedInt32Array(715, 706, 707), PackedInt32Array(707, 708, 709), PackedInt32Array(709, 710, 711), PackedInt32Array(712, 713, 714), PackedInt32Array(714, 715, 707), PackedInt32Array(711, 712, 714), PackedInt32Array(714, 707, 709), PackedInt32Array(709, 711, 714), PackedInt32Array(726, 716, 717), PackedInt32Array(718, 719, 720), PackedInt32Array(720, 721, 722), PackedInt32Array(723, 724, 725), PackedInt32Array(726, 717, 718), PackedInt32Array(720, 722, 723), PackedInt32Array(723, 725, 726), PackedInt32Array(726, 718, 720), PackedInt32Array(720, 723, 726), PackedInt32Array(731, 727, 728), PackedInt32Array(728, 729, 730), PackedInt32Array(730, 731, 728), PackedInt32Array(735, 732, 733), PackedInt32Array(733, 734, 735), PackedInt32Array(738, 736, 737), PackedInt32Array(748, 739, 740), PackedInt32Array(741, 742, 743), PackedInt32Array(744, 745, 746), PackedInt32Array(746, 747, 748), PackedInt32Array(748, 740, 741), PackedInt32Array(741, 743, 744), PackedInt32Array(746, 748, 741), PackedInt32Array(741, 744, 746), PackedInt32Array(749, 750, 751), PackedInt32Array(751, 752, 753), PackedInt32Array(753, 754, 755), PackedInt32Array(756, 757, 758), PackedInt32Array(758, 759, 760), PackedInt32Array(760, 761, 749), PackedInt32Array(749, 751, 753), PackedInt32Array(753, 755, 756), PackedInt32Array(756, 758, 760), PackedInt32Array(760, 749, 753), PackedInt32Array(753, 756, 760), PackedInt32Array(766, 762, 763), PackedInt32Array(763, 764, 765), PackedInt32Array(765, 766, 763), PackedInt32Array(770, 767, 768), PackedInt32Array(768, 769, 770), PackedInt32Array(774, 771, 772), PackedInt32Array(772, 773, 774), PackedInt32Array(778, 775, 776), PackedInt32Array(776, 777, 778), PackedInt32Array(782, 779, 780), PackedInt32Array(780, 781, 782), PackedInt32Array(787, 783, 784), PackedInt32Array(784, 785, 786), PackedInt32Array(786, 787, 784), PackedInt32Array(796, 788, 789), PackedInt32Array(789, 790, 791), PackedInt32Array(791, 792, 793), PackedInt32Array(793, 794, 795), PackedInt32Array(795, 796, 789), PackedInt32Array(789, 791, 793), PackedInt32Array(793, 795, 789), PackedInt32Array(797, 798, 799), PackedInt32Array(799, 800, 801), PackedInt32Array(802, 803, 804), PackedInt32Array(799, 801, 802), PackedInt32Array(802, 804, 797), PackedInt32Array(797, 799, 802), PackedInt32Array(807, 805, 806), PackedInt32Array(808, 809, 810), PackedInt32Array(811, 812, 813), PackedInt32Array(813, 814, 815), PackedInt32Array(815, 816, 817), PackedInt32Array(808, 810, 811), PackedInt32Array(811, 813, 815), PackedInt32Array(815, 817, 808), PackedInt32Array(808, 811, 815), PackedInt32Array(818, 819, 820), PackedInt32Array(820, 821, 822), PackedInt32Array(822, 818, 820), PackedInt32Array(830, 823, 824), PackedInt32Array(824, 825, 826), PackedInt32Array(826, 827, 828), PackedInt32Array(828, 829, 830), PackedInt32Array(830, 824, 826), PackedInt32Array(826, 828, 830), PackedInt32Array(834, 831, 832), PackedInt32Array(832, 833, 834), PackedInt32Array(838, 835, 836), PackedInt32Array(836, 837, 838), PackedInt32Array(842, 839, 840), PackedInt32Array(840, 841, 842), PackedInt32Array(846, 843, 844), PackedInt32Array(844, 845, 846), PackedInt32Array(850, 847, 848), PackedInt32Array(848, 849, 850), PackedInt32Array(854, 851, 852), PackedInt32Array(852, 853, 854), PackedInt32Array(858, 855, 856), PackedInt32Array(856, 857, 858), PackedInt32Array(862, 859, 860), PackedInt32Array(860, 861, 862), PackedInt32Array(866, 863, 864), PackedInt32Array(864, 865, 866), PackedInt32Array(872, 867, 868), PackedInt32Array(868, 869, 870), PackedInt32Array(870, 871, 872), PackedInt32Array(872, 868, 870), PackedInt32Array(876, 873, 874), PackedInt32Array(874, 875, 876), PackedInt32Array(880, 877, 878), PackedInt32Array(878, 879, 880), PackedInt32Array(887, 881, 882), PackedInt32Array(883, 884, 885), PackedInt32Array(885, 886, 887), PackedInt32Array(887, 882, 883), PackedInt32Array(883, 885, 887), PackedInt32Array(891, 888, 889), PackedInt32Array(889, 890, 891), PackedInt32Array(897, 892, 893), PackedInt32Array(893, 894, 895), PackedInt32Array(895, 896, 897), PackedInt32Array(897, 893, 895), PackedInt32Array(901, 898, 899), PackedInt32Array(899, 900, 901), PackedInt32Array(906, 902, 903), PackedInt32Array(903, 904, 905), PackedInt32Array(905, 906, 903), PackedInt32Array(912, 907, 908), PackedInt32Array(908, 909, 910), PackedInt32Array(910, 911, 912), PackedInt32Array(912, 908, 910), PackedInt32Array(921, 913, 914), PackedInt32Array(914, 915, 916), PackedInt32Array(917, 918, 919), PackedInt32Array(919, 920, 921), PackedInt32Array(914, 916, 917), PackedInt32Array(917, 919, 921), PackedInt32Array(921, 914, 917), PackedInt32Array(925, 922, 923), PackedInt32Array(923, 924, 925), PackedInt32Array(929, 926, 927), PackedInt32Array(927, 928, 929), PackedInt32Array(933, 930, 931), PackedInt32Array(931, 932, 933), PackedInt32Array(934, 935, 936), PackedInt32Array(937, 938, 939), PackedInt32Array(939, 940, 941), PackedInt32Array(941, 942, 934), PackedInt32Array(934, 936, 937), PackedInt32Array(939, 941, 934), PackedInt32Array(934, 937, 939), PackedInt32Array(945, 943, 944), PackedInt32Array(951, 946, 947), PackedInt32Array(947, 948, 949), PackedInt32Array(949, 950, 951), PackedInt32Array(951, 947, 949), PackedInt32Array(955, 952, 953), PackedInt32Array(953, 954, 955), PackedInt32Array(959, 956, 957), PackedInt32Array(957, 958, 959), PackedInt32Array(965, 960, 961), PackedInt32Array(961, 962, 963), PackedInt32Array(963, 964, 965), PackedInt32Array(965, 961, 963), PackedInt32Array(969, 966, 967), PackedInt32Array(967, 968, 969), PackedInt32Array(974, 970, 971), PackedInt32Array(971, 972, 973), PackedInt32Array(973, 974, 971), PackedInt32Array(978, 975, 976), PackedInt32Array(976, 977, 978), PackedInt32Array(982, 979, 980), PackedInt32Array(980, 981, 982), PackedInt32Array(987, 983, 984), PackedInt32Array(984, 985, 986), PackedInt32Array(986, 987, 984)] +bones = ["Bone-0", PackedFloat32Array(1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-1", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-2", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-3", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-4", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-5", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-6", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-7", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 1, 0, 0, 1, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-8", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-9", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-10", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-11", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-12", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-13", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-14", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-15", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 1, 0, 0, 1, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-16", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-17", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-18", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-19", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-20", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-21", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-22", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-23", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1), "Bone-24", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1)] +internal_vertex_count = 886 script = ExtResource("2_2dapw") vertex_interval = 35 -radius = 30 exclude_texture = ExtResource("9_ia0mn") -rigidbody_scene = ExtResource("3_6ern4") polygon_offset = Vector2(2.08165e-12, -8.33) min_area = 0.5 -max_joint_distance_ratio = 1.4 bias = 0.2 softness = 20.0 -angular_limit_enabled = true -angular_limit_lower = -0.872665 -angular_limit_upper = 0.872665 +radius = 30 +rigidbody_scene = ExtResource("3_6ern4") physics_material_override = ExtResource("5_221ya") [node name="Skeleton2D" type="Skeleton2D" parent="Softbody2d3"] visible = false -modification_stack = SubResource("SkeletonModificationStack2D_xn6fk") +modification_stack = SubResource("SkeletonModificationStack2D_kr2tb") [node name="Bone-0" type="Bone2D" parent="Softbody2d3/Skeleton2D"] -position = Vector2(42.3917, 41.1817) -rotation = 0.0200764 -rest = Transform2D(0.999798, 0.0200751, -0.0200751, 0.999798, 42.3916, 41.1817) +position = Vector2(42.2257, 41.085) +rotation = 0.0224363 +scale = Vector2(1, 1) +rest = Transform2D(0.999748, 0.0224344, -0.0224344, 0.999748, 42.2257, 41.085) auto_calculate_length_and_angle = false length = 35.0 bone_angle = 0.0 -metadata/vert_owned = [102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120] +metadata/vert_owned = [102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140] +metadata/idx = 0 metadata/connected_nodes_paths = [NodePath("Bone-1"), NodePath("Bone-4")] +metadata/connected_nodes_idx = [1, 4] metadata/_local_pose_override_enabled_ = true [node name="Bone-1" type="Bone2D" parent="Softbody2d3/Skeleton2D"] -position = Vector2(39.3387, 80.6962) -rotation = 1.57378 +position = Vector2(39.2501, 80.67) +rotation = -0.723842 scale = Vector2(1, 1) -rest = Transform2D(-0.00298623, 0.999996, -0.999996, -0.00298623, 39.3387, 80.6962) +rest = Transform2D(0.749267, -0.662269, 0.662269, 0.749267, 39.25, 80.67) auto_calculate_length_and_angle = false length = 35.0 bone_angle = 0.0 -metadata/vert_owned = [121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147] -metadata/connected_nodes_paths = [NodePath("Bone-0"), NodePath("Bone-2"), NodePath("Bone-4")] +metadata/vert_owned = [141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180] +metadata/idx = 1 +metadata/connected_nodes_paths = [NodePath("Bone-0"), NodePath("Bone-4"), NodePath("Bone-2")] +metadata/connected_nodes_idx = [0, 4, 2] metadata/_local_pose_override_enabled_ = true [node name="Bone-2" type="Bone2D" parent="Softbody2d3/Skeleton2D"] -position = Vector2(39.2343, 115.647) -rotation = 1.44336 -rest = Transform2D(0.127087, 0.991892, -0.991892, 0.127087, 39.2342, 115.647) +position = Vector2(39.25, 115.67) +rotation = 0.574386 +scale = Vector2(1, 1) +rest = Transform2D(0.839526, 0.543319, -0.543319, 0.839526, 39.25, 115.67) auto_calculate_length_and_angle = false length = 35.0 bone_angle = 0.0 -metadata/vert_owned = [148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170] -metadata/connected_nodes_paths = [NodePath("Bone-1"), NodePath("Bone-3"), NodePath("Bone-5")] +metadata/vert_owned = [181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216] +metadata/idx = 2 +metadata/connected_nodes_paths = [NodePath("Bone-1"), NodePath("Bone-5"), NodePath("Bone-3")] +metadata/connected_nodes_idx = [1, 5, 3] metadata/_local_pose_override_enabled_ = true [node name="Bone-3" type="Bone2D" parent="Softbody2d3/Skeleton2D"] -position = Vector2(43.7206, 150.662) -rotation = -0.131649 +position = Vector2(43.7163, 150.67) +rotation = -0.132338 scale = Vector2(1, 1) -rest = Transform2D(0.991347, -0.131269, 0.131269, 0.991347, 43.7205, 150.662) +rest = Transform2D(0.991256, -0.131953, 0.131953, 0.991256, 43.7162, 150.67) auto_calculate_length_and_angle = false length = 35.0 bone_angle = 0.0 -metadata/vert_owned = [171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192] +metadata/vert_owned = [217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248] +metadata/idx = 3 metadata/connected_nodes_paths = [NodePath("Bone-2"), NodePath("Bone-5"), NodePath("Bone-9")] +metadata/connected_nodes_idx = [2, 5, 9] metadata/_local_pose_override_enabled_ = true [node name="Bone-4" type="Bone2D" parent="Softbody2d3/Skeleton2D"] -position = Vector2(83.1484, 42) -rotation = 2.41809 -rest = Transform2D(-0.749494, 0.662011, -0.662011, -0.749494, 83.1484, 42) +position = Vector2(83, 41.9999) +rotation = 2.41775 +scale = Vector2(1, 1) +rest = Transform2D(-0.749267, 0.662269, -0.662269, -0.749267, 83, 42) auto_calculate_length_and_angle = false length = 35.0 bone_angle = 0.0 -metadata/vert_owned = [193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212] +metadata/vert_owned = [249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281] +metadata/idx = 4 metadata/connected_nodes_paths = [NodePath("Bone-0"), NodePath("Bone-1"), NodePath("Bone-6")] +metadata/connected_nodes_idx = [0, 1, 6] metadata/_local_pose_override_enabled_ = true [node name="Bone-5" type="Bone2D" parent="Softbody2d3/Skeleton2D"] -position = Vector2(84.7976, 145.223) -rotation = 3.00994 -rest = Transform2D(-0.991347, 0.131269, -0.131269, -0.991347, 84.7975, 145.223) +position = Vector2(84.8671, 145.192) +rotation = 3.00925 +scale = Vector2(1, 1) +rest = Transform2D(-0.991256, 0.131952, -0.131952, -0.991256, 84.867, 145.192) auto_calculate_length_and_angle = false length = 35.0 bone_angle = 0.0 -metadata/vert_owned = [213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242] +metadata/vert_owned = [282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321] +metadata/idx = 5 metadata/connected_nodes_paths = [NodePath("Bone-2"), NodePath("Bone-3"), NodePath("Bone-9")] +metadata/connected_nodes_idx = [2, 3, 9] metadata/_local_pose_override_enabled_ = true [node name="Bone-6" type="Bone2D" parent="Softbody2d3/Skeleton2D"] -position = Vector2(118.099, 38) -rest = Transform2D(1, 1.74588e-06, -1.74588e-06, 1, 118.099, 38) +position = Vector2(118, 37.9999) +rest = Transform2D(1, 0, 0, 1, 118, 38) auto_calculate_length_and_angle = false length = 35.0 bone_angle = 0.0 -metadata/vert_owned = [243, 244, 245, 246, 247, 248, 249, 250, 251, 252] +metadata/vert_owned = [322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345] +metadata/idx = 6 metadata/connected_nodes_paths = [NodePath("Bone-4"), NodePath("Bone-7")] +metadata/connected_nodes_idx = [4, 7] metadata/_local_pose_override_enabled_ = true [node name="Bone-7" type="Bone2D" parent="Softbody2d3/Skeleton2D"] -position = Vector2(153.058, 38) -rotation = 0.0853825 -rest = Transform2D(0.996357, 0.0852788, -0.0852788, 0.996357, 153.058, 38) +position = Vector2(153, 37.9999) +rotation = 0.0879177 +scale = Vector2(1, 1) +rest = Transform2D(0.996138, 0.0878045, -0.0878045, 0.996138, 153, 38) auto_calculate_length_and_angle = false length = 35.0 bone_angle = 0.0 -metadata/vert_owned = [253, 254, 255, 256, 257, 258, 259, 260, 261, 262] +metadata/vert_owned = [346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369] +metadata/idx = 7 metadata/connected_nodes_paths = [NodePath("Bone-6"), NodePath("Bone-14")] +metadata/connected_nodes_idx = [6, 14] metadata/_local_pose_override_enabled_ = true [node name="Bone-8" type="Bone2D" parent="Softbody2d3/Skeleton2D"] -position = Vector2(42.786, 259.571) -rotation = -0.00035615 -rest = Transform2D(1, -0.00035616, 0.00035616, 1, 42.7859, 259.571) +position = Vector2(42.75, 259.585) +rest = Transform2D(1, 0, 0, 1, 42.75, 259.585) auto_calculate_length_and_angle = false length = 35.0 bone_angle = 0.0 -metadata/vert_owned = [263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292] +metadata/vert_owned = [370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411] +metadata/idx = 8 metadata/connected_nodes_paths = [NodePath("Bone-10"), NodePath("Bone-11")] +metadata/connected_nodes_idx = [10, 11] metadata/_local_pose_override_enabled_ = true [node name="Bone-9" type="Bone2D" parent="Softbody2d3/Skeleton2D"] -position = Vector2(79.8256, 185.693) -rotation = -1.44855 -rest = Transform2D(0.121941, -0.992537, 0.992537, 0.121941, 79.8255, 185.693) +position = Vector2(79.7926, 185.67) +rotation = -1.44608 +scale = Vector2(1, 1) +rest = Transform2D(0.12439, -0.992233, 0.992233, 0.12439, 79.7925, 185.67) auto_calculate_length_and_angle = false length = 35.0 bone_angle = 0.0 -metadata/vert_owned = [293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313] +metadata/vert_owned = [412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448] +metadata/idx = 9 metadata/connected_nodes_paths = [NodePath("Bone-3"), NodePath("Bone-5"), NodePath("Bone-10")] +metadata/connected_nodes_idx = [3, 5, 10] metadata/_local_pose_override_enabled_ = true [node name="Bone-10" type="Bone2D" parent="Softbody2d3/Skeleton2D"] -position = Vector2(76, 220.554) -rotation = 1.39603 -rest = Transform2D(0.173877, 0.984767, -0.984767, 0.173877, 76, 220.554) +position = Vector2(76.0001, 220.67) +rotation = 1.39282 +scale = Vector2(1, 1) +rest = Transform2D(0.177035, 0.984205, -0.984205, 0.177035, 76, 220.67) auto_calculate_length_and_angle = false length = 35.0 bone_angle = 0.0 -metadata/vert_owned = [314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349] -metadata/connected_nodes_paths = [NodePath("Bone-8"), NodePath("Bone-9"), NodePath("Bone-11"), NodePath("Bone-12")] +metadata/vert_owned = [449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504] +metadata/idx = 10 +metadata/connected_nodes_paths = [NodePath("Bone-8"), NodePath("Bone-11"), NodePath("Bone-9")] +metadata/connected_nodes_idx = [8, 11, 9] metadata/_local_pose_override_enabled_ = true [node name="Bone-11" type="Bone2D" parent="Softbody2d3/Skeleton2D"] -position = Vector2(82.8866, 259.557) -rotation = -1.74556 -scale = Vector2(1, 1) -rest = Transform2D(-0.173877, -0.984767, 0.984767, -0.173877, 82.8865, 259.557) +position = Vector2(83, 259.585) +rotation = -1.74877 +rest = Transform2D(-0.177035, -0.984205, 0.984205, -0.177035, 83, 259.585) auto_calculate_length_and_angle = false length = 35.0 bone_angle = 0.0 -metadata/vert_owned = [350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363] +metadata/vert_owned = [505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532] +metadata/idx = 11 metadata/connected_nodes_paths = [NodePath("Bone-8"), NodePath("Bone-10"), NodePath("Bone-12")] +metadata/connected_nodes_idx = [8, 10, 12] metadata/_local_pose_override_enabled_ = true [node name="Bone-12" type="Bone2D" parent="Softbody2d3/Skeleton2D"] -position = Vector2(117.878, 262) -rotation = -3.0719 -scale = Vector2(1, 1) -rest = Transform2D(-0.997572, -0.0696411, 0.0696411, -0.997572, 117.878, 262) +position = Vector2(118, 262) +rest = Transform2D(1, 0, 0, 1, 118, 262) auto_calculate_length_and_angle = false length = 35.0 bone_angle = 0.0 -metadata/vert_owned = [364, 365, 366, 367, 368, 369, 370, 371, 372, 373] -metadata/connected_nodes_paths = [NodePath("Bone-10"), NodePath("Bone-11"), NodePath("Bone-13")] +metadata/vert_owned = [533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556] +metadata/idx = 12 +metadata/connected_nodes_paths = [NodePath("Bone-11"), NodePath("Bone-13")] +metadata/connected_nodes_idx = [11, 13] metadata/_local_pose_override_enabled_ = true [node name="Bone-13" type="Bone2D" parent="Softbody2d3/Skeleton2D"] -position = Vector2(152.976, 262) -rest = Transform2D(1, 0, 0, 1, 152.976, 262) +position = Vector2(153, 262) +rest = Transform2D(1, 0, 0, 1, 153, 262) auto_calculate_length_and_angle = false length = 35.0 bone_angle = 0.0 -metadata/vert_owned = [374, 375, 376, 377, 378, 379, 380, 381, 382, 383] +metadata/vert_owned = [557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580] +metadata/idx = 13 metadata/connected_nodes_paths = [NodePath("Bone-12"), NodePath("Bone-20")] +metadata/connected_nodes_idx = [12, 20] metadata/_local_pose_override_enabled_ = true [node name="Bone-14" type="Bone2D" parent="Softbody2d3/Skeleton2D"] -position = Vector2(187.768, 40.9708) -rotation = 0.00224807 -scale = Vector2(1, 1) -rest = Transform2D(0.999997, 0.00224808, -0.00224808, 0.999997, 187.768, 40.9708) +position = Vector2(188, 41.085) +rest = Transform2D(1, 0, 0, 1, 188, 41.085) auto_calculate_length_and_angle = false length = 35.0 bone_angle = 0.0 -metadata/vert_owned = [384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398] +metadata/vert_owned = [581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610] +metadata/idx = 14 metadata/connected_nodes_paths = [NodePath("Bone-7"), NodePath("Bone-15"), NodePath("Bone-16")] +metadata/connected_nodes_idx = [7, 15, 16] metadata/_local_pose_override_enabled_ = true [node name="Bone-15" type="Bone2D" parent="Softbody2d3/Skeleton2D"] -position = Vector2(223.144, 41.0504) -rotation = 1.60357 -rest = Transform2D(-0.0327635, 0.999463, -0.999463, -0.0327635, 223.144, 41.0504) +position = Vector2(223, 41.085) +rotation = 1.5982 +scale = Vector2(1, 1) +rest = Transform2D(-0.0274012, 0.999624, -0.999624, -0.0274012, 223, 41.085) auto_calculate_length_and_angle = false length = 35.0 bone_angle = 0.0 -metadata/vert_owned = [399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409] +metadata/vert_owned = [611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634] +metadata/idx = 15 metadata/connected_nodes_paths = [NodePath("Bone-14"), NodePath("Bone-16"), NodePath("Bone-18")] +metadata/connected_nodes_idx = [14, 16, 18] metadata/_local_pose_override_enabled_ = true [node name="Bone-16" type="Bone2D" parent="Softbody2d3/Skeleton2D"] -position = Vector2(221.85, 80.5114) -rotation = 1.64958 -rest = Transform2D(-0.0787021, 0.996898, -0.996898, -0.0787021, 221.85, 80.5114) +position = Vector2(221.915, 80.67) +rotation = -1.54339 +scale = Vector2(1, 1) +rest = Transform2D(0.0274012, -0.999624, 0.999624, 0.0274012, 221.915, 80.67) auto_calculate_length_and_angle = false length = 35.0 bone_angle = 0.0 -metadata/vert_owned = [410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434] -metadata/connected_nodes_paths = [NodePath("Bone-14"), NodePath("Bone-15"), NodePath("Bone-17"), NodePath("Bone-18"), NodePath("Bone-19")] +metadata/vert_owned = [635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674] +metadata/idx = 16 +metadata/connected_nodes_paths = [NodePath("Bone-18"), NodePath("Bone-14"), NodePath("Bone-15"), NodePath("Bone-17"), NodePath("Bone-19")] +metadata/connected_nodes_idx = [18, 14, 15, 17, 19] metadata/_local_pose_override_enabled_ = true [node name="Bone-17" type="Bone2D" parent="Softbody2d3/Skeleton2D"] -position = Vector2(217.769, 132.208) -rotation = 0.02219 -rest = Transform2D(0.999754, 0.0221882, -0.0221882, 0.999754, 217.769, 132.208) +position = Vector2(217.75, 132.335) +rotation = 0.0184739 +scale = Vector2(1, 1) +rest = Transform2D(0.999829, 0.0184728, -0.0184728, 0.999829, 217.75, 132.335) auto_calculate_length_and_angle = false length = 35.0 bone_angle = 0.0 -metadata/vert_owned = [435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470] +metadata/vert_owned = [675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731] +metadata/idx = 17 metadata/connected_nodes_paths = [NodePath("Bone-16"), NodePath("Bone-19")] +metadata/connected_nodes_idx = [16, 19] metadata/_local_pose_override_enabled_ = true [node name="Bone-18" type="Bone2D" parent="Softbody2d3/Skeleton2D"] -position = Vector2(260.166, 41.1636) -rotation = 2.3429 -rest = Transform2D(-0.697646, 0.716442, -0.716442, -0.697646, 260.166, 41.1636) +position = Vector2(260.25, 41.085) +rotation = 3.14159 +rest = Transform2D(-1, 1.58151e-06, -1.58151e-06, -1, 260.25, 41.085) auto_calculate_length_and_angle = false length = 35.0 bone_angle = 0.0 -metadata/vert_owned = [471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500] -metadata/connected_nodes_paths = [NodePath("Bone-15"), NodePath("Bone-16")] +metadata/vert_owned = [732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774] +metadata/idx = 18 +metadata/connected_nodes_paths = [NodePath("Bone-16"), NodePath("Bone-15")] +metadata/connected_nodes_idx = [16, 15] metadata/_local_pose_override_enabled_ = true [node name="Bone-19" type="Bone2D" parent="Softbody2d3/Skeleton2D"] -position = Vector2(262.89, 133.21) -rotation = -3.1194 -rest = Transform2D(-0.999754, -0.0221882, 0.0221882, -0.999754, 262.89, 133.21) +position = Vector2(262.945, 133.17) +rotation = -3.12312 +scale = Vector2(1, 1) +rest = Transform2D(-0.999829, -0.0184727, 0.0184727, -0.999829, 262.945, 133.17) auto_calculate_length_and_angle = false length = 35.0 bone_angle = 0.0 -metadata/vert_owned = [501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530] +metadata/vert_owned = [775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830] +metadata/idx = 19 metadata/connected_nodes_paths = [NodePath("Bone-16"), NodePath("Bone-17"), NodePath("Bone-22")] +metadata/connected_nodes_idx = [16, 17, 22] metadata/_local_pose_override_enabled_ = true [node name="Bone-20" type="Bone2D" parent="Softbody2d3/Skeleton2D"] -position = Vector2(188.094, 262) -rotation = -0.0722321 -rest = Transform2D(0.997392, -0.0721693, 0.0721693, 0.997392, 188.094, 262) +position = Vector2(188, 262) +rotation = -0.0688919 +scale = Vector2(1, 1) +rest = Transform2D(0.997628, -0.0688374, 0.0688374, 0.997628, 188, 262) auto_calculate_length_and_angle = false length = 35.0 bone_angle = 0.0 -metadata/vert_owned = [531, 532, 533, 534, 535, 536, 537, 538, 539, 540] +metadata/vert_owned = [831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854] +metadata/idx = 20 metadata/connected_nodes_paths = [NodePath("Bone-13"), NodePath("Bone-21")] +metadata/connected_nodes_idx = [13, 21] metadata/_local_pose_override_enabled_ = true [node name="Bone-21" type="Bone2D" parent="Softbody2d3/Skeleton2D"] -position = Vector2(223.077, 259.469) -rotation = -0.850757 -rest = Transform2D(0.659415, -0.751779, 0.751779, 0.659415, 223.077, 259.469) +position = Vector2(223, 259.585) +rest = Transform2D(1, 0, 0, 1, 223, 259.585) auto_calculate_length_and_angle = false length = 35.0 bone_angle = 0.0 -metadata/vert_owned = [541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553] -metadata/connected_nodes_paths = [NodePath("Bone-20"), NodePath("Bone-23"), NodePath("Bone-24")] +metadata/vert_owned = [855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880] +metadata/idx = 21 +metadata/connected_nodes_paths = [NodePath("Bone-20"), NodePath("Bone-24"), NodePath("Bone-23")] +metadata/connected_nodes_idx = [20, 24, 23] metadata/_local_pose_override_enabled_ = true [node name="Bone-22" type="Bone2D" parent="Softbody2d3/Skeleton2D"] -position = Vector2(264.573, 185.617) -rotation = 1.77752 +position = Vector2(264.585, 185.67) +rotation = -1.60202 scale = Vector2(1, 1) -rest = Transform2D(-0.205251, 0.978709, -0.978709, -0.205251, 264.573, 185.617) +rest = Transform2D(-0.0312232, -0.999512, 0.999512, -0.0312232, 264.585, 185.67) auto_calculate_length_and_angle = false length = 35.0 bone_angle = 0.0 -metadata/vert_owned = [554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571] -metadata/connected_nodes_paths = [NodePath("Bone-19"), NodePath("Bone-23")] +metadata/vert_owned = [881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912] +metadata/idx = 22 +metadata/connected_nodes_paths = [NodePath("Bone-23"), NodePath("Bone-19")] +metadata/connected_nodes_idx = [23, 19] metadata/_local_pose_override_enabled_ = true [node name="Bone-23" type="Bone2D" parent="Softbody2d3/Skeleton2D"] -position = Vector2(257.257, 220.501) -rotation = -1.36408 -rest = Transform2D(0.205251, -0.978709, 0.978709, 0.205251, 257.257, 220.501) +position = Vector2(257.206, 220.67) +rotation = 2.29188 +scale = Vector2(1, 1) +rest = Transform2D(-0.660202, 0.751088, -0.751088, -0.660202, 257.206, 220.67) auto_calculate_length_and_angle = false length = 35.0 bone_angle = 0.0 -metadata/vert_owned = [572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597] -metadata/connected_nodes_paths = [NodePath("Bone-21"), NodePath("Bone-22"), NodePath("Bone-24")] +metadata/vert_owned = [913, 914, 915, 916, 917, 918, 919, 920, 921, 922, 923, 924, 925, 926, 927, 928, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 939, 940, 941, 942, 943, 944, 945, 946, 947, 948, 949, 950, 951, 952, 953, 954, 955] +metadata/idx = 23 +metadata/connected_nodes_paths = [NodePath("Bone-22"), NodePath("Bone-21"), NodePath("Bone-24")] +metadata/connected_nodes_idx = [22, 21, 24] metadata/_local_pose_override_enabled_ = true [node name="Bone-24" type="Bone2D" parent="Softbody2d3/Skeleton2D"] -position = Vector2(259.684, 259.374) -rotation = -1.63315 +position = Vector2(259.653, 259.585) +rotation = -1.6336 scale = Vector2(1, 1) -rest = Transform2D(-0.0623125, -0.998057, 0.998057, -0.0623125, 259.684, 259.374) +rest = Transform2D(-0.0627667, -0.998028, 0.998028, -0.0627667, 259.653, 259.585) auto_calculate_length_and_angle = false length = 35.0 bone_angle = 0.0 -metadata/vert_owned = [598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613] +metadata/vert_owned = [956, 957, 958, 959, 960, 961, 962, 963, 964, 965, 966, 967, 968, 969, 970, 971, 972, 973, 974, 975, 976, 977, 978, 979, 980, 981, 982, 983, 984, 985, 986, 987] +metadata/idx = 24 metadata/connected_nodes_paths = [NodePath("Bone-21"), NodePath("Bone-23")] +metadata/connected_nodes_idx = [21, 23] metadata/_local_pose_override_enabled_ = true -[node name="Bone-0" parent="Softbody2d3" instance=ExtResource("3_6ern4")] -position = Vector2(42.3916, 41.1817) +[node name="Bone-0" type="RigidBody2D" parent="Softbody2d3" instance=ExtResource("3_6ern4")] +position = Vector2(42.2257, 41.085) +input_pickable = true mass = 0.04 physics_material_override = ExtResource("5_221ya") +script = ExtResource("11_tqnjl") +metadata/idx = 0 metadata/bone_name = &"Bone-0" [node name="CircleShape2D" type="CollisionShape2D" parent="Softbody2d3/Bone-0"] -shape = SubResource("CircleShape2D_oqj3n") +shape = SubResource("CircleShape2D_truie") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Softbody2d3/Bone-0"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-0") update_rotation = false update_scale = false [node name="Joint2D-Bone-0-Bone-1" type="PinJoint2D" parent="Softbody2d3/Bone-0"] visible = false -rotation = 0.0771081 +rotation = 0.0750314 node_a = NodePath("..") node_b = NodePath("../../Bone-1") bias = 0.2 softness = 20.0 -angular_limit_enabled = true -angular_limit_lower = -0.872665 -angular_limit_upper = 0.872665 [node name="Joint2D-Bone-0-Bone-4" type="PinJoint2D" parent="Softbody2d3/Bone-0"] visible = false -rotation = -1.55072 +rotation = -1.54836 node_a = NodePath("..") node_b = NodePath("../../Bone-4") bias = 0.2 softness = 20.0 -angular_limit_enabled = true -angular_limit_lower = -0.872665 -angular_limit_upper = 0.872665 -[node name="Bone-1" parent="Softbody2d3" instance=ExtResource("3_6ern4")] -position = Vector2(39.3387, 80.6962) +[node name="Bone-1" type="RigidBody2D" parent="Softbody2d3" instance=ExtResource("3_6ern4")] +position = Vector2(39.25, 80.67) +input_pickable = true mass = 0.04 physics_material_override = ExtResource("5_221ya") +script = ExtResource("11_tqnjl") +metadata/idx = 1 metadata/bone_name = &"Bone-1" [node name="CircleShape2D" type="CollisionShape2D" parent="Softbody2d3/Bone-1"] -shape = SubResource("CircleShape2D_oqj3n") +shape = SubResource("CircleShape2D_truie") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Softbody2d3/Bone-1"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-1") update_rotation = false update_scale = false [node name="Joint2D-Bone-1-Bone-0" type="PinJoint2D" parent="Softbody2d3/Bone-1"] visible = false -rotation = -3.06448 +rotation = -3.06656 node_a = NodePath("..") node_b = NodePath("../../Bone-0") bias = 0.2 softness = 20.0 -angular_limit_enabled = true -angular_limit_lower = -0.872665 -angular_limit_upper = 0.872665 -[node name="Joint2D-Bone-1-Bone-2" type="PinJoint2D" parent="Softbody2d3/Bone-1"] +[node name="Joint2D-Bone-1-Bone-4" type="PinJoint2D" parent="Softbody2d3/Bone-1"] visible = false -rotation = 0.00299077 +rotation = -2.29464 node_a = NodePath("..") -node_b = NodePath("../../Bone-2") +node_b = NodePath("../../Bone-4") bias = 0.2 softness = 20.0 -angular_limit_enabled = true -angular_limit_lower = -0.872665 -angular_limit_upper = 0.872665 -[node name="Joint2D-Bone-1-Bone-4" type="PinJoint2D" parent="Softbody2d3/Bone-1"] +[node name="Joint2D-Bone-1-Bone-2" type="PinJoint2D" parent="Softbody2d3/Bone-1"] visible = false -rotation = -2.2943 node_a = NodePath("..") -node_b = NodePath("../../Bone-4") +node_b = NodePath("../../Bone-2") bias = 0.2 softness = 20.0 -angular_limit_enabled = true -angular_limit_lower = -0.872665 -angular_limit_upper = 0.872665 -[node name="Bone-2" parent="Softbody2d3" instance=ExtResource("3_6ern4")] -position = Vector2(39.2342, 115.647) +[node name="Bone-2" type="RigidBody2D" parent="Softbody2d3" instance=ExtResource("3_6ern4")] +position = Vector2(39.25, 115.67) +input_pickable = true mass = 0.04 physics_material_override = ExtResource("5_221ya") +script = ExtResource("11_tqnjl") +metadata/idx = 2 metadata/bone_name = &"Bone-2" [node name="CircleShape2D" type="CollisionShape2D" parent="Softbody2d3/Bone-2"] -shape = SubResource("CircleShape2D_oqj3n") +shape = SubResource("CircleShape2D_truie") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Softbody2d3/Bone-2"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-2") update_rotation = false update_scale = false [node name="Joint2D-Bone-2-Bone-1" type="PinJoint2D" parent="Softbody2d3/Bone-2"] visible = false -rotation = -3.1386 +rotation = -3.14159 node_a = NodePath("..") node_b = NodePath("../../Bone-1") bias = 0.2 softness = 20.0 -angular_limit_enabled = true -angular_limit_lower = -0.872665 -angular_limit_upper = 0.872665 -[node name="Joint2D-Bone-2-Bone-3" type="PinJoint2D" parent="Softbody2d3/Bone-2"] +[node name="Joint2D-Bone-2-Bone-5" type="PinJoint2D" parent="Softbody2d3/Bone-2"] visible = false -rotation = -0.127431 +rotation = -0.99641 node_a = NodePath("..") -node_b = NodePath("../../Bone-3") +node_b = NodePath("../../Bone-5") bias = 0.2 softness = 20.0 -angular_limit_enabled = true -angular_limit_lower = -0.872665 -angular_limit_upper = 0.872665 -[node name="Joint2D-Bone-2-Bone-5" type="PinJoint2D" parent="Softbody2d3/Bone-2"] +[node name="Joint2D-Bone-2-Bone-3" type="PinJoint2D" parent="Softbody2d3/Bone-2"] visible = false -rotation = -0.995043 +rotation = -0.126921 node_a = NodePath("..") -node_b = NodePath("../../Bone-5") +node_b = NodePath("../../Bone-3") bias = 0.2 softness = 20.0 -angular_limit_enabled = true -angular_limit_lower = -0.872665 -angular_limit_upper = 0.872665 -[node name="Bone-3" parent="Softbody2d3" instance=ExtResource("3_6ern4")] -position = Vector2(43.7205, 150.662) +[node name="Bone-3" type="RigidBody2D" parent="Softbody2d3" instance=ExtResource("3_6ern4")] +position = Vector2(43.7162, 150.67) +input_pickable = true mass = 0.04 physics_material_override = ExtResource("5_221ya") +script = ExtResource("11_tqnjl") +metadata/idx = 3 metadata/bone_name = &"Bone-3" [node name="CircleShape2D" type="CollisionShape2D" parent="Softbody2d3/Bone-3"] -shape = SubResource("CircleShape2D_oqj3n") +shape = SubResource("CircleShape2D_truie") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Softbody2d3/Bone-3"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-3") update_rotation = false update_scale = false [node name="Joint2D-Bone-3-Bone-2" type="PinJoint2D" parent="Softbody2d3/Bone-3"] visible = false -rotation = -3.26902 +rotation = -3.26851 node_a = NodePath("..") node_b = NodePath("../../Bone-2") bias = 0.2 softness = 20.0 -angular_limit_enabled = true -angular_limit_lower = -0.872665 -angular_limit_upper = 0.872665 [node name="Joint2D-Bone-3-Bone-5" type="PinJoint2D" parent="Softbody2d3/Bone-3"] visible = false -rotation = -1.70244 +rotation = -1.70314 node_a = NodePath("..") node_b = NodePath("../../Bone-5") bias = 0.2 softness = 20.0 -angular_limit_enabled = true -angular_limit_lower = -0.872665 -angular_limit_upper = 0.872665 [node name="Joint2D-Bone-3-Bone-9" type="PinJoint2D" parent="Softbody2d3/Bone-3"] visible = false -rotation = -0.8005 +rotation = -0.800539 node_a = NodePath("..") node_b = NodePath("../../Bone-9") bias = 0.2 softness = 20.0 -angular_limit_enabled = true -angular_limit_lower = -0.872665 -angular_limit_upper = 0.872665 -[node name="Bone-4" parent="Softbody2d3" instance=ExtResource("3_6ern4")] -position = Vector2(83.1484, 42) +[node name="Bone-4" type="RigidBody2D" parent="Softbody2d3" instance=ExtResource("3_6ern4")] +position = Vector2(83, 42) +input_pickable = true mass = 0.04 physics_material_override = ExtResource("5_221ya") +script = ExtResource("11_tqnjl") +metadata/idx = 4 metadata/bone_name = &"Bone-4" [node name="CircleShape2D" type="CollisionShape2D" parent="Softbody2d3/Bone-4"] -shape = SubResource("CircleShape2D_oqj3n") +shape = SubResource("CircleShape2D_truie") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Softbody2d3/Bone-4"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-4") update_rotation = false update_scale = false [node name="Joint2D-Bone-4-Bone-0" type="PinJoint2D" parent="Softbody2d3/Bone-4"] visible = false -rotation = -4.69231 +rotation = -4.68995 node_a = NodePath("..") node_b = NodePath("../../Bone-0") bias = 0.2 softness = 20.0 -angular_limit_enabled = true -angular_limit_lower = -0.872665 -angular_limit_upper = 0.872665 [node name="Joint2D-Bone-4-Bone-1" type="PinJoint2D" parent="Softbody2d3/Bone-4"] visible = false -rotation = 0.847297 +rotation = 0.846956 node_a = NodePath("..") node_b = NodePath("../../Bone-1") bias = 0.2 softness = 20.0 -angular_limit_enabled = true -angular_limit_lower = -0.872665 -angular_limit_upper = 0.872665 [node name="Joint2D-Bone-4-Bone-6" type="PinJoint2D" parent="Softbody2d3/Bone-4"] visible = false -rotation = -1.68475 +rotation = -1.68459 node_a = NodePath("..") node_b = NodePath("../../Bone-6") bias = 0.2 softness = 20.0 -angular_limit_enabled = true -angular_limit_lower = -0.872665 -angular_limit_upper = 0.872665 -[node name="Bone-5" parent="Softbody2d3" instance=ExtResource("3_6ern4")] -position = Vector2(84.7975, 145.223) +[node name="Bone-5" type="RigidBody2D" parent="Softbody2d3" instance=ExtResource("3_6ern4")] +position = Vector2(84.867, 145.192) +input_pickable = true mass = 0.04 physics_material_override = ExtResource("5_221ya") +script = ExtResource("11_tqnjl") +metadata/idx = 5 metadata/bone_name = &"Bone-5" [node name="CircleShape2D" type="CollisionShape2D" parent="Softbody2d3/Bone-5"] -shape = SubResource("CircleShape2D_oqj3n") +shape = SubResource("CircleShape2D_truie") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Softbody2d3/Bone-5"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-5") update_rotation = false update_scale = false [node name="Joint2D-Bone-5-Bone-2" type="PinJoint2D" parent="Softbody2d3/Bone-5"] visible = false -rotation = -4.13664 +rotation = -4.138 node_a = NodePath("..") node_b = NodePath("../../Bone-2") bias = 0.2 softness = 20.0 -angular_limit_enabled = true -angular_limit_lower = -0.872665 -angular_limit_upper = 0.872665 [node name="Joint2D-Bone-5-Bone-3" type="PinJoint2D" parent="Softbody2d3/Bone-5"] visible = false -rotation = 1.43915 +rotation = 1.43846 node_a = NodePath("..") node_b = NodePath("../../Bone-3") bias = 0.2 softness = 20.0 -angular_limit_enabled = true -angular_limit_lower = -0.872665 -angular_limit_upper = 0.872665 [node name="Joint2D-Bone-5-Bone-9" type="PinJoint2D" parent="Softbody2d3/Bone-5"] visible = false -rotation = 0.122244 +rotation = 0.124714 node_a = NodePath("..") node_b = NodePath("../../Bone-9") bias = 0.2 softness = 20.0 -angular_limit_enabled = true -angular_limit_lower = -0.872665 -angular_limit_upper = 0.872665 -[node name="Bone-6" parent="Softbody2d3" instance=ExtResource("3_6ern4")] -position = Vector2(118.099, 38) +[node name="Bone-6" type="RigidBody2D" parent="Softbody2d3" instance=ExtResource("3_6ern4")] +position = Vector2(118, 38) +input_pickable = true mass = 0.04 physics_material_override = ExtResource("5_221ya") +script = ExtResource("11_tqnjl") +metadata/idx = 6 metadata/bone_name = &"Bone-6" [node name="CircleShape2D" type="CollisionShape2D" parent="Softbody2d3/Bone-6"] -shape = SubResource("CircleShape2D_oqj3n") +shape = SubResource("CircleShape2D_truie") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Softbody2d3/Bone-6"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-6") update_rotation = false update_scale = false [node name="Joint2D-Bone-6-Bone-4" type="PinJoint2D" parent="Softbody2d3/Bone-6"] visible = false -rotation = 1.45684 +rotation = 1.457 node_a = NodePath("..") node_b = NodePath("../../Bone-4") bias = 0.2 softness = 20.0 -angular_limit_enabled = true -angular_limit_lower = -0.872665 -angular_limit_upper = 0.872665 [node name="Joint2D-Bone-6-Bone-7" type="PinJoint2D" parent="Softbody2d3/Bone-6"] visible = false @@ -21765,20 +26455,21 @@ node_a = NodePath("..") node_b = NodePath("../../Bone-7") bias = 0.2 softness = 20.0 -angular_limit_enabled = true -angular_limit_lower = -0.872665 -angular_limit_upper = 0.872665 -[node name="Bone-7" parent="Softbody2d3" instance=ExtResource("3_6ern4")] -position = Vector2(153.058, 38) +[node name="Bone-7" type="RigidBody2D" parent="Softbody2d3" instance=ExtResource("3_6ern4")] +position = Vector2(153, 38) +input_pickable = true mass = 0.04 physics_material_override = ExtResource("5_221ya") +script = ExtResource("11_tqnjl") +metadata/idx = 7 metadata/bone_name = &"Bone-7" [node name="CircleShape2D" type="CollisionShape2D" parent="Softbody2d3/Bone-7"] -shape = SubResource("CircleShape2D_oqj3n") +shape = SubResource("CircleShape2D_truie") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Softbody2d3/Bone-7"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-7") update_rotation = false update_scale = false @@ -21790,244 +26481,200 @@ node_a = NodePath("..") node_b = NodePath("../../Bone-6") bias = 0.2 softness = 20.0 -angular_limit_enabled = true -angular_limit_lower = -0.872665 -angular_limit_upper = 0.872665 [node name="Joint2D-Bone-7-Bone-14" type="PinJoint2D" parent="Softbody2d3/Bone-7"] visible = false -rotation = -1.48541 +rotation = -1.48288 node_a = NodePath("..") node_b = NodePath("../../Bone-14") bias = 0.2 softness = 20.0 -angular_limit_enabled = true -angular_limit_lower = -0.872665 -angular_limit_upper = 0.872665 -[node name="Bone-8" parent="Softbody2d3" instance=ExtResource("3_6ern4")] -position = Vector2(42.7859, 259.571) +[node name="Bone-8" type="RigidBody2D" parent="Softbody2d3" instance=ExtResource("3_6ern4")] +position = Vector2(42.75, 259.585) +input_pickable = true mass = 0.04 physics_material_override = ExtResource("5_221ya") +script = ExtResource("11_tqnjl") +metadata/idx = 8 metadata/bone_name = &"Bone-8" [node name="CircleShape2D" type="CollisionShape2D" parent="Softbody2d3/Bone-8"] -shape = SubResource("CircleShape2D_oqj3n") +shape = SubResource("CircleShape2D_truie") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Softbody2d3/Bone-8"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-8") update_rotation = false update_scale = false [node name="Joint2D-Bone-8-Bone-10" type="PinJoint2D" parent="Softbody2d3/Bone-8"] visible = false -rotation = -2.43636 +rotation = -2.43453 node_a = NodePath("..") node_b = NodePath("../../Bone-10") bias = 0.2 softness = 20.0 -angular_limit_enabled = true -angular_limit_lower = -0.872665 -angular_limit_upper = 0.872665 [node name="Joint2D-Bone-8-Bone-11" type="PinJoint2D" parent="Softbody2d3/Bone-8"] visible = false -rotation = -1.57115 +rotation = -1.5708 node_a = NodePath("..") node_b = NodePath("../../Bone-11") bias = 0.2 softness = 20.0 -angular_limit_enabled = true -angular_limit_lower = -0.872665 -angular_limit_upper = 0.872665 -[node name="Bone-9" parent="Softbody2d3" instance=ExtResource("3_6ern4")] -position = Vector2(79.8255, 185.693) +[node name="Bone-9" type="RigidBody2D" parent="Softbody2d3" instance=ExtResource("3_6ern4")] +position = Vector2(79.7925, 185.67) +input_pickable = true mass = 0.04 physics_material_override = ExtResource("5_221ya") +script = ExtResource("11_tqnjl") +metadata/idx = 9 metadata/bone_name = &"Bone-9" [node name="CircleShape2D" type="CollisionShape2D" parent="Softbody2d3/Bone-9"] -shape = SubResource("CircleShape2D_oqj3n") +shape = SubResource("CircleShape2D_truie") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Softbody2d3/Bone-9"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-9") update_rotation = false update_scale = false [node name="Joint2D-Bone-9-Bone-3" type="PinJoint2D" parent="Softbody2d3/Bone-9"] visible = false -rotation = -3.94209 +rotation = -3.94213 node_a = NodePath("..") node_b = NodePath("../../Bone-3") bias = 0.2 softness = 20.0 -angular_limit_enabled = true -angular_limit_lower = -0.872665 -angular_limit_upper = 0.872665 [node name="Joint2D-Bone-9-Bone-5" type="PinJoint2D" parent="Softbody2d3/Bone-9"] visible = false -rotation = -3.01935 +rotation = -3.01688 node_a = NodePath("..") node_b = NodePath("../../Bone-5") bias = 0.2 softness = 20.0 -angular_limit_enabled = true -angular_limit_lower = -0.872665 -angular_limit_upper = 0.872665 [node name="Joint2D-Bone-9-Bone-10" type="PinJoint2D" parent="Softbody2d3/Bone-9"] visible = false -rotation = 0.109296 +rotation = 0.107936 node_a = NodePath("..") node_b = NodePath("../../Bone-10") bias = 0.2 softness = 20.0 -angular_limit_enabled = true -angular_limit_lower = -0.872665 -angular_limit_upper = 0.872665 -[node name="Bone-10" parent="Softbody2d3" instance=ExtResource("3_6ern4")] -position = Vector2(76, 220.554) +[node name="Bone-10" type="RigidBody2D" parent="Softbody2d3" instance=ExtResource("3_6ern4")] +position = Vector2(76, 220.67) +input_pickable = true mass = 0.04 physics_material_override = ExtResource("5_221ya") +script = ExtResource("11_tqnjl") +metadata/idx = 10 metadata/bone_name = &"Bone-10" [node name="CircleShape2D" type="CollisionShape2D" parent="Softbody2d3/Bone-10"] -shape = SubResource("CircleShape2D_oqj3n") +shape = SubResource("CircleShape2D_truie") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Softbody2d3/Bone-10"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-10") update_rotation = false update_scale = false [node name="Joint2D-Bone-10-Bone-8" type="PinJoint2D" parent="Softbody2d3/Bone-10"] visible = false -rotation = 0.70523 +rotation = 0.707058 node_a = NodePath("..") node_b = NodePath("../../Bone-8") bias = 0.2 softness = 20.0 -angular_limit_enabled = true -angular_limit_lower = -0.872665 -angular_limit_upper = 0.872665 - -[node name="Joint2D-Bone-10-Bone-9" type="PinJoint2D" parent="Softbody2d3/Bone-10"] -visible = false -rotation = -3.0323 -node_a = NodePath("..") -node_b = NodePath("../../Bone-9") -bias = 0.2 -softness = 20.0 -angular_limit_enabled = true -angular_limit_lower = -0.872665 -angular_limit_upper = 0.872665 [node name="Joint2D-Bone-10-Bone-11" type="PinJoint2D" parent="Softbody2d3/Bone-10"] visible = false -rotation = -0.174763 +rotation = -0.177976 node_a = NodePath("..") node_b = NodePath("../../Bone-11") bias = 0.2 softness = 20.0 -angular_limit_enabled = true -angular_limit_lower = -0.872665 -angular_limit_upper = 0.872665 -[node name="Joint2D-Bone-10-Bone-12" type="PinJoint2D" parent="Softbody2d3/Bone-10"] +[node name="Joint2D-Bone-10-Bone-9" type="PinJoint2D" parent="Softbody2d3/Bone-10"] visible = false -rotation = -0.790592 +rotation = -3.03366 node_a = NodePath("..") -node_b = NodePath("../../Bone-12") +node_b = NodePath("../../Bone-9") bias = 0.2 softness = 20.0 -angular_limit_enabled = true -angular_limit_lower = -0.872665 -angular_limit_upper = 0.872665 -[node name="Bone-11" parent="Softbody2d3" instance=ExtResource("3_6ern4")] -position = Vector2(82.8865, 259.557) +[node name="Bone-11" type="RigidBody2D" parent="Softbody2d3" instance=ExtResource("3_6ern4")] +position = Vector2(83, 259.585) +input_pickable = true mass = 0.04 physics_material_override = ExtResource("5_221ya") +script = ExtResource("11_tqnjl") +metadata/idx = 11 metadata/bone_name = &"Bone-11" [node name="CircleShape2D" type="CollisionShape2D" parent="Softbody2d3/Bone-11"] -shape = SubResource("CircleShape2D_oqj3n") +shape = SubResource("CircleShape2D_truie") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Softbody2d3/Bone-11"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-11") update_rotation = false update_scale = false [node name="Joint2D-Bone-11-Bone-8" type="PinJoint2D" parent="Softbody2d3/Bone-11"] visible = false -rotation = 1.57044 +rotation = 1.5708 node_a = NodePath("..") node_b = NodePath("../../Bone-8") bias = 0.2 softness = 20.0 -angular_limit_enabled = true -angular_limit_lower = -0.872665 -angular_limit_upper = 0.872665 [node name="Joint2D-Bone-11-Bone-10" type="PinJoint2D" parent="Softbody2d3/Bone-11"] visible = false -rotation = -3.31636 +rotation = -3.31957 node_a = NodePath("..") node_b = NodePath("../../Bone-10") bias = 0.2 softness = 20.0 -angular_limit_enabled = true -angular_limit_lower = -0.872665 -angular_limit_upper = 0.872665 [node name="Joint2D-Bone-11-Bone-12" type="PinJoint2D" parent="Softbody2d3/Bone-11"] visible = false -rotation = -1.5011 +rotation = -1.50191 node_a = NodePath("..") node_b = NodePath("../../Bone-12") bias = 0.2 softness = 20.0 -angular_limit_enabled = true -angular_limit_lower = -0.872665 -angular_limit_upper = 0.872665 -[node name="Bone-12" parent="Softbody2d3" instance=ExtResource("3_6ern4")] -position = Vector2(117.878, 262) +[node name="Bone-12" type="RigidBody2D" parent="Softbody2d3" instance=ExtResource("3_6ern4")] +position = Vector2(118, 262) +input_pickable = true mass = 0.04 physics_material_override = ExtResource("5_221ya") +script = ExtResource("11_tqnjl") +metadata/idx = 12 metadata/bone_name = &"Bone-12" [node name="CircleShape2D" type="CollisionShape2D" parent="Softbody2d3/Bone-12"] -shape = SubResource("CircleShape2D_oqj3n") +shape = SubResource("CircleShape2D_truie") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Softbody2d3/Bone-12"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-12") update_rotation = false update_scale = false -[node name="Joint2D-Bone-12-Bone-10" type="PinJoint2D" parent="Softbody2d3/Bone-12"] -visible = false -rotation = -3.93218 -node_a = NodePath("..") -node_b = NodePath("../../Bone-10") -bias = 0.2 -softness = 20.0 -angular_limit_enabled = true -angular_limit_lower = -0.872665 -angular_limit_upper = 0.872665 - [node name="Joint2D-Bone-12-Bone-11" type="PinJoint2D" parent="Softbody2d3/Bone-12"] visible = false -rotation = -4.64269 +rotation = -4.6435 node_a = NodePath("..") node_b = NodePath("../../Bone-11") bias = 0.2 softness = 20.0 -angular_limit_enabled = true -angular_limit_lower = -0.872665 -angular_limit_upper = 0.872665 [node name="Joint2D-Bone-12-Bone-13" type="PinJoint2D" parent="Softbody2d3/Bone-12"] visible = false @@ -22036,20 +26683,21 @@ node_a = NodePath("..") node_b = NodePath("../../Bone-13") bias = 0.2 softness = 20.0 -angular_limit_enabled = true -angular_limit_lower = -0.872665 -angular_limit_upper = 0.872665 -[node name="Bone-13" parent="Softbody2d3" instance=ExtResource("3_6ern4")] -position = Vector2(152.976, 262) +[node name="Bone-13" type="RigidBody2D" parent="Softbody2d3" instance=ExtResource("3_6ern4")] +position = Vector2(153, 262) +input_pickable = true mass = 0.04 physics_material_override = ExtResource("5_221ya") +script = ExtResource("11_tqnjl") +metadata/idx = 13 metadata/bone_name = &"Bone-13" [node name="CircleShape2D" type="CollisionShape2D" parent="Softbody2d3/Bone-13"] -shape = SubResource("CircleShape2D_oqj3n") +shape = SubResource("CircleShape2D_truie") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Softbody2d3/Bone-13"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-13") update_rotation = false update_scale = false @@ -22061,9 +26709,6 @@ node_a = NodePath("..") node_b = NodePath("../../Bone-12") bias = 0.2 softness = 20.0 -angular_limit_enabled = true -angular_limit_lower = -0.872665 -angular_limit_upper = 0.872665 [node name="Joint2D-Bone-13-Bone-20" type="PinJoint2D" parent="Softbody2d3/Bone-13"] visible = false @@ -22072,302 +26717,273 @@ node_a = NodePath("..") node_b = NodePath("../../Bone-20") bias = 0.2 softness = 20.0 -angular_limit_enabled = true -angular_limit_lower = -0.872665 -angular_limit_upper = 0.872665 -[node name="Bone-14" parent="Softbody2d3" instance=ExtResource("3_6ern4")] -position = Vector2(187.768, 40.9708) +[node name="Bone-14" type="RigidBody2D" parent="Softbody2d3" instance=ExtResource("3_6ern4")] +position = Vector2(188, 41.085) +input_pickable = true mass = 0.04 physics_material_override = ExtResource("5_221ya") +script = ExtResource("11_tqnjl") +metadata/idx = 14 metadata/bone_name = &"Bone-14" [node name="CircleShape2D" type="CollisionShape2D" parent="Softbody2d3/Bone-14"] -shape = SubResource("CircleShape2D_oqj3n") +shape = SubResource("CircleShape2D_truie") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Softbody2d3/Bone-14"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-14") update_rotation = false update_scale = false [node name="Joint2D-Bone-14-Bone-7" type="PinJoint2D" parent="Softbody2d3/Bone-14"] visible = false -rotation = -4.62701 +rotation = -4.62447 node_a = NodePath("..") node_b = NodePath("../../Bone-7") bias = 0.2 softness = 20.0 -angular_limit_enabled = true -angular_limit_lower = -0.872665 -angular_limit_upper = 0.872665 [node name="Joint2D-Bone-14-Bone-15" type="PinJoint2D" parent="Softbody2d3/Bone-14"] visible = false -rotation = -1.56855 +rotation = -1.5708 node_a = NodePath("..") node_b = NodePath("../../Bone-15") bias = 0.2 softness = 20.0 -angular_limit_enabled = true -angular_limit_lower = -0.872665 -angular_limit_upper = 0.872665 [node name="Joint2D-Bone-14-Bone-16" type="PinJoint2D" parent="Softbody2d3/Bone-14"] visible = false -rotation = -0.711399 +rotation = -0.708408 node_a = NodePath("..") node_b = NodePath("../../Bone-16") bias = 0.2 softness = 20.0 -angular_limit_enabled = true -angular_limit_lower = -0.872665 -angular_limit_upper = 0.872665 -[node name="Bone-15" parent="Softbody2d3" instance=ExtResource("3_6ern4")] -position = Vector2(223.144, 41.0504) +[node name="Bone-15" type="RigidBody2D" parent="Softbody2d3" instance=ExtResource("3_6ern4")] +position = Vector2(223, 41.085) +input_pickable = true mass = 0.04 physics_material_override = ExtResource("5_221ya") +script = ExtResource("11_tqnjl") +metadata/idx = 15 metadata/bone_name = &"Bone-15" [node name="CircleShape2D" type="CollisionShape2D" parent="Softbody2d3/Bone-15"] -shape = SubResource("CircleShape2D_oqj3n") +shape = SubResource("CircleShape2D_truie") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Softbody2d3/Bone-15"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-15") update_rotation = false update_scale = false [node name="Joint2D-Bone-15-Bone-14" type="PinJoint2D" parent="Softbody2d3/Bone-15"] visible = false -rotation = -4.71014 +rotation = 1.5708 node_a = NodePath("..") node_b = NodePath("../../Bone-14") bias = 0.2 softness = 20.0 -angular_limit_enabled = true -angular_limit_lower = -0.872665 -angular_limit_upper = 0.872665 [node name="Joint2D-Bone-15-Bone-16" type="PinJoint2D" parent="Softbody2d3/Bone-15"] visible = false -rotation = 0.0327709 +rotation = 0.0274023 node_a = NodePath("..") node_b = NodePath("../../Bone-16") bias = 0.2 softness = 20.0 -angular_limit_enabled = true -angular_limit_lower = -0.872665 -angular_limit_upper = 0.872665 [node name="Joint2D-Bone-15-Bone-18" type="PinJoint2D" parent="Softbody2d3/Bone-15"] visible = false -rotation = -1.56774 +rotation = -1.5708 node_a = NodePath("..") node_b = NodePath("../../Bone-18") bias = 0.2 softness = 20.0 -angular_limit_enabled = true -angular_limit_lower = -0.872665 -angular_limit_upper = 0.872665 -[node name="Bone-16" parent="Softbody2d3" instance=ExtResource("3_6ern4")] -position = Vector2(221.85, 80.5114) +[node name="Bone-16" type="RigidBody2D" parent="Softbody2d3" instance=ExtResource("3_6ern4")] +position = Vector2(221.915, 80.67) +input_pickable = true mass = 0.04 physics_material_override = ExtResource("5_221ya") +script = ExtResource("11_tqnjl") +metadata/idx = 16 metadata/bone_name = &"Bone-16" [node name="CircleShape2D" type="CollisionShape2D" parent="Softbody2d3/Bone-16"] -shape = SubResource("CircleShape2D_oqj3n") +shape = SubResource("CircleShape2D_truie") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Softbody2d3/Bone-16"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-16") update_rotation = false update_scale = false +[node name="Joint2D-Bone-16-Bone-18" type="PinJoint2D" parent="Softbody2d3/Bone-16"] +visible = false +rotation = -2.37224 +node_a = NodePath("..") +node_b = NodePath("../../Bone-18") +bias = 0.2 +softness = 20.0 + [node name="Joint2D-Bone-16-Bone-14" type="PinJoint2D" parent="Softbody2d3/Bone-16"] visible = false -rotation = -3.85299 +rotation = -3.85 node_a = NodePath("..") node_b = NodePath("../../Bone-14") bias = 0.2 softness = 20.0 -angular_limit_enabled = true -angular_limit_lower = -0.872665 -angular_limit_upper = 0.872665 [node name="Joint2D-Bone-16-Bone-15" type="PinJoint2D" parent="Softbody2d3/Bone-16"] visible = false -rotation = -3.10882 +rotation = -3.11419 node_a = NodePath("..") node_b = NodePath("../../Bone-15") bias = 0.2 softness = 20.0 -angular_limit_enabled = true -angular_limit_lower = -0.872665 -angular_limit_upper = 0.872665 [node name="Joint2D-Bone-16-Bone-17" type="PinJoint2D" parent="Softbody2d3/Bone-16"] visible = false -rotation = 0.0787818 +rotation = 0.0804418 node_a = NodePath("..") node_b = NodePath("../../Bone-17") bias = 0.2 softness = 20.0 -angular_limit_enabled = true -angular_limit_lower = -0.872665 -angular_limit_upper = 0.872665 - -[node name="Joint2D-Bone-16-Bone-18" type="PinJoint2D" parent="Softbody2d3/Bone-16"] -visible = false -rotation = -2.36948 -node_a = NodePath("..") -node_b = NodePath("../../Bone-18") -bias = 0.2 -softness = 20.0 -angular_limit_enabled = true -angular_limit_lower = -0.872665 -angular_limit_upper = 0.872665 [node name="Joint2D-Bone-16-Bone-19" type="PinJoint2D" parent="Softbody2d3/Bone-16"] visible = false -rotation = -0.661664 +rotation = -0.663373 node_a = NodePath("..") node_b = NodePath("../../Bone-19") bias = 0.2 softness = 20.0 -angular_limit_enabled = true -angular_limit_lower = -0.872665 -angular_limit_upper = 0.872665 -[node name="Bone-17" parent="Softbody2d3" instance=ExtResource("3_6ern4")] -position = Vector2(217.769, 132.208) +[node name="Bone-17" type="RigidBody2D" parent="Softbody2d3" instance=ExtResource("3_6ern4")] +position = Vector2(217.75, 132.335) +input_pickable = true mass = 0.04 physics_material_override = ExtResource("5_221ya") +script = ExtResource("11_tqnjl") +metadata/idx = 17 metadata/bone_name = &"Bone-17" [node name="CircleShape2D" type="CollisionShape2D" parent="Softbody2d3/Bone-17"] -shape = SubResource("CircleShape2D_oqj3n") +shape = SubResource("CircleShape2D_truie") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Softbody2d3/Bone-17"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-17") update_rotation = false update_scale = false [node name="Joint2D-Bone-17-Bone-16" type="PinJoint2D" parent="Softbody2d3/Bone-17"] visible = false -rotation = -3.06281 +rotation = -3.06115 node_a = NodePath("..") node_b = NodePath("../../Bone-16") bias = 0.2 softness = 20.0 -angular_limit_enabled = true -angular_limit_lower = -0.872665 -angular_limit_upper = 0.872665 [node name="Joint2D-Bone-17-Bone-19" type="PinJoint2D" parent="Softbody2d3/Bone-17"] visible = false -rotation = -1.54861 +rotation = -1.55232 node_a = NodePath("..") node_b = NodePath("../../Bone-19") bias = 0.2 softness = 20.0 -angular_limit_enabled = true -angular_limit_lower = -0.872665 -angular_limit_upper = 0.872665 -[node name="Bone-18" parent="Softbody2d3" instance=ExtResource("3_6ern4")] -position = Vector2(260.166, 41.1636) +[node name="Bone-18" type="RigidBody2D" parent="Softbody2d3" instance=ExtResource("3_6ern4")] +position = Vector2(260.25, 41.085) +input_pickable = true mass = 0.04 physics_material_override = ExtResource("5_221ya") +script = ExtResource("11_tqnjl") +metadata/idx = 18 metadata/bone_name = &"Bone-18" [node name="CircleShape2D" type="CollisionShape2D" parent="Softbody2d3/Bone-18"] -shape = SubResource("CircleShape2D_oqj3n") +shape = SubResource("CircleShape2D_truie") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Softbody2d3/Bone-18"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-18") update_rotation = false update_scale = false -[node name="Joint2D-Bone-18-Bone-15" type="PinJoint2D" parent="Softbody2d3/Bone-18"] +[node name="Joint2D-Bone-18-Bone-16" type="PinJoint2D" parent="Softbody2d3/Bone-18"] visible = false -rotation = -4.70933 +rotation = 0.769357 node_a = NodePath("..") -node_b = NodePath("../../Bone-15") +node_b = NodePath("../../Bone-16") bias = 0.2 softness = 20.0 -angular_limit_enabled = true -angular_limit_lower = -0.872665 -angular_limit_upper = 0.872665 -[node name="Joint2D-Bone-18-Bone-16" type="PinJoint2D" parent="Softbody2d3/Bone-18"] +[node name="Joint2D-Bone-18-Bone-15" type="PinJoint2D" parent="Softbody2d3/Bone-18"] visible = false -rotation = 0.772108 +rotation = 1.5708 node_a = NodePath("..") -node_b = NodePath("../../Bone-16") +node_b = NodePath("../../Bone-15") bias = 0.2 softness = 20.0 -angular_limit_enabled = true -angular_limit_lower = -0.872665 -angular_limit_upper = 0.872665 -[node name="Bone-19" parent="Softbody2d3" instance=ExtResource("3_6ern4")] -position = Vector2(262.89, 133.21) +[node name="Bone-19" type="RigidBody2D" parent="Softbody2d3" instance=ExtResource("3_6ern4")] +position = Vector2(262.945, 133.17) +input_pickable = true mass = 0.04 physics_material_override = ExtResource("5_221ya") +script = ExtResource("11_tqnjl") +metadata/idx = 19 metadata/bone_name = &"Bone-19" [node name="CircleShape2D" type="CollisionShape2D" parent="Softbody2d3/Bone-19"] -shape = SubResource("CircleShape2D_oqj3n") +shape = SubResource("CircleShape2D_truie") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Softbody2d3/Bone-19"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-19") update_rotation = false update_scale = false [node name="Joint2D-Bone-19-Bone-16" type="PinJoint2D" parent="Softbody2d3/Bone-19"] visible = false -rotation = -3.80326 +rotation = -3.80497 node_a = NodePath("..") node_b = NodePath("../../Bone-16") bias = 0.2 softness = 20.0 -angular_limit_enabled = true -angular_limit_lower = -0.872665 -angular_limit_upper = 0.872665 [node name="Joint2D-Bone-19-Bone-17" type="PinJoint2D" parent="Softbody2d3/Bone-19"] visible = false -rotation = -4.6902 +rotation = -4.69392 node_a = NodePath("..") node_b = NodePath("../../Bone-17") bias = 0.2 softness = 20.0 -angular_limit_enabled = true -angular_limit_lower = -0.872665 -angular_limit_upper = 0.872665 [node name="Joint2D-Bone-19-Bone-22" type="PinJoint2D" parent="Softbody2d3/Bone-19"] visible = false -rotation = -0.0320931 +rotation = -0.0312277 node_a = NodePath("..") node_b = NodePath("../../Bone-22") bias = 0.2 softness = 20.0 -angular_limit_enabled = true -angular_limit_lower = -0.872665 -angular_limit_upper = 0.872665 -[node name="Bone-20" parent="Softbody2d3" instance=ExtResource("3_6ern4")] -position = Vector2(188.094, 262) +[node name="Bone-20" type="RigidBody2D" parent="Softbody2d3" instance=ExtResource("3_6ern4")] +position = Vector2(188, 262) +input_pickable = true mass = 0.04 physics_material_override = ExtResource("5_221ya") +script = ExtResource("11_tqnjl") +metadata/idx = 20 metadata/bone_name = &"Bone-20" [node name="CircleShape2D" type="CollisionShape2D" parent="Softbody2d3/Bone-20"] -shape = SubResource("CircleShape2D_oqj3n") +shape = SubResource("CircleShape2D_truie") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Softbody2d3/Bone-20"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-20") update_rotation = false update_scale = false @@ -22379,740 +26995,816 @@ node_a = NodePath("..") node_b = NodePath("../../Bone-13") bias = 0.2 softness = 20.0 -angular_limit_enabled = true -angular_limit_lower = -0.872665 -angular_limit_upper = 0.872665 [node name="Joint2D-Bone-20-Bone-21" type="PinJoint2D" parent="Softbody2d3/Bone-20"] visible = false -rotation = -1.64303 +rotation = -1.63969 node_a = NodePath("..") node_b = NodePath("../../Bone-21") bias = 0.2 softness = 20.0 -angular_limit_enabled = true -angular_limit_lower = -0.872665 -angular_limit_upper = 0.872665 -[node name="Bone-21" parent="Softbody2d3" instance=ExtResource("3_6ern4")] -position = Vector2(223.077, 259.469) +[node name="Bone-21" type="RigidBody2D" parent="Softbody2d3" instance=ExtResource("3_6ern4")] +position = Vector2(223, 259.585) +input_pickable = true mass = 0.04 physics_material_override = ExtResource("5_221ya") +script = ExtResource("11_tqnjl") +metadata/idx = 21 metadata/bone_name = &"Bone-21" [node name="CircleShape2D" type="CollisionShape2D" parent="Softbody2d3/Bone-21"] -shape = SubResource("CircleShape2D_oqj3n") +shape = SubResource("CircleShape2D_truie") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Softbody2d3/Bone-21"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-21") update_rotation = false update_scale = false [node name="Joint2D-Bone-21-Bone-20" type="PinJoint2D" parent="Softbody2d3/Bone-21"] visible = false -rotation = 1.49856 +rotation = 1.50191 node_a = NodePath("..") node_b = NodePath("../../Bone-20") bias = 0.2 softness = 20.0 -angular_limit_enabled = true -angular_limit_lower = -0.872665 -angular_limit_upper = 0.872665 -[node name="Joint2D-Bone-21-Bone-23" type="PinJoint2D" parent="Softbody2d3/Bone-21"] +[node name="Joint2D-Bone-21-Bone-24" type="PinJoint2D" parent="Softbody2d3/Bone-21"] visible = false -rotation = -2.42155 +rotation = -1.5708 node_a = NodePath("..") -node_b = NodePath("../../Bone-23") +node_b = NodePath("../../Bone-24") bias = 0.2 softness = 20.0 -angular_limit_enabled = true -angular_limit_lower = -0.872665 -angular_limit_upper = 0.872665 -[node name="Joint2D-Bone-21-Bone-24" type="PinJoint2D" parent="Softbody2d3/Bone-21"] +[node name="Joint2D-Bone-21-Bone-23" type="PinJoint2D" parent="Softbody2d3/Bone-21"] visible = false -rotation = -1.57338 +rotation = -2.42051 node_a = NodePath("..") -node_b = NodePath("../../Bone-24") +node_b = NodePath("../../Bone-23") bias = 0.2 softness = 20.0 -angular_limit_enabled = true -angular_limit_lower = -0.872665 -angular_limit_upper = 0.872665 -[node name="Bone-22" parent="Softbody2d3" instance=ExtResource("3_6ern4")] -position = Vector2(264.573, 185.617) +[node name="Bone-22" type="RigidBody2D" parent="Softbody2d3" instance=ExtResource("3_6ern4")] +position = Vector2(264.585, 185.67) +input_pickable = true mass = 0.04 physics_material_override = ExtResource("5_221ya") +script = ExtResource("11_tqnjl") +metadata/idx = 22 metadata/bone_name = &"Bone-22" [node name="CircleShape2D" type="CollisionShape2D" parent="Softbody2d3/Bone-22"] -shape = SubResource("CircleShape2D_oqj3n") +shape = SubResource("CircleShape2D_truie") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Softbody2d3/Bone-22"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-22") update_rotation = false update_scale = false -[node name="Joint2D-Bone-22-Bone-19" type="PinJoint2D" parent="Softbody2d3/Bone-22"] +[node name="Joint2D-Bone-22-Bone-23" type="PinJoint2D" parent="Softbody2d3/Bone-22"] visible = false -rotation = -3.17369 +rotation = 0.207786 node_a = NodePath("..") -node_b = NodePath("../../Bone-19") +node_b = NodePath("../../Bone-23") bias = 0.2 softness = 20.0 -angular_limit_enabled = true -angular_limit_lower = -0.872665 -angular_limit_upper = 0.872665 -[node name="Joint2D-Bone-22-Bone-23" type="PinJoint2D" parent="Softbody2d3/Bone-22"] +[node name="Joint2D-Bone-22-Bone-19" type="PinJoint2D" parent="Softbody2d3/Bone-22"] visible = false -rotation = 0.206722 +rotation = -3.17282 node_a = NodePath("..") -node_b = NodePath("../../Bone-23") +node_b = NodePath("../../Bone-19") bias = 0.2 softness = 20.0 -angular_limit_enabled = true -angular_limit_lower = -0.872665 -angular_limit_upper = 0.872665 -[node name="Bone-23" parent="Softbody2d3" instance=ExtResource("3_6ern4")] -position = Vector2(257.257, 220.501) +[node name="Bone-23" type="RigidBody2D" parent="Softbody2d3" instance=ExtResource("3_6ern4")] +position = Vector2(257.206, 220.67) +input_pickable = true mass = 0.04 physics_material_override = ExtResource("5_221ya") +script = ExtResource("11_tqnjl") +metadata/idx = 23 metadata/bone_name = &"Bone-23" [node name="CircleShape2D" type="CollisionShape2D" parent="Softbody2d3/Bone-23"] -shape = SubResource("CircleShape2D_oqj3n") +shape = SubResource("CircleShape2D_truie") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Softbody2d3/Bone-23"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-23") update_rotation = false update_scale = false -[node name="Joint2D-Bone-23-Bone-21" type="PinJoint2D" parent="Softbody2d3/Bone-23"] +[node name="Joint2D-Bone-23-Bone-22" type="PinJoint2D" parent="Softbody2d3/Bone-23"] visible = false -rotation = 0.720039 +rotation = -2.93381 node_a = NodePath("..") -node_b = NodePath("../../Bone-21") +node_b = NodePath("../../Bone-22") bias = 0.2 softness = 20.0 -angular_limit_enabled = true -angular_limit_lower = -0.872665 -angular_limit_upper = 0.872665 -[node name="Joint2D-Bone-23-Bone-22" type="PinJoint2D" parent="Softbody2d3/Bone-23"] +[node name="Joint2D-Bone-23-Bone-21" type="PinJoint2D" parent="Softbody2d3/Bone-23"] visible = false -rotation = -2.93487 +rotation = 0.721087 node_a = NodePath("..") -node_b = NodePath("../../Bone-22") +node_b = NodePath("../../Bone-21") bias = 0.2 softness = 20.0 -angular_limit_enabled = true -angular_limit_lower = -0.872665 -angular_limit_upper = 0.872665 [node name="Joint2D-Bone-23-Bone-24" type="PinJoint2D" parent="Softbody2d3/Bone-23"] visible = false -rotation = -0.0623544 +rotation = -0.0628094 node_a = NodePath("..") node_b = NodePath("../../Bone-24") bias = 0.2 softness = 20.0 -angular_limit_enabled = true -angular_limit_lower = -0.872665 -angular_limit_upper = 0.872665 -[node name="Bone-24" parent="Softbody2d3" instance=ExtResource("3_6ern4")] -position = Vector2(259.684, 259.374) +[node name="Bone-24" type="RigidBody2D" parent="Softbody2d3" instance=ExtResource("3_6ern4")] +position = Vector2(259.653, 259.585) +input_pickable = true mass = 0.04 physics_material_override = ExtResource("5_221ya") +script = ExtResource("11_tqnjl") +metadata/idx = 24 metadata/bone_name = &"Bone-24" [node name="CircleShape2D" type="CollisionShape2D" parent="Softbody2d3/Bone-24"] -shape = SubResource("CircleShape2D_oqj3n") +shape = SubResource("CircleShape2D_truie") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Softbody2d3/Bone-24"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-24") update_rotation = false update_scale = false [node name="Joint2D-Bone-24-Bone-21" type="PinJoint2D" parent="Softbody2d3/Bone-24"] visible = false -rotation = 1.56821 +rotation = 1.5708 node_a = NodePath("..") node_b = NodePath("../../Bone-21") bias = 0.2 softness = 20.0 -angular_limit_enabled = true -angular_limit_lower = -0.872665 -angular_limit_upper = 0.872665 [node name="Joint2D-Bone-24-Bone-23" type="PinJoint2D" parent="Softbody2d3/Bone-24"] visible = false -rotation = -3.20395 +rotation = -3.2044 node_a = NodePath("..") node_b = NodePath("../../Bone-23") bias = 0.2 softness = 20.0 -angular_limit_enabled = true -angular_limit_lower = -0.872665 -angular_limit_upper = 0.872665 [node name="Softbody2d4" type="Polygon2D" parent="."] position = Vector2(1240, -292) rotation = -0.58652 texture = ExtResource("9_56vnr") skeleton = NodePath("Skeleton2D") -polygon = PackedVector2Array(37, 21, 34, 26, 33, 26, 31, 32, 30, 32, 24, 49, 23, 49, 17, 70, 16, 70, 15, 76, 15, 82, 13, 87, 13, 111, 16, 120, 16, 123, 23, 135, 23, 137, 25, 137, 25, 139, 40, 152, 42, 152, 42, 154, 44, 154, 46, 157, 47, 157, 47, 159, 49, 159, 55, 171, 56, 171, 59, 183, 59, 197, 56, 209, 56, 213, 55, 214, 54, 214, 54, 219, 49, 230, 49, 233, 48, 234, 47, 234, 46, 236, 46, 239, 39, 250, 39, 253, 37, 253, 35, 257, 35, 260, 33, 260, 32, 262, 32, 264, 20, 280, 20, 281, 262, 281, 269, 265, 270, 265, 276, 246, 277, 246, 283, 220, 284, 220, 286, 202, 287, 202, 287, 173, 284, 164, 284, 160, 282, 158, 282, 155, 277, 147, 277, 145, 275, 145, 275, 143, 272, 141, 272, 139, 257, 127, 255, 127, 255, 125, 250, 120, 249, 120, 245, 111, 244, 111, 242, 100, 241, 100, 241, 88, 248, 67, 248, 64, 249, 63, 250, 63, 255, 53, 255, 51, 257, 49, 258, 49, 262, 42, 262, 40, 264, 40, 265, 38, 265, 36, 267, 36, 267, 34, 270, 32, 270, 30, 280, 20, 280, 19, 37, 19, 65.8553, 28.0775, 65.5366, 63.1079, 30.815, 63.0388, 30.6569, 28.1166, 65.5171, 27.7391, 30.815, 63.0388, 30.4871, 63.3633, 18.928, 63.2519, 23, 49, 24, 49, 30, 32, 30.6745, 32, 65.5171, 27.7391, 32.3004, 28.0988, 33, 26, 34, 26, 37, 21, 37, 19, 65.5062, 19, 65.5366, 63.1079, 65.6774, 63.2492, 65.5397, 98.1504, 30.574, 98.1106, 30.4871, 63.3633, 30.815, 63.0388, 30.4871, 63.3633, 30.574, 98.1106, 30.3336, 98.3536, 13, 98.2786, 13, 87, 15, 82, 15, 76, 16, 70, 17, 70, 18.928, 63.2519, 65.5397, 98.1504, 65.7279, 98.3407, 65.3487, 133.183, 65.3483, 133.183, 30.5374, 132.986, 30.3336, 98.3536, 30.574, 98.1106, 30.3336, 98.3536, 30.5374, 132.986, 30.3521, 133.172, 21.925, 133.157, 16, 123, 16, 120, 13, 111, 13, 98.2786, 65.3483, 133.183, 65.516, 168.254, 65.433, 168.338, 53.6497, 168.299, 49, 159, 47, 159, 47, 157, 46, 157, 44, 154, 42, 154, 42, 152, 40, 152, 30.3235, 143.614, 30.3521, 133.172, 30.5374, 132.986, 30.3521, 133.172, 30.3235, 143.614, 25, 139, 25, 137, 23, 137, 23, 135, 21.925, 133.157, 100.791, 28.4421, 100.553, 63.2998, 100.499, 63.354, 65.6774, 63.2492, 65.5366, 63.1079, 65.8553, 28.0775, 100.404, 28.0557, 100.404, 28.0557, 65.8553, 28.0775, 65.5171, 27.7391, 65.5062, 19, 100.522, 19, 100.499, 63.354, 100.7, 98.3052, 100.567, 98.4393, 65.7279, 98.3407, 65.5397, 98.1504, 65.6774, 63.2492, 100.567, 98.4393, 100.781, 132.946, 100.529, 133.199, 65.3487, 133.183, 65.7279, 98.3407, 100.529, 133.199, 100.379, 167.973, 65.516, 168.254, 65.3483, 133.183, 65.3487, 133.183, 135.842, 63.0599, 135.559, 63.3403, 100.553, 63.2998, 100.791, 28.4421, 135.567, 28.3839, 135.613, 28.337, 135.567, 28.3839, 100.791, 28.4421, 100.404, 28.0557, 100.522, 19, 135.501, 19, 135.559, 63.3403, 135.329, 98.0571, 100.7, 98.3052, 100.499, 63.354, 100.553, 63.2998, 135.807, 98.5306, 135.662, 133.356, 135.648, 133.37, 100.781, 132.946, 100.567, 98.4393, 100.7, 98.3052, 135.329, 98.0571, 135.648, 133.37, 135.27, 168.349, 100.63, 168.22, 100.379, 167.973, 100.529, 133.199, 100.781, 132.946, 170.518, 28.2243, 170.635, 63.0791, 170.184, 63.5307, 135.842, 63.0599, 135.567, 28.3839, 135.613, 28.337, 170.085, 27.7991, 170.085, 27.7991, 135.613, 28.337, 135.501, 19, 170.146, 19, 170.184, 63.5307, 170.647, 97.9911, 170.44, 98.2009, 135.807, 98.5306, 135.329, 98.0571, 135.559, 63.3403, 135.842, 63.0599, 170.674, 133.056, 170.255, 133.481, 135.662, 133.356, 135.807, 98.5306, 170.44, 98.2009, 170.255, 133.481, 170.843, 167.862, 170.257, 168.45, 135.393, 168.473, 135.27, 168.349, 135.648, 133.37, 135.662, 133.356, 65.267, 238.179, 65.3192, 238.231, 65.3761, 273.271, 30.5719, 273.238, 30.5526, 273.219, 30.5229, 265.969, 32, 264, 32, 262, 33, 260, 35, 260, 35, 257, 37, 253, 39, 253, 39, 250, 46, 239, 46, 238.143, 30.5526, 273.219, 25.1005, 273.199, 30.5229, 265.969, 30.5526, 273.219, 30.5719, 273.238, 30.4967, 281, 20, 281, 20, 280, 25.1005, 273.199, 65.3761, 273.271, 65.5718, 273.468, 65.5262, 281, 30.4967, 281, 30.5719, 273.238, 100.63, 168.22, 100.433, 203.196, 100.214, 203.413, 65.5973, 202.877, 65.433, 168.338, 65.516, 168.254, 100.379, 167.973, 65.433, 168.338, 65.5973, 202.877, 65.3649, 203.113, 57.4641, 203.143, 59, 197, 59, 183, 56, 171, 55, 171, 53.6509, 168.302, 100.214, 203.413, 100.198, 238.103, 65.3192, 238.231, 65.267, 238.179, 65.3649, 203.113, 65.5973, 202.877, 65.267, 238.179, 46, 238.143, 46, 236, 47, 234, 48, 234, 49, 233, 49, 230, 54, 219, 54, 214, 55, 214, 56, 213, 56, 209, 57.4641, 203.143, 65.3649, 203.113, 100.466, 238.368, 100.371, 273.199, 65.5718, 273.468, 65.3761, 273.271, 65.3192, 238.231, 100.198, 238.103, 100.436, 273.263, 100.45, 281, 65.5262, 281, 65.5718, 273.468, 100.371, 273.199, 135.27, 168.349, 135.393, 168.469, 135.417, 203.309, 100.433, 203.196, 100.63, 168.22, 135.417, 203.309, 135.421, 203.313, 135.369, 237.973, 135.263, 238.077, 100.466, 238.368, 100.198, 238.103, 100.214, 203.413, 100.433, 203.196, 135.363, 273.434, 100.436, 273.263, 100.371, 273.199, 100.466, 238.368, 135.263, 238.077, 135.363, 273.434, 135.364, 273.435, 135.386, 281, 100.45, 281, 100.436, 273.263, 170.533, 203.22, 135.421, 203.313, 135.417, 203.309, 135.393, 168.469, 170.257, 168.45, 170.741, 203.425, 170.69, 238.088, 170.349, 238.428, 135.369, 237.973, 135.421, 203.313, 170.533, 203.22, 170.349, 238.428, 170.571, 273.06, 135.364, 273.435, 135.363, 273.434, 135.263, 238.077, 135.369, 237.973, 170.675, 273.164, 170.645, 281, 135.386, 281, 135.364, 273.435, 170.571, 273.06, 205.451, 28.1096, 205.347, 62.9223, 170.635, 63.0791, 170.518, 28.2243, 205.374, 28.0309, 205.374, 28.0309, 170.518, 28.2243, 170.085, 27.799, 170.146, 19, 205.435, 19, 205.525, 63.1007, 205.572, 97.9336, 205.47, 98.0359, 170.647, 97.9911, 170.184, 63.5307, 170.635, 63.0791, 205.347, 62.9223, 205.47, 98.0359, 205.515, 132.946, 170.674, 133.057, 170.44, 98.2009, 170.647, 97.9911, 205.686, 133.118, 205.123, 168.186, 170.843, 167.862, 170.255, 133.481, 170.674, 133.057, 205.515, 132.946, 240.532, 28.4891, 240.332, 62.9584, 205.525, 63.1007, 205.347, 62.9223, 205.451, 28.1096, 240.941, 28.0838, 240.532, 28.4891, 205.451, 28.1096, 205.374, 28.0309, 205.435, 19, 240.795, 19, 240.697, 63.3272, 240.427, 97.9991, 205.572, 97.9336, 205.525, 63.1007, 240.332, 62.9584, 248, 64, 248, 67, 241, 88, 241, 98.1005, 240.525, 98.0979, 240.427, 97.9991, 240.697, 63.3272, 248.701, 63.2992, 240.427, 97.9991, 240.525, 98.0979, 240.34, 133.399, 205.686, 133.118, 205.515, 132.946, 205.47, 98.0359, 205.572, 97.9336, 241, 98.1005, 241, 100, 242, 100, 244, 111, 245, 111, 249, 120, 250, 120, 255, 125, 255, 127, 257, 127, 264.868, 133.294, 240.538, 133.596, 240.34, 133.399, 240.525, 98.0979, 240.34, 133.399, 240.538, 133.596, 240.48, 168.139, 240.374, 168.248, 205.166, 168.23, 205.123, 168.186, 205.686, 133.118, 271.846, 28.1542, 270, 30, 270, 32, 267, 34, 267, 36, 265, 36, 265, 38, 264, 40, 262, 40, 262, 42, 258, 49, 257, 49, 255, 51, 255, 53, 250, 63, 249, 63, 248.701, 63.2992, 240.697, 63.3272, 240.332, 62.9584, 240.532, 28.4891, 240.941, 28.0838, 275.435, 24.5651, 271.846, 28.1542, 240.941, 28.0838, 240.795, 19, 275.489, 19, 280, 20, 275.435, 24.5651, 275.489, 19, 280, 19, 275.713, 133.547, 275.801, 168.284, 240.48, 168.139, 240.538, 133.596, 275.322, 133.164, 277, 147, 282, 155, 282, 158, 284, 160, 284, 164, 285.44, 168.321, 275.83, 168.314, 275.801, 168.284, 275.742, 145, 277, 145, 205.123, 168.186, 205.166, 168.23, 205.291, 202.883, 170.741, 203.425, 170.533, 203.22, 170.257, 168.45, 170.843, 167.862, 205.551, 203.138, 205.703, 238.137, 170.69, 238.086, 170.741, 203.425, 205.291, 202.883, 205.703, 238.137, 205.827, 238.259, 205.702, 272.901, 205.358, 273.241, 170.675, 273.164, 170.571, 273.06, 170.349, 238.428, 170.69, 238.086, 205.358, 273.241, 205.419, 281, 170.645, 281, 170.675, 273.164, 240.374, 168.248, 240.486, 202.891, 205.551, 203.138, 205.291, 202.883, 205.166, 168.23, 240.497, 202.902, 240.537, 237.937, 205.827, 238.259, 205.703, 238.137, 205.551, 203.138, 240.486, 202.891, 240.687, 238.086, 240.796, 273.032, 240.47, 273.36, 205.702, 272.901, 205.827, 238.259, 240.537, 237.937, 240.47, 273.36, 240.499, 281, 205.419, 281, 205.358, 273.241, 205.702, 272.901, 275.801, 168.284, 275.83, 168.314, 275.516, 202.974, 240.497, 202.902, 240.486, 202.891, 240.374, 168.248, 240.48, 168.139, 285.44, 168.321, 287, 173, 287, 202, 286, 202, 285.883, 203.057, 275.629, 203.088, 275.516, 202.974, 275.83, 168.314, 275.516, 202.974, 275.629, 203.088, 275.752, 237.748, 275.539, 237.962, 240.687, 238.086, 240.537, 237.937, 240.497, 202.902, 284, 220, 283, 220, 278.898, 237.774, 275.752, 237.748, 275.629, 203.088, 285.883, 203.057, 275.678, 272.932, 275.627, 272.983, 240.796, 273.032, 240.687, 238.086, 275.539, 237.962, 262, 281, 240.499, 281, 240.47, 273.36, 240.796, 273.032, 265.501, 272.997, 278.898, 237.774, 277, 246, 276, 246, 275.576, 247.343, 275.539, 237.962, 275.752, 237.748) -polygons = [PackedInt32Array(106, 102, 103), PackedInt32Array(103, 104, 105), PackedInt32Array(105, 106, 103), PackedInt32Array(113, 107, 108), PackedInt32Array(108, 109, 110), PackedInt32Array(111, 112, 113), PackedInt32Array(108, 110, 111), PackedInt32Array(111, 113, 108), PackedInt32Array(120, 114, 115), PackedInt32Array(115, 116, 117), PackedInt32Array(118, 119, 120), PackedInt32Array(120, 115, 117), PackedInt32Array(117, 118, 120), PackedInt32Array(126, 121, 122), PackedInt32Array(122, 123, 124), PackedInt32Array(124, 125, 126), PackedInt32Array(126, 122, 124), PackedInt32Array(136, 127, 128), PackedInt32Array(128, 129, 130), PackedInt32Array(130, 131, 132), PackedInt32Array(132, 133, 134), PackedInt32Array(135, 136, 128), PackedInt32Array(128, 130, 132), PackedInt32Array(132, 134, 135), PackedInt32Array(135, 128, 132), PackedInt32Array(143, 137, 138), PackedInt32Array(138, 139, 140), PackedInt32Array(140, 141, 142), PackedInt32Array(142, 143, 138), PackedInt32Array(138, 140, 142), PackedInt32Array(151, 144, 145), PackedInt32Array(145, 146, 147), PackedInt32Array(147, 148, 149), PackedInt32Array(149, 150, 151), PackedInt32Array(151, 145, 147), PackedInt32Array(147, 149, 151), PackedInt32Array(166, 152, 153), PackedInt32Array(153, 154, 155), PackedInt32Array(156, 157, 158), PackedInt32Array(158, 159, 160), PackedInt32Array(160, 161, 162), PackedInt32Array(162, 163, 164), PackedInt32Array(164, 165, 166), PackedInt32Array(153, 155, 156), PackedInt32Array(162, 164, 166), PackedInt32Array(166, 153, 156), PackedInt32Array(160, 162, 166), PackedInt32Array(166, 156, 158), PackedInt32Array(158, 160, 166), PackedInt32Array(173, 167, 168), PackedInt32Array(168, 169, 170), PackedInt32Array(170, 171, 172), PackedInt32Array(173, 168, 170), PackedInt32Array(170, 172, 173), PackedInt32Array(180, 174, 175), PackedInt32Array(175, 176, 177), PackedInt32Array(177, 178, 179), PackedInt32Array(179, 180, 175), PackedInt32Array(175, 177, 179), PackedInt32Array(185, 181, 182), PackedInt32Array(182, 183, 184), PackedInt32Array(184, 185, 182), PackedInt32Array(191, 186, 187), PackedInt32Array(187, 188, 189), PackedInt32Array(189, 190, 191), PackedInt32Array(191, 187, 189), PackedInt32Array(196, 192, 193), PackedInt32Array(193, 194, 195), PackedInt32Array(195, 196, 193), PackedInt32Array(201, 197, 198), PackedInt32Array(198, 199, 200), PackedInt32Array(200, 201, 198), PackedInt32Array(206, 202, 203), PackedInt32Array(203, 204, 205), PackedInt32Array(205, 206, 203), PackedInt32Array(212, 207, 208), PackedInt32Array(208, 209, 210), PackedInt32Array(210, 211, 212), PackedInt32Array(212, 208, 210), PackedInt32Array(217, 213, 214), PackedInt32Array(214, 215, 216), PackedInt32Array(216, 217, 214), PackedInt32Array(224, 218, 219), PackedInt32Array(219, 220, 221), PackedInt32Array(221, 222, 223), PackedInt32Array(223, 224, 219), PackedInt32Array(219, 221, 223), PackedInt32Array(230, 225, 226), PackedInt32Array(226, 227, 228), PackedInt32Array(228, 229, 230), PackedInt32Array(230, 226, 228), PackedInt32Array(237, 231, 232), PackedInt32Array(232, 233, 234), PackedInt32Array(234, 235, 236), PackedInt32Array(236, 237, 232), PackedInt32Array(232, 234, 236), PackedInt32Array(241, 238, 239), PackedInt32Array(239, 240, 241), PackedInt32Array(248, 242, 243), PackedInt32Array(243, 244, 245), PackedInt32Array(245, 246, 247), PackedInt32Array(247, 248, 243), PackedInt32Array(243, 245, 247), PackedInt32Array(253, 249, 250), PackedInt32Array(250, 251, 252), PackedInt32Array(252, 253, 250), PackedInt32Array(260, 254, 255), PackedInt32Array(255, 256, 257), PackedInt32Array(257, 258, 259), PackedInt32Array(259, 260, 255), PackedInt32Array(255, 257, 259), PackedInt32Array(276, 261, 262), PackedInt32Array(262, 263, 264), PackedInt32Array(264, 265, 266), PackedInt32Array(267, 268, 269), PackedInt32Array(270, 271, 272), PackedInt32Array(273, 274, 275), PackedInt32Array(275, 276, 262), PackedInt32Array(262, 264, 266), PackedInt32Array(267, 269, 270), PackedInt32Array(270, 272, 273), PackedInt32Array(273, 275, 262), PackedInt32Array(262, 266, 267), PackedInt32Array(270, 273, 262), PackedInt32Array(262, 267, 270), PackedInt32Array(279, 277, 278), PackedInt32Array(285, 280, 281), PackedInt32Array(281, 282, 283), PackedInt32Array(283, 284, 285), PackedInt32Array(285, 281, 283), PackedInt32Array(290, 286, 287), PackedInt32Array(287, 288, 289), PackedInt32Array(289, 290, 287), PackedInt32Array(297, 291, 292), PackedInt32Array(292, 293, 294), PackedInt32Array(294, 295, 296), PackedInt32Array(296, 297, 292), PackedInt32Array(292, 294, 296), PackedInt32Array(298, 299, 300), PackedInt32Array(300, 301, 302), PackedInt32Array(304, 305, 306), PackedInt32Array(298, 300, 302), PackedInt32Array(304, 306, 298), PackedInt32Array(298, 302, 303), PackedInt32Array(303, 304, 298), PackedInt32Array(312, 307, 308), PackedInt32Array(308, 309, 310), PackedInt32Array(310, 311, 312), PackedInt32Array(312, 308, 310), PackedInt32Array(313, 314, 315), PackedInt32Array(315, 316, 317), PackedInt32Array(318, 319, 320), PackedInt32Array(320, 321, 322), PackedInt32Array(323, 324, 325), PackedInt32Array(325, 326, 313), PackedInt32Array(313, 315, 317), PackedInt32Array(320, 322, 323), PackedInt32Array(323, 325, 313), PackedInt32Array(313, 317, 318), PackedInt32Array(320, 323, 313), PackedInt32Array(313, 318, 320), PackedInt32Array(332, 327, 328), PackedInt32Array(328, 329, 330), PackedInt32Array(330, 331, 332), PackedInt32Array(332, 328, 330), PackedInt32Array(337, 333, 334), PackedInt32Array(334, 335, 336), PackedInt32Array(336, 337, 334), PackedInt32Array(342, 338, 339), PackedInt32Array(339, 340, 341), PackedInt32Array(341, 342, 339), PackedInt32Array(350, 343, 344), PackedInt32Array(344, 345, 346), PackedInt32Array(346, 347, 348), PackedInt32Array(348, 349, 350), PackedInt32Array(350, 344, 346), PackedInt32Array(346, 348, 350), PackedInt32Array(355, 351, 352), PackedInt32Array(352, 353, 354), PackedInt32Array(354, 355, 352), PackedInt32Array(360, 356, 357), PackedInt32Array(357, 358, 359), PackedInt32Array(359, 360, 357), PackedInt32Array(365, 361, 362), PackedInt32Array(362, 363, 364), PackedInt32Array(364, 365, 362), PackedInt32Array(371, 366, 367), PackedInt32Array(367, 368, 369), PackedInt32Array(369, 370, 371), PackedInt32Array(371, 367, 369), PackedInt32Array(377, 372, 373), PackedInt32Array(373, 374, 375), PackedInt32Array(375, 376, 377), PackedInt32Array(377, 373, 375), PackedInt32Array(382, 378, 379), PackedInt32Array(379, 380, 381), PackedInt32Array(381, 382, 379), PackedInt32Array(387, 383, 384), PackedInt32Array(384, 385, 386), PackedInt32Array(386, 387, 384), PackedInt32Array(392, 388, 389), PackedInt32Array(389, 390, 391), PackedInt32Array(391, 392, 389), PackedInt32Array(399, 393, 394), PackedInt32Array(394, 395, 396), PackedInt32Array(396, 397, 398), PackedInt32Array(398, 399, 394), PackedInt32Array(394, 396, 398), PackedInt32Array(404, 400, 401), PackedInt32Array(401, 402, 403), PackedInt32Array(403, 404, 401), PackedInt32Array(410, 405, 406), PackedInt32Array(406, 407, 408), PackedInt32Array(408, 409, 410), PackedInt32Array(410, 406, 408), PackedInt32Array(415, 411, 412), PackedInt32Array(412, 413, 414), PackedInt32Array(414, 415, 412), PackedInt32Array(421, 416, 417), PackedInt32Array(417, 418, 419), PackedInt32Array(419, 420, 421), PackedInt32Array(421, 417, 419), PackedInt32Array(426, 422, 423), PackedInt32Array(423, 424, 425), PackedInt32Array(425, 426, 423), PackedInt32Array(427, 428, 429), PackedInt32Array(429, 430, 431), PackedInt32Array(431, 432, 433), PackedInt32Array(433, 434, 427), PackedInt32Array(429, 431, 433), PackedInt32Array(433, 427, 429), PackedInt32Array(441, 435, 436), PackedInt32Array(436, 437, 438), PackedInt32Array(438, 439, 440), PackedInt32Array(440, 441, 436), PackedInt32Array(436, 438, 440), PackedInt32Array(455, 442, 443), PackedInt32Array(443, 444, 445), PackedInt32Array(445, 446, 447), PackedInt32Array(447, 448, 449), PackedInt32Array(450, 451, 452), PackedInt32Array(452, 453, 454), PackedInt32Array(454, 455, 443), PackedInt32Array(447, 449, 450), PackedInt32Array(450, 452, 454), PackedInt32Array(454, 443, 445), PackedInt32Array(447, 450, 454), PackedInt32Array(454, 445, 447), PackedInt32Array(462, 456, 457), PackedInt32Array(457, 458, 459), PackedInt32Array(459, 460, 461), PackedInt32Array(461, 462, 457), PackedInt32Array(457, 459, 461), PackedInt32Array(483, 463, 464), PackedInt32Array(464, 465, 466), PackedInt32Array(466, 467, 468), PackedInt32Array(468, 469, 470), PackedInt32Array(471, 472, 473), PackedInt32Array(475, 476, 477), PackedInt32Array(478, 479, 480), PackedInt32Array(480, 481, 482), PackedInt32Array(482, 483, 464), PackedInt32Array(464, 466, 468), PackedInt32Array(468, 470, 471), PackedInt32Array(471, 473, 474), PackedInt32Array(475, 477, 478), PackedInt32Array(478, 480, 482), PackedInt32Array(482, 464, 468), PackedInt32Array(471, 474, 475), PackedInt32Array(475, 478, 482), PackedInt32Array(482, 468, 471), PackedInt32Array(471, 475, 482), PackedInt32Array(488, 484, 485), PackedInt32Array(485, 486, 487), PackedInt32Array(487, 488, 485), PackedInt32Array(492, 489, 490), PackedInt32Array(490, 491, 492), PackedInt32Array(497, 493, 494), PackedInt32Array(494, 495, 496), PackedInt32Array(496, 497, 494), PackedInt32Array(498, 499, 500), PackedInt32Array(500, 501, 502), PackedInt32Array(502, 503, 504), PackedInt32Array(504, 505, 506), PackedInt32Array(506, 507, 498), PackedInt32Array(498, 500, 502), PackedInt32Array(502, 504, 506), PackedInt32Array(506, 498, 502), PackedInt32Array(514, 508, 509), PackedInt32Array(509, 510, 511), PackedInt32Array(511, 512, 513), PackedInt32Array(513, 514, 509), PackedInt32Array(509, 511, 513), PackedInt32Array(519, 515, 516), PackedInt32Array(516, 517, 518), PackedInt32Array(518, 519, 516), PackedInt32Array(527, 520, 521), PackedInt32Array(521, 522, 523), PackedInt32Array(523, 524, 525), PackedInt32Array(525, 526, 527), PackedInt32Array(527, 521, 523), PackedInt32Array(523, 525, 527), PackedInt32Array(531, 528, 529), PackedInt32Array(529, 530, 531), PackedInt32Array(536, 532, 533), PackedInt32Array(533, 534, 535), PackedInt32Array(535, 536, 533), PackedInt32Array(542, 537, 538), PackedInt32Array(538, 539, 540), PackedInt32Array(540, 541, 542), PackedInt32Array(542, 538, 540), PackedInt32Array(548, 543, 544), PackedInt32Array(544, 545, 546), PackedInt32Array(546, 547, 548), PackedInt32Array(548, 544, 546), PackedInt32Array(553, 549, 550), PackedInt32Array(550, 551, 552), PackedInt32Array(552, 553, 550), PackedInt32Array(560, 554, 555), PackedInt32Array(555, 556, 557), PackedInt32Array(557, 558, 559), PackedInt32Array(559, 560, 555), PackedInt32Array(555, 557, 559), PackedInt32Array(568, 561, 562), PackedInt32Array(562, 563, 564), PackedInt32Array(564, 565, 566), PackedInt32Array(566, 567, 568), PackedInt32Array(568, 562, 564), PackedInt32Array(564, 566, 568), PackedInt32Array(575, 569, 570), PackedInt32Array(570, 571, 572), PackedInt32Array(572, 573, 574), PackedInt32Array(574, 575, 570), PackedInt32Array(570, 572, 574), PackedInt32Array(581, 576, 577), PackedInt32Array(577, 578, 579), PackedInt32Array(579, 580, 581), PackedInt32Array(581, 577, 579), PackedInt32Array(586, 582, 583), PackedInt32Array(583, 584, 585), PackedInt32Array(585, 586, 583), PackedInt32Array(591, 587, 588), PackedInt32Array(588, 589, 590), PackedInt32Array(590, 591, 588), PackedInt32Array(597, 592, 593), PackedInt32Array(594, 595, 596), PackedInt32Array(596, 597, 593), PackedInt32Array(593, 594, 596)] -bones = ["Bone-0", PackedFloat32Array(0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-1", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-2", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-3", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-4", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-5", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-6", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-7", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-8", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-9", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-10", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-11", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-12", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-13", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-14", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-15", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-16", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-17", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-18", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-19", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-20", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-21", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-22", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-23", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-24", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-25", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0.7, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-26", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-27", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-28", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0.7, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-29", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-30", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0.7, 0.7, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-31", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-32", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0.7, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-33", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-34", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-35", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 1, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-36", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-37", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-38", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-39", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0.7, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-40", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-41", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0), "Bone-42", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0.7, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-43", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0.7, 0.7), "Bone-44", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7)] -internal_vertex_count = 496 +polygon = PackedVector2Array(37, 21, 34, 26, 33, 26, 31, 32, 30, 32, 24, 49, 23, 49, 17, 70, 16, 70, 15, 76, 15, 82, 13, 87, 13, 111, 16, 120, 16, 123, 23, 135, 23, 137, 25, 137, 25, 139, 40, 152, 42, 152, 42, 154, 44, 154, 46, 157, 47, 157, 47, 159, 49, 159, 55, 171, 56, 171, 59, 183, 59, 197, 56, 209, 56, 213, 55, 214, 54, 214, 54, 219, 49, 230, 49, 233, 48, 234, 47, 234, 46, 236, 46, 239, 39, 250, 39, 253, 37, 253, 35, 257, 35, 260, 33, 260, 32, 262, 32, 264, 20, 280, 20, 281, 262, 281, 269, 265, 270, 265, 276, 246, 277, 246, 283, 220, 284, 220, 286, 202, 287, 202, 287, 173, 284, 164, 284, 160, 282, 158, 282, 155, 277, 147, 277, 145, 275, 145, 275, 143, 272, 141, 272, 139, 257, 127, 255, 127, 255, 125, 250, 120, 249, 120, 245, 111, 244, 111, 242, 100, 241, 100, 241, 88, 248, 67, 248, 64, 249, 63, 250, 63, 255, 53, 255, 51, 257, 49, 258, 49, 262, 42, 262, 40, 264, 40, 265, 38, 265, 36, 267, 36, 267, 34, 270, 32, 270, 30, 280, 20, 280, 19, 37, 19, 48, 45.67, 30.5, 45.67, 30.5, 32, 31, 32, 32.2767, 28.17, 48, 28.17, 65.5, 63.17, 48, 63.17, 48, 45.67, 65.5, 45.67, 48, 63.17, 30.5, 63.17, 30.5, 45.67, 48, 45.67, 65.5, 45.67, 48, 45.67, 48, 28.17, 65.5, 28.17, 30.5, 63.17, 18.9514, 63.17, 23, 49, 24, 49, 25.1753, 45.67, 30.5, 45.67, 30.5, 45.67, 25.1753, 45.67, 30, 32, 30.5, 32, 65.5, 28.17, 48, 28.17, 48, 19, 65.5, 19, 48, 28.17, 32.2767, 28.17, 33, 26, 34, 26, 37, 21, 37, 19, 48, 19, 48, 80.67, 30.5, 80.67, 30.5, 63.17, 48, 63.17, 65.5, 98.17, 48, 98.17, 48, 80.67, 65.5, 80.67, 48, 98.17, 30.5, 98.17, 30.5, 80.67, 48, 80.67, 65.5, 80.67, 48, 80.67, 48, 63.17, 65.5, 63.17, 30.5, 98.17, 13, 98.17, 13, 87, 15, 82, 15, 80.67, 30.5, 80.67, 30.5, 80.67, 15, 80.67, 15, 76, 16, 70, 17, 70, 18.9514, 63.17, 30.5, 63.17, 48, 115.67, 30.5, 115.67, 30.5, 98.17, 48, 98.17, 65.5, 133.17, 48, 133.17, 48, 115.67, 65.5, 115.67, 48, 133.17, 30.5, 133.17, 30.5, 115.67, 48, 115.67, 65.5, 115.67, 48, 115.67, 48, 98.17, 65.5, 98.17, 30.5, 133.17, 21.9325, 133.17, 16, 123, 16, 120, 14.5567, 115.67, 30.5, 115.67, 30.5, 115.67, 14.5567, 115.67, 13, 111, 13, 98.17, 30.5, 98.17, 48, 150.67, 38.4654, 150.67, 30.5, 143.767, 30.5, 133.17, 48, 133.17, 65.5, 168.17, 53.585, 168.17, 49, 159, 48, 159, 48, 150.67, 65.5, 150.67, 48, 159, 47, 159, 47, 157, 46, 157, 44, 154, 42, 154, 42, 152, 40, 152, 38.4654, 150.67, 48, 150.67, 65.5, 150.67, 48, 150.67, 48, 133.17, 65.5, 133.17, 30.5, 143.767, 25, 139, 25, 137, 23, 137, 23, 135, 21.9325, 133.17, 30.5, 133.17, 83, 45.67, 65.5, 45.67, 65.5, 28.17, 83, 28.17, 100.5, 63.17, 83, 63.17, 83, 45.67, 100.5, 45.67, 83, 63.17, 65.5, 63.17, 65.5, 45.67, 83, 45.67, 100.5, 45.67, 83, 45.67, 83, 28.17, 100.5, 28.17, 100.5, 28.17, 83, 28.17, 83, 19, 100.5, 19, 83, 28.17, 65.5, 28.17, 65.5, 19, 83, 19, 83, 80.67, 65.5, 80.67, 65.5, 63.17, 83, 63.17, 100.5, 98.17, 83, 98.17, 83, 80.67, 100.5, 80.67, 83, 98.17, 65.5, 98.17, 65.5, 80.67, 83, 80.67, 100.5, 80.67, 83, 80.67, 83, 63.17, 100.5, 63.17, 83, 115.67, 65.5, 115.67, 65.5, 98.17, 83, 98.17, 100.5, 133.17, 83, 133.17, 83, 115.67, 100.5, 115.67, 83, 133.17, 65.5, 133.17, 65.5, 115.67, 83, 115.67, 100.5, 115.67, 83, 115.67, 83, 98.17, 100.5, 98.17, 83, 150.67, 65.5, 150.67, 65.5, 133.17, 83, 133.17, 100.5, 168.17, 83, 168.17, 83, 150.67, 100.5, 150.67, 83, 168.17, 65.5, 168.17, 65.5, 150.67, 83, 150.67, 100.5, 150.67, 83, 150.67, 83, 133.17, 100.5, 133.17, 118, 45.67, 100.5, 45.67, 100.5, 28.17, 118, 28.17, 135.5, 63.17, 118, 63.17, 118, 45.67, 135.5, 45.67, 118, 63.17, 100.5, 63.17, 100.5, 45.67, 118, 45.67, 135.5, 45.67, 118, 45.67, 118, 28.17, 135.5, 28.17, 135.5, 28.17, 118, 28.17, 118, 19, 135.5, 19, 118, 28.17, 100.5, 28.17, 100.5, 19, 118, 19, 118, 80.67, 100.5, 80.67, 100.5, 63.17, 118, 63.17, 135.5, 98.17, 118, 98.17, 118, 80.67, 135.5, 80.67, 118, 98.17, 100.5, 98.17, 100.5, 80.67, 118, 80.67, 135.5, 80.67, 118, 80.67, 118, 63.17, 135.5, 63.17, 118, 115.67, 100.5, 115.67, 100.5, 98.17, 118, 98.17, 135.5, 133.17, 118, 133.17, 118, 115.67, 135.5, 115.67, 118, 133.17, 100.5, 133.17, 100.5, 115.67, 118, 115.67, 135.5, 115.67, 118, 115.67, 118, 98.17, 135.5, 98.17, 118, 150.67, 100.5, 150.67, 100.5, 133.17, 118, 133.17, 135.5, 168.17, 118, 168.17, 118, 150.67, 135.5, 150.67, 118, 168.17, 100.5, 168.17, 100.5, 150.67, 118, 150.67, 135.5, 150.67, 118, 150.67, 118, 133.17, 135.5, 133.17, 153, 45.67, 135.5, 45.67, 135.5, 28.17, 153, 28.17, 170.5, 63.17, 153, 63.17, 153, 45.67, 170.5, 45.67, 153, 63.17, 135.5, 63.17, 135.5, 45.67, 153, 45.67, 170.5, 45.67, 153, 45.67, 153, 28.17, 170.5, 28.17, 170.5, 28.17, 153, 28.17, 153, 19, 170.5, 19, 153, 28.17, 135.5, 28.17, 135.5, 19, 153, 19, 153, 80.67, 135.5, 80.67, 135.5, 63.17, 153, 63.17, 170.5, 98.17, 153, 98.17, 153, 80.67, 170.5, 80.67, 153, 98.17, 135.5, 98.17, 135.5, 80.67, 153, 80.67, 170.5, 80.67, 153, 80.67, 153, 63.17, 170.5, 63.17, 153, 115.67, 135.5, 115.67, 135.5, 98.17, 153, 98.17, 170.5, 133.17, 153, 133.17, 153, 115.67, 170.5, 115.67, 153, 133.17, 135.5, 133.17, 135.5, 115.67, 153, 115.67, 170.5, 115.67, 153, 115.67, 153, 98.17, 170.5, 98.17, 153, 150.67, 135.5, 150.67, 135.5, 133.17, 153, 133.17, 170.5, 168.17, 153, 168.17, 153, 150.67, 170.5, 150.67, 153, 168.17, 135.5, 168.17, 135.5, 150.67, 153, 150.67, 170.5, 150.67, 153, 150.67, 153, 133.17, 170.5, 133.17, 48, 255.67, 35.665, 255.67, 37, 253, 39, 253, 39, 250, 46, 239, 46, 238.17, 48, 238.17, 65.5, 273.17, 48, 273.17, 48, 255.67, 65.5, 255.67, 48, 273.17, 30.5, 273.17, 30.5, 266, 32, 264, 32, 262, 33, 260, 35, 260, 35, 257, 35.665, 255.67, 48, 255.67, 65.5, 255.67, 48, 255.67, 48, 238.17, 65.5, 238.17, 30.5, 273.17, 25.1225, 273.17, 30.5, 266, 30.5, 281, 20, 281, 20, 280, 25.1225, 273.17, 30.5, 273.17, 48, 281, 30.5, 281, 30.5, 273.17, 48, 273.17, 65.5, 281, 48, 281, 48, 273.17, 65.5, 273.17, 83, 185.67, 65.5, 185.67, 65.5, 168.17, 83, 168.17, 100.5, 203.17, 83, 203.17, 83, 185.67, 100.5, 185.67, 83, 203.17, 65.5, 203.17, 65.5, 185.67, 83, 185.67, 100.5, 185.67, 83, 185.67, 83, 168.17, 100.5, 168.17, 65.5, 203.17, 57.4575, 203.17, 59, 197, 59, 185.67, 65.5, 185.67, 65.5, 185.67, 59, 185.67, 59, 183, 56, 171, 55, 171, 53.585, 168.17, 65.5, 168.17, 83, 220.67, 65.5, 220.67, 65.5, 203.17, 83, 203.17, 100.5, 238.17, 83, 238.17, 83, 220.67, 100.5, 220.67, 83, 238.17, 65.5, 238.17, 65.5, 220.67, 83, 220.67, 100.5, 220.67, 83, 220.67, 83, 203.17, 100.5, 203.17, 65.5, 238.17, 48, 238.17, 48, 234, 49, 233, 49, 230, 53.2409, 220.67, 65.5, 220.67, 48, 238.17, 46, 238.17, 46, 236, 47, 234, 48, 234, 65.5, 220.67, 53.2409, 220.67, 54, 219, 54, 214, 55, 214, 56, 213, 56, 209, 57.4575, 203.17, 65.5, 203.17, 83, 255.67, 65.5, 255.67, 65.5, 238.17, 83, 238.17, 100.5, 273.17, 83, 273.17, 83, 255.67, 100.5, 255.67, 83, 273.17, 65.5, 273.17, 65.5, 255.67, 83, 255.67, 100.5, 255.67, 83, 255.67, 83, 238.17, 100.5, 238.17, 83, 281, 65.5, 281, 65.5, 273.17, 83, 273.17, 100.5, 281, 83, 281, 83, 273.17, 100.5, 273.17, 118, 185.67, 100.5, 185.67, 100.5, 168.17, 118, 168.17, 135.5, 203.17, 118, 203.17, 118, 185.67, 135.5, 185.67, 118, 203.17, 100.5, 203.17, 100.5, 185.67, 118, 185.67, 135.5, 185.67, 118, 185.67, 118, 168.17, 135.5, 168.17, 118, 220.67, 100.5, 220.67, 100.5, 203.17, 118, 203.17, 135.5, 238.17, 118, 238.17, 118, 220.67, 135.5, 220.67, 118, 238.17, 100.5, 238.17, 100.5, 220.67, 118, 220.67, 135.5, 220.67, 118, 220.67, 118, 203.17, 135.5, 203.17, 118, 255.67, 100.5, 255.67, 100.5, 238.17, 118, 238.17, 135.5, 273.17, 118, 273.17, 118, 255.67, 135.5, 255.67, 118, 273.17, 100.5, 273.17, 100.5, 255.67, 118, 255.67, 135.5, 255.67, 118, 255.67, 118, 238.17, 135.5, 238.17, 118, 281, 100.5, 281, 100.5, 273.17, 118, 273.17, 135.5, 281, 118, 281, 118, 273.17, 135.5, 273.17, 153, 185.67, 135.5, 185.67, 135.5, 168.17, 153, 168.17, 170.5, 203.17, 153, 203.17, 153, 185.67, 170.5, 185.67, 153, 203.17, 135.5, 203.17, 135.5, 185.67, 153, 185.67, 170.5, 185.67, 153, 185.67, 153, 168.17, 170.5, 168.17, 153, 220.67, 135.5, 220.67, 135.5, 203.17, 153, 203.17, 170.5, 238.17, 153, 238.17, 153, 220.67, 170.5, 220.67, 153, 238.17, 135.5, 238.17, 135.5, 220.67, 153, 220.67, 170.5, 220.67, 153, 220.67, 153, 203.17, 170.5, 203.17, 153, 255.67, 135.5, 255.67, 135.5, 238.17, 153, 238.17, 170.5, 273.17, 153, 273.17, 153, 255.67, 170.5, 255.67, 153, 273.17, 135.5, 273.17, 135.5, 255.67, 153, 255.67, 170.5, 255.67, 153, 255.67, 153, 238.17, 170.5, 238.17, 153, 281, 135.5, 281, 135.5, 273.17, 153, 273.17, 170.5, 281, 153, 281, 153, 273.17, 170.5, 273.17, 188, 45.67, 170.5, 45.67, 170.5, 28.17, 188, 28.17, 205.5, 63.17, 188, 63.17, 188, 45.67, 205.5, 45.67, 188, 63.17, 170.5, 63.17, 170.5, 45.67, 188, 45.67, 205.5, 45.67, 188, 45.67, 188, 28.17, 205.5, 28.17, 205.5, 28.17, 188, 28.17, 188, 19, 205.5, 19, 188, 28.17, 170.5, 28.17, 170.5, 19, 188, 19, 188, 80.67, 170.5, 80.67, 170.5, 63.17, 188, 63.17, 205.5, 98.17, 188, 98.17, 188, 80.67, 205.5, 80.67, 188, 98.17, 170.5, 98.17, 170.5, 80.67, 188, 80.67, 205.5, 80.67, 188, 80.67, 188, 63.17, 205.5, 63.17, 188, 115.67, 170.5, 115.67, 170.5, 98.17, 188, 98.17, 205.5, 133.17, 188, 133.17, 188, 115.67, 205.5, 115.67, 188, 133.17, 170.5, 133.17, 170.5, 115.67, 188, 115.67, 205.5, 115.67, 188, 115.67, 188, 98.17, 205.5, 98.17, 188, 150.67, 170.5, 150.67, 170.5, 133.17, 188, 133.17, 205.5, 168.17, 188, 168.17, 188, 150.67, 205.5, 150.67, 188, 168.17, 170.5, 168.17, 170.5, 150.67, 188, 150.67, 205.5, 150.67, 188, 150.67, 188, 133.17, 205.5, 133.17, 223, 45.67, 205.5, 45.67, 205.5, 28.17, 223, 28.17, 240.5, 63.17, 223, 63.17, 223, 45.67, 240.5, 45.67, 223, 63.17, 205.5, 63.17, 205.5, 45.67, 223, 45.67, 240.5, 45.67, 223, 45.67, 223, 28.17, 240.5, 28.17, 240.5, 28.17, 223, 28.17, 223, 19, 240.5, 19, 223, 28.17, 205.5, 28.17, 205.5, 19, 223, 19, 223, 80.67, 205.5, 80.67, 205.5, 63.17, 223, 63.17, 240.5, 98.17, 223, 98.17, 223, 80.67, 240.5, 80.67, 223, 98.17, 205.5, 98.17, 205.5, 80.67, 223, 80.67, 240.5, 80.67, 223, 80.67, 223, 63.17, 240.5, 63.17, 248, 64, 248, 67, 243.443, 80.67, 240.5, 80.67, 240.5, 63.17, 248.83, 63.17, 241, 88, 241, 98.17, 240.5, 98.17, 240.5, 80.67, 243.443, 80.67, 223, 115.67, 205.5, 115.67, 205.5, 98.17, 223, 98.17, 240.5, 133.17, 223, 133.17, 223, 115.67, 240.5, 115.67, 223, 133.17, 205.5, 133.17, 205.5, 115.67, 223, 115.67, 240.5, 115.67, 223, 115.67, 223, 98.17, 240.5, 98.17, 241, 100, 242, 100, 244, 111, 245, 111, 247.076, 115.67, 240.5, 115.67, 240.5, 98.17, 241, 98.17, 264.712, 133.17, 258, 133.17, 258, 127.8, 249, 120, 250, 120, 255, 125, 255, 127, 257, 127, 258, 127.8, 258, 133.17, 240.5, 133.17, 240.5, 115.67, 247.076, 115.67, 223, 150.67, 205.5, 150.67, 205.5, 133.17, 223, 133.17, 240.5, 168.17, 223, 168.17, 223, 150.67, 240.5, 150.67, 223, 168.17, 205.5, 168.17, 205.5, 150.67, 223, 150.67, 240.5, 150.67, 223, 150.67, 223, 133.17, 240.5, 133.17, 258, 45.67, 240.5, 45.67, 240.5, 28.17, 258, 28.17, 258, 49, 258, 45.67, 259.903, 45.67, 258, 49, 257, 49, 255, 51, 255, 53, 250, 63, 249, 63, 248.83, 63.17, 240.5, 63.17, 240.5, 45.67, 258, 45.67, 270, 30, 270, 32, 267, 34, 267, 36, 265, 36, 265, 38, 264, 40, 262, 40, 262, 42, 259.903, 45.67, 258, 45.67, 258, 28.17, 271.83, 28.17, 275.5, 24.5, 271.83, 28.17, 258, 28.17, 258, 19, 275.5, 19, 258, 28.17, 240.5, 28.17, 240.5, 19, 258, 19, 280, 20, 275.5, 24.5, 275.5, 19, 280, 19, 258, 150.67, 240.5, 150.67, 240.5, 133.17, 258, 133.17, 275.5, 168.17, 258, 168.17, 258, 150.67, 275.5, 150.67, 258, 168.17, 240.5, 168.17, 240.5, 150.67, 258, 150.67, 272, 139, 272, 141, 275, 143, 275, 145, 275.5, 145, 275.5, 150.67, 258, 150.67, 258, 133.17, 264.712, 133.17, 277, 147, 279.294, 150.67, 275.5, 150.67, 275.5, 145, 277, 145, 282, 155, 282, 158, 284, 160, 284, 164, 285.39, 168.17, 275.5, 168.17, 275.5, 150.67, 279.294, 150.67, 188, 185.67, 170.5, 185.67, 170.5, 168.17, 188, 168.17, 205.5, 203.17, 188, 203.17, 188, 185.67, 205.5, 185.67, 188, 203.17, 170.5, 203.17, 170.5, 185.67, 188, 185.67, 205.5, 185.67, 188, 185.67, 188, 168.17, 205.5, 168.17, 188, 220.67, 170.5, 220.67, 170.5, 203.17, 188, 203.17, 205.5, 238.17, 188, 238.17, 188, 220.67, 205.5, 220.67, 188, 238.17, 170.5, 238.17, 170.5, 220.67, 188, 220.67, 205.5, 220.67, 188, 220.67, 188, 203.17, 205.5, 203.17, 188, 255.67, 170.5, 255.67, 170.5, 238.17, 188, 238.17, 205.5, 273.17, 188, 273.17, 188, 255.67, 205.5, 255.67, 188, 273.17, 170.5, 273.17, 170.5, 255.67, 188, 255.67, 205.5, 255.67, 188, 255.67, 188, 238.17, 205.5, 238.17, 188, 281, 170.5, 281, 170.5, 273.17, 188, 273.17, 205.5, 281, 188, 281, 188, 273.17, 205.5, 273.17, 223, 185.67, 205.5, 185.67, 205.5, 168.17, 223, 168.17, 240.5, 203.17, 223, 203.17, 223, 185.67, 240.5, 185.67, 223, 203.17, 205.5, 203.17, 205.5, 185.67, 223, 185.67, 240.5, 185.67, 223, 185.67, 223, 168.17, 240.5, 168.17, 223, 220.67, 205.5, 220.67, 205.5, 203.17, 223, 203.17, 240.5, 238.17, 223, 238.17, 223, 220.67, 240.5, 220.67, 223, 238.17, 205.5, 238.17, 205.5, 220.67, 223, 220.67, 240.5, 220.67, 223, 220.67, 223, 203.17, 240.5, 203.17, 223, 255.67, 205.5, 255.67, 205.5, 238.17, 223, 238.17, 240.5, 273.17, 223, 273.17, 223, 255.67, 240.5, 255.67, 223, 273.17, 205.5, 273.17, 205.5, 255.67, 223, 255.67, 240.5, 255.67, 223, 255.67, 223, 238.17, 240.5, 238.17, 223, 281, 205.5, 281, 205.5, 273.17, 223, 273.17, 240.5, 281, 223, 281, 223, 273.17, 240.5, 273.17, 258, 185.67, 240.5, 185.67, 240.5, 168.17, 258, 168.17, 275.5, 203.17, 258, 203.17, 258, 185.67, 275.5, 185.67, 258, 203.17, 240.5, 203.17, 240.5, 185.67, 258, 185.67, 275.5, 185.67, 258, 185.67, 258, 168.17, 275.5, 168.17, 287, 173, 287, 185.67, 275.5, 185.67, 275.5, 168.17, 285.39, 168.17, 287, 202, 286, 202, 285.87, 203.17, 275.5, 203.17, 275.5, 185.67, 287, 185.67, 258, 220.67, 240.5, 220.67, 240.5, 203.17, 258, 203.17, 275.5, 238.17, 258, 238.17, 258, 220.67, 275.5, 220.67, 258, 238.17, 240.5, 238.17, 240.5, 220.67, 258, 220.67, 275.5, 220.67, 258, 220.67, 258, 203.17, 275.5, 203.17, 284, 220, 283, 220, 282.845, 220.67, 275.5, 220.67, 275.5, 203.17, 285.87, 203.17, 278.807, 238.17, 275.5, 238.17, 275.5, 220.67, 282.845, 220.67, 258, 255.67, 240.5, 255.67, 240.5, 238.17, 258, 238.17, 270, 265, 269, 265, 265.426, 273.17, 258, 273.17, 258, 255.67, 272.946, 255.67, 258, 273.17, 240.5, 273.17, 240.5, 255.67, 258, 255.67, 275.5, 247.583, 272.946, 255.67, 258, 255.67, 258, 238.17, 275.5, 238.17, 258, 281, 240.5, 281, 240.5, 273.17, 258, 273.17, 262, 281, 258, 281, 258, 273.17, 265.426, 273.17, 277, 246, 276, 246, 275.5, 247.583, 275.5, 238.17, 278.807, 238.17) +polygons = [PackedInt32Array(107, 102, 103), PackedInt32Array(103, 104, 105), PackedInt32Array(105, 106, 107), PackedInt32Array(107, 103, 105), PackedInt32Array(111, 108, 109), PackedInt32Array(109, 110, 111), PackedInt32Array(115, 112, 113), PackedInt32Array(113, 114, 115), PackedInt32Array(119, 116, 117), PackedInt32Array(117, 118, 119), PackedInt32Array(125, 120, 121), PackedInt32Array(121, 122, 123), PackedInt32Array(123, 124, 125), PackedInt32Array(125, 121, 123), PackedInt32Array(129, 126, 127), PackedInt32Array(127, 128, 129), PackedInt32Array(133, 130, 131), PackedInt32Array(131, 132, 133), PackedInt32Array(140, 134, 135), PackedInt32Array(135, 136, 137), PackedInt32Array(138, 139, 140), PackedInt32Array(140, 135, 137), PackedInt32Array(137, 138, 140), PackedInt32Array(144, 141, 142), PackedInt32Array(142, 143, 144), PackedInt32Array(148, 145, 146), PackedInt32Array(146, 147, 148), PackedInt32Array(152, 149, 150), PackedInt32Array(150, 151, 152), PackedInt32Array(156, 153, 154), PackedInt32Array(154, 155, 156), PackedInt32Array(162, 157, 158), PackedInt32Array(158, 159, 160), PackedInt32Array(160, 161, 162), PackedInt32Array(162, 158, 160), PackedInt32Array(169, 163, 164), PackedInt32Array(164, 165, 166), PackedInt32Array(167, 168, 169), PackedInt32Array(164, 166, 167), PackedInt32Array(167, 169, 164), PackedInt32Array(173, 170, 171), PackedInt32Array(171, 172, 173), PackedInt32Array(177, 174, 175), PackedInt32Array(175, 176, 177), PackedInt32Array(181, 178, 179), PackedInt32Array(179, 180, 181), PackedInt32Array(185, 182, 183), PackedInt32Array(183, 184, 185), PackedInt32Array(191, 186, 187), PackedInt32Array(187, 188, 189), PackedInt32Array(189, 190, 191), PackedInt32Array(191, 187, 189), PackedInt32Array(196, 192, 193), PackedInt32Array(193, 194, 195), PackedInt32Array(195, 196, 193), PackedInt32Array(201, 197, 198), PackedInt32Array(198, 199, 200), PackedInt32Array(200, 201, 198), PackedInt32Array(207, 202, 203), PackedInt32Array(204, 205, 206), PackedInt32Array(206, 207, 203), PackedInt32Array(203, 204, 206), PackedInt32Array(217, 208, 209), PackedInt32Array(210, 211, 212), PackedInt32Array(212, 213, 214), PackedInt32Array(214, 215, 216), PackedInt32Array(217, 209, 210), PackedInt32Array(214, 216, 217), PackedInt32Array(217, 210, 212), PackedInt32Array(212, 214, 217), PackedInt32Array(221, 218, 219), PackedInt32Array(219, 220, 221), PackedInt32Array(228, 222, 223), PackedInt32Array(224, 225, 226), PackedInt32Array(226, 227, 228), PackedInt32Array(228, 223, 224), PackedInt32Array(224, 226, 228), PackedInt32Array(232, 229, 230), PackedInt32Array(230, 231, 232), PackedInt32Array(236, 233, 234), PackedInt32Array(234, 235, 236), PackedInt32Array(240, 237, 238), PackedInt32Array(238, 239, 240), PackedInt32Array(244, 241, 242), PackedInt32Array(242, 243, 244), PackedInt32Array(248, 245, 246), PackedInt32Array(246, 247, 248), PackedInt32Array(252, 249, 250), PackedInt32Array(250, 251, 252), PackedInt32Array(256, 253, 254), PackedInt32Array(254, 255, 256), PackedInt32Array(260, 257, 258), PackedInt32Array(258, 259, 260), PackedInt32Array(264, 261, 262), PackedInt32Array(262, 263, 264), PackedInt32Array(268, 265, 266), PackedInt32Array(266, 267, 268), PackedInt32Array(272, 269, 270), PackedInt32Array(270, 271, 272), PackedInt32Array(276, 273, 274), PackedInt32Array(274, 275, 276), PackedInt32Array(280, 277, 278), PackedInt32Array(278, 279, 280), PackedInt32Array(284, 281, 282), PackedInt32Array(282, 283, 284), PackedInt32Array(288, 285, 286), PackedInt32Array(286, 287, 288), PackedInt32Array(292, 289, 290), PackedInt32Array(290, 291, 292), PackedInt32Array(296, 293, 294), PackedInt32Array(294, 295, 296), PackedInt32Array(300, 297, 298), PackedInt32Array(298, 299, 300), PackedInt32Array(304, 301, 302), PackedInt32Array(302, 303, 304), PackedInt32Array(308, 305, 306), PackedInt32Array(306, 307, 308), PackedInt32Array(312, 309, 310), PackedInt32Array(310, 311, 312), PackedInt32Array(316, 313, 314), PackedInt32Array(314, 315, 316), PackedInt32Array(320, 317, 318), PackedInt32Array(318, 319, 320), PackedInt32Array(324, 321, 322), PackedInt32Array(322, 323, 324), PackedInt32Array(328, 325, 326), PackedInt32Array(326, 327, 328), PackedInt32Array(332, 329, 330), PackedInt32Array(330, 331, 332), PackedInt32Array(336, 333, 334), PackedInt32Array(334, 335, 336), PackedInt32Array(340, 337, 338), PackedInt32Array(338, 339, 340), PackedInt32Array(344, 341, 342), PackedInt32Array(342, 343, 344), PackedInt32Array(348, 345, 346), PackedInt32Array(346, 347, 348), PackedInt32Array(352, 349, 350), PackedInt32Array(350, 351, 352), PackedInt32Array(356, 353, 354), PackedInt32Array(354, 355, 356), PackedInt32Array(360, 357, 358), PackedInt32Array(358, 359, 360), PackedInt32Array(364, 361, 362), PackedInt32Array(362, 363, 364), PackedInt32Array(368, 365, 366), PackedInt32Array(366, 367, 368), PackedInt32Array(372, 369, 370), PackedInt32Array(370, 371, 372), PackedInt32Array(376, 373, 374), PackedInt32Array(374, 375, 376), PackedInt32Array(380, 377, 378), PackedInt32Array(378, 379, 380), PackedInt32Array(384, 381, 382), PackedInt32Array(382, 383, 384), PackedInt32Array(388, 385, 386), PackedInt32Array(386, 387, 388), PackedInt32Array(392, 389, 390), PackedInt32Array(390, 391, 392), PackedInt32Array(396, 393, 394), PackedInt32Array(394, 395, 396), PackedInt32Array(400, 397, 398), PackedInt32Array(398, 399, 400), PackedInt32Array(404, 401, 402), PackedInt32Array(402, 403, 404), PackedInt32Array(408, 405, 406), PackedInt32Array(406, 407, 408), PackedInt32Array(412, 409, 410), PackedInt32Array(410, 411, 412), PackedInt32Array(416, 413, 414), PackedInt32Array(414, 415, 416), PackedInt32Array(420, 417, 418), PackedInt32Array(418, 419, 420), PackedInt32Array(424, 421, 422), PackedInt32Array(422, 423, 424), PackedInt32Array(428, 425, 426), PackedInt32Array(426, 427, 428), PackedInt32Array(432, 429, 430), PackedInt32Array(430, 431, 432), PackedInt32Array(436, 433, 434), PackedInt32Array(434, 435, 436), PackedInt32Array(440, 437, 438), PackedInt32Array(438, 439, 440), PackedInt32Array(444, 441, 442), PackedInt32Array(442, 443, 444), PackedInt32Array(445, 446, 447), PackedInt32Array(448, 449, 450), PackedInt32Array(450, 451, 452), PackedInt32Array(445, 447, 448), PackedInt32Array(448, 450, 452), PackedInt32Array(452, 445, 448), PackedInt32Array(456, 453, 454), PackedInt32Array(454, 455, 456), PackedInt32Array(466, 457, 458), PackedInt32Array(458, 459, 460), PackedInt32Array(460, 461, 462), PackedInt32Array(463, 464, 465), PackedInt32Array(466, 458, 460), PackedInt32Array(460, 462, 463), PackedInt32Array(463, 465, 466), PackedInt32Array(466, 460, 463), PackedInt32Array(470, 467, 468), PackedInt32Array(468, 469, 470), PackedInt32Array(473, 471, 472), PackedInt32Array(478, 474, 475), PackedInt32Array(475, 476, 477), PackedInt32Array(477, 478, 475), PackedInt32Array(482, 479, 480), PackedInt32Array(480, 481, 482), PackedInt32Array(486, 483, 484), PackedInt32Array(484, 485, 486), PackedInt32Array(490, 487, 488), PackedInt32Array(488, 489, 490), PackedInt32Array(494, 491, 492), PackedInt32Array(492, 493, 494), PackedInt32Array(498, 495, 496), PackedInt32Array(496, 497, 498), PackedInt32Array(502, 499, 500), PackedInt32Array(500, 501, 502), PackedInt32Array(507, 503, 504), PackedInt32Array(505, 506, 507), PackedInt32Array(507, 504, 505), PackedInt32Array(514, 508, 509), PackedInt32Array(511, 512, 513), PackedInt32Array(514, 509, 510), PackedInt32Array(511, 513, 514), PackedInt32Array(514, 510, 511), PackedInt32Array(518, 515, 516), PackedInt32Array(516, 517, 518), PackedInt32Array(522, 519, 520), PackedInt32Array(520, 521, 522), PackedInt32Array(526, 523, 524), PackedInt32Array(524, 525, 526), PackedInt32Array(530, 527, 528), PackedInt32Array(528, 529, 530), PackedInt32Array(537, 531, 532), PackedInt32Array(532, 533, 534), PackedInt32Array(534, 535, 536), PackedInt32Array(536, 537, 532), PackedInt32Array(532, 534, 536), PackedInt32Array(542, 538, 539), PackedInt32Array(539, 540, 541), PackedInt32Array(541, 542, 539), PackedInt32Array(551, 543, 544), PackedInt32Array(545, 546, 547), PackedInt32Array(548, 549, 550), PackedInt32Array(551, 544, 545), PackedInt32Array(545, 547, 548), PackedInt32Array(548, 550, 551), PackedInt32Array(551, 545, 548), PackedInt32Array(555, 552, 553), PackedInt32Array(553, 554, 555), PackedInt32Array(559, 556, 557), PackedInt32Array(557, 558, 559), PackedInt32Array(563, 560, 561), PackedInt32Array(561, 562, 563), PackedInt32Array(567, 564, 565), PackedInt32Array(565, 566, 567), PackedInt32Array(571, 568, 569), PackedInt32Array(569, 570, 571), PackedInt32Array(575, 572, 573), PackedInt32Array(573, 574, 575), PackedInt32Array(579, 576, 577), PackedInt32Array(577, 578, 579), PackedInt32Array(583, 580, 581), PackedInt32Array(581, 582, 583), PackedInt32Array(587, 584, 585), PackedInt32Array(585, 586, 587), PackedInt32Array(591, 588, 589), PackedInt32Array(589, 590, 591), PackedInt32Array(595, 592, 593), PackedInt32Array(593, 594, 595), PackedInt32Array(599, 596, 597), PackedInt32Array(597, 598, 599), PackedInt32Array(603, 600, 601), PackedInt32Array(601, 602, 603), PackedInt32Array(607, 604, 605), PackedInt32Array(605, 606, 607), PackedInt32Array(611, 608, 609), PackedInt32Array(609, 610, 611), PackedInt32Array(615, 612, 613), PackedInt32Array(613, 614, 615), PackedInt32Array(619, 616, 617), PackedInt32Array(617, 618, 619), PackedInt32Array(623, 620, 621), PackedInt32Array(621, 622, 623), PackedInt32Array(627, 624, 625), PackedInt32Array(625, 626, 627), PackedInt32Array(631, 628, 629), PackedInt32Array(629, 630, 631), PackedInt32Array(635, 632, 633), PackedInt32Array(633, 634, 635), PackedInt32Array(639, 636, 637), PackedInt32Array(637, 638, 639), PackedInt32Array(643, 640, 641), PackedInt32Array(641, 642, 643), PackedInt32Array(647, 644, 645), PackedInt32Array(645, 646, 647), PackedInt32Array(651, 648, 649), PackedInt32Array(649, 650, 651), PackedInt32Array(655, 652, 653), PackedInt32Array(653, 654, 655), PackedInt32Array(659, 656, 657), PackedInt32Array(657, 658, 659), PackedInt32Array(663, 660, 661), PackedInt32Array(661, 662, 663), PackedInt32Array(667, 664, 665), PackedInt32Array(665, 666, 667), PackedInt32Array(671, 668, 669), PackedInt32Array(669, 670, 671), PackedInt32Array(675, 672, 673), PackedInt32Array(673, 674, 675), PackedInt32Array(679, 676, 677), PackedInt32Array(677, 678, 679), PackedInt32Array(683, 680, 681), PackedInt32Array(681, 682, 683), PackedInt32Array(687, 684, 685), PackedInt32Array(685, 686, 687), PackedInt32Array(691, 688, 689), PackedInt32Array(689, 690, 691), PackedInt32Array(695, 692, 693), PackedInt32Array(693, 694, 695), PackedInt32Array(699, 696, 697), PackedInt32Array(697, 698, 699), PackedInt32Array(703, 700, 701), PackedInt32Array(701, 702, 703), PackedInt32Array(707, 704, 705), PackedInt32Array(705, 706, 707), PackedInt32Array(711, 708, 709), PackedInt32Array(709, 710, 711), PackedInt32Array(715, 712, 713), PackedInt32Array(713, 714, 715), PackedInt32Array(719, 716, 717), PackedInt32Array(717, 718, 719), PackedInt32Array(723, 720, 721), PackedInt32Array(721, 722, 723), PackedInt32Array(727, 724, 725), PackedInt32Array(725, 726, 727), PackedInt32Array(731, 728, 729), PackedInt32Array(729, 730, 731), PackedInt32Array(735, 732, 733), PackedInt32Array(733, 734, 735), PackedInt32Array(739, 736, 737), PackedInt32Array(737, 738, 739), PackedInt32Array(743, 740, 741), PackedInt32Array(741, 742, 743), PackedInt32Array(747, 744, 745), PackedInt32Array(745, 746, 747), PackedInt32Array(751, 748, 749), PackedInt32Array(749, 750, 751), PackedInt32Array(755, 752, 753), PackedInt32Array(753, 754, 755), PackedInt32Array(759, 756, 757), PackedInt32Array(757, 758, 759), PackedInt32Array(763, 760, 761), PackedInt32Array(761, 762, 763), PackedInt32Array(767, 764, 765), PackedInt32Array(765, 766, 767), PackedInt32Array(771, 768, 769), PackedInt32Array(769, 770, 771), PackedInt32Array(775, 772, 773), PackedInt32Array(773, 774, 775), PackedInt32Array(779, 776, 777), PackedInt32Array(777, 778, 779), PackedInt32Array(783, 780, 781), PackedInt32Array(781, 782, 783), PackedInt32Array(787, 784, 785), PackedInt32Array(785, 786, 787), PackedInt32Array(791, 788, 789), PackedInt32Array(789, 790, 791), PackedInt32Array(795, 792, 793), PackedInt32Array(793, 794, 795), PackedInt32Array(799, 796, 797), PackedInt32Array(797, 798, 799), PackedInt32Array(800, 801, 802), PackedInt32Array(802, 803, 804), PackedInt32Array(804, 805, 800), PackedInt32Array(800, 802, 804), PackedInt32Array(806, 807, 808), PackedInt32Array(809, 810, 806), PackedInt32Array(806, 808, 809), PackedInt32Array(814, 811, 812), PackedInt32Array(812, 813, 814), PackedInt32Array(818, 815, 816), PackedInt32Array(816, 817, 818), PackedInt32Array(822, 819, 820), PackedInt32Array(820, 821, 822), PackedInt32Array(826, 823, 824), PackedInt32Array(824, 825, 826), PackedInt32Array(827, 828, 829), PackedInt32Array(829, 830, 831), PackedInt32Array(832, 833, 834), PackedInt32Array(829, 831, 832), PackedInt32Array(832, 834, 827), PackedInt32Array(827, 829, 832), PackedInt32Array(837, 835, 836), PackedInt32Array(838, 839, 840), PackedInt32Array(841, 842, 843), PackedInt32Array(843, 844, 845), PackedInt32Array(845, 846, 847), PackedInt32Array(838, 840, 841), PackedInt32Array(841, 843, 845), PackedInt32Array(845, 847, 838), PackedInt32Array(838, 841, 845), PackedInt32Array(851, 848, 849), PackedInt32Array(849, 850, 851), PackedInt32Array(855, 852, 853), PackedInt32Array(853, 854, 855), PackedInt32Array(859, 856, 857), PackedInt32Array(857, 858, 859), PackedInt32Array(863, 860, 861), PackedInt32Array(861, 862, 863), PackedInt32Array(867, 864, 865), PackedInt32Array(865, 866, 867), PackedInt32Array(870, 868, 869), PackedInt32Array(880, 871, 872), PackedInt32Array(873, 874, 875), PackedInt32Array(876, 877, 878), PackedInt32Array(878, 879, 880), PackedInt32Array(880, 872, 873), PackedInt32Array(873, 875, 876), PackedInt32Array(878, 880, 873), PackedInt32Array(873, 876, 878), PackedInt32Array(881, 882, 883), PackedInt32Array(883, 884, 885), PackedInt32Array(885, 886, 887), PackedInt32Array(888, 889, 890), PackedInt32Array(890, 891, 892), PackedInt32Array(892, 893, 881), PackedInt32Array(881, 883, 885), PackedInt32Array(885, 887, 888), PackedInt32Array(888, 890, 892), PackedInt32Array(892, 881, 885), PackedInt32Array(885, 888, 892), PackedInt32Array(898, 894, 895), PackedInt32Array(895, 896, 897), PackedInt32Array(897, 898, 895), PackedInt32Array(902, 899, 900), PackedInt32Array(900, 901, 902), PackedInt32Array(906, 903, 904), PackedInt32Array(904, 905, 906), PackedInt32Array(910, 907, 908), PackedInt32Array(908, 909, 910), PackedInt32Array(914, 911, 912), PackedInt32Array(912, 913, 914), PackedInt32Array(918, 915, 916), PackedInt32Array(916, 917, 918), PackedInt32Array(927, 919, 920), PackedInt32Array(920, 921, 922), PackedInt32Array(922, 923, 924), PackedInt32Array(924, 925, 926), PackedInt32Array(926, 927, 920), PackedInt32Array(920, 922, 924), PackedInt32Array(924, 926, 920), PackedInt32Array(928, 929, 930), PackedInt32Array(930, 931, 932), PackedInt32Array(932, 928, 930), PackedInt32Array(940, 933, 934), PackedInt32Array(934, 935, 936), PackedInt32Array(936, 937, 938), PackedInt32Array(938, 939, 940), PackedInt32Array(940, 934, 936), PackedInt32Array(936, 938, 940), PackedInt32Array(944, 941, 942), PackedInt32Array(942, 943, 944), PackedInt32Array(948, 945, 946), PackedInt32Array(946, 947, 948), PackedInt32Array(952, 949, 950), PackedInt32Array(950, 951, 952), PackedInt32Array(956, 953, 954), PackedInt32Array(954, 955, 956), PackedInt32Array(960, 957, 958), PackedInt32Array(958, 959, 960), PackedInt32Array(964, 961, 962), PackedInt32Array(962, 963, 964), PackedInt32Array(968, 965, 966), PackedInt32Array(966, 967, 968), PackedInt32Array(972, 969, 970), PackedInt32Array(970, 971, 972), PackedInt32Array(976, 973, 974), PackedInt32Array(974, 975, 976), PackedInt32Array(980, 977, 978), PackedInt32Array(978, 979, 980), PackedInt32Array(984, 981, 982), PackedInt32Array(982, 983, 984), PackedInt32Array(988, 985, 986), PackedInt32Array(986, 987, 988), PackedInt32Array(992, 989, 990), PackedInt32Array(990, 991, 992), PackedInt32Array(996, 993, 994), PackedInt32Array(994, 995, 996), PackedInt32Array(1000, 997, 998), PackedInt32Array(998, 999, 1000), PackedInt32Array(1004, 1001, 1002), PackedInt32Array(1002, 1003, 1004), PackedInt32Array(1008, 1005, 1006), PackedInt32Array(1006, 1007, 1008), PackedInt32Array(1012, 1009, 1010), PackedInt32Array(1010, 1011, 1012), PackedInt32Array(1016, 1013, 1014), PackedInt32Array(1014, 1015, 1016), PackedInt32Array(1020, 1017, 1018), PackedInt32Array(1018, 1019, 1020), PackedInt32Array(1024, 1021, 1022), PackedInt32Array(1022, 1023, 1024), PackedInt32Array(1028, 1025, 1026), PackedInt32Array(1026, 1027, 1028), PackedInt32Array(1032, 1029, 1030), PackedInt32Array(1030, 1031, 1032), PackedInt32Array(1036, 1033, 1034), PackedInt32Array(1034, 1035, 1036), PackedInt32Array(1040, 1037, 1038), PackedInt32Array(1038, 1039, 1040), PackedInt32Array(1044, 1041, 1042), PackedInt32Array(1042, 1043, 1044), PackedInt32Array(1048, 1045, 1046), PackedInt32Array(1046, 1047, 1048), PackedInt32Array(1052, 1049, 1050), PackedInt32Array(1050, 1051, 1052), PackedInt32Array(1056, 1053, 1054), PackedInt32Array(1054, 1055, 1056), PackedInt32Array(1060, 1057, 1058), PackedInt32Array(1058, 1059, 1060), PackedInt32Array(1064, 1061, 1062), PackedInt32Array(1062, 1063, 1064), PackedInt32Array(1068, 1065, 1066), PackedInt32Array(1066, 1067, 1068), PackedInt32Array(1073, 1069, 1070), PackedInt32Array(1070, 1071, 1072), PackedInt32Array(1072, 1073, 1070), PackedInt32Array(1079, 1074, 1075), PackedInt32Array(1075, 1076, 1077), PackedInt32Array(1077, 1078, 1079), PackedInt32Array(1079, 1075, 1077), PackedInt32Array(1083, 1080, 1081), PackedInt32Array(1081, 1082, 1083), PackedInt32Array(1087, 1084, 1085), PackedInt32Array(1085, 1086, 1087), PackedInt32Array(1091, 1088, 1089), PackedInt32Array(1089, 1090, 1091), PackedInt32Array(1095, 1092, 1093), PackedInt32Array(1093, 1094, 1095), PackedInt32Array(1101, 1096, 1097), PackedInt32Array(1097, 1098, 1099), PackedInt32Array(1099, 1100, 1101), PackedInt32Array(1101, 1097, 1099), PackedInt32Array(1105, 1102, 1103), PackedInt32Array(1103, 1104, 1105), PackedInt32Array(1109, 1106, 1107), PackedInt32Array(1107, 1108, 1109), PackedInt32Array(1115, 1110, 1111), PackedInt32Array(1111, 1112, 1113), PackedInt32Array(1113, 1114, 1115), PackedInt32Array(1115, 1111, 1113), PackedInt32Array(1119, 1116, 1117), PackedInt32Array(1117, 1118, 1119), PackedInt32Array(1124, 1120, 1121), PackedInt32Array(1121, 1122, 1123), PackedInt32Array(1123, 1124, 1121), PackedInt32Array(1128, 1125, 1126), PackedInt32Array(1126, 1127, 1128), PackedInt32Array(1132, 1129, 1130), PackedInt32Array(1130, 1131, 1132), PackedInt32Array(1137, 1133, 1134), PackedInt32Array(1134, 1135, 1136), PackedInt32Array(1136, 1137, 1134)] +bones = ["Bone-0", PackedFloat32Array(1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-1", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-2", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-3", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-4", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-5", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-6", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-7", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-8", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-9", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-10", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-11", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-12", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-13", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-14", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-15", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-16", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-17", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-18", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-19", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-20", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-21", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-22", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-23", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-24", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-25", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-26", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-27", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-28", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-29", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-30", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-31", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-32", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-33", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-34", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-35", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-36", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-37", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-38", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-39", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-40", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-41", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-42", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-43", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1), "Bone-44", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1)] +internal_vertex_count = 1036 script = ExtResource("2_2dapw") vertex_interval = 35 -radius = 30 -rigidbody_scene = ExtResource("3_6ern4") polygon_offset = Vector2(2.08165e-12, -8.33) min_area = 0.5 bias = 0.2 softness = 100.0 +radius = 30 +rigidbody_scene = ExtResource("3_6ern4") physics_material_override = ExtResource("5_221ya") [node name="Skeleton2D" type="Skeleton2D" parent="Softbody2d4"] visible = false -modification_stack = SubResource("SkeletonModificationStack2D_owjpc") +modification_stack = SubResource("SkeletonModificationStack2D_cjvns") [node name="Bone-0" type="Bone2D" parent="Softbody2d4/Skeleton2D"] -position = Vector2(42.3917, 41.1817) -rotation = -0.000115311 -rest = Transform2D(1, -0.000115311, 0.000115311, 1, 42.3916, 41.1817) +position = Vector2(42.2257, 41.085) +scale = Vector2(1, 1) +rest = Transform2D(1, 7.48449e-07, -7.48449e-07, 1, 42.2257, 41.085) auto_calculate_length_and_angle = false length = 35.0 bone_angle = 0.0 -metadata/vert_owned = [102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120] -metadata/connected_nodes_paths = [NodePath("Bone-1"), NodePath("Bone-4")] +metadata/vert_owned = [102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140] +metadata/idx = 0 +metadata/connected_nodes_paths = [NodePath("Bone-1"), NodePath("Bone-4"), NodePath("Bone-5")] +metadata/connected_nodes_idx = [1, 4, 5] metadata/_local_pose_override_enabled_ = true [node name="Bone-1" type="Bone2D" parent="Softbody2d4/Skeleton2D"] -position = Vector2(39.3387, 80.6962) -rotation = 1.57007 -scale = Vector2(1, 1) -rest = Transform2D(0.000722961, 1, -1, 0.000722961, 39.3387, 80.6962) +position = Vector2(39.2501, 80.67) +rest = Transform2D(1, 0, 0, 1, 39.25, 80.67) auto_calculate_length_and_angle = false length = 35.0 bone_angle = 0.0 -metadata/vert_owned = [121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136] -metadata/connected_nodes_paths = [NodePath("Bone-0"), NodePath("Bone-2"), NodePath("Bone-5")] +metadata/vert_owned = [141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169] +metadata/idx = 1 +metadata/connected_nodes_paths = [NodePath("Bone-0"), NodePath("Bone-4"), NodePath("Bone-5"), NodePath("Bone-2"), NodePath("Bone-6")] +metadata/connected_nodes_idx = [0, 4, 5, 2, 6] metadata/_local_pose_override_enabled_ = true [node name="Bone-2" type="Bone2D" parent="Softbody2d4/Skeleton2D"] -position = Vector2(39.3639, 115.647) -rotation = 1.44701 -rest = Transform2D(0.123468, 0.992349, -0.992349, 0.123468, 39.3639, 115.647) +position = Vector2(39.25, 115.67) +scale = Vector2(1, 1) +rest = Transform2D(1, 1.39509e-06, -1.39509e-06, 1, 39.25, 115.67) auto_calculate_length_and_angle = false length = 35.0 bone_angle = 0.0 -metadata/vert_owned = [137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151] -metadata/connected_nodes_paths = [NodePath("Bone-1"), NodePath("Bone-3"), NodePath("Bone-6")] +metadata/vert_owned = [170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196] +metadata/idx = 2 +metadata/connected_nodes_paths = [NodePath("Bone-1"), NodePath("Bone-5"), NodePath("Bone-6"), NodePath("Bone-3"), NodePath("Bone-7")] +metadata/connected_nodes_idx = [1, 5, 6, 3, 7] metadata/_local_pose_override_enabled_ = true [node name="Bone-3" type="Bone2D" parent="Softbody2d4/Skeleton2D"] -position = Vector2(43.7206, 150.662) -rotation = 0.00143801 +position = Vector2(43.7163, 150.67) scale = Vector2(1, 1) -rest = Transform2D(0.999999, 0.00143803, -0.00143803, 0.999999, 43.7205, 150.662) +rest = Transform2D(1, -1.5537e-06, 1.5537e-06, 1, 43.7162, 150.67) auto_calculate_length_and_angle = false length = 35.0 bone_angle = 0.0 -metadata/vert_owned = [152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173] -metadata/connected_nodes_paths = [NodePath("Bone-2"), NodePath("Bone-7"), NodePath("Bone-17")] +metadata/vert_owned = [197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228] +metadata/idx = 3 +metadata/connected_nodes_paths = [NodePath("Bone-2"), NodePath("Bone-6"), NodePath("Bone-7"), NodePath("Bone-17")] +metadata/connected_nodes_idx = [2, 6, 7, 17] metadata/_local_pose_override_enabled_ = true [node name="Bone-4" type="Bone2D" parent="Softbody2d4/Skeleton2D"] -position = Vector2(83.1484, 41.177) -rotation = 1.57152 -rest = Transform2D(-0.000720068, 1, -1, -0.000720068, 83.1484, 41.177) +position = Vector2(83.0001, 41.085) +rotation = 1.5708 +rest = Transform2D(-4.37114e-08, 1, -1, -4.37114e-08, 83, 41.085) auto_calculate_length_and_angle = false length = 35.0 bone_angle = 0.0 -metadata/vert_owned = [174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185] -metadata/connected_nodes_paths = [NodePath("Bone-0"), NodePath("Bone-5"), NodePath("Bone-8")] +metadata/vert_owned = [229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252] +metadata/idx = 4 +metadata/connected_nodes_paths = [NodePath("Bone-0"), NodePath("Bone-1"), NodePath("Bone-5"), NodePath("Bone-8"), NodePath("Bone-9")] +metadata/connected_nodes_idx = [0, 1, 5, 8, 9] metadata/_local_pose_override_enabled_ = true [node name="Bone-5" type="Bone2D" parent="Softbody2d4/Skeleton2D"] -position = Vector2(83.1199, 80.8442) -rotation = 1.57237 -scale = Vector2(1, 1) -rest = Transform2D(-0.00156931, 0.999999, -0.999999, -0.00156931, 83.1198, 80.8442) +position = Vector2(83.0001, 80.67) +rotation = 1.5708 +rest = Transform2D(-4.37114e-08, 1, -1, -4.37114e-08, 83, 80.67) auto_calculate_length_and_angle = false length = 35.0 bone_angle = 0.0 -metadata/vert_owned = [186, 187, 188, 189, 190, 191] -metadata/connected_nodes_paths = [NodePath("Bone-1"), NodePath("Bone-4"), NodePath("Bone-6"), NodePath("Bone-9"), NodePath("Bone-10")] +metadata/vert_owned = [253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268] +metadata/idx = 5 +metadata/connected_nodes_paths = [NodePath("Bone-0"), NodePath("Bone-1"), NodePath("Bone-4"), NodePath("Bone-2"), NodePath("Bone-6"), NodePath("Bone-8"), NodePath("Bone-9"), NodePath("Bone-10")] +metadata/connected_nodes_idx = [0, 1, 4, 2, 6, 8, 9, 10] metadata/_local_pose_override_enabled_ = true [node name="Bone-6" type="Bone2D" parent="Softbody2d4/Skeleton2D"] -position = Vector2(83.0649, 115.77) -rotation = -0.785448 +position = Vector2(83.0001, 115.67) +rotation = 1.5708 scale = Vector2(1, 1) -rest = Transform2D(0.707072, -0.707142, 0.707142, 0.707072, 83.0649, 115.77) +rest = Transform2D(-3.50078e-06, 1, -1, -3.50078e-06, 83, 115.67) auto_calculate_length_and_angle = false length = 35.0 bone_angle = 0.0 -metadata/vert_owned = [192, 193, 194, 195, 196] -metadata/connected_nodes_paths = [NodePath("Bone-2"), NodePath("Bone-5"), NodePath("Bone-7"), NodePath("Bone-9"), NodePath("Bone-10"), NodePath("Bone-11")] +metadata/vert_owned = [269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284] +metadata/idx = 6 +metadata/connected_nodes_paths = [NodePath("Bone-1"), NodePath("Bone-2"), NodePath("Bone-5"), NodePath("Bone-3"), NodePath("Bone-7"), NodePath("Bone-9"), NodePath("Bone-10"), NodePath("Bone-11")] +metadata/connected_nodes_idx = [1, 2, 5, 3, 7, 9, 10, 11] metadata/_local_pose_override_enabled_ = true [node name="Bone-7" type="Bone2D" parent="Softbody2d4/Skeleton2D"] -position = Vector2(82.9385, 150.718) -rotation = -0.00202548 -rest = Transform2D(0.999998, -0.0020255, 0.0020255, 0.999998, 82.9385, 150.718) +position = Vector2(83, 150.67) +rotation = 1.73939 +scale = Vector2(1, 1) +rest = Transform2D(-0.167798, 0.985821, -0.985821, -0.167798, 83, 150.67) auto_calculate_length_and_angle = false length = 35.0 bone_angle = 0.0 -metadata/vert_owned = [197, 198, 199, 200, 201] -metadata/connected_nodes_paths = [NodePath("Bone-3"), NodePath("Bone-6"), NodePath("Bone-11"), NodePath("Bone-17")] +metadata/vert_owned = [285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300] +metadata/idx = 7 +metadata/connected_nodes_paths = [NodePath("Bone-2"), NodePath("Bone-3"), NodePath("Bone-6"), NodePath("Bone-17"), NodePath("Bone-10"), NodePath("Bone-11"), NodePath("Bone-20")] +metadata/connected_nodes_idx = [2, 3, 6, 17, 10, 11, 20] metadata/_local_pose_override_enabled_ = true [node name="Bone-8" type="Bone2D" parent="Softbody2d4/Skeleton2D"] -position = Vector2(118.123, 41.1701) -rotation = 1.57316 -scale = Vector2(1, 1) -rest = Transform2D(-0.00236551, 0.999997, -0.999997, -0.00236551, 118.123, 41.1701) +position = Vector2(118, 41.085) +rotation = 1.5708 +rest = Transform2D(-4.37114e-08, 1, -1, -4.37114e-08, 118, 41.085) auto_calculate_length_and_angle = false length = 35.0 bone_angle = 0.0 -metadata/vert_owned = [202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212] -metadata/connected_nodes_paths = [NodePath("Bone-4"), NodePath("Bone-9"), NodePath("Bone-12")] +metadata/vert_owned = [301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324] +metadata/idx = 8 +metadata/connected_nodes_paths = [NodePath("Bone-4"), NodePath("Bone-5"), NodePath("Bone-9"), NodePath("Bone-12"), NodePath("Bone-13")] +metadata/connected_nodes_idx = [4, 5, 9, 12, 13] metadata/_local_pose_override_enabled_ = true [node name="Bone-9" type="Bone2D" parent="Softbody2d4/Skeleton2D"] -position = Vector2(118.029, 80.8025) -rotation = -1.56843 -rest = Transform2D(0.00236554, -0.999997, 0.999997, 0.00236554, 118.029, 80.8025) +position = Vector2(118, 80.67) +rotation = 1.5708 +rest = Transform2D(-4.37114e-08, 1, -1, -4.37114e-08, 118, 80.67) auto_calculate_length_and_angle = false length = 35.0 bone_angle = 0.0 -metadata/vert_owned = [213, 214, 215, 216, 217] -metadata/connected_nodes_paths = [NodePath("Bone-5"), NodePath("Bone-6"), NodePath("Bone-8"), NodePath("Bone-10"), NodePath("Bone-13")] +metadata/vert_owned = [325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340] +metadata/idx = 9 +metadata/connected_nodes_paths = [NodePath("Bone-4"), NodePath("Bone-5"), NodePath("Bone-8"), NodePath("Bone-6"), NodePath("Bone-10"), NodePath("Bone-12"), NodePath("Bone-13"), NodePath("Bone-14")] +metadata/connected_nodes_idx = [4, 5, 8, 6, 10, 12, 13, 14] metadata/_local_pose_override_enabled_ = true [node name="Bone-10" type="Bone2D" parent="Softbody2d4/Skeleton2D"] -position = Vector2(118.187, 115.713) -rotation = 1.57575 -rest = Transform2D(-0.00495841, 0.999988, -0.999988, -0.00495841, 118.187, 115.713) +position = Vector2(118, 115.67) +rotation = 1.5708 +scale = Vector2(1, 1) +rest = Transform2D(-3.50078e-06, 1, -1, -3.50078e-06, 118, 115.67) auto_calculate_length_and_angle = false length = 35.0 bone_angle = 0.0 -metadata/vert_owned = [218, 219, 220, 221, 222, 223, 224] -metadata/connected_nodes_paths = [NodePath("Bone-5"), NodePath("Bone-6"), NodePath("Bone-9"), NodePath("Bone-11"), NodePath("Bone-13"), NodePath("Bone-14")] +metadata/vert_owned = [341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356] +metadata/idx = 10 +metadata/connected_nodes_paths = [NodePath("Bone-5"), NodePath("Bone-6"), NodePath("Bone-9"), NodePath("Bone-7"), NodePath("Bone-11"), NodePath("Bone-13"), NodePath("Bone-14"), NodePath("Bone-15")] +metadata/connected_nodes_idx = [5, 6, 9, 7, 11, 13, 14, 15] metadata/_local_pose_override_enabled_ = true [node name="Bone-11" type="Bone2D" parent="Softbody2d4/Skeleton2D"] -position = Vector2(118.014, 150.647) -rotation = -0.780428 -scale = Vector2(1, 1) -rest = Transform2D(0.710612, -0.703584, 0.703584, 0.710612, 118.014, 150.647) +position = Vector2(118, 150.67) +rotation = 1.5708 +rest = Transform2D(-4.37114e-08, 1, -1, -4.37114e-08, 118, 150.67) auto_calculate_length_and_angle = false length = 35.0 bone_angle = 0.0 -metadata/vert_owned = [225, 226, 227, 228, 229, 230] -metadata/connected_nodes_paths = [NodePath("Bone-6"), NodePath("Bone-7"), NodePath("Bone-10"), NodePath("Bone-14"), NodePath("Bone-15"), NodePath("Bone-20")] +metadata/vert_owned = [357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372] +metadata/idx = 11 +metadata/connected_nodes_paths = [NodePath("Bone-6"), NodePath("Bone-7"), NodePath("Bone-10"), NodePath("Bone-17"), NodePath("Bone-20"), NodePath("Bone-14"), NodePath("Bone-15"), NodePath("Bone-23")] +metadata/connected_nodes_idx = [6, 7, 10, 17, 20, 14, 15, 23] metadata/_local_pose_override_enabled_ = true [node name="Bone-12" type="Bone2D" parent="Softbody2d4/Skeleton2D"] -position = Vector2(153.068, 41.2654) -rotation = 1.57283 -rest = Transform2D(-0.00203506, 0.999998, -0.999998, -0.00203506, 153.068, 41.2654) +position = Vector2(153, 41.085) +rotation = 1.5708 +rest = Transform2D(-4.37114e-08, 1, -1, -4.37114e-08, 153, 41.085) auto_calculate_length_and_angle = false length = 35.0 bone_angle = 0.0 -metadata/vert_owned = [231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241] -metadata/connected_nodes_paths = [NodePath("Bone-8"), NodePath("Bone-13"), NodePath("Bone-26")] +metadata/vert_owned = [373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396] +metadata/idx = 12 +metadata/connected_nodes_paths = [NodePath("Bone-8"), NodePath("Bone-9"), NodePath("Bone-13"), NodePath("Bone-26"), NodePath("Bone-27")] +metadata/connected_nodes_idx = [8, 9, 13, 26, 27] metadata/_local_pose_override_enabled_ = true [node name="Bone-13" type="Bone2D" parent="Softbody2d4/Skeleton2D"] -position = Vector2(152.988, 80.7953) -rotation = 1.56566 -rest = Transform2D(0.00513762, 0.999987, -0.999987, 0.00513762, 152.988, 80.7953) +position = Vector2(153, 80.67) +rotation = 1.5708 +rest = Transform2D(-4.37114e-08, 1, -1, -4.37114e-08, 153, 80.67) auto_calculate_length_and_angle = false length = 35.0 bone_angle = 0.0 -metadata/vert_owned = [242, 243, 244, 245, 246, 247, 248] -metadata/connected_nodes_paths = [NodePath("Bone-9"), NodePath("Bone-10"), NodePath("Bone-12"), NodePath("Bone-14"), NodePath("Bone-27"), NodePath("Bone-28")] +metadata/vert_owned = [397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412] +metadata/idx = 13 +metadata/connected_nodes_paths = [NodePath("Bone-8"), NodePath("Bone-9"), NodePath("Bone-12"), NodePath("Bone-10"), NodePath("Bone-14"), NodePath("Bone-26"), NodePath("Bone-27"), NodePath("Bone-28")] +metadata/connected_nodes_idx = [8, 9, 12, 10, 14, 26, 27, 28] metadata/_local_pose_override_enabled_ = true [node name="Bone-14" type="Bone2D" parent="Softbody2d4/Skeleton2D"] -position = Vector2(153.168, 115.841) -rotation = 1.57397 -rest = Transform2D(-0.0031741, 0.999995, -0.999995, -0.0031741, 153.168, 115.841) +position = Vector2(153, 115.67) +rotation = 1.5708 +scale = Vector2(1, 1) +rest = Transform2D(-3.50078e-06, 1, -1, -3.50078e-06, 153, 115.67) auto_calculate_length_and_angle = false length = 35.0 bone_angle = 0.0 -metadata/vert_owned = [249, 250, 251, 252, 253] -metadata/connected_nodes_paths = [NodePath("Bone-10"), NodePath("Bone-11"), NodePath("Bone-13"), NodePath("Bone-15"), NodePath("Bone-28"), NodePath("Bone-29")] +metadata/vert_owned = [413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428] +metadata/idx = 14 +metadata/connected_nodes_paths = [NodePath("Bone-9"), NodePath("Bone-10"), NodePath("Bone-13"), NodePath("Bone-11"), NodePath("Bone-15"), NodePath("Bone-27"), NodePath("Bone-28"), NodePath("Bone-29")] +metadata/connected_nodes_idx = [9, 10, 13, 11, 15, 27, 28, 29] metadata/_local_pose_override_enabled_ = true [node name="Bone-15" type="Bone2D" parent="Softbody2d4/Skeleton2D"] -position = Vector2(153.057, 150.915) -rotation = 1.57347 -scale = Vector2(1, 1) -rest = Transform2D(-0.00267057, 0.999996, -0.999996, -0.00267057, 153.057, 150.915) +position = Vector2(153, 150.67) +rotation = 1.5708 +rest = Transform2D(-4.37114e-08, 1, -1, -4.37114e-08, 153, 150.67) auto_calculate_length_and_angle = false length = 35.0 bone_angle = 0.0 -metadata/vert_owned = [254, 255, 256, 257, 258, 259, 260] -metadata/connected_nodes_paths = [NodePath("Bone-11"), NodePath("Bone-14"), NodePath("Bone-20"), NodePath("Bone-23"), NodePath("Bone-29"), NodePath("Bone-36")] +metadata/vert_owned = [429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444] +metadata/idx = 15 +metadata/connected_nodes_paths = [NodePath("Bone-10"), NodePath("Bone-11"), NodePath("Bone-14"), NodePath("Bone-20"), NodePath("Bone-23"), NodePath("Bone-28"), NodePath("Bone-29"), NodePath("Bone-36")] +metadata/connected_nodes_idx = [10, 11, 14, 20, 23, 28, 29, 36] metadata/_local_pose_override_enabled_ = true [node name="Bone-16" type="Bone2D" parent="Softbody2d4/Skeleton2D"] -position = Vector2(42.786, 259.571) -rotation = -0.000503749 -rest = Transform2D(1, -0.000503721, 0.000503721, 1, 42.7859, 259.571) +position = Vector2(42.75, 259.585) +scale = Vector2(1, 1) +rest = Transform2D(1, -1.5164e-06, 1.5164e-06, 1, 42.75, 259.585) auto_calculate_length_and_angle = false length = 35.0 bone_angle = 0.0 -metadata/vert_owned = [261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290] +metadata/vert_owned = [445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486] +metadata/idx = 16 metadata/connected_nodes_paths = [NodePath("Bone-18"), NodePath("Bone-19")] +metadata/connected_nodes_idx = [18, 19] metadata/_local_pose_override_enabled_ = true [node name="Bone-17" type="Bone2D" parent="Softbody2d4/Skeleton2D"] -position = Vector2(77.1405, 185.693) -rotation = 1.68598 +position = Vector2(77.0426, 185.67) scale = Vector2(1, 1) -rest = Transform2D(-0.114932, 0.993373, -0.993373, -0.114932, 77.1404, 185.693) +rest = Transform2D(1, -1.49021e-06, 1.49021e-06, 1, 77.0425, 185.67) auto_calculate_length_and_angle = false length = 35.0 bone_angle = 0.0 -metadata/vert_owned = [291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306] -metadata/connected_nodes_paths = [NodePath("Bone-3"), NodePath("Bone-7"), NodePath("Bone-18"), NodePath("Bone-20")] +metadata/vert_owned = [487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514] +metadata/idx = 17 +metadata/connected_nodes_paths = [NodePath("Bone-3"), NodePath("Bone-7"), NodePath("Bone-11"), NodePath("Bone-20"), NodePath("Bone-18"), NodePath("Bone-21")] +metadata/connected_nodes_idx = [3, 7, 11, 20, 18, 21] metadata/_local_pose_override_enabled_ = true [node name="Bone-18" type="Bone2D" parent="Softbody2d4/Skeleton2D"] -position = Vector2(73.1069, 220.554) -rotation = 1.32494 +position = Vector2(73.2501, 220.67) +rotation = -0.663747 scale = Vector2(1, 1) -rest = Transform2D(0.24339, 0.969928, -0.969928, 0.24339, 73.1069, 220.554) +rest = Transform2D(0.787689, -0.616073, 0.616073, 0.787689, 73.25, 220.67) auto_calculate_length_and_angle = false length = 35.0 bone_angle = 0.0 -metadata/vert_owned = [307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326] -metadata/connected_nodes_paths = [NodePath("Bone-16"), NodePath("Bone-17"), NodePath("Bone-19"), NodePath("Bone-21")] +metadata/vert_owned = [515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551] +metadata/idx = 18 +metadata/connected_nodes_paths = [NodePath("Bone-16"), NodePath("Bone-19"), NodePath("Bone-17"), NodePath("Bone-20"), NodePath("Bone-21"), NodePath("Bone-22")] +metadata/connected_nodes_idx = [16, 19, 17, 20, 21, 22] metadata/_local_pose_override_enabled_ = true [node name="Bone-19" type="Bone2D" parent="Softbody2d4/Skeleton2D"] -position = Vector2(82.8929, 259.551) -rotation = -1.81666 +position = Vector2(83, 259.585) +rotation = -0.838312 scale = Vector2(1, 1) -rest = Transform2D(-0.24339, -0.969928, 0.969928, -0.24339, 82.8928, 259.551) +rest = Transform2D(0.668719, -0.743515, 0.743515, 0.668719, 83, 259.585) auto_calculate_length_and_angle = false length = 35.0 bone_angle = 0.0 -metadata/vert_owned = [327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337] -metadata/connected_nodes_paths = [NodePath("Bone-16"), NodePath("Bone-18"), NodePath("Bone-22")] +metadata/vert_owned = [552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575] +metadata/idx = 19 +metadata/connected_nodes_paths = [NodePath("Bone-16"), NodePath("Bone-18"), NodePath("Bone-21"), NodePath("Bone-22")] +metadata/connected_nodes_idx = [16, 18, 21, 22] metadata/_local_pose_override_enabled_ = true [node name="Bone-20" type="Bone2D" parent="Softbody2d4/Skeleton2D"] -position = Vector2(117.925, 185.765) -rotation = -3.13983 -rest = Transform2D(-0.999998, -0.00176445, 0.00176445, -0.999998, 117.925, 185.765) +position = Vector2(118, 185.67) +rest = Transform2D(1, 0, 0, 1, 118, 185.67) auto_calculate_length_and_angle = false length = 35.0 bone_angle = 0.0 -metadata/vert_owned = [338, 339, 340, 341, 342] -metadata/connected_nodes_paths = [NodePath("Bone-11"), NodePath("Bone-15"), NodePath("Bone-17"), NodePath("Bone-21"), NodePath("Bone-23")] +metadata/vert_owned = [576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591] +metadata/idx = 20 +metadata/connected_nodes_paths = [NodePath("Bone-7"), NodePath("Bone-11"), NodePath("Bone-17"), NodePath("Bone-15"), NodePath("Bone-23"), NodePath("Bone-18"), NodePath("Bone-21"), NodePath("Bone-24")] +metadata/connected_nodes_idx = [7, 11, 17, 15, 23, 18, 21, 24] metadata/_local_pose_override_enabled_ = true [node name="Bone-21" type="Bone2D" parent="Softbody2d4/Skeleton2D"] -position = Vector2(117.81, 220.782) -rotation = 1.56902 -rest = Transform2D(0.00177641, 0.999998, -0.999998, 0.00177641, 117.81, 220.782) +position = Vector2(118, 220.67) +rotation = 1.5708 +scale = Vector2(1, 1) +rest = Transform2D(-3.14315e-06, 1, -1, -3.14315e-06, 118, 220.67) auto_calculate_length_and_angle = false length = 35.0 bone_angle = 0.0 -metadata/vert_owned = [343, 344, 345, 346, 347, 348, 349, 350] -metadata/connected_nodes_paths = [NodePath("Bone-18"), NodePath("Bone-20"), NodePath("Bone-22"), NodePath("Bone-24")] +metadata/vert_owned = [592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607] +metadata/idx = 21 +metadata/connected_nodes_paths = [NodePath("Bone-17"), NodePath("Bone-18"), NodePath("Bone-20"), NodePath("Bone-19"), NodePath("Bone-22"), NodePath("Bone-23"), NodePath("Bone-24"), NodePath("Bone-25")] +metadata/connected_nodes_idx = [17, 18, 20, 19, 22, 23, 24, 25] metadata/_local_pose_override_enabled_ = true [node name="Bone-22" type="Bone2D" parent="Softbody2d4/Skeleton2D"] -position = Vector2(117.878, 259.538) -rotation = -1.57257 +position = Vector2(118, 259.585) +rotation = -1.57079 scale = Vector2(1, 1) -rest = Transform2D(-0.00177638, -0.999998, 0.999998, -0.00177638, 117.878, 259.538) +rest = Transform2D(3.17494e-06, -1, 1, 3.17494e-06, 118, 259.585) auto_calculate_length_and_angle = false length = 35.0 bone_angle = 0.0 -metadata/vert_owned = [351, 352, 353, 354, 355, 356, 357, 358, 359, 360] -metadata/connected_nodes_paths = [NodePath("Bone-19"), NodePath("Bone-21"), NodePath("Bone-25")] +metadata/vert_owned = [608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631] +metadata/idx = 22 +metadata/connected_nodes_paths = [NodePath("Bone-18"), NodePath("Bone-19"), NodePath("Bone-21"), NodePath("Bone-24"), NodePath("Bone-25")] +metadata/connected_nodes_idx = [18, 19, 21, 24, 25] metadata/_local_pose_override_enabled_ = true [node name="Bone-23" type="Bone2D" parent="Softbody2d4/Skeleton2D"] -position = Vector2(152.963, 185.882) -rotation = 1.56817 -scale = Vector2(1, 1) -rest = Transform2D(0.00262709, 0.999997, -0.999997, 0.00262709, 152.963, 185.882) +position = Vector2(153, 185.67) +rest = Transform2D(1, 0, 0, 1, 153, 185.67) auto_calculate_length_and_angle = false length = 35.0 bone_angle = 0.0 -metadata/vert_owned = [361, 362, 363, 364, 365] -metadata/connected_nodes_paths = [NodePath("Bone-15"), NodePath("Bone-20"), NodePath("Bone-24"), NodePath("Bone-36"), NodePath("Bone-37")] +metadata/vert_owned = [632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647] +metadata/idx = 23 +metadata/connected_nodes_paths = [NodePath("Bone-11"), NodePath("Bone-15"), NodePath("Bone-20"), NodePath("Bone-29"), NodePath("Bone-36"), NodePath("Bone-21"), NodePath("Bone-24"), NodePath("Bone-37")] +metadata/connected_nodes_idx = [11, 15, 20, 29, 36, 21, 24, 37] metadata/_local_pose_override_enabled_ = true [node name="Bone-24" type="Bone2D" parent="Softbody2d4/Skeleton2D"] -position = Vector2(153.055, 220.824) -rotation = 1.57302 -rest = Transform2D(-0.00222592, 0.999997, -0.999997, -0.00222592, 153.055, 220.824) +position = Vector2(153, 220.67) +rotation = 1.5708 +scale = Vector2(1, 1) +rest = Transform2D(-3.14315e-06, 1, -1, -3.14315e-06, 153, 220.67) auto_calculate_length_and_angle = false length = 35.0 bone_angle = 0.0 -metadata/vert_owned = [366, 367, 368, 369, 370, 371] -metadata/connected_nodes_paths = [NodePath("Bone-21"), NodePath("Bone-23"), NodePath("Bone-25"), NodePath("Bone-36"), NodePath("Bone-37")] +metadata/vert_owned = [648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663] +metadata/idx = 24 +metadata/connected_nodes_paths = [NodePath("Bone-20"), NodePath("Bone-21"), NodePath("Bone-23"), NodePath("Bone-22"), NodePath("Bone-25"), NodePath("Bone-36"), NodePath("Bone-37"), NodePath("Bone-38")] +metadata/connected_nodes_idx = [20, 21, 23, 22, 25, 36, 37, 38] metadata/_local_pose_override_enabled_ = true [node name="Bone-25" type="Bone2D" parent="Softbody2d4/Skeleton2D"] -position = Vector2(152.969, 259.486) -rotation = -1.56857 -rest = Transform2D(0.00222595, -0.999997, 0.999997, 0.00222595, 152.969, 259.486) +position = Vector2(153, 259.585) +rotation = -1.57079 +scale = Vector2(1, 1) +rest = Transform2D(3.17494e-06, -1, 1, 3.17494e-06, 153, 259.585) auto_calculate_length_and_angle = false length = 35.0 bone_angle = 0.0 -metadata/vert_owned = [372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382] -metadata/connected_nodes_paths = [NodePath("Bone-22"), NodePath("Bone-24"), NodePath("Bone-38")] +metadata/vert_owned = [664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687] +metadata/idx = 25 +metadata/connected_nodes_paths = [NodePath("Bone-21"), NodePath("Bone-22"), NodePath("Bone-24"), NodePath("Bone-37"), NodePath("Bone-38")] +metadata/connected_nodes_idx = [21, 22, 24, 37, 38] metadata/_local_pose_override_enabled_ = true [node name="Bone-26" type="Bone2D" parent="Softbody2d4/Skeleton2D"] -position = Vector2(187.768, 41.0396) -rotation = 1.568 -scale = Vector2(1, 1) -rest = Transform2D(0.00279183, 0.999996, -0.999996, 0.00279183, 187.768, 41.0396) +position = Vector2(188, 41.085) +rotation = 1.5708 +rest = Transform2D(-4.37114e-08, 1, -1, -4.37114e-08, 188, 41.085) auto_calculate_length_and_angle = false length = 35.0 bone_angle = 0.0 -metadata/vert_owned = [383, 384, 385, 386, 387, 388, 389, 390, 391, 392] -metadata/connected_nodes_paths = [NodePath("Bone-12"), NodePath("Bone-27"), NodePath("Bone-30")] +metadata/vert_owned = [688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711] +metadata/idx = 26 +metadata/connected_nodes_paths = [NodePath("Bone-12"), NodePath("Bone-13"), NodePath("Bone-27"), NodePath("Bone-30"), NodePath("Bone-31")] +metadata/connected_nodes_idx = [12, 13, 27, 30, 31] metadata/_local_pose_override_enabled_ = true [node name="Bone-27" type="Bone2D" parent="Softbody2d4/Skeleton2D"] -position = Vector2(187.878, 80.4791) -rotation = 1.56796 -rest = Transform2D(0.0028388, 0.999996, -0.999996, 0.0028388, 187.878, 80.4791) +position = Vector2(188, 80.67) +rotation = 1.5708 +rest = Transform2D(-4.37114e-08, 1, -1, -4.37114e-08, 188, 80.67) auto_calculate_length_and_angle = false length = 35.0 bone_angle = 0.0 -metadata/vert_owned = [393, 394, 395, 396, 397, 398, 399] -metadata/connected_nodes_paths = [NodePath("Bone-13"), NodePath("Bone-26"), NodePath("Bone-28"), NodePath("Bone-31")] +metadata/vert_owned = [712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727] +metadata/idx = 27 +metadata/connected_nodes_paths = [NodePath("Bone-12"), NodePath("Bone-13"), NodePath("Bone-26"), NodePath("Bone-14"), NodePath("Bone-28"), NodePath("Bone-30"), NodePath("Bone-31"), NodePath("Bone-32")] +metadata/connected_nodes_idx = [12, 13, 26, 14, 28, 30, 31, 32] metadata/_local_pose_override_enabled_ = true [node name="Bone-28" type="Bone2D" parent="Softbody2d4/Skeleton2D"] -position = Vector2(187.978, 115.524) -rotation = -1.57364 -rest = Transform2D(-0.00283889, -0.999996, 0.999996, -0.00283889, 187.978, 115.524) +position = Vector2(188, 115.67) +rotation = 1.5708 +scale = Vector2(1, 1) +rest = Transform2D(-3.50078e-06, 1, -1, -3.50078e-06, 188, 115.67) auto_calculate_length_and_angle = false length = 35.0 bone_angle = 0.0 -metadata/vert_owned = [400, 401, 402, 403, 404] -metadata/connected_nodes_paths = [NodePath("Bone-13"), NodePath("Bone-14"), NodePath("Bone-27"), NodePath("Bone-29"), NodePath("Bone-32")] +metadata/vert_owned = [728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743] +metadata/idx = 28 +metadata/connected_nodes_paths = [NodePath("Bone-13"), NodePath("Bone-14"), NodePath("Bone-27"), NodePath("Bone-15"), NodePath("Bone-29"), NodePath("Bone-31"), NodePath("Bone-32"), NodePath("Bone-33")] +metadata/connected_nodes_idx = [13, 14, 27, 15, 29, 31, 32, 33] metadata/_local_pose_override_enabled_ = true [node name="Bone-29" type="Bone2D" parent="Softbody2d4/Skeleton2D"] -position = Vector2(187.971, 150.566) -rotation = 0.00335289 -rest = Transform2D(0.999994, 0.00335289, -0.00335289, 0.999994, 187.971, 150.566) +position = Vector2(188, 150.67) +rotation = 1.57079 +rest = Transform2D(3.53257e-06, 1, -1, 3.53257e-06, 188, 150.67) auto_calculate_length_and_angle = false length = 35.0 bone_angle = 0.0 -metadata/vert_owned = [405, 406, 407, 408, 409, 410] -metadata/connected_nodes_paths = [NodePath("Bone-14"), NodePath("Bone-15"), NodePath("Bone-28"), NodePath("Bone-33"), NodePath("Bone-36"), NodePath("Bone-39")] +metadata/vert_owned = [744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759] +metadata/idx = 29 +metadata/connected_nodes_paths = [NodePath("Bone-14"), NodePath("Bone-15"), NodePath("Bone-28"), NodePath("Bone-23"), NodePath("Bone-36"), NodePath("Bone-32"), NodePath("Bone-33"), NodePath("Bone-39")] +metadata/connected_nodes_idx = [14, 15, 28, 23, 36, 32, 33, 39] metadata/_local_pose_override_enabled_ = true [node name="Bone-30" type="Bone2D" parent="Softbody2d4/Skeleton2D"] -position = Vector2(223.144, 41.0504) -rotation = 1.47061 -rest = Transform2D(0.100024, 0.994985, -0.994985, 0.100024, 223.144, 41.0504) +position = Vector2(223, 41.085) +rotation = 1.46597 +scale = Vector2(1, 1) +rest = Transform2D(0.104637, 0.99451, -0.99451, 0.104637, 223, 41.085) auto_calculate_length_and_angle = false length = 35.0 bone_angle = 0.0 -metadata/vert_owned = [411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421] -metadata/connected_nodes_paths = [NodePath("Bone-26"), NodePath("Bone-31"), NodePath("Bone-34")] +metadata/vert_owned = [760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783] +metadata/idx = 30 +metadata/connected_nodes_paths = [NodePath("Bone-26"), NodePath("Bone-27"), NodePath("Bone-31"), NodePath("Bone-34")] +metadata/connected_nodes_idx = [26, 27, 31, 34] metadata/_local_pose_override_enabled_ = true [node name="Bone-31" type="Bone2D" parent="Softbody2d4/Skeleton2D"] -position = Vector2(227.113, 80.5295) -rotation = -1.67099 -rest = Transform2D(-0.100024, -0.994985, 0.994985, -0.100024, 227.113, 80.5295) +position = Vector2(227.165, 80.67) +rotation = -1.67563 +scale = Vector2(1, 1) +rest = Transform2D(-0.104637, -0.99451, 0.99451, -0.104637, 227.165, 80.67) auto_calculate_length_and_angle = false length = 35.0 bone_angle = 0.0 -metadata/vert_owned = [422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434] -metadata/connected_nodes_paths = [NodePath("Bone-27"), NodePath("Bone-30"), NodePath("Bone-32")] +metadata/vert_owned = [784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810] +metadata/idx = 31 +metadata/connected_nodes_paths = [NodePath("Bone-34"), NodePath("Bone-26"), NodePath("Bone-27"), NodePath("Bone-30"), NodePath("Bone-28"), NodePath("Bone-32")] +metadata/connected_nodes_idx = [34, 26, 27, 30, 28, 32] metadata/_local_pose_override_enabled_ = true [node name="Bone-32" type="Bone2D" parent="Softbody2d4/Skeleton2D"] -position = Vector2(235.169, 115.765) -rotation = 1.91045 +position = Vector2(235.106, 115.67) +rotation = 2.50259 scale = Vector2(1, 1) -rest = Transform2D(-0.333159, 0.942871, -0.942871, -0.333159, 235.169, 115.765) +rest = Transform2D(-0.802689, 0.596398, -0.596398, -0.802689, 235.106, 115.67) auto_calculate_length_and_angle = false length = 35.0 bone_angle = 0.0 -metadata/vert_owned = [435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455] -metadata/connected_nodes_paths = [NodePath("Bone-28"), NodePath("Bone-31"), NodePath("Bone-33"), NodePath("Bone-35")] +metadata/vert_owned = [811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847] +metadata/idx = 32 +metadata/connected_nodes_paths = [NodePath("Bone-27"), NodePath("Bone-28"), NodePath("Bone-31"), NodePath("Bone-29"), NodePath("Bone-33"), NodePath("Bone-35")] +metadata/connected_nodes_idx = [27, 28, 31, 29, 33, 35] metadata/_local_pose_override_enabled_ = true [node name="Bone-33" type="Bone2D" parent="Softbody2d4/Skeleton2D"] -position = Vector2(222.831, 150.683) -rotation = 0.00148902 +position = Vector2(223, 150.67) +rotation = 2.35619 scale = Vector2(1, 1) -rest = Transform2D(0.999999, 0.00148902, -0.00148902, 0.999999, 222.831, 150.683) +rest = Transform2D(-0.707106, 0.707108, -0.707108, -0.707106, 223, 150.67) auto_calculate_length_and_angle = false length = 35.0 bone_angle = 0.0 -metadata/vert_owned = [456, 457, 458, 459, 460, 461, 462] -metadata/connected_nodes_paths = [NodePath("Bone-29"), NodePath("Bone-32"), NodePath("Bone-35"), NodePath("Bone-39")] +metadata/vert_owned = [848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863] +metadata/idx = 33 +metadata/connected_nodes_paths = [NodePath("Bone-28"), NodePath("Bone-29"), NodePath("Bone-32"), NodePath("Bone-36"), NodePath("Bone-39"), NodePath("Bone-35"), NodePath("Bone-42")] +metadata/connected_nodes_idx = [28, 29, 32, 36, 39, 35, 42] metadata/_local_pose_override_enabled_ = true [node name="Bone-34" type="Bone2D" parent="Softbody2d4/Skeleton2D"] -position = Vector2(260.166, 41.1636) -rotation = -3.13853 -rest = Transform2D(-0.999995, -0.00305906, 0.00305906, -0.999995, 260.166, 41.1636) +position = Vector2(260.25, 41.085) +rotation = 3.14159 +scale = Vector2(1, 1) +rest = Transform2D(-1, 8.66252e-07, -8.66252e-07, -1, 260.25, 41.085) auto_calculate_length_and_angle = false length = 35.0 bone_angle = 0.0 -metadata/vert_owned = [463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492] -metadata/connected_nodes_paths = [NodePath("Bone-30")] +metadata/vert_owned = [864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906] +metadata/idx = 34 +metadata/connected_nodes_paths = [NodePath("Bone-31"), NodePath("Bone-30")] +metadata/connected_nodes_idx = [31, 30] metadata/_local_pose_override_enabled_ = true [node name="Bone-35" type="Bone2D" parent="Softbody2d4/Skeleton2D"] -position = Vector2(262.96, 150.743) -rotation = -3.1401 -rest = Transform2D(-0.999999, -0.00148907, 0.00148907, -0.999999, 262.96, 150.743) +position = Vector2(262.945, 150.67) +rotation = 2.42208 +scale = Vector2(1, 1) +rest = Transform2D(-0.752127, 0.659018, -0.659018, -0.752127, 262.945, 150.67) auto_calculate_length_and_angle = false length = 35.0 bone_angle = 0.0 -metadata/vert_owned = [493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507] -metadata/connected_nodes_paths = [NodePath("Bone-32"), NodePath("Bone-33"), NodePath("Bone-42")] +metadata/vert_owned = [907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 918, 919, 920, 921, 922, 923, 924, 925, 926, 927, 928, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 939, 940] +metadata/idx = 35 +metadata/connected_nodes_paths = [NodePath("Bone-32"), NodePath("Bone-33"), NodePath("Bone-39"), NodePath("Bone-42")] +metadata/connected_nodes_idx = [32, 33, 39, 42] metadata/_local_pose_override_enabled_ = true [node name="Bone-36" type="Bone2D" parent="Softbody2d4/Skeleton2D"] -position = Vector2(187.774, 185.644) -rotation = -1.56518 -scale = Vector2(1, 1) -rest = Transform2D(0.00561325, -0.999984, 0.999984, 0.00561325, 187.774, 185.644) +position = Vector2(188, 185.67) +rotation = 1.5708 +rest = Transform2D(-4.37114e-08, 1, -1, -4.37114e-08, 188, 185.67) auto_calculate_length_and_angle = false length = 35.0 bone_angle = 0.0 -metadata/vert_owned = [508, 509, 510, 511, 512, 513, 514] -metadata/connected_nodes_paths = [NodePath("Bone-15"), NodePath("Bone-23"), NodePath("Bone-24"), NodePath("Bone-29"), NodePath("Bone-37"), NodePath("Bone-39")] +metadata/vert_owned = [941, 942, 943, 944, 945, 946, 947, 948, 949, 950, 951, 952, 953, 954, 955, 956] +metadata/idx = 36 +metadata/connected_nodes_paths = [NodePath("Bone-15"), NodePath("Bone-23"), NodePath("Bone-29"), NodePath("Bone-24"), NodePath("Bone-37"), NodePath("Bone-33"), NodePath("Bone-39"), NodePath("Bone-40")] +metadata/connected_nodes_idx = [15, 23, 29, 24, 37, 33, 39, 40] metadata/_local_pose_override_enabled_ = true [node name="Bone-37" type="Bone2D" parent="Softbody2d4/Skeleton2D"] -position = Vector2(188.197, 220.51) -rotation = 1.57359 -rest = Transform2D(-0.00278966, 0.999996, -0.999996, -0.00278966, 188.197, 220.51) +position = Vector2(188, 220.67) +rotation = 1.5708 +scale = Vector2(1, 1) +rest = Transform2D(-3.14315e-06, 1, -1, -3.14315e-06, 188, 220.67) auto_calculate_length_and_angle = false length = 35.0 bone_angle = 0.0 -metadata/vert_owned = [515, 516, 517, 518, 519] -metadata/connected_nodes_paths = [NodePath("Bone-23"), NodePath("Bone-24"), NodePath("Bone-36"), NodePath("Bone-38"), NodePath("Bone-39"), NodePath("Bone-40")] +metadata/vert_owned = [957, 958, 959, 960, 961, 962, 963, 964, 965, 966, 967, 968, 969, 970, 971, 972] +metadata/idx = 37 +metadata/connected_nodes_paths = [NodePath("Bone-23"), NodePath("Bone-24"), NodePath("Bone-36"), NodePath("Bone-25"), NodePath("Bone-38"), NodePath("Bone-39"), NodePath("Bone-40"), NodePath("Bone-41")] +metadata/connected_nodes_idx = [23, 24, 36, 25, 38, 39, 40, 41] metadata/_local_pose_override_enabled_ = true [node name="Bone-38" type="Bone2D" parent="Softbody2d4/Skeleton2D"] -position = Vector2(188.088, 259.543) -rotation = -1.56801 -rest = Transform2D(0.00278957, -0.999996, 0.999996, 0.00278957, 188.088, 259.543) +position = Vector2(188, 259.585) +rotation = -1.57079 +scale = Vector2(1, 1) +rest = Transform2D(3.17494e-06, -1, 1, 3.17494e-06, 188, 259.585) auto_calculate_length_and_angle = false length = 35.0 bone_angle = 0.0 -metadata/vert_owned = [520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531] -metadata/connected_nodes_paths = [NodePath("Bone-25"), NodePath("Bone-37"), NodePath("Bone-41")] +metadata/vert_owned = [973, 974, 975, 976, 977, 978, 979, 980, 981, 982, 983, 984, 985, 986, 987, 988, 989, 990, 991, 992, 993, 994, 995, 996] +metadata/idx = 38 +metadata/connected_nodes_paths = [NodePath("Bone-24"), NodePath("Bone-25"), NodePath("Bone-37"), NodePath("Bone-40"), NodePath("Bone-41")] +metadata/connected_nodes_idx = [24, 25, 37, 40, 41] metadata/_local_pose_override_enabled_ = true [node name="Bone-39" type="Bone2D" parent="Softbody2d4/Skeleton2D"] -position = Vector2(222.826, 185.684) -rotation = 2.35336 +position = Vector2(223, 185.67) scale = Vector2(1, 1) -rest = Transform2D(-0.705101, 0.709107, -0.709107, -0.705101, 222.826, 185.684) +rest = Transform2D(1, 1.4978e-06, -1.4978e-06, 1, 223, 185.67) auto_calculate_length_and_angle = false length = 35.0 bone_angle = 0.0 -metadata/vert_owned = [532, 533, 534, 535, 536] -metadata/connected_nodes_paths = [NodePath("Bone-29"), NodePath("Bone-33"), NodePath("Bone-36"), NodePath("Bone-37"), NodePath("Bone-40"), NodePath("Bone-42")] +metadata/vert_owned = [997, 998, 999, 1000, 1001, 1002, 1003, 1004, 1005, 1006, 1007, 1008, 1009, 1010, 1011, 1012] +metadata/idx = 39 +metadata/connected_nodes_paths = [NodePath("Bone-29"), NodePath("Bone-33"), NodePath("Bone-36"), NodePath("Bone-35"), NodePath("Bone-42"), NodePath("Bone-37"), NodePath("Bone-40"), NodePath("Bone-43")] +metadata/connected_nodes_idx = [29, 33, 36, 35, 42, 37, 40, 43] metadata/_local_pose_override_enabled_ = true [node name="Bone-40" type="Bone2D" parent="Softbody2d4/Skeleton2D"] -position = Vector2(223.044, 220.575) -rotation = 1.56995 -rest = Transform2D(0.000850514, 1, -1, 0.000850514, 223.044, 220.575) +position = Vector2(223, 220.67) +rotation = 1.5708 +scale = Vector2(1, 1) +rest = Transform2D(-3.14315e-06, 1, -1, -3.14315e-06, 223, 220.67) auto_calculate_length_and_angle = false length = 35.0 bone_angle = 0.0 -metadata/vert_owned = [537, 538, 539, 540, 541, 542] -metadata/connected_nodes_paths = [NodePath("Bone-37"), NodePath("Bone-39"), NodePath("Bone-41"), NodePath("Bone-43")] +metadata/vert_owned = [1013, 1014, 1015, 1016, 1017, 1018, 1019, 1020, 1021, 1022, 1023, 1024, 1025, 1026, 1027, 1028] +metadata/idx = 40 +metadata/connected_nodes_paths = [NodePath("Bone-36"), NodePath("Bone-37"), NodePath("Bone-39"), NodePath("Bone-38"), NodePath("Bone-41"), NodePath("Bone-42"), NodePath("Bone-43"), NodePath("Bone-44")] +metadata/connected_nodes_idx = [36, 37, 39, 38, 41, 42, 43, 44] metadata/_local_pose_override_enabled_ = true [node name="Bone-41" type="Bone2D" parent="Softbody2d4/Skeleton2D"] -position = Vector2(223.077, 259.469) -rotation = -1.57165 -rest = Transform2D(-0.000850602, -1, 1, -0.000850602, 223.077, 259.469) +position = Vector2(223, 259.585) +rotation = -1.57079 +scale = Vector2(1, 1) +rest = Transform2D(3.17494e-06, -1, 1, 3.17494e-06, 223, 259.585) auto_calculate_length_and_angle = false length = 35.0 bone_angle = 0.0 -metadata/vert_owned = [543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553] -metadata/connected_nodes_paths = [NodePath("Bone-38"), NodePath("Bone-40"), NodePath("Bone-44")] +metadata/vert_owned = [1029, 1030, 1031, 1032, 1033, 1034, 1035, 1036, 1037, 1038, 1039, 1040, 1041, 1042, 1043, 1044, 1045, 1046, 1047, 1048, 1049, 1050, 1051, 1052] +metadata/idx = 41 +metadata/connected_nodes_paths = [NodePath("Bone-37"), NodePath("Bone-38"), NodePath("Bone-40"), NodePath("Bone-43"), NodePath("Bone-44")] +metadata/connected_nodes_idx = [37, 38, 40, 43, 44] metadata/_local_pose_override_enabled_ = true [node name="Bone-42" type="Bone2D" parent="Softbody2d4/Skeleton2D"] -position = Vector2(263.687, 185.614) -rotation = 3.13987 -rest = Transform2D(-0.999999, 0.00171939, -0.00171939, -0.999999, 263.687, 185.614) +position = Vector2(263.75, 185.67) +rotation = -1.59379 +scale = Vector2(1, 1) +rest = Transform2D(-0.0229954, -0.999736, 0.999736, -0.0229954, 263.75, 185.67) auto_calculate_length_and_angle = false length = 35.0 bone_angle = 0.0 -metadata/vert_owned = [554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568] -metadata/connected_nodes_paths = [NodePath("Bone-35"), NodePath("Bone-39"), NodePath("Bone-43")] +metadata/vert_owned = [1053, 1054, 1055, 1056, 1057, 1058, 1059, 1060, 1061, 1062, 1063, 1064, 1065, 1066, 1067, 1068, 1069, 1070, 1071, 1072, 1073, 1074, 1075, 1076, 1077, 1078, 1079] +metadata/idx = 42 +metadata/connected_nodes_paths = [NodePath("Bone-43"), NodePath("Bone-33"), NodePath("Bone-35"), NodePath("Bone-39"), NodePath("Bone-40")] +metadata/connected_nodes_idx = [43, 33, 35, 39, 40] metadata/_local_pose_override_enabled_ = true [node name="Bone-43" type="Bone2D" parent="Softbody2d4/Skeleton2D"] -position = Vector2(263.19, 220.494) -rotation = -1.55655 +position = Vector2(263.185, 220.67) +rotation = 3.14159 scale = Vector2(1, 1) -rest = Transform2D(0.0142493, -0.999898, 0.999898, 0.0142493, 263.19, 220.494) +rest = Transform2D(-1, 1.50996e-07, -1.50996e-07, -1, 263.185, 220.67) auto_calculate_length_and_angle = false length = 35.0 bone_angle = 0.0 -metadata/vert_owned = [569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581] -metadata/connected_nodes_paths = [NodePath("Bone-40"), NodePath("Bone-42"), NodePath("Bone-44")] +metadata/vert_owned = [1080, 1081, 1082, 1083, 1084, 1085, 1086, 1087, 1088, 1089, 1090, 1091, 1092, 1093, 1094, 1095, 1096, 1097, 1098, 1099, 1100, 1101, 1102, 1103, 1104, 1105] +metadata/idx = 43 +metadata/connected_nodes_paths = [NodePath("Bone-42"), NodePath("Bone-39"), NodePath("Bone-40"), NodePath("Bone-41"), NodePath("Bone-44")] +metadata/connected_nodes_idx = [42, 39, 40, 41, 44] metadata/_local_pose_override_enabled_ = true [node name="Bone-44" type="Bone2D" parent="Softbody2d4/Skeleton2D"] -position = Vector2(259.684, 259.374) -rotation = -1.48088 -rest = Transform2D(0.0897974, -0.99596, 0.99596, 0.0897974, 259.684, 259.374) +position = Vector2(259.653, 259.585) +rotation = 3.14159 +rest = Transform2D(-1, 1.58151e-06, -1.58151e-06, -1, 259.653, 259.585) auto_calculate_length_and_angle = false length = 35.0 bone_angle = 0.0 -metadata/vert_owned = [582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597] -metadata/connected_nodes_paths = [NodePath("Bone-41"), NodePath("Bone-43")] +metadata/vert_owned = [1106, 1107, 1108, 1109, 1110, 1111, 1112, 1113, 1114, 1115, 1116, 1117, 1118, 1119, 1120, 1121, 1122, 1123, 1124, 1125, 1126, 1127, 1128, 1129, 1130, 1131, 1132, 1133, 1134, 1135, 1136, 1137] +metadata/idx = 44 +metadata/connected_nodes_paths = [NodePath("Bone-40"), NodePath("Bone-41"), NodePath("Bone-43")] +metadata/connected_nodes_idx = [40, 41, 43] metadata/_local_pose_override_enabled_ = true -[node name="Bone-0" parent="Softbody2d4" instance=ExtResource("3_6ern4")] -position = Vector2(42.3916, 41.1817) +[node name="Bone-0" type="RigidBody2D" parent="Softbody2d4" instance=ExtResource("3_6ern4")] +position = Vector2(42.2257, 41.085) +input_pickable = true mass = 0.0222222 physics_material_override = ExtResource("5_221ya") +script = ExtResource("11_tqnjl") +metadata/idx = 0 metadata/bone_name = &"Bone-0" [node name="CircleShape2D" type="CollisionShape2D" parent="Softbody2d4/Bone-0"] -shape = SubResource("CircleShape2D_tur3v") +shape = SubResource("CircleShape2D_fq4ub") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Softbody2d4/Bone-0"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-0") update_rotation = false update_scale = false [node name="Joint2D-Bone-0-Bone-1" type="PinJoint2D" parent="Softbody2d4/Bone-0"] visible = false -rotation = 0.0771081 +rotation = 0.0750314 node_a = NodePath("..") node_b = NodePath("../../Bone-1") bias = 0.2 @@ -23120,113 +27812,172 @@ softness = 100.0 [node name="Joint2D-Bone-0-Bone-4" type="PinJoint2D" parent="Softbody2d4/Bone-0"] visible = false -rotation = -1.57091 +rotation = -1.5708 node_a = NodePath("..") node_b = NodePath("../../Bone-4") bias = 0.2 softness = 100.0 -[node name="Bone-1" parent="Softbody2d4" instance=ExtResource("3_6ern4")] -position = Vector2(39.3387, 80.6962) +[node name="Joint2D-Bone-0-Bone-5" type="PinJoint2D" parent="Softbody2d4/Bone-0"] +visible = false +rotation = -0.800197 +node_a = NodePath("..") +node_b = NodePath("../../Bone-5") +bias = 0.2 +softness = 100.0 + +[node name="Bone-1" type="RigidBody2D" parent="Softbody2d4" instance=ExtResource("3_6ern4")] +position = Vector2(39.25, 80.67) +input_pickable = true mass = 0.0222222 physics_material_override = ExtResource("5_221ya") +script = ExtResource("11_tqnjl") +metadata/idx = 1 metadata/bone_name = &"Bone-1" [node name="CircleShape2D" type="CollisionShape2D" parent="Softbody2d4/Bone-1"] -shape = SubResource("CircleShape2D_tur3v") +shape = SubResource("CircleShape2D_fq4ub") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Softbody2d4/Bone-1"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-1") update_rotation = false update_scale = false [node name="Joint2D-Bone-1-Bone-0" type="PinJoint2D" parent="Softbody2d4/Bone-1"] visible = false -rotation = -3.06448 +rotation = -3.06656 node_a = NodePath("..") node_b = NodePath("../../Bone-0") bias = 0.2 softness = 100.0 -[node name="Joint2D-Bone-1-Bone-2" type="PinJoint2D" parent="Softbody2d4/Bone-1"] +[node name="Joint2D-Bone-1-Bone-4" type="PinJoint2D" parent="Softbody2d4/Bone-1"] visible = false -rotation = -0.000721888 +rotation = -2.30626 node_a = NodePath("..") -node_b = NodePath("../../Bone-2") +node_b = NodePath("../../Bone-4") bias = 0.2 softness = 100.0 [node name="Joint2D-Bone-1-Bone-5" type="PinJoint2D" parent="Softbody2d4/Bone-1"] visible = false -rotation = -1.56742 +rotation = -1.5708 node_a = NodePath("..") node_b = NodePath("../../Bone-5") bias = 0.2 softness = 100.0 -[node name="Bone-2" parent="Softbody2d4" instance=ExtResource("3_6ern4")] -position = Vector2(39.3639, 115.647) +[node name="Joint2D-Bone-1-Bone-2" type="PinJoint2D" parent="Softbody2d4/Bone-1"] +visible = false +node_a = NodePath("..") +node_b = NodePath("../../Bone-2") +bias = 0.2 +softness = 100.0 + +[node name="Joint2D-Bone-1-Bone-6" type="PinJoint2D" parent="Softbody2d4/Bone-1"] +visible = false +rotation = -0.896055 +node_a = NodePath("..") +node_b = NodePath("../../Bone-6") +bias = 0.2 +softness = 100.0 + +[node name="Bone-2" type="RigidBody2D" parent="Softbody2d4" instance=ExtResource("3_6ern4")] +position = Vector2(39.25, 115.67) +input_pickable = true mass = 0.0222222 physics_material_override = ExtResource("5_221ya") +script = ExtResource("11_tqnjl") +metadata/idx = 2 metadata/bone_name = &"Bone-2" [node name="CircleShape2D" type="CollisionShape2D" parent="Softbody2d4/Bone-2"] -shape = SubResource("CircleShape2D_tur3v") +shape = SubResource("CircleShape2D_fq4ub") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Softbody2d4/Bone-2"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-2") update_rotation = false update_scale = false [node name="Joint2D-Bone-2-Bone-1" type="PinJoint2D" parent="Softbody2d4/Bone-2"] visible = false -rotation = -3.14231 +rotation = -3.14159 node_a = NodePath("..") node_b = NodePath("../../Bone-1") bias = 0.2 softness = 100.0 -[node name="Joint2D-Bone-2-Bone-3" type="PinJoint2D" parent="Softbody2d4/Bone-2"] +[node name="Joint2D-Bone-2-Bone-5" type="PinJoint2D" parent="Softbody2d4/Bone-2"] visible = false -rotation = -0.123784 +rotation = -2.24554 node_a = NodePath("..") -node_b = NodePath("../../Bone-3") +node_b = NodePath("../../Bone-5") bias = 0.2 softness = 100.0 [node name="Joint2D-Bone-2-Bone-6" type="PinJoint2D" parent="Softbody2d4/Bone-2"] visible = false -rotation = -1.56798 +rotation = -1.5708 node_a = NodePath("..") node_b = NodePath("../../Bone-6") bias = 0.2 softness = 100.0 -[node name="Bone-3" parent="Softbody2d4" instance=ExtResource("3_6ern4")] -position = Vector2(43.7205, 150.662) +[node name="Joint2D-Bone-2-Bone-3" type="PinJoint2D" parent="Softbody2d4/Bone-2"] +visible = false +rotation = -0.126921 +node_a = NodePath("..") +node_b = NodePath("../../Bone-3") +bias = 0.2 +softness = 100.0 + +[node name="Joint2D-Bone-2-Bone-7" type="PinJoint2D" parent="Softbody2d4/Bone-2"] +visible = false +rotation = -0.896055 +node_a = NodePath("..") +node_b = NodePath("../../Bone-7") +bias = 0.2 +softness = 100.0 + +[node name="Bone-3" type="RigidBody2D" parent="Softbody2d4" instance=ExtResource("3_6ern4")] +position = Vector2(43.7162, 150.67) +input_pickable = true mass = 0.0222222 physics_material_override = ExtResource("5_221ya") +script = ExtResource("11_tqnjl") +metadata/idx = 3 metadata/bone_name = &"Bone-3" [node name="CircleShape2D" type="CollisionShape2D" parent="Softbody2d4/Bone-3"] -shape = SubResource("CircleShape2D_tur3v") +shape = SubResource("CircleShape2D_fq4ub") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Softbody2d4/Bone-3"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-3") update_rotation = false update_scale = false [node name="Joint2D-Bone-3-Bone-2" type="PinJoint2D" parent="Softbody2d4/Bone-3"] visible = false -rotation = -3.26538 +rotation = -3.26851 node_a = NodePath("..") node_b = NodePath("../../Bone-2") bias = 0.2 softness = 100.0 +[node name="Joint2D-Bone-3-Bone-6" type="PinJoint2D" parent="Softbody2d4/Bone-3"] +visible = false +rotation = -2.29859 +node_a = NodePath("..") +node_b = NodePath("../../Bone-6") +bias = 0.2 +softness = 100.0 + [node name="Joint2D-Bone-3-Bone-7" type="PinJoint2D" parent="Softbody2d4/Bone-3"] visible = false -rotation = -1.56936 +rotation = -1.5708 node_a = NodePath("..") node_b = NodePath("../../Bone-7") bias = 0.2 @@ -23234,37 +27985,48 @@ softness = 100.0 [node name="Joint2D-Bone-3-Bone-17" type="PinJoint2D" parent="Softbody2d4/Bone-3"] visible = false -rotation = -0.761872 +rotation = -0.760907 node_a = NodePath("..") node_b = NodePath("../../Bone-17") bias = 0.2 softness = 100.0 -[node name="Bone-4" parent="Softbody2d4" instance=ExtResource("3_6ern4")] -position = Vector2(83.1484, 41.177) +[node name="Bone-4" type="RigidBody2D" parent="Softbody2d4" instance=ExtResource("3_6ern4")] +position = Vector2(83, 41.085) +input_pickable = true mass = 0.0222222 physics_material_override = ExtResource("5_221ya") +script = ExtResource("11_tqnjl") +metadata/idx = 4 metadata/bone_name = &"Bone-4" [node name="CircleShape2D" type="CollisionShape2D" parent="Softbody2d4/Bone-4"] -shape = SubResource("CircleShape2D_tur3v") +shape = SubResource("CircleShape2D_fq4ub") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Softbody2d4/Bone-4"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-4") update_rotation = false update_scale = false [node name="Joint2D-Bone-4-Bone-0" type="PinJoint2D" parent="Softbody2d4/Bone-4"] visible = false -rotation = 1.57068 +rotation = 1.5708 node_a = NodePath("..") node_b = NodePath("../../Bone-0") bias = 0.2 softness = 100.0 +[node name="Joint2D-Bone-4-Bone-1" type="PinJoint2D" parent="Softbody2d4/Bone-4"] +visible = false +rotation = 0.835336 +node_a = NodePath("..") +node_b = NodePath("../../Bone-1") +bias = 0.2 +softness = 100.0 + [node name="Joint2D-Bone-4-Bone-5" type="PinJoint2D" parent="Softbody2d4/Bone-4"] visible = false -rotation = 0.000721021 node_a = NodePath("..") node_b = NodePath("../../Bone-5") bias = 0.2 @@ -23272,29 +28034,49 @@ softness = 100.0 [node name="Joint2D-Bone-4-Bone-8" type="PinJoint2D" parent="Softbody2d4/Bone-4"] visible = false -rotation = -1.57099 +rotation = -1.5708 node_a = NodePath("..") node_b = NodePath("../../Bone-8") bias = 0.2 softness = 100.0 -[node name="Bone-5" parent="Softbody2d4" instance=ExtResource("3_6ern4")] -position = Vector2(83.1198, 80.8442) +[node name="Joint2D-Bone-4-Bone-9" type="PinJoint2D" parent="Softbody2d4/Bone-4"] +visible = false +rotation = -0.724002 +node_a = NodePath("..") +node_b = NodePath("../../Bone-9") +bias = 0.2 +softness = 100.0 + +[node name="Bone-5" type="RigidBody2D" parent="Softbody2d4" instance=ExtResource("3_6ern4")] +position = Vector2(83, 80.67) +input_pickable = true mass = 0.0222222 physics_material_override = ExtResource("5_221ya") +script = ExtResource("11_tqnjl") +metadata/idx = 5 metadata/bone_name = &"Bone-5" [node name="CircleShape2D" type="CollisionShape2D" parent="Softbody2d4/Bone-5"] -shape = SubResource("CircleShape2D_tur3v") +shape = SubResource("CircleShape2D_fq4ub") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Softbody2d4/Bone-5"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-5") update_rotation = false update_scale = false +[node name="Joint2D-Bone-5-Bone-0" type="PinJoint2D" parent="Softbody2d4/Bone-5"] +visible = false +rotation = -3.94179 +node_a = NodePath("..") +node_b = NodePath("../../Bone-0") +bias = 0.2 +softness = 100.0 + [node name="Joint2D-Bone-5-Bone-1" type="PinJoint2D" parent="Softbody2d4/Bone-5"] visible = false -rotation = -4.70901 +rotation = 1.5708 node_a = NodePath("..") node_b = NodePath("../../Bone-1") bias = 0.2 @@ -23302,23 +28084,38 @@ softness = 100.0 [node name="Joint2D-Bone-5-Bone-4" type="PinJoint2D" parent="Softbody2d4/Bone-5"] visible = false -rotation = -3.14087 +rotation = -3.14159 node_a = NodePath("..") node_b = NodePath("../../Bone-4") bias = 0.2 softness = 100.0 +[node name="Joint2D-Bone-5-Bone-2" type="PinJoint2D" parent="Softbody2d4/Bone-5"] +visible = false +rotation = 0.896055 +node_a = NodePath("..") +node_b = NodePath("../../Bone-2") +bias = 0.2 +softness = 100.0 + [node name="Joint2D-Bone-5-Bone-6" type="PinJoint2D" parent="Softbody2d4/Bone-5"] visible = false -rotation = 0.00157218 node_a = NodePath("..") node_b = NodePath("../../Bone-6") bias = 0.2 softness = 100.0 +[node name="Joint2D-Bone-5-Bone-8" type="PinJoint2D" parent="Softbody2d4/Bone-5"] +visible = false +rotation = -2.41759 +node_a = NodePath("..") +node_b = NodePath("../../Bone-8") +bias = 0.2 +softness = 100.0 + [node name="Joint2D-Bone-5-Bone-9" type="PinJoint2D" parent="Softbody2d4/Bone-5"] visible = false -rotation = -1.57199 +rotation = -1.5708 node_a = NodePath("..") node_b = NodePath("../../Bone-9") bias = 0.2 @@ -23326,29 +28123,41 @@ softness = 100.0 [node name="Joint2D-Bone-5-Bone-10" type="PinJoint2D" parent="Softbody2d4/Bone-5"] visible = false -rotation = -0.788225 +rotation = -0.785398 node_a = NodePath("..") node_b = NodePath("../../Bone-10") bias = 0.2 softness = 100.0 -[node name="Bone-6" parent="Softbody2d4" instance=ExtResource("3_6ern4")] -position = Vector2(83.0649, 115.77) +[node name="Bone-6" type="RigidBody2D" parent="Softbody2d4" instance=ExtResource("3_6ern4")] +position = Vector2(83, 115.67) +input_pickable = true mass = 0.0222222 physics_material_override = ExtResource("5_221ya") +script = ExtResource("11_tqnjl") +metadata/idx = 6 metadata/bone_name = &"Bone-6" [node name="CircleShape2D" type="CollisionShape2D" parent="Softbody2d4/Bone-6"] -shape = SubResource("CircleShape2D_tur3v") +shape = SubResource("CircleShape2D_fq4ub") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Softbody2d4/Bone-6"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-6") update_rotation = false update_scale = false +[node name="Joint2D-Bone-6-Bone-1" type="PinJoint2D" parent="Softbody2d4/Bone-6"] +visible = false +rotation = -4.03765 +node_a = NodePath("..") +node_b = NodePath("../../Bone-1") +bias = 0.2 +softness = 100.0 + [node name="Joint2D-Bone-6-Bone-2" type="PinJoint2D" parent="Softbody2d4/Bone-6"] visible = false -rotation = -4.70958 +rotation = 1.5708 node_a = NodePath("..") node_b = NodePath("../../Bone-2") bias = 0.2 @@ -23356,15 +28165,22 @@ softness = 100.0 [node name="Joint2D-Bone-6-Bone-5" type="PinJoint2D" parent="Softbody2d4/Bone-6"] visible = false -rotation = -3.14002 +rotation = -3.14159 node_a = NodePath("..") node_b = NodePath("../../Bone-5") bias = 0.2 softness = 100.0 +[node name="Joint2D-Bone-6-Bone-3" type="PinJoint2D" parent="Softbody2d4/Bone-6"] +visible = false +rotation = 0.843002 +node_a = NodePath("..") +node_b = NodePath("../../Bone-3") +bias = 0.2 +softness = 100.0 + [node name="Joint2D-Bone-6-Bone-7" type="PinJoint2D" parent="Softbody2d4/Bone-6"] visible = false -rotation = 0.00361638 node_a = NodePath("..") node_b = NodePath("../../Bone-7") bias = 0.2 @@ -23372,7 +28188,7 @@ softness = 100.0 [node name="Joint2D-Bone-6-Bone-9" type="PinJoint2D" parent="Softbody2d4/Bone-6"] visible = false -rotation = -2.35624 +rotation = -2.35619 node_a = NodePath("..") node_b = NodePath("../../Bone-9") bias = 0.2 @@ -23380,7 +28196,7 @@ softness = 100.0 [node name="Joint2D-Bone-6-Bone-10" type="PinJoint2D" parent="Softbody2d4/Bone-6"] visible = false -rotation = -1.57241 +rotation = -1.5708 node_a = NodePath("..") node_b = NodePath("../../Bone-10") bias = 0.2 @@ -23388,29 +28204,41 @@ softness = 100.0 [node name="Joint2D-Bone-6-Bone-11" type="PinJoint2D" parent="Softbody2d4/Bone-6"] visible = false -rotation = -0.78642 +rotation = -0.785398 node_a = NodePath("..") node_b = NodePath("../../Bone-11") bias = 0.2 softness = 100.0 -[node name="Bone-7" parent="Softbody2d4" instance=ExtResource("3_6ern4")] -position = Vector2(82.9385, 150.718) +[node name="Bone-7" type="RigidBody2D" parent="Softbody2d4" instance=ExtResource("3_6ern4")] +position = Vector2(83, 150.67) +input_pickable = true mass = 0.0222222 physics_material_override = ExtResource("5_221ya") +script = ExtResource("11_tqnjl") +metadata/idx = 7 metadata/bone_name = &"Bone-7" [node name="CircleShape2D" type="CollisionShape2D" parent="Softbody2d4/Bone-7"] -shape = SubResource("CircleShape2D_tur3v") +shape = SubResource("CircleShape2D_fq4ub") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Softbody2d4/Bone-7"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-7") update_rotation = false update_scale = false +[node name="Joint2D-Bone-7-Bone-2" type="PinJoint2D" parent="Softbody2d4/Bone-7"] +visible = false +rotation = -4.03765 +node_a = NodePath("..") +node_b = NodePath("../../Bone-2") +bias = 0.2 +softness = 100.0 + [node name="Joint2D-Bone-7-Bone-3" type="PinJoint2D" parent="Softbody2d4/Bone-7"] visible = false -rotation = -4.71095 +rotation = 1.5708 node_a = NodePath("..") node_b = NodePath("../../Bone-3") bias = 0.2 @@ -23418,53 +28246,80 @@ softness = 100.0 [node name="Joint2D-Bone-7-Bone-6" type="PinJoint2D" parent="Softbody2d4/Bone-7"] visible = false -rotation = -3.13798 +rotation = -3.14159 node_a = NodePath("..") node_b = NodePath("../../Bone-6") bias = 0.2 softness = 100.0 +[node name="Joint2D-Bone-7-Bone-17" type="PinJoint2D" parent="Softbody2d4/Bone-7"] +visible = false +rotation = 0.168599 +node_a = NodePath("..") +node_b = NodePath("../../Bone-17") +bias = 0.2 +softness = 100.0 + +[node name="Joint2D-Bone-7-Bone-10" type="PinJoint2D" parent="Softbody2d4/Bone-7"] +visible = false +rotation = -2.35619 +node_a = NodePath("..") +node_b = NodePath("../../Bone-10") +bias = 0.2 +softness = 100.0 + [node name="Joint2D-Bone-7-Bone-11" type="PinJoint2D" parent="Softbody2d4/Bone-7"] visible = false -rotation = -1.57282 +rotation = -1.5708 node_a = NodePath("..") node_b = NodePath("../../Bone-11") bias = 0.2 softness = 100.0 -[node name="Joint2D-Bone-7-Bone-17" type="PinJoint2D" parent="Softbody2d4/Bone-7"] +[node name="Joint2D-Bone-7-Bone-20" type="PinJoint2D" parent="Softbody2d4/Bone-7"] visible = false -rotation = 0.164288 +rotation = -0.785398 node_a = NodePath("..") -node_b = NodePath("../../Bone-17") +node_b = NodePath("../../Bone-20") bias = 0.2 softness = 100.0 -[node name="Bone-8" parent="Softbody2d4" instance=ExtResource("3_6ern4")] -position = Vector2(118.123, 41.1701) +[node name="Bone-8" type="RigidBody2D" parent="Softbody2d4" instance=ExtResource("3_6ern4")] +position = Vector2(118, 41.085) +input_pickable = true mass = 0.0222222 physics_material_override = ExtResource("5_221ya") +script = ExtResource("11_tqnjl") +metadata/idx = 8 metadata/bone_name = &"Bone-8" [node name="CircleShape2D" type="CollisionShape2D" parent="Softbody2d4/Bone-8"] -shape = SubResource("CircleShape2D_tur3v") +shape = SubResource("CircleShape2D_fq4ub") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Softbody2d4/Bone-8"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-8") update_rotation = false update_scale = false [node name="Joint2D-Bone-8-Bone-4" type="PinJoint2D" parent="Softbody2d4/Bone-8"] visible = false -rotation = 1.5706 +rotation = 1.5708 node_a = NodePath("..") node_b = NodePath("../../Bone-4") bias = 0.2 softness = 100.0 +[node name="Joint2D-Bone-8-Bone-5" type="PinJoint2D" parent="Softbody2d4/Bone-8"] +visible = false +rotation = 0.724002 +node_a = NodePath("..") +node_b = NodePath("../../Bone-5") +bias = 0.2 +softness = 100.0 + [node name="Joint2D-Bone-8-Bone-9" type="PinJoint2D" parent="Softbody2d4/Bone-8"] visible = false -rotation = 0.00236516 node_a = NodePath("..") node_b = NodePath("../../Bone-9") bias = 0.2 @@ -23472,83 +28327,122 @@ softness = 100.0 [node name="Joint2D-Bone-8-Bone-12" type="PinJoint2D" parent="Softbody2d4/Bone-8"] visible = false -rotation = -1.56807 +rotation = -1.5708 node_a = NodePath("..") node_b = NodePath("../../Bone-12") bias = 0.2 softness = 100.0 -[node name="Bone-9" parent="Softbody2d4" instance=ExtResource("3_6ern4")] -position = Vector2(118.029, 80.8025) +[node name="Joint2D-Bone-8-Bone-13" type="PinJoint2D" parent="Softbody2d4/Bone-8"] +visible = false +rotation = -0.724002 +node_a = NodePath("..") +node_b = NodePath("../../Bone-13") +bias = 0.2 +softness = 100.0 + +[node name="Bone-9" type="RigidBody2D" parent="Softbody2d4" instance=ExtResource("3_6ern4")] +position = Vector2(118, 80.67) +input_pickable = true mass = 0.0222222 physics_material_override = ExtResource("5_221ya") +script = ExtResource("11_tqnjl") +metadata/idx = 9 metadata/bone_name = &"Bone-9" [node name="CircleShape2D" type="CollisionShape2D" parent="Softbody2d4/Bone-9"] -shape = SubResource("CircleShape2D_tur3v") +shape = SubResource("CircleShape2D_fq4ub") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Softbody2d4/Bone-9"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-9") update_rotation = false update_scale = false -[node name="Joint2D-Bone-9-Bone-5" type="PinJoint2D" parent="Softbody2d4/Bone-9"] +[node name="Joint2D-Bone-9-Bone-4" type="PinJoint2D" parent="Softbody2d4/Bone-9"] visible = false -rotation = 1.5696 +rotation = -3.86559 node_a = NodePath("..") -node_b = NodePath("../../Bone-5") +node_b = NodePath("../../Bone-4") bias = 0.2 softness = 100.0 -[node name="Joint2D-Bone-9-Bone-6" type="PinJoint2D" parent="Softbody2d4/Bone-9"] +[node name="Joint2D-Bone-9-Bone-5" type="PinJoint2D" parent="Softbody2d4/Bone-9"] visible = false -rotation = 0.785349 +rotation = 1.5708 node_a = NodePath("..") -node_b = NodePath("../../Bone-6") +node_b = NodePath("../../Bone-5") bias = 0.2 softness = 100.0 [node name="Joint2D-Bone-9-Bone-8" type="PinJoint2D" parent="Softbody2d4/Bone-9"] visible = false -rotation = -3.13923 +rotation = -3.14159 node_a = NodePath("..") node_b = NodePath("../../Bone-8") bias = 0.2 softness = 100.0 +[node name="Joint2D-Bone-9-Bone-6" type="PinJoint2D" parent="Softbody2d4/Bone-9"] +visible = false +rotation = 0.785398 +node_a = NodePath("..") +node_b = NodePath("../../Bone-6") +bias = 0.2 +softness = 100.0 + [node name="Joint2D-Bone-9-Bone-10" type="PinJoint2D" parent="Softbody2d4/Bone-9"] visible = false -rotation = -0.00452049 node_a = NodePath("..") node_b = NodePath("../../Bone-10") bias = 0.2 softness = 100.0 +[node name="Joint2D-Bone-9-Bone-12" type="PinJoint2D" parent="Softbody2d4/Bone-9"] +visible = false +rotation = -2.41759 +node_a = NodePath("..") +node_b = NodePath("../../Bone-12") +bias = 0.2 +softness = 100.0 + [node name="Joint2D-Bone-9-Bone-13" type="PinJoint2D" parent="Softbody2d4/Bone-9"] visible = false -rotation = -1.571 +rotation = -1.5708 node_a = NodePath("..") node_b = NodePath("../../Bone-13") bias = 0.2 softness = 100.0 -[node name="Bone-10" parent="Softbody2d4" instance=ExtResource("3_6ern4")] -position = Vector2(118.187, 115.713) +[node name="Joint2D-Bone-9-Bone-14" type="PinJoint2D" parent="Softbody2d4/Bone-9"] +visible = false +rotation = -0.785398 +node_a = NodePath("..") +node_b = NodePath("../../Bone-14") +bias = 0.2 +softness = 100.0 + +[node name="Bone-10" type="RigidBody2D" parent="Softbody2d4" instance=ExtResource("3_6ern4")] +position = Vector2(118, 115.67) +input_pickable = true mass = 0.0222222 physics_material_override = ExtResource("5_221ya") +script = ExtResource("11_tqnjl") +metadata/idx = 10 metadata/bone_name = &"Bone-10" [node name="CircleShape2D" type="CollisionShape2D" parent="Softbody2d4/Bone-10"] -shape = SubResource("CircleShape2D_tur3v") +shape = SubResource("CircleShape2D_fq4ub") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Softbody2d4/Bone-10"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-10") update_rotation = false update_scale = false [node name="Joint2D-Bone-10-Bone-5" type="PinJoint2D" parent="Softbody2d4/Bone-10"] visible = false -rotation = -3.92982 +rotation = -3.92699 node_a = NodePath("..") node_b = NodePath("../../Bone-5") bias = 0.2 @@ -23556,7 +28450,7 @@ softness = 100.0 [node name="Joint2D-Bone-10-Bone-6" type="PinJoint2D" parent="Softbody2d4/Bone-10"] visible = false -rotation = 1.56919 +rotation = 1.5708 node_a = NodePath("..") node_b = NodePath("../../Bone-6") bias = 0.2 @@ -23564,15 +28458,22 @@ softness = 100.0 [node name="Joint2D-Bone-10-Bone-9" type="PinJoint2D" parent="Softbody2d4/Bone-10"] visible = false -rotation = -3.14611 +rotation = -3.14159 node_a = NodePath("..") node_b = NodePath("../../Bone-9") bias = 0.2 softness = 100.0 +[node name="Joint2D-Bone-10-Bone-7" type="PinJoint2D" parent="Softbody2d4/Bone-10"] +visible = false +rotation = 0.785398 +node_a = NodePath("..") +node_b = NodePath("../../Bone-7") +bias = 0.2 +softness = 100.0 + [node name="Joint2D-Bone-10-Bone-11" type="PinJoint2D" parent="Softbody2d4/Bone-10"] visible = false -rotation = 0.00495379 node_a = NodePath("..") node_b = NodePath("../../Bone-11") bias = 0.2 @@ -23580,7 +28481,7 @@ softness = 100.0 [node name="Joint2D-Bone-10-Bone-13" type="PinJoint2D" parent="Softbody2d4/Bone-10"] visible = false -rotation = -2.35787 +rotation = -2.35619 node_a = NodePath("..") node_b = NodePath("../../Bone-13") bias = 0.2 @@ -23588,29 +28489,41 @@ softness = 100.0 [node name="Joint2D-Bone-10-Bone-14" type="PinJoint2D" parent="Softbody2d4/Bone-10"] visible = false -rotation = -1.56716 +rotation = -1.5708 node_a = NodePath("..") node_b = NodePath("../../Bone-14") bias = 0.2 softness = 100.0 -[node name="Bone-11" parent="Softbody2d4" instance=ExtResource("3_6ern4")] -position = Vector2(118.014, 150.647) +[node name="Joint2D-Bone-10-Bone-15" type="PinJoint2D" parent="Softbody2d4/Bone-10"] +visible = false +rotation = -0.785398 +node_a = NodePath("..") +node_b = NodePath("../../Bone-15") +bias = 0.2 +softness = 100.0 + +[node name="Bone-11" type="RigidBody2D" parent="Softbody2d4" instance=ExtResource("3_6ern4")] +position = Vector2(118, 150.67) +input_pickable = true mass = 0.0222222 physics_material_override = ExtResource("5_221ya") +script = ExtResource("11_tqnjl") +metadata/idx = 11 metadata/bone_name = &"Bone-11" [node name="CircleShape2D" type="CollisionShape2D" parent="Softbody2d4/Bone-11"] -shape = SubResource("CircleShape2D_tur3v") +shape = SubResource("CircleShape2D_fq4ub") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Softbody2d4/Bone-11"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-11") update_rotation = false update_scale = false [node name="Joint2D-Bone-11-Bone-6" type="PinJoint2D" parent="Softbody2d4/Bone-11"] visible = false -rotation = -3.92801 +rotation = -3.92699 node_a = NodePath("..") node_b = NodePath("../../Bone-6") bias = 0.2 @@ -23618,7 +28531,7 @@ softness = 100.0 [node name="Joint2D-Bone-11-Bone-7" type="PinJoint2D" parent="Softbody2d4/Bone-11"] visible = false -rotation = 1.56877 +rotation = 1.5708 node_a = NodePath("..") node_b = NodePath("../../Bone-7") bias = 0.2 @@ -23626,15 +28539,30 @@ softness = 100.0 [node name="Joint2D-Bone-11-Bone-10" type="PinJoint2D" parent="Softbody2d4/Bone-11"] visible = false -rotation = -3.13664 +rotation = -3.14159 node_a = NodePath("..") node_b = NodePath("../../Bone-10") bias = 0.2 softness = 100.0 +[node name="Joint2D-Bone-11-Bone-17" type="PinJoint2D" parent="Softbody2d4/Bone-11"] +visible = false +rotation = 0.86367 +node_a = NodePath("..") +node_b = NodePath("../../Bone-17") +bias = 0.2 +softness = 100.0 + +[node name="Joint2D-Bone-11-Bone-20" type="PinJoint2D" parent="Softbody2d4/Bone-11"] +visible = false +node_a = NodePath("..") +node_b = NodePath("../../Bone-20") +bias = 0.2 +softness = 100.0 + [node name="Joint2D-Bone-11-Bone-14" type="PinJoint2D" parent="Softbody2d4/Bone-11"] visible = false -rotation = -2.35123 +rotation = -2.35619 node_a = NodePath("..") node_b = NodePath("../../Bone-14") bias = 0.2 @@ -23642,45 +28570,56 @@ softness = 100.0 [node name="Joint2D-Bone-11-Bone-15" type="PinJoint2D" parent="Softbody2d4/Bone-11"] visible = false -rotation = -1.56317 +rotation = -1.5708 node_a = NodePath("..") node_b = NodePath("../../Bone-15") bias = 0.2 softness = 100.0 -[node name="Joint2D-Bone-11-Bone-20" type="PinJoint2D" parent="Softbody2d4/Bone-11"] +[node name="Joint2D-Bone-11-Bone-23" type="PinJoint2D" parent="Softbody2d4/Bone-11"] visible = false -rotation = 0.00251751 +rotation = -0.785398 node_a = NodePath("..") -node_b = NodePath("../../Bone-20") +node_b = NodePath("../../Bone-23") bias = 0.2 softness = 100.0 -[node name="Bone-12" parent="Softbody2d4" instance=ExtResource("3_6ern4")] -position = Vector2(153.068, 41.2654) +[node name="Bone-12" type="RigidBody2D" parent="Softbody2d4" instance=ExtResource("3_6ern4")] +position = Vector2(153, 41.085) +input_pickable = true mass = 0.0222222 physics_material_override = ExtResource("5_221ya") +script = ExtResource("11_tqnjl") +metadata/idx = 12 metadata/bone_name = &"Bone-12" [node name="CircleShape2D" type="CollisionShape2D" parent="Softbody2d4/Bone-12"] -shape = SubResource("CircleShape2D_tur3v") +shape = SubResource("CircleShape2D_fq4ub") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Softbody2d4/Bone-12"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-12") update_rotation = false update_scale = false [node name="Joint2D-Bone-12-Bone-8" type="PinJoint2D" parent="Softbody2d4/Bone-12"] visible = false -rotation = -4.70966 +rotation = 1.5708 node_a = NodePath("..") node_b = NodePath("../../Bone-8") bias = 0.2 softness = 100.0 +[node name="Joint2D-Bone-12-Bone-9" type="PinJoint2D" parent="Softbody2d4/Bone-12"] +visible = false +rotation = 0.724002 +node_a = NodePath("..") +node_b = NodePath("../../Bone-9") +bias = 0.2 +softness = 100.0 + [node name="Joint2D-Bone-12-Bone-13" type="PinJoint2D" parent="Softbody2d4/Bone-12"] visible = false -rotation = 0.00203507 node_a = NodePath("..") node_b = NodePath("../../Bone-13") bias = 0.2 @@ -23688,61 +28627,88 @@ softness = 100.0 [node name="Joint2D-Bone-12-Bone-26" type="PinJoint2D" parent="Softbody2d4/Bone-12"] visible = false -rotation = -1.5773 +rotation = -1.5708 node_a = NodePath("..") node_b = NodePath("../../Bone-26") bias = 0.2 softness = 100.0 -[node name="Bone-13" parent="Softbody2d4" instance=ExtResource("3_6ern4")] -position = Vector2(152.988, 80.7953) +[node name="Joint2D-Bone-12-Bone-27" type="PinJoint2D" parent="Softbody2d4/Bone-12"] +visible = false +rotation = -0.724002 +node_a = NodePath("..") +node_b = NodePath("../../Bone-27") +bias = 0.2 +softness = 100.0 + +[node name="Bone-13" type="RigidBody2D" parent="Softbody2d4" instance=ExtResource("3_6ern4")] +position = Vector2(153, 80.67) +input_pickable = true mass = 0.0222222 physics_material_override = ExtResource("5_221ya") +script = ExtResource("11_tqnjl") +metadata/idx = 13 metadata/bone_name = &"Bone-13" [node name="CircleShape2D" type="CollisionShape2D" parent="Softbody2d4/Bone-13"] -shape = SubResource("CircleShape2D_tur3v") +shape = SubResource("CircleShape2D_fq4ub") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Softbody2d4/Bone-13"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-13") update_rotation = false update_scale = false -[node name="Joint2D-Bone-13-Bone-9" type="PinJoint2D" parent="Softbody2d4/Bone-13"] +[node name="Joint2D-Bone-13-Bone-8" type="PinJoint2D" parent="Softbody2d4/Bone-13"] visible = false -rotation = 1.57059 +rotation = -3.86559 node_a = NodePath("..") -node_b = NodePath("../../Bone-9") +node_b = NodePath("../../Bone-8") bias = 0.2 softness = 100.0 -[node name="Joint2D-Bone-13-Bone-10" type="PinJoint2D" parent="Softbody2d4/Bone-13"] +[node name="Joint2D-Bone-13-Bone-9" type="PinJoint2D" parent="Softbody2d4/Bone-13"] visible = false -rotation = 0.783718 +rotation = 1.5708 node_a = NodePath("..") -node_b = NodePath("../../Bone-10") +node_b = NodePath("../../Bone-9") bias = 0.2 softness = 100.0 [node name="Joint2D-Bone-13-Bone-12" type="PinJoint2D" parent="Softbody2d4/Bone-13"] visible = false -rotation = -3.13956 +rotation = -3.14159 node_a = NodePath("..") node_b = NodePath("../../Bone-12") bias = 0.2 softness = 100.0 +[node name="Joint2D-Bone-13-Bone-10" type="PinJoint2D" parent="Softbody2d4/Bone-13"] +visible = false +rotation = 0.785398 +node_a = NodePath("..") +node_b = NodePath("../../Bone-10") +bias = 0.2 +softness = 100.0 + [node name="Joint2D-Bone-13-Bone-14" type="PinJoint2D" parent="Softbody2d4/Bone-13"] visible = false -rotation = -0.00513943 node_a = NodePath("..") node_b = NodePath("../../Bone-14") bias = 0.2 softness = 100.0 +[node name="Joint2D-Bone-13-Bone-26" type="PinJoint2D" parent="Softbody2d4/Bone-13"] +visible = false +rotation = -2.41759 +node_a = NodePath("..") +node_b = NodePath("../../Bone-26") +bias = 0.2 +softness = 100.0 + [node name="Joint2D-Bone-13-Bone-27" type="PinJoint2D" parent="Softbody2d4/Bone-13"] visible = false -rotation = -1.57986 +rotation = -1.5708 node_a = NodePath("..") node_b = NodePath("../../Bone-27") bias = 0.2 @@ -23750,61 +28716,80 @@ softness = 100.0 [node name="Joint2D-Bone-13-Bone-28" type="PinJoint2D" parent="Softbody2d4/Bone-13"] visible = false -rotation = -0.789142 +rotation = -0.785398 node_a = NodePath("..") node_b = NodePath("../../Bone-28") bias = 0.2 softness = 100.0 -[node name="Bone-14" parent="Softbody2d4" instance=ExtResource("3_6ern4")] -position = Vector2(153.168, 115.841) +[node name="Bone-14" type="RigidBody2D" parent="Softbody2d4" instance=ExtResource("3_6ern4")] +position = Vector2(153, 115.67) +input_pickable = true mass = 0.0222222 physics_material_override = ExtResource("5_221ya") +script = ExtResource("11_tqnjl") +metadata/idx = 14 metadata/bone_name = &"Bone-14" [node name="CircleShape2D" type="CollisionShape2D" parent="Softbody2d4/Bone-14"] -shape = SubResource("CircleShape2D_tur3v") +shape = SubResource("CircleShape2D_fq4ub") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Softbody2d4/Bone-14"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-14") update_rotation = false update_scale = false -[node name="Joint2D-Bone-14-Bone-10" type="PinJoint2D" parent="Softbody2d4/Bone-14"] +[node name="Joint2D-Bone-14-Bone-9" type="PinJoint2D" parent="Softbody2d4/Bone-14"] visible = false -rotation = -4.70875 +rotation = -3.92699 node_a = NodePath("..") -node_b = NodePath("../../Bone-10") +node_b = NodePath("../../Bone-9") bias = 0.2 softness = 100.0 -[node name="Joint2D-Bone-14-Bone-11" type="PinJoint2D" parent="Softbody2d4/Bone-14"] +[node name="Joint2D-Bone-14-Bone-10" type="PinJoint2D" parent="Softbody2d4/Bone-14"] visible = false -rotation = 0.790367 +rotation = 1.5708 node_a = NodePath("..") -node_b = NodePath("../../Bone-11") +node_b = NodePath("../../Bone-10") bias = 0.2 softness = 100.0 [node name="Joint2D-Bone-14-Bone-13" type="PinJoint2D" parent="Softbody2d4/Bone-14"] visible = false -rotation = -3.14673 +rotation = -3.14159 node_a = NodePath("..") node_b = NodePath("../../Bone-13") bias = 0.2 softness = 100.0 +[node name="Joint2D-Bone-14-Bone-11" type="PinJoint2D" parent="Softbody2d4/Bone-14"] +visible = false +rotation = 0.785398 +node_a = NodePath("..") +node_b = NodePath("../../Bone-11") +bias = 0.2 +softness = 100.0 + [node name="Joint2D-Bone-14-Bone-15" type="PinJoint2D" parent="Softbody2d4/Bone-14"] visible = false -rotation = 0.00317721 node_a = NodePath("..") node_b = NodePath("../../Bone-15") bias = 0.2 softness = 100.0 +[node name="Joint2D-Bone-14-Bone-27" type="PinJoint2D" parent="Softbody2d4/Bone-14"] +visible = false +rotation = -2.35619 +node_a = NodePath("..") +node_b = NodePath("../../Bone-27") +bias = 0.2 +softness = 100.0 + [node name="Joint2D-Bone-14-Bone-28" type="PinJoint2D" parent="Softbody2d4/Bone-14"] visible = false -rotation = -1.5799 +rotation = -1.5708 node_a = NodePath("..") node_b = NodePath("../../Bone-28") bias = 0.2 @@ -23812,29 +28797,41 @@ softness = 100.0 [node name="Joint2D-Bone-14-Bone-29" type="PinJoint2D" parent="Softbody2d4/Bone-14"] visible = false -rotation = -0.786511 +rotation = -0.785398 node_a = NodePath("..") node_b = NodePath("../../Bone-29") bias = 0.2 softness = 100.0 -[node name="Bone-15" parent="Softbody2d4" instance=ExtResource("3_6ern4")] -position = Vector2(153.057, 150.915) +[node name="Bone-15" type="RigidBody2D" parent="Softbody2d4" instance=ExtResource("3_6ern4")] +position = Vector2(153, 150.67) +input_pickable = true mass = 0.0222222 physics_material_override = ExtResource("5_221ya") +script = ExtResource("11_tqnjl") +metadata/idx = 15 metadata/bone_name = &"Bone-15" [node name="CircleShape2D" type="CollisionShape2D" parent="Softbody2d4/Bone-15"] -shape = SubResource("CircleShape2D_tur3v") +shape = SubResource("CircleShape2D_fq4ub") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Softbody2d4/Bone-15"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-15") update_rotation = false update_scale = false +[node name="Joint2D-Bone-15-Bone-10" type="PinJoint2D" parent="Softbody2d4/Bone-15"] +visible = false +rotation = -3.92699 +node_a = NodePath("..") +node_b = NodePath("../../Bone-10") +bias = 0.2 +softness = 100.0 + [node name="Joint2D-Bone-15-Bone-11" type="PinJoint2D" parent="Softbody2d4/Bone-15"] visible = false -rotation = -4.70477 +rotation = 1.5708 node_a = NodePath("..") node_b = NodePath("../../Bone-11") bias = 0.2 @@ -23842,7 +28839,7 @@ softness = 100.0 [node name="Joint2D-Bone-15-Bone-14" type="PinJoint2D" parent="Softbody2d4/Bone-15"] visible = false -rotation = -3.13842 +rotation = -3.14159 node_a = NodePath("..") node_b = NodePath("../../Bone-14") bias = 0.2 @@ -23850,7 +28847,7 @@ softness = 100.0 [node name="Joint2D-Bone-15-Bone-20" type="PinJoint2D" parent="Softbody2d4/Bone-15"] visible = false -rotation = 0.789415 +rotation = 0.785398 node_a = NodePath("..") node_b = NodePath("../../Bone-20") bias = 0.2 @@ -23858,15 +28855,22 @@ softness = 100.0 [node name="Joint2D-Bone-15-Bone-23" type="PinJoint2D" parent="Softbody2d4/Bone-15"] visible = false -rotation = 0.00266842 node_a = NodePath("..") node_b = NodePath("../../Bone-23") bias = 0.2 softness = 100.0 +[node name="Joint2D-Bone-15-Bone-28" type="PinJoint2D" parent="Softbody2d4/Bone-15"] +visible = false +rotation = -2.35619 +node_a = NodePath("..") +node_b = NodePath("../../Bone-28") +bias = 0.2 +softness = 100.0 + [node name="Joint2D-Bone-15-Bone-29" type="PinJoint2D" parent="Softbody2d4/Bone-15"] visible = false -rotation = -1.58077 +rotation = -1.5708 node_a = NodePath("..") node_b = NodePath("../../Bone-29") bias = 0.2 @@ -23874,29 +28878,33 @@ softness = 100.0 [node name="Joint2D-Bone-15-Bone-36" type="PinJoint2D" parent="Softbody2d4/Bone-15"] visible = false -rotation = -0.78523 +rotation = -0.785398 node_a = NodePath("..") node_b = NodePath("../../Bone-36") bias = 0.2 softness = 100.0 -[node name="Bone-16" parent="Softbody2d4" instance=ExtResource("3_6ern4")] -position = Vector2(42.7859, 259.571) +[node name="Bone-16" type="RigidBody2D" parent="Softbody2d4" instance=ExtResource("3_6ern4")] +position = Vector2(42.75, 259.585) +input_pickable = true mass = 0.0222222 physics_material_override = ExtResource("5_221ya") +script = ExtResource("11_tqnjl") +metadata/idx = 16 metadata/bone_name = &"Bone-16" [node name="CircleShape2D" type="CollisionShape2D" parent="Softbody2d4/Bone-16"] -shape = SubResource("CircleShape2D_tur3v") +shape = SubResource("CircleShape2D_fq4ub") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Softbody2d4/Bone-16"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-16") update_rotation = false update_scale = false [node name="Joint2D-Bone-16-Bone-18" type="PinJoint2D" parent="Softbody2d4/Bone-16"] visible = false -rotation = -2.48096 +rotation = -2.47683 node_a = NodePath("..") node_b = NodePath("../../Bone-18") bias = 0.2 @@ -23904,29 +28912,33 @@ softness = 100.0 [node name="Joint2D-Bone-16-Bone-19" type="PinJoint2D" parent="Softbody2d4/Bone-16"] visible = false -rotation = -1.5713 +rotation = -1.5708 node_a = NodePath("..") node_b = NodePath("../../Bone-19") bias = 0.2 softness = 100.0 -[node name="Bone-17" parent="Softbody2d4" instance=ExtResource("3_6ern4")] -position = Vector2(77.1404, 185.693) +[node name="Bone-17" type="RigidBody2D" parent="Softbody2d4" instance=ExtResource("3_6ern4")] +position = Vector2(77.0425, 185.67) +input_pickable = true mass = 0.0222222 physics_material_override = ExtResource("5_221ya") +script = ExtResource("11_tqnjl") +metadata/idx = 17 metadata/bone_name = &"Bone-17" [node name="CircleShape2D" type="CollisionShape2D" parent="Softbody2d4/Bone-17"] -shape = SubResource("CircleShape2D_tur3v") +shape = SubResource("CircleShape2D_fq4ub") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Softbody2d4/Bone-17"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-17") update_rotation = false update_scale = false [node name="Joint2D-Bone-17-Bone-3" type="PinJoint2D" parent="Softbody2d4/Bone-17"] visible = false -rotation = -3.90346 +rotation = -3.9025 node_a = NodePath("..") node_b = NodePath("../../Bone-3") bias = 0.2 @@ -23934,91 +28946,131 @@ softness = 100.0 [node name="Joint2D-Bone-17-Bone-7" type="PinJoint2D" parent="Softbody2d4/Bone-17"] visible = false -rotation = -2.9773 +rotation = -2.97299 node_a = NodePath("..") node_b = NodePath("../../Bone-7") bias = 0.2 softness = 100.0 -[node name="Joint2D-Bone-17-Bone-18" type="PinJoint2D" parent="Softbody2d4/Bone-17"] +[node name="Joint2D-Bone-17-Bone-11" type="PinJoint2D" parent="Softbody2d4/Bone-17"] visible = false -rotation = 0.115187 +rotation = -2.27792 node_a = NodePath("..") -node_b = NodePath("../../Bone-18") +node_b = NodePath("../../Bone-11") bias = 0.2 softness = 100.0 [node name="Joint2D-Bone-17-Bone-20" type="PinJoint2D" parent="Softbody2d4/Bone-17"] visible = false -rotation = -1.56903 +rotation = -1.5708 node_a = NodePath("..") node_b = NodePath("../../Bone-20") bias = 0.2 softness = 100.0 -[node name="Bone-18" parent="Softbody2d4" instance=ExtResource("3_6ern4")] -position = Vector2(73.1069, 220.554) +[node name="Joint2D-Bone-17-Bone-18" type="PinJoint2D" parent="Softbody2d4/Bone-17"] +visible = false +rotation = 0.107936 +node_a = NodePath("..") +node_b = NodePath("../../Bone-18") +bias = 0.2 +softness = 100.0 + +[node name="Joint2D-Bone-17-Bone-21" type="PinJoint2D" parent="Softbody2d4/Bone-17"] +visible = false +rotation = -0.86367 +node_a = NodePath("..") +node_b = NodePath("../../Bone-21") +bias = 0.2 +softness = 100.0 + +[node name="Bone-18" type="RigidBody2D" parent="Softbody2d4" instance=ExtResource("3_6ern4")] +position = Vector2(73.25, 220.67) +input_pickable = true mass = 0.0222222 physics_material_override = ExtResource("5_221ya") +script = ExtResource("11_tqnjl") +metadata/idx = 18 metadata/bone_name = &"Bone-18" [node name="CircleShape2D" type="CollisionShape2D" parent="Softbody2d4/Bone-18"] -shape = SubResource("CircleShape2D_tur3v") +shape = SubResource("CircleShape2D_fq4ub") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Softbody2d4/Bone-18"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-18") update_rotation = false update_scale = false [node name="Joint2D-Bone-18-Bone-16" type="PinJoint2D" parent="Softbody2d4/Bone-18"] visible = false -rotation = 0.660633 +rotation = 0.66476 node_a = NodePath("..") node_b = NodePath("../../Bone-16") bias = 0.2 softness = 100.0 +[node name="Joint2D-Bone-18-Bone-19" type="PinJoint2D" parent="Softbody2d4/Bone-18"] +visible = false +rotation = -0.245493 +node_a = NodePath("..") +node_b = NodePath("../../Bone-19") +bias = 0.2 +softness = 100.0 + [node name="Joint2D-Bone-18-Bone-17" type="PinJoint2D" parent="Softbody2d4/Bone-18"] visible = false -rotation = -3.02641 +rotation = -3.03366 node_a = NodePath("..") node_b = NodePath("../../Bone-17") bias = 0.2 softness = 100.0 -[node name="Joint2D-Bone-18-Bone-19" type="PinJoint2D" parent="Softbody2d4/Bone-18"] +[node name="Joint2D-Bone-18-Bone-20" type="PinJoint2D" parent="Softbody2d4/Bone-18"] visible = false -rotation = -0.245863 +rotation = -2.23454 node_a = NodePath("..") -node_b = NodePath("../../Bone-19") +node_b = NodePath("../../Bone-20") bias = 0.2 softness = 100.0 [node name="Joint2D-Bone-18-Bone-21" type="PinJoint2D" parent="Softbody2d4/Bone-18"] visible = false -rotation = -1.5657 +rotation = -1.5708 node_a = NodePath("..") node_b = NodePath("../../Bone-21") bias = 0.2 softness = 100.0 -[node name="Bone-19" parent="Softbody2d4" instance=ExtResource("3_6ern4")] -position = Vector2(82.8928, 259.551) +[node name="Joint2D-Bone-18-Bone-22" type="PinJoint2D" parent="Softbody2d4/Bone-18"] +visible = false +rotation = -0.855028 +node_a = NodePath("..") +node_b = NodePath("../../Bone-22") +bias = 0.2 +softness = 100.0 + +[node name="Bone-19" type="RigidBody2D" parent="Softbody2d4" instance=ExtResource("3_6ern4")] +position = Vector2(83, 259.585) +input_pickable = true mass = 0.0222222 physics_material_override = ExtResource("5_221ya") +script = ExtResource("11_tqnjl") +metadata/idx = 19 metadata/bone_name = &"Bone-19" [node name="CircleShape2D" type="CollisionShape2D" parent="Softbody2d4/Bone-19"] -shape = SubResource("CircleShape2D_tur3v") +shape = SubResource("CircleShape2D_fq4ub") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Softbody2d4/Bone-19"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-19") update_rotation = false update_scale = false [node name="Joint2D-Bone-19-Bone-16" type="PinJoint2D" parent="Softbody2d4/Bone-19"] visible = false -rotation = 1.57029 +rotation = 1.5708 node_a = NodePath("..") node_b = NodePath("../../Bone-16") bias = 0.2 @@ -24026,91 +29078,138 @@ softness = 100.0 [node name="Joint2D-Bone-19-Bone-18" type="PinJoint2D" parent="Softbody2d4/Bone-19"] visible = false -rotation = -3.38746 +rotation = -3.38709 node_a = NodePath("..") node_b = NodePath("../../Bone-18") bias = 0.2 softness = 100.0 +[node name="Joint2D-Bone-19-Bone-21" type="PinJoint2D" parent="Softbody2d4/Bone-19"] +visible = false +rotation = -2.40911 +node_a = NodePath("..") +node_b = NodePath("../../Bone-21") +bias = 0.2 +softness = 100.0 + [node name="Joint2D-Bone-19-Bone-22" type="PinJoint2D" parent="Softbody2d4/Bone-19"] visible = false -rotation = -1.57117 +rotation = -1.5708 node_a = NodePath("..") node_b = NodePath("../../Bone-22") bias = 0.2 softness = 100.0 -[node name="Bone-20" parent="Softbody2d4" instance=ExtResource("3_6ern4")] -position = Vector2(117.925, 185.765) +[node name="Bone-20" type="RigidBody2D" parent="Softbody2d4" instance=ExtResource("3_6ern4")] +position = Vector2(118, 185.67) +input_pickable = true mass = 0.0222222 physics_material_override = ExtResource("5_221ya") +script = ExtResource("11_tqnjl") +metadata/idx = 20 metadata/bone_name = &"Bone-20" [node name="CircleShape2D" type="CollisionShape2D" parent="Softbody2d4/Bone-20"] -shape = SubResource("CircleShape2D_tur3v") +shape = SubResource("CircleShape2D_fq4ub") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Softbody2d4/Bone-20"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-20") update_rotation = false update_scale = false +[node name="Joint2D-Bone-20-Bone-7" type="PinJoint2D" parent="Softbody2d4/Bone-20"] +visible = false +rotation = -3.92699 +node_a = NodePath("..") +node_b = NodePath("../../Bone-7") +bias = 0.2 +softness = 100.0 + [node name="Joint2D-Bone-20-Bone-11" type="PinJoint2D" parent="Softbody2d4/Bone-20"] visible = false -rotation = -3.13908 +rotation = -3.14159 node_a = NodePath("..") node_b = NodePath("../../Bone-11") bias = 0.2 softness = 100.0 +[node name="Joint2D-Bone-20-Bone-17" type="PinJoint2D" parent="Softbody2d4/Bone-20"] +visible = false +rotation = 1.5708 +node_a = NodePath("..") +node_b = NodePath("../../Bone-17") +bias = 0.2 +softness = 100.0 + [node name="Joint2D-Bone-20-Bone-15" type="PinJoint2D" parent="Softbody2d4/Bone-20"] visible = false -rotation = -2.35218 +rotation = -2.35619 node_a = NodePath("..") node_b = NodePath("../../Bone-15") bias = 0.2 softness = 100.0 -[node name="Joint2D-Bone-20-Bone-17" type="PinJoint2D" parent="Softbody2d4/Bone-20"] +[node name="Joint2D-Bone-20-Bone-23" type="PinJoint2D" parent="Softbody2d4/Bone-20"] visible = false -rotation = -4.71062 +rotation = -1.5708 node_a = NodePath("..") -node_b = NodePath("../../Bone-17") +node_b = NodePath("../../Bone-23") +bias = 0.2 +softness = 100.0 + +[node name="Joint2D-Bone-20-Bone-18" type="PinJoint2D" parent="Softbody2d4/Bone-20"] +visible = false +rotation = 0.907052 +node_a = NodePath("..") +node_b = NodePath("../../Bone-18") bias = 0.2 softness = 100.0 [node name="Joint2D-Bone-20-Bone-21" type="PinJoint2D" parent="Softbody2d4/Bone-20"] visible = false -rotation = 0.00330083 node_a = NodePath("..") node_b = NodePath("../../Bone-21") bias = 0.2 softness = 100.0 -[node name="Joint2D-Bone-20-Bone-23" type="PinJoint2D" parent="Softbody2d4/Bone-20"] +[node name="Joint2D-Bone-20-Bone-24" type="PinJoint2D" parent="Softbody2d4/Bone-20"] visible = false -rotation = -1.56745 +rotation = -0.785398 node_a = NodePath("..") -node_b = NodePath("../../Bone-23") +node_b = NodePath("../../Bone-24") bias = 0.2 softness = 100.0 -[node name="Bone-21" parent="Softbody2d4" instance=ExtResource("3_6ern4")] -position = Vector2(117.81, 220.782) +[node name="Bone-21" type="RigidBody2D" parent="Softbody2d4" instance=ExtResource("3_6ern4")] +position = Vector2(118, 220.67) +input_pickable = true mass = 0.0222222 physics_material_override = ExtResource("5_221ya") +script = ExtResource("11_tqnjl") +metadata/idx = 21 metadata/bone_name = &"Bone-21" [node name="CircleShape2D" type="CollisionShape2D" parent="Softbody2d4/Bone-21"] -shape = SubResource("CircleShape2D_tur3v") +shape = SubResource("CircleShape2D_fq4ub") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Softbody2d4/Bone-21"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-21") update_rotation = false update_scale = false +[node name="Joint2D-Bone-21-Bone-17" type="PinJoint2D" parent="Softbody2d4/Bone-21"] +visible = false +rotation = -4.00526 +node_a = NodePath("..") +node_b = NodePath("../../Bone-17") +bias = 0.2 +softness = 100.0 + [node name="Joint2D-Bone-21-Bone-18" type="PinJoint2D" parent="Softbody2d4/Bone-21"] visible = false -rotation = -4.7073 +rotation = 1.5708 node_a = NodePath("..") node_b = NodePath("../../Bone-18") bias = 0.2 @@ -24118,45 +29217,80 @@ softness = 100.0 [node name="Joint2D-Bone-21-Bone-20" type="PinJoint2D" parent="Softbody2d4/Bone-21"] visible = false -rotation = -3.13829 +rotation = -3.14159 node_a = NodePath("..") node_b = NodePath("../../Bone-20") bias = 0.2 softness = 100.0 +[node name="Joint2D-Bone-21-Bone-19" type="PinJoint2D" parent="Softbody2d4/Bone-21"] +visible = false +rotation = 0.732481 +node_a = NodePath("..") +node_b = NodePath("../../Bone-19") +bias = 0.2 +softness = 100.0 + [node name="Joint2D-Bone-21-Bone-22" type="PinJoint2D" parent="Softbody2d4/Bone-21"] visible = false -rotation = -0.00177463 node_a = NodePath("..") node_b = NodePath("../../Bone-22") bias = 0.2 softness = 100.0 +[node name="Joint2D-Bone-21-Bone-23" type="PinJoint2D" parent="Softbody2d4/Bone-21"] +visible = false +rotation = -2.35619 +node_a = NodePath("..") +node_b = NodePath("../../Bone-23") +bias = 0.2 +softness = 100.0 + [node name="Joint2D-Bone-21-Bone-24" type="PinJoint2D" parent="Softbody2d4/Bone-21"] visible = false -rotation = -1.56961 +rotation = -1.5708 node_a = NodePath("..") node_b = NodePath("../../Bone-24") bias = 0.2 softness = 100.0 -[node name="Bone-22" parent="Softbody2d4" instance=ExtResource("3_6ern4")] -position = Vector2(117.878, 259.538) +[node name="Joint2D-Bone-21-Bone-25" type="PinJoint2D" parent="Softbody2d4/Bone-21"] +visible = false +rotation = -0.732481 +node_a = NodePath("..") +node_b = NodePath("../../Bone-25") +bias = 0.2 +softness = 100.0 + +[node name="Bone-22" type="RigidBody2D" parent="Softbody2d4" instance=ExtResource("3_6ern4")] +position = Vector2(118, 259.585) +input_pickable = true mass = 0.0222222 physics_material_override = ExtResource("5_221ya") +script = ExtResource("11_tqnjl") +metadata/idx = 22 metadata/bone_name = &"Bone-22" [node name="CircleShape2D" type="CollisionShape2D" parent="Softbody2d4/Bone-22"] -shape = SubResource("CircleShape2D_tur3v") +shape = SubResource("CircleShape2D_fq4ub") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Softbody2d4/Bone-22"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-22") update_rotation = false update_scale = false +[node name="Joint2D-Bone-22-Bone-18" type="PinJoint2D" parent="Softbody2d4/Bone-22"] +visible = false +rotation = -3.99662 +node_a = NodePath("..") +node_b = NodePath("../../Bone-18") +bias = 0.2 +softness = 100.0 + [node name="Joint2D-Bone-22-Bone-19" type="PinJoint2D" parent="Softbody2d4/Bone-22"] visible = false -rotation = 1.57043 +rotation = 1.5708 node_a = NodePath("..") node_b = NodePath("../../Bone-19") bias = 0.2 @@ -24164,37 +29298,57 @@ softness = 100.0 [node name="Joint2D-Bone-22-Bone-21" type="PinJoint2D" parent="Softbody2d4/Bone-22"] visible = false -rotation = -3.14337 +rotation = -3.14159 node_a = NodePath("..") node_b = NodePath("../../Bone-21") bias = 0.2 softness = 100.0 +[node name="Joint2D-Bone-22-Bone-24" type="PinJoint2D" parent="Softbody2d4/Bone-22"] +visible = false +rotation = -2.40911 +node_a = NodePath("..") +node_b = NodePath("../../Bone-24") +bias = 0.2 +softness = 100.0 + [node name="Joint2D-Bone-22-Bone-25" type="PinJoint2D" parent="Softbody2d4/Bone-22"] visible = false -rotation = -1.57228 +rotation = -1.5708 node_a = NodePath("..") node_b = NodePath("../../Bone-25") bias = 0.2 softness = 100.0 -[node name="Bone-23" parent="Softbody2d4" instance=ExtResource("3_6ern4")] -position = Vector2(152.963, 185.882) +[node name="Bone-23" type="RigidBody2D" parent="Softbody2d4" instance=ExtResource("3_6ern4")] +position = Vector2(153, 185.67) +input_pickable = true mass = 0.0222222 physics_material_override = ExtResource("5_221ya") +script = ExtResource("11_tqnjl") +metadata/idx = 23 metadata/bone_name = &"Bone-23" [node name="CircleShape2D" type="CollisionShape2D" parent="Softbody2d4/Bone-23"] -shape = SubResource("CircleShape2D_tur3v") +shape = SubResource("CircleShape2D_fq4ub") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Softbody2d4/Bone-23"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-23") update_rotation = false update_scale = false +[node name="Joint2D-Bone-23-Bone-11" type="PinJoint2D" parent="Softbody2d4/Bone-23"] +visible = false +rotation = -3.92699 +node_a = NodePath("..") +node_b = NodePath("../../Bone-11") +bias = 0.2 +softness = 100.0 + [node name="Joint2D-Bone-23-Bone-15" type="PinJoint2D" parent="Softbody2d4/Bone-23"] visible = false -rotation = -3.13892 +rotation = -3.14159 node_a = NodePath("..") node_b = NodePath("../../Bone-15") bias = 0.2 @@ -24202,53 +29356,80 @@ softness = 100.0 [node name="Joint2D-Bone-23-Bone-20" type="PinJoint2D" parent="Softbody2d4/Bone-23"] visible = false -rotation = -4.70905 +rotation = 1.5708 node_a = NodePath("..") node_b = NodePath("../../Bone-20") bias = 0.2 softness = 100.0 -[node name="Joint2D-Bone-23-Bone-24" type="PinJoint2D" parent="Softbody2d4/Bone-23"] +[node name="Joint2D-Bone-23-Bone-29" type="PinJoint2D" parent="Softbody2d4/Bone-23"] visible = false -rotation = -0.00262709 +rotation = -2.35619 node_a = NodePath("..") -node_b = NodePath("../../Bone-24") +node_b = NodePath("../../Bone-29") bias = 0.2 softness = 100.0 [node name="Joint2D-Bone-23-Bone-36" type="PinJoint2D" parent="Softbody2d4/Bone-23"] visible = false -rotation = -1.57764 +rotation = -1.5708 node_a = NodePath("..") node_b = NodePath("../../Bone-36") bias = 0.2 softness = 100.0 +[node name="Joint2D-Bone-23-Bone-21" type="PinJoint2D" parent="Softbody2d4/Bone-23"] +visible = false +rotation = 0.785398 +node_a = NodePath("..") +node_b = NodePath("../../Bone-21") +bias = 0.2 +softness = 100.0 + +[node name="Joint2D-Bone-23-Bone-24" type="PinJoint2D" parent="Softbody2d4/Bone-23"] +visible = false +node_a = NodePath("..") +node_b = NodePath("../../Bone-24") +bias = 0.2 +softness = 100.0 + [node name="Joint2D-Bone-23-Bone-37" type="PinJoint2D" parent="Softbody2d4/Bone-23"] visible = false -rotation = -0.794059 +rotation = -0.785398 node_a = NodePath("..") node_b = NodePath("../../Bone-37") bias = 0.2 softness = 100.0 -[node name="Bone-24" parent="Softbody2d4" instance=ExtResource("3_6ern4")] -position = Vector2(153.055, 220.824) +[node name="Bone-24" type="RigidBody2D" parent="Softbody2d4" instance=ExtResource("3_6ern4")] +position = Vector2(153, 220.67) +input_pickable = true mass = 0.0222222 physics_material_override = ExtResource("5_221ya") +script = ExtResource("11_tqnjl") +metadata/idx = 24 metadata/bone_name = &"Bone-24" [node name="CircleShape2D" type="CollisionShape2D" parent="Softbody2d4/Bone-24"] -shape = SubResource("CircleShape2D_tur3v") +shape = SubResource("CircleShape2D_fq4ub") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Softbody2d4/Bone-24"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-24") update_rotation = false update_scale = false +[node name="Joint2D-Bone-24-Bone-20" type="PinJoint2D" parent="Softbody2d4/Bone-24"] +visible = false +rotation = -3.92699 +node_a = NodePath("..") +node_b = NodePath("../../Bone-20") +bias = 0.2 +softness = 100.0 + [node name="Joint2D-Bone-24-Bone-21" type="PinJoint2D" parent="Softbody2d4/Bone-24"] visible = false -rotation = -4.7112 +rotation = 1.5708 node_a = NodePath("..") node_b = NodePath("../../Bone-21") bias = 0.2 @@ -24256,15 +29437,22 @@ softness = 100.0 [node name="Joint2D-Bone-24-Bone-23" type="PinJoint2D" parent="Softbody2d4/Bone-24"] visible = false -rotation = -3.14422 +rotation = -3.14159 node_a = NodePath("..") node_b = NodePath("../../Bone-23") bias = 0.2 softness = 100.0 +[node name="Joint2D-Bone-24-Bone-22" type="PinJoint2D" parent="Softbody2d4/Bone-24"] +visible = false +rotation = 0.732481 +node_a = NodePath("..") +node_b = NodePath("../../Bone-22") +bias = 0.2 +softness = 100.0 + [node name="Joint2D-Bone-24-Bone-25" type="PinJoint2D" parent="Softbody2d4/Bone-24"] visible = false -rotation = 0.0022283 node_a = NodePath("..") node_b = NodePath("../../Bone-25") bias = 0.2 @@ -24272,7 +29460,7 @@ softness = 100.0 [node name="Joint2D-Bone-24-Bone-36" type="PinJoint2D" parent="Softbody2d4/Bone-24"] visible = false -rotation = -2.3628 +rotation = -2.35619 node_a = NodePath("..") node_b = NodePath("../../Bone-36") bias = 0.2 @@ -24280,29 +29468,49 @@ softness = 100.0 [node name="Joint2D-Bone-24-Bone-37" type="PinJoint2D" parent="Softbody2d4/Bone-24"] visible = false -rotation = -1.57973 +rotation = -1.5708 node_a = NodePath("..") node_b = NodePath("../../Bone-37") bias = 0.2 softness = 100.0 -[node name="Bone-25" parent="Softbody2d4" instance=ExtResource("3_6ern4")] -position = Vector2(152.969, 259.486) +[node name="Joint2D-Bone-24-Bone-38" type="PinJoint2D" parent="Softbody2d4/Bone-24"] +visible = false +rotation = -0.732481 +node_a = NodePath("..") +node_b = NodePath("../../Bone-38") +bias = 0.2 +softness = 100.0 + +[node name="Bone-25" type="RigidBody2D" parent="Softbody2d4" instance=ExtResource("3_6ern4")] +position = Vector2(153, 259.585) +input_pickable = true mass = 0.0222222 physics_material_override = ExtResource("5_221ya") +script = ExtResource("11_tqnjl") +metadata/idx = 25 metadata/bone_name = &"Bone-25" [node name="CircleShape2D" type="CollisionShape2D" parent="Softbody2d4/Bone-25"] -shape = SubResource("CircleShape2D_tur3v") +shape = SubResource("CircleShape2D_fq4ub") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Softbody2d4/Bone-25"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-25") update_rotation = false update_scale = false +[node name="Joint2D-Bone-25-Bone-21" type="PinJoint2D" parent="Softbody2d4/Bone-25"] +visible = false +rotation = -3.87407 +node_a = NodePath("..") +node_b = NodePath("../../Bone-21") +bias = 0.2 +softness = 100.0 + [node name="Joint2D-Bone-25-Bone-22" type="PinJoint2D" parent="Softbody2d4/Bone-25"] visible = false -rotation = 1.56932 +rotation = 1.5708 node_a = NodePath("..") node_b = NodePath("../../Bone-22") bias = 0.2 @@ -24310,45 +29518,64 @@ softness = 100.0 [node name="Joint2D-Bone-25-Bone-24" type="PinJoint2D" parent="Softbody2d4/Bone-25"] visible = false -rotation = -3.13936 +rotation = -3.14159 node_a = NodePath("..") node_b = NodePath("../../Bone-24") bias = 0.2 softness = 100.0 +[node name="Joint2D-Bone-25-Bone-37" type="PinJoint2D" parent="Softbody2d4/Bone-25"] +visible = false +rotation = -2.40911 +node_a = NodePath("..") +node_b = NodePath("../../Bone-37") +bias = 0.2 +softness = 100.0 + [node name="Joint2D-Bone-25-Bone-38" type="PinJoint2D" parent="Softbody2d4/Bone-25"] visible = false -rotation = -1.56919 +rotation = -1.5708 node_a = NodePath("..") node_b = NodePath("../../Bone-38") bias = 0.2 softness = 100.0 -[node name="Bone-26" parent="Softbody2d4" instance=ExtResource("3_6ern4")] -position = Vector2(187.768, 41.0396) +[node name="Bone-26" type="RigidBody2D" parent="Softbody2d4" instance=ExtResource("3_6ern4")] +position = Vector2(188, 41.085) +input_pickable = true mass = 0.0222222 physics_material_override = ExtResource("5_221ya") +script = ExtResource("11_tqnjl") +metadata/idx = 26 metadata/bone_name = &"Bone-26" [node name="CircleShape2D" type="CollisionShape2D" parent="Softbody2d4/Bone-26"] -shape = SubResource("CircleShape2D_tur3v") +shape = SubResource("CircleShape2D_fq4ub") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Softbody2d4/Bone-26"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-26") update_rotation = false update_scale = false [node name="Joint2D-Bone-26-Bone-12" type="PinJoint2D" parent="Softbody2d4/Bone-26"] visible = false -rotation = 1.56429 +rotation = 1.5708 node_a = NodePath("..") node_b = NodePath("../../Bone-12") bias = 0.2 softness = 100.0 +[node name="Joint2D-Bone-26-Bone-13" type="PinJoint2D" parent="Softbody2d4/Bone-26"] +visible = false +rotation = 0.724002 +node_a = NodePath("..") +node_b = NodePath("../../Bone-13") +bias = 0.2 +softness = 100.0 + [node name="Joint2D-Bone-26-Bone-27" type="PinJoint2D" parent="Softbody2d4/Bone-26"] visible = false -rotation = -0.0027922 node_a = NodePath("..") node_b = NodePath("../../Bone-27") bias = 0.2 @@ -24356,29 +29583,49 @@ softness = 100.0 [node name="Joint2D-Bone-26-Bone-30" type="PinJoint2D" parent="Softbody2d4/Bone-26"] visible = false -rotation = -1.57049 +rotation = -1.5708 node_a = NodePath("..") node_b = NodePath("../../Bone-30") bias = 0.2 softness = 100.0 -[node name="Bone-27" parent="Softbody2d4" instance=ExtResource("3_6ern4")] -position = Vector2(187.878, 80.4791) +[node name="Joint2D-Bone-26-Bone-31" type="PinJoint2D" parent="Softbody2d4/Bone-26"] +visible = false +rotation = -0.780065 +node_a = NodePath("..") +node_b = NodePath("../../Bone-31") +bias = 0.2 +softness = 100.0 + +[node name="Bone-27" type="RigidBody2D" parent="Softbody2d4" instance=ExtResource("3_6ern4")] +position = Vector2(188, 80.67) +input_pickable = true mass = 0.0222222 physics_material_override = ExtResource("5_221ya") +script = ExtResource("11_tqnjl") +metadata/idx = 27 metadata/bone_name = &"Bone-27" [node name="CircleShape2D" type="CollisionShape2D" parent="Softbody2d4/Bone-27"] -shape = SubResource("CircleShape2D_tur3v") +shape = SubResource("CircleShape2D_fq4ub") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Softbody2d4/Bone-27"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-27") update_rotation = false update_scale = false +[node name="Joint2D-Bone-27-Bone-12" type="PinJoint2D" parent="Softbody2d4/Bone-27"] +visible = false +rotation = -3.86559 +node_a = NodePath("..") +node_b = NodePath("../../Bone-12") +bias = 0.2 +softness = 100.0 + [node name="Joint2D-Bone-27-Bone-13" type="PinJoint2D" parent="Softbody2d4/Bone-27"] visible = false -rotation = 1.56173 +rotation = 1.5708 node_a = NodePath("..") node_b = NodePath("../../Bone-13") bias = 0.2 @@ -24386,45 +29633,72 @@ softness = 100.0 [node name="Joint2D-Bone-27-Bone-26" type="PinJoint2D" parent="Softbody2d4/Bone-27"] visible = false -rotation = -3.14438 +rotation = -3.14159 node_a = NodePath("..") node_b = NodePath("../../Bone-26") bias = 0.2 softness = 100.0 +[node name="Joint2D-Bone-27-Bone-14" type="PinJoint2D" parent="Softbody2d4/Bone-27"] +visible = false +rotation = 0.785398 +node_a = NodePath("..") +node_b = NodePath("../../Bone-14") +bias = 0.2 +softness = 100.0 + [node name="Joint2D-Bone-27-Bone-28" type="PinJoint2D" parent="Softbody2d4/Bone-27"] visible = false -rotation = -0.00284143 node_a = NodePath("..") node_b = NodePath("../../Bone-28") bias = 0.2 softness = 100.0 +[node name="Joint2D-Bone-27-Bone-30" type="PinJoint2D" parent="Softbody2d4/Bone-27"] +visible = false +rotation = -2.41759 +node_a = NodePath("..") +node_b = NodePath("../../Bone-30") +bias = 0.2 +softness = 100.0 + [node name="Joint2D-Bone-27-Bone-31" type="PinJoint2D" parent="Softbody2d4/Bone-27"] visible = false -rotation = -1.56951 +rotation = -1.5708 node_a = NodePath("..") node_b = NodePath("../../Bone-31") bias = 0.2 softness = 100.0 -[node name="Bone-28" parent="Softbody2d4" instance=ExtResource("3_6ern4")] -position = Vector2(187.978, 115.524) +[node name="Joint2D-Bone-27-Bone-32" type="PinJoint2D" parent="Softbody2d4/Bone-27"] +visible = false +rotation = -0.931789 +node_a = NodePath("..") +node_b = NodePath("../../Bone-32") +bias = 0.2 +softness = 100.0 + +[node name="Bone-28" type="RigidBody2D" parent="Softbody2d4" instance=ExtResource("3_6ern4")] +position = Vector2(188, 115.67) +input_pickable = true mass = 0.0222222 physics_material_override = ExtResource("5_221ya") +script = ExtResource("11_tqnjl") +metadata/idx = 28 metadata/bone_name = &"Bone-28" [node name="CircleShape2D" type="CollisionShape2D" parent="Softbody2d4/Bone-28"] -shape = SubResource("CircleShape2D_tur3v") +shape = SubResource("CircleShape2D_fq4ub") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Softbody2d4/Bone-28"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-28") update_rotation = false update_scale = false [node name="Joint2D-Bone-28-Bone-13" type="PinJoint2D" parent="Softbody2d4/Bone-28"] visible = false -rotation = -3.93073 +rotation = -3.92699 node_a = NodePath("..") node_b = NodePath("../../Bone-13") bias = 0.2 @@ -24432,7 +29706,7 @@ softness = 100.0 [node name="Joint2D-Bone-28-Bone-14" type="PinJoint2D" parent="Softbody2d4/Bone-28"] visible = false -rotation = 1.56169 +rotation = 1.5708 node_a = NodePath("..") node_b = NodePath("../../Bone-14") bias = 0.2 @@ -24440,45 +29714,72 @@ softness = 100.0 [node name="Joint2D-Bone-28-Bone-27" type="PinJoint2D" parent="Softbody2d4/Bone-28"] visible = false -rotation = -3.14443 +rotation = -3.14159 node_a = NodePath("..") node_b = NodePath("../../Bone-27") bias = 0.2 softness = 100.0 +[node name="Joint2D-Bone-28-Bone-15" type="PinJoint2D" parent="Softbody2d4/Bone-28"] +visible = false +rotation = 0.785398 +node_a = NodePath("..") +node_b = NodePath("../../Bone-15") +bias = 0.2 +softness = 100.0 + [node name="Joint2D-Bone-28-Bone-29" type="PinJoint2D" parent="Softbody2d4/Bone-28"] visible = false -rotation = 0.000193759 node_a = NodePath("..") node_b = NodePath("../../Bone-29") bias = 0.2 softness = 100.0 +[node name="Joint2D-Bone-28-Bone-31" type="PinJoint2D" parent="Softbody2d4/Bone-28"] +visible = false +rotation = -2.30009 +node_a = NodePath("..") +node_b = NodePath("../../Bone-31") +bias = 0.2 +softness = 100.0 + [node name="Joint2D-Bone-28-Bone-32" type="PinJoint2D" parent="Softbody2d4/Bone-28"] visible = false -rotation = -1.56569 +rotation = -1.5708 node_a = NodePath("..") node_b = NodePath("../../Bone-32") bias = 0.2 softness = 100.0 -[node name="Bone-29" parent="Softbody2d4" instance=ExtResource("3_6ern4")] -position = Vector2(187.971, 150.566) +[node name="Joint2D-Bone-28-Bone-33" type="PinJoint2D" parent="Softbody2d4/Bone-28"] +visible = false +rotation = -0.785398 +node_a = NodePath("..") +node_b = NodePath("../../Bone-33") +bias = 0.2 +softness = 100.0 + +[node name="Bone-29" type="RigidBody2D" parent="Softbody2d4" instance=ExtResource("3_6ern4")] +position = Vector2(188, 150.67) +input_pickable = true mass = 0.0222222 physics_material_override = ExtResource("5_221ya") +script = ExtResource("11_tqnjl") +metadata/idx = 29 metadata/bone_name = &"Bone-29" [node name="CircleShape2D" type="CollisionShape2D" parent="Softbody2d4/Bone-29"] -shape = SubResource("CircleShape2D_tur3v") +shape = SubResource("CircleShape2D_fq4ub") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Softbody2d4/Bone-29"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-29") update_rotation = false update_scale = false [node name="Joint2D-Bone-29-Bone-14" type="PinJoint2D" parent="Softbody2d4/Bone-29"] visible = false -rotation = -3.9281 +rotation = -3.92699 node_a = NodePath("..") node_b = NodePath("../../Bone-14") bias = 0.2 @@ -24486,7 +29787,7 @@ softness = 100.0 [node name="Joint2D-Bone-29-Bone-15" type="PinJoint2D" parent="Softbody2d4/Bone-29"] visible = false -rotation = 1.56082 +rotation = 1.5708 node_a = NodePath("..") node_b = NodePath("../../Bone-15") bias = 0.2 @@ -24494,61 +29795,88 @@ softness = 100.0 [node name="Joint2D-Bone-29-Bone-28" type="PinJoint2D" parent="Softbody2d4/Bone-29"] visible = false -rotation = -3.1414 +rotation = -3.14159 node_a = NodePath("..") node_b = NodePath("../../Bone-28") bias = 0.2 softness = 100.0 -[node name="Joint2D-Bone-29-Bone-33" type="PinJoint2D" parent="Softbody2d4/Bone-29"] +[node name="Joint2D-Bone-29-Bone-23" type="PinJoint2D" parent="Softbody2d4/Bone-29"] visible = false -rotation = -1.56745 +rotation = 0.785398 node_a = NodePath("..") -node_b = NodePath("../../Bone-33") +node_b = NodePath("../../Bone-23") bias = 0.2 softness = 100.0 [node name="Joint2D-Bone-29-Bone-36" type="PinJoint2D" parent="Softbody2d4/Bone-29"] visible = false -rotation = 0.00561194 node_a = NodePath("..") node_b = NodePath("../../Bone-36") bias = 0.2 softness = 100.0 +[node name="Joint2D-Bone-29-Bone-32" type="PinJoint2D" parent="Softbody2d4/Bone-29"] +visible = false +rotation = -2.2098 +node_a = NodePath("..") +node_b = NodePath("../../Bone-32") +bias = 0.2 +softness = 100.0 + +[node name="Joint2D-Bone-29-Bone-33" type="PinJoint2D" parent="Softbody2d4/Bone-29"] +visible = false +rotation = -1.5708 +node_a = NodePath("..") +node_b = NodePath("../../Bone-33") +bias = 0.2 +softness = 100.0 + [node name="Joint2D-Bone-29-Bone-39" type="PinJoint2D" parent="Softbody2d4/Bone-29"] visible = false -rotation = -0.781648 +rotation = -0.785398 node_a = NodePath("..") node_b = NodePath("../../Bone-39") bias = 0.2 softness = 100.0 -[node name="Bone-30" parent="Softbody2d4" instance=ExtResource("3_6ern4")] -position = Vector2(223.144, 41.0504) +[node name="Bone-30" type="RigidBody2D" parent="Softbody2d4" instance=ExtResource("3_6ern4")] +position = Vector2(223, 41.085) +input_pickable = true mass = 0.0222222 physics_material_override = ExtResource("5_221ya") +script = ExtResource("11_tqnjl") +metadata/idx = 30 metadata/bone_name = &"Bone-30" [node name="CircleShape2D" type="CollisionShape2D" parent="Softbody2d4/Bone-30"] -shape = SubResource("CircleShape2D_tur3v") +shape = SubResource("CircleShape2D_fq4ub") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Softbody2d4/Bone-30"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-30") update_rotation = false update_scale = false [node name="Joint2D-Bone-30-Bone-26" type="PinJoint2D" parent="Softbody2d4/Bone-30"] visible = false -rotation = -4.71208 +rotation = 1.5708 node_a = NodePath("..") node_b = NodePath("../../Bone-26") bias = 0.2 softness = 100.0 +[node name="Joint2D-Bone-30-Bone-27" type="PinJoint2D" parent="Softbody2d4/Bone-30"] +visible = false +rotation = 0.724002 +node_a = NodePath("..") +node_b = NodePath("../../Bone-27") +bias = 0.2 +softness = 100.0 + [node name="Joint2D-Bone-30-Bone-31" type="PinJoint2D" parent="Softbody2d4/Bone-30"] visible = false -rotation = -0.100189 +rotation = -0.104831 node_a = NodePath("..") node_b = NodePath("../../Bone-31") bias = 0.2 @@ -24556,29 +29884,49 @@ softness = 100.0 [node name="Joint2D-Bone-30-Bone-34" type="PinJoint2D" parent="Softbody2d4/Bone-30"] visible = false -rotation = -1.56774 +rotation = -1.5708 node_a = NodePath("..") node_b = NodePath("../../Bone-34") bias = 0.2 softness = 100.0 -[node name="Bone-31" parent="Softbody2d4" instance=ExtResource("3_6ern4")] -position = Vector2(227.113, 80.5295) +[node name="Bone-31" type="RigidBody2D" parent="Softbody2d4" instance=ExtResource("3_6ern4")] +position = Vector2(227.165, 80.67) +input_pickable = true mass = 0.0222222 physics_material_override = ExtResource("5_221ya") +script = ExtResource("11_tqnjl") +metadata/idx = 31 metadata/bone_name = &"Bone-31" [node name="CircleShape2D" type="CollisionShape2D" parent="Softbody2d4/Bone-31"] -shape = SubResource("CircleShape2D_tur3v") +shape = SubResource("CircleShape2D_fq4ub") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Softbody2d4/Bone-31"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-31") update_rotation = false update_scale = false +[node name="Joint2D-Bone-31-Bone-34" type="PinJoint2D" parent="Softbody2d4/Bone-31"] +visible = false +rotation = -2.4454 +node_a = NodePath("..") +node_b = NodePath("../../Bone-34") +bias = 0.2 +softness = 100.0 + +[node name="Joint2D-Bone-31-Bone-26" type="PinJoint2D" parent="Softbody2d4/Bone-31"] +visible = false +rotation = -3.92166 +node_a = NodePath("..") +node_b = NodePath("../../Bone-26") +bias = 0.2 +softness = 100.0 + [node name="Joint2D-Bone-31-Bone-27" type="PinJoint2D" parent="Softbody2d4/Bone-31"] visible = false -rotation = -4.71111 +rotation = 1.5708 node_a = NodePath("..") node_b = NodePath("../../Bone-27") bias = 0.2 @@ -24586,37 +29934,57 @@ softness = 100.0 [node name="Joint2D-Bone-31-Bone-30" type="PinJoint2D" parent="Softbody2d4/Bone-31"] visible = false -rotation = -3.24178 +rotation = -3.24642 node_a = NodePath("..") node_b = NodePath("../../Bone-30") bias = 0.2 softness = 100.0 +[node name="Joint2D-Bone-31-Bone-28" type="PinJoint2D" parent="Softbody2d4/Bone-31"] +visible = false +rotation = 0.841498 +node_a = NodePath("..") +node_b = NodePath("../../Bone-28") +bias = 0.2 +softness = 100.0 + [node name="Joint2D-Bone-31-Bone-32" type="PinJoint2D" parent="Softbody2d4/Bone-31"] visible = false -rotation = -0.224775 +rotation = -0.223115 node_a = NodePath("..") node_b = NodePath("../../Bone-32") bias = 0.2 softness = 100.0 -[node name="Bone-32" parent="Softbody2d4" instance=ExtResource("3_6ern4")] -position = Vector2(235.169, 115.765) +[node name="Bone-32" type="RigidBody2D" parent="Softbody2d4" instance=ExtResource("3_6ern4")] +position = Vector2(235.106, 115.67) +input_pickable = true mass = 0.0222222 physics_material_override = ExtResource("5_221ya") +script = ExtResource("11_tqnjl") +metadata/idx = 32 metadata/bone_name = &"Bone-32" [node name="CircleShape2D" type="CollisionShape2D" parent="Softbody2d4/Bone-32"] -shape = SubResource("CircleShape2D_tur3v") +shape = SubResource("CircleShape2D_fq4ub") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Softbody2d4/Bone-32"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-32") update_rotation = false update_scale = false +[node name="Joint2D-Bone-32-Bone-27" type="PinJoint2D" parent="Softbody2d4/Bone-32"] +visible = false +rotation = -4.07338 +node_a = NodePath("..") +node_b = NodePath("../../Bone-27") +bias = 0.2 +softness = 100.0 + [node name="Joint2D-Bone-32-Bone-28" type="PinJoint2D" parent="Softbody2d4/Bone-32"] visible = false -rotation = -4.70728 +rotation = 1.5708 node_a = NodePath("..") node_b = NodePath("../../Bone-28") bias = 0.2 @@ -24624,15 +29992,23 @@ softness = 100.0 [node name="Joint2D-Bone-32-Bone-31" type="PinJoint2D" parent="Softbody2d4/Bone-32"] visible = false -rotation = -3.36637 +rotation = -3.36471 node_a = NodePath("..") node_b = NodePath("../../Bone-31") bias = 0.2 softness = 100.0 +[node name="Joint2D-Bone-32-Bone-29" type="PinJoint2D" parent="Softbody2d4/Bone-32"] +visible = false +rotation = 0.93179 +node_a = NodePath("..") +node_b = NodePath("../../Bone-29") +bias = 0.2 +softness = 100.0 + [node name="Joint2D-Bone-32-Bone-33" type="PinJoint2D" parent="Softbody2d4/Bone-32"] visible = false -rotation = 0.339651 +rotation = 0.333011 node_a = NodePath("..") node_b = NodePath("../../Bone-33") bias = 0.2 @@ -24640,29 +30016,41 @@ softness = 100.0 [node name="Joint2D-Bone-32-Bone-35" type="PinJoint2D" parent="Softbody2d4/Bone-32"] visible = false -rotation = -0.671402 +rotation = -0.671926 node_a = NodePath("..") node_b = NodePath("../../Bone-35") bias = 0.2 softness = 100.0 -[node name="Bone-33" parent="Softbody2d4" instance=ExtResource("3_6ern4")] -position = Vector2(222.831, 150.683) +[node name="Bone-33" type="RigidBody2D" parent="Softbody2d4" instance=ExtResource("3_6ern4")] +position = Vector2(223, 150.67) +input_pickable = true mass = 0.0222222 physics_material_override = ExtResource("5_221ya") +script = ExtResource("11_tqnjl") +metadata/idx = 33 metadata/bone_name = &"Bone-33" [node name="CircleShape2D" type="CollisionShape2D" parent="Softbody2d4/Bone-33"] -shape = SubResource("CircleShape2D_tur3v") +shape = SubResource("CircleShape2D_fq4ub") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Softbody2d4/Bone-33"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-33") update_rotation = false update_scale = false +[node name="Joint2D-Bone-33-Bone-28" type="PinJoint2D" parent="Softbody2d4/Bone-33"] +visible = false +rotation = -3.92699 +node_a = NodePath("..") +node_b = NodePath("../../Bone-28") +bias = 0.2 +softness = 100.0 + [node name="Joint2D-Bone-33-Bone-29" type="PinJoint2D" parent="Softbody2d4/Bone-33"] visible = false -rotation = -4.70904 +rotation = 1.5708 node_a = NodePath("..") node_b = NodePath("../../Bone-29") bias = 0.2 @@ -24670,67 +30058,98 @@ softness = 100.0 [node name="Joint2D-Bone-33-Bone-32" type="PinJoint2D" parent="Softbody2d4/Bone-33"] visible = false -rotation = -2.80194 +rotation = -2.80858 node_a = NodePath("..") node_b = NodePath("../../Bone-32") bias = 0.2 softness = 100.0 -[node name="Joint2D-Bone-33-Bone-35" type="PinJoint2D" parent="Softbody2d4/Bone-33"] +[node name="Joint2D-Bone-33-Bone-36" type="PinJoint2D" parent="Softbody2d4/Bone-33"] visible = false -rotation = -1.56931 +rotation = 0.785398 node_a = NodePath("..") -node_b = NodePath("../../Bone-35") +node_b = NodePath("../../Bone-36") bias = 0.2 softness = 100.0 [node name="Joint2D-Bone-33-Bone-39" type="PinJoint2D" parent="Softbody2d4/Bone-33"] visible = false -rotation = 0.000137373 node_a = NodePath("..") node_b = NodePath("../../Bone-39") bias = 0.2 softness = 100.0 -[node name="Bone-34" parent="Softbody2d4" instance=ExtResource("3_6ern4")] -position = Vector2(260.166, 41.1636) +[node name="Joint2D-Bone-33-Bone-35" type="PinJoint2D" parent="Softbody2d4/Bone-33"] +visible = false +rotation = -1.5708 +node_a = NodePath("..") +node_b = NodePath("../../Bone-35") +bias = 0.2 +softness = 100.0 + +[node name="Joint2D-Bone-33-Bone-42" type="PinJoint2D" parent="Softbody2d4/Bone-33"] +visible = false +rotation = -0.86116 +node_a = NodePath("..") +node_b = NodePath("../../Bone-42") +bias = 0.2 +softness = 100.0 + +[node name="Bone-34" type="RigidBody2D" parent="Softbody2d4" instance=ExtResource("3_6ern4")] +position = Vector2(260.25, 41.085) +input_pickable = true mass = 0.0222222 physics_material_override = ExtResource("5_221ya") +script = ExtResource("11_tqnjl") +metadata/idx = 34 metadata/bone_name = &"Bone-34" [node name="CircleShape2D" type="CollisionShape2D" parent="Softbody2d4/Bone-34"] -shape = SubResource("CircleShape2D_tur3v") +shape = SubResource("CircleShape2D_fq4ub") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Softbody2d4/Bone-34"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-34") update_rotation = false update_scale = false +[node name="Joint2D-Bone-34-Bone-31" type="PinJoint2D" parent="Softbody2d4/Bone-34"] +visible = false +rotation = 0.69619 +node_a = NodePath("..") +node_b = NodePath("../../Bone-31") +bias = 0.2 +softness = 100.0 + [node name="Joint2D-Bone-34-Bone-30" type="PinJoint2D" parent="Softbody2d4/Bone-34"] visible = false -rotation = -4.70933 +rotation = 1.5708 node_a = NodePath("..") node_b = NodePath("../../Bone-30") bias = 0.2 softness = 100.0 -[node name="Bone-35" parent="Softbody2d4" instance=ExtResource("3_6ern4")] -position = Vector2(262.96, 150.743) +[node name="Bone-35" type="RigidBody2D" parent="Softbody2d4" instance=ExtResource("3_6ern4")] +position = Vector2(262.945, 150.67) +input_pickable = true mass = 0.0222222 physics_material_override = ExtResource("5_221ya") +script = ExtResource("11_tqnjl") +metadata/idx = 35 metadata/bone_name = &"Bone-35" [node name="CircleShape2D" type="CollisionShape2D" parent="Softbody2d4/Bone-35"] -shape = SubResource("CircleShape2D_tur3v") +shape = SubResource("CircleShape2D_fq4ub") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Softbody2d4/Bone-35"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-35") update_rotation = false update_scale = false [node name="Joint2D-Bone-35-Bone-32" type="PinJoint2D" parent="Softbody2d4/Bone-35"] visible = false -rotation = -3.81299 +rotation = -3.81352 node_a = NodePath("..") node_b = NodePath("../../Bone-32") bias = 0.2 @@ -24738,37 +30157,49 @@ softness = 100.0 [node name="Joint2D-Bone-35-Bone-33" type="PinJoint2D" parent="Softbody2d4/Bone-35"] visible = false -rotation = -4.7109 +rotation = 1.5708 node_a = NodePath("..") node_b = NodePath("../../Bone-33") bias = 0.2 softness = 100.0 +[node name="Joint2D-Bone-35-Bone-39" type="PinJoint2D" parent="Softbody2d4/Bone-35"] +visible = false +rotation = 0.851284 +node_a = NodePath("..") +node_b = NodePath("../../Bone-39") +bias = 0.2 +softness = 100.0 + [node name="Joint2D-Bone-35-Bone-42" type="PinJoint2D" parent="Softbody2d4/Bone-35"] visible = false -rotation = -0.0208345 +rotation = -0.0229958 node_a = NodePath("..") node_b = NodePath("../../Bone-42") bias = 0.2 softness = 100.0 -[node name="Bone-36" parent="Softbody2d4" instance=ExtResource("3_6ern4")] -position = Vector2(187.774, 185.644) +[node name="Bone-36" type="RigidBody2D" parent="Softbody2d4" instance=ExtResource("3_6ern4")] +position = Vector2(188, 185.67) +input_pickable = true mass = 0.0222222 physics_material_override = ExtResource("5_221ya") +script = ExtResource("11_tqnjl") +metadata/idx = 36 metadata/bone_name = &"Bone-36" [node name="CircleShape2D" type="CollisionShape2D" parent="Softbody2d4/Bone-36"] -shape = SubResource("CircleShape2D_tur3v") +shape = SubResource("CircleShape2D_fq4ub") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Softbody2d4/Bone-36"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-36") update_rotation = false update_scale = false [node name="Joint2D-Bone-36-Bone-15" type="PinJoint2D" parent="Softbody2d4/Bone-36"] visible = false -rotation = -3.92682 +rotation = -3.92699 node_a = NodePath("..") node_b = NodePath("../../Bone-15") bias = 0.2 @@ -24776,61 +30207,80 @@ softness = 100.0 [node name="Joint2D-Bone-36-Bone-23" type="PinJoint2D" parent="Softbody2d4/Bone-36"] visible = false -rotation = 1.56395 +rotation = 1.5708 node_a = NodePath("..") node_b = NodePath("../../Bone-23") bias = 0.2 softness = 100.0 -[node name="Joint2D-Bone-36-Bone-24" type="PinJoint2D" parent="Softbody2d4/Bone-36"] +[node name="Joint2D-Bone-36-Bone-29" type="PinJoint2D" parent="Softbody2d4/Bone-36"] visible = false -rotation = 0.778797 +rotation = -3.14159 node_a = NodePath("..") -node_b = NodePath("../../Bone-24") +node_b = NodePath("../../Bone-29") bias = 0.2 softness = 100.0 -[node name="Joint2D-Bone-36-Bone-29" type="PinJoint2D" parent="Softbody2d4/Bone-36"] +[node name="Joint2D-Bone-36-Bone-24" type="PinJoint2D" parent="Softbody2d4/Bone-36"] visible = false -rotation = -3.13598 +rotation = 0.785398 node_a = NodePath("..") -node_b = NodePath("../../Bone-29") +node_b = NodePath("../../Bone-24") bias = 0.2 softness = 100.0 [node name="Joint2D-Bone-36-Bone-37" type="PinJoint2D" parent="Softbody2d4/Bone-36"] visible = false -rotation = -0.0121223 node_a = NodePath("..") node_b = NodePath("../../Bone-37") bias = 0.2 softness = 100.0 +[node name="Joint2D-Bone-36-Bone-33" type="PinJoint2D" parent="Softbody2d4/Bone-36"] +visible = false +rotation = -2.35619 +node_a = NodePath("..") +node_b = NodePath("../../Bone-33") +bias = 0.2 +softness = 100.0 + [node name="Joint2D-Bone-36-Bone-39" type="PinJoint2D" parent="Softbody2d4/Bone-36"] visible = false -rotation = -1.56965 +rotation = -1.5708 node_a = NodePath("..") node_b = NodePath("../../Bone-39") bias = 0.2 softness = 100.0 -[node name="Bone-37" parent="Softbody2d4" instance=ExtResource("3_6ern4")] -position = Vector2(188.197, 220.51) +[node name="Joint2D-Bone-36-Bone-40" type="PinJoint2D" parent="Softbody2d4/Bone-36"] +visible = false +rotation = -0.785398 +node_a = NodePath("..") +node_b = NodePath("../../Bone-40") +bias = 0.2 +softness = 100.0 + +[node name="Bone-37" type="RigidBody2D" parent="Softbody2d4" instance=ExtResource("3_6ern4")] +position = Vector2(188, 220.67) +input_pickable = true mass = 0.0222222 physics_material_override = ExtResource("5_221ya") +script = ExtResource("11_tqnjl") +metadata/idx = 37 metadata/bone_name = &"Bone-37" [node name="CircleShape2D" type="CollisionShape2D" parent="Softbody2d4/Bone-37"] -shape = SubResource("CircleShape2D_tur3v") +shape = SubResource("CircleShape2D_fq4ub") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Softbody2d4/Bone-37"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-37") update_rotation = false update_scale = false [node name="Joint2D-Bone-37-Bone-23" type="PinJoint2D" parent="Softbody2d4/Bone-37"] visible = false -rotation = -3.93565 +rotation = -3.92699 node_a = NodePath("..") node_b = NodePath("../../Bone-23") bias = 0.2 @@ -24838,7 +30288,7 @@ softness = 100.0 [node name="Joint2D-Bone-37-Bone-24" type="PinJoint2D" parent="Softbody2d4/Bone-37"] visible = false -rotation = 1.56187 +rotation = 1.5708 node_a = NodePath("..") node_b = NodePath("../../Bone-24") bias = 0.2 @@ -24846,15 +30296,22 @@ softness = 100.0 [node name="Joint2D-Bone-37-Bone-36" type="PinJoint2D" parent="Softbody2d4/Bone-37"] visible = false -rotation = -3.15371 +rotation = -3.14159 node_a = NodePath("..") node_b = NodePath("../../Bone-36") bias = 0.2 softness = 100.0 +[node name="Joint2D-Bone-37-Bone-25" type="PinJoint2D" parent="Softbody2d4/Bone-37"] +visible = false +rotation = 0.732481 +node_a = NodePath("..") +node_b = NodePath("../../Bone-25") +bias = 0.2 +softness = 100.0 + [node name="Joint2D-Bone-37-Bone-38" type="PinJoint2D" parent="Softbody2d4/Bone-37"] visible = false -rotation = 0.00278966 node_a = NodePath("..") node_b = NodePath("../../Bone-38") bias = 0.2 @@ -24862,7 +30319,7 @@ softness = 100.0 [node name="Joint2D-Bone-37-Bone-39" type="PinJoint2D" parent="Softbody2d4/Bone-37"] visible = false -rotation = -2.35903 +rotation = -2.35619 node_a = NodePath("..") node_b = NodePath("../../Bone-39") bias = 0.2 @@ -24870,29 +30327,49 @@ softness = 100.0 [node name="Joint2D-Bone-37-Bone-40" type="PinJoint2D" parent="Softbody2d4/Bone-37"] visible = false -rotation = -1.56894 +rotation = -1.5708 node_a = NodePath("..") node_b = NodePath("../../Bone-40") bias = 0.2 softness = 100.0 -[node name="Bone-38" parent="Softbody2d4" instance=ExtResource("3_6ern4")] -position = Vector2(188.088, 259.543) +[node name="Joint2D-Bone-37-Bone-41" type="PinJoint2D" parent="Softbody2d4/Bone-37"] +visible = false +rotation = -0.732481 +node_a = NodePath("..") +node_b = NodePath("../../Bone-41") +bias = 0.2 +softness = 100.0 + +[node name="Bone-38" type="RigidBody2D" parent="Softbody2d4" instance=ExtResource("3_6ern4")] +position = Vector2(188, 259.585) +input_pickable = true mass = 0.0222222 physics_material_override = ExtResource("5_221ya") +script = ExtResource("11_tqnjl") +metadata/idx = 38 metadata/bone_name = &"Bone-38" [node name="CircleShape2D" type="CollisionShape2D" parent="Softbody2d4/Bone-38"] -shape = SubResource("CircleShape2D_tur3v") +shape = SubResource("CircleShape2D_fq4ub") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Softbody2d4/Bone-38"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-38") update_rotation = false update_scale = false +[node name="Joint2D-Bone-38-Bone-24" type="PinJoint2D" parent="Softbody2d4/Bone-38"] +visible = false +rotation = -3.87407 +node_a = NodePath("..") +node_b = NodePath("../../Bone-24") +bias = 0.2 +softness = 100.0 + [node name="Joint2D-Bone-38-Bone-25" type="PinJoint2D" parent="Softbody2d4/Bone-38"] visible = false -rotation = -4.71078 +rotation = 1.5708 node_a = NodePath("..") node_b = NodePath("../../Bone-25") bias = 0.2 @@ -24900,37 +30377,49 @@ softness = 100.0 [node name="Joint2D-Bone-38-Bone-37" type="PinJoint2D" parent="Softbody2d4/Bone-38"] visible = false -rotation = -3.1388 +rotation = -3.14159 node_a = NodePath("..") node_b = NodePath("../../Bone-37") bias = 0.2 softness = 100.0 +[node name="Joint2D-Bone-38-Bone-40" type="PinJoint2D" parent="Softbody2d4/Bone-38"] +visible = false +rotation = -2.40911 +node_a = NodePath("..") +node_b = NodePath("../../Bone-40") +bias = 0.2 +softness = 100.0 + [node name="Joint2D-Bone-38-Bone-41" type="PinJoint2D" parent="Softbody2d4/Bone-38"] visible = false -rotation = -1.57291 +rotation = -1.5708 node_a = NodePath("..") node_b = NodePath("../../Bone-41") bias = 0.2 softness = 100.0 -[node name="Bone-39" parent="Softbody2d4" instance=ExtResource("3_6ern4")] -position = Vector2(222.826, 185.684) +[node name="Bone-39" type="RigidBody2D" parent="Softbody2d4" instance=ExtResource("3_6ern4")] +position = Vector2(223, 185.67) +input_pickable = true mass = 0.0222222 physics_material_override = ExtResource("5_221ya") +script = ExtResource("11_tqnjl") +metadata/idx = 39 metadata/bone_name = &"Bone-39" [node name="CircleShape2D" type="CollisionShape2D" parent="Softbody2d4/Bone-39"] -shape = SubResource("CircleShape2D_tur3v") +shape = SubResource("CircleShape2D_fq4ub") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Softbody2d4/Bone-39"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-39") update_rotation = false update_scale = false [node name="Joint2D-Bone-39-Bone-29" type="PinJoint2D" parent="Softbody2d4/Bone-39"] visible = false -rotation = -3.92324 +rotation = -3.92699 node_a = NodePath("..") node_b = NodePath("../../Bone-29") bias = 0.2 @@ -24938,7 +30427,7 @@ softness = 100.0 [node name="Joint2D-Bone-39-Bone-33" type="PinJoint2D" parent="Softbody2d4/Bone-39"] visible = false -rotation = -3.14146 +rotation = -3.14159 node_a = NodePath("..") node_b = NodePath("../../Bone-33") bias = 0.2 @@ -24946,15 +30435,31 @@ softness = 100.0 [node name="Joint2D-Bone-39-Bone-36" type="PinJoint2D" parent="Softbody2d4/Bone-39"] visible = false -rotation = -4.71124 +rotation = 1.5708 node_a = NodePath("..") node_b = NodePath("../../Bone-36") bias = 0.2 softness = 100.0 +[node name="Joint2D-Bone-39-Bone-35" type="PinJoint2D" parent="Softbody2d4/Bone-39"] +visible = false +rotation = -2.29031 +node_a = NodePath("..") +node_b = NodePath("../../Bone-35") +bias = 0.2 +softness = 100.0 + +[node name="Joint2D-Bone-39-Bone-42" type="PinJoint2D" parent="Softbody2d4/Bone-39"] +visible = false +rotation = -1.5708 +node_a = NodePath("..") +node_b = NodePath("../../Bone-42") +bias = 0.2 +softness = 100.0 + [node name="Joint2D-Bone-39-Bone-37" type="PinJoint2D" parent="Softbody2d4/Bone-39"] visible = false -rotation = 0.782564 +rotation = 0.785398 node_a = NodePath("..") node_b = NodePath("../../Bone-37") bias = 0.2 @@ -24962,37 +30467,48 @@ softness = 100.0 [node name="Joint2D-Bone-39-Bone-40" type="PinJoint2D" parent="Softbody2d4/Bone-39"] visible = false -rotation = -0.00624497 node_a = NodePath("..") node_b = NodePath("../../Bone-40") bias = 0.2 softness = 100.0 -[node name="Joint2D-Bone-39-Bone-42" type="PinJoint2D" parent="Softbody2d4/Bone-39"] +[node name="Joint2D-Bone-39-Bone-43" type="PinJoint2D" parent="Softbody2d4/Bone-39"] visible = false -rotation = -1.57251 +rotation = -0.854252 node_a = NodePath("..") -node_b = NodePath("../../Bone-42") +node_b = NodePath("../../Bone-43") bias = 0.2 softness = 100.0 -[node name="Bone-40" parent="Softbody2d4" instance=ExtResource("3_6ern4")] -position = Vector2(223.044, 220.575) +[node name="Bone-40" type="RigidBody2D" parent="Softbody2d4" instance=ExtResource("3_6ern4")] +position = Vector2(223, 220.67) +input_pickable = true mass = 0.0222222 physics_material_override = ExtResource("5_221ya") +script = ExtResource("11_tqnjl") +metadata/idx = 40 metadata/bone_name = &"Bone-40" [node name="CircleShape2D" type="CollisionShape2D" parent="Softbody2d4/Bone-40"] -shape = SubResource("CircleShape2D_tur3v") +shape = SubResource("CircleShape2D_fq4ub") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Softbody2d4/Bone-40"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-40") update_rotation = false update_scale = false +[node name="Joint2D-Bone-40-Bone-36" type="PinJoint2D" parent="Softbody2d4/Bone-40"] +visible = false +rotation = -3.92699 +node_a = NodePath("..") +node_b = NodePath("../../Bone-36") +bias = 0.2 +softness = 100.0 + [node name="Joint2D-Bone-40-Bone-37" type="PinJoint2D" parent="Softbody2d4/Bone-40"] visible = false -rotation = -4.71054 +rotation = 1.5708 node_a = NodePath("..") node_b = NodePath("../../Bone-37") bias = 0.2 @@ -25000,45 +30516,80 @@ softness = 100.0 [node name="Joint2D-Bone-40-Bone-39" type="PinJoint2D" parent="Softbody2d4/Bone-40"] visible = false -rotation = -3.14784 +rotation = -3.14159 node_a = NodePath("..") node_b = NodePath("../../Bone-39") bias = 0.2 softness = 100.0 +[node name="Joint2D-Bone-40-Bone-38" type="PinJoint2D" parent="Softbody2d4/Bone-40"] +visible = false +rotation = 0.732481 +node_a = NodePath("..") +node_b = NodePath("../../Bone-38") +bias = 0.2 +softness = 100.0 + [node name="Joint2D-Bone-40-Bone-41" type="PinJoint2D" parent="Softbody2d4/Bone-40"] visible = false -rotation = -0.000852541 node_a = NodePath("..") node_b = NodePath("../../Bone-41") bias = 0.2 softness = 100.0 +[node name="Joint2D-Bone-40-Bone-42" type="PinJoint2D" parent="Softbody2d4/Bone-40"] +visible = false +rotation = -2.28043 +node_a = NodePath("..") +node_b = NodePath("../../Bone-42") +bias = 0.2 +softness = 100.0 + [node name="Joint2D-Bone-40-Bone-43" type="PinJoint2D" parent="Softbody2d4/Bone-40"] visible = false -rotation = -1.57281 +rotation = -1.5708 node_a = NodePath("..") node_b = NodePath("../../Bone-43") bias = 0.2 softness = 100.0 -[node name="Bone-41" parent="Softbody2d4" instance=ExtResource("3_6ern4")] -position = Vector2(223.077, 259.469) +[node name="Joint2D-Bone-40-Bone-44" type="PinJoint2D" parent="Softbody2d4/Bone-40"] +visible = false +rotation = -0.75548 +node_a = NodePath("..") +node_b = NodePath("../../Bone-44") +bias = 0.2 +softness = 100.0 + +[node name="Bone-41" type="RigidBody2D" parent="Softbody2d4" instance=ExtResource("3_6ern4")] +position = Vector2(223, 259.585) +input_pickable = true mass = 0.0222222 physics_material_override = ExtResource("5_221ya") +script = ExtResource("11_tqnjl") +metadata/idx = 41 metadata/bone_name = &"Bone-41" [node name="CircleShape2D" type="CollisionShape2D" parent="Softbody2d4/Bone-41"] -shape = SubResource("CircleShape2D_tur3v") +shape = SubResource("CircleShape2D_fq4ub") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Softbody2d4/Bone-41"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-41") update_rotation = false update_scale = false +[node name="Joint2D-Bone-41-Bone-37" type="PinJoint2D" parent="Softbody2d4/Bone-41"] +visible = false +rotation = -3.87407 +node_a = NodePath("..") +node_b = NodePath("../../Bone-37") +bias = 0.2 +softness = 100.0 + [node name="Joint2D-Bone-41-Bone-38" type="PinJoint2D" parent="Softbody2d4/Bone-41"] visible = false -rotation = 1.56868 +rotation = 1.5708 node_a = NodePath("..") node_b = NodePath("../../Bone-38") bias = 0.2 @@ -25046,37 +30597,65 @@ softness = 100.0 [node name="Joint2D-Bone-41-Bone-40" type="PinJoint2D" parent="Softbody2d4/Bone-41"] visible = false -rotation = -3.14245 +rotation = -3.14159 node_a = NodePath("..") node_b = NodePath("../../Bone-40") bias = 0.2 softness = 100.0 +[node name="Joint2D-Bone-41-Bone-43" type="PinJoint2D" parent="Softbody2d4/Bone-41"] +visible = false +rotation = -2.34014 +node_a = NodePath("..") +node_b = NodePath("../../Bone-43") +bias = 0.2 +softness = 100.0 + [node name="Joint2D-Bone-41-Bone-44" type="PinJoint2D" parent="Softbody2d4/Bone-41"] visible = false -rotation = -1.57338 +rotation = -1.5708 node_a = NodePath("..") node_b = NodePath("../../Bone-44") bias = 0.2 softness = 100.0 -[node name="Bone-42" parent="Softbody2d4" instance=ExtResource("3_6ern4")] -position = Vector2(263.687, 185.614) +[node name="Bone-42" type="RigidBody2D" parent="Softbody2d4" instance=ExtResource("3_6ern4")] +position = Vector2(263.75, 185.67) +input_pickable = true mass = 0.0222222 physics_material_override = ExtResource("5_221ya") +script = ExtResource("11_tqnjl") +metadata/idx = 42 metadata/bone_name = &"Bone-42" [node name="CircleShape2D" type="CollisionShape2D" parent="Softbody2d4/Bone-42"] -shape = SubResource("CircleShape2D_tur3v") +shape = SubResource("CircleShape2D_fq4ub") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Softbody2d4/Bone-42"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-42") update_rotation = false update_scale = false +[node name="Joint2D-Bone-42-Bone-43" type="PinJoint2D" parent="Softbody2d4/Bone-42"] +visible = false +rotation = 0.0161416 +node_a = NodePath("..") +node_b = NodePath("../../Bone-43") +bias = 0.2 +softness = 100.0 + +[node name="Joint2D-Bone-42-Bone-33" type="PinJoint2D" parent="Softbody2d4/Bone-42"] +visible = false +rotation = -4.00275 +node_a = NodePath("..") +node_b = NodePath("../../Bone-33") +bias = 0.2 +softness = 100.0 + [node name="Joint2D-Bone-42-Bone-35" type="PinJoint2D" parent="Softbody2d4/Bone-42"] visible = false -rotation = -3.16243 +rotation = -3.16459 node_a = NodePath("..") node_b = NodePath("../../Bone-35") bias = 0.2 @@ -25084,75 +30663,107 @@ softness = 100.0 [node name="Joint2D-Bone-42-Bone-39" type="PinJoint2D" parent="Softbody2d4/Bone-42"] visible = false -rotation = 1.56908 +rotation = 1.5708 node_a = NodePath("..") node_b = NodePath("../../Bone-39") bias = 0.2 softness = 100.0 -[node name="Joint2D-Bone-42-Bone-43" type="PinJoint2D" parent="Softbody2d4/Bone-42"] +[node name="Joint2D-Bone-42-Bone-40" type="PinJoint2D" parent="Softbody2d4/Bone-42"] visible = false -rotation = 0.0142497 +rotation = 0.86116 node_a = NodePath("..") -node_b = NodePath("../../Bone-43") +node_b = NodePath("../../Bone-40") bias = 0.2 softness = 100.0 -[node name="Bone-43" parent="Softbody2d4" instance=ExtResource("3_6ern4")] -position = Vector2(263.19, 220.494) +[node name="Bone-43" type="RigidBody2D" parent="Softbody2d4" instance=ExtResource("3_6ern4")] +position = Vector2(263.185, 220.67) +input_pickable = true mass = 0.0222222 physics_material_override = ExtResource("5_221ya") +script = ExtResource("11_tqnjl") +metadata/idx = 43 metadata/bone_name = &"Bone-43" [node name="CircleShape2D" type="CollisionShape2D" parent="Softbody2d4/Bone-43"] -shape = SubResource("CircleShape2D_tur3v") +shape = SubResource("CircleShape2D_fq4ub") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Softbody2d4/Bone-43"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-43") update_rotation = false update_scale = false +[node name="Joint2D-Bone-43-Bone-42" type="PinJoint2D" parent="Softbody2d4/Bone-43"] +visible = false +rotation = -3.12545 +node_a = NodePath("..") +node_b = NodePath("../../Bone-42") +bias = 0.2 +softness = 100.0 + +[node name="Joint2D-Bone-43-Bone-39" type="PinJoint2D" parent="Softbody2d4/Bone-43"] +visible = false +rotation = -3.99584 +node_a = NodePath("..") +node_b = NodePath("../../Bone-39") +bias = 0.2 +softness = 100.0 + [node name="Joint2D-Bone-43-Bone-40" type="PinJoint2D" parent="Softbody2d4/Bone-43"] visible = false -rotation = 1.56879 +rotation = 1.5708 node_a = NodePath("..") node_b = NodePath("../../Bone-40") bias = 0.2 softness = 100.0 -[node name="Joint2D-Bone-43-Bone-42" type="PinJoint2D" parent="Softbody2d4/Bone-43"] +[node name="Joint2D-Bone-43-Bone-41" type="PinJoint2D" parent="Softbody2d4/Bone-43"] visible = false -rotation = -3.12734 +rotation = 0.801453 node_a = NodePath("..") -node_b = NodePath("../../Bone-42") +node_b = NodePath("../../Bone-41") bias = 0.2 softness = 100.0 [node name="Joint2D-Bone-43-Bone-44" type="PinJoint2D" parent="Softbody2d4/Bone-43"] visible = false -rotation = 0.0899185 +rotation = 0.0905025 node_a = NodePath("..") node_b = NodePath("../../Bone-44") bias = 0.2 softness = 100.0 -[node name="Bone-44" parent="Softbody2d4" instance=ExtResource("3_6ern4")] -position = Vector2(259.684, 259.374) +[node name="Bone-44" type="RigidBody2D" parent="Softbody2d4" instance=ExtResource("3_6ern4")] +position = Vector2(259.653, 259.585) +input_pickable = true mass = 0.0222222 physics_material_override = ExtResource("5_221ya") +script = ExtResource("11_tqnjl") +metadata/idx = 44 metadata/bone_name = &"Bone-44" [node name="CircleShape2D" type="CollisionShape2D" parent="Softbody2d4/Bone-44"] -shape = SubResource("CircleShape2D_tur3v") +shape = SubResource("CircleShape2D_fq4ub") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="Softbody2d4/Bone-44"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-44") update_rotation = false update_scale = false +[node name="Joint2D-Bone-44-Bone-40" type="PinJoint2D" parent="Softbody2d4/Bone-44"] +visible = false +rotation = -3.89707 +node_a = NodePath("..") +node_b = NodePath("../../Bone-40") +bias = 0.2 +softness = 100.0 + [node name="Joint2D-Bone-44-Bone-41" type="PinJoint2D" parent="Softbody2d4/Bone-44"] visible = false -rotation = 1.56821 +rotation = 1.5708 node_a = NodePath("..") node_b = NodePath("../../Bone-41") bias = 0.2 @@ -25160,3486 +30771,3562 @@ softness = 100.0 [node name="Joint2D-Bone-44-Bone-43" type="PinJoint2D" parent="Softbody2d4/Bone-44"] visible = false -rotation = -3.05167 +rotation = -3.05109 node_a = NodePath("..") node_b = NodePath("../../Bone-43") bias = 0.2 softness = 100.0 [node name="SoftBody2D" type="Polygon2D" parent="."] -position = Vector2(922, -801) +position = Vector2(1099, -325) texture = ExtResource("4_xackp") skeleton = NodePath("Skeleton2D") -polygon = PackedVector2Array(70, 3, 67, 3, 65, 5, 65, 6, 61, 6, 60, 7, 60, 8, 58, 9, 55, 9, 53, 11, 51, 11, 49, 14, 44, 14, 39, 18, 34, 18, 29, 22, 24, 22, 22, 23, 22, 25, 14, 28, 14, 30, 9, 30, 9, 32, 6, 32, 4, 34, 3, 34, 3, 37, 5, 37, 5, 42, 6, 42, 6, 105, 6, 107, 14, 111, 18, 111, 22, 114, 22, 115, 26, 115, 26, 117, 30, 118, 30, 119, 36, 119, 42, 122, 42, 123, 50, 125, 50, 127, 67, 127, 68, 125, 70, 125, 70, 123, 76, 123, 78, 122, 78, 119, 83, 118, 86, 118, 86, 116, 88, 115, 92, 115, 95, 112, 95, 111, 98, 110, 100, 110, 102, 107, 106, 107, 106, 105, 110, 103, 113, 103, 115, 100, 116, 100, 116, 87, 114, 83, 114, 35, 113, 34, 110, 34, 110, 31, 109, 30, 106, 30, 106, 28, 105, 27, 103, 27, 97, 21, 95, 21, 94, 18, 90, 18, 90, 14, 87, 14, 85, 11, 85, 10, 82, 10, 74, 3, 74, 2, 70, 2, 17.9889, 47.1657, 18.0634, 76.9492, 17.8574, 77.1573, 6, 77.106, 6, 47.0502, 17.8574, 77.1573, 18.0321, 106.843, 17.8732, 107.002, 6, 106.981, 6, 77.106, 17.8732, 107.002, 17.8623, 111, 14, 111, 6, 107, 6, 106.981, 48.3045, 16.9207, 48.0314, 46.9468, 18.27, 46.8876, 18.1774, 26.4335, 22, 25, 22, 23, 24, 22, 29, 22, 34, 18, 39, 18, 40.6115, 16.7108, 48.0146, 16.6306, 18.27, 46.8876, 17.9889, 47.1657, 6, 47.0502, 6, 42, 5, 42, 5, 37, 3, 37, 3, 34, 4, 34, 6, 32, 9, 32, 9, 30, 14, 30, 14, 28, 18.1774, 26.4335, 48.0314, 46.9468, 48.1521, 47.0678, 48.034, 76.9832, 18.0634, 76.9492, 17.9889, 47.1657, 18.27, 46.8876, 48.034, 76.9832, 48.1953, 77.1463, 47.8704, 107.011, 47.87, 107.011, 18.0321, 106.843, 17.8574, 77.1573, 18.0634, 76.9492, 47.87, 107.011, 47.9535, 124.488, 42, 123, 42, 122, 36, 119, 30, 119, 30, 118, 26, 117, 26, 115, 22, 115, 22, 114, 18, 111, 17.8623, 111, 17.8732, 107.002, 18.0321, 106.843, 74, 3, 78.0528, 6.5462, 77.9174, 16.902, 48.3045, 16.9207, 48.0146, 16.6306, 48.0114, 14, 49, 14, 51, 11, 53, 11, 55, 9, 58, 9, 60, 8, 60, 7, 61, 6, 65, 6, 65, 5, 67, 3, 70, 3, 70, 2, 74, 2, 48.0146, 16.6306, 40.6115, 16.7108, 44, 14, 48.0114, 14, 78.2491, 17.2332, 78.0456, 47.1114, 77.9989, 47.1577, 48.1521, 47.0678, 48.0314, 46.9468, 48.3045, 16.9207, 77.9174, 16.902, 77.9989, 47.1577, 78.1714, 77.1155, 78.0572, 77.2308, 48.1953, 77.1463, 48.034, 76.9832, 48.1521, 47.0678, 78.0572, 77.2308, 78.2409, 106.808, 78.0247, 107.025, 47.8704, 107.011, 48.1953, 77.1463, 78.0247, 107.025, 77.9601, 122.02, 76, 123, 70, 123, 70, 125, 68, 125, 67, 127, 50, 127, 50, 125, 47.9535, 124.488, 47.87, 107.011, 47.8704, 107.011, 90, 18, 94, 18, 95, 21, 97, 21, 103, 27, 105, 27, 106, 28, 106, 30, 108.159, 30, 108.293, 46.9058, 108.051, 47.146, 78.0456, 47.1114, 78.2491, 17.2332, 90, 17.2136, 82, 10, 85, 10, 85, 11, 87, 14, 90, 14, 90, 17.2136, 78.2491, 17.2332, 77.9174, 16.902, 78.0528, 6.5462, 110, 31, 110, 34, 113, 34, 114, 35, 114, 46.984, 108.293, 46.9058, 108.159, 30, 109, 30, 108.051, 47.146, 107.853, 76.9033, 78.1714, 77.1155, 77.9989, 47.1577, 78.0456, 47.1114, 114, 46.984, 114, 77.2545, 108.263, 77.3091, 107.853, 76.9033, 108.051, 47.146, 108.293, 46.9058, 108.263, 77.3091, 108.138, 107.16, 108.127, 107.171, 78.2409, 106.808, 78.0572, 77.2308, 78.1714, 77.1155, 107.853, 76.9033, 101.936, 107.096, 100, 110, 98, 110, 95, 111, 95, 112, 92, 115, 88, 115, 86, 116, 86, 118, 83, 118, 78, 119, 78, 122, 77.9601, 122.02, 78.0247, 107.025, 78.2409, 106.808, 114, 83, 116, 87, 116, 100, 115, 100, 113, 103, 110, 103, 108.152, 103.924, 108.263, 77.3091, 114, 77.2545) -polygons = [PackedInt32Array(95, 91, 92), PackedInt32Array(92, 93, 94), PackedInt32Array(94, 95, 92), PackedInt32Array(100, 96, 97), PackedInt32Array(97, 98, 99), PackedInt32Array(99, 100, 97), PackedInt32Array(105, 101, 102), PackedInt32Array(102, 103, 104), PackedInt32Array(104, 105, 102), PackedInt32Array(117, 106, 107), PackedInt32Array(107, 108, 109), PackedInt32Array(110, 111, 112), PackedInt32Array(113, 114, 115), PackedInt32Array(115, 116, 117), PackedInt32Array(117, 107, 109), PackedInt32Array(110, 112, 113), PackedInt32Array(113, 115, 117), PackedInt32Array(117, 109, 110), PackedInt32Array(110, 113, 117), PackedInt32Array(132, 118, 119), PackedInt32Array(119, 120, 121), PackedInt32Array(121, 122, 123), PackedInt32Array(123, 124, 125), PackedInt32Array(126, 127, 128), PackedInt32Array(128, 129, 130), PackedInt32Array(130, 131, 132), PackedInt32Array(132, 119, 121), PackedInt32Array(123, 125, 126), PackedInt32Array(130, 132, 121), PackedInt32Array(123, 126, 128), PackedInt32Array(128, 130, 121), PackedInt32Array(121, 123, 128), PackedInt32Array(138, 133, 134), PackedInt32Array(134, 135, 136), PackedInt32Array(136, 137, 138), PackedInt32Array(138, 134, 136), PackedInt32Array(145, 139, 140), PackedInt32Array(140, 141, 142), PackedInt32Array(142, 143, 144), PackedInt32Array(144, 145, 140), PackedInt32Array(140, 142, 144), PackedInt32Array(160, 146, 147), PackedInt32Array(147, 148, 149), PackedInt32Array(150, 151, 152), PackedInt32Array(152, 153, 154), PackedInt32Array(154, 155, 156), PackedInt32Array(157, 158, 159), PackedInt32Array(159, 160, 147), PackedInt32Array(147, 149, 150), PackedInt32Array(150, 152, 154), PackedInt32Array(154, 156, 157), PackedInt32Array(159, 147, 150), PackedInt32Array(150, 154, 157), PackedInt32Array(157, 159, 150), PackedInt32Array(161, 162, 163), PackedInt32Array(163, 164, 165), PackedInt32Array(165, 166, 167), PackedInt32Array(167, 168, 169), PackedInt32Array(169, 170, 171), PackedInt32Array(172, 173, 174), PackedInt32Array(175, 176, 177), PackedInt32Array(178, 179, 180), PackedInt32Array(161, 163, 165), PackedInt32Array(165, 167, 169), PackedInt32Array(172, 174, 175), PackedInt32Array(175, 177, 178), PackedInt32Array(178, 180, 161), PackedInt32Array(161, 165, 169), PackedInt32Array(171, 172, 175), PackedInt32Array(175, 178, 161), PackedInt32Array(161, 169, 171), PackedInt32Array(171, 175, 161), PackedInt32Array(184, 181, 182), PackedInt32Array(182, 183, 184), PackedInt32Array(191, 185, 186), PackedInt32Array(186, 187, 188), PackedInt32Array(188, 189, 190), PackedInt32Array(190, 191, 186), PackedInt32Array(186, 188, 190), PackedInt32Array(197, 192, 193), PackedInt32Array(193, 194, 195), PackedInt32Array(195, 196, 197), PackedInt32Array(197, 193, 195), PackedInt32Array(202, 198, 199), PackedInt32Array(199, 200, 201), PackedInt32Array(201, 202, 199), PackedInt32Array(214, 203, 204), PackedInt32Array(204, 205, 206), PackedInt32Array(206, 207, 208), PackedInt32Array(208, 209, 210), PackedInt32Array(211, 212, 213), PackedInt32Array(213, 214, 204), PackedInt32Array(206, 208, 210), PackedInt32Array(211, 213, 204), PackedInt32Array(206, 210, 211), PackedInt32Array(211, 204, 206), PackedInt32Array(215, 216, 217), PackedInt32Array(217, 218, 219), PackedInt32Array(219, 220, 221), PackedInt32Array(222, 223, 224), PackedInt32Array(224, 225, 226), PackedInt32Array(226, 227, 228), PackedInt32Array(215, 217, 219), PackedInt32Array(219, 221, 222), PackedInt32Array(222, 224, 226), PackedInt32Array(226, 228, 215), PackedInt32Array(215, 219, 222), PackedInt32Array(222, 226, 215), PackedInt32Array(229, 230, 231), PackedInt32Array(232, 233, 234), PackedInt32Array(234, 235, 236), PackedInt32Array(236, 237, 229), PackedInt32Array(229, 231, 232), PackedInt32Array(232, 234, 236), PackedInt32Array(236, 229, 232), PackedInt32Array(245, 238, 239), PackedInt32Array(239, 240, 241), PackedInt32Array(241, 242, 243), PackedInt32Array(243, 244, 245), PackedInt32Array(239, 241, 243), PackedInt32Array(243, 245, 239), PackedInt32Array(250, 246, 247), PackedInt32Array(247, 248, 249), PackedInt32Array(249, 250, 247), PackedInt32Array(256, 251, 252), PackedInt32Array(252, 253, 254), PackedInt32Array(254, 255, 256), PackedInt32Array(256, 252, 254), PackedInt32Array(263, 257, 258), PackedInt32Array(258, 259, 260), PackedInt32Array(260, 261, 262), PackedInt32Array(262, 263, 258), PackedInt32Array(258, 260, 262), PackedInt32Array(278, 264, 265), PackedInt32Array(267, 268, 269), PackedInt32Array(271, 272, 273), PackedInt32Array(274, 275, 276), PackedInt32Array(277, 278, 265), PackedInt32Array(267, 269, 270), PackedInt32Array(271, 273, 274), PackedInt32Array(274, 276, 277), PackedInt32Array(277, 265, 266), PackedInt32Array(267, 270, 271), PackedInt32Array(271, 274, 277), PackedInt32Array(277, 266, 267), PackedInt32Array(267, 271, 277), PackedInt32Array(279, 280, 281), PackedInt32Array(282, 283, 284), PackedInt32Array(284, 285, 286), PackedInt32Array(286, 287, 279), PackedInt32Array(279, 281, 282), PackedInt32Array(282, 284, 286), PackedInt32Array(286, 279, 282)] -bones = ["Bone-0", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-1", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-2", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-3", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-4", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-5", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-6", PackedFloat32Array(0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-7", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-8", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-9", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-10", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0.7, 0.7, 1, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-11", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-12", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7), "Bone-13", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7)] -internal_vertex_count = 197 +polygon = PackedVector2Array(70, 3, 67, 3, 65, 5, 65, 6, 61, 6, 60, 7, 60, 8, 58, 9, 55, 9, 53, 11, 51, 11, 49, 14, 44, 14, 39, 18, 34, 18, 29, 22, 24, 22, 22, 23, 22, 25, 14, 28, 14, 30, 9, 30, 9, 32, 6, 32, 4, 34, 3, 34, 3, 37, 5, 37, 5, 42, 6, 42, 6, 105, 6, 107, 14, 111, 18, 111, 22, 114, 22, 115, 26, 115, 26, 117, 30, 118, 30, 119, 36, 119, 42, 122, 42, 123, 50, 125, 50, 127, 67, 127, 68, 125, 70, 125, 70, 123, 76, 123, 78, 122, 78, 119, 83, 118, 86, 118, 86, 116, 88, 115, 92, 115, 95, 112, 95, 111, 98, 110, 100, 110, 102, 107, 106, 107, 106, 105, 110, 103, 113, 103, 115, 100, 116, 100, 116, 87, 114, 83, 114, 35, 113, 34, 110, 34, 110, 31, 109, 30, 106, 30, 106, 28, 105, 27, 103, 27, 97, 21, 95, 21, 94, 18, 90, 18, 90, 14, 87, 14, 85, 11, 85, 10, 82, 10, 74, 3, 74, 2, 70, 2, 18, 77, 6, 77, 6, 62, 18, 62, 18, 62, 6, 62, 6, 47, 18, 47, 18, 107, 6, 107, 6, 92, 18, 92, 18, 92, 6, 92, 6, 77, 18, 77, 18, 111, 14, 111, 6, 107, 18, 107, 33, 32, 18, 32, 18, 26.5, 22, 25, 22, 23, 24, 22, 29, 22, 33, 18.8, 48, 47, 33, 47, 33, 32, 48, 32, 33, 47, 18, 47, 18, 32, 33, 32, 48, 32, 33, 32, 33, 18.8, 34, 18, 39, 18, 40.25, 17, 48, 17, 18, 47, 6, 47, 6, 42, 5, 42, 5, 37, 3, 37, 3, 34, 4, 34, 6, 32, 18, 32, 18, 32, 9, 32, 9, 30, 14, 30, 14, 28, 18, 26.5, 33, 62, 18, 62, 18, 47, 33, 47, 48, 77, 33, 77, 33, 62, 48, 62, 33, 77, 18, 77, 18, 62, 33, 62, 48, 62, 33, 62, 33, 47, 48, 47, 33, 92, 18, 92, 18, 77, 33, 77, 48, 107, 33, 107, 33, 92, 48, 92, 33, 107, 18, 107, 18, 92, 33, 92, 48, 92, 33, 92, 33, 77, 48, 77, 33, 119, 30, 119, 30, 118, 26, 117, 26, 115, 22, 115, 22, 114, 18, 111, 18, 107, 33, 107, 48, 124.5, 42, 123, 42, 122, 48, 122, 48, 122, 42, 122, 36, 119, 33, 119, 33, 107, 48, 107, 74, 3, 78, 6.5, 78, 17, 63, 17, 63, 6, 65, 6, 65, 5, 67, 3, 70, 3, 70, 2, 74, 2, 63, 17, 48, 17, 48, 14, 49, 14, 51, 11, 53, 11, 55, 9, 58, 9, 60, 8, 60, 7, 61, 6, 63, 6, 48, 17, 40.25, 17, 44, 14, 48, 14, 63, 32, 48, 32, 48, 17, 63, 17, 78, 47, 63, 47, 63, 32, 78, 32, 63, 47, 48, 47, 48, 32, 63, 32, 78, 32, 63, 32, 63, 17, 78, 17, 63, 62, 48, 62, 48, 47, 63, 47, 78, 77, 63, 77, 63, 62, 78, 62, 63, 77, 48, 77, 48, 62, 63, 62, 78, 62, 63, 62, 63, 47, 78, 47, 63, 92, 48, 92, 48, 77, 63, 77, 78, 107, 63, 107, 63, 92, 78, 92, 63, 107, 48, 107, 48, 92, 63, 92, 78, 92, 63, 92, 63, 77, 78, 77, 63, 122, 48, 122, 48, 107, 63, 107, 76, 123, 70, 123, 70, 125, 68, 125, 67, 127, 63, 127, 63, 122, 78, 122, 63, 127, 50, 127, 50, 125, 48, 124.5, 48, 122, 63, 122, 78, 122, 63, 122, 63, 107, 78, 107, 90, 18, 93, 18, 93, 32, 78, 32, 78, 17, 90, 17, 108, 47, 93, 47, 93, 32, 108, 32, 93, 47, 78, 47, 78, 32, 93, 32, 95, 21, 97, 21, 103, 27, 105, 27, 106, 28, 106, 30, 108, 30, 108, 32, 93, 32, 93, 18, 94, 18, 82, 10, 85, 10, 85, 11, 87, 14, 90, 14, 90, 17, 78, 17, 78, 6.5, 110, 31, 110, 32, 108, 32, 108, 30, 109, 30, 110, 34, 113, 34, 114, 35, 114, 47, 108, 47, 108, 32, 110, 32, 93, 62, 78, 62, 78, 47, 93, 47, 108, 77, 93, 77, 93, 62, 108, 62, 93, 77, 78, 77, 78, 62, 93, 62, 108, 62, 93, 62, 93, 47, 108, 47, 114, 62, 108, 62, 108, 47, 114, 47, 114, 77, 108, 77, 108, 62, 114, 62, 93, 92, 78, 92, 78, 77, 93, 77, 108, 104, 106, 105, 106, 107, 93, 107, 93, 92, 108, 92, 93, 107, 78, 107, 78, 92, 93, 92, 108, 92, 93, 92, 93, 77, 108, 77, 93, 114, 92, 115, 88, 115, 86, 116, 86, 118, 83, 118, 78, 119, 78, 107, 93, 107, 100, 110, 98, 110, 95, 111, 95, 112, 93, 114, 93, 107, 102, 107, 114, 83, 116, 87, 116, 92, 108, 92, 108, 77, 114, 77, 116, 100, 115, 100, 113, 103, 110, 103, 108, 104, 108, 92, 116, 92) +polygons = [PackedInt32Array(94, 91, 92), PackedInt32Array(92, 93, 94), PackedInt32Array(98, 95, 96), PackedInt32Array(96, 97, 98), PackedInt32Array(102, 99, 100), PackedInt32Array(100, 101, 102), PackedInt32Array(106, 103, 104), PackedInt32Array(104, 105, 106), PackedInt32Array(110, 107, 108), PackedInt32Array(108, 109, 110), PackedInt32Array(118, 111, 112), PackedInt32Array(112, 113, 114), PackedInt32Array(114, 115, 116), PackedInt32Array(117, 118, 112), PackedInt32Array(112, 114, 116), PackedInt32Array(116, 117, 112), PackedInt32Array(122, 119, 120), PackedInt32Array(120, 121, 122), PackedInt32Array(126, 123, 124), PackedInt32Array(124, 125, 126), PackedInt32Array(133, 127, 128), PackedInt32Array(128, 129, 130), PackedInt32Array(131, 132, 133), PackedInt32Array(128, 130, 131), PackedInt32Array(131, 133, 128), PackedInt32Array(143, 134, 135), PackedInt32Array(136, 137, 138), PackedInt32Array(138, 139, 140), PackedInt32Array(141, 142, 143), PackedInt32Array(143, 135, 136), PackedInt32Array(138, 140, 141), PackedInt32Array(143, 136, 138), PackedInt32Array(138, 141, 143), PackedInt32Array(144, 145, 146), PackedInt32Array(147, 148, 149), PackedInt32Array(144, 146, 147), PackedInt32Array(147, 149, 144), PackedInt32Array(153, 150, 151), PackedInt32Array(151, 152, 153), PackedInt32Array(157, 154, 155), PackedInt32Array(155, 156, 157), PackedInt32Array(161, 158, 159), PackedInt32Array(159, 160, 161), PackedInt32Array(165, 162, 163), PackedInt32Array(163, 164, 165), PackedInt32Array(169, 166, 167), PackedInt32Array(167, 168, 169), PackedInt32Array(173, 170, 171), PackedInt32Array(171, 172, 173), PackedInt32Array(177, 174, 175), PackedInt32Array(175, 176, 177), PackedInt32Array(181, 178, 179), PackedInt32Array(179, 180, 181), PackedInt32Array(191, 182, 183), PackedInt32Array(184, 185, 186), PackedInt32Array(186, 187, 188), PackedInt32Array(188, 189, 190), PackedInt32Array(191, 183, 184), PackedInt32Array(186, 188, 190), PackedInt32Array(190, 191, 184), PackedInt32Array(184, 186, 190), PackedInt32Array(195, 192, 193), PackedInt32Array(193, 194, 195), PackedInt32Array(201, 196, 197), PackedInt32Array(198, 199, 200), PackedInt32Array(200, 201, 197), PackedInt32Array(197, 198, 200), PackedInt32Array(202, 203, 204), PackedInt32Array(204, 205, 206), PackedInt32Array(207, 208, 209), PackedInt32Array(210, 211, 212), PackedInt32Array(204, 206, 207), PackedInt32Array(207, 209, 210), PackedInt32Array(210, 212, 202), PackedInt32Array(202, 204, 207), PackedInt32Array(207, 210, 202), PackedInt32Array(224, 213, 214), PackedInt32Array(214, 215, 216), PackedInt32Array(216, 217, 218), PackedInt32Array(218, 219, 220), PackedInt32Array(221, 222, 223), PackedInt32Array(214, 216, 218), PackedInt32Array(221, 223, 224), PackedInt32Array(214, 218, 220), PackedInt32Array(221, 224, 214), PackedInt32Array(214, 220, 221), PackedInt32Array(228, 225, 226), PackedInt32Array(226, 227, 228), PackedInt32Array(232, 229, 230), PackedInt32Array(230, 231, 232), PackedInt32Array(236, 233, 234), PackedInt32Array(234, 235, 236), PackedInt32Array(240, 237, 238), PackedInt32Array(238, 239, 240), PackedInt32Array(244, 241, 242), PackedInt32Array(242, 243, 244), PackedInt32Array(248, 245, 246), PackedInt32Array(246, 247, 248), PackedInt32Array(252, 249, 250), PackedInt32Array(250, 251, 252), PackedInt32Array(256, 253, 254), PackedInt32Array(254, 255, 256), PackedInt32Array(260, 257, 258), PackedInt32Array(258, 259, 260), PackedInt32Array(264, 261, 262), PackedInt32Array(262, 263, 264), PackedInt32Array(268, 265, 266), PackedInt32Array(266, 267, 268), PackedInt32Array(272, 269, 270), PackedInt32Array(270, 271, 272), PackedInt32Array(276, 273, 274), PackedInt32Array(274, 275, 276), PackedInt32Array(280, 277, 278), PackedInt32Array(278, 279, 280), PackedInt32Array(288, 281, 282), PackedInt32Array(282, 283, 284), PackedInt32Array(284, 285, 286), PackedInt32Array(287, 288, 282), PackedInt32Array(282, 284, 286), PackedInt32Array(286, 287, 282), PackedInt32Array(294, 289, 290), PackedInt32Array(291, 292, 293), PackedInt32Array(294, 290, 291), PackedInt32Array(291, 293, 294), PackedInt32Array(298, 295, 296), PackedInt32Array(296, 297, 298), PackedInt32Array(299, 300, 301), PackedInt32Array(301, 302, 303), PackedInt32Array(303, 304, 299), PackedInt32Array(299, 301, 303), PackedInt32Array(308, 305, 306), PackedInt32Array(306, 307, 308), PackedInt32Array(312, 309, 310), PackedInt32Array(310, 311, 312), PackedInt32Array(313, 314, 315), PackedInt32Array(315, 316, 317), PackedInt32Array(318, 319, 320), PackedInt32Array(321, 322, 323), PackedInt32Array(315, 317, 318), PackedInt32Array(318, 320, 321), PackedInt32Array(321, 323, 313), PackedInt32Array(313, 315, 318), PackedInt32Array(318, 321, 313), PackedInt32Array(324, 325, 326), PackedInt32Array(327, 328, 329), PackedInt32Array(330, 331, 324), PackedInt32Array(324, 326, 327), PackedInt32Array(327, 329, 330), PackedInt32Array(330, 324, 327), PackedInt32Array(336, 332, 333), PackedInt32Array(333, 334, 335), PackedInt32Array(335, 336, 333), PackedInt32Array(337, 338, 339), PackedInt32Array(339, 340, 341), PackedInt32Array(341, 342, 343), PackedInt32Array(337, 339, 341), PackedInt32Array(341, 343, 337), PackedInt32Array(347, 344, 345), PackedInt32Array(345, 346, 347), PackedInt32Array(351, 348, 349), PackedInt32Array(349, 350, 351), PackedInt32Array(355, 352, 353), PackedInt32Array(353, 354, 355), PackedInt32Array(359, 356, 357), PackedInt32Array(357, 358, 359), PackedInt32Array(363, 360, 361), PackedInt32Array(361, 362, 363), PackedInt32Array(367, 364, 365), PackedInt32Array(365, 366, 367), PackedInt32Array(371, 368, 369), PackedInt32Array(369, 370, 371), PackedInt32Array(377, 372, 373), PackedInt32Array(373, 374, 375), PackedInt32Array(375, 376, 377), PackedInt32Array(377, 373, 375), PackedInt32Array(381, 378, 379), PackedInt32Array(379, 380, 381), PackedInt32Array(385, 382, 383), PackedInt32Array(383, 384, 385), PackedInt32Array(394, 386, 387), PackedInt32Array(389, 390, 391), PackedInt32Array(391, 392, 393), PackedInt32Array(393, 394, 387), PackedInt32Array(389, 391, 393), PackedInt32Array(393, 387, 388), PackedInt32Array(388, 389, 393), PackedInt32Array(401, 395, 396), PackedInt32Array(397, 398, 399), PackedInt32Array(400, 401, 396), PackedInt32Array(397, 399, 400), PackedInt32Array(400, 396, 397), PackedInt32Array(402, 403, 404), PackedInt32Array(404, 405, 406), PackedInt32Array(406, 407, 402), PackedInt32Array(402, 404, 406), PackedInt32Array(414, 408, 409), PackedInt32Array(409, 410, 411), PackedInt32Array(411, 412, 413), PackedInt32Array(413, 414, 409), PackedInt32Array(409, 411, 413)] +bones = ["Bone-0", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-1", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-2", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-3", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-4", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 1, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-5", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-6", PackedFloat32Array(1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-7", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-8", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-9", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-10", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-11", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-12", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0), "Bone-13", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1)] +internal_vertex_count = 324 script = ExtResource("2_2dapw") +min_area = 0.3 rigidbody_scene = ExtResource("3_6ern4") [node name="Skeleton2D" type="Skeleton2D" parent="SoftBody2D"] visible = false -modification_stack = SubResource("SkeletonModificationStack2D_htp3x") +modification_stack = SubResource("SkeletonModificationStack2D_t0cnb") [node name="Bone-0" type="Bone2D" parent="SoftBody2D/Skeleton2D"] -position = Vector2(12.0317, 62.1038) -rotation = -0.00800391 -rest = Transform2D(0.999968, -0.00800383, 0.00800383, 0.999968, 12.0317, 62.1038) +position = Vector2(12, 62) +rotation = 0.96007 +rest = Transform2D(0.573462, 0.819232, -0.819232, 0.573462, 12, 62) auto_calculate_length_and_angle = false length = 30.0 bone_angle = 0.0 -metadata/vert_owned = [91, 92, 93, 94, 95] -metadata/connected_nodes_paths = [NodePath("Bone-1"), NodePath("Bone-2"), NodePath("Bone-3"), NodePath("Bone-4")] +metadata/vert_owned = [91, 92, 93, 94, 95, 96, 97, 98] +metadata/idx = 0 +metadata/connected_nodes_paths = [NodePath("Bone-1"), NodePath("Bone-3"), NodePath("Bone-4"), NodePath("Bone-2")] +metadata/connected_nodes_idx = [1, 3, 4, 2] metadata/_local_pose_override_enabled_ = true [node name="Bone-1" type="Bone2D" parent="SoftBody2D/Skeleton2D"] -position = Vector2(12.016, 94.053) -rotation = -0.0983359 -rest = Transform2D(0.995169, -0.0981775, 0.0981775, 0.995169, 12.016, 94.053) +position = Vector2(12, 94) +rotation = -0.99004 +rest = Transform2D(0.548656, -0.836048, 0.836048, 0.548656, 12, 94) auto_calculate_length_and_angle = false length = 30.0 bone_angle = 0.0 -metadata/vert_owned = [96, 97, 98, 99, 100, 101, 102, 103, 104, 105] -metadata/connected_nodes_paths = [NodePath("Bone-0"), NodePath("Bone-3"), NodePath("Bone-4"), NodePath("Bone-5")] +metadata/vert_owned = [99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110] +metadata/idx = 1 +metadata/connected_nodes_paths = [NodePath("Bone-5"), NodePath("Bone-0"), NodePath("Bone-3"), NodePath("Bone-4")] +metadata/connected_nodes_idx = [5, 0, 3, 4] metadata/_local_pose_override_enabled_ = true [node name="Bone-2" type="Bone2D" parent="SoftBody2D/Skeleton2D"] -position = Vector2(25.6523, 31.8982) -rotation = -0.587686 -rest = Transform2D(0.832226, -0.554437, 0.554437, 0.832226, 25.6523, 31.8982) +position = Vector2(25.5, 32) +rest = Transform2D(1, 0, 0, 1, 25.5, 32) auto_calculate_length_and_angle = false length = 30.0 bone_angle = 0.0 -metadata/vert_owned = [106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132] -metadata/connected_nodes_paths = [NodePath("Bone-0"), NodePath("Bone-3"), NodePath("Bone-6"), NodePath("Bone-7")] +metadata/vert_owned = [111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149] +metadata/idx = 2 +metadata/connected_nodes_paths = [NodePath("Bone-0"), NodePath("Bone-3"), NodePath("Bone-7"), NodePath("Bone-8"), NodePath("Bone-6")] +metadata/connected_nodes_idx = [0, 3, 7, 8, 6] metadata/_local_pose_override_enabled_ = true [node name="Bone-3" type="Bone2D" parent="SoftBody2D/Skeleton2D"] -position = Vector2(33.0705, 61.9354) -rotation = 1.57227 -rest = Transform2D(-0.0014687, 0.999999, -0.999999, -0.0014687, 33.0705, 61.9354) +position = Vector2(33, 62) +rotation = -1.81578 +scale = Vector2(1, 1) +rest = Transform2D(-0.242536, -0.970142, 0.970142, -0.242536, 33, 62) auto_calculate_length_and_angle = false length = 30.0 bone_angle = 0.0 -metadata/vert_owned = [133, 134, 135, 136, 137, 138] -metadata/connected_nodes_paths = [NodePath("Bone-0"), NodePath("Bone-1"), NodePath("Bone-2"), NodePath("Bone-4"), NodePath("Bone-7"), NodePath("Bone-8")] +metadata/vert_owned = [150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165] +metadata/idx = 3 +metadata/connected_nodes_paths = [NodePath("Bone-0"), NodePath("Bone-1"), NodePath("Bone-4"), NodePath("Bone-2"), NodePath("Bone-7"), NodePath("Bone-8"), NodePath("Bone-9")] +metadata/connected_nodes_idx = [0, 1, 4, 2, 7, 8, 9] metadata/_local_pose_override_enabled_ = true [node name="Bone-4" type="Bone2D" parent="SoftBody2D/Skeleton2D"] -position = Vector2(33.0264, 91.9803) -rotation = 1.5758 -rest = Transform2D(-0.00500181, 0.999987, -0.999987, -0.00500181, 33.0264, 91.9803) +position = Vector2(33, 92) +rotation = 1.5708 +rest = Transform2D(-4.37114e-08, 1, -1, -4.37114e-08, 33, 92) auto_calculate_length_and_angle = false length = 30.0 bone_angle = 0.0 -metadata/vert_owned = [139, 140, 141, 142, 143, 144, 145] +metadata/vert_owned = [166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181] +metadata/idx = 4 metadata/connected_nodes_paths = [NodePath("Bone-0"), NodePath("Bone-1"), NodePath("Bone-3"), NodePath("Bone-5"), NodePath("Bone-8"), NodePath("Bone-9"), NodePath("Bone-10")] +metadata/connected_nodes_idx = [0, 1, 3, 5, 8, 9, 10] metadata/_local_pose_override_enabled_ = true [node name="Bone-5" type="Bone2D" parent="SoftBody2D/Skeleton2D"] -position = Vector2(32.9079, 115.665) -rotation = -0.663755 -rest = Transform2D(0.787684, -0.616079, 0.616079, 0.787684, 32.9079, 115.665) +position = Vector2(33, 115.75) +rotation = -0.669639 +scale = Vector2(1, 1) +rest = Transform2D(0.784046, -0.620703, 0.620703, 0.784046, 33, 115.75) auto_calculate_length_and_angle = false length = 30.0 bone_angle = 0.0 -metadata/vert_owned = [146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160] +metadata/vert_owned = [182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201] +metadata/idx = 5 metadata/connected_nodes_paths = [NodePath("Bone-1"), NodePath("Bone-4"), NodePath("Bone-9"), NodePath("Bone-10")] +metadata/connected_nodes_idx = [1, 4, 9, 10] metadata/_local_pose_override_enabled_ = true [node name="Bone-6" type="Bone2D" parent="SoftBody2D/Skeleton2D"] -position = Vector2(59.3322, 9.46033) -rotation = 1.40364 +position = Vector2(59.125, 9.5) +rotation = 1.40025 scale = Vector2(1, 1) -rest = Transform2D(0.166376, 0.986062, -0.986062, 0.166376, 59.3322, 9.46035) +rest = Transform2D(0.169724, 0.985492, -0.985492, 0.169724, 59.125, 9.5) auto_calculate_length_and_angle = false length = 30.0 bone_angle = 0.0 -metadata/vert_owned = [161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184] +metadata/vert_owned = [202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228] +metadata/idx = 6 metadata/connected_nodes_paths = [NodePath("Bone-2"), NodePath("Bone-7"), NodePath("Bone-11")] +metadata/connected_nodes_idx = [2, 7, 11] metadata/_local_pose_override_enabled_ = true [node name="Bone-7" type="Bone2D" parent="SoftBody2D/Skeleton2D"] -position = Vector2(63.1402, 32.0298) -rotation = -1.73795 -rest = Transform2D(-0.166376, -0.986062, 0.986062, -0.166376, 63.1402, 32.0298) +position = Vector2(63, 32) +rotation = -1.74135 +scale = Vector2(1, 1) +rest = Transform2D(-0.169724, -0.985492, 0.985492, -0.169724, 63, 32) auto_calculate_length_and_angle = false length = 30.0 bone_angle = 0.0 -metadata/vert_owned = [185, 186, 187, 188, 189, 190, 191] -metadata/connected_nodes_paths = [NodePath("Bone-2"), NodePath("Bone-3"), NodePath("Bone-6"), NodePath("Bone-8"), NodePath("Bone-11")] +metadata/vert_owned = [229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244] +metadata/idx = 7 +metadata/connected_nodes_paths = [NodePath("Bone-2"), NodePath("Bone-3"), NodePath("Bone-8"), NodePath("Bone-6"), NodePath("Bone-11"), NodePath("Bone-12")] +metadata/connected_nodes_idx = [2, 3, 8, 6, 11, 12] metadata/_local_pose_override_enabled_ = true [node name="Bone-8" type="Bone2D" parent="SoftBody2D/Skeleton2D"] -position = Vector2(63.1027, 62.1493) -rotation = -1.56955 -rest = Transform2D(0.00124629, -0.999999, 0.999999, 0.00124629, 63.1027, 62.1493) +position = Vector2(63, 62) +rotation = 1.5708 +rest = Transform2D(-4.37114e-08, 1, -1, -4.37114e-08, 63, 62) auto_calculate_length_and_angle = false length = 30.0 bone_angle = 0.0 -metadata/vert_owned = [192, 193, 194, 195, 196, 197] -metadata/connected_nodes_paths = [NodePath("Bone-3"), NodePath("Bone-4"), NodePath("Bone-7"), NodePath("Bone-9"), NodePath("Bone-12")] +metadata/vert_owned = [245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260] +metadata/idx = 8 +metadata/connected_nodes_paths = [NodePath("Bone-2"), NodePath("Bone-3"), NodePath("Bone-7"), NodePath("Bone-4"), NodePath("Bone-9"), NodePath("Bone-11"), NodePath("Bone-12"), NodePath("Bone-13")] +metadata/connected_nodes_idx = [2, 3, 7, 4, 9, 11, 12, 13] metadata/_local_pose_override_enabled_ = true [node name="Bone-9" type="Bone2D" parent="SoftBody2D/Skeleton2D"] -position = Vector2(63.0556, 92.0857) -rotation = -1.56922 -rest = Transform2D(0.00157197, -0.999999, 0.999999, 0.00157197, 63.0556, 92.0857) +position = Vector2(63, 92) +rotation = 2.47195 +scale = Vector2(1, 1) +rest = Transform2D(-0.784046, 0.620703, -0.620703, -0.784046, 63, 92) auto_calculate_length_and_angle = false length = 30.0 bone_angle = 0.0 -metadata/vert_owned = [198, 199, 200, 201, 202] -metadata/connected_nodes_paths = [NodePath("Bone-4"), NodePath("Bone-5"), NodePath("Bone-8"), NodePath("Bone-10"), NodePath("Bone-13")] +metadata/vert_owned = [261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276] +metadata/idx = 9 +metadata/connected_nodes_paths = [NodePath("Bone-3"), NodePath("Bone-4"), NodePath("Bone-8"), NodePath("Bone-5"), NodePath("Bone-10"), NodePath("Bone-12"), NodePath("Bone-13")] +metadata/connected_nodes_idx = [3, 4, 8, 5, 10, 12, 13] metadata/_local_pose_override_enabled_ = true [node name="Bone-10" type="Bone2D" parent="SoftBody2D/Skeleton2D"] -position = Vector2(62.9473, 117.005) -rotation = -1.56645 -rest = Transform2D(0.00434739, -0.999991, 0.999991, 0.00434739, 62.9473, 117.005) +position = Vector2(63, 117) +rotation = -1.5708 +rest = Transform2D(-4.37114e-08, -1, 1, -4.37114e-08, 63, 117) auto_calculate_length_and_angle = false length = 30.0 bone_angle = 0.0 -metadata/vert_owned = [203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214] +metadata/vert_owned = [277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298] +metadata/idx = 10 metadata/connected_nodes_paths = [NodePath("Bone-4"), NodePath("Bone-5"), NodePath("Bone-9"), NodePath("Bone-13")] +metadata/connected_nodes_idx = [4, 5, 9, 13] metadata/_local_pose_override_enabled_ = true [node name="Bone-11" type="Bone2D" parent="SoftBody2D/Skeleton2D"] -position = Vector2(95.9587, 26.8461) -rotation = 2.98493 -rest = Transform2D(-0.987754, 0.156019, -0.156019, -0.987754, 95.9587, 26.8461) +position = Vector2(96, 26.75) +rotation = 2.32324 +scale = Vector2(1, 1) +rest = Transform2D(-0.683424, 0.730021, -0.730021, -0.683424, 96, 26.75) auto_calculate_length_and_angle = false length = 30.0 bone_angle = 0.0 -metadata/vert_owned = [215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245] -metadata/connected_nodes_paths = [NodePath("Bone-6"), NodePath("Bone-7"), NodePath("Bone-12")] +metadata/vert_owned = [299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343] +metadata/idx = 11 +metadata/connected_nodes_paths = [NodePath("Bone-6"), NodePath("Bone-7"), NodePath("Bone-8"), NodePath("Bone-12")] +metadata/connected_nodes_idx = [6, 7, 8, 12] metadata/_local_pose_override_enabled_ = true [node name="Bone-12" type="Bone2D" parent="SoftBody2D/Skeleton2D"] -position = Vector2(95.9995, 62.1075) -rotation = -1.57195 -rest = Transform2D(-0.00115459, -0.999999, 0.999999, -0.00115459, 95.9995, 62.1075) +position = Vector2(96, 62) +rotation = -1.5708 +rest = Transform2D(-4.37114e-08, -1, 1, -4.37114e-08, 96, 62) auto_calculate_length_and_angle = false length = 30.0 bone_angle = 0.0 -metadata/vert_owned = [246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256] -metadata/connected_nodes_paths = [NodePath("Bone-8"), NodePath("Bone-11"), NodePath("Bone-13")] +metadata/vert_owned = [344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367] +metadata/idx = 12 +metadata/connected_nodes_paths = [NodePath("Bone-7"), NodePath("Bone-8"), NodePath("Bone-11"), NodePath("Bone-9"), NodePath("Bone-13")] +metadata/connected_nodes_idx = [7, 8, 11, 9, 13] metadata/_local_pose_override_enabled_ = true [node name="Bone-13" type="Bone2D" parent="SoftBody2D/Skeleton2D"] -position = Vector2(96.9801, 99.4616) -rotation = 2.66562 -rest = Transform2D(-0.888848, 0.458202, -0.458202, -0.888848, 96.9801, 99.4616) +position = Vector2(97, 98) +rotation = -1.59857 +scale = Vector2(1, 1) +rest = Transform2D(-0.0277671, -0.999614, 0.999614, -0.0277671, 97, 98) auto_calculate_length_and_angle = false length = 30.0 bone_angle = 0.0 -metadata/vert_owned = [257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287] -metadata/connected_nodes_paths = [NodePath("Bone-9"), NodePath("Bone-10"), NodePath("Bone-12")] +metadata/vert_owned = [368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414] +metadata/idx = 13 +metadata/connected_nodes_paths = [NodePath("Bone-8"), NodePath("Bone-9"), NodePath("Bone-12"), NodePath("Bone-10")] +metadata/connected_nodes_idx = [8, 9, 12, 10] metadata/_local_pose_override_enabled_ = true -[node name="Bone-0" parent="SoftBody2D" instance=ExtResource("3_6ern4")] -position = Vector2(12.0317, 62.1038) +[node name="Bone-0" type="RigidBody2D" parent="SoftBody2D" instance=ExtResource("3_6ern4")] +position = Vector2(12, 62) +input_pickable = true mass = 0.0714286 +script = ExtResource("11_tqnjl") +metadata/idx = 0 metadata/bone_name = &"Bone-0" [node name="CircleShape2D" type="CollisionShape2D" parent="SoftBody2D/Bone-0"] -shape = SubResource("CircleShape2D_0wdvc") +shape = SubResource("CircleShape2D_iossn") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="SoftBody2D/Bone-0"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-0") update_rotation = false update_scale = false [node name="Joint2D-Bone-0-Bone-1" type="PinJoint2D" parent="SoftBody2D/Bone-0"] visible = false -rotation = 0.000490828 node_a = NodePath("..") node_b = NodePath("../../Bone-1") softness = 60.0 -[node name="Joint2D-Bone-0-Bone-2" type="PinJoint2D" parent="SoftBody2D/Bone-0"] -visible = false -rotation = -2.71797 -node_a = NodePath("..") -node_b = NodePath("../../Bone-2") -softness = 60.0 - [node name="Joint2D-Bone-0-Bone-3" type="PinJoint2D" parent="SoftBody2D/Bone-0"] visible = false -rotation = -1.5788 +rotation = -1.5708 node_a = NodePath("..") node_b = NodePath("../../Bone-3") softness = 60.0 [node name="Joint2D-Bone-0-Bone-4" type="PinJoint2D" parent="SoftBody2D/Bone-0"] visible = false -rotation = -0.612545 +rotation = -0.610726 node_a = NodePath("..") node_b = NodePath("../../Bone-4") softness = 60.0 -[node name="Bone-1" parent="SoftBody2D" instance=ExtResource("3_6ern4")] -position = Vector2(12.016, 94.053) +[node name="Joint2D-Bone-0-Bone-2" type="PinJoint2D" parent="SoftBody2D/Bone-0"] +visible = false +rotation = -2.71874 +node_a = NodePath("..") +node_b = NodePath("../../Bone-2") +softness = 60.0 + +[node name="Bone-1" type="RigidBody2D" parent="SoftBody2D" instance=ExtResource("3_6ern4")] +position = Vector2(12, 94) +input_pickable = true mass = 0.0714286 +script = ExtResource("11_tqnjl") +metadata/idx = 1 metadata/bone_name = &"Bone-1" [node name="CircleShape2D" type="CollisionShape2D" parent="SoftBody2D/Bone-1"] -shape = SubResource("CircleShape2D_0wdvc") +shape = SubResource("CircleShape2D_iossn") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="SoftBody2D/Bone-1"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-1") update_rotation = false update_scale = false +[node name="Joint2D-Bone-1-Bone-5" type="PinJoint2D" parent="SoftBody2D/Bone-1"] +visible = false +rotation = -0.767856 +node_a = NodePath("..") +node_b = NodePath("../../Bone-5") +softness = 60.0 + [node name="Joint2D-Bone-1-Bone-0" type="PinJoint2D" parent="SoftBody2D/Bone-1"] visible = false -rotation = -3.1411 +rotation = -3.14159 node_a = NodePath("..") node_b = NodePath("../../Bone-0") softness = 60.0 [node name="Joint2D-Bone-1-Bone-3" type="PinJoint2D" parent="SoftBody2D/Bone-1"] visible = false -rotation = -2.56133 +rotation = -2.56084 node_a = NodePath("..") node_b = NodePath("../../Bone-3") softness = 60.0 [node name="Joint2D-Bone-1-Bone-4" type="PinJoint2D" parent="SoftBody2D/Bone-1"] visible = false -rotation = -1.66913 +rotation = -1.66575 node_a = NodePath("..") node_b = NodePath("../../Bone-4") softness = 60.0 -[node name="Joint2D-Bone-1-Bone-5" type="PinJoint2D" parent="SoftBody2D/Bone-1"] -visible = false -rotation = -0.768447 -node_a = NodePath("..") -node_b = NodePath("../../Bone-5") -softness = 60.0 - -[node name="Bone-2" parent="SoftBody2D" instance=ExtResource("3_6ern4")] -position = Vector2(25.6523, 31.8982) +[node name="Bone-2" type="RigidBody2D" parent="SoftBody2D" instance=ExtResource("3_6ern4")] +position = Vector2(25.5, 32) +input_pickable = true mass = 0.0714286 +script = ExtResource("11_tqnjl") +metadata/idx = 2 metadata/bone_name = &"Bone-2" [node name="CircleShape2D" type="CollisionShape2D" parent="SoftBody2D/Bone-2"] -shape = SubResource("CircleShape2D_0wdvc") +shape = SubResource("CircleShape2D_iossn") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="SoftBody2D/Bone-2"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-2") update_rotation = false update_scale = false [node name="Joint2D-Bone-2-Bone-0" type="PinJoint2D" parent="SoftBody2D/Bone-2"] visible = false -rotation = 0.423625 +rotation = 0.422854 node_a = NodePath("..") node_b = NodePath("../../Bone-0") softness = 60.0 [node name="Joint2D-Bone-2-Bone-3" type="PinJoint2D" parent="SoftBody2D/Bone-2"] visible = false -rotation = -0.242123 +rotation = -0.244979 node_a = NodePath("..") node_b = NodePath("../../Bone-3") softness = 60.0 -[node name="Joint2D-Bone-2-Bone-6" type="PinJoint2D" parent="SoftBody2D/Bone-2"] +[node name="Joint2D-Bone-2-Bone-7" type="PinJoint2D" parent="SoftBody2D/Bone-2"] visible = false -rotation = -2.15848 +rotation = -1.5708 node_a = NodePath("..") -node_b = NodePath("../../Bone-6") +node_b = NodePath("../../Bone-7") softness = 60.0 -[node name="Joint2D-Bone-2-Bone-7" type="PinJoint2D" parent="SoftBody2D/Bone-2"] +[node name="Joint2D-Bone-2-Bone-8" type="PinJoint2D" parent="SoftBody2D/Bone-2"] visible = false -rotation = -1.56728 +rotation = -0.896055 node_a = NodePath("..") -node_b = NodePath("../../Bone-7") +node_b = NodePath("../../Bone-8") +softness = 60.0 + +[node name="Joint2D-Bone-2-Bone-6" type="PinJoint2D" parent="SoftBody2D/Bone-2"] +visible = false +rotation = -2.16051 +node_a = NodePath("..") +node_b = NodePath("../../Bone-6") softness = 60.0 -[node name="Bone-3" parent="SoftBody2D" instance=ExtResource("3_6ern4")] -position = Vector2(33.0705, 61.9354) +[node name="Bone-3" type="RigidBody2D" parent="SoftBody2D" instance=ExtResource("3_6ern4")] +position = Vector2(33, 62) +input_pickable = true mass = 0.0714286 +script = ExtResource("11_tqnjl") +metadata/idx = 3 metadata/bone_name = &"Bone-3" [node name="CircleShape2D" type="CollisionShape2D" parent="SoftBody2D/Bone-3"] -shape = SubResource("CircleShape2D_0wdvc") +shape = SubResource("CircleShape2D_iossn") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="SoftBody2D/Bone-3"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-3") update_rotation = false update_scale = false [node name="Joint2D-Bone-3-Bone-0" type="PinJoint2D" parent="SoftBody2D/Bone-3"] visible = false -rotation = 1.56279 +rotation = 1.5708 node_a = NodePath("..") node_b = NodePath("../../Bone-0") softness = 60.0 [node name="Joint2D-Bone-3-Bone-1" type="PinJoint2D" parent="SoftBody2D/Bone-3"] visible = false -rotation = 0.580261 +rotation = 0.580756 node_a = NodePath("..") node_b = NodePath("../../Bone-1") softness = 60.0 -[node name="Joint2D-Bone-3-Bone-2" type="PinJoint2D" parent="SoftBody2D/Bone-3"] +[node name="Joint2D-Bone-3-Bone-4" type="PinJoint2D" parent="SoftBody2D/Bone-3"] visible = false -rotation = -3.38372 node_a = NodePath("..") -node_b = NodePath("../../Bone-2") +node_b = NodePath("../../Bone-4") softness = 60.0 -[node name="Joint2D-Bone-3-Bone-4" type="PinJoint2D" parent="SoftBody2D/Bone-3"] +[node name="Joint2D-Bone-3-Bone-2" type="PinJoint2D" parent="SoftBody2D/Bone-3"] visible = false -rotation = 0.00146918 +rotation = -3.38657 node_a = NodePath("..") -node_b = NodePath("../../Bone-4") +node_b = NodePath("../../Bone-2") softness = 60.0 [node name="Joint2D-Bone-3-Bone-7" type="PinJoint2D" parent="SoftBody2D/Bone-3"] visible = false -rotation = -2.35346 +rotation = -2.35619 node_a = NodePath("..") node_b = NodePath("../../Bone-7") softness = 60.0 [node name="Joint2D-Bone-3-Bone-8" type="PinJoint2D" parent="SoftBody2D/Bone-3"] visible = false -rotation = -1.56367 +rotation = -1.5708 node_a = NodePath("..") node_b = NodePath("../../Bone-8") softness = 60.0 -[node name="Bone-4" parent="SoftBody2D" instance=ExtResource("3_6ern4")] -position = Vector2(33.0264, 91.9803) +[node name="Joint2D-Bone-3-Bone-9" type="PinJoint2D" parent="SoftBody2D/Bone-3"] +visible = false +rotation = -0.785398 +node_a = NodePath("..") +node_b = NodePath("../../Bone-9") +softness = 60.0 + +[node name="Bone-4" type="RigidBody2D" parent="SoftBody2D" instance=ExtResource("3_6ern4")] +position = Vector2(33, 92) +input_pickable = true mass = 0.0714286 +script = ExtResource("11_tqnjl") +metadata/idx = 4 metadata/bone_name = &"Bone-4" [node name="CircleShape2D" type="CollisionShape2D" parent="SoftBody2D/Bone-4"] -shape = SubResource("CircleShape2D_0wdvc") +shape = SubResource("CircleShape2D_iossn") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="SoftBody2D/Bone-4"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-4") update_rotation = false update_scale = false [node name="Joint2D-Bone-4-Bone-0" type="PinJoint2D" parent="SoftBody2D/Bone-4"] visible = false -rotation = -3.75414 +rotation = -3.75232 node_a = NodePath("..") node_b = NodePath("../../Bone-0") softness = 60.0 [node name="Joint2D-Bone-4-Bone-1" type="PinJoint2D" parent="SoftBody2D/Bone-4"] visible = false -rotation = 1.47246 +rotation = 1.47584 node_a = NodePath("..") node_b = NodePath("../../Bone-1") softness = 60.0 [node name="Joint2D-Bone-4-Bone-3" type="PinJoint2D" parent="SoftBody2D/Bone-4"] visible = false -rotation = -3.14012 +rotation = -3.14159 node_a = NodePath("..") node_b = NodePath("../../Bone-3") softness = 60.0 [node name="Joint2D-Bone-4-Bone-5" type="PinJoint2D" parent="SoftBody2D/Bone-4"] visible = false -rotation = 0.00500087 node_a = NodePath("..") node_b = NodePath("../../Bone-5") softness = 60.0 [node name="Joint2D-Bone-4-Bone-8" type="PinJoint2D" parent="SoftBody2D/Bone-4"] visible = false -rotation = -2.3521 +rotation = -2.35619 node_a = NodePath("..") node_b = NodePath("../../Bone-8") softness = 60.0 [node name="Joint2D-Bone-4-Bone-9" type="PinJoint2D" parent="SoftBody2D/Bone-4"] visible = false -rotation = -1.56729 +rotation = -1.5708 node_a = NodePath("..") node_b = NodePath("../../Bone-9") softness = 60.0 [node name="Joint2D-Bone-4-Bone-10" type="PinJoint2D" parent="SoftBody2D/Bone-4"] visible = false -rotation = -0.874265 +rotation = -0.876058 node_a = NodePath("..") node_b = NodePath("../../Bone-10") softness = 60.0 -[node name="Bone-5" parent="SoftBody2D" instance=ExtResource("3_6ern4")] -position = Vector2(32.9079, 115.665) +[node name="Bone-5" type="RigidBody2D" parent="SoftBody2D" instance=ExtResource("3_6ern4")] +position = Vector2(33, 115.75) +input_pickable = true mass = 0.0714286 +script = ExtResource("11_tqnjl") +metadata/idx = 5 metadata/bone_name = &"Bone-5" [node name="CircleShape2D" type="CollisionShape2D" parent="SoftBody2D/Bone-5"] -shape = SubResource("CircleShape2D_0wdvc") +shape = SubResource("CircleShape2D_iossn") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="SoftBody2D/Bone-5"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-5") update_rotation = false update_scale = false [node name="Joint2D-Bone-5-Bone-1" type="PinJoint2D" parent="SoftBody2D/Bone-5"] visible = false -rotation = -3.91004 +rotation = -3.90945 node_a = NodePath("..") node_b = NodePath("../../Bone-1") softness = 60.0 [node name="Joint2D-Bone-5-Bone-4" type="PinJoint2D" parent="SoftBody2D/Bone-5"] visible = false -rotation = -3.13659 +rotation = -3.14159 node_a = NodePath("..") node_b = NodePath("../../Bone-4") softness = 60.0 [node name="Joint2D-Bone-5-Bone-9" type="PinJoint2D" parent="SoftBody2D/Bone-5"] visible = false -rotation = -2.23455 +rotation = -2.24044 node_a = NodePath("..") node_b = NodePath("../../Bone-9") softness = 60.0 [node name="Joint2D-Bone-5-Bone-10" type="PinJoint2D" parent="SoftBody2D/Bone-5"] visible = false -rotation = -1.52622 +rotation = -1.52915 node_a = NodePath("..") node_b = NodePath("../../Bone-10") softness = 60.0 -[node name="Bone-6" parent="SoftBody2D" instance=ExtResource("3_6ern4")] -position = Vector2(59.3322, 9.46035) +[node name="Bone-6" type="RigidBody2D" parent="SoftBody2D" instance=ExtResource("3_6ern4")] +position = Vector2(59.125, 9.5) +input_pickable = true mass = 0.0714286 +script = ExtResource("11_tqnjl") +metadata/idx = 6 metadata/bone_name = &"Bone-6" [node name="CircleShape2D" type="CollisionShape2D" parent="SoftBody2D/Bone-6"] -shape = SubResource("CircleShape2D_0wdvc") +shape = SubResource("CircleShape2D_iossn") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="SoftBody2D/Bone-6"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-6") update_rotation = false update_scale = false [node name="Joint2D-Bone-6-Bone-2" type="PinJoint2D" parent="SoftBody2D/Bone-6"] visible = false -rotation = 0.983111 +rotation = 0.98108 node_a = NodePath("..") node_b = NodePath("../../Bone-2") softness = 60.0 [node name="Joint2D-Bone-6-Bone-7" type="PinJoint2D" parent="SoftBody2D/Bone-6"] visible = false -rotation = -0.167153 +rotation = -0.170549 node_a = NodePath("..") node_b = NodePath("../../Bone-7") softness = 60.0 [node name="Joint2D-Bone-6-Bone-11" type="PinJoint2D" parent="SoftBody2D/Bone-6"] visible = false -rotation = -1.12761 +rotation = -1.13324 node_a = NodePath("..") node_b = NodePath("../../Bone-11") softness = 60.0 -[node name="Bone-7" parent="SoftBody2D" instance=ExtResource("3_6ern4")] -position = Vector2(63.1402, 32.0298) +[node name="Bone-7" type="RigidBody2D" parent="SoftBody2D" instance=ExtResource("3_6ern4")] +position = Vector2(63, 32) +input_pickable = true mass = 0.0714286 +script = ExtResource("11_tqnjl") +metadata/idx = 7 metadata/bone_name = &"Bone-7" [node name="CircleShape2D" type="CollisionShape2D" parent="SoftBody2D/Bone-7"] -shape = SubResource("CircleShape2D_0wdvc") +shape = SubResource("CircleShape2D_iossn") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="SoftBody2D/Bone-7"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-7") update_rotation = false update_scale = false [node name="Joint2D-Bone-7-Bone-2" type="PinJoint2D" parent="SoftBody2D/Bone-7"] visible = false -rotation = -4.70888 +rotation = 1.5708 node_a = NodePath("..") node_b = NodePath("../../Bone-2") softness = 60.0 [node name="Joint2D-Bone-7-Bone-3" type="PinJoint2D" parent="SoftBody2D/Bone-7"] visible = false -rotation = 0.788136 +rotation = 0.785398 node_a = NodePath("..") node_b = NodePath("../../Bone-3") softness = 60.0 -[node name="Joint2D-Bone-7-Bone-6" type="PinJoint2D" parent="SoftBody2D/Bone-7"] +[node name="Joint2D-Bone-7-Bone-8" type="PinJoint2D" parent="SoftBody2D/Bone-7"] visible = false -rotation = -3.30875 node_a = NodePath("..") -node_b = NodePath("../../Bone-6") +node_b = NodePath("../../Bone-8") softness = 60.0 -[node name="Joint2D-Bone-7-Bone-8" type="PinJoint2D" parent="SoftBody2D/Bone-7"] +[node name="Joint2D-Bone-7-Bone-6" type="PinJoint2D" parent="SoftBody2D/Bone-7"] visible = false -rotation = 0.0012465 +rotation = -3.31214 node_a = NodePath("..") -node_b = NodePath("../../Bone-8") +node_b = NodePath("../../Bone-6") softness = 60.0 [node name="Joint2D-Bone-7-Bone-11" type="PinJoint2D" parent="SoftBody2D/Bone-7"] visible = false -rotation = -1.72745 +rotation = -1.72857 node_a = NodePath("..") node_b = NodePath("../../Bone-11") softness = 60.0 -[node name="Bone-8" parent="SoftBody2D" instance=ExtResource("3_6ern4")] -position = Vector2(63.1027, 62.1493) +[node name="Joint2D-Bone-7-Bone-12" type="PinJoint2D" parent="SoftBody2D/Bone-7"] +visible = false +rotation = -0.832981 +node_a = NodePath("..") +node_b = NodePath("../../Bone-12") +softness = 60.0 + +[node name="Bone-8" type="RigidBody2D" parent="SoftBody2D" instance=ExtResource("3_6ern4")] +position = Vector2(63, 62) +input_pickable = true mass = 0.0714286 +script = ExtResource("11_tqnjl") +metadata/idx = 8 metadata/bone_name = &"Bone-8" [node name="CircleShape2D" type="CollisionShape2D" parent="SoftBody2D/Bone-8"] -shape = SubResource("CircleShape2D_0wdvc") +shape = SubResource("CircleShape2D_iossn") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="SoftBody2D/Bone-8"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-8") update_rotation = false update_scale = false -[node name="Joint2D-Bone-8-Bone-3" type="PinJoint2D" parent="SoftBody2D/Bone-8"] +[node name="Joint2D-Bone-8-Bone-2" type="PinJoint2D" parent="SoftBody2D/Bone-8"] visible = false -rotation = -4.70527 +rotation = -4.03765 node_a = NodePath("..") -node_b = NodePath("../../Bone-3") +node_b = NodePath("../../Bone-2") softness = 60.0 -[node name="Joint2D-Bone-8-Bone-4" type="PinJoint2D" parent="SoftBody2D/Bone-8"] +[node name="Joint2D-Bone-8-Bone-3" type="PinJoint2D" parent="SoftBody2D/Bone-8"] visible = false -rotation = 0.789494 +rotation = 1.5708 node_a = NodePath("..") -node_b = NodePath("../../Bone-4") +node_b = NodePath("../../Bone-3") softness = 60.0 [node name="Joint2D-Bone-8-Bone-7" type="PinJoint2D" parent="SoftBody2D/Bone-8"] visible = false -rotation = -3.14035 +rotation = -3.14159 node_a = NodePath("..") node_b = NodePath("../../Bone-7") softness = 60.0 +[node name="Joint2D-Bone-8-Bone-4" type="PinJoint2D" parent="SoftBody2D/Bone-8"] +visible = false +rotation = 0.785398 +node_a = NodePath("..") +node_b = NodePath("../../Bone-4") +softness = 60.0 + [node name="Joint2D-Bone-8-Bone-9" type="PinJoint2D" parent="SoftBody2D/Bone-8"] visible = false -rotation = 0.00157194 node_a = NodePath("..") node_b = NodePath("../../Bone-9") softness = 60.0 +[node name="Joint2D-Bone-8-Bone-11" type="PinJoint2D" parent="SoftBody2D/Bone-8"] +visible = false +rotation = -2.38915 +node_a = NodePath("..") +node_b = NodePath("../../Bone-11") +softness = 60.0 + [node name="Joint2D-Bone-8-Bone-12" type="PinJoint2D" parent="SoftBody2D/Bone-8"] visible = false -rotation = -1.57207 +rotation = -1.5708 node_a = NodePath("..") node_b = NodePath("../../Bone-12") softness = 60.0 -[node name="Bone-9" parent="SoftBody2D" instance=ExtResource("3_6ern4")] -position = Vector2(63.0556, 92.0857) +[node name="Joint2D-Bone-8-Bone-13" type="PinJoint2D" parent="SoftBody2D/Bone-8"] +visible = false +rotation = -0.756835 +node_a = NodePath("..") +node_b = NodePath("../../Bone-13") +softness = 60.0 + +[node name="Bone-9" type="RigidBody2D" parent="SoftBody2D" instance=ExtResource("3_6ern4")] +position = Vector2(63, 92) +input_pickable = true mass = 0.0714286 +script = ExtResource("11_tqnjl") +metadata/idx = 9 metadata/bone_name = &"Bone-9" [node name="CircleShape2D" type="CollisionShape2D" parent="SoftBody2D/Bone-9"] -shape = SubResource("CircleShape2D_0wdvc") +shape = SubResource("CircleShape2D_iossn") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="SoftBody2D/Bone-9"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-9") update_rotation = false update_scale = false -[node name="Joint2D-Bone-9-Bone-4" type="PinJoint2D" parent="SoftBody2D/Bone-9"] +[node name="Joint2D-Bone-9-Bone-3" type="PinJoint2D" parent="SoftBody2D/Bone-9"] visible = false -rotation = -4.70888 +rotation = -3.92699 node_a = NodePath("..") -node_b = NodePath("../../Bone-4") +node_b = NodePath("../../Bone-3") softness = 60.0 -[node name="Joint2D-Bone-9-Bone-5" type="PinJoint2D" parent="SoftBody2D/Bone-9"] +[node name="Joint2D-Bone-9-Bone-4" type="PinJoint2D" parent="SoftBody2D/Bone-9"] visible = false -rotation = 0.90704 +rotation = 1.5708 node_a = NodePath("..") -node_b = NodePath("../../Bone-5") +node_b = NodePath("../../Bone-4") softness = 60.0 [node name="Joint2D-Bone-9-Bone-8" type="PinJoint2D" parent="SoftBody2D/Bone-9"] visible = false -rotation = -3.14002 +rotation = -3.14159 node_a = NodePath("..") node_b = NodePath("../../Bone-8") softness = 60.0 +[node name="Joint2D-Bone-9-Bone-5" type="PinJoint2D" parent="SoftBody2D/Bone-9"] +visible = false +rotation = 0.901157 +node_a = NodePath("..") +node_b = NodePath("../../Bone-5") +softness = 60.0 + [node name="Joint2D-Bone-9-Bone-10" type="PinJoint2D" parent="SoftBody2D/Bone-9"] visible = false -rotation = 0.00434737 node_a = NodePath("..") node_b = NodePath("../../Bone-10") softness = 60.0 +[node name="Joint2D-Bone-9-Bone-12" type="PinJoint2D" parent="SoftBody2D/Bone-9"] +visible = false +rotation = -2.30861 +node_a = NodePath("..") +node_b = NodePath("../../Bone-12") +softness = 60.0 + [node name="Joint2D-Bone-9-Bone-13" type="PinJoint2D" parent="SoftBody2D/Bone-9"] visible = false -rotation = -1.35671 +rotation = -1.39612 node_a = NodePath("..") node_b = NodePath("../../Bone-13") softness = 60.0 -[node name="Bone-10" parent="SoftBody2D" instance=ExtResource("3_6ern4")] -position = Vector2(62.9473, 117.005) +[node name="Bone-10" type="RigidBody2D" parent="SoftBody2D" instance=ExtResource("3_6ern4")] +position = Vector2(63, 117) +input_pickable = true mass = 0.0714286 +script = ExtResource("11_tqnjl") +metadata/idx = 10 metadata/bone_name = &"Bone-10" [node name="CircleShape2D" type="CollisionShape2D" parent="SoftBody2D/Bone-10"] -shape = SubResource("CircleShape2D_0wdvc") +shape = SubResource("CircleShape2D_iossn") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="SoftBody2D/Bone-10"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-10") update_rotation = false update_scale = false [node name="Joint2D-Bone-10-Bone-4" type="PinJoint2D" parent="SoftBody2D/Bone-10"] visible = false -rotation = -4.01586 +rotation = -4.01765 node_a = NodePath("..") node_b = NodePath("../../Bone-4") softness = 60.0 [node name="Joint2D-Bone-10-Bone-5" type="PinJoint2D" parent="SoftBody2D/Bone-10"] visible = false -rotation = -4.66781 +rotation = -4.67075 node_a = NodePath("..") node_b = NodePath("../../Bone-5") softness = 60.0 [node name="Joint2D-Bone-10-Bone-9" type="PinJoint2D" parent="SoftBody2D/Bone-10"] visible = false -rotation = -3.13725 +rotation = -3.14159 node_a = NodePath("..") node_b = NodePath("../../Bone-9") softness = 60.0 [node name="Joint2D-Bone-10-Bone-13" type="PinJoint2D" parent="SoftBody2D/Bone-10"] visible = false -rotation = -2.04677 +rotation = -2.08039 node_a = NodePath("..") node_b = NodePath("../../Bone-13") softness = 60.0 -[node name="Bone-11" parent="SoftBody2D" instance=ExtResource("3_6ern4")] -position = Vector2(95.9587, 26.8461) +[node name="Bone-11" type="RigidBody2D" parent="SoftBody2D" instance=ExtResource("3_6ern4")] +position = Vector2(96, 26.75) +input_pickable = true mass = 0.0714286 +script = ExtResource("11_tqnjl") +metadata/idx = 11 metadata/bone_name = &"Bone-11" [node name="CircleShape2D" type="CollisionShape2D" parent="SoftBody2D/Bone-11"] -shape = SubResource("CircleShape2D_0wdvc") +shape = SubResource("CircleShape2D_iossn") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="SoftBody2D/Bone-11"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-11") update_rotation = false update_scale = false [node name="Joint2D-Bone-11-Bone-6" type="PinJoint2D" parent="SoftBody2D/Bone-11"] visible = false -rotation = -4.26921 +rotation = -4.27483 node_a = NodePath("..") node_b = NodePath("../../Bone-6") softness = 60.0 [node name="Joint2D-Bone-11-Bone-7" type="PinJoint2D" parent="SoftBody2D/Bone-11"] visible = false -rotation = 1.41414 +rotation = 1.41303 node_a = NodePath("..") node_b = NodePath("../../Bone-7") softness = 60.0 +[node name="Joint2D-Bone-11-Bone-8" type="PinJoint2D" parent="SoftBody2D/Bone-11"] +visible = false +rotation = 0.752443 +node_a = NodePath("..") +node_b = NodePath("../../Bone-8") +softness = 60.0 + [node name="Joint2D-Bone-11-Bone-12" type="PinJoint2D" parent="SoftBody2D/Bone-11"] visible = false -rotation = -0.00115557 node_a = NodePath("..") node_b = NodePath("../../Bone-12") softness = 60.0 -[node name="Bone-12" parent="SoftBody2D" instance=ExtResource("3_6ern4")] -position = Vector2(95.9995, 62.1075) +[node name="Bone-12" type="RigidBody2D" parent="SoftBody2D" instance=ExtResource("3_6ern4")] +position = Vector2(96, 62) +input_pickable = true mass = 0.0714286 +script = ExtResource("11_tqnjl") +metadata/idx = 12 metadata/bone_name = &"Bone-12" [node name="CircleShape2D" type="CollisionShape2D" parent="SoftBody2D/Bone-12"] -shape = SubResource("CircleShape2D_0wdvc") +shape = SubResource("CircleShape2D_iossn") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="SoftBody2D/Bone-12"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-12") update_rotation = false update_scale = false +[node name="Joint2D-Bone-12-Bone-7" type="PinJoint2D" parent="SoftBody2D/Bone-12"] +visible = false +rotation = -3.97457 +node_a = NodePath("..") +node_b = NodePath("../../Bone-7") +softness = 60.0 + [node name="Joint2D-Bone-12-Bone-8" type="PinJoint2D" parent="SoftBody2D/Bone-12"] visible = false -rotation = 1.56952 +rotation = 1.5708 node_a = NodePath("..") node_b = NodePath("../../Bone-8") softness = 60.0 [node name="Joint2D-Bone-12-Bone-11" type="PinJoint2D" parent="SoftBody2D/Bone-12"] visible = false -rotation = -3.14275 +rotation = -3.14159 node_a = NodePath("..") node_b = NodePath("../../Bone-11") softness = 60.0 +[node name="Joint2D-Bone-12-Bone-9" type="PinJoint2D" parent="SoftBody2D/Bone-12"] +visible = false +rotation = 0.832981 +node_a = NodePath("..") +node_b = NodePath("../../Bone-9") +softness = 60.0 + [node name="Joint2D-Bone-12-Bone-13" type="PinJoint2D" parent="SoftBody2D/Bone-12"] visible = false -rotation = -0.0262453 +rotation = -0.0277706 node_a = NodePath("..") node_b = NodePath("../../Bone-13") softness = 60.0 -[node name="Bone-13" parent="SoftBody2D" instance=ExtResource("3_6ern4")] -position = Vector2(96.9801, 99.4616) +[node name="Bone-13" type="RigidBody2D" parent="SoftBody2D" instance=ExtResource("3_6ern4")] +position = Vector2(97, 98) +input_pickable = true mass = 0.0714286 +script = ExtResource("11_tqnjl") +metadata/idx = 13 metadata/bone_name = &"Bone-13" [node name="CircleShape2D" type="CollisionShape2D" parent="SoftBody2D/Bone-13"] -shape = SubResource("CircleShape2D_0wdvc") +shape = SubResource("CircleShape2D_iossn") [node name="RemoteTransform2D" type="RemoteTransform2D" parent="SoftBody2D/Bone-13"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-13") update_rotation = false update_scale = false -[node name="Joint2D-Bone-13-Bone-9" type="PinJoint2D" parent="SoftBody2D/Bone-13"] +[node name="Joint2D-Bone-13-Bone-8" type="PinJoint2D" parent="SoftBody2D/Bone-13"] visible = false -rotation = -4.4983 +rotation = -3.89843 node_a = NodePath("..") -node_b = NodePath("../../Bone-9") +node_b = NodePath("../../Bone-8") softness = 60.0 -[node name="Joint2D-Bone-13-Bone-10" type="PinJoint2D" parent="SoftBody2D/Bone-13"] +[node name="Joint2D-Bone-13-Bone-9" type="PinJoint2D" parent="SoftBody2D/Bone-13"] visible = false -rotation = 1.09483 +rotation = -4.53772 node_a = NodePath("..") -node_b = NodePath("../../Bone-10") +node_b = NodePath("../../Bone-9") softness = 60.0 [node name="Joint2D-Bone-13-Bone-12" type="PinJoint2D" parent="SoftBody2D/Bone-13"] visible = false -rotation = -3.16784 +rotation = -3.16936 node_a = NodePath("..") node_b = NodePath("../../Bone-12") softness = 60.0 -[node name="SoftBody2D2" type="Polygon2D" parent="."] -position = Vector2(-750, 344) -texture = ExtResource("9_ia0mn") +[node name="Joint2D-Bone-13-Bone-10" type="PinJoint2D" parent="SoftBody2D/Bone-13"] +visible = false +rotation = 1.0612 +node_a = NodePath("..") +node_b = NodePath("../../Bone-10") +softness = 60.0 + +[node name="Stickman" type="Polygon2D" parent="."] +position = Vector2(721, -66) +texture = ExtResource("6_du2cs") skeleton = NodePath("Skeleton2D") -polygon = PackedVector2Array(75, 58, 74, 59, 72, 59, 67, 65, 65, 65, 65, 67, 61, 71, 60, 71, 56, 78, 55, 78, 55, 81, 53, 83, 53, 87, 51, 89, 51, 102, 55, 109, 55, 111, 58, 114, 58, 116, 60, 116, 61, 117, 61, 119, 68, 124, 68, 126, 70, 127, 72, 127, 82, 136, 84, 136, 88, 141, 89, 141, 89, 143, 91, 143, 91, 145, 94, 148, 95, 148, 96, 151, 97, 151, 103, 167, 104, 167, 106, 177, 106, 207, 104, 214, 104, 219, 103, 221, 102, 221, 101, 226, 101, 230, 100, 231, 99, 231, 99, 235, 97, 238, 97, 241, 95, 242, 95, 243, 225, 243, 236, 228, 237, 228, 237, 225, 239, 225, 239, 222, 241, 219, 242, 219, 244, 213, 245, 213, 248, 199, 249, 199, 249, 183, 244, 172, 244, 170, 240, 166, 240, 164, 232, 157, 232, 156, 230, 156, 227, 153, 227, 152, 225, 152, 215, 143, 213, 143, 211, 139, 209, 139, 209, 137, 207, 135, 206, 135, 206, 133, 204, 131, 203, 131, 200, 125, 199, 125, 196, 115, 195, 115, 195, 85, 195, 79, 199, 70, 199, 67, 200, 66, 201, 66, 201, 63, 203, 61, 203, 58, 205, 58, 205, 57, 75, 57, 66.1345, 71.9542, 66.27, 101.888, 65.989, 102.166, 51.0122, 102.021, 51, 102, 51, 89, 53, 87, 53, 83, 55, 81, 55, 78, 56, 78, 59.538, 71.8085, 65.9253, 71.7488, 96.0146, 71.6306, 66.1345, 71.9542, 65.9253, 71.7488, 65.9135, 65, 67, 65, 72, 59, 74, 59, 75, 58, 75, 57, 95.9965, 57, 65.9253, 71.7488, 59.538, 71.8085, 60, 71, 61, 71, 65, 67, 65, 65, 65.9135, 65, 96.3045, 71.9207, 96.0314, 101.947, 66.27, 101.888, 66.1345, 71.9542, 96.0146, 71.6306, 96.0314, 101.947, 96.152, 102.068, 96.034, 131.983, 77.5135, 131.962, 72, 127, 70, 127, 68, 126, 68, 124, 66.0401, 122.6, 65.989, 102.166, 66.27, 101.888, 65.989, 102.166, 66.0401, 122.6, 61, 119, 61, 117, 60, 116, 58, 116, 58, 114, 55, 111, 55, 109, 51.0122, 102.021, 125.917, 71.902, 96.3045, 71.9207, 96.0146, 71.6306, 95.9965, 57, 126.112, 57, 126.249, 72.2333, 126.046, 102.111, 125.999, 102.158, 96.152, 102.068, 96.0314, 101.947, 96.3045, 71.9207, 125.917, 71.902, 125.999, 102.158, 126.171, 132.116, 126.057, 132.231, 96.1953, 132.146, 96.034, 131.983, 96.152, 102.068, 126.057, 132.231, 126.241, 161.808, 126.025, 162.025, 101.13, 162.013, 97, 151, 96, 151, 95.9905, 150.971, 96.1953, 132.146, 96.034, 131.983, 96.1953, 132.146, 95.9905, 150.971, 95, 148, 94, 148, 91, 145, 91, 143, 89, 143, 89, 141, 88, 141, 84, 136, 82, 136, 77.5135, 131.962, 126.025, 162.025, 125.896, 191.83, 106, 191.991, 106, 177, 104, 167, 103, 167, 101.13, 162.013, 156.097, 72.143, 156.057, 72.1833, 126.249, 72.2333, 125.917, 71.902, 126.112, 57, 155.915, 57, 156.293, 101.906, 156.051, 102.146, 126.046, 102.111, 126.249, 72.2333, 156.057, 72.1833, 156.051, 102.146, 155.853, 131.903, 126.171, 132.116, 125.999, 102.158, 126.046, 102.111, 156.263, 132.309, 156.138, 162.16, 156.127, 162.171, 126.241, 161.808, 126.057, 132.231, 126.171, 132.116, 155.853, 131.903, 156.127, 162.171, 155.802, 192.153, 126.111, 192.043, 125.896, 191.83, 126.025, 162.025, 126.241, 161.808, 185.644, 71.6821, 156.097, 72.143, 155.915, 57, 185.746, 57, 205, 58, 203, 58, 203, 61, 201, 63, 201, 66, 200, 66, 199, 67, 199, 70, 198.12, 71.9794, 186.015, 72.0465, 185.644, 71.682, 185.746, 57, 205, 57, 186.015, 72.0465, 186.116, 101.92, 185.729, 102.309, 156.293, 101.906, 156.057, 72.1833, 156.097, 72.143, 185.644, 71.6821, 195, 79, 195, 101.882, 186.116, 101.922, 186.015, 72.0465, 198.12, 71.9794, 185.729, 102.309, 186.126, 131.847, 185.948, 132.026, 156.263, 132.309, 155.853, 131.903, 156.051, 102.146, 156.293, 101.906, 186.149, 161.904, 185.79, 162.266, 156.138, 162.16, 156.263, 132.309, 185.948, 132.026, 185.79, 162.266, 186.294, 191.736, 185.792, 192.24, 155.908, 192.26, 155.802, 192.153, 156.127, 162.171, 156.138, 162.16, 126.111, 192.042, 125.943, 222.023, 125.755, 222.208, 101.832, 221.838, 102, 221, 103, 221, 104, 219, 104, 214, 106, 207, 106, 191.991, 125.896, 191.831, 125.755, 222.208, 125.745, 243, 95.8254, 243, 95.8294, 241.585, 97, 241, 97, 238, 99, 235, 99, 231, 100, 231, 101, 230, 101, 226, 101.832, 221.838, 95.8254, 243, 95, 243, 95, 242, 95.8294, 241.585, 155.802, 192.153, 155.908, 192.259, 155.929, 222.119, 125.943, 222.023, 126.111, 192.042, 155.929, 222.119, 155.933, 222.123, 155.888, 251.831, 155.797, 251.92, 125.971, 252.169, 125.741, 251.942, 125.755, 222.208, 125.943, 222.023, 186.029, 222.043, 155.933, 222.123, 155.929, 222.119, 155.908, 192.259, 185.792, 192.24, 186.206, 222.219, 186.163, 251.926, 185.87, 252.221, 155.888, 251.831, 155.933, 222.123, 186.029, 222.043, 195, 115, 196, 115, 199, 125, 200, 125, 203, 131, 204, 131, 204.871, 131.871, 186.126, 131.847, 185.729, 102.309, 186.116, 101.922, 195, 101.882, 204.871, 131.871, 206, 133, 206, 135, 207, 135, 209, 137, 209, 139, 211, 139, 213, 143, 215, 143, 215.99, 143.891, 216.013, 161.808, 186.149, 161.903, 185.948, 132.026, 186.126, 131.847, 216.16, 161.955, 215.677, 192.014, 186.294, 191.736, 185.79, 162.266, 186.149, 161.903, 216.013, 161.808, 237.864, 162.131, 240, 164, 240, 166, 244, 170, 244, 172, 246.009, 176.42, 245.983, 191.973, 245.892, 192.067, 215.714, 192.051, 215.677, 192.014, 216.16, 161.955, 225, 152, 227, 152, 227, 153, 230, 156, 232, 156, 232, 157, 237.864, 162.131, 216.16, 161.955, 216.013, 161.808, 215.99, 143.891, 249, 183, 249, 191.985, 245.983, 191.973, 246.009, 176.42, 215.677, 192.014, 215.714, 192.051, 215.821, 221.754, 186.206, 222.219, 186.029, 222.043, 185.792, 192.24, 186.294, 191.736, 216.044, 221.973, 216.174, 251.972, 186.163, 251.928, 186.206, 222.219, 215.821, 221.754, 245.892, 192.067, 245.988, 221.761, 216.044, 221.973, 215.821, 221.754, 215.714, 192.051, 249, 191.986, 249, 199, 248, 199, 245.945, 208.59, 245.892, 192.067, 245.983, 191.973, 239, 222, 239, 225, 237, 225, 237, 228, 236, 228, 225, 243, 216.135, 243, 216.044, 221.973, 239.127, 221.809) -polygons = [PackedInt32Array(115, 103, 104), PackedInt32Array(104, 105, 106), PackedInt32Array(106, 107, 108), PackedInt32Array(109, 110, 111), PackedInt32Array(111, 112, 113), PackedInt32Array(113, 114, 115), PackedInt32Array(115, 104, 106), PackedInt32Array(106, 108, 109), PackedInt32Array(111, 113, 115), PackedInt32Array(115, 106, 109), PackedInt32Array(109, 111, 115), PackedInt32Array(125, 116, 117), PackedInt32Array(117, 118, 119), PackedInt32Array(120, 121, 122), PackedInt32Array(123, 124, 125), PackedInt32Array(117, 119, 120), PackedInt32Array(122, 123, 125), PackedInt32Array(125, 117, 120), PackedInt32Array(120, 122, 125), PackedInt32Array(126, 127, 128), PackedInt32Array(130, 131, 132), PackedInt32Array(126, 128, 129), PackedInt32Array(130, 132, 126), PackedInt32Array(126, 129, 130), PackedInt32Array(137, 133, 134), PackedInt32Array(134, 135, 136), PackedInt32Array(136, 137, 134), PackedInt32Array(148, 138, 139), PackedInt32Array(139, 140, 141), PackedInt32Array(142, 143, 144), PackedInt32Array(145, 146, 147), PackedInt32Array(147, 148, 139), PackedInt32Array(139, 141, 142), PackedInt32Array(142, 144, 145), PackedInt32Array(145, 147, 139), PackedInt32Array(139, 142, 145), PackedInt32Array(158, 149, 150), PackedInt32Array(150, 151, 152), PackedInt32Array(153, 154, 155), PackedInt32Array(155, 156, 157), PackedInt32Array(157, 158, 150), PackedInt32Array(153, 155, 157), PackedInt32Array(157, 150, 152), PackedInt32Array(152, 153, 157), PackedInt32Array(163, 159, 160), PackedInt32Array(160, 161, 162), PackedInt32Array(162, 163, 160), PackedInt32Array(170, 164, 165), PackedInt32Array(165, 166, 167), PackedInt32Array(167, 168, 169), PackedInt32Array(169, 170, 165), PackedInt32Array(165, 167, 169), PackedInt32Array(176, 171, 172), PackedInt32Array(172, 173, 174), PackedInt32Array(174, 175, 176), PackedInt32Array(176, 172, 174), PackedInt32Array(184, 177, 178), PackedInt32Array(178, 179, 180), PackedInt32Array(181, 182, 183), PackedInt32Array(184, 178, 180), PackedInt32Array(181, 183, 184), PackedInt32Array(184, 180, 181), PackedInt32Array(197, 185, 186), PackedInt32Array(186, 187, 188), PackedInt32Array(188, 189, 190), PackedInt32Array(191, 192, 193), PackedInt32Array(193, 194, 195), PackedInt32Array(195, 196, 197), PackedInt32Array(186, 188, 190), PackedInt32Array(195, 197, 186), PackedInt32Array(186, 190, 191), PackedInt32Array(193, 195, 186), PackedInt32Array(186, 191, 193), PackedInt32Array(204, 198, 199), PackedInt32Array(199, 200, 201), PackedInt32Array(202, 203, 204), PackedInt32Array(199, 201, 202), PackedInt32Array(202, 204, 199), PackedInt32Array(210, 205, 206), PackedInt32Array(206, 207, 208), PackedInt32Array(208, 209, 210), PackedInt32Array(210, 206, 208), PackedInt32Array(215, 211, 212), PackedInt32Array(212, 213, 214), PackedInt32Array(214, 215, 212), PackedInt32Array(220, 216, 217), PackedInt32Array(217, 218, 219), PackedInt32Array(219, 220, 217), PackedInt32Array(227, 221, 222), PackedInt32Array(222, 223, 224), PackedInt32Array(224, 225, 226), PackedInt32Array(226, 227, 222), PackedInt32Array(222, 224, 226), PackedInt32Array(233, 228, 229), PackedInt32Array(229, 230, 231), PackedInt32Array(231, 232, 233), PackedInt32Array(233, 229, 231), PackedInt32Array(237, 234, 235), PackedInt32Array(235, 236, 237), PackedInt32Array(250, 238, 239), PackedInt32Array(239, 240, 241), PackedInt32Array(241, 242, 243), PackedInt32Array(244, 245, 246), PackedInt32Array(246, 247, 248), PackedInt32Array(249, 250, 239), PackedInt32Array(241, 243, 244), PackedInt32Array(244, 246, 248), PackedInt32Array(248, 249, 239), PackedInt32Array(239, 241, 244), PackedInt32Array(244, 248, 239), PackedInt32Array(257, 251, 252), PackedInt32Array(252, 253, 254), PackedInt32Array(254, 255, 256), PackedInt32Array(256, 257, 252), PackedInt32Array(252, 254, 256), PackedInt32Array(258, 259, 260), PackedInt32Array(261, 262, 258), PackedInt32Array(258, 260, 261), PackedInt32Array(269, 263, 264), PackedInt32Array(264, 265, 266), PackedInt32Array(266, 267, 268), PackedInt32Array(268, 269, 264), PackedInt32Array(264, 266, 268), PackedInt32Array(274, 270, 271), PackedInt32Array(271, 272, 273), PackedInt32Array(273, 274, 271), PackedInt32Array(281, 275, 276), PackedInt32Array(276, 277, 278), PackedInt32Array(278, 279, 280), PackedInt32Array(280, 281, 276), PackedInt32Array(276, 278, 280), PackedInt32Array(292, 282, 283), PackedInt32Array(283, 284, 285), PackedInt32Array(285, 286, 287), PackedInt32Array(288, 289, 290), PackedInt32Array(290, 291, 292), PackedInt32Array(283, 285, 287), PackedInt32Array(288, 290, 292), PackedInt32Array(292, 283, 287), PackedInt32Array(287, 288, 292), PackedInt32Array(304, 293, 294), PackedInt32Array(294, 295, 296), PackedInt32Array(297, 298, 299), PackedInt32Array(299, 300, 301), PackedInt32Array(302, 303, 304), PackedInt32Array(294, 296, 297), PackedInt32Array(299, 301, 302), PackedInt32Array(302, 304, 294), PackedInt32Array(294, 297, 299), PackedInt32Array(299, 302, 294), PackedInt32Array(308, 305, 306), PackedInt32Array(306, 307, 308), PackedInt32Array(313, 309, 310), PackedInt32Array(310, 311, 312), PackedInt32Array(312, 313, 310), PackedInt32Array(321, 314, 315), PackedInt32Array(315, 316, 317), PackedInt32Array(317, 318, 319), PackedInt32Array(319, 320, 321), PackedInt32Array(321, 315, 317), PackedInt32Array(317, 319, 321), PackedInt32Array(326, 322, 323), PackedInt32Array(323, 324, 325), PackedInt32Array(325, 326, 323), PackedInt32Array(332, 327, 328), PackedInt32Array(328, 329, 330), PackedInt32Array(330, 331, 332), PackedInt32Array(332, 328, 330), PackedInt32Array(333, 334, 335), PackedInt32Array(335, 336, 337), PackedInt32Array(337, 338, 339), PackedInt32Array(340, 341, 342), PackedInt32Array(342, 343, 333), PackedInt32Array(337, 339, 340), PackedInt32Array(340, 342, 333), PackedInt32Array(335, 337, 340), PackedInt32Array(340, 333, 335), PackedInt32Array(357, 344, 345), PackedInt32Array(346, 347, 348), PackedInt32Array(349, 350, 351), PackedInt32Array(351, 352, 353), PackedInt32Array(353, 354, 355), PackedInt32Array(355, 356, 357), PackedInt32Array(357, 345, 346), PackedInt32Array(346, 348, 349), PackedInt32Array(351, 353, 355), PackedInt32Array(355, 357, 346), PackedInt32Array(349, 351, 355), PackedInt32Array(355, 346, 349), PackedInt32Array(363, 358, 359), PackedInt32Array(359, 360, 361), PackedInt32Array(361, 362, 363), PackedInt32Array(363, 359, 361), PackedInt32Array(374, 364, 365), PackedInt32Array(366, 367, 368), PackedInt32Array(368, 369, 370), PackedInt32Array(370, 371, 372), PackedInt32Array(372, 373, 374), PackedInt32Array(374, 365, 366), PackedInt32Array(366, 368, 370), PackedInt32Array(370, 372, 374), PackedInt32Array(374, 366, 370), PackedInt32Array(375, 376, 377), PackedInt32Array(378, 379, 380), PackedInt32Array(380, 381, 382), PackedInt32Array(382, 383, 384), PackedInt32Array(375, 377, 378), PackedInt32Array(378, 380, 382), PackedInt32Array(382, 384, 375), PackedInt32Array(375, 378, 382), PackedInt32Array(388, 385, 386), PackedInt32Array(386, 387, 388), PackedInt32Array(395, 389, 390), PackedInt32Array(390, 391, 392), PackedInt32Array(392, 393, 394), PackedInt32Array(394, 395, 390), PackedInt32Array(390, 392, 394), PackedInt32Array(400, 396, 397), PackedInt32Array(397, 398, 399), PackedInt32Array(399, 400, 397), PackedInt32Array(405, 401, 402), PackedInt32Array(402, 403, 404), PackedInt32Array(404, 405, 402), PackedInt32Array(411, 406, 407), PackedInt32Array(408, 409, 410), PackedInt32Array(410, 411, 407), PackedInt32Array(407, 408, 410), PackedInt32Array(412, 413, 414), PackedInt32Array(414, 415, 416), PackedInt32Array(416, 417, 418), PackedInt32Array(418, 419, 420), PackedInt32Array(414, 416, 418), PackedInt32Array(418, 420, 412), PackedInt32Array(412, 414, 418)] -bones = ["Bone-0", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-1", PackedFloat32Array(0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-2", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-3", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-4", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-5", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-6", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-7", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-8", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-9", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-10", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-11", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-12", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-13", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-14", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-15", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0.7, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-16", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-17", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-18", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-19", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-20", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-21", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-22", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-23", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0.7, 1, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-24", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-25", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-26", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-27", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-28", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0.7, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-29", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-30", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0), "Bone-31", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0.7, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7), "Bone-32", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7)] -internal_vertex_count = 318 +polygon = PackedVector2Array(81, 11, 75, 13, 72, 13, 64, 19, 62, 19, 49, 32, 48, 32, 48, 34, 44, 38, 43, 38, 43, 40, 41, 42, 40, 42, 33, 55, 32, 55, 29, 63, 28, 63, 28, 66, 26, 70, 25, 70, 23, 77, 22, 77, 22, 81, 21, 83, 20, 83, 18, 91, 17, 91, 11, 119, 10, 119, 7, 138, 7, 166, 10, 181, 10, 186, 18, 202, 18, 204, 22, 208, 22, 210, 28, 215, 28, 217, 43, 230, 43, 231, 45, 231, 47, 233, 47, 234, 53, 237, 53, 238, 61, 241, 61, 242, 77, 246, 77, 247, 89, 248, 89, 249, 106, 249, 114, 247, 120, 247, 134, 242, 137, 242, 141, 239, 144, 239, 156, 230, 158, 230, 167, 221, 168, 221, 172, 214, 173, 214, 176, 206, 177, 206, 179, 198, 180, 198, 182, 175, 183, 175, 182, 152, 182, 143, 177, 119, 177, 114, 174, 107, 174, 103, 169, 92, 169, 89, 160, 72, 160, 69, 151, 54, 151, 52, 148, 49, 148, 47, 141, 39, 141, 37, 128, 25, 128, 24, 121, 20, 121, 19, 108, 14, 108, 13, 98, 11, 98, 10, 81, 10, 22.5, 149.5, 7, 149.5, 7, 134, 22.5, 134, 22.5, 134, 7.63158, 134, 10, 119, 11, 119, 11.1071, 118.5, 22.5, 118.5, 53.5, 56.5, 38, 56.5, 38, 45.7143, 40, 42, 41, 42, 42, 41, 53.5, 41, 38, 56.5, 31.4375, 56.5, 32, 55, 33, 55, 38, 45.7143, 53.5, 41, 42, 41, 43, 40, 43, 38, 44, 38, 48, 34, 48, 32, 49, 32, 53.5, 27.5, 38, 72, 24.4286, 72, 25, 70, 26, 70, 28, 66, 28, 63, 29, 63, 31.4375, 56.5, 38, 56.5, 53.5, 87.5, 38, 87.5, 38, 72, 53.5, 72, 38, 87.5, 22.5, 87.5, 22.5, 77, 23, 77, 24.4286, 72, 38, 72, 53.5, 72, 38, 72, 38, 56.5, 53.5, 56.5, 22.5, 87.5, 18.875, 87.5, 20, 83, 21, 83, 22, 81, 22, 77, 22.5, 77, 38, 103, 22.5, 103, 22.5, 87.5, 38, 87.5, 53.5, 118.5, 38, 118.5, 38, 103, 53.5, 103, 38, 118.5, 22.5, 118.5, 22.5, 103, 38, 103, 53.5, 103, 38, 103, 38, 87.5, 53.5, 87.5, 22.5, 118.5, 11.1071, 118.5, 14.4286, 103, 22.5, 103, 22.5, 103, 14.4286, 103, 17, 91, 18, 91, 18.875, 87.5, 22.5, 87.5, 38, 134, 22.5, 134, 22.5, 118.5, 38, 118.5, 53.5, 149.5, 38, 149.5, 38, 134, 53.5, 134, 38, 149.5, 22.5, 149.5, 22.5, 134, 38, 134, 53.5, 134, 38, 134, 38, 118.5, 53.5, 118.5, 69, 41, 53.5, 41, 53.5, 27.5, 55.5, 25.5, 69, 25.5, 84.5, 56.5, 69, 56.5, 69, 41, 84.5, 41, 69, 56.5, 53.5, 56.5, 53.5, 41, 69, 41, 84.5, 41, 69, 41, 69, 25.5, 84.5, 25.5, 84.5, 25.5, 69, 25.5, 69, 15.25, 72, 13, 75, 13, 81, 11, 81, 10, 84.5, 10, 69, 25.5, 55.5, 25.5, 62, 19, 64, 19, 69, 15.25, 69, 72, 53.5, 72, 53.5, 56.5, 69, 56.5, 84.5, 87.5, 69, 87.5, 69, 72, 84.5, 72, 69, 87.5, 53.5, 87.5, 53.5, 72, 69, 72, 84.5, 72, 69, 72, 69, 56.5, 84.5, 56.5, 69, 103, 53.5, 103, 53.5, 87.5, 69, 87.5, 84.5, 118.5, 69, 118.5, 69, 103, 84.5, 103, 69, 118.5, 53.5, 118.5, 53.5, 103, 69, 103, 84.5, 103, 69, 103, 69, 87.5, 84.5, 87.5, 69, 134, 53.5, 134, 53.5, 118.5, 69, 118.5, 84.5, 149.5, 69, 149.5, 69, 134, 84.5, 134, 69, 149.5, 53.5, 149.5, 53.5, 134, 69, 134, 84.5, 134, 69, 134, 69, 118.5, 84.5, 118.5, 108, 13, 108, 14, 115.5, 16.8846, 115.5, 25.5, 100, 25.5, 100, 11.4, 98, 11, 100, 11.4, 100, 25.5, 84.5, 25.5, 84.5, 10, 98, 10, 100, 41, 84.5, 41, 84.5, 25.5, 100, 25.5, 115.5, 56.5, 100, 56.5, 100, 41, 115.5, 41, 100, 56.5, 84.5, 56.5, 84.5, 41, 100, 41, 115.5, 41, 100, 41, 100, 25.5, 115.5, 25.5, 100, 72, 84.5, 72, 84.5, 56.5, 100, 56.5, 115.5, 87.5, 100, 87.5, 100, 72, 115.5, 72, 100, 87.5, 84.5, 87.5, 84.5, 72, 100, 72, 115.5, 72, 100, 72, 100, 56.5, 115.5, 56.5, 100, 103, 84.5, 103, 84.5, 87.5, 100, 87.5, 115.5, 118.5, 100, 118.5, 100, 103, 115.5, 103, 100, 118.5, 84.5, 118.5, 84.5, 103, 100, 103, 115.5, 103, 100, 103, 100, 87.5, 115.5, 87.5, 100, 134, 84.5, 134, 84.5, 118.5, 100, 118.5, 115.5, 149.5, 100, 149.5, 100, 134, 115.5, 134, 100, 149.5, 84.5, 149.5, 84.5, 134, 100, 134, 115.5, 134, 100, 134, 100, 118.5, 115.5, 118.5, 131, 27.7692, 131, 41, 115.5, 41, 115.5, 25.5, 128.542, 25.5, 146.5, 45.2857, 146.5, 56.5, 131, 56.5, 131, 41, 142.75, 41, 131, 56.5, 115.5, 56.5, 115.5, 41, 131, 41, 141, 37, 141, 39, 142.75, 41, 131, 41, 131, 27.7692, 121, 19, 121, 20, 128, 24, 128, 25, 128.542, 25.5, 115.5, 25.5, 115.5, 16.8846, 131, 72, 115.5, 72, 115.5, 56.5, 131, 56.5, 146.5, 87.5, 131, 87.5, 131, 72, 146.5, 72, 131, 87.5, 115.5, 87.5, 115.5, 72, 131, 72, 146.5, 72, 131, 72, 131, 56.5, 146.5, 56.5, 131, 103, 115.5, 103, 115.5, 87.5, 131, 87.5, 146.5, 118.5, 131, 118.5, 131, 103, 146.5, 103, 131, 118.5, 115.5, 118.5, 115.5, 103, 131, 103, 146.5, 103, 131, 103, 131, 87.5, 146.5, 87.5, 131, 134, 115.5, 134, 115.5, 118.5, 131, 118.5, 146.5, 149.5, 131, 149.5, 131, 134, 146.5, 134, 131, 149.5, 115.5, 149.5, 115.5, 134, 131, 134, 146.5, 134, 131, 134, 131, 118.5, 146.5, 118.5, 22.5, 180.5, 9.89999, 180.5, 7, 166, 7, 165, 22.5, 165, 22.5, 165, 7, 165, 7, 149.5, 22.5, 149.5, 38, 165, 22.5, 165, 22.5, 149.5, 38, 149.5, 53.5, 180.5, 38, 180.5, 38, 165, 53.5, 165, 38, 180.5, 22.5, 180.5, 22.5, 165, 38, 165, 53.5, 165, 38, 165, 38, 149.5, 53.5, 149.5, 38, 196, 22.5, 196, 22.5, 180.5, 38, 180.5, 53.5, 211.5, 38, 211.5, 38, 196, 53.5, 196, 38, 211.5, 22.5, 211.5, 22.5, 196, 38, 196, 53.5, 196, 38, 196, 38, 180.5, 53.5, 180.5, 22.5, 210.417, 22, 210, 22, 208, 18, 204, 18, 202, 15, 196, 22.5, 196, 22.5, 196, 15, 196, 10, 186, 10, 181, 9.89999, 180.5, 22.5, 180.5, 38, 225.667, 28, 217, 28, 215, 23.8, 211.5, 38, 211.5, 53.5, 238.188, 53, 238, 53, 237, 47, 234, 47, 233, 45, 231, 43, 231, 43, 230, 39.5385, 227, 53.5, 227, 53.5, 227, 38, 227, 38, 211.5, 53.5, 211.5, 69, 165, 53.5, 165, 53.5, 149.5, 69, 149.5, 84.5, 180.5, 69, 180.5, 69, 165, 84.5, 165, 69, 180.5, 53.5, 180.5, 53.5, 165, 69, 165, 84.5, 165, 69, 165, 69, 149.5, 84.5, 149.5, 69, 196, 53.5, 196, 53.5, 180.5, 69, 180.5, 84.5, 211.5, 69, 211.5, 69, 196, 84.5, 196, 69, 211.5, 53.5, 211.5, 53.5, 196, 69, 196, 84.5, 196, 69, 196, 69, 180.5, 84.5, 180.5, 69, 227, 53.5, 227, 53.5, 211.5, 69, 211.5, 84.5, 242.5, 69, 242.5, 69, 227, 84.5, 227, 69, 242.5, 63, 242.5, 61, 242, 61, 241, 53.5, 238.188, 53.5, 227, 69, 227, 84.5, 227, 69, 227, 69, 211.5, 84.5, 211.5, 69, 244, 63, 242.5, 69, 242.5, 84.5, 247.625, 77, 247, 77, 246, 69, 244, 69, 242.5, 84.5, 242.5, 100, 165, 84.5, 165, 84.5, 149.5, 100, 149.5, 115.5, 180.5, 100, 180.5, 100, 165, 115.5, 165, 100, 180.5, 84.5, 180.5, 84.5, 165, 100, 165, 115.5, 165, 100, 165, 100, 149.5, 115.5, 149.5, 100, 196, 84.5, 196, 84.5, 180.5, 100, 180.5, 115.5, 211.5, 100, 211.5, 100, 196, 115.5, 196, 100, 211.5, 84.5, 211.5, 84.5, 196, 100, 196, 115.5, 196, 100, 196, 100, 180.5, 115.5, 180.5, 100, 227, 84.5, 227, 84.5, 211.5, 100, 211.5, 115.5, 242.5, 100, 242.5, 100, 227, 115.5, 227, 100, 242.5, 84.5, 242.5, 84.5, 227, 100, 227, 115.5, 227, 100, 227, 100, 211.5, 115.5, 211.5, 100, 249, 89, 249, 89, 248, 84.5, 247.625, 84.5, 242.5, 100, 242.5, 115.5, 247, 114, 247, 106, 249, 100, 249, 100, 242.5, 115.5, 242.5, 131, 165, 115.5, 165, 115.5, 149.5, 131, 149.5, 146.5, 180.5, 131, 180.5, 131, 165, 146.5, 165, 131, 180.5, 115.5, 180.5, 115.5, 165, 131, 165, 146.5, 165, 131, 165, 131, 149.5, 146.5, 149.5, 131, 196, 115.5, 196, 115.5, 180.5, 131, 180.5, 146.5, 211.5, 131, 211.5, 131, 196, 146.5, 196, 131, 211.5, 115.5, 211.5, 115.5, 196, 131, 196, 146.5, 196, 131, 196, 131, 180.5, 146.5, 180.5, 131, 227, 115.5, 227, 115.5, 211.5, 131, 211.5, 146.5, 237.125, 144, 239, 141, 239, 137, 242, 134, 242, 132.6, 242.5, 131, 242.5, 131, 227, 146.5, 227, 131, 242.5, 115.5, 242.5, 115.5, 227, 131, 227, 146.5, 227, 131, 227, 131, 211.5, 146.5, 211.5, 131, 243.071, 120, 247, 115.5, 247, 115.5, 242.5, 131, 242.5, 131, 243.071, 131, 242.5, 132.6, 242.5, 160, 69, 160, 72, 146.5, 72, 146.5, 56.5, 152.5, 56.5, 168.206, 87.5, 162, 87.5, 162, 75.7778, 162, 75.7778, 162, 87.5, 146.5, 87.5, 146.5, 72, 160, 72, 148, 47, 148, 49, 151, 52, 151, 54, 152.5, 56.5, 146.5, 56.5, 146.5, 45.2857, 162, 103, 146.5, 103, 146.5, 87.5, 162, 87.5, 174, 107, 177, 114, 177, 118.5, 162, 118.5, 162, 103, 174, 103, 162, 118.5, 146.5, 118.5, 146.5, 103, 162, 103, 169, 89, 169, 92, 174, 103, 162, 103, 162, 87.5, 168.206, 87.5, 162, 134, 146.5, 134, 146.5, 118.5, 162, 118.5, 177.5, 149.5, 162, 149.5, 162, 134, 177.5, 134, 162, 149.5, 146.5, 149.5, 146.5, 134, 162, 134, 177.5, 134, 162, 134, 162, 118.5, 177.5, 118.5, 180.125, 134, 177.5, 134, 177.5, 121.4, 182, 143, 182, 149.5, 177.5, 149.5, 177.5, 134, 180.125, 134, 162, 165, 146.5, 165, 146.5, 149.5, 162, 149.5, 177.5, 180.5, 162, 180.5, 162, 165, 177.5, 165, 162, 180.5, 146.5, 180.5, 146.5, 165, 162, 165, 177.5, 165, 162, 165, 162, 149.5, 177.5, 149.5, 182, 152, 182.565, 165, 177.5, 165, 177.5, 149.5, 182, 149.5, 183, 175, 182, 175, 181.522, 180.5, 177.5, 180.5, 177.5, 165, 182.565, 165, 162, 196, 146.5, 196, 146.5, 180.5, 162, 180.5, 177.5, 204, 177, 206, 176, 206, 173.938, 211.5, 162, 211.5, 162, 196, 177.5, 196, 162, 211.5, 146.5, 211.5, 146.5, 196, 162, 196, 177.5, 196, 162, 196, 162, 180.5, 177.5, 180.5, 180.174, 196, 177.5, 196, 177.5, 180.5, 181.522, 180.5, 180, 198, 179, 198, 177.5, 204, 177.5, 196, 180.174, 196, 162, 227, 146.5, 227, 146.5, 211.5, 162, 211.5, 158, 230, 156, 230, 146.5, 237.125, 146.5, 227, 161, 227, 173, 214, 172, 214, 168, 221, 167, 221, 162, 226, 162, 211.5, 173.938, 211.5) +polygons = [PackedInt32Array(99, 96, 97), PackedInt32Array(97, 98, 99), PackedInt32Array(105, 100, 101), PackedInt32Array(101, 102, 103), PackedInt32Array(103, 104, 105), PackedInt32Array(105, 101, 103), PackedInt32Array(112, 106, 107), PackedInt32Array(107, 108, 109), PackedInt32Array(110, 111, 112), PackedInt32Array(107, 109, 110), PackedInt32Array(110, 112, 107), PackedInt32Array(113, 114, 115), PackedInt32Array(116, 117, 113), PackedInt32Array(113, 115, 116), PackedInt32Array(118, 119, 120), PackedInt32Array(120, 121, 122), PackedInt32Array(123, 124, 125), PackedInt32Array(125, 126, 118), PackedInt32Array(118, 120, 122), PackedInt32Array(123, 125, 118), PackedInt32Array(118, 122, 123), PackedInt32Array(135, 127, 128), PackedInt32Array(128, 129, 130), PackedInt32Array(131, 132, 133), PackedInt32Array(133, 134, 135), PackedInt32Array(135, 128, 130), PackedInt32Array(131, 133, 135), PackedInt32Array(135, 130, 131), PackedInt32Array(139, 136, 137), PackedInt32Array(137, 138, 139), PackedInt32Array(145, 140, 141), PackedInt32Array(141, 142, 143), PackedInt32Array(143, 144, 145), PackedInt32Array(145, 141, 143), PackedInt32Array(149, 146, 147), PackedInt32Array(147, 148, 149), PackedInt32Array(150, 151, 152), PackedInt32Array(154, 155, 156), PackedInt32Array(150, 152, 153), PackedInt32Array(154, 156, 150), PackedInt32Array(150, 153, 154), PackedInt32Array(160, 157, 158), PackedInt32Array(158, 159, 160), PackedInt32Array(164, 161, 162), PackedInt32Array(162, 163, 164), PackedInt32Array(168, 165, 166), PackedInt32Array(166, 167, 168), PackedInt32Array(172, 169, 170), PackedInt32Array(170, 171, 172), PackedInt32Array(176, 173, 174), PackedInt32Array(174, 175, 176), PackedInt32Array(182, 177, 178), PackedInt32Array(178, 179, 180), PackedInt32Array(180, 181, 182), PackedInt32Array(182, 178, 180), PackedInt32Array(186, 183, 184), PackedInt32Array(184, 185, 186), PackedInt32Array(190, 187, 188), PackedInt32Array(188, 189, 190), PackedInt32Array(194, 191, 192), PackedInt32Array(192, 193, 194), PackedInt32Array(198, 195, 196), PackedInt32Array(196, 197, 198), PackedInt32Array(203, 199, 200), PackedInt32Array(200, 201, 202), PackedInt32Array(202, 203, 200), PackedInt32Array(207, 204, 205), PackedInt32Array(205, 206, 207), PackedInt32Array(211, 208, 209), PackedInt32Array(209, 210, 211), PackedInt32Array(215, 212, 213), PackedInt32Array(213, 214, 215), PackedInt32Array(223, 216, 217), PackedInt32Array(217, 218, 219), PackedInt32Array(221, 222, 223), PackedInt32Array(217, 219, 220), PackedInt32Array(220, 221, 223), PackedInt32Array(223, 217, 220), PackedInt32Array(228, 224, 225), PackedInt32Array(225, 226, 227), PackedInt32Array(227, 228, 225), PackedInt32Array(232, 229, 230), PackedInt32Array(230, 231, 232), PackedInt32Array(236, 233, 234), PackedInt32Array(234, 235, 236), PackedInt32Array(240, 237, 238), PackedInt32Array(238, 239, 240), PackedInt32Array(244, 241, 242), PackedInt32Array(242, 243, 244), PackedInt32Array(248, 245, 246), PackedInt32Array(246, 247, 248), PackedInt32Array(252, 249, 250), PackedInt32Array(250, 251, 252), PackedInt32Array(256, 253, 254), PackedInt32Array(254, 255, 256), PackedInt32Array(260, 257, 258), PackedInt32Array(258, 259, 260), PackedInt32Array(264, 261, 262), PackedInt32Array(262, 263, 264), PackedInt32Array(268, 265, 266), PackedInt32Array(266, 267, 268), PackedInt32Array(272, 269, 270), PackedInt32Array(270, 271, 272), PackedInt32Array(276, 273, 274), PackedInt32Array(274, 275, 276), PackedInt32Array(282, 277, 278), PackedInt32Array(278, 279, 280), PackedInt32Array(280, 281, 282), PackedInt32Array(282, 278, 280), PackedInt32Array(283, 284, 285), PackedInt32Array(285, 286, 287), PackedInt32Array(287, 288, 283), PackedInt32Array(283, 285, 287), PackedInt32Array(292, 289, 290), PackedInt32Array(290, 291, 292), PackedInt32Array(296, 293, 294), PackedInt32Array(294, 295, 296), PackedInt32Array(300, 297, 298), PackedInt32Array(298, 299, 300), PackedInt32Array(304, 301, 302), PackedInt32Array(302, 303, 304), PackedInt32Array(308, 305, 306), PackedInt32Array(306, 307, 308), PackedInt32Array(312, 309, 310), PackedInt32Array(310, 311, 312), PackedInt32Array(316, 313, 314), PackedInt32Array(314, 315, 316), PackedInt32Array(320, 317, 318), PackedInt32Array(318, 319, 320), PackedInt32Array(324, 321, 322), PackedInt32Array(322, 323, 324), PackedInt32Array(328, 325, 326), PackedInt32Array(326, 327, 328), PackedInt32Array(332, 329, 330), PackedInt32Array(330, 331, 332), PackedInt32Array(336, 333, 334), PackedInt32Array(334, 335, 336), PackedInt32Array(340, 337, 338), PackedInt32Array(338, 339, 340), PackedInt32Array(344, 341, 342), PackedInt32Array(342, 343, 344), PackedInt32Array(348, 345, 346), PackedInt32Array(346, 347, 348), PackedInt32Array(352, 349, 350), PackedInt32Array(350, 351, 352), PackedInt32Array(357, 353, 354), PackedInt32Array(354, 355, 356), PackedInt32Array(356, 357, 354), PackedInt32Array(362, 358, 359), PackedInt32Array(359, 360, 361), PackedInt32Array(361, 362, 359), PackedInt32Array(366, 363, 364), PackedInt32Array(364, 365, 366), PackedInt32Array(371, 367, 368), PackedInt32Array(368, 369, 370), PackedInt32Array(370, 371, 368), PackedInt32Array(378, 372, 373), PackedInt32Array(373, 374, 375), PackedInt32Array(375, 376, 377), PackedInt32Array(377, 378, 373), PackedInt32Array(373, 375, 377), PackedInt32Array(382, 379, 380), PackedInt32Array(380, 381, 382), PackedInt32Array(386, 383, 384), PackedInt32Array(384, 385, 386), PackedInt32Array(390, 387, 388), PackedInt32Array(388, 389, 390), PackedInt32Array(394, 391, 392), PackedInt32Array(392, 393, 394), PackedInt32Array(398, 395, 396), PackedInt32Array(396, 397, 398), PackedInt32Array(402, 399, 400), PackedInt32Array(400, 401, 402), PackedInt32Array(406, 403, 404), PackedInt32Array(404, 405, 406), PackedInt32Array(410, 407, 408), PackedInt32Array(408, 409, 410), PackedInt32Array(414, 411, 412), PackedInt32Array(412, 413, 414), PackedInt32Array(418, 415, 416), PackedInt32Array(416, 417, 418), PackedInt32Array(422, 419, 420), PackedInt32Array(420, 421, 422), PackedInt32Array(426, 423, 424), PackedInt32Array(424, 425, 426), PackedInt32Array(431, 427, 428), PackedInt32Array(428, 429, 430), PackedInt32Array(430, 431, 428), PackedInt32Array(435, 432, 433), PackedInt32Array(433, 434, 435), PackedInt32Array(439, 436, 437), PackedInt32Array(437, 438, 439), PackedInt32Array(443, 440, 441), PackedInt32Array(441, 442, 443), PackedInt32Array(447, 444, 445), PackedInt32Array(445, 446, 447), PackedInt32Array(451, 448, 449), PackedInt32Array(449, 450, 451), PackedInt32Array(455, 452, 453), PackedInt32Array(453, 454, 455), PackedInt32Array(459, 456, 457), PackedInt32Array(457, 458, 459), PackedInt32Array(463, 460, 461), PackedInt32Array(461, 462, 463), PackedInt32Array(467, 464, 465), PackedInt32Array(465, 466, 467), PackedInt32Array(474, 468, 469), PackedInt32Array(470, 471, 472), PackedInt32Array(472, 473, 474), PackedInt32Array(474, 469, 470), PackedInt32Array(470, 472, 474), PackedInt32Array(480, 475, 476), PackedInt32Array(476, 477, 478), PackedInt32Array(478, 479, 480), PackedInt32Array(480, 476, 478), PackedInt32Array(485, 481, 482), PackedInt32Array(483, 484, 485), PackedInt32Array(485, 482, 483), PackedInt32Array(495, 486, 487), PackedInt32Array(488, 489, 490), PackedInt32Array(491, 492, 493), PackedInt32Array(493, 494, 495), PackedInt32Array(495, 487, 488), PackedInt32Array(488, 490, 491), PackedInt32Array(491, 493, 495), PackedInt32Array(495, 488, 491), PackedInt32Array(499, 496, 497), PackedInt32Array(497, 498, 499), PackedInt32Array(503, 500, 501), PackedInt32Array(501, 502, 503), PackedInt32Array(507, 504, 505), PackedInt32Array(505, 506, 507), PackedInt32Array(511, 508, 509), PackedInt32Array(509, 510, 511), PackedInt32Array(515, 512, 513), PackedInt32Array(513, 514, 515), PackedInt32Array(519, 516, 517), PackedInt32Array(517, 518, 519), PackedInt32Array(523, 520, 521), PackedInt32Array(521, 522, 523), PackedInt32Array(527, 524, 525), PackedInt32Array(525, 526, 527), PackedInt32Array(531, 528, 529), PackedInt32Array(529, 530, 531), PackedInt32Array(535, 532, 533), PackedInt32Array(533, 534, 535), PackedInt32Array(539, 536, 537), PackedInt32Array(537, 538, 539), PackedInt32Array(546, 540, 541), PackedInt32Array(541, 542, 543), PackedInt32Array(543, 544, 545), PackedInt32Array(545, 546, 541), PackedInt32Array(541, 543, 545), PackedInt32Array(550, 547, 548), PackedInt32Array(548, 549, 550), PackedInt32Array(553, 551, 552), PackedInt32Array(559, 554, 555), PackedInt32Array(556, 557, 558), PackedInt32Array(559, 555, 556), PackedInt32Array(556, 558, 559), PackedInt32Array(563, 560, 561), PackedInt32Array(561, 562, 563), PackedInt32Array(567, 564, 565), PackedInt32Array(565, 566, 567), PackedInt32Array(571, 568, 569), PackedInt32Array(569, 570, 571), PackedInt32Array(575, 572, 573), PackedInt32Array(573, 574, 575), PackedInt32Array(579, 576, 577), PackedInt32Array(577, 578, 579), PackedInt32Array(583, 580, 581), PackedInt32Array(581, 582, 583), PackedInt32Array(587, 584, 585), PackedInt32Array(585, 586, 587), PackedInt32Array(591, 588, 589), PackedInt32Array(589, 590, 591), PackedInt32Array(595, 592, 593), PackedInt32Array(593, 594, 595), PackedInt32Array(599, 596, 597), PackedInt32Array(597, 598, 599), PackedInt32Array(603, 600, 601), PackedInt32Array(601, 602, 603), PackedInt32Array(607, 604, 605), PackedInt32Array(605, 606, 607), PackedInt32Array(613, 608, 609), PackedInt32Array(610, 611, 612), PackedInt32Array(613, 609, 610), PackedInt32Array(610, 612, 613), PackedInt32Array(619, 614, 615), PackedInt32Array(615, 616, 617), PackedInt32Array(617, 618, 619), PackedInt32Array(619, 615, 617), PackedInt32Array(623, 620, 621), PackedInt32Array(621, 622, 623), PackedInt32Array(627, 624, 625), PackedInt32Array(625, 626, 627), PackedInt32Array(631, 628, 629), PackedInt32Array(629, 630, 631), PackedInt32Array(635, 632, 633), PackedInt32Array(633, 634, 635), PackedInt32Array(639, 636, 637), PackedInt32Array(637, 638, 639), PackedInt32Array(643, 640, 641), PackedInt32Array(641, 642, 643), PackedInt32Array(647, 644, 645), PackedInt32Array(645, 646, 647), PackedInt32Array(651, 648, 649), PackedInt32Array(649, 650, 651), PackedInt32Array(655, 652, 653), PackedInt32Array(653, 654, 655), PackedInt32Array(664, 656, 657), PackedInt32Array(658, 659, 660), PackedInt32Array(660, 661, 662), PackedInt32Array(662, 663, 664), PackedInt32Array(664, 657, 658), PackedInt32Array(658, 660, 662), PackedInt32Array(662, 664, 658), PackedInt32Array(668, 665, 666), PackedInt32Array(666, 667, 668), PackedInt32Array(672, 669, 670), PackedInt32Array(670, 671, 672), PackedInt32Array(677, 673, 674), PackedInt32Array(674, 675, 676), PackedInt32Array(676, 677, 674), PackedInt32Array(680, 678, 679), PackedInt32Array(685, 681, 682), PackedInt32Array(682, 683, 684), PackedInt32Array(684, 685, 682), PackedInt32Array(688, 686, 687), PackedInt32Array(693, 689, 690), PackedInt32Array(690, 691, 692), PackedInt32Array(692, 693, 690), PackedInt32Array(700, 694, 695), PackedInt32Array(695, 696, 697), PackedInt32Array(697, 698, 699), PackedInt32Array(699, 700, 695), PackedInt32Array(695, 697, 699), PackedInt32Array(704, 701, 702), PackedInt32Array(702, 703, 704), PackedInt32Array(705, 706, 707), PackedInt32Array(707, 708, 709), PackedInt32Array(709, 710, 705), PackedInt32Array(705, 707, 709), PackedInt32Array(714, 711, 712), PackedInt32Array(712, 713, 714), PackedInt32Array(720, 715, 716), PackedInt32Array(716, 717, 718), PackedInt32Array(718, 719, 720), PackedInt32Array(720, 716, 718), PackedInt32Array(724, 721, 722), PackedInt32Array(722, 723, 724), PackedInt32Array(728, 725, 726), PackedInt32Array(726, 727, 728), PackedInt32Array(732, 729, 730), PackedInt32Array(730, 731, 732), PackedInt32Array(736, 733, 734), PackedInt32Array(734, 735, 736), PackedInt32Array(739, 737, 738), PackedInt32Array(744, 740, 741), PackedInt32Array(741, 742, 743), PackedInt32Array(743, 744, 741), PackedInt32Array(748, 745, 746), PackedInt32Array(746, 747, 748), PackedInt32Array(752, 749, 750), PackedInt32Array(750, 751, 752), PackedInt32Array(756, 753, 754), PackedInt32Array(754, 755, 756), PackedInt32Array(760, 757, 758), PackedInt32Array(758, 759, 760), PackedInt32Array(761, 762, 763), PackedInt32Array(763, 764, 765), PackedInt32Array(765, 761, 763), PackedInt32Array(771, 766, 767), PackedInt32Array(767, 768, 769), PackedInt32Array(769, 770, 771), PackedInt32Array(771, 767, 769), PackedInt32Array(775, 772, 773), PackedInt32Array(773, 774, 775), PackedInt32Array(782, 776, 777), PackedInt32Array(778, 779, 780), PackedInt32Array(780, 781, 782), PackedInt32Array(782, 777, 778), PackedInt32Array(778, 780, 782), PackedInt32Array(786, 783, 784), PackedInt32Array(784, 785, 786), PackedInt32Array(790, 787, 788), PackedInt32Array(788, 789, 790), PackedInt32Array(794, 791, 792), PackedInt32Array(792, 793, 794), PackedInt32Array(799, 795, 796), PackedInt32Array(796, 797, 798), PackedInt32Array(798, 799, 796), PackedInt32Array(803, 800, 801), PackedInt32Array(801, 802, 803), PackedInt32Array(808, 804, 805), PackedInt32Array(805, 806, 807), PackedInt32Array(807, 808, 805), PackedInt32Array(815, 809, 810), PackedInt32Array(810, 811, 812), PackedInt32Array(812, 813, 814), PackedInt32Array(814, 815, 810), PackedInt32Array(810, 812, 814)] +bones = ["Bone-0", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-1", PackedFloat32Array(0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-2", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-3", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-4", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-5", PackedFloat32Array(1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-6", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-7", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-8", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-9", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-10", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-11", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-12", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-13", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-14", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-15", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-16", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-17", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-18", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-19", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-20", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-21", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-22", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-23", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-24", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-25", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-26", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-27", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-28", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-29", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-30", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-31", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-32", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-33", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-34", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-35", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1), "Bone-36", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1)] +internal_vertex_count = 720 script = ExtResource("2_2dapw") -rigidbody_scene = ExtResource("3_6ern4") +vertex_interval = 31 +min_area = 0.3 +radius = 31 -[node name="Skeleton2D" type="Skeleton2D" parent="SoftBody2D2"] +[node name="Skeleton2D" type="Skeleton2D" parent="Stickman"] visible = false -modification_stack = SubResource("SkeletonModificationStack2D_bxkn7") +modification_stack = SubResource("SkeletonModificationStack2D_ywjqn") -[node name="Bone-0" type="Bone2D" parent="SoftBody2D2/Skeleton2D"] -position = Vector2(58.635, 86.9573) -rotation = -0.00746424 -rest = Transform2D(0.999972, -0.00746417, 0.00746417, 0.999972, 58.635, 86.9573) +[node name="Bone-0" type="Bone2D" parent="Stickman/Skeleton2D"] +position = Vector2(14.75, 134) +rotation = 1.5708 +rest = Transform2D(-4.37114e-08, 1, -1, -4.37114e-08, 14.75, 134) auto_calculate_length_and_angle = false -length = 30.0 +length = 31.0 bone_angle = 0.0 -metadata/vert_owned = [103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115] -metadata/connected_nodes_paths = [NodePath("Bone-1"), NodePath("Bone-2"), NodePath("Bone-3")] +metadata/vert_owned = [96, 97, 98, 99, 100, 101, 102, 103, 104, 105] +metadata/idx = 0 +metadata/connected_nodes_paths = [NodePath("Bone-3"), NodePath("Bone-4"), NodePath("Bone-18"), NodePath("Bone-19")] +metadata/connected_nodes_idx = [3, 4, 18, 19] metadata/_local_pose_override_enabled_ = true -[node name="Bone-1" type="Bone2D" parent="SoftBody2D2/Skeleton2D"] -position = Vector2(77.7763, 64.4771) -rotation = -0.000504376 -rest = Transform2D(1, -0.000504376, 0.000504376, 1, 77.7763, 64.4771) +[node name="Bone-1" type="Bone2D" parent="Stickman/Skeleton2D"] +position = Vector2(42.4688, 42) +rotation = -0.318567 +rest = Transform2D(0.949685, -0.313206, 0.313206, 0.949685, 42.4688, 42) auto_calculate_length_and_angle = false -length = 30.0 +length = 31.0 bone_angle = 0.0 -metadata/vert_owned = [116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132] -metadata/connected_nodes_paths = [NodePath("Bone-0"), NodePath("Bone-2"), NodePath("Bone-4"), NodePath("Bone-5")] +metadata/vert_owned = [106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126] +metadata/idx = 1 +metadata/connected_nodes_paths = [NodePath("Bone-2"), NodePath("Bone-5"), NodePath("Bone-6")] +metadata/connected_nodes_idx = [2, 5, 6] metadata/_local_pose_override_enabled_ = true -[node name="Bone-2" type="Bone2D" parent="SoftBody2D2/Skeleton2D"] -position = Vector2(81.2195, 86.7887) -rotation = 1.81892 -scale = Vector2(1, 1) -rest = Transform2D(-0.245581, 0.969376, -0.969376, -0.245581, 81.2195, 86.7887) +[node name="Bone-2" type="Bone2D" parent="Stickman/Skeleton2D"] +position = Vector2(36.1875, 72) +rest = Transform2D(1, 0, 0, 1, 36.1875, 72) auto_calculate_length_and_angle = false -length = 30.0 +length = 31.0 bone_angle = 0.0 -metadata/vert_owned = [133, 134, 135, 136, 137] -metadata/connected_nodes_paths = [NodePath("Bone-0"), NodePath("Bone-1"), NodePath("Bone-3"), NodePath("Bone-4"), NodePath("Bone-5")] +metadata/vert_owned = [127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156] +metadata/idx = 2 +metadata/connected_nodes_paths = [NodePath("Bone-1"), NodePath("Bone-5"), NodePath("Bone-6"), NodePath("Bone-3"), NodePath("Bone-7")] +metadata/connected_nodes_idx = [1, 5, 6, 3, 7] metadata/_local_pose_override_enabled_ = true -[node name="Bone-3" type="Bone2D" parent="SoftBody2D2/Skeleton2D"] -position = Vector2(73.5821, 116.935) -rotation = 0.00570238 -rest = Transform2D(0.999984, 0.00570235, -0.00570235, 0.999984, 73.5821, 116.935) +[node name="Bone-3" type="Bone2D" parent="Stickman/Skeleton2D"] +position = Vector2(32.3036, 103) +rotation = -0.70145 +rest = Transform2D(0.763908, -0.645326, 0.645326, 0.763908, 32.3036, 103) auto_calculate_length_and_angle = false -length = 30.0 +length = 31.0 bone_angle = 0.0 -metadata/vert_owned = [138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158] -metadata/connected_nodes_paths = [NodePath("Bone-0"), NodePath("Bone-2"), NodePath("Bone-6"), NodePath("Bone-7")] +metadata/vert_owned = [157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182] +metadata/idx = 3 +metadata/connected_nodes_paths = [NodePath("Bone-0"), NodePath("Bone-4"), NodePath("Bone-2"), NodePath("Bone-6"), NodePath("Bone-7"), NodePath("Bone-8")] +metadata/connected_nodes_idx = [0, 4, 2, 6, 7, 8] metadata/_local_pose_override_enabled_ = true -[node name="Bone-4" type="Bone2D" parent="SoftBody2D2/Skeleton2D"] -position = Vector2(111.054, 64.4603) -rotation = 1.56699 +[node name="Bone-4" type="Bone2D" parent="Stickman/Skeleton2D"] +position = Vector2(38, 134) +rotation = -1.75252 scale = Vector2(1, 1) -rest = Transform2D(0.00380499, 0.999993, -0.999993, 0.00380499, 111.054, 64.4603) +rest = Transform2D(-0.180729, -0.983533, 0.983533, -0.180729, 38, 134) auto_calculate_length_and_angle = false -length = 30.0 +length = 31.0 bone_angle = 0.0 -metadata/vert_owned = [159, 160, 161, 162, 163] -metadata/connected_nodes_paths = [NodePath("Bone-1"), NodePath("Bone-2"), NodePath("Bone-5"), NodePath("Bone-9"), NodePath("Bone-10")] +metadata/vert_owned = [183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198] +metadata/idx = 4 +metadata/connected_nodes_paths = [NodePath("Bone-0"), NodePath("Bone-18"), NodePath("Bone-19"), NodePath("Bone-3"), NodePath("Bone-7"), NodePath("Bone-8"), NodePath("Bone-22")] +metadata/connected_nodes_idx = [0, 18, 19, 3, 7, 8, 22] metadata/_local_pose_override_enabled_ = true -[node name="Bone-5" type="Bone2D" parent="SoftBody2D2/Skeleton2D"] -position = Vector2(111.14, 87.0298) -rotation = 1.57204 -rest = Transform2D(-0.00124626, 0.999999, -0.999999, -0.00124626, 111.14, 87.0298) +[node name="Bone-5" type="Bone2D" parent="Stickman/Skeleton2D"] +position = Vector2(69, 33.25) +rotation = 0.244979 +scale = Vector2(1, 1) +rest = Transform2D(0.970142, 0.242536, -0.242536, 0.970142, 69, 33.25) auto_calculate_length_and_angle = false -length = 30.0 +length = 31.0 bone_angle = 0.0 -metadata/vert_owned = [164, 165, 166, 167, 168, 169, 170] -metadata/connected_nodes_paths = [NodePath("Bone-1"), NodePath("Bone-2"), NodePath("Bone-4"), NodePath("Bone-6"), NodePath("Bone-9"), NodePath("Bone-10"), NodePath("Bone-11")] +metadata/vert_owned = [199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228] +metadata/idx = 5 +metadata/connected_nodes_paths = [NodePath("Bone-1"), NodePath("Bone-2"), NodePath("Bone-6"), NodePath("Bone-10"), NodePath("Bone-11"), NodePath("Bone-9")] +metadata/connected_nodes_idx = [1, 2, 6, 10, 11, 9] metadata/_local_pose_override_enabled_ = true -[node name="Bone-6" type="Bone2D" parent="SoftBody2D2/Skeleton2D"] -position = Vector2(111.103, 117.149) -rotation = 1.8706 -rest = Transform2D(-0.295334, 0.955394, -0.955394, -0.295334, 111.103, 117.149) +[node name="Bone-6" type="Bone2D" parent="Stickman/Skeleton2D"] +position = Vector2(69, 72) +rotation = 1.5708 +rest = Transform2D(-4.37114e-08, 1, -1, -4.37114e-08, 69, 72) auto_calculate_length_and_angle = false -length = 30.0 +length = 31.0 bone_angle = 0.0 -metadata/vert_owned = [171, 172, 173, 174, 175, 176] -metadata/connected_nodes_paths = [NodePath("Bone-3"), NodePath("Bone-5"), NodePath("Bone-7"), NodePath("Bone-11"), NodePath("Bone-12")] +metadata/vert_owned = [229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244] +metadata/idx = 6 +metadata/connected_nodes_paths = [NodePath("Bone-1"), NodePath("Bone-2"), NodePath("Bone-5"), NodePath("Bone-3"), NodePath("Bone-7"), NodePath("Bone-10"), NodePath("Bone-11"), NodePath("Bone-12")] +metadata/connected_nodes_idx = [1, 2, 5, 3, 7, 10, 11, 12] metadata/_local_pose_override_enabled_ = true -[node name="Bone-7" type="Bone2D" parent="SoftBody2D2/Skeleton2D"] -position = Vector2(101.877, 146.994) -rotation = 1.19904 -rest = Transform2D(0.363256, 0.931689, -0.931689, 0.363256, 101.877, 146.994) +[node name="Bone-7" type="Bone2D" parent="Stickman/Skeleton2D"] +position = Vector2(69, 103) +rotation = 1.5708 +rest = Transform2D(-4.37114e-08, 1, -1, -4.37114e-08, 69, 103) auto_calculate_length_and_angle = false -length = 30.0 +length = 31.0 bone_angle = 0.0 -metadata/vert_owned = [177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197] -metadata/connected_nodes_paths = [NodePath("Bone-3"), NodePath("Bone-6"), NodePath("Bone-8"), NodePath("Bone-12")] +metadata/vert_owned = [245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260] +metadata/idx = 7 +metadata/connected_nodes_paths = [NodePath("Bone-2"), NodePath("Bone-3"), NodePath("Bone-6"), NodePath("Bone-4"), NodePath("Bone-8"), NodePath("Bone-11"), NodePath("Bone-12"), NodePath("Bone-13")] +metadata/connected_nodes_idx = [2, 3, 6, 4, 8, 11, 12, 13] metadata/_local_pose_override_enabled_ = true -[node name="Bone-8" type="Bone2D" parent="SoftBody2D2/Skeleton2D"] -position = Vector2(113.577, 177.002) -rotation = -0.000803141 -rest = Transform2D(1, -0.000803141, 0.000803141, 1, 113.577, 177.002) +[node name="Bone-8" type="Bone2D" parent="Stickman/Skeleton2D"] +position = Vector2(69, 134) +rotation = 1.5708 +rest = Transform2D(-4.37114e-08, 1, -1, -4.37114e-08, 69, 134) auto_calculate_length_and_angle = false -length = 30.0 +length = 31.0 bone_angle = 0.0 -metadata/vert_owned = [198, 199, 200, 201, 202, 203, 204] -metadata/connected_nodes_paths = [NodePath("Bone-7"), NodePath("Bone-12"), NodePath("Bone-13"), NodePath("Bone-19"), NodePath("Bone-21")] +metadata/vert_owned = [261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276] +metadata/idx = 8 +metadata/connected_nodes_paths = [NodePath("Bone-3"), NodePath("Bone-4"), NodePath("Bone-7"), NodePath("Bone-19"), NodePath("Bone-22"), NodePath("Bone-12"), NodePath("Bone-13"), NodePath("Bone-25")] +metadata/connected_nodes_idx = [3, 4, 7, 19, 22, 12, 13, 25] metadata/_local_pose_override_enabled_ = true -[node name="Bone-9" type="Bone2D" parent="SoftBody2D2/Skeleton2D"] -position = Vector2(141.007, 64.6166) -rotation = 1.56362 -rest = Transform2D(0.00718118, 0.999974, -0.999974, 0.00718118, 141.007, 64.6166) +[node name="Bone-9" type="Bone2D" parent="Stickman/Skeleton2D"] +position = Vector2(100, 17.75) +rotation = 1.5708 +rest = Transform2D(-4.37114e-08, 1, -1, -4.37114e-08, 100, 17.75) auto_calculate_length_and_angle = false -length = 30.0 +length = 31.0 bone_angle = 0.0 -metadata/vert_owned = [205, 206, 207, 208, 209, 210] -metadata/connected_nodes_paths = [NodePath("Bone-4"), NodePath("Bone-5"), NodePath("Bone-10"), NodePath("Bone-14")] +metadata/vert_owned = [277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288] +metadata/idx = 9 +metadata/connected_nodes_paths = [NodePath("Bone-5"), NodePath("Bone-10"), NodePath("Bone-14")] +metadata/connected_nodes_idx = [5, 10, 14] metadata/_local_pose_override_enabled_ = true -[node name="Bone-10" type="Bone2D" parent="SoftBody2D2/Skeleton2D"] -position = Vector2(141.169, 87.1646) -rotation = 1.57562 -rest = Transform2D(-0.0048218, 0.999988, -0.999988, -0.0048218, 141.169, 87.1646) +[node name="Bone-10" type="Bone2D" parent="Stickman/Skeleton2D"] +position = Vector2(100, 41) +rotation = -1.5708 +rest = Transform2D(-4.37114e-08, -1, 1, -4.37114e-08, 100, 41) auto_calculate_length_and_angle = false -length = 30.0 +length = 31.0 +bone_angle = 0.0 +metadata/vert_owned = [289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304] +metadata/idx = 10 +metadata/connected_nodes_paths = [NodePath("Bone-5"), NodePath("Bone-6"), NodePath("Bone-11"), NodePath("Bone-9"), NodePath("Bone-14"), NodePath("Bone-15")] +metadata/connected_nodes_idx = [5, 6, 11, 9, 14, 15] +metadata/_local_pose_override_enabled_ = true + +[node name="Bone-11" type="Bone2D" parent="Stickman/Skeleton2D"] +position = Vector2(100, 72) +rotation = 1.5708 +rest = Transform2D(-4.37114e-08, 1, -1, -4.37114e-08, 100, 72) +auto_calculate_length_and_angle = false +length = 31.0 bone_angle = 0.0 -metadata/vert_owned = [211, 212, 213, 214, 215] -metadata/connected_nodes_paths = [NodePath("Bone-4"), NodePath("Bone-5"), NodePath("Bone-9"), NodePath("Bone-11"), NodePath("Bone-15"), NodePath("Bone-16")] +metadata/vert_owned = [305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320] +metadata/idx = 11 +metadata/connected_nodes_paths = [NodePath("Bone-5"), NodePath("Bone-6"), NodePath("Bone-10"), NodePath("Bone-7"), NodePath("Bone-12"), NodePath("Bone-14"), NodePath("Bone-15"), NodePath("Bone-16")] +metadata/connected_nodes_idx = [5, 6, 10, 7, 12, 14, 15, 16] metadata/_local_pose_override_enabled_ = true -[node name="Bone-11" type="Bone2D" parent="SoftBody2D2/Skeleton2D"] -position = Vector2(141.025, 117.113) -rotation = -1.56597 -rest = Transform2D(0.00482183, -0.999988, 0.999988, 0.00482183, 141.025, 117.113) +[node name="Bone-12" type="Bone2D" parent="Stickman/Skeleton2D"] +position = Vector2(100, 103) +rotation = 1.5708 +rest = Transform2D(-4.37114e-08, 1, -1, -4.37114e-08, 100, 103) auto_calculate_length_and_angle = false -length = 30.0 +length = 31.0 +bone_angle = 0.0 +metadata/vert_owned = [321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336] +metadata/idx = 12 +metadata/connected_nodes_paths = [NodePath("Bone-6"), NodePath("Bone-7"), NodePath("Bone-11"), NodePath("Bone-8"), NodePath("Bone-13"), NodePath("Bone-15"), NodePath("Bone-16"), NodePath("Bone-17")] +metadata/connected_nodes_idx = [6, 7, 11, 8, 13, 15, 16, 17] +metadata/_local_pose_override_enabled_ = true + +[node name="Bone-13" type="Bone2D" parent="Stickman/Skeleton2D"] +position = Vector2(100, 134) +rotation = 1.5708 +rest = Transform2D(-4.37114e-08, 1, -1, -4.37114e-08, 100, 134) +auto_calculate_length_and_angle = false +length = 31.0 +bone_angle = 0.0 +metadata/vert_owned = [337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352] +metadata/idx = 13 +metadata/connected_nodes_paths = [NodePath("Bone-7"), NodePath("Bone-8"), NodePath("Bone-12"), NodePath("Bone-22"), NodePath("Bone-25"), NodePath("Bone-16"), NodePath("Bone-17"), NodePath("Bone-28")] +metadata/connected_nodes_idx = [7, 8, 12, 22, 25, 16, 17, 28] +metadata/_local_pose_override_enabled_ = true + +[node name="Bone-14" type="Bone2D" parent="Stickman/Skeleton2D"] +position = Vector2(131, 36.6923) +rotation = 2.29132 +rest = Transform2D(-0.659779, 0.75146, -0.75146, -0.659779, 131, 36.6923) +auto_calculate_length_and_angle = false +length = 31.0 bone_angle = 0.0 -metadata/vert_owned = [216, 217, 218, 219, 220] -metadata/connected_nodes_paths = [NodePath("Bone-5"), NodePath("Bone-6"), NodePath("Bone-10"), NodePath("Bone-12"), NodePath("Bone-16")] +metadata/vert_owned = [353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378] +metadata/idx = 14 +metadata/connected_nodes_paths = [NodePath("Bone-9"), NodePath("Bone-10"), NodePath("Bone-11"), NodePath("Bone-15"), NodePath("Bone-31")] +metadata/connected_nodes_idx = [9, 10, 11, 15, 31] metadata/_local_pose_override_enabled_ = true -[node name="Bone-12" type="Bone2D" parent="SoftBody2D2/Skeleton2D"] -position = Vector2(141.16, 147.037) -rotation = -1.57532 +[node name="Bone-15" type="Bone2D" parent="Stickman/Skeleton2D"] +position = Vector2(131, 72) +rotation = 2.35619 scale = Vector2(1, 1) -rest = Transform2D(-0.00452199, -0.99999, 0.99999, -0.00452199, 141.16, 147.037) +rest = Transform2D(-0.707107, 0.707107, -0.707107, -0.707107, 131, 72) +auto_calculate_length_and_angle = false +length = 31.0 +bone_angle = 0.0 +metadata/vert_owned = [379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394] +metadata/idx = 15 +metadata/connected_nodes_paths = [NodePath("Bone-10"), NodePath("Bone-11"), NodePath("Bone-14"), NodePath("Bone-12"), NodePath("Bone-16"), NodePath("Bone-31"), NodePath("Bone-32")] +metadata/connected_nodes_idx = [10, 11, 14, 12, 16, 31, 32] +metadata/_local_pose_override_enabled_ = true + +[node name="Bone-16" type="Bone2D" parent="Stickman/Skeleton2D"] +position = Vector2(131, 103) +rotation = 1.5708 +rest = Transform2D(-4.37114e-08, 1, -1, -4.37114e-08, 131, 103) auto_calculate_length_and_angle = false -length = 30.0 +length = 31.0 bone_angle = 0.0 -metadata/vert_owned = [221, 222, 223, 224, 225, 226, 227] -metadata/connected_nodes_paths = [NodePath("Bone-6"), NodePath("Bone-7"), NodePath("Bone-8"), NodePath("Bone-11"), NodePath("Bone-13"), NodePath("Bone-16"), NodePath("Bone-17")] +metadata/vert_owned = [395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410] +metadata/idx = 16 +metadata/connected_nodes_paths = [NodePath("Bone-11"), NodePath("Bone-12"), NodePath("Bone-15"), NodePath("Bone-13"), NodePath("Bone-17"), NodePath("Bone-31"), NodePath("Bone-32"), NodePath("Bone-33")] +metadata/connected_nodes_idx = [11, 12, 15, 13, 17, 31, 32, 33] metadata/_local_pose_override_enabled_ = true -[node name="Bone-13" type="Bone2D" parent="SoftBody2D2/Skeleton2D"] -position = Vector2(141.012, 176.98) -rotation = 0.00763414 -rest = Transform2D(0.999971, 0.00763406, -0.00763406, 0.999971, 141.012, 176.98) +[node name="Bone-17" type="Bone2D" parent="Stickman/Skeleton2D"] +position = Vector2(131, 134) +rotation = 1.5708 +rest = Transform2D(-4.37114e-08, 1, -1, -4.37114e-08, 131, 134) auto_calculate_length_and_angle = false -length = 30.0 +length = 31.0 bone_angle = 0.0 -metadata/vert_owned = [228, 229, 230, 231, 232, 233] -metadata/connected_nodes_paths = [NodePath("Bone-8"), NodePath("Bone-12"), NodePath("Bone-17"), NodePath("Bone-18"), NodePath("Bone-19"), NodePath("Bone-21")] +metadata/vert_owned = [411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426] +metadata/idx = 17 +metadata/connected_nodes_paths = [NodePath("Bone-12"), NodePath("Bone-13"), NodePath("Bone-16"), NodePath("Bone-25"), NodePath("Bone-28"), NodePath("Bone-32"), NodePath("Bone-33"), NodePath("Bone-34")] +metadata/connected_nodes_idx = [12, 13, 16, 25, 28, 32, 33, 34] metadata/_local_pose_override_enabled_ = true -[node name="Bone-14" type="Bone2D" parent="SoftBody2D2/Skeleton2D"] -position = Vector2(180.458, 64.5715) -rotation = 1.71991 -rest = Transform2D(-0.148563, 0.988903, -0.988903, -0.148563, 180.458, 64.5715) +[node name="Bone-18" type="Bone2D" parent="Stickman/Skeleton2D"] +position = Vector2(14.75, 165) +rotation = -0.927295 +rest = Transform2D(0.6, -0.8, 0.8, 0.6, 14.75, 165) auto_calculate_length_and_angle = false -length = 30.0 +length = 31.0 bone_angle = 0.0 -metadata/vert_owned = [234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250] -metadata/connected_nodes_paths = [NodePath("Bone-9"), NodePath("Bone-15")] +metadata/vert_owned = [427, 428, 429, 430, 431, 432, 433, 434, 435] +metadata/idx = 18 +metadata/connected_nodes_paths = [NodePath("Bone-20"), NodePath("Bone-0"), NodePath("Bone-4"), NodePath("Bone-19")] +metadata/connected_nodes_idx = [20, 0, 4, 19] metadata/_local_pose_override_enabled_ = true -[node name="Bone-15" type="Bone2D" parent="SoftBody2D2/Skeleton2D"] -position = Vector2(177.089, 86.9956) -rotation = 1.77064 +[node name="Bone-19" type="Bone2D" parent="Stickman/Skeleton2D"] +position = Vector2(38, 165) +rotation = -0.785398 scale = Vector2(1, 1) -rest = Transform2D(-0.19852, 0.980097, -0.980097, -0.19852, 177.089, 86.9956) +rest = Transform2D(0.707107, -0.707107, 0.707107, 0.707107, 38, 165) auto_calculate_length_and_angle = false -length = 30.0 +length = 31.0 bone_angle = 0.0 -metadata/vert_owned = [251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262] -metadata/connected_nodes_paths = [NodePath("Bone-10"), NodePath("Bone-14"), NodePath("Bone-16"), NodePath("Bone-25")] +metadata/vert_owned = [436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451] +metadata/idx = 19 +metadata/connected_nodes_paths = [NodePath("Bone-0"), NodePath("Bone-4"), NodePath("Bone-18"), NodePath("Bone-8"), NodePath("Bone-22"), NodePath("Bone-20"), NodePath("Bone-23")] +metadata/connected_nodes_idx = [0, 4, 18, 8, 22, 20, 23] metadata/_local_pose_override_enabled_ = true -[node name="Bone-16" type="Bone2D" parent="SoftBody2D2/Skeleton2D"] -position = Vector2(170.99, 117.107) -rotation = -1.37095 -rest = Transform2D(0.19852, -0.980097, 0.980097, 0.19852, 170.99, 117.107) +[node name="Bone-20" type="Bone2D" parent="Stickman/Skeleton2D"] +position = Vector2(31.7, 196) +rest = Transform2D(1, 0, 0, 1, 31.7, 196) auto_calculate_length_and_angle = false -length = 30.0 +length = 31.0 bone_angle = 0.0 -metadata/vert_owned = [263, 264, 265, 266, 267, 268, 269] -metadata/connected_nodes_paths = [NodePath("Bone-10"), NodePath("Bone-11"), NodePath("Bone-12"), NodePath("Bone-15"), NodePath("Bone-17"), NodePath("Bone-25"), NodePath("Bone-26")] +metadata/vert_owned = [452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480] +metadata/idx = 20 +metadata/connected_nodes_paths = [NodePath("Bone-18"), NodePath("Bone-19"), NodePath("Bone-22"), NodePath("Bone-23"), NodePath("Bone-21"), NodePath("Bone-24")] +metadata/connected_nodes_idx = [18, 19, 22, 23, 21, 24] metadata/_local_pose_override_enabled_ = true -[node name="Bone-17" type="Bone2D" parent="SoftBody2D2/Skeleton2D"] -position = Vector2(171.144, 147.146) -rotation = 1.57397 -rest = Transform2D(-0.0031753, 0.999995, -0.999995, -0.0031753, 171.144, 147.146) +[node name="Bone-21" type="Bone2D" parent="Stickman/Skeleton2D"] +position = Vector2(38.65, 224.844) +rotation = -1.80724 +rest = Transform2D(-0.23425, -0.972176, 0.972176, -0.23425, 38.65, 224.844) auto_calculate_length_and_angle = false -length = 30.0 +length = 31.0 bone_angle = 0.0 -metadata/vert_owned = [270, 271, 272, 273, 274] -metadata/connected_nodes_paths = [NodePath("Bone-12"), NodePath("Bone-13"), NodePath("Bone-16"), NodePath("Bone-18"), NodePath("Bone-25"), NodePath("Bone-26"), NodePath("Bone-27")] +metadata/vert_owned = [481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499] +metadata/idx = 21 +metadata/connected_nodes_paths = [NodePath("Bone-24"), NodePath("Bone-20"), NodePath("Bone-23")] +metadata/connected_nodes_idx = [24, 20, 23] metadata/_local_pose_override_enabled_ = true -[node name="Bone-18" type="Bone2D" parent="SoftBody2D2/Skeleton2D"] -position = Vector2(171.048, 177.21) -rotation = 1.57347 -rest = Transform2D(-0.00266973, 0.999996, -0.999996, -0.00266973, 171.048, 177.21) +[node name="Bone-22" type="Bone2D" parent="Stickman/Skeleton2D"] +position = Vector2(69, 165) +rest = Transform2D(1, 0, 0, 1, 69, 165) auto_calculate_length_and_angle = false -length = 30.0 +length = 31.0 bone_angle = 0.0 -metadata/vert_owned = [275, 276, 277, 278, 279, 280, 281] -metadata/connected_nodes_paths = [NodePath("Bone-13"), NodePath("Bone-17"), NodePath("Bone-21"), NodePath("Bone-23"), NodePath("Bone-27"), NodePath("Bone-29")] +metadata/vert_owned = [500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515] +metadata/idx = 22 +metadata/connected_nodes_paths = [NodePath("Bone-4"), NodePath("Bone-8"), NodePath("Bone-19"), NodePath("Bone-13"), NodePath("Bone-25"), NodePath("Bone-20"), NodePath("Bone-23"), NodePath("Bone-26")] +metadata/connected_nodes_idx = [4, 8, 19, 13, 25, 20, 23, 26] metadata/_local_pose_override_enabled_ = true -[node name="Bone-19" type="Bone2D" parent="SoftBody2D2/Skeleton2D"] -position = Vector2(113.972, 207.019) -rotation = 1.71138 -scale = Vector2(1, 1) -rest = Transform2D(-0.140118, 0.990135, -0.990135, -0.140118, 113.972, 207.019) +[node name="Bone-23" type="Bone2D" parent="Stickman/Skeleton2D"] +position = Vector2(69, 196) +rotation = 1.5708 +rest = Transform2D(-4.37114e-08, 1, -1, -4.37114e-08, 69, 196) auto_calculate_length_and_angle = false -length = 30.0 +length = 31.0 bone_angle = 0.0 -metadata/vert_owned = [282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292] -metadata/connected_nodes_paths = [NodePath("Bone-8"), NodePath("Bone-13"), NodePath("Bone-20"), NodePath("Bone-21"), NodePath("Bone-22")] +metadata/vert_owned = [516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531] +metadata/idx = 23 +metadata/connected_nodes_paths = [NodePath("Bone-19"), NodePath("Bone-20"), NodePath("Bone-22"), NodePath("Bone-21"), NodePath("Bone-24"), NodePath("Bone-25"), NodePath("Bone-26"), NodePath("Bone-27")] +metadata/connected_nodes_idx = [19, 20, 22, 21, 24, 25, 26, 27] metadata/_local_pose_override_enabled_ = true -[node name="Bone-20" type="Bone2D" parent="SoftBody2D2/Skeleton2D"] -position = Vector2(110.377, 232.419) -rotation = -0.69228 -rest = Transform2D(0.769792, -0.638294, 0.638294, 0.769792, 110.377, 232.419) +[node name="Bone-24" type="Bone2D" parent="Stickman/Skeleton2D"] +position = Vector2(69, 229.562) +rotation = -1.5708 +rest = Transform2D(-4.37114e-08, -1, 1, -4.37114e-08, 69, 229.562) auto_calculate_length_and_angle = false -length = 30.0 +length = 31.0 bone_angle = 0.0 -metadata/vert_owned = [293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308] -metadata/connected_nodes_paths = [NodePath("Bone-19"), NodePath("Bone-21"), NodePath("Bone-22")] +metadata/vert_owned = [532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559] +metadata/idx = 24 +metadata/connected_nodes_paths = [NodePath("Bone-21"), NodePath("Bone-20"), NodePath("Bone-23"), NodePath("Bone-26"), NodePath("Bone-27")] +metadata/connected_nodes_idx = [21, 20, 23, 26, 27] metadata/_local_pose_override_enabled_ = true -[node name="Bone-21" type="Bone2D" parent="SoftBody2D2/Skeleton2D"] -position = Vector2(140.936, 207.081) -rotation = -3.13932 -rest = Transform2D(-0.999997, -0.0022749, 0.0022749, -0.999997, 140.936, 207.081) +[node name="Bone-25" type="Bone2D" parent="Stickman/Skeleton2D"] +position = Vector2(100, 165) +rest = Transform2D(1, 0, 0, 1, 100, 165) auto_calculate_length_and_angle = false -length = 30.0 +length = 31.0 bone_angle = 0.0 -metadata/vert_owned = [309, 310, 311, 312, 313] -metadata/connected_nodes_paths = [NodePath("Bone-8"), NodePath("Bone-13"), NodePath("Bone-18"), NodePath("Bone-19"), NodePath("Bone-20"), NodePath("Bone-22"), NodePath("Bone-23")] +metadata/vert_owned = [560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575] +metadata/idx = 25 +metadata/connected_nodes_paths = [NodePath("Bone-8"), NodePath("Bone-13"), NodePath("Bone-22"), NodePath("Bone-17"), NodePath("Bone-28"), NodePath("Bone-23"), NodePath("Bone-26"), NodePath("Bone-29")] +metadata/connected_nodes_idx = [8, 13, 22, 17, 28, 23, 26, 29] metadata/_local_pose_override_enabled_ = true -[node name="Bone-22" type="Bone2D" parent="SoftBody2D2/Skeleton2D"] -position = Vector2(140.837, 237.096) -rotation = -1.5675 -rest = Transform2D(0.00329823, -0.999995, 0.999995, 0.00329823, 140.837, 237.096) +[node name="Bone-26" type="Bone2D" parent="Stickman/Skeleton2D"] +position = Vector2(100, 196) +rotation = 1.5708 +rest = Transform2D(-4.37114e-08, 1, -1, -4.37114e-08, 100, 196) auto_calculate_length_and_angle = false -length = 30.0 +length = 31.0 bone_angle = 0.0 -metadata/vert_owned = [314, 315, 316, 317, 318, 319, 320, 321] -metadata/connected_nodes_paths = [NodePath("Bone-19"), NodePath("Bone-20"), NodePath("Bone-21"), NodePath("Bone-24")] +metadata/vert_owned = [576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591] +metadata/idx = 26 +metadata/connected_nodes_paths = [NodePath("Bone-22"), NodePath("Bone-23"), NodePath("Bone-25"), NodePath("Bone-24"), NodePath("Bone-27"), NodePath("Bone-28"), NodePath("Bone-29"), NodePath("Bone-30")] +metadata/connected_nodes_idx = [22, 23, 25, 24, 27, 28, 29, 30] metadata/_local_pose_override_enabled_ = true -[node name="Bone-23" type="Bone2D" parent="SoftBody2D2/Skeleton2D"] -position = Vector2(170.968, 207.182) -rotation = 1.56817 -rest = Transform2D(0.00262685, 0.999997, -0.999997, 0.00262685, 170.968, 207.182) +[node name="Bone-27" type="Bone2D" parent="Stickman/Skeleton2D"] +position = Vector2(100, 230.25) +rotation = -1.5708 +rest = Transform2D(-4.37114e-08, -1, 1, -4.37114e-08, 100, 230.25) auto_calculate_length_and_angle = false -length = 30.0 +length = 31.0 bone_angle = 0.0 -metadata/vert_owned = [322, 323, 324, 325, 326] -metadata/connected_nodes_paths = [NodePath("Bone-18"), NodePath("Bone-21"), NodePath("Bone-24"), NodePath("Bone-29"), NodePath("Bone-30")] +metadata/vert_owned = [592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619] +metadata/idx = 27 +metadata/connected_nodes_paths = [NodePath("Bone-23"), NodePath("Bone-24"), NodePath("Bone-26"), NodePath("Bone-29"), NodePath("Bone-30")] +metadata/connected_nodes_idx = [23, 24, 26, 29, 30] metadata/_local_pose_override_enabled_ = true -[node name="Bone-24" type="Bone2D" parent="SoftBody2D2/Skeleton2D"] -position = Vector2(171.047, 237.132) -rotation = -0.791999 -rest = Transform2D(0.702424, -0.711759, 0.711759, 0.702424, 171.047, 237.132) +[node name="Bone-28" type="Bone2D" parent="Stickman/Skeleton2D"] +position = Vector2(131, 165) +rest = Transform2D(1, 0, 0, 1, 131, 165) auto_calculate_length_and_angle = false -length = 30.0 +length = 31.0 bone_angle = 0.0 -metadata/vert_owned = [327, 328, 329, 330, 331, 332] -metadata/connected_nodes_paths = [NodePath("Bone-22"), NodePath("Bone-23"), NodePath("Bone-29"), NodePath("Bone-30")] +metadata/vert_owned = [620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635] +metadata/idx = 28 +metadata/connected_nodes_paths = [NodePath("Bone-13"), NodePath("Bone-17"), NodePath("Bone-25"), NodePath("Bone-33"), NodePath("Bone-34"), NodePath("Bone-26"), NodePath("Bone-29"), NodePath("Bone-35")] +metadata/connected_nodes_idx = [13, 17, 25, 33, 34, 26, 29, 35] metadata/_local_pose_override_enabled_ = true -[node name="Bone-25" type="Bone2D" parent="SoftBody2D2/Skeleton2D"] -position = Vector2(195.3, 116.876) -rotation = 2.24433 -rest = Transform2D(-0.623748, 0.781625, -0.781625, -0.623748, 195.3, 116.876) +[node name="Bone-29" type="Bone2D" parent="Stickman/Skeleton2D"] +position = Vector2(131, 196) +rotation = 1.5708 +rest = Transform2D(-4.37114e-08, 1, -1, -4.37114e-08, 131, 196) auto_calculate_length_and_angle = false -length = 30.0 +length = 31.0 bone_angle = 0.0 -metadata/vert_owned = [333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343] -metadata/connected_nodes_paths = [NodePath("Bone-15"), NodePath("Bone-16"), NodePath("Bone-17"), NodePath("Bone-26")] +metadata/vert_owned = [636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651] +metadata/idx = 29 +metadata/connected_nodes_paths = [NodePath("Bone-25"), NodePath("Bone-26"), NodePath("Bone-28"), NodePath("Bone-27"), NodePath("Bone-30"), NodePath("Bone-34"), NodePath("Bone-35"), NodePath("Bone-36")] +metadata/connected_nodes_idx = [25, 26, 28, 27, 30, 34, 35, 36] metadata/_local_pose_override_enabled_ = true -[node name="Bone-26" type="Bone2D" parent="SoftBody2D2/Skeleton2D"] -position = Vector2(200.981, 146.875) -rotation = -1.75795 -rest = Transform2D(-0.186064, -0.982538, 0.982538, -0.186064, 200.981, 146.875) +[node name="Bone-30" type="Bone2D" parent="Stickman/Skeleton2D"] +position = Vector2(131, 229.25) +rotation = -1.5708 +rest = Transform2D(-4.37114e-08, -1, 1, -4.37114e-08, 131, 229.25) auto_calculate_length_and_angle = false -length = 30.0 +length = 31.0 bone_angle = 0.0 -metadata/vert_owned = [344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357] -metadata/connected_nodes_paths = [NodePath("Bone-16"), NodePath("Bone-17"), NodePath("Bone-25"), NodePath("Bone-27"), NodePath("Bone-28")] +metadata/vert_owned = [652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680] +metadata/idx = 30 +metadata/connected_nodes_paths = [NodePath("Bone-26"), NodePath("Bone-27"), NodePath("Bone-29"), NodePath("Bone-35"), NodePath("Bone-36")] +metadata/connected_nodes_idx = [26, 27, 29, 35, 36] metadata/_local_pose_override_enabled_ = true -[node name="Bone-27" type="Bone2D" parent="SoftBody2D2/Skeleton2D"] -position = Vector2(200.975, 176.911) -rotation = -1.5706 -rest = Transform2D(0.000193075, -1, 1, 0.000193075, 200.975, 176.911) +[node name="Bone-31" type="Bone2D" parent="Stickman/Skeleton2D"] +position = Vector2(157.353, 66.3929) +rotation = 2.19474 +rest = Transform2D(-0.584243, 0.811579, -0.811579, -0.584243, 157.353, 66.3929) auto_calculate_length_and_angle = false -length = 30.0 +length = 31.0 bone_angle = 0.0 -metadata/vert_owned = [358, 359, 360, 361, 362, 363] -metadata/connected_nodes_paths = [NodePath("Bone-17"), NodePath("Bone-18"), NodePath("Bone-26"), NodePath("Bone-28"), NodePath("Bone-29")] +metadata/vert_owned = [681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700] +metadata/idx = 31 +metadata/connected_nodes_paths = [NodePath("Bone-14"), NodePath("Bone-15"), NodePath("Bone-16"), NodePath("Bone-32")] +metadata/connected_nodes_idx = [14, 15, 16, 32] metadata/_local_pose_override_enabled_ = true -[node name="Bone-28" type="Bone2D" parent="SoftBody2D2/Skeleton2D"] -position = Vector2(232.339, 167.979) -rotation = 2.86415 -rest = Transform2D(-0.961758, 0.273901, -0.273901, -0.961758, 232.339, 167.979) +[node name="Bone-32" type="Bone2D" parent="Stickman/Skeleton2D"] +position = Vector2(161.75, 103) +rotation = 3.14159 +rest = Transform2D(-1, 1.50996e-07, -1.50996e-07, -1, 161.75, 103) auto_calculate_length_and_angle = false -length = 30.0 +length = 31.0 bone_angle = 0.0 -metadata/vert_owned = [364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388] -metadata/connected_nodes_paths = [NodePath("Bone-26"), NodePath("Bone-27"), NodePath("Bone-31")] +metadata/vert_owned = [701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720] +metadata/idx = 32 +metadata/connected_nodes_paths = [NodePath("Bone-33"), NodePath("Bone-15"), NodePath("Bone-16"), NodePath("Bone-31"), NodePath("Bone-17")] +metadata/connected_nodes_idx = [33, 15, 16, 31, 17] metadata/_local_pose_override_enabled_ = true -[node name="Bone-29" type="Bone2D" parent="SoftBody2D2/Skeleton2D"] -position = Vector2(200.806, 206.977) -rotation = -1.56518 -scale = Vector2(1, 1) -rest = Transform2D(0.0056129, -0.999984, 0.999984, 0.0056129, 200.806, 206.977) +[node name="Bone-33" type="Bone2D" parent="Stickman/Skeleton2D"] +position = Vector2(164.25, 134) +rotation = 3.14159 +rest = Transform2D(-1, 1.50996e-07, -1.50996e-07, -1, 164.25, 134) auto_calculate_length_and_angle = false -length = 30.0 +length = 31.0 bone_angle = 0.0 -metadata/vert_owned = [389, 390, 391, 392, 393, 394, 395] -metadata/connected_nodes_paths = [NodePath("Bone-18"), NodePath("Bone-23"), NodePath("Bone-24"), NodePath("Bone-27"), NodePath("Bone-30"), NodePath("Bone-31"), NodePath("Bone-32")] +metadata/vert_owned = [721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744] +metadata/idx = 33 +metadata/connected_nodes_paths = [NodePath("Bone-32"), NodePath("Bone-16"), NodePath("Bone-17"), NodePath("Bone-28"), NodePath("Bone-34")] +metadata/connected_nodes_idx = [32, 16, 17, 28, 34] metadata/_local_pose_override_enabled_ = true -[node name="Bone-30" type="Bone2D" parent="SoftBody2D2/Skeleton2D"] -position = Vector2(201.168, 236.863) -rotation = -1.58292 -rest = Transform2D(-0.0121221, -0.999927, 0.999927, -0.0121221, 201.168, 236.863) +[node name="Bone-34" type="Bone2D" parent="Stickman/Skeleton2D"] +position = Vector2(164.75, 165) +rotation = -1.58692 +scale = Vector2(1, 1) +rest = Transform2D(-0.0161269, -0.99987, 0.99987, -0.0161269, 164.75, 165) auto_calculate_length_and_angle = false -length = 30.0 +length = 31.0 bone_angle = 0.0 -metadata/vert_owned = [396, 397, 398, 399, 400] -metadata/connected_nodes_paths = [NodePath("Bone-23"), NodePath("Bone-24"), NodePath("Bone-29"), NodePath("Bone-32")] +metadata/vert_owned = [745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771] +metadata/idx = 34 +metadata/connected_nodes_paths = [NodePath("Bone-17"), NodePath("Bone-28"), NodePath("Bone-33"), NodePath("Bone-29"), NodePath("Bone-35")] +metadata/connected_nodes_idx = [17, 28, 33, 29, 35] metadata/_local_pose_override_enabled_ = true -[node name="Bone-31" type="Bone2D" parent="SoftBody2D2/Skeleton2D"] -position = Vector2(232.357, 206.973) -rotation = 3.14146 -rest = Transform2D(-1, 0.000137242, -0.000137242, -1, 232.357, 206.973) +[node name="Bone-35" type="Bone2D" parent="Stickman/Skeleton2D"] +position = Vector2(164.011, 196) +rotation = -1.54696 +scale = Vector2(1, 1) +rest = Transform2D(0.0238363, -0.999716, 0.999716, 0.0238363, 164.011, 196) auto_calculate_length_and_angle = false -length = 30.0 +length = 31.0 bone_angle = 0.0 -metadata/vert_owned = [401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411] -metadata/connected_nodes_paths = [NodePath("Bone-28"), NodePath("Bone-29"), NodePath("Bone-32")] +metadata/vert_owned = [772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799] +metadata/idx = 35 +metadata/connected_nodes_paths = [NodePath("Bone-28"), NodePath("Bone-29"), NodePath("Bone-34"), NodePath("Bone-30"), NodePath("Bone-36")] +metadata/connected_nodes_idx = [28, 29, 34, 30, 36] metadata/_local_pose_override_enabled_ = true -[node name="Bone-32" type="Bone2D" parent="SoftBody2D2/Skeleton2D"] -position = Vector2(227.585, 232.405) -rotation = 2.9744 -rest = Transform2D(-0.986056, 0.166414, -0.166414, -0.986056, 227.585, 232.405) +[node name="Bone-36" type="Bone2D" parent="Stickman/Skeleton2D"] +position = Vector2(160.219, 224.312) +rotation = 2.97419 +rest = Transform2D(-0.986021, 0.166622, -0.166622, -0.986021, 160.219, 224.312) auto_calculate_length_and_angle = false -length = 30.0 +length = 31.0 bone_angle = 0.0 -metadata/vert_owned = [412, 413, 414, 415, 416, 417, 418, 419, 420] -metadata/connected_nodes_paths = [NodePath("Bone-29"), NodePath("Bone-30"), NodePath("Bone-31")] +metadata/vert_owned = [800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815] +metadata/idx = 36 +metadata/connected_nodes_paths = [NodePath("Bone-29"), NodePath("Bone-30"), NodePath("Bone-35")] +metadata/connected_nodes_idx = [29, 30, 35] metadata/_local_pose_override_enabled_ = true -[node name="Bone-0" parent="SoftBody2D2" instance=ExtResource("3_6ern4")] -position = Vector2(58.635, 86.9573) -mass = 0.030303 +[node name="Bone-0" type="RigidBody2D" parent="Stickman"] +position = Vector2(14.75, 134) +mass = 0.027027 +metadata/idx = 0 metadata/bone_name = &"Bone-0" -[node name="CircleShape2D" type="CollisionShape2D" parent="SoftBody2D2/Bone-0"] -shape = SubResource("CircleShape2D_2rlcy") +[node name="CircleShape2D" type="CollisionShape2D" parent="Stickman/Bone-0"] +shape = SubResource("CircleShape2D_r17k3") -[node name="RemoteTransform2D" type="RemoteTransform2D" parent="SoftBody2D2/Bone-0"] +[node name="RemoteTransform2D" type="RemoteTransform2D" parent="Stickman/Bone-0"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-0") update_rotation = false update_scale = false -[node name="Joint2D-Bone-0-Bone-1" type="PinJoint2D" parent="SoftBody2D2/Bone-0"] +[node name="Joint2D-Bone-0-Bone-3" type="PinJoint2D" parent="Stickman/Bone-0"] visible = false -rotation = -2.43624 +rotation = -2.62636 node_a = NodePath("..") -node_b = NodePath("../../Bone-1") +node_b = NodePath("../../Bone-3") softness = 60.0 -[node name="Joint2D-Bone-0-Bone-2" type="PinJoint2D" parent="SoftBody2D2/Bone-0"] +[node name="Joint2D-Bone-0-Bone-4" type="PinJoint2D" parent="Stickman/Bone-0"] visible = false -rotation = -1.57826 +rotation = -1.5708 node_a = NodePath("..") -node_b = NodePath("../../Bone-2") +node_b = NodePath("../../Bone-4") softness = 60.0 -[node name="Joint2D-Bone-0-Bone-3" type="PinJoint2D" parent="SoftBody2D2/Bone-0"] +[node name="Joint2D-Bone-0-Bone-18" type="PinJoint2D" parent="Stickman/Bone-0"] visible = false -rotation = -0.462528 node_a = NodePath("..") -node_b = NodePath("../../Bone-3") +node_b = NodePath("../../Bone-18") +softness = 60.0 + +[node name="Joint2D-Bone-0-Bone-19" type="PinJoint2D" parent="Stickman/Bone-0"] +visible = false +rotation = -0.643501 +node_a = NodePath("..") +node_b = NodePath("../../Bone-19") softness = 60.0 -[node name="Bone-1" parent="SoftBody2D2" instance=ExtResource("3_6ern4")] -position = Vector2(77.7763, 64.4771) -mass = 0.030303 +[node name="Bone-1" type="RigidBody2D" parent="Stickman"] +position = Vector2(42.4688, 42) +mass = 0.027027 +metadata/idx = 1 metadata/bone_name = &"Bone-1" -[node name="CircleShape2D" type="CollisionShape2D" parent="SoftBody2D2/Bone-1"] -shape = SubResource("CircleShape2D_2rlcy") +[node name="CircleShape2D" type="CollisionShape2D" parent="Stickman/Bone-1"] +shape = SubResource("CircleShape2D_r17k3") -[node name="RemoteTransform2D" type="RemoteTransform2D" parent="SoftBody2D2/Bone-1"] +[node name="RemoteTransform2D" type="RemoteTransform2D" parent="Stickman/Bone-1"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-1") update_rotation = false update_scale = false -[node name="Joint2D-Bone-1-Bone-0" type="PinJoint2D" parent="SoftBody2D2/Bone-1"] -visible = false -rotation = 0.705349 -node_a = NodePath("..") -node_b = NodePath("../../Bone-0") -softness = 60.0 - -[node name="Joint2D-Bone-1-Bone-2" type="PinJoint2D" parent="SoftBody2D2/Bone-1"] +[node name="Joint2D-Bone-1-Bone-2" type="PinJoint2D" parent="Stickman/Bone-1"] visible = false -rotation = -0.153116 +rotation = 0.206394 node_a = NodePath("..") node_b = NodePath("../../Bone-2") softness = 60.0 -[node name="Joint2D-Bone-1-Bone-4" type="PinJoint2D" parent="SoftBody2D2/Bone-1"] +[node name="Joint2D-Bone-1-Bone-5" type="PinJoint2D" parent="Stickman/Bone-1"] visible = false -rotation = -1.5713 +rotation = -1.88936 node_a = NodePath("..") -node_b = NodePath("../../Bone-4") +node_b = NodePath("../../Bone-5") softness = 60.0 -[node name="Joint2D-Bone-1-Bone-5" type="PinJoint2D" parent="SoftBody2D2/Bone-1"] +[node name="Joint2D-Bone-1-Bone-6" type="PinJoint2D" parent="Stickman/Bone-1"] visible = false -rotation = -0.976387 +rotation = -0.724115 node_a = NodePath("..") -node_b = NodePath("../../Bone-5") +node_b = NodePath("../../Bone-6") softness = 60.0 -[node name="Bone-2" parent="SoftBody2D2" instance=ExtResource("3_6ern4")] -position = Vector2(81.2195, 86.7887) -mass = 0.030303 +[node name="Bone-2" type="RigidBody2D" parent="Stickman"] +position = Vector2(36.1875, 72) +mass = 0.027027 +metadata/idx = 2 metadata/bone_name = &"Bone-2" -[node name="CircleShape2D" type="CollisionShape2D" parent="SoftBody2D2/Bone-2"] -shape = SubResource("CircleShape2D_2rlcy") +[node name="CircleShape2D" type="CollisionShape2D" parent="Stickman/Bone-2"] +shape = SubResource("CircleShape2D_r17k3") -[node name="RemoteTransform2D" type="RemoteTransform2D" parent="SoftBody2D2/Bone-2"] +[node name="RemoteTransform2D" type="RemoteTransform2D" parent="Stickman/Bone-2"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-2") update_rotation = false update_scale = false -[node name="Joint2D-Bone-2-Bone-0" type="PinJoint2D" parent="SoftBody2D2/Bone-2"] +[node name="Joint2D-Bone-2-Bone-1" type="PinJoint2D" parent="Stickman/Bone-2"] visible = false -rotation = 1.56333 +rotation = -2.9352 node_a = NodePath("..") -node_b = NodePath("../../Bone-0") +node_b = NodePath("../../Bone-1") softness = 60.0 -[node name="Joint2D-Bone-2-Bone-1" type="PinJoint2D" parent="SoftBody2D2/Bone-2"] +[node name="Joint2D-Bone-2-Bone-5" type="PinJoint2D" parent="Stickman/Bone-2"] visible = false -rotation = -3.29471 +rotation = -2.43897 node_a = NodePath("..") -node_b = NodePath("../../Bone-1") +node_b = NodePath("../../Bone-5") softness = 60.0 -[node name="Joint2D-Bone-2-Bone-3" type="PinJoint2D" parent="SoftBody2D2/Bone-2"] +[node name="Joint2D-Bone-2-Bone-6" type="PinJoint2D" parent="Stickman/Bone-2"] visible = false -rotation = 0.24812 +rotation = -1.5708 node_a = NodePath("..") -node_b = NodePath("../../Bone-3") +node_b = NodePath("../../Bone-6") softness = 60.0 -[node name="Joint2D-Bone-2-Bone-4" type="PinJoint2D" parent="SoftBody2D2/Bone-2"] +[node name="Joint2D-Bone-2-Bone-3" type="PinJoint2D" parent="Stickman/Bone-2"] visible = false -rotation = -2.21327 +rotation = 0.124639 node_a = NodePath("..") -node_b = NodePath("../../Bone-4") +node_b = NodePath("../../Bone-3") softness = 60.0 -[node name="Joint2D-Bone-2-Bone-5" type="PinJoint2D" parent="SoftBody2D2/Bone-2"] +[node name="Joint2D-Bone-2-Bone-7" type="PinJoint2D" parent="Stickman/Bone-2"] visible = false -rotation = -1.56274 +rotation = -0.813794 node_a = NodePath("..") -node_b = NodePath("../../Bone-5") +node_b = NodePath("../../Bone-7") softness = 60.0 -[node name="Bone-3" parent="SoftBody2D2" instance=ExtResource("3_6ern4")] -position = Vector2(73.5821, 116.935) -mass = 0.030303 +[node name="Bone-3" type="RigidBody2D" parent="Stickman"] +position = Vector2(32.3036, 103) +mass = 0.027027 +metadata/idx = 3 metadata/bone_name = &"Bone-3" -[node name="CircleShape2D" type="CollisionShape2D" parent="SoftBody2D2/Bone-3"] -shape = SubResource("CircleShape2D_2rlcy") +[node name="CircleShape2D" type="CollisionShape2D" parent="Stickman/Bone-3"] +shape = SubResource("CircleShape2D_r17k3") -[node name="RemoteTransform2D" type="RemoteTransform2D" parent="SoftBody2D2/Bone-3"] +[node name="RemoteTransform2D" type="RemoteTransform2D" parent="Stickman/Bone-3"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-3") update_rotation = false update_scale = false -[node name="Joint2D-Bone-3-Bone-0" type="PinJoint2D" parent="SoftBody2D2/Bone-3"] +[node name="Joint2D-Bone-3-Bone-0" type="PinJoint2D" parent="Stickman/Bone-3"] visible = false -rotation = -3.60412 +rotation = 0.515229 node_a = NodePath("..") node_b = NodePath("../../Bone-0") softness = 60.0 -[node name="Joint2D-Bone-3-Bone-2" type="PinJoint2D" parent="SoftBody2D2/Bone-3"] +[node name="Joint2D-Bone-3-Bone-4" type="PinJoint2D" parent="Stickman/Bone-3"] +visible = false +rotation = -0.181728 +node_a = NodePath("..") +node_b = NodePath("../../Bone-4") +softness = 60.0 + +[node name="Joint2D-Bone-3-Bone-2" type="PinJoint2D" parent="Stickman/Bone-3"] visible = false -rotation = -2.89347 +rotation = -3.01695 node_a = NodePath("..") node_b = NodePath("../../Bone-2") softness = 60.0 -[node name="Joint2D-Bone-3-Bone-6" type="PinJoint2D" parent="SoftBody2D2/Bone-3"] +[node name="Joint2D-Bone-3-Bone-6" type="PinJoint2D" parent="Stickman/Bone-3"] visible = false -rotation = -1.56509 +rotation = -2.27225 node_a = NodePath("..") node_b = NodePath("../../Bone-6") softness = 60.0 -[node name="Joint2D-Bone-3-Bone-7" type="PinJoint2D" parent="SoftBody2D2/Bone-3"] +[node name="Joint2D-Bone-3-Bone-7" type="PinJoint2D" parent="Stickman/Bone-3"] visible = false -rotation = -0.755193 +rotation = -1.5708 node_a = NodePath("..") node_b = NodePath("../../Bone-7") softness = 60.0 -[node name="Bone-4" parent="SoftBody2D2" instance=ExtResource("3_6ern4")] -position = Vector2(111.054, 64.4603) -mass = 0.030303 +[node name="Joint2D-Bone-3-Bone-8" type="PinJoint2D" parent="Stickman/Bone-3"] +visible = false +rotation = -0.869347 +node_a = NodePath("..") +node_b = NodePath("../../Bone-8") +softness = 60.0 + +[node name="Bone-4" type="RigidBody2D" parent="Stickman"] +position = Vector2(38, 134) +mass = 0.027027 +metadata/idx = 4 metadata/bone_name = &"Bone-4" -[node name="CircleShape2D" type="CollisionShape2D" parent="SoftBody2D2/Bone-4"] -shape = SubResource("CircleShape2D_2rlcy") +[node name="CircleShape2D" type="CollisionShape2D" parent="Stickman/Bone-4"] +shape = SubResource("CircleShape2D_r17k3") -[node name="RemoteTransform2D" type="RemoteTransform2D" parent="SoftBody2D2/Bone-4"] +[node name="RemoteTransform2D" type="RemoteTransform2D" parent="Stickman/Bone-4"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-4") update_rotation = false update_scale = false -[node name="Joint2D-Bone-4-Bone-1" type="PinJoint2D" parent="SoftBody2D2/Bone-4"] +[node name="Joint2D-Bone-4-Bone-0" type="PinJoint2D" parent="Stickman/Bone-4"] visible = false -rotation = 1.57029 +rotation = 1.5708 node_a = NodePath("..") -node_b = NodePath("../../Bone-1") +node_b = NodePath("../../Bone-0") softness = 60.0 -[node name="Joint2D-Bone-4-Bone-2" type="PinJoint2D" parent="SoftBody2D2/Bone-4"] +[node name="Joint2D-Bone-4-Bone-18" type="PinJoint2D" parent="Stickman/Bone-4"] visible = false -rotation = 0.928321 +rotation = 0.643501 node_a = NodePath("..") -node_b = NodePath("../../Bone-2") +node_b = NodePath("../../Bone-18") softness = 60.0 -[node name="Joint2D-Bone-4-Bone-5" type="PinJoint2D" parent="SoftBody2D2/Bone-4"] +[node name="Joint2D-Bone-4-Bone-19" type="PinJoint2D" parent="Stickman/Bone-4"] visible = false -rotation = -0.003805 node_a = NodePath("..") -node_b = NodePath("../../Bone-5") +node_b = NodePath("../../Bone-19") softness = 60.0 -[node name="Joint2D-Bone-4-Bone-9" type="PinJoint2D" parent="SoftBody2D2/Bone-4"] +[node name="Joint2D-Bone-4-Bone-3" type="PinJoint2D" parent="Stickman/Bone-4"] visible = false -rotation = -1.56558 +rotation = -3.32332 node_a = NodePath("..") -node_b = NodePath("../../Bone-9") +node_b = NodePath("../../Bone-3") softness = 60.0 -[node name="Joint2D-Bone-4-Bone-10" type="PinJoint2D" parent="SoftBody2D2/Bone-4"] +[node name="Joint2D-Bone-4-Bone-7" type="PinJoint2D" parent="Stickman/Bone-4"] visible = false -rotation = -0.924789 +rotation = -2.35619 node_a = NodePath("..") -node_b = NodePath("../../Bone-10") +node_b = NodePath("../../Bone-7") softness = 60.0 -[node name="Bone-5" parent="SoftBody2D2" instance=ExtResource("3_6ern4")] -position = Vector2(111.14, 87.0298) -mass = 0.030303 +[node name="Joint2D-Bone-4-Bone-8" type="PinJoint2D" parent="Stickman/Bone-4"] +visible = false +rotation = -1.5708 +node_a = NodePath("..") +node_b = NodePath("../../Bone-8") +softness = 60.0 + +[node name="Joint2D-Bone-4-Bone-22" type="PinJoint2D" parent="Stickman/Bone-4"] +visible = false +rotation = -0.785398 +node_a = NodePath("..") +node_b = NodePath("../../Bone-22") +softness = 60.0 + +[node name="Bone-5" type="RigidBody2D" parent="Stickman"] +position = Vector2(69, 33.25) +mass = 0.027027 +metadata/idx = 5 metadata/bone_name = &"Bone-5" -[node name="CircleShape2D" type="CollisionShape2D" parent="SoftBody2D2/Bone-5"] -shape = SubResource("CircleShape2D_2rlcy") +[node name="CircleShape2D" type="CollisionShape2D" parent="Stickman/Bone-5"] +shape = SubResource("CircleShape2D_r17k3") -[node name="RemoteTransform2D" type="RemoteTransform2D" parent="SoftBody2D2/Bone-5"] +[node name="RemoteTransform2D" type="RemoteTransform2D" parent="Stickman/Bone-5"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-5") update_rotation = false update_scale = false -[node name="Joint2D-Bone-5-Bone-1" type="PinJoint2D" parent="SoftBody2D2/Bone-5"] +[node name="Joint2D-Bone-5-Bone-1" type="PinJoint2D" parent="Stickman/Bone-5"] visible = false -rotation = -4.11798 +rotation = 1.25223 node_a = NodePath("..") node_b = NodePath("../../Bone-1") softness = 60.0 -[node name="Joint2D-Bone-5-Bone-2" type="PinJoint2D" parent="SoftBody2D2/Bone-5"] +[node name="Joint2D-Bone-5-Bone-2" type="PinJoint2D" parent="Stickman/Bone-5"] visible = false -rotation = -4.70433 +rotation = 0.702618 node_a = NodePath("..") node_b = NodePath("../../Bone-2") softness = 60.0 -[node name="Joint2D-Bone-5-Bone-4" type="PinJoint2D" parent="SoftBody2D2/Bone-5"] -visible = false -rotation = -3.1454 -node_a = NodePath("..") -node_b = NodePath("../../Bone-4") -softness = 60.0 - -[node name="Joint2D-Bone-5-Bone-6" type="PinJoint2D" parent="SoftBody2D2/Bone-5"] +[node name="Joint2D-Bone-5-Bone-6" type="PinJoint2D" parent="Stickman/Bone-5"] visible = false -rotation = 0.0012465 node_a = NodePath("..") node_b = NodePath("../../Bone-6") softness = 60.0 -[node name="Joint2D-Bone-5-Bone-9" type="PinJoint2D" parent="SoftBody2D2/Bone-5"] +[node name="Joint2D-Bone-5-Bone-10" type="PinJoint2D" parent="Stickman/Bone-5"] visible = false -rotation = -2.21458 +rotation = -1.32582 node_a = NodePath("..") -node_b = NodePath("../../Bone-9") +node_b = NodePath("../../Bone-10") softness = 60.0 -[node name="Joint2D-Bone-5-Bone-10" type="PinJoint2D" parent="SoftBody2D2/Bone-5"] +[node name="Joint2D-Bone-5-Bone-11" type="PinJoint2D" parent="Stickman/Bone-5"] visible = false -rotation = -1.56631 +rotation = -0.674741 node_a = NodePath("..") -node_b = NodePath("../../Bone-10") +node_b = NodePath("../../Bone-11") softness = 60.0 -[node name="Joint2D-Bone-5-Bone-11" type="PinJoint2D" parent="SoftBody2D2/Bone-5"] +[node name="Joint2D-Bone-5-Bone-9" type="PinJoint2D" parent="Stickman/Bone-5"] visible = false -rotation = -0.782078 +rotation = -2.03444 node_a = NodePath("..") -node_b = NodePath("../../Bone-11") +node_b = NodePath("../../Bone-9") softness = 60.0 -[node name="Bone-6" parent="SoftBody2D2" instance=ExtResource("3_6ern4")] -position = Vector2(111.103, 117.149) -mass = 0.030303 +[node name="Bone-6" type="RigidBody2D" parent="Stickman"] +position = Vector2(69, 72) +mass = 0.027027 +metadata/idx = 6 metadata/bone_name = &"Bone-6" -[node name="CircleShape2D" type="CollisionShape2D" parent="SoftBody2D2/Bone-6"] -shape = SubResource("CircleShape2D_2rlcy") +[node name="CircleShape2D" type="CollisionShape2D" parent="Stickman/Bone-6"] +shape = SubResource("CircleShape2D_r17k3") -[node name="RemoteTransform2D" type="RemoteTransform2D" parent="SoftBody2D2/Bone-6"] +[node name="RemoteTransform2D" type="RemoteTransform2D" parent="Stickman/Bone-6"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-6") update_rotation = false update_scale = false -[node name="Joint2D-Bone-6-Bone-3" type="PinJoint2D" parent="SoftBody2D2/Bone-6"] +[node name="Joint2D-Bone-6-Bone-1" type="PinJoint2D" parent="Stickman/Bone-6"] visible = false -rotation = -4.70669 +rotation = -3.86571 node_a = NodePath("..") -node_b = NodePath("../../Bone-3") +node_b = NodePath("../../Bone-1") +softness = 60.0 + +[node name="Joint2D-Bone-6-Bone-2" type="PinJoint2D" parent="Stickman/Bone-6"] +visible = false +rotation = 1.5708 +node_a = NodePath("..") +node_b = NodePath("../../Bone-2") softness = 60.0 -[node name="Joint2D-Bone-6-Bone-5" type="PinJoint2D" parent="SoftBody2D2/Bone-6"] +[node name="Joint2D-Bone-6-Bone-5" type="PinJoint2D" parent="Stickman/Bone-6"] visible = false -rotation = -3.14035 +rotation = -3.14159 node_a = NodePath("..") node_b = NodePath("../../Bone-5") softness = 60.0 -[node name="Joint2D-Bone-6-Bone-7" type="PinJoint2D" parent="SoftBody2D2/Bone-6"] +[node name="Joint2D-Bone-6-Bone-3" type="PinJoint2D" parent="Stickman/Bone-6"] +visible = false +rotation = 0.869347 +node_a = NodePath("..") +node_b = NodePath("../../Bone-3") +softness = 60.0 + +[node name="Joint2D-Bone-6-Bone-7" type="PinJoint2D" parent="Stickman/Bone-6"] visible = false -rotation = 0.299803 node_a = NodePath("..") node_b = NodePath("../../Bone-7") softness = 60.0 -[node name="Joint2D-Bone-6-Bone-11" type="PinJoint2D" parent="SoftBody2D2/Bone-6"] +[node name="Joint2D-Bone-6-Bone-10" type="PinJoint2D" parent="Stickman/Bone-6"] +visible = false +rotation = -2.35619 +node_a = NodePath("..") +node_b = NodePath("../../Bone-10") +softness = 60.0 + +[node name="Joint2D-Bone-6-Bone-11" type="PinJoint2D" parent="Stickman/Bone-6"] visible = false -rotation = -1.57199 +rotation = -1.5708 node_a = NodePath("..") node_b = NodePath("../../Bone-11") softness = 60.0 -[node name="Joint2D-Bone-6-Bone-12" type="PinJoint2D" parent="SoftBody2D2/Bone-6"] +[node name="Joint2D-Bone-6-Bone-12" type="PinJoint2D" parent="Stickman/Bone-6"] visible = false -rotation = -0.788225 +rotation = -0.785398 node_a = NodePath("..") node_b = NodePath("../../Bone-12") softness = 60.0 -[node name="Bone-7" parent="SoftBody2D2" instance=ExtResource("3_6ern4")] -position = Vector2(101.877, 146.994) -mass = 0.030303 +[node name="Bone-7" type="RigidBody2D" parent="Stickman"] +position = Vector2(69, 103) +mass = 0.027027 +metadata/idx = 7 metadata/bone_name = &"Bone-7" -[node name="CircleShape2D" type="CollisionShape2D" parent="SoftBody2D2/Bone-7"] -shape = SubResource("CircleShape2D_2rlcy") +[node name="CircleShape2D" type="CollisionShape2D" parent="Stickman/Bone-7"] +shape = SubResource("CircleShape2D_r17k3") -[node name="RemoteTransform2D" type="RemoteTransform2D" parent="SoftBody2D2/Bone-7"] +[node name="RemoteTransform2D" type="RemoteTransform2D" parent="Stickman/Bone-7"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-7") update_rotation = false update_scale = false -[node name="Joint2D-Bone-7-Bone-3" type="PinJoint2D" parent="SoftBody2D2/Bone-7"] +[node name="Joint2D-Bone-7-Bone-2" type="PinJoint2D" parent="Stickman/Bone-7"] +visible = false +rotation = -3.95539 +node_a = NodePath("..") +node_b = NodePath("../../Bone-2") +softness = 60.0 + +[node name="Joint2D-Bone-7-Bone-3" type="PinJoint2D" parent="Stickman/Bone-7"] visible = false -rotation = -3.89679 +rotation = 1.5708 node_a = NodePath("..") node_b = NodePath("../../Bone-3") softness = 60.0 -[node name="Joint2D-Bone-7-Bone-6" type="PinJoint2D" parent="SoftBody2D2/Bone-7"] +[node name="Joint2D-Bone-7-Bone-6" type="PinJoint2D" parent="Stickman/Bone-7"] visible = false -rotation = -2.84179 +rotation = -3.14159 node_a = NodePath("..") node_b = NodePath("../../Bone-6") softness = 60.0 -[node name="Joint2D-Bone-7-Bone-8" type="PinJoint2D" parent="SoftBody2D2/Bone-7"] +[node name="Joint2D-Bone-7-Bone-4" type="PinJoint2D" parent="Stickman/Bone-7"] +visible = false +rotation = 0.785398 +node_a = NodePath("..") +node_b = NodePath("../../Bone-4") +softness = 60.0 + +[node name="Joint2D-Bone-7-Bone-8" type="PinJoint2D" parent="Stickman/Bone-7"] visible = false -rotation = -0.37176 node_a = NodePath("..") node_b = NodePath("../../Bone-8") softness = 60.0 -[node name="Joint2D-Bone-7-Bone-12" type="PinJoint2D" parent="SoftBody2D2/Bone-7"] +[node name="Joint2D-Bone-7-Bone-11" type="PinJoint2D" parent="Stickman/Bone-7"] visible = false -rotation = -1.56968 +rotation = -2.35619 +node_a = NodePath("..") +node_b = NodePath("../../Bone-11") +softness = 60.0 + +[node name="Joint2D-Bone-7-Bone-12" type="PinJoint2D" parent="Stickman/Bone-7"] +visible = false +rotation = -1.5708 node_a = NodePath("..") node_b = NodePath("../../Bone-12") softness = 60.0 -[node name="Bone-8" parent="SoftBody2D2" instance=ExtResource("3_6ern4")] -position = Vector2(113.577, 177.002) -mass = 0.030303 +[node name="Joint2D-Bone-7-Bone-13" type="PinJoint2D" parent="Stickman/Bone-7"] +visible = false +rotation = -0.785398 +node_a = NodePath("..") +node_b = NodePath("../../Bone-13") +softness = 60.0 + +[node name="Bone-8" type="RigidBody2D" parent="Stickman"] +position = Vector2(69, 134) +mass = 0.027027 +metadata/idx = 8 metadata/bone_name = &"Bone-8" -[node name="CircleShape2D" type="CollisionShape2D" parent="SoftBody2D2/Bone-8"] -shape = SubResource("CircleShape2D_2rlcy") +[node name="CircleShape2D" type="CollisionShape2D" parent="Stickman/Bone-8"] +shape = SubResource("CircleShape2D_r17k3") -[node name="RemoteTransform2D" type="RemoteTransform2D" parent="SoftBody2D2/Bone-8"] +[node name="RemoteTransform2D" type="RemoteTransform2D" parent="Stickman/Bone-8"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-8") update_rotation = false update_scale = false -[node name="Joint2D-Bone-8-Bone-7" type="PinJoint2D" parent="SoftBody2D2/Bone-8"] +[node name="Joint2D-Bone-8-Bone-3" type="PinJoint2D" parent="Stickman/Bone-8"] visible = false -rotation = -3.51335 +rotation = -4.01094 node_a = NodePath("..") -node_b = NodePath("../../Bone-7") +node_b = NodePath("../../Bone-3") softness = 60.0 -[node name="Joint2D-Bone-8-Bone-12" type="PinJoint2D" parent="SoftBody2D2/Bone-8"] +[node name="Joint2D-Bone-8-Bone-4" type="PinJoint2D" parent="Stickman/Bone-8"] visible = false -rotation = -2.39757 +rotation = 1.5708 node_a = NodePath("..") -node_b = NodePath("../../Bone-12") +node_b = NodePath("../../Bone-4") softness = 60.0 -[node name="Joint2D-Bone-8-Bone-13" type="PinJoint2D" parent="SoftBody2D2/Bone-8"] +[node name="Joint2D-Bone-8-Bone-7" type="PinJoint2D" parent="Stickman/Bone-8"] visible = false -rotation = -1.5716 +rotation = -3.14159 node_a = NodePath("..") -node_b = NodePath("../../Bone-13") +node_b = NodePath("../../Bone-7") softness = 60.0 -[node name="Joint2D-Bone-8-Bone-19" type="PinJoint2D" parent="SoftBody2D2/Bone-8"] +[node name="Joint2D-Bone-8-Bone-19" type="PinJoint2D" parent="Stickman/Bone-8"] visible = false -rotation = -0.0131416 +rotation = 0.785398 node_a = NodePath("..") node_b = NodePath("../../Bone-19") softness = 60.0 -[node name="Joint2D-Bone-8-Bone-21" type="PinJoint2D" parent="SoftBody2D2/Bone-8"] +[node name="Joint2D-Bone-8-Bone-22" type="PinJoint2D" parent="Stickman/Bone-8"] visible = false -rotation = -0.738082 node_a = NodePath("..") -node_b = NodePath("../../Bone-21") +node_b = NodePath("../../Bone-22") +softness = 60.0 + +[node name="Joint2D-Bone-8-Bone-12" type="PinJoint2D" parent="Stickman/Bone-8"] +visible = false +rotation = -2.35619 +node_a = NodePath("..") +node_b = NodePath("../../Bone-12") +softness = 60.0 + +[node name="Joint2D-Bone-8-Bone-13" type="PinJoint2D" parent="Stickman/Bone-8"] +visible = false +rotation = -1.5708 +node_a = NodePath("..") +node_b = NodePath("../../Bone-13") +softness = 60.0 + +[node name="Joint2D-Bone-8-Bone-25" type="PinJoint2D" parent="Stickman/Bone-8"] +visible = false +rotation = -0.785398 +node_a = NodePath("..") +node_b = NodePath("../../Bone-25") softness = 60.0 -[node name="Bone-9" parent="SoftBody2D2" instance=ExtResource("3_6ern4")] -position = Vector2(141.007, 64.6166) -mass = 0.030303 +[node name="Bone-9" type="RigidBody2D" parent="Stickman"] +position = Vector2(100, 17.75) +mass = 0.027027 +metadata/idx = 9 metadata/bone_name = &"Bone-9" -[node name="CircleShape2D" type="CollisionShape2D" parent="SoftBody2D2/Bone-9"] -shape = SubResource("CircleShape2D_2rlcy") +[node name="CircleShape2D" type="CollisionShape2D" parent="Stickman/Bone-9"] +shape = SubResource("CircleShape2D_r17k3") -[node name="RemoteTransform2D" type="RemoteTransform2D" parent="SoftBody2D2/Bone-9"] +[node name="RemoteTransform2D" type="RemoteTransform2D" parent="Stickman/Bone-9"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-9") update_rotation = false update_scale = false -[node name="Joint2D-Bone-9-Bone-4" type="PinJoint2D" parent="SoftBody2D2/Bone-9"] -visible = false -rotation = -4.70717 -node_a = NodePath("..") -node_b = NodePath("../../Bone-4") -softness = 60.0 - -[node name="Joint2D-Bone-9-Bone-5" type="PinJoint2D" parent="SoftBody2D2/Bone-9"] +[node name="Joint2D-Bone-9-Bone-5" type="PinJoint2D" parent="Stickman/Bone-9"] visible = false -rotation = 0.927018 +rotation = 1.10715 node_a = NodePath("..") node_b = NodePath("../../Bone-5") softness = 60.0 -[node name="Joint2D-Bone-9-Bone-10" type="PinJoint2D" parent="SoftBody2D2/Bone-9"] +[node name="Joint2D-Bone-9-Bone-10" type="PinJoint2D" parent="Stickman/Bone-9"] visible = false -rotation = -0.00718327 node_a = NodePath("..") node_b = NodePath("../../Bone-10") softness = 60.0 -[node name="Joint2D-Bone-9-Bone-14" type="PinJoint2D" parent="SoftBody2D2/Bone-9"] +[node name="Joint2D-Bone-9-Bone-14" type="PinJoint2D" parent="Stickman/Bone-9"] visible = false -rotation = -1.57194 +rotation = -1.0223 node_a = NodePath("..") node_b = NodePath("../../Bone-14") softness = 60.0 -[node name="Bone-10" parent="SoftBody2D2" instance=ExtResource("3_6ern4")] -position = Vector2(141.169, 87.1646) -mass = 0.030303 +[node name="Bone-10" type="RigidBody2D" parent="Stickman"] +position = Vector2(100, 41) +mass = 0.027027 +metadata/idx = 10 metadata/bone_name = &"Bone-10" -[node name="CircleShape2D" type="CollisionShape2D" parent="SoftBody2D2/Bone-10"] -shape = SubResource("CircleShape2D_2rlcy") +[node name="CircleShape2D" type="CollisionShape2D" parent="Stickman/Bone-10"] +shape = SubResource("CircleShape2D_r17k3") -[node name="RemoteTransform2D" type="RemoteTransform2D" parent="SoftBody2D2/Bone-10"] +[node name="RemoteTransform2D" type="RemoteTransform2D" parent="Stickman/Bone-10"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-10") update_rotation = false update_scale = false -[node name="Joint2D-Bone-10-Bone-4" type="PinJoint2D" parent="SoftBody2D2/Bone-10"] +[node name="Joint2D-Bone-10-Bone-5" type="PinJoint2D" parent="Stickman/Bone-10"] visible = false -rotation = -4.06638 +rotation = -4.46741 node_a = NodePath("..") -node_b = NodePath("../../Bone-4") +node_b = NodePath("../../Bone-5") softness = 60.0 -[node name="Joint2D-Bone-10-Bone-5" type="PinJoint2D" parent="SoftBody2D2/Bone-10"] +[node name="Joint2D-Bone-10-Bone-6" type="PinJoint2D" parent="Stickman/Bone-10"] visible = false -rotation = -4.7079 +rotation = 0.785398 node_a = NodePath("..") -node_b = NodePath("../../Bone-5") +node_b = NodePath("../../Bone-6") softness = 60.0 -[node name="Joint2D-Bone-10-Bone-9" type="PinJoint2D" parent="SoftBody2D2/Bone-10"] +[node name="Joint2D-Bone-10-Bone-11" type="PinJoint2D" parent="Stickman/Bone-10"] visible = false -rotation = -3.14878 node_a = NodePath("..") -node_b = NodePath("../../Bone-9") +node_b = NodePath("../../Bone-11") softness = 60.0 -[node name="Joint2D-Bone-10-Bone-11" type="PinJoint2D" parent="SoftBody2D2/Bone-10"] +[node name="Joint2D-Bone-10-Bone-9" type="PinJoint2D" parent="Stickman/Bone-10"] visible = false -rotation = 0.00482289 +rotation = -3.14159 node_a = NodePath("..") -node_b = NodePath("../../Bone-11") +node_b = NodePath("../../Bone-9") softness = 60.0 -[node name="Joint2D-Bone-10-Bone-15" type="PinJoint2D" parent="SoftBody2D2/Bone-10"] +[node name="Joint2D-Bone-10-Bone-14" type="PinJoint2D" parent="Stickman/Bone-10"] visible = false -rotation = -1.5755 +rotation = -1.70887 node_a = NodePath("..") -node_b = NodePath("../../Bone-15") +node_b = NodePath("../../Bone-14") softness = 60.0 -[node name="Joint2D-Bone-10-Bone-16" type="PinJoint2D" parent="SoftBody2D2/Bone-10"] +[node name="Joint2D-Bone-10-Bone-15" type="PinJoint2D" parent="Stickman/Bone-10"] visible = false -rotation = -0.783349 +rotation = -0.785398 node_a = NodePath("..") -node_b = NodePath("../../Bone-16") +node_b = NodePath("../../Bone-15") softness = 60.0 -[node name="Bone-11" parent="SoftBody2D2" instance=ExtResource("3_6ern4")] -position = Vector2(141.025, 117.113) -mass = 0.030303 +[node name="Bone-11" type="RigidBody2D" parent="Stickman"] +position = Vector2(100, 72) +mass = 0.027027 +metadata/idx = 11 metadata/bone_name = &"Bone-11" -[node name="CircleShape2D" type="CollisionShape2D" parent="SoftBody2D2/Bone-11"] -shape = SubResource("CircleShape2D_2rlcy") +[node name="CircleShape2D" type="CollisionShape2D" parent="Stickman/Bone-11"] +shape = SubResource("CircleShape2D_r17k3") -[node name="RemoteTransform2D" type="RemoteTransform2D" parent="SoftBody2D2/Bone-11"] +[node name="RemoteTransform2D" type="RemoteTransform2D" parent="Stickman/Bone-11"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-11") update_rotation = false update_scale = false -[node name="Joint2D-Bone-11-Bone-5" type="PinJoint2D" parent="SoftBody2D2/Bone-11"] +[node name="Joint2D-Bone-11-Bone-5" type="PinJoint2D" parent="Stickman/Bone-11"] visible = false -rotation = -3.92367 +rotation = -3.81633 node_a = NodePath("..") node_b = NodePath("../../Bone-5") softness = 60.0 -[node name="Joint2D-Bone-11-Bone-6" type="PinJoint2D" parent="SoftBody2D2/Bone-11"] +[node name="Joint2D-Bone-11-Bone-6" type="PinJoint2D" parent="Stickman/Bone-11"] visible = false -rotation = 1.5696 +rotation = 1.5708 node_a = NodePath("..") node_b = NodePath("../../Bone-6") softness = 60.0 -[node name="Joint2D-Bone-11-Bone-10" type="PinJoint2D" parent="SoftBody2D2/Bone-11"] +[node name="Joint2D-Bone-11-Bone-10" type="PinJoint2D" parent="Stickman/Bone-11"] visible = false -rotation = -3.13677 +rotation = -3.14159 node_a = NodePath("..") node_b = NodePath("../../Bone-10") softness = 60.0 -[node name="Joint2D-Bone-11-Bone-12" type="PinJoint2D" parent="SoftBody2D2/Bone-11"] +[node name="Joint2D-Bone-11-Bone-7" type="PinJoint2D" parent="Stickman/Bone-11"] +visible = false +rotation = 0.785398 +node_a = NodePath("..") +node_b = NodePath("../../Bone-7") +softness = 60.0 + +[node name="Joint2D-Bone-11-Bone-12" type="PinJoint2D" parent="Stickman/Bone-11"] visible = false -rotation = -0.00452145 node_a = NodePath("..") node_b = NodePath("../../Bone-12") softness = 60.0 -[node name="Joint2D-Bone-11-Bone-16" type="PinJoint2D" parent="SoftBody2D2/Bone-11"] +[node name="Joint2D-Bone-11-Bone-14" type="PinJoint2D" parent="Stickman/Bone-11"] +visible = false +rotation = -2.42107 +node_a = NodePath("..") +node_b = NodePath("../../Bone-14") +softness = 60.0 + +[node name="Joint2D-Bone-11-Bone-15" type="PinJoint2D" parent="Stickman/Bone-11"] +visible = false +rotation = -1.5708 +node_a = NodePath("..") +node_b = NodePath("../../Bone-15") +softness = 60.0 + +[node name="Joint2D-Bone-11-Bone-16" type="PinJoint2D" parent="Stickman/Bone-11"] visible = false -rotation = -1.571 +rotation = -0.785398 node_a = NodePath("..") node_b = NodePath("../../Bone-16") softness = 60.0 -[node name="Bone-12" parent="SoftBody2D2" instance=ExtResource("3_6ern4")] -position = Vector2(141.16, 147.037) -mass = 0.030303 +[node name="Bone-12" type="RigidBody2D" parent="Stickman"] +position = Vector2(100, 103) +mass = 0.027027 +metadata/idx = 12 metadata/bone_name = &"Bone-12" -[node name="CircleShape2D" type="CollisionShape2D" parent="SoftBody2D2/Bone-12"] -shape = SubResource("CircleShape2D_2rlcy") +[node name="CircleShape2D" type="CollisionShape2D" parent="Stickman/Bone-12"] +shape = SubResource("CircleShape2D_r17k3") -[node name="RemoteTransform2D" type="RemoteTransform2D" parent="SoftBody2D2/Bone-12"] +[node name="RemoteTransform2D" type="RemoteTransform2D" parent="Stickman/Bone-12"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-12") update_rotation = false update_scale = false -[node name="Joint2D-Bone-12-Bone-6" type="PinJoint2D" parent="SoftBody2D2/Bone-12"] +[node name="Joint2D-Bone-12-Bone-6" type="PinJoint2D" parent="Stickman/Bone-12"] visible = false -rotation = -3.92982 +rotation = -3.92699 node_a = NodePath("..") node_b = NodePath("../../Bone-6") softness = 60.0 -[node name="Joint2D-Bone-12-Bone-7" type="PinJoint2D" parent="SoftBody2D2/Bone-12"] +[node name="Joint2D-Bone-12-Bone-7" type="PinJoint2D" parent="Stickman/Bone-12"] visible = false -rotation = -4.71128 +rotation = 1.5708 node_a = NodePath("..") node_b = NodePath("../../Bone-7") softness = 60.0 -[node name="Joint2D-Bone-12-Bone-8" type="PinJoint2D" parent="SoftBody2D2/Bone-12"] +[node name="Joint2D-Bone-12-Bone-11" type="PinJoint2D" parent="Stickman/Bone-12"] visible = false -rotation = 0.744022 +rotation = -3.14159 node_a = NodePath("..") -node_b = NodePath("../../Bone-8") +node_b = NodePath("../../Bone-11") softness = 60.0 -[node name="Joint2D-Bone-12-Bone-11" type="PinJoint2D" parent="SoftBody2D2/Bone-12"] +[node name="Joint2D-Bone-12-Bone-8" type="PinJoint2D" parent="Stickman/Bone-12"] visible = false -rotation = -3.14611 +rotation = 0.785398 node_a = NodePath("..") -node_b = NodePath("../../Bone-11") +node_b = NodePath("../../Bone-8") softness = 60.0 -[node name="Joint2D-Bone-12-Bone-13" type="PinJoint2D" parent="SoftBody2D2/Bone-12"] +[node name="Joint2D-Bone-12-Bone-13" type="PinJoint2D" parent="Stickman/Bone-12"] visible = false -rotation = 0.00495367 node_a = NodePath("..") node_b = NodePath("../../Bone-13") softness = 60.0 -[node name="Joint2D-Bone-12-Bone-16" type="PinJoint2D" parent="SoftBody2D2/Bone-12"] +[node name="Joint2D-Bone-12-Bone-15" type="PinJoint2D" parent="Stickman/Bone-12"] visible = false -rotation = -2.35787 +rotation = -2.35619 +node_a = NodePath("..") +node_b = NodePath("../../Bone-15") +softness = 60.0 + +[node name="Joint2D-Bone-12-Bone-16" type="PinJoint2D" parent="Stickman/Bone-12"] +visible = false +rotation = -1.5708 node_a = NodePath("..") node_b = NodePath("../../Bone-16") softness = 60.0 -[node name="Joint2D-Bone-12-Bone-17" type="PinJoint2D" parent="SoftBody2D2/Bone-12"] +[node name="Joint2D-Bone-12-Bone-17" type="PinJoint2D" parent="Stickman/Bone-12"] visible = false -rotation = -1.56716 +rotation = -0.785398 node_a = NodePath("..") node_b = NodePath("../../Bone-17") softness = 60.0 -[node name="Bone-13" parent="SoftBody2D2" instance=ExtResource("3_6ern4")] -position = Vector2(141.012, 176.98) -mass = 0.030303 +[node name="Bone-13" type="RigidBody2D" parent="Stickman"] +position = Vector2(100, 134) +mass = 0.027027 +metadata/idx = 13 metadata/bone_name = &"Bone-13" -[node name="CircleShape2D" type="CollisionShape2D" parent="SoftBody2D2/Bone-13"] -shape = SubResource("CircleShape2D_2rlcy") +[node name="CircleShape2D" type="CollisionShape2D" parent="Stickman/Bone-13"] +shape = SubResource("CircleShape2D_r17k3") -[node name="RemoteTransform2D" type="RemoteTransform2D" parent="SoftBody2D2/Bone-13"] +[node name="RemoteTransform2D" type="RemoteTransform2D" parent="Stickman/Bone-13"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-13") update_rotation = false update_scale = false -[node name="Joint2D-Bone-13-Bone-8" type="PinJoint2D" parent="SoftBody2D2/Bone-13"] +[node name="Joint2D-Bone-13-Bone-7" type="PinJoint2D" parent="Stickman/Bone-13"] +visible = false +rotation = -3.92699 +node_a = NodePath("..") +node_b = NodePath("../../Bone-7") +softness = 60.0 + +[node name="Joint2D-Bone-13-Bone-8" type="PinJoint2D" parent="Stickman/Bone-13"] visible = false -rotation = 1.56999 +rotation = 1.5708 node_a = NodePath("..") node_b = NodePath("../../Bone-8") softness = 60.0 -[node name="Joint2D-Bone-13-Bone-12" type="PinJoint2D" parent="SoftBody2D2/Bone-13"] +[node name="Joint2D-Bone-13-Bone-12" type="PinJoint2D" parent="Stickman/Bone-13"] visible = false -rotation = -3.13664 +rotation = -3.14159 node_a = NodePath("..") node_b = NodePath("../../Bone-12") softness = 60.0 -[node name="Joint2D-Bone-13-Bone-17" type="PinJoint2D" parent="SoftBody2D2/Bone-13"] +[node name="Joint2D-Bone-13-Bone-22" type="PinJoint2D" parent="Stickman/Bone-13"] visible = false -rotation = -2.35122 +rotation = 0.785398 node_a = NodePath("..") -node_b = NodePath("../../Bone-17") +node_b = NodePath("../../Bone-22") softness = 60.0 -[node name="Joint2D-Bone-13-Bone-18" type="PinJoint2D" parent="SoftBody2D2/Bone-13"] +[node name="Joint2D-Bone-13-Bone-25" type="PinJoint2D" parent="Stickman/Bone-13"] visible = false -rotation = -1.56316 node_a = NodePath("..") -node_b = NodePath("../../Bone-18") +node_b = NodePath("../../Bone-25") softness = 60.0 -[node name="Joint2D-Bone-13-Bone-19" type="PinJoint2D" parent="SoftBody2D2/Bone-13"] +[node name="Joint2D-Bone-13-Bone-16" type="PinJoint2D" parent="Stickman/Bone-13"] visible = false -rotation = 0.732904 +rotation = -2.35619 node_a = NodePath("..") -node_b = NodePath("../../Bone-19") +node_b = NodePath("../../Bone-16") softness = 60.0 -[node name="Joint2D-Bone-13-Bone-21" type="PinJoint2D" parent="SoftBody2D2/Bone-13"] +[node name="Joint2D-Bone-13-Bone-17" type="PinJoint2D" parent="Stickman/Bone-13"] visible = false -rotation = 0.00251846 +rotation = -1.5708 node_a = NodePath("..") -node_b = NodePath("../../Bone-21") +node_b = NodePath("../../Bone-17") +softness = 60.0 + +[node name="Joint2D-Bone-13-Bone-28" type="PinJoint2D" parent="Stickman/Bone-13"] +visible = false +rotation = -0.785398 +node_a = NodePath("..") +node_b = NodePath("../../Bone-28") softness = 60.0 -[node name="Bone-14" parent="SoftBody2D2" instance=ExtResource("3_6ern4")] -position = Vector2(180.458, 64.5715) -mass = 0.030303 +[node name="Bone-14" type="RigidBody2D" parent="Stickman"] +position = Vector2(131, 36.6923) +mass = 0.027027 +metadata/idx = 14 metadata/bone_name = &"Bone-14" -[node name="CircleShape2D" type="CollisionShape2D" parent="SoftBody2D2/Bone-14"] -shape = SubResource("CircleShape2D_2rlcy") +[node name="CircleShape2D" type="CollisionShape2D" parent="Stickman/Bone-14"] +shape = SubResource("CircleShape2D_r17k3") -[node name="RemoteTransform2D" type="RemoteTransform2D" parent="SoftBody2D2/Bone-14"] +[node name="RemoteTransform2D" type="RemoteTransform2D" parent="Stickman/Bone-14"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-14") update_rotation = false update_scale = false -[node name="Joint2D-Bone-14-Bone-9" type="PinJoint2D" parent="SoftBody2D2/Bone-14"] +[node name="Joint2D-Bone-14-Bone-9" type="PinJoint2D" parent="Stickman/Bone-14"] visible = false -rotation = 1.56965 +rotation = -4.16389 node_a = NodePath("..") node_b = NodePath("../../Bone-9") softness = 60.0 -[node name="Joint2D-Bone-14-Bone-15" type="PinJoint2D" parent="SoftBody2D2/Bone-14"] +[node name="Joint2D-Bone-14-Bone-10" type="PinJoint2D" parent="Stickman/Bone-14"] +visible = false +rotation = 1.43272 +node_a = NodePath("..") +node_b = NodePath("../../Bone-10") +softness = 60.0 + +[node name="Joint2D-Bone-14-Bone-11" type="PinJoint2D" parent="Stickman/Bone-14"] +visible = false +rotation = 0.720524 +node_a = NodePath("..") +node_b = NodePath("../../Bone-11") +softness = 60.0 + +[node name="Joint2D-Bone-14-Bone-15" type="PinJoint2D" parent="Stickman/Bone-14"] visible = false -rotation = 0.149116 node_a = NodePath("..") node_b = NodePath("../../Bone-15") softness = 60.0 -[node name="Bone-15" parent="SoftBody2D2" instance=ExtResource("3_6ern4")] -position = Vector2(177.089, 86.9956) -mass = 0.030303 +[node name="Joint2D-Bone-14-Bone-31" type="PinJoint2D" parent="Stickman/Bone-14"] +visible = false +rotation = -0.725747 +node_a = NodePath("..") +node_b = NodePath("../../Bone-31") +softness = 60.0 + +[node name="Bone-15" type="RigidBody2D" parent="Stickman"] +position = Vector2(131, 72) +mass = 0.027027 +metadata/idx = 15 metadata/bone_name = &"Bone-15" -[node name="CircleShape2D" type="CollisionShape2D" parent="SoftBody2D2/Bone-15"] -shape = SubResource("CircleShape2D_2rlcy") +[node name="CircleShape2D" type="CollisionShape2D" parent="Stickman/Bone-15"] +shape = SubResource("CircleShape2D_r17k3") -[node name="RemoteTransform2D" type="RemoteTransform2D" parent="SoftBody2D2/Bone-15"] +[node name="RemoteTransform2D" type="RemoteTransform2D" parent="Stickman/Bone-15"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-15") update_rotation = false update_scale = false -[node name="Joint2D-Bone-15-Bone-10" type="PinJoint2D" parent="SoftBody2D2/Bone-15"] +[node name="Joint2D-Bone-15-Bone-10" type="PinJoint2D" parent="Stickman/Bone-15"] visible = false -rotation = 1.56609 +rotation = -3.92699 node_a = NodePath("..") node_b = NodePath("../../Bone-10") softness = 60.0 -[node name="Joint2D-Bone-15-Bone-14" type="PinJoint2D" parent="SoftBody2D2/Bone-15"] +[node name="Joint2D-Bone-15-Bone-11" type="PinJoint2D" parent="Stickman/Bone-15"] visible = false -rotation = -2.99248 +rotation = 1.5708 +node_a = NodePath("..") +node_b = NodePath("../../Bone-11") +softness = 60.0 + +[node name="Joint2D-Bone-15-Bone-14" type="PinJoint2D" parent="Stickman/Bone-15"] +visible = false +rotation = -3.14159 node_a = NodePath("..") node_b = NodePath("../../Bone-14") softness = 60.0 -[node name="Joint2D-Bone-15-Bone-16" type="PinJoint2D" parent="SoftBody2D2/Bone-15"] +[node name="Joint2D-Bone-15-Bone-12" type="PinJoint2D" parent="Stickman/Bone-15"] +visible = false +rotation = 0.785398 +node_a = NodePath("..") +node_b = NodePath("../../Bone-12") +softness = 60.0 + +[node name="Joint2D-Bone-15-Bone-16" type="PinJoint2D" parent="Stickman/Bone-15"] visible = false -rotation = 0.199848 node_a = NodePath("..") node_b = NodePath("../../Bone-16") softness = 60.0 -[node name="Joint2D-Bone-15-Bone-25" type="PinJoint2D" parent="SoftBody2D2/Bone-15"] +[node name="Joint2D-Bone-15-Bone-31" type="PinJoint2D" parent="Stickman/Bone-15"] visible = false -rotation = -0.547346 +rotation = -1.78044 node_a = NodePath("..") -node_b = NodePath("../../Bone-25") +node_b = NodePath("../../Bone-31") +softness = 60.0 + +[node name="Joint2D-Bone-15-Bone-32" type="PinJoint2D" parent="Stickman/Bone-15"] +visible = false +rotation = -0.78135 +node_a = NodePath("..") +node_b = NodePath("../../Bone-32") softness = 60.0 -[node name="Bone-16" parent="SoftBody2D2" instance=ExtResource("3_6ern4")] -position = Vector2(170.99, 117.107) -mass = 0.030303 +[node name="Bone-16" type="RigidBody2D" parent="Stickman"] +position = Vector2(131, 103) +mass = 0.027027 +metadata/idx = 16 metadata/bone_name = &"Bone-16" -[node name="CircleShape2D" type="CollisionShape2D" parent="SoftBody2D2/Bone-16"] -shape = SubResource("CircleShape2D_2rlcy") +[node name="CircleShape2D" type="CollisionShape2D" parent="Stickman/Bone-16"] +shape = SubResource("CircleShape2D_r17k3") -[node name="RemoteTransform2D" type="RemoteTransform2D" parent="SoftBody2D2/Bone-16"] +[node name="RemoteTransform2D" type="RemoteTransform2D" parent="Stickman/Bone-16"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-16") update_rotation = false update_scale = false -[node name="Joint2D-Bone-16-Bone-10" type="PinJoint2D" parent="SoftBody2D2/Bone-16"] +[node name="Joint2D-Bone-16-Bone-11" type="PinJoint2D" parent="Stickman/Bone-16"] visible = false -rotation = -3.92494 +rotation = -3.92699 node_a = NodePath("..") -node_b = NodePath("../../Bone-10") +node_b = NodePath("../../Bone-11") softness = 60.0 -[node name="Joint2D-Bone-16-Bone-11" type="PinJoint2D" parent="SoftBody2D2/Bone-16"] +[node name="Joint2D-Bone-16-Bone-12" type="PinJoint2D" parent="Stickman/Bone-16"] visible = false -rotation = 1.57059 +rotation = 1.5708 node_a = NodePath("..") -node_b = NodePath("../../Bone-11") +node_b = NodePath("../../Bone-12") softness = 60.0 -[node name="Joint2D-Bone-16-Bone-12" type="PinJoint2D" parent="SoftBody2D2/Bone-16"] +[node name="Joint2D-Bone-16-Bone-15" type="PinJoint2D" parent="Stickman/Bone-16"] visible = false -rotation = 0.783719 +rotation = -3.14159 node_a = NodePath("..") -node_b = NodePath("../../Bone-12") +node_b = NodePath("../../Bone-15") softness = 60.0 -[node name="Joint2D-Bone-16-Bone-15" type="PinJoint2D" parent="SoftBody2D2/Bone-16"] +[node name="Joint2D-Bone-16-Bone-13" type="PinJoint2D" parent="Stickman/Bone-16"] visible = false -rotation = -2.94175 +rotation = 0.785398 node_a = NodePath("..") -node_b = NodePath("../../Bone-15") +node_b = NodePath("../../Bone-13") softness = 60.0 -[node name="Joint2D-Bone-16-Bone-17" type="PinJoint2D" parent="SoftBody2D2/Bone-16"] +[node name="Joint2D-Bone-16-Bone-17" type="PinJoint2D" parent="Stickman/Bone-16"] visible = false -rotation = -0.00513955 node_a = NodePath("..") node_b = NodePath("../../Bone-17") softness = 60.0 -[node name="Joint2D-Bone-16-Bone-25" type="PinJoint2D" parent="SoftBody2D2/Bone-16"] +[node name="Joint2D-Bone-16-Bone-31" type="PinJoint2D" parent="Stickman/Bone-16"] visible = false -rotation = -1.5803 +rotation = -2.51765 node_a = NodePath("..") -node_b = NodePath("../../Bone-25") +node_b = NodePath("../../Bone-31") softness = 60.0 -[node name="Joint2D-Bone-16-Bone-26" type="PinJoint2D" parent="SoftBody2D2/Bone-16"] +[node name="Joint2D-Bone-16-Bone-32" type="PinJoint2D" parent="Stickman/Bone-16"] visible = false -rotation = -0.789143 +rotation = -1.5708 node_a = NodePath("..") -node_b = NodePath("../../Bone-26") +node_b = NodePath("../../Bone-32") +softness = 60.0 + +[node name="Joint2D-Bone-16-Bone-33" type="PinJoint2D" parent="Stickman/Bone-16"] +visible = false +rotation = -0.820403 +node_a = NodePath("..") +node_b = NodePath("../../Bone-33") softness = 60.0 -[node name="Bone-17" parent="SoftBody2D2" instance=ExtResource("3_6ern4")] -position = Vector2(171.144, 147.146) -mass = 0.030303 +[node name="Bone-17" type="RigidBody2D" parent="Stickman"] +position = Vector2(131, 134) +mass = 0.027027 +metadata/idx = 17 metadata/bone_name = &"Bone-17" -[node name="CircleShape2D" type="CollisionShape2D" parent="SoftBody2D2/Bone-17"] -shape = SubResource("CircleShape2D_2rlcy") +[node name="CircleShape2D" type="CollisionShape2D" parent="Stickman/Bone-17"] +shape = SubResource("CircleShape2D_r17k3") -[node name="RemoteTransform2D" type="RemoteTransform2D" parent="SoftBody2D2/Bone-17"] +[node name="RemoteTransform2D" type="RemoteTransform2D" parent="Stickman/Bone-17"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-17") update_rotation = false update_scale = false -[node name="Joint2D-Bone-17-Bone-12" type="PinJoint2D" parent="SoftBody2D2/Bone-17"] +[node name="Joint2D-Bone-17-Bone-12" type="PinJoint2D" parent="Stickman/Bone-17"] visible = false -rotation = -4.70875 +rotation = -3.92699 node_a = NodePath("..") node_b = NodePath("../../Bone-12") softness = 60.0 -[node name="Joint2D-Bone-17-Bone-13" type="PinJoint2D" parent="SoftBody2D2/Bone-17"] +[node name="Joint2D-Bone-17-Bone-13" type="PinJoint2D" parent="Stickman/Bone-17"] visible = false -rotation = 0.79037 +rotation = 1.5708 node_a = NodePath("..") node_b = NodePath("../../Bone-13") softness = 60.0 -[node name="Joint2D-Bone-17-Bone-16" type="PinJoint2D" parent="SoftBody2D2/Bone-17"] +[node name="Joint2D-Bone-17-Bone-16" type="PinJoint2D" parent="Stickman/Bone-17"] visible = false -rotation = -3.14673 +rotation = -3.14159 node_a = NodePath("..") node_b = NodePath("../../Bone-16") softness = 60.0 -[node name="Joint2D-Bone-17-Bone-18" type="PinJoint2D" parent="SoftBody2D2/Bone-17"] +[node name="Joint2D-Bone-17-Bone-25" type="PinJoint2D" parent="Stickman/Bone-17"] visible = false -rotation = 0.00317733 +rotation = 0.785398 node_a = NodePath("..") -node_b = NodePath("../../Bone-18") +node_b = NodePath("../../Bone-25") softness = 60.0 -[node name="Joint2D-Bone-17-Bone-25" type="PinJoint2D" parent="SoftBody2D2/Bone-17"] +[node name="Joint2D-Bone-17-Bone-28" type="PinJoint2D" parent="Stickman/Bone-17"] visible = false -rotation = -2.46806 node_a = NodePath("..") -node_b = NodePath("../../Bone-25") +node_b = NodePath("../../Bone-28") softness = 60.0 -[node name="Joint2D-Bone-17-Bone-26" type="PinJoint2D" parent="SoftBody2D2/Bone-17"] +[node name="Joint2D-Bone-17-Bone-32" type="PinJoint2D" parent="Stickman/Bone-17"] visible = false -rotation = -1.5799 +rotation = -2.36024 node_a = NodePath("..") -node_b = NodePath("../../Bone-26") +node_b = NodePath("../../Bone-32") softness = 60.0 -[node name="Joint2D-Bone-17-Bone-27" type="PinJoint2D" parent="SoftBody2D2/Bone-17"] +[node name="Joint2D-Bone-17-Bone-33" type="PinJoint2D" parent="Stickman/Bone-17"] visible = false -rotation = -0.78651 +rotation = -1.5708 node_a = NodePath("..") -node_b = NodePath("../../Bone-27") +node_b = NodePath("../../Bone-33") +softness = 60.0 + +[node name="Joint2D-Bone-17-Bone-34" type="PinJoint2D" parent="Stickman/Bone-17"] +visible = false +rotation = -0.827844 +node_a = NodePath("..") +node_b = NodePath("../../Bone-34") softness = 60.0 -[node name="Bone-18" parent="SoftBody2D2" instance=ExtResource("3_6ern4")] -position = Vector2(171.048, 177.21) -mass = 0.030303 +[node name="Bone-18" type="RigidBody2D" parent="Stickman"] +position = Vector2(14.75, 165) +mass = 0.027027 +metadata/idx = 18 metadata/bone_name = &"Bone-18" -[node name="CircleShape2D" type="CollisionShape2D" parent="SoftBody2D2/Bone-18"] -shape = SubResource("CircleShape2D_2rlcy") +[node name="CircleShape2D" type="CollisionShape2D" parent="Stickman/Bone-18"] +shape = SubResource("CircleShape2D_r17k3") -[node name="RemoteTransform2D" type="RemoteTransform2D" parent="SoftBody2D2/Bone-18"] +[node name="RemoteTransform2D" type="RemoteTransform2D" parent="Stickman/Bone-18"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-18") update_rotation = false update_scale = false -[node name="Joint2D-Bone-18-Bone-13" type="PinJoint2D" parent="SoftBody2D2/Bone-18"] -visible = false -rotation = -4.70476 -node_a = NodePath("..") -node_b = NodePath("../../Bone-13") -softness = 60.0 - -[node name="Joint2D-Bone-18-Bone-17" type="PinJoint2D" parent="SoftBody2D2/Bone-18"] +[node name="Joint2D-Bone-18-Bone-20" type="PinJoint2D" parent="Stickman/Bone-18"] visible = false -rotation = -3.13842 +rotation = -0.500363 node_a = NodePath("..") -node_b = NodePath("../../Bone-17") -softness = 60.0 - -[node name="Joint2D-Bone-18-Bone-21" type="PinJoint2D" parent="SoftBody2D2/Bone-18"] -visible = false -rotation = 0.789423 -node_a = NodePath("..") -node_b = NodePath("../../Bone-21") +node_b = NodePath("../../Bone-20") softness = 60.0 -[node name="Joint2D-Bone-18-Bone-23" type="PinJoint2D" parent="SoftBody2D2/Bone-18"] +[node name="Joint2D-Bone-18-Bone-0" type="PinJoint2D" parent="Stickman/Bone-18"] visible = false -rotation = 0.00266819 +rotation = -3.14159 node_a = NodePath("..") -node_b = NodePath("../../Bone-23") +node_b = NodePath("../../Bone-0") softness = 60.0 -[node name="Joint2D-Bone-18-Bone-27" type="PinJoint2D" parent="SoftBody2D2/Bone-18"] +[node name="Joint2D-Bone-18-Bone-4" type="PinJoint2D" parent="Stickman/Bone-18"] visible = false -rotation = -1.58078 +rotation = -2.49809 node_a = NodePath("..") -node_b = NodePath("../../Bone-27") +node_b = NodePath("../../Bone-4") softness = 60.0 -[node name="Joint2D-Bone-18-Bone-29" type="PinJoint2D" parent="SoftBody2D2/Bone-18"] +[node name="Joint2D-Bone-18-Bone-19" type="PinJoint2D" parent="Stickman/Bone-18"] visible = false -rotation = -0.785232 +rotation = -1.5708 node_a = NodePath("..") -node_b = NodePath("../../Bone-29") +node_b = NodePath("../../Bone-19") softness = 60.0 -[node name="Bone-19" parent="SoftBody2D2" instance=ExtResource("3_6ern4")] -position = Vector2(113.972, 207.019) -mass = 0.030303 +[node name="Bone-19" type="RigidBody2D" parent="Stickman"] +position = Vector2(38, 165) +mass = 0.027027 +metadata/idx = 19 metadata/bone_name = &"Bone-19" -[node name="CircleShape2D" type="CollisionShape2D" parent="SoftBody2D2/Bone-19"] -shape = SubResource("CircleShape2D_2rlcy") +[node name="CircleShape2D" type="CollisionShape2D" parent="Stickman/Bone-19"] +shape = SubResource("CircleShape2D_r17k3") -[node name="RemoteTransform2D" type="RemoteTransform2D" parent="SoftBody2D2/Bone-19"] +[node name="RemoteTransform2D" type="RemoteTransform2D" parent="Stickman/Bone-19"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-19") update_rotation = false update_scale = false -[node name="Joint2D-Bone-19-Bone-8" type="PinJoint2D" parent="SoftBody2D2/Bone-19"] +[node name="Joint2D-Bone-19-Bone-0" type="PinJoint2D" parent="Stickman/Bone-19"] visible = false -rotation = -3.15473 +rotation = -3.78509 node_a = NodePath("..") -node_b = NodePath("../../Bone-8") +node_b = NodePath("../../Bone-0") softness = 60.0 -[node name="Joint2D-Bone-19-Bone-13" type="PinJoint2D" parent="SoftBody2D2/Bone-19"] +[node name="Joint2D-Bone-19-Bone-4" type="PinJoint2D" parent="Stickman/Bone-19"] visible = false -rotation = -2.40869 +rotation = -3.14159 node_a = NodePath("..") -node_b = NodePath("../../Bone-13") +node_b = NodePath("../../Bone-4") softness = 60.0 -[node name="Joint2D-Bone-19-Bone-20" type="PinJoint2D" parent="SoftBody2D2/Bone-19"] +[node name="Joint2D-Bone-19-Bone-18" type="PinJoint2D" parent="Stickman/Bone-19"] visible = false -rotation = 0.140581 +rotation = 1.5708 node_a = NodePath("..") -node_b = NodePath("../../Bone-20") +node_b = NodePath("../../Bone-18") softness = 60.0 -[node name="Joint2D-Bone-19-Bone-21" type="PinJoint2D" parent="SoftBody2D2/Bone-19"] +[node name="Joint2D-Bone-19-Bone-8" type="PinJoint2D" parent="Stickman/Bone-19"] visible = false -rotation = -1.56852 +rotation = -2.35619 node_a = NodePath("..") -node_b = NodePath("../../Bone-21") +node_b = NodePath("../../Bone-8") softness = 60.0 -[node name="Joint2D-Bone-19-Bone-22" type="PinJoint2D" parent="SoftBody2D2/Bone-19"] +[node name="Joint2D-Bone-19-Bone-22" type="PinJoint2D" parent="Stickman/Bone-19"] visible = false -rotation = -0.729055 +rotation = -1.5708 node_a = NodePath("..") node_b = NodePath("../../Bone-22") softness = 60.0 -[node name="Bone-20" parent="SoftBody2D2" instance=ExtResource("3_6ern4")] -position = Vector2(110.377, 232.419) -mass = 0.030303 +[node name="Joint2D-Bone-19-Bone-20" type="PinJoint2D" parent="Stickman/Bone-19"] +visible = false +rotation = 0.200496 +node_a = NodePath("..") +node_b = NodePath("../../Bone-20") +softness = 60.0 + +[node name="Joint2D-Bone-19-Bone-23" type="PinJoint2D" parent="Stickman/Bone-19"] +visible = false +rotation = -0.785398 +node_a = NodePath("..") +node_b = NodePath("../../Bone-23") +softness = 60.0 + +[node name="Bone-20" type="RigidBody2D" parent="Stickman"] +position = Vector2(31.7, 196) +mass = 0.027027 +metadata/idx = 20 metadata/bone_name = &"Bone-20" -[node name="CircleShape2D" type="CollisionShape2D" parent="SoftBody2D2/Bone-20"] -shape = SubResource("CircleShape2D_2rlcy") +[node name="CircleShape2D" type="CollisionShape2D" parent="Stickman/Bone-20"] +shape = SubResource("CircleShape2D_r17k3") -[node name="RemoteTransform2D" type="RemoteTransform2D" parent="SoftBody2D2/Bone-20"] +[node name="RemoteTransform2D" type="RemoteTransform2D" parent="Stickman/Bone-20"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-20") update_rotation = false update_scale = false -[node name="Joint2D-Bone-20-Bone-19" type="PinJoint2D" parent="SoftBody2D2/Bone-20"] +[node name="Joint2D-Bone-20-Bone-18" type="PinJoint2D" parent="Stickman/Bone-20"] visible = false -rotation = -3.00101 +rotation = -3.64196 node_a = NodePath("..") -node_b = NodePath("../../Bone-19") +node_b = NodePath("../../Bone-18") softness = 60.0 -[node name="Joint2D-Bone-20-Bone-21" type="PinJoint2D" parent="SoftBody2D2/Bone-20"] +[node name="Joint2D-Bone-20-Bone-19" type="PinJoint2D" parent="Stickman/Bone-20"] visible = false -rotation = -2.26308 +rotation = -2.9411 node_a = NodePath("..") -node_b = NodePath("../../Bone-21") +node_b = NodePath("../../Bone-19") softness = 60.0 -[node name="Joint2D-Bone-20-Bone-22" type="PinJoint2D" parent="SoftBody2D2/Bone-20"] +[node name="Joint2D-Bone-20-Bone-22" type="PinJoint2D" parent="Stickman/Bone-20"] visible = false -rotation = -1.41844 +rotation = -2.26421 node_a = NodePath("..") node_b = NodePath("../../Bone-22") softness = 60.0 -[node name="Bone-21" parent="SoftBody2D2" instance=ExtResource("3_6ern4")] -position = Vector2(140.936, 207.081) -mass = 0.030303 -metadata/bone_name = &"Bone-21" - -[node name="CircleShape2D" type="CollisionShape2D" parent="SoftBody2D2/Bone-21"] -shape = SubResource("CircleShape2D_2rlcy") - -[node name="RemoteTransform2D" type="RemoteTransform2D" parent="SoftBody2D2/Bone-21"] -remote_path = NodePath("../../Skeleton2D/Bone-21") -update_rotation = false -update_scale = false - -[node name="Joint2D-Bone-21-Bone-8" type="PinJoint2D" parent="SoftBody2D2/Bone-21"] +[node name="Joint2D-Bone-20-Bone-23" type="PinJoint2D" parent="Stickman/Bone-20"] visible = false -rotation = -3.87967 +rotation = -1.5708 node_a = NodePath("..") -node_b = NodePath("../../Bone-8") +node_b = NodePath("../../Bone-23") softness = 60.0 -[node name="Joint2D-Bone-21-Bone-13" type="PinJoint2D" parent="SoftBody2D2/Bone-21"] +[node name="Joint2D-Bone-20-Bone-21" type="PinJoint2D" parent="Stickman/Bone-20"] visible = false -rotation = -3.13907 +rotation = -0.236446 node_a = NodePath("..") -node_b = NodePath("../../Bone-13") +node_b = NodePath("../../Bone-21") softness = 60.0 -[node name="Joint2D-Bone-21-Bone-18" type="PinJoint2D" parent="SoftBody2D2/Bone-21"] +[node name="Joint2D-Bone-20-Bone-24" type="PinJoint2D" parent="Stickman/Bone-20"] visible = false -rotation = -2.35217 +rotation = -0.838092 node_a = NodePath("..") -node_b = NodePath("../../Bone-18") +node_b = NodePath("../../Bone-24") softness = 60.0 -[node name="Joint2D-Bone-21-Bone-19" type="PinJoint2D" parent="SoftBody2D2/Bone-21"] +[node name="Bone-21" type="RigidBody2D" parent="Stickman"] +position = Vector2(38.65, 224.844) +mass = 0.027027 +metadata/idx = 21 +metadata/bone_name = &"Bone-21" + +[node name="CircleShape2D" type="CollisionShape2D" parent="Stickman/Bone-21"] +shape = SubResource("CircleShape2D_r17k3") + +[node name="RemoteTransform2D" type="RemoteTransform2D" parent="Stickman/Bone-21"] visible = false -rotation = -4.71011 -node_a = NodePath("..") -node_b = NodePath("../../Bone-19") -softness = 60.0 +remote_path = NodePath("../../Skeleton2D/Bone-21") +update_rotation = false +update_scale = false -[node name="Joint2D-Bone-21-Bone-20" type="PinJoint2D" parent="SoftBody2D2/Bone-21"] +[node name="Joint2D-Bone-21-Bone-24" type="PinJoint2D" parent="Stickman/Bone-21"] visible = false -rotation = 0.878516 +rotation = -1.41655 node_a = NodePath("..") -node_b = NodePath("../../Bone-20") +node_b = NodePath("../../Bone-24") softness = 60.0 -[node name="Joint2D-Bone-21-Bone-22" type="PinJoint2D" parent="SoftBody2D2/Bone-21"] +[node name="Joint2D-Bone-21-Bone-20" type="PinJoint2D" parent="Stickman/Bone-21"] visible = false -rotation = 0.00330035 +rotation = -3.37804 node_a = NodePath("..") -node_b = NodePath("../../Bone-22") +node_b = NodePath("../../Bone-20") softness = 60.0 -[node name="Joint2D-Bone-21-Bone-23" type="PinJoint2D" parent="SoftBody2D2/Bone-21"] +[node name="Joint2D-Bone-21-Bone-23" type="PinJoint2D" parent="Stickman/Bone-21"] visible = false -rotation = -1.56744 +rotation = -2.33075 node_a = NodePath("..") node_b = NodePath("../../Bone-23") softness = 60.0 -[node name="Bone-22" parent="SoftBody2D2" instance=ExtResource("3_6ern4")] -position = Vector2(140.837, 237.096) -mass = 0.030303 +[node name="Bone-22" type="RigidBody2D" parent="Stickman"] +position = Vector2(69, 165) +mass = 0.027027 +metadata/idx = 22 metadata/bone_name = &"Bone-22" -[node name="CircleShape2D" type="CollisionShape2D" parent="SoftBody2D2/Bone-22"] -shape = SubResource("CircleShape2D_2rlcy") +[node name="CircleShape2D" type="CollisionShape2D" parent="Stickman/Bone-22"] +shape = SubResource("CircleShape2D_r17k3") -[node name="RemoteTransform2D" type="RemoteTransform2D" parent="SoftBody2D2/Bone-22"] +[node name="RemoteTransform2D" type="RemoteTransform2D" parent="Stickman/Bone-22"] +visible = false remote_path = NodePath("../../Skeleton2D/Bone-22") update_rotation = false update_scale = false -[node name="Joint2D-Bone-22-Bone-19" type="PinJoint2D" parent="SoftBody2D2/Bone-22"] -visible = false -rotation = -3.87065 -node_a = NodePath("..") -node_b = NodePath("../../Bone-19") -softness = 60.0 - -[node name="Joint2D-Bone-22-Bone-20" type="PinJoint2D" parent="SoftBody2D2/Bone-22"] +[node name="Joint2D-Bone-22-Bone-4" type="PinJoint2D" parent="Stickman/Bone-22"] visible = false -rotation = -4.56003 +rotation = -3.92699 node_a = NodePath("..") -node_b = NodePath("../../Bone-20") +node_b = NodePath("../../Bone-4") softness = 60.0 -[node name="Joint2D-Bone-22-Bone-21" type="PinJoint2D" parent="SoftBody2D2/Bone-22"] +[node name="Joint2D-Bone-22-Bone-8" type="PinJoint2D" parent="Stickman/Bone-22"] visible = false -rotation = -3.13829 +rotation = -3.14159 node_a = NodePath("..") -node_b = NodePath("../../Bone-21") +node_b = NodePath("../../Bone-8") softness = 60.0 -[node name="Joint2D-Bone-22-Bone-24" type="PinJoint2D" parent="SoftBody2D2/Bone-22"] +[node name="Joint2D-Bone-22-Bone-19" type="PinJoint2D" parent="Stickman/Bone-22"] visible = false -rotation = -1.56961 +rotation = 1.5708 node_a = NodePath("..") -node_b = NodePath("../../Bone-24") +node_b = NodePath("../../Bone-19") softness = 60.0 -[node name="Bone-23" parent="SoftBody2D2" instance=ExtResource("3_6ern4")] -position = Vector2(170.968, 207.182) -mass = 0.030303 -metadata/bone_name = &"Bone-23" - -[node name="CircleShape2D" type="CollisionShape2D" parent="SoftBody2D2/Bone-23"] -shape = SubResource("CircleShape2D_2rlcy") - -[node name="RemoteTransform2D" type="RemoteTransform2D" parent="SoftBody2D2/Bone-23"] -remote_path = NodePath("../../Skeleton2D/Bone-23") -update_rotation = false -update_scale = false - -[node name="Joint2D-Bone-23-Bone-18" type="PinJoint2D" parent="SoftBody2D2/Bone-23"] +[node name="Joint2D-Bone-22-Bone-13" type="PinJoint2D" parent="Stickman/Bone-22"] visible = false -rotation = -3.13892 +rotation = -2.35619 node_a = NodePath("..") -node_b = NodePath("../../Bone-18") +node_b = NodePath("../../Bone-13") softness = 60.0 -[node name="Joint2D-Bone-23-Bone-21" type="PinJoint2D" parent="SoftBody2D2/Bone-23"] +[node name="Joint2D-Bone-22-Bone-25" type="PinJoint2D" parent="Stickman/Bone-22"] visible = false -rotation = -4.70903 +rotation = -1.5708 node_a = NodePath("..") -node_b = NodePath("../../Bone-21") +node_b = NodePath("../../Bone-25") softness = 60.0 -[node name="Joint2D-Bone-23-Bone-24" type="PinJoint2D" parent="SoftBody2D2/Bone-23"] +[node name="Joint2D-Bone-22-Bone-20" type="PinJoint2D" parent="Stickman/Bone-22"] visible = false -rotation = -0.00262733 +rotation = 0.877378 node_a = NodePath("..") -node_b = NodePath("../../Bone-24") +node_b = NodePath("../../Bone-20") softness = 60.0 -[node name="Joint2D-Bone-23-Bone-29" type="PinJoint2D" parent="SoftBody2D2/Bone-23"] +[node name="Joint2D-Bone-22-Bone-23" type="PinJoint2D" parent="Stickman/Bone-22"] visible = false -rotation = -1.57764 node_a = NodePath("..") -node_b = NodePath("../../Bone-29") +node_b = NodePath("../../Bone-23") softness = 60.0 -[node name="Joint2D-Bone-23-Bone-30" type="PinJoint2D" parent="SoftBody2D2/Bone-23"] +[node name="Joint2D-Bone-22-Bone-26" type="PinJoint2D" parent="Stickman/Bone-22"] visible = false -rotation = -0.794058 +rotation = -0.785398 node_a = NodePath("..") -node_b = NodePath("../../Bone-30") +node_b = NodePath("../../Bone-26") softness = 60.0 -[node name="Bone-24" parent="SoftBody2D2" instance=ExtResource("3_6ern4")] -position = Vector2(171.047, 237.132) -mass = 0.030303 -metadata/bone_name = &"Bone-24" +[node name="Bone-23" type="RigidBody2D" parent="Stickman"] +position = Vector2(69, 196) +mass = 0.027027 +metadata/idx = 23 +metadata/bone_name = &"Bone-23" -[node name="CircleShape2D" type="CollisionShape2D" parent="SoftBody2D2/Bone-24"] -shape = SubResource("CircleShape2D_2rlcy") +[node name="CircleShape2D" type="CollisionShape2D" parent="Stickman/Bone-23"] +shape = SubResource("CircleShape2D_r17k3") -[node name="RemoteTransform2D" type="RemoteTransform2D" parent="SoftBody2D2/Bone-24"] -remote_path = NodePath("../../Skeleton2D/Bone-24") +[node name="RemoteTransform2D" type="RemoteTransform2D" parent="Stickman/Bone-23"] +visible = false +remote_path = NodePath("../../Skeleton2D/Bone-23") update_rotation = false update_scale = false -[node name="Joint2D-Bone-24-Bone-22" type="PinJoint2D" parent="SoftBody2D2/Bone-24"] +[node name="Joint2D-Bone-23-Bone-19" type="PinJoint2D" parent="Stickman/Bone-23"] visible = false -rotation = -4.71121 +rotation = -3.92699 node_a = NodePath("..") -node_b = NodePath("../../Bone-22") +node_b = NodePath("../../Bone-19") softness = 60.0 -[node name="Joint2D-Bone-24-Bone-23" type="PinJoint2D" parent="SoftBody2D2/Bone-24"] +[node name="Joint2D-Bone-23-Bone-20" type="PinJoint2D" parent="Stickman/Bone-23"] visible = false -rotation = -3.14422 +rotation = 1.5708 node_a = NodePath("..") -node_b = NodePath("../../Bone-23") +node_b = NodePath("../../Bone-20") softness = 60.0 -[node name="Joint2D-Bone-24-Bone-29" type="PinJoint2D" parent="SoftBody2D2/Bone-24"] +[node name="Joint2D-Bone-23-Bone-22" type="PinJoint2D" parent="Stickman/Bone-23"] visible = false -rotation = -2.3628 +rotation = -3.14159 node_a = NodePath("..") -node_b = NodePath("../../Bone-29") +node_b = NodePath("../../Bone-22") softness = 60.0 -[node name="Joint2D-Bone-24-Bone-30" type="PinJoint2D" parent="SoftBody2D2/Bone-24"] +[node name="Joint2D-Bone-23-Bone-21" type="PinJoint2D" parent="Stickman/Bone-23"] visible = false -rotation = -1.57973 +rotation = 0.810839 node_a = NodePath("..") -node_b = NodePath("../../Bone-30") +node_b = NodePath("../../Bone-21") softness = 60.0 -[node name="Bone-25" parent="SoftBody2D2" instance=ExtResource("3_6ern4")] -position = Vector2(195.3, 116.876) -mass = 0.030303 -metadata/bone_name = &"Bone-25" - -[node name="CircleShape2D" type="CollisionShape2D" parent="SoftBody2D2/Bone-25"] -shape = SubResource("CircleShape2D_2rlcy") - -[node name="RemoteTransform2D" type="RemoteTransform2D" parent="SoftBody2D2/Bone-25"] -remote_path = NodePath("../../Skeleton2D/Bone-25") -update_rotation = false -update_scale = false - -[node name="Joint2D-Bone-25-Bone-15" type="PinJoint2D" parent="SoftBody2D2/Bone-25"] +[node name="Joint2D-Bone-23-Bone-24" type="PinJoint2D" parent="Stickman/Bone-23"] visible = false -rotation = -3.68894 node_a = NodePath("..") -node_b = NodePath("../../Bone-15") +node_b = NodePath("../../Bone-24") softness = 60.0 -[node name="Joint2D-Bone-25-Bone-16" type="PinJoint2D" parent="SoftBody2D2/Bone-25"] +[node name="Joint2D-Bone-23-Bone-25" type="PinJoint2D" parent="Stickman/Bone-23"] visible = false -rotation = 1.56129 +rotation = -2.35619 node_a = NodePath("..") -node_b = NodePath("../../Bone-16") +node_b = NodePath("../../Bone-25") softness = 60.0 -[node name="Joint2D-Bone-25-Bone-17" type="PinJoint2D" parent="SoftBody2D2/Bone-25"] +[node name="Joint2D-Bone-23-Bone-26" type="PinJoint2D" parent="Stickman/Bone-23"] visible = false -rotation = 0.673529 +rotation = -1.5708 node_a = NodePath("..") -node_b = NodePath("../../Bone-17") +node_b = NodePath("../../Bone-26") softness = 60.0 -[node name="Joint2D-Bone-25-Bone-26" type="PinJoint2D" parent="SoftBody2D2/Bone-25"] +[node name="Joint2D-Bone-23-Bone-27" type="PinJoint2D" parent="Stickman/Bone-23"] visible = false -rotation = -0.187156 +rotation = -0.735631 node_a = NodePath("..") -node_b = NodePath("../../Bone-26") +node_b = NodePath("../../Bone-27") softness = 60.0 -[node name="Bone-26" parent="SoftBody2D2" instance=ExtResource("3_6ern4")] -position = Vector2(200.981, 146.875) -mass = 0.030303 -metadata/bone_name = &"Bone-26" +[node name="Bone-24" type="RigidBody2D" parent="Stickman"] +position = Vector2(69, 229.562) +mass = 0.027027 +metadata/idx = 24 +metadata/bone_name = &"Bone-24" -[node name="CircleShape2D" type="CollisionShape2D" parent="SoftBody2D2/Bone-26"] -shape = SubResource("CircleShape2D_2rlcy") +[node name="CircleShape2D" type="CollisionShape2D" parent="Stickman/Bone-24"] +shape = SubResource("CircleShape2D_r17k3") -[node name="RemoteTransform2D" type="RemoteTransform2D" parent="SoftBody2D2/Bone-26"] -remote_path = NodePath("../../Skeleton2D/Bone-26") +[node name="RemoteTransform2D" type="RemoteTransform2D" parent="Stickman/Bone-24"] +visible = false +remote_path = NodePath("../../Skeleton2D/Bone-24") update_rotation = false update_scale = false -[node name="Joint2D-Bone-26-Bone-16" type="PinJoint2D" parent="SoftBody2D2/Bone-26"] +[node name="Joint2D-Bone-24-Bone-21" type="PinJoint2D" parent="Stickman/Bone-24"] visible = false -rotation = -3.93074 +rotation = -4.55815 node_a = NodePath("..") -node_b = NodePath("../../Bone-16") +node_b = NodePath("../../Bone-21") softness = 60.0 -[node name="Joint2D-Bone-26-Bone-17" type="PinJoint2D" parent="SoftBody2D2/Bone-26"] +[node name="Joint2D-Bone-24-Bone-20" type="PinJoint2D" parent="Stickman/Bone-24"] visible = false -rotation = 1.56169 +rotation = -3.97968 node_a = NodePath("..") -node_b = NodePath("../../Bone-17") +node_b = NodePath("../../Bone-20") softness = 60.0 -[node name="Joint2D-Bone-26-Bone-25" type="PinJoint2D" parent="SoftBody2D2/Bone-26"] +[node name="Joint2D-Bone-24-Bone-23" type="PinJoint2D" parent="Stickman/Bone-24"] visible = false -rotation = -3.32875 +rotation = -3.14159 node_a = NodePath("..") -node_b = NodePath("../../Bone-25") +node_b = NodePath("../../Bone-23") softness = 60.0 -[node name="Joint2D-Bone-26-Bone-27" type="PinJoint2D" parent="SoftBody2D2/Bone-26"] +[node name="Joint2D-Bone-24-Bone-26" type="PinJoint2D" parent="Stickman/Bone-24"] visible = false -rotation = 0.000194116 +rotation = -2.39586 node_a = NodePath("..") -node_b = NodePath("../../Bone-27") +node_b = NodePath("../../Bone-26") softness = 60.0 -[node name="Joint2D-Bone-26-Bone-28" type="PinJoint2D" parent="SoftBody2D2/Bone-26"] +[node name="Joint2D-Bone-24-Bone-27" type="PinJoint2D" parent="Stickman/Bone-24"] visible = false -rotation = -0.978414 +rotation = -1.54862 node_a = NodePath("..") -node_b = NodePath("../../Bone-28") +node_b = NodePath("../../Bone-27") softness = 60.0 -[node name="Bone-27" parent="SoftBody2D2" instance=ExtResource("3_6ern4")] -position = Vector2(200.975, 176.911) -mass = 0.030303 -metadata/bone_name = &"Bone-27" +[node name="Bone-25" type="RigidBody2D" parent="Stickman"] +position = Vector2(100, 165) +mass = 0.027027 +metadata/idx = 25 +metadata/bone_name = &"Bone-25" -[node name="CircleShape2D" type="CollisionShape2D" parent="SoftBody2D2/Bone-27"] -shape = SubResource("CircleShape2D_2rlcy") +[node name="CircleShape2D" type="CollisionShape2D" parent="Stickman/Bone-25"] +shape = SubResource("CircleShape2D_r17k3") -[node name="RemoteTransform2D" type="RemoteTransform2D" parent="SoftBody2D2/Bone-27"] -remote_path = NodePath("../../Skeleton2D/Bone-27") +[node name="RemoteTransform2D" type="RemoteTransform2D" parent="Stickman/Bone-25"] +visible = false +remote_path = NodePath("../../Skeleton2D/Bone-25") update_rotation = false update_scale = false -[node name="Joint2D-Bone-27-Bone-17" type="PinJoint2D" parent="SoftBody2D2/Bone-27"] +[node name="Joint2D-Bone-25-Bone-8" type="PinJoint2D" parent="Stickman/Bone-25"] visible = false -rotation = -3.9281 +rotation = -3.92699 node_a = NodePath("..") -node_b = NodePath("../../Bone-17") +node_b = NodePath("../../Bone-8") softness = 60.0 -[node name="Joint2D-Bone-27-Bone-18" type="PinJoint2D" parent="SoftBody2D2/Bone-27"] +[node name="Joint2D-Bone-25-Bone-13" type="PinJoint2D" parent="Stickman/Bone-25"] visible = false -rotation = 1.56082 +rotation = -3.14159 node_a = NodePath("..") -node_b = NodePath("../../Bone-18") +node_b = NodePath("../../Bone-13") softness = 60.0 -[node name="Joint2D-Bone-27-Bone-26" type="PinJoint2D" parent="SoftBody2D2/Bone-27"] +[node name="Joint2D-Bone-25-Bone-22" type="PinJoint2D" parent="Stickman/Bone-25"] visible = false -rotation = -3.1414 +rotation = 1.5708 node_a = NodePath("..") -node_b = NodePath("../../Bone-26") +node_b = NodePath("../../Bone-22") softness = 60.0 -[node name="Joint2D-Bone-27-Bone-28" type="PinJoint2D" parent="SoftBody2D2/Bone-27"] +[node name="Joint2D-Bone-25-Bone-17" type="PinJoint2D" parent="Stickman/Bone-25"] visible = false -rotation = -1.84824 +rotation = -2.35619 node_a = NodePath("..") -node_b = NodePath("../../Bone-28") +node_b = NodePath("../../Bone-17") softness = 60.0 -[node name="Joint2D-Bone-27-Bone-29" type="PinJoint2D" parent="SoftBody2D2/Bone-27"] +[node name="Joint2D-Bone-25-Bone-28" type="PinJoint2D" parent="Stickman/Bone-25"] visible = false -rotation = 0.00561146 +rotation = -1.5708 node_a = NodePath("..") -node_b = NodePath("../../Bone-29") +node_b = NodePath("../../Bone-28") softness = 60.0 -[node name="Bone-28" parent="SoftBody2D2" instance=ExtResource("3_6ern4")] -position = Vector2(232.339, 167.979) -mass = 0.030303 -metadata/bone_name = &"Bone-28" - -[node name="CircleShape2D" type="CollisionShape2D" parent="SoftBody2D2/Bone-28"] -shape = SubResource("CircleShape2D_2rlcy") - -[node name="RemoteTransform2D" type="RemoteTransform2D" parent="SoftBody2D2/Bone-28"] -remote_path = NodePath("../../Skeleton2D/Bone-28") -update_rotation = false -update_scale = false - -[node name="Joint2D-Bone-28-Bone-26" type="PinJoint2D" parent="SoftBody2D2/Bone-28"] +[node name="Joint2D-Bone-25-Bone-23" type="PinJoint2D" parent="Stickman/Bone-25"] visible = false -rotation = -4.12001 +rotation = 0.785398 node_a = NodePath("..") -node_b = NodePath("../../Bone-26") +node_b = NodePath("../../Bone-23") softness = 60.0 -[node name="Joint2D-Bone-28-Bone-27" type="PinJoint2D" parent="SoftBody2D2/Bone-28"] +[node name="Joint2D-Bone-25-Bone-26" type="PinJoint2D" parent="Stickman/Bone-25"] visible = false -rotation = 1.29335 node_a = NodePath("..") -node_b = NodePath("../../Bone-27") +node_b = NodePath("../../Bone-26") softness = 60.0 -[node name="Joint2D-Bone-28-Bone-31" type="PinJoint2D" parent="SoftBody2D2/Bone-28"] +[node name="Joint2D-Bone-25-Bone-29" type="PinJoint2D" parent="Stickman/Bone-25"] visible = false -rotation = -0.000473932 +rotation = -0.785398 node_a = NodePath("..") -node_b = NodePath("../../Bone-31") +node_b = NodePath("../../Bone-29") softness = 60.0 -[node name="Bone-29" parent="SoftBody2D2" instance=ExtResource("3_6ern4")] -position = Vector2(200.806, 206.977) -mass = 0.030303 -metadata/bone_name = &"Bone-29" +[node name="Bone-26" type="RigidBody2D" parent="Stickman"] +position = Vector2(100, 196) +mass = 0.027027 +metadata/idx = 26 +metadata/bone_name = &"Bone-26" -[node name="CircleShape2D" type="CollisionShape2D" parent="SoftBody2D2/Bone-29"] -shape = SubResource("CircleShape2D_2rlcy") +[node name="CircleShape2D" type="CollisionShape2D" parent="Stickman/Bone-26"] +shape = SubResource("CircleShape2D_r17k3") -[node name="RemoteTransform2D" type="RemoteTransform2D" parent="SoftBody2D2/Bone-29"] -remote_path = NodePath("../../Skeleton2D/Bone-29") +[node name="RemoteTransform2D" type="RemoteTransform2D" parent="Stickman/Bone-26"] +visible = false +remote_path = NodePath("../../Skeleton2D/Bone-26") update_rotation = false update_scale = false -[node name="Joint2D-Bone-29-Bone-18" type="PinJoint2D" parent="SoftBody2D2/Bone-29"] +[node name="Joint2D-Bone-26-Bone-22" type="PinJoint2D" parent="Stickman/Bone-26"] visible = false -rotation = -3.92682 +rotation = -3.92699 node_a = NodePath("..") -node_b = NodePath("../../Bone-18") +node_b = NodePath("../../Bone-22") softness = 60.0 -[node name="Joint2D-Bone-29-Bone-23" type="PinJoint2D" parent="SoftBody2D2/Bone-29"] +[node name="Joint2D-Bone-26-Bone-23" type="PinJoint2D" parent="Stickman/Bone-26"] visible = false -rotation = 1.56395 +rotation = 1.5708 node_a = NodePath("..") node_b = NodePath("../../Bone-23") softness = 60.0 -[node name="Joint2D-Bone-29-Bone-24" type="PinJoint2D" parent="SoftBody2D2/Bone-29"] +[node name="Joint2D-Bone-26-Bone-25" type="PinJoint2D" parent="Stickman/Bone-26"] +visible = false +rotation = -3.14159 +node_a = NodePath("..") +node_b = NodePath("../../Bone-25") +softness = 60.0 + +[node name="Joint2D-Bone-26-Bone-24" type="PinJoint2D" parent="Stickman/Bone-26"] visible = false -rotation = 0.778796 +rotation = 0.745729 node_a = NodePath("..") node_b = NodePath("../../Bone-24") softness = 60.0 -[node name="Joint2D-Bone-29-Bone-27" type="PinJoint2D" parent="SoftBody2D2/Bone-29"] +[node name="Joint2D-Bone-26-Bone-27" type="PinJoint2D" parent="Stickman/Bone-26"] visible = false -rotation = -3.13598 node_a = NodePath("..") node_b = NodePath("../../Bone-27") softness = 60.0 -[node name="Joint2D-Bone-29-Bone-30" type="PinJoint2D" parent="SoftBody2D2/Bone-29"] +[node name="Joint2D-Bone-26-Bone-28" type="PinJoint2D" parent="Stickman/Bone-26"] visible = false -rotation = -0.0121225 +rotation = -2.35619 node_a = NodePath("..") -node_b = NodePath("../../Bone-30") +node_b = NodePath("../../Bone-28") softness = 60.0 -[node name="Joint2D-Bone-29-Bone-31" type="PinJoint2D" parent="SoftBody2D2/Bone-29"] +[node name="Joint2D-Bone-26-Bone-29" type="PinJoint2D" parent="Stickman/Bone-26"] visible = false -rotation = -1.57093 +rotation = -1.5708 node_a = NodePath("..") -node_b = NodePath("../../Bone-31") +node_b = NodePath("../../Bone-29") softness = 60.0 -[node name="Joint2D-Bone-29-Bone-32" type="PinJoint2D" parent="SoftBody2D2/Bone-29"] +[node name="Joint2D-Bone-26-Bone-30" type="PinJoint2D" parent="Stickman/Bone-26"] visible = false -rotation = -0.81129 +rotation = -0.750393 node_a = NodePath("..") -node_b = NodePath("../../Bone-32") +node_b = NodePath("../../Bone-30") softness = 60.0 -[node name="Bone-30" parent="SoftBody2D2" instance=ExtResource("3_6ern4")] -position = Vector2(201.168, 236.863) -mass = 0.030303 -metadata/bone_name = &"Bone-30" +[node name="Bone-27" type="RigidBody2D" parent="Stickman"] +position = Vector2(100, 230.25) +mass = 0.027027 +metadata/idx = 27 +metadata/bone_name = &"Bone-27" -[node name="CircleShape2D" type="CollisionShape2D" parent="SoftBody2D2/Bone-30"] -shape = SubResource("CircleShape2D_2rlcy") +[node name="CircleShape2D" type="CollisionShape2D" parent="Stickman/Bone-27"] +shape = SubResource("CircleShape2D_r17k3") -[node name="RemoteTransform2D" type="RemoteTransform2D" parent="SoftBody2D2/Bone-30"] -remote_path = NodePath("../../Skeleton2D/Bone-30") +[node name="RemoteTransform2D" type="RemoteTransform2D" parent="Stickman/Bone-27"] +visible = false +remote_path = NodePath("../../Skeleton2D/Bone-27") update_rotation = false update_scale = false -[node name="Joint2D-Bone-30-Bone-23" type="PinJoint2D" parent="SoftBody2D2/Bone-30"] +[node name="Joint2D-Bone-27-Bone-23" type="PinJoint2D" parent="Stickman/Bone-27"] visible = false -rotation = -3.93565 +rotation = -3.87722 node_a = NodePath("..") node_b = NodePath("../../Bone-23") softness = 60.0 -[node name="Joint2D-Bone-30-Bone-24" type="PinJoint2D" parent="SoftBody2D2/Bone-30"] +[node name="Joint2D-Bone-27-Bone-24" type="PinJoint2D" parent="Stickman/Bone-27"] visible = false -rotation = 1.56187 +rotation = -4.69022 node_a = NodePath("..") node_b = NodePath("../../Bone-24") softness = 60.0 -[node name="Joint2D-Bone-30-Bone-29" type="PinJoint2D" parent="SoftBody2D2/Bone-30"] -visible = false -rotation = -3.15372 -node_a = NodePath("..") -node_b = NodePath("../../Bone-29") -softness = 60.0 - -[node name="Joint2D-Bone-30-Bone-32" type="PinJoint2D" parent="SoftBody2D2/Bone-30"] -visible = false -rotation = -1.73799 -node_a = NodePath("..") -node_b = NodePath("../../Bone-32") -softness = 60.0 - -[node name="Bone-31" parent="SoftBody2D2" instance=ExtResource("3_6ern4")] -position = Vector2(232.357, 206.973) -mass = 0.030303 -metadata/bone_name = &"Bone-31" - -[node name="CircleShape2D" type="CollisionShape2D" parent="SoftBody2D2/Bone-31"] -shape = SubResource("CircleShape2D_2rlcy") - -[node name="RemoteTransform2D" type="RemoteTransform2D" parent="SoftBody2D2/Bone-31"] -remote_path = NodePath("../../Skeleton2D/Bone-31") -update_rotation = false -update_scale = false - -[node name="Joint2D-Bone-31-Bone-28" type="PinJoint2D" parent="SoftBody2D2/Bone-31"] +[node name="Joint2D-Bone-27-Bone-26" type="PinJoint2D" parent="Stickman/Bone-27"] visible = false -rotation = -3.14207 +rotation = -3.14159 node_a = NodePath("..") -node_b = NodePath("../../Bone-28") +node_b = NodePath("../../Bone-26") softness = 60.0 -[node name="Joint2D-Bone-31-Bone-29" type="PinJoint2D" parent="SoftBody2D2/Bone-31"] +[node name="Joint2D-Bone-27-Bone-29" type="PinJoint2D" parent="Stickman/Bone-27"] visible = false -rotation = 1.57066 +rotation = -2.40596 node_a = NodePath("..") node_b = NodePath("../../Bone-29") softness = 60.0 -[node name="Joint2D-Bone-31-Bone-32" type="PinJoint2D" parent="SoftBody2D2/Bone-31"] +[node name="Joint2D-Bone-27-Bone-30" type="PinJoint2D" parent="Stickman/Bone-27"] visible = false -rotation = 0.185465 +rotation = -1.60304 node_a = NodePath("..") -node_b = NodePath("../../Bone-32") +node_b = NodePath("../../Bone-30") softness = 60.0 -[node name="Bone-32" parent="SoftBody2D2" instance=ExtResource("3_6ern4")] -position = Vector2(227.585, 232.405) -mass = 0.030303 -metadata/bone_name = &"Bone-32" +[node name="Bone-28" type="RigidBody2D" parent="Stickman"] +position = Vector2(131, 165) +mass = 0.027027 +metadata/idx = 28 +metadata/bone_name = &"Bone-28" -[node name="CircleShape2D" type="CollisionShape2D" parent="SoftBody2D2/Bone-32"] -shape = SubResource("CircleShape2D_2rlcy") +[node name="CircleShape2D" type="CollisionShape2D" parent="Stickman/Bone-28"] +shape = SubResource("CircleShape2D_r17k3") -[node name="RemoteTransform2D" type="RemoteTransform2D" parent="SoftBody2D2/Bone-32"] -remote_path = NodePath("../../Skeleton2D/Bone-32") +[node name="RemoteTransform2D" type="RemoteTransform2D" parent="Stickman/Bone-28"] +visible = false +remote_path = NodePath("../../Skeleton2D/Bone-28") update_rotation = false update_scale = false -[node name="Joint2D-Bone-32-Bone-29" type="PinJoint2D" parent="SoftBody2D2/Bone-32"] +[node name="Joint2D-Bone-28-Bone-13" type="PinJoint2D" parent="Stickman/Bone-28"] visible = false -rotation = -3.95288 +rotation = -3.92699 node_a = NodePath("..") -node_b = NodePath("../../Bone-29") +node_b = NodePath("../../Bone-13") softness = 60.0 -[node name="Joint2D-Bone-32-Bone-30" type="PinJoint2D" parent="SoftBody2D2/Bone-32"] +[node name="Joint2D-Bone-28-Bone-17" type="PinJoint2D" parent="Stickman/Bone-28"] visible = false -rotation = 1.4036 +rotation = -3.14159 node_a = NodePath("..") -node_b = NodePath("../../Bone-30") +node_b = NodePath("../../Bone-17") softness = 60.0 -[node name="Joint2D-Bone-32-Bone-31" type="PinJoint2D" parent="SoftBody2D2/Bone-32"] +[node name="Joint2D-Bone-28-Bone-25" type="PinJoint2D" parent="Stickman/Bone-28"] visible = false -rotation = -2.95613 +rotation = 1.5708 node_a = NodePath("..") -node_b = NodePath("../../Bone-31") +node_b = NodePath("../../Bone-25") softness = 60.0 -[node name="Stickman" type="Polygon2D" parent="."] -position = Vector2(629, -39) -texture = ExtResource("11_1biik") -skeleton = NodePath("Skeleton2D") -polygon = PackedVector2Array(234, 32, 226, 36, 224, 36, 220, 40, 218, 40, 212, 47, 210, 47, 202, 58, 201, 58, 199, 63, 199, 71, 205, 77, 205, 78, 217, 82, 217, 83, 235, 84, 235, 85, 231, 86, 228, 86, 219, 91, 217, 91, 216, 92, 216, 93, 212, 95, 210, 95, 209, 96, 209, 97, 207, 98, 205, 98, 204, 99, 204, 100, 202, 101, 200, 101, 199, 102, 199, 103, 197, 104, 195, 104, 194, 105, 194, 106, 192, 106, 191, 107, 191, 108, 189, 109, 187, 109, 186, 110, 186, 111, 177, 116, 177, 117, 170, 120, 170, 121, 151, 129, 148, 129, 144, 132, 142, 132, 130, 141, 128, 141, 127, 143, 126, 143, 126, 146, 125, 146, 125, 151, 126, 153, 127, 153, 128, 156, 128, 160, 134, 175, 134, 178, 139, 183, 139, 184, 142, 185, 143, 185, 180, 159, 180, 158, 182, 157, 184, 157, 186, 155, 186, 154, 194, 150, 194, 149, 197, 149, 198, 148, 198, 147, 204, 144, 207, 144, 213, 140, 216, 140, 218, 138, 221, 138, 224, 136, 224, 135, 227, 135, 236, 129, 237, 129, 235, 138, 234, 138, 234, 143, 233, 143, 233, 164, 231, 171, 231, 201, 229, 202, 227, 202, 211, 214, 209, 214, 204, 219, 204, 220, 202, 220, 199, 223, 199, 224, 197, 225, 195, 225, 188, 231, 186, 231, 167, 253, 166, 253, 166, 255, 163, 258, 162, 258, 161, 260, 161, 262, 157, 266, 157, 268, 146, 279, 145, 279, 145, 281, 143, 282, 143, 284, 134, 293, 133, 293, 133, 302, 141, 315, 141, 317, 156, 330, 156, 331, 159, 332, 160, 332, 160, 331, 165, 331, 167, 329, 169, 329, 190, 309, 190, 308, 192, 308, 197, 302, 199, 302, 210, 291, 210, 290, 212, 290, 215, 286, 217, 286, 222, 280, 224, 280, 226, 278, 226, 276, 236, 266, 236, 264, 245, 256, 245, 254, 251, 249, 251, 248, 257, 245, 257, 244, 259, 244, 268, 252, 270, 252, 272, 255, 273, 255, 273, 257, 285, 271, 285, 273, 296, 285, 296, 287, 314, 302, 314, 303, 320, 305, 329, 305, 335, 302, 337, 302, 340, 299, 342, 299, 349, 292, 350, 292, 352, 285, 353, 285, 353, 279, 350, 275, 350, 273, 332, 254, 332, 253, 330, 253, 329, 251, 327, 251, 318, 243, 316, 243, 308, 234, 307, 234, 307, 232, 303, 228, 302, 228, 302, 226, 300, 224, 299, 224, 299, 222, 297, 220, 296, 220, 296, 218, 293, 215, 292, 215, 292, 213, 288, 209, 287, 209, 285, 205, 284, 205, 280, 196, 279, 196, 278, 192, 278, 191, 280, 184, 281, 184, 281, 180, 282, 180, 282, 169, 283, 169, 281, 148, 281, 143, 288, 145, 291, 145, 298, 149, 302, 149, 324, 160, 324, 161, 327, 161, 329, 163, 333, 163, 341, 168, 344, 168, 345, 169, 345, 170, 347, 170, 348, 171, 348, 172, 350, 172, 355, 176, 355, 177, 361, 180, 361, 181, 373, 186, 373, 187, 397, 194, 397, 195, 402, 195, 404, 193, 406, 193, 412, 186, 413, 186, 419, 172, 420, 172, 420, 169, 421, 169, 421, 161, 418, 158, 418, 157, 416, 157, 415, 155, 413, 155, 411, 153, 411, 152, 409, 152, 408, 150, 406, 150, 401, 145, 399, 145, 396, 142, 396, 141, 394, 141, 391, 138, 391, 137, 389, 137, 387, 135, 387, 134, 385, 134, 384, 132, 382, 132, 380, 130, 380, 129, 378, 129, 376, 127, 376, 126, 374, 126, 372, 124, 372, 123, 368, 121, 368, 120, 343, 108, 340, 108, 339, 107, 339, 106, 336, 106, 335, 105, 335, 104, 332, 104, 328, 101, 326, 101, 325, 99, 323, 99, 322, 96, 322, 94, 318, 91, 318, 90, 311, 87, 311, 86, 289, 79, 268, 79, 268, 77, 285, 77, 305, 74, 312, 74, 318, 71, 321, 71, 331, 62, 331, 56, 327, 52, 325, 52, 325, 50, 320, 46, 320, 45, 306, 39, 306, 38, 292, 35, 292, 34, 277, 32, 277, 31, 234, 31, 197.062, 148.938, 197, 149, 194, 149, 194, 150, 192.065, 150.967, 149.102, 150.919, 149.047, 129, 151, 129, 170, 121, 170, 120, 177, 117, 177, 116, 186, 111, 186, 110, 187, 109, 189, 109, 191, 108, 191, 107, 192, 106, 194, 106, 194, 105, 195, 104, 197, 104, 197.24, 103.88, 149.102, 150.919, 148.772, 151.252, 125.075, 151.149, 125, 151, 125, 146, 126, 146, 126, 143, 127, 143, 128, 141, 130, 141, 142, 132, 144, 132, 148, 129, 149.047, 129, 148.772, 151.252, 148.946, 180.822, 143, 185, 142, 185, 139, 184, 139, 183, 134, 178, 134, 175, 128, 160, 128, 156, 127, 153, 126, 153, 125.075, 151.149, 192.065, 150.967, 186, 154, 186, 155, 184, 157, 182, 157, 180, 158, 180, 159, 148.946, 180.822, 148.772, 151.252, 149.102, 150.919, 244.998, 103.252, 245.274, 151.185, 245.092, 151.369, 233, 151.335, 233, 143, 234, 143, 234, 138, 235, 138, 237, 129, 236, 129, 227, 135, 224, 135, 224, 136, 221, 138, 218, 138, 216, 140, 213, 140, 207, 144, 204, 144, 198, 147, 198, 148, 197.062, 148.938, 197.24, 103.88, 198.774, 103.113, 245.039, 199.04, 244.834, 246.729, 197.022, 247.115, 196.916, 225, 197, 225, 199, 224, 199, 223, 202, 220, 204, 220, 204, 219, 209, 214, 211, 214, 227, 202, 229, 202, 231, 201, 231, 199.034, 277, 32, 292, 34, 292, 35, 292.915, 35.196, 293.155, 55.2289, 293.092, 55.2934, 245.399, 55.3732, 244.868, 54.8432, 245.18, 31, 277, 31, 244.868, 54.8432, 204.277, 54.8688, 210, 47, 212, 47, 218, 40, 220, 40, 224, 36, 226, 36, 234, 32, 234, 31, 245.18, 31, 245.399, 55.3732, 245.073, 103.178, 244.998, 103.252, 197.243, 103.109, 197.05, 102.915, 197.487, 54.8731, 244.868, 54.8432, 293.469, 102.848, 293.081, 103.234, 245.073, 103.178, 245.399, 55.3732, 293.092, 55.2934, 306, 38, 306, 39, 320, 45, 320, 46, 325, 50, 325, 52, 327, 52, 329.659, 54.6593, 293.155, 55.2289, 292.915, 35.196, 311, 86, 311, 87, 318, 90, 318, 91, 322, 94, 322, 96, 323, 99, 325, 99, 326, 101, 328, 101, 331.154, 103.365, 293.469, 102.848, 293.29, 80.3651, 331, 56, 331, 62, 321, 71, 318, 71, 312, 74, 305, 74, 293.254, 75.7619, 293.092, 55.2934, 293.155, 55.2289, 329.659, 54.6593, 293.081, 103.234, 292.797, 146.027, 291, 145, 288, 145, 281, 143, 281, 148, 281.279, 150.927, 245.274, 151.185, 244.998, 103.252, 245.073, 103.178, 283, 169, 282, 169, 282, 180, 281, 180, 281, 184, 280, 184, 278, 191, 278, 192, 279, 196, 280, 196, 281.391, 199.13, 245.385, 198.692, 245.092, 151.369, 245.274, 151.185, 281.279, 150.927, 245.092, 151.369, 245.385, 198.692, 245.039, 199.04, 231, 199.034, 231, 171, 233, 164, 233, 151.335, 281.391, 199.13, 284, 205, 285, 205, 287, 209, 288, 209, 292, 213, 292, 215, 293, 215, 293.033, 215.033, 292.684, 247.245, 262.524, 247.133, 259, 244, 257, 244, 257, 245, 252.807, 247.097, 245.178, 247.068, 244.834, 246.729, 245.039, 199.04, 245.385, 198.692, 296, 218, 296, 220, 297, 220, 299, 222, 299, 224, 300, 224, 302, 226, 302, 228, 303, 228, 307, 232, 307, 234, 308, 234, 316, 243, 318, 243, 322.946, 247.396, 292.853, 247.416, 292.684, 247.245, 293.033, 215.033, 292.684, 247.245, 292.853, 247.419, 292.877, 281.593, 285, 273, 285, 271, 273, 257, 273, 255, 272, 255, 270, 252, 268, 252, 262.524, 247.132, 252.808, 247.096, 251, 248, 251, 249, 245.14, 253.883, 245.178, 247.068, 331.154, 103.365, 332, 104, 335, 104, 335, 105, 336, 106, 339, 106, 339, 107, 340, 108, 340.627, 108, 341.201, 150.755, 340.917, 151.042, 306.736, 151.368, 302, 149, 298, 149, 292.797, 146.027, 293.081, 103.234, 293.469, 102.848, 341.031, 168, 341, 168, 333, 163, 329, 163, 327, 161, 324, 161, 324, 160, 306.736, 151.368, 340.917, 151.042, 196.908, 247.23, 197.133, 294.599, 196.815, 294.921, 148.846, 295.108, 148.844, 276.156, 157, 268, 157, 266, 161, 262, 161, 260, 162, 258, 163, 258, 166, 255, 166, 253, 167, 253, 172.051, 247.151, 197.022, 247.115, 196.908, 247.23, 172.053, 247.149, 186, 231, 188, 231, 195, 225, 196.916, 225, 148.846, 295.108, 148.812, 295.147, 133, 295.232, 133, 293, 134, 293, 143, 284, 143, 282, 145, 281, 145, 279, 146, 279, 148.844, 276.156, 196.794, 302.247, 192, 308, 190, 308, 190, 309, 169, 329, 167, 329, 165, 331, 160, 331, 160, 332, 159, 332, 156, 331, 156, 330, 149.122, 324.039, 148.812, 295.147, 148.846, 295.108, 196.815, 294.921, 149.122, 324.039, 141, 317, 141, 315, 133, 302, 133, 295.232, 148.812, 295.147, 245.178, 247.068, 245.14, 253.883, 245, 254, 245, 256, 236, 264, 236, 266, 226, 276, 226, 278, 224, 280, 222, 280, 217, 286, 215, 286, 212, 290, 210, 290, 210, 291, 206.26, 294.74, 197.133, 294.599, 196.908, 247.23, 197.022, 247.115, 244.834, 246.729, 206.26, 294.74, 199, 302, 197, 302, 196.794, 302.247, 196.815, 294.921, 197.133, 294.599, 327, 251, 329, 251, 330, 253, 332, 253, 332, 254, 340.793, 263.281, 341.046, 295.068, 305.794, 295.162, 296, 287, 296, 285, 292.877, 281.593, 292.853, 247.419, 322.947, 247.397, 341.33, 295.35, 341.325, 299, 340, 299, 337, 302, 335, 302, 329, 305, 320, 305, 314, 303, 314, 302, 305.794, 295.162, 341.046, 295.068, 350, 273, 350, 275, 353, 279, 353, 285, 352, 285, 350, 292, 349, 292, 345.719, 295.281, 341.33, 295.35, 341.046, 295.068, 340.793, 263.281, 342, 299, 341.325, 299, 341.33, 295.35, 345.719, 295.281, 368, 120, 368, 121, 372, 123, 372, 124, 374, 126, 376, 126, 376, 127, 378, 129, 380, 129, 380, 130, 382, 132, 384, 132, 385, 134, 387, 134, 387, 135, 389, 137, 389.08, 137, 389.099, 150.676, 388.959, 150.816, 341.201, 150.755, 340.627, 108, 343, 108, 388.959, 150.816, 389.012, 191.67, 373, 187, 373, 186, 361, 181, 361, 180, 355, 177, 355, 176, 350, 172, 348, 172, 348, 171, 347, 170, 345, 170, 345, 169, 344, 168, 341.031, 168, 340.917, 151.042, 341.201, 150.755, 408.356, 150.712, 409, 152, 411, 152, 411, 153, 413, 155, 415, 155, 416, 157, 418, 157, 418, 158, 421, 161, 421, 169, 420, 169, 420, 172, 419, 172, 413, 186, 412, 186, 406, 193, 404, 193, 402, 195, 397, 195, 397, 194, 389.012, 191.67, 388.959, 150.816, 389.099, 150.676, 391, 138, 394, 141, 396, 141, 396, 142, 399, 145, 401, 145, 406, 150, 408, 150, 408.356, 150.712, 389.099, 150.676, 389.08, 137, 391, 137) -polygons = [PackedInt32Array(356, 333, 334), PackedInt32Array(335, 336, 337), PackedInt32Array(337, 338, 339), PackedInt32Array(341, 342, 343), PackedInt32Array(343, 344, 345), PackedInt32Array(345, 346, 347), PackedInt32Array(349, 350, 351), PackedInt32Array(352, 353, 354), PackedInt32Array(355, 356, 334), PackedInt32Array(335, 337, 339), PackedInt32Array(345, 347, 348), PackedInt32Array(349, 351, 352), PackedInt32Array(352, 354, 355), PackedInt32Array(355, 334, 335), PackedInt32Array(335, 339, 340), PackedInt32Array(345, 348, 349), PackedInt32Array(352, 355, 335), PackedInt32Array(335, 340, 341), PackedInt32Array(343, 345, 349), PackedInt32Array(349, 352, 335), PackedInt32Array(335, 341, 343), PackedInt32Array(343, 349, 335), PackedInt32Array(370, 357, 358), PackedInt32Array(358, 359, 360), PackedInt32Array(360, 361, 362), PackedInt32Array(362, 363, 364), PackedInt32Array(364, 365, 366), PackedInt32Array(366, 367, 368), PackedInt32Array(368, 369, 370), PackedInt32Array(370, 358, 360), PackedInt32Array(360, 362, 364), PackedInt32Array(364, 366, 368), PackedInt32Array(368, 370, 360), PackedInt32Array(360, 364, 368), PackedInt32Array(371, 372, 373), PackedInt32Array(373, 374, 375), PackedInt32Array(376, 377, 378), PackedInt32Array(378, 379, 380), PackedInt32Array(381, 382, 383), PackedInt32Array(371, 373, 375), PackedInt32Array(376, 378, 380), PackedInt32Array(381, 383, 371), PackedInt32Array(371, 375, 376), PackedInt32Array(376, 380, 381), PackedInt32Array(381, 371, 376), PackedInt32Array(393, 384, 385), PackedInt32Array(385, 386, 387), PackedInt32Array(389, 390, 391), PackedInt32Array(391, 392, 393), PackedInt32Array(393, 385, 387), PackedInt32Array(389, 391, 393), PackedInt32Array(393, 387, 388), PackedInt32Array(388, 389, 393), PackedInt32Array(394, 395, 396), PackedInt32Array(396, 397, 398), PackedInt32Array(399, 400, 401), PackedInt32Array(403, 404, 405), PackedInt32Array(405, 406, 407), PackedInt32Array(408, 409, 410), PackedInt32Array(410, 411, 412), PackedInt32Array(413, 414, 415), PackedInt32Array(415, 416, 417), PackedInt32Array(396, 398, 399), PackedInt32Array(399, 401, 402), PackedInt32Array(405, 407, 408), PackedInt32Array(413, 415, 417), PackedInt32Array(394, 396, 399), PackedInt32Array(405, 408, 410), PackedInt32Array(412, 413, 417), PackedInt32Array(394, 399, 402), PackedInt32Array(403, 405, 410), PackedInt32Array(410, 412, 417), PackedInt32Array(417, 394, 402), PackedInt32Array(403, 410, 417), PackedInt32Array(417, 402, 403), PackedInt32Array(433, 418, 419), PackedInt32Array(419, 420, 421), PackedInt32Array(423, 424, 425), PackedInt32Array(426, 427, 428), PackedInt32Array(429, 430, 431), PackedInt32Array(432, 433, 419), PackedInt32Array(419, 421, 422), PackedInt32Array(423, 425, 426), PackedInt32Array(426, 428, 429), PackedInt32Array(429, 431, 432), PackedInt32Array(419, 422, 423), PackedInt32Array(426, 429, 432), PackedInt32Array(432, 419, 423), PackedInt32Array(423, 426, 432), PackedInt32Array(434, 435, 436), PackedInt32Array(436, 437, 438), PackedInt32Array(438, 439, 440), PackedInt32Array(440, 441, 442), PackedInt32Array(442, 443, 434), PackedInt32Array(434, 436, 438), PackedInt32Array(438, 440, 442), PackedInt32Array(442, 434, 438), PackedInt32Array(454, 444, 445), PackedInt32Array(445, 446, 447), PackedInt32Array(447, 448, 449), PackedInt32Array(449, 450, 451), PackedInt32Array(452, 453, 454), PackedInt32Array(454, 445, 447), PackedInt32Array(447, 449, 451), PackedInt32Array(451, 452, 454), PackedInt32Array(454, 447, 451), PackedInt32Array(461, 455, 456), PackedInt32Array(456, 457, 458), PackedInt32Array(458, 459, 460), PackedInt32Array(460, 461, 456), PackedInt32Array(456, 458, 460), PackedInt32Array(466, 462, 463), PackedInt32Array(463, 464, 465), PackedInt32Array(465, 466, 463), PackedInt32Array(476, 467, 468), PackedInt32Array(468, 469, 470), PackedInt32Array(470, 471, 472), PackedInt32Array(472, 473, 474), PackedInt32Array(474, 475, 476), PackedInt32Array(476, 468, 470), PackedInt32Array(472, 474, 476), PackedInt32Array(476, 470, 472), PackedInt32Array(489, 477, 478), PackedInt32Array(478, 479, 480), PackedInt32Array(480, 481, 482), PackedInt32Array(483, 484, 485), PackedInt32Array(485, 486, 487), PackedInt32Array(488, 489, 478), PackedInt32Array(478, 480, 482), PackedInt32Array(485, 487, 488), PackedInt32Array(488, 478, 482), PackedInt32Array(483, 485, 488), PackedInt32Array(488, 482, 483), PackedInt32Array(499, 490, 491), PackedInt32Array(491, 492, 493), PackedInt32Array(493, 494, 495), PackedInt32Array(495, 496, 497), PackedInt32Array(497, 498, 499), PackedInt32Array(499, 491, 493), PackedInt32Array(493, 495, 497), PackedInt32Array(497, 499, 493), PackedInt32Array(509, 500, 501), PackedInt32Array(502, 503, 504), PackedInt32Array(505, 506, 507), PackedInt32Array(507, 508, 509), PackedInt32Array(509, 501, 502), PackedInt32Array(504, 505, 507), PackedInt32Array(509, 502, 504), PackedInt32Array(504, 507, 509), PackedInt32Array(524, 510, 511), PackedInt32Array(511, 512, 513), PackedInt32Array(513, 514, 515), PackedInt32Array(518, 519, 520), PackedInt32Array(521, 522, 523), PackedInt32Array(523, 524, 511), PackedInt32Array(511, 513, 515), PackedInt32Array(518, 520, 521), PackedInt32Array(521, 523, 511), PackedInt32Array(511, 515, 516), PackedInt32Array(517, 518, 521), PackedInt32Array(521, 511, 516), PackedInt32Array(516, 517, 521), PackedInt32Array(531, 525, 526), PackedInt32Array(526, 527, 528), PackedInt32Array(528, 529, 530), PackedInt32Array(530, 531, 526), PackedInt32Array(526, 528, 530), PackedInt32Array(550, 532, 533), PackedInt32Array(533, 534, 535), PackedInt32Array(535, 536, 537), PackedInt32Array(538, 539, 540), PackedInt32Array(540, 541, 542), PackedInt32Array(544, 545, 546), PackedInt32Array(546, 547, 548), PackedInt32Array(548, 549, 550), PackedInt32Array(550, 533, 535), PackedInt32Array(535, 537, 538), PackedInt32Array(538, 540, 542), PackedInt32Array(544, 546, 548), PackedInt32Array(548, 550, 535), PackedInt32Array(535, 538, 542), PackedInt32Array(544, 548, 535), PackedInt32Array(535, 542, 543), PackedInt32Array(543, 544, 535), PackedInt32Array(568, 551, 552), PackedInt32Array(552, 553, 554), PackedInt32Array(555, 556, 557), PackedInt32Array(558, 559, 560), PackedInt32Array(561, 562, 563), PackedInt32Array(563, 564, 565), PackedInt32Array(565, 566, 567), PackedInt32Array(567, 568, 552), PackedInt32Array(552, 554, 555), PackedInt32Array(555, 557, 558), PackedInt32Array(558, 560, 561), PackedInt32Array(563, 565, 567), PackedInt32Array(567, 552, 555), PackedInt32Array(561, 563, 567), PackedInt32Array(567, 555, 558), PackedInt32Array(558, 561, 567), PackedInt32Array(579, 569, 570), PackedInt32Array(570, 571, 572), PackedInt32Array(573, 574, 575), PackedInt32Array(575, 576, 577), PackedInt32Array(577, 578, 579), PackedInt32Array(570, 572, 573), PackedInt32Array(577, 579, 570), PackedInt32Array(570, 573, 575), PackedInt32Array(575, 577, 570), PackedInt32Array(584, 580, 581), PackedInt32Array(581, 582, 583), PackedInt32Array(583, 584, 581), PackedInt32Array(601, 585, 586), PackedInt32Array(586, 587, 588), PackedInt32Array(589, 590, 591), PackedInt32Array(592, 593, 594), PackedInt32Array(594, 595, 596), PackedInt32Array(597, 598, 599), PackedInt32Array(599, 600, 601), PackedInt32Array(601, 586, 588), PackedInt32Array(589, 591, 592), PackedInt32Array(592, 594, 596), PackedInt32Array(597, 599, 601), PackedInt32Array(601, 588, 589), PackedInt32Array(589, 592, 596), PackedInt32Array(596, 597, 601), PackedInt32Array(601, 589, 596), PackedInt32Array(610, 602, 603), PackedInt32Array(604, 605, 606), PackedInt32Array(606, 607, 608), PackedInt32Array(608, 609, 610), PackedInt32Array(610, 603, 604), PackedInt32Array(606, 608, 610), PackedInt32Array(610, 604, 606), PackedInt32Array(625, 611, 612), PackedInt32Array(612, 613, 614), PackedInt32Array(614, 615, 616), PackedInt32Array(616, 617, 618), PackedInt32Array(618, 619, 620), PackedInt32Array(622, 623, 624), PackedInt32Array(624, 625, 612), PackedInt32Array(612, 614, 616), PackedInt32Array(618, 620, 621), PackedInt32Array(622, 624, 612), PackedInt32Array(612, 616, 618), PackedInt32Array(618, 621, 622), PackedInt32Array(622, 612, 618), PackedInt32Array(632, 626, 627), PackedInt32Array(627, 628, 629), PackedInt32Array(630, 631, 632), PackedInt32Array(627, 629, 630), PackedInt32Array(630, 632, 627), PackedInt32Array(643, 633, 634), PackedInt32Array(634, 635, 636), PackedInt32Array(638, 639, 640), PackedInt32Array(640, 641, 642), PackedInt32Array(642, 643, 634), PackedInt32Array(634, 636, 637), PackedInt32Array(640, 642, 634), PackedInt32Array(634, 637, 638), PackedInt32Array(638, 640, 634), PackedInt32Array(659, 644, 645), PackedInt32Array(646, 647, 648), PackedInt32Array(649, 650, 651), PackedInt32Array(651, 652, 653), PackedInt32Array(653, 654, 655), PackedInt32Array(655, 656, 657), PackedInt32Array(657, 658, 659), PackedInt32Array(659, 645, 646), PackedInt32Array(646, 648, 649), PackedInt32Array(651, 653, 655), PackedInt32Array(655, 657, 659), PackedInt32Array(659, 646, 649), PackedInt32Array(649, 651, 655), PackedInt32Array(655, 659, 649), PackedInt32Array(665, 660, 661), PackedInt32Array(662, 663, 664), PackedInt32Array(665, 661, 662), PackedInt32Array(662, 664, 665), PackedInt32Array(685, 666, 667), PackedInt32Array(668, 669, 670), PackedInt32Array(670, 671, 672), PackedInt32Array(672, 673, 674), PackedInt32Array(675, 676, 677), PackedInt32Array(677, 678, 679), PackedInt32Array(679, 680, 681), PackedInt32Array(681, 682, 683), PackedInt32Array(683, 684, 685), PackedInt32Array(685, 667, 668), PackedInt32Array(672, 674, 675), PackedInt32Array(675, 677, 679), PackedInt32Array(679, 681, 683), PackedInt32Array(683, 685, 668), PackedInt32Array(670, 672, 675), PackedInt32Array(675, 679, 683), PackedInt32Array(683, 668, 670), PackedInt32Array(670, 675, 683), PackedInt32Array(691, 686, 687), PackedInt32Array(688, 689, 690), PackedInt32Array(690, 691, 687), PackedInt32Array(687, 688, 690), PackedInt32Array(692, 693, 694), PackedInt32Array(694, 695, 696), PackedInt32Array(696, 697, 698), PackedInt32Array(698, 699, 700), PackedInt32Array(701, 702, 703), PackedInt32Array(703, 704, 692), PackedInt32Array(694, 696, 698), PackedInt32Array(698, 700, 701), PackedInt32Array(701, 703, 692), PackedInt32Array(692, 694, 698), PackedInt32Array(698, 701, 692), PackedInt32Array(715, 705, 706), PackedInt32Array(707, 708, 709), PackedInt32Array(709, 710, 711), PackedInt32Array(711, 712, 713), PackedInt32Array(713, 714, 715), PackedInt32Array(715, 706, 707), PackedInt32Array(707, 709, 711), PackedInt32Array(711, 713, 715), PackedInt32Array(715, 707, 711), PackedInt32Array(726, 716, 717), PackedInt32Array(717, 718, 719), PackedInt32Array(720, 721, 722), PackedInt32Array(722, 723, 724), PackedInt32Array(724, 725, 726), PackedInt32Array(726, 717, 719), PackedInt32Array(720, 722, 724), PackedInt32Array(726, 719, 720), PackedInt32Array(720, 724, 726), PackedInt32Array(730, 727, 728), PackedInt32Array(728, 729, 730), PackedInt32Array(752, 731, 732), PackedInt32Array(732, 733, 734), PackedInt32Array(735, 736, 737), PackedInt32Array(738, 739, 740), PackedInt32Array(741, 742, 743), PackedInt32Array(743, 744, 745), PackedInt32Array(746, 747, 748), PackedInt32Array(748, 749, 750), PackedInt32Array(750, 751, 752), PackedInt32Array(752, 732, 734), PackedInt32Array(735, 737, 738), PackedInt32Array(738, 740, 741), PackedInt32Array(743, 745, 746), PackedInt32Array(746, 748, 750), PackedInt32Array(750, 752, 734), PackedInt32Array(741, 743, 746), PackedInt32Array(750, 734, 735), PackedInt32Array(741, 746, 750), PackedInt32Array(750, 735, 738), PackedInt32Array(738, 741, 750), PackedInt32Array(770, 753, 754), PackedInt32Array(754, 755, 756), PackedInt32Array(756, 757, 758), PackedInt32Array(758, 759, 760), PackedInt32Array(761, 762, 763), PackedInt32Array(764, 765, 766), PackedInt32Array(767, 768, 769), PackedInt32Array(769, 770, 754), PackedInt32Array(754, 756, 758), PackedInt32Array(758, 760, 761), PackedInt32Array(761, 763, 764), PackedInt32Array(764, 766, 767), PackedInt32Array(767, 769, 754), PackedInt32Array(754, 758, 761), PackedInt32Array(764, 767, 754), PackedInt32Array(754, 761, 764), PackedInt32Array(794, 771, 772), PackedInt32Array(772, 773, 774), PackedInt32Array(775, 776, 777), PackedInt32Array(777, 778, 779), PackedInt32Array(779, 780, 781), PackedInt32Array(782, 783, 784), PackedInt32Array(784, 785, 786), PackedInt32Array(786, 787, 788), PackedInt32Array(788, 789, 790), PackedInt32Array(791, 792, 793), PackedInt32Array(793, 794, 772), PackedInt32Array(772, 774, 775), PackedInt32Array(777, 779, 781), PackedInt32Array(782, 784, 786), PackedInt32Array(786, 788, 790), PackedInt32Array(791, 793, 772), PackedInt32Array(775, 777, 781), PackedInt32Array(782, 786, 790), PackedInt32Array(790, 791, 772), PackedInt32Array(772, 775, 781), PackedInt32Array(782, 790, 772), PackedInt32Array(772, 781, 782), PackedInt32Array(796, 797, 798), PackedInt32Array(799, 800, 801), PackedInt32Array(801, 802, 803), PackedInt32Array(804, 805, 806), PackedInt32Array(796, 798, 799), PackedInt32Array(801, 803, 804), PackedInt32Array(804, 806, 795), PackedInt32Array(799, 801, 804), PackedInt32Array(804, 795, 796), PackedInt32Array(796, 799, 804)] -bones = ["Bone-0", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-1", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 1, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0.7, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-2", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-3", PackedFloat32Array(0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-4", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-5", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-6", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0.7, 0.7, 0.7, 1, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-7", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-8", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-9", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-10", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-11", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-12", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-13", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0), "Bone-14", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-15", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0, 0, 0, 0.7, 0.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7)] -internal_vertex_count = 474 -script = ExtResource("2_2dapw") -vertex_interval = 48 -radius = 33 -stiffness = 100.0 -damping = 10.0 -rest_length_ratio = 2.0 -angular_limit_lower = -0.872665 -angular_limit_upper = 0.872665 - -[node name="Skeleton2D" type="Skeleton2D" parent="Stickman"] -visible = false -modification_stack = SubResource("SkeletonModificationStack2D_lpmfw") - -[node name="Bone-0" type="Bone2D" parent="Stickman/Skeleton2D"] -position = Vector2(161.12, 144.44) -rotation = -0.278947 -rest = Transform2D(0.961346, -0.275344, 0.275344, 0.961346, 161.12, 144.44) -auto_calculate_length_and_angle = false -length = 48.0 -bone_angle = 0.0 -metadata/vert_owned = [333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393] -metadata/connected_nodes_paths = [NodePath("Bone-1")] -metadata/_local_pose_override_enabled_ = true - -[node name="Bone-1" type="Bone2D" parent="Stickman/Skeleton2D"] -position = Vector2(221.168, 127.241) -rotation = -0.0012514 -rest = Transform2D(0.999999, -0.0012514, 0.0012514, 0.999999, 221.168, 127.241) -auto_calculate_length_and_angle = false -length = 48.0 -bone_angle = 0.0 -metadata/vert_owned = [394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417] -metadata/connected_nodes_paths = [NodePath("Bone-0"), NodePath("Bone-3"), NodePath("Bone-5"), NodePath("Bone-6")] -metadata/_local_pose_override_enabled_ = true - -[node name="Bone-2" type="Bone2D" parent="Stickman/Skeleton2D"] -position = Vector2(220.978, 223.074) -rotation = 2.55647 -rest = Transform2D(-0.833646, 0.552299, -0.552299, -0.833646, 220.978, 223.074) -auto_calculate_length_and_angle = false -length = 48.0 -bone_angle = 0.0 -metadata/vert_owned = [418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433] -metadata/connected_nodes_paths = [NodePath("Bone-6"), NodePath("Bone-7"), NodePath("Bone-9"), NodePath("Bone-11")] -metadata/_local_pose_override_enabled_ = true - -[node name="Bone-3" type="Bone2D" parent="Stickman/Skeleton2D"] -position = Vector2(245.103, 67.1261) -rotation = 0.0500523 -rest = Transform2D(0.998748, 0.0500314, -0.0500314, 0.998748, 245.103, 67.1261) -auto_calculate_length_and_angle = false -length = 48.0 -bone_angle = 0.0 -metadata/vert_owned = [434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461] -metadata/connected_nodes_paths = [NodePath("Bone-1"), NodePath("Bone-4"), NodePath("Bone-5")] -metadata/_local_pose_override_enabled_ = true - -[node name="Bone-4" type="Bone2D" parent="Stickman/Skeleton2D"] -position = Vector2(288.113, 69.2807) -rotation = 1.88902 -scale = Vector2(1, 1) -rest = Transform2D(-0.312884, 0.949791, -0.949791, -0.312884, 288.113, 69.2807) -auto_calculate_length_and_angle = false -length = 48.0 -bone_angle = 0.0 -metadata/vert_owned = [462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499] -metadata/connected_nodes_paths = [NodePath("Bone-3"), NodePath("Bone-5")] -metadata/_local_pose_override_enabled_ = true - -[node name="Bone-5" type="Bone2D" parent="Stickman/Skeleton2D"] -position = Vector2(269.04, 127.181) -rotation = -1.25257 -scale = Vector2(1, 1) -rest = Transform2D(0.312884, -0.949791, 0.949791, 0.312884, 269.04, 127.181) -auto_calculate_length_and_angle = false -length = 48.0 -bone_angle = 0.0 -metadata/vert_owned = [500, 501, 502, 503, 504, 505, 506, 507, 508, 509] -metadata/connected_nodes_paths = [NodePath("Bone-1"), NodePath("Bone-3"), NodePath("Bone-4"), NodePath("Bone-6"), NodePath("Bone-8")] -metadata/_local_pose_override_enabled_ = true - -[node name="Bone-6" type="Bone2D" parent="Stickman/Skeleton2D"] -position = Vector2(257, 175.029) -rotation = 2.21414 -rest = Transform2D(-0.599871, 0.800097, -0.800097, -0.599871, 257, 175.029) -auto_calculate_length_and_angle = false -length = 48.0 -bone_angle = 0.0 -metadata/vert_owned = [510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531] -metadata/connected_nodes_paths = [NodePath("Bone-1"), NodePath("Bone-2"), NodePath("Bone-5")] -metadata/_local_pose_override_enabled_ = true - -[node name="Bone-7" type="Bone2D" parent="Stickman/Skeleton2D"] -position = Vector2(283.89, 240.142) -rotation = 0.745726 -rest = Transform2D(0.734595, 0.678505, -0.678505, 0.734595, 283.89, 240.142) -auto_calculate_length_and_angle = false -length = 48.0 -bone_angle = 0.0 -metadata/vert_owned = [532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584] -metadata/connected_nodes_paths = [NodePath("Bone-2"), NodePath("Bone-12")] -metadata/_local_pose_override_enabled_ = true - -[node name="Bone-8" type="Bone2D" parent="Stickman/Skeleton2D"] -position = Vector2(316.999, 135.424) -rotation = -0.125037 -rest = Transform2D(0.992193, -0.124712, 0.124712, 0.992193, 316.999, 135.424) -auto_calculate_length_and_angle = false -length = 48.0 -bone_angle = 0.0 -metadata/vert_owned = [585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610] -metadata/connected_nodes_paths = [NodePath("Bone-5"), NodePath("Bone-13"), NodePath("Bone-14")] -metadata/_local_pose_override_enabled_ = true - -[node name="Bone-9" type="Bone2D" parent="Stickman/Skeleton2D"] -position = Vector2(165.067, 260.116) -rotation = 1.57378 -scale = Vector2(1, 1) -rest = Transform2D(-0.00298862, 0.999996, -0.999996, -0.00298862, 165.067, 260.116) -auto_calculate_length_and_angle = false -length = 48.0 -bone_angle = 0.0 -metadata/vert_owned = [611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643] -metadata/connected_nodes_paths = [NodePath("Bone-2"), NodePath("Bone-10"), NodePath("Bone-11")] -metadata/_local_pose_override_enabled_ = true - -[node name="Bone-10" type="Bone2D" parent="Stickman/Skeleton2D"] -position = Vector2(164.907, 313.461) -rotation = -1.56781 -rest = Transform2D(0.00298853, -0.999996, 0.999996, 0.00298853, 164.907, 313.461) -auto_calculate_length_and_angle = false -length = 48.0 -bone_angle = 0.0 -metadata/vert_owned = [644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665] -metadata/connected_nodes_paths = [NodePath("Bone-9")] -metadata/_local_pose_override_enabled_ = true - -[node name="Bone-11" type="Bone2D" parent="Stickman/Skeleton2D"] -position = Vector2(220.986, 274.488) -rotation = -2.89003 -rest = Transform2D(-0.968523, -0.248922, 0.248922, -0.968523, 220.986, 274.488) -auto_calculate_length_and_angle = false -length = 48.0 -bone_angle = 0.0 -metadata/vert_owned = [666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691] -metadata/connected_nodes_paths = [NodePath("Bone-2"), NodePath("Bone-9")] -metadata/_local_pose_override_enabled_ = true - -[node name="Bone-12" type="Bone2D" parent="Stickman/Skeleton2D"] -position = Vector2(322.927, 276.199) -rotation = -2.39587 -rest = Transform2D(-0.734595, -0.678505, 0.678505, -0.734595, 322.927, 276.199) -auto_calculate_length_and_angle = false -length = 48.0 -bone_angle = 0.0 -metadata/vert_owned = [692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730] -metadata/connected_nodes_paths = [NodePath("Bone-7")] -metadata/_local_pose_override_enabled_ = true - -[node name="Bone-13" type="Bone2D" parent="Stickman/Skeleton2D"] -position = Vector2(364.863, 129.408) -rotation = 1.56836 -rest = Transform2D(0.00243385, 0.999997, -0.999997, 0.00243385, 364.863, 129.408) -auto_calculate_length_and_angle = false -length = 48.0 -bone_angle = 0.0 -metadata/vert_owned = [731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752] -metadata/connected_nodes_paths = [NodePath("Bone-8"), NodePath("Bone-14"), NodePath("Bone-15")] -metadata/_local_pose_override_enabled_ = true - -[node name="Bone-14" type="Bone2D" parent="Stickman/Skeleton2D"] -position = Vector2(364.965, 171.212) -rotation = -1.57323 -scale = Vector2(1, 1) -rest = Transform2D(-0.00243382, -0.999997, 0.999997, -0.00243382, 364.965, 171.212) -auto_calculate_length_and_angle = false -length = 48.0 -bone_angle = 0.0 -metadata/vert_owned = [753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770] -metadata/connected_nodes_paths = [NodePath("Bone-8"), NodePath("Bone-13"), NodePath("Bone-15")] -metadata/_local_pose_override_enabled_ = true - -[node name="Bone-15" type="Bone2D" parent="Stickman/Skeleton2D"] -position = Vector2(404.979, 166) -rotation = 3.01206 -rest = Transform2D(-0.991622, 0.129171, -0.129171, -0.991622, 404.979, 166) -auto_calculate_length_and_angle = false -length = 48.0 -bone_angle = 0.0 -metadata/vert_owned = [771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806] -metadata/connected_nodes_paths = [NodePath("Bone-13"), NodePath("Bone-14")] -metadata/_local_pose_override_enabled_ = true - -[node name="Bone-0" type="RigidBody2D" parent="Stickman"] -position = Vector2(161.12, 144.44) -mass = 0.0625 -metadata/bone_name = &"Bone-0" - -[node name="CircleShape2D" type="CollisionShape2D" parent="Stickman/Bone-0"] -shape = SubResource("CircleShape2D_tk7ku") - -[node name="RemoteTransform2D" type="RemoteTransform2D" parent="Stickman/Bone-0"] -remote_path = NodePath("../../Skeleton2D/Bone-0") -update_rotation = false -update_scale = false - -[node name="Joint2D-Bone-0-Bone-1" type="PinJoint2D" parent="Stickman/Bone-0"] +[node name="Joint2D-Bone-28-Bone-33" type="PinJoint2D" parent="Stickman/Bone-28"] visible = false -rotation = -1.84974 +rotation = -2.32119 node_a = NodePath("..") -node_b = NodePath("../../Bone-1") +node_b = NodePath("../../Bone-33") softness = 60.0 -angular_limit_lower = -0.872665 -angular_limit_upper = 0.872665 - -[node name="Bone-1" type="RigidBody2D" parent="Stickman"] -position = Vector2(221.168, 127.241) -mass = 0.0625 -metadata/bone_name = &"Bone-1" - -[node name="CircleShape2D" type="CollisionShape2D" parent="Stickman/Bone-1"] -shape = SubResource("CircleShape2D_tk7ku") - -[node name="RemoteTransform2D" type="RemoteTransform2D" parent="Stickman/Bone-1"] -remote_path = NodePath("../../Skeleton2D/Bone-1") -update_rotation = false -update_scale = false -[node name="Joint2D-Bone-1-Bone-0" type="PinJoint2D" parent="Stickman/Bone-1"] +[node name="Joint2D-Bone-28-Bone-34" type="PinJoint2D" parent="Stickman/Bone-28"] visible = false -rotation = 1.29185 +rotation = -1.5708 node_a = NodePath("..") -node_b = NodePath("../../Bone-0") +node_b = NodePath("../../Bone-34") softness = 60.0 -angular_limit_lower = -0.872665 -angular_limit_upper = 0.872665 -[node name="Joint2D-Bone-1-Bone-3" type="PinJoint2D" parent="Stickman/Bone-1"] +[node name="Joint2D-Bone-28-Bone-26" type="PinJoint2D" parent="Stickman/Bone-28"] visible = false -rotation = -2.76269 +rotation = 0.785398 node_a = NodePath("..") -node_b = NodePath("../../Bone-3") +node_b = NodePath("../../Bone-26") softness = 60.0 -angular_limit_lower = -0.872665 -angular_limit_upper = 0.872665 -[node name="Joint2D-Bone-1-Bone-5" type="PinJoint2D" parent="Stickman/Bone-1"] +[node name="Joint2D-Bone-28-Bone-29" type="PinJoint2D" parent="Stickman/Bone-28"] visible = false -rotation = -1.57205 node_a = NodePath("..") -node_b = NodePath("../../Bone-5") +node_b = NodePath("../../Bone-29") softness = 60.0 -angular_limit_lower = -0.872665 -angular_limit_upper = 0.872665 -[node name="Joint2D-Bone-1-Bone-6" type="PinJoint2D" parent="Stickman/Bone-1"] +[node name="Joint2D-Bone-28-Bone-35" type="PinJoint2D" parent="Stickman/Bone-28"] visible = false -rotation = -0.643381 +rotation = -0.816802 node_a = NodePath("..") -node_b = NodePath("../../Bone-6") +node_b = NodePath("../../Bone-35") softness = 60.0 -angular_limit_lower = -0.872665 -angular_limit_upper = 0.872665 -[node name="Bone-2" type="RigidBody2D" parent="Stickman"] -position = Vector2(220.978, 223.074) -mass = 0.0625 -metadata/bone_name = &"Bone-2" +[node name="Bone-29" type="RigidBody2D" parent="Stickman"] +position = Vector2(131, 196) +mass = 0.027027 +metadata/idx = 29 +metadata/bone_name = &"Bone-29" -[node name="CircleShape2D" type="CollisionShape2D" parent="Stickman/Bone-2"] -shape = SubResource("CircleShape2D_tk7ku") +[node name="CircleShape2D" type="CollisionShape2D" parent="Stickman/Bone-29"] +shape = SubResource("CircleShape2D_r17k3") -[node name="RemoteTransform2D" type="RemoteTransform2D" parent="Stickman/Bone-2"] -remote_path = NodePath("../../Skeleton2D/Bone-2") +[node name="RemoteTransform2D" type="RemoteTransform2D" parent="Stickman/Bone-29"] +visible = false +remote_path = NodePath("../../Skeleton2D/Bone-29") update_rotation = false update_scale = false -[node name="Joint2D-Bone-2-Bone-6" type="PinJoint2D" parent="Stickman/Bone-2"] -visible = false -rotation = -2.49825 -node_a = NodePath("..") -node_b = NodePath("../../Bone-6") -softness = 60.0 -angular_limit_lower = -0.872665 -angular_limit_upper = 0.872665 - -[node name="Joint2D-Bone-2-Bone-7" type="PinJoint2D" parent="Stickman/Bone-2"] +[node name="Joint2D-Bone-29-Bone-25" type="PinJoint2D" parent="Stickman/Bone-29"] visible = false -rotation = -1.30587 +rotation = -3.92699 node_a = NodePath("..") -node_b = NodePath("../../Bone-7") +node_b = NodePath("../../Bone-25") softness = 60.0 -angular_limit_lower = -0.872665 -angular_limit_upper = 0.872665 -[node name="Joint2D-Bone-2-Bone-9" type="PinJoint2D" parent="Stickman/Bone-2"] +[node name="Joint2D-Bone-29-Bone-26" type="PinJoint2D" parent="Stickman/Bone-29"] visible = false -rotation = 0.985677 +rotation = 1.5708 node_a = NodePath("..") -node_b = NodePath("../../Bone-9") +node_b = NodePath("../../Bone-26") softness = 60.0 -angular_limit_lower = -0.872665 -angular_limit_upper = 0.872665 -[node name="Joint2D-Bone-2-Bone-11" type="PinJoint2D" parent="Stickman/Bone-2"] +[node name="Joint2D-Bone-29-Bone-28" type="PinJoint2D" parent="Stickman/Bone-29"] visible = false -rotation = -0.000163511 +rotation = -3.14159 node_a = NodePath("..") -node_b = NodePath("../../Bone-11") +node_b = NodePath("../../Bone-28") softness = 60.0 -angular_limit_lower = -0.872665 -angular_limit_upper = 0.872665 - -[node name="Bone-3" type="RigidBody2D" parent="Stickman"] -position = Vector2(245.103, 67.1261) -mass = 0.0625 -metadata/bone_name = &"Bone-3" - -[node name="CircleShape2D" type="CollisionShape2D" parent="Stickman/Bone-3"] -shape = SubResource("CircleShape2D_tk7ku") - -[node name="RemoteTransform2D" type="RemoteTransform2D" parent="Stickman/Bone-3"] -remote_path = NodePath("../../Skeleton2D/Bone-3") -update_rotation = false -update_scale = false -[node name="Joint2D-Bone-3-Bone-1" type="PinJoint2D" parent="Stickman/Bone-3"] +[node name="Joint2D-Bone-29-Bone-27" type="PinJoint2D" parent="Stickman/Bone-29"] visible = false -rotation = 0.378905 +rotation = 0.735631 node_a = NodePath("..") -node_b = NodePath("../../Bone-1") +node_b = NodePath("../../Bone-27") softness = 60.0 -angular_limit_lower = -0.872665 -angular_limit_upper = 0.872665 -[node name="Joint2D-Bone-3-Bone-4" type="PinJoint2D" parent="Stickman/Bone-3"] +[node name="Joint2D-Bone-29-Bone-30" type="PinJoint2D" parent="Stickman/Bone-29"] visible = false -rotation = -1.52074 node_a = NodePath("..") -node_b = NodePath("../../Bone-4") +node_b = NodePath("../../Bone-30") softness = 60.0 -angular_limit_lower = -0.872665 -angular_limit_upper = 0.872665 -[node name="Joint2D-Bone-3-Bone-5" type="PinJoint2D" parent="Stickman/Bone-3"] +[node name="Joint2D-Bone-29-Bone-34" type="PinJoint2D" parent="Stickman/Bone-29"] visible = false -rotation = -0.379283 +rotation = -2.31375 node_a = NodePath("..") -node_b = NodePath("../../Bone-5") +node_b = NodePath("../../Bone-34") softness = 60.0 -angular_limit_lower = -0.872665 -angular_limit_upper = 0.872665 - -[node name="Bone-4" type="RigidBody2D" parent="Stickman"] -position = Vector2(288.113, 69.2807) -mass = 0.0625 -metadata/bone_name = &"Bone-4" - -[node name="CircleShape2D" type="CollisionShape2D" parent="Stickman/Bone-4"] -shape = SubResource("CircleShape2D_tk7ku") - -[node name="RemoteTransform2D" type="RemoteTransform2D" parent="Stickman/Bone-4"] -remote_path = NodePath("../../Skeleton2D/Bone-4") -update_rotation = false -update_scale = false -[node name="Joint2D-Bone-4-Bone-3" type="PinJoint2D" parent="Stickman/Bone-4"] +[node name="Joint2D-Bone-29-Bone-35" type="PinJoint2D" parent="Stickman/Bone-29"] visible = false -rotation = -4.66234 +rotation = -1.5708 node_a = NodePath("..") -node_b = NodePath("../../Bone-3") +node_b = NodePath("../../Bone-35") softness = 60.0 -angular_limit_lower = -0.872665 -angular_limit_upper = 0.872665 -[node name="Joint2D-Bone-4-Bone-5" type="PinJoint2D" parent="Stickman/Bone-4"] +[node name="Joint2D-Bone-29-Bone-36" type="PinJoint2D" parent="Stickman/Bone-29"] visible = false -rotation = 0.318228 +rotation = -0.801149 node_a = NodePath("..") -node_b = NodePath("../../Bone-5") +node_b = NodePath("../../Bone-36") softness = 60.0 -angular_limit_lower = -0.872665 -angular_limit_upper = 0.872665 -[node name="Bone-5" type="RigidBody2D" parent="Stickman"] -position = Vector2(269.04, 127.181) -mass = 0.0625 -metadata/bone_name = &"Bone-5" +[node name="Bone-30" type="RigidBody2D" parent="Stickman"] +position = Vector2(131, 229.25) +mass = 0.027027 +metadata/idx = 30 +metadata/bone_name = &"Bone-30" -[node name="CircleShape2D" type="CollisionShape2D" parent="Stickman/Bone-5"] -shape = SubResource("CircleShape2D_tk7ku") +[node name="CircleShape2D" type="CollisionShape2D" parent="Stickman/Bone-30"] +shape = SubResource("CircleShape2D_r17k3") -[node name="RemoteTransform2D" type="RemoteTransform2D" parent="Stickman/Bone-5"] -remote_path = NodePath("../../Skeleton2D/Bone-5") +[node name="RemoteTransform2D" type="RemoteTransform2D" parent="Stickman/Bone-30"] +visible = false +remote_path = NodePath("../../Skeleton2D/Bone-30") update_rotation = false update_scale = false -[node name="Joint2D-Bone-5-Bone-1" type="PinJoint2D" parent="Stickman/Bone-5"] +[node name="Joint2D-Bone-30-Bone-26" type="PinJoint2D" parent="Stickman/Bone-30"] visible = false -rotation = 1.56954 +rotation = -3.89199 node_a = NodePath("..") -node_b = NodePath("../../Bone-1") +node_b = NodePath("../../Bone-26") softness = 60.0 -angular_limit_lower = -0.872665 -angular_limit_upper = 0.872665 -[node name="Joint2D-Bone-5-Bone-3" type="PinJoint2D" parent="Stickman/Bone-5"] +[node name="Joint2D-Bone-30-Bone-27" type="PinJoint2D" parent="Stickman/Bone-30"] visible = false -rotation = -3.52088 +rotation = 1.53855 node_a = NodePath("..") -node_b = NodePath("../../Bone-3") +node_b = NodePath("../../Bone-27") softness = 60.0 -angular_limit_lower = -0.872665 -angular_limit_upper = 0.872665 -[node name="Joint2D-Bone-5-Bone-4" type="PinJoint2D" parent="Stickman/Bone-5"] +[node name="Joint2D-Bone-30-Bone-29" type="PinJoint2D" parent="Stickman/Bone-30"] visible = false -rotation = -2.82336 +rotation = -3.14159 node_a = NodePath("..") -node_b = NodePath("../../Bone-4") +node_b = NodePath("../../Bone-29") softness = 60.0 -angular_limit_lower = -0.872665 -angular_limit_upper = 0.872665 -[node name="Joint2D-Bone-5-Bone-6" type="PinJoint2D" parent="Stickman/Bone-5"] +[node name="Joint2D-Bone-30-Bone-35" type="PinJoint2D" parent="Stickman/Bone-30"] visible = false -rotation = 0.246509 +rotation = -2.3598 node_a = NodePath("..") -node_b = NodePath("../../Bone-6") +node_b = NodePath("../../Bone-35") softness = 60.0 -angular_limit_lower = -0.872665 -angular_limit_upper = 0.872665 -[node name="Joint2D-Bone-5-Bone-8" type="PinJoint2D" parent="Stickman/Bone-5"] +[node name="Joint2D-Bone-30-Bone-36" type="PinJoint2D" parent="Stickman/Bone-30"] visible = false -rotation = -1.40059 +rotation = -1.7382 node_a = NodePath("..") -node_b = NodePath("../../Bone-8") +node_b = NodePath("../../Bone-36") softness = 60.0 -angular_limit_lower = -0.872665 -angular_limit_upper = 0.872665 -[node name="Bone-6" type="RigidBody2D" parent="Stickman"] -position = Vector2(257, 175.029) -mass = 0.0625 -metadata/bone_name = &"Bone-6" +[node name="Bone-31" type="RigidBody2D" parent="Stickman"] +position = Vector2(157.353, 66.3929) +mass = 0.027027 +metadata/idx = 31 +metadata/bone_name = &"Bone-31" -[node name="CircleShape2D" type="CollisionShape2D" parent="Stickman/Bone-6"] -shape = SubResource("CircleShape2D_tk7ku") +[node name="CircleShape2D" type="CollisionShape2D" parent="Stickman/Bone-31"] +shape = SubResource("CircleShape2D_r17k3") -[node name="RemoteTransform2D" type="RemoteTransform2D" parent="Stickman/Bone-6"] -remote_path = NodePath("../../Skeleton2D/Bone-6") +[node name="RemoteTransform2D" type="RemoteTransform2D" parent="Stickman/Bone-31"] +visible = false +remote_path = NodePath("../../Skeleton2D/Bone-31") update_rotation = false update_scale = false -[node name="Joint2D-Bone-6-Bone-1" type="PinJoint2D" parent="Stickman/Bone-6"] +[node name="Joint2D-Bone-31-Bone-14" type="PinJoint2D" parent="Stickman/Bone-31"] visible = false -rotation = -3.78497 +rotation = -3.86734 node_a = NodePath("..") -node_b = NodePath("../../Bone-1") +node_b = NodePath("../../Bone-14") softness = 60.0 -angular_limit_lower = -0.872665 -angular_limit_upper = 0.872665 -[node name="Joint2D-Bone-6-Bone-2" type="PinJoint2D" parent="Stickman/Bone-6"] +[node name="Joint2D-Bone-31-Bone-15" type="PinJoint2D" parent="Stickman/Bone-31"] visible = false -rotation = 0.64334 +rotation = 1.36115 node_a = NodePath("..") -node_b = NodePath("../../Bone-2") +node_b = NodePath("../../Bone-15") softness = 60.0 -angular_limit_lower = -0.872665 -angular_limit_upper = 0.872665 -[node name="Joint2D-Bone-6-Bone-5" type="PinJoint2D" parent="Stickman/Bone-6"] +[node name="Joint2D-Bone-31-Bone-16" type="PinJoint2D" parent="Stickman/Bone-31"] visible = false -rotation = -2.89508 +rotation = 0.623947 node_a = NodePath("..") -node_b = NodePath("../../Bone-5") +node_b = NodePath("../../Bone-16") softness = 60.0 -angular_limit_lower = -0.872665 -angular_limit_upper = 0.872665 -[node name="Bone-7" type="RigidBody2D" parent="Stickman"] -position = Vector2(283.89, 240.142) -mass = 0.0625 -metadata/bone_name = &"Bone-7" +[node name="Joint2D-Bone-31-Bone-32" type="PinJoint2D" parent="Stickman/Bone-31"] +visible = false +rotation = -0.119542 +node_a = NodePath("..") +node_b = NodePath("../../Bone-32") +softness = 60.0 -[node name="CircleShape2D" type="CollisionShape2D" parent="Stickman/Bone-7"] -shape = SubResource("CircleShape2D_tk7ku") +[node name="Bone-32" type="RigidBody2D" parent="Stickman"] +position = Vector2(161.75, 103) +mass = 0.027027 +metadata/idx = 32 +metadata/bone_name = &"Bone-32" -[node name="RemoteTransform2D" type="RemoteTransform2D" parent="Stickman/Bone-7"] -remote_path = NodePath("../../Skeleton2D/Bone-7") +[node name="CircleShape2D" type="CollisionShape2D" parent="Stickman/Bone-32"] +shape = SubResource("CircleShape2D_r17k3") + +[node name="RemoteTransform2D" type="RemoteTransform2D" parent="Stickman/Bone-32"] +visible = false +remote_path = NodePath("../../Skeleton2D/Bone-32") update_rotation = false update_scale = false -[node name="Joint2D-Bone-7-Bone-2" type="PinJoint2D" parent="Stickman/Bone-7"] +[node name="Joint2D-Bone-32-Bone-33" type="PinJoint2D" parent="Stickman/Bone-32"] visible = false -rotation = -4.44747 +rotation = -0.080471 node_a = NodePath("..") -node_b = NodePath("../../Bone-2") +node_b = NodePath("../../Bone-33") softness = 60.0 -angular_limit_lower = -0.872665 -angular_limit_upper = 0.872665 -[node name="Joint2D-Bone-7-Bone-12" type="PinJoint2D" parent="Stickman/Bone-7"] +[node name="Joint2D-Bone-32-Bone-15" type="PinJoint2D" parent="Stickman/Bone-32"] visible = false -rotation = -0.82507 +rotation = -3.92294 node_a = NodePath("..") -node_b = NodePath("../../Bone-12") +node_b = NodePath("../../Bone-15") softness = 60.0 -angular_limit_lower = -0.872665 -angular_limit_upper = 0.872665 - -[node name="Bone-8" type="RigidBody2D" parent="Stickman"] -position = Vector2(316.999, 135.424) -mass = 0.0625 -metadata/bone_name = &"Bone-8" - -[node name="CircleShape2D" type="CollisionShape2D" parent="Stickman/Bone-8"] -shape = SubResource("CircleShape2D_tk7ku") - -[node name="RemoteTransform2D" type="RemoteTransform2D" parent="Stickman/Bone-8"] -remote_path = NodePath("../../Skeleton2D/Bone-8") -update_rotation = false -update_scale = false -[node name="Joint2D-Bone-8-Bone-5" type="PinJoint2D" parent="Stickman/Bone-8"] +[node name="Joint2D-Bone-32-Bone-16" type="PinJoint2D" parent="Stickman/Bone-32"] visible = false -rotation = -4.54218 +rotation = 1.5708 node_a = NodePath("..") -node_b = NodePath("../../Bone-5") +node_b = NodePath("../../Bone-16") softness = 60.0 -angular_limit_lower = -0.872665 -angular_limit_upper = 0.872665 -[node name="Joint2D-Bone-8-Bone-13" type="PinJoint2D" parent="Stickman/Bone-8"] +[node name="Joint2D-Bone-32-Bone-31" type="PinJoint2D" parent="Stickman/Bone-32"] visible = false -rotation = -1.69583 +rotation = -3.26113 node_a = NodePath("..") -node_b = NodePath("../../Bone-13") +node_b = NodePath("../../Bone-31") softness = 60.0 -angular_limit_lower = -0.872665 -angular_limit_upper = 0.872665 -[node name="Joint2D-Bone-8-Bone-14" type="PinJoint2D" parent="Stickman/Bone-8"] +[node name="Joint2D-Bone-32-Bone-17" type="PinJoint2D" parent="Stickman/Bone-32"] visible = false -rotation = -0.929778 +rotation = 0.78135 node_a = NodePath("..") -node_b = NodePath("../../Bone-14") +node_b = NodePath("../../Bone-17") softness = 60.0 -angular_limit_lower = -0.872665 -angular_limit_upper = 0.872665 -[node name="Bone-9" type="RigidBody2D" parent="Stickman"] -position = Vector2(165.067, 260.116) -mass = 0.0625 -metadata/bone_name = &"Bone-9" +[node name="Bone-33" type="RigidBody2D" parent="Stickman"] +position = Vector2(164.25, 134) +mass = 0.027027 +metadata/idx = 33 +metadata/bone_name = &"Bone-33" -[node name="CircleShape2D" type="CollisionShape2D" parent="Stickman/Bone-9"] -shape = SubResource("CircleShape2D_tk7ku") +[node name="CircleShape2D" type="CollisionShape2D" parent="Stickman/Bone-33"] +shape = SubResource("CircleShape2D_r17k3") -[node name="RemoteTransform2D" type="RemoteTransform2D" parent="Stickman/Bone-9"] -remote_path = NodePath("../../Skeleton2D/Bone-9") +[node name="RemoteTransform2D" type="RemoteTransform2D" parent="Stickman/Bone-33"] +visible = false +remote_path = NodePath("../../Skeleton2D/Bone-33") update_rotation = false update_scale = false -[node name="Joint2D-Bone-9-Bone-2" type="PinJoint2D" parent="Stickman/Bone-9"] +[node name="Joint2D-Bone-33-Bone-32" type="PinJoint2D" parent="Stickman/Bone-33"] visible = false -rotation = -2.15592 +rotation = -3.22206 node_a = NodePath("..") -node_b = NodePath("../../Bone-2") +node_b = NodePath("../../Bone-32") softness = 60.0 -angular_limit_lower = -0.872665 -angular_limit_upper = 0.872665 -[node name="Joint2D-Bone-9-Bone-10" type="PinJoint2D" parent="Stickman/Bone-9"] +[node name="Joint2D-Bone-33-Bone-16" type="PinJoint2D" parent="Stickman/Bone-33"] visible = false -rotation = 0.00298802 +rotation = -3.962 node_a = NodePath("..") -node_b = NodePath("../../Bone-10") +node_b = NodePath("../../Bone-16") softness = 60.0 -angular_limit_lower = -0.872665 -angular_limit_upper = 0.872665 -[node name="Joint2D-Bone-9-Bone-11" type="PinJoint2D" parent="Stickman/Bone-9"] +[node name="Joint2D-Bone-33-Bone-17" type="PinJoint2D" parent="Stickman/Bone-33"] visible = false -rotation = -1.31923 +rotation = 1.5708 node_a = NodePath("..") -node_b = NodePath("../../Bone-11") +node_b = NodePath("../../Bone-17") softness = 60.0 -angular_limit_lower = -0.872665 -angular_limit_upper = 0.872665 - -[node name="Bone-10" type="RigidBody2D" parent="Stickman"] -position = Vector2(164.907, 313.461) -mass = 0.0625 -metadata/bone_name = &"Bone-10" - -[node name="CircleShape2D" type="CollisionShape2D" parent="Stickman/Bone-10"] -shape = SubResource("CircleShape2D_tk7ku") -[node name="RemoteTransform2D" type="RemoteTransform2D" parent="Stickman/Bone-10"] -remote_path = NodePath("../../Skeleton2D/Bone-10") -update_rotation = false -update_scale = false +[node name="Joint2D-Bone-33-Bone-28" type="PinJoint2D" parent="Stickman/Bone-33"] +visible = false +rotation = 0.820403 +node_a = NodePath("..") +node_b = NodePath("../../Bone-28") +softness = 60.0 -[node name="Joint2D-Bone-10-Bone-9" type="PinJoint2D" parent="Stickman/Bone-10"] +[node name="Joint2D-Bone-33-Bone-34" type="PinJoint2D" parent="Stickman/Bone-33"] visible = false -rotation = -3.1386 +rotation = -0.0161277 node_a = NodePath("..") -node_b = NodePath("../../Bone-9") +node_b = NodePath("../../Bone-34") softness = 60.0 -angular_limit_lower = -0.872665 -angular_limit_upper = 0.872665 -[node name="Bone-11" type="RigidBody2D" parent="Stickman"] -position = Vector2(220.986, 274.488) -mass = 0.0625 -metadata/bone_name = &"Bone-11" +[node name="Bone-34" type="RigidBody2D" parent="Stickman"] +position = Vector2(164.75, 165) +mass = 0.027027 +metadata/idx = 34 +metadata/bone_name = &"Bone-34" -[node name="CircleShape2D" type="CollisionShape2D" parent="Stickman/Bone-11"] -shape = SubResource("CircleShape2D_tk7ku") +[node name="CircleShape2D" type="CollisionShape2D" parent="Stickman/Bone-34"] +shape = SubResource("CircleShape2D_r17k3") -[node name="RemoteTransform2D" type="RemoteTransform2D" parent="Stickman/Bone-11"] -remote_path = NodePath("../../Skeleton2D/Bone-11") +[node name="RemoteTransform2D" type="RemoteTransform2D" parent="Stickman/Bone-34"] +visible = false +remote_path = NodePath("../../Skeleton2D/Bone-34") update_rotation = false update_scale = false -[node name="Joint2D-Bone-11-Bone-2" type="PinJoint2D" parent="Stickman/Bone-11"] +[node name="Joint2D-Bone-34-Bone-17" type="PinJoint2D" parent="Stickman/Bone-34"] visible = false -rotation = -3.14176 +rotation = -3.96944 node_a = NodePath("..") -node_b = NodePath("../../Bone-2") +node_b = NodePath("../../Bone-17") softness = 60.0 -angular_limit_lower = -0.872665 -angular_limit_upper = 0.872665 -[node name="Joint2D-Bone-11-Bone-9" type="PinJoint2D" parent="Stickman/Bone-11"] +[node name="Joint2D-Bone-34-Bone-28" type="PinJoint2D" parent="Stickman/Bone-34"] visible = false -rotation = -4.46082 +rotation = 1.5708 node_a = NodePath("..") -node_b = NodePath("../../Bone-9") +node_b = NodePath("../../Bone-28") softness = 60.0 -angular_limit_lower = -0.872665 -angular_limit_upper = 0.872665 - -[node name="Bone-12" type="RigidBody2D" parent="Stickman"] -position = Vector2(322.927, 276.199) -mass = 0.0625 -metadata/bone_name = &"Bone-12" -[node name="CircleShape2D" type="CollisionShape2D" parent="Stickman/Bone-12"] -shape = SubResource("CircleShape2D_tk7ku") +[node name="Joint2D-Bone-34-Bone-33" type="PinJoint2D" parent="Stickman/Bone-34"] +visible = false +rotation = -3.15772 +node_a = NodePath("..") +node_b = NodePath("../../Bone-33") +softness = 60.0 -[node name="RemoteTransform2D" type="RemoteTransform2D" parent="Stickman/Bone-12"] -remote_path = NodePath("../../Skeleton2D/Bone-12") -update_rotation = false -update_scale = false +[node name="Joint2D-Bone-34-Bone-29" type="PinJoint2D" parent="Stickman/Bone-34"] +visible = false +rotation = 0.827844 +node_a = NodePath("..") +node_b = NodePath("../../Bone-29") +softness = 60.0 -[node name="Joint2D-Bone-12-Bone-7" type="PinJoint2D" parent="Stickman/Bone-12"] +[node name="Joint2D-Bone-34-Bone-35" type="PinJoint2D" parent="Stickman/Bone-34"] visible = false -rotation = -3.96666 +rotation = 0.0238386 node_a = NodePath("..") -node_b = NodePath("../../Bone-7") +node_b = NodePath("../../Bone-35") softness = 60.0 -angular_limit_lower = -0.872665 -angular_limit_upper = 0.872665 -[node name="Bone-13" type="RigidBody2D" parent="Stickman"] -position = Vector2(364.863, 129.408) -mass = 0.0625 -metadata/bone_name = &"Bone-13" +[node name="Bone-35" type="RigidBody2D" parent="Stickman"] +position = Vector2(164.011, 196) +mass = 0.027027 +metadata/idx = 35 +metadata/bone_name = &"Bone-35" -[node name="CircleShape2D" type="CollisionShape2D" parent="Stickman/Bone-13"] -shape = SubResource("CircleShape2D_tk7ku") +[node name="CircleShape2D" type="CollisionShape2D" parent="Stickman/Bone-35"] +shape = SubResource("CircleShape2D_r17k3") -[node name="RemoteTransform2D" type="RemoteTransform2D" parent="Stickman/Bone-13"] -remote_path = NodePath("../../Skeleton2D/Bone-13") +[node name="RemoteTransform2D" type="RemoteTransform2D" parent="Stickman/Bone-35"] +visible = false +remote_path = NodePath("../../Skeleton2D/Bone-35") update_rotation = false update_scale = false -[node name="Joint2D-Bone-13-Bone-8" type="PinJoint2D" parent="Stickman/Bone-13"] -visible = false -rotation = 1.44576 -node_a = NodePath("..") -node_b = NodePath("../../Bone-8") -softness = 60.0 -angular_limit_lower = -0.872665 -angular_limit_upper = 0.872665 - -[node name="Joint2D-Bone-13-Bone-14" type="PinJoint2D" parent="Stickman/Bone-13"] +[node name="Joint2D-Bone-35-Bone-28" type="PinJoint2D" parent="Stickman/Bone-35"] visible = false -rotation = -0.00243385 +rotation = -3.95839 node_a = NodePath("..") -node_b = NodePath("../../Bone-14") +node_b = NodePath("../../Bone-28") softness = 60.0 -angular_limit_lower = -0.872665 -angular_limit_upper = 0.872665 -[node name="Joint2D-Bone-13-Bone-15" type="PinJoint2D" parent="Stickman/Bone-13"] +[node name="Joint2D-Bone-35-Bone-29" type="PinJoint2D" parent="Stickman/Bone-35"] visible = false -rotation = -0.831313 +rotation = 1.5708 node_a = NodePath("..") -node_b = NodePath("../../Bone-15") +node_b = NodePath("../../Bone-29") softness = 60.0 -angular_limit_lower = -0.872665 -angular_limit_upper = 0.872665 - -[node name="Bone-14" type="RigidBody2D" parent="Stickman"] -position = Vector2(364.965, 171.212) -mass = 0.0625 -metadata/bone_name = &"Bone-14" -[node name="CircleShape2D" type="CollisionShape2D" parent="Stickman/Bone-14"] -shape = SubResource("CircleShape2D_tk7ku") - -[node name="RemoteTransform2D" type="RemoteTransform2D" parent="Stickman/Bone-14"] -remote_path = NodePath("../../Skeleton2D/Bone-14") -update_rotation = false -update_scale = false - -[node name="Joint2D-Bone-14-Bone-8" type="PinJoint2D" parent="Stickman/Bone-14"] +[node name="Joint2D-Bone-35-Bone-34" type="PinJoint2D" parent="Stickman/Bone-35"] visible = false -rotation = -4.07137 +rotation = -3.11775 node_a = NodePath("..") -node_b = NodePath("../../Bone-8") +node_b = NodePath("../../Bone-34") softness = 60.0 -angular_limit_lower = -0.872665 -angular_limit_upper = 0.872665 -[node name="Joint2D-Bone-14-Bone-13" type="PinJoint2D" parent="Stickman/Bone-14"] +[node name="Joint2D-Bone-35-Bone-30" type="PinJoint2D" parent="Stickman/Bone-35"] visible = false -rotation = -3.14403 +rotation = 0.781789 node_a = NodePath("..") -node_b = NodePath("../../Bone-13") +node_b = NodePath("../../Bone-30") softness = 60.0 -angular_limit_lower = -0.872665 -angular_limit_upper = 0.872665 -[node name="Joint2D-Bone-14-Bone-15" type="PinJoint2D" parent="Stickman/Bone-14"] +[node name="Joint2D-Bone-35-Bone-36" type="PinJoint2D" parent="Stickman/Bone-35"] visible = false -rotation = -1.70033 +rotation = 0.133145 node_a = NodePath("..") -node_b = NodePath("../../Bone-15") +node_b = NodePath("../../Bone-36") softness = 60.0 -angular_limit_lower = -0.872665 -angular_limit_upper = 0.872665 -[node name="Bone-15" type="RigidBody2D" parent="Stickman"] -position = Vector2(404.979, 166) -mass = 0.0625 -metadata/bone_name = &"Bone-15" +[node name="Bone-36" type="RigidBody2D" parent="Stickman"] +position = Vector2(160.219, 224.312) +mass = 0.027027 +metadata/idx = 36 +metadata/bone_name = &"Bone-36" -[node name="CircleShape2D" type="CollisionShape2D" parent="Stickman/Bone-15"] -shape = SubResource("CircleShape2D_tk7ku") +[node name="CircleShape2D" type="CollisionShape2D" parent="Stickman/Bone-36"] +shape = SubResource("CircleShape2D_r17k3") -[node name="RemoteTransform2D" type="RemoteTransform2D" parent="Stickman/Bone-15"] -remote_path = NodePath("../../Skeleton2D/Bone-15") +[node name="RemoteTransform2D" type="RemoteTransform2D" parent="Stickman/Bone-36"] +visible = false +remote_path = NodePath("../../Skeleton2D/Bone-36") update_rotation = false update_scale = false -[node name="Joint2D-Bone-15-Bone-13" type="PinJoint2D" parent="Stickman/Bone-15"] +[node name="Joint2D-Bone-36-Bone-29" type="PinJoint2D" parent="Stickman/Bone-36"] visible = false -rotation = -3.97291 +rotation = -3.94274 node_a = NodePath("..") -node_b = NodePath("../../Bone-13") +node_b = NodePath("../../Bone-29") softness = 60.0 -angular_limit_lower = -0.872665 -angular_limit_upper = 0.872665 -[node name="Joint2D-Bone-15-Bone-14" type="PinJoint2D" parent="Stickman/Bone-15"] +[node name="Joint2D-Bone-36-Bone-30" type="PinJoint2D" parent="Stickman/Bone-36"] visible = false -rotation = 1.44126 +rotation = 1.40339 node_a = NodePath("..") -node_b = NodePath("../../Bone-14") +node_b = NodePath("../../Bone-30") +softness = 60.0 + +[node name="Joint2D-Bone-36-Bone-35" type="PinJoint2D" parent="Stickman/Bone-36"] +visible = false +rotation = -3.00845 +node_a = NodePath("..") +node_b = NodePath("../../Bone-35") softness = 60.0 -angular_limit_lower = -0.872665 -angular_limit_upper = 0.872665 diff --git a/demo/pickable_rigidbody.gd b/demo/pickable_rigidbody.gd index 20b752c..ab8c707 100644 --- a/demo/pickable_rigidbody.gd +++ b/demo/pickable_rigidbody.gd @@ -1,7 +1,7 @@ @tool extends SoftBody2DRigidBody -var SPEED : float = 800 +var SPEED : float = 200 static var selected_node: SoftBody2DRigidBody = null static var hovering: Array[SoftBody2DRigidBody] = [] @@ -33,9 +33,9 @@ func _process(delta): var dir = (get_global_mouse_position() - global_position - linear_velocity * delta) var length = dir.length() dir /= length - length *= 2 + length /= mass if length > SPEED: length = SPEED; if length < 1: length = 1; - apply_central_impulse(dir * length * mass) + apply_central_impulse(dir * length) diff --git a/demo/softbody2d_phys_bouncy.tres b/demo/softbody2d_phys_bouncy.tres index 6869332..aa08230 100644 --- a/demo/softbody2d_phys_bouncy.tres +++ b/demo/softbody2d_phys_bouncy.tres @@ -1,5 +1,5 @@ [gd_resource type="PhysicsMaterial" format=3 uid="uid://deqagbq7eod2b"] [resource] -friction = 0.24 +friction = 0.61 bounce = 1.0 diff --git a/demo/softbody2d_phys_slippery.tres b/demo/softbody2d_phys_slippery.tres index 6d62393..d37a0d5 100644 --- a/demo/softbody2d_phys_slippery.tres +++ b/demo/softbody2d_phys_slippery.tres @@ -1,4 +1,3 @@ [gd_resource type="PhysicsMaterial" format=3 uid="uid://2kay8j53abmv"] [resource] -friction = 0.0 diff --git a/demo/tutorial.tscn b/demo/tutorial.tscn new file mode 100644 index 0000000..935fb26 --- /dev/null +++ b/demo/tutorial.tscn @@ -0,0 +1,9492 @@ +[gd_scene load_steps=153 format=3 uid="uid://nqkmdq2vwm72"] + +[ext_resource type="Texture2D" uid="uid://s0laqqc3aky2" path="res://demo/softbody2d.png" id="1_gjugi"] +[ext_resource type="Script" path="res://addons/softbody2d/softbody2d.gd" id="2_4mj6g"] +[ext_resource type="Texture2D" uid="uid://dpyuasjj5bpxo" path="res://demo/softbody2d_inner.png" id="3_n8j03"] +[ext_resource type="PackedScene" uid="uid://e43003nmrylg" path="res://demo/pickable_rigidbody.tscn" id="4_13lkq"] +[ext_resource type="Texture2D" uid="uid://d3h2p840dgby1" path="res://demo/softbody2d_full.png" id="5_xkbwg"] +[ext_resource type="Script" path="res://demo/ApplyForceToSoftbody.gd" id="5_xux5r"] +[ext_resource type="PhysicsMaterial" uid="uid://2kay8j53abmv" path="res://demo/softbody2d_phys_slippery.tres" id="6_eyp3s"] +[ext_resource type="Script" path="res://demo/pickable_rigidbody.gd" id="7_lk74m"] + +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_y564c"] +resource_local_to_scene = true +bone_index = 0 +bone2d_node = NodePath("Bone-0") +target_nodepath = NodePath("Bone-4") +editor/draw_gizmo = false + +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_cvsql"] +resource_local_to_scene = true +bone_index = 1 +bone2d_node = NodePath("Bone-1") +target_nodepath = NodePath("Bone-6") +editor/draw_gizmo = false + +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_arfei"] +resource_local_to_scene = true +bone_index = 10 +bone2d_node = NodePath("Bone-10") +target_nodepath = NodePath("Bone-9") +editor/draw_gizmo = false + +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_x6ko7"] +resource_local_to_scene = true +bone_index = 11 +bone2d_node = NodePath("Bone-11") +target_nodepath = NodePath("Bone-12") +editor/draw_gizmo = false + +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_6n117"] +resource_local_to_scene = true +bone_index = 12 +bone2d_node = NodePath("Bone-12") +target_nodepath = NodePath("Bone-19") +editor/draw_gizmo = false + +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_cghoq"] +resource_local_to_scene = true +bone_index = 13 +bone2d_node = NodePath("Bone-13") +target_nodepath = NodePath("Bone-8") +editor/draw_gizmo = false + +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_c4irv"] +resource_local_to_scene = true +bone_index = 14 +bone2d_node = NodePath("Bone-14") +target_nodepath = NodePath("Bone-15") +editor/draw_gizmo = false + +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_6ss70"] +resource_local_to_scene = true +bone_index = 15 +bone2d_node = NodePath("Bone-15") +target_nodepath = NodePath("Bone-14") +editor/draw_gizmo = false + +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_iaxg8"] +resource_local_to_scene = true +bone_index = 16 +bone2d_node = NodePath("Bone-16") +target_nodepath = NodePath("Bone-15") +editor/draw_gizmo = false + +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_5nj7d"] +resource_local_to_scene = true +bone_index = 17 +bone2d_node = NodePath("Bone-17") +target_nodepath = NodePath("Bone-16") +editor/draw_gizmo = false + +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_1qesp"] +resource_local_to_scene = true +bone_index = 18 +bone2d_node = NodePath("Bone-18") +target_nodepath = NodePath("Bone-25") +editor/draw_gizmo = false + +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_jbube"] +resource_local_to_scene = true +bone_index = 19 +bone2d_node = NodePath("Bone-19") +target_nodepath = NodePath("Bone-12") +editor/draw_gizmo = false + +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_a0trc"] +resource_local_to_scene = true +bone_index = 2 +bone2d_node = NodePath("Bone-2") +target_nodepath = NodePath("Bone-1") +editor/draw_gizmo = false + +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_busg8"] +resource_local_to_scene = true +bone_index = 20 +bone2d_node = NodePath("Bone-20") +target_nodepath = NodePath("Bone-19") +editor/draw_gizmo = false + +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_iklre"] +resource_local_to_scene = true +bone_index = 21 +bone2d_node = NodePath("Bone-21") +target_nodepath = NodePath("Bone-20") +editor/draw_gizmo = false + +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_jn0x3"] +resource_local_to_scene = true +bone_index = 22 +bone2d_node = NodePath("Bone-22") +target_nodepath = NodePath("Bone-23") +editor/draw_gizmo = false + +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_m8q13"] +resource_local_to_scene = true +bone_index = 23 +bone2d_node = NodePath("Bone-23") +target_nodepath = NodePath("Bone-22") +editor/draw_gizmo = false + +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_gjhkm"] +resource_local_to_scene = true +bone_index = 24 +bone2d_node = NodePath("Bone-24") +target_nodepath = NodePath("Bone-23") +editor/draw_gizmo = false + +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_4vdw7"] +resource_local_to_scene = true +bone_index = 25 +bone2d_node = NodePath("Bone-25") +target_nodepath = NodePath("Bone-27") +editor/draw_gizmo = false + +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_2veb3"] +resource_local_to_scene = true +bone_index = 26 +bone2d_node = NodePath("Bone-26") +target_nodepath = NodePath("Bone-25") +editor/draw_gizmo = false + +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_uhvsp"] +resource_local_to_scene = true +bone_index = 27 +bone2d_node = NodePath("Bone-27") +target_nodepath = NodePath("Bone-26") +editor/draw_gizmo = false + +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_hrif2"] +resource_local_to_scene = true +bone_index = 3 +bone2d_node = NodePath("Bone-3") +target_nodepath = NodePath("Bone-4") +editor/draw_gizmo = false + +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_ih0ah"] +resource_local_to_scene = true +bone_index = 4 +bone2d_node = NodePath("Bone-4") +target_nodepath = NodePath("Bone-5") +editor/draw_gizmo = false + +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_4e0lk"] +resource_local_to_scene = true +bone_index = 5 +bone2d_node = NodePath("Bone-5") +target_nodepath = NodePath("Bone-8") +editor/draw_gizmo = false + +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_j3eto"] +resource_local_to_scene = true +bone_index = 6 +bone2d_node = NodePath("Bone-6") +target_nodepath = NodePath("Bone-7") +editor/draw_gizmo = false + +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_5svgp"] +resource_local_to_scene = true +bone_index = 7 +bone2d_node = NodePath("Bone-7") +target_nodepath = NodePath("Bone-6") +editor/draw_gizmo = false + +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_xcld7"] +resource_local_to_scene = true +bone_index = 8 +bone2d_node = NodePath("Bone-8") +target_nodepath = NodePath("Bone-13") +editor/draw_gizmo = false + +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_7nadf"] +resource_local_to_scene = true +bone_index = 9 +bone2d_node = NodePath("Bone-9") +target_nodepath = NodePath("Bone-10") +editor/draw_gizmo = false + +[sub_resource type="SkeletonModificationStack2D" id="SkeletonModificationStack2D_2xjt0"] +resource_local_to_scene = true +enabled = true +modification_count = 28 +modifications/0 = SubResource("SkeletonModification2DLookAt_y564c") +modifications/1 = SubResource("SkeletonModification2DLookAt_cvsql") +modifications/2 = SubResource("SkeletonModification2DLookAt_a0trc") +modifications/3 = SubResource("SkeletonModification2DLookAt_hrif2") +modifications/4 = SubResource("SkeletonModification2DLookAt_ih0ah") +modifications/5 = SubResource("SkeletonModification2DLookAt_4e0lk") +modifications/6 = SubResource("SkeletonModification2DLookAt_j3eto") +modifications/7 = SubResource("SkeletonModification2DLookAt_5svgp") +modifications/8 = SubResource("SkeletonModification2DLookAt_xcld7") +modifications/9 = SubResource("SkeletonModification2DLookAt_7nadf") +modifications/10 = SubResource("SkeletonModification2DLookAt_arfei") +modifications/11 = SubResource("SkeletonModification2DLookAt_x6ko7") +modifications/12 = SubResource("SkeletonModification2DLookAt_6n117") +modifications/13 = SubResource("SkeletonModification2DLookAt_cghoq") +modifications/14 = SubResource("SkeletonModification2DLookAt_c4irv") +modifications/15 = SubResource("SkeletonModification2DLookAt_6ss70") +modifications/16 = SubResource("SkeletonModification2DLookAt_iaxg8") +modifications/17 = SubResource("SkeletonModification2DLookAt_5nj7d") +modifications/18 = SubResource("SkeletonModification2DLookAt_1qesp") +modifications/19 = SubResource("SkeletonModification2DLookAt_jbube") +modifications/20 = SubResource("SkeletonModification2DLookAt_busg8") +modifications/21 = SubResource("SkeletonModification2DLookAt_iklre") +modifications/22 = SubResource("SkeletonModification2DLookAt_jn0x3") +modifications/23 = SubResource("SkeletonModification2DLookAt_m8q13") +modifications/24 = SubResource("SkeletonModification2DLookAt_gjhkm") +modifications/25 = SubResource("SkeletonModification2DLookAt_4vdw7") +modifications/26 = SubResource("SkeletonModification2DLookAt_2veb3") +modifications/27 = SubResource("SkeletonModification2DLookAt_uhvsp") + +[sub_resource type="CircleShape2D" id="CircleShape2D_7ts6q"] +resource_local_to_scene = true +radius = 21.0 + +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_gmjdh"] +resource_local_to_scene = true +bone_index = 0 +bone2d_node = NodePath("Bone-0") +target_nodepath = NodePath("Bone-3") +editor/draw_gizmo = false + +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_btk6h"] +resource_local_to_scene = true +bone_index = 1 +bone2d_node = NodePath("Bone-1") +target_nodepath = NodePath("Bone-6") +editor/draw_gizmo = false + +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_wkx8e"] +resource_local_to_scene = true +bone_index = 10 +bone2d_node = NodePath("Bone-10") +target_nodepath = NodePath("Bone-9") +editor/draw_gizmo = false + +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_jblf6"] +resource_local_to_scene = true +bone_index = 11 +bone2d_node = NodePath("Bone-11") +target_nodepath = NodePath("Bone-12") +editor/draw_gizmo = false + +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_olxv5"] +resource_local_to_scene = true +bone_index = 12 +bone2d_node = NodePath("Bone-12") +target_nodepath = NodePath("Bone-11") +editor/draw_gizmo = false + +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_pm74y"] +resource_local_to_scene = true +bone_index = 13 +bone2d_node = NodePath("Bone-13") +target_nodepath = NodePath("Bone-8") +editor/draw_gizmo = false + +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_emnup"] +resource_local_to_scene = true +bone_index = 14 +bone2d_node = NodePath("Bone-14") +target_nodepath = NodePath("Bone-15") +editor/draw_gizmo = false + +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_jdwnd"] +resource_local_to_scene = true +bone_index = 15 +bone2d_node = NodePath("Bone-15") +target_nodepath = NodePath("Bone-13") +editor/draw_gizmo = false + +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_364q2"] +resource_local_to_scene = true +bone_index = 16 +bone2d_node = NodePath("Bone-16") +target_nodepath = NodePath("Bone-15") +editor/draw_gizmo = false + +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_8e2wf"] +resource_local_to_scene = true +bone_index = 17 +bone2d_node = NodePath("Bone-17") +target_nodepath = NodePath("Bone-18") +editor/draw_gizmo = false + +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_1roov"] +resource_local_to_scene = true +bone_index = 18 +bone2d_node = NodePath("Bone-18") +target_nodepath = NodePath("Bone-27") +editor/draw_gizmo = false + +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_56kf8"] +resource_local_to_scene = true +bone_index = 19 +bone2d_node = NodePath("Bone-19") +target_nodepath = NodePath("Bone-20") +editor/draw_gizmo = false + +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_x63uy"] +resource_local_to_scene = true +bone_index = 2 +bone2d_node = NodePath("Bone-2") +target_nodepath = NodePath("Bone-1") +editor/draw_gizmo = false + +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_k74wc"] +resource_local_to_scene = true +bone_index = 20 +bone2d_node = NodePath("Bone-20") +target_nodepath = NodePath("Bone-23") +editor/draw_gizmo = false + +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_e8mqa"] +resource_local_to_scene = true +bone_index = 21 +bone2d_node = NodePath("Bone-21") +target_nodepath = NodePath("Bone-24") +editor/draw_gizmo = false + +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_18ms5"] +resource_local_to_scene = true +bone_index = 22 +bone2d_node = NodePath("Bone-22") +target_nodepath = NodePath("Bone-25") +editor/draw_gizmo = false + +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_2oeb1"] +resource_local_to_scene = true +bone_index = 23 +bone2d_node = NodePath("Bone-23") +target_nodepath = NodePath("Bone-19") +editor/draw_gizmo = false + +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_f8wub"] +resource_local_to_scene = true +bone_index = 24 +bone2d_node = NodePath("Bone-24") +target_nodepath = NodePath("Bone-20") +editor/draw_gizmo = false + +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_32suj"] +resource_local_to_scene = true +bone_index = 25 +bone2d_node = NodePath("Bone-25") +target_nodepath = NodePath("Bone-22") +editor/draw_gizmo = false + +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_gd7rh"] +resource_local_to_scene = true +bone_index = 26 +bone2d_node = NodePath("Bone-26") +target_nodepath = NodePath("Bone-28") +editor/draw_gizmo = false + +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_upr5i"] +resource_local_to_scene = true +bone_index = 27 +bone2d_node = NodePath("Bone-27") +target_nodepath = NodePath("Bone-29") +editor/draw_gizmo = false + +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_lduqu"] +resource_local_to_scene = true +bone_index = 28 +bone2d_node = NodePath("Bone-28") +target_nodepath = NodePath("Bone-27") +editor/draw_gizmo = false + +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_vpose"] +resource_local_to_scene = true +bone_index = 29 +bone2d_node = NodePath("Bone-29") +target_nodepath = NodePath("Bone-28") +editor/draw_gizmo = false + +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_kuj5u"] +resource_local_to_scene = true +bone_index = 3 +bone2d_node = NodePath("Bone-3") +target_nodepath = NodePath("Bone-4") +editor/draw_gizmo = false + +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_kdn81"] +resource_local_to_scene = true +bone_index = 4 +bone2d_node = NodePath("Bone-4") +target_nodepath = NodePath("Bone-5") +editor/draw_gizmo = false + +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_agkgv"] +resource_local_to_scene = true +bone_index = 5 +bone2d_node = NodePath("Bone-5") +target_nodepath = NodePath("Bone-13") +editor/draw_gizmo = false + +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_hwonc"] +resource_local_to_scene = true +bone_index = 6 +bone2d_node = NodePath("Bone-6") +target_nodepath = NodePath("Bone-7") +editor/draw_gizmo = false + +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_0wqsd"] +resource_local_to_scene = true +bone_index = 7 +bone2d_node = NodePath("Bone-7") +target_nodepath = NodePath("Bone-6") +editor/draw_gizmo = false + +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_olh6r"] +resource_local_to_scene = true +bone_index = 8 +bone2d_node = NodePath("Bone-8") +target_nodepath = NodePath("Bone-13") +editor/draw_gizmo = false + +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_83x6p"] +resource_local_to_scene = true +bone_index = 9 +bone2d_node = NodePath("Bone-9") +target_nodepath = NodePath("Bone-10") +editor/draw_gizmo = false + +[sub_resource type="SkeletonModificationStack2D" id="SkeletonModificationStack2D_h8j1j"] +resource_local_to_scene = true +enabled = true +modification_count = 30 +modifications/0 = SubResource("SkeletonModification2DLookAt_gmjdh") +modifications/1 = SubResource("SkeletonModification2DLookAt_btk6h") +modifications/2 = SubResource("SkeletonModification2DLookAt_x63uy") +modifications/3 = SubResource("SkeletonModification2DLookAt_kuj5u") +modifications/4 = SubResource("SkeletonModification2DLookAt_kdn81") +modifications/5 = SubResource("SkeletonModification2DLookAt_agkgv") +modifications/6 = SubResource("SkeletonModification2DLookAt_hwonc") +modifications/7 = SubResource("SkeletonModification2DLookAt_0wqsd") +modifications/8 = SubResource("SkeletonModification2DLookAt_olh6r") +modifications/9 = SubResource("SkeletonModification2DLookAt_83x6p") +modifications/10 = SubResource("SkeletonModification2DLookAt_wkx8e") +modifications/11 = SubResource("SkeletonModification2DLookAt_jblf6") +modifications/12 = SubResource("SkeletonModification2DLookAt_olxv5") +modifications/13 = SubResource("SkeletonModification2DLookAt_pm74y") +modifications/14 = SubResource("SkeletonModification2DLookAt_emnup") +modifications/15 = SubResource("SkeletonModification2DLookAt_jdwnd") +modifications/16 = SubResource("SkeletonModification2DLookAt_364q2") +modifications/17 = SubResource("SkeletonModification2DLookAt_8e2wf") +modifications/18 = SubResource("SkeletonModification2DLookAt_1roov") +modifications/19 = SubResource("SkeletonModification2DLookAt_56kf8") +modifications/20 = SubResource("SkeletonModification2DLookAt_k74wc") +modifications/21 = SubResource("SkeletonModification2DLookAt_e8mqa") +modifications/22 = SubResource("SkeletonModification2DLookAt_18ms5") +modifications/23 = SubResource("SkeletonModification2DLookAt_2oeb1") +modifications/24 = SubResource("SkeletonModification2DLookAt_f8wub") +modifications/25 = SubResource("SkeletonModification2DLookAt_32suj") +modifications/26 = SubResource("SkeletonModification2DLookAt_gd7rh") +modifications/27 = SubResource("SkeletonModification2DLookAt_upr5i") +modifications/28 = SubResource("SkeletonModification2DLookAt_lduqu") +modifications/29 = SubResource("SkeletonModification2DLookAt_vpose") + +[sub_resource type="CircleShape2D" id="CircleShape2D_600mi"] +resource_local_to_scene = true +radius = 20.0 + +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_oiiwf"] +resource_local_to_scene = true +bone_index = 0 +bone2d_node = NodePath("Bone-0") +target_nodepath = NodePath("Bone-3") +editor/draw_gizmo = false + +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_52cha"] +resource_local_to_scene = true +bone_index = 1 +bone2d_node = NodePath("Bone-1") +target_nodepath = NodePath("Bone-6") +editor/draw_gizmo = false + +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_xprqm"] +resource_local_to_scene = true +bone_index = 10 +bone2d_node = NodePath("Bone-10") +target_nodepath = NodePath("Bone-9") +editor/draw_gizmo = false + +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_8vd33"] +resource_local_to_scene = true +bone_index = 11 +bone2d_node = NodePath("Bone-11") +target_nodepath = NodePath("Bone-12") +editor/draw_gizmo = false + +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_e3c5q"] +resource_local_to_scene = true +bone_index = 12 +bone2d_node = NodePath("Bone-12") +target_nodepath = NodePath("Bone-11") +editor/draw_gizmo = false + +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_gx3iv"] +resource_local_to_scene = true +bone_index = 13 +bone2d_node = NodePath("Bone-13") +target_nodepath = NodePath("Bone-8") +editor/draw_gizmo = false + +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_es4ou"] +resource_local_to_scene = true +bone_index = 14 +bone2d_node = NodePath("Bone-14") +target_nodepath = NodePath("Bone-15") +editor/draw_gizmo = false + +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_pe8fo"] +resource_local_to_scene = true +bone_index = 15 +bone2d_node = NodePath("Bone-15") +target_nodepath = NodePath("Bone-13") +editor/draw_gizmo = false + +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_d03wu"] +resource_local_to_scene = true +bone_index = 16 +bone2d_node = NodePath("Bone-16") +target_nodepath = NodePath("Bone-15") +editor/draw_gizmo = false + +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_vw00c"] +resource_local_to_scene = true +bone_index = 17 +bone2d_node = NodePath("Bone-17") +target_nodepath = NodePath("Bone-18") +editor/draw_gizmo = false + +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_cgkfd"] +resource_local_to_scene = true +bone_index = 18 +bone2d_node = NodePath("Bone-18") +target_nodepath = NodePath("Bone-27") +editor/draw_gizmo = false + +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_fcrdk"] +resource_local_to_scene = true +bone_index = 19 +bone2d_node = NodePath("Bone-19") +target_nodepath = NodePath("Bone-20") +editor/draw_gizmo = false + +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_6nryk"] +resource_local_to_scene = true +bone_index = 2 +bone2d_node = NodePath("Bone-2") +target_nodepath = NodePath("Bone-1") +editor/draw_gizmo = false + +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_i0pxf"] +resource_local_to_scene = true +bone_index = 20 +bone2d_node = NodePath("Bone-20") +target_nodepath = NodePath("Bone-23") +editor/draw_gizmo = false + +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_8atgb"] +resource_local_to_scene = true +bone_index = 21 +bone2d_node = NodePath("Bone-21") +target_nodepath = NodePath("Bone-24") +editor/draw_gizmo = false + +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_0tro2"] +resource_local_to_scene = true +bone_index = 22 +bone2d_node = NodePath("Bone-22") +target_nodepath = NodePath("Bone-25") +editor/draw_gizmo = false + +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_yhjm2"] +resource_local_to_scene = true +bone_index = 23 +bone2d_node = NodePath("Bone-23") +target_nodepath = NodePath("Bone-19") +editor/draw_gizmo = false + +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_c2d2i"] +resource_local_to_scene = true +bone_index = 24 +bone2d_node = NodePath("Bone-24") +target_nodepath = NodePath("Bone-20") +editor/draw_gizmo = false + +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_m1g8m"] +resource_local_to_scene = true +bone_index = 25 +bone2d_node = NodePath("Bone-25") +target_nodepath = NodePath("Bone-22") +editor/draw_gizmo = false + +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_umini"] +resource_local_to_scene = true +bone_index = 26 +bone2d_node = NodePath("Bone-26") +target_nodepath = NodePath("Bone-28") +editor/draw_gizmo = false + +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_je66g"] +resource_local_to_scene = true +bone_index = 27 +bone2d_node = NodePath("Bone-27") +target_nodepath = NodePath("Bone-29") +editor/draw_gizmo = false + +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_yyyum"] +resource_local_to_scene = true +bone_index = 28 +bone2d_node = NodePath("Bone-28") +target_nodepath = NodePath("Bone-27") +editor/draw_gizmo = false + +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_6wv0s"] +resource_local_to_scene = true +bone_index = 29 +bone2d_node = NodePath("Bone-29") +target_nodepath = NodePath("Bone-28") +editor/draw_gizmo = false + +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_qatk4"] +resource_local_to_scene = true +bone_index = 3 +bone2d_node = NodePath("Bone-3") +target_nodepath = NodePath("Bone-4") +editor/draw_gizmo = false + +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_w86hb"] +resource_local_to_scene = true +bone_index = 4 +bone2d_node = NodePath("Bone-4") +target_nodepath = NodePath("Bone-5") +editor/draw_gizmo = false + +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_iwo6d"] +resource_local_to_scene = true +bone_index = 5 +bone2d_node = NodePath("Bone-5") +target_nodepath = NodePath("Bone-13") +editor/draw_gizmo = false + +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_jnljx"] +resource_local_to_scene = true +bone_index = 6 +bone2d_node = NodePath("Bone-6") +target_nodepath = NodePath("Bone-7") +editor/draw_gizmo = false + +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_7w032"] +resource_local_to_scene = true +bone_index = 7 +bone2d_node = NodePath("Bone-7") +target_nodepath = NodePath("Bone-6") +editor/draw_gizmo = false + +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_u7ai1"] +resource_local_to_scene = true +bone_index = 8 +bone2d_node = NodePath("Bone-8") +target_nodepath = NodePath("Bone-13") +editor/draw_gizmo = false + +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_6dw0y"] +resource_local_to_scene = true +bone_index = 9 +bone2d_node = NodePath("Bone-9") +target_nodepath = NodePath("Bone-10") +editor/draw_gizmo = false + +[sub_resource type="SkeletonModificationStack2D" id="SkeletonModificationStack2D_2edv7"] +resource_local_to_scene = true +enabled = true +modification_count = 30 +modifications/0 = SubResource("SkeletonModification2DLookAt_oiiwf") +modifications/1 = SubResource("SkeletonModification2DLookAt_52cha") +modifications/2 = SubResource("SkeletonModification2DLookAt_6nryk") +modifications/3 = SubResource("SkeletonModification2DLookAt_qatk4") +modifications/4 = SubResource("SkeletonModification2DLookAt_w86hb") +modifications/5 = SubResource("SkeletonModification2DLookAt_iwo6d") +modifications/6 = SubResource("SkeletonModification2DLookAt_jnljx") +modifications/7 = SubResource("SkeletonModification2DLookAt_7w032") +modifications/8 = SubResource("SkeletonModification2DLookAt_u7ai1") +modifications/9 = SubResource("SkeletonModification2DLookAt_6dw0y") +modifications/10 = SubResource("SkeletonModification2DLookAt_xprqm") +modifications/11 = SubResource("SkeletonModification2DLookAt_8vd33") +modifications/12 = SubResource("SkeletonModification2DLookAt_e3c5q") +modifications/13 = SubResource("SkeletonModification2DLookAt_gx3iv") +modifications/14 = SubResource("SkeletonModification2DLookAt_es4ou") +modifications/15 = SubResource("SkeletonModification2DLookAt_pe8fo") +modifications/16 = SubResource("SkeletonModification2DLookAt_d03wu") +modifications/17 = SubResource("SkeletonModification2DLookAt_vw00c") +modifications/18 = SubResource("SkeletonModification2DLookAt_cgkfd") +modifications/19 = SubResource("SkeletonModification2DLookAt_fcrdk") +modifications/20 = SubResource("SkeletonModification2DLookAt_i0pxf") +modifications/21 = SubResource("SkeletonModification2DLookAt_8atgb") +modifications/22 = SubResource("SkeletonModification2DLookAt_0tro2") +modifications/23 = SubResource("SkeletonModification2DLookAt_yhjm2") +modifications/24 = SubResource("SkeletonModification2DLookAt_c2d2i") +modifications/25 = SubResource("SkeletonModification2DLookAt_m1g8m") +modifications/26 = SubResource("SkeletonModification2DLookAt_umini") +modifications/27 = SubResource("SkeletonModification2DLookAt_je66g") +modifications/28 = SubResource("SkeletonModification2DLookAt_yyyum") +modifications/29 = SubResource("SkeletonModification2DLookAt_6wv0s") + +[sub_resource type="CircleShape2D" id="CircleShape2D_r1yj0"] +resource_local_to_scene = true +radius = 20.0 + +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_1b0xf"] +resource_local_to_scene = true +bone_index = 0 +bone2d_node = NodePath("Bone-0") +target_nodepath = NodePath("Bone-4") +editor/draw_gizmo = false + +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_cenrs"] +resource_local_to_scene = true +bone_index = 1 +bone2d_node = NodePath("Bone-1") +target_nodepath = NodePath("Bone-5") +editor/draw_gizmo = false + +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_jp00y"] +resource_local_to_scene = true +bone_index = 10 +bone2d_node = NodePath("Bone-10") +target_nodepath = NodePath("Bone-11") +editor/draw_gizmo = false + +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_q7nx2"] +resource_local_to_scene = true +bone_index = 11 +bone2d_node = NodePath("Bone-11") +target_nodepath = NodePath("Bone-21") +editor/draw_gizmo = false + +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_xipgp"] +resource_local_to_scene = true +bone_index = 12 +bone2d_node = NodePath("Bone-12") +target_nodepath = NodePath("Bone-13") +editor/draw_gizmo = false + +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_cdx6v"] +resource_local_to_scene = true +bone_index = 13 +bone2d_node = NodePath("Bone-13") +target_nodepath = NodePath("Bone-14") +editor/draw_gizmo = false + +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_b7pp2"] +resource_local_to_scene = true +bone_index = 14 +bone2d_node = NodePath("Bone-14") +target_nodepath = NodePath("Bone-15") +editor/draw_gizmo = false + +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_hbtq0"] +resource_local_to_scene = true +bone_index = 15 +bone2d_node = NodePath("Bone-15") +target_nodepath = NodePath("Bone-24") +editor/draw_gizmo = false + +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_uv60o"] +resource_local_to_scene = true +bone_index = 16 +bone2d_node = NodePath("Bone-16") +target_nodepath = NodePath("Bone-19") +editor/draw_gizmo = false + +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_cl5b0"] +resource_local_to_scene = true +bone_index = 17 +bone2d_node = NodePath("Bone-17") +target_nodepath = NodePath("Bone-19") +editor/draw_gizmo = false + +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_1kfek"] +resource_local_to_scene = true +bone_index = 18 +bone2d_node = NodePath("Bone-18") +target_nodepath = NodePath("Bone-21") +editor/draw_gizmo = false + +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_cwvqv"] +resource_local_to_scene = true +bone_index = 19 +bone2d_node = NodePath("Bone-19") +target_nodepath = NodePath("Bone-18") +editor/draw_gizmo = false + +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_3hra5"] +resource_local_to_scene = true +bone_index = 2 +bone2d_node = NodePath("Bone-2") +target_nodepath = NodePath("Bone-6") +editor/draw_gizmo = false + +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_intvi"] +resource_local_to_scene = true +bone_index = 20 +bone2d_node = NodePath("Bone-20") +target_nodepath = NodePath("Bone-19") +editor/draw_gizmo = false + +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_yvkji"] +resource_local_to_scene = true +bone_index = 21 +bone2d_node = NodePath("Bone-21") +target_nodepath = NodePath("Bone-24") +editor/draw_gizmo = false + +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_2xc07"] +resource_local_to_scene = true +bone_index = 22 +bone2d_node = NodePath("Bone-22") +target_nodepath = NodePath("Bone-23") +editor/draw_gizmo = false + +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_6431c"] +resource_local_to_scene = true +bone_index = 23 +bone2d_node = NodePath("Bone-23") +target_nodepath = NodePath("Bone-22") +editor/draw_gizmo = false + +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_cie4g"] +resource_local_to_scene = true +bone_index = 24 +bone2d_node = NodePath("Bone-24") +target_nodepath = NodePath("Bone-36") +editor/draw_gizmo = false + +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_dtcyi"] +resource_local_to_scene = true +bone_index = 25 +bone2d_node = NodePath("Bone-25") +target_nodepath = NodePath("Bone-26") +editor/draw_gizmo = false + +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_aowog"] +resource_local_to_scene = true +bone_index = 26 +bone2d_node = NodePath("Bone-26") +target_nodepath = NodePath("Bone-25") +editor/draw_gizmo = false + +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_m50l1"] +resource_local_to_scene = true +bone_index = 27 +bone2d_node = NodePath("Bone-27") +target_nodepath = NodePath("Bone-28") +editor/draw_gizmo = false + +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_s6i8r"] +resource_local_to_scene = true +bone_index = 28 +bone2d_node = NodePath("Bone-28") +target_nodepath = NodePath("Bone-29") +editor/draw_gizmo = false + +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_ghhf3"] +resource_local_to_scene = true +bone_index = 29 +bone2d_node = NodePath("Bone-29") +target_nodepath = NodePath("Bone-30") +editor/draw_gizmo = false + +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_diyls"] +resource_local_to_scene = true +bone_index = 3 +bone2d_node = NodePath("Bone-3") +target_nodepath = NodePath("Bone-7") +editor/draw_gizmo = false + +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_pxbbi"] +resource_local_to_scene = true +bone_index = 30 +bone2d_node = NodePath("Bone-30") +target_nodepath = NodePath("Bone-36") +editor/draw_gizmo = false + +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_y405b"] +resource_local_to_scene = true +bone_index = 31 +bone2d_node = NodePath("Bone-31") +target_nodepath = NodePath("Bone-27") +editor/draw_gizmo = false + +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_yncex"] +resource_local_to_scene = true +bone_index = 32 +bone2d_node = NodePath("Bone-32") +target_nodepath = NodePath("Bone-28") +editor/draw_gizmo = false + +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_j67k2"] +resource_local_to_scene = true +bone_index = 33 +bone2d_node = NodePath("Bone-33") +target_nodepath = NodePath("Bone-30") +editor/draw_gizmo = false + +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_x1w45"] +resource_local_to_scene = true +bone_index = 34 +bone2d_node = NodePath("Bone-34") +target_nodepath = NodePath("Bone-36") +editor/draw_gizmo = false + +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_agtj7"] +resource_local_to_scene = true +bone_index = 35 +bone2d_node = NodePath("Bone-35") +target_nodepath = NodePath("Bone-39") +editor/draw_gizmo = false + +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_1dh2w"] +resource_local_to_scene = true +bone_index = 36 +bone2d_node = NodePath("Bone-36") +target_nodepath = NodePath("Bone-37") +editor/draw_gizmo = false + +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_2r7dw"] +resource_local_to_scene = true +bone_index = 37 +bone2d_node = NodePath("Bone-37") +target_nodepath = NodePath("Bone-38") +editor/draw_gizmo = false + +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_ya1s7"] +resource_local_to_scene = true +bone_index = 38 +bone2d_node = NodePath("Bone-38") +target_nodepath = NodePath("Bone-37") +editor/draw_gizmo = false + +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_pops7"] +resource_local_to_scene = true +bone_index = 39 +bone2d_node = NodePath("Bone-39") +target_nodepath = NodePath("Bone-42") +editor/draw_gizmo = false + +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_4qg48"] +resource_local_to_scene = true +bone_index = 4 +bone2d_node = NodePath("Bone-4") +target_nodepath = NodePath("Bone-5") +editor/draw_gizmo = false + +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_bqy7i"] +resource_local_to_scene = true +bone_index = 40 +bone2d_node = NodePath("Bone-40") +target_nodepath = NodePath("Bone-38") +editor/draw_gizmo = false + +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_81wby"] +resource_local_to_scene = true +bone_index = 41 +bone2d_node = NodePath("Bone-41") +target_nodepath = NodePath("Bone-40") +editor/draw_gizmo = false + +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_ojmm6"] +resource_local_to_scene = true +bone_index = 42 +bone2d_node = NodePath("Bone-42") +target_nodepath = NodePath("Bone-39") +editor/draw_gizmo = false + +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_r75fh"] +resource_local_to_scene = true +bone_index = 43 +bone2d_node = NodePath("Bone-43") +target_nodepath = NodePath("Bone-42") +editor/draw_gizmo = false + +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_ocqqu"] +resource_local_to_scene = true +bone_index = 5 +bone2d_node = NodePath("Bone-5") +target_nodepath = NodePath("Bone-6") +editor/draw_gizmo = false + +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_jd7xu"] +resource_local_to_scene = true +bone_index = 6 +bone2d_node = NodePath("Bone-6") +target_nodepath = NodePath("Bone-7") +editor/draw_gizmo = false + +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_k0n4q"] +resource_local_to_scene = true +bone_index = 7 +bone2d_node = NodePath("Bone-7") +target_nodepath = NodePath("Bone-18") +editor/draw_gizmo = false + +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_rmkpf"] +resource_local_to_scene = true +bone_index = 8 +bone2d_node = NodePath("Bone-8") +target_nodepath = NodePath("Bone-9") +editor/draw_gizmo = false + +[sub_resource type="SkeletonModification2DLookAt" id="SkeletonModification2DLookAt_75dg8"] +resource_local_to_scene = true +bone_index = 9 +bone2d_node = NodePath("Bone-9") +target_nodepath = NodePath("Bone-10") +editor/draw_gizmo = false + +[sub_resource type="SkeletonModificationStack2D" id="SkeletonModificationStack2D_3i6hv"] +resource_local_to_scene = true +enabled = true +modification_count = 44 +modifications/0 = SubResource("SkeletonModification2DLookAt_1b0xf") +modifications/1 = SubResource("SkeletonModification2DLookAt_cenrs") +modifications/2 = SubResource("SkeletonModification2DLookAt_3hra5") +modifications/3 = SubResource("SkeletonModification2DLookAt_diyls") +modifications/4 = SubResource("SkeletonModification2DLookAt_4qg48") +modifications/5 = SubResource("SkeletonModification2DLookAt_ocqqu") +modifications/6 = SubResource("SkeletonModification2DLookAt_jd7xu") +modifications/7 = SubResource("SkeletonModification2DLookAt_k0n4q") +modifications/8 = SubResource("SkeletonModification2DLookAt_rmkpf") +modifications/9 = SubResource("SkeletonModification2DLookAt_75dg8") +modifications/10 = SubResource("SkeletonModification2DLookAt_jp00y") +modifications/11 = SubResource("SkeletonModification2DLookAt_q7nx2") +modifications/12 = SubResource("SkeletonModification2DLookAt_xipgp") +modifications/13 = SubResource("SkeletonModification2DLookAt_cdx6v") +modifications/14 = SubResource("SkeletonModification2DLookAt_b7pp2") +modifications/15 = SubResource("SkeletonModification2DLookAt_hbtq0") +modifications/16 = SubResource("SkeletonModification2DLookAt_uv60o") +modifications/17 = SubResource("SkeletonModification2DLookAt_cl5b0") +modifications/18 = SubResource("SkeletonModification2DLookAt_1kfek") +modifications/19 = SubResource("SkeletonModification2DLookAt_cwvqv") +modifications/20 = SubResource("SkeletonModification2DLookAt_intvi") +modifications/21 = SubResource("SkeletonModification2DLookAt_yvkji") +modifications/22 = SubResource("SkeletonModification2DLookAt_2xc07") +modifications/23 = SubResource("SkeletonModification2DLookAt_6431c") +modifications/24 = SubResource("SkeletonModification2DLookAt_cie4g") +modifications/25 = SubResource("SkeletonModification2DLookAt_dtcyi") +modifications/26 = SubResource("SkeletonModification2DLookAt_aowog") +modifications/27 = SubResource("SkeletonModification2DLookAt_m50l1") +modifications/28 = SubResource("SkeletonModification2DLookAt_s6i8r") +modifications/29 = SubResource("SkeletonModification2DLookAt_ghhf3") +modifications/30 = SubResource("SkeletonModification2DLookAt_pxbbi") +modifications/31 = SubResource("SkeletonModification2DLookAt_y405b") +modifications/32 = SubResource("SkeletonModification2DLookAt_yncex") +modifications/33 = SubResource("SkeletonModification2DLookAt_j67k2") +modifications/34 = SubResource("SkeletonModification2DLookAt_x1w45") +modifications/35 = SubResource("SkeletonModification2DLookAt_agtj7") +modifications/36 = SubResource("SkeletonModification2DLookAt_1dh2w") +modifications/37 = SubResource("SkeletonModification2DLookAt_2r7dw") +modifications/38 = SubResource("SkeletonModification2DLookAt_ya1s7") +modifications/39 = SubResource("SkeletonModification2DLookAt_pops7") +modifications/40 = SubResource("SkeletonModification2DLookAt_bqy7i") +modifications/41 = SubResource("SkeletonModification2DLookAt_81wby") +modifications/42 = SubResource("SkeletonModification2DLookAt_ojmm6") +modifications/43 = SubResource("SkeletonModification2DLookAt_r75fh") + +[sub_resource type="RectangleShape2D" id="RectangleShape2D_og4xt"] +resource_local_to_scene = true +size = Vector2(22, 22) + +[sub_resource type="RectangleShape2D" id="RectangleShape2D_2boy7"] +size = Vector2(327, 84) + +[sub_resource type="Animation" id="Animation_jv0db"] +resource_name = "new_animation" +length = 3.0 +loop_mode = 2 +tracks/0/type = "value" +tracks/0/imported = false +tracks/0/enabled = true +tracks/0/path = NodePath("AnimatableBody2D:position") +tracks/0/interp = 1 +tracks/0/loop_wrap = true +tracks/0/keys = { +"times": PackedFloat32Array(0, 2.9), +"transitions": PackedFloat32Array(1, 1), +"update": 0, +"values": [Vector2(1377, 94), Vector2(1378, 837)] +} + +[sub_resource type="Animation" id="Animation_gjkde"] +length = 0.001 +tracks/0/type = "value" +tracks/0/imported = false +tracks/0/enabled = true +tracks/0/path = NodePath("AnimatableBody2D:position") +tracks/0/interp = 1 +tracks/0/loop_wrap = true +tracks/0/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 0, +"values": [Vector2(1377, 94)] +} + +[sub_resource type="AnimationLibrary" id="AnimationLibrary_2xdum"] +_data = { +"RESET": SubResource("Animation_gjkde"), +"new_animation": SubResource("Animation_jv0db") +} + +[node name="FloatingSoftbody" type="Node2D"] + +[node name="SoftBody2D" type="Polygon2D" parent="."] +position = Vector2(64, 118) +texture = ExtResource("1_gjugi") +skeleton = NodePath("Skeleton2D") +polygon = PackedVector2Array(37, 21, 34, 26, 33, 26, 31, 32, 30, 32, 24, 49, 23, 49, 17, 70, 16, 70, 15, 76, 15, 82, 13, 87, 13, 111, 16, 120, 16, 123, 23, 135, 23, 137, 25, 137, 25, 139, 40, 152, 42, 152, 42, 154, 44, 154, 46, 157, 47, 157, 47, 159, 49, 159, 55, 171, 56, 171, 59, 183, 59, 197, 56, 209, 56, 213, 55, 214, 54, 214, 54, 219, 49, 230, 49, 233, 48, 234, 47, 234, 46, 236, 46, 239, 39, 250, 39, 253, 37, 253, 35, 257, 35, 260, 33, 260, 32, 262, 32, 264, 20, 280, 20, 281, 262, 281, 269, 265, 270, 265, 276, 246, 277, 246, 283, 220, 284, 220, 286, 202, 287, 202, 287, 173, 284, 164, 284, 160, 282, 158, 282, 155, 277, 147, 277, 145, 275, 145, 275, 143, 272, 141, 272, 139, 257, 127, 255, 127, 255, 125, 250, 120, 249, 120, 245, 111, 244, 111, 242, 100, 241, 100, 241, 88, 248, 67, 248, 64, 249, 63, 250, 63, 255, 53, 255, 51, 257, 49, 258, 49, 262, 42, 262, 40, 264, 40, 265, 38, 265, 36, 267, 36, 267, 34, 270, 32, 270, 30, 280, 20, 280, 19, 37, 19, 34, 124, 16.5833, 124, 16, 123, 16, 120, 13, 111, 13, 103, 34, 103, 34, 103, 13, 103, 13, 87, 15, 82, 34, 82, 76, 40, 55, 40, 55, 19, 76, 19, 55, 40, 34, 40, 34, 26, 37, 21, 37, 19, 55, 19, 34, 40, 27.1765, 40, 30, 32, 31, 32, 33, 26, 34, 26, 55, 61, 34, 61, 34, 40, 55, 40, 67, 65, 65, 65, 65, 67, 61, 71, 60, 71, 56, 78, 55, 78, 55, 61, 70.3333, 61, 54, 82, 34, 82, 34, 61, 55, 61, 55, 81, 76, 57, 75, 57, 75, 58, 74, 59, 72, 59, 70.3333, 61, 55, 61, 55, 40, 76, 40, 34, 82, 15, 82, 15, 76, 16, 70, 17, 70, 19.5714, 61, 34, 61, 34, 61, 19.5714, 61, 23, 49, 24, 49, 27.1765, 40, 34, 40, 53, 83, 53, 87, 51, 89, 51, 102, 51.5714, 103, 34, 103, 34, 82, 54, 82, 58, 116, 60, 116, 61, 117, 61, 119, 68, 124, 55, 124, 55, 111, 58, 114, 55, 109, 55, 124, 34, 124, 34, 103, 51.5714, 103, 55, 145, 34, 145, 34, 124, 55, 124, 76, 166, 55, 166, 55, 145, 76, 145, 55, 166, 52.5, 166, 49, 159, 47, 159, 47, 157, 46, 157, 44, 154, 42, 154, 42, 152, 40, 152, 34, 146.8, 34, 145, 55, 145, 68, 126, 70, 127, 72, 127, 76, 130.6, 76, 145, 55, 145, 55, 124, 68, 124, 34, 146.8, 31.9231, 145, 34, 145, 34, 145, 31.9231, 145, 25, 139, 25, 137, 23, 137, 23, 135, 16.5833, 124, 34, 124, 55, 171, 52.5, 166, 55, 166, 76, 208, 56.25, 208, 59, 197, 59, 187, 76, 187, 76, 187, 59, 187, 59, 183, 56, 171, 55, 171, 55, 166, 76, 166, 118, 40, 97, 40, 97, 19, 118, 19, 97, 40, 76, 40, 76, 19, 97, 19, 97, 57, 76, 57, 76, 40, 97, 40, 118, 57, 97, 57, 97, 40, 118, 40, 97, 187, 76, 187, 76, 166, 97, 166, 106, 207, 105.714, 208, 97, 208, 97, 187, 106, 187, 97, 208, 76, 208, 76, 187, 97, 187, 103, 167, 104, 167, 106, 177, 106, 187, 97, 187, 97, 166, 102.625, 166, 82, 136, 84, 136, 88, 141, 89, 141, 89, 143, 91, 143, 91, 145, 76, 145, 76, 130.6, 102.625, 166, 97, 166, 97, 151, 94, 148, 95, 148, 96, 151, 97, 151, 97, 166, 76, 166, 76, 145, 91, 145, 160, 40, 139, 40, 139, 19, 160, 19, 139, 40, 118, 40, 118, 19, 139, 19, 139, 57, 118, 57, 118, 40, 139, 40, 160, 57, 139, 57, 139, 40, 160, 40, 202, 40, 181, 40, 181, 19, 202, 19, 181, 40, 160, 40, 160, 19, 181, 19, 181, 57, 160, 57, 160, 40, 181, 40, 202, 82, 195, 82, 195, 79, 199, 70, 199, 67, 200, 66, 201, 66, 201, 63, 202, 62, 202, 57, 181, 57, 181, 40, 202, 40, 55, 229, 49.4546, 229, 54, 219, 54, 214, 55, 214, 76, 250, 55, 250, 55, 229, 76, 229, 55, 250, 39, 250, 46, 239, 46, 236, 47, 234, 48, 234, 49, 233, 49, 230, 49.4546, 229, 55, 229, 76, 229, 55, 229, 55, 214, 56, 213, 56, 209, 56.25, 208, 76, 208, 55, 271, 34, 271, 34, 260, 35, 260, 35, 257, 37, 253, 39, 253, 39, 250, 55, 250, 76, 281, 55, 281, 55, 271, 76, 271, 55, 281, 34, 281, 34, 271, 55, 271, 76, 271, 55, 271, 55, 250, 76, 250, 34, 281, 20, 281, 20, 280, 26.75, 271, 34, 271, 34, 271, 26.75, 271, 32, 264, 32, 262, 33, 260, 34, 260, 97, 229, 76, 229, 76, 208, 97, 208, 118, 250, 97, 250, 97, 243, 118, 243, 101, 230, 100, 231, 99, 231, 99, 235, 97, 238, 97, 229, 101, 229, 95, 242, 95, 243, 97, 243, 97, 250, 76, 250, 76, 229, 97, 229, 97, 241, 104, 214, 104, 219, 103, 221, 102, 221, 101, 226, 101, 229, 97, 229, 97, 208, 105.714, 208, 97, 271, 76, 271, 76, 250, 97, 250, 118, 281, 97, 281, 97, 271, 118, 271, 97, 281, 76, 281, 76, 271, 97, 271, 118, 271, 97, 271, 97, 250, 118, 250, 139, 271, 118, 271, 118, 250, 139, 250, 160, 281, 139, 281, 139, 271, 160, 271, 139, 281, 118, 281, 118, 271, 139, 271, 160, 271, 139, 271, 139, 250, 160, 250, 160, 250, 139, 250, 139, 243, 160, 243, 139, 250, 118, 250, 118, 243, 139, 243, 181, 271, 160, 271, 160, 250, 181, 250, 202, 281, 181, 281, 181, 271, 202, 271, 181, 281, 160, 281, 160, 271, 181, 271, 202, 271, 181, 271, 181, 250, 202, 250, 202, 250, 181, 250, 181, 243, 202, 243, 181, 250, 160, 250, 160, 243, 181, 243, 244, 40, 223, 40, 223, 19, 244, 19, 223, 40, 202, 40, 202, 19, 223, 19, 280, 20, 270, 30, 270, 32, 267, 34, 267, 36, 265, 36, 265, 19, 280, 19, 265, 38, 264, 40, 244, 40, 244, 19, 265, 19, 223, 61, 203, 61, 203, 58, 205, 58, 205, 57, 202, 57, 202, 40, 223, 40, 244, 79, 243, 82, 223, 82, 223, 61, 244, 61, 223, 82, 202, 82, 202, 62, 203, 61, 223, 61, 244, 61, 223, 61, 223, 40, 244, 40, 262, 42, 258, 49, 257, 49, 255, 51, 255, 53, 251, 61, 244, 61, 244, 40, 262, 40, 250, 63, 249, 63, 248, 64, 248, 67, 244, 79, 244, 61, 251, 61, 223, 103, 202, 103, 202, 82, 223, 82, 244, 111, 244, 124, 223, 124, 223, 103, 242.545, 103, 223, 124, 202, 124, 202, 103, 223, 103, 241, 88, 241, 100, 242, 100, 242.545, 103, 223, 103, 223, 82, 243, 82, 202, 124, 198.7, 124, 196, 115, 195, 115, 195, 103, 202, 103, 202, 103, 195, 103, 195, 82, 202, 82, 223, 145, 217.222, 145, 215, 143, 213, 143, 211, 139, 209, 139, 209, 137, 207, 135, 206, 135, 206, 133, 204, 131, 203, 131, 202, 129, 202, 124, 223, 124, 244, 166, 240, 166, 240, 164, 232, 157, 232, 156, 230, 156, 227, 153, 227, 152, 225, 152, 223, 150.2, 223, 145, 244, 145, 223, 150.2, 217.222, 145, 223, 145, 244, 145, 223, 145, 223, 124, 244, 124, 202, 129, 200, 125, 199, 125, 198.7, 124, 202, 124, 255, 125, 255, 127, 257, 127, 265, 133.4, 265, 145, 244, 145, 244, 124, 254, 124, 277, 147, 282, 155, 282, 158, 284, 160, 284, 164, 284.667, 166, 265, 166, 265, 145, 277, 145, 265, 166, 244, 166, 244, 145, 265, 145, 272, 139, 272, 141, 275, 143, 275, 145, 265, 145, 265, 133.4, 249, 120, 250, 120, 254, 124, 244, 124, 244, 111, 245, 111, 265, 166, 265, 187, 249, 187, 249, 183, 244, 172, 244, 166, 286, 208, 265, 208, 265, 187, 286, 187, 265, 208, 246.071, 208, 248, 199, 249, 199, 249, 187, 265, 187, 286, 170, 286, 187, 265, 187, 265, 166, 284.667, 166, 244, 170, 240, 166, 244, 166, 287, 173, 287, 187, 286, 187, 286, 170, 287, 202, 286, 202, 286, 187, 287, 187, 223, 271, 202, 271, 202, 250, 223, 250, 244, 281, 223, 281, 223, 271, 244, 271, 223, 281, 202, 281, 202, 271, 223, 271, 244, 271, 223, 271, 223, 250, 244, 250, 244, 250, 223, 250, 223, 243, 225, 243, 235.267, 229, 244, 229, 223, 250, 202, 250, 202, 243, 223, 243, 244, 229, 235.267, 229, 236, 228, 237, 228, 237, 225, 239, 225, 239, 222, 241, 219, 242, 219, 244, 213, 265, 229, 244, 229, 244, 213, 245, 213, 246.071, 208, 265, 208, 277, 246, 276, 246, 274.737, 250, 265, 250, 265, 229, 280.923, 229, 265, 250, 244, 250, 244, 229, 265, 229, 284, 220, 283, 220, 280.923, 229, 265, 229, 265, 208, 285.333, 208, 265, 271, 244, 271, 244, 250, 265, 250, 265, 274.143, 265, 271, 266.375, 271, 265, 274.143, 262, 281, 244, 281, 244, 271, 265, 271, 270, 265, 269, 265, 266.375, 271, 265, 271, 265, 250, 274.737, 250) +polygons = [PackedInt32Array(108, 102, 103), PackedInt32Array(103, 104, 105), PackedInt32Array(105, 106, 107), PackedInt32Array(108, 103, 105), PackedInt32Array(105, 107, 108), PackedInt32Array(113, 109, 110), PackedInt32Array(110, 111, 112), PackedInt32Array(112, 113, 110), PackedInt32Array(117, 114, 115), PackedInt32Array(115, 116, 117), PackedInt32Array(123, 118, 119), PackedInt32Array(119, 120, 121), PackedInt32Array(121, 122, 123), PackedInt32Array(123, 119, 121), PackedInt32Array(129, 124, 125), PackedInt32Array(125, 126, 127), PackedInt32Array(127, 128, 129), PackedInt32Array(129, 125, 127), PackedInt32Array(133, 130, 131), PackedInt32Array(131, 132, 133), PackedInt32Array(142, 134, 135), PackedInt32Array(135, 136, 137), PackedInt32Array(138, 139, 140), PackedInt32Array(141, 142, 135), PackedInt32Array(135, 137, 138), PackedInt32Array(138, 140, 141), PackedInt32Array(141, 135, 138), PackedInt32Array(147, 143, 144), PackedInt32Array(144, 145, 146), PackedInt32Array(146, 147, 144), PackedInt32Array(156, 148, 149), PackedInt32Array(149, 150, 151), PackedInt32Array(152, 153, 154), PackedInt32Array(154, 155, 156), PackedInt32Array(156, 149, 151), PackedInt32Array(152, 154, 156), PackedInt32Array(156, 151, 152), PackedInt32Array(163, 157, 158), PackedInt32Array(158, 159, 160), PackedInt32Array(161, 162, 163), PackedInt32Array(158, 160, 161), PackedInt32Array(161, 163, 158), PackedInt32Array(169, 164, 165), PackedInt32Array(165, 166, 167), PackedInt32Array(167, 168, 169), PackedInt32Array(169, 165, 167), PackedInt32Array(170, 171, 172), PackedInt32Array(173, 174, 175), PackedInt32Array(176, 177, 170), PackedInt32Array(172, 173, 175), PackedInt32Array(175, 176, 170), PackedInt32Array(170, 172, 175), PackedInt32Array(178, 179, 180), PackedInt32Array(181, 182, 183), PackedInt32Array(183, 184, 185), PackedInt32Array(178, 180, 181), PackedInt32Array(183, 185, 178), PackedInt32Array(178, 181, 183), PackedInt32Array(190, 186, 187), PackedInt32Array(187, 188, 189), PackedInt32Array(189, 190, 187), PackedInt32Array(194, 191, 192), PackedInt32Array(192, 193, 194), PackedInt32Array(198, 195, 196), PackedInt32Array(196, 197, 198), PackedInt32Array(211, 199, 200), PackedInt32Array(201, 202, 203), PackedInt32Array(203, 204, 205), PackedInt32Array(205, 206, 207), PackedInt32Array(207, 208, 209), PackedInt32Array(209, 210, 211), PackedInt32Array(211, 200, 201), PackedInt32Array(207, 209, 211), PackedInt32Array(211, 201, 203), PackedInt32Array(205, 207, 211), PackedInt32Array(211, 203, 205), PackedInt32Array(213, 214, 215), PackedInt32Array(215, 216, 217), PackedInt32Array(217, 218, 219), PackedInt32Array(212, 213, 215), PackedInt32Array(217, 219, 212), PackedInt32Array(212, 215, 217), PackedInt32Array(222, 220, 221), PackedInt32Array(230, 223, 224), PackedInt32Array(224, 225, 226), PackedInt32Array(226, 227, 228), PackedInt32Array(228, 229, 230), PackedInt32Array(230, 224, 226), PackedInt32Array(226, 228, 230), PackedInt32Array(233, 231, 232), PackedInt32Array(238, 234, 235), PackedInt32Array(236, 237, 238), PackedInt32Array(238, 235, 236), PackedInt32Array(245, 239, 240), PackedInt32Array(242, 243, 244), PackedInt32Array(245, 240, 241), PackedInt32Array(241, 242, 244), PackedInt32Array(244, 245, 241), PackedInt32Array(249, 246, 247), PackedInt32Array(247, 248, 249), PackedInt32Array(253, 250, 251), PackedInt32Array(251, 252, 253), PackedInt32Array(257, 254, 255), PackedInt32Array(255, 256, 257), PackedInt32Array(261, 258, 259), PackedInt32Array(259, 260, 261), PackedInt32Array(265, 262, 263), PackedInt32Array(263, 264, 265), PackedInt32Array(270, 266, 267), PackedInt32Array(267, 268, 269), PackedInt32Array(269, 270, 267), PackedInt32Array(274, 271, 272), PackedInt32Array(272, 273, 274), PackedInt32Array(275, 276, 277), PackedInt32Array(277, 278, 279), PackedInt32Array(279, 280, 281), PackedInt32Array(281, 275, 277), PackedInt32Array(277, 279, 281), PackedInt32Array(282, 283, 284), PackedInt32Array(284, 285, 286), PackedInt32Array(286, 287, 288), PackedInt32Array(288, 289, 290), PackedInt32Array(282, 284, 286), PackedInt32Array(286, 288, 290), PackedInt32Array(290, 282, 286), PackedInt32Array(293, 291, 292), PackedInt32Array(294, 295, 296), PackedInt32Array(296, 297, 298), PackedInt32Array(298, 299, 300), PackedInt32Array(300, 301, 294), PackedInt32Array(294, 296, 298), PackedInt32Array(298, 300, 294), PackedInt32Array(305, 302, 303), PackedInt32Array(303, 304, 305), PackedInt32Array(309, 306, 307), PackedInt32Array(307, 308, 309), PackedInt32Array(313, 310, 311), PackedInt32Array(311, 312, 313), PackedInt32Array(317, 314, 315), PackedInt32Array(315, 316, 317), PackedInt32Array(321, 318, 319), PackedInt32Array(319, 320, 321), PackedInt32Array(325, 322, 323), PackedInt32Array(323, 324, 325), PackedInt32Array(329, 326, 327), PackedInt32Array(327, 328, 329), PackedInt32Array(330, 331, 332), PackedInt32Array(333, 334, 335), PackedInt32Array(336, 337, 338), PackedInt32Array(330, 332, 333), PackedInt32Array(333, 335, 336), PackedInt32Array(336, 338, 330), PackedInt32Array(330, 333, 336), PackedInt32Array(342, 339, 340), PackedInt32Array(340, 341, 342), PackedInt32Array(343, 344, 345), PackedInt32Array(345, 346, 347), PackedInt32Array(347, 343, 345), PackedInt32Array(351, 348, 349), PackedInt32Array(349, 350, 351), PackedInt32Array(361, 352, 353), PackedInt32Array(354, 355, 356), PackedInt32Array(358, 359, 360), PackedInt32Array(361, 353, 354), PackedInt32Array(354, 356, 357), PackedInt32Array(358, 360, 361), PackedInt32Array(361, 354, 357), PackedInt32Array(357, 358, 361), PackedInt32Array(368, 362, 363), PackedInt32Array(363, 364, 365), PackedInt32Array(365, 366, 367), PackedInt32Array(368, 363, 365), PackedInt32Array(365, 367, 368), PackedInt32Array(377, 369, 370), PackedInt32Array(370, 371, 372), PackedInt32Array(372, 373, 374), PackedInt32Array(375, 376, 377), PackedInt32Array(377, 370, 372), PackedInt32Array(372, 374, 375), PackedInt32Array(375, 377, 372), PackedInt32Array(381, 378, 379), PackedInt32Array(379, 380, 381), PackedInt32Array(385, 382, 383), PackedInt32Array(383, 384, 385), PackedInt32Array(389, 386, 387), PackedInt32Array(387, 388, 389), PackedInt32Array(394, 390, 391), PackedInt32Array(391, 392, 393), PackedInt32Array(393, 394, 391), PackedInt32Array(395, 396, 397), PackedInt32Array(397, 398, 399), PackedInt32Array(399, 400, 395), PackedInt32Array(395, 397, 399), PackedInt32Array(404, 401, 402), PackedInt32Array(402, 403, 404), PackedInt32Array(408, 405, 406), PackedInt32Array(406, 407, 408), PackedInt32Array(415, 409, 410), PackedInt32Array(411, 412, 413), PackedInt32Array(414, 415, 410), PackedInt32Array(411, 413, 414), PackedInt32Array(414, 410, 411), PackedInt32Array(417, 418, 419), PackedInt32Array(419, 420, 421), PackedInt32Array(421, 422, 423), PackedInt32Array(417, 419, 421), PackedInt32Array(421, 423, 416), PackedInt32Array(416, 417, 421), PackedInt32Array(424, 425, 426), PackedInt32Array(428, 429, 430), PackedInt32Array(430, 431, 432), PackedInt32Array(424, 426, 427), PackedInt32Array(427, 428, 430), PackedInt32Array(430, 432, 424), PackedInt32Array(424, 427, 430), PackedInt32Array(436, 433, 434), PackedInt32Array(434, 435, 436), PackedInt32Array(440, 437, 438), PackedInt32Array(438, 439, 440), PackedInt32Array(444, 441, 442), PackedInt32Array(442, 443, 444), PackedInt32Array(448, 445, 446), PackedInt32Array(446, 447, 448), PackedInt32Array(452, 449, 450), PackedInt32Array(450, 451, 452), PackedInt32Array(456, 453, 454), PackedInt32Array(454, 455, 456), PackedInt32Array(460, 457, 458), PackedInt32Array(458, 459, 460), PackedInt32Array(464, 461, 462), PackedInt32Array(462, 463, 464), PackedInt32Array(468, 465, 466), PackedInt32Array(466, 467, 468), PackedInt32Array(472, 469, 470), PackedInt32Array(470, 471, 472), PackedInt32Array(476, 473, 474), PackedInt32Array(474, 475, 476), PackedInt32Array(480, 477, 478), PackedInt32Array(478, 479, 480), PackedInt32Array(484, 481, 482), PackedInt32Array(482, 483, 484), PackedInt32Array(488, 485, 486), PackedInt32Array(486, 487, 488), PackedInt32Array(492, 489, 490), PackedInt32Array(490, 491, 492), PackedInt32Array(496, 493, 494), PackedInt32Array(494, 495, 496), PackedInt32Array(500, 497, 498), PackedInt32Array(498, 499, 500), PackedInt32Array(504, 501, 502), PackedInt32Array(502, 503, 504), PackedInt32Array(512, 505, 506), PackedInt32Array(506, 507, 508), PackedInt32Array(508, 509, 510), PackedInt32Array(511, 512, 506), PackedInt32Array(506, 508, 510), PackedInt32Array(510, 511, 506), PackedInt32Array(517, 513, 514), PackedInt32Array(514, 515, 516), PackedInt32Array(516, 517, 514), PackedInt32Array(525, 518, 519), PackedInt32Array(519, 520, 521), PackedInt32Array(522, 523, 524), PackedInt32Array(525, 519, 521), PackedInt32Array(522, 524, 525), PackedInt32Array(525, 521, 522), PackedInt32Array(530, 526, 527), PackedInt32Array(527, 528, 529), PackedInt32Array(529, 530, 527), PackedInt32Array(535, 531, 532), PackedInt32Array(532, 533, 534), PackedInt32Array(534, 535, 532), PackedInt32Array(539, 536, 537), PackedInt32Array(537, 538, 539), PackedInt32Array(548, 540, 541), PackedInt32Array(543, 544, 545), PackedInt32Array(545, 546, 547), PackedInt32Array(547, 548, 541), PackedInt32Array(543, 545, 547), PackedInt32Array(547, 541, 542), PackedInt32Array(542, 543, 547), PackedInt32Array(555, 549, 550), PackedInt32Array(551, 552, 553), PackedInt32Array(554, 555, 550), PackedInt32Array(551, 553, 554), PackedInt32Array(554, 550, 551), PackedInt32Array(559, 556, 557), PackedInt32Array(557, 558, 559), PackedInt32Array(564, 560, 561), PackedInt32Array(561, 562, 563), PackedInt32Array(563, 564, 561), PackedInt32Array(568, 565, 566), PackedInt32Array(566, 567, 568), PackedInt32Array(570, 571, 572), PackedInt32Array(572, 573, 574), PackedInt32Array(574, 575, 569), PackedInt32Array(570, 572, 574), PackedInt32Array(574, 569, 570), PackedInt32Array(581, 576, 577), PackedInt32Array(578, 579, 580), PackedInt32Array(580, 581, 577), PackedInt32Array(577, 578, 580), PackedInt32Array(585, 582, 583), PackedInt32Array(583, 584, 585), PackedInt32Array(600, 586, 587), PackedInt32Array(588, 589, 590), PackedInt32Array(590, 591, 592), PackedInt32Array(593, 594, 595), PackedInt32Array(596, 597, 598), PackedInt32Array(598, 599, 600), PackedInt32Array(600, 587, 588), PackedInt32Array(592, 593, 595), PackedInt32Array(596, 598, 600), PackedInt32Array(600, 588, 590), PackedInt32Array(590, 592, 595), PackedInt32Array(595, 596, 600), PackedInt32Array(600, 590, 595), PackedInt32Array(612, 601, 602), PackedInt32Array(603, 604, 605), PackedInt32Array(605, 606, 607), PackedInt32Array(608, 609, 610), PackedInt32Array(610, 611, 612), PackedInt32Array(612, 602, 603), PackedInt32Array(605, 607, 608), PackedInt32Array(608, 610, 612), PackedInt32Array(612, 603, 605), PackedInt32Array(605, 608, 612), PackedInt32Array(615, 613, 614), PackedInt32Array(619, 616, 617), PackedInt32Array(617, 618, 619), PackedInt32Array(624, 620, 621), PackedInt32Array(621, 622, 623), PackedInt32Array(623, 624, 621), PackedInt32Array(632, 625, 626), PackedInt32Array(626, 627, 628), PackedInt32Array(628, 629, 630), PackedInt32Array(630, 631, 632), PackedInt32Array(626, 628, 630), PackedInt32Array(630, 632, 626), PackedInt32Array(633, 634, 635), PackedInt32Array(635, 636, 637), PackedInt32Array(637, 638, 639), PackedInt32Array(639, 640, 641), PackedInt32Array(633, 635, 637), PackedInt32Array(639, 641, 633), PackedInt32Array(633, 637, 639), PackedInt32Array(645, 642, 643), PackedInt32Array(643, 644, 645), PackedInt32Array(651, 646, 647), PackedInt32Array(647, 648, 649), PackedInt32Array(649, 650, 651), PackedInt32Array(651, 647, 649), PackedInt32Array(652, 653, 654), PackedInt32Array(655, 656, 657), PackedInt32Array(652, 654, 655), PackedInt32Array(655, 657, 652), PackedInt32Array(663, 658, 659), PackedInt32Array(659, 660, 661), PackedInt32Array(661, 662, 663), PackedInt32Array(663, 659, 661), PackedInt32Array(667, 664, 665), PackedInt32Array(665, 666, 667), PackedInt32Array(673, 668, 669), PackedInt32Array(669, 670, 671), PackedInt32Array(671, 672, 673), PackedInt32Array(673, 669, 671), PackedInt32Array(678, 674, 675), PackedInt32Array(675, 676, 677), PackedInt32Array(677, 678, 675), PackedInt32Array(681, 679, 680), PackedInt32Array(685, 682, 683), PackedInt32Array(683, 684, 685), PackedInt32Array(689, 686, 687), PackedInt32Array(687, 688, 689), PackedInt32Array(693, 690, 691), PackedInt32Array(691, 692, 693), PackedInt32Array(697, 694, 695), PackedInt32Array(695, 696, 697), PackedInt32Array(701, 698, 699), PackedInt32Array(699, 700, 701), PackedInt32Array(705, 702, 703), PackedInt32Array(703, 704, 705), PackedInt32Array(711, 706, 707), PackedInt32Array(707, 708, 709), PackedInt32Array(709, 710, 711), PackedInt32Array(711, 707, 709), PackedInt32Array(715, 712, 713), PackedInt32Array(713, 714, 715), PackedInt32Array(716, 717, 718), PackedInt32Array(719, 720, 721), PackedInt32Array(721, 722, 723), PackedInt32Array(724, 725, 716), PackedInt32Array(716, 718, 719), PackedInt32Array(721, 723, 724), PackedInt32Array(716, 719, 721), PackedInt32Array(721, 724, 716), PackedInt32Array(731, 726, 727), PackedInt32Array(727, 728, 729), PackedInt32Array(729, 730, 731), PackedInt32Array(731, 727, 729), PackedInt32Array(737, 732, 733), PackedInt32Array(733, 734, 735), PackedInt32Array(735, 736, 737), PackedInt32Array(737, 733, 735), PackedInt32Array(741, 738, 739), PackedInt32Array(739, 740, 741), PackedInt32Array(747, 742, 743), PackedInt32Array(743, 744, 745), PackedInt32Array(745, 746, 747), PackedInt32Array(747, 743, 745), PackedInt32Array(751, 748, 749), PackedInt32Array(749, 750, 751), PackedInt32Array(754, 752, 753), PackedInt32Array(759, 755, 756), PackedInt32Array(756, 757, 758), PackedInt32Array(758, 759, 756), PackedInt32Array(765, 760, 761), PackedInt32Array(761, 762, 763), PackedInt32Array(763, 764, 765), PackedInt32Array(765, 761, 763)] +bones = ["Bone-0", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-1", PackedFloat32Array(1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-2", PackedFloat32Array(0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-3", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-4", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-5", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-6", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-7", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-8", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-9", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-10", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-11", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-12", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 1, 1, 0, 0, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-13", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-14", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-15", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-16", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-17", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-18", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 1, 0, 0, 1, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-19", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-20", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-21", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-22", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-23", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-24", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-25", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0), "Bone-26", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1), "Bone-27", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1)] +internal_vertex_count = 664 +script = ExtResource("2_4mj6g") +vertex_interval = 42 +exclude_texture = ExtResource("3_n8j03") +radius = 42 + +[node name="Skeleton2D" type="Skeleton2D" parent="SoftBody2D"] +visible = false +modification_stack = SubResource("SkeletonModificationStack2D_2xjt0") + +[node name="Bone-0" type="Bone2D" parent="SoftBody2D/Skeleton2D"] +position = Vector2(23.5, 103) +rotation = 1.07361 +scale = Vector2(1, 1) +rest = Transform2D(0.476957, 0.878927, -0.878927, 0.476957, 23.5, 103) +auto_calculate_length_and_angle = false +length = 42.0 +bone_angle = 0.0 +metadata/vert_owned = [102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113] +metadata/idx = 0 +metadata/connected_nodes_paths = [NodePath("Bone-2"), NodePath("Bone-4"), NodePath("Bone-3")] +metadata/connected_nodes_idx = [2, 4, 3] +metadata/_local_pose_override_enabled_ = true + +[node name="Bone-1" type="Bone2D" parent="SoftBody2D/Skeleton2D"] +position = Vector2(51.5882, 29.5) +rest = Transform2D(1, 0, 0, 1, 51.5882, 29.5) +auto_calculate_length_and_angle = false +length = 42.0 +bone_angle = 0.0 +metadata/vert_owned = [114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129] +metadata/idx = 1 +metadata/connected_nodes_paths = [NodePath("Bone-2"), NodePath("Bone-6"), NodePath("Bone-7")] +metadata/connected_nodes_idx = [2, 6, 7] +metadata/_local_pose_override_enabled_ = true + +[node name="Bone-2" type="Bone2D" parent="SoftBody2D/Skeleton2D"] +position = Vector2(45.5, 61) +rotation = -1.37987 +rest = Transform2D(0.189765, -0.981829, 0.981829, 0.189765, 45.5, 61) +auto_calculate_length_and_angle = false +length = 42.0 +bone_angle = 0.0 +metadata/vert_owned = [130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169] +metadata/idx = 2 +metadata/connected_nodes_paths = [NodePath("Bone-0"), NodePath("Bone-3"), NodePath("Bone-1"), NodePath("Bone-6"), NodePath("Bone-7")] +metadata/connected_nodes_idx = [0, 3, 1, 6, 7] +metadata/_local_pose_override_enabled_ = true + +[node name="Bone-3" type="Bone2D" parent="SoftBody2D/Skeleton2D"] +position = Vector2(51, 103) +rotation = 1.68243 +rest = Transform2D(-0.111405, 0.993775, -0.993775, -0.111405, 51, 103) +auto_calculate_length_and_angle = false +length = 42.0 +bone_angle = 0.0 +metadata/vert_owned = [170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190] +metadata/idx = 3 +metadata/connected_nodes_paths = [NodePath("Bone-0"), NodePath("Bone-4"), NodePath("Bone-2")] +metadata/connected_nodes_idx = [0, 4, 2] +metadata/_local_pose_override_enabled_ = true + +[node name="Bone-4" type="Bone2D" parent="SoftBody2D/Skeleton2D"] +position = Vector2(46.2917, 145) +rotation = 1.16674 +rest = Transform2D(0.393149, 0.919475, -0.919475, 0.393149, 46.2917, 145) +auto_calculate_length_and_angle = false +length = 42.0 +bone_angle = 0.0 +metadata/vert_owned = [191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230] +metadata/idx = 4 +metadata/connected_nodes_paths = [NodePath("Bone-0"), NodePath("Bone-3"), NodePath("Bone-5"), NodePath("Bone-8")] +metadata/connected_nodes_idx = [0, 3, 5, 8] +metadata/_local_pose_override_enabled_ = true + +[node name="Bone-5" type="Bone2D" parent="SoftBody2D/Skeleton2D"] +position = Vector2(64.25, 187) +rotation = -0.584544 +rest = Transform2D(0.833964, -0.551819, 0.551819, 0.833964, 64.25, 187) +auto_calculate_length_and_angle = false +length = 42.0 +bone_angle = 0.0 +metadata/vert_owned = [231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245] +metadata/idx = 5 +metadata/connected_nodes_paths = [NodePath("Bone-13"), NodePath("Bone-4"), NodePath("Bone-8"), NodePath("Bone-15")] +metadata/connected_nodes_idx = [13, 4, 8, 15] +metadata/_local_pose_override_enabled_ = true + +[node name="Bone-6" type="Bone2D" parent="SoftBody2D/Skeleton2D"] +position = Vector2(97, 29.5) +rotation = 1.5708 +rest = Transform2D(-4.37114e-08, 1, -1, -4.37114e-08, 97, 29.5) +auto_calculate_length_and_angle = false +length = 42.0 +bone_angle = 0.0 +metadata/vert_owned = [246, 247, 248, 249, 250, 251, 252, 253] +metadata/idx = 6 +metadata/connected_nodes_paths = [NodePath("Bone-1"), NodePath("Bone-2"), NodePath("Bone-7"), NodePath("Bone-9"), NodePath("Bone-10")] +metadata/connected_nodes_idx = [1, 2, 7, 9, 10] +metadata/_local_pose_override_enabled_ = true + +[node name="Bone-7" type="Bone2D" parent="SoftBody2D/Skeleton2D"] +position = Vector2(97, 48.5) +rotation = -1.5708 +rest = Transform2D(-4.37114e-08, -1, 1, -4.37114e-08, 97, 48.5) +auto_calculate_length_and_angle = false +length = 42.0 +bone_angle = 0.0 +metadata/vert_owned = [254, 255, 256, 257, 258, 259, 260, 261] +metadata/idx = 7 +metadata/connected_nodes_paths = [NodePath("Bone-1"), NodePath("Bone-2"), NodePath("Bone-6"), NodePath("Bone-9"), NodePath("Bone-10")] +metadata/connected_nodes_idx = [1, 2, 6, 9, 10] +metadata/_local_pose_override_enabled_ = true + +[node name="Bone-8" type="Bone2D" parent="SoftBody2D/Skeleton2D"] +position = Vector2(91, 169.3) +rotation = 2.08215 +rest = Transform2D(-0.489359, 0.872082, -0.872082, -0.489359, 91, 169.3) +auto_calculate_length_and_angle = false +length = 42.0 +bone_angle = 0.0 +metadata/vert_owned = [262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301] +metadata/idx = 8 +metadata/connected_nodes_paths = [NodePath("Bone-4"), NodePath("Bone-5"), NodePath("Bone-13"), NodePath("Bone-15")] +metadata/connected_nodes_idx = [4, 5, 13, 15] +metadata/_local_pose_override_enabled_ = true + +[node name="Bone-9" type="Bone2D" parent="SoftBody2D/Skeleton2D"] +position = Vector2(139, 29.5) +rotation = 1.5708 +rest = Transform2D(-4.37114e-08, 1, -1, -4.37114e-08, 139, 29.5) +auto_calculate_length_and_angle = false +length = 42.0 +bone_angle = 0.0 +metadata/vert_owned = [302, 303, 304, 305, 306, 307, 308, 309] +metadata/idx = 9 +metadata/connected_nodes_paths = [NodePath("Bone-6"), NodePath("Bone-7"), NodePath("Bone-10"), NodePath("Bone-11"), NodePath("Bone-12")] +metadata/connected_nodes_idx = [6, 7, 10, 11, 12] +metadata/_local_pose_override_enabled_ = true + +[node name="Bone-10" type="Bone2D" parent="SoftBody2D/Skeleton2D"] +position = Vector2(139, 48.5) +rotation = -1.5708 +rest = Transform2D(-4.37114e-08, -1, 1, -4.37114e-08, 139, 48.5) +auto_calculate_length_and_angle = false +length = 42.0 +bone_angle = 0.0 +metadata/vert_owned = [310, 311, 312, 313, 314, 315, 316, 317] +metadata/idx = 10 +metadata/connected_nodes_paths = [NodePath("Bone-6"), NodePath("Bone-7"), NodePath("Bone-9"), NodePath("Bone-11"), NodePath("Bone-12")] +metadata/connected_nodes_idx = [6, 7, 9, 11, 12] +metadata/_local_pose_override_enabled_ = true + +[node name="Bone-11" type="Bone2D" parent="SoftBody2D/Skeleton2D"] +position = Vector2(181, 29.5) +rotation = 1.5708 +rest = Transform2D(-4.37114e-08, 1, -1, -4.37114e-08, 181, 29.5) +auto_calculate_length_and_angle = false +length = 42.0 +bone_angle = 0.0 +metadata/vert_owned = [318, 319, 320, 321, 322, 323, 324, 325] +metadata/idx = 11 +metadata/connected_nodes_paths = [NodePath("Bone-9"), NodePath("Bone-10"), NodePath("Bone-12"), NodePath("Bone-19"), NodePath("Bone-20")] +metadata/connected_nodes_idx = [9, 10, 12, 19, 20] +metadata/_local_pose_override_enabled_ = true + +[node name="Bone-12" type="Bone2D" parent="SoftBody2D/Skeleton2D"] +position = Vector2(181, 61) +rotation = -0.483447 +rest = Transform2D(0.885398, -0.464834, 0.464834, 0.885398, 181, 61) +auto_calculate_length_and_angle = false +length = 42.0 +bone_angle = 0.0 +metadata/vert_owned = [326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342] +metadata/idx = 12 +metadata/connected_nodes_paths = [NodePath("Bone-9"), NodePath("Bone-10"), NodePath("Bone-11"), NodePath("Bone-19"), NodePath("Bone-20"), NodePath("Bone-21")] +metadata/connected_nodes_idx = [9, 10, 11, 19, 20, 21] +metadata/_local_pose_override_enabled_ = true + +[node name="Bone-13" type="Bone2D" parent="SoftBody2D/Skeleton2D"] +position = Vector2(57.5, 229) +rotation = -1.05944 +rest = Transform2D(0.489359, -0.872082, 0.872082, 0.489359, 57.5, 229) +auto_calculate_length_and_angle = false +length = 42.0 +bone_angle = 0.0 +metadata/vert_owned = [343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368] +metadata/idx = 13 +metadata/connected_nodes_paths = [NodePath("Bone-5"), NodePath("Bone-14"), NodePath("Bone-8"), NodePath("Bone-15"), NodePath("Bone-16")] +metadata/connected_nodes_idx = [5, 14, 8, 15, 16] +metadata/_local_pose_override_enabled_ = true + +[node name="Bone-14" type="Bone2D" parent="SoftBody2D/Skeleton2D"] +position = Vector2(48, 265.5) +rotation = -0.640228 +rest = Transform2D(0.80196, -0.597378, 0.597378, 0.80196, 48, 265.5) +auto_calculate_length_and_angle = false +length = 42.0 +bone_angle = 0.0 +metadata/vert_owned = [369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400] +metadata/idx = 14 +metadata/connected_nodes_paths = [NodePath("Bone-13"), NodePath("Bone-15"), NodePath("Bone-16")] +metadata/connected_nodes_idx = [13, 15, 16] +metadata/_local_pose_override_enabled_ = true + +[node name="Bone-15" type="Bone2D" parent="SoftBody2D/Skeleton2D"] +position = Vector2(97, 229) +rotation = 2.50136 +rest = Transform2D(-0.80196, 0.597378, -0.597378, -0.80196, 97, 229) +auto_calculate_length_and_angle = false +length = 42.0 +bone_angle = 0.0 +metadata/vert_owned = [401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432] +metadata/idx = 15 +metadata/connected_nodes_paths = [NodePath("Bone-5"), NodePath("Bone-8"), NodePath("Bone-13"), NodePath("Bone-14"), NodePath("Bone-16"), NodePath("Bone-17")] +metadata/connected_nodes_idx = [5, 8, 13, 14, 16, 17] +metadata/_local_pose_override_enabled_ = true + +[node name="Bone-16" type="Bone2D" parent="SoftBody2D/Skeleton2D"] +position = Vector2(97, 265.5) +rotation = -1.5708 +rest = Transform2D(-4.37114e-08, -1, 1, -4.37114e-08, 97, 265.5) +auto_calculate_length_and_angle = false +length = 42.0 +bone_angle = 0.0 +metadata/vert_owned = [433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448] +metadata/idx = 16 +metadata/connected_nodes_paths = [NodePath("Bone-13"), NodePath("Bone-14"), NodePath("Bone-15"), NodePath("Bone-17")] +metadata/connected_nodes_idx = [13, 14, 15, 17] +metadata/_local_pose_override_enabled_ = true + +[node name="Bone-17" type="Bone2D" parent="SoftBody2D/Skeleton2D"] +position = Vector2(139, 262) +rotation = 3.05845 +scale = Vector2(1, 1) +rest = Transform2D(-0.996546, 0.0830455, -0.0830455, -0.996546, 139, 262) +auto_calculate_length_and_angle = false +length = 42.0 +bone_angle = 0.0 +metadata/vert_owned = [449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472] +metadata/idx = 17 +metadata/connected_nodes_paths = [NodePath("Bone-15"), NodePath("Bone-16"), NodePath("Bone-18")] +metadata/connected_nodes_idx = [15, 16, 18] +metadata/_local_pose_override_enabled_ = true + +[node name="Bone-18" type="Bone2D" parent="SoftBody2D/Skeleton2D"] +position = Vector2(181, 262) +rotation = -0.343024 +rest = Transform2D(0.941742, -0.336336, 0.336336, 0.941742, 181, 262) +auto_calculate_length_and_angle = false +length = 42.0 +bone_angle = 0.0 +metadata/vert_owned = [473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496] +metadata/idx = 18 +metadata/connected_nodes_paths = [NodePath("Bone-17"), NodePath("Bone-25")] +metadata/connected_nodes_idx = [17, 25] +metadata/_local_pose_override_enabled_ = true + +[node name="Bone-19" type="Bone2D" parent="SoftBody2D/Skeleton2D"] +position = Vector2(241, 29.5) +rotation = 2.65815 +rest = Transform2D(-0.885398, 0.464834, -0.464834, -0.885398, 241, 29.5) +auto_calculate_length_and_angle = false +length = 42.0 +bone_angle = 0.0 +metadata/vert_owned = [497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517] +metadata/idx = 19 +metadata/connected_nodes_paths = [NodePath("Bone-11"), NodePath("Bone-12"), NodePath("Bone-20")] +metadata/connected_nodes_idx = [11, 12, 20] +metadata/_local_pose_override_enabled_ = true + +[node name="Bone-20" type="Bone2D" parent="SoftBody2D/Skeleton2D"] +position = Vector2(232, 61) +rotation = -1.2925 +rest = Transform2D(0.274721, -0.961524, 0.961524, 0.274721, 232, 61) +auto_calculate_length_and_angle = false +length = 42.0 +bone_angle = 0.0 +metadata/vert_owned = [518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555] +metadata/idx = 20 +metadata/connected_nodes_paths = [NodePath("Bone-11"), NodePath("Bone-12"), NodePath("Bone-19"), NodePath("Bone-21")] +metadata/connected_nodes_idx = [11, 12, 19, 21] +metadata/_local_pose_override_enabled_ = true + +[node name="Bone-21" type="Bone2D" parent="SoftBody2D/Skeleton2D"] +position = Vector2(219.5, 103) +rotation = -1.28153 +rest = Transform2D(0.285254, -0.958452, 0.958452, 0.285254, 219.5, 103) +auto_calculate_length_and_angle = false +length = 42.0 +bone_angle = 0.0 +metadata/vert_owned = [556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585] +metadata/idx = 21 +metadata/connected_nodes_paths = [NodePath("Bone-23"), NodePath("Bone-12"), NodePath("Bone-20"), NodePath("Bone-22")] +metadata/connected_nodes_idx = [23, 12, 20, 22] +metadata/_local_pose_override_enabled_ = true + +[node name="Bone-22" type="Bone2D" parent="SoftBody2D/Skeleton2D"] +position = Vector2(221.35, 145) +rotation = -0.150084 +rest = Transform2D(0.988759, -0.149521, 0.149521, 0.988759, 221.35, 145) +auto_calculate_length_and_angle = false +length = 42.0 +bone_angle = 0.0 +metadata/vert_owned = [586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624] +metadata/idx = 22 +metadata/connected_nodes_paths = [NodePath("Bone-21"), NodePath("Bone-23"), NodePath("Bone-24")] +metadata/connected_nodes_idx = [21, 23, 24] +metadata/_local_pose_override_enabled_ = true + +[node name="Bone-23" type="Bone2D" parent="SoftBody2D/Skeleton2D"] +position = Vector2(264.333, 138.5) +rotation = 2.99151 +rest = Transform2D(-0.988759, 0.149521, -0.149521, -0.988759, 264.333, 138.5) +auto_calculate_length_and_angle = false +length = 42.0 +bone_angle = 0.0 +metadata/vert_owned = [625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657] +metadata/idx = 23 +metadata/connected_nodes_paths = [NodePath("Bone-21"), NodePath("Bone-22"), NodePath("Bone-24")] +metadata/connected_nodes_idx = [21, 22, 24] +metadata/_local_pose_override_enabled_ = true + +[node name="Bone-24" type="Bone2D" parent="SoftBody2D/Skeleton2D"] +position = Vector2(263.5, 187) +rotation = -1.55362 +rest = Transform2D(0.0171798, -0.999852, 0.999852, 0.0171798, 263.5, 187) +auto_calculate_length_and_angle = false +length = 42.0 +bone_angle = 0.0 +metadata/vert_owned = [658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689] +metadata/idx = 24 +metadata/connected_nodes_paths = [NodePath("Bone-22"), NodePath("Bone-23"), NodePath("Bone-26")] +metadata/connected_nodes_idx = [22, 23, 26] +metadata/_local_pose_override_enabled_ = true + +[node name="Bone-25" type="Bone2D" parent="SoftBody2D/Skeleton2D"] +position = Vector2(223, 247) +rotation = 0.47057 +rest = Transform2D(0.89131, 0.453394, -0.453394, 0.89131, 223, 247) +auto_calculate_length_and_angle = false +length = 42.0 +bone_angle = 0.0 +metadata/vert_owned = [690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725] +metadata/idx = 25 +metadata/connected_nodes_paths = [NodePath("Bone-18"), NodePath("Bone-27"), NodePath("Bone-26")] +metadata/connected_nodes_idx = [18, 27, 26] +metadata/_local_pose_override_enabled_ = true + +[node name="Bone-26" type="Bone2D" parent="SoftBody2D/Skeleton2D"] +position = Vector2(264.667, 229) +rotation = 2.73381 +rest = Transform2D(-0.918002, 0.396577, -0.396577, -0.918002, 264.667, 229) +auto_calculate_length_and_angle = false +length = 42.0 +bone_angle = 0.0 +metadata/vert_owned = [726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747] +metadata/idx = 26 +metadata/connected_nodes_paths = [NodePath("Bone-24"), NodePath("Bone-25"), NodePath("Bone-27")] +metadata/connected_nodes_idx = [24, 25, 27] +metadata/_local_pose_override_enabled_ = true + +[node name="Bone-27" type="Bone2D" parent="SoftBody2D/Skeleton2D"] +position = Vector2(259.368, 265.5) +rotation = -1.42665 +rest = Transform2D(0.143652, -0.989628, 0.989628, 0.143652, 259.368, 265.5) +auto_calculate_length_and_angle = false +length = 42.0 +bone_angle = 0.0 +metadata/vert_owned = [748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765] +metadata/idx = 27 +metadata/connected_nodes_paths = [NodePath("Bone-25"), NodePath("Bone-26")] +metadata/connected_nodes_idx = [25, 26] +metadata/_local_pose_override_enabled_ = true + +[node name="Bone-0" type="RigidBody2D" parent="SoftBody2D"] +position = Vector2(23.5, 103) +mass = 0.0357143 +metadata/idx = 0 +metadata/bone_name = &"Bone-0" + +[node name="CircleShape2D" type="CollisionShape2D" parent="SoftBody2D/Bone-0"] +shape = SubResource("CircleShape2D_7ts6q") + +[node name="RemoteTransform2D" type="RemoteTransform2D" parent="SoftBody2D/Bone-0"] +visible = false +remote_path = NodePath("../../Skeleton2D/Bone-0") +update_rotation = false +update_scale = false + +[node name="Joint2D-Bone-0-Bone-2" type="PinJoint2D" parent="SoftBody2D/Bone-0"] +visible = false +rotation = -2.65908 +node_a = NodePath("..") +node_b = NodePath("../../Bone-2") +softness = 60.0 + +[node name="Joint2D-Bone-0-Bone-4" type="PinJoint2D" parent="SoftBody2D/Bone-0"] +visible = false +rotation = -0.497189 +node_a = NodePath("..") +node_b = NodePath("../../Bone-4") +softness = 60.0 + +[node name="Joint2D-Bone-0-Bone-3" type="PinJoint2D" parent="SoftBody2D/Bone-0"] +visible = false +rotation = -1.5708 +node_a = NodePath("..") +node_b = NodePath("../../Bone-3") +softness = 60.0 + +[node name="Bone-1" type="RigidBody2D" parent="SoftBody2D"] +position = Vector2(51.5882, 29.5) +mass = 0.0357143 +metadata/idx = 1 +metadata/bone_name = &"Bone-1" + +[node name="CircleShape2D" type="CollisionShape2D" parent="SoftBody2D/Bone-1"] +shape = SubResource("CircleShape2D_7ts6q") + +[node name="RemoteTransform2D" type="RemoteTransform2D" parent="SoftBody2D/Bone-1"] +visible = false +remote_path = NodePath("../../Skeleton2D/Bone-1") +update_rotation = false +update_scale = false + +[node name="Joint2D-Bone-1-Bone-2" type="PinJoint2D" parent="SoftBody2D/Bone-1"] +visible = false +rotation = 0.190923 +node_a = NodePath("..") +node_b = NodePath("../../Bone-2") +softness = 60.0 + +[node name="Joint2D-Bone-1-Bone-6" type="PinJoint2D" parent="SoftBody2D/Bone-1"] +visible = false +rotation = -1.5708 +node_a = NodePath("..") +node_b = NodePath("../../Bone-6") +softness = 60.0 + +[node name="Joint2D-Bone-1-Bone-7" type="PinJoint2D" parent="SoftBody2D/Bone-1"] +visible = false +rotation = -1.17453 +node_a = NodePath("..") +node_b = NodePath("../../Bone-7") +softness = 60.0 + +[node name="Bone-2" type="RigidBody2D" parent="SoftBody2D"] +position = Vector2(45.5, 61) +mass = 0.0357143 +metadata/idx = 2 +metadata/bone_name = &"Bone-2" + +[node name="CircleShape2D" type="CollisionShape2D" parent="SoftBody2D/Bone-2"] +shape = SubResource("CircleShape2D_7ts6q") + +[node name="RemoteTransform2D" type="RemoteTransform2D" parent="SoftBody2D/Bone-2"] +visible = false +remote_path = NodePath("../../Skeleton2D/Bone-2") +update_rotation = false +update_scale = false + +[node name="Joint2D-Bone-2-Bone-0" type="PinJoint2D" parent="SoftBody2D/Bone-2"] +visible = false +rotation = 0.482513 +node_a = NodePath("..") +node_b = NodePath("../../Bone-0") +softness = 60.0 + +[node name="Joint2D-Bone-2-Bone-3" type="PinJoint2D" parent="SoftBody2D/Bone-2"] +visible = false +rotation = -0.130211 +node_a = NodePath("..") +node_b = NodePath("../../Bone-3") +softness = 60.0 + +[node name="Joint2D-Bone-2-Bone-1" type="PinJoint2D" parent="SoftBody2D/Bone-2"] +visible = false +rotation = -2.95067 +node_a = NodePath("..") +node_b = NodePath("../../Bone-1") +softness = 60.0 + +[node name="Joint2D-Bone-2-Bone-6" type="PinJoint2D" parent="SoftBody2D/Bone-2"] +visible = false +rotation = -2.11974 +node_a = NodePath("..") +node_b = NodePath("../../Bone-6") +softness = 60.0 + +[node name="Joint2D-Bone-2-Bone-7" type="PinJoint2D" parent="SoftBody2D/Bone-2"] +visible = false +rotation = -1.80891 +node_a = NodePath("..") +node_b = NodePath("../../Bone-7") +softness = 60.0 + +[node name="Bone-3" type="RigidBody2D" parent="SoftBody2D"] +position = Vector2(51, 103) +mass = 0.0357143 +metadata/idx = 3 +metadata/bone_name = &"Bone-3" + +[node name="CircleShape2D" type="CollisionShape2D" parent="SoftBody2D/Bone-3"] +shape = SubResource("CircleShape2D_7ts6q") + +[node name="RemoteTransform2D" type="RemoteTransform2D" parent="SoftBody2D/Bone-3"] +visible = false +remote_path = NodePath("../../Skeleton2D/Bone-3") +update_rotation = false +update_scale = false + +[node name="Joint2D-Bone-3-Bone-0" type="PinJoint2D" parent="SoftBody2D/Bone-3"] +visible = false +rotation = 1.5708 +node_a = NodePath("..") +node_b = NodePath("../../Bone-0") +softness = 60.0 + +[node name="Joint2D-Bone-3-Bone-4" type="PinJoint2D" parent="SoftBody2D/Bone-3"] +visible = false +rotation = 0.111637 +node_a = NodePath("..") +node_b = NodePath("../../Bone-4") +softness = 60.0 + +[node name="Joint2D-Bone-3-Bone-2" type="PinJoint2D" parent="SoftBody2D/Bone-3"] +visible = false +rotation = -3.2718 +node_a = NodePath("..") +node_b = NodePath("../../Bone-2") +softness = 60.0 + +[node name="Bone-4" type="RigidBody2D" parent="SoftBody2D"] +position = Vector2(46.2917, 145) +mass = 0.0357143 +metadata/idx = 4 +metadata/bone_name = &"Bone-4" + +[node name="CircleShape2D" type="CollisionShape2D" parent="SoftBody2D/Bone-4"] +shape = SubResource("CircleShape2D_7ts6q") + +[node name="RemoteTransform2D" type="RemoteTransform2D" parent="SoftBody2D/Bone-4"] +visible = false +remote_path = NodePath("../../Skeleton2D/Bone-4") +update_rotation = false +update_scale = false + +[node name="Joint2D-Bone-4-Bone-0" type="PinJoint2D" parent="SoftBody2D/Bone-4"] +visible = false +rotation = -3.63878 +node_a = NodePath("..") +node_b = NodePath("../../Bone-0") +softness = 60.0 + +[node name="Joint2D-Bone-4-Bone-3" type="PinJoint2D" parent="SoftBody2D/Bone-4"] +visible = false +rotation = -3.02996 +node_a = NodePath("..") +node_b = NodePath("../../Bone-3") +softness = 60.0 + +[node name="Joint2D-Bone-4-Bone-5" type="PinJoint2D" parent="SoftBody2D/Bone-4"] +visible = false +rotation = -0.404053 +node_a = NodePath("..") +node_b = NodePath("../../Bone-5") +softness = 60.0 + +[node name="Joint2D-Bone-4-Bone-8" type="PinJoint2D" parent="SoftBody2D/Bone-4"] +visible = false +rotation = -1.07294 +node_a = NodePath("..") +node_b = NodePath("../../Bone-8") +softness = 60.0 + +[node name="Bone-5" type="RigidBody2D" parent="SoftBody2D"] +position = Vector2(64.25, 187) +mass = 0.0357143 +metadata/idx = 5 +metadata/bone_name = &"Bone-5" + +[node name="CircleShape2D" type="CollisionShape2D" parent="SoftBody2D/Bone-5"] +shape = SubResource("CircleShape2D_7ts6q") + +[node name="RemoteTransform2D" type="RemoteTransform2D" parent="SoftBody2D/Bone-5"] +visible = false +remote_path = NodePath("../../Skeleton2D/Bone-5") +update_rotation = false +update_scale = false + +[node name="Joint2D-Bone-5-Bone-13" type="PinJoint2D" parent="SoftBody2D/Bone-5"] +visible = false +rotation = 0.159352 +node_a = NodePath("..") +node_b = NodePath("../../Bone-13") +softness = 60.0 + +[node name="Joint2D-Bone-5-Bone-4" type="PinJoint2D" parent="SoftBody2D/Bone-5"] +visible = false +rotation = -3.54565 +node_a = NodePath("..") +node_b = NodePath("../../Bone-4") +softness = 60.0 + +[node name="Joint2D-Bone-5-Bone-8" type="PinJoint2D" parent="SoftBody2D/Bone-5"] +visible = false +rotation = -2.15534 +node_a = NodePath("..") +node_b = NodePath("../../Bone-8") +softness = 60.0 + +[node name="Joint2D-Bone-5-Bone-15" type="PinJoint2D" parent="SoftBody2D/Bone-5"] +visible = false +rotation = -0.662278 +node_a = NodePath("..") +node_b = NodePath("../../Bone-15") +softness = 60.0 + +[node name="Bone-6" type="RigidBody2D" parent="SoftBody2D"] +position = Vector2(97, 29.5) +mass = 0.0357143 +metadata/idx = 6 +metadata/bone_name = &"Bone-6" + +[node name="CircleShape2D" type="CollisionShape2D" parent="SoftBody2D/Bone-6"] +shape = SubResource("CircleShape2D_7ts6q") + +[node name="RemoteTransform2D" type="RemoteTransform2D" parent="SoftBody2D/Bone-6"] +visible = false +remote_path = NodePath("../../Skeleton2D/Bone-6") +update_rotation = false +update_scale = false + +[node name="Joint2D-Bone-6-Bone-1" type="PinJoint2D" parent="SoftBody2D/Bone-6"] +visible = false +rotation = 1.5708 +node_a = NodePath("..") +node_b = NodePath("../../Bone-1") +softness = 60.0 + +[node name="Joint2D-Bone-6-Bone-2" type="PinJoint2D" parent="SoftBody2D/Bone-6"] +visible = false +rotation = 1.02185 +node_a = NodePath("..") +node_b = NodePath("../../Bone-2") +softness = 60.0 + +[node name="Joint2D-Bone-6-Bone-7" type="PinJoint2D" parent="SoftBody2D/Bone-6"] +visible = false +node_a = NodePath("..") +node_b = NodePath("../../Bone-7") +softness = 60.0 + +[node name="Joint2D-Bone-6-Bone-9" type="PinJoint2D" parent="SoftBody2D/Bone-6"] +visible = false +rotation = -1.5708 +node_a = NodePath("..") +node_b = NodePath("../../Bone-9") +softness = 60.0 + +[node name="Joint2D-Bone-6-Bone-10" type="PinJoint2D" parent="SoftBody2D/Bone-6"] +visible = false +rotation = -1.14596 +node_a = NodePath("..") +node_b = NodePath("../../Bone-10") +softness = 60.0 + +[node name="Bone-7" type="RigidBody2D" parent="SoftBody2D"] +position = Vector2(97, 48.5) +mass = 0.0357143 +metadata/idx = 7 +metadata/bone_name = &"Bone-7" + +[node name="CircleShape2D" type="CollisionShape2D" parent="SoftBody2D/Bone-7"] +shape = SubResource("CircleShape2D_7ts6q") + +[node name="RemoteTransform2D" type="RemoteTransform2D" parent="SoftBody2D/Bone-7"] +visible = false +remote_path = NodePath("../../Skeleton2D/Bone-7") +update_rotation = false +update_scale = false + +[node name="Joint2D-Bone-7-Bone-1" type="PinJoint2D" parent="SoftBody2D/Bone-7"] +visible = false +rotation = -4.31613 +node_a = NodePath("..") +node_b = NodePath("../../Bone-1") +softness = 60.0 + +[node name="Joint2D-Bone-7-Bone-2" type="PinJoint2D" parent="SoftBody2D/Bone-7"] +visible = false +rotation = 1.33268 +node_a = NodePath("..") +node_b = NodePath("../../Bone-2") +softness = 60.0 + +[node name="Joint2D-Bone-7-Bone-6" type="PinJoint2D" parent="SoftBody2D/Bone-7"] +visible = false +rotation = -3.14159 +node_a = NodePath("..") +node_b = NodePath("../../Bone-6") +softness = 60.0 + +[node name="Joint2D-Bone-7-Bone-9" type="PinJoint2D" parent="SoftBody2D/Bone-7"] +visible = false +rotation = -1.99563 +node_a = NodePath("..") +node_b = NodePath("../../Bone-9") +softness = 60.0 + +[node name="Joint2D-Bone-7-Bone-10" type="PinJoint2D" parent="SoftBody2D/Bone-7"] +visible = false +rotation = -1.5708 +node_a = NodePath("..") +node_b = NodePath("../../Bone-10") +softness = 60.0 + +[node name="Bone-8" type="RigidBody2D" parent="SoftBody2D"] +position = Vector2(91, 169.3) +mass = 0.0357143 +metadata/idx = 8 +metadata/bone_name = &"Bone-8" + +[node name="CircleShape2D" type="CollisionShape2D" parent="SoftBody2D/Bone-8"] +shape = SubResource("CircleShape2D_7ts6q") + +[node name="RemoteTransform2D" type="RemoteTransform2D" parent="SoftBody2D/Bone-8"] +visible = false +remote_path = NodePath("../../Skeleton2D/Bone-8") +update_rotation = false +update_scale = false + +[node name="Joint2D-Bone-8-Bone-4" type="PinJoint2D" parent="SoftBody2D/Bone-8"] +visible = false +rotation = -4.21453 +node_a = NodePath("..") +node_b = NodePath("../../Bone-4") +softness = 60.0 + +[node name="Joint2D-Bone-8-Bone-5" type="PinJoint2D" parent="SoftBody2D/Bone-8"] +visible = false +rotation = 0.986252 +node_a = NodePath("..") +node_b = NodePath("../../Bone-5") +softness = 60.0 + +[node name="Joint2D-Bone-8-Bone-13" type="PinJoint2D" parent="SoftBody2D/Bone-8"] +visible = false +rotation = 0.511355 +node_a = NodePath("..") +node_b = NodePath("../../Bone-13") +softness = 60.0 + +[node name="Joint2D-Bone-8-Bone-15" type="PinJoint2D" parent="SoftBody2D/Bone-8"] +visible = false +rotation = -0.100166 +node_a = NodePath("..") +node_b = NodePath("../../Bone-15") +softness = 60.0 + +[node name="Bone-9" type="RigidBody2D" parent="SoftBody2D"] +position = Vector2(139, 29.5) +mass = 0.0357143 +metadata/idx = 9 +metadata/bone_name = &"Bone-9" + +[node name="CircleShape2D" type="CollisionShape2D" parent="SoftBody2D/Bone-9"] +shape = SubResource("CircleShape2D_7ts6q") + +[node name="RemoteTransform2D" type="RemoteTransform2D" parent="SoftBody2D/Bone-9"] +visible = false +remote_path = NodePath("../../Skeleton2D/Bone-9") +update_rotation = false +update_scale = false + +[node name="Joint2D-Bone-9-Bone-6" type="PinJoint2D" parent="SoftBody2D/Bone-9"] +visible = false +rotation = 1.5708 +node_a = NodePath("..") +node_b = NodePath("../../Bone-6") +softness = 60.0 + +[node name="Joint2D-Bone-9-Bone-7" type="PinJoint2D" parent="SoftBody2D/Bone-9"] +visible = false +rotation = 1.14596 +node_a = NodePath("..") +node_b = NodePath("../../Bone-7") +softness = 60.0 + +[node name="Joint2D-Bone-9-Bone-10" type="PinJoint2D" parent="SoftBody2D/Bone-9"] +visible = false +node_a = NodePath("..") +node_b = NodePath("../../Bone-10") +softness = 60.0 + +[node name="Joint2D-Bone-9-Bone-11" type="PinJoint2D" parent="SoftBody2D/Bone-9"] +visible = false +rotation = -1.5708 +node_a = NodePath("..") +node_b = NodePath("../../Bone-11") +softness = 60.0 + +[node name="Joint2D-Bone-9-Bone-12" type="PinJoint2D" parent="SoftBody2D/Bone-9"] +visible = false +rotation = -0.927295 +node_a = NodePath("..") +node_b = NodePath("../../Bone-12") +softness = 60.0 + +[node name="Bone-10" type="RigidBody2D" parent="SoftBody2D"] +position = Vector2(139, 48.5) +mass = 0.0357143 +metadata/idx = 10 +metadata/bone_name = &"Bone-10" + +[node name="CircleShape2D" type="CollisionShape2D" parent="SoftBody2D/Bone-10"] +shape = SubResource("CircleShape2D_7ts6q") + +[node name="RemoteTransform2D" type="RemoteTransform2D" parent="SoftBody2D/Bone-10"] +visible = false +remote_path = NodePath("../../Skeleton2D/Bone-10") +update_rotation = false +update_scale = false + +[node name="Joint2D-Bone-10-Bone-6" type="PinJoint2D" parent="SoftBody2D/Bone-10"] +visible = false +rotation = -4.28756 +node_a = NodePath("..") +node_b = NodePath("../../Bone-6") +softness = 60.0 + +[node name="Joint2D-Bone-10-Bone-7" type="PinJoint2D" parent="SoftBody2D/Bone-10"] +visible = false +rotation = 1.5708 +node_a = NodePath("..") +node_b = NodePath("../../Bone-7") +softness = 60.0 + +[node name="Joint2D-Bone-10-Bone-9" type="PinJoint2D" parent="SoftBody2D/Bone-10"] +visible = false +rotation = -3.14159 +node_a = NodePath("..") +node_b = NodePath("../../Bone-9") +softness = 60.0 + +[node name="Joint2D-Bone-10-Bone-11" type="PinJoint2D" parent="SoftBody2D/Bone-10"] +visible = false +rotation = -1.99563 +node_a = NodePath("..") +node_b = NodePath("../../Bone-11") +softness = 60.0 + +[node name="Joint2D-Bone-10-Bone-12" type="PinJoint2D" parent="SoftBody2D/Bone-10"] +visible = false +rotation = -1.28153 +node_a = NodePath("..") +node_b = NodePath("../../Bone-12") +softness = 60.0 + +[node name="Bone-11" type="RigidBody2D" parent="SoftBody2D"] +position = Vector2(181, 29.5) +mass = 0.0357143 +metadata/idx = 11 +metadata/bone_name = &"Bone-11" + +[node name="CircleShape2D" type="CollisionShape2D" parent="SoftBody2D/Bone-11"] +shape = SubResource("CircleShape2D_7ts6q") + +[node name="RemoteTransform2D" type="RemoteTransform2D" parent="SoftBody2D/Bone-11"] +visible = false +remote_path = NodePath("../../Skeleton2D/Bone-11") +update_rotation = false +update_scale = false + +[node name="Joint2D-Bone-11-Bone-9" type="PinJoint2D" parent="SoftBody2D/Bone-11"] +visible = false +rotation = 1.5708 +node_a = NodePath("..") +node_b = NodePath("../../Bone-9") +softness = 60.0 + +[node name="Joint2D-Bone-11-Bone-10" type="PinJoint2D" parent="SoftBody2D/Bone-11"] +visible = false +rotation = 1.14596 +node_a = NodePath("..") +node_b = NodePath("../../Bone-10") +softness = 60.0 + +[node name="Joint2D-Bone-11-Bone-12" type="PinJoint2D" parent="SoftBody2D/Bone-11"] +visible = false +node_a = NodePath("..") +node_b = NodePath("../../Bone-12") +softness = 60.0 + +[node name="Joint2D-Bone-11-Bone-19" type="PinJoint2D" parent="SoftBody2D/Bone-11"] +visible = false +rotation = -1.5708 +node_a = NodePath("..") +node_b = NodePath("../../Bone-19") +softness = 60.0 + +[node name="Joint2D-Bone-11-Bone-20" type="PinJoint2D" parent="SoftBody2D/Bone-11"] +visible = false +rotation = -1.0175 +node_a = NodePath("..") +node_b = NodePath("../../Bone-20") +softness = 60.0 + +[node name="Bone-12" type="RigidBody2D" parent="SoftBody2D"] +position = Vector2(181, 61) +mass = 0.0357143 +metadata/idx = 12 +metadata/bone_name = &"Bone-12" + +[node name="CircleShape2D" type="CollisionShape2D" parent="SoftBody2D/Bone-12"] +shape = SubResource("CircleShape2D_7ts6q") + +[node name="RemoteTransform2D" type="RemoteTransform2D" parent="SoftBody2D/Bone-12"] +visible = false +remote_path = NodePath("../../Skeleton2D/Bone-12") +update_rotation = false +update_scale = false + +[node name="Joint2D-Bone-12-Bone-9" type="PinJoint2D" parent="SoftBody2D/Bone-12"] +visible = false +rotation = -4.06889 +node_a = NodePath("..") +node_b = NodePath("../../Bone-9") +softness = 60.0 + +[node name="Joint2D-Bone-12-Bone-10" type="PinJoint2D" parent="SoftBody2D/Bone-12"] +visible = false +rotation = -4.42312 +node_a = NodePath("..") +node_b = NodePath("../../Bone-10") +softness = 60.0 + +[node name="Joint2D-Bone-12-Bone-11" type="PinJoint2D" parent="SoftBody2D/Bone-12"] +visible = false +rotation = -3.14159 +node_a = NodePath("..") +node_b = NodePath("../../Bone-11") +softness = 60.0 + +[node name="Joint2D-Bone-12-Bone-19" type="PinJoint2D" parent="SoftBody2D/Bone-12"] +visible = false +rotation = -2.05424 +node_a = NodePath("..") +node_b = NodePath("../../Bone-19") +softness = 60.0 + +[node name="Joint2D-Bone-12-Bone-20" type="PinJoint2D" parent="SoftBody2D/Bone-12"] +visible = false +rotation = -1.5708 +node_a = NodePath("..") +node_b = NodePath("../../Bone-20") +softness = 60.0 + +[node name="Joint2D-Bone-12-Bone-21" type="PinJoint2D" parent="SoftBody2D/Bone-12"] +visible = false +rotation = -0.741947 +node_a = NodePath("..") +node_b = NodePath("../../Bone-21") +softness = 60.0 + +[node name="Bone-13" type="RigidBody2D" parent="SoftBody2D"] +position = Vector2(57.5, 229) +mass = 0.0357143 +metadata/idx = 13 +metadata/bone_name = &"Bone-13" + +[node name="CircleShape2D" type="CollisionShape2D" parent="SoftBody2D/Bone-13"] +shape = SubResource("CircleShape2D_7ts6q") + +[node name="RemoteTransform2D" type="RemoteTransform2D" parent="SoftBody2D/Bone-13"] +visible = false +remote_path = NodePath("../../Skeleton2D/Bone-13") +update_rotation = false +update_scale = false + +[node name="Joint2D-Bone-13-Bone-5" type="PinJoint2D" parent="SoftBody2D/Bone-13"] +visible = false +rotation = -2.98224 +node_a = NodePath("..") +node_b = NodePath("../../Bone-5") +softness = 60.0 + +[node name="Joint2D-Bone-13-Bone-14" type="PinJoint2D" parent="SoftBody2D/Bone-13"] +visible = false +rotation = 0.254625 +node_a = NodePath("..") +node_b = NodePath("../../Bone-14") +softness = 60.0 + +[node name="Joint2D-Bone-13-Bone-8" type="PinJoint2D" parent="SoftBody2D/Bone-13"] +visible = false +rotation = -2.63024 +node_a = NodePath("..") +node_b = NodePath("../../Bone-8") +softness = 60.0 + +[node name="Joint2D-Bone-13-Bone-15" type="PinJoint2D" parent="SoftBody2D/Bone-13"] +visible = false +rotation = -1.5708 +node_a = NodePath("..") +node_b = NodePath("../../Bone-15") +softness = 60.0 + +[node name="Joint2D-Bone-13-Bone-16" type="PinJoint2D" parent="SoftBody2D/Bone-13"] +visible = false +rotation = -0.824851 +node_a = NodePath("..") +node_b = NodePath("../../Bone-16") +softness = 60.0 + +[node name="Bone-14" type="RigidBody2D" parent="SoftBody2D"] +position = Vector2(48, 265.5) +mass = 0.0357143 +metadata/idx = 14 +metadata/bone_name = &"Bone-14" + +[node name="CircleShape2D" type="CollisionShape2D" parent="SoftBody2D/Bone-14"] +shape = SubResource("CircleShape2D_7ts6q") + +[node name="RemoteTransform2D" type="RemoteTransform2D" parent="SoftBody2D/Bone-14"] +visible = false +remote_path = NodePath("../../Skeleton2D/Bone-14") +update_rotation = false +update_scale = false + +[node name="Joint2D-Bone-14-Bone-13" type="PinJoint2D" parent="SoftBody2D/Bone-14"] +visible = false +rotation = -2.88697 +node_a = NodePath("..") +node_b = NodePath("../../Bone-13") +softness = 60.0 + +[node name="Joint2D-Bone-14-Bone-15" type="PinJoint2D" parent="SoftBody2D/Bone-14"] +visible = false +rotation = -2.21102 +node_a = NodePath("..") +node_b = NodePath("../../Bone-15") +softness = 60.0 + +[node name="Joint2D-Bone-14-Bone-16" type="PinJoint2D" parent="SoftBody2D/Bone-14"] +visible = false +rotation = -1.5708 +node_a = NodePath("..") +node_b = NodePath("../../Bone-16") +softness = 60.0 + +[node name="Bone-15" type="RigidBody2D" parent="SoftBody2D"] +position = Vector2(97, 229) +mass = 0.0357143 +metadata/idx = 15 +metadata/bone_name = &"Bone-15" + +[node name="CircleShape2D" type="CollisionShape2D" parent="SoftBody2D/Bone-15"] +shape = SubResource("CircleShape2D_7ts6q") + +[node name="RemoteTransform2D" type="RemoteTransform2D" parent="SoftBody2D/Bone-15"] +visible = false +remote_path = NodePath("../../Skeleton2D/Bone-15") +update_rotation = false +update_scale = false + +[node name="Joint2D-Bone-15-Bone-5" type="PinJoint2D" parent="SoftBody2D/Bone-15"] +visible = false +rotation = -3.80387 +node_a = NodePath("..") +node_b = NodePath("../../Bone-5") +softness = 60.0 + +[node name="Joint2D-Bone-15-Bone-8" type="PinJoint2D" parent="SoftBody2D/Bone-15"] +visible = false +rotation = -3.24176 +node_a = NodePath("..") +node_b = NodePath("../../Bone-8") +softness = 60.0 + +[node name="Joint2D-Bone-15-Bone-13" type="PinJoint2D" parent="SoftBody2D/Bone-15"] +visible = false +rotation = 1.5708 +node_a = NodePath("..") +node_b = NodePath("../../Bone-13") +softness = 60.0 + +[node name="Joint2D-Bone-15-Bone-14" type="PinJoint2D" parent="SoftBody2D/Bone-15"] +visible = false +rotation = 0.930569 +node_a = NodePath("..") +node_b = NodePath("../../Bone-14") +softness = 60.0 + +[node name="Joint2D-Bone-15-Bone-16" type="PinJoint2D" parent="SoftBody2D/Bone-15"] +visible = false +node_a = NodePath("..") +node_b = NodePath("../../Bone-16") +softness = 60.0 + +[node name="Joint2D-Bone-15-Bone-17" type="PinJoint2D" parent="SoftBody2D/Bone-15"] +visible = false +rotation = -0.904827 +node_a = NodePath("..") +node_b = NodePath("../../Bone-17") +softness = 60.0 + +[node name="Bone-16" type="RigidBody2D" parent="SoftBody2D"] +position = Vector2(97, 265.5) +mass = 0.0357143 +metadata/idx = 16 +metadata/bone_name = &"Bone-16" + +[node name="CircleShape2D" type="CollisionShape2D" parent="SoftBody2D/Bone-16"] +shape = SubResource("CircleShape2D_7ts6q") + +[node name="RemoteTransform2D" type="RemoteTransform2D" parent="SoftBody2D/Bone-16"] +visible = false +remote_path = NodePath("../../Skeleton2D/Bone-16") +update_rotation = false +update_scale = false + +[node name="Joint2D-Bone-16-Bone-13" type="PinJoint2D" parent="SoftBody2D/Bone-16"] +visible = false +rotation = -3.96644 +node_a = NodePath("..") +node_b = NodePath("../../Bone-13") +softness = 60.0 + +[node name="Joint2D-Bone-16-Bone-14" type="PinJoint2D" parent="SoftBody2D/Bone-16"] +visible = false +rotation = 1.5708 +node_a = NodePath("..") +node_b = NodePath("../../Bone-14") +softness = 60.0 + +[node name="Joint2D-Bone-16-Bone-15" type="PinJoint2D" parent="SoftBody2D/Bone-16"] +visible = false +rotation = -3.14159 +node_a = NodePath("..") +node_b = NodePath("../../Bone-15") +softness = 60.0 + +[node name="Joint2D-Bone-16-Bone-17" type="PinJoint2D" parent="SoftBody2D/Bone-16"] +visible = false +rotation = -1.65394 +node_a = NodePath("..") +node_b = NodePath("../../Bone-17") +softness = 60.0 + +[node name="Bone-17" type="RigidBody2D" parent="SoftBody2D"] +position = Vector2(139, 262) +mass = 0.0357143 +metadata/idx = 17 +metadata/bone_name = &"Bone-17" + +[node name="CircleShape2D" type="CollisionShape2D" parent="SoftBody2D/Bone-17"] +shape = SubResource("CircleShape2D_7ts6q") + +[node name="RemoteTransform2D" type="RemoteTransform2D" parent="SoftBody2D/Bone-17"] +visible = false +remote_path = NodePath("../../Skeleton2D/Bone-17") +update_rotation = false +update_scale = false + +[node name="Joint2D-Bone-17-Bone-15" type="PinJoint2D" parent="SoftBody2D/Bone-17"] +visible = false +rotation = -4.04642 +node_a = NodePath("..") +node_b = NodePath("../../Bone-15") +softness = 60.0 + +[node name="Joint2D-Bone-17-Bone-16" type="PinJoint2D" parent="SoftBody2D/Bone-17"] +visible = false +rotation = 1.48766 +node_a = NodePath("..") +node_b = NodePath("../../Bone-16") +softness = 60.0 + +[node name="Joint2D-Bone-17-Bone-18" type="PinJoint2D" parent="SoftBody2D/Bone-17"] +visible = false +rotation = -1.5708 +node_a = NodePath("..") +node_b = NodePath("../../Bone-18") +softness = 60.0 + +[node name="Bone-18" type="RigidBody2D" parent="SoftBody2D"] +position = Vector2(181, 262) +mass = 0.0357143 +metadata/idx = 18 +metadata/bone_name = &"Bone-18" + +[node name="CircleShape2D" type="CollisionShape2D" parent="SoftBody2D/Bone-18"] +shape = SubResource("CircleShape2D_7ts6q") + +[node name="RemoteTransform2D" type="RemoteTransform2D" parent="SoftBody2D/Bone-18"] +visible = false +remote_path = NodePath("../../Skeleton2D/Bone-18") +update_rotation = false +update_scale = false + +[node name="Joint2D-Bone-18-Bone-17" type="PinJoint2D" parent="SoftBody2D/Bone-18"] +visible = false +rotation = 1.5708 +node_a = NodePath("..") +node_b = NodePath("../../Bone-17") +softness = 60.0 + +[node name="Joint2D-Bone-18-Bone-25" type="PinJoint2D" parent="SoftBody2D/Bone-18"] +visible = false +rotation = -1.91382 +node_a = NodePath("..") +node_b = NodePath("../../Bone-25") +softness = 60.0 + +[node name="Bone-19" type="RigidBody2D" parent="SoftBody2D"] +position = Vector2(241, 29.5) +mass = 0.0357143 +metadata/idx = 19 +metadata/bone_name = &"Bone-19" + +[node name="CircleShape2D" type="CollisionShape2D" parent="SoftBody2D/Bone-19"] +shape = SubResource("CircleShape2D_7ts6q") + +[node name="RemoteTransform2D" type="RemoteTransform2D" parent="SoftBody2D/Bone-19"] +visible = false +remote_path = NodePath("../../Skeleton2D/Bone-19") +update_rotation = false +update_scale = false + +[node name="Joint2D-Bone-19-Bone-11" type="PinJoint2D" parent="SoftBody2D/Bone-19"] +visible = false +rotation = 1.5708 +node_a = NodePath("..") +node_b = NodePath("../../Bone-11") +softness = 60.0 + +[node name="Joint2D-Bone-19-Bone-12" type="PinJoint2D" parent="SoftBody2D/Bone-19"] +visible = false +rotation = 1.08735 +node_a = NodePath("..") +node_b = NodePath("../../Bone-12") +softness = 60.0 + +[node name="Joint2D-Bone-19-Bone-20" type="PinJoint2D" parent="SoftBody2D/Bone-19"] +visible = false +rotation = 0.2783 +node_a = NodePath("..") +node_b = NodePath("../../Bone-20") +softness = 60.0 + +[node name="Bone-20" type="RigidBody2D" parent="SoftBody2D"] +position = Vector2(232, 61) +mass = 0.0357143 +metadata/idx = 20 +metadata/bone_name = &"Bone-20" + +[node name="CircleShape2D" type="CollisionShape2D" parent="SoftBody2D/Bone-20"] +shape = SubResource("CircleShape2D_7ts6q") + +[node name="RemoteTransform2D" type="RemoteTransform2D" parent="SoftBody2D/Bone-20"] +visible = false +remote_path = NodePath("../../Skeleton2D/Bone-20") +update_rotation = false +update_scale = false + +[node name="Joint2D-Bone-20-Bone-11" type="PinJoint2D" parent="SoftBody2D/Bone-20"] +visible = false +rotation = -4.15909 +node_a = NodePath("..") +node_b = NodePath("../../Bone-11") +softness = 60.0 + +[node name="Joint2D-Bone-20-Bone-12" type="PinJoint2D" parent="SoftBody2D/Bone-20"] +visible = false +rotation = 1.5708 +node_a = NodePath("..") +node_b = NodePath("../../Bone-12") +softness = 60.0 + +[node name="Joint2D-Bone-20-Bone-19" type="PinJoint2D" parent="SoftBody2D/Bone-20"] +visible = false +rotation = -2.86329 +node_a = NodePath("..") +node_b = NodePath("../../Bone-19") +softness = 60.0 + +[node name="Joint2D-Bone-20-Bone-21" type="PinJoint2D" parent="SoftBody2D/Bone-20"] +visible = false +rotation = 0.289271 +node_a = NodePath("..") +node_b = NodePath("../../Bone-21") +softness = 60.0 + +[node name="Bone-21" type="RigidBody2D" parent="SoftBody2D"] +position = Vector2(219.5, 103) +mass = 0.0357143 +metadata/idx = 21 +metadata/bone_name = &"Bone-21" + +[node name="CircleShape2D" type="CollisionShape2D" parent="SoftBody2D/Bone-21"] +shape = SubResource("CircleShape2D_7ts6q") + +[node name="RemoteTransform2D" type="RemoteTransform2D" parent="SoftBody2D/Bone-21"] +visible = false +remote_path = NodePath("../../Skeleton2D/Bone-21") +update_rotation = false +update_scale = false + +[node name="Joint2D-Bone-21-Bone-23" type="PinJoint2D" parent="SoftBody2D/Bone-21"] +visible = false +rotation = -0.901062 +node_a = NodePath("..") +node_b = NodePath("../../Bone-23") +softness = 60.0 + +[node name="Joint2D-Bone-21-Bone-12" type="PinJoint2D" parent="SoftBody2D/Bone-21"] +visible = false +rotation = -3.88354 +node_a = NodePath("..") +node_b = NodePath("../../Bone-12") +softness = 60.0 + +[node name="Joint2D-Bone-21-Bone-20" type="PinJoint2D" parent="SoftBody2D/Bone-21"] +visible = false +rotation = -2.85232 +node_a = NodePath("..") +node_b = NodePath("../../Bone-20") +softness = 60.0 + +[node name="Joint2D-Bone-21-Bone-22" type="PinJoint2D" parent="SoftBody2D/Bone-21"] +visible = false +rotation = -0.0440193 +node_a = NodePath("..") +node_b = NodePath("../../Bone-22") +softness = 60.0 + +[node name="Bone-22" type="RigidBody2D" parent="SoftBody2D"] +position = Vector2(221.35, 145) +mass = 0.0357143 +metadata/idx = 22 +metadata/bone_name = &"Bone-22" + +[node name="CircleShape2D" type="CollisionShape2D" parent="SoftBody2D/Bone-22"] +shape = SubResource("CircleShape2D_7ts6q") + +[node name="RemoteTransform2D" type="RemoteTransform2D" parent="SoftBody2D/Bone-22"] +visible = false +remote_path = NodePath("../../Skeleton2D/Bone-22") +update_rotation = false +update_scale = false + +[node name="Joint2D-Bone-22-Bone-21" type="PinJoint2D" parent="SoftBody2D/Bone-22"] +visible = false +rotation = -3.18561 +node_a = NodePath("..") +node_b = NodePath("../../Bone-21") +softness = 60.0 + +[node name="Joint2D-Bone-22-Bone-23" type="PinJoint2D" parent="SoftBody2D/Bone-22"] +visible = false +rotation = -1.72088 +node_a = NodePath("..") +node_b = NodePath("../../Bone-23") +softness = 60.0 + +[node name="Joint2D-Bone-22-Bone-24" type="PinJoint2D" parent="SoftBody2D/Bone-22"] +visible = false +rotation = -0.787181 +node_a = NodePath("..") +node_b = NodePath("../../Bone-24") +softness = 60.0 + +[node name="Bone-23" type="RigidBody2D" parent="SoftBody2D"] +position = Vector2(264.333, 138.5) +mass = 0.0357143 +metadata/idx = 23 +metadata/bone_name = &"Bone-23" + +[node name="CircleShape2D" type="CollisionShape2D" parent="SoftBody2D/Bone-23"] +shape = SubResource("CircleShape2D_7ts6q") + +[node name="RemoteTransform2D" type="RemoteTransform2D" parent="SoftBody2D/Bone-23"] +visible = false +remote_path = NodePath("../../Skeleton2D/Bone-23") +update_rotation = false +update_scale = false + +[node name="Joint2D-Bone-23-Bone-21" type="PinJoint2D" parent="SoftBody2D/Bone-23"] +visible = false +rotation = -4.04265 +node_a = NodePath("..") +node_b = NodePath("../../Bone-21") +softness = 60.0 + +[node name="Joint2D-Bone-23-Bone-22" type="PinJoint2D" parent="SoftBody2D/Bone-23"] +visible = false +rotation = 1.42071 +node_a = NodePath("..") +node_b = NodePath("../../Bone-22") +softness = 60.0 + +[node name="Joint2D-Bone-23-Bone-24" type="PinJoint2D" parent="SoftBody2D/Bone-23"] +visible = false +rotation = 0.0171806 +node_a = NodePath("..") +node_b = NodePath("../../Bone-24") +softness = 60.0 + +[node name="Bone-24" type="RigidBody2D" parent="SoftBody2D"] +position = Vector2(263.5, 187) +mass = 0.0357143 +metadata/idx = 24 +metadata/bone_name = &"Bone-24" + +[node name="CircleShape2D" type="CollisionShape2D" parent="SoftBody2D/Bone-24"] +shape = SubResource("CircleShape2D_7ts6q") + +[node name="RemoteTransform2D" type="RemoteTransform2D" parent="SoftBody2D/Bone-24"] +visible = false +remote_path = NodePath("../../Skeleton2D/Bone-24") +update_rotation = false +update_scale = false + +[node name="Joint2D-Bone-24-Bone-22" type="PinJoint2D" parent="SoftBody2D/Bone-24"] +visible = false +rotation = -3.92877 +node_a = NodePath("..") +node_b = NodePath("../../Bone-22") +softness = 60.0 + +[node name="Joint2D-Bone-24-Bone-23" type="PinJoint2D" parent="SoftBody2D/Bone-24"] +visible = false +rotation = -3.12441 +node_a = NodePath("..") +node_b = NodePath("../../Bone-23") +softness = 60.0 + +[node name="Joint2D-Bone-24-Bone-26" type="PinJoint2D" parent="SoftBody2D/Bone-24"] +visible = false +rotation = -0.0277704 +node_a = NodePath("..") +node_b = NodePath("../../Bone-26") +softness = 60.0 + +[node name="Bone-25" type="RigidBody2D" parent="SoftBody2D"] +position = Vector2(223, 247) +mass = 0.0357143 +metadata/idx = 25 +metadata/bone_name = &"Bone-25" + +[node name="CircleShape2D" type="CollisionShape2D" parent="SoftBody2D/Bone-25"] +shape = SubResource("CircleShape2D_7ts6q") + +[node name="RemoteTransform2D" type="RemoteTransform2D" parent="SoftBody2D/Bone-25"] +visible = false +remote_path = NodePath("../../Skeleton2D/Bone-25") +update_rotation = false +update_scale = false + +[node name="Joint2D-Bone-25-Bone-18" type="PinJoint2D" parent="SoftBody2D/Bone-25"] +visible = false +rotation = 1.22777 +node_a = NodePath("..") +node_b = NodePath("../../Bone-18") +softness = 60.0 + +[node name="Joint2D-Bone-25-Bone-27" type="PinJoint2D" parent="SoftBody2D/Bone-25"] +visible = false +rotation = -1.10023 +node_a = NodePath("..") +node_b = NodePath("../../Bone-27") +softness = 60.0 + +[node name="Joint2D-Bone-25-Bone-26" type="PinJoint2D" parent="SoftBody2D/Bone-25"] +visible = false +rotation = -1.97858 +node_a = NodePath("..") +node_b = NodePath("../../Bone-26") +softness = 60.0 + +[node name="Bone-26" type="RigidBody2D" parent="SoftBody2D"] +position = Vector2(264.667, 229) +mass = 0.0357143 +metadata/idx = 26 +metadata/bone_name = &"Bone-26" + +[node name="CircleShape2D" type="CollisionShape2D" parent="SoftBody2D/Bone-26"] +shape = SubResource("CircleShape2D_7ts6q") + +[node name="RemoteTransform2D" type="RemoteTransform2D" parent="SoftBody2D/Bone-26"] +visible = false +remote_path = NodePath("../../Skeleton2D/Bone-26") +update_rotation = false +update_scale = false + +[node name="Joint2D-Bone-26-Bone-24" type="PinJoint2D" parent="SoftBody2D/Bone-26"] +visible = false +rotation = -3.16936 +node_a = NodePath("..") +node_b = NodePath("../../Bone-24") +softness = 60.0 + +[node name="Joint2D-Bone-26-Bone-25" type="PinJoint2D" parent="SoftBody2D/Bone-26"] +visible = false +rotation = 1.16301 +node_a = NodePath("..") +node_b = NodePath("../../Bone-25") +softness = 60.0 + +[node name="Joint2D-Bone-26-Bone-27" type="PinJoint2D" parent="SoftBody2D/Bone-26"] +visible = false +rotation = 0.144151 +node_a = NodePath("..") +node_b = NodePath("../../Bone-27") +softness = 60.0 + +[node name="Bone-27" type="RigidBody2D" parent="SoftBody2D"] +position = Vector2(259.368, 265.5) +mass = 0.0357143 +metadata/idx = 27 +metadata/bone_name = &"Bone-27" + +[node name="CircleShape2D" type="CollisionShape2D" parent="SoftBody2D/Bone-27"] +shape = SubResource("CircleShape2D_7ts6q") + +[node name="RemoteTransform2D" type="RemoteTransform2D" parent="SoftBody2D/Bone-27"] +visible = false +remote_path = NodePath("../../Skeleton2D/Bone-27") +update_rotation = false +update_scale = false + +[node name="Joint2D-Bone-27-Bone-25" type="PinJoint2D" parent="SoftBody2D/Bone-27"] +visible = false +rotation = -4.24182 +node_a = NodePath("..") +node_b = NodePath("../../Bone-25") +softness = 60.0 + +[node name="Joint2D-Bone-27-Bone-26" type="PinJoint2D" parent="SoftBody2D/Bone-27"] +visible = false +rotation = -2.99744 +node_a = NodePath("..") +node_b = NodePath("../../Bone-26") +softness = 60.0 + +[node name="FloatingSoftbody2D" type="Polygon2D" parent="."] +position = Vector2(386, 174) +texture = ExtResource("1_gjugi") +skeleton = NodePath("Skeleton2D") +polygon = PackedVector2Array(37, 21, 34, 26, 33, 26, 31, 32, 30, 32, 24, 49, 23, 49, 17, 70, 16, 70, 15, 76, 15, 82, 13, 87, 13, 111, 16, 120, 16, 123, 23, 135, 23, 137, 25, 137, 25, 139, 40, 152, 42, 152, 42, 154, 44, 154, 46, 157, 47, 157, 47, 159, 49, 159, 55, 171, 56, 171, 59, 183, 59, 197, 56, 209, 56, 213, 55, 214, 54, 214, 54, 219, 49, 230, 49, 233, 48, 234, 47, 234, 46, 236, 46, 239, 39, 250, 39, 253, 37, 253, 35, 257, 35, 260, 33, 260, 32, 262, 32, 264, 20, 280, 20, 281, 262, 281, 269, 265, 270, 265, 276, 246, 277, 246, 283, 220, 284, 220, 286, 202, 287, 202, 287, 173, 284, 164, 284, 160, 282, 158, 282, 155, 277, 147, 277, 145, 275, 145, 275, 143, 272, 141, 272, 139, 257, 127, 255, 127, 255, 125, 250, 120, 249, 120, 245, 111, 244, 111, 242, 100, 241, 100, 241, 88, 248, 67, 248, 64, 249, 63, 250, 63, 255, 53, 255, 51, 257, 49, 258, 49, 262, 42, 262, 40, 264, 40, 265, 38, 265, 36, 267, 36, 267, 34, 270, 32, 270, 30, 280, 20, 280, 19, 37, 19, 33, 119, 15.6667, 119, 13, 111, 13, 99, 33, 99, 33, 99, 13, 99, 13, 87, 15, 82, 15, 79, 33, 79, 73, 39, 53, 39, 53, 19, 73, 19, 53, 39, 33, 39, 33, 26, 34, 26, 37, 21, 37, 19, 53, 19, 33, 39, 27.5294, 39, 30, 32, 31, 32, 33, 26, 53, 59, 33, 59, 33, 39, 53, 39, 67, 65, 65, 65, 65, 67, 61, 71, 60, 71, 56, 78, 55, 78, 55, 79, 53, 79, 53, 59, 72, 59, 53, 79, 33, 79, 33, 59, 53, 59, 73, 59, 53, 59, 53, 39, 73, 39, 33, 79, 15, 79, 15, 76, 16, 70, 17, 70, 20.1429, 59, 33, 59, 33, 59, 20.1429, 59, 23, 49, 24, 49, 27.5294, 39, 33, 39, 51, 89, 51, 99, 33, 99, 33, 79, 53, 79, 53, 87, 55, 109, 55, 111, 58, 114, 58, 116, 60, 116, 61, 117, 61, 119, 53, 119, 53, 105.5, 51, 102, 53, 105.5, 53, 119, 33, 119, 33, 99, 51, 99, 55, 81, 53, 83, 53, 79, 55, 79, 53, 139, 33, 139, 33, 119, 53, 119, 73, 159, 53, 159, 53, 139, 73, 139, 53, 159, 47, 159, 47, 157, 46, 157, 44, 154, 42, 154, 42, 152, 40, 152, 33, 145.933, 33, 139, 53, 139, 68, 124, 68, 126, 70, 127, 72, 127, 73, 127.9, 73, 139, 53, 139, 53, 119, 61, 119, 33, 145.933, 25, 139, 33, 139, 33, 139, 25, 139, 25, 137, 23, 137, 23, 135, 16, 123, 16, 120, 15.6667, 119, 33, 119, 53, 167, 49, 159, 53, 159, 73, 199, 58.5, 199, 59, 197, 59, 183, 58, 179, 73, 179, 73, 179, 58, 179, 56, 171, 55, 171, 53, 167, 53, 159, 73, 159, 113, 39, 93, 39, 93, 19, 113, 19, 93, 39, 73, 39, 73, 19, 93, 19, 93, 57, 75, 57, 75, 58, 74, 59, 73, 59, 73, 39, 93, 39, 113, 57, 93, 57, 93, 39, 113, 39, 93, 179, 73, 179, 73, 159, 93, 159, 106, 199, 93, 199, 93, 179, 106, 179, 93, 199, 73, 199, 73, 179, 93, 179, 103, 167, 104, 167, 106, 177, 106, 179, 93, 179, 93, 159, 100, 159, 82, 136, 84, 136, 86.4, 139, 73, 139, 73, 127.9, 94, 148, 95, 148, 96, 151, 97, 151, 100, 159, 93, 159, 93, 147, 88, 141, 89, 141, 89, 143, 91, 143, 91, 145, 93, 147, 93, 159, 73, 159, 73, 139, 86.4, 139, 153, 39, 133, 39, 133, 19, 153, 19, 133, 39, 113, 39, 113, 19, 133, 19, 133, 57, 113, 57, 113, 39, 133, 39, 153, 57, 133, 57, 133, 39, 153, 39, 193, 39, 173, 39, 173, 19, 193, 19, 173, 39, 153, 39, 153, 19, 173, 19, 173, 57, 153, 57, 153, 39, 173, 39, 193, 57, 173, 57, 173, 39, 193, 39, 73, 239, 53, 239, 53, 221.2, 54, 219, 73, 219, 53, 239, 46, 239, 46, 236, 47, 234, 48, 234, 49, 233, 49, 230, 53, 221.2, 73, 219, 54, 219, 54, 214, 55, 214, 56, 213, 56, 209, 58.5, 199, 73, 199, 53, 259, 35, 259, 35, 257, 37, 253, 39, 253, 39, 250, 46, 239, 53, 239, 73, 279, 53, 279, 53, 259, 73, 259, 53, 279, 33, 279, 33, 260, 35, 260, 35, 259, 53, 259, 73, 259, 53, 259, 53, 239, 73, 239, 33, 279, 20.75, 279, 32, 264, 32, 262, 33, 260, 33, 281, 20, 281, 20, 280, 20.75, 279, 33, 279, 53, 281, 33, 281, 33, 279, 53, 279, 73, 281, 53, 281, 53, 279, 73, 279, 93, 219, 73, 219, 73, 199, 93, 199, 103, 221, 102, 221, 101, 226, 101, 230, 100, 231, 99, 231, 99, 235, 97, 238, 97, 239, 93, 239, 93, 219, 104, 219, 93, 239, 73, 239, 73, 219, 93, 219, 106, 207, 104, 214, 104, 219, 93, 219, 93, 199, 106, 199, 93, 259, 73, 259, 73, 239, 93, 239, 113, 279, 93, 279, 93, 259, 113, 259, 93, 279, 73, 279, 73, 259, 93, 259, 97, 241, 95, 242, 95, 243, 113, 243, 113, 259, 93, 259, 93, 239, 97, 239, 93, 281, 73, 281, 73, 279, 93, 279, 113, 281, 93, 281, 93, 279, 113, 279, 133, 259, 113, 259, 113, 243, 133, 243, 153, 279, 133, 279, 133, 259, 153, 259, 133, 279, 113, 279, 113, 259, 133, 259, 153, 259, 133, 259, 133, 243, 153, 243, 133, 281, 113, 281, 113, 279, 133, 279, 153, 281, 133, 281, 133, 279, 153, 279, 173, 259, 153, 259, 153, 243, 173, 243, 193, 279, 173, 279, 173, 259, 193, 259, 173, 279, 153, 279, 153, 259, 173, 259, 193, 259, 173, 259, 173, 243, 193, 243, 173, 281, 153, 281, 153, 279, 173, 279, 193, 281, 173, 281, 173, 279, 193, 279, 233, 39, 213, 39, 213, 19, 233, 19, 213, 39, 193, 39, 193, 19, 213, 19, 213, 59, 203, 59, 203, 58, 205, 58, 205, 57, 193, 57, 193, 39, 213, 39, 233, 79, 213, 79, 213, 59, 233, 59, 213, 79, 195, 79, 199, 70, 199, 67, 200, 66, 201, 66, 201, 63, 203, 61, 203, 59, 213, 59, 233, 59, 213, 59, 213, 39, 233, 39, 213, 99, 195, 99, 195, 79, 213, 79, 233, 119, 213, 119, 213, 99, 233, 99, 213, 119, 197.2, 119, 196, 115, 195, 115, 195, 99, 213, 99, 233, 99, 213, 99, 213, 79, 233, 79, 241, 88, 241, 99, 233, 99, 233, 79, 244, 79, 241, 100, 242, 100, 244, 111, 245, 111, 248.556, 119, 233, 119, 233, 99, 241, 99, 213, 139, 209, 139, 209, 137, 207, 135, 206, 135, 206, 133, 204, 131, 203, 131, 200, 125, 199, 125, 197.2, 119, 213, 119, 233, 157.875, 232, 157, 232, 156, 230, 156, 227, 153, 227, 152, 225, 152, 215, 143, 213, 143, 213, 139, 233, 139, 213, 143, 211, 139, 213, 139, 233, 139, 213, 139, 213, 119, 233, 119, 273, 27, 270, 30, 270, 32, 267, 34, 267, 36, 265, 36, 265, 38, 264.5, 39, 253, 39, 253, 19, 273, 19, 253, 39, 233, 39, 233, 19, 253, 19, 280, 20, 273, 27, 273, 19, 280, 19, 253, 57, 252, 59, 233, 59, 233, 39, 253, 39, 250, 63, 249, 63, 248, 64, 248, 67, 244, 79, 233, 79, 233, 59, 252, 59, 264, 40, 262, 40, 262, 42, 258, 49, 257, 49, 255, 51, 255, 53, 253, 57, 253, 39, 264.5, 39, 249, 120, 250, 120, 253, 123, 253, 139, 233, 139, 233, 119, 248.556, 119, 273, 159, 253, 159, 253, 139, 273, 139, 253, 159, 234.286, 159, 233, 157.875, 233, 139, 253, 139, 255, 125, 255, 127, 257, 127, 272, 139, 253, 139, 253, 123, 275, 143, 275, 145, 277, 145, 277, 147, 282, 155, 282, 158, 283, 159, 273, 159, 273, 141.667, 253, 179, 247.182, 179, 244, 172, 244, 170, 240, 166, 240, 164, 234.286, 159, 253, 159, 273, 199, 253, 199, 253, 179, 273, 179, 253, 199, 249, 199, 249, 183, 247.182, 179, 253, 179, 273, 179, 253, 179, 253, 159, 273, 159, 284, 160, 284, 164, 287, 173, 287, 179, 273, 179, 273, 159, 283, 159, 287, 199, 273, 199, 273, 179, 287, 179, 213, 259, 193, 259, 193, 243, 213, 243, 233, 279, 213, 279, 213, 259, 233, 259, 213, 279, 193, 279, 193, 259, 213, 259, 233, 259, 213, 259, 213, 243, 225, 243, 227.933, 239, 233, 239, 213, 281, 193, 281, 193, 279, 213, 279, 233, 281, 213, 281, 213, 279, 233, 279, 253, 219, 242, 219, 244, 213, 245, 213, 248, 199, 253, 199, 273, 239, 253, 239, 253, 219, 273, 219, 253, 239, 233, 239, 233, 232.091, 236, 228, 237, 228, 237, 225, 239, 225, 239, 222, 241, 219, 253, 219, 273, 219, 253, 219, 253, 199, 273, 199, 233, 239, 227.933, 239, 233, 232.091, 287, 202, 286, 202, 284.111, 219, 273, 219, 273, 199, 287, 199, 284, 220, 283, 220, 278.615, 239, 273, 239, 273, 219, 284.111, 219, 253, 259, 233, 259, 233, 239, 253, 239, 270, 265, 269, 265, 262.875, 279, 253, 279, 253, 259, 271.895, 259, 253, 279, 233, 279, 233, 259, 253, 259, 273, 259, 253, 259, 253, 239, 273, 239, 253, 281, 233, 281, 233, 279, 253, 279, 262, 281, 253, 281, 253, 279, 262.875, 279, 277, 246, 276, 246, 273, 255.5, 273, 239, 278.615, 239) +polygons = [PackedInt32Array(106, 102, 103), PackedInt32Array(103, 104, 105), PackedInt32Array(105, 106, 103), PackedInt32Array(112, 107, 108), PackedInt32Array(108, 109, 110), PackedInt32Array(110, 111, 112), PackedInt32Array(112, 108, 110), PackedInt32Array(116, 113, 114), PackedInt32Array(114, 115, 116), PackedInt32Array(123, 117, 118), PackedInt32Array(118, 119, 120), PackedInt32Array(121, 122, 123), PackedInt32Array(123, 118, 120), PackedInt32Array(120, 121, 123), PackedInt32Array(124, 125, 126), PackedInt32Array(127, 128, 124), PackedInt32Array(124, 126, 127), PackedInt32Array(132, 129, 130), PackedInt32Array(130, 131, 132), PackedInt32Array(143, 133, 134), PackedInt32Array(134, 135, 136), PackedInt32Array(137, 138, 139), PackedInt32Array(139, 140, 141), PackedInt32Array(142, 143, 134), PackedInt32Array(134, 136, 137), PackedInt32Array(137, 139, 141), PackedInt32Array(141, 142, 134), PackedInt32Array(134, 137, 141), PackedInt32Array(147, 144, 145), PackedInt32Array(145, 146, 147), PackedInt32Array(151, 148, 149), PackedInt32Array(149, 150, 151), PackedInt32Array(158, 152, 153), PackedInt32Array(153, 154, 155), PackedInt32Array(156, 157, 158), PackedInt32Array(153, 155, 156), PackedInt32Array(156, 158, 153), PackedInt32Array(164, 159, 160), PackedInt32Array(160, 161, 162), PackedInt32Array(162, 163, 164), PackedInt32Array(164, 160, 162), PackedInt32Array(165, 166, 167), PackedInt32Array(167, 168, 169), PackedInt32Array(169, 170, 165), PackedInt32Array(165, 167, 169), PackedInt32Array(179, 171, 172), PackedInt32Array(172, 173, 174), PackedInt32Array(174, 175, 176), PackedInt32Array(176, 177, 178), PackedInt32Array(178, 179, 172), PackedInt32Array(174, 176, 178), PackedInt32Array(178, 172, 174), PackedInt32Array(180, 181, 182), PackedInt32Array(182, 183, 184), PackedInt32Array(184, 185, 180), PackedInt32Array(180, 182, 184), PackedInt32Array(189, 186, 187), PackedInt32Array(187, 188, 189), PackedInt32Array(193, 190, 191), PackedInt32Array(191, 192, 193), PackedInt32Array(197, 194, 195), PackedInt32Array(195, 196, 197), PackedInt32Array(208, 198, 199), PackedInt32Array(200, 201, 202), PackedInt32Array(202, 203, 204), PackedInt32Array(204, 205, 206), PackedInt32Array(206, 207, 208), PackedInt32Array(208, 199, 200), PackedInt32Array(204, 206, 208), PackedInt32Array(208, 200, 202), PackedInt32Array(202, 204, 208), PackedInt32Array(217, 209, 210), PackedInt32Array(211, 212, 213), PackedInt32Array(213, 214, 215), PackedInt32Array(215, 216, 217), PackedInt32Array(211, 213, 215), PackedInt32Array(215, 217, 210), PackedInt32Array(210, 211, 215), PackedInt32Array(220, 218, 219), PackedInt32Array(229, 221, 222), PackedInt32Array(223, 224, 225), PackedInt32Array(225, 226, 227), PackedInt32Array(227, 228, 229), PackedInt32Array(229, 222, 223), PackedInt32Array(223, 225, 227), PackedInt32Array(227, 229, 223), PackedInt32Array(232, 230, 231), PackedInt32Array(238, 233, 234), PackedInt32Array(236, 237, 238), PackedInt32Array(238, 234, 235), PackedInt32Array(235, 236, 238), PackedInt32Array(245, 239, 240), PackedInt32Array(241, 242, 243), PackedInt32Array(243, 244, 245), PackedInt32Array(245, 240, 241), PackedInt32Array(241, 243, 245), PackedInt32Array(249, 246, 247), PackedInt32Array(247, 248, 249), PackedInt32Array(253, 250, 251), PackedInt32Array(251, 252, 253), PackedInt32Array(260, 254, 255), PackedInt32Array(255, 256, 257), PackedInt32Array(257, 258, 259), PackedInt32Array(259, 260, 255), PackedInt32Array(255, 257, 259), PackedInt32Array(264, 261, 262), PackedInt32Array(262, 263, 264), PackedInt32Array(268, 265, 266), PackedInt32Array(266, 267, 268), PackedInt32Array(272, 269, 270), PackedInt32Array(270, 271, 272), PackedInt32Array(276, 273, 274), PackedInt32Array(274, 275, 276), PackedInt32Array(277, 278, 279), PackedInt32Array(279, 280, 281), PackedInt32Array(281, 282, 283), PackedInt32Array(283, 277, 279), PackedInt32Array(279, 281, 283), PackedInt32Array(284, 285, 286), PackedInt32Array(287, 288, 284), PackedInt32Array(284, 286, 287), PackedInt32Array(289, 290, 291), PackedInt32Array(291, 292, 293), PackedInt32Array(293, 294, 295), PackedInt32Array(295, 289, 291), PackedInt32Array(291, 293, 295), PackedInt32Array(296, 297, 298), PackedInt32Array(298, 299, 300), PackedInt32Array(300, 301, 302), PackedInt32Array(302, 303, 304), PackedInt32Array(304, 305, 296), PackedInt32Array(298, 300, 302), PackedInt32Array(302, 304, 296), PackedInt32Array(296, 298, 302), PackedInt32Array(309, 306, 307), PackedInt32Array(307, 308, 309), PackedInt32Array(313, 310, 311), PackedInt32Array(311, 312, 313), PackedInt32Array(317, 314, 315), PackedInt32Array(315, 316, 317), PackedInt32Array(321, 318, 319), PackedInt32Array(319, 320, 321), PackedInt32Array(325, 322, 323), PackedInt32Array(323, 324, 325), PackedInt32Array(329, 326, 327), PackedInt32Array(327, 328, 329), PackedInt32Array(333, 330, 331), PackedInt32Array(331, 332, 333), PackedInt32Array(337, 334, 335), PackedInt32Array(335, 336, 337), PackedInt32Array(342, 338, 339), PackedInt32Array(339, 340, 341), PackedInt32Array(341, 342, 339), PackedInt32Array(343, 344, 345), PackedInt32Array(345, 346, 347), PackedInt32Array(348, 349, 350), PackedInt32Array(343, 345, 347), PackedInt32Array(348, 350, 343), PackedInt32Array(343, 347, 348), PackedInt32Array(358, 351, 352), PackedInt32Array(352, 353, 354), PackedInt32Array(355, 356, 357), PackedInt32Array(358, 352, 354), PackedInt32Array(355, 357, 358), PackedInt32Array(358, 354, 355), PackedInt32Array(366, 359, 360), PackedInt32Array(360, 361, 362), PackedInt32Array(363, 364, 365), PackedInt32Array(360, 362, 363), PackedInt32Array(363, 365, 366), PackedInt32Array(366, 360, 363), PackedInt32Array(370, 367, 368), PackedInt32Array(368, 369, 370), PackedInt32Array(376, 371, 372), PackedInt32Array(372, 373, 374), PackedInt32Array(374, 375, 376), PackedInt32Array(376, 372, 374), PackedInt32Array(380, 377, 378), PackedInt32Array(378, 379, 380), PackedInt32Array(381, 382, 383), PackedInt32Array(383, 384, 385), PackedInt32Array(385, 381, 383), PackedInt32Array(390, 386, 387), PackedInt32Array(387, 388, 389), PackedInt32Array(389, 390, 387), PackedInt32Array(394, 391, 392), PackedInt32Array(392, 393, 394), PackedInt32Array(398, 395, 396), PackedInt32Array(396, 397, 398), PackedInt32Array(402, 399, 400), PackedInt32Array(400, 401, 402), PackedInt32Array(414, 403, 404), PackedInt32Array(405, 406, 407), PackedInt32Array(408, 409, 410), PackedInt32Array(410, 411, 412), PackedInt32Array(413, 414, 404), PackedInt32Array(405, 407, 408), PackedInt32Array(408, 410, 412), PackedInt32Array(412, 413, 404), PackedInt32Array(404, 405, 408), PackedInt32Array(408, 412, 404), PackedInt32Array(418, 415, 416), PackedInt32Array(416, 417, 418), PackedInt32Array(424, 419, 420), PackedInt32Array(420, 421, 422), PackedInt32Array(422, 423, 424), PackedInt32Array(424, 420, 422), PackedInt32Array(428, 425, 426), PackedInt32Array(426, 427, 428), PackedInt32Array(432, 429, 430), PackedInt32Array(430, 431, 432), PackedInt32Array(436, 433, 434), PackedInt32Array(434, 435, 436), PackedInt32Array(444, 437, 438), PackedInt32Array(439, 440, 441), PackedInt32Array(443, 444, 438), PackedInt32Array(439, 441, 442), PackedInt32Array(442, 443, 438), PackedInt32Array(438, 439, 442), PackedInt32Array(448, 445, 446), PackedInt32Array(446, 447, 448), PackedInt32Array(452, 449, 450), PackedInt32Array(450, 451, 452), PackedInt32Array(456, 453, 454), PackedInt32Array(454, 455, 456), PackedInt32Array(460, 457, 458), PackedInt32Array(458, 459, 460), PackedInt32Array(464, 461, 462), PackedInt32Array(462, 463, 464), PackedInt32Array(468, 465, 466), PackedInt32Array(466, 467, 468), PackedInt32Array(472, 469, 470), PackedInt32Array(470, 471, 472), PackedInt32Array(476, 473, 474), PackedInt32Array(474, 475, 476), PackedInt32Array(480, 477, 478), PackedInt32Array(478, 479, 480), PackedInt32Array(484, 481, 482), PackedInt32Array(482, 483, 484), PackedInt32Array(488, 485, 486), PackedInt32Array(486, 487, 488), PackedInt32Array(492, 489, 490), PackedInt32Array(490, 491, 492), PackedInt32Array(496, 493, 494), PackedInt32Array(494, 495, 496), PackedInt32Array(500, 497, 498), PackedInt32Array(498, 499, 500), PackedInt32Array(504, 501, 502), PackedInt32Array(502, 503, 504), PackedInt32Array(508, 505, 506), PackedInt32Array(506, 507, 508), PackedInt32Array(509, 510, 511), PackedInt32Array(513, 514, 515), PackedInt32Array(515, 516, 509), PackedInt32Array(509, 511, 512), PackedInt32Array(513, 515, 509), PackedInt32Array(509, 512, 513), PackedInt32Array(520, 517, 518), PackedInt32Array(518, 519, 520), PackedInt32Array(530, 521, 522), PackedInt32Array(523, 524, 525), PackedInt32Array(526, 527, 528), PackedInt32Array(528, 529, 530), PackedInt32Array(530, 522, 523), PackedInt32Array(523, 525, 526), PackedInt32Array(526, 528, 530), PackedInt32Array(530, 523, 526), PackedInt32Array(534, 531, 532), PackedInt32Array(532, 533, 534), PackedInt32Array(538, 535, 536), PackedInt32Array(536, 537, 538), PackedInt32Array(542, 539, 540), PackedInt32Array(540, 541, 542), PackedInt32Array(548, 543, 544), PackedInt32Array(545, 546, 547), PackedInt32Array(547, 548, 544), PackedInt32Array(544, 545, 547), PackedInt32Array(552, 549, 550), PackedInt32Array(550, 551, 552), PackedInt32Array(553, 554, 555), PackedInt32Array(555, 556, 557), PackedInt32Array(557, 553, 555), PackedInt32Array(558, 559, 560), PackedInt32Array(560, 561, 562), PackedInt32Array(562, 563, 564), PackedInt32Array(564, 565, 558), PackedInt32Array(560, 562, 564), PackedInt32Array(564, 558, 560), PackedInt32Array(577, 566, 567), PackedInt32Array(569, 570, 571), PackedInt32Array(572, 573, 574), PackedInt32Array(574, 575, 576), PackedInt32Array(577, 567, 568), PackedInt32Array(568, 569, 571), PackedInt32Array(571, 572, 574), PackedInt32Array(574, 576, 577), PackedInt32Array(577, 568, 571), PackedInt32Array(571, 574, 577), PackedInt32Array(588, 578, 579), PackedInt32Array(580, 581, 582), PackedInt32Array(583, 584, 585), PackedInt32Array(585, 586, 587), PackedInt32Array(588, 579, 580), PackedInt32Array(580, 582, 583), PackedInt32Array(583, 585, 587), PackedInt32Array(587, 588, 580), PackedInt32Array(580, 583, 587), PackedInt32Array(591, 589, 590), PackedInt32Array(595, 592, 593), PackedInt32Array(593, 594, 595), PackedInt32Array(606, 596, 597), PackedInt32Array(597, 598, 599), PackedInt32Array(599, 600, 601), PackedInt32Array(601, 602, 603), PackedInt32Array(603, 604, 605), PackedInt32Array(605, 606, 597), PackedInt32Array(597, 599, 601), PackedInt32Array(601, 603, 605), PackedInt32Array(605, 597, 601), PackedInt32Array(610, 607, 608), PackedInt32Array(608, 609, 610), PackedInt32Array(614, 611, 612), PackedInt32Array(612, 613, 614), PackedInt32Array(619, 615, 616), PackedInt32Array(616, 617, 618), PackedInt32Array(618, 619, 616), PackedInt32Array(627, 620, 621), PackedInt32Array(622, 623, 624), PackedInt32Array(624, 625, 626), PackedInt32Array(626, 627, 621), PackedInt32Array(622, 624, 626), PackedInt32Array(626, 621, 622), PackedInt32Array(637, 628, 629), PackedInt32Array(629, 630, 631), PackedInt32Array(633, 634, 635), PackedInt32Array(636, 637, 629), PackedInt32Array(629, 631, 632), PackedInt32Array(633, 635, 636), PackedInt32Array(636, 629, 632), PackedInt32Array(632, 633, 636), PackedInt32Array(638, 639, 640), PackedInt32Array(640, 641, 642), PackedInt32Array(642, 643, 644), PackedInt32Array(638, 640, 642), PackedInt32Array(642, 644, 638), PackedInt32Array(648, 645, 646), PackedInt32Array(646, 647, 648), PackedInt32Array(653, 649, 650), PackedInt32Array(650, 651, 652), PackedInt32Array(652, 653, 650), PackedInt32Array(659, 654, 655), PackedInt32Array(655, 656, 657), PackedInt32Array(658, 659, 655), PackedInt32Array(655, 657, 658), PackedInt32Array(668, 660, 661), PackedInt32Array(661, 662, 663), PackedInt32Array(663, 664, 665), PackedInt32Array(665, 666, 667), PackedInt32Array(667, 668, 661), PackedInt32Array(661, 663, 665), PackedInt32Array(665, 667, 661), PackedInt32Array(676, 669, 670), PackedInt32Array(670, 671, 672), PackedInt32Array(672, 673, 674), PackedInt32Array(674, 675, 676), PackedInt32Array(676, 670, 672), PackedInt32Array(672, 674, 676), PackedInt32Array(680, 677, 678), PackedInt32Array(678, 679, 680), PackedInt32Array(685, 681, 682), PackedInt32Array(683, 684, 685), PackedInt32Array(685, 682, 683), PackedInt32Array(689, 686, 687), PackedInt32Array(687, 688, 689), PackedInt32Array(696, 690, 691), PackedInt32Array(691, 692, 693), PackedInt32Array(693, 694, 695), PackedInt32Array(695, 696, 691), PackedInt32Array(691, 693, 695), PackedInt32Array(700, 697, 698), PackedInt32Array(698, 699, 700), PackedInt32Array(704, 701, 702), PackedInt32Array(702, 703, 704), PackedInt32Array(708, 705, 706), PackedInt32Array(706, 707, 708), PackedInt32Array(712, 709, 710), PackedInt32Array(710, 711, 712), PackedInt32Array(718, 713, 714), PackedInt32Array(714, 715, 716), PackedInt32Array(716, 717, 718), PackedInt32Array(718, 714, 716), PackedInt32Array(722, 719, 720), PackedInt32Array(720, 721, 722), PackedInt32Array(726, 723, 724), PackedInt32Array(724, 725, 726), PackedInt32Array(732, 727, 728), PackedInt32Array(728, 729, 730), PackedInt32Array(730, 731, 732), PackedInt32Array(732, 728, 730), PackedInt32Array(736, 733, 734), PackedInt32Array(734, 735, 736), PackedInt32Array(746, 737, 738), PackedInt32Array(738, 739, 740), PackedInt32Array(741, 742, 743), PackedInt32Array(743, 744, 745), PackedInt32Array(738, 740, 741), PackedInt32Array(743, 745, 746), PackedInt32Array(746, 738, 741), PackedInt32Array(741, 743, 746), PackedInt32Array(750, 747, 748), PackedInt32Array(748, 749, 750), PackedInt32Array(753, 751, 752), PackedInt32Array(759, 754, 755), PackedInt32Array(755, 756, 757), PackedInt32Array(757, 758, 759), PackedInt32Array(759, 755, 757), PackedInt32Array(765, 760, 761), PackedInt32Array(761, 762, 763), PackedInt32Array(764, 765, 761), PackedInt32Array(761, 763, 764), PackedInt32Array(769, 766, 767), PackedInt32Array(767, 768, 769), PackedInt32Array(775, 770, 771), PackedInt32Array(771, 772, 773), PackedInt32Array(773, 774, 775), PackedInt32Array(775, 771, 773), PackedInt32Array(779, 776, 777), PackedInt32Array(777, 778, 779), PackedInt32Array(783, 780, 781), PackedInt32Array(781, 782, 783), PackedInt32Array(787, 784, 785), PackedInt32Array(785, 786, 787), PackedInt32Array(791, 788, 789), PackedInt32Array(789, 790, 791), PackedInt32Array(796, 792, 793), PackedInt32Array(793, 794, 795), PackedInt32Array(795, 796, 793)] +bones = ["Bone-0", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-1", PackedFloat32Array(1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-2", PackedFloat32Array(0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-3", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-4", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-5", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-6", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-7", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-8", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-9", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-10", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-11", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-12", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 1, 1, 0, 0, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-13", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-14", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-15", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-16", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-17", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-18", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-19", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-20", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-21", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-22", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-23", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-24", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-25", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-26", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-27", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-28", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1), "Bone-29", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1)] +internal_vertex_count = 695 +script = ExtResource("2_4mj6g") +vertex_interval = 40 +exclude_texture = ExtResource("3_n8j03") +radius = 40 +gravity_scale = 2.08167e-17 +rigidbody_scene = ExtResource("4_13lkq") + +[node name="Skeleton2D" type="Skeleton2D" parent="FloatingSoftbody2D"] +visible = false +modification_stack = SubResource("SkeletonModificationStack2D_h8j1j") + +[node name="Bone-0" type="Bone2D" parent="FloatingSoftbody2D/Skeleton2D"] +position = Vector2(23, 99) +rest = Transform2D(1, 0, 0, 1, 23, 99) +auto_calculate_length_and_angle = false +length = 40.0 +bone_angle = 0.0 +metadata/vert_owned = [102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112] +metadata/idx = 0 +metadata/connected_nodes_paths = [NodePath("Bone-4"), NodePath("Bone-3"), NodePath("Bone-2")] +metadata/connected_nodes_idx = [4, 3, 2] +metadata/_local_pose_override_enabled_ = true + +[node name="Bone-1" type="Bone2D" parent="FloatingSoftbody2D/Skeleton2D"] +position = Vector2(50.2647, 29) +rest = Transform2D(1, 0, 0, 1, 50.2647, 29) +auto_calculate_length_and_angle = false +length = 40.0 +bone_angle = 0.0 +metadata/vert_owned = [113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128] +metadata/idx = 1 +metadata/connected_nodes_paths = [NodePath("Bone-2"), NodePath("Bone-6"), NodePath("Bone-7")] +metadata/connected_nodes_idx = [2, 6, 7] +metadata/_local_pose_override_enabled_ = true + +[node name="Bone-2" type="Bone2D" parent="FloatingSoftbody2D/Skeleton2D"] +position = Vector2(44, 59) +rotation = -1.36493 +scale = Vector2(1, 1) +rest = Transform2D(0.204414, -0.978884, 0.978884, 0.204414, 44, 59) +auto_calculate_length_and_angle = false +length = 40.0 +bone_angle = 0.0 +metadata/vert_owned = [129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164] +metadata/idx = 2 +metadata/connected_nodes_paths = [NodePath("Bone-0"), NodePath("Bone-3"), NodePath("Bone-1"), NodePath("Bone-6"), NodePath("Bone-7")] +metadata/connected_nodes_idx = [0, 3, 1, 6, 7] +metadata/_local_pose_override_enabled_ = true + +[node name="Bone-3" type="Bone2D" parent="FloatingSoftbody2D/Skeleton2D"] +position = Vector2(47, 99) +rotation = 1.63736 +scale = Vector2(1, 1) +rest = Transform2D(-0.0665188, 0.997785, -0.997785, -0.0665188, 47, 99) +auto_calculate_length_and_angle = false +length = 40.0 +bone_angle = 0.0 +metadata/vert_owned = [165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189] +metadata/idx = 3 +metadata/connected_nodes_paths = [NodePath("Bone-0"), NodePath("Bone-4"), NodePath("Bone-2")] +metadata/connected_nodes_idx = [0, 4, 2] +metadata/_local_pose_override_enabled_ = true + +[node name="Bone-4" type="Bone2D" parent="FloatingSoftbody2D/Skeleton2D"] +position = Vector2(44.3333, 139) +rotation = 1.17601 +rest = Transform2D(0.384615, 0.923077, -0.923077, 0.384615, 44.3333, 139) +auto_calculate_length_and_angle = false +length = 40.0 +bone_angle = 0.0 +metadata/vert_owned = [190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229] +metadata/idx = 4 +metadata/connected_nodes_paths = [NodePath("Bone-0"), NodePath("Bone-3"), NodePath("Bone-5"), NodePath("Bone-8")] +metadata/connected_nodes_idx = [0, 3, 5, 8] +metadata/_local_pose_override_enabled_ = true + +[node name="Bone-5" type="Bone2D" parent="FloatingSoftbody2D/Skeleton2D"] +position = Vector2(61, 179) +rotation = 1.60828 +rest = Transform2D(-0.0374736, 0.999298, -0.999298, -0.0374736, 61, 179) +auto_calculate_length_and_angle = false +length = 40.0 +bone_angle = 0.0 +metadata/vert_owned = [230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245] +metadata/idx = 5 +metadata/connected_nodes_paths = [NodePath("Bone-4"), NodePath("Bone-8"), NodePath("Bone-13"), NodePath("Bone-15")] +metadata/connected_nodes_idx = [4, 8, 13, 15] +metadata/_local_pose_override_enabled_ = true + +[node name="Bone-6" type="Bone2D" parent="FloatingSoftbody2D/Skeleton2D"] +position = Vector2(93, 29) +rotation = 1.5708 +rest = Transform2D(-4.37114e-08, 1, -1, -4.37114e-08, 93, 29) +auto_calculate_length_and_angle = false +length = 40.0 +bone_angle = 0.0 +metadata/vert_owned = [246, 247, 248, 249, 250, 251, 252, 253] +metadata/idx = 6 +metadata/connected_nodes_paths = [NodePath("Bone-1"), NodePath("Bone-2"), NodePath("Bone-7"), NodePath("Bone-9"), NodePath("Bone-10")] +metadata/connected_nodes_idx = [1, 2, 7, 9, 10] +metadata/_local_pose_override_enabled_ = true + +[node name="Bone-7" type="Bone2D" parent="FloatingSoftbody2D/Skeleton2D"] +position = Vector2(93, 49) +rotation = -1.5708 +rest = Transform2D(-4.37114e-08, -1, 1, -4.37114e-08, 93, 49) +auto_calculate_length_and_angle = false +length = 40.0 +bone_angle = 0.0 +metadata/vert_owned = [254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264] +metadata/idx = 7 +metadata/connected_nodes_paths = [NodePath("Bone-1"), NodePath("Bone-2"), NodePath("Bone-6"), NodePath("Bone-9"), NodePath("Bone-10")] +metadata/connected_nodes_idx = [1, 2, 6, 9, 10] +metadata/_local_pose_override_enabled_ = true + +[node name="Bone-8" type="Bone2D" parent="FloatingSoftbody2D/Skeleton2D"] +position = Vector2(89.5, 163.45) +rotation = 2.06597 +rest = Transform2D(-0.475186, 0.879885, -0.879885, -0.475186, 89.5, 163.45) +auto_calculate_length_and_angle = false +length = 40.0 +bone_angle = 0.0 +metadata/vert_owned = [265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305] +metadata/idx = 8 +metadata/connected_nodes_paths = [NodePath("Bone-4"), NodePath("Bone-5"), NodePath("Bone-13"), NodePath("Bone-15")] +metadata/connected_nodes_idx = [4, 5, 13, 15] +metadata/_local_pose_override_enabled_ = true + +[node name="Bone-9" type="Bone2D" parent="FloatingSoftbody2D/Skeleton2D"] +position = Vector2(133, 29) +rotation = 1.5708 +rest = Transform2D(-4.37114e-08, 1, -1, -4.37114e-08, 133, 29) +auto_calculate_length_and_angle = false +length = 40.0 +bone_angle = 0.0 +metadata/vert_owned = [306, 307, 308, 309, 310, 311, 312, 313] +metadata/idx = 9 +metadata/connected_nodes_paths = [NodePath("Bone-6"), NodePath("Bone-7"), NodePath("Bone-10"), NodePath("Bone-11"), NodePath("Bone-12")] +metadata/connected_nodes_idx = [6, 7, 10, 11, 12] +metadata/_local_pose_override_enabled_ = true + +[node name="Bone-10" type="Bone2D" parent="FloatingSoftbody2D/Skeleton2D"] +position = Vector2(133, 48) +rotation = -1.5708 +rest = Transform2D(-4.37114e-08, -1, 1, -4.37114e-08, 133, 48) +auto_calculate_length_and_angle = false +length = 40.0 +bone_angle = 0.0 +metadata/vert_owned = [314, 315, 316, 317, 318, 319, 320, 321] +metadata/idx = 10 +metadata/connected_nodes_paths = [NodePath("Bone-6"), NodePath("Bone-7"), NodePath("Bone-9"), NodePath("Bone-11"), NodePath("Bone-12")] +metadata/connected_nodes_idx = [6, 7, 9, 11, 12] +metadata/_local_pose_override_enabled_ = true + +[node name="Bone-11" type="Bone2D" parent="FloatingSoftbody2D/Skeleton2D"] +position = Vector2(173, 29) +rotation = 1.5708 +rest = Transform2D(-4.37114e-08, 1, -1, -4.37114e-08, 173, 29) +auto_calculate_length_and_angle = false +length = 40.0 +bone_angle = 0.0 +metadata/vert_owned = [322, 323, 324, 325, 326, 327, 328, 329] +metadata/idx = 11 +metadata/connected_nodes_paths = [NodePath("Bone-9"), NodePath("Bone-10"), NodePath("Bone-12"), NodePath("Bone-19"), NodePath("Bone-20")] +metadata/connected_nodes_idx = [9, 10, 12, 19, 20] +metadata/_local_pose_override_enabled_ = true + +[node name="Bone-12" type="Bone2D" parent="FloatingSoftbody2D/Skeleton2D"] +position = Vector2(173, 48) +rotation = -1.5708 +rest = Transform2D(-4.37114e-08, -1, 1, -4.37114e-08, 173, 48) +auto_calculate_length_and_angle = false +length = 40.0 +bone_angle = 0.0 +metadata/vert_owned = [330, 331, 332, 333, 334, 335, 336, 337] +metadata/idx = 12 +metadata/connected_nodes_paths = [NodePath("Bone-9"), NodePath("Bone-10"), NodePath("Bone-11"), NodePath("Bone-19"), NodePath("Bone-20")] +metadata/connected_nodes_idx = [9, 10, 11, 19, 20] +metadata/_local_pose_override_enabled_ = true + +[node name="Bone-13" type="Bone2D" parent="FloatingSoftbody2D/Skeleton2D"] +position = Vector2(59.5, 219) +rotation = -1.07562 +rest = Transform2D(0.475186, -0.879885, 0.879885, 0.475186, 59.5, 219) +auto_calculate_length_and_angle = false +length = 40.0 +bone_angle = 0.0 +metadata/vert_owned = [338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358] +metadata/idx = 13 +metadata/connected_nodes_paths = [NodePath("Bone-14"), NodePath("Bone-5"), NodePath("Bone-8"), NodePath("Bone-15"), NodePath("Bone-16")] +metadata/connected_nodes_idx = [14, 5, 8, 15, 16] +metadata/_local_pose_override_enabled_ = true + +[node name="Bone-14" type="Bone2D" parent="FloatingSoftbody2D/Skeleton2D"] +position = Vector2(46.5, 260) +rotation = -0.761593 +rest = Transform2D(0.723738, -0.690075, 0.690075, 0.723738, 46.5, 260) +auto_calculate_length_and_angle = false +length = 40.0 +bone_angle = 0.0 +metadata/vert_owned = [359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398] +metadata/idx = 14 +metadata/connected_nodes_paths = [NodePath("Bone-13"), NodePath("Bone-15"), NodePath("Bone-16")] +metadata/connected_nodes_idx = [13, 15, 16] +metadata/_local_pose_override_enabled_ = true + +[node name="Bone-15" type="Bone2D" parent="FloatingSoftbody2D/Skeleton2D"] +position = Vector2(89.5, 219) +rotation = 3.14159 +rest = Transform2D(-1, 1.50996e-07, -1.50996e-07, -1, 89.5, 219) +auto_calculate_length_and_angle = false +length = 40.0 +bone_angle = 0.0 +metadata/vert_owned = [399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424] +metadata/idx = 15 +metadata/connected_nodes_paths = [NodePath("Bone-5"), NodePath("Bone-8"), NodePath("Bone-13"), NodePath("Bone-14"), NodePath("Bone-16")] +metadata/connected_nodes_idx = [5, 8, 13, 14, 16] +metadata/_local_pose_override_enabled_ = true + +[node name="Bone-16" type="Bone2D" parent="FloatingSoftbody2D/Skeleton2D"] +position = Vector2(93, 260) +rotation = -1.65596 +rest = Transform2D(-0.0850565, -0.996376, 0.996376, -0.0850565, 93, 260) +auto_calculate_length_and_angle = false +length = 40.0 +bone_angle = 0.0 +metadata/vert_owned = [425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452] +metadata/idx = 16 +metadata/connected_nodes_paths = [NodePath("Bone-13"), NodePath("Bone-14"), NodePath("Bone-15"), NodePath("Bone-17")] +metadata/connected_nodes_idx = [13, 14, 15, 17] +metadata/_local_pose_override_enabled_ = true + +[node name="Bone-17" type="Bone2D" parent="FloatingSoftbody2D/Skeleton2D"] +position = Vector2(133, 262) +rest = Transform2D(1, 0, 0, 1, 133, 262) +auto_calculate_length_and_angle = false +length = 40.0 +bone_angle = 0.0 +metadata/vert_owned = [453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476] +metadata/idx = 17 +metadata/connected_nodes_paths = [NodePath("Bone-16"), NodePath("Bone-18")] +metadata/connected_nodes_idx = [16, 18] +metadata/_local_pose_override_enabled_ = true + +[node name="Bone-18" type="Bone2D" parent="FloatingSoftbody2D/Skeleton2D"] +position = Vector2(173, 262) +rotation = -0.0499584 +rest = Transform2D(0.998752, -0.0499376, 0.0499376, 0.998752, 173, 262) +auto_calculate_length_and_angle = false +length = 40.0 +bone_angle = 0.0 +metadata/vert_owned = [477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500] +metadata/idx = 18 +metadata/connected_nodes_paths = [NodePath("Bone-17"), NodePath("Bone-27")] +metadata/connected_nodes_idx = [17, 27] +metadata/_local_pose_override_enabled_ = true + +[node name="Bone-19" type="Bone2D" parent="FloatingSoftbody2D/Skeleton2D"] +position = Vector2(213, 29) +rotation = 1.5708 +rest = Transform2D(-4.37114e-08, 1, -1, -4.37114e-08, 213, 29) +auto_calculate_length_and_angle = false +length = 40.0 +bone_angle = 0.0 +metadata/vert_owned = [501, 502, 503, 504, 505, 506, 507, 508] +metadata/idx = 19 +metadata/connected_nodes_paths = [NodePath("Bone-11"), NodePath("Bone-12"), NodePath("Bone-20"), NodePath("Bone-23"), NodePath("Bone-24")] +metadata/connected_nodes_idx = [11, 12, 20, 23, 24] +metadata/_local_pose_override_enabled_ = true + +[node name="Bone-20" type="Bone2D" parent="FloatingSoftbody2D/Skeleton2D"] +position = Vector2(213, 59) +rotation = -0.603749 +rest = Transform2D(0.823213, -0.567733, 0.567733, 0.823213, 213, 59) +auto_calculate_length_and_angle = false +length = 40.0 +bone_angle = 0.0 +metadata/vert_owned = [509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534] +metadata/idx = 20 +metadata/connected_nodes_paths = [NodePath("Bone-11"), NodePath("Bone-12"), NodePath("Bone-19"), NodePath("Bone-23"), NodePath("Bone-24"), NodePath("Bone-21")] +metadata/connected_nodes_idx = [11, 12, 19, 23, 24, 21] +metadata/_local_pose_override_enabled_ = true + +[node name="Bone-21" type="Bone2D" parent="FloatingSoftbody2D/Skeleton2D"] +position = Vector2(221.778, 99) +rotation = -0.977524 +rest = Transform2D(0.559077, -0.829116, 0.829116, 0.559077, 221.778, 99) +auto_calculate_length_and_angle = false +length = 40.0 +bone_angle = 0.0 +metadata/vert_owned = [535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565] +metadata/idx = 21 +metadata/connected_nodes_paths = [NodePath("Bone-25"), NodePath("Bone-20"), NodePath("Bone-24"), NodePath("Bone-22")] +metadata/connected_nodes_idx = [25, 20, 24, 22] +metadata/_local_pose_override_enabled_ = true + +[node name="Bone-22" type="Bone2D" parent="FloatingSoftbody2D/Skeleton2D"] +position = Vector2(215.1, 138.438) +rotation = 0.0131111 +rest = Transform2D(0.999914, 0.0131108, -0.0131108, 0.999914, 215.1, 138.438) +auto_calculate_length_and_angle = false +length = 40.0 +bone_angle = 0.0 +metadata/vert_owned = [566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595] +metadata/idx = 22 +metadata/connected_nodes_paths = [NodePath("Bone-21"), NodePath("Bone-25")] +metadata/connected_nodes_idx = [21, 25] +metadata/_local_pose_override_enabled_ = true + +[node name="Bone-23" type="Bone2D" parent="FloatingSoftbody2D/Skeleton2D"] +position = Vector2(256.5, 29) +rotation = 3.14159 +rest = Transform2D(-1, 1.50996e-07, -1.50996e-07, -1, 256.5, 29) +auto_calculate_length_and_angle = false +length = 40.0 +bone_angle = 0.0 +metadata/vert_owned = [596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614] +metadata/idx = 23 +metadata/connected_nodes_paths = [NodePath("Bone-24"), NodePath("Bone-19"), NodePath("Bone-20")] +metadata/connected_nodes_idx = [24, 19, 20] +metadata/_local_pose_override_enabled_ = true + +[node name="Bone-24" type="Bone2D" parent="FloatingSoftbody2D/Skeleton2D"] +position = Vector2(248.75, 59) +rotation = 3.14159 +rest = Transform2D(-1, 1.50996e-07, -1.50996e-07, -1, 248.75, 59) +auto_calculate_length_and_angle = false +length = 40.0 +bone_angle = 0.0 +metadata/vert_owned = [615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637] +metadata/idx = 24 +metadata/connected_nodes_paths = [NodePath("Bone-23"), NodePath("Bone-19"), NodePath("Bone-20"), NodePath("Bone-21")] +metadata/connected_nodes_idx = [23, 19, 20, 21] +metadata/_local_pose_override_enabled_ = true + +[node name="Bone-25" type="Bone2D" parent="FloatingSoftbody2D/Skeleton2D"] +position = Vector2(258, 139) +rotation = -3.12848 +rest = Transform2D(-0.999914, -0.0131107, 0.0131107, -0.999914, 258, 139) +auto_calculate_length_and_angle = false +length = 40.0 +bone_angle = 0.0 +metadata/vert_owned = [638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668] +metadata/idx = 25 +metadata/connected_nodes_paths = [NodePath("Bone-21"), NodePath("Bone-22"), NodePath("Bone-26")] +metadata/connected_nodes_idx = [21, 22, 26] +metadata/_local_pose_override_enabled_ = true + +[node name="Bone-26" type="Bone2D" parent="FloatingSoftbody2D/Skeleton2D"] +position = Vector2(260.643, 179) +rotation = 1.65003 +rest = Transform2D(-0.0791545, 0.996862, -0.996862, -0.0791545, 260.643, 179) +auto_calculate_length_and_angle = false +length = 40.0 +bone_angle = 0.0 +metadata/vert_owned = [669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700] +metadata/idx = 26 +metadata/connected_nodes_paths = [NodePath("Bone-25"), NodePath("Bone-28")] +metadata/connected_nodes_idx = [25, 28] +metadata/_local_pose_override_enabled_ = true + +[node name="Bone-27" type="Bone2D" parent="FloatingSoftbody2D/Skeleton2D"] +position = Vector2(213, 260) +rest = Transform2D(1, 0, 0, 1, 213, 260) +auto_calculate_length_and_angle = false +length = 40.0 +bone_angle = 0.0 +metadata/vert_owned = [701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726] +metadata/idx = 27 +metadata/connected_nodes_paths = [NodePath("Bone-18"), NodePath("Bone-29"), NodePath("Bone-28")] +metadata/connected_nodes_idx = [18, 29, 28] +metadata/_local_pose_override_enabled_ = true + +[node name="Bone-28" type="Bone2D" parent="FloatingSoftbody2D/Skeleton2D"] +position = Vector2(257.467, 219) +rotation = 2.39673 +scale = Vector2(1, 1) +rest = Transform2D(-0.735184, 0.677868, -0.677868, -0.735184, 257.467, 219) +auto_calculate_length_and_angle = false +length = 40.0 +bone_angle = 0.0 +metadata/vert_owned = [727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765] +metadata/idx = 28 +metadata/connected_nodes_paths = [NodePath("Bone-26"), NodePath("Bone-27"), NodePath("Bone-29")] +metadata/connected_nodes_idx = [26, 27, 29] +metadata/_local_pose_override_enabled_ = true + +[node name="Bone-29" type="Bone2D" parent="FloatingSoftbody2D/Skeleton2D"] +position = Vector2(255.808, 260) +rotation = -1.53036 +scale = Vector2(1, 1) +rest = Transform2D(0.0404302, -0.999182, 0.999182, 0.0404302, 255.808, 260) +auto_calculate_length_and_angle = false +length = 40.0 +bone_angle = 0.0 +metadata/vert_owned = [766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796] +metadata/idx = 29 +metadata/connected_nodes_paths = [NodePath("Bone-27"), NodePath("Bone-28")] +metadata/connected_nodes_idx = [27, 28] +metadata/_local_pose_override_enabled_ = true + +[node name="Bone-0" type="RigidBody2D" parent="FloatingSoftbody2D" instance=ExtResource("4_13lkq")] +position = Vector2(23, 99) +input_pickable = true +mass = 0.0333333 +gravity_scale = 2.08167e-17 +script = ExtResource("7_lk74m") +metadata/idx = 0 +metadata/bone_name = &"Bone-0" + +[node name="CircleShape2D" type="CollisionShape2D" parent="FloatingSoftbody2D/Bone-0"] +shape = SubResource("CircleShape2D_600mi") + +[node name="RemoteTransform2D" type="RemoteTransform2D" parent="FloatingSoftbody2D/Bone-0"] +visible = false +remote_path = NodePath("../../Skeleton2D/Bone-0") +update_rotation = false +update_scale = false + +[node name="Joint2D-Bone-0-Bone-4" type="PinJoint2D" parent="FloatingSoftbody2D/Bone-0"] +visible = false +rotation = -0.489957 +node_a = NodePath("..") +node_b = NodePath("../../Bone-4") +softness = 60.0 + +[node name="Joint2D-Bone-0-Bone-3" type="PinJoint2D" parent="FloatingSoftbody2D/Bone-0"] +visible = false +rotation = -1.5708 +node_a = NodePath("..") +node_b = NodePath("../../Bone-3") +softness = 60.0 + +[node name="Joint2D-Bone-0-Bone-2" type="PinJoint2D" parent="FloatingSoftbody2D/Bone-0"] +visible = false +rotation = -2.65815 +node_a = NodePath("..") +node_b = NodePath("../../Bone-2") +softness = 60.0 + +[node name="Bone-1" type="RigidBody2D" parent="FloatingSoftbody2D" instance=ExtResource("4_13lkq")] +position = Vector2(50.2647, 29) +input_pickable = true +mass = 0.0333333 +gravity_scale = 2.08167e-17 +script = ExtResource("7_lk74m") +metadata/idx = 1 +metadata/bone_name = &"Bone-1" + +[node name="CircleShape2D" type="CollisionShape2D" parent="FloatingSoftbody2D/Bone-1"] +shape = SubResource("CircleShape2D_600mi") + +[node name="RemoteTransform2D" type="RemoteTransform2D" parent="FloatingSoftbody2D/Bone-1"] +visible = false +remote_path = NodePath("../../Skeleton2D/Bone-1") +update_rotation = false +update_scale = false + +[node name="Joint2D-Bone-1-Bone-2" type="PinJoint2D" parent="FloatingSoftbody2D/Bone-1"] +visible = false +rotation = 0.205865 +node_a = NodePath("..") +node_b = NodePath("../../Bone-2") +softness = 60.0 + +[node name="Joint2D-Bone-1-Bone-6" type="PinJoint2D" parent="FloatingSoftbody2D/Bone-1"] +visible = false +rotation = -1.5708 +node_a = NodePath("..") +node_b = NodePath("../../Bone-6") +softness = 60.0 + +[node name="Joint2D-Bone-1-Bone-7" type="PinJoint2D" parent="FloatingSoftbody2D/Bone-1"] +visible = false +rotation = -1.13308 +node_a = NodePath("..") +node_b = NodePath("../../Bone-7") +softness = 60.0 + +[node name="Bone-2" type="RigidBody2D" parent="FloatingSoftbody2D" instance=ExtResource("4_13lkq")] +position = Vector2(44, 59) +input_pickable = true +mass = 0.0333333 +gravity_scale = 2.08167e-17 +script = ExtResource("7_lk74m") +metadata/idx = 2 +metadata/bone_name = &"Bone-2" + +[node name="CircleShape2D" type="CollisionShape2D" parent="FloatingSoftbody2D/Bone-2"] +shape = SubResource("CircleShape2D_600mi") + +[node name="RemoteTransform2D" type="RemoteTransform2D" parent="FloatingSoftbody2D/Bone-2"] +visible = false +remote_path = NodePath("../../Skeleton2D/Bone-2") +update_rotation = false +update_scale = false + +[node name="Joint2D-Bone-2-Bone-0" type="PinJoint2D" parent="FloatingSoftbody2D/Bone-2"] +visible = false +rotation = 0.483447 +node_a = NodePath("..") +node_b = NodePath("../../Bone-0") +softness = 60.0 + +[node name="Joint2D-Bone-2-Bone-3" type="PinJoint2D" parent="FloatingSoftbody2D/Bone-2"] +visible = false +rotation = -0.0748598 +node_a = NodePath("..") +node_b = NodePath("../../Bone-3") +softness = 60.0 + +[node name="Joint2D-Bone-2-Bone-1" type="PinJoint2D" parent="FloatingSoftbody2D/Bone-2"] +visible = false +rotation = -2.93573 +node_a = NodePath("..") +node_b = NodePath("../../Bone-1") +softness = 60.0 + +[node name="Joint2D-Bone-2-Bone-6" type="PinJoint2D" parent="FloatingSoftbody2D/Bone-2"] +visible = false +rotation = -2.12017 +node_a = NodePath("..") +node_b = NodePath("../../Bone-6") +softness = 60.0 + +[node name="Joint2D-Bone-2-Bone-7" type="PinJoint2D" parent="FloatingSoftbody2D/Bone-2"] +visible = false +rotation = -1.77211 +node_a = NodePath("..") +node_b = NodePath("../../Bone-7") +softness = 60.0 + +[node name="Bone-3" type="RigidBody2D" parent="FloatingSoftbody2D" instance=ExtResource("4_13lkq")] +position = Vector2(47, 99) +input_pickable = true +mass = 0.0333333 +gravity_scale = 2.08167e-17 +script = ExtResource("7_lk74m") +metadata/idx = 3 +metadata/bone_name = &"Bone-3" + +[node name="CircleShape2D" type="CollisionShape2D" parent="FloatingSoftbody2D/Bone-3"] +shape = SubResource("CircleShape2D_600mi") + +[node name="RemoteTransform2D" type="RemoteTransform2D" parent="FloatingSoftbody2D/Bone-3"] +visible = false +remote_path = NodePath("../../Skeleton2D/Bone-3") +update_rotation = false +update_scale = false + +[node name="Joint2D-Bone-3-Bone-0" type="PinJoint2D" parent="FloatingSoftbody2D/Bone-3"] +visible = false +rotation = 1.5708 +node_a = NodePath("..") +node_b = NodePath("../../Bone-0") +softness = 60.0 + +[node name="Joint2D-Bone-3-Bone-4" type="PinJoint2D" parent="FloatingSoftbody2D/Bone-3"] +visible = false +rotation = 0.0665681 +node_a = NodePath("..") +node_b = NodePath("../../Bone-4") +softness = 60.0 + +[node name="Joint2D-Bone-3-Bone-2" type="PinJoint2D" parent="FloatingSoftbody2D/Bone-3"] +visible = false +rotation = -3.21645 +node_a = NodePath("..") +node_b = NodePath("../../Bone-2") +softness = 60.0 + +[node name="Bone-4" type="RigidBody2D" parent="FloatingSoftbody2D" instance=ExtResource("4_13lkq")] +position = Vector2(44.3333, 139) +input_pickable = true +mass = 0.0333333 +gravity_scale = 2.08167e-17 +script = ExtResource("7_lk74m") +metadata/idx = 4 +metadata/bone_name = &"Bone-4" + +[node name="CircleShape2D" type="CollisionShape2D" parent="FloatingSoftbody2D/Bone-4"] +shape = SubResource("CircleShape2D_600mi") + +[node name="RemoteTransform2D" type="RemoteTransform2D" parent="FloatingSoftbody2D/Bone-4"] +visible = false +remote_path = NodePath("../../Skeleton2D/Bone-4") +update_rotation = false +update_scale = false + +[node name="Joint2D-Bone-4-Bone-0" type="PinJoint2D" parent="FloatingSoftbody2D/Bone-4"] +visible = false +rotation = -3.63155 +node_a = NodePath("..") +node_b = NodePath("../../Bone-0") +softness = 60.0 + +[node name="Joint2D-Bone-4-Bone-3" type="PinJoint2D" parent="FloatingSoftbody2D/Bone-4"] +visible = false +rotation = -3.07502 +node_a = NodePath("..") +node_b = NodePath("../../Bone-3") +softness = 60.0 + +[node name="Joint2D-Bone-4-Bone-5" type="PinJoint2D" parent="FloatingSoftbody2D/Bone-4"] +visible = false +rotation = -0.394791 +node_a = NodePath("..") +node_b = NodePath("../../Bone-5") +softness = 60.0 + +[node name="Joint2D-Bone-4-Bone-8" type="PinJoint2D" parent="FloatingSoftbody2D/Bone-4"] +visible = false +rotation = -1.07464 +node_a = NodePath("..") +node_b = NodePath("../../Bone-8") +softness = 60.0 + +[node name="Bone-5" type="RigidBody2D" parent="FloatingSoftbody2D" instance=ExtResource("4_13lkq")] +position = Vector2(61, 179) +input_pickable = true +mass = 0.0333333 +gravity_scale = 2.08167e-17 +script = ExtResource("7_lk74m") +metadata/idx = 5 +metadata/bone_name = &"Bone-5" + +[node name="CircleShape2D" type="CollisionShape2D" parent="FloatingSoftbody2D/Bone-5"] +shape = SubResource("CircleShape2D_600mi") + +[node name="RemoteTransform2D" type="RemoteTransform2D" parent="FloatingSoftbody2D/Bone-5"] +visible = false +remote_path = NodePath("../../Skeleton2D/Bone-5") +update_rotation = false +update_scale = false + +[node name="Joint2D-Bone-5-Bone-4" type="PinJoint2D" parent="FloatingSoftbody2D/Bone-5"] +visible = false +rotation = -3.53638 +node_a = NodePath("..") +node_b = NodePath("../../Bone-4") +softness = 60.0 + +[node name="Joint2D-Bone-5-Bone-8" type="PinJoint2D" parent="FloatingSoftbody2D/Bone-5"] +visible = false +rotation = -2.07027 +node_a = NodePath("..") +node_b = NodePath("../../Bone-8") +softness = 60.0 + +[node name="Joint2D-Bone-5-Bone-13" type="PinJoint2D" parent="FloatingSoftbody2D/Bone-5"] +visible = false +rotation = 0.0374824 +node_a = NodePath("..") +node_b = NodePath("../../Bone-13") +softness = 60.0 + +[node name="Joint2D-Bone-5-Bone-15" type="PinJoint2D" parent="FloatingSoftbody2D/Bone-5"] +visible = false +rotation = -0.619066 +node_a = NodePath("..") +node_b = NodePath("../../Bone-15") +softness = 60.0 + +[node name="Bone-6" type="RigidBody2D" parent="FloatingSoftbody2D" instance=ExtResource("4_13lkq")] +position = Vector2(93, 29) +input_pickable = true +mass = 0.0333333 +gravity_scale = 2.08167e-17 +script = ExtResource("7_lk74m") +metadata/idx = 6 +metadata/bone_name = &"Bone-6" + +[node name="CircleShape2D" type="CollisionShape2D" parent="FloatingSoftbody2D/Bone-6"] +shape = SubResource("CircleShape2D_600mi") + +[node name="RemoteTransform2D" type="RemoteTransform2D" parent="FloatingSoftbody2D/Bone-6"] +visible = false +remote_path = NodePath("../../Skeleton2D/Bone-6") +update_rotation = false +update_scale = false + +[node name="Joint2D-Bone-6-Bone-1" type="PinJoint2D" parent="FloatingSoftbody2D/Bone-6"] +visible = false +rotation = 1.5708 +node_a = NodePath("..") +node_b = NodePath("../../Bone-1") +softness = 60.0 + +[node name="Joint2D-Bone-6-Bone-2" type="PinJoint2D" parent="FloatingSoftbody2D/Bone-6"] +visible = false +rotation = 1.02142 +node_a = NodePath("..") +node_b = NodePath("../../Bone-2") +softness = 60.0 + +[node name="Joint2D-Bone-6-Bone-7" type="PinJoint2D" parent="FloatingSoftbody2D/Bone-6"] +visible = false +node_a = NodePath("..") +node_b = NodePath("../../Bone-7") +softness = 60.0 + +[node name="Joint2D-Bone-6-Bone-9" type="PinJoint2D" parent="FloatingSoftbody2D/Bone-6"] +visible = false +rotation = -1.5708 +node_a = NodePath("..") +node_b = NodePath("../../Bone-9") +softness = 60.0 + +[node name="Joint2D-Bone-6-Bone-10" type="PinJoint2D" parent="FloatingSoftbody2D/Bone-6"] +visible = false +rotation = -1.12735 +node_a = NodePath("..") +node_b = NodePath("../../Bone-10") +softness = 60.0 + +[node name="Bone-7" type="RigidBody2D" parent="FloatingSoftbody2D" instance=ExtResource("4_13lkq")] +position = Vector2(93, 49) +input_pickable = true +mass = 0.0333333 +gravity_scale = 2.08167e-17 +script = ExtResource("7_lk74m") +metadata/idx = 7 +metadata/bone_name = &"Bone-7" + +[node name="CircleShape2D" type="CollisionShape2D" parent="FloatingSoftbody2D/Bone-7"] +shape = SubResource("CircleShape2D_600mi") + +[node name="RemoteTransform2D" type="RemoteTransform2D" parent="FloatingSoftbody2D/Bone-7"] +visible = false +remote_path = NodePath("../../Skeleton2D/Bone-7") +update_rotation = false +update_scale = false + +[node name="Joint2D-Bone-7-Bone-1" type="PinJoint2D" parent="FloatingSoftbody2D/Bone-7"] +visible = false +rotation = -4.27467 +node_a = NodePath("..") +node_b = NodePath("../../Bone-1") +softness = 60.0 + +[node name="Joint2D-Bone-7-Bone-2" type="PinJoint2D" parent="FloatingSoftbody2D/Bone-7"] +visible = false +rotation = 1.36948 +node_a = NodePath("..") +node_b = NodePath("../../Bone-2") +softness = 60.0 + +[node name="Joint2D-Bone-7-Bone-6" type="PinJoint2D" parent="FloatingSoftbody2D/Bone-7"] +visible = false +rotation = -3.14159 +node_a = NodePath("..") +node_b = NodePath("../../Bone-6") +softness = 60.0 + +[node name="Joint2D-Bone-7-Bone-9" type="PinJoint2D" parent="FloatingSoftbody2D/Bone-7"] +visible = false +rotation = -2.03444 +node_a = NodePath("..") +node_b = NodePath("../../Bone-9") +softness = 60.0 + +[node name="Joint2D-Bone-7-Bone-10" type="PinJoint2D" parent="FloatingSoftbody2D/Bone-7"] +visible = false +rotation = -1.59579 +node_a = NodePath("..") +node_b = NodePath("../../Bone-10") +softness = 60.0 + +[node name="Bone-8" type="RigidBody2D" parent="FloatingSoftbody2D" instance=ExtResource("4_13lkq")] +position = Vector2(89.5, 163.45) +input_pickable = true +mass = 0.0333333 +gravity_scale = 2.08167e-17 +script = ExtResource("7_lk74m") +metadata/idx = 8 +metadata/bone_name = &"Bone-8" + +[node name="CircleShape2D" type="CollisionShape2D" parent="FloatingSoftbody2D/Bone-8"] +shape = SubResource("CircleShape2D_600mi") + +[node name="RemoteTransform2D" type="RemoteTransform2D" parent="FloatingSoftbody2D/Bone-8"] +visible = false +remote_path = NodePath("../../Skeleton2D/Bone-8") +update_rotation = false +update_scale = false + +[node name="Joint2D-Bone-8-Bone-4" type="PinJoint2D" parent="FloatingSoftbody2D/Bone-8"] +visible = false +rotation = -4.21623 +node_a = NodePath("..") +node_b = NodePath("../../Bone-4") +softness = 60.0 + +[node name="Joint2D-Bone-8-Bone-5" type="PinJoint2D" parent="FloatingSoftbody2D/Bone-8"] +visible = false +rotation = 1.07133 +node_a = NodePath("..") +node_b = NodePath("../../Bone-5") +softness = 60.0 + +[node name="Joint2D-Bone-8-Bone-13" type="PinJoint2D" parent="FloatingSoftbody2D/Bone-8"] +visible = false +rotation = 0.495175 +node_a = NodePath("..") +node_b = NodePath("../../Bone-13") +softness = 60.0 + +[node name="Joint2D-Bone-8-Bone-15" type="PinJoint2D" parent="FloatingSoftbody2D/Bone-8"] +visible = false +node_a = NodePath("..") +node_b = NodePath("../../Bone-15") +softness = 60.0 + +[node name="Bone-9" type="RigidBody2D" parent="FloatingSoftbody2D" instance=ExtResource("4_13lkq")] +position = Vector2(133, 29) +input_pickable = true +mass = 0.0333333 +gravity_scale = 2.08167e-17 +script = ExtResource("7_lk74m") +metadata/idx = 9 +metadata/bone_name = &"Bone-9" + +[node name="CircleShape2D" type="CollisionShape2D" parent="FloatingSoftbody2D/Bone-9"] +shape = SubResource("CircleShape2D_600mi") + +[node name="RemoteTransform2D" type="RemoteTransform2D" parent="FloatingSoftbody2D/Bone-9"] +visible = false +remote_path = NodePath("../../Skeleton2D/Bone-9") +update_rotation = false +update_scale = false + +[node name="Joint2D-Bone-9-Bone-6" type="PinJoint2D" parent="FloatingSoftbody2D/Bone-9"] +visible = false +rotation = 1.5708 +node_a = NodePath("..") +node_b = NodePath("../../Bone-6") +softness = 60.0 + +[node name="Joint2D-Bone-9-Bone-7" type="PinJoint2D" parent="FloatingSoftbody2D/Bone-9"] +visible = false +rotation = 1.10715 +node_a = NodePath("..") +node_b = NodePath("../../Bone-7") +softness = 60.0 + +[node name="Joint2D-Bone-9-Bone-10" type="PinJoint2D" parent="FloatingSoftbody2D/Bone-9"] +visible = false +node_a = NodePath("..") +node_b = NodePath("../../Bone-10") +softness = 60.0 + +[node name="Joint2D-Bone-9-Bone-11" type="PinJoint2D" parent="FloatingSoftbody2D/Bone-9"] +visible = false +rotation = -1.5708 +node_a = NodePath("..") +node_b = NodePath("../../Bone-11") +softness = 60.0 + +[node name="Joint2D-Bone-9-Bone-12" type="PinJoint2D" parent="FloatingSoftbody2D/Bone-9"] +visible = false +rotation = -1.12735 +node_a = NodePath("..") +node_b = NodePath("../../Bone-12") +softness = 60.0 + +[node name="Bone-10" type="RigidBody2D" parent="FloatingSoftbody2D" instance=ExtResource("4_13lkq")] +position = Vector2(133, 48) +input_pickable = true +mass = 0.0333333 +gravity_scale = 2.08167e-17 +script = ExtResource("7_lk74m") +metadata/idx = 10 +metadata/bone_name = &"Bone-10" + +[node name="CircleShape2D" type="CollisionShape2D" parent="FloatingSoftbody2D/Bone-10"] +shape = SubResource("CircleShape2D_600mi") + +[node name="RemoteTransform2D" type="RemoteTransform2D" parent="FloatingSoftbody2D/Bone-10"] +visible = false +remote_path = NodePath("../../Skeleton2D/Bone-10") +update_rotation = false +update_scale = false + +[node name="Joint2D-Bone-10-Bone-6" type="PinJoint2D" parent="FloatingSoftbody2D/Bone-10"] +visible = false +rotation = -4.26894 +node_a = NodePath("..") +node_b = NodePath("../../Bone-6") +softness = 60.0 + +[node name="Joint2D-Bone-10-Bone-7" type="PinJoint2D" parent="FloatingSoftbody2D/Bone-10"] +visible = false +rotation = 1.5458 +node_a = NodePath("..") +node_b = NodePath("../../Bone-7") +softness = 60.0 + +[node name="Joint2D-Bone-10-Bone-9" type="PinJoint2D" parent="FloatingSoftbody2D/Bone-10"] +visible = false +rotation = -3.14159 +node_a = NodePath("..") +node_b = NodePath("../../Bone-9") +softness = 60.0 + +[node name="Joint2D-Bone-10-Bone-11" type="PinJoint2D" parent="FloatingSoftbody2D/Bone-10"] +visible = false +rotation = -2.01424 +node_a = NodePath("..") +node_b = NodePath("../../Bone-11") +softness = 60.0 + +[node name="Joint2D-Bone-10-Bone-12" type="PinJoint2D" parent="FloatingSoftbody2D/Bone-10"] +visible = false +rotation = -1.5708 +node_a = NodePath("..") +node_b = NodePath("../../Bone-12") +softness = 60.0 + +[node name="Bone-11" type="RigidBody2D" parent="FloatingSoftbody2D" instance=ExtResource("4_13lkq")] +position = Vector2(173, 29) +input_pickable = true +mass = 0.0333333 +gravity_scale = 2.08167e-17 +script = ExtResource("7_lk74m") +metadata/idx = 11 +metadata/bone_name = &"Bone-11" + +[node name="CircleShape2D" type="CollisionShape2D" parent="FloatingSoftbody2D/Bone-11"] +shape = SubResource("CircleShape2D_600mi") + +[node name="RemoteTransform2D" type="RemoteTransform2D" parent="FloatingSoftbody2D/Bone-11"] +visible = false +remote_path = NodePath("../../Skeleton2D/Bone-11") +update_rotation = false +update_scale = false + +[node name="Joint2D-Bone-11-Bone-9" type="PinJoint2D" parent="FloatingSoftbody2D/Bone-11"] +visible = false +rotation = 1.5708 +node_a = NodePath("..") +node_b = NodePath("../../Bone-9") +softness = 60.0 + +[node name="Joint2D-Bone-11-Bone-10" type="PinJoint2D" parent="FloatingSoftbody2D/Bone-11"] +visible = false +rotation = 1.12735 +node_a = NodePath("..") +node_b = NodePath("../../Bone-10") +softness = 60.0 + +[node name="Joint2D-Bone-11-Bone-12" type="PinJoint2D" parent="FloatingSoftbody2D/Bone-11"] +visible = false +node_a = NodePath("..") +node_b = NodePath("../../Bone-12") +softness = 60.0 + +[node name="Joint2D-Bone-11-Bone-19" type="PinJoint2D" parent="FloatingSoftbody2D/Bone-11"] +visible = false +rotation = -1.5708 +node_a = NodePath("..") +node_b = NodePath("../../Bone-19") +softness = 60.0 + +[node name="Joint2D-Bone-11-Bone-20" type="PinJoint2D" parent="FloatingSoftbody2D/Bone-11"] +visible = false +rotation = -0.927295 +node_a = NodePath("..") +node_b = NodePath("../../Bone-20") +softness = 60.0 + +[node name="Bone-12" type="RigidBody2D" parent="FloatingSoftbody2D" instance=ExtResource("4_13lkq")] +position = Vector2(173, 48) +input_pickable = true +mass = 0.0333333 +gravity_scale = 2.08167e-17 +script = ExtResource("7_lk74m") +metadata/idx = 12 +metadata/bone_name = &"Bone-12" + +[node name="CircleShape2D" type="CollisionShape2D" parent="FloatingSoftbody2D/Bone-12"] +shape = SubResource("CircleShape2D_600mi") + +[node name="RemoteTransform2D" type="RemoteTransform2D" parent="FloatingSoftbody2D/Bone-12"] +visible = false +remote_path = NodePath("../../Skeleton2D/Bone-12") +update_rotation = false +update_scale = false + +[node name="Joint2D-Bone-12-Bone-9" type="PinJoint2D" parent="FloatingSoftbody2D/Bone-12"] +visible = false +rotation = -4.26894 +node_a = NodePath("..") +node_b = NodePath("../../Bone-9") +softness = 60.0 + +[node name="Joint2D-Bone-12-Bone-10" type="PinJoint2D" parent="FloatingSoftbody2D/Bone-12"] +visible = false +rotation = 1.5708 +node_a = NodePath("..") +node_b = NodePath("../../Bone-10") +softness = 60.0 + +[node name="Joint2D-Bone-12-Bone-11" type="PinJoint2D" parent="FloatingSoftbody2D/Bone-12"] +visible = false +rotation = -3.14159 +node_a = NodePath("..") +node_b = NodePath("../../Bone-11") +softness = 60.0 + +[node name="Joint2D-Bone-12-Bone-19" type="PinJoint2D" parent="FloatingSoftbody2D/Bone-12"] +visible = false +rotation = -2.01424 +node_a = NodePath("..") +node_b = NodePath("../../Bone-19") +softness = 60.0 + +[node name="Joint2D-Bone-12-Bone-20" type="PinJoint2D" parent="FloatingSoftbody2D/Bone-12"] +visible = false +rotation = -1.30243 +node_a = NodePath("..") +node_b = NodePath("../../Bone-20") +softness = 60.0 + +[node name="Bone-13" type="RigidBody2D" parent="FloatingSoftbody2D" instance=ExtResource("4_13lkq")] +position = Vector2(59.5, 219) +input_pickable = true +mass = 0.0333333 +gravity_scale = 2.08167e-17 +script = ExtResource("7_lk74m") +metadata/idx = 13 +metadata/bone_name = &"Bone-13" + +[node name="CircleShape2D" type="CollisionShape2D" parent="FloatingSoftbody2D/Bone-13"] +shape = SubResource("CircleShape2D_600mi") + +[node name="RemoteTransform2D" type="RemoteTransform2D" parent="FloatingSoftbody2D/Bone-13"] +visible = false +remote_path = NodePath("../../Skeleton2D/Bone-13") +update_rotation = false +update_scale = false + +[node name="Joint2D-Bone-13-Bone-14" type="PinJoint2D" parent="FloatingSoftbody2D/Bone-13"] +visible = false +rotation = 0.307046 +node_a = NodePath("..") +node_b = NodePath("../../Bone-14") +softness = 60.0 + +[node name="Joint2D-Bone-13-Bone-5" type="PinJoint2D" parent="FloatingSoftbody2D/Bone-13"] +visible = false +rotation = -3.10411 +node_a = NodePath("..") +node_b = NodePath("../../Bone-5") +softness = 60.0 + +[node name="Joint2D-Bone-13-Bone-8" type="PinJoint2D" parent="FloatingSoftbody2D/Bone-13"] +visible = false +rotation = -2.64642 +node_a = NodePath("..") +node_b = NodePath("../../Bone-8") +softness = 60.0 + +[node name="Joint2D-Bone-13-Bone-15" type="PinJoint2D" parent="FloatingSoftbody2D/Bone-13"] +visible = false +rotation = -1.5708 +node_a = NodePath("..") +node_b = NodePath("../../Bone-15") +softness = 60.0 + +[node name="Joint2D-Bone-13-Bone-16" type="PinJoint2D" parent="FloatingSoftbody2D/Bone-13"] +visible = false +rotation = -0.685065 +node_a = NodePath("..") +node_b = NodePath("../../Bone-16") +softness = 60.0 + +[node name="Bone-14" type="RigidBody2D" parent="FloatingSoftbody2D" instance=ExtResource("4_13lkq")] +position = Vector2(46.5, 260) +input_pickable = true +mass = 0.0333333 +gravity_scale = 2.08167e-17 +script = ExtResource("7_lk74m") +metadata/idx = 14 +metadata/bone_name = &"Bone-14" + +[node name="CircleShape2D" type="CollisionShape2D" parent="FloatingSoftbody2D/Bone-14"] +shape = SubResource("CircleShape2D_600mi") + +[node name="RemoteTransform2D" type="RemoteTransform2D" parent="FloatingSoftbody2D/Bone-14"] +visible = false +remote_path = NodePath("../../Skeleton2D/Bone-14") +update_rotation = false +update_scale = false + +[node name="Joint2D-Bone-14-Bone-13" type="PinJoint2D" parent="FloatingSoftbody2D/Bone-14"] +visible = false +rotation = -2.83455 +node_a = NodePath("..") +node_b = NodePath("../../Bone-13") +softness = 60.0 + +[node name="Joint2D-Bone-14-Bone-15" type="PinJoint2D" parent="FloatingSoftbody2D/Bone-14"] +visible = false +rotation = -2.33239 +node_a = NodePath("..") +node_b = NodePath("../../Bone-15") +softness = 60.0 + +[node name="Joint2D-Bone-14-Bone-16" type="PinJoint2D" parent="FloatingSoftbody2D/Bone-14"] +visible = false +rotation = -1.5708 +node_a = NodePath("..") +node_b = NodePath("../../Bone-16") +softness = 60.0 + +[node name="Bone-15" type="RigidBody2D" parent="FloatingSoftbody2D" instance=ExtResource("4_13lkq")] +position = Vector2(89.5, 219) +input_pickable = true +mass = 0.0333333 +gravity_scale = 2.08167e-17 +script = ExtResource("7_lk74m") +metadata/idx = 15 +metadata/bone_name = &"Bone-15" + +[node name="CircleShape2D" type="CollisionShape2D" parent="FloatingSoftbody2D/Bone-15"] +shape = SubResource("CircleShape2D_600mi") + +[node name="RemoteTransform2D" type="RemoteTransform2D" parent="FloatingSoftbody2D/Bone-15"] +visible = false +remote_path = NodePath("../../Skeleton2D/Bone-15") +update_rotation = false +update_scale = false + +[node name="Joint2D-Bone-15-Bone-5" type="PinJoint2D" parent="FloatingSoftbody2D/Bone-15"] +visible = false +rotation = -3.76066 +node_a = NodePath("..") +node_b = NodePath("../../Bone-5") +softness = 60.0 + +[node name="Joint2D-Bone-15-Bone-8" type="PinJoint2D" parent="FloatingSoftbody2D/Bone-15"] +visible = false +rotation = -3.14159 +node_a = NodePath("..") +node_b = NodePath("../../Bone-8") +softness = 60.0 + +[node name="Joint2D-Bone-15-Bone-13" type="PinJoint2D" parent="FloatingSoftbody2D/Bone-15"] +visible = false +rotation = 1.5708 +node_a = NodePath("..") +node_b = NodePath("../../Bone-13") +softness = 60.0 + +[node name="Joint2D-Bone-15-Bone-14" type="PinJoint2D" parent="FloatingSoftbody2D/Bone-15"] +visible = false +rotation = 0.809203 +node_a = NodePath("..") +node_b = NodePath("../../Bone-14") +softness = 60.0 + +[node name="Joint2D-Bone-15-Bone-16" type="PinJoint2D" parent="FloatingSoftbody2D/Bone-15"] +visible = false +rotation = -0.0851594 +node_a = NodePath("..") +node_b = NodePath("../../Bone-16") +softness = 60.0 + +[node name="Bone-16" type="RigidBody2D" parent="FloatingSoftbody2D" instance=ExtResource("4_13lkq")] +position = Vector2(93, 260) +input_pickable = true +mass = 0.0333333 +gravity_scale = 2.08167e-17 +script = ExtResource("7_lk74m") +metadata/idx = 16 +metadata/bone_name = &"Bone-16" + +[node name="CircleShape2D" type="CollisionShape2D" parent="FloatingSoftbody2D/Bone-16"] +shape = SubResource("CircleShape2D_600mi") + +[node name="RemoteTransform2D" type="RemoteTransform2D" parent="FloatingSoftbody2D/Bone-16"] +visible = false +remote_path = NodePath("../../Skeleton2D/Bone-16") +update_rotation = false +update_scale = false + +[node name="Joint2D-Bone-16-Bone-13" type="PinJoint2D" parent="FloatingSoftbody2D/Bone-16"] +visible = false +rotation = -3.82666 +node_a = NodePath("..") +node_b = NodePath("../../Bone-13") +softness = 60.0 + +[node name="Joint2D-Bone-16-Bone-14" type="PinJoint2D" parent="FloatingSoftbody2D/Bone-16"] +visible = false +rotation = 1.5708 +node_a = NodePath("..") +node_b = NodePath("../../Bone-14") +softness = 60.0 + +[node name="Joint2D-Bone-16-Bone-15" type="PinJoint2D" parent="FloatingSoftbody2D/Bone-16"] +visible = false +rotation = -3.22675 +node_a = NodePath("..") +node_b = NodePath("../../Bone-15") +softness = 60.0 + +[node name="Joint2D-Bone-16-Bone-17" type="PinJoint2D" parent="FloatingSoftbody2D/Bone-16"] +visible = false +rotation = -1.52084 +node_a = NodePath("..") +node_b = NodePath("../../Bone-17") +softness = 60.0 + +[node name="Bone-17" type="RigidBody2D" parent="FloatingSoftbody2D" instance=ExtResource("4_13lkq")] +position = Vector2(133, 262) +input_pickable = true +mass = 0.0333333 +gravity_scale = 2.08167e-17 +script = ExtResource("7_lk74m") +metadata/idx = 17 +metadata/bone_name = &"Bone-17" + +[node name="CircleShape2D" type="CollisionShape2D" parent="FloatingSoftbody2D/Bone-17"] +shape = SubResource("CircleShape2D_600mi") + +[node name="RemoteTransform2D" type="RemoteTransform2D" parent="FloatingSoftbody2D/Bone-17"] +visible = false +remote_path = NodePath("../../Skeleton2D/Bone-17") +update_rotation = false +update_scale = false + +[node name="Joint2D-Bone-17-Bone-16" type="PinJoint2D" parent="FloatingSoftbody2D/Bone-17"] +visible = false +rotation = -4.66243 +node_a = NodePath("..") +node_b = NodePath("../../Bone-16") +softness = 60.0 + +[node name="Joint2D-Bone-17-Bone-18" type="PinJoint2D" parent="FloatingSoftbody2D/Bone-17"] +visible = false +rotation = -1.5708 +node_a = NodePath("..") +node_b = NodePath("../../Bone-18") +softness = 60.0 + +[node name="Bone-18" type="RigidBody2D" parent="FloatingSoftbody2D" instance=ExtResource("4_13lkq")] +position = Vector2(173, 262) +input_pickable = true +mass = 0.0333333 +gravity_scale = 2.08167e-17 +script = ExtResource("7_lk74m") +metadata/idx = 18 +metadata/bone_name = &"Bone-18" + +[node name="CircleShape2D" type="CollisionShape2D" parent="FloatingSoftbody2D/Bone-18"] +shape = SubResource("CircleShape2D_600mi") + +[node name="RemoteTransform2D" type="RemoteTransform2D" parent="FloatingSoftbody2D/Bone-18"] +visible = false +remote_path = NodePath("../../Skeleton2D/Bone-18") +update_rotation = false +update_scale = false + +[node name="Joint2D-Bone-18-Bone-17" type="PinJoint2D" parent="FloatingSoftbody2D/Bone-18"] +visible = false +rotation = 1.5708 +node_a = NodePath("..") +node_b = NodePath("../../Bone-17") +softness = 60.0 + +[node name="Joint2D-Bone-18-Bone-27" type="PinJoint2D" parent="FloatingSoftbody2D/Bone-18"] +visible = false +rotation = -1.62075 +node_a = NodePath("..") +node_b = NodePath("../../Bone-27") +softness = 60.0 + +[node name="Bone-19" type="RigidBody2D" parent="FloatingSoftbody2D" instance=ExtResource("4_13lkq")] +position = Vector2(213, 29) +input_pickable = true +mass = 0.0333333 +gravity_scale = 2.08167e-17 +script = ExtResource("7_lk74m") +metadata/idx = 19 +metadata/bone_name = &"Bone-19" + +[node name="CircleShape2D" type="CollisionShape2D" parent="FloatingSoftbody2D/Bone-19"] +shape = SubResource("CircleShape2D_600mi") + +[node name="RemoteTransform2D" type="RemoteTransform2D" parent="FloatingSoftbody2D/Bone-19"] +visible = false +remote_path = NodePath("../../Skeleton2D/Bone-19") +update_rotation = false +update_scale = false + +[node name="Joint2D-Bone-19-Bone-11" type="PinJoint2D" parent="FloatingSoftbody2D/Bone-19"] +visible = false +rotation = 1.5708 +node_a = NodePath("..") +node_b = NodePath("../../Bone-11") +softness = 60.0 + +[node name="Joint2D-Bone-19-Bone-12" type="PinJoint2D" parent="FloatingSoftbody2D/Bone-19"] +visible = false +rotation = 1.12735 +node_a = NodePath("..") +node_b = NodePath("../../Bone-12") +softness = 60.0 + +[node name="Joint2D-Bone-19-Bone-20" type="PinJoint2D" parent="FloatingSoftbody2D/Bone-19"] +visible = false +node_a = NodePath("..") +node_b = NodePath("../../Bone-20") +softness = 60.0 + +[node name="Joint2D-Bone-19-Bone-23" type="PinJoint2D" parent="FloatingSoftbody2D/Bone-19"] +visible = false +rotation = -1.5708 +node_a = NodePath("..") +node_b = NodePath("../../Bone-23") +softness = 60.0 + +[node name="Joint2D-Bone-19-Bone-24" type="PinJoint2D" parent="FloatingSoftbody2D/Bone-19"] +visible = false +rotation = -0.872629 +node_a = NodePath("..") +node_b = NodePath("../../Bone-24") +softness = 60.0 + +[node name="Bone-20" type="RigidBody2D" parent="FloatingSoftbody2D" instance=ExtResource("4_13lkq")] +position = Vector2(213, 59) +input_pickable = true +mass = 0.0333333 +gravity_scale = 2.08167e-17 +script = ExtResource("7_lk74m") +metadata/idx = 20 +metadata/bone_name = &"Bone-20" + +[node name="CircleShape2D" type="CollisionShape2D" parent="FloatingSoftbody2D/Bone-20"] +shape = SubResource("CircleShape2D_600mi") + +[node name="RemoteTransform2D" type="RemoteTransform2D" parent="FloatingSoftbody2D/Bone-20"] +visible = false +remote_path = NodePath("../../Skeleton2D/Bone-20") +update_rotation = false +update_scale = false + +[node name="Joint2D-Bone-20-Bone-11" type="PinJoint2D" parent="FloatingSoftbody2D/Bone-20"] +visible = false +rotation = -4.06889 +node_a = NodePath("..") +node_b = NodePath("../../Bone-11") +softness = 60.0 + +[node name="Joint2D-Bone-20-Bone-12" type="PinJoint2D" parent="FloatingSoftbody2D/Bone-20"] +visible = false +rotation = -4.44402 +node_a = NodePath("..") +node_b = NodePath("../../Bone-12") +softness = 60.0 + +[node name="Joint2D-Bone-20-Bone-19" type="PinJoint2D" parent="FloatingSoftbody2D/Bone-20"] +visible = false +rotation = -3.14159 +node_a = NodePath("..") +node_b = NodePath("../../Bone-19") +softness = 60.0 + +[node name="Joint2D-Bone-20-Bone-23" type="PinJoint2D" parent="FloatingSoftbody2D/Bone-20"] +visible = false +rotation = -2.17455 +node_a = NodePath("..") +node_b = NodePath("../../Bone-23") +softness = 60.0 + +[node name="Joint2D-Bone-20-Bone-24" type="PinJoint2D" parent="FloatingSoftbody2D/Bone-20"] +visible = false +rotation = -1.5708 +node_a = NodePath("..") +node_b = NodePath("../../Bone-24") +softness = 60.0 + +[node name="Joint2D-Bone-20-Bone-21" type="PinJoint2D" parent="FloatingSoftbody2D/Bone-20"] +visible = false +rotation = -0.21602 +node_a = NodePath("..") +node_b = NodePath("../../Bone-21") +softness = 60.0 + +[node name="Bone-21" type="RigidBody2D" parent="FloatingSoftbody2D" instance=ExtResource("4_13lkq")] +position = Vector2(221.778, 99) +input_pickable = true +mass = 0.0333333 +gravity_scale = 2.08167e-17 +script = ExtResource("7_lk74m") +metadata/idx = 21 +metadata/bone_name = &"Bone-21" + +[node name="CircleShape2D" type="CollisionShape2D" parent="FloatingSoftbody2D/Bone-21"] +shape = SubResource("CircleShape2D_600mi") + +[node name="RemoteTransform2D" type="RemoteTransform2D" parent="FloatingSoftbody2D/Bone-21"] +visible = false +remote_path = NodePath("../../Skeleton2D/Bone-21") +update_rotation = false +update_scale = false + +[node name="Joint2D-Bone-21-Bone-25" type="PinJoint2D" parent="FloatingSoftbody2D/Bone-21"] +visible = false +rotation = -0.735876 +node_a = NodePath("..") +node_b = NodePath("../../Bone-25") +softness = 60.0 + +[node name="Joint2D-Bone-21-Bone-20" type="PinJoint2D" parent="FloatingSoftbody2D/Bone-21"] +visible = false +rotation = -3.35761 +node_a = NodePath("..") +node_b = NodePath("../../Bone-20") +softness = 60.0 + +[node name="Joint2D-Bone-21-Bone-24" type="PinJoint2D" parent="FloatingSoftbody2D/Bone-21"] +visible = false +rotation = -2.54832 +node_a = NodePath("..") +node_b = NodePath("../../Bone-24") +softness = 60.0 + +[node name="Joint2D-Bone-21-Bone-22" type="PinJoint2D" parent="FloatingSoftbody2D/Bone-21"] +visible = false +rotation = 0.167734 +node_a = NodePath("..") +node_b = NodePath("../../Bone-22") +softness = 60.0 + +[node name="Bone-22" type="RigidBody2D" parent="FloatingSoftbody2D" instance=ExtResource("4_13lkq")] +position = Vector2(215.1, 138.438) +input_pickable = true +mass = 0.0333333 +gravity_scale = 2.08167e-17 +script = ExtResource("7_lk74m") +metadata/idx = 22 +metadata/bone_name = &"Bone-22" + +[node name="CircleShape2D" type="CollisionShape2D" parent="FloatingSoftbody2D/Bone-22"] +shape = SubResource("CircleShape2D_600mi") + +[node name="RemoteTransform2D" type="RemoteTransform2D" parent="FloatingSoftbody2D/Bone-22"] +visible = false +remote_path = NodePath("../../Skeleton2D/Bone-22") +update_rotation = false +update_scale = false + +[node name="Joint2D-Bone-22-Bone-21" type="PinJoint2D" parent="FloatingSoftbody2D/Bone-22"] +visible = false +rotation = -2.97386 +node_a = NodePath("..") +node_b = NodePath("../../Bone-21") +softness = 60.0 + +[node name="Joint2D-Bone-22-Bone-25" type="PinJoint2D" parent="FloatingSoftbody2D/Bone-22"] +visible = false +rotation = -1.55769 +node_a = NodePath("..") +node_b = NodePath("../../Bone-25") +softness = 60.0 + +[node name="Bone-23" type="RigidBody2D" parent="FloatingSoftbody2D" instance=ExtResource("4_13lkq")] +position = Vector2(256.5, 29) +input_pickable = true +mass = 0.0333333 +gravity_scale = 2.08167e-17 +script = ExtResource("7_lk74m") +metadata/idx = 23 +metadata/bone_name = &"Bone-23" + +[node name="CircleShape2D" type="CollisionShape2D" parent="FloatingSoftbody2D/Bone-23"] +shape = SubResource("CircleShape2D_600mi") + +[node name="RemoteTransform2D" type="RemoteTransform2D" parent="FloatingSoftbody2D/Bone-23"] +visible = false +remote_path = NodePath("../../Skeleton2D/Bone-23") +update_rotation = false +update_scale = false + +[node name="Joint2D-Bone-23-Bone-24" type="PinJoint2D" parent="FloatingSoftbody2D/Bone-23"] +visible = false +rotation = 0.252806 +node_a = NodePath("..") +node_b = NodePath("../../Bone-24") +softness = 60.0 + +[node name="Joint2D-Bone-23-Bone-19" type="PinJoint2D" parent="FloatingSoftbody2D/Bone-23"] +visible = false +rotation = 1.5708 +node_a = NodePath("..") +node_b = NodePath("../../Bone-19") +softness = 60.0 + +[node name="Joint2D-Bone-23-Bone-20" type="PinJoint2D" parent="FloatingSoftbody2D/Bone-23"] +visible = false +rotation = 0.967047 +node_a = NodePath("..") +node_b = NodePath("../../Bone-20") +softness = 60.0 + +[node name="Bone-24" type="RigidBody2D" parent="FloatingSoftbody2D" instance=ExtResource("4_13lkq")] +position = Vector2(248.75, 59) +input_pickable = true +mass = 0.0333333 +gravity_scale = 2.08167e-17 +script = ExtResource("7_lk74m") +metadata/idx = 24 +metadata/bone_name = &"Bone-24" + +[node name="CircleShape2D" type="CollisionShape2D" parent="FloatingSoftbody2D/Bone-24"] +shape = SubResource("CircleShape2D_600mi") + +[node name="RemoteTransform2D" type="RemoteTransform2D" parent="FloatingSoftbody2D/Bone-24"] +visible = false +remote_path = NodePath("../../Skeleton2D/Bone-24") +update_rotation = false +update_scale = false + +[node name="Joint2D-Bone-24-Bone-23" type="PinJoint2D" parent="FloatingSoftbody2D/Bone-24"] +visible = false +rotation = -2.88879 +node_a = NodePath("..") +node_b = NodePath("../../Bone-23") +softness = 60.0 + +[node name="Joint2D-Bone-24-Bone-19" type="PinJoint2D" parent="FloatingSoftbody2D/Bone-24"] +visible = false +rotation = -4.01422 +node_a = NodePath("..") +node_b = NodePath("../../Bone-19") +softness = 60.0 + +[node name="Joint2D-Bone-24-Bone-20" type="PinJoint2D" parent="FloatingSoftbody2D/Bone-24"] +visible = false +rotation = 1.5708 +node_a = NodePath("..") +node_b = NodePath("../../Bone-20") +softness = 60.0 + +[node name="Joint2D-Bone-24-Bone-21" type="PinJoint2D" parent="FloatingSoftbody2D/Bone-24"] +visible = false +rotation = 0.593273 +node_a = NodePath("..") +node_b = NodePath("../../Bone-21") +softness = 60.0 + +[node name="Bone-25" type="RigidBody2D" parent="FloatingSoftbody2D" instance=ExtResource("4_13lkq")] +position = Vector2(258, 139) +input_pickable = true +mass = 0.0333333 +gravity_scale = 2.08167e-17 +script = ExtResource("7_lk74m") +metadata/idx = 25 +metadata/bone_name = &"Bone-25" + +[node name="CircleShape2D" type="CollisionShape2D" parent="FloatingSoftbody2D/Bone-25"] +shape = SubResource("CircleShape2D_600mi") + +[node name="RemoteTransform2D" type="RemoteTransform2D" parent="FloatingSoftbody2D/Bone-25"] +visible = false +remote_path = NodePath("../../Skeleton2D/Bone-25") +update_rotation = false +update_scale = false + +[node name="Joint2D-Bone-25-Bone-21" type="PinJoint2D" parent="FloatingSoftbody2D/Bone-25"] +visible = false +rotation = -3.87747 +node_a = NodePath("..") +node_b = NodePath("../../Bone-21") +softness = 60.0 + +[node name="Joint2D-Bone-25-Bone-22" type="PinJoint2D" parent="FloatingSoftbody2D/Bone-25"] +visible = false +rotation = -4.69928 +node_a = NodePath("..") +node_b = NodePath("../../Bone-22") +softness = 60.0 + +[node name="Joint2D-Bone-25-Bone-26" type="PinJoint2D" parent="FloatingSoftbody2D/Bone-25"] +visible = false +rotation = -0.0659754 +node_a = NodePath("..") +node_b = NodePath("../../Bone-26") +softness = 60.0 + +[node name="Bone-26" type="RigidBody2D" parent="FloatingSoftbody2D" instance=ExtResource("4_13lkq")] +position = Vector2(260.643, 179) +input_pickable = true +mass = 0.0333333 +gravity_scale = 2.08167e-17 +script = ExtResource("7_lk74m") +metadata/idx = 26 +metadata/bone_name = &"Bone-26" + +[node name="CircleShape2D" type="CollisionShape2D" parent="FloatingSoftbody2D/Bone-26"] +shape = SubResource("CircleShape2D_600mi") + +[node name="RemoteTransform2D" type="RemoteTransform2D" parent="FloatingSoftbody2D/Bone-26"] +visible = false +remote_path = NodePath("../../Skeleton2D/Bone-26") +update_rotation = false +update_scale = false + +[node name="Joint2D-Bone-26-Bone-25" type="PinJoint2D" parent="FloatingSoftbody2D/Bone-26"] +visible = false +rotation = -3.20757 +node_a = NodePath("..") +node_b = NodePath("../../Bone-25") +softness = 60.0 + +[node name="Joint2D-Bone-26-Bone-28" type="PinJoint2D" parent="FloatingSoftbody2D/Bone-26"] +visible = false +rotation = 0.0792382 +node_a = NodePath("..") +node_b = NodePath("../../Bone-28") +softness = 60.0 + +[node name="Bone-27" type="RigidBody2D" parent="FloatingSoftbody2D" instance=ExtResource("4_13lkq")] +position = Vector2(213, 260) +input_pickable = true +mass = 0.0333333 +gravity_scale = 2.08167e-17 +script = ExtResource("7_lk74m") +metadata/idx = 27 +metadata/bone_name = &"Bone-27" + +[node name="CircleShape2D" type="CollisionShape2D" parent="FloatingSoftbody2D/Bone-27"] +shape = SubResource("CircleShape2D_600mi") + +[node name="RemoteTransform2D" type="RemoteTransform2D" parent="FloatingSoftbody2D/Bone-27"] +visible = false +remote_path = NodePath("../../Skeleton2D/Bone-27") +update_rotation = false +update_scale = false + +[node name="Joint2D-Bone-27-Bone-18" type="PinJoint2D" parent="FloatingSoftbody2D/Bone-27"] +visible = false +rotation = 1.52084 +node_a = NodePath("..") +node_b = NodePath("../../Bone-18") +softness = 60.0 + +[node name="Joint2D-Bone-27-Bone-29" type="PinJoint2D" parent="FloatingSoftbody2D/Bone-27"] +visible = false +rotation = -1.5708 +node_a = NodePath("..") +node_b = NodePath("../../Bone-29") +softness = 60.0 + +[node name="Joint2D-Bone-27-Bone-28" type="PinJoint2D" parent="FloatingSoftbody2D/Bone-27"] +visible = false +rotation = -2.31565 +node_a = NodePath("..") +node_b = NodePath("../../Bone-28") +softness = 60.0 + +[node name="Bone-28" type="RigidBody2D" parent="FloatingSoftbody2D" instance=ExtResource("4_13lkq")] +position = Vector2(257.467, 219) +input_pickable = true +mass = 0.0333333 +gravity_scale = 2.08167e-17 +script = ExtResource("7_lk74m") +metadata/idx = 28 +metadata/bone_name = &"Bone-28" + +[node name="CircleShape2D" type="CollisionShape2D" parent="FloatingSoftbody2D/Bone-28"] +shape = SubResource("CircleShape2D_600mi") + +[node name="RemoteTransform2D" type="RemoteTransform2D" parent="FloatingSoftbody2D/Bone-28"] +visible = false +remote_path = NodePath("../../Skeleton2D/Bone-28") +update_rotation = false +update_scale = false + +[node name="Joint2D-Bone-28-Bone-26" type="PinJoint2D" parent="FloatingSoftbody2D/Bone-28"] +visible = false +rotation = -3.06235 +node_a = NodePath("..") +node_b = NodePath("../../Bone-26") +softness = 60.0 + +[node name="Joint2D-Bone-28-Bone-27" type="PinJoint2D" parent="FloatingSoftbody2D/Bone-28"] +visible = false +rotation = 0.825938 +node_a = NodePath("..") +node_b = NodePath("../../Bone-27") +softness = 60.0 + +[node name="Joint2D-Bone-28-Bone-29" type="PinJoint2D" parent="FloatingSoftbody2D/Bone-28"] +visible = false +rotation = 0.0404408 +node_a = NodePath("..") +node_b = NodePath("../../Bone-29") +softness = 60.0 + +[node name="Bone-29" type="RigidBody2D" parent="FloatingSoftbody2D" instance=ExtResource("4_13lkq")] +position = Vector2(255.808, 260) +input_pickable = true +mass = 0.0333333 +gravity_scale = 2.08167e-17 +script = ExtResource("7_lk74m") +metadata/idx = 29 +metadata/bone_name = &"Bone-29" + +[node name="CircleShape2D" type="CollisionShape2D" parent="FloatingSoftbody2D/Bone-29"] +shape = SubResource("CircleShape2D_600mi") + +[node name="RemoteTransform2D" type="RemoteTransform2D" parent="FloatingSoftbody2D/Bone-29"] +visible = false +remote_path = NodePath("../../Skeleton2D/Bone-29") +update_rotation = false +update_scale = false + +[node name="Joint2D-Bone-29-Bone-27" type="PinJoint2D" parent="FloatingSoftbody2D/Bone-29"] +visible = false +rotation = 1.5708 +node_a = NodePath("..") +node_b = NodePath("../../Bone-27") +softness = 60.0 + +[node name="Joint2D-Bone-29-Bone-28" type="PinJoint2D" parent="FloatingSoftbody2D/Bone-29"] +visible = false +rotation = -3.10115 +node_a = NodePath("..") +node_b = NodePath("../../Bone-28") +softness = 60.0 + +[node name="HangingSoftbody2D" type="Polygon2D" parent="."] +position = Vector2(761, 140) +texture = ExtResource("1_gjugi") +skeleton = NodePath("Skeleton2D") +polygon = PackedVector2Array(37, 21, 34, 26, 33, 26, 31, 32, 30, 32, 24, 49, 23, 49, 17, 70, 16, 70, 15, 76, 15, 82, 13, 87, 13, 111, 16, 120, 16, 123, 23, 135, 23, 137, 25, 137, 25, 139, 40, 152, 42, 152, 42, 154, 44, 154, 46, 157, 47, 157, 47, 159, 49, 159, 55, 171, 56, 171, 59, 183, 59, 197, 56, 209, 56, 213, 55, 214, 54, 214, 54, 219, 49, 230, 49, 233, 48, 234, 47, 234, 46, 236, 46, 239, 39, 250, 39, 253, 37, 253, 35, 257, 35, 260, 33, 260, 32, 262, 32, 264, 20, 280, 20, 281, 262, 281, 269, 265, 270, 265, 276, 246, 277, 246, 283, 220, 284, 220, 286, 202, 287, 202, 287, 173, 284, 164, 284, 160, 282, 158, 282, 155, 277, 147, 277, 145, 275, 145, 275, 143, 272, 141, 272, 139, 257, 127, 255, 127, 255, 125, 250, 120, 249, 120, 245, 111, 244, 111, 242, 100, 241, 100, 241, 88, 248, 67, 248, 64, 249, 63, 250, 63, 255, 53, 255, 51, 257, 49, 258, 49, 262, 42, 262, 40, 264, 40, 265, 38, 265, 36, 267, 36, 267, 34, 270, 32, 270, 30, 280, 20, 280, 19, 37, 19, 33, 119, 15.6667, 119, 13, 111, 13, 99, 33, 99, 33, 99, 13, 99, 13, 87, 15, 82, 15, 79, 33, 79, 73, 39, 53, 39, 53, 19, 73, 19, 53, 39, 33, 39, 33, 26, 34, 26, 37, 21, 37, 19, 53, 19, 33, 39, 27.5294, 39, 30, 32, 31, 32, 33, 26, 53, 59, 33, 59, 33, 39, 53, 39, 67, 65, 65, 65, 65, 67, 61, 71, 60, 71, 56, 78, 55, 78, 55, 79, 53, 79, 53, 59, 72, 59, 53, 79, 33, 79, 33, 59, 53, 59, 73, 59, 53, 59, 53, 39, 73, 39, 33, 79, 15, 79, 15, 76, 16, 70, 17, 70, 20.1429, 59, 33, 59, 33, 59, 20.1429, 59, 23, 49, 24, 49, 27.5294, 39, 33, 39, 51, 89, 51, 99, 33, 99, 33, 79, 53, 79, 53, 87, 55, 109, 55, 111, 58, 114, 58, 116, 60, 116, 61, 117, 61, 119, 53, 119, 53, 105.5, 51, 102, 53, 105.5, 53, 119, 33, 119, 33, 99, 51, 99, 55, 81, 53, 83, 53, 79, 55, 79, 53, 139, 33, 139, 33, 119, 53, 119, 73, 159, 53, 159, 53, 139, 73, 139, 53, 159, 47, 159, 47, 157, 46, 157, 44, 154, 42, 154, 42, 152, 40, 152, 33, 145.933, 33, 139, 53, 139, 68, 124, 68, 126, 70, 127, 72, 127, 73, 127.9, 73, 139, 53, 139, 53, 119, 61, 119, 33, 145.933, 25, 139, 33, 139, 33, 139, 25, 139, 25, 137, 23, 137, 23, 135, 16, 123, 16, 120, 15.6667, 119, 33, 119, 53, 167, 49, 159, 53, 159, 73, 199, 58.5, 199, 59, 197, 59, 183, 58, 179, 73, 179, 73, 179, 58, 179, 56, 171, 55, 171, 53, 167, 53, 159, 73, 159, 113, 39, 93, 39, 93, 19, 113, 19, 93, 39, 73, 39, 73, 19, 93, 19, 93, 57, 75, 57, 75, 58, 74, 59, 73, 59, 73, 39, 93, 39, 113, 57, 93, 57, 93, 39, 113, 39, 93, 179, 73, 179, 73, 159, 93, 159, 106, 199, 93, 199, 93, 179, 106, 179, 93, 199, 73, 199, 73, 179, 93, 179, 103, 167, 104, 167, 106, 177, 106, 179, 93, 179, 93, 159, 100, 159, 82, 136, 84, 136, 86.4, 139, 73, 139, 73, 127.9, 94, 148, 95, 148, 96, 151, 97, 151, 100, 159, 93, 159, 93, 147, 88, 141, 89, 141, 89, 143, 91, 143, 91, 145, 93, 147, 93, 159, 73, 159, 73, 139, 86.4, 139, 153, 39, 133, 39, 133, 19, 153, 19, 133, 39, 113, 39, 113, 19, 133, 19, 133, 57, 113, 57, 113, 39, 133, 39, 153, 57, 133, 57, 133, 39, 153, 39, 193, 39, 173, 39, 173, 19, 193, 19, 173, 39, 153, 39, 153, 19, 173, 19, 173, 57, 153, 57, 153, 39, 173, 39, 193, 57, 173, 57, 173, 39, 193, 39, 73, 239, 53, 239, 53, 221.2, 54, 219, 73, 219, 53, 239, 46, 239, 46, 236, 47, 234, 48, 234, 49, 233, 49, 230, 53, 221.2, 73, 219, 54, 219, 54, 214, 55, 214, 56, 213, 56, 209, 58.5, 199, 73, 199, 53, 259, 35, 259, 35, 257, 37, 253, 39, 253, 39, 250, 46, 239, 53, 239, 73, 279, 53, 279, 53, 259, 73, 259, 53, 279, 33, 279, 33, 260, 35, 260, 35, 259, 53, 259, 73, 259, 53, 259, 53, 239, 73, 239, 33, 279, 20.75, 279, 32, 264, 32, 262, 33, 260, 33, 281, 20, 281, 20, 280, 20.75, 279, 33, 279, 53, 281, 33, 281, 33, 279, 53, 279, 73, 281, 53, 281, 53, 279, 73, 279, 93, 219, 73, 219, 73, 199, 93, 199, 103, 221, 102, 221, 101, 226, 101, 230, 100, 231, 99, 231, 99, 235, 97, 238, 97, 239, 93, 239, 93, 219, 104, 219, 93, 239, 73, 239, 73, 219, 93, 219, 106, 207, 104, 214, 104, 219, 93, 219, 93, 199, 106, 199, 93, 259, 73, 259, 73, 239, 93, 239, 113, 279, 93, 279, 93, 259, 113, 259, 93, 279, 73, 279, 73, 259, 93, 259, 97, 241, 95, 242, 95, 243, 113, 243, 113, 259, 93, 259, 93, 239, 97, 239, 93, 281, 73, 281, 73, 279, 93, 279, 113, 281, 93, 281, 93, 279, 113, 279, 133, 259, 113, 259, 113, 243, 133, 243, 153, 279, 133, 279, 133, 259, 153, 259, 133, 279, 113, 279, 113, 259, 133, 259, 153, 259, 133, 259, 133, 243, 153, 243, 133, 281, 113, 281, 113, 279, 133, 279, 153, 281, 133, 281, 133, 279, 153, 279, 173, 259, 153, 259, 153, 243, 173, 243, 193, 279, 173, 279, 173, 259, 193, 259, 173, 279, 153, 279, 153, 259, 173, 259, 193, 259, 173, 259, 173, 243, 193, 243, 173, 281, 153, 281, 153, 279, 173, 279, 193, 281, 173, 281, 173, 279, 193, 279, 233, 39, 213, 39, 213, 19, 233, 19, 213, 39, 193, 39, 193, 19, 213, 19, 213, 59, 203, 59, 203, 58, 205, 58, 205, 57, 193, 57, 193, 39, 213, 39, 233, 79, 213, 79, 213, 59, 233, 59, 213, 79, 195, 79, 199, 70, 199, 67, 200, 66, 201, 66, 201, 63, 203, 61, 203, 59, 213, 59, 233, 59, 213, 59, 213, 39, 233, 39, 213, 99, 195, 99, 195, 79, 213, 79, 233, 119, 213, 119, 213, 99, 233, 99, 213, 119, 197.2, 119, 196, 115, 195, 115, 195, 99, 213, 99, 233, 99, 213, 99, 213, 79, 233, 79, 241, 88, 241, 99, 233, 99, 233, 79, 244, 79, 241, 100, 242, 100, 244, 111, 245, 111, 248.556, 119, 233, 119, 233, 99, 241, 99, 213, 139, 209, 139, 209, 137, 207, 135, 206, 135, 206, 133, 204, 131, 203, 131, 200, 125, 199, 125, 197.2, 119, 213, 119, 233, 157.875, 232, 157, 232, 156, 230, 156, 227, 153, 227, 152, 225, 152, 215, 143, 213, 143, 213, 139, 233, 139, 213, 143, 211, 139, 213, 139, 233, 139, 213, 139, 213, 119, 233, 119, 273, 27, 270, 30, 270, 32, 267, 34, 267, 36, 265, 36, 265, 38, 264.5, 39, 253, 39, 253, 19, 273, 19, 253, 39, 233, 39, 233, 19, 253, 19, 280, 20, 273, 27, 273, 19, 280, 19, 253, 57, 252, 59, 233, 59, 233, 39, 253, 39, 250, 63, 249, 63, 248, 64, 248, 67, 244, 79, 233, 79, 233, 59, 252, 59, 264, 40, 262, 40, 262, 42, 258, 49, 257, 49, 255, 51, 255, 53, 253, 57, 253, 39, 264.5, 39, 249, 120, 250, 120, 253, 123, 253, 139, 233, 139, 233, 119, 248.556, 119, 273, 159, 253, 159, 253, 139, 273, 139, 253, 159, 234.286, 159, 233, 157.875, 233, 139, 253, 139, 255, 125, 255, 127, 257, 127, 272, 139, 253, 139, 253, 123, 275, 143, 275, 145, 277, 145, 277, 147, 282, 155, 282, 158, 283, 159, 273, 159, 273, 141.667, 253, 179, 247.182, 179, 244, 172, 244, 170, 240, 166, 240, 164, 234.286, 159, 253, 159, 273, 199, 253, 199, 253, 179, 273, 179, 253, 199, 249, 199, 249, 183, 247.182, 179, 253, 179, 273, 179, 253, 179, 253, 159, 273, 159, 284, 160, 284, 164, 287, 173, 287, 179, 273, 179, 273, 159, 283, 159, 287, 199, 273, 199, 273, 179, 287, 179, 213, 259, 193, 259, 193, 243, 213, 243, 233, 279, 213, 279, 213, 259, 233, 259, 213, 279, 193, 279, 193, 259, 213, 259, 233, 259, 213, 259, 213, 243, 225, 243, 227.933, 239, 233, 239, 213, 281, 193, 281, 193, 279, 213, 279, 233, 281, 213, 281, 213, 279, 233, 279, 253, 219, 242, 219, 244, 213, 245, 213, 248, 199, 253, 199, 273, 239, 253, 239, 253, 219, 273, 219, 253, 239, 233, 239, 233, 232.091, 236, 228, 237, 228, 237, 225, 239, 225, 239, 222, 241, 219, 253, 219, 273, 219, 253, 219, 253, 199, 273, 199, 233, 239, 227.933, 239, 233, 232.091, 287, 202, 286, 202, 284.111, 219, 273, 219, 273, 199, 287, 199, 284, 220, 283, 220, 278.615, 239, 273, 239, 273, 219, 284.111, 219, 253, 259, 233, 259, 233, 239, 253, 239, 270, 265, 269, 265, 262.875, 279, 253, 279, 253, 259, 271.895, 259, 253, 279, 233, 279, 233, 259, 253, 259, 273, 259, 253, 259, 253, 239, 273, 239, 253, 281, 233, 281, 233, 279, 253, 279, 262, 281, 253, 281, 253, 279, 262.875, 279, 277, 246, 276, 246, 273, 255.5, 273, 239, 278.615, 239) +polygons = [PackedInt32Array(106, 102, 103), PackedInt32Array(103, 104, 105), PackedInt32Array(105, 106, 103), PackedInt32Array(112, 107, 108), PackedInt32Array(108, 109, 110), PackedInt32Array(110, 111, 112), PackedInt32Array(112, 108, 110), PackedInt32Array(116, 113, 114), PackedInt32Array(114, 115, 116), PackedInt32Array(123, 117, 118), PackedInt32Array(118, 119, 120), PackedInt32Array(121, 122, 123), PackedInt32Array(123, 118, 120), PackedInt32Array(120, 121, 123), PackedInt32Array(124, 125, 126), PackedInt32Array(127, 128, 124), PackedInt32Array(124, 126, 127), PackedInt32Array(132, 129, 130), PackedInt32Array(130, 131, 132), PackedInt32Array(143, 133, 134), PackedInt32Array(134, 135, 136), PackedInt32Array(137, 138, 139), PackedInt32Array(139, 140, 141), PackedInt32Array(142, 143, 134), PackedInt32Array(134, 136, 137), PackedInt32Array(137, 139, 141), PackedInt32Array(141, 142, 134), PackedInt32Array(134, 137, 141), PackedInt32Array(147, 144, 145), PackedInt32Array(145, 146, 147), PackedInt32Array(151, 148, 149), PackedInt32Array(149, 150, 151), PackedInt32Array(158, 152, 153), PackedInt32Array(153, 154, 155), PackedInt32Array(156, 157, 158), PackedInt32Array(153, 155, 156), PackedInt32Array(156, 158, 153), PackedInt32Array(164, 159, 160), PackedInt32Array(160, 161, 162), PackedInt32Array(162, 163, 164), PackedInt32Array(164, 160, 162), PackedInt32Array(165, 166, 167), PackedInt32Array(167, 168, 169), PackedInt32Array(169, 170, 165), PackedInt32Array(165, 167, 169), PackedInt32Array(179, 171, 172), PackedInt32Array(172, 173, 174), PackedInt32Array(174, 175, 176), PackedInt32Array(176, 177, 178), PackedInt32Array(178, 179, 172), PackedInt32Array(174, 176, 178), PackedInt32Array(178, 172, 174), PackedInt32Array(180, 181, 182), PackedInt32Array(182, 183, 184), PackedInt32Array(184, 185, 180), PackedInt32Array(180, 182, 184), PackedInt32Array(189, 186, 187), PackedInt32Array(187, 188, 189), PackedInt32Array(193, 190, 191), PackedInt32Array(191, 192, 193), PackedInt32Array(197, 194, 195), PackedInt32Array(195, 196, 197), PackedInt32Array(208, 198, 199), PackedInt32Array(200, 201, 202), PackedInt32Array(202, 203, 204), PackedInt32Array(204, 205, 206), PackedInt32Array(206, 207, 208), PackedInt32Array(208, 199, 200), PackedInt32Array(204, 206, 208), PackedInt32Array(208, 200, 202), PackedInt32Array(202, 204, 208), PackedInt32Array(217, 209, 210), PackedInt32Array(211, 212, 213), PackedInt32Array(213, 214, 215), PackedInt32Array(215, 216, 217), PackedInt32Array(211, 213, 215), PackedInt32Array(215, 217, 210), PackedInt32Array(210, 211, 215), PackedInt32Array(220, 218, 219), PackedInt32Array(229, 221, 222), PackedInt32Array(223, 224, 225), PackedInt32Array(225, 226, 227), PackedInt32Array(227, 228, 229), PackedInt32Array(229, 222, 223), PackedInt32Array(223, 225, 227), PackedInt32Array(227, 229, 223), PackedInt32Array(232, 230, 231), PackedInt32Array(238, 233, 234), PackedInt32Array(236, 237, 238), PackedInt32Array(238, 234, 235), PackedInt32Array(235, 236, 238), PackedInt32Array(245, 239, 240), PackedInt32Array(241, 242, 243), PackedInt32Array(243, 244, 245), PackedInt32Array(245, 240, 241), PackedInt32Array(241, 243, 245), PackedInt32Array(249, 246, 247), PackedInt32Array(247, 248, 249), PackedInt32Array(253, 250, 251), PackedInt32Array(251, 252, 253), PackedInt32Array(260, 254, 255), PackedInt32Array(255, 256, 257), PackedInt32Array(257, 258, 259), PackedInt32Array(259, 260, 255), PackedInt32Array(255, 257, 259), PackedInt32Array(264, 261, 262), PackedInt32Array(262, 263, 264), PackedInt32Array(268, 265, 266), PackedInt32Array(266, 267, 268), PackedInt32Array(272, 269, 270), PackedInt32Array(270, 271, 272), PackedInt32Array(276, 273, 274), PackedInt32Array(274, 275, 276), PackedInt32Array(277, 278, 279), PackedInt32Array(279, 280, 281), PackedInt32Array(281, 282, 283), PackedInt32Array(283, 277, 279), PackedInt32Array(279, 281, 283), PackedInt32Array(284, 285, 286), PackedInt32Array(287, 288, 284), PackedInt32Array(284, 286, 287), PackedInt32Array(289, 290, 291), PackedInt32Array(291, 292, 293), PackedInt32Array(293, 294, 295), PackedInt32Array(295, 289, 291), PackedInt32Array(291, 293, 295), PackedInt32Array(296, 297, 298), PackedInt32Array(298, 299, 300), PackedInt32Array(300, 301, 302), PackedInt32Array(302, 303, 304), PackedInt32Array(304, 305, 296), PackedInt32Array(298, 300, 302), PackedInt32Array(302, 304, 296), PackedInt32Array(296, 298, 302), PackedInt32Array(309, 306, 307), PackedInt32Array(307, 308, 309), PackedInt32Array(313, 310, 311), PackedInt32Array(311, 312, 313), PackedInt32Array(317, 314, 315), PackedInt32Array(315, 316, 317), PackedInt32Array(321, 318, 319), PackedInt32Array(319, 320, 321), PackedInt32Array(325, 322, 323), PackedInt32Array(323, 324, 325), PackedInt32Array(329, 326, 327), PackedInt32Array(327, 328, 329), PackedInt32Array(333, 330, 331), PackedInt32Array(331, 332, 333), PackedInt32Array(337, 334, 335), PackedInt32Array(335, 336, 337), PackedInt32Array(342, 338, 339), PackedInt32Array(339, 340, 341), PackedInt32Array(341, 342, 339), PackedInt32Array(343, 344, 345), PackedInt32Array(345, 346, 347), PackedInt32Array(348, 349, 350), PackedInt32Array(343, 345, 347), PackedInt32Array(348, 350, 343), PackedInt32Array(343, 347, 348), PackedInt32Array(358, 351, 352), PackedInt32Array(352, 353, 354), PackedInt32Array(355, 356, 357), PackedInt32Array(358, 352, 354), PackedInt32Array(355, 357, 358), PackedInt32Array(358, 354, 355), PackedInt32Array(366, 359, 360), PackedInt32Array(360, 361, 362), PackedInt32Array(363, 364, 365), PackedInt32Array(360, 362, 363), PackedInt32Array(363, 365, 366), PackedInt32Array(366, 360, 363), PackedInt32Array(370, 367, 368), PackedInt32Array(368, 369, 370), PackedInt32Array(376, 371, 372), PackedInt32Array(372, 373, 374), PackedInt32Array(374, 375, 376), PackedInt32Array(376, 372, 374), PackedInt32Array(380, 377, 378), PackedInt32Array(378, 379, 380), PackedInt32Array(381, 382, 383), PackedInt32Array(383, 384, 385), PackedInt32Array(385, 381, 383), PackedInt32Array(390, 386, 387), PackedInt32Array(387, 388, 389), PackedInt32Array(389, 390, 387), PackedInt32Array(394, 391, 392), PackedInt32Array(392, 393, 394), PackedInt32Array(398, 395, 396), PackedInt32Array(396, 397, 398), PackedInt32Array(402, 399, 400), PackedInt32Array(400, 401, 402), PackedInt32Array(414, 403, 404), PackedInt32Array(405, 406, 407), PackedInt32Array(408, 409, 410), PackedInt32Array(410, 411, 412), PackedInt32Array(413, 414, 404), PackedInt32Array(405, 407, 408), PackedInt32Array(408, 410, 412), PackedInt32Array(412, 413, 404), PackedInt32Array(404, 405, 408), PackedInt32Array(408, 412, 404), PackedInt32Array(418, 415, 416), PackedInt32Array(416, 417, 418), PackedInt32Array(424, 419, 420), PackedInt32Array(420, 421, 422), PackedInt32Array(422, 423, 424), PackedInt32Array(424, 420, 422), PackedInt32Array(428, 425, 426), PackedInt32Array(426, 427, 428), PackedInt32Array(432, 429, 430), PackedInt32Array(430, 431, 432), PackedInt32Array(436, 433, 434), PackedInt32Array(434, 435, 436), PackedInt32Array(444, 437, 438), PackedInt32Array(439, 440, 441), PackedInt32Array(443, 444, 438), PackedInt32Array(439, 441, 442), PackedInt32Array(442, 443, 438), PackedInt32Array(438, 439, 442), PackedInt32Array(448, 445, 446), PackedInt32Array(446, 447, 448), PackedInt32Array(452, 449, 450), PackedInt32Array(450, 451, 452), PackedInt32Array(456, 453, 454), PackedInt32Array(454, 455, 456), PackedInt32Array(460, 457, 458), PackedInt32Array(458, 459, 460), PackedInt32Array(464, 461, 462), PackedInt32Array(462, 463, 464), PackedInt32Array(468, 465, 466), PackedInt32Array(466, 467, 468), PackedInt32Array(472, 469, 470), PackedInt32Array(470, 471, 472), PackedInt32Array(476, 473, 474), PackedInt32Array(474, 475, 476), PackedInt32Array(480, 477, 478), PackedInt32Array(478, 479, 480), PackedInt32Array(484, 481, 482), PackedInt32Array(482, 483, 484), PackedInt32Array(488, 485, 486), PackedInt32Array(486, 487, 488), PackedInt32Array(492, 489, 490), PackedInt32Array(490, 491, 492), PackedInt32Array(496, 493, 494), PackedInt32Array(494, 495, 496), PackedInt32Array(500, 497, 498), PackedInt32Array(498, 499, 500), PackedInt32Array(504, 501, 502), PackedInt32Array(502, 503, 504), PackedInt32Array(508, 505, 506), PackedInt32Array(506, 507, 508), PackedInt32Array(509, 510, 511), PackedInt32Array(513, 514, 515), PackedInt32Array(515, 516, 509), PackedInt32Array(509, 511, 512), PackedInt32Array(513, 515, 509), PackedInt32Array(509, 512, 513), PackedInt32Array(520, 517, 518), PackedInt32Array(518, 519, 520), PackedInt32Array(530, 521, 522), PackedInt32Array(523, 524, 525), PackedInt32Array(526, 527, 528), PackedInt32Array(528, 529, 530), PackedInt32Array(530, 522, 523), PackedInt32Array(523, 525, 526), PackedInt32Array(526, 528, 530), PackedInt32Array(530, 523, 526), PackedInt32Array(534, 531, 532), PackedInt32Array(532, 533, 534), PackedInt32Array(538, 535, 536), PackedInt32Array(536, 537, 538), PackedInt32Array(542, 539, 540), PackedInt32Array(540, 541, 542), PackedInt32Array(548, 543, 544), PackedInt32Array(545, 546, 547), PackedInt32Array(547, 548, 544), PackedInt32Array(544, 545, 547), PackedInt32Array(552, 549, 550), PackedInt32Array(550, 551, 552), PackedInt32Array(553, 554, 555), PackedInt32Array(555, 556, 557), PackedInt32Array(557, 553, 555), PackedInt32Array(558, 559, 560), PackedInt32Array(560, 561, 562), PackedInt32Array(562, 563, 564), PackedInt32Array(564, 565, 558), PackedInt32Array(560, 562, 564), PackedInt32Array(564, 558, 560), PackedInt32Array(577, 566, 567), PackedInt32Array(569, 570, 571), PackedInt32Array(572, 573, 574), PackedInt32Array(574, 575, 576), PackedInt32Array(577, 567, 568), PackedInt32Array(568, 569, 571), PackedInt32Array(571, 572, 574), PackedInt32Array(574, 576, 577), PackedInt32Array(577, 568, 571), PackedInt32Array(571, 574, 577), PackedInt32Array(588, 578, 579), PackedInt32Array(580, 581, 582), PackedInt32Array(583, 584, 585), PackedInt32Array(585, 586, 587), PackedInt32Array(588, 579, 580), PackedInt32Array(580, 582, 583), PackedInt32Array(583, 585, 587), PackedInt32Array(587, 588, 580), PackedInt32Array(580, 583, 587), PackedInt32Array(591, 589, 590), PackedInt32Array(595, 592, 593), PackedInt32Array(593, 594, 595), PackedInt32Array(606, 596, 597), PackedInt32Array(597, 598, 599), PackedInt32Array(599, 600, 601), PackedInt32Array(601, 602, 603), PackedInt32Array(603, 604, 605), PackedInt32Array(605, 606, 597), PackedInt32Array(597, 599, 601), PackedInt32Array(601, 603, 605), PackedInt32Array(605, 597, 601), PackedInt32Array(610, 607, 608), PackedInt32Array(608, 609, 610), PackedInt32Array(614, 611, 612), PackedInt32Array(612, 613, 614), PackedInt32Array(619, 615, 616), PackedInt32Array(616, 617, 618), PackedInt32Array(618, 619, 616), PackedInt32Array(627, 620, 621), PackedInt32Array(622, 623, 624), PackedInt32Array(624, 625, 626), PackedInt32Array(626, 627, 621), PackedInt32Array(622, 624, 626), PackedInt32Array(626, 621, 622), PackedInt32Array(637, 628, 629), PackedInt32Array(629, 630, 631), PackedInt32Array(633, 634, 635), PackedInt32Array(636, 637, 629), PackedInt32Array(629, 631, 632), PackedInt32Array(633, 635, 636), PackedInt32Array(636, 629, 632), PackedInt32Array(632, 633, 636), PackedInt32Array(638, 639, 640), PackedInt32Array(640, 641, 642), PackedInt32Array(642, 643, 644), PackedInt32Array(638, 640, 642), PackedInt32Array(642, 644, 638), PackedInt32Array(648, 645, 646), PackedInt32Array(646, 647, 648), PackedInt32Array(653, 649, 650), PackedInt32Array(650, 651, 652), PackedInt32Array(652, 653, 650), PackedInt32Array(659, 654, 655), PackedInt32Array(655, 656, 657), PackedInt32Array(658, 659, 655), PackedInt32Array(655, 657, 658), PackedInt32Array(668, 660, 661), PackedInt32Array(661, 662, 663), PackedInt32Array(663, 664, 665), PackedInt32Array(665, 666, 667), PackedInt32Array(667, 668, 661), PackedInt32Array(661, 663, 665), PackedInt32Array(665, 667, 661), PackedInt32Array(676, 669, 670), PackedInt32Array(670, 671, 672), PackedInt32Array(672, 673, 674), PackedInt32Array(674, 675, 676), PackedInt32Array(676, 670, 672), PackedInt32Array(672, 674, 676), PackedInt32Array(680, 677, 678), PackedInt32Array(678, 679, 680), PackedInt32Array(685, 681, 682), PackedInt32Array(683, 684, 685), PackedInt32Array(685, 682, 683), PackedInt32Array(689, 686, 687), PackedInt32Array(687, 688, 689), PackedInt32Array(696, 690, 691), PackedInt32Array(691, 692, 693), PackedInt32Array(693, 694, 695), PackedInt32Array(695, 696, 691), PackedInt32Array(691, 693, 695), PackedInt32Array(700, 697, 698), PackedInt32Array(698, 699, 700), PackedInt32Array(704, 701, 702), PackedInt32Array(702, 703, 704), PackedInt32Array(708, 705, 706), PackedInt32Array(706, 707, 708), PackedInt32Array(712, 709, 710), PackedInt32Array(710, 711, 712), PackedInt32Array(718, 713, 714), PackedInt32Array(714, 715, 716), PackedInt32Array(716, 717, 718), PackedInt32Array(718, 714, 716), PackedInt32Array(722, 719, 720), PackedInt32Array(720, 721, 722), PackedInt32Array(726, 723, 724), PackedInt32Array(724, 725, 726), PackedInt32Array(732, 727, 728), PackedInt32Array(728, 729, 730), PackedInt32Array(730, 731, 732), PackedInt32Array(732, 728, 730), PackedInt32Array(736, 733, 734), PackedInt32Array(734, 735, 736), PackedInt32Array(746, 737, 738), PackedInt32Array(738, 739, 740), PackedInt32Array(741, 742, 743), PackedInt32Array(743, 744, 745), PackedInt32Array(738, 740, 741), PackedInt32Array(743, 745, 746), PackedInt32Array(746, 738, 741), PackedInt32Array(741, 743, 746), PackedInt32Array(750, 747, 748), PackedInt32Array(748, 749, 750), PackedInt32Array(753, 751, 752), PackedInt32Array(759, 754, 755), PackedInt32Array(755, 756, 757), PackedInt32Array(757, 758, 759), PackedInt32Array(759, 755, 757), PackedInt32Array(765, 760, 761), PackedInt32Array(761, 762, 763), PackedInt32Array(764, 765, 761), PackedInt32Array(761, 763, 764), PackedInt32Array(769, 766, 767), PackedInt32Array(767, 768, 769), PackedInt32Array(775, 770, 771), PackedInt32Array(771, 772, 773), PackedInt32Array(773, 774, 775), PackedInt32Array(775, 771, 773), PackedInt32Array(779, 776, 777), PackedInt32Array(777, 778, 779), PackedInt32Array(783, 780, 781), PackedInt32Array(781, 782, 783), PackedInt32Array(787, 784, 785), PackedInt32Array(785, 786, 787), PackedInt32Array(791, 788, 789), PackedInt32Array(789, 790, 791), PackedInt32Array(796, 792, 793), PackedInt32Array(793, 794, 795), PackedInt32Array(795, 796, 793)] +bones = ["Bone-0", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-1", PackedFloat32Array(1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-2", PackedFloat32Array(0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-3", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-4", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-5", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-6", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-7", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-8", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-9", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-10", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-11", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-12", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 1, 1, 0, 0, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-13", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-14", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-15", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-16", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-17", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-18", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-19", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-20", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-21", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-22", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-23", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-24", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-25", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-26", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-27", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-28", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1), "Bone-29", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1)] +internal_vertex_count = 695 +script = ExtResource("2_4mj6g") +vertex_interval = 40 +exclude_texture = ExtResource("3_n8j03") +softness = 100.0 +radius = 40 + +[node name="Skeleton2D" type="Skeleton2D" parent="HangingSoftbody2D"] +visible = false +modification_stack = SubResource("SkeletonModificationStack2D_2edv7") + +[node name="Bone-0" type="Bone2D" parent="HangingSoftbody2D/Skeleton2D"] +position = Vector2(23, 99) +rest = Transform2D(1, 0, 0, 1, 23, 99) +auto_calculate_length_and_angle = false +length = 40.0 +bone_angle = 0.0 +metadata/vert_owned = [102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112] +metadata/idx = 0 +metadata/connected_nodes_paths = [NodePath("Bone-4"), NodePath("Bone-3"), NodePath("Bone-2")] +metadata/connected_nodes_idx = [4, 3, 2] +metadata/_local_pose_override_enabled_ = true + +[node name="Bone-1" type="Bone2D" parent="HangingSoftbody2D/Skeleton2D"] +position = Vector2(50.2647, 29) +rest = Transform2D(1, 0, 0, 1, 50.2647, 29) +auto_calculate_length_and_angle = false +length = 40.0 +bone_angle = 0.0 +metadata/vert_owned = [113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128] +metadata/idx = 1 +metadata/connected_nodes_paths = [NodePath("Bone-2"), NodePath("Bone-6"), NodePath("Bone-7")] +metadata/connected_nodes_idx = [2, 6, 7] +metadata/_local_pose_override_enabled_ = true + +[node name="Bone-2" type="Bone2D" parent="HangingSoftbody2D/Skeleton2D"] +position = Vector2(44, 59) +rotation = -1.36493 +scale = Vector2(1, 1) +rest = Transform2D(0.204414, -0.978884, 0.978884, 0.204414, 44, 59) +auto_calculate_length_and_angle = false +length = 40.0 +bone_angle = 0.0 +metadata/vert_owned = [129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164] +metadata/idx = 2 +metadata/connected_nodes_paths = [NodePath("Bone-0"), NodePath("Bone-3"), NodePath("Bone-1"), NodePath("Bone-6"), NodePath("Bone-7")] +metadata/connected_nodes_idx = [0, 3, 1, 6, 7] +metadata/_local_pose_override_enabled_ = true + +[node name="Bone-3" type="Bone2D" parent="HangingSoftbody2D/Skeleton2D"] +position = Vector2(47, 99) +rotation = 1.63736 +rest = Transform2D(-0.0665195, 0.997785, -0.997785, -0.0665195, 47, 99) +auto_calculate_length_and_angle = false +length = 40.0 +bone_angle = 0.0 +metadata/vert_owned = [165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189] +metadata/idx = 3 +metadata/connected_nodes_paths = [NodePath("Bone-0"), NodePath("Bone-4"), NodePath("Bone-2")] +metadata/connected_nodes_idx = [0, 4, 2] +metadata/_local_pose_override_enabled_ = true + +[node name="Bone-4" type="Bone2D" parent="HangingSoftbody2D/Skeleton2D"] +position = Vector2(44.3333, 139) +rotation = 1.176 +rest = Transform2D(0.384616, 0.923077, -0.923077, 0.384616, 44.3333, 139) +auto_calculate_length_and_angle = false +length = 40.0 +bone_angle = 0.0 +metadata/vert_owned = [190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229] +metadata/idx = 4 +metadata/connected_nodes_paths = [NodePath("Bone-0"), NodePath("Bone-3"), NodePath("Bone-5"), NodePath("Bone-8")] +metadata/connected_nodes_idx = [0, 3, 5, 8] +metadata/_local_pose_override_enabled_ = true + +[node name="Bone-5" type="Bone2D" parent="HangingSoftbody2D/Skeleton2D"] +position = Vector2(61, 179) +rotation = 1.60828 +rest = Transform2D(-0.0374736, 0.999298, -0.999298, -0.0374736, 61, 179) +auto_calculate_length_and_angle = false +length = 40.0 +bone_angle = 0.0 +metadata/vert_owned = [230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245] +metadata/idx = 5 +metadata/connected_nodes_paths = [NodePath("Bone-4"), NodePath("Bone-8"), NodePath("Bone-13"), NodePath("Bone-15")] +metadata/connected_nodes_idx = [4, 8, 13, 15] +metadata/_local_pose_override_enabled_ = true + +[node name="Bone-6" type="Bone2D" parent="HangingSoftbody2D/Skeleton2D"] +position = Vector2(93, 29) +rotation = 1.5708 +rest = Transform2D(-4.37114e-08, 1, -1, -4.37114e-08, 93, 29) +auto_calculate_length_and_angle = false +length = 40.0 +bone_angle = 0.0 +metadata/vert_owned = [246, 247, 248, 249, 250, 251, 252, 253] +metadata/idx = 6 +metadata/connected_nodes_paths = [NodePath("Bone-1"), NodePath("Bone-2"), NodePath("Bone-7"), NodePath("Bone-9"), NodePath("Bone-10")] +metadata/connected_nodes_idx = [1, 2, 7, 9, 10] +metadata/_local_pose_override_enabled_ = true + +[node name="Bone-7" type="Bone2D" parent="HangingSoftbody2D/Skeleton2D"] +position = Vector2(93, 49) +rotation = -1.5708 +rest = Transform2D(-4.37114e-08, -1, 1, -4.37114e-08, 93, 49) +auto_calculate_length_and_angle = false +length = 40.0 +bone_angle = 0.0 +metadata/vert_owned = [254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264] +metadata/idx = 7 +metadata/connected_nodes_paths = [NodePath("Bone-1"), NodePath("Bone-2"), NodePath("Bone-6"), NodePath("Bone-9"), NodePath("Bone-10")] +metadata/connected_nodes_idx = [1, 2, 6, 9, 10] +metadata/_local_pose_override_enabled_ = true + +[node name="Bone-8" type="Bone2D" parent="HangingSoftbody2D/Skeleton2D"] +position = Vector2(89.5, 163.45) +rotation = 2.06597 +rest = Transform2D(-0.475186, 0.879885, -0.879885, -0.475186, 89.5, 163.45) +auto_calculate_length_and_angle = false +length = 40.0 +bone_angle = 0.0 +metadata/vert_owned = [265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305] +metadata/idx = 8 +metadata/connected_nodes_paths = [NodePath("Bone-4"), NodePath("Bone-5"), NodePath("Bone-13"), NodePath("Bone-15")] +metadata/connected_nodes_idx = [4, 5, 13, 15] +metadata/_local_pose_override_enabled_ = true + +[node name="Bone-9" type="Bone2D" parent="HangingSoftbody2D/Skeleton2D"] +position = Vector2(133, 29) +rotation = 1.5708 +rest = Transform2D(-4.37114e-08, 1, -1, -4.37114e-08, 133, 29) +auto_calculate_length_and_angle = false +length = 40.0 +bone_angle = 0.0 +metadata/vert_owned = [306, 307, 308, 309, 310, 311, 312, 313] +metadata/idx = 9 +metadata/connected_nodes_paths = [NodePath("Bone-6"), NodePath("Bone-7"), NodePath("Bone-10"), NodePath("Bone-11"), NodePath("Bone-12")] +metadata/connected_nodes_idx = [6, 7, 10, 11, 12] +metadata/_local_pose_override_enabled_ = true + +[node name="Bone-10" type="Bone2D" parent="HangingSoftbody2D/Skeleton2D"] +position = Vector2(133, 48) +rotation = -1.5708 +rest = Transform2D(-4.37114e-08, -1, 1, -4.37114e-08, 133, 48) +auto_calculate_length_and_angle = false +length = 40.0 +bone_angle = 0.0 +metadata/vert_owned = [314, 315, 316, 317, 318, 319, 320, 321] +metadata/idx = 10 +metadata/connected_nodes_paths = [NodePath("Bone-6"), NodePath("Bone-7"), NodePath("Bone-9"), NodePath("Bone-11"), NodePath("Bone-12")] +metadata/connected_nodes_idx = [6, 7, 9, 11, 12] +metadata/_local_pose_override_enabled_ = true + +[node name="Bone-11" type="Bone2D" parent="HangingSoftbody2D/Skeleton2D"] +position = Vector2(173, 29) +rotation = 1.5708 +rest = Transform2D(-4.37114e-08, 1, -1, -4.37114e-08, 173, 29) +auto_calculate_length_and_angle = false +length = 40.0 +bone_angle = 0.0 +metadata/vert_owned = [322, 323, 324, 325, 326, 327, 328, 329] +metadata/idx = 11 +metadata/connected_nodes_paths = [NodePath("Bone-9"), NodePath("Bone-10"), NodePath("Bone-12"), NodePath("Bone-19"), NodePath("Bone-20")] +metadata/connected_nodes_idx = [9, 10, 12, 19, 20] +metadata/_local_pose_override_enabled_ = true + +[node name="Bone-12" type="Bone2D" parent="HangingSoftbody2D/Skeleton2D"] +position = Vector2(173, 48) +rotation = -1.5708 +rest = Transform2D(-4.37114e-08, -1, 1, -4.37114e-08, 173, 48) +auto_calculate_length_and_angle = false +length = 40.0 +bone_angle = 0.0 +metadata/vert_owned = [330, 331, 332, 333, 334, 335, 336, 337] +metadata/idx = 12 +metadata/connected_nodes_paths = [NodePath("Bone-9"), NodePath("Bone-10"), NodePath("Bone-11"), NodePath("Bone-19"), NodePath("Bone-20")] +metadata/connected_nodes_idx = [9, 10, 11, 19, 20] +metadata/_local_pose_override_enabled_ = true + +[node name="Bone-13" type="Bone2D" parent="HangingSoftbody2D/Skeleton2D"] +position = Vector2(59.5, 219) +rotation = -1.07562 +rest = Transform2D(0.475186, -0.879885, 0.879885, 0.475186, 59.5, 219) +auto_calculate_length_and_angle = false +length = 40.0 +bone_angle = 0.0 +metadata/vert_owned = [338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358] +metadata/idx = 13 +metadata/connected_nodes_paths = [NodePath("Bone-14"), NodePath("Bone-5"), NodePath("Bone-8"), NodePath("Bone-15"), NodePath("Bone-16")] +metadata/connected_nodes_idx = [14, 5, 8, 15, 16] +metadata/_local_pose_override_enabled_ = true + +[node name="Bone-14" type="Bone2D" parent="HangingSoftbody2D/Skeleton2D"] +position = Vector2(46.5, 260) +rotation = -0.761593 +rest = Transform2D(0.723738, -0.690075, 0.690075, 0.723738, 46.5, 260) +auto_calculate_length_and_angle = false +length = 40.0 +bone_angle = 0.0 +metadata/vert_owned = [359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398] +metadata/idx = 14 +metadata/connected_nodes_paths = [NodePath("Bone-13"), NodePath("Bone-15"), NodePath("Bone-16")] +metadata/connected_nodes_idx = [13, 15, 16] +metadata/_local_pose_override_enabled_ = true + +[node name="Bone-15" type="Bone2D" parent="HangingSoftbody2D/Skeleton2D"] +position = Vector2(89.5, 219) +rotation = 3.14159 +rest = Transform2D(-1, 1.50996e-07, -1.50996e-07, -1, 89.5, 219) +auto_calculate_length_and_angle = false +length = 40.0 +bone_angle = 0.0 +metadata/vert_owned = [399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424] +metadata/idx = 15 +metadata/connected_nodes_paths = [NodePath("Bone-5"), NodePath("Bone-8"), NodePath("Bone-13"), NodePath("Bone-14"), NodePath("Bone-16")] +metadata/connected_nodes_idx = [5, 8, 13, 14, 16] +metadata/_local_pose_override_enabled_ = true + +[node name="Bone-16" type="Bone2D" parent="HangingSoftbody2D/Skeleton2D"] +position = Vector2(93, 260) +rotation = -1.65596 +rest = Transform2D(-0.0850565, -0.996376, 0.996376, -0.0850565, 93, 260) +auto_calculate_length_and_angle = false +length = 40.0 +bone_angle = 0.0 +metadata/vert_owned = [425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452] +metadata/idx = 16 +metadata/connected_nodes_paths = [NodePath("Bone-13"), NodePath("Bone-14"), NodePath("Bone-15"), NodePath("Bone-17")] +metadata/connected_nodes_idx = [13, 14, 15, 17] +metadata/_local_pose_override_enabled_ = true + +[node name="Bone-17" type="Bone2D" parent="HangingSoftbody2D/Skeleton2D"] +position = Vector2(133, 262) +rest = Transform2D(1, 0, 0, 1, 133, 262) +auto_calculate_length_and_angle = false +length = 40.0 +bone_angle = 0.0 +metadata/vert_owned = [453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476] +metadata/idx = 17 +metadata/connected_nodes_paths = [NodePath("Bone-16"), NodePath("Bone-18")] +metadata/connected_nodes_idx = [16, 18] +metadata/_local_pose_override_enabled_ = true + +[node name="Bone-18" type="Bone2D" parent="HangingSoftbody2D/Skeleton2D"] +position = Vector2(173, 262) +rotation = -0.0499584 +rest = Transform2D(0.998752, -0.0499376, 0.0499376, 0.998752, 173, 262) +auto_calculate_length_and_angle = false +length = 40.0 +bone_angle = 0.0 +metadata/vert_owned = [477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500] +metadata/idx = 18 +metadata/connected_nodes_paths = [NodePath("Bone-17"), NodePath("Bone-27")] +metadata/connected_nodes_idx = [17, 27] +metadata/_local_pose_override_enabled_ = true + +[node name="Bone-19" type="Bone2D" parent="HangingSoftbody2D/Skeleton2D"] +position = Vector2(213, 29) +rotation = 1.5708 +rest = Transform2D(-4.37114e-08, 1, -1, -4.37114e-08, 213, 29) +auto_calculate_length_and_angle = false +length = 40.0 +bone_angle = 0.0 +metadata/vert_owned = [501, 502, 503, 504, 505, 506, 507, 508] +metadata/idx = 19 +metadata/connected_nodes_paths = [NodePath("Bone-11"), NodePath("Bone-12"), NodePath("Bone-20"), NodePath("Bone-23"), NodePath("Bone-24")] +metadata/connected_nodes_idx = [11, 12, 20, 23, 24] +metadata/_local_pose_override_enabled_ = true + +[node name="Bone-20" type="Bone2D" parent="HangingSoftbody2D/Skeleton2D"] +position = Vector2(213, 59) +rotation = -0.603749 +rest = Transform2D(0.823213, -0.567733, 0.567733, 0.823213, 213, 59) +auto_calculate_length_and_angle = false +length = 40.0 +bone_angle = 0.0 +metadata/vert_owned = [509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534] +metadata/idx = 20 +metadata/connected_nodes_paths = [NodePath("Bone-11"), NodePath("Bone-12"), NodePath("Bone-19"), NodePath("Bone-23"), NodePath("Bone-24"), NodePath("Bone-21")] +metadata/connected_nodes_idx = [11, 12, 19, 23, 24, 21] +metadata/_local_pose_override_enabled_ = true + +[node name="Bone-21" type="Bone2D" parent="HangingSoftbody2D/Skeleton2D"] +position = Vector2(221.778, 99) +rotation = -0.977524 +rest = Transform2D(0.559077, -0.829116, 0.829116, 0.559077, 221.778, 99) +auto_calculate_length_and_angle = false +length = 40.0 +bone_angle = 0.0 +metadata/vert_owned = [535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565] +metadata/idx = 21 +metadata/connected_nodes_paths = [NodePath("Bone-25"), NodePath("Bone-20"), NodePath("Bone-24"), NodePath("Bone-22")] +metadata/connected_nodes_idx = [25, 20, 24, 22] +metadata/_local_pose_override_enabled_ = true + +[node name="Bone-22" type="Bone2D" parent="HangingSoftbody2D/Skeleton2D"] +position = Vector2(215.1, 138.438) +rotation = 0.0131111 +rest = Transform2D(0.999914, 0.0131108, -0.0131108, 0.999914, 215.1, 138.438) +auto_calculate_length_and_angle = false +length = 40.0 +bone_angle = 0.0 +metadata/vert_owned = [566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595] +metadata/idx = 22 +metadata/connected_nodes_paths = [NodePath("Bone-21"), NodePath("Bone-25")] +metadata/connected_nodes_idx = [21, 25] +metadata/_local_pose_override_enabled_ = true + +[node name="Bone-23" type="Bone2D" parent="HangingSoftbody2D/Skeleton2D"] +position = Vector2(256.5, 29) +rotation = 3.14159 +rest = Transform2D(-1, 1.50996e-07, -1.50996e-07, -1, 256.5, 29) +auto_calculate_length_and_angle = false +length = 40.0 +bone_angle = 0.0 +metadata/vert_owned = [596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614] +metadata/idx = 23 +metadata/connected_nodes_paths = [NodePath("Bone-24"), NodePath("Bone-19"), NodePath("Bone-20")] +metadata/connected_nodes_idx = [24, 19, 20] +metadata/_local_pose_override_enabled_ = true + +[node name="Bone-24" type="Bone2D" parent="HangingSoftbody2D/Skeleton2D"] +position = Vector2(248.75, 59) +rotation = 3.14159 +rest = Transform2D(-1, 1.50996e-07, -1.50996e-07, -1, 248.75, 59) +auto_calculate_length_and_angle = false +length = 40.0 +bone_angle = 0.0 +metadata/vert_owned = [615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637] +metadata/idx = 24 +metadata/connected_nodes_paths = [NodePath("Bone-23"), NodePath("Bone-19"), NodePath("Bone-20"), NodePath("Bone-21")] +metadata/connected_nodes_idx = [23, 19, 20, 21] +metadata/_local_pose_override_enabled_ = true + +[node name="Bone-25" type="Bone2D" parent="HangingSoftbody2D/Skeleton2D"] +position = Vector2(258, 139) +rotation = -3.12848 +rest = Transform2D(-0.999914, -0.0131107, 0.0131107, -0.999914, 258, 139) +auto_calculate_length_and_angle = false +length = 40.0 +bone_angle = 0.0 +metadata/vert_owned = [638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668] +metadata/idx = 25 +metadata/connected_nodes_paths = [NodePath("Bone-21"), NodePath("Bone-22"), NodePath("Bone-26")] +metadata/connected_nodes_idx = [21, 22, 26] +metadata/_local_pose_override_enabled_ = true + +[node name="Bone-26" type="Bone2D" parent="HangingSoftbody2D/Skeleton2D"] +position = Vector2(260.643, 179) +rotation = 1.65003 +rest = Transform2D(-0.0791545, 0.996862, -0.996862, -0.0791545, 260.643, 179) +auto_calculate_length_and_angle = false +length = 40.0 +bone_angle = 0.0 +metadata/vert_owned = [669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700] +metadata/idx = 26 +metadata/connected_nodes_paths = [NodePath("Bone-25"), NodePath("Bone-28")] +metadata/connected_nodes_idx = [25, 28] +metadata/_local_pose_override_enabled_ = true + +[node name="Bone-27" type="Bone2D" parent="HangingSoftbody2D/Skeleton2D"] +position = Vector2(213, 260) +rest = Transform2D(1, 0, 0, 1, 213, 260) +auto_calculate_length_and_angle = false +length = 40.0 +bone_angle = 0.0 +metadata/vert_owned = [701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726] +metadata/idx = 27 +metadata/connected_nodes_paths = [NodePath("Bone-18"), NodePath("Bone-29"), NodePath("Bone-28")] +metadata/connected_nodes_idx = [18, 29, 28] +metadata/_local_pose_override_enabled_ = true + +[node name="Bone-28" type="Bone2D" parent="HangingSoftbody2D/Skeleton2D"] +position = Vector2(257.467, 219) +rotation = 2.39673 +scale = Vector2(1, 1) +rest = Transform2D(-0.735184, 0.677868, -0.677868, -0.735184, 257.467, 219) +auto_calculate_length_and_angle = false +length = 40.0 +bone_angle = 0.0 +metadata/vert_owned = [727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765] +metadata/idx = 28 +metadata/connected_nodes_paths = [NodePath("Bone-26"), NodePath("Bone-27"), NodePath("Bone-29")] +metadata/connected_nodes_idx = [26, 27, 29] +metadata/_local_pose_override_enabled_ = true + +[node name="Bone-29" type="Bone2D" parent="HangingSoftbody2D/Skeleton2D"] +position = Vector2(255.808, 260) +rotation = -1.53036 +scale = Vector2(1, 1) +rest = Transform2D(0.0404302, -0.999182, 0.999182, 0.0404302, 255.808, 260) +auto_calculate_length_and_angle = false +length = 40.0 +bone_angle = 0.0 +metadata/vert_owned = [766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796] +metadata/idx = 29 +metadata/connected_nodes_paths = [NodePath("Bone-27"), NodePath("Bone-28")] +metadata/connected_nodes_idx = [27, 28] +metadata/_local_pose_override_enabled_ = true + +[node name="Bone-0" type="RigidBody2D" parent="HangingSoftbody2D"] +position = Vector2(23, 99) +mass = 0.0333333 +metadata/idx = 0 +metadata/bone_name = &"Bone-0" + +[node name="CircleShape2D" type="CollisionShape2D" parent="HangingSoftbody2D/Bone-0"] +shape = SubResource("CircleShape2D_r1yj0") + +[node name="RemoteTransform2D" type="RemoteTransform2D" parent="HangingSoftbody2D/Bone-0"] +visible = false +remote_path = NodePath("../../Skeleton2D/Bone-0") +update_rotation = false +update_scale = false + +[node name="Joint2D-Bone-0-Bone-4" type="PinJoint2D" parent="HangingSoftbody2D/Bone-0"] +visible = false +rotation = -0.489957 +node_a = NodePath("..") +node_b = NodePath("../../Bone-4") +softness = 100.0 + +[node name="Joint2D-Bone-0-Bone-3" type="PinJoint2D" parent="HangingSoftbody2D/Bone-0"] +visible = false +rotation = -1.5708 +node_a = NodePath("..") +node_b = NodePath("../../Bone-3") +softness = 100.0 + +[node name="Joint2D-Bone-0-Bone-2" type="PinJoint2D" parent="HangingSoftbody2D/Bone-0"] +visible = false +rotation = -2.65815 +node_a = NodePath("..") +node_b = NodePath("../../Bone-2") +softness = 100.0 + +[node name="Bone-1" type="StaticBody2D" parent="HangingSoftbody2D"] +position = Vector2(50.2647, 29) +metadata/idx = 1 +metadata/bone_name = &"Bone-1" + +[node name="CircleShape2D" type="CollisionShape2D" parent="HangingSoftbody2D/Bone-1"] +shape = SubResource("CircleShape2D_r1yj0") + +[node name="RemoteTransform2D" type="RemoteTransform2D" parent="HangingSoftbody2D/Bone-1"] +visible = false +remote_path = NodePath("../../Skeleton2D/Bone-1") +update_rotation = false +update_scale = false + +[node name="Joint2D-Bone-1-Bone-2" type="PinJoint2D" parent="HangingSoftbody2D/Bone-1"] +visible = false +rotation = 0.205865 +node_a = NodePath("..") +node_b = NodePath("../../Bone-2") +softness = 100.0 + +[node name="Joint2D-Bone-1-Bone-6" type="PinJoint2D" parent="HangingSoftbody2D/Bone-1"] +visible = false +rotation = -1.5708 +node_a = NodePath("..") +node_b = NodePath("../../Bone-6") +softness = 100.0 + +[node name="Joint2D-Bone-1-Bone-7" type="PinJoint2D" parent="HangingSoftbody2D/Bone-1"] +visible = false +rotation = -1.13308 +scale = Vector2(1, 1) +node_a = NodePath("..") +node_b = NodePath("../../Bone-7") +softness = 100.0 + +[node name="Bone-2" type="RigidBody2D" parent="HangingSoftbody2D"] +position = Vector2(44, 59) +mass = 0.0333333 +metadata/idx = 2 +metadata/bone_name = &"Bone-2" + +[node name="CircleShape2D" type="CollisionShape2D" parent="HangingSoftbody2D/Bone-2"] +shape = SubResource("CircleShape2D_r1yj0") + +[node name="RemoteTransform2D" type="RemoteTransform2D" parent="HangingSoftbody2D/Bone-2"] +visible = false +remote_path = NodePath("../../Skeleton2D/Bone-2") +update_rotation = false +update_scale = false + +[node name="Joint2D-Bone-2-Bone-0" type="PinJoint2D" parent="HangingSoftbody2D/Bone-2"] +visible = false +rotation = 0.483447 +node_a = NodePath("..") +node_b = NodePath("../../Bone-0") +softness = 100.0 + +[node name="Joint2D-Bone-2-Bone-3" type="PinJoint2D" parent="HangingSoftbody2D/Bone-2"] +visible = false +rotation = -0.0748598 +node_a = NodePath("..") +node_b = NodePath("../../Bone-3") +softness = 100.0 + +[node name="Joint2D-Bone-2-Bone-1" type="PinJoint2D" parent="HangingSoftbody2D/Bone-2"] +visible = false +rotation = -2.93573 +node_a = NodePath("..") +node_b = NodePath("../../Bone-1") +softness = 100.0 + +[node name="Joint2D-Bone-2-Bone-6" type="PinJoint2D" parent="HangingSoftbody2D/Bone-2"] +visible = false +rotation = -2.12017 +node_a = NodePath("..") +node_b = NodePath("../../Bone-6") +softness = 100.0 + +[node name="Joint2D-Bone-2-Bone-7" type="PinJoint2D" parent="HangingSoftbody2D/Bone-2"] +visible = false +rotation = -1.77211 +node_a = NodePath("..") +node_b = NodePath("../../Bone-7") +softness = 100.0 + +[node name="Bone-3" type="RigidBody2D" parent="HangingSoftbody2D"] +position = Vector2(47, 99) +mass = 0.0333333 +metadata/idx = 3 +metadata/bone_name = &"Bone-3" + +[node name="CircleShape2D" type="CollisionShape2D" parent="HangingSoftbody2D/Bone-3"] +shape = SubResource("CircleShape2D_r1yj0") + +[node name="RemoteTransform2D" type="RemoteTransform2D" parent="HangingSoftbody2D/Bone-3"] +visible = false +remote_path = NodePath("../../Skeleton2D/Bone-3") +update_rotation = false +update_scale = false + +[node name="Joint2D-Bone-3-Bone-0" type="PinJoint2D" parent="HangingSoftbody2D/Bone-3"] +visible = false +rotation = 1.5708 +node_a = NodePath("..") +node_b = NodePath("../../Bone-0") +softness = 100.0 + +[node name="Joint2D-Bone-3-Bone-4" type="PinJoint2D" parent="HangingSoftbody2D/Bone-3"] +visible = false +rotation = 0.0665681 +node_a = NodePath("..") +node_b = NodePath("../../Bone-4") +softness = 100.0 + +[node name="Joint2D-Bone-3-Bone-2" type="PinJoint2D" parent="HangingSoftbody2D/Bone-3"] +visible = false +rotation = -3.21645 +node_a = NodePath("..") +node_b = NodePath("../../Bone-2") +softness = 100.0 + +[node name="Bone-4" type="RigidBody2D" parent="HangingSoftbody2D"] +position = Vector2(44.3333, 139) +mass = 0.0333333 +metadata/idx = 4 +metadata/bone_name = &"Bone-4" + +[node name="CircleShape2D" type="CollisionShape2D" parent="HangingSoftbody2D/Bone-4"] +shape = SubResource("CircleShape2D_r1yj0") + +[node name="RemoteTransform2D" type="RemoteTransform2D" parent="HangingSoftbody2D/Bone-4"] +visible = false +remote_path = NodePath("../../Skeleton2D/Bone-4") +update_rotation = false +update_scale = false + +[node name="Joint2D-Bone-4-Bone-0" type="PinJoint2D" parent="HangingSoftbody2D/Bone-4"] +visible = false +rotation = -3.63155 +node_a = NodePath("..") +node_b = NodePath("../../Bone-0") +softness = 100.0 + +[node name="Joint2D-Bone-4-Bone-3" type="PinJoint2D" parent="HangingSoftbody2D/Bone-4"] +visible = false +rotation = -3.07502 +node_a = NodePath("..") +node_b = NodePath("../../Bone-3") +softness = 100.0 + +[node name="Joint2D-Bone-4-Bone-5" type="PinJoint2D" parent="HangingSoftbody2D/Bone-4"] +visible = false +rotation = -0.394791 +node_a = NodePath("..") +node_b = NodePath("../../Bone-5") +softness = 100.0 + +[node name="Joint2D-Bone-4-Bone-8" type="PinJoint2D" parent="HangingSoftbody2D/Bone-4"] +visible = false +rotation = -1.07464 +node_a = NodePath("..") +node_b = NodePath("../../Bone-8") +softness = 100.0 + +[node name="Bone-5" type="RigidBody2D" parent="HangingSoftbody2D"] +position = Vector2(61, 179) +mass = 0.0333333 +metadata/idx = 5 +metadata/bone_name = &"Bone-5" + +[node name="CircleShape2D" type="CollisionShape2D" parent="HangingSoftbody2D/Bone-5"] +shape = SubResource("CircleShape2D_r1yj0") + +[node name="RemoteTransform2D" type="RemoteTransform2D" parent="HangingSoftbody2D/Bone-5"] +visible = false +remote_path = NodePath("../../Skeleton2D/Bone-5") +update_rotation = false +update_scale = false + +[node name="Joint2D-Bone-5-Bone-4" type="PinJoint2D" parent="HangingSoftbody2D/Bone-5"] +visible = false +rotation = -3.53638 +node_a = NodePath("..") +node_b = NodePath("../../Bone-4") +softness = 100.0 + +[node name="Joint2D-Bone-5-Bone-8" type="PinJoint2D" parent="HangingSoftbody2D/Bone-5"] +visible = false +rotation = -2.07027 +node_a = NodePath("..") +node_b = NodePath("../../Bone-8") +softness = 100.0 + +[node name="Joint2D-Bone-5-Bone-13" type="PinJoint2D" parent="HangingSoftbody2D/Bone-5"] +visible = false +rotation = 0.0374824 +node_a = NodePath("..") +node_b = NodePath("../../Bone-13") +softness = 100.0 + +[node name="Joint2D-Bone-5-Bone-15" type="PinJoint2D" parent="HangingSoftbody2D/Bone-5"] +visible = false +rotation = -0.619066 +node_a = NodePath("..") +node_b = NodePath("../../Bone-15") +softness = 100.0 + +[node name="Bone-6" type="RigidBody2D" parent="HangingSoftbody2D"] +position = Vector2(93, 29) +mass = 0.0333333 +metadata/idx = 6 +metadata/bone_name = &"Bone-6" + +[node name="CircleShape2D" type="CollisionShape2D" parent="HangingSoftbody2D/Bone-6"] +shape = SubResource("CircleShape2D_r1yj0") + +[node name="RemoteTransform2D" type="RemoteTransform2D" parent="HangingSoftbody2D/Bone-6"] +visible = false +remote_path = NodePath("../../Skeleton2D/Bone-6") +update_rotation = false +update_scale = false + +[node name="Joint2D-Bone-6-Bone-1" type="PinJoint2D" parent="HangingSoftbody2D/Bone-6"] +visible = false +rotation = 1.5708 +node_a = NodePath("..") +node_b = NodePath("../../Bone-1") +softness = 100.0 + +[node name="Joint2D-Bone-6-Bone-2" type="PinJoint2D" parent="HangingSoftbody2D/Bone-6"] +visible = false +rotation = 1.02142 +node_a = NodePath("..") +node_b = NodePath("../../Bone-2") +softness = 100.0 + +[node name="Joint2D-Bone-6-Bone-7" type="PinJoint2D" parent="HangingSoftbody2D/Bone-6"] +visible = false +node_a = NodePath("..") +node_b = NodePath("../../Bone-7") +softness = 100.0 + +[node name="Joint2D-Bone-6-Bone-9" type="PinJoint2D" parent="HangingSoftbody2D/Bone-6"] +visible = false +rotation = -1.5708 +node_a = NodePath("..") +node_b = NodePath("../../Bone-9") +softness = 100.0 + +[node name="Joint2D-Bone-6-Bone-10" type="PinJoint2D" parent="HangingSoftbody2D/Bone-6"] +visible = false +rotation = -1.12735 +node_a = NodePath("..") +node_b = NodePath("../../Bone-10") +softness = 100.0 + +[node name="Bone-7" type="RigidBody2D" parent="HangingSoftbody2D"] +position = Vector2(93, 49) +mass = 0.0333333 +metadata/idx = 7 +metadata/bone_name = &"Bone-7" + +[node name="CircleShape2D" type="CollisionShape2D" parent="HangingSoftbody2D/Bone-7"] +shape = SubResource("CircleShape2D_r1yj0") + +[node name="RemoteTransform2D" type="RemoteTransform2D" parent="HangingSoftbody2D/Bone-7"] +visible = false +remote_path = NodePath("../../Skeleton2D/Bone-7") +update_rotation = false +update_scale = false + +[node name="Joint2D-Bone-7-Bone-1" type="PinJoint2D" parent="HangingSoftbody2D/Bone-7"] +visible = false +rotation = -4.27467 +node_a = NodePath("..") +node_b = NodePath("../../Bone-1") +softness = 100.0 + +[node name="Joint2D-Bone-7-Bone-2" type="PinJoint2D" parent="HangingSoftbody2D/Bone-7"] +visible = false +rotation = 1.36948 +node_a = NodePath("..") +node_b = NodePath("../../Bone-2") +softness = 100.0 + +[node name="Joint2D-Bone-7-Bone-6" type="PinJoint2D" parent="HangingSoftbody2D/Bone-7"] +visible = false +rotation = -3.14159 +node_a = NodePath("..") +node_b = NodePath("../../Bone-6") +softness = 100.0 + +[node name="Joint2D-Bone-7-Bone-9" type="PinJoint2D" parent="HangingSoftbody2D/Bone-7"] +visible = false +rotation = -2.03444 +node_a = NodePath("..") +node_b = NodePath("../../Bone-9") +softness = 100.0 + +[node name="Joint2D-Bone-7-Bone-10" type="PinJoint2D" parent="HangingSoftbody2D/Bone-7"] +visible = false +rotation = -1.59579 +node_a = NodePath("..") +node_b = NodePath("../../Bone-10") +softness = 100.0 + +[node name="Bone-8" type="RigidBody2D" parent="HangingSoftbody2D"] +position = Vector2(89.5, 163.45) +mass = 0.0333333 +metadata/idx = 8 +metadata/bone_name = &"Bone-8" + +[node name="CircleShape2D" type="CollisionShape2D" parent="HangingSoftbody2D/Bone-8"] +shape = SubResource("CircleShape2D_r1yj0") + +[node name="RemoteTransform2D" type="RemoteTransform2D" parent="HangingSoftbody2D/Bone-8"] +visible = false +remote_path = NodePath("../../Skeleton2D/Bone-8") +update_rotation = false +update_scale = false + +[node name="Joint2D-Bone-8-Bone-4" type="PinJoint2D" parent="HangingSoftbody2D/Bone-8"] +visible = false +rotation = -4.21623 +node_a = NodePath("..") +node_b = NodePath("../../Bone-4") +softness = 100.0 + +[node name="Joint2D-Bone-8-Bone-5" type="PinJoint2D" parent="HangingSoftbody2D/Bone-8"] +visible = false +rotation = 1.07133 +node_a = NodePath("..") +node_b = NodePath("../../Bone-5") +softness = 100.0 + +[node name="Joint2D-Bone-8-Bone-13" type="PinJoint2D" parent="HangingSoftbody2D/Bone-8"] +visible = false +rotation = 0.495175 +node_a = NodePath("..") +node_b = NodePath("../../Bone-13") +softness = 100.0 + +[node name="Joint2D-Bone-8-Bone-15" type="PinJoint2D" parent="HangingSoftbody2D/Bone-8"] +visible = false +node_a = NodePath("..") +node_b = NodePath("../../Bone-15") +softness = 100.0 + +[node name="Bone-9" type="RigidBody2D" parent="HangingSoftbody2D"] +position = Vector2(133, 29) +mass = 0.0333333 +metadata/idx = 9 +metadata/bone_name = &"Bone-9" + +[node name="CircleShape2D" type="CollisionShape2D" parent="HangingSoftbody2D/Bone-9"] +shape = SubResource("CircleShape2D_r1yj0") + +[node name="RemoteTransform2D" type="RemoteTransform2D" parent="HangingSoftbody2D/Bone-9"] +visible = false +remote_path = NodePath("../../Skeleton2D/Bone-9") +update_rotation = false +update_scale = false + +[node name="Joint2D-Bone-9-Bone-6" type="PinJoint2D" parent="HangingSoftbody2D/Bone-9"] +visible = false +rotation = 1.5708 +node_a = NodePath("..") +node_b = NodePath("../../Bone-6") +softness = 100.0 + +[node name="Joint2D-Bone-9-Bone-7" type="PinJoint2D" parent="HangingSoftbody2D/Bone-9"] +visible = false +rotation = 1.10715 +node_a = NodePath("..") +node_b = NodePath("../../Bone-7") +softness = 100.0 + +[node name="Joint2D-Bone-9-Bone-10" type="PinJoint2D" parent="HangingSoftbody2D/Bone-9"] +visible = false +node_a = NodePath("..") +node_b = NodePath("../../Bone-10") +softness = 100.0 + +[node name="Joint2D-Bone-9-Bone-11" type="PinJoint2D" parent="HangingSoftbody2D/Bone-9"] +visible = false +rotation = -1.5708 +node_a = NodePath("..") +node_b = NodePath("../../Bone-11") +softness = 100.0 + +[node name="Joint2D-Bone-9-Bone-12" type="PinJoint2D" parent="HangingSoftbody2D/Bone-9"] +visible = false +rotation = -1.12735 +node_a = NodePath("..") +node_b = NodePath("../../Bone-12") +softness = 100.0 + +[node name="Bone-10" type="RigidBody2D" parent="HangingSoftbody2D"] +position = Vector2(133, 48) +mass = 0.0333333 +metadata/idx = 10 +metadata/bone_name = &"Bone-10" + +[node name="CircleShape2D" type="CollisionShape2D" parent="HangingSoftbody2D/Bone-10"] +shape = SubResource("CircleShape2D_r1yj0") + +[node name="RemoteTransform2D" type="RemoteTransform2D" parent="HangingSoftbody2D/Bone-10"] +visible = false +remote_path = NodePath("../../Skeleton2D/Bone-10") +update_rotation = false +update_scale = false + +[node name="Joint2D-Bone-10-Bone-6" type="PinJoint2D" parent="HangingSoftbody2D/Bone-10"] +visible = false +rotation = -4.26894 +node_a = NodePath("..") +node_b = NodePath("../../Bone-6") +softness = 100.0 + +[node name="Joint2D-Bone-10-Bone-7" type="PinJoint2D" parent="HangingSoftbody2D/Bone-10"] +visible = false +rotation = 1.5458 +node_a = NodePath("..") +node_b = NodePath("../../Bone-7") +softness = 100.0 + +[node name="Joint2D-Bone-10-Bone-9" type="PinJoint2D" parent="HangingSoftbody2D/Bone-10"] +visible = false +rotation = -3.14159 +node_a = NodePath("..") +node_b = NodePath("../../Bone-9") +softness = 100.0 + +[node name="Joint2D-Bone-10-Bone-11" type="PinJoint2D" parent="HangingSoftbody2D/Bone-10"] +visible = false +rotation = -2.01424 +node_a = NodePath("..") +node_b = NodePath("../../Bone-11") +softness = 100.0 + +[node name="Joint2D-Bone-10-Bone-12" type="PinJoint2D" parent="HangingSoftbody2D/Bone-10"] +visible = false +rotation = -1.5708 +node_a = NodePath("..") +node_b = NodePath("../../Bone-12") +softness = 100.0 + +[node name="Bone-11" type="RigidBody2D" parent="HangingSoftbody2D"] +position = Vector2(173, 29) +mass = 0.0333333 +metadata/idx = 11 +metadata/bone_name = &"Bone-11" + +[node name="CircleShape2D" type="CollisionShape2D" parent="HangingSoftbody2D/Bone-11"] +shape = SubResource("CircleShape2D_r1yj0") + +[node name="RemoteTransform2D" type="RemoteTransform2D" parent="HangingSoftbody2D/Bone-11"] +visible = false +remote_path = NodePath("../../Skeleton2D/Bone-11") +update_rotation = false +update_scale = false + +[node name="Joint2D-Bone-11-Bone-9" type="PinJoint2D" parent="HangingSoftbody2D/Bone-11"] +visible = false +rotation = 1.5708 +node_a = NodePath("..") +node_b = NodePath("../../Bone-9") +softness = 100.0 + +[node name="Joint2D-Bone-11-Bone-10" type="PinJoint2D" parent="HangingSoftbody2D/Bone-11"] +visible = false +rotation = 1.12735 +node_a = NodePath("..") +node_b = NodePath("../../Bone-10") +softness = 100.0 + +[node name="Joint2D-Bone-11-Bone-12" type="PinJoint2D" parent="HangingSoftbody2D/Bone-11"] +visible = false +node_a = NodePath("..") +node_b = NodePath("../../Bone-12") +softness = 100.0 + +[node name="Joint2D-Bone-11-Bone-19" type="PinJoint2D" parent="HangingSoftbody2D/Bone-11"] +visible = false +rotation = -1.5708 +node_a = NodePath("..") +node_b = NodePath("../../Bone-19") +softness = 100.0 + +[node name="Joint2D-Bone-11-Bone-20" type="PinJoint2D" parent="HangingSoftbody2D/Bone-11"] +visible = false +rotation = -0.927295 +node_a = NodePath("..") +node_b = NodePath("../../Bone-20") +softness = 100.0 + +[node name="Bone-12" type="RigidBody2D" parent="HangingSoftbody2D"] +position = Vector2(173, 48) +mass = 0.0333333 +metadata/idx = 12 +metadata/bone_name = &"Bone-12" + +[node name="CircleShape2D" type="CollisionShape2D" parent="HangingSoftbody2D/Bone-12"] +shape = SubResource("CircleShape2D_r1yj0") + +[node name="RemoteTransform2D" type="RemoteTransform2D" parent="HangingSoftbody2D/Bone-12"] +visible = false +remote_path = NodePath("../../Skeleton2D/Bone-12") +update_rotation = false +update_scale = false + +[node name="Joint2D-Bone-12-Bone-9" type="PinJoint2D" parent="HangingSoftbody2D/Bone-12"] +visible = false +rotation = -4.26894 +node_a = NodePath("..") +node_b = NodePath("../../Bone-9") +softness = 100.0 + +[node name="Joint2D-Bone-12-Bone-10" type="PinJoint2D" parent="HangingSoftbody2D/Bone-12"] +visible = false +rotation = 1.5708 +node_a = NodePath("..") +node_b = NodePath("../../Bone-10") +softness = 100.0 + +[node name="Joint2D-Bone-12-Bone-11" type="PinJoint2D" parent="HangingSoftbody2D/Bone-12"] +visible = false +rotation = -3.14159 +node_a = NodePath("..") +node_b = NodePath("../../Bone-11") +softness = 100.0 + +[node name="Joint2D-Bone-12-Bone-19" type="PinJoint2D" parent="HangingSoftbody2D/Bone-12"] +visible = false +rotation = -2.01424 +node_a = NodePath("..") +node_b = NodePath("../../Bone-19") +softness = 100.0 + +[node name="Joint2D-Bone-12-Bone-20" type="PinJoint2D" parent="HangingSoftbody2D/Bone-12"] +visible = false +rotation = -1.30243 +node_a = NodePath("..") +node_b = NodePath("../../Bone-20") +softness = 100.0 + +[node name="Bone-13" type="RigidBody2D" parent="HangingSoftbody2D"] +position = Vector2(59.5, 219) +mass = 0.0333333 +metadata/idx = 13 +metadata/bone_name = &"Bone-13" + +[node name="CircleShape2D" type="CollisionShape2D" parent="HangingSoftbody2D/Bone-13"] +shape = SubResource("CircleShape2D_r1yj0") + +[node name="RemoteTransform2D" type="RemoteTransform2D" parent="HangingSoftbody2D/Bone-13"] +visible = false +remote_path = NodePath("../../Skeleton2D/Bone-13") +update_rotation = false +update_scale = false + +[node name="Joint2D-Bone-13-Bone-14" type="PinJoint2D" parent="HangingSoftbody2D/Bone-13"] +visible = false +rotation = 0.307046 +node_a = NodePath("..") +node_b = NodePath("../../Bone-14") +softness = 100.0 + +[node name="Joint2D-Bone-13-Bone-5" type="PinJoint2D" parent="HangingSoftbody2D/Bone-13"] +visible = false +rotation = -3.10411 +node_a = NodePath("..") +node_b = NodePath("../../Bone-5") +softness = 100.0 + +[node name="Joint2D-Bone-13-Bone-8" type="PinJoint2D" parent="HangingSoftbody2D/Bone-13"] +visible = false +rotation = -2.64642 +node_a = NodePath("..") +node_b = NodePath("../../Bone-8") +softness = 100.0 + +[node name="Joint2D-Bone-13-Bone-15" type="PinJoint2D" parent="HangingSoftbody2D/Bone-13"] +visible = false +rotation = -1.5708 +node_a = NodePath("..") +node_b = NodePath("../../Bone-15") +softness = 100.0 + +[node name="Joint2D-Bone-13-Bone-16" type="PinJoint2D" parent="HangingSoftbody2D/Bone-13"] +visible = false +rotation = -0.685065 +node_a = NodePath("..") +node_b = NodePath("../../Bone-16") +softness = 100.0 + +[node name="Bone-14" type="RigidBody2D" parent="HangingSoftbody2D"] +position = Vector2(46.5, 260) +mass = 0.0333333 +metadata/idx = 14 +metadata/bone_name = &"Bone-14" + +[node name="CircleShape2D" type="CollisionShape2D" parent="HangingSoftbody2D/Bone-14"] +shape = SubResource("CircleShape2D_r1yj0") + +[node name="RemoteTransform2D" type="RemoteTransform2D" parent="HangingSoftbody2D/Bone-14"] +visible = false +remote_path = NodePath("../../Skeleton2D/Bone-14") +update_rotation = false +update_scale = false + +[node name="Joint2D-Bone-14-Bone-13" type="PinJoint2D" parent="HangingSoftbody2D/Bone-14"] +visible = false +rotation = -2.83455 +node_a = NodePath("..") +node_b = NodePath("../../Bone-13") +softness = 100.0 + +[node name="Joint2D-Bone-14-Bone-15" type="PinJoint2D" parent="HangingSoftbody2D/Bone-14"] +visible = false +rotation = -2.33239 +node_a = NodePath("..") +node_b = NodePath("../../Bone-15") +softness = 100.0 + +[node name="Joint2D-Bone-14-Bone-16" type="PinJoint2D" parent="HangingSoftbody2D/Bone-14"] +visible = false +rotation = -1.5708 +node_a = NodePath("..") +node_b = NodePath("../../Bone-16") +softness = 100.0 + +[node name="Bone-15" type="RigidBody2D" parent="HangingSoftbody2D"] +position = Vector2(89.5, 219) +mass = 0.0333333 +metadata/idx = 15 +metadata/bone_name = &"Bone-15" + +[node name="CircleShape2D" type="CollisionShape2D" parent="HangingSoftbody2D/Bone-15"] +shape = SubResource("CircleShape2D_r1yj0") + +[node name="RemoteTransform2D" type="RemoteTransform2D" parent="HangingSoftbody2D/Bone-15"] +visible = false +remote_path = NodePath("../../Skeleton2D/Bone-15") +update_rotation = false +update_scale = false + +[node name="Joint2D-Bone-15-Bone-5" type="PinJoint2D" parent="HangingSoftbody2D/Bone-15"] +visible = false +rotation = -3.76066 +node_a = NodePath("..") +node_b = NodePath("../../Bone-5") +softness = 100.0 + +[node name="Joint2D-Bone-15-Bone-8" type="PinJoint2D" parent="HangingSoftbody2D/Bone-15"] +visible = false +rotation = -3.14159 +node_a = NodePath("..") +node_b = NodePath("../../Bone-8") +softness = 100.0 + +[node name="Joint2D-Bone-15-Bone-13" type="PinJoint2D" parent="HangingSoftbody2D/Bone-15"] +visible = false +rotation = 1.5708 +node_a = NodePath("..") +node_b = NodePath("../../Bone-13") +softness = 100.0 + +[node name="Joint2D-Bone-15-Bone-14" type="PinJoint2D" parent="HangingSoftbody2D/Bone-15"] +visible = false +rotation = 0.809203 +node_a = NodePath("..") +node_b = NodePath("../../Bone-14") +softness = 100.0 + +[node name="Joint2D-Bone-15-Bone-16" type="PinJoint2D" parent="HangingSoftbody2D/Bone-15"] +visible = false +rotation = -0.0851594 +node_a = NodePath("..") +node_b = NodePath("../../Bone-16") +softness = 100.0 + +[node name="Bone-16" type="RigidBody2D" parent="HangingSoftbody2D"] +position = Vector2(93, 260) +mass = 0.0333333 +metadata/idx = 16 +metadata/bone_name = &"Bone-16" + +[node name="CircleShape2D" type="CollisionShape2D" parent="HangingSoftbody2D/Bone-16"] +shape = SubResource("CircleShape2D_r1yj0") + +[node name="RemoteTransform2D" type="RemoteTransform2D" parent="HangingSoftbody2D/Bone-16"] +visible = false +remote_path = NodePath("../../Skeleton2D/Bone-16") +update_rotation = false +update_scale = false + +[node name="Joint2D-Bone-16-Bone-13" type="PinJoint2D" parent="HangingSoftbody2D/Bone-16"] +visible = false +rotation = -3.82666 +node_a = NodePath("..") +node_b = NodePath("../../Bone-13") +softness = 100.0 + +[node name="Joint2D-Bone-16-Bone-14" type="PinJoint2D" parent="HangingSoftbody2D/Bone-16"] +visible = false +rotation = 1.5708 +node_a = NodePath("..") +node_b = NodePath("../../Bone-14") +softness = 100.0 + +[node name="Joint2D-Bone-16-Bone-15" type="PinJoint2D" parent="HangingSoftbody2D/Bone-16"] +visible = false +rotation = -3.22675 +node_a = NodePath("..") +node_b = NodePath("../../Bone-15") +softness = 100.0 + +[node name="Joint2D-Bone-16-Bone-17" type="PinJoint2D" parent="HangingSoftbody2D/Bone-16"] +visible = false +rotation = -1.52084 +node_a = NodePath("..") +node_b = NodePath("../../Bone-17") +softness = 100.0 + +[node name="Bone-17" type="RigidBody2D" parent="HangingSoftbody2D"] +position = Vector2(133, 262) +mass = 0.0333333 +metadata/idx = 17 +metadata/bone_name = &"Bone-17" + +[node name="CircleShape2D" type="CollisionShape2D" parent="HangingSoftbody2D/Bone-17"] +shape = SubResource("CircleShape2D_r1yj0") + +[node name="RemoteTransform2D" type="RemoteTransform2D" parent="HangingSoftbody2D/Bone-17"] +visible = false +remote_path = NodePath("../../Skeleton2D/Bone-17") +update_rotation = false +update_scale = false + +[node name="Joint2D-Bone-17-Bone-16" type="PinJoint2D" parent="HangingSoftbody2D/Bone-17"] +visible = false +rotation = -4.66243 +node_a = NodePath("..") +node_b = NodePath("../../Bone-16") +softness = 100.0 + +[node name="Joint2D-Bone-17-Bone-18" type="PinJoint2D" parent="HangingSoftbody2D/Bone-17"] +visible = false +rotation = -1.5708 +node_a = NodePath("..") +node_b = NodePath("../../Bone-18") +softness = 100.0 + +[node name="Bone-18" type="RigidBody2D" parent="HangingSoftbody2D"] +position = Vector2(173, 262) +mass = 0.0333333 +metadata/idx = 18 +metadata/bone_name = &"Bone-18" + +[node name="CircleShape2D" type="CollisionShape2D" parent="HangingSoftbody2D/Bone-18"] +shape = SubResource("CircleShape2D_r1yj0") + +[node name="RemoteTransform2D" type="RemoteTransform2D" parent="HangingSoftbody2D/Bone-18"] +visible = false +remote_path = NodePath("../../Skeleton2D/Bone-18") +update_rotation = false +update_scale = false + +[node name="Joint2D-Bone-18-Bone-17" type="PinJoint2D" parent="HangingSoftbody2D/Bone-18"] +visible = false +rotation = 1.5708 +node_a = NodePath("..") +node_b = NodePath("../../Bone-17") +softness = 100.0 + +[node name="Joint2D-Bone-18-Bone-27" type="PinJoint2D" parent="HangingSoftbody2D/Bone-18"] +visible = false +rotation = -1.62075 +node_a = NodePath("..") +node_b = NodePath("../../Bone-27") +softness = 100.0 + +[node name="Bone-19" type="RigidBody2D" parent="HangingSoftbody2D"] +position = Vector2(213, 29) +mass = 0.0333333 +metadata/idx = 19 +metadata/bone_name = &"Bone-19" + +[node name="CircleShape2D" type="CollisionShape2D" parent="HangingSoftbody2D/Bone-19"] +shape = SubResource("CircleShape2D_r1yj0") + +[node name="RemoteTransform2D" type="RemoteTransform2D" parent="HangingSoftbody2D/Bone-19"] +visible = false +remote_path = NodePath("../../Skeleton2D/Bone-19") +update_rotation = false +update_scale = false + +[node name="Joint2D-Bone-19-Bone-11" type="PinJoint2D" parent="HangingSoftbody2D/Bone-19"] +visible = false +rotation = 1.5708 +node_a = NodePath("..") +node_b = NodePath("../../Bone-11") +softness = 100.0 + +[node name="Joint2D-Bone-19-Bone-12" type="PinJoint2D" parent="HangingSoftbody2D/Bone-19"] +visible = false +rotation = 1.12735 +node_a = NodePath("..") +node_b = NodePath("../../Bone-12") +softness = 100.0 + +[node name="Joint2D-Bone-19-Bone-20" type="PinJoint2D" parent="HangingSoftbody2D/Bone-19"] +visible = false +node_a = NodePath("..") +node_b = NodePath("../../Bone-20") +softness = 100.0 + +[node name="Joint2D-Bone-19-Bone-23" type="PinJoint2D" parent="HangingSoftbody2D/Bone-19"] +visible = false +rotation = -1.5708 +node_a = NodePath("..") +node_b = NodePath("../../Bone-23") +softness = 100.0 + +[node name="Joint2D-Bone-19-Bone-24" type="PinJoint2D" parent="HangingSoftbody2D/Bone-19"] +visible = false +rotation = -0.872629 +node_a = NodePath("..") +node_b = NodePath("../../Bone-24") +softness = 100.0 + +[node name="Bone-20" type="RigidBody2D" parent="HangingSoftbody2D"] +position = Vector2(213, 59) +mass = 0.0333333 +metadata/idx = 20 +metadata/bone_name = &"Bone-20" + +[node name="CircleShape2D" type="CollisionShape2D" parent="HangingSoftbody2D/Bone-20"] +shape = SubResource("CircleShape2D_r1yj0") + +[node name="RemoteTransform2D" type="RemoteTransform2D" parent="HangingSoftbody2D/Bone-20"] +visible = false +remote_path = NodePath("../../Skeleton2D/Bone-20") +update_rotation = false +update_scale = false + +[node name="Joint2D-Bone-20-Bone-11" type="PinJoint2D" parent="HangingSoftbody2D/Bone-20"] +visible = false +rotation = -4.06889 +node_a = NodePath("..") +node_b = NodePath("../../Bone-11") +softness = 100.0 + +[node name="Joint2D-Bone-20-Bone-12" type="PinJoint2D" parent="HangingSoftbody2D/Bone-20"] +visible = false +rotation = -4.44402 +node_a = NodePath("..") +node_b = NodePath("../../Bone-12") +softness = 100.0 + +[node name="Joint2D-Bone-20-Bone-19" type="PinJoint2D" parent="HangingSoftbody2D/Bone-20"] +visible = false +rotation = -3.14159 +node_a = NodePath("..") +node_b = NodePath("../../Bone-19") +softness = 100.0 + +[node name="Joint2D-Bone-20-Bone-23" type="PinJoint2D" parent="HangingSoftbody2D/Bone-20"] +visible = false +rotation = -2.17455 +node_a = NodePath("..") +node_b = NodePath("../../Bone-23") +softness = 100.0 + +[node name="Joint2D-Bone-20-Bone-24" type="PinJoint2D" parent="HangingSoftbody2D/Bone-20"] +visible = false +rotation = -1.5708 +node_a = NodePath("..") +node_b = NodePath("../../Bone-24") +softness = 100.0 + +[node name="Joint2D-Bone-20-Bone-21" type="PinJoint2D" parent="HangingSoftbody2D/Bone-20"] +visible = false +rotation = -0.21602 +node_a = NodePath("..") +node_b = NodePath("../../Bone-21") +softness = 100.0 + +[node name="Bone-21" type="RigidBody2D" parent="HangingSoftbody2D"] +position = Vector2(221.778, 99) +mass = 0.0333333 +metadata/idx = 21 +metadata/bone_name = &"Bone-21" + +[node name="CircleShape2D" type="CollisionShape2D" parent="HangingSoftbody2D/Bone-21"] +shape = SubResource("CircleShape2D_r1yj0") + +[node name="RemoteTransform2D" type="RemoteTransform2D" parent="HangingSoftbody2D/Bone-21"] +visible = false +remote_path = NodePath("../../Skeleton2D/Bone-21") +update_rotation = false +update_scale = false + +[node name="Joint2D-Bone-21-Bone-25" type="PinJoint2D" parent="HangingSoftbody2D/Bone-21"] +visible = false +rotation = -0.735876 +node_a = NodePath("..") +node_b = NodePath("../../Bone-25") +softness = 100.0 + +[node name="Joint2D-Bone-21-Bone-20" type="PinJoint2D" parent="HangingSoftbody2D/Bone-21"] +visible = false +rotation = -3.35761 +node_a = NodePath("..") +node_b = NodePath("../../Bone-20") +softness = 100.0 + +[node name="Joint2D-Bone-21-Bone-24" type="PinJoint2D" parent="HangingSoftbody2D/Bone-21"] +visible = false +rotation = -2.54832 +node_a = NodePath("..") +node_b = NodePath("../../Bone-24") +softness = 100.0 + +[node name="Joint2D-Bone-21-Bone-22" type="PinJoint2D" parent="HangingSoftbody2D/Bone-21"] +visible = false +rotation = 0.167734 +node_a = NodePath("..") +node_b = NodePath("../../Bone-22") +softness = 100.0 + +[node name="Bone-22" type="RigidBody2D" parent="HangingSoftbody2D"] +position = Vector2(215.1, 138.438) +mass = 0.0333333 +metadata/idx = 22 +metadata/bone_name = &"Bone-22" + +[node name="CircleShape2D" type="CollisionShape2D" parent="HangingSoftbody2D/Bone-22"] +shape = SubResource("CircleShape2D_r1yj0") + +[node name="RemoteTransform2D" type="RemoteTransform2D" parent="HangingSoftbody2D/Bone-22"] +visible = false +remote_path = NodePath("../../Skeleton2D/Bone-22") +update_rotation = false +update_scale = false + +[node name="Joint2D-Bone-22-Bone-21" type="PinJoint2D" parent="HangingSoftbody2D/Bone-22"] +visible = false +rotation = -2.97386 +node_a = NodePath("..") +node_b = NodePath("../../Bone-21") +softness = 100.0 + +[node name="Joint2D-Bone-22-Bone-25" type="PinJoint2D" parent="HangingSoftbody2D/Bone-22"] +visible = false +rotation = -1.55769 +node_a = NodePath("..") +node_b = NodePath("../../Bone-25") +softness = 100.0 + +[node name="Bone-23" type="StaticBody2D" parent="HangingSoftbody2D"] +position = Vector2(256.5, 29) +metadata/idx = 23 +metadata/bone_name = &"Bone-23" + +[node name="CircleShape2D" type="CollisionShape2D" parent="HangingSoftbody2D/Bone-23"] +shape = SubResource("CircleShape2D_r1yj0") + +[node name="RemoteTransform2D" type="RemoteTransform2D" parent="HangingSoftbody2D/Bone-23"] +visible = false +remote_path = NodePath("../../Skeleton2D/Bone-23") +update_rotation = false +update_scale = false + +[node name="Joint2D-Bone-23-Bone-24" type="PinJoint2D" parent="HangingSoftbody2D/Bone-23"] +visible = false +rotation = 0.252806 +node_a = NodePath("..") +node_b = NodePath("../../Bone-24") +softness = 100.0 + +[node name="Joint2D-Bone-23-Bone-19" type="PinJoint2D" parent="HangingSoftbody2D/Bone-23"] +visible = false +rotation = 1.5708 +node_a = NodePath("..") +node_b = NodePath("../../Bone-19") +softness = 100.0 + +[node name="Joint2D-Bone-23-Bone-20" type="PinJoint2D" parent="HangingSoftbody2D/Bone-23"] +visible = false +rotation = 0.967047 +node_a = NodePath("..") +node_b = NodePath("../../Bone-20") +softness = 100.0 + +[node name="Bone-24" type="RigidBody2D" parent="HangingSoftbody2D"] +position = Vector2(248.75, 59) +mass = 0.0333333 +metadata/idx = 24 +metadata/bone_name = &"Bone-24" + +[node name="CircleShape2D" type="CollisionShape2D" parent="HangingSoftbody2D/Bone-24"] +shape = SubResource("CircleShape2D_r1yj0") + +[node name="RemoteTransform2D" type="RemoteTransform2D" parent="HangingSoftbody2D/Bone-24"] +visible = false +remote_path = NodePath("../../Skeleton2D/Bone-24") +update_rotation = false +update_scale = false + +[node name="Joint2D-Bone-24-Bone-23" type="PinJoint2D" parent="HangingSoftbody2D/Bone-24"] +visible = false +rotation = -2.88879 +node_a = NodePath("..") +node_b = NodePath("../../Bone-23") +softness = 100.0 + +[node name="Joint2D-Bone-24-Bone-19" type="PinJoint2D" parent="HangingSoftbody2D/Bone-24"] +visible = false +rotation = -4.01422 +node_a = NodePath("..") +node_b = NodePath("../../Bone-19") +softness = 100.0 + +[node name="Joint2D-Bone-24-Bone-20" type="PinJoint2D" parent="HangingSoftbody2D/Bone-24"] +visible = false +rotation = 1.5708 +node_a = NodePath("..") +node_b = NodePath("../../Bone-20") +softness = 100.0 + +[node name="Joint2D-Bone-24-Bone-21" type="PinJoint2D" parent="HangingSoftbody2D/Bone-24"] +visible = false +rotation = 0.593273 +node_a = NodePath("..") +node_b = NodePath("../../Bone-21") +softness = 100.0 + +[node name="Bone-25" type="RigidBody2D" parent="HangingSoftbody2D"] +position = Vector2(258, 139) +mass = 0.0333333 +metadata/idx = 25 +metadata/bone_name = &"Bone-25" + +[node name="CircleShape2D" type="CollisionShape2D" parent="HangingSoftbody2D/Bone-25"] +shape = SubResource("CircleShape2D_r1yj0") + +[node name="RemoteTransform2D" type="RemoteTransform2D" parent="HangingSoftbody2D/Bone-25"] +visible = false +remote_path = NodePath("../../Skeleton2D/Bone-25") +update_rotation = false +update_scale = false + +[node name="Joint2D-Bone-25-Bone-21" type="PinJoint2D" parent="HangingSoftbody2D/Bone-25"] +visible = false +rotation = -3.87747 +node_a = NodePath("..") +node_b = NodePath("../../Bone-21") +softness = 100.0 + +[node name="Joint2D-Bone-25-Bone-22" type="PinJoint2D" parent="HangingSoftbody2D/Bone-25"] +visible = false +rotation = -4.69928 +node_a = NodePath("..") +node_b = NodePath("../../Bone-22") +softness = 100.0 + +[node name="Joint2D-Bone-25-Bone-26" type="PinJoint2D" parent="HangingSoftbody2D/Bone-25"] +visible = false +rotation = -0.0659754 +node_a = NodePath("..") +node_b = NodePath("../../Bone-26") +softness = 100.0 + +[node name="Bone-26" type="RigidBody2D" parent="HangingSoftbody2D"] +position = Vector2(260.643, 179) +mass = 0.0333333 +metadata/idx = 26 +metadata/bone_name = &"Bone-26" + +[node name="CircleShape2D" type="CollisionShape2D" parent="HangingSoftbody2D/Bone-26"] +shape = SubResource("CircleShape2D_r1yj0") + +[node name="RemoteTransform2D" type="RemoteTransform2D" parent="HangingSoftbody2D/Bone-26"] +visible = false +remote_path = NodePath("../../Skeleton2D/Bone-26") +update_rotation = false +update_scale = false + +[node name="Joint2D-Bone-26-Bone-25" type="PinJoint2D" parent="HangingSoftbody2D/Bone-26"] +visible = false +rotation = -3.20757 +node_a = NodePath("..") +node_b = NodePath("../../Bone-25") +softness = 100.0 + +[node name="Joint2D-Bone-26-Bone-28" type="PinJoint2D" parent="HangingSoftbody2D/Bone-26"] +visible = false +rotation = 0.0792382 +node_a = NodePath("..") +node_b = NodePath("../../Bone-28") +softness = 100.0 + +[node name="Bone-27" type="RigidBody2D" parent="HangingSoftbody2D"] +position = Vector2(213, 260) +mass = 0.0333333 +metadata/idx = 27 +metadata/bone_name = &"Bone-27" + +[node name="CircleShape2D" type="CollisionShape2D" parent="HangingSoftbody2D/Bone-27"] +shape = SubResource("CircleShape2D_r1yj0") + +[node name="RemoteTransform2D" type="RemoteTransform2D" parent="HangingSoftbody2D/Bone-27"] +visible = false +remote_path = NodePath("../../Skeleton2D/Bone-27") +update_rotation = false +update_scale = false + +[node name="Joint2D-Bone-27-Bone-18" type="PinJoint2D" parent="HangingSoftbody2D/Bone-27"] +visible = false +rotation = 1.52084 +node_a = NodePath("..") +node_b = NodePath("../../Bone-18") +softness = 100.0 + +[node name="Joint2D-Bone-27-Bone-29" type="PinJoint2D" parent="HangingSoftbody2D/Bone-27"] +visible = false +rotation = -1.5708 +node_a = NodePath("..") +node_b = NodePath("../../Bone-29") +softness = 100.0 + +[node name="Joint2D-Bone-27-Bone-28" type="PinJoint2D" parent="HangingSoftbody2D/Bone-27"] +visible = false +rotation = -2.31565 +node_a = NodePath("..") +node_b = NodePath("../../Bone-28") +softness = 100.0 + +[node name="Bone-28" type="RigidBody2D" parent="HangingSoftbody2D"] +position = Vector2(257.467, 219) +mass = 0.0333333 +metadata/idx = 28 +metadata/bone_name = &"Bone-28" + +[node name="CircleShape2D" type="CollisionShape2D" parent="HangingSoftbody2D/Bone-28"] +shape = SubResource("CircleShape2D_r1yj0") + +[node name="RemoteTransform2D" type="RemoteTransform2D" parent="HangingSoftbody2D/Bone-28"] +visible = false +remote_path = NodePath("../../Skeleton2D/Bone-28") +update_rotation = false +update_scale = false + +[node name="Joint2D-Bone-28-Bone-26" type="PinJoint2D" parent="HangingSoftbody2D/Bone-28"] +visible = false +rotation = -3.06235 +node_a = NodePath("..") +node_b = NodePath("../../Bone-26") +softness = 100.0 + +[node name="Joint2D-Bone-28-Bone-27" type="PinJoint2D" parent="HangingSoftbody2D/Bone-28"] +visible = false +rotation = 0.825938 +node_a = NodePath("..") +node_b = NodePath("../../Bone-27") +softness = 100.0 + +[node name="Joint2D-Bone-28-Bone-29" type="PinJoint2D" parent="HangingSoftbody2D/Bone-28"] +visible = false +rotation = 0.0404408 +node_a = NodePath("..") +node_b = NodePath("../../Bone-29") +softness = 100.0 + +[node name="Bone-29" type="RigidBody2D" parent="HangingSoftbody2D"] +position = Vector2(255.808, 260) +mass = 0.0333333 +metadata/idx = 29 +metadata/bone_name = &"Bone-29" + +[node name="CircleShape2D" type="CollisionShape2D" parent="HangingSoftbody2D/Bone-29"] +shape = SubResource("CircleShape2D_r1yj0") + +[node name="RemoteTransform2D" type="RemoteTransform2D" parent="HangingSoftbody2D/Bone-29"] +visible = false +remote_path = NodePath("../../Skeleton2D/Bone-29") +update_rotation = false +update_scale = false + +[node name="Joint2D-Bone-29-Bone-27" type="PinJoint2D" parent="HangingSoftbody2D/Bone-29"] +visible = false +rotation = 1.5708 +node_a = NodePath("..") +node_b = NodePath("../../Bone-27") +softness = 100.0 + +[node name="Joint2D-Bone-29-Bone-28" type="PinJoint2D" parent="HangingSoftbody2D/Bone-29"] +visible = false +rotation = -3.10115 +node_a = NodePath("..") +node_b = NodePath("../../Bone-28") +softness = 100.0 + +[node name="BreakableSoftbody2D" type="Polygon2D" parent="."] +position = Vector2(1253, 207) +texture = ExtResource("5_xkbwg") +skeleton = NodePath("Skeleton2D") +polygon = PackedVector2Array(37, 12, 32, 14, 31, 14, 24, 29, 23, 29, 5, 87, 5, 111, 17, 140, 17, 142, 45, 168, 46, 168, 51, 183, 51, 197, 39, 233, 39, 236, 14, 277, 13, 277, 15, 286, 15, 287, 20, 289, 262, 289, 269, 283, 270, 283, 283, 249, 284, 249, 294, 202, 295, 202, 295, 173, 289, 155, 289, 152, 278, 136, 278, 134, 256, 115, 255, 115, 250, 100, 249, 100, 254, 73, 254, 70, 285, 25, 286, 25, 285, 14, 285, 13, 37, 11, 44, 50, 24.5, 50, 24.5, 30.5, 44, 30.5, 63.5, 69.5, 44, 69.5, 44, 50, 63.5, 50, 44, 69.5, 24.5, 69.5, 24.5, 50, 44, 50, 63.5, 50, 44, 50, 44, 30.5, 63.5, 30.5, 24.5, 30.5, 22.5345, 30.5, 23, 29, 24, 29, 24.5, 27.9286, 24.5, 69.5, 10.431, 69.5, 16.4828, 50, 24.5, 50, 24.5, 50, 16.4828, 50, 22.5345, 30.5, 24.5, 30.5, 63.5, 30.5, 44, 30.5, 44, 11, 63.5, 11, 44, 11.0564, 44, 30.5, 24.5, 30.5, 24.5, 27.9286, 31, 14, 32, 14, 37, 12, 37, 11, 44, 89, 24.5, 89, 24.5, 69.5, 44, 69.5, 63.5, 108.5, 44, 108.5, 44, 89, 63.5, 89, 44, 108.5, 24.5, 108.5, 24.5, 89, 44, 89, 63.5, 89, 44, 89, 44, 69.5, 63.5, 69.5, 24.5, 108.5, 5, 108.5, 5, 89, 24.5, 89, 24.5, 89, 5, 89, 5, 87, 10.431, 69.5, 24.5, 69.5, 44, 128, 24.5, 128, 24.5, 108.5, 44, 108.5, 63.5, 147.5, 44, 147.5, 44, 128, 63.5, 128, 44, 147.5, 24.5, 147.5, 24.5, 128, 44, 128, 63.5, 128, 44, 128, 44, 108.5, 63.5, 108.5, 24.5, 147.5, 22.9231, 147.5, 17, 142, 17, 140, 12.0345, 128, 24.5, 128, 24.5, 128, 12.0345, 128, 5, 111, 5, 108.5, 24.5, 108.5, 24.5, 148.964, 22.9231, 147.5, 24.5, 147.5, 44, 167, 43.9231, 167, 24.5, 148.964, 24.5, 147.5, 44, 147.5, 63.5, 186.5, 51, 186.5, 51, 183, 46, 168, 45, 168, 44, 167.071, 44, 167, 63.5, 167, 44, 167.071, 43.9231, 167, 44, 167, 63.5, 167, 44, 167, 44, 147.5, 63.5, 147.5, 83, 50, 63.5, 50, 63.5, 30.5, 83, 30.5, 102.5, 69.5, 83, 69.5, 83, 50, 102.5, 50, 83, 69.5, 63.5, 69.5, 63.5, 50, 83, 50, 102.5, 50, 83, 50, 83, 30.5, 102.5, 30.5, 102.5, 30.5, 83, 30.5, 83, 11, 102.5, 11, 83, 30.5, 63.5, 30.5, 63.5, 11, 83, 11, 83, 89, 63.5, 89, 63.5, 69.5, 83, 69.5, 102.5, 108.5, 83, 108.5, 83, 89, 102.5, 89, 83, 108.5, 63.5, 108.5, 63.5, 89, 83, 89, 102.5, 89, 83, 89, 83, 69.5, 102.5, 69.5, 83, 128, 63.5, 128, 63.5, 108.5, 83, 108.5, 102.5, 147.5, 83, 147.5, 83, 128, 102.5, 128, 83, 147.5, 63.5, 147.5, 63.5, 128, 83, 128, 102.5, 128, 83, 128, 83, 108.5, 102.5, 108.5, 83, 167, 63.5, 167, 63.5, 147.5, 83, 147.5, 102.5, 186.5, 83, 186.5, 83, 167, 102.5, 167, 83, 186.5, 63.5, 186.5, 63.5, 167, 83, 167, 102.5, 167, 83, 167, 83, 147.5, 102.5, 147.5, 122, 50, 102.5, 50, 102.5, 30.5, 122, 30.5, 141.5, 69.5, 122, 69.5, 122, 50, 141.5, 50, 122, 69.5, 102.5, 69.5, 102.5, 50, 122, 50, 141.5, 50, 122, 50, 122, 30.5, 141.5, 30.5, 141.5, 30.5, 122, 30.5, 122, 11, 141.5, 11, 122, 30.5, 102.5, 30.5, 102.5, 11, 122, 11, 122, 89, 102.5, 89, 102.5, 69.5, 122, 69.5, 141.5, 108.5, 122, 108.5, 122, 89, 141.5, 89, 122, 108.5, 102.5, 108.5, 102.5, 89, 122, 89, 141.5, 89, 122, 89, 122, 69.5, 141.5, 69.5, 122, 128, 102.5, 128, 102.5, 108.5, 122, 108.5, 141.5, 147.5, 122, 147.5, 122, 128, 141.5, 128, 122, 147.5, 102.5, 147.5, 102.5, 128, 122, 128, 141.5, 128, 122, 128, 122, 108.5, 141.5, 108.5, 122, 167, 102.5, 167, 102.5, 147.5, 122, 147.5, 141.5, 186.5, 122, 186.5, 122, 167, 141.5, 167, 122, 186.5, 102.5, 186.5, 102.5, 167, 122, 167, 141.5, 167, 122, 167, 122, 147.5, 141.5, 147.5, 161, 50, 141.5, 50, 141.5, 30.5, 161, 30.5, 180.5, 69.5, 161, 69.5, 161, 50, 180.5, 50, 161, 69.5, 141.5, 69.5, 141.5, 50, 161, 50, 180.5, 50, 161, 50, 161, 30.5, 180.5, 30.5, 180.5, 30.5, 161, 30.5, 161, 11, 180.5, 11, 161, 30.5, 141.5, 30.5, 141.5, 11, 161, 11, 161, 89, 141.5, 89, 141.5, 69.5, 161, 69.5, 180.5, 108.5, 161, 108.5, 161, 89, 180.5, 89, 161, 108.5, 141.5, 108.5, 141.5, 89, 161, 89, 180.5, 89, 161, 89, 161, 69.5, 180.5, 69.5, 161, 128, 141.5, 128, 141.5, 108.5, 161, 108.5, 180.5, 147.5, 161, 147.5, 161, 128, 180.5, 128, 161, 147.5, 141.5, 147.5, 141.5, 128, 161, 128, 180.5, 128, 161, 128, 161, 108.5, 180.5, 108.5, 161, 167, 141.5, 167, 141.5, 147.5, 161, 147.5, 180.5, 186.5, 161, 186.5, 161, 167, 180.5, 167, 161, 186.5, 141.5, 186.5, 141.5, 167, 161, 167, 180.5, 167, 161, 167, 161, 147.5, 180.5, 147.5, 44, 245, 33.5122, 245, 39, 236, 39, 233, 41.5, 225.5, 44, 225.5, 63.5, 264.5, 44, 264.5, 44, 245, 63.5, 245, 44, 264.5, 24.5, 264.5, 24.5, 259.78, 33.5122, 245, 44, 245, 63.5, 245, 44, 245, 44, 225.5, 63.5, 225.5, 44, 284, 24.5, 284, 24.5, 264.5, 44, 264.5, 63.5, 289, 44, 289, 44, 284, 63.5, 284, 44, 289, 24.5, 289, 24.5, 284, 44, 284, 63.5, 284, 44, 284, 44, 264.5, 63.5, 264.5, 24.5, 264.5, 21.622, 264.5, 24.5, 259.78, 24.5, 289, 20, 289, 15, 287, 15, 286, 14.5556, 284, 24.5, 284, 24.5, 284, 14.5556, 284, 13, 277, 14, 277, 21.622, 264.5, 24.5, 264.5, 83, 206, 63.5, 206, 63.5, 186.5, 83, 186.5, 102.5, 225.5, 83, 225.5, 83, 206, 102.5, 206, 83, 225.5, 63.5, 225.5, 63.5, 206, 83, 206, 102.5, 206, 83, 206, 83, 186.5, 102.5, 186.5, 63.5, 225.5, 44, 225.5, 44, 218, 48, 206, 63.5, 206, 44, 225.5, 41.5, 225.5, 44, 218, 63.5, 206, 48, 206, 51, 197, 51, 186.5, 63.5, 186.5, 83, 245, 63.5, 245, 63.5, 225.5, 83, 225.5, 102.5, 264.5, 83, 264.5, 83, 245, 102.5, 245, 83, 264.5, 63.5, 264.5, 63.5, 245, 83, 245, 102.5, 245, 83, 245, 83, 225.5, 102.5, 225.5, 83, 284, 63.5, 284, 63.5, 264.5, 83, 264.5, 102.5, 289, 83, 289, 83, 284, 102.5, 284, 83, 289, 63.5, 289, 63.5, 284, 83, 284, 102.5, 284, 83, 284, 83, 264.5, 102.5, 264.5, 122, 206, 102.5, 206, 102.5, 186.5, 122, 186.5, 141.5, 225.5, 122, 225.5, 122, 206, 141.5, 206, 122, 225.5, 102.5, 225.5, 102.5, 206, 122, 206, 141.5, 206, 122, 206, 122, 186.5, 141.5, 186.5, 122, 245, 102.5, 245, 102.5, 225.5, 122, 225.5, 141.5, 264.5, 122, 264.5, 122, 245, 141.5, 245, 122, 264.5, 102.5, 264.5, 102.5, 245, 122, 245, 141.5, 245, 122, 245, 122, 225.5, 141.5, 225.5, 122, 284, 102.5, 284, 102.5, 264.5, 122, 264.5, 141.5, 289, 122, 289, 122, 284, 141.5, 284, 122, 289, 102.5, 289, 102.5, 284, 122, 284, 141.5, 284, 122, 284, 122, 264.5, 141.5, 264.5, 161, 206, 141.5, 206, 141.5, 186.5, 161, 186.5, 180.5, 225.5, 161, 225.5, 161, 206, 180.5, 206, 161, 225.5, 141.5, 225.5, 141.5, 206, 161, 206, 180.5, 206, 161, 206, 161, 186.5, 180.5, 186.5, 161, 245, 141.5, 245, 141.5, 225.5, 161, 225.5, 180.5, 264.5, 161, 264.5, 161, 245, 180.5, 245, 161, 264.5, 141.5, 264.5, 141.5, 245, 161, 245, 180.5, 245, 161, 245, 161, 225.5, 180.5, 225.5, 161, 284, 141.5, 284, 141.5, 264.5, 161, 264.5, 180.5, 289, 161, 289, 161, 284, 180.5, 284, 161, 289, 141.5, 289, 141.5, 284, 161, 284, 180.5, 284, 161, 284, 161, 264.5, 180.5, 264.5, 200, 50, 180.5, 50, 180.5, 30.5, 200, 30.5, 219.5, 69.5, 200, 69.5, 200, 50, 219.5, 50, 200, 69.5, 180.5, 69.5, 180.5, 50, 200, 50, 219.5, 50, 200, 50, 200, 30.5, 219.5, 30.5, 219.5, 12.4718, 219.5, 30.5, 200, 30.5, 200, 12.3145, 200, 30.5, 180.5, 30.5, 180.5, 11, 200, 11, 200, 89, 180.5, 89, 180.5, 69.5, 200, 69.5, 219.5, 108.5, 200, 108.5, 200, 89, 219.5, 89, 200, 108.5, 180.5, 108.5, 180.5, 89, 200, 89, 219.5, 89, 200, 89, 200, 69.5, 219.5, 69.5, 200, 128, 180.5, 128, 180.5, 108.5, 200, 108.5, 219.5, 147.5, 200, 147.5, 200, 128, 219.5, 128, 200, 147.5, 180.5, 147.5, 180.5, 128, 200, 128, 219.5, 128, 200, 128, 200, 108.5, 219.5, 108.5, 200, 167, 180.5, 167, 180.5, 147.5, 200, 147.5, 219.5, 186.5, 200, 186.5, 200, 167, 219.5, 167, 200, 186.5, 180.5, 186.5, 180.5, 167, 200, 167, 219.5, 167, 200, 167, 200, 147.5, 219.5, 147.5, 239, 50, 219.5, 50, 219.5, 30.5, 239, 30.5, 258.5, 63.4677, 254.344, 69.5, 239, 69.5, 239, 50, 258.5, 50, 239, 69.5, 219.5, 69.5, 219.5, 50, 239, 50, 258.5, 50, 239, 50, 239, 30.5, 258.5, 30.5, 258.5, 12.7863, 258.5, 30.5, 239, 30.5, 239, 12.629, 239, 12.629, 239, 30.5, 219.5, 30.5, 219.5, 12.4718, 285, 13, 285, 14, 286, 25, 285, 25, 281.211, 30.5, 278, 30.5, 278, 12.9436, 278, 12.9436, 278, 30.5, 258.5, 30.5, 258.5, 12.7863, 278, 35.1613, 267.778, 50, 258.5, 50, 258.5, 30.5, 278, 30.5, 258.5, 63.4677, 258.5, 50, 267.778, 50, 278, 35.1613, 278, 30.5, 281.211, 30.5, 239, 89, 219.5, 89, 219.5, 69.5, 239, 69.5, 249, 100, 250, 100, 252.833, 108.5, 239, 108.5, 239, 89, 251.037, 89, 239, 108.5, 219.5, 108.5, 219.5, 89, 239, 89, 254, 70, 254, 73, 251.037, 89, 239, 89, 239, 69.5, 254.344, 69.5, 239, 128, 219.5, 128, 219.5, 108.5, 239, 108.5, 258.5, 147.5, 239, 147.5, 239, 128, 258.5, 128, 239, 147.5, 219.5, 147.5, 219.5, 128, 239, 128, 255, 115, 256, 115, 258.5, 117.159, 258.5, 128, 239, 128, 239, 108.5, 252.833, 108.5, 271.053, 128, 258.5, 128, 258.5, 117.159, 285.906, 147.5, 278, 147.5, 278, 136, 278, 134, 278, 147.5, 258.5, 147.5, 258.5, 128, 271.053, 128, 239, 167, 219.5, 167, 219.5, 147.5, 239, 147.5, 258.5, 186.5, 239, 186.5, 239, 167, 258.5, 167, 239, 186.5, 219.5, 186.5, 219.5, 167, 239, 167, 258.5, 167, 239, 167, 239, 147.5, 258.5, 147.5, 278, 167, 258.5, 167, 258.5, 147.5, 278, 147.5, 295, 173, 295, 186.5, 278, 186.5, 278, 167, 293, 167, 278, 186.5, 258.5, 186.5, 258.5, 167, 278, 167, 289, 152, 289, 155, 293, 167, 278, 167, 278, 147.5, 285.906, 147.5, 200, 206, 180.5, 206, 180.5, 186.5, 200, 186.5, 219.5, 225.5, 200, 225.5, 200, 206, 219.5, 206, 200, 225.5, 180.5, 225.5, 180.5, 206, 200, 206, 219.5, 206, 200, 206, 200, 186.5, 219.5, 186.5, 200, 245, 180.5, 245, 180.5, 225.5, 200, 225.5, 219.5, 264.5, 200, 264.5, 200, 245, 219.5, 245, 200, 264.5, 180.5, 264.5, 180.5, 245, 200, 245, 219.5, 245, 200, 245, 200, 225.5, 219.5, 225.5, 200, 284, 180.5, 284, 180.5, 264.5, 200, 264.5, 219.5, 289, 200, 289, 200, 284, 219.5, 284, 200, 289, 180.5, 289, 180.5, 284, 200, 284, 219.5, 284, 200, 284, 200, 264.5, 219.5, 264.5, 239, 206, 219.5, 206, 219.5, 186.5, 239, 186.5, 258.5, 225.5, 239, 225.5, 239, 206, 258.5, 206, 239, 225.5, 219.5, 225.5, 219.5, 206, 239, 206, 258.5, 206, 239, 206, 239, 186.5, 258.5, 186.5, 239, 245, 219.5, 245, 219.5, 225.5, 239, 225.5, 258.5, 264.5, 239, 264.5, 239, 245, 258.5, 245, 239, 264.5, 219.5, 264.5, 219.5, 245, 239, 245, 258.5, 245, 239, 245, 239, 225.5, 258.5, 225.5, 239, 284, 219.5, 284, 219.5, 264.5, 239, 264.5, 258.5, 289, 239, 289, 239, 284, 258.5, 284, 239, 289, 219.5, 289, 219.5, 284, 239, 284, 258.5, 284, 239, 284, 239, 264.5, 258.5, 264.5, 270, 283, 269, 283, 267.833, 284, 258.5, 284, 258.5, 264.5, 277.074, 264.5, 262, 289, 258.5, 289, 258.5, 284, 267.833, 284, 278, 206, 258.5, 206, 258.5, 186.5, 278, 186.5, 289, 225.5, 278, 225.5, 278, 206, 293.149, 206, 278, 225.5, 258.5, 225.5, 258.5, 206, 278, 206, 295, 202, 294, 202, 293.149, 206, 278, 206, 278, 186.5, 295, 186.5, 278, 245, 258.5, 245, 258.5, 225.5, 278, 225.5, 284, 249, 283, 249, 278, 262.077, 278, 245, 284.851, 245, 278, 264.5, 258.5, 264.5, 258.5, 245, 278, 245, 284.851, 245, 278, 245, 278, 225.5, 289, 225.5) +polygons = [PackedInt32Array(46, 43, 44), PackedInt32Array(44, 45, 46), PackedInt32Array(50, 47, 48), PackedInt32Array(48, 49, 50), PackedInt32Array(54, 51, 52), PackedInt32Array(52, 53, 54), PackedInt32Array(58, 55, 56), PackedInt32Array(56, 57, 58), PackedInt32Array(59, 60, 61), PackedInt32Array(62, 63, 59), PackedInt32Array(59, 61, 62), PackedInt32Array(67, 64, 65), PackedInt32Array(65, 66, 67), PackedInt32Array(71, 68, 69), PackedInt32Array(69, 70, 71), PackedInt32Array(75, 72, 73), PackedInt32Array(73, 74, 75), PackedInt32Array(83, 76, 77), PackedInt32Array(77, 78, 79), PackedInt32Array(79, 80, 81), PackedInt32Array(82, 83, 77), PackedInt32Array(77, 79, 81), PackedInt32Array(81, 82, 77), PackedInt32Array(87, 84, 85), PackedInt32Array(85, 86, 87), PackedInt32Array(91, 88, 89), PackedInt32Array(89, 90, 91), PackedInt32Array(95, 92, 93), PackedInt32Array(93, 94, 95), PackedInt32Array(99, 96, 97), PackedInt32Array(97, 98, 99), PackedInt32Array(103, 100, 101), PackedInt32Array(101, 102, 103), PackedInt32Array(108, 104, 105), PackedInt32Array(105, 106, 107), PackedInt32Array(107, 108, 105), PackedInt32Array(112, 109, 110), PackedInt32Array(110, 111, 112), PackedInt32Array(116, 113, 114), PackedInt32Array(114, 115, 116), PackedInt32Array(120, 117, 118), PackedInt32Array(118, 119, 120), PackedInt32Array(124, 121, 122), PackedInt32Array(122, 123, 124), PackedInt32Array(130, 125, 126), PackedInt32Array(126, 127, 128), PackedInt32Array(128, 129, 130), PackedInt32Array(130, 126, 128), PackedInt32Array(135, 131, 132), PackedInt32Array(132, 133, 134), PackedInt32Array(134, 135, 132), PackedInt32Array(138, 136, 137), PackedInt32Array(143, 139, 140), PackedInt32Array(140, 141, 142), PackedInt32Array(142, 143, 140), PackedInt32Array(151, 144, 145), PackedInt32Array(147, 148, 149), PackedInt32Array(149, 150, 151), PackedInt32Array(151, 145, 146), PackedInt32Array(147, 149, 151), PackedInt32Array(151, 146, 147), PackedInt32Array(154, 152, 153), PackedInt32Array(158, 155, 156), PackedInt32Array(156, 157, 158), PackedInt32Array(162, 159, 160), PackedInt32Array(160, 161, 162), PackedInt32Array(166, 163, 164), PackedInt32Array(164, 165, 166), PackedInt32Array(170, 167, 168), PackedInt32Array(168, 169, 170), PackedInt32Array(174, 171, 172), PackedInt32Array(172, 173, 174), PackedInt32Array(178, 175, 176), PackedInt32Array(176, 177, 178), PackedInt32Array(182, 179, 180), PackedInt32Array(180, 181, 182), PackedInt32Array(186, 183, 184), PackedInt32Array(184, 185, 186), PackedInt32Array(190, 187, 188), PackedInt32Array(188, 189, 190), PackedInt32Array(194, 191, 192), PackedInt32Array(192, 193, 194), PackedInt32Array(198, 195, 196), PackedInt32Array(196, 197, 198), PackedInt32Array(202, 199, 200), PackedInt32Array(200, 201, 202), PackedInt32Array(206, 203, 204), PackedInt32Array(204, 205, 206), PackedInt32Array(210, 207, 208), PackedInt32Array(208, 209, 210), PackedInt32Array(214, 211, 212), PackedInt32Array(212, 213, 214), PackedInt32Array(218, 215, 216), PackedInt32Array(216, 217, 218), PackedInt32Array(222, 219, 220), PackedInt32Array(220, 221, 222), PackedInt32Array(226, 223, 224), PackedInt32Array(224, 225, 226), PackedInt32Array(230, 227, 228), PackedInt32Array(228, 229, 230), PackedInt32Array(234, 231, 232), PackedInt32Array(232, 233, 234), PackedInt32Array(238, 235, 236), PackedInt32Array(236, 237, 238), PackedInt32Array(242, 239, 240), PackedInt32Array(240, 241, 242), PackedInt32Array(246, 243, 244), PackedInt32Array(244, 245, 246), PackedInt32Array(250, 247, 248), PackedInt32Array(248, 249, 250), PackedInt32Array(254, 251, 252), PackedInt32Array(252, 253, 254), PackedInt32Array(258, 255, 256), PackedInt32Array(256, 257, 258), PackedInt32Array(262, 259, 260), PackedInt32Array(260, 261, 262), PackedInt32Array(266, 263, 264), PackedInt32Array(264, 265, 266), PackedInt32Array(270, 267, 268), PackedInt32Array(268, 269, 270), PackedInt32Array(274, 271, 272), PackedInt32Array(272, 273, 274), PackedInt32Array(278, 275, 276), PackedInt32Array(276, 277, 278), PackedInt32Array(282, 279, 280), PackedInt32Array(280, 281, 282), PackedInt32Array(286, 283, 284), PackedInt32Array(284, 285, 286), PackedInt32Array(290, 287, 288), PackedInt32Array(288, 289, 290), PackedInt32Array(294, 291, 292), PackedInt32Array(292, 293, 294), PackedInt32Array(298, 295, 296), PackedInt32Array(296, 297, 298), PackedInt32Array(302, 299, 300), PackedInt32Array(300, 301, 302), PackedInt32Array(306, 303, 304), PackedInt32Array(304, 305, 306), PackedInt32Array(310, 307, 308), PackedInt32Array(308, 309, 310), PackedInt32Array(314, 311, 312), PackedInt32Array(312, 313, 314), PackedInt32Array(318, 315, 316), PackedInt32Array(316, 317, 318), PackedInt32Array(322, 319, 320), PackedInt32Array(320, 321, 322), PackedInt32Array(326, 323, 324), PackedInt32Array(324, 325, 326), PackedInt32Array(330, 327, 328), PackedInt32Array(328, 329, 330), PackedInt32Array(334, 331, 332), PackedInt32Array(332, 333, 334), PackedInt32Array(338, 335, 336), PackedInt32Array(336, 337, 338), PackedInt32Array(342, 339, 340), PackedInt32Array(340, 341, 342), PackedInt32Array(346, 343, 344), PackedInt32Array(344, 345, 346), PackedInt32Array(350, 347, 348), PackedInt32Array(348, 349, 350), PackedInt32Array(354, 351, 352), PackedInt32Array(352, 353, 354), PackedInt32Array(358, 355, 356), PackedInt32Array(356, 357, 358), PackedInt32Array(362, 359, 360), PackedInt32Array(360, 361, 362), PackedInt32Array(366, 363, 364), PackedInt32Array(364, 365, 366), PackedInt32Array(370, 367, 368), PackedInt32Array(368, 369, 370), PackedInt32Array(374, 371, 372), PackedInt32Array(372, 373, 374), PackedInt32Array(375, 376, 377), PackedInt32Array(377, 378, 379), PackedInt32Array(379, 380, 375), PackedInt32Array(375, 377, 379), PackedInt32Array(384, 381, 382), PackedInt32Array(382, 383, 384), PackedInt32Array(389, 385, 386), PackedInt32Array(386, 387, 388), PackedInt32Array(388, 389, 386), PackedInt32Array(393, 390, 391), PackedInt32Array(391, 392, 393), PackedInt32Array(397, 394, 395), PackedInt32Array(395, 396, 397), PackedInt32Array(401, 398, 399), PackedInt32Array(399, 400, 401), PackedInt32Array(405, 402, 403), PackedInt32Array(403, 404, 405), PackedInt32Array(409, 406, 407), PackedInt32Array(407, 408, 409), PackedInt32Array(412, 410, 411), PackedInt32Array(418, 413, 414), PackedInt32Array(414, 415, 416), PackedInt32Array(416, 417, 418), PackedInt32Array(418, 414, 416), PackedInt32Array(424, 419, 420), PackedInt32Array(420, 421, 422), PackedInt32Array(422, 423, 424), PackedInt32Array(424, 420, 422), PackedInt32Array(428, 425, 426), PackedInt32Array(426, 427, 428), PackedInt32Array(432, 429, 430), PackedInt32Array(430, 431, 432), PackedInt32Array(436, 433, 434), PackedInt32Array(434, 435, 436), PackedInt32Array(440, 437, 438), PackedInt32Array(438, 439, 440), PackedInt32Array(445, 441, 442), PackedInt32Array(442, 443, 444), PackedInt32Array(444, 445, 442), PackedInt32Array(448, 446, 447), PackedInt32Array(453, 449, 450), PackedInt32Array(451, 452, 453), PackedInt32Array(453, 450, 451), PackedInt32Array(457, 454, 455), PackedInt32Array(455, 456, 457), PackedInt32Array(461, 458, 459), PackedInt32Array(459, 460, 461), PackedInt32Array(465, 462, 463), PackedInt32Array(463, 464, 465), PackedInt32Array(469, 466, 467), PackedInt32Array(467, 468, 469), PackedInt32Array(473, 470, 471), PackedInt32Array(471, 472, 473), PackedInt32Array(477, 474, 475), PackedInt32Array(475, 476, 477), PackedInt32Array(481, 478, 479), PackedInt32Array(479, 480, 481), PackedInt32Array(485, 482, 483), PackedInt32Array(483, 484, 485), PackedInt32Array(489, 486, 487), PackedInt32Array(487, 488, 489), PackedInt32Array(493, 490, 491), PackedInt32Array(491, 492, 493), PackedInt32Array(497, 494, 495), PackedInt32Array(495, 496, 497), PackedInt32Array(501, 498, 499), PackedInt32Array(499, 500, 501), PackedInt32Array(505, 502, 503), PackedInt32Array(503, 504, 505), PackedInt32Array(509, 506, 507), PackedInt32Array(507, 508, 509), PackedInt32Array(513, 510, 511), PackedInt32Array(511, 512, 513), PackedInt32Array(517, 514, 515), PackedInt32Array(515, 516, 517), PackedInt32Array(521, 518, 519), PackedInt32Array(519, 520, 521), PackedInt32Array(525, 522, 523), PackedInt32Array(523, 524, 525), PackedInt32Array(529, 526, 527), PackedInt32Array(527, 528, 529), PackedInt32Array(533, 530, 531), PackedInt32Array(531, 532, 533), PackedInt32Array(537, 534, 535), PackedInt32Array(535, 536, 537), PackedInt32Array(541, 538, 539), PackedInt32Array(539, 540, 541), PackedInt32Array(545, 542, 543), PackedInt32Array(543, 544, 545), PackedInt32Array(549, 546, 547), PackedInt32Array(547, 548, 549), PackedInt32Array(553, 550, 551), PackedInt32Array(551, 552, 553), PackedInt32Array(557, 554, 555), PackedInt32Array(555, 556, 557), PackedInt32Array(561, 558, 559), PackedInt32Array(559, 560, 561), PackedInt32Array(565, 562, 563), PackedInt32Array(563, 564, 565), PackedInt32Array(569, 566, 567), PackedInt32Array(567, 568, 569), PackedInt32Array(573, 570, 571), PackedInt32Array(571, 572, 573), PackedInt32Array(577, 574, 575), PackedInt32Array(575, 576, 577), PackedInt32Array(581, 578, 579), PackedInt32Array(579, 580, 581), PackedInt32Array(585, 582, 583), PackedInt32Array(583, 584, 585), PackedInt32Array(589, 586, 587), PackedInt32Array(587, 588, 589), PackedInt32Array(593, 590, 591), PackedInt32Array(591, 592, 593), PackedInt32Array(597, 594, 595), PackedInt32Array(595, 596, 597), PackedInt32Array(601, 598, 599), PackedInt32Array(599, 600, 601), PackedInt32Array(605, 602, 603), PackedInt32Array(603, 604, 605), PackedInt32Array(609, 606, 607), PackedInt32Array(607, 608, 609), PackedInt32Array(613, 610, 611), PackedInt32Array(611, 612, 613), PackedInt32Array(617, 614, 615), PackedInt32Array(615, 616, 617), PackedInt32Array(621, 618, 619), PackedInt32Array(619, 620, 621), PackedInt32Array(625, 622, 623), PackedInt32Array(623, 624, 625), PackedInt32Array(629, 626, 627), PackedInt32Array(627, 628, 629), PackedInt32Array(633, 630, 631), PackedInt32Array(631, 632, 633), PackedInt32Array(637, 634, 635), PackedInt32Array(635, 636, 637), PackedInt32Array(641, 638, 639), PackedInt32Array(639, 640, 641), PackedInt32Array(645, 642, 643), PackedInt32Array(643, 644, 645), PackedInt32Array(649, 646, 647), PackedInt32Array(647, 648, 649), PackedInt32Array(653, 650, 651), PackedInt32Array(651, 652, 653), PackedInt32Array(657, 654, 655), PackedInt32Array(655, 656, 657), PackedInt32Array(662, 658, 659), PackedInt32Array(659, 660, 661), PackedInt32Array(661, 662, 659), PackedInt32Array(666, 663, 664), PackedInt32Array(664, 665, 666), PackedInt32Array(670, 667, 668), PackedInt32Array(668, 669, 670), PackedInt32Array(674, 671, 672), PackedInt32Array(672, 673, 674), PackedInt32Array(678, 675, 676), PackedInt32Array(676, 677, 678), PackedInt32Array(685, 679, 680), PackedInt32Array(680, 681, 682), PackedInt32Array(682, 683, 684), PackedInt32Array(684, 685, 680), PackedInt32Array(680, 682, 684), PackedInt32Array(689, 686, 687), PackedInt32Array(687, 688, 689), PackedInt32Array(694, 690, 691), PackedInt32Array(691, 692, 693), PackedInt32Array(693, 694, 691), PackedInt32Array(697, 695, 696), PackedInt32Array(700, 698, 699), PackedInt32Array(704, 701, 702), PackedInt32Array(702, 703, 704), PackedInt32Array(705, 706, 707), PackedInt32Array(707, 708, 709), PackedInt32Array(709, 710, 705), PackedInt32Array(705, 707, 709), PackedInt32Array(714, 711, 712), PackedInt32Array(712, 713, 714), PackedInt32Array(715, 716, 717), PackedInt32Array(717, 718, 719), PackedInt32Array(719, 720, 715), PackedInt32Array(715, 717, 719), PackedInt32Array(724, 721, 722), PackedInt32Array(722, 723, 724), PackedInt32Array(728, 725, 726), PackedInt32Array(726, 727, 728), PackedInt32Array(732, 729, 730), PackedInt32Array(730, 731, 732), PackedInt32Array(733, 734, 735), PackedInt32Array(735, 736, 737), PackedInt32Array(737, 738, 739), PackedInt32Array(733, 735, 737), PackedInt32Array(737, 739, 733), PackedInt32Array(742, 740, 741), PackedInt32Array(745, 743, 744), PackedInt32Array(750, 746, 747), PackedInt32Array(747, 748, 749), PackedInt32Array(749, 750, 747), PackedInt32Array(754, 751, 752), PackedInt32Array(752, 753, 754), PackedInt32Array(758, 755, 756), PackedInt32Array(756, 757, 758), PackedInt32Array(762, 759, 760), PackedInt32Array(760, 761, 762), PackedInt32Array(766, 763, 764), PackedInt32Array(764, 765, 766), PackedInt32Array(770, 767, 768), PackedInt32Array(768, 769, 770), PackedInt32Array(775, 771, 772), PackedInt32Array(772, 773, 774), PackedInt32Array(774, 775, 772), PackedInt32Array(779, 776, 777), PackedInt32Array(777, 778, 779), PackedInt32Array(785, 780, 781), PackedInt32Array(781, 782, 783), PackedInt32Array(783, 784, 785), PackedInt32Array(785, 781, 783), PackedInt32Array(789, 786, 787), PackedInt32Array(787, 788, 789), PackedInt32Array(793, 790, 791), PackedInt32Array(791, 792, 793), PackedInt32Array(797, 794, 795), PackedInt32Array(795, 796, 797), PackedInt32Array(801, 798, 799), PackedInt32Array(799, 800, 801), PackedInt32Array(805, 802, 803), PackedInt32Array(803, 804, 805), PackedInt32Array(809, 806, 807), PackedInt32Array(807, 808, 809), PackedInt32Array(813, 810, 811), PackedInt32Array(811, 812, 813), PackedInt32Array(817, 814, 815), PackedInt32Array(815, 816, 817), PackedInt32Array(821, 818, 819), PackedInt32Array(819, 820, 821), PackedInt32Array(825, 822, 823), PackedInt32Array(823, 824, 825), PackedInt32Array(829, 826, 827), PackedInt32Array(827, 828, 829), PackedInt32Array(833, 830, 831), PackedInt32Array(831, 832, 833), PackedInt32Array(837, 834, 835), PackedInt32Array(835, 836, 837), PackedInt32Array(841, 838, 839), PackedInt32Array(839, 840, 841), PackedInt32Array(845, 842, 843), PackedInt32Array(843, 844, 845), PackedInt32Array(849, 846, 847), PackedInt32Array(847, 848, 849), PackedInt32Array(853, 850, 851), PackedInt32Array(851, 852, 853), PackedInt32Array(857, 854, 855), PackedInt32Array(855, 856, 857), PackedInt32Array(861, 858, 859), PackedInt32Array(859, 860, 861), PackedInt32Array(865, 862, 863), PackedInt32Array(863, 864, 865), PackedInt32Array(869, 866, 867), PackedInt32Array(867, 868, 869), PackedInt32Array(873, 870, 871), PackedInt32Array(871, 872, 873), PackedInt32Array(877, 874, 875), PackedInt32Array(875, 876, 877), PackedInt32Array(881, 878, 879), PackedInt32Array(879, 880, 881), PackedInt32Array(887, 882, 883), PackedInt32Array(883, 884, 885), PackedInt32Array(885, 886, 887), PackedInt32Array(887, 883, 885), PackedInt32Array(891, 888, 889), PackedInt32Array(889, 890, 891), PackedInt32Array(895, 892, 893), PackedInt32Array(893, 894, 895), PackedInt32Array(899, 896, 897), PackedInt32Array(897, 898, 899), PackedInt32Array(903, 900, 901), PackedInt32Array(901, 902, 903), PackedInt32Array(909, 904, 905), PackedInt32Array(905, 906, 907), PackedInt32Array(907, 908, 909), PackedInt32Array(909, 905, 907), PackedInt32Array(913, 910, 911), PackedInt32Array(911, 912, 913), PackedInt32Array(918, 914, 915), PackedInt32Array(915, 916, 917), PackedInt32Array(917, 918, 915), PackedInt32Array(922, 919, 920), PackedInt32Array(920, 921, 922), PackedInt32Array(926, 923, 924), PackedInt32Array(924, 925, 926)] +bones = ["Bone-0", PackedFloat32Array(1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-1", PackedFloat32Array(0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-2", PackedFloat32Array(0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-3", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-4", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-5", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-6", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-7", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-8", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-9", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-10", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-11", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-12", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-13", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-14", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-15", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-16", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-17", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-18", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-19", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-20", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-21", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-22", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-23", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-24", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-25", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-26", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-27", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-28", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-29", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-30", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-31", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-32", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-33", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-34", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-35", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-36", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-37", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-38", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-39", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), "Bone-40", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0), "Bone-41", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0), "Bone-42", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1), "Bone-43", PackedFloat32Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1)] +internal_vertex_count = 884 +script = ExtResource("2_4mj6g") +vertex_interval = 39 +texture_epsilon = 3 +margin_pixels = 8 +min_area = 0.5 +radius = 22 +total_mass = 2.01 +constant_force = Vector2(2.08165e-12, 2.08165e-12) +shape_type = "Rectangle" +break_distance_ratio = 1.1 +rigidbody_scene = ExtResource("4_13lkq") +physics_material_override = ExtResource("6_eyp3s") + +[node name="Skeleton2D" type="Skeleton2D" parent="BreakableSoftbody2D"] +visible = false +modification_stack = SubResource("SkeletonModificationStack2D_3i6hv") + +[node name="Bone-0" type="Bone2D" parent="BreakableSoftbody2D/Skeleton2D"] +position = Vector2(36.9656, 40.25) +rest = Transform2D(1, 0, 0, 1, 36.9655, 40.25) +auto_calculate_length_and_angle = false +length = 39.0 +bone_angle = 0.0 +metadata/vert_owned = [43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83] +metadata/idx = 0 +metadata/connected_nodes_paths = [NodePath("Bone-1"), NodePath("Bone-4"), NodePath("Bone-5")] +metadata/connected_nodes_idx = [1, 4, 5] +metadata/_local_pose_override_enabled_ = true + +[node name="Bone-1" type="Bone2D" parent="BreakableSoftbody2D/Skeleton2D"] +position = Vector2(34.25, 89) +rest = Transform2D(1, 0, 0, 1, 34.25, 89) +auto_calculate_length_and_angle = false +length = 39.0 +bone_angle = 0.0 +metadata/vert_owned = [84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108] +metadata/idx = 1 +metadata/connected_nodes_paths = [NodePath("Bone-0"), NodePath("Bone-4"), NodePath("Bone-5"), NodePath("Bone-2"), NodePath("Bone-6")] +metadata/connected_nodes_idx = [0, 4, 5, 2, 6] +metadata/_local_pose_override_enabled_ = true + +[node name="Bone-2" type="Bone2D" parent="BreakableSoftbody2D/Skeleton2D"] +position = Vector2(34.25, 128.732) +rotation = -0.0150173 +scale = Vector2(0.999928, 0.99994) +rest = Transform2D(0.999887, -0.0150167, 0.0150167, 0.999887, 34.25, 128.732) +auto_calculate_length_and_angle = false +length = 39.0 +bone_angle = 0.0 +metadata/vert_owned = [109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138] +metadata/idx = 2 +metadata/connected_nodes_paths = [NodePath("Bone-1"), NodePath("Bone-5"), NodePath("Bone-6"), NodePath("Bone-3"), NodePath("Bone-7")] +metadata/connected_nodes_idx = [1, 5, 6, 3, 7] +metadata/_local_pose_override_enabled_ = true + +[node name="Bone-3" type="Bone2D" parent="BreakableSoftbody2D/Skeleton2D"] +position = Vector2(44, 167) +rest = Transform2D(1, 0, 0, 1, 44, 167) +auto_calculate_length_and_angle = false +length = 39.0 +bone_angle = 0.0 +metadata/vert_owned = [139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158] +metadata/idx = 3 +metadata/connected_nodes_paths = [NodePath("Bone-2"), NodePath("Bone-6"), NodePath("Bone-7"), NodePath("Bone-18")] +metadata/connected_nodes_idx = [2, 6, 7, 18] +metadata/_local_pose_override_enabled_ = true + +[node name="Bone-4" type="Bone2D" parent="BreakableSoftbody2D/Skeleton2D"] +position = Vector2(83, 40.25) +rotation = 1.5708 +rest = Transform2D(-4.37114e-08, 1, -1, -4.37114e-08, 83, 40.25) +auto_calculate_length_and_angle = false +length = 39.0 +bone_angle = 0.0 +metadata/vert_owned = [159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182] +metadata/idx = 4 +metadata/connected_nodes_paths = [NodePath("Bone-0"), NodePath("Bone-1"), NodePath("Bone-5"), NodePath("Bone-8"), NodePath("Bone-9")] +metadata/connected_nodes_idx = [0, 1, 5, 8, 9] +metadata/_local_pose_override_enabled_ = true + +[node name="Bone-5" type="Bone2D" parent="BreakableSoftbody2D/Skeleton2D"] +position = Vector2(83, 89) +rotation = 1.5708 +rest = Transform2D(-4.37114e-08, 1, -1, -4.37114e-08, 83, 89) +auto_calculate_length_and_angle = false +length = 39.0 +bone_angle = 0.0 +metadata/vert_owned = [183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198] +metadata/idx = 5 +metadata/connected_nodes_paths = [NodePath("Bone-0"), NodePath("Bone-1"), NodePath("Bone-4"), NodePath("Bone-2"), NodePath("Bone-6"), NodePath("Bone-8"), NodePath("Bone-9"), NodePath("Bone-10")] +metadata/connected_nodes_idx = [0, 1, 4, 2, 6, 8, 9, 10] +metadata/_local_pose_override_enabled_ = true + +[node name="Bone-6" type="Bone2D" parent="BreakableSoftbody2D/Skeleton2D"] +position = Vector2(83, 128) +rotation = 1.5708 +rest = Transform2D(-4.37114e-08, 1, -1, -4.37114e-08, 83, 128) +auto_calculate_length_and_angle = false +length = 39.0 +bone_angle = 0.0 +metadata/vert_owned = [199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214] +metadata/idx = 6 +metadata/connected_nodes_paths = [NodePath("Bone-1"), NodePath("Bone-2"), NodePath("Bone-5"), NodePath("Bone-3"), NodePath("Bone-7"), NodePath("Bone-9"), NodePath("Bone-10"), NodePath("Bone-11")] +metadata/connected_nodes_idx = [1, 2, 5, 3, 7, 9, 10, 11] +metadata/_local_pose_override_enabled_ = true + +[node name="Bone-7" type="Bone2D" parent="BreakableSoftbody2D/Skeleton2D"] +position = Vector2(83, 167) +rotation = 1.84571 +scale = Vector2(1, 0.999999) +rest = Transform2D(-0.27146, 0.96245, -0.96245, -0.27146, 83, 167) +auto_calculate_length_and_angle = false +length = 39.0 +bone_angle = 0.0 +metadata/vert_owned = [215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230] +metadata/idx = 7 +metadata/connected_nodes_paths = [NodePath("Bone-2"), NodePath("Bone-3"), NodePath("Bone-6"), NodePath("Bone-18"), NodePath("Bone-10"), NodePath("Bone-11"), NodePath("Bone-21")] +metadata/connected_nodes_idx = [2, 3, 6, 18, 10, 11, 21] +metadata/_local_pose_override_enabled_ = true + +[node name="Bone-8" type="Bone2D" parent="BreakableSoftbody2D/Skeleton2D"] +position = Vector2(122, 40.25) +rotation = 1.5708 +rest = Transform2D(-4.37114e-08, 1, -1, -4.37114e-08, 122, 40.25) +auto_calculate_length_and_angle = false +length = 39.0 +bone_angle = 0.0 +metadata/vert_owned = [231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254] +metadata/idx = 8 +metadata/connected_nodes_paths = [NodePath("Bone-4"), NodePath("Bone-5"), NodePath("Bone-9"), NodePath("Bone-12"), NodePath("Bone-13")] +metadata/connected_nodes_idx = [4, 5, 9, 12, 13] +metadata/_local_pose_override_enabled_ = true + +[node name="Bone-9" type="Bone2D" parent="BreakableSoftbody2D/Skeleton2D"] +position = Vector2(122, 89) +rotation = 1.5708 +rest = Transform2D(-4.37114e-08, 1, -1, -4.37114e-08, 122, 89) +auto_calculate_length_and_angle = false +length = 39.0 +bone_angle = 0.0 +metadata/vert_owned = [255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270] +metadata/idx = 9 +metadata/connected_nodes_paths = [NodePath("Bone-4"), NodePath("Bone-5"), NodePath("Bone-8"), NodePath("Bone-6"), NodePath("Bone-10"), NodePath("Bone-12"), NodePath("Bone-13"), NodePath("Bone-14")] +metadata/connected_nodes_idx = [4, 5, 8, 6, 10, 12, 13, 14] +metadata/_local_pose_override_enabled_ = true + +[node name="Bone-10" type="Bone2D" parent="BreakableSoftbody2D/Skeleton2D"] +position = Vector2(122, 128) +rotation = 1.5708 +rest = Transform2D(-4.37114e-08, 1, -1, -4.37114e-08, 122, 128) +auto_calculate_length_and_angle = false +length = 39.0 +bone_angle = 0.0 +metadata/vert_owned = [271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286] +metadata/idx = 10 +metadata/connected_nodes_paths = [NodePath("Bone-5"), NodePath("Bone-6"), NodePath("Bone-9"), NodePath("Bone-7"), NodePath("Bone-11"), NodePath("Bone-13"), NodePath("Bone-14"), NodePath("Bone-15")] +metadata/connected_nodes_idx = [5, 6, 9, 7, 11, 13, 14, 15] +metadata/_local_pose_override_enabled_ = true + +[node name="Bone-11" type="Bone2D" parent="BreakableSoftbody2D/Skeleton2D"] +position = Vector2(122, 167) +rotation = 1.5708 +rest = Transform2D(-4.37114e-08, 1, -1, -4.37114e-08, 122, 167) +auto_calculate_length_and_angle = false +length = 39.0 +bone_angle = 0.0 +metadata/vert_owned = [287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302] +metadata/idx = 11 +metadata/connected_nodes_paths = [NodePath("Bone-6"), NodePath("Bone-7"), NodePath("Bone-10"), NodePath("Bone-18"), NodePath("Bone-21"), NodePath("Bone-14"), NodePath("Bone-15"), NodePath("Bone-24")] +metadata/connected_nodes_idx = [6, 7, 10, 18, 21, 14, 15, 24] +metadata/_local_pose_override_enabled_ = true + +[node name="Bone-12" type="Bone2D" parent="BreakableSoftbody2D/Skeleton2D"] +position = Vector2(161, 40.25) +rotation = 1.5708 +rest = Transform2D(-4.37114e-08, 1, -1, -4.37114e-08, 161, 40.25) +auto_calculate_length_and_angle = false +length = 39.0 +bone_angle = 0.0 +metadata/vert_owned = [303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326] +metadata/idx = 12 +metadata/connected_nodes_paths = [NodePath("Bone-8"), NodePath("Bone-9"), NodePath("Bone-13"), NodePath("Bone-27"), NodePath("Bone-28")] +metadata/connected_nodes_idx = [8, 9, 13, 27, 28] +metadata/_local_pose_override_enabled_ = true + +[node name="Bone-13" type="Bone2D" parent="BreakableSoftbody2D/Skeleton2D"] +position = Vector2(161, 89) +rotation = 1.5708 +rest = Transform2D(-4.37114e-08, 1, -1, -4.37114e-08, 161, 89) +auto_calculate_length_and_angle = false +length = 39.0 +bone_angle = 0.0 +metadata/vert_owned = [327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342] +metadata/idx = 13 +metadata/connected_nodes_paths = [NodePath("Bone-8"), NodePath("Bone-9"), NodePath("Bone-12"), NodePath("Bone-10"), NodePath("Bone-14"), NodePath("Bone-27"), NodePath("Bone-28"), NodePath("Bone-29")] +metadata/connected_nodes_idx = [8, 9, 12, 10, 14, 27, 28, 29] +metadata/_local_pose_override_enabled_ = true + +[node name="Bone-14" type="Bone2D" parent="BreakableSoftbody2D/Skeleton2D"] +position = Vector2(161, 128) +rotation = 1.5708 +rest = Transform2D(-4.37114e-08, 1, -1, -4.37114e-08, 161, 128) +auto_calculate_length_and_angle = false +length = 39.0 +bone_angle = 0.0 +metadata/vert_owned = [343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358] +metadata/idx = 14 +metadata/connected_nodes_paths = [NodePath("Bone-9"), NodePath("Bone-10"), NodePath("Bone-13"), NodePath("Bone-11"), NodePath("Bone-15"), NodePath("Bone-28"), NodePath("Bone-29"), NodePath("Bone-30")] +metadata/connected_nodes_idx = [9, 10, 13, 11, 15, 28, 29, 30] +metadata/_local_pose_override_enabled_ = true + +[node name="Bone-15" type="Bone2D" parent="BreakableSoftbody2D/Skeleton2D"] +position = Vector2(161, 167) +rotation = 1.5708 +rest = Transform2D(-4.37114e-08, 1, -1, -4.37114e-08, 161, 167) +auto_calculate_length_and_angle = false +length = 39.0 +bone_angle = 0.0 +metadata/vert_owned = [359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374] +metadata/idx = 15 +metadata/connected_nodes_paths = [NodePath("Bone-10"), NodePath("Bone-11"), NodePath("Bone-14"), NodePath("Bone-21"), NodePath("Bone-24"), NodePath("Bone-29"), NodePath("Bone-30"), NodePath("Bone-36")] +metadata/connected_nodes_idx = [10, 11, 14, 21, 24, 29, 30, 36] +metadata/_local_pose_override_enabled_ = true + +[node name="Bone-16" type="Bone2D" parent="BreakableSoftbody2D/Skeleton2D"] +position = Vector2(44, 245) +rest = Transform2D(1, 0, 0, 1, 44, 245) +auto_calculate_length_and_angle = false +length = 39.0 +bone_angle = 0.0 +metadata/vert_owned = [375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393] +metadata/idx = 16 +metadata/connected_nodes_paths = [NodePath("Bone-18"), NodePath("Bone-17"), NodePath("Bone-19"), NodePath("Bone-20")] +metadata/connected_nodes_idx = [18, 17, 19, 20] +metadata/_local_pose_override_enabled_ = true + +[node name="Bone-17" type="Bone2D" parent="BreakableSoftbody2D/Skeleton2D"] +position = Vector2(38.25, 274.39) +rotation = -0.581113 +scale = Vector2(1, 1) +rest = Transform2D(0.835852, -0.548954, 0.548954, 0.835852, 38.25, 274.39) +auto_calculate_length_and_angle = false +length = 39.0 +bone_angle = 0.0 +metadata/vert_owned = [394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424] +metadata/idx = 17 +metadata/connected_nodes_paths = [NodePath("Bone-16"), NodePath("Bone-19"), NodePath("Bone-20")] +metadata/connected_nodes_idx = [16, 19, 20] +metadata/_local_pose_override_enabled_ = true + +[node name="Bone-18" type="Bone2D" parent="BreakableSoftbody2D/Skeleton2D"] +position = Vector2(72, 206) +rest = Transform2D(1, 0, 0, 1, 72, 206) +auto_calculate_length_and_angle = false +length = 39.0 +bone_angle = 0.0 +metadata/vert_owned = [425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453] +metadata/idx = 18 +metadata/connected_nodes_paths = [NodePath("Bone-3"), NodePath("Bone-7"), NodePath("Bone-11"), NodePath("Bone-21"), NodePath("Bone-16"), NodePath("Bone-19"), NodePath("Bone-22")] +metadata/connected_nodes_idx = [3, 7, 11, 21, 16, 19, 22] +metadata/_local_pose_override_enabled_ = true + +[node name="Bone-19" type="Bone2D" parent="BreakableSoftbody2D/Skeleton2D"] +position = Vector2(83, 245) +rotation = -1.84571 +scale = Vector2(1, 0.999999) +rest = Transform2D(-0.27146, -0.96245, 0.96245, -0.27146, 83, 245) +auto_calculate_length_and_angle = false +length = 39.0 +bone_angle = 0.0 +metadata/vert_owned = [454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469] +metadata/idx = 19 +metadata/connected_nodes_paths = [NodePath("Bone-16"), NodePath("Bone-17"), NodePath("Bone-20"), NodePath("Bone-18"), NodePath("Bone-21"), NodePath("Bone-22"), NodePath("Bone-23")] +metadata/connected_nodes_idx = [16, 17, 20, 18, 21, 22, 23] +metadata/_local_pose_override_enabled_ = true + +[node name="Bone-20" type="Bone2D" parent="BreakableSoftbody2D/Skeleton2D"] +position = Vector2(83, 276.75) +rotation = -1.5708 +rest = Transform2D(-4.37114e-08, -1, 1, -4.37114e-08, 83, 276.75) +auto_calculate_length_and_angle = false +length = 39.0 +bone_angle = 0.0 +metadata/vert_owned = [470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485] +metadata/idx = 20 +metadata/connected_nodes_paths = [NodePath("Bone-16"), NodePath("Bone-17"), NodePath("Bone-19"), NodePath("Bone-22"), NodePath("Bone-23")] +metadata/connected_nodes_idx = [16, 17, 19, 22, 23] +metadata/_local_pose_override_enabled_ = true + +[node name="Bone-21" type="Bone2D" parent="BreakableSoftbody2D/Skeleton2D"] +position = Vector2(122, 206) +rest = Transform2D(1, 0, 0, 1, 122, 206) +auto_calculate_length_and_angle = false +length = 39.0 +bone_angle = 0.0 +metadata/vert_owned = [486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501] +metadata/idx = 21 +metadata/connected_nodes_paths = [NodePath("Bone-7"), NodePath("Bone-11"), NodePath("Bone-18"), NodePath("Bone-15"), NodePath("Bone-24"), NodePath("Bone-19"), NodePath("Bone-22"), NodePath("Bone-25")] +metadata/connected_nodes_idx = [7, 11, 18, 15, 24, 19, 22, 25] +metadata/_local_pose_override_enabled_ = true + +[node name="Bone-22" type="Bone2D" parent="BreakableSoftbody2D/Skeleton2D"] +position = Vector2(122, 245) +rotation = 1.5708 +rest = Transform2D(-4.37114e-08, 1, -1, -4.37114e-08, 122, 245) +auto_calculate_length_and_angle = false +length = 39.0 +bone_angle = 0.0 +metadata/vert_owned = [502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517] +metadata/idx = 22 +metadata/connected_nodes_paths = [NodePath("Bone-18"), NodePath("Bone-19"), NodePath("Bone-21"), NodePath("Bone-20"), NodePath("Bone-23"), NodePath("Bone-24"), NodePath("Bone-25"), NodePath("Bone-26")] +metadata/connected_nodes_idx = [18, 19, 21, 20, 23, 24, 25, 26] +metadata/_local_pose_override_enabled_ = true + +[node name="Bone-23" type="Bone2D" parent="BreakableSoftbody2D/Skeleton2D"] +position = Vector2(122, 276.75) +rotation = -1.5708 +rest = Transform2D(-4.37114e-08, -1, 1, -4.37114e-08, 122, 276.75) +auto_calculate_length_and_angle = false +length = 39.0 +bone_angle = 0.0 +metadata/vert_owned = [518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533] +metadata/idx = 23 +metadata/connected_nodes_paths = [NodePath("Bone-19"), NodePath("Bone-20"), NodePath("Bone-22"), NodePath("Bone-25"), NodePath("Bone-26")] +metadata/connected_nodes_idx = [19, 20, 22, 25, 26] +metadata/_local_pose_override_enabled_ = true + +[node name="Bone-24" type="Bone2D" parent="BreakableSoftbody2D/Skeleton2D"] +position = Vector2(161, 206) +rest = Transform2D(1, 0, 0, 1, 161, 206) +auto_calculate_length_and_angle = false +length = 39.0 +bone_angle = 0.0 +metadata/vert_owned = [534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549] +metadata/idx = 24 +metadata/connected_nodes_paths = [NodePath("Bone-11"), NodePath("Bone-15"), NodePath("Bone-21"), NodePath("Bone-30"), NodePath("Bone-36"), NodePath("Bone-22"), NodePath("Bone-25"), NodePath("Bone-37")] +metadata/connected_nodes_idx = [11, 15, 21, 30, 36, 22, 25, 37] +metadata/_local_pose_override_enabled_ = true + +[node name="Bone-25" type="Bone2D" parent="BreakableSoftbody2D/Skeleton2D"] +position = Vector2(161, 245) +rotation = 1.5708 +rest = Transform2D(-4.37114e-08, 1, -1, -4.37114e-08, 161, 245) +auto_calculate_length_and_angle = false +length = 39.0 +bone_angle = 0.0 +metadata/vert_owned = [550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565] +metadata/idx = 25 +metadata/connected_nodes_paths = [NodePath("Bone-21"), NodePath("Bone-22"), NodePath("Bone-24"), NodePath("Bone-23"), NodePath("Bone-26"), NodePath("Bone-36"), NodePath("Bone-37"), NodePath("Bone-38")] +metadata/connected_nodes_idx = [21, 22, 24, 23, 26, 36, 37, 38] +metadata/_local_pose_override_enabled_ = true + +[node name="Bone-26" type="Bone2D" parent="BreakableSoftbody2D/Skeleton2D"] +position = Vector2(161, 276.75) +rotation = -1.5708 +rest = Transform2D(-4.37114e-08, -1, 1, -4.37114e-08, 161, 276.75) +auto_calculate_length_and_angle = false +length = 39.0 +bone_angle = 0.0 +metadata/vert_owned = [566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581] +metadata/idx = 26 +metadata/connected_nodes_paths = [NodePath("Bone-22"), NodePath("Bone-23"), NodePath("Bone-25"), NodePath("Bone-37"), NodePath("Bone-38")] +metadata/connected_nodes_idx = [22, 23, 25, 37, 38] +metadata/_local_pose_override_enabled_ = true + +[node name="Bone-27" type="Bone2D" parent="BreakableSoftbody2D/Skeleton2D"] +position = Vector2(200, 40.25) +rotation = 1.5708 +rest = Transform2D(-4.37114e-08, 1, -1, -4.37114e-08, 200, 40.25) +auto_calculate_length_and_angle = false +length = 39.0 +bone_angle = 0.0 +metadata/vert_owned = [582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605] +metadata/idx = 27 +metadata/connected_nodes_paths = [NodePath("Bone-12"), NodePath("Bone-13"), NodePath("Bone-28"), NodePath("Bone-31"), NodePath("Bone-32")] +metadata/connected_nodes_idx = [12, 13, 28, 31, 32] +metadata/_local_pose_override_enabled_ = true + +[node name="Bone-28" type="Bone2D" parent="BreakableSoftbody2D/Skeleton2D"] +position = Vector2(200, 89) +rotation = 1.5708 +rest = Transform2D(-4.37114e-08, 1, -1, -4.37114e-08, 200, 89) +auto_calculate_length_and_angle = false +length = 39.0 +bone_angle = 0.0 +metadata/vert_owned = [606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621] +metadata/idx = 28 +metadata/connected_nodes_paths = [NodePath("Bone-12"), NodePath("Bone-13"), NodePath("Bone-27"), NodePath("Bone-14"), NodePath("Bone-29"), NodePath("Bone-31"), NodePath("Bone-32"), NodePath("Bone-33")] +metadata/connected_nodes_idx = [12, 13, 27, 14, 29, 31, 32, 33] +metadata/_local_pose_override_enabled_ = true + +[node name="Bone-29" type="Bone2D" parent="BreakableSoftbody2D/Skeleton2D"] +position = Vector2(200, 128) +rotation = 1.5708 +rest = Transform2D(-4.37114e-08, 1, -1, -4.37114e-08, 200, 128) +auto_calculate_length_and_angle = false +length = 39.0 +bone_angle = 0.0 +metadata/vert_owned = [622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637] +metadata/idx = 29 +metadata/connected_nodes_paths = [NodePath("Bone-13"), NodePath("Bone-14"), NodePath("Bone-28"), NodePath("Bone-15"), NodePath("Bone-30"), NodePath("Bone-32"), NodePath("Bone-33"), NodePath("Bone-34")] +metadata/connected_nodes_idx = [13, 14, 28, 15, 30, 32, 33, 34] +metadata/_local_pose_override_enabled_ = true + +[node name="Bone-30" type="Bone2D" parent="BreakableSoftbody2D/Skeleton2D"] +position = Vector2(200, 167) +rotation = 1.5708 +rest = Transform2D(-4.37114e-08, 1, -1, -4.37114e-08, 200, 167) +auto_calculate_length_and_angle = false +length = 39.0 +bone_angle = 0.0 +metadata/vert_owned = [638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653] +metadata/idx = 30 +metadata/connected_nodes_paths = [NodePath("Bone-14"), NodePath("Bone-15"), NodePath("Bone-29"), NodePath("Bone-24"), NodePath("Bone-36"), NodePath("Bone-33"), NodePath("Bone-34"), NodePath("Bone-39")] +metadata/connected_nodes_idx = [14, 15, 29, 24, 36, 33, 34, 39] +metadata/_local_pose_override_enabled_ = true + +[node name="Bone-31" type="Bone2D" parent="BreakableSoftbody2D/Skeleton2D"] +position = Vector2(252.75, 40.9859) +rotation = -3.12764 +rest = Transform2D(-0.999903, -0.0139491, 0.0139491, -0.999903, 252.75, 40.9859) +auto_calculate_length_and_angle = false +length = 39.0 +bone_angle = 0.0 +metadata/vert_owned = [654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700] +metadata/idx = 31 +metadata/connected_nodes_paths = [NodePath("Bone-32"), NodePath("Bone-27"), NodePath("Bone-28")] +metadata/connected_nodes_idx = [32, 27, 28] +metadata/_local_pose_override_enabled_ = true + +[node name="Bone-32" type="Bone2D" parent="BreakableSoftbody2D/Skeleton2D"] +position = Vector2(236.922, 89) +rotation = -3.14159 +rest = Transform2D(-1, 1.50996e-07, -1.50996e-07, -1, 236.922, 89) +auto_calculate_length_and_angle = false +length = 39.0 +bone_angle = 0.0 +metadata/vert_owned = [701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720] +metadata/idx = 32 +metadata/connected_nodes_paths = [NodePath("Bone-31"), NodePath("Bone-27"), NodePath("Bone-28"), NodePath("Bone-29"), NodePath("Bone-33")] +metadata/connected_nodes_idx = [31, 27, 28, 29, 33] +metadata/_local_pose_override_enabled_ = true + +[node name="Bone-33" type="Bone2D" parent="BreakableSoftbody2D/Skeleton2D"] +position = Vector2(252.703, 128) +rotation = 2.50453 +scale = Vector2(1, 1) +rest = Transform2D(-0.803844, 0.59484, -0.59484, -0.803844, 252.703, 128) +auto_calculate_length_and_angle = false +length = 39.0 +bone_angle = 0.0 +metadata/vert_owned = [721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750] +metadata/idx = 33 +metadata/connected_nodes_paths = [NodePath("Bone-28"), NodePath("Bone-29"), NodePath("Bone-32"), NodePath("Bone-30"), NodePath("Bone-34"), NodePath("Bone-35")] +metadata/connected_nodes_idx = [28, 29, 32, 30, 34, 35] +metadata/_local_pose_override_enabled_ = true + +[node name="Bone-34" type="Bone2D" parent="BreakableSoftbody2D/Skeleton2D"] +position = Vector2(239, 167) +rotation = 2.35619 +scale = Vector2(1, 1) +rest = Transform2D(-0.707107, 0.707107, -0.707107, -0.707107, 239, 167) +auto_calculate_length_and_angle = false +length = 39.0 +bone_angle = 0.0 +metadata/vert_owned = [751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766] +metadata/idx = 34 +metadata/connected_nodes_paths = [NodePath("Bone-29"), NodePath("Bone-30"), NodePath("Bone-33"), NodePath("Bone-36"), NodePath("Bone-39"), NodePath("Bone-35"), NodePath("Bone-42")] +metadata/connected_nodes_idx = [29, 30, 33, 36, 39, 35, 42] +metadata/_local_pose_override_enabled_ = true + +[node name="Bone-35" type="Bone2D" parent="BreakableSoftbody2D/Skeleton2D"] +position = Vector2(276.75, 167) +rotation = 2.33991 +scale = Vector2(1, 1) +rest = Transform2D(-0.695498, 0.718528, -0.718528, -0.695498, 276.75, 167) +auto_calculate_length_and_angle = false +length = 39.0 +bone_angle = 0.0 +metadata/vert_owned = [767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785] +metadata/idx = 35 +metadata/connected_nodes_paths = [NodePath("Bone-33"), NodePath("Bone-34"), NodePath("Bone-39"), NodePath("Bone-42")] +metadata/connected_nodes_idx = [33, 34, 39, 42] +metadata/_local_pose_override_enabled_ = true + +[node name="Bone-36" type="Bone2D" parent="BreakableSoftbody2D/Skeleton2D"] +position = Vector2(200, 206) +rotation = 1.5708 +rest = Transform2D(-4.37114e-08, 1, -1, -4.37114e-08, 200, 206) +auto_calculate_length_and_angle = false +length = 39.0 +bone_angle = 0.0 +metadata/vert_owned = [786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801] +metadata/idx = 36 +metadata/connected_nodes_paths = [NodePath("Bone-15"), NodePath("Bone-24"), NodePath("Bone-30"), NodePath("Bone-25"), NodePath("Bone-37"), NodePath("Bone-34"), NodePath("Bone-39"), NodePath("Bone-40")] +metadata/connected_nodes_idx = [15, 24, 30, 25, 37, 34, 39, 40] +metadata/_local_pose_override_enabled_ = true + +[node name="Bone-37" type="Bone2D" parent="BreakableSoftbody2D/Skeleton2D"] +position = Vector2(200, 245) +rotation = 1.5708 +rest = Transform2D(-4.37114e-08, 1, -1, -4.37114e-08, 200, 245) +auto_calculate_length_and_angle = false +length = 39.0 +bone_angle = 0.0 +metadata/vert_owned = [802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817] +metadata/idx = 37 +metadata/connected_nodes_paths = [NodePath("Bone-24"), NodePath("Bone-25"), NodePath("Bone-36"), NodePath("Bone-26"), NodePath("Bone-38"), NodePath("Bone-39"), NodePath("Bone-40"), NodePath("Bone-41")] +metadata/connected_nodes_idx = [24, 25, 36, 26, 38, 39, 40, 41] +metadata/_local_pose_override_enabled_ = true + +[node name="Bone-38" type="Bone2D" parent="BreakableSoftbody2D/Skeleton2D"] +position = Vector2(200, 276.75) +rotation = -1.5708 +rest = Transform2D(-4.37114e-08, -1, 1, -4.37114e-08, 200, 276.75) +auto_calculate_length_and_angle = false +length = 39.0 +bone_angle = 0.0 +metadata/vert_owned = [818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833] +metadata/idx = 38 +metadata/connected_nodes_paths = [NodePath("Bone-25"), NodePath("Bone-26"), NodePath("Bone-37"), NodePath("Bone-40"), NodePath("Bone-41")] +metadata/connected_nodes_idx = [25, 26, 37, 40, 41] +metadata/_local_pose_override_enabled_ = true + +[node name="Bone-39" type="Bone2D" parent="BreakableSoftbody2D/Skeleton2D"] +position = Vector2(239, 206) +rest = Transform2D(1, 0, 0, 1, 239, 206) +auto_calculate_length_and_angle = false +length = 39.0 +bone_angle = 0.0 +metadata/vert_owned = [834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849] +metadata/idx = 39 +metadata/connected_nodes_paths = [NodePath("Bone-30"), NodePath("Bone-34"), NodePath("Bone-36"), NodePath("Bone-35"), NodePath("Bone-42"), NodePath("Bone-37"), NodePath("Bone-40"), NodePath("Bone-43")] +metadata/connected_nodes_idx = [30, 34, 36, 35, 42, 37, 40, 43] +metadata/_local_pose_override_enabled_ = true + +[node name="Bone-40" type="Bone2D" parent="BreakableSoftbody2D/Skeleton2D"] +position = Vector2(239, 245) +rotation = 2.45831 +scale = Vector2(1, 1) +rest = Transform2D(-0.775505, 0.631341, -0.631341, -0.775505, 239, 245) +auto_calculate_length_and_angle = false +length = 39.0 +bone_angle = 0.0 +metadata/vert_owned = [850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865] +metadata/idx = 40 +metadata/connected_nodes_paths = [NodePath("Bone-36"), NodePath("Bone-37"), NodePath("Bone-39"), NodePath("Bone-38"), NodePath("Bone-41"), NodePath("Bone-42"), NodePath("Bone-43")] +metadata/connected_nodes_idx = [36, 37, 39, 38, 41, 42, 43] +metadata/_local_pose_override_enabled_ = true + +[node name="Bone-41" type="Bone2D" parent="BreakableSoftbody2D/Skeleton2D"] +position = Vector2(248.287, 276.75) +rotation = -1.85535 +scale = Vector2(1, 1) +rest = Transform2D(-0.280733, -0.959786, 0.959786, -0.280733, 248.287, 276.75) +auto_calculate_length_and_angle = false +length = 39.0 +bone_angle = 0.0 +metadata/vert_owned = [866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891] +metadata/idx = 41 +metadata/connected_nodes_paths = [NodePath("Bone-37"), NodePath("Bone-38"), NodePath("Bone-40"), NodePath("Bone-43")] +metadata/connected_nodes_idx = [37, 38, 40, 43] +metadata/_local_pose_override_enabled_ = true + +[node name="Bone-42" type="Bone2D" parent="BreakableSoftbody2D/Skeleton2D"] +position = Vector2(276.75, 206) +rotation = 3.14159 +rest = Transform2D(-1, 1.50996e-07, -1.50996e-07, -1, 276.75, 206) +auto_calculate_length_and_angle = false +length = 39.0 +bone_angle = 0.0 +metadata/vert_owned = [892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909] +metadata/idx = 42 +metadata/connected_nodes_paths = [NodePath("Bone-34"), NodePath("Bone-35"), NodePath("Bone-39"), NodePath("Bone-40"), NodePath("Bone-43")] +metadata/connected_nodes_idx = [34, 35, 39, 40, 43] +metadata/_local_pose_override_enabled_ = true + +[node name="Bone-43" type="Bone2D" parent="BreakableSoftbody2D/Skeleton2D"] +position = Vector2(273.75, 245) +rotation = -1.49402 +scale = Vector2(1, 0.99999) +rest = Transform2D(0.0766965, -0.997054, 0.997054, 0.0766965, 273.75, 245) +auto_calculate_length_and_angle = false +length = 39.0 +bone_angle = 0.0 +metadata/vert_owned = [910, 911, 912, 913, 914, 915, 916, 917, 918, 919, 920, 921, 922, 923, 924, 925, 926] +metadata/idx = 43 +metadata/connected_nodes_paths = [NodePath("Bone-39"), NodePath("Bone-40"), NodePath("Bone-42"), NodePath("Bone-41")] +metadata/connected_nodes_idx = [39, 40, 42, 41] +metadata/_local_pose_override_enabled_ = true + +[node name="Bone-0" type="RigidBody2D" parent="BreakableSoftbody2D" instance=ExtResource("4_13lkq")] +position = Vector2(36.9655, 40.25) +input_pickable = true +mass = 0.0456818 +physics_material_override = ExtResource("6_eyp3s") +constant_force = Vector2(2.08165e-12, 2.08165e-12) +script = ExtResource("7_lk74m") +metadata/idx = 0 +metadata/bone_name = &"Bone-0" + +[node name="RectangleShape2D" type="CollisionShape2D" parent="BreakableSoftbody2D/Bone-0"] +shape = SubResource("RectangleShape2D_og4xt") + +[node name="RemoteTransform2D" type="RemoteTransform2D" parent="BreakableSoftbody2D/Bone-0"] +visible = false +remote_path = NodePath("../../Skeleton2D/Bone-0") +update_rotation = false +update_scale = false + +[node name="Joint2D-Bone-0-Bone-1" type="PinJoint2D" parent="BreakableSoftbody2D/Bone-0"] +visible = false +rotation = 0.0556454 +node_a = NodePath("..") +node_b = NodePath("../../Bone-1") +softness = 60.0 + +[node name="Joint2D-Bone-0-Bone-4" type="PinJoint2D" parent="BreakableSoftbody2D/Bone-0"] +visible = false +rotation = -1.5708 +node_a = NodePath("..") +node_b = NodePath("../../Bone-4") +softness = 60.0 + +[node name="Joint2D-Bone-0-Bone-5" type="PinJoint2D" parent="BreakableSoftbody2D/Bone-0"] +visible = false +rotation = -0.756757 +node_a = NodePath("..") +node_b = NodePath("../../Bone-5") +softness = 60.0 + +[node name="Bone-1" type="RigidBody2D" parent="BreakableSoftbody2D" instance=ExtResource("4_13lkq")] +position = Vector2(34.25, 89) +input_pickable = true +mass = 0.0456818 +physics_material_override = ExtResource("6_eyp3s") +constant_force = Vector2(2.08165e-12, 2.08165e-12) +script = ExtResource("7_lk74m") +metadata/idx = 1 +metadata/bone_name = &"Bone-1" + +[node name="RectangleShape2D" type="CollisionShape2D" parent="BreakableSoftbody2D/Bone-1"] +shape = SubResource("RectangleShape2D_og4xt") + +[node name="RemoteTransform2D" type="RemoteTransform2D" parent="BreakableSoftbody2D/Bone-1"] +visible = false +remote_path = NodePath("../../Skeleton2D/Bone-1") +update_rotation = false +update_scale = false + +[node name="Joint2D-Bone-1-Bone-0" type="PinJoint2D" parent="BreakableSoftbody2D/Bone-1"] +visible = false +rotation = -3.08595 +node_a = NodePath("..") +node_b = NodePath("../../Bone-0") +softness = 60.0 + +[node name="Joint2D-Bone-1-Bone-4" type="PinJoint2D" parent="BreakableSoftbody2D/Bone-1"] +visible = false +rotation = -2.35619 +node_a = NodePath("..") +node_b = NodePath("../../Bone-4") +softness = 60.0 + +[node name="Joint2D-Bone-1-Bone-5" type="PinJoint2D" parent="BreakableSoftbody2D/Bone-1"] +visible = false +rotation = -1.5708 +node_a = NodePath("..") +node_b = NodePath("../../Bone-5") +softness = 60.0 + +[node name="Joint2D-Bone-1-Bone-2" type="PinJoint2D" parent="BreakableSoftbody2D/Bone-1"] +visible = false +node_a = NodePath("..") +node_b = NodePath("../../Bone-2") +softness = 60.0 + +[node name="Joint2D-Bone-1-Bone-6" type="PinJoint2D" parent="BreakableSoftbody2D/Bone-1"] +visible = false +rotation = -0.896055 +node_a = NodePath("..") +node_b = NodePath("../../Bone-6") +softness = 60.0 + +[node name="Bone-2" type="RigidBody2D" parent="BreakableSoftbody2D" instance=ExtResource("4_13lkq")] +position = Vector2(34.25, 128.732) +input_pickable = true +mass = 0.0456818 +physics_material_override = ExtResource("6_eyp3s") +constant_force = Vector2(2.08165e-12, 2.08165e-12) +script = ExtResource("7_lk74m") +metadata/idx = 2 +metadata/bone_name = &"Bone-2" + +[node name="RectangleShape2D" type="CollisionShape2D" parent="BreakableSoftbody2D/Bone-2"] +shape = SubResource("RectangleShape2D_og4xt") + +[node name="RemoteTransform2D" type="RemoteTransform2D" parent="BreakableSoftbody2D/Bone-2"] +visible = false +remote_path = NodePath("../../Skeleton2D/Bone-2") +update_rotation = false +update_scale = false + +[node name="Joint2D-Bone-2-Bone-1" type="PinJoint2D" parent="BreakableSoftbody2D/Bone-2"] +visible = false +rotation = -3.14159 +node_a = NodePath("..") +node_b = NodePath("../../Bone-1") +softness = 60.0 + +[node name="Joint2D-Bone-2-Bone-5" type="PinJoint2D" parent="BreakableSoftbody2D/Bone-2"] +visible = false +rotation = -2.25463 +node_a = NodePath("..") +node_b = NodePath("../../Bone-5") +softness = 60.0 + +[node name="Joint2D-Bone-2-Bone-6" type="PinJoint2D" parent="BreakableSoftbody2D/Bone-2"] +visible = false +rotation = -1.58581 +node_a = NodePath("..") +node_b = NodePath("../../Bone-6") +softness = 60.0 + +[node name="Joint2D-Bone-2-Bone-3" type="PinJoint2D" parent="BreakableSoftbody2D/Bone-2"] +visible = false +rotation = -0.249475 +node_a = NodePath("..") +node_b = NodePath("../../Bone-3") +softness = 60.0 + +[node name="Joint2D-Bone-2-Bone-7" type="PinJoint2D" parent="BreakableSoftbody2D/Bone-2"] +visible = false +rotation = -0.90528 +node_a = NodePath("..") +node_b = NodePath("../../Bone-7") +softness = 60.0 + +[node name="Bone-3" type="RigidBody2D" parent="BreakableSoftbody2D" instance=ExtResource("4_13lkq")] +position = Vector2(44, 167) +input_pickable = true +mass = 0.0456818 +physics_material_override = ExtResource("6_eyp3s") +constant_force = Vector2(2.08165e-12, 2.08165e-12) +script = ExtResource("7_lk74m") +metadata/idx = 3 +metadata/bone_name = &"Bone-3" + +[node name="RectangleShape2D" type="CollisionShape2D" parent="BreakableSoftbody2D/Bone-3"] +shape = SubResource("RectangleShape2D_og4xt") + +[node name="RemoteTransform2D" type="RemoteTransform2D" parent="BreakableSoftbody2D/Bone-3"] +visible = false +remote_path = NodePath("../../Skeleton2D/Bone-3") +update_rotation = false +update_scale = false + +[node name="Joint2D-Bone-3-Bone-2" type="PinJoint2D" parent="BreakableSoftbody2D/Bone-3"] +visible = false +rotation = -3.39107 +node_a = NodePath("..") +node_b = NodePath("../../Bone-2") +softness = 60.0 + +[node name="Joint2D-Bone-3-Bone-6" type="PinJoint2D" parent="BreakableSoftbody2D/Bone-3"] +visible = false +rotation = -2.35619 +node_a = NodePath("..") +node_b = NodePath("../../Bone-6") +softness = 60.0 + +[node name="Joint2D-Bone-3-Bone-7" type="PinJoint2D" parent="BreakableSoftbody2D/Bone-3"] +visible = false +rotation = -1.5708 +node_a = NodePath("..") +node_b = NodePath("../../Bone-7") +softness = 60.0 + +[node name="Joint2D-Bone-3-Bone-18" type="PinJoint2D" parent="BreakableSoftbody2D/Bone-3"] +visible = false +rotation = -0.622671 +node_a = NodePath("..") +node_b = NodePath("../../Bone-18") +softness = 60.0 + +[node name="Bone-4" type="RigidBody2D" parent="BreakableSoftbody2D" instance=ExtResource("4_13lkq")] +position = Vector2(83, 40.25) +input_pickable = true +mass = 0.0456818 +physics_material_override = ExtResource("6_eyp3s") +constant_force = Vector2(2.08165e-12, 2.08165e-12) +script = ExtResource("7_lk74m") +metadata/idx = 4 +metadata/bone_name = &"Bone-4" + +[node name="RectangleShape2D" type="CollisionShape2D" parent="BreakableSoftbody2D/Bone-4"] +shape = SubResource("RectangleShape2D_og4xt") + +[node name="RemoteTransform2D" type="RemoteTransform2D" parent="BreakableSoftbody2D/Bone-4"] +visible = false +remote_path = NodePath("../../Skeleton2D/Bone-4") +update_rotation = false +update_scale = false + +[node name="Joint2D-Bone-4-Bone-0" type="PinJoint2D" parent="BreakableSoftbody2D/Bone-4"] +visible = false +rotation = 1.5708 +node_a = NodePath("..") +node_b = NodePath("../../Bone-0") +softness = 60.0 + +[node name="Joint2D-Bone-4-Bone-1" type="PinJoint2D" parent="BreakableSoftbody2D/Bone-4"] +visible = false +rotation = 0.785398 +node_a = NodePath("..") +node_b = NodePath("../../Bone-1") +softness = 60.0 + +[node name="Joint2D-Bone-4-Bone-5" type="PinJoint2D" parent="BreakableSoftbody2D/Bone-4"] +visible = false +node_a = NodePath("..") +node_b = NodePath("../../Bone-5") +softness = 60.0 + +[node name="Joint2D-Bone-4-Bone-8" type="PinJoint2D" parent="BreakableSoftbody2D/Bone-4"] +visible = false +rotation = -1.5708 +node_a = NodePath("..") +node_b = NodePath("../../Bone-8") +softness = 60.0 + +[node name="Joint2D-Bone-4-Bone-9" type="PinJoint2D" parent="BreakableSoftbody2D/Bone-4"] +visible = false +rotation = -0.674741 +node_a = NodePath("..") +node_b = NodePath("../../Bone-9") +softness = 60.0 + +[node name="Bone-5" type="RigidBody2D" parent="BreakableSoftbody2D" instance=ExtResource("4_13lkq")] +position = Vector2(83, 89) +input_pickable = true +mass = 0.0456818 +physics_material_override = ExtResource("6_eyp3s") +constant_force = Vector2(2.08165e-12, 2.08165e-12) +script = ExtResource("7_lk74m") +metadata/idx = 5 +metadata/bone_name = &"Bone-5" + +[node name="RectangleShape2D" type="CollisionShape2D" parent="BreakableSoftbody2D/Bone-5"] +shape = SubResource("RectangleShape2D_og4xt") + +[node name="RemoteTransform2D" type="RemoteTransform2D" parent="BreakableSoftbody2D/Bone-5"] +visible = false +remote_path = NodePath("../../Skeleton2D/Bone-5") +update_rotation = false +update_scale = false + +[node name="Joint2D-Bone-5-Bone-0" type="PinJoint2D" parent="BreakableSoftbody2D/Bone-5"] +visible = false +rotation = -3.89835 +node_a = NodePath("..") +node_b = NodePath("../../Bone-0") +softness = 60.0 + +[node name="Joint2D-Bone-5-Bone-1" type="PinJoint2D" parent="BreakableSoftbody2D/Bone-5"] +visible = false +rotation = 1.5708 +node_a = NodePath("..") +node_b = NodePath("../../Bone-1") +softness = 60.0 + +[node name="Joint2D-Bone-5-Bone-4" type="PinJoint2D" parent="BreakableSoftbody2D/Bone-5"] +visible = false +rotation = -3.14159 +node_a = NodePath("..") +node_b = NodePath("../../Bone-4") +softness = 60.0 + +[node name="Joint2D-Bone-5-Bone-2" type="PinJoint2D" parent="BreakableSoftbody2D/Bone-5"] +visible = false +rotation = 0.886965 +node_a = NodePath("..") +node_b = NodePath("../../Bone-2") +softness = 60.0 + +[node name="Joint2D-Bone-5-Bone-6" type="PinJoint2D" parent="BreakableSoftbody2D/Bone-5"] +visible = false +node_a = NodePath("..") +node_b = NodePath("../../Bone-6") +softness = 60.0 + +[node name="Joint2D-Bone-5-Bone-8" type="PinJoint2D" parent="BreakableSoftbody2D/Bone-5"] +visible = false +rotation = -2.46685 +node_a = NodePath("..") +node_b = NodePath("../../Bone-8") +softness = 60.0 + +[node name="Joint2D-Bone-5-Bone-9" type="PinJoint2D" parent="BreakableSoftbody2D/Bone-5"] +visible = false +rotation = -1.5708 +node_a = NodePath("..") +node_b = NodePath("../../Bone-9") +softness = 60.0 + +[node name="Joint2D-Bone-5-Bone-10" type="PinJoint2D" parent="BreakableSoftbody2D/Bone-5"] +visible = false +rotation = -0.785398 +node_a = NodePath("..") +node_b = NodePath("../../Bone-10") +softness = 60.0 + +[node name="Bone-6" type="RigidBody2D" parent="BreakableSoftbody2D" instance=ExtResource("4_13lkq")] +position = Vector2(83, 128) +input_pickable = true +mass = 0.0456818 +physics_material_override = ExtResource("6_eyp3s") +constant_force = Vector2(2.08165e-12, 2.08165e-12) +script = ExtResource("7_lk74m") +metadata/idx = 6 +metadata/bone_name = &"Bone-6" + +[node name="RectangleShape2D" type="CollisionShape2D" parent="BreakableSoftbody2D/Bone-6"] +shape = SubResource("RectangleShape2D_og4xt") + +[node name="RemoteTransform2D" type="RemoteTransform2D" parent="BreakableSoftbody2D/Bone-6"] +visible = false +remote_path = NodePath("../../Skeleton2D/Bone-6") +update_rotation = false +update_scale = false + +[node name="Joint2D-Bone-6-Bone-1" type="PinJoint2D" parent="BreakableSoftbody2D/Bone-6"] +visible = false +rotation = -4.03765 +node_a = NodePath("..") +node_b = NodePath("../../Bone-1") +softness = 60.0 + +[node name="Joint2D-Bone-6-Bone-2" type="PinJoint2D" parent="BreakableSoftbody2D/Bone-6"] +visible = false +rotation = 1.55578 +node_a = NodePath("..") +node_b = NodePath("../../Bone-2") +softness = 60.0 + +[node name="Joint2D-Bone-6-Bone-5" type="PinJoint2D" parent="BreakableSoftbody2D/Bone-6"] +visible = false +rotation = -3.14159 +node_a = NodePath("..") +node_b = NodePath("../../Bone-5") +softness = 60.0 + +[node name="Joint2D-Bone-6-Bone-3" type="PinJoint2D" parent="BreakableSoftbody2D/Bone-6"] +visible = false +rotation = 0.785398 +node_a = NodePath("..") +node_b = NodePath("../../Bone-3") +softness = 60.0 + +[node name="Joint2D-Bone-6-Bone-7" type="PinJoint2D" parent="BreakableSoftbody2D/Bone-6"] +visible = false +node_a = NodePath("..") +node_b = NodePath("../../Bone-7") +softness = 60.0 + +[node name="Joint2D-Bone-6-Bone-9" type="PinJoint2D" parent="BreakableSoftbody2D/Bone-6"] +visible = false +rotation = -2.35619 +node_a = NodePath("..") +node_b = NodePath("../../Bone-9") +softness = 60.0 + +[node name="Joint2D-Bone-6-Bone-10" type="PinJoint2D" parent="BreakableSoftbody2D/Bone-6"] +visible = false +rotation = -1.5708 +node_a = NodePath("..") +node_b = NodePath("../../Bone-10") +softness = 60.0 + +[node name="Joint2D-Bone-6-Bone-11" type="PinJoint2D" parent="BreakableSoftbody2D/Bone-6"] +visible = false +rotation = -0.785398 +node_a = NodePath("..") +node_b = NodePath("../../Bone-11") +softness = 60.0 + +[node name="Bone-7" type="RigidBody2D" parent="BreakableSoftbody2D" instance=ExtResource("4_13lkq")] +position = Vector2(83, 167) +input_pickable = true +mass = 0.0456818 +physics_material_override = ExtResource("6_eyp3s") +constant_force = Vector2(2.08165e-12, 2.08165e-12) +script = ExtResource("7_lk74m") +metadata/idx = 7 +metadata/bone_name = &"Bone-7" + +[node name="RectangleShape2D" type="CollisionShape2D" parent="BreakableSoftbody2D/Bone-7"] +shape = SubResource("RectangleShape2D_og4xt") + +[node name="RemoteTransform2D" type="RemoteTransform2D" parent="BreakableSoftbody2D/Bone-7"] +visible = false +remote_path = NodePath("../../Skeleton2D/Bone-7") +update_rotation = false +update_scale = false + +[node name="Joint2D-Bone-7-Bone-2" type="PinJoint2D" parent="BreakableSoftbody2D/Bone-7"] +visible = false +rotation = -4.04687 +node_a = NodePath("..") +node_b = NodePath("../../Bone-2") +softness = 60.0 + +[node name="Joint2D-Bone-7-Bone-3" type="PinJoint2D" parent="BreakableSoftbody2D/Bone-7"] +visible = false +rotation = 1.5708 +node_a = NodePath("..") +node_b = NodePath("../../Bone-3") +softness = 60.0 + +[node name="Joint2D-Bone-7-Bone-6" type="PinJoint2D" parent="BreakableSoftbody2D/Bone-7"] +visible = false +rotation = -3.14159 +node_a = NodePath("..") +node_b = NodePath("../../Bone-6") +softness = 60.0 + +[node name="Joint2D-Bone-7-Bone-18" type="PinJoint2D" parent="BreakableSoftbody2D/Bone-7"] +visible = false +rotation = 0.27491 +node_a = NodePath("..") +node_b = NodePath("../../Bone-18") +softness = 60.0 + +[node name="Joint2D-Bone-7-Bone-10" type="PinJoint2D" parent="BreakableSoftbody2D/Bone-7"] +visible = false +rotation = -2.35619 +node_a = NodePath("..") +node_b = NodePath("../../Bone-10") +softness = 60.0 + +[node name="Joint2D-Bone-7-Bone-11" type="PinJoint2D" parent="BreakableSoftbody2D/Bone-7"] +visible = false +rotation = -1.5708 +node_a = NodePath("..") +node_b = NodePath("../../Bone-11") +softness = 60.0 + +[node name="Joint2D-Bone-7-Bone-21" type="PinJoint2D" parent="BreakableSoftbody2D/Bone-7"] +visible = false +rotation = -0.785398 +node_a = NodePath("..") +node_b = NodePath("../../Bone-21") +softness = 60.0 + +[node name="Bone-8" type="RigidBody2D" parent="BreakableSoftbody2D" instance=ExtResource("4_13lkq")] +position = Vector2(122, 40.25) +input_pickable = true +mass = 0.0456818 +physics_material_override = ExtResource("6_eyp3s") +constant_force = Vector2(2.08165e-12, 2.08165e-12) +script = ExtResource("7_lk74m") +metadata/idx = 8 +metadata/bone_name = &"Bone-8" + +[node name="RectangleShape2D" type="CollisionShape2D" parent="BreakableSoftbody2D/Bone-8"] +shape = SubResource("RectangleShape2D_og4xt") + +[node name="RemoteTransform2D" type="RemoteTransform2D" parent="BreakableSoftbody2D/Bone-8"] +visible = false +remote_path = NodePath("../../Skeleton2D/Bone-8") +update_rotation = false +update_scale = false + +[node name="Joint2D-Bone-8-Bone-4" type="PinJoint2D" parent="BreakableSoftbody2D/Bone-8"] +visible = false +rotation = 1.5708 +node_a = NodePath("..") +node_b = NodePath("../../Bone-4") +softness = 60.0 + +[node name="Joint2D-Bone-8-Bone-5" type="PinJoint2D" parent="BreakableSoftbody2D/Bone-8"] +visible = false +rotation = 0.674741 +node_a = NodePath("..") +node_b = NodePath("../../Bone-5") +softness = 60.0 + +[node name="Joint2D-Bone-8-Bone-9" type="PinJoint2D" parent="BreakableSoftbody2D/Bone-8"] +visible = false +node_a = NodePath("..") +node_b = NodePath("../../Bone-9") +softness = 60.0 + +[node name="Joint2D-Bone-8-Bone-12" type="PinJoint2D" parent="BreakableSoftbody2D/Bone-8"] +visible = false +rotation = -1.5708 +node_a = NodePath("..") +node_b = NodePath("../../Bone-12") +softness = 60.0 + +[node name="Joint2D-Bone-8-Bone-13" type="PinJoint2D" parent="BreakableSoftbody2D/Bone-8"] +visible = false +rotation = -0.674741 +node_a = NodePath("..") +node_b = NodePath("../../Bone-13") +softness = 60.0 + +[node name="Bone-9" type="RigidBody2D" parent="BreakableSoftbody2D" instance=ExtResource("4_13lkq")] +position = Vector2(122, 89) +input_pickable = true +mass = 0.0456818 +physics_material_override = ExtResource("6_eyp3s") +constant_force = Vector2(2.08165e-12, 2.08165e-12) +script = ExtResource("7_lk74m") +metadata/idx = 9 +metadata/bone_name = &"Bone-9" + +[node name="RectangleShape2D" type="CollisionShape2D" parent="BreakableSoftbody2D/Bone-9"] +shape = SubResource("RectangleShape2D_og4xt") + +[node name="RemoteTransform2D" type="RemoteTransform2D" parent="BreakableSoftbody2D/Bone-9"] +visible = false +remote_path = NodePath("../../Skeleton2D/Bone-9") +update_rotation = false +update_scale = false + +[node name="Joint2D-Bone-9-Bone-4" type="PinJoint2D" parent="BreakableSoftbody2D/Bone-9"] +visible = false +rotation = -3.81633 +node_a = NodePath("..") +node_b = NodePath("../../Bone-4") +softness = 60.0 + +[node name="Joint2D-Bone-9-Bone-5" type="PinJoint2D" parent="BreakableSoftbody2D/Bone-9"] +visible = false +rotation = 1.5708 +node_a = NodePath("..") +node_b = NodePath("../../Bone-5") +softness = 60.0 + +[node name="Joint2D-Bone-9-Bone-8" type="PinJoint2D" parent="BreakableSoftbody2D/Bone-9"] +visible = false +rotation = -3.14159 +node_a = NodePath("..") +node_b = NodePath("../../Bone-8") +softness = 60.0 + +[node name="Joint2D-Bone-9-Bone-6" type="PinJoint2D" parent="BreakableSoftbody2D/Bone-9"] +visible = false +rotation = 0.785398 +node_a = NodePath("..") +node_b = NodePath("../../Bone-6") +softness = 60.0 + +[node name="Joint2D-Bone-9-Bone-10" type="PinJoint2D" parent="BreakableSoftbody2D/Bone-9"] +visible = false +node_a = NodePath("..") +node_b = NodePath("../../Bone-10") +softness = 60.0 + +[node name="Joint2D-Bone-9-Bone-12" type="PinJoint2D" parent="BreakableSoftbody2D/Bone-9"] +visible = false +rotation = -2.46685 +node_a = NodePath("..") +node_b = NodePath("../../Bone-12") +softness = 60.0 + +[node name="Joint2D-Bone-9-Bone-13" type="PinJoint2D" parent="BreakableSoftbody2D/Bone-9"] +visible = false +rotation = -1.5708 +node_a = NodePath("..") +node_b = NodePath("../../Bone-13") +softness = 60.0 + +[node name="Joint2D-Bone-9-Bone-14" type="PinJoint2D" parent="BreakableSoftbody2D/Bone-9"] +visible = false +rotation = -0.785398 +node_a = NodePath("..") +node_b = NodePath("../../Bone-14") +softness = 60.0 + +[node name="Bone-10" type="RigidBody2D" parent="BreakableSoftbody2D" instance=ExtResource("4_13lkq")] +position = Vector2(122, 128) +input_pickable = true +mass = 0.0456818 +physics_material_override = ExtResource("6_eyp3s") +constant_force = Vector2(2.08165e-12, 2.08165e-12) +script = ExtResource("7_lk74m") +metadata/idx = 10 +metadata/bone_name = &"Bone-10" + +[node name="RectangleShape2D" type="CollisionShape2D" parent="BreakableSoftbody2D/Bone-10"] +shape = SubResource("RectangleShape2D_og4xt") + +[node name="RemoteTransform2D" type="RemoteTransform2D" parent="BreakableSoftbody2D/Bone-10"] +visible = false +remote_path = NodePath("../../Skeleton2D/Bone-10") +update_rotation = false +update_scale = false + +[node name="Joint2D-Bone-10-Bone-5" type="PinJoint2D" parent="BreakableSoftbody2D/Bone-10"] +visible = false +rotation = -3.92699 +node_a = NodePath("..") +node_b = NodePath("../../Bone-5") +softness = 60.0 + +[node name="Joint2D-Bone-10-Bone-6" type="PinJoint2D" parent="BreakableSoftbody2D/Bone-10"] +visible = false +rotation = 1.5708 +node_a = NodePath("..") +node_b = NodePath("../../Bone-6") +softness = 60.0 + +[node name="Joint2D-Bone-10-Bone-9" type="PinJoint2D" parent="BreakableSoftbody2D/Bone-10"] +visible = false +rotation = -3.14159 +node_a = NodePath("..") +node_b = NodePath("../../Bone-9") +softness = 60.0 + +[node name="Joint2D-Bone-10-Bone-7" type="PinJoint2D" parent="BreakableSoftbody2D/Bone-10"] +visible = false +rotation = 0.785398 +node_a = NodePath("..") +node_b = NodePath("../../Bone-7") +softness = 60.0 + +[node name="Joint2D-Bone-10-Bone-11" type="PinJoint2D" parent="BreakableSoftbody2D/Bone-10"] +visible = false +node_a = NodePath("..") +node_b = NodePath("../../Bone-11") +softness = 60.0 + +[node name="Joint2D-Bone-10-Bone-13" type="PinJoint2D" parent="BreakableSoftbody2D/Bone-10"] +visible = false +rotation = -2.35619 +node_a = NodePath("..") +node_b = NodePath("../../Bone-13") +softness = 60.0 + +[node name="Joint2D-Bone-10-Bone-14" type="PinJoint2D" parent="BreakableSoftbody2D/Bone-10"] +visible = false +rotation = -1.5708 +node_a = NodePath("..") +node_b = NodePath("../../Bone-14") +softness = 60.0 + +[node name="Joint2D-Bone-10-Bone-15" type="PinJoint2D" parent="BreakableSoftbody2D/Bone-10"] +visible = false +rotation = -0.785398 +node_a = NodePath("..") +node_b = NodePath("../../Bone-15") +softness = 60.0 + +[node name="Bone-11" type="RigidBody2D" parent="BreakableSoftbody2D" instance=ExtResource("4_13lkq")] +position = Vector2(122, 167) +input_pickable = true +mass = 0.0456818 +physics_material_override = ExtResource("6_eyp3s") +constant_force = Vector2(2.08165e-12, 2.08165e-12) +script = ExtResource("7_lk74m") +metadata/idx = 11 +metadata/bone_name = &"Bone-11" + +[node name="RectangleShape2D" type="CollisionShape2D" parent="BreakableSoftbody2D/Bone-11"] +shape = SubResource("RectangleShape2D_og4xt") + +[node name="RemoteTransform2D" type="RemoteTransform2D" parent="BreakableSoftbody2D/Bone-11"] +visible = false +remote_path = NodePath("../../Skeleton2D/Bone-11") +update_rotation = false +update_scale = false + +[node name="Joint2D-Bone-11-Bone-6" type="PinJoint2D" parent="BreakableSoftbody2D/Bone-11"] +visible = false +rotation = -3.92699 +node_a = NodePath("..") +node_b = NodePath("../../Bone-6") +softness = 60.0 + +[node name="Joint2D-Bone-11-Bone-7" type="PinJoint2D" parent="BreakableSoftbody2D/Bone-11"] +visible = false +rotation = 1.5708 +node_a = NodePath("..") +node_b = NodePath("../../Bone-7") +softness = 60.0 + +[node name="Joint2D-Bone-11-Bone-10" type="PinJoint2D" parent="BreakableSoftbody2D/Bone-11"] +visible = false +rotation = -3.14159 +node_a = NodePath("..") +node_b = NodePath("../../Bone-10") +softness = 60.0 + +[node name="Joint2D-Bone-11-Bone-18" type="PinJoint2D" parent="BreakableSoftbody2D/Bone-11"] +visible = false +rotation = 0.90837 +node_a = NodePath("..") +node_b = NodePath("../../Bone-18") +softness = 60.0 + +[node name="Joint2D-Bone-11-Bone-21" type="PinJoint2D" parent="BreakableSoftbody2D/Bone-11"] +visible = false +node_a = NodePath("..") +node_b = NodePath("../../Bone-21") +softness = 60.0 + +[node name="Joint2D-Bone-11-Bone-14" type="PinJoint2D" parent="BreakableSoftbody2D/Bone-11"] +visible = false +rotation = -2.35619 +node_a = NodePath("..") +node_b = NodePath("../../Bone-14") +softness = 60.0 + +[node name="Joint2D-Bone-11-Bone-15" type="PinJoint2D" parent="BreakableSoftbody2D/Bone-11"] +visible = false +rotation = -1.5708 +node_a = NodePath("..") +node_b = NodePath("../../Bone-15") +softness = 60.0 + +[node name="Joint2D-Bone-11-Bone-24" type="PinJoint2D" parent="BreakableSoftbody2D/Bone-11"] +visible = false +rotation = -0.785398 +node_a = NodePath("..") +node_b = NodePath("../../Bone-24") +softness = 60.0 + +[node name="Bone-12" type="RigidBody2D" parent="BreakableSoftbody2D" instance=ExtResource("4_13lkq")] +position = Vector2(161, 40.25) +input_pickable = true +mass = 0.0456818 +physics_material_override = ExtResource("6_eyp3s") +constant_force = Vector2(2.08165e-12, 2.08165e-12) +script = ExtResource("7_lk74m") +metadata/idx = 12 +metadata/bone_name = &"Bone-12" + +[node name="RectangleShape2D" type="CollisionShape2D" parent="BreakableSoftbody2D/Bone-12"] +shape = SubResource("RectangleShape2D_og4xt") + +[node name="RemoteTransform2D" type="RemoteTransform2D" parent="BreakableSoftbody2D/Bone-12"] +visible = false +remote_path = NodePath("../../Skeleton2D/Bone-12") +update_rotation = false +update_scale = false + +[node name="Joint2D-Bone-12-Bone-8" type="PinJoint2D" parent="BreakableSoftbody2D/Bone-12"] +visible = false +rotation = 1.5708 +node_a = NodePath("..") +node_b = NodePath("../../Bone-8") +softness = 60.0 + +[node name="Joint2D-Bone-12-Bone-9" type="PinJoint2D" parent="BreakableSoftbody2D/Bone-12"] +visible = false +rotation = 0.674741 +node_a = NodePath("..") +node_b = NodePath("../../Bone-9") +softness = 60.0 + +[node name="Joint2D-Bone-12-Bone-13" type="PinJoint2D" parent="BreakableSoftbody2D/Bone-12"] +visible = false +node_a = NodePath("..") +node_b = NodePath("../../Bone-13") +softness = 60.0 + +[node name="Joint2D-Bone-12-Bone-27" type="PinJoint2D" parent="BreakableSoftbody2D/Bone-12"] +visible = false +rotation = -1.5708 +node_a = NodePath("..") +node_b = NodePath("../../Bone-27") +softness = 60.0 + +[node name="Joint2D-Bone-12-Bone-28" type="PinJoint2D" parent="BreakableSoftbody2D/Bone-12"] +visible = false +rotation = -0.674741 +node_a = NodePath("..") +node_b = NodePath("../../Bone-28") +softness = 60.0 + +[node name="Bone-13" type="RigidBody2D" parent="BreakableSoftbody2D" instance=ExtResource("4_13lkq")] +position = Vector2(161, 89) +input_pickable = true +mass = 0.0456818 +physics_material_override = ExtResource("6_eyp3s") +constant_force = Vector2(2.08165e-12, 2.08165e-12) +script = ExtResource("7_lk74m") +metadata/idx = 13 +metadata/bone_name = &"Bone-13" + +[node name="RectangleShape2D" type="CollisionShape2D" parent="BreakableSoftbody2D/Bone-13"] +shape = SubResource("RectangleShape2D_og4xt") + +[node name="RemoteTransform2D" type="RemoteTransform2D" parent="BreakableSoftbody2D/Bone-13"] +visible = false +remote_path = NodePath("../../Skeleton2D/Bone-13") +update_rotation = false +update_scale = false + +[node name="Joint2D-Bone-13-Bone-8" type="PinJoint2D" parent="BreakableSoftbody2D/Bone-13"] +visible = false +rotation = -3.81633 +node_a = NodePath("..") +node_b = NodePath("../../Bone-8") +softness = 60.0 + +[node name="Joint2D-Bone-13-Bone-9" type="PinJoint2D" parent="BreakableSoftbody2D/Bone-13"] +visible = false +rotation = 1.5708 +node_a = NodePath("..") +node_b = NodePath("../../Bone-9") +softness = 60.0 + +[node name="Joint2D-Bone-13-Bone-12" type="PinJoint2D" parent="BreakableSoftbody2D/Bone-13"] +visible = false +rotation = -3.14159 +node_a = NodePath("..") +node_b = NodePath("../../Bone-12") +softness = 60.0 + +[node name="Joint2D-Bone-13-Bone-10" type="PinJoint2D" parent="BreakableSoftbody2D/Bone-13"] +visible = false +rotation = 0.785398 +node_a = NodePath("..") +node_b = NodePath("../../Bone-10") +softness = 60.0 + +[node name="Joint2D-Bone-13-Bone-14" type="PinJoint2D" parent="BreakableSoftbody2D/Bone-13"] +visible = false +node_a = NodePath("..") +node_b = NodePath("../../Bone-14") +softness = 60.0 + +[node name="Joint2D-Bone-13-Bone-27" type="PinJoint2D" parent="BreakableSoftbody2D/Bone-13"] +visible = false +rotation = -2.46685 +node_a = NodePath("..") +node_b = NodePath("../../Bone-27") +softness = 60.0 + +[node name="Joint2D-Bone-13-Bone-28" type="PinJoint2D" parent="BreakableSoftbody2D/Bone-13"] +visible = false +rotation = -1.5708 +node_a = NodePath("..") +node_b = NodePath("../../Bone-28") +softness = 60.0 + +[node name="Joint2D-Bone-13-Bone-29" type="PinJoint2D" parent="BreakableSoftbody2D/Bone-13"] +visible = false +rotation = -0.785398 +node_a = NodePath("..") +node_b = NodePath("../../Bone-29") +softness = 60.0 + +[node name="Bone-14" type="RigidBody2D" parent="BreakableSoftbody2D" instance=ExtResource("4_13lkq")] +position = Vector2(161, 128) +input_pickable = true +mass = 0.0456818 +physics_material_override = ExtResource("6_eyp3s") +constant_force = Vector2(2.08165e-12, 2.08165e-12) +script = ExtResource("7_lk74m") +metadata/idx = 14 +metadata/bone_name = &"Bone-14" + +[node name="RectangleShape2D" type="CollisionShape2D" parent="BreakableSoftbody2D/Bone-14"] +shape = SubResource("RectangleShape2D_og4xt") + +[node name="RemoteTransform2D" type="RemoteTransform2D" parent="BreakableSoftbody2D/Bone-14"] +visible = false +remote_path = NodePath("../../Skeleton2D/Bone-14") +update_rotation = false +update_scale = false + +[node name="Joint2D-Bone-14-Bone-9" type="PinJoint2D" parent="BreakableSoftbody2D/Bone-14"] +visible = false +rotation = -3.92699 +node_a = NodePath("..") +node_b = NodePath("../../Bone-9") +softness = 60.0 + +[node name="Joint2D-Bone-14-Bone-10" type="PinJoint2D" parent="BreakableSoftbody2D/Bone-14"] +visible = false +rotation = 1.5708 +node_a = NodePath("..") +node_b = NodePath("../../Bone-10") +softness = 60.0 + +[node name="Joint2D-Bone-14-Bone-13" type="PinJoint2D" parent="BreakableSoftbody2D/Bone-14"] +visible = false +rotation = -3.14159 +node_a = NodePath("..") +node_b = NodePath("../../Bone-13") +softness = 60.0 + +[node name="Joint2D-Bone-14-Bone-11" type="PinJoint2D" parent="BreakableSoftbody2D/Bone-14"] +visible = false +rotation = 0.785398 +node_a = NodePath("..") +node_b = NodePath("../../Bone-11") +softness = 60.0 + +[node name="Joint2D-Bone-14-Bone-15" type="PinJoint2D" parent="BreakableSoftbody2D/Bone-14"] +visible = false +node_a = NodePath("..") +node_b = NodePath("../../Bone-15") +softness = 60.0 + +[node name="Joint2D-Bone-14-Bone-28" type="PinJoint2D" parent="BreakableSoftbody2D/Bone-14"] +visible = false +rotation = -2.35619 +node_a = NodePath("..") +node_b = NodePath("../../Bone-28") +softness = 60.0 + +[node name="Joint2D-Bone-14-Bone-29" type="PinJoint2D" parent="BreakableSoftbody2D/Bone-14"] +visible = false +rotation = -1.5708 +node_a = NodePath("..") +node_b = NodePath("../../Bone-29") +softness = 60.0 + +[node name="Joint2D-Bone-14-Bone-30" type="PinJoint2D" parent="BreakableSoftbody2D/Bone-14"] +visible = false +rotation = -0.785398 +node_a = NodePath("..") +node_b = NodePath("../../Bone-30") +softness = 60.0 + +[node name="Bone-15" type="RigidBody2D" parent="BreakableSoftbody2D" instance=ExtResource("4_13lkq")] +position = Vector2(161, 167) +input_pickable = true +mass = 0.0456818 +physics_material_override = ExtResource("6_eyp3s") +constant_force = Vector2(2.08165e-12, 2.08165e-12) +script = ExtResource("7_lk74m") +metadata/idx = 15 +metadata/bone_name = &"Bone-15" + +[node name="RectangleShape2D" type="CollisionShape2D" parent="BreakableSoftbody2D/Bone-15"] +shape = SubResource("RectangleShape2D_og4xt") + +[node name="RemoteTransform2D" type="RemoteTransform2D" parent="BreakableSoftbody2D/Bone-15"] +visible = false +remote_path = NodePath("../../Skeleton2D/Bone-15") +update_rotation = false +update_scale = false + +[node name="Joint2D-Bone-15-Bone-10" type="PinJoint2D" parent="BreakableSoftbody2D/Bone-15"] +visible = false +rotation = -3.92699 +node_a = NodePath("..") +node_b = NodePath("../../Bone-10") +softness = 60.0 + +[node name="Joint2D-Bone-15-Bone-11" type="PinJoint2D" parent="BreakableSoftbody2D/Bone-15"] +visible = false +rotation = 1.5708 +node_a = NodePath("..") +node_b = NodePath("../../Bone-11") +softness = 60.0 + +[node name="Joint2D-Bone-15-Bone-14" type="PinJoint2D" parent="BreakableSoftbody2D/Bone-15"] +visible = false +rotation = -3.14159 +node_a = NodePath("..") +node_b = NodePath("../../Bone-14") +softness = 60.0 + +[node name="Joint2D-Bone-15-Bone-21" type="PinJoint2D" parent="BreakableSoftbody2D/Bone-15"] +visible = false +rotation = 0.785398 +node_a = NodePath("..") +node_b = NodePath("../../Bone-21") +softness = 60.0 + +[node name="Joint2D-Bone-15-Bone-24" type="PinJoint2D" parent="BreakableSoftbody2D/Bone-15"] +visible = false +node_a = NodePath("..") +node_b = NodePath("../../Bone-24") +softness = 60.0 + +[node name="Joint2D-Bone-15-Bone-29" type="PinJoint2D" parent="BreakableSoftbody2D/Bone-15"] +visible = false +rotation = -2.35619 +node_a = NodePath("..") +node_b = NodePath("../../Bone-29") +softness = 60.0 + +[node name="Joint2D-Bone-15-Bone-30" type="PinJoint2D" parent="BreakableSoftbody2D/Bone-15"] +visible = false +rotation = -1.5708 +node_a = NodePath("..") +node_b = NodePath("../../Bone-30") +softness = 60.0 + +[node name="Joint2D-Bone-15-Bone-36" type="PinJoint2D" parent="BreakableSoftbody2D/Bone-15"] +visible = false +rotation = -0.785398 +node_a = NodePath("..") +node_b = NodePath("../../Bone-36") +softness = 60.0 + +[node name="Bone-16" type="RigidBody2D" parent="BreakableSoftbody2D" instance=ExtResource("4_13lkq")] +position = Vector2(44, 245) +input_pickable = true +mass = 0.0456818 +physics_material_override = ExtResource("6_eyp3s") +constant_force = Vector2(2.08165e-12, 2.08165e-12) +script = ExtResource("7_lk74m") +metadata/idx = 16 +metadata/bone_name = &"Bone-16" + +[node name="RectangleShape2D" type="CollisionShape2D" parent="BreakableSoftbody2D/Bone-16"] +shape = SubResource("RectangleShape2D_og4xt") + +[node name="RemoteTransform2D" type="RemoteTransform2D" parent="BreakableSoftbody2D/Bone-16"] +visible = false +remote_path = NodePath("../../Skeleton2D/Bone-16") +update_rotation = false +update_scale = false + +[node name="Joint2D-Bone-16-Bone-18" type="PinJoint2D" parent="BreakableSoftbody2D/Bone-16"] +visible = false +rotation = -2.51892 +node_a = NodePath("..") +node_b = NodePath("../../Bone-18") +softness = 60.0 + +[node name="Joint2D-Bone-16-Bone-17" type="PinJoint2D" parent="BreakableSoftbody2D/Bone-16"] +visible = false +rotation = 0.193204 +node_a = NodePath("..") +node_b = NodePath("../../Bone-17") +softness = 60.0 + +[node name="Joint2D-Bone-16-Bone-19" type="PinJoint2D" parent="BreakableSoftbody2D/Bone-16"] +visible = false +rotation = -1.5708 +node_a = NodePath("..") +node_b = NodePath("../../Bone-19") +softness = 60.0 + +[node name="Joint2D-Bone-16-Bone-20" type="PinJoint2D" parent="BreakableSoftbody2D/Bone-16"] +visible = false +rotation = -0.887515 +node_a = NodePath("..") +node_b = NodePath("../../Bone-20") +softness = 60.0 + +[node name="Bone-17" type="RigidBody2D" parent="BreakableSoftbody2D" instance=ExtResource("4_13lkq")] +position = Vector2(38.25, 274.39) +input_pickable = true +mass = 0.0456818 +physics_material_override = ExtResource("6_eyp3s") +constant_force = Vector2(2.08165e-12, 2.08165e-12) +script = ExtResource("7_lk74m") +metadata/idx = 17 +metadata/bone_name = &"Bone-17" + +[node name="RectangleShape2D" type="CollisionShape2D" parent="BreakableSoftbody2D/Bone-17"] +shape = SubResource("RectangleShape2D_og4xt") + +[node name="RemoteTransform2D" type="RemoteTransform2D" parent="BreakableSoftbody2D/Bone-17"] +visible = false +remote_path = NodePath("../../Skeleton2D/Bone-17") +update_rotation = false +update_scale = false + +[node name="Joint2D-Bone-17-Bone-16" type="PinJoint2D" parent="BreakableSoftbody2D/Bone-17"] +visible = false +rotation = -2.94839 +node_a = NodePath("..") +node_b = NodePath("../../Bone-16") +softness = 60.0 + +[node name="Joint2D-Bone-17-Bone-19" type="PinJoint2D" parent="BreakableSoftbody2D/Bone-17"] +visible = false +rotation = -2.15191 +node_a = NodePath("..") +node_b = NodePath("../../Bone-19") +softness = 60.0 + +[node name="Joint2D-Bone-17-Bone-20" type="PinJoint2D" parent="BreakableSoftbody2D/Bone-17"] +visible = false +rotation = -1.51811 +node_a = NodePath("..") +node_b = NodePath("../../Bone-20") +softness = 60.0 + +[node name="Bone-18" type="RigidBody2D" parent="BreakableSoftbody2D" instance=ExtResource("4_13lkq")] +position = Vector2(72, 206) +input_pickable = true +mass = 0.0456818 +physics_material_override = ExtResource("6_eyp3s") +constant_force = Vector2(2.08165e-12, 2.08165e-12) +script = ExtResource("7_lk74m") +metadata/idx = 18 +metadata/bone_name = &"Bone-18" + +[node name="RectangleShape2D" type="CollisionShape2D" parent="BreakableSoftbody2D/Bone-18"] +shape = SubResource("RectangleShape2D_og4xt") + +[node name="RemoteTransform2D" type="RemoteTransform2D" parent="BreakableSoftbody2D/Bone-18"] +visible = false +remote_path = NodePath("../../Skeleton2D/Bone-18") +update_rotation = false +update_scale = false + +[node name="Joint2D-Bone-18-Bone-3" type="PinJoint2D" parent="BreakableSoftbody2D/Bone-18"] +visible = false +rotation = -3.76426 +node_a = NodePath("..") +node_b = NodePath("../../Bone-3") +softness = 60.0 + +[node name="Joint2D-Bone-18-Bone-7" type="PinJoint2D" parent="BreakableSoftbody2D/Bone-18"] +visible = false +rotation = -2.86668 +node_a = NodePath("..") +node_b = NodePath("../../Bone-7") +softness = 60.0 + +[node name="Joint2D-Bone-18-Bone-11" type="PinJoint2D" parent="BreakableSoftbody2D/Bone-18"] +visible = false +rotation = -2.23322 +node_a = NodePath("..") +node_b = NodePath("../../Bone-11") +softness = 60.0 + +[node name="Joint2D-Bone-18-Bone-21" type="PinJoint2D" parent="BreakableSoftbody2D/Bone-18"] +visible = false +rotation = -1.5708 +node_a = NodePath("..") +node_b = NodePath("../../Bone-21") +softness = 60.0 + +[node name="Joint2D-Bone-18-Bone-16" type="PinJoint2D" parent="BreakableSoftbody2D/Bone-18"] +visible = false +rotation = 0.622671 +node_a = NodePath("..") +node_b = NodePath("../../Bone-16") +softness = 60.0 + +[node name="Joint2D-Bone-18-Bone-19" type="PinJoint2D" parent="BreakableSoftbody2D/Bone-18"] +visible = false +rotation = -0.27491 +node_a = NodePath("..") +node_b = NodePath("../../Bone-19") +softness = 60.0 + +[node name="Joint2D-Bone-18-Bone-22" type="PinJoint2D" parent="BreakableSoftbody2D/Bone-18"] +visible = false +rotation = -0.90837 +node_a = NodePath("..") +node_b = NodePath("../../Bone-22") +softness = 60.0 + +[node name="Bone-19" type="RigidBody2D" parent="BreakableSoftbody2D" instance=ExtResource("4_13lkq")] +position = Vector2(83, 245) +input_pickable = true +mass = 0.0456818 +physics_material_override = ExtResource("6_eyp3s") +constant_force = Vector2(2.08165e-12, 2.08165e-12) +script = ExtResource("7_lk74m") +metadata/idx = 19 +metadata/bone_name = &"Bone-19" + +[node name="RectangleShape2D" type="CollisionShape2D" parent="BreakableSoftbody2D/Bone-19"] +shape = SubResource("RectangleShape2D_og4xt") + +[node name="RemoteTransform2D" type="RemoteTransform2D" parent="BreakableSoftbody2D/Bone-19"] +visible = false +remote_path = NodePath("../../Skeleton2D/Bone-19") +update_rotation = false +update_scale = false + +[node name="Joint2D-Bone-19-Bone-16" type="PinJoint2D" parent="BreakableSoftbody2D/Bone-19"] +visible = false +rotation = 1.5708 +node_a = NodePath("..") +node_b = NodePath("../../Bone-16") +softness = 60.0 + +[node name="Joint2D-Bone-19-Bone-17" type="PinJoint2D" parent="BreakableSoftbody2D/Bone-19"] +visible = false +rotation = 0.989684 +node_a = NodePath("..") +node_b = NodePath("../../Bone-17") +softness = 60.0 + +[node name="Joint2D-Bone-19-Bone-20" type="PinJoint2D" parent="BreakableSoftbody2D/Bone-19"] +visible = false +node_a = NodePath("..") +node_b = NodePath("../../Bone-20") +softness = 60.0 + +[node name="Joint2D-Bone-19-Bone-18" type="PinJoint2D" parent="BreakableSoftbody2D/Bone-19"] +visible = false +rotation = -3.4165 +node_a = NodePath("..") +node_b = NodePath("../../Bone-18") +softness = 60.0 + +[node name="Joint2D-Bone-19-Bone-21" type="PinJoint2D" parent="BreakableSoftbody2D/Bone-19"] +visible = false +rotation = -2.35619 +node_a = NodePath("..") +node_b = NodePath("../../Bone-21") +softness = 60.0 + +[node name="Joint2D-Bone-19-Bone-22" type="PinJoint2D" parent="BreakableSoftbody2D/Bone-19"] +visible = false +rotation = -1.5708 +node_a = NodePath("..") +node_b = NodePath("../../Bone-22") +softness = 60.0 + +[node name="Joint2D-Bone-19-Bone-23" type="PinJoint2D" parent="BreakableSoftbody2D/Bone-19"] +visible = false +rotation = -0.887515 +node_a = NodePath("..") +node_b = NodePath("../../Bone-23") +softness = 60.0 + +[node name="Bone-20" type="RigidBody2D" parent="BreakableSoftbody2D" instance=ExtResource("4_13lkq")] +position = Vector2(83, 276.75) +input_pickable = true +mass = 0.0456818 +physics_material_override = ExtResource("6_eyp3s") +constant_force = Vector2(2.08165e-12, 2.08165e-12) +script = ExtResource("7_lk74m") +metadata/idx = 20 +metadata/bone_name = &"Bone-20" + +[node name="RectangleShape2D" type="CollisionShape2D" parent="BreakableSoftbody2D/Bone-20"] +shape = SubResource("RectangleShape2D_og4xt") + +[node name="RemoteTransform2D" type="RemoteTransform2D" parent="BreakableSoftbody2D/Bone-20"] +visible = false +remote_path = NodePath("../../Skeleton2D/Bone-20") +update_rotation = false +update_scale = false + +[node name="Joint2D-Bone-20-Bone-16" type="PinJoint2D" parent="BreakableSoftbody2D/Bone-20"] +visible = false +rotation = -4.02911 +node_a = NodePath("..") +node_b = NodePath("../../Bone-16") +softness = 60.0 + +[node name="Joint2D-Bone-20-Bone-17" type="PinJoint2D" parent="BreakableSoftbody2D/Bone-20"] +visible = false +rotation = -4.6597 +node_a = NodePath("..") +node_b = NodePath("../../Bone-17") +softness = 60.0 + +[node name="Joint2D-Bone-20-Bone-19" type="PinJoint2D" parent="BreakableSoftbody2D/Bone-20"] +visible = false +rotation = -3.14159 +node_a = NodePath("..") +node_b = NodePath("../../Bone-19") +softness = 60.0 + +[node name="Joint2D-Bone-20-Bone-22" type="PinJoint2D" parent="BreakableSoftbody2D/Bone-20"] +visible = false +rotation = -2.25408 +node_a = NodePath("..") +node_b = NodePath("../../Bone-22") +softness = 60.0 + +[node name="Joint2D-Bone-20-Bone-23" type="PinJoint2D" parent="BreakableSoftbody2D/Bone-20"] +visible = false +rotation = -1.5708 +node_a = NodePath("..") +node_b = NodePath("../../Bone-23") +softness = 60.0 + +[node name="Bone-21" type="RigidBody2D" parent="BreakableSoftbody2D" instance=ExtResource("4_13lkq")] +position = Vector2(122, 206) +input_pickable = true +mass = 0.0456818 +physics_material_override = ExtResource("6_eyp3s") +constant_force = Vector2(2.08165e-12, 2.08165e-12) +script = ExtResource("7_lk74m") +metadata/idx = 21 +metadata/bone_name = &"Bone-21" + +[node name="RectangleShape2D" type="CollisionShape2D" parent="BreakableSoftbody2D/Bone-21"] +shape = SubResource("RectangleShape2D_og4xt") + +[node name="RemoteTransform2D" type="RemoteTransform2D" parent="BreakableSoftbody2D/Bone-21"] +visible = false +remote_path = NodePath("../../Skeleton2D/Bone-21") +update_rotation = false +update_scale = false + +[node name="Joint2D-Bone-21-Bone-7" type="PinJoint2D" parent="BreakableSoftbody2D/Bone-21"] +visible = false +rotation = -3.92699 +node_a = NodePath("..") +node_b = NodePath("../../Bone-7") +softness = 60.0 + +[node name="Joint2D-Bone-21-Bone-11" type="PinJoint2D" parent="BreakableSoftbody2D/Bone-21"] +visible = false +rotation = -3.14159 +node_a = NodePath("..") +node_b = NodePath("../../Bone-11") +softness = 60.0 + +[node name="Joint2D-Bone-21-Bone-18" type="PinJoint2D" parent="BreakableSoftbody2D/Bone-21"] +visible = false +rotation = 1.5708 +node_a = NodePath("..") +node_b = NodePath("../../Bone-18") +softness = 60.0 + +[node name="Joint2D-Bone-21-Bone-15" type="PinJoint2D" parent="BreakableSoftbody2D/Bone-21"] +visible = false +rotation = -2.35619 +node_a = NodePath("..") +node_b = NodePath("../../Bone-15") +softness = 60.0 + +[node name="Joint2D-Bone-21-Bone-24" type="PinJoint2D" parent="BreakableSoftbody2D/Bone-21"] +visible = false +rotation = -1.5708 +node_a = NodePath("..") +node_b = NodePath("../../Bone-24") +softness = 60.0 + +[node name="Joint2D-Bone-21-Bone-19" type="PinJoint2D" parent="BreakableSoftbody2D/Bone-21"] +visible = false +rotation = 0.785398 +node_a = NodePath("..") +node_b = NodePath("../../Bone-19") +softness = 60.0 + +[node name="Joint2D-Bone-21-Bone-22" type="PinJoint2D" parent="BreakableSoftbody2D/Bone-21"] +visible = false +node_a = NodePath("..") +node_b = NodePath("../../Bone-22") +softness = 60.0 + +[node name="Joint2D-Bone-21-Bone-25" type="PinJoint2D" parent="BreakableSoftbody2D/Bone-21"] +visible = false +rotation = -0.785398 +node_a = NodePath("..") +node_b = NodePath("../../Bone-25") +softness = 60.0 + +[node name="Bone-22" type="RigidBody2D" parent="BreakableSoftbody2D" instance=ExtResource("4_13lkq")] +position = Vector2(122, 245) +input_pickable = true +mass = 0.0456818 +physics_material_override = ExtResource("6_eyp3s") +constant_force = Vector2(2.08165e-12, 2.08165e-12) +script = ExtResource("7_lk74m") +metadata/idx = 22 +metadata/bone_name = &"Bone-22" + +[node name="RectangleShape2D" type="CollisionShape2D" parent="BreakableSoftbody2D/Bone-22"] +shape = SubResource("RectangleShape2D_og4xt") + +[node name="RemoteTransform2D" type="RemoteTransform2D" parent="BreakableSoftbody2D/Bone-22"] +visible = false +remote_path = NodePath("../../Skeleton2D/Bone-22") +update_rotation = false +update_scale = false + +[node name="Joint2D-Bone-22-Bone-18" type="PinJoint2D" parent="BreakableSoftbody2D/Bone-22"] +visible = false +rotation = -4.04996 +node_a = NodePath("..") +node_b = NodePath("../../Bone-18") +softness = 60.0 + +[node name="Joint2D-Bone-22-Bone-19" type="PinJoint2D" parent="BreakableSoftbody2D/Bone-22"] +visible = false +rotation = 1.5708 +node_a = NodePath("..") +node_b = NodePath("../../Bone-19") +softness = 60.0 + +[node name="Joint2D-Bone-22-Bone-21" type="PinJoint2D" parent="BreakableSoftbody2D/Bone-22"] +visible = false +rotation = -3.14159 +node_a = NodePath("..") +node_b = NodePath("../../Bone-21") +softness = 60.0 + +[node name="Joint2D-Bone-22-Bone-20" type="PinJoint2D" parent="BreakableSoftbody2D/Bone-22"] +visible = false +rotation = 0.887515 +node_a = NodePath("..") +node_b = NodePath("../../Bone-20") +softness = 60.0 + +[node name="Joint2D-Bone-22-Bone-23" type="PinJoint2D" parent="BreakableSoftbody2D/Bone-22"] +visible = false +node_a = NodePath("..") +node_b = NodePath("../../Bone-23") +softness = 60.0 + +[node name="Joint2D-Bone-22-Bone-24" type="PinJoint2D" parent="BreakableSoftbody2D/Bone-22"] +visible = false +rotation = -2.35619 +node_a = NodePath("..") +node_b = NodePath("../../Bone-24") +softness = 60.0 + +[node name="Joint2D-Bone-22-Bone-25" type="PinJoint2D" parent="BreakableSoftbody2D/Bone-22"] +visible = false +rotation = -1.5708 +node_a = NodePath("..") +node_b = NodePath("../../Bone-25") +softness = 60.0 + +[node name="Joint2D-Bone-22-Bone-26" type="PinJoint2D" parent="BreakableSoftbody2D/Bone-22"] +visible = false +rotation = -0.887515 +node_a = NodePath("..") +node_b = NodePath("../../Bone-26") +softness = 60.0 + +[node name="Bone-23" type="RigidBody2D" parent="BreakableSoftbody2D" instance=ExtResource("4_13lkq")] +position = Vector2(122, 276.75) +input_pickable = true +mass = 0.0456818 +physics_material_override = ExtResource("6_eyp3s") +constant_force = Vector2(2.08165e-12, 2.08165e-12) +script = ExtResource("7_lk74m") +metadata/idx = 23 +metadata/bone_name = &"Bone-23" + +[node name="RectangleShape2D" type="CollisionShape2D" parent="BreakableSoftbody2D/Bone-23"] +shape = SubResource("RectangleShape2D_og4xt") + +[node name="RemoteTransform2D" type="RemoteTransform2D" parent="BreakableSoftbody2D/Bone-23"] +visible = false +remote_path = NodePath("../../Skeleton2D/Bone-23") +update_rotation = false +update_scale = false + +[node name="Joint2D-Bone-23-Bone-19" type="PinJoint2D" parent="BreakableSoftbody2D/Bone-23"] +visible = false +rotation = -4.02911 +node_a = NodePath("..") +node_b = NodePath("../../Bone-19") +softness = 60.0 + +[node name="Joint2D-Bone-23-Bone-20" type="PinJoint2D" parent="BreakableSoftbody2D/Bone-23"] +visible = false +rotation = 1.5708 +node_a = NodePath("..") +node_b = NodePath("../../Bone-20") +softness = 60.0 + +[node name="Joint2D-Bone-23-Bone-22" type="PinJoint2D" parent="BreakableSoftbody2D/Bone-23"] +visible = false +rotation = -3.14159 +node_a = NodePath("..") +node_b = NodePath("../../Bone-22") +softness = 60.0 + +[node name="Joint2D-Bone-23-Bone-25" type="PinJoint2D" parent="BreakableSoftbody2D/Bone-23"] +visible = false +rotation = -2.25408 +node_a = NodePath("..") +node_b = NodePath("../../Bone-25") +softness = 60.0 + +[node name="Joint2D-Bone-23-Bone-26" type="PinJoint2D" parent="BreakableSoftbody2D/Bone-23"] +visible = false +rotation = -1.5708 +node_a = NodePath("..") +node_b = NodePath("../../Bone-26") +softness = 60.0 + +[node name="Bone-24" type="RigidBody2D" parent="BreakableSoftbody2D" instance=ExtResource("4_13lkq")] +position = Vector2(161, 206) +input_pickable = true +mass = 0.0456818 +physics_material_override = ExtResource("6_eyp3s") +constant_force = Vector2(2.08165e-12, 2.08165e-12) +script = ExtResource("7_lk74m") +metadata/idx = 24 +metadata/bone_name = &"Bone-24" + +[node name="RectangleShape2D" type="CollisionShape2D" parent="BreakableSoftbody2D/Bone-24"] +shape = SubResource("RectangleShape2D_og4xt") + +[node name="RemoteTransform2D" type="RemoteTransform2D" parent="BreakableSoftbody2D/Bone-24"] +visible = false +remote_path = NodePath("../../Skeleton2D/Bone-24") +update_rotation = false +update_scale = false + +[node name="Joint2D-Bone-24-Bone-11" type="PinJoint2D" parent="BreakableSoftbody2D/Bone-24"] +visible = false +rotation = -3.92699 +node_a = NodePath("..") +node_b = NodePath("../../Bone-11") +softness = 60.0 + +[node name="Joint2D-Bone-24-Bone-15" type="PinJoint2D" parent="BreakableSoftbody2D/Bone-24"] +visible = false +rotation = -3.14159 +node_a = NodePath("..") +node_b = NodePath("../../Bone-15") +softness = 60.0 + +[node name="Joint2D-Bone-24-Bone-21" type="PinJoint2D" parent="BreakableSoftbody2D/Bone-24"] +visible = false +rotation = 1.5708 +node_a = NodePath("..") +node_b = NodePath("../../Bone-21") +softness = 60.0 + +[node name="Joint2D-Bone-24-Bone-30" type="PinJoint2D" parent="BreakableSoftbody2D/Bone-24"] +visible = false +rotation = -2.35619 +node_a = NodePath("..") +node_b = NodePath("../../Bone-30") +softness = 60.0 + +[node name="Joint2D-Bone-24-Bone-36" type="PinJoint2D" parent="BreakableSoftbody2D/Bone-24"] +visible = false +rotation = -1.5708 +node_a = NodePath("..") +node_b = NodePath("../../Bone-36") +softness = 60.0 + +[node name="Joint2D-Bone-24-Bone-22" type="PinJoint2D" parent="BreakableSoftbody2D/Bone-24"] +visible = false +rotation = 0.785398 +node_a = NodePath("..") +node_b = NodePath("../../Bone-22") +softness = 60.0 + +[node name="Joint2D-Bone-24-Bone-25" type="PinJoint2D" parent="BreakableSoftbody2D/Bone-24"] +visible = false +node_a = NodePath("..") +node_b = NodePath("../../Bone-25") +softness = 60.0 + +[node name="Joint2D-Bone-24-Bone-37" type="PinJoint2D" parent="BreakableSoftbody2D/Bone-24"] +visible = false +rotation = -0.785398 +node_a = NodePath("..") +node_b = NodePath("../../Bone-37") +softness = 60.0 + +[node name="Bone-25" type="RigidBody2D" parent="BreakableSoftbody2D" instance=ExtResource("4_13lkq")] +position = Vector2(161, 245) +input_pickable = true +mass = 0.0456818 +physics_material_override = ExtResource("6_eyp3s") +constant_force = Vector2(2.08165e-12, 2.08165e-12) +script = ExtResource("7_lk74m") +metadata/idx = 25 +metadata/bone_name = &"Bone-25" + +[node name="RectangleShape2D" type="CollisionShape2D" parent="BreakableSoftbody2D/Bone-25"] +shape = SubResource("RectangleShape2D_og4xt") + +[node name="RemoteTransform2D" type="RemoteTransform2D" parent="BreakableSoftbody2D/Bone-25"] +visible = false +remote_path = NodePath("../../Skeleton2D/Bone-25") +update_rotation = false +update_scale = false + +[node name="Joint2D-Bone-25-Bone-21" type="PinJoint2D" parent="BreakableSoftbody2D/Bone-25"] +visible = false +rotation = -3.92699 +node_a = NodePath("..") +node_b = NodePath("../../Bone-21") +softness = 60.0 + +[node name="Joint2D-Bone-25-Bone-22" type="PinJoint2D" parent="BreakableSoftbody2D/Bone-25"] +visible = false +rotation = 1.5708 +node_a = NodePath("..") +node_b = NodePath("../../Bone-22") +softness = 60.0 + +[node name="Joint2D-Bone-25-Bone-24" type="PinJoint2D" parent="BreakableSoftbody2D/Bone-25"] +visible = false +rotation = -3.14159 +node_a = NodePath("..") +node_b = NodePath("../../Bone-24") +softness = 60.0 + +[node name="Joint2D-Bone-25-Bone-23" type="PinJoint2D" parent="BreakableSoftbody2D/Bone-25"] +visible = false +rotation = 0.887515 +node_a = NodePath("..") +node_b = NodePath("../../Bone-23") +softness = 60.0 + +[node name="Joint2D-Bone-25-Bone-26" type="PinJoint2D" parent="BreakableSoftbody2D/Bone-25"] +visible = false +node_a = NodePath("..") +node_b = NodePath("../../Bone-26") +softness = 60.0 + +[node name="Joint2D-Bone-25-Bone-36" type="PinJoint2D" parent="BreakableSoftbody2D/Bone-25"] +visible = false +rotation = -2.35619 +node_a = NodePath("..") +node_b = NodePath("../../Bone-36") +softness = 60.0 + +[node name="Joint2D-Bone-25-Bone-37" type="PinJoint2D" parent="BreakableSoftbody2D/Bone-25"] +visible = false +rotation = -1.5708 +node_a = NodePath("..") +node_b = NodePath("../../Bone-37") +softness = 60.0 + +[node name="Joint2D-Bone-25-Bone-38" type="PinJoint2D" parent="BreakableSoftbody2D/Bone-25"] +visible = false +rotation = -0.887515 +node_a = NodePath("..") +node_b = NodePath("../../Bone-38") +softness = 60.0 + +[node name="Bone-26" type="RigidBody2D" parent="BreakableSoftbody2D" instance=ExtResource("4_13lkq")] +position = Vector2(161, 276.75) +input_pickable = true +mass = 0.0456818 +physics_material_override = ExtResource("6_eyp3s") +constant_force = Vector2(2.08165e-12, 2.08165e-12) +script = ExtResource("7_lk74m") +metadata/idx = 26 +metadata/bone_name = &"Bone-26" + +[node name="RectangleShape2D" type="CollisionShape2D" parent="BreakableSoftbody2D/Bone-26"] +shape = SubResource("RectangleShape2D_og4xt") + +[node name="RemoteTransform2D" type="RemoteTransform2D" parent="BreakableSoftbody2D/Bone-26"] +visible = false +remote_path = NodePath("../../Skeleton2D/Bone-26") +update_rotation = false +update_scale = false + +[node name="Joint2D-Bone-26-Bone-22" type="PinJoint2D" parent="BreakableSoftbody2D/Bone-26"] +visible = false +rotation = -4.02911 +node_a = NodePath("..") +node_b = NodePath("../../Bone-22") +softness = 60.0 + +[node name="Joint2D-Bone-26-Bone-23" type="PinJoint2D" parent="BreakableSoftbody2D/Bone-26"] +visible = false +rotation = 1.5708 +node_a = NodePath("..") +node_b = NodePath("../../Bone-23") +softness = 60.0 + +[node name="Joint2D-Bone-26-Bone-25" type="PinJoint2D" parent="BreakableSoftbody2D/Bone-26"] +visible = false +rotation = -3.14159 +node_a = NodePath("..") +node_b = NodePath("../../Bone-25") +softness = 60.0 + +[node name="Joint2D-Bone-26-Bone-37" type="PinJoint2D" parent="BreakableSoftbody2D/Bone-26"] +visible = false +rotation = -2.25408 +node_a = NodePath("..") +node_b = NodePath("../../Bone-37") +softness = 60.0 + +[node name="Joint2D-Bone-26-Bone-38" type="PinJoint2D" parent="BreakableSoftbody2D/Bone-26"] +visible = false +rotation = -1.5708 +node_a = NodePath("..") +node_b = NodePath("../../Bone-38") +softness = 60.0 + +[node name="Bone-27" type="RigidBody2D" parent="BreakableSoftbody2D" instance=ExtResource("4_13lkq")] +position = Vector2(200, 40.25) +input_pickable = true +mass = 0.0456818 +physics_material_override = ExtResource("6_eyp3s") +constant_force = Vector2(2.08165e-12, 2.08165e-12) +script = ExtResource("7_lk74m") +metadata/idx = 27 +metadata/bone_name = &"Bone-27" + +[node name="RectangleShape2D" type="CollisionShape2D" parent="BreakableSoftbody2D/Bone-27"] +shape = SubResource("RectangleShape2D_og4xt") + +[node name="RemoteTransform2D" type="RemoteTransform2D" parent="BreakableSoftbody2D/Bone-27"] +visible = false +remote_path = NodePath("../../Skeleton2D/Bone-27") +update_rotation = false +update_scale = false + +[node name="Joint2D-Bone-27-Bone-12" type="PinJoint2D" parent="BreakableSoftbody2D/Bone-27"] +visible = false +rotation = 1.5708 +node_a = NodePath("..") +node_b = NodePath("../../Bone-12") +softness = 60.0 + +[node name="Joint2D-Bone-27-Bone-13" type="PinJoint2D" parent="BreakableSoftbody2D/Bone-27"] +visible = false +rotation = 0.674741 +node_a = NodePath("..") +node_b = NodePath("../../Bone-13") +softness = 60.0 + +[node name="Joint2D-Bone-27-Bone-28" type="PinJoint2D" parent="BreakableSoftbody2D/Bone-27"] +visible = false +node_a = NodePath("..") +node_b = NodePath("../../Bone-28") +softness = 60.0 + +[node name="Joint2D-Bone-27-Bone-31" type="PinJoint2D" parent="BreakableSoftbody2D/Bone-27"] +visible = false +rotation = -1.55685 +node_a = NodePath("..") +node_b = NodePath("../../Bone-31") +softness = 60.0 + +[node name="Joint2D-Bone-27-Bone-32" type="PinJoint2D" parent="BreakableSoftbody2D/Bone-27"] +visible = false +rotation = -0.648207 +node_a = NodePath("..") +node_b = NodePath("../../Bone-32") +softness = 60.0 + +[node name="Bone-28" type="RigidBody2D" parent="BreakableSoftbody2D" instance=ExtResource("4_13lkq")] +position = Vector2(200, 89) +input_pickable = true +mass = 0.0456818 +physics_material_override = ExtResource("6_eyp3s") +constant_force = Vector2(2.08165e-12, 2.08165e-12) +script = ExtResource("7_lk74m") +metadata/idx = 28 +metadata/bone_name = &"Bone-28" + +[node name="RectangleShape2D" type="CollisionShape2D" parent="BreakableSoftbody2D/Bone-28"] +shape = SubResource("RectangleShape2D_og4xt") + +[node name="RemoteTransform2D" type="RemoteTransform2D" parent="BreakableSoftbody2D/Bone-28"] +visible = false +remote_path = NodePath("../../Skeleton2D/Bone-28") +update_rotation = false +update_scale = false + +[node name="Joint2D-Bone-28-Bone-12" type="PinJoint2D" parent="BreakableSoftbody2D/Bone-28"] +visible = false +rotation = -3.81633 +node_a = NodePath("..") +node_b = NodePath("../../Bone-12") +softness = 60.0 + +[node name="Joint2D-Bone-28-Bone-13" type="PinJoint2D" parent="BreakableSoftbody2D/Bone-28"] +visible = false +rotation = 1.5708 +node_a = NodePath("..") +node_b = NodePath("../../Bone-13") +softness = 60.0 + +[node name="Joint2D-Bone-28-Bone-27" type="PinJoint2D" parent="BreakableSoftbody2D/Bone-28"] +visible = false +rotation = -3.14159 +node_a = NodePath("..") +node_b = NodePath("../../Bone-27") +softness = 60.0 + +[node name="Joint2D-Bone-28-Bone-14" type="PinJoint2D" parent="BreakableSoftbody2D/Bone-28"] +visible = false +rotation = 0.785398 +node_a = NodePath("..") +node_b = NodePath("../../Bone-14") +softness = 60.0 + +[node name="Joint2D-Bone-28-Bone-29" type="PinJoint2D" parent="BreakableSoftbody2D/Bone-28"] +visible = false +node_a = NodePath("..") +node_b = NodePath("../../Bone-29") +softness = 60.0 + +[node name="Joint2D-Bone-28-Bone-31" type="PinJoint2D" parent="BreakableSoftbody2D/Bone-28"] +visible = false +rotation = -2.30923 +node_a = NodePath("..") +node_b = NodePath("../../Bone-31") +softness = 60.0 + +[node name="Joint2D-Bone-28-Bone-32" type="PinJoint2D" parent="BreakableSoftbody2D/Bone-28"] +visible = false +rotation = -1.5708 +node_a = NodePath("..") +node_b = NodePath("../../Bone-32") +softness = 60.0 + +[node name="Joint2D-Bone-28-Bone-33" type="PinJoint2D" parent="BreakableSoftbody2D/Bone-28"] +visible = false +rotation = -0.93373 +node_a = NodePath("..") +node_b = NodePath("../../Bone-33") +softness = 60.0 + +[node name="Bone-29" type="RigidBody2D" parent="BreakableSoftbody2D" instance=ExtResource("4_13lkq")] +position = Vector2(200, 128) +input_pickable = true +mass = 0.0456818 +physics_material_override = ExtResource("6_eyp3s") +constant_force = Vector2(2.08165e-12, 2.08165e-12) +script = ExtResource("7_lk74m") +metadata/idx = 29 +metadata/bone_name = &"Bone-29" + +[node name="RectangleShape2D" type="CollisionShape2D" parent="BreakableSoftbody2D/Bone-29"] +shape = SubResource("RectangleShape2D_og4xt") + +[node name="RemoteTransform2D" type="RemoteTransform2D" parent="BreakableSoftbody2D/Bone-29"] +visible = false +remote_path = NodePath("../../Skeleton2D/Bone-29") +update_rotation = false +update_scale = false + +[node name="Joint2D-Bone-29-Bone-13" type="PinJoint2D" parent="BreakableSoftbody2D/Bone-29"] +visible = false +rotation = -3.92699 +node_a = NodePath("..") +node_b = NodePath("../../Bone-13") +softness = 60.0 + +[node name="Joint2D-Bone-29-Bone-14" type="PinJoint2D" parent="BreakableSoftbody2D/Bone-29"] +visible = false +rotation = 1.5708 +node_a = NodePath("..") +node_b = NodePath("../../Bone-14") +softness = 60.0 + +[node name="Joint2D-Bone-29-Bone-28" type="PinJoint2D" parent="BreakableSoftbody2D/Bone-29"] +visible = false +rotation = -3.14159 +node_a = NodePath("..") +node_b = NodePath("../../Bone-28") +softness = 60.0 + +[node name="Joint2D-Bone-29-Bone-15" type="PinJoint2D" parent="BreakableSoftbody2D/Bone-29"] +visible = false +rotation = 0.785398 +node_a = NodePath("..") +node_b = NodePath("../../Bone-15") +softness = 60.0 + +[node name="Joint2D-Bone-29-Bone-30" type="PinJoint2D" parent="BreakableSoftbody2D/Bone-29"] +visible = false +node_a = NodePath("..") +node_b = NodePath("../../Bone-30") +softness = 60.0 + +[node name="Joint2D-Bone-29-Bone-32" type="PinJoint2D" parent="BreakableSoftbody2D/Bone-29"] +visible = false +rotation = -2.38355 +node_a = NodePath("..") +node_b = NodePath("../../Bone-32") +softness = 60.0 + +[node name="Joint2D-Bone-29-Bone-33" type="PinJoint2D" parent="BreakableSoftbody2D/Bone-29"] +visible = false +rotation = -1.5708 +node_a = NodePath("..") +node_b = NodePath("../../Bone-33") +softness = 60.0 + +[node name="Joint2D-Bone-29-Bone-34" type="PinJoint2D" parent="BreakableSoftbody2D/Bone-29"] +visible = false +rotation = -0.785398 +node_a = NodePath("..") +node_b = NodePath("../../Bone-34") +softness = 60.0 + +[node name="Bone-30" type="RigidBody2D" parent="BreakableSoftbody2D" instance=ExtResource("4_13lkq")] +position = Vector2(200, 167) +input_pickable = true +mass = 0.0456818 +physics_material_override = ExtResource("6_eyp3s") +constant_force = Vector2(2.08165e-12, 2.08165e-12) +script = ExtResource("7_lk74m") +metadata/idx = 30 +metadata/bone_name = &"Bone-30" + +[node name="RectangleShape2D" type="CollisionShape2D" parent="BreakableSoftbody2D/Bone-30"] +shape = SubResource("RectangleShape2D_og4xt") + +[node name="RemoteTransform2D" type="RemoteTransform2D" parent="BreakableSoftbody2D/Bone-30"] +visible = false +remote_path = NodePath("../../Skeleton2D/Bone-30") +update_rotation = false +update_scale = false + +[node name="Joint2D-Bone-30-Bone-14" type="PinJoint2D" parent="BreakableSoftbody2D/Bone-30"] +visible = false +rotation = -3.92699 +node_a = NodePath("..") +node_b = NodePath("../../Bone-14") +softness = 60.0 + +[node name="Joint2D-Bone-30-Bone-15" type="PinJoint2D" parent="BreakableSoftbody2D/Bone-30"] +visible = false +rotation = 1.5708 +node_a = NodePath("..") +node_b = NodePath("../../Bone-15") +softness = 60.0 + +[node name="Joint2D-Bone-30-Bone-29" type="PinJoint2D" parent="BreakableSoftbody2D/Bone-30"] +visible = false +rotation = -3.14159 +node_a = NodePath("..") +node_b = NodePath("../../Bone-29") +softness = 60.0 + +[node name="Joint2D-Bone-30-Bone-24" type="PinJoint2D" parent="BreakableSoftbody2D/Bone-30"] +visible = false +rotation = 0.785398 +node_a = NodePath("..") +node_b = NodePath("../../Bone-24") +softness = 60.0 + +[node name="Joint2D-Bone-30-Bone-36" type="PinJoint2D" parent="BreakableSoftbody2D/Bone-30"] +visible = false +node_a = NodePath("..") +node_b = NodePath("../../Bone-36") +softness = 60.0 + +[node name="Joint2D-Bone-30-Bone-33" type="PinJoint2D" parent="BreakableSoftbody2D/Bone-30"] +visible = false +rotation = -2.20786 +node_a = NodePath("..") +node_b = NodePath("../../Bone-33") +softness = 60.0 + +[node name="Joint2D-Bone-30-Bone-34" type="PinJoint2D" parent="BreakableSoftbody2D/Bone-30"] +visible = false +rotation = -1.5708 +node_a = NodePath("..") +node_b = NodePath("../../Bone-34") +softness = 60.0 + +[node name="Joint2D-Bone-30-Bone-39" type="PinJoint2D" parent="BreakableSoftbody2D/Bone-30"] +visible = false +rotation = -0.785398 +node_a = NodePath("..") +node_b = NodePath("../../Bone-39") +softness = 60.0 + +[node name="Bone-31" type="RigidBody2D" parent="BreakableSoftbody2D" instance=ExtResource("4_13lkq")] +position = Vector2(252.75, 40.9859) +input_pickable = true +mass = 0.0456818 +physics_material_override = ExtResource("6_eyp3s") +constant_force = Vector2(2.08165e-12, 2.08165e-12) +script = ExtResource("7_lk74m") +metadata/idx = 31 +metadata/bone_name = &"Bone-31" + +[node name="RectangleShape2D" type="CollisionShape2D" parent="BreakableSoftbody2D/Bone-31"] +shape = SubResource("RectangleShape2D_og4xt") + +[node name="RemoteTransform2D" type="RemoteTransform2D" parent="BreakableSoftbody2D/Bone-31"] +visible = false +remote_path = NodePath("../../Skeleton2D/Bone-31") +update_rotation = false +update_scale = false + +[node name="Joint2D-Bone-31-Bone-32" type="PinJoint2D" parent="BreakableSoftbody2D/Bone-31"] +visible = false +rotation = 0.318431 +node_a = NodePath("..") +node_b = NodePath("../../Bone-32") +softness = 60.0 + +[node name="Joint2D-Bone-31-Bone-27" type="PinJoint2D" parent="BreakableSoftbody2D/Bone-31"] +visible = false +rotation = -4.69844 +node_a = NodePath("..") +node_b = NodePath("../../Bone-27") +softness = 60.0 + +[node name="Joint2D-Bone-31-Bone-28" type="PinJoint2D" parent="BreakableSoftbody2D/Bone-31"] +visible = false +rotation = 0.832363 +node_a = NodePath("..") +node_b = NodePath("../../Bone-28") +softness = 60.0 + +[node name="Bone-32" type="RigidBody2D" parent="BreakableSoftbody2D" instance=ExtResource("4_13lkq")] +position = Vector2(236.922, 89) +input_pickable = true +mass = 0.0456818 +physics_material_override = ExtResource("6_eyp3s") +constant_force = Vector2(2.08165e-12, 2.08165e-12) +script = ExtResource("7_lk74m") +metadata/idx = 32 +metadata/bone_name = &"Bone-32" + +[node name="RectangleShape2D" type="CollisionShape2D" parent="BreakableSoftbody2D/Bone-32"] +shape = SubResource("RectangleShape2D_og4xt") + +[node name="RemoteTransform2D" type="RemoteTransform2D" parent="BreakableSoftbody2D/Bone-32"] +visible = false +remote_path = NodePath("../../Skeleton2D/Bone-32") +update_rotation = false +update_scale = false + +[node name="Joint2D-Bone-32-Bone-31" type="PinJoint2D" parent="BreakableSoftbody2D/Bone-32"] +visible = false +rotation = -2.82316 +node_a = NodePath("..") +node_b = NodePath("../../Bone-31") +softness = 60.0 + +[node name="Joint2D-Bone-32-Bone-27" type="PinJoint2D" parent="BreakableSoftbody2D/Bone-32"] +visible = false +rotation = -3.7898 +node_a = NodePath("..") +node_b = NodePath("../../Bone-27") +softness = 60.0 + +[node name="Joint2D-Bone-32-Bone-28" type="PinJoint2D" parent="BreakableSoftbody2D/Bone-32"] +visible = false +rotation = 1.5708 +node_a = NodePath("..") +node_b = NodePath("../../Bone-28") +softness = 60.0 + +[node name="Joint2D-Bone-32-Bone-29" type="PinJoint2D" parent="BreakableSoftbody2D/Bone-32"] +visible = false +rotation = 0.758038 +node_a = NodePath("..") +node_b = NodePath("../../Bone-29") +softness = 60.0 + +[node name="Joint2D-Bone-32-Bone-33" type="PinJoint2D" parent="BreakableSoftbody2D/Bone-32"] +visible = false +rotation = -0.384499 +node_a = NodePath("..") +node_b = NodePath("../../Bone-33") +softness = 60.0 + +[node name="Bone-33" type="RigidBody2D" parent="BreakableSoftbody2D" instance=ExtResource("4_13lkq")] +position = Vector2(252.703, 128) +input_pickable = true +mass = 0.0456818 +physics_material_override = ExtResource("6_eyp3s") +constant_force = Vector2(2.08165e-12, 2.08165e-12) +script = ExtResource("7_lk74m") +metadata/idx = 33 +metadata/bone_name = &"Bone-33" + +[node name="RectangleShape2D" type="CollisionShape2D" parent="BreakableSoftbody2D/Bone-33"] +shape = SubResource("RectangleShape2D_og4xt") + +[node name="RemoteTransform2D" type="RemoteTransform2D" parent="BreakableSoftbody2D/Bone-33"] +visible = false +remote_path = NodePath("../../Skeleton2D/Bone-33") +update_rotation = false +update_scale = false + +[node name="Joint2D-Bone-33-Bone-28" type="PinJoint2D" parent="BreakableSoftbody2D/Bone-33"] +visible = false +rotation = -4.07532 +node_a = NodePath("..") +node_b = NodePath("../../Bone-28") +softness = 60.0 + +[node name="Joint2D-Bone-33-Bone-29" type="PinJoint2D" parent="BreakableSoftbody2D/Bone-33"] +visible = false +rotation = 1.5708 +node_a = NodePath("..") +node_b = NodePath("../../Bone-29") +softness = 60.0 + +[node name="Joint2D-Bone-33-Bone-32" type="PinJoint2D" parent="BreakableSoftbody2D/Bone-33"] +visible = false +rotation = -3.52609 +node_a = NodePath("..") +node_b = NodePath("../../Bone-32") +softness = 60.0 + +[node name="Joint2D-Bone-33-Bone-30" type="PinJoint2D" parent="BreakableSoftbody2D/Bone-33"] +visible = false +rotation = 0.93373 +node_a = NodePath("..") +node_b = NodePath("../../Bone-30") +softness = 60.0 + +[node name="Joint2D-Bone-33-Bone-34" type="PinJoint2D" parent="BreakableSoftbody2D/Bone-33"] +visible = false +rotation = 0.337888 +node_a = NodePath("..") +node_b = NodePath("../../Bone-34") +softness = 60.0 + +[node name="Joint2D-Bone-33-Bone-35" type="PinJoint2D" parent="BreakableSoftbody2D/Bone-33"] +visible = false +rotation = -0.552526 +node_a = NodePath("..") +node_b = NodePath("../../Bone-35") +softness = 60.0 + +[node name="Bone-34" type="RigidBody2D" parent="BreakableSoftbody2D" instance=ExtResource("4_13lkq")] +position = Vector2(239, 167) +input_pickable = true +mass = 0.0456818 +physics_material_override = ExtResource("6_eyp3s") +constant_force = Vector2(2.08165e-12, 2.08165e-12) +script = ExtResource("7_lk74m") +metadata/idx = 34 +metadata/bone_name = &"Bone-34" + +[node name="RectangleShape2D" type="CollisionShape2D" parent="BreakableSoftbody2D/Bone-34"] +shape = SubResource("RectangleShape2D_og4xt") + +[node name="RemoteTransform2D" type="RemoteTransform2D" parent="BreakableSoftbody2D/Bone-34"] +visible = false +remote_path = NodePath("../../Skeleton2D/Bone-34") +update_rotation = false +update_scale = false + +[node name="Joint2D-Bone-34-Bone-29" type="PinJoint2D" parent="BreakableSoftbody2D/Bone-34"] +visible = false +rotation = -3.92699 +node_a = NodePath("..") +node_b = NodePath("../../Bone-29") +softness = 60.0 + +[node name="Joint2D-Bone-34-Bone-30" type="PinJoint2D" parent="BreakableSoftbody2D/Bone-34"] +visible = false +rotation = 1.5708 +node_a = NodePath("..") +node_b = NodePath("../../Bone-30") +softness = 60.0 + +[node name="Joint2D-Bone-34-Bone-33" type="PinJoint2D" parent="BreakableSoftbody2D/Bone-34"] +visible = false +rotation = -2.8037 +node_a = NodePath("..") +node_b = NodePath("../../Bone-33") +softness = 60.0 + +[node name="Joint2D-Bone-34-Bone-36" type="PinJoint2D" parent="BreakableSoftbody2D/Bone-34"] +visible = false +rotation = 0.785398 +node_a = NodePath("..") +node_b = NodePath("../../Bone-36") +softness = 60.0 + +[node name="Joint2D-Bone-34-Bone-39" type="PinJoint2D" parent="BreakableSoftbody2D/Bone-34"] +visible = false +node_a = NodePath("..") +node_b = NodePath("../../Bone-39") +softness = 60.0 + +[node name="Joint2D-Bone-34-Bone-35" type="PinJoint2D" parent="BreakableSoftbody2D/Bone-34"] +visible = false +rotation = -1.5708 +node_a = NodePath("..") +node_b = NodePath("../../Bone-35") +softness = 60.0 + +[node name="Joint2D-Bone-34-Bone-42" type="PinJoint2D" parent="BreakableSoftbody2D/Bone-34"] +visible = false +rotation = -0.769113 +node_a = NodePath("..") +node_b = NodePath("../../Bone-42") +softness = 60.0 + +[node name="Bone-35" type="RigidBody2D" parent="BreakableSoftbody2D" instance=ExtResource("4_13lkq")] +position = Vector2(276.75, 167) +input_pickable = true +mass = 0.0456818 +physics_material_override = ExtResource("6_eyp3s") +constant_force = Vector2(2.08165e-12, 2.08165e-12) +script = ExtResource("7_lk74m") +metadata/idx = 35 +metadata/bone_name = &"Bone-35" + +[node name="RectangleShape2D" type="CollisionShape2D" parent="BreakableSoftbody2D/Bone-35"] +shape = SubResource("RectangleShape2D_og4xt") + +[node name="RemoteTransform2D" type="RemoteTransform2D" parent="BreakableSoftbody2D/Bone-35"] +visible = false +remote_path = NodePath("../../Skeleton2D/Bone-35") +update_rotation = false +update_scale = false + +[node name="Joint2D-Bone-35-Bone-33" type="PinJoint2D" parent="BreakableSoftbody2D/Bone-35"] +visible = false +rotation = -3.69412 +node_a = NodePath("..") +node_b = NodePath("../../Bone-33") +softness = 60.0 + +[node name="Joint2D-Bone-35-Bone-34" type="PinJoint2D" parent="BreakableSoftbody2D/Bone-35"] +visible = false +rotation = 1.5708 +node_a = NodePath("..") +node_b = NodePath("../../Bone-34") +softness = 60.0 + +[node name="Joint2D-Bone-35-Bone-39" type="PinJoint2D" parent="BreakableSoftbody2D/Bone-35"] +visible = false +rotation = 0.769113 +node_a = NodePath("..") +node_b = NodePath("../../Bone-39") +softness = 60.0 + +[node name="Joint2D-Bone-35-Bone-42" type="PinJoint2D" parent="BreakableSoftbody2D/Bone-35"] +visible = false +node_a = NodePath("..") +node_b = NodePath("../../Bone-42") +softness = 60.0 + +[node name="Bone-36" type="RigidBody2D" parent="BreakableSoftbody2D" instance=ExtResource("4_13lkq")] +position = Vector2(200, 206) +input_pickable = true +mass = 0.0456818 +physics_material_override = ExtResource("6_eyp3s") +constant_force = Vector2(2.08165e-12, 2.08165e-12) +script = ExtResource("7_lk74m") +metadata/idx = 36 +metadata/bone_name = &"Bone-36" + +[node name="RectangleShape2D" type="CollisionShape2D" parent="BreakableSoftbody2D/Bone-36"] +shape = SubResource("RectangleShape2D_og4xt") + +[node name="RemoteTransform2D" type="RemoteTransform2D" parent="BreakableSoftbody2D/Bone-36"] +visible = false +remote_path = NodePath("../../Skeleton2D/Bone-36") +update_rotation = false +update_scale = false + +[node name="Joint2D-Bone-36-Bone-15" type="PinJoint2D" parent="BreakableSoftbody2D/Bone-36"] +visible = false +rotation = -3.92699 +node_a = NodePath("..") +node_b = NodePath("../../Bone-15") +softness = 60.0 + +[node name="Joint2D-Bone-36-Bone-24" type="PinJoint2D" parent="BreakableSoftbody2D/Bone-36"] +visible = false +rotation = 1.5708 +node_a = NodePath("..") +node_b = NodePath("../../Bone-24") +softness = 60.0 + +[node name="Joint2D-Bone-36-Bone-30" type="PinJoint2D" parent="BreakableSoftbody2D/Bone-36"] +visible = false +rotation = -3.14159 +node_a = NodePath("..") +node_b = NodePath("../../Bone-30") +softness = 60.0 + +[node name="Joint2D-Bone-36-Bone-25" type="PinJoint2D" parent="BreakableSoftbody2D/Bone-36"] +visible = false +rotation = 0.785398 +node_a = NodePath("..") +node_b = NodePath("../../Bone-25") +softness = 60.0 + +[node name="Joint2D-Bone-36-Bone-37" type="PinJoint2D" parent="BreakableSoftbody2D/Bone-36"] +visible = false +node_a = NodePath("..") +node_b = NodePath("../../Bone-37") +softness = 60.0 + +[node name="Joint2D-Bone-36-Bone-34" type="PinJoint2D" parent="BreakableSoftbody2D/Bone-36"] +visible = false +rotation = -2.35619 +node_a = NodePath("..") +node_b = NodePath("../../Bone-34") +softness = 60.0 + +[node name="Joint2D-Bone-36-Bone-39" type="PinJoint2D" parent="BreakableSoftbody2D/Bone-36"] +visible = false +rotation = -1.5708 +node_a = NodePath("..") +node_b = NodePath("../../Bone-39") +softness = 60.0 + +[node name="Joint2D-Bone-36-Bone-40" type="PinJoint2D" parent="BreakableSoftbody2D/Bone-36"] +visible = false +rotation = -0.785398 +node_a = NodePath("..") +node_b = NodePath("../../Bone-40") +softness = 60.0 + +[node name="Bone-37" type="RigidBody2D" parent="BreakableSoftbody2D" instance=ExtResource("4_13lkq")] +position = Vector2(200, 245) +input_pickable = true +mass = 0.0456818 +physics_material_override = ExtResource("6_eyp3s") +constant_force = Vector2(2.08165e-12, 2.08165e-12) +script = ExtResource("7_lk74m") +metadata/idx = 37 +metadata/bone_name = &"Bone-37" + +[node name="RectangleShape2D" type="CollisionShape2D" parent="BreakableSoftbody2D/Bone-37"] +shape = SubResource("RectangleShape2D_og4xt") + +[node name="RemoteTransform2D" type="RemoteTransform2D" parent="BreakableSoftbody2D/Bone-37"] +visible = false +remote_path = NodePath("../../Skeleton2D/Bone-37") +update_rotation = false +update_scale = false + +[node name="Joint2D-Bone-37-Bone-24" type="PinJoint2D" parent="BreakableSoftbody2D/Bone-37"] +visible = false +rotation = -3.92699 +node_a = NodePath("..") +node_b = NodePath("../../Bone-24") +softness = 60.0 + +[node name="Joint2D-Bone-37-Bone-25" type="PinJoint2D" parent="BreakableSoftbody2D/Bone-37"] +visible = false +rotation = 1.5708 +node_a = NodePath("..") +node_b = NodePath("../../Bone-25") +softness = 60.0 + +[node name="Joint2D-Bone-37-Bone-36" type="PinJoint2D" parent="BreakableSoftbody2D/Bone-37"] +visible = false +rotation = -3.14159 +node_a = NodePath("..") +node_b = NodePath("../../Bone-36") +softness = 60.0 + +[node name="Joint2D-Bone-37-Bone-26" type="PinJoint2D" parent="BreakableSoftbody2D/Bone-37"] +visible = false +rotation = 0.887515 +node_a = NodePath("..") +node_b = NodePath("../../Bone-26") +softness = 60.0 + +[node name="Joint2D-Bone-37-Bone-38" type="PinJoint2D" parent="BreakableSoftbody2D/Bone-37"] +visible = false +node_a = NodePath("..") +node_b = NodePath("../../Bone-38") +softness = 60.0 + +[node name="Joint2D-Bone-37-Bone-39" type="PinJoint2D" parent="BreakableSoftbody2D/Bone-37"] +visible = false +rotation = -2.35619 +node_a = NodePath("..") +node_b = NodePath("../../Bone-39") +softness = 60.0 + +[node name="Joint2D-Bone-37-Bone-40" type="PinJoint2D" parent="BreakableSoftbody2D/Bone-37"] +visible = false +rotation = -1.5708 +node_a = NodePath("..") +node_b = NodePath("../../Bone-40") +softness = 60.0 + +[node name="Joint2D-Bone-37-Bone-41" type="PinJoint2D" parent="BreakableSoftbody2D/Bone-37"] +visible = false +rotation = -0.989146 +node_a = NodePath("..") +node_b = NodePath("../../Bone-41") +softness = 60.0 + +[node name="Bone-38" type="RigidBody2D" parent="BreakableSoftbody2D" instance=ExtResource("4_13lkq")] +position = Vector2(200, 276.75) +input_pickable = true +mass = 0.0456818 +physics_material_override = ExtResource("6_eyp3s") +constant_force = Vector2(2.08165e-12, 2.08165e-12) +script = ExtResource("7_lk74m") +metadata/idx = 38 +metadata/bone_name = &"Bone-38" + +[node name="RectangleShape2D" type="CollisionShape2D" parent="BreakableSoftbody2D/Bone-38"] +shape = SubResource("RectangleShape2D_og4xt") + +[node name="RemoteTransform2D" type="RemoteTransform2D" parent="BreakableSoftbody2D/Bone-38"] +visible = false +remote_path = NodePath("../../Skeleton2D/Bone-38") +update_rotation = false +update_scale = false + +[node name="Joint2D-Bone-38-Bone-25" type="PinJoint2D" parent="BreakableSoftbody2D/Bone-38"] +visible = false +rotation = -4.02911 +node_a = NodePath("..") +node_b = NodePath("../../Bone-25") +softness = 60.0 + +[node name="Joint2D-Bone-38-Bone-26" type="PinJoint2D" parent="BreakableSoftbody2D/Bone-38"] +visible = false +rotation = 1.5708 +node_a = NodePath("..") +node_b = NodePath("../../Bone-26") +softness = 60.0 + +[node name="Joint2D-Bone-38-Bone-37" type="PinJoint2D" parent="BreakableSoftbody2D/Bone-38"] +visible = false +rotation = -3.14159 +node_a = NodePath("..") +node_b = NodePath("../../Bone-37") +softness = 60.0 + +[node name="Joint2D-Bone-38-Bone-40" type="PinJoint2D" parent="BreakableSoftbody2D/Bone-38"] +visible = false +rotation = -2.25408 +node_a = NodePath("..") +node_b = NodePath("../../Bone-40") +softness = 60.0 + +[node name="Joint2D-Bone-38-Bone-41" type="PinJoint2D" parent="BreakableSoftbody2D/Bone-38"] +visible = false +rotation = -1.5708 +node_a = NodePath("..") +node_b = NodePath("../../Bone-41") +softness = 60.0 + +[node name="Bone-39" type="RigidBody2D" parent="BreakableSoftbody2D" instance=ExtResource("4_13lkq")] +position = Vector2(239, 206) +input_pickable = true +mass = 0.0456818 +physics_material_override = ExtResource("6_eyp3s") +constant_force = Vector2(2.08165e-12, 2.08165e-12) +script = ExtResource("7_lk74m") +metadata/idx = 39 +metadata/bone_name = &"Bone-39" + +[node name="RectangleShape2D" type="CollisionShape2D" parent="BreakableSoftbody2D/Bone-39"] +shape = SubResource("RectangleShape2D_og4xt") + +[node name="RemoteTransform2D" type="RemoteTransform2D" parent="BreakableSoftbody2D/Bone-39"] +visible = false +remote_path = NodePath("../../Skeleton2D/Bone-39") +update_rotation = false +update_scale = false + +[node name="Joint2D-Bone-39-Bone-30" type="PinJoint2D" parent="BreakableSoftbody2D/Bone-39"] +visible = false +rotation = -3.92699 +node_a = NodePath("..") +node_b = NodePath("../../Bone-30") +softness = 60.0 + +[node name="Joint2D-Bone-39-Bone-34" type="PinJoint2D" parent="BreakableSoftbody2D/Bone-39"] +visible = false +rotation = -3.14159 +node_a = NodePath("..") +node_b = NodePath("../../Bone-34") +softness = 60.0 + +[node name="Joint2D-Bone-39-Bone-36" type="PinJoint2D" parent="BreakableSoftbody2D/Bone-39"] +visible = false +rotation = 1.5708 +node_a = NodePath("..") +node_b = NodePath("../../Bone-36") +softness = 60.0 + +[node name="Joint2D-Bone-39-Bone-35" type="PinJoint2D" parent="BreakableSoftbody2D/Bone-39"] +visible = false +rotation = -2.37248 +node_a = NodePath("..") +node_b = NodePath("../../Bone-35") +softness = 60.0 + +[node name="Joint2D-Bone-39-Bone-42" type="PinJoint2D" parent="BreakableSoftbody2D/Bone-39"] +visible = false +rotation = -1.5708 +node_a = NodePath("..") +node_b = NodePath("../../Bone-42") +softness = 60.0 + +[node name="Joint2D-Bone-39-Bone-37" type="PinJoint2D" parent="BreakableSoftbody2D/Bone-39"] +visible = false +rotation = 0.785398 +node_a = NodePath("..") +node_b = NodePath("../../Bone-37") +softness = 60.0 + +[node name="Joint2D-Bone-39-Bone-40" type="PinJoint2D" parent="BreakableSoftbody2D/Bone-39"] +visible = false +node_a = NodePath("..") +node_b = NodePath("../../Bone-40") +softness = 60.0 + +[node name="Joint2D-Bone-39-Bone-43" type="PinJoint2D" parent="BreakableSoftbody2D/Bone-39"] +visible = false +rotation = -0.727835 +node_a = NodePath("..") +node_b = NodePath("../../Bone-43") +softness = 60.0 + +[node name="Bone-40" type="RigidBody2D" parent="BreakableSoftbody2D" instance=ExtResource("4_13lkq")] +position = Vector2(239, 245) +input_pickable = true +mass = 0.0456818 +physics_material_override = ExtResource("6_eyp3s") +constant_force = Vector2(2.08165e-12, 2.08165e-12) +script = ExtResource("7_lk74m") +metadata/idx = 40 +metadata/bone_name = &"Bone-40" + +[node name="RectangleShape2D" type="CollisionShape2D" parent="BreakableSoftbody2D/Bone-40"] +shape = SubResource("RectangleShape2D_og4xt") + +[node name="RemoteTransform2D" type="RemoteTransform2D" parent="BreakableSoftbody2D/Bone-40"] +visible = false +remote_path = NodePath("../../Skeleton2D/Bone-40") +update_rotation = false +update_scale = false + +[node name="Joint2D-Bone-40-Bone-36" type="PinJoint2D" parent="BreakableSoftbody2D/Bone-40"] +visible = false +rotation = -3.92699 +node_a = NodePath("..") +node_b = NodePath("../../Bone-36") +softness = 60.0 + +[node name="Joint2D-Bone-40-Bone-37" type="PinJoint2D" parent="BreakableSoftbody2D/Bone-40"] +visible = false +rotation = 1.5708 +node_a = NodePath("..") +node_b = NodePath("../../Bone-37") +softness = 60.0 + +[node name="Joint2D-Bone-40-Bone-39" type="PinJoint2D" parent="BreakableSoftbody2D/Bone-40"] +visible = false +rotation = -3.14159 +node_a = NodePath("..") +node_b = NodePath("../../Bone-39") +softness = 60.0 + +[node name="Joint2D-Bone-40-Bone-38" type="PinJoint2D" parent="BreakableSoftbody2D/Bone-40"] +visible = false +rotation = 0.887515 +node_a = NodePath("..") +node_b = NodePath("../../Bone-38") +softness = 60.0 + +[node name="Joint2D-Bone-40-Bone-41" type="PinJoint2D" parent="BreakableSoftbody2D/Bone-40"] +visible = false +rotation = -0.284559 +node_a = NodePath("..") +node_b = NodePath("../../Bone-41") +softness = 60.0 + +[node name="Joint2D-Bone-40-Bone-42" type="PinJoint2D" parent="BreakableSoftbody2D/Bone-40"] +visible = false +rotation = -2.37248 +node_a = NodePath("..") +node_b = NodePath("../../Bone-42") +softness = 60.0 + +[node name="Joint2D-Bone-40-Bone-43" type="PinJoint2D" parent="BreakableSoftbody2D/Bone-40"] +visible = false +rotation = -1.5708 +node_a = NodePath("..") +node_b = NodePath("../../Bone-43") +softness = 60.0 + +[node name="Bone-41" type="RigidBody2D" parent="BreakableSoftbody2D" instance=ExtResource("4_13lkq")] +position = Vector2(248.287, 276.75) +input_pickable = true +mass = 0.0456818 +physics_material_override = ExtResource("6_eyp3s") +constant_force = Vector2(2.08165e-12, 2.08165e-12) +script = ExtResource("7_lk74m") +metadata/idx = 41 +metadata/bone_name = &"Bone-41" + +[node name="RectangleShape2D" type="CollisionShape2D" parent="BreakableSoftbody2D/Bone-41"] +shape = SubResource("RectangleShape2D_og4xt") + +[node name="RemoteTransform2D" type="RemoteTransform2D" parent="BreakableSoftbody2D/Bone-41"] +visible = false +remote_path = NodePath("../../Skeleton2D/Bone-41") +update_rotation = false +update_scale = false + +[node name="Joint2D-Bone-41-Bone-37" type="PinJoint2D" parent="BreakableSoftbody2D/Bone-41"] +visible = false +rotation = -4.13074 +node_a = NodePath("..") +node_b = NodePath("../../Bone-37") +softness = 60.0 + +[node name="Joint2D-Bone-41-Bone-38" type="PinJoint2D" parent="BreakableSoftbody2D/Bone-41"] +visible = false +rotation = 1.5708 +node_a = NodePath("..") +node_b = NodePath("../../Bone-38") +softness = 60.0 + +[node name="Joint2D-Bone-41-Bone-40" type="PinJoint2D" parent="BreakableSoftbody2D/Bone-41"] +visible = false +rotation = -3.42615 +node_a = NodePath("..") +node_b = NodePath("../../Bone-40") +softness = 60.0 + +[node name="Joint2D-Bone-41-Bone-43" type="PinJoint2D" parent="BreakableSoftbody2D/Bone-41"] +visible = false +rotation = -2.46564 +node_a = NodePath("..") +node_b = NodePath("../../Bone-43") +softness = 60.0 + +[node name="Bone-42" type="RigidBody2D" parent="BreakableSoftbody2D" instance=ExtResource("4_13lkq")] +position = Vector2(276.75, 206) +input_pickable = true +mass = 0.0456818 +physics_material_override = ExtResource("6_eyp3s") +constant_force = Vector2(2.08165e-12, 2.08165e-12) +script = ExtResource("7_lk74m") +metadata/idx = 42 +metadata/bone_name = &"Bone-42" + +[node name="RectangleShape2D" type="CollisionShape2D" parent="BreakableSoftbody2D/Bone-42"] +shape = SubResource("RectangleShape2D_og4xt") + +[node name="RemoteTransform2D" type="RemoteTransform2D" parent="BreakableSoftbody2D/Bone-42"] +visible = false +remote_path = NodePath("../../Skeleton2D/Bone-42") +update_rotation = false +update_scale = false + +[node name="Joint2D-Bone-42-Bone-34" type="PinJoint2D" parent="BreakableSoftbody2D/Bone-42"] +visible = false +rotation = -3.91071 +node_a = NodePath("..") +node_b = NodePath("../../Bone-34") +softness = 60.0 + +[node name="Joint2D-Bone-42-Bone-35" type="PinJoint2D" parent="BreakableSoftbody2D/Bone-42"] +visible = false +rotation = -3.14159 +node_a = NodePath("..") +node_b = NodePath("../../Bone-35") +softness = 60.0 + +[node name="Joint2D-Bone-42-Bone-39" type="PinJoint2D" parent="BreakableSoftbody2D/Bone-42"] +visible = false +rotation = 1.5708 +node_a = NodePath("..") +node_b = NodePath("../../Bone-39") +softness = 60.0 + +[node name="Joint2D-Bone-42-Bone-40" type="PinJoint2D" parent="BreakableSoftbody2D/Bone-42"] +visible = false +rotation = 0.769113 +node_a = NodePath("..") +node_b = NodePath("../../Bone-40") +softness = 60.0 + +[node name="Joint2D-Bone-42-Bone-43" type="PinJoint2D" parent="BreakableSoftbody2D/Bone-42"] +visible = false +rotation = 0.0767719 +node_a = NodePath("..") +node_b = NodePath("../../Bone-43") +softness = 60.0 + +[node name="Bone-43" type="RigidBody2D" parent="BreakableSoftbody2D" instance=ExtResource("4_13lkq")] +position = Vector2(273.75, 245) +input_pickable = true +mass = 0.0456818 +physics_material_override = ExtResource("6_eyp3s") +constant_force = Vector2(2.08165e-12, 2.08165e-12) +script = ExtResource("7_lk74m") +metadata/idx = 43 +metadata/bone_name = &"Bone-43" + +[node name="RectangleShape2D" type="CollisionShape2D" parent="BreakableSoftbody2D/Bone-43"] +shape = SubResource("RectangleShape2D_og4xt") + +[node name="RemoteTransform2D" type="RemoteTransform2D" parent="BreakableSoftbody2D/Bone-43"] +visible = false +remote_path = NodePath("../../Skeleton2D/Bone-43") +update_rotation = false +update_scale = false + +[node name="Joint2D-Bone-43-Bone-39" type="PinJoint2D" parent="BreakableSoftbody2D/Bone-43"] +visible = false +rotation = -3.86943 +node_a = NodePath("..") +node_b = NodePath("../../Bone-39") +softness = 60.0 + +[node name="Joint2D-Bone-43-Bone-40" type="PinJoint2D" parent="BreakableSoftbody2D/Bone-43"] +visible = false +rotation = 1.5708 +node_a = NodePath("..") +node_b = NodePath("../../Bone-40") +softness = 60.0 + +[node name="Joint2D-Bone-43-Bone-42" type="PinJoint2D" parent="BreakableSoftbody2D/Bone-43"] +visible = false +rotation = -3.06482 +node_a = NodePath("..") +node_b = NodePath("../../Bone-42") +softness = 60.0 + +[node name="Joint2D-Bone-43-Bone-41" type="PinJoint2D" parent="BreakableSoftbody2D/Bone-43"] +visible = false +rotation = 0.675954 +node_a = NodePath("..") +node_b = NodePath("../../Bone-41") +softness = 60.0 + +[node name="SoftBody" type="Label" parent="."] +offset_left = 37.0 +offset_top = 31.0 +offset_right = 309.0 +offset_bottom = 132.0 +text = "Regular Softbody +1. Create Softbody. +2. Set texture. +3. Optionally set exclude_texture." + +[node name="Floating Softbody" type="Label" parent="."] +offset_left = 444.0 +offset_top = 31.0 +offset_right = 716.0 +offset_bottom = 132.0 +text = "Floating Softbody: +Set gravity_scale to 0" + +[node name="Hanging Softbody" type="Label" parent="."] +offset_left = 846.0 +offset_top = 26.0 +offset_right = 1383.0 +offset_bottom = 127.0 +text = "Hanging Softbody: +Change RigidBody2D to StaticBody2D +Optionally call apply_force or apply_impulse to move it" + +[node name="Hanging Softbody2" type="Label" parent="."] +offset_left = 1324.0 +offset_top = 39.0 +offset_right = 1861.0 +offset_bottom = 140.0 +text = "Breakable Softbody: +Change break_distance_ratio to something greater than 1(eg. 1.1) +" + +[node name="StaticBody2D" type="StaticBody2D" parent="."] +position = Vector2(-9, 320) + +[node name="CollisionPolygon2D" type="CollisionPolygon2D" parent="StaticBody2D"] +position = Vector2(57, 522) +polygon = PackedVector2Array(-51, 39, 1282, 66, 1279, 28, 1348, -353, 1398, 25, 1403, 69, 1759, 32, 1753, 129, -54, 115) + +[node name="Polygon2D" type="Polygon2D" parent="StaticBody2D"] +position = Vector2(53, 519) +color = Color(0.109804, 0.109804, 0.109804, 0.427451) +polygon = PackedVector2Array(-51, 39, 1282, 66, 1280, 27, 1348, -353, 1401, 23, 1403, 69, 1759, 32, 1753, 129, -54, 115) + +[node name="Node" type="Node" parent="." node_paths=PackedStringArray("softbody2d")] +script = ExtResource("5_xux5r") +softbody2d = NodePath("../HangingSoftbody2D") +force = Vector2(4000, 2000) + +[node name="Timer" type="Timer" parent="Node"] +process_callback = 0 +autostart = true + +[node name="AnimatableBody2D" type="AnimatableBody2D" parent="."] +position = Vector2(1377, 94) + +[node name="CollisionShape2D" type="CollisionShape2D" parent="AnimatableBody2D"] +position = Vector2(26.5, -32) +shape = SubResource("RectangleShape2D_2boy7") + +[node name="Polygon2D" type="Polygon2D" parent="AnimatableBody2D"] +polygon = PackedVector2Array(-135.56, -72.08, 191.44, -72.08, 191.44, 8.92001, -138.56, 7.92001) + +[node name="AnimationPlayer" type="AnimationPlayer" parent="."] +libraries = { +"": SubResource("AnimationLibrary_2xdum") +} +autoplay = "new_animation" + +[connection signal="timeout" from="Node/Timer" to="Node" method="_on_timer_timeout"] diff --git a/project.godot b/project.godot index 524f482..8e68d7f 100644 --- a/project.godot +++ b/project.godot @@ -12,7 +12,7 @@ config_version=5 config/name="SoftBody2D" run/main_scene="res://demo/demo.tscn" -config/features=PackedStringArray("4.2") +config/features=PackedStringArray("4.3") config/icon="res://demo/softbody2d.png" [display]