diff --git a/JukeboxPannel.gd b/JukeboxPannel.gd new file mode 100644 index 0000000..3175c32 --- /dev/null +++ b/JukeboxPannel.gd @@ -0,0 +1,71 @@ + +extends Spatial + +# Member variables +var prev_pos = null +var last_click_pos = null +var viewport = null + + +func _input(event): + # Check if the event is a non-mouse event + var is_mouse_event = false + var mouse_events = [InputEventMouseButton, InputEventMouseMotion, InputEventScreenDrag, InputEventScreenTouch] + for mouse_event in mouse_events: + if (event is mouse_event): + is_mouse_event = true + break + + # If it is, then pass the event to the viewport + if (is_mouse_event == false): + viewport.input(event) + + +# Mouse events for Area +func _on_area_input_event(camera, event, click_pos, click_normal, shape_idx): + # Use click pos (click in 3d space, convert to area space) + var pos = get_node("Area").get_global_transform().affine_inverse() + # the click pos is not zero, then use it to convert from 3D space to area space + if (click_pos.x != 0 or click_pos.y != 0 or click_pos.z != 0): + pos *= click_pos + last_click_pos = click_pos + else: + # Otherwise, we have a motion event and need to use our last click pos + # and move it according to the relative position of the event. + # NOTE: this is not an exact 1-1 conversion, but it's pretty close + pos *= last_click_pos + if (event is InputEventMouseMotion or event is InputEventScreenDrag): + pos.x += event.relative.x / viewport.size.x + pos.y += event.relative.y / viewport.size.y + last_click_pos = pos + + # Convert to 2D + pos = Vector2(pos.x, pos.y) + + # Convert to viewport coordinate system + # Convert pos to a range from (0 - 1) + pos.y *= -1 + pos += Vector2(1, 1) + pos = pos / 2 + + # Convert pos to be in range of the viewport + pos.x *= viewport.size.x + pos.y *= viewport.size.y + + # Set the position in event + event.position = pos + event.global_position = pos + if (prev_pos == null): + prev_pos = pos + if (event is InputEventMouseMotion): + event.relative = pos - prev_pos + prev_pos = pos + + # Send the event to the viewport + viewport.input(event) + + +func _ready(): + viewport = get_node("Viewport") + get_node("Area").connect("input_event", self, "_on_area_input_event") + \ No newline at end of file diff --git a/scenes/GUI/GUI.tscn b/scenes/GUI/GUI.tscn index 3214acb..8b5708e 100644 --- a/scenes/GUI/GUI.tscn +++ b/scenes/GUI/GUI.tscn @@ -46,6 +46,7 @@ margin_left = 4.0 margin_top = 4.0 margin_right = 1020.0 margin_bottom = 596.0 +mouse_filter = 1 theme = SubResource( 2 ) _sections_unfolded = [ "Focus", "Margin", "Mouse", "Rect", "Size Flags", "Theme", "Visibility", "custom_constants" ] diff --git a/scenes/GUI/HUD/HUD.gd b/scenes/GUI/HUD/HUD.gd index 7349c61..a1074fd 100644 --- a/scenes/GUI/HUD/HUD.gd +++ b/scenes/GUI/HUD/HUD.gd @@ -31,15 +31,11 @@ func _on_SaveHUD_pressed(): func _on_Windows_gui_input( event ): if event is InputEventMouseButton \ - and event.button_index == BUTTON_RIGHT \ and Input.get_mouse_mode() == Input.MOUSE_MODE_VISIBLE \ - and not event.is_echo() \ - and not event.pressed: + and event.is_action_pressed( "ui_free_cursor" ): Input.set_mouse_mode( Input.MOUSE_MODE_CAPTURED ) elif event is InputEventMouseButton \ - and event.button_index == BUTTON_RIGHT \ and Input.get_mouse_mode() == Input.MOUSE_MODE_CAPTURED \ - and not event.is_echo() \ - and not event.pressed: + and event.is_action_pressed( "ui_free_cursor" ): Input.set_mouse_mode( Input.MOUSE_MODE_VISIBLE ) diff --git a/scenes/GUI/HUD/HUD.tscn b/scenes/GUI/HUD/HUD.tscn index a4cc805..2c5ac98 100644 --- a/scenes/GUI/HUD/HUD.tscn +++ b/scenes/GUI/HUD/HUD.tscn @@ -42,14 +42,15 @@ margin_right = 1024.0 margin_bottom = 600.0 rect_pivot_offset = Vector2( 0, 0 ) rect_clip_content = false -mouse_filter = 0 +mouse_filter = 2 mouse_default_cursor_shape = 0 size_flags_horizontal = 1 size_flags_vertical = 1 -_sections_unfolded = [ "Visibility" ] +_sections_unfolded = [ "Mouse", "Visibility" ] [node name="overlay_douleur" type="Panel" parent="." index="1"] +visible = false modulate = Color( 1, 0, 0, 0 ) anchor_left = 0.0 anchor_top = 0.0 @@ -59,11 +60,11 @@ margin_right = 1024.0 margin_bottom = 600.0 rect_pivot_offset = Vector2( 0, 0 ) rect_clip_content = false -mouse_filter = 0 +mouse_filter = 2 mouse_default_cursor_shape = 0 size_flags_horizontal = 1 size_flags_vertical = 1 -_sections_unfolded = [ "Visibility" ] +_sections_unfolded = [ "Mouse", "Visibility" ] [node name="Windows" type="ReferenceRect" parent="." index="2"] diff --git a/scenes/GUI/MusicControls/Music.gd b/scenes/GUI/MusicControls/Music.gd index 3b1fe6f..fc12fc9 100644 --- a/scenes/GUI/MusicControls/Music.gd +++ b/scenes/GUI/MusicControls/Music.gd @@ -1,6 +1,5 @@ extends VBoxContainer -#var songs_list = [ "Sangakanat", "pre-mix_khanat_main_theme" ] var songs_list = [] var current_song = "" var current_position = 0.0 diff --git a/scenes/GUI/MusicControls/MusicControls.tscn b/scenes/GUI/MusicControls/MusicControls.tscn index dc791e0..b87fce1 100644 --- a/scenes/GUI/MusicControls/MusicControls.tscn +++ b/scenes/GUI/MusicControls/MusicControls.tscn @@ -15,13 +15,13 @@ margin_right = 256.0 margin_bottom = 86.0 rect_pivot_offset = Vector2( 0, 0 ) rect_clip_content = false -mouse_filter = 0 -mouse_default_cursor_shape = 0 +mouse_filter = 1 +mouse_default_cursor_shape = 2 size_flags_horizontal = 1 size_flags_vertical = 1 alignment = 0 script = ExtResource( 1 ) -_sections_unfolded = [ "Rect", "Size Flags" ] +_sections_unfolded = [ "Mouse", "Rect", "Size Flags" ] [node name="Songs" type="Container" parent="." index="0"] @@ -32,10 +32,11 @@ anchor_bottom = 0.0 margin_right = 256.0 rect_pivot_offset = Vector2( 0, 0 ) rect_clip_content = false -mouse_filter = 0 +mouse_filter = 1 mouse_default_cursor_shape = 0 size_flags_horizontal = 1 size_flags_vertical = 1 +_sections_unfolded = [ "Mouse" ] [node name="pre-mix_khanat_main_theme" type="AudioStreamPlayer" parent="Songs" index="0"] @@ -102,7 +103,7 @@ rect_clip_content = false focus_mode = 2 mouse_filter = 0 mouse_default_cursor_shape = 0 -size_flags_horizontal = 1 +size_flags_horizontal = 3 size_flags_vertical = 1 toggle_mode = false action_mode = 0 @@ -113,6 +114,7 @@ flat = false align = 0 items = [ ] selected = -1 +_sections_unfolded = [ "Grow Direction", "Margin", "Rect", "Size Flags" ] [node name="Buttons" type="HBoxContainer" parent="." index="3"] @@ -130,7 +132,7 @@ mouse_default_cursor_shape = 0 size_flags_horizontal = 1 size_flags_vertical = 1 alignment = 0 -_sections_unfolded = [ "Rect" ] +_sections_unfolded = [ "Mouse", "Rect" ] [node name="Pause" type="Button" parent="Buttons" index="0"] diff --git a/scenes/Game/Character/Character.gd b/scenes/Game/Character/Character.gd index 7153c18..9b12e95 100644 --- a/scenes/Game/Character/Character.gd +++ b/scenes/Game/Character/Character.gd @@ -139,4 +139,3 @@ func _input(event): if Input.is_action_pressed( "hide_char" ): $MeshInstance.visible = not $MeshInstance.visible - \ No newline at end of file diff --git a/scenes/Game/Game.tscn b/scenes/Game/Game.tscn index b9c5e9d..b18885d 100644 --- a/scenes/Game/Game.tscn +++ b/scenes/Game/Game.tscn @@ -1,4 +1,4 @@ -[gd_scene load_steps=46 format=2] +[gd_scene load_steps=41 format=2] [ext_resource path="res://scenes/Game/Character/Character.tscn" type="PackedScene" id=1] [ext_resource path="res://scenes/Game/Terrain/Terrain.tscn" type="PackedScene" id=2] @@ -13,7 +13,6 @@ [ext_resource path="res://assets/Game/textures/fire_01.png" type="Texture" id=11] [ext_resource path="res://assets/Game/textures/fire_02.png" type="Texture" id=12] [ext_resource path="res://scenes/Game/jukebox/jukebox.tscn" type="PackedScene" id=13] -[ext_resource path="res://scenes/GUI/MusicControls/MusicControls.tscn" type="PackedScene" id=14] [sub_resource type="GDScript" id=1] @@ -777,75 +776,6 @@ material = SubResource( 26 ) custom_aabb = AABB( 0, 0, 0, 0, 0, 0 ) size = Vector2( 0.4, 0.4 ) -[sub_resource type="QuadMesh" id=28] - -custom_aabb = AABB( 0, 0, 0, 0, 0, 0 ) -size = Vector2( 2, 2 ) - -[sub_resource type="ViewportTexture" id=29] - -resource_local_to_scene = true -flags = 0 -viewport_path = NodePath("jukebox/Viewport") - -[sub_resource type="SpatialMaterial" id=30] - -resource_local_to_scene = true -render_priority = 0 -flags_transparent = true -flags_unshaded = true -flags_vertex_lighting = false -flags_no_depth_test = false -flags_use_point_size = false -flags_world_triplanar = false -flags_fixed_size = false -flags_albedo_tex_force_srgb = true -vertex_color_use_as_albedo = false -vertex_color_is_srgb = false -params_diffuse_mode = 0 -params_specular_mode = 0 -params_blend_mode = 0 -params_cull_mode = 2 -params_depth_draw_mode = 0 -params_line_width = 1.0 -params_point_size = 1.0 -params_billboard_mode = 0 -params_grow = false -params_use_alpha_scissor = false -albedo_color = Color( 1, 1, 1, 1 ) -albedo_texture = SubResource( 29 ) -metallic = 0.0 -metallic_specular = 0.5 -metallic_texture_channel = 0 -roughness = 0.0 -roughness_texture_channel = 0 -emission_enabled = false -normal_enabled = false -rim_enabled = false -clearcoat_enabled = false -anisotropy_enabled = false -ao_enabled = false -depth_enabled = false -subsurf_scatter_enabled = false -transmission_enabled = false -refraction_enabled = false -detail_enabled = false -uv1_scale = Vector3( 1, 1, 1 ) -uv1_offset = Vector3( 0, 0, 0 ) -uv1_triplanar = false -uv1_triplanar_sharpness = 1.0 -uv2_scale = Vector3( 1, 1, 1 ) -uv2_offset = Vector3( 0, 0, 0 ) -uv2_triplanar = false -uv2_triplanar_sharpness = 1.0 -proximity_fade_enable = false -distance_fade_enable = false -_sections_unfolded = [ "Albedo", "Flags", "Metallic", "Parameters", "Resource" ] - -[sub_resource type="ConvexPolygonShape" id=31] - -points = PoolVector3Array( -0.5, -0.5, 0, -0.5, 0.5, 0, 0.5, 0.5, 0, 0.5, -0.5, 0 ) - [node name="Game" type="Spatial" index="0"] _sections_unfolded = [ "Transform" ] @@ -1205,91 +1135,9 @@ draw_passes = 2 draw_pass_1 = SubResource( 25 ) draw_pass_2 = SubResource( 27 ) -[node name="jukebox" parent="." index="2" instance=ExtResource( 13 )] +[node name="jukebox" parent="World" index="8" instance=ExtResource( 13 )] transform = Transform( 1, 0, 0, 0, 1, 0, 0, 0, 1, -7.67816, 0, 0 ) -_sections_unfolded = [ "Transform" ] - -[node name="JukeBoxArea" type="Area" parent="jukebox" index="3"] - -transform = Transform( -4.96064e-008, -0.173067, 0.981514, 3.42613e-008, 0.981514, 0.173067, -0.996655, 4.23548e-008, -4.29033e-008, 0.5, 2.5, 0 ) -input_ray_pickable = true -input_capture_on_drag = true -space_override = 0 -gravity_point = false -gravity_distance_scale = 0.0 -gravity_vec = Vector3( 0, -1, 0 ) -gravity = 9.8 -linear_damp = 0.1 -angular_damp = 1.0 -priority = 0.0 -monitoring = true -monitorable = true -collision_layer = 1 -collision_mask = 1 -audio_bus_override = false -audio_bus_name = "Master" -reverb_bus_enable = false -reverb_bus_name = "Master" -reverb_bus_amount = 0.0 -reverb_bus_uniformity = 0.0 -_sections_unfolded = [ "Collision", "Transform" ] - -[node name="MeshInstance" type="MeshInstance" parent="jukebox/JukeBoxArea" index="0"] - -transform = Transform( 1, 0, 0, -7.10543e-015, 1, -9.55343e-016, 7.10543e-015, -9.55343e-016, 1, 0, 0, 0 ) -layers = 1 -material_override = null -cast_shadow = 1 -extra_cull_margin = 0.0 -use_in_baked_light = false -lod_min_distance = 0.0 -lod_min_hysteresis = 0.0 -lod_max_distance = 0.0 -lod_max_hysteresis = 0.0 -mesh = SubResource( 28 ) -skeleton = NodePath("..") -material/0 = SubResource( 30 ) -_sections_unfolded = [ "Geometry", "Transform", "material" ] - -[node name="CollisionShape" type="CollisionShape" parent="jukebox/JukeBoxArea" index="1"] - -shape = SubResource( 31 ) -disabled = false -_sections_unfolded = [ "Transform" ] - -[node name="Viewport" type="Viewport" parent="jukebox" index="4"] - -arvr = false -size = Vector2( 256, 256 ) -own_world = false -world = null -transparent_bg = true -msaa = 0 -hdr = false -disable_3d = false -usage = 0 -debug_draw = 0 -render_target_v_flip = true -render_target_clear_mode = 0 -render_target_update_mode = 2 -audio_listener_enable_2d = false -audio_listener_enable_3d = false -physics_object_picking = false -gui_disable_input = false -gui_snap_controls_to_pixels = true -shadow_atlas_size = 0 -shadow_atlas_quad_0 = 2 -shadow_atlas_quad_1 = 2 -shadow_atlas_quad_2 = 3 -shadow_atlas_quad_3 = 4 -_sections_unfolded = [ "Audio Listener", "GUI", "Physics", "Render Target", "Rendering", "Shadow Atlas" ] - -[node name="Music" parent="jukebox/Viewport" index="0" instance=ExtResource( 14 )] - -mouse_filter = 1 -mouse_default_cursor_shape = 2 -_sections_unfolded = [ "Mouse", "Rect", "Size Flags", "custom_constants" ] [connection signal="sleeping_state_changed" from="World/Box" to="World/Box" method="_on_Box_sleeping_state_changed"] diff --git a/scenes/Game/jukebox/Gui_in_3D.tscn b/scenes/Game/jukebox/Gui_in_3D.tscn new file mode 100644 index 0000000..bea848f --- /dev/null +++ b/scenes/Game/jukebox/Gui_in_3D.tscn @@ -0,0 +1,188 @@ +[gd_scene load_steps=8 format=2] + +[ext_resource path="res://scenes/Game/jukebox/gui_3d.gd" type="Script" id=1] +[ext_resource path="res://scenes/GUI/MusicControls/MusicControls.tscn" type="PackedScene" id=2] + +[sub_resource type="PlaneMesh" id=1] + +custom_aabb = AABB( 0, 0, 0, 0, 0, 0 ) +size = Vector2( 2, 2 ) +subdivide_width = 0 +subdivide_depth = 0 + +[sub_resource type="ViewportTexture" id=2] + +resource_local_to_scene = true +flags = 0 +viewport_path = NodePath("Viewport") +_sections_unfolded = [ "Resource" ] + +[sub_resource type="SpatialMaterial" id=3] + +resource_local_to_scene = true +render_priority = 0 +flags_transparent = true +flags_unshaded = true +flags_vertex_lighting = false +flags_no_depth_test = false +flags_use_point_size = false +flags_world_triplanar = false +flags_fixed_size = false +flags_albedo_tex_force_srgb = true +vertex_color_use_as_albedo = false +vertex_color_is_srgb = false +params_diffuse_mode = 1 +params_specular_mode = 0 +params_blend_mode = 0 +params_cull_mode = 2 +params_depth_draw_mode = 0 +params_line_width = 1.0 +params_point_size = 1.0 +params_billboard_mode = 0 +params_grow = false +params_use_alpha_scissor = false +albedo_color = Color( 1, 1, 1, 1 ) +albedo_texture = SubResource( 2 ) +metallic = 0.0 +metallic_specular = 0.5 +metallic_texture_channel = 0 +roughness = 0.0 +roughness_texture_channel = 0 +emission_enabled = true +emission = Color( 0, 0, 0, 1 ) +emission_energy = 1.0 +emission_operator = 0 +emission_on_uv2 = false +normal_enabled = false +rim_enabled = false +clearcoat_enabled = false +anisotropy_enabled = false +ao_enabled = false +depth_enabled = false +subsurf_scatter_enabled = false +transmission_enabled = false +refraction_enabled = false +detail_enabled = false +uv1_scale = Vector3( 1, 1, 1 ) +uv1_offset = Vector3( 0, 0, 0 ) +uv1_triplanar = false +uv1_triplanar_sharpness = 1.0 +uv2_scale = Vector3( 1, 1, 1 ) +uv2_offset = Vector3( 0, 0, 0 ) +uv2_triplanar = false +uv2_triplanar_sharpness = 1.0 +proximity_fade_enable = false +distance_fade_enable = false +_sections_unfolded = [ "Albedo", "Flags", "Metallic", "Parameters" ] + +[sub_resource type="GDScript" id=4] + +script/source = "tool +extends Object +func e(): + return 0.01 +" + +[sub_resource type="BoxShape" id=5] + +extents = Vector3( 1, 1, 0.01 ) +script = SubResource( 4 ) + +[node name="Gui_in_3D" type="Spatial"] + +script = ExtResource( 1 ) +_sections_unfolded = [ "Transform" ] + +[node name="Viewport" type="Viewport" parent="." index="0"] + +arvr = false +size = Vector2( 256, 256 ) +own_world = false +world = null +transparent_bg = true +msaa = 0 +hdr = false +disable_3d = false +usage = 0 +debug_draw = 0 +render_target_v_flip = true +render_target_clear_mode = 0 +render_target_update_mode = 2 +audio_listener_enable_2d = false +audio_listener_enable_3d = false +physics_object_picking = false +gui_disable_input = false +gui_snap_controls_to_pixels = true +shadow_atlas_size = 0 +shadow_atlas_quad_0 = 2 +shadow_atlas_quad_1 = 2 +shadow_atlas_quad_2 = 3 +shadow_atlas_quad_3 = 4 +_sections_unfolded = [ "Audio Listener", "GUI", "Physics", "Render Target", "Rendering", "Shadow Atlas" ] + +[node name="GUI" type="Control" parent="Viewport" index="0"] + +anchor_left = 0.0 +anchor_top = 0.0 +anchor_right = 0.0 +anchor_bottom = 0.0 +margin_right = 40.0 +margin_bottom = 40.0 +rect_pivot_offset = Vector2( 0, 0 ) +rect_clip_content = false +mouse_filter = 1 +mouse_default_cursor_shape = 0 +size_flags_horizontal = 1 +size_flags_vertical = 1 +_sections_unfolded = [ "Mouse", "Rect" ] + +[node name="Music" parent="Viewport/GUI" index="0" instance=ExtResource( 2 )] + +[node name="Area" type="Area" parent="." index="1"] + +input_ray_pickable = true +input_capture_on_drag = true +space_override = 0 +gravity_point = false +gravity_distance_scale = 0.0 +gravity_vec = Vector3( 0, -1, 0 ) +gravity = 9.8 +linear_damp = 0.1 +angular_damp = 1.0 +priority = 0.0 +monitoring = true +monitorable = true +collision_layer = 1 +collision_mask = 1 +audio_bus_override = false +audio_bus_name = "Master" +reverb_bus_enable = false +reverb_bus_name = "Master" +reverb_bus_amount = 0.0 +reverb_bus_uniformity = 0.0 +_sections_unfolded = [ "Transform" ] + +[node name="Quad" type="MeshInstance" parent="Area" index="0"] + +transform = Transform( -1, 8.74228e-008, -4.37114e-008, -4.37114e-008, 1.91069e-015, 1, 8.74228e-008, 1, 1.91069e-015, 0, 0, 0 ) +layers = 1 +material_override = null +cast_shadow = 1 +extra_cull_margin = 0.0 +use_in_baked_light = false +lod_min_distance = 0.0 +lod_min_hysteresis = 0.0 +lod_max_distance = 0.0 +lod_max_hysteresis = 0.0 +mesh = SubResource( 1 ) +skeleton = NodePath("..") +material/0 = SubResource( 3 ) +_sections_unfolded = [ "Geometry", "Transform", "material" ] + +[node name="CollisionShape" type="CollisionShape" parent="Area" index="1"] + +shape = SubResource( 5 ) +disabled = false +_sections_unfolded = [ "Transform" ] + + diff --git a/scenes/Game/jukebox/JukeboxPannel.tscn b/scenes/Game/jukebox/JukeboxPannel.tscn new file mode 100644 index 0000000..b32bc70 --- /dev/null +++ b/scenes/Game/jukebox/JukeboxPannel.tscn @@ -0,0 +1,25 @@ +[gd_scene load_steps=2 format=2] + +[ext_resource path="res://scenes/Game/jukebox/Gui_in_3D.tscn" type="PackedScene" id=1] + +[node name="JukeboxPannel" type="Spatial"] + +[node name="Gui_in_3D" parent="." index="0" instance=ExtResource( 1 )] + +[node name="Camera" type="Camera" parent="." index="1"] + +transform = Transform( 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 2.01693 ) +keep_aspect = 1 +cull_mask = 1048575 +environment = null +h_offset = 0.0 +v_offset = 0.0 +doppler_tracking = 0 +projection = 0 +current = false +fov = 70.0 +size = 1.0 +near = 0.05 +far = 100.0 + + diff --git a/scenes/Game/jukebox/gui_3d.gd b/scenes/Game/jukebox/gui_3d.gd new file mode 100644 index 0000000..2a61ca1 --- /dev/null +++ b/scenes/Game/jukebox/gui_3d.gd @@ -0,0 +1,72 @@ + +extends Spatial + +# Member variables +var prev_pos = null +var last_click_pos = null +var viewport = null + + +func _input(event): + # Check if the event is a non-mouse event + var is_mouse_event = false + var mouse_events = [InputEventMouseButton, InputEventMouseMotion, InputEventScreenDrag, InputEventScreenTouch] + for mouse_event in mouse_events: + if (event is mouse_event): + is_mouse_event = true + break + + # If it is, then pass the event to the viewport + if (is_mouse_event == false): + viewport.input(event) + + +# Mouse events for Area +func _on_area_input_event(camera, event, click_pos, click_normal, shape_idx): + print("AREA") + # Use click pos (click in 3d space, convert to area space) + var pos = get_node("Area").get_global_transform().affine_inverse() + # the click pos is not zero, then use it to convert from 3D space to area space + if (click_pos.x != 0 or click_pos.y != 0 or click_pos.z != 0): + pos *= click_pos + last_click_pos = click_pos + else: + # Otherwise, we have a motion event and need to use our last click pos + # and move it according to the relative position of the event. + # NOTE: this is not an exact 1-1 conversion, but it's pretty close + pos *= last_click_pos + if (event is InputEventMouseMotion or event is InputEventScreenDrag): + pos.x += event.relative.x / viewport.size.x + pos.y += event.relative.y / viewport.size.y + last_click_pos = pos + + # Convert to 2D + pos = Vector2(pos.x, pos.y) + + # Convert to viewport coordinate system + # Convert pos to a range from (0 - 1) + pos.y *= -1 + pos += Vector2(1, 1) + pos = pos / 2 + + # Convert pos to be in range of the viewport + pos.x *= viewport.size.x + pos.y *= viewport.size.y + + # Set the position in event + event.position = pos + event.global_position = pos + if (prev_pos == null): + prev_pos = pos + if (event is InputEventMouseMotion): + event.relative = pos - prev_pos + prev_pos = pos + + # Send the event to the viewport + viewport.input(event) + + +func _ready(): + viewport = get_node("Viewport") + get_node("Area").connect("input_event", self, "_on_area_input_event") + \ No newline at end of file diff --git a/scenes/Game/jukebox/jukebox.gd b/scenes/Game/jukebox/jukebox.gd index 30afb9c..449353e 100644 --- a/scenes/Game/jukebox/jukebox.gd +++ b/scenes/Game/jukebox/jukebox.gd @@ -8,7 +8,7 @@ var viewport = null func _ready(): viewport = get_node("Viewport") - get_node("JukeBoxArea").connect("input_event", self, "_on_area_input_event") + get_node("Area").connect("input_event", self, "_on_area_input_event") func _input(event): # Check if the event is a non-mouse event @@ -26,9 +26,10 @@ func _input(event): # Mouse events for Area func _on_area_input_event(camera, event, click_pos, click_normal, shape_idx): - print("area") + # Use click pos (click in 3d space, convert to area space) - var pos = get_node("JukeBoxArea").get_global_transform().affine_inverse() + var pos = get_node("Area").get_global_transform().affine_inverse() + # the click pos is not zero, then use it to convert from 3D space to area space if (click_pos.x != 0 or click_pos.y != 0 or click_pos.z != 0): pos *= click_pos @@ -42,7 +43,7 @@ func _on_area_input_event(camera, event, click_pos, click_normal, shape_idx): pos.x += event.relative.x / viewport.size.x pos.y += event.relative.y / viewport.size.y last_click_pos = pos - + # Convert to 2D pos = Vector2(pos.x, pos.y) @@ -70,9 +71,10 @@ func _on_area_input_event(camera, event, click_pos, click_normal, shape_idx): func _on_Area_body_entered(body): - if get_node( "JukeBoxArea" ) and body.name == "Character": - get_node( "JukeBoxArea" ).show() + if get_node( "Area" ) and body.name == "Character": + get_node( "Area" ).show() func _on_Area_body_exited(body): - if get_node( "JukeBoxArea" ) and body.name == "Character": - get_node( "JukeBoxArea" ).hide() + if get_node( "Area" ) and body.name == "Character": + get_node( "Area" ).hide() + diff --git a/scenes/Game/jukebox/jukebox.tscn b/scenes/Game/jukebox/jukebox.tscn index 6a6e5f5..ecb1ee7 100644 --- a/scenes/Game/jukebox/jukebox.tscn +++ b/scenes/Game/jukebox/jukebox.tscn @@ -1,7 +1,7 @@ -[gd_scene load_steps=12 format=2] +[gd_scene load_steps=11 format=2] -[ext_resource path="res://scenes/Game/jukebox/jukebox.gd" type="Script" id=1] -[ext_resource path="res://assets/Game/jukebox/jukebox_colorgrid_tex.png" type="Texture" id=2] +[ext_resource path="res://assets/Game/jukebox/jukebox_colorgrid_tex.png" type="Texture" id=1] +[ext_resource path="res://scenes/Game/jukebox/JukeboxPannel.tscn" type="PackedScene" id=2] [sub_resource type="SpatialMaterial" id=1] @@ -71,7 +71,7 @@ surfaces/0 = { "vertex_count": 2876 } -[sub_resource type="SpatialMaterial" id=5] +[sub_resource type="SpatialMaterial" id=3] render_priority = 0 flags_transparent = false @@ -95,7 +95,7 @@ params_billboard_mode = 0 params_grow = false params_use_alpha_scissor = false albedo_color = Color( 1, 1, 1, 1 ) -albedo_texture = ExtResource( 2 ) +albedo_texture = ExtResource( 1 ) metallic = 0.5 metallic_specular = 0.5 metallic_texture_channel = 0 @@ -124,11 +124,11 @@ proximity_fade_enable = false distance_fade_enable = false _sections_unfolded = [ "Albedo", "Metallic" ] -[sub_resource type="ConvexPolygonShape" id=6] +[sub_resource type="ConvexPolygonShape" id=4] points = PoolVector3Array( 0, -0.461914, -0.191284, 0.0190277, -0.490234, -0.0956421, 0, -0.490234, -0.0975342, 0, 0.0975342, -0.490234, 0.0975342, 0, -0.490234, 0, 0, -0.5, 0, 0.490234, -0.0975342, 0, 0.5, 0, 0.0190277, 0.490234, -0.0956421, 0, -0.5, 0, 0, -0.490234, -0.0975342, 0.0190277, -0.490234, -0.0956421, 0, 0, -0.5, 0.0956421, -0.0975342, -0.480957, 0, -0.0975342, -0.490234, 0, 0.490234, -0.0975342, 0.037323, 0.461914, -0.187622, 0, 0.461914, -0.191284, 0, -0.0975342, -0.490234, 0.0900879, -0.191284, -0.452881, 0, -0.191284, -0.461914, 0, 0.461914, -0.191284, 0.0541687, 0.415527, -0.272217, 0, 0.415527, -0.277588, 0, -0.191284, -0.461914, 0.0810547, -0.277588, -0.407715, 0, -0.277588, -0.415527, 0, 0.415527, -0.277588, 0.0689697, 0.353516, -0.34668, 0, 0.353516, -0.353516, 0, -0.277588, -0.415527, 0.0689697, -0.353516, -0.34668, 0, -0.353516, -0.353516, 0, 0.353516, -0.353516, 0.0810547, 0.277588, -0.407715, 0, 0.277588, -0.415527, 0, -0.353516, -0.353516, 0.0541687, -0.415527, -0.272217, 0, -0.415527, -0.277588, 0, 0.277588, -0.415527, 0.0900879, 0.191284, -0.452881, 0, 0.191284, -0.461914, 0, -0.415527, -0.277588, 0.037323, -0.461914, -0.187622, 0, -0.461914, -0.191284, 0, 0.191284, -0.461914, 0.0956421, 0.0975342, -0.480957, 0, 0.0975342, -0.490234, 0.0810547, 0.277588, -0.407715, 0.176758, 0.191284, -0.426758, 0.0900879, 0.191284, -0.452881, 0.0541687, -0.415527, -0.272217, 0.0731812, -0.461914, -0.176758, 0.037323, -0.461914, -0.187622, 0.0900879, 0.191284, -0.452881, 0.187622, 0.0975342, -0.452881, 0.0956421, 0.0975342, -0.480957, 0.037323, -0.461914, -0.187622, 0.037323, -0.490234, -0.0900879, 0.0190277, -0.490234, -0.0956421, 0.0956421, 0.0975342, -0.480957, 0.191284, 0, -0.461914, 0.0975342, 0, -0.490234, 0.0190277, 0.490234, -0.0956421, 0, 0.5, 0, 0.037323, 0.490234, -0.0900879, 0, -0.5, 0, 0.0190277, -0.490234, -0.0956421, 0.037323, -0.490234, -0.0900879, 0.0975342, 0, -0.490234, 0.187622, -0.0975342, -0.452881, 0.0956421, -0.0975342, -0.480957, 0.0190277, 0.490234, -0.0956421, 0.0731812, 0.461914, -0.176758, 0.037323, 0.461914, -0.187622, 0.0956421, -0.0975342, -0.480957, 0.176758, -0.191284, -0.426758, 0.0900879, -0.191284, -0.452881, 0.037323, 0.461914, -0.187622, 0.106262, 0.415527, -0.256592, 0.0541687, 0.415527, -0.272217, 0.0900879, -0.191284, -0.452881, 0.159058, -0.277588, -0.384033, 0.0810547, -0.277588, -0.407715, 0.0541687, 0.415527, -0.272217, 0.135254, 0.353516, -0.326416, 0.0689697, 0.353516, -0.34668, 0.0810547, -0.277588, -0.407715, 0.135254, -0.353516, -0.326416, 0.0689697, -0.353516, -0.34668, 0.0689697, 0.353516, -0.34668, 0.159058, 0.277588, -0.384033, 0.0810547, 0.277588, -0.407715, 0.0689697, -0.353516, -0.34668, 0.106262, -0.415527, -0.256592, 0.0541687, -0.415527, -0.272217, 0.187622, -0.0975342, -0.452881, 0.256592, -0.191284, -0.384033, 0.176758, -0.191284, -0.426758, 0.0731812, 0.461914, -0.176758, 0.154297, 0.415527, -0.230957, 0.106262, 0.415527, -0.256592, 0.176758, -0.191284, -0.426758, 0.230957, -0.277588, -0.345459, 0.159058, -0.277588, -0.384033, 0.106262, 0.415527, -0.256592, 0.196411, 0.353516, -0.293945, 0.135254, 0.353516, -0.326416, 0.159058, -0.277588, -0.384033, 0.196411, -0.353516, -0.293945, 0.135254, -0.353516, -0.326416, 0.135254, 0.353516, -0.326416, 0.230957, 0.277588, -0.345459, 0.159058, 0.277588, -0.384033, 0.135254, -0.353516, -0.326416, 0.154297, -0.415527, -0.230957, 0.106262, -0.415527, -0.256592, 0.159058, 0.277588, -0.384033, 0.256592, 0.191284, -0.384033, 0.176758, 0.191284, -0.426758, 0.106262, -0.415527, -0.256592, 0.106262, -0.461914, -0.159058, 0.0731812, -0.461914, -0.176758, 0.176758, 0.191284, -0.426758, 0.272217, 0.0975342, -0.407715, 0.187622, 0.0975342, -0.452881, 0.0731812, -0.461914, -0.176758, 0.0541687, -0.490234, -0.0810547, 0.037323, -0.490234, -0.0900879, 0.187622, 0.0975342, -0.452881, 0.277588, 0, -0.415527, 0.191284, 0, -0.461914, 0.037323, 0.490234, -0.0900879, 0, 0.5, 0, 0.0541687, 0.490234, -0.0810547, 0, -0.5, 0, 0.037323, -0.490234, -0.0900879, 0.0541687, -0.490234, -0.0810547, 0.191284, 0, -0.461914, 0.272217, -0.0975342, -0.407715, 0.187622, -0.0975342, -0.452881, 0.037323, 0.490234, -0.0900879, 0.106262, 0.461914, -0.159058, 0.0731812, 0.461914, -0.176758, 0.154297, -0.415527, -0.230957, 0.135254, -0.461914, -0.135254, 0.106262, -0.461914, -0.159058, 0.256592, 0.191284, -0.384033, 0.34668, 0.0975342, -0.34668, 0.272217, 0.0975342, -0.407715, 0.106262, -0.461914, -0.159058, 0.0689697, -0.490234, -0.0689697, 0.0541687, -0.490234, -0.0810547, 0.272217, 0.0975342, -0.407715, 0.353516, 0, -0.353516, 0.277588, 0, -0.415527, 0.0541687, 0.490234, -0.0810547, 0, 0.5, 0, 0.0689697, 0.490234, -0.0689697, 0, -0.5, 0, 0.0541687, -0.490234, -0.0810547, 0.0689697, -0.490234, -0.0689697, 0.277588, 0, -0.415527, 0.34668, -0.0975342, -0.34668, 0.272217, -0.0975342, -0.407715, 0.0541687, 0.490234, -0.0810547, 0.135254, 0.461914, -0.135254, 0.106262, 0.461914, -0.159058, 0.272217, -0.0975342, -0.407715, 0.326416, -0.191284, -0.326416, 0.256592, -0.191284, -0.384033, 0.106262, 0.461914, -0.159058, 0.196411, 0.415527, -0.196411, 0.154297, 0.415527, -0.230957, 0.256592, -0.191284, -0.384033, 0.293945, -0.277588, -0.293945, 0.230957, -0.277588, -0.345459, 0.154297, 0.415527, -0.230957, 0.25, 0.353516, -0.25, 0.196411, 0.353516, -0.293945, 0.230957, -0.277588, -0.345459, 0.25, -0.353516, -0.25, 0.196411, -0.353516, -0.293945, 0.196411, 0.353516, -0.293945, 0.293945, 0.277588, -0.293945, 0.230957, 0.277588, -0.345459, 0.196411, -0.353516, -0.293945, 0.196411, -0.415527, -0.196411, 0.154297, -0.415527, -0.230957, 0.230957, 0.277588, -0.345459, 0.326416, 0.191284, -0.326416, 0.256592, 0.191284, -0.384033, 0.326416, -0.191284, -0.326416, 0.345459, -0.277588, -0.230957, 0.293945, -0.277588, -0.293945, 0.196411, 0.415527, -0.196411, 0.293945, 0.353516, -0.196411, 0.25, 0.353516, -0.25, 0.293945, -0.277588, -0.293945, 0.293945, -0.353516, -0.196411, 0.25, -0.353516, -0.25, 0.25, 0.353516, -0.25, 0.345459, 0.277588, -0.230957, 0.293945, 0.277588, -0.293945, 0.25, -0.353516, -0.25, 0.230957, -0.415527, -0.154297, 0.196411, -0.415527, -0.196411, 0.293945, 0.277588, -0.293945, 0.384033, 0.191284, -0.256592, 0.326416, 0.191284, -0.326416, 0.196411, -0.415527, -0.196411, 0.159058, -0.461914, -0.106262, 0.135254, -0.461914, -0.135254, 0.326416, 0.191284, -0.326416, 0.407715, 0.0975342, -0.272217, 0.34668, 0.0975342, -0.34668, 0.135254, -0.461914, -0.135254, 0.0810547, -0.490234, -0.0541687, 0.0689697, -0.490234, -0.0689697, 0.34668, 0.0975342, -0.34668, 0.415527, 0, -0.277588, 0.353516, 0, -0.353516, 0.0689697, 0.490234, -0.0689697, 0, 0.5, 0, 0.0810547, 0.490234, -0.0541687, 0, -0.5, 0, 0.0689697, -0.490234, -0.0689697, 0.0810547, -0.490234, -0.0541687, 0.353516, 0, -0.353516, 0.407715, -0.0975342, -0.272217, 0.34668, -0.0975342, -0.34668, 0.0689697, 0.490234, -0.0689697, 0.159058, 0.461914, -0.106262, 0.135254, 0.461914, -0.135254, 0.34668, -0.0975342, -0.34668, 0.384033, -0.191284, -0.256592, 0.326416, -0.191284, -0.326416, 0.135254, 0.461914, -0.135254, 0.230957, 0.415527, -0.154297, 0.196411, 0.415527, -0.196411, 0.159058, -0.461914, -0.106262, 0.0900879, -0.490234, -0.037323, 0.0810547, -0.490234, -0.0541687, 0.407715, 0.0975342, -0.272217, 0.461914, 0, -0.191284, 0.415527, 0, -0.277588, 0.0810547, 0.490234, -0.0541687, 0, 0.5, 0, 0.0900879, 0.490234, -0.037323, 0, -0.5, 0, 0.0810547, -0.490234, -0.0541687, 0.0900879, -0.490234, -0.037323, 0.415527, 0, -0.277588, 0.452881, -0.0975342, -0.187622, 0.407715, -0.0975342, -0.272217, 0.0810547, 0.490234, -0.0541687, 0.176758, 0.461914, -0.0731812, 0.159058, 0.461914, -0.106262, 0.407715, -0.0975342, -0.272217, 0.426758, -0.191284, -0.176758, 0.384033, -0.191284, -0.256592, 0.159058, 0.461914, -0.106262, 0.256592, 0.415527, -0.106262, 0.230957, 0.415527, -0.154297, 0.384033, -0.191284, -0.256592, 0.384033, -0.277588, -0.159058, 0.345459, -0.277588, -0.230957, 0.230957, 0.415527, -0.154297, 0.326416, 0.353516, -0.135254, 0.293945, 0.353516, -0.196411, 0.345459, -0.277588, -0.230957, 0.326416, -0.353516, -0.135254, 0.293945, -0.353516, -0.196411, 0.293945, 0.353516, -0.196411, 0.384033, 0.277588, -0.159058, 0.345459, 0.277588, -0.230957, 0.293945, -0.353516, -0.196411, 0.256592, -0.415527, -0.106262, 0.230957, -0.415527, -0.154297, 0.345459, 0.277588, -0.230957, 0.426758, 0.191284, -0.176758, 0.384033, 0.191284, -0.256592, 0.230957, -0.415527, -0.154297, 0.176758, -0.461914, -0.0731812, 0.159058, -0.461914, -0.106262, 0.384033, 0.191284, -0.256592, 0.452881, 0.0975342, -0.187622, 0.407715, 0.0975342, -0.272217, 0.256592, 0.415527, -0.106262, 0.34668, 0.353516, -0.0689697, 0.326416, 0.353516, -0.135254, 0.384033, -0.277588, -0.159058, 0.34668, -0.353516, -0.0689697, 0.326416, -0.353516, -0.135254, 0.326416, 0.353516, -0.135254, 0.407715, 0.277588, -0.0810547, 0.384033, 0.277588, -0.159058, 0.326416, -0.353516, -0.135254, 0.272217, -0.415527, -0.0541687, 0.256592, -0.415527, -0.106262, 0.384033, 0.277588, -0.159058, 0.452881, 0.191284, -0.0900879, 0.426758, 0.191284, -0.176758, 0.256592, -0.415527, -0.106262, 0.187622, -0.461914, -0.037323, 0.176758, -0.461914, -0.0731812, 0.426758, 0.191284, -0.176758, 0.480957, 0.0975342, -0.0956421, 0.452881, 0.0975342, -0.187622, 0.176758, -0.461914, -0.0731812, 0.0956421, -0.490234, -0.0190277, 0.0900879, -0.490234, -0.037323, 0.452881, 0.0975342, -0.187622, 0.490234, 0, -0.0975342, 0.461914, 0, -0.191284, 0.0900879, 0.490234, -0.037323, 0, 0.5, 0, 0.0956421, 0.490234, -0.0190277, 0, -0.5, 0, 0.0900879, -0.490234, -0.037323, 0.0956421, -0.490234, -0.0190277, 0.461914, 0, -0.191284, 0.480957, -0.0975342, -0.0956421, 0.452881, -0.0975342, -0.187622, 0.0900879, 0.490234, -0.037323, 0.187622, 0.461914, -0.037323, 0.176758, 0.461914, -0.0731812, 0.452881, -0.0975342, -0.187622, 0.452881, -0.191284, -0.0900879, 0.426758, -0.191284, -0.176758, 0.176758, 0.461914, -0.0731812, 0.272217, 0.415527, -0.0541687, 0.256592, 0.415527, -0.106262, 0.426758, -0.191284, -0.176758, 0.407715, -0.277588, -0.0810547, 0.384033, -0.277588, -0.159058, 0.480957, 0.0975342, -0.0956421, 0.5, 0, 0, 0.490234, 0, -0.0975342, 0.0956421, 0.490234, -0.0190277, 0, 0.5, 0, 0.0975342, 0.490234, 0, 0, -0.5, 0, 0.0956421, -0.490234, -0.0190277, 0.0975342, -0.490234, 0, 0.490234, 0, -0.0975342, 0.490234, -0.0975342, 0, 0.480957, -0.0975342, -0.0956421, 0.0956421, 0.490234, -0.0190277, 0.191284, 0.461914, 0, 0.187622, 0.461914, -0.037323, 0.480957, -0.0975342, -0.0956421, 0.461914, -0.191284, 0, 0.452881, -0.191284, -0.0900879, 0.187622, 0.461914, -0.037323, 0.277588, 0.415527, 0, 0.272217, 0.415527, -0.0541687, 0.452881, -0.191284, -0.0900879, 0.415527, -0.277588, 0, 0.407715, -0.277588, -0.0810547, 0.272217, 0.415527, -0.0541687, 0.353516, 0.353516, 0, 0.34668, 0.353516, -0.0689697, 0.407715, -0.277588, -0.0810547, 0.353516, -0.353516, 0, 0.34668, -0.353516, -0.0689697, 0.34668, 0.353516, -0.0689697, 0.415527, 0.277588, 0, 0.407715, 0.277588, -0.0810547, 0.34668, -0.353516, -0.0689697, 0.277588, -0.415527, 0, 0.272217, -0.415527, -0.0541687, 0.407715, 0.277588, -0.0810547, 0.461914, 0.191284, 0, 0.452881, 0.191284, -0.0900879, 0.272217, -0.415527, -0.0541687, 0.191284, -0.461914, 0, 0.187622, -0.461914, -0.037323, 0.452881, 0.191284, -0.0900879, 0.490234, 0.0975342, 0, 0.480957, 0.0975342, -0.0956421, 0.187622, -0.461914, -0.037323, 0.0975342, -0.490234, 0, 0.0956421, -0.490234, -0.0190277, 0.415527, -0.277588, 0, 0.34668, -0.353516, 0.0689697, 0.353516, -0.353516, 0, 0.353516, 0.353516, 0, 0.407715, 0.277588, 0.0810547, 0.415527, 0.277588, 0, 0.353516, -0.353516, 0, 0.272217, -0.415527, 0.0541687, 0.277588, -0.415527, 0, 0.415527, 0.277588, 0, 0.452881, 0.191284, 0.0900879, 0.461914, 0.191284, 0, 0.277588, -0.415527, 0, 0.187622, -0.461914, 0.037323, 0.191284, -0.461914, 0, 0.461914, 0.191284, 0, 0.480957, 0.0975342, 0.0956421, 0.490234, 0.0975342, 0, 0.191284, -0.461914, 0, 0.0956421, -0.490234, 0.0190277, 0.0975342, -0.490234, 0, 0.490234, 0.0975342, 0, 0.490234, 0, 0.0975342, 0.5, 0, 0, 0.0975342, 0.490234, 0, 0, 0.5, 0, 0.0956421, 0.490234, 0.0190277, 0, -0.5, 0, 0.0975342, -0.490234, 0, 0.0956421, -0.490234, 0.0190277, 0.5, 0, 0, 0.480957, -0.0975342, 0.0956421, 0.490234, -0.0975342, 0, 0.0975342, 0.490234, 0, 0.187622, 0.461914, 0.037323, 0.191284, 0.461914, 0, 0.490234, -0.0975342, 0, 0.452881, -0.191284, 0.0900879, 0.461914, -0.191284, 0, 0.191284, 0.461914, 0, 0.272217, 0.415527, 0.0541687, 0.277588, 0.415527, 0, 0.461914, -0.191284, 0, 0.407715, -0.277588, 0.0810547, 0.415527, -0.277588, 0, 0.277588, 0.415527, 0, 0.34668, 0.353516, 0.0689697, 0.353516, 0.353516, 0, 0.0956421, 0.490234, 0.0190277, 0, 0.5, 0, 0.0900879, 0.490234, 0.037323, 0, -0.5, 0, 0.0956421, -0.490234, 0.0190277, 0.0900879, -0.490234, 0.037323, 0.490234, 0, 0.0975342, 0.452881, -0.0975342, 0.187622, 0.480957, -0.0975342, 0.0956421, 0.0956421, 0.490234, 0.0190277, 0.176758, 0.461914, 0.0731812, 0.187622, 0.461914, 0.037323, 0.480957, -0.0975342, 0.0956421, 0.426758, -0.191284, 0.176758, 0.452881, -0.191284, 0.0900879, 0.187622, 0.461914, 0.037323, 0.256592, 0.415527, 0.106262, 0.272217, 0.415527, 0.0541687, 0.452881, -0.191284, 0.0900879, 0.384033, -0.277588, 0.159058, 0.407715, -0.277588, 0.0810547, 0.272217, 0.415527, 0.0541687, 0.326416, 0.353516, 0.135254, 0.34668, 0.353516, 0.0689697, 0.407715, -0.277588, 0.0810547, 0.326416, -0.353516, 0.135254, 0.34668, -0.353516, 0.0689697, 0.34668, 0.353516, 0.0689697, 0.384033, 0.277588, 0.159058, 0.407715, 0.277588, 0.0810547, 0.34668, -0.353516, 0.0689697, 0.256592, -0.415527, 0.106262, 0.272217, -0.415527, 0.0541687, 0.407715, 0.277588, 0.0810547, 0.426758, 0.191284, 0.176758, 0.452881, 0.191284, 0.0900879, 0.272217, -0.415527, 0.0541687, 0.176758, -0.461914, 0.0731812, 0.187622, -0.461914, 0.037323, 0.452881, 0.191284, 0.0900879, 0.452881, 0.0975342, 0.187622, 0.480957, 0.0975342, 0.0956421, 0.187622, -0.461914, 0.037323, 0.0900879, -0.490234, 0.037323, 0.0956421, -0.490234, 0.0190277, 0.480957, 0.0975342, 0.0956421, 0.461914, 0, 0.191284, 0.490234, 0, 0.0975342, 0.326416, 0.353516, 0.135254, 0.345459, 0.277588, 0.230957, 0.384033, 0.277588, 0.159058, 0.326416, -0.353516, 0.135254, 0.230957, -0.415527, 0.154297, 0.256592, -0.415527, 0.106262, 0.384033, 0.277588, 0.159058, 0.384033, 0.191284, 0.256592, 0.426758, 0.191284, 0.176758, 0.256592, -0.415527, 0.106262, 0.159058, -0.461914, 0.106262, 0.176758, -0.461914, 0.0731812, 0.426758, 0.191284, 0.176758, 0.407715, 0.0975342, 0.272217, 0.452881, 0.0975342, 0.187622, 0.176758, -0.461914, 0.0731812, 0.0810547, -0.490234, 0.0541687, 0.0900879, -0.490234, 0.037323, 0.452881, 0.0975342, 0.187622, 0.415527, 0, 0.277588, 0.461914, 0, 0.191284, 0.0900879, 0.490234, 0.037323, 0, 0.5, 0, 0.0810547, 0.490234, 0.0541687, 0, -0.5, 0, 0.0900879, -0.490234, 0.037323, 0.0810547, -0.490234, 0.0541687, 0.461914, 0, 0.191284, 0.407715, -0.0975342, 0.272217, 0.452881, -0.0975342, 0.187622, 0.0900879, 0.490234, 0.037323, 0.159058, 0.461914, 0.106262, 0.176758, 0.461914, 0.0731812, 0.452881, -0.0975342, 0.187622, 0.384033, -0.191284, 0.256592, 0.426758, -0.191284, 0.176758, 0.176758, 0.461914, 0.0731812, 0.230957, 0.415527, 0.154297, 0.256592, 0.415527, 0.106262, 0.426758, -0.191284, 0.176758, 0.345459, -0.277588, 0.230957, 0.384033, -0.277588, 0.159058, 0.256592, 0.415527, 0.106262, 0.293945, 0.353516, 0.196411, 0.326416, 0.353516, 0.135254, 0.384033, -0.277588, 0.159058, 0.293945, -0.353516, 0.196411, 0.326416, -0.353516, 0.135254, 0.415527, 0, 0.277588, 0.34668, -0.0975342, 0.34668, 0.407715, -0.0975342, 0.272217, 0.0810547, 0.490234, 0.0541687, 0.135254, 0.461914, 0.135254, 0.159058, 0.461914, 0.106262, 0.407715, -0.0975342, 0.272217, 0.326416, -0.191284, 0.326416, 0.384033, -0.191284, 0.256592, 0.159058, 0.461914, 0.106262, 0.196411, 0.415527, 0.196411, 0.230957, 0.415527, 0.154297, 0.384033, -0.191284, 0.256592, 0.293945, -0.277588, 0.293945, 0.345459, -0.277588, 0.230957, 0.230957, 0.415527, 0.154297, 0.25, 0.353516, 0.25, 0.293945, 0.353516, 0.196411, 0.345459, -0.277588, 0.230957, 0.25, -0.353516, 0.25, 0.293945, -0.353516, 0.196411, 0.293945, 0.353516, 0.196411, 0.293945, 0.277588, 0.293945, 0.345459, 0.277588, 0.230957, 0.293945, -0.353516, 0.196411, 0.196411, -0.415527, 0.196411, 0.230957, -0.415527, 0.154297, 0.345459, 0.277588, 0.230957, 0.326416, 0.191284, 0.326416, 0.384033, 0.191284, 0.256592, 0.230957, -0.415527, 0.154297, 0.135254, -0.461914, 0.135254, 0.159058, -0.461914, 0.106262, 0.384033, 0.191284, 0.256592, 0.34668, 0.0975342, 0.34668, 0.407715, 0.0975342, 0.272217, 0.159058, -0.461914, 0.106262, 0.0689697, -0.490234, 0.0689697, 0.0810547, -0.490234, 0.0541687, 0.407715, 0.0975342, 0.272217, 0.353516, 0, 0.353516, 0.415527, 0, 0.277588, 0.0810547, 0.490234, 0.0541687, 0, 0.5, 0, 0.0689697, 0.490234, 0.0689697, 0, -0.5, 0, 0.0810547, -0.490234, 0.0541687, 0.0689697, -0.490234, 0.0689697, 0.25, -0.353516, 0.25, 0.154297, -0.415527, 0.230957, 0.196411, -0.415527, 0.196411, 0.293945, 0.277588, 0.293945, 0.256592, 0.191284, 0.384033, 0.326416, 0.191284, 0.326416, 0.196411, -0.415527, 0.196411, 0.106262, -0.461914, 0.159058, 0.135254, -0.461914, 0.135254, 0.326416, 0.191284, 0.326416, 0.272217, 0.0975342, 0.407715, 0.34668, 0.0975342, 0.34668, 0.135254, -0.461914, 0.135254, 0.0541687, -0.490234, 0.0810547, 0.0689697, -0.490234, 0.0689697, 0.34668, 0.0975342, 0.34668, 0.277588, 0, 0.415527, 0.353516, 0, 0.353516, 0.0689697, 0.490234, 0.0689697, 0, 0.5, 0, 0.0541687, 0.490234, 0.0810547, 0, -0.5, 0, 0.0689697, -0.490234, 0.0689697, 0.0541687, -0.490234, 0.0810547, 0.353516, 0, 0.353516, 0.272217, -0.0975342, 0.407715, 0.34668, -0.0975342, 0.34668, 0.0689697, 0.490234, 0.0689697, 0.106262, 0.461914, 0.159058, 0.135254, 0.461914, 0.135254, 0.34668, -0.0975342, 0.34668, 0.256592, -0.191284, 0.384033, 0.326416, -0.191284, 0.326416, 0.135254, 0.461914, 0.135254, 0.154297, 0.415527, 0.230957, 0.196411, 0.415527, 0.196411, 0.326416, -0.191284, 0.326416, 0.230957, -0.277588, 0.345459, 0.293945, -0.277588, 0.293945, 0.196411, 0.415527, 0.196411, 0.196411, 0.353516, 0.293945, 0.25, 0.353516, 0.25, 0.293945, -0.277588, 0.293945, 0.196411, -0.353516, 0.293945, 0.25, -0.353516, 0.25, 0.25, 0.353516, 0.25, 0.230957, 0.277588, 0.345459, 0.293945, 0.277588, 0.293945, 0.272217, -0.0975342, 0.407715, 0.176758, -0.191284, 0.426758, 0.256592, -0.191284, 0.384033, 0.106262, 0.461914, 0.159058, 0.106262, 0.415527, 0.256592, 0.154297, 0.415527, 0.230957, 0.256592, -0.191284, 0.384033, 0.159058, -0.277588, 0.384033, 0.230957, -0.277588, 0.345459, 0.154297, 0.415527, 0.230957, 0.135254, 0.353516, 0.326416, 0.196411, 0.353516, 0.293945, 0.230957, -0.277588, 0.345459, 0.135254, -0.353516, 0.326416, 0.196411, -0.353516, 0.293945, 0.196411, 0.353516, 0.293945, 0.159058, 0.277588, 0.384033, 0.230957, 0.277588, 0.345459, 0.196411, -0.353516, 0.293945, 0.106262, -0.415527, 0.256592, 0.154297, -0.415527, 0.230957, 0.230957, 0.277588, 0.345459, 0.176758, 0.191284, 0.426758, 0.256592, 0.191284, 0.384033, 0.154297, -0.415527, 0.230957, 0.0731812, -0.461914, 0.176758, 0.106262, -0.461914, 0.159058, 0.256592, 0.191284, 0.384033, 0.187622, 0.0975342, 0.452881, 0.272217, 0.0975342, 0.407715, 0.106262, -0.461914, 0.159058, 0.037323, -0.490234, 0.0900879, 0.0541687, -0.490234, 0.0810547, 0.272217, 0.0975342, 0.407715, 0.191284, 0, 0.461914, 0.277588, 0, 0.415527, 0.0541687, 0.490234, 0.0810547, 0, 0.5, 0, 0.037323, 0.490234, 0.0900879, 0, -0.5, 0, 0.0541687, -0.490234, 0.0810547, 0.037323, -0.490234, 0.0900879, 0.277588, 0, 0.415527, 0.187622, -0.0975342, 0.452881, 0.272217, -0.0975342, 0.407715, 0.0541687, 0.490234, 0.0810547, 0.0731812, 0.461914, 0.176758, 0.106262, 0.461914, 0.159058, 0.106262, -0.415527, 0.256592, 0.037323, -0.461914, 0.187622, 0.0731812, -0.461914, 0.176758, 0.176758, 0.191284, 0.426758, 0.0956421, 0.0975342, 0.480957, 0.187622, 0.0975342, 0.452881, 0.0731812, -0.461914, 0.176758, 0.0190277, -0.490234, 0.0956421, 0.037323, -0.490234, 0.0900879, 0.187622, 0.0975342, 0.452881, 0.0975342, 0, 0.490234, 0.191284, 0, 0.461914, 0.037323, 0.490234, 0.0900879, 0, 0.5, 0, 0.0190277, 0.490234, 0.0956421, 0, -0.5, 0, 0.037323, -0.490234, 0.0900879, 0.0190277, -0.490234, 0.0956421, 0.191284, 0, 0.461914, 0.0956421, -0.0975342, 0.480957, 0.187622, -0.0975342, 0.452881, 0.037323, 0.490234, 0.0900879, 0.037323, 0.461914, 0.187622, 0.0731812, 0.461914, 0.176758, 0.187622, -0.0975342, 0.452881, 0.0900879, -0.191284, 0.452881, 0.176758, -0.191284, 0.426758, 0.0731812, 0.461914, 0.176758, 0.0541687, 0.415527, 0.272217, 0.106262, 0.415527, 0.256592, 0.176758, -0.191284, 0.426758, 0.0810547, -0.277588, 0.407715, 0.159058, -0.277588, 0.384033, 0.106262, 0.415527, 0.256592, 0.0689697, 0.353516, 0.34668, 0.135254, 0.353516, 0.326416, 0.159058, -0.277588, 0.384033, 0.0689697, -0.353516, 0.34668, 0.135254, -0.353516, 0.326416, 0.135254, 0.353516, 0.326416, 0.0810547, 0.277588, 0.407715, 0.159058, 0.277588, 0.384033, 0.135254, -0.353516, 0.326416, 0.0541687, -0.415527, 0.272217, 0.106262, -0.415527, 0.256592, 0.159058, 0.277588, 0.384033, 0.0900879, 0.191284, 0.452881, 0.176758, 0.191284, 0.426758, 0.037323, 0.461914, 0.187622, 0, 0.415527, 0.277588, 0.0541687, 0.415527, 0.272217, 0.0900879, -0.191284, 0.452881, 0, -0.277588, 0.415527, 0.0810547, -0.277588, 0.407715, 0.0541687, 0.415527, 0.272217, 0, 0.353516, 0.353516, 0.0689697, 0.353516, 0.34668, 0.0810547, -0.277588, 0.407715, 0, -0.353516, 0.353516, 0.0689697, -0.353516, 0.34668, 0.0689697, 0.353516, 0.34668, 0, 0.277588, 0.415527, 0.0810547, 0.277588, 0.407715, 0.0689697, -0.353516, 0.34668, 0, -0.415527, 0.277588, 0.0541687, -0.415527, 0.272217, 0.0810547, 0.277588, 0.407715, 0, 0.191284, 0.461914, 0.0900879, 0.191284, 0.452881, 0.0541687, -0.415527, 0.272217, 0, -0.461914, 0.191284, 0.037323, -0.461914, 0.187622, 0.0900879, 0.191284, 0.452881, 0, 0.0975342, 0.490234, 0.0956421, 0.0975342, 0.480957, 0.037323, -0.461914, 0.187622, 0, -0.490234, 0.0975342, 0.0190277, -0.490234, 0.0956421, 0.0956421, 0.0975342, 0.480957, 0, 0, 0.5, 0.0975342, 0, 0.490234, 0.0190277, 0.490234, 0.0956421, 0, 0.5, 0, 0, 0.490234, 0.0975342, 0, -0.5, 0, 0.0190277, -0.490234, 0.0956421, 0, -0.490234, 0.0975342, 0.0975342, 0, 0.490234, 0, -0.0975342, 0.490234, 0.0956421, -0.0975342, 0.480957, 0.0190277, 0.490234, 0.0956421, 0, 0.461914, 0.191284, 0.037323, 0.461914, 0.187622, 0.0956421, -0.0975342, 0.480957, 0, -0.191284, 0.461914, 0.0900879, -0.191284, 0.452881, 0, 0.191284, 0.461914, -0.0956421, 0.0975342, 0.480957, 0, 0.0975342, 0.490234, 0, -0.461914, 0.191284, -0.0190277, -0.490234, 0.0956421, 0, -0.490234, 0.0975342, 0, 0.0975342, 0.490234, -0.0975342, 0, 0.490234, 0, 0, 0.5, 0, 0.490234, 0.0975342, 0, 0.5, 0, -0.0190277, 0.490234, 0.0956421, 0, -0.5, 0, 0, -0.490234, 0.0975342, -0.0190277, -0.490234, 0.0956421, 0, 0, 0.5, -0.0956421, -0.0975342, 0.480957, 0, -0.0975342, 0.490234, 0, 0.490234, 0.0975342, -0.037323, 0.461914, 0.187622, 0, 0.461914, 0.191284, 0, -0.0975342, 0.490234, -0.0900879, -0.191284, 0.452881, 0, -0.191284, 0.461914, 0, 0.461914, 0.191284, -0.0541687, 0.415527, 0.272217, 0, 0.415527, 0.277588, 0, -0.191284, 0.461914, -0.0810547, -0.277588, 0.407715, 0, -0.277588, 0.415527, 0, 0.415527, 0.277588, -0.0689697, 0.353516, 0.34668, 0, 0.353516, 0.353516, 0, -0.277588, 0.415527, -0.0689697, -0.353516, 0.34668, 0, -0.353516, 0.353516, 0, 0.353516, 0.353516, -0.0810547, 0.277588, 0.407715, 0, 0.277588, 0.415527, 0, -0.353516, 0.353516, -0.0541687, -0.415527, 0.272217, 0, -0.415527, 0.277588, 0, 0.277588, 0.415527, -0.0900879, 0.191284, 0.452881, 0, 0.191284, 0.461914, 0, -0.415527, 0.277588, -0.037323, -0.461914, 0.187622, 0, -0.461914, 0.191284, -0.0900879, -0.191284, 0.452881, -0.159058, -0.277588, 0.384033, -0.0810547, -0.277588, 0.407715, -0.0541687, 0.415527, 0.272217, -0.135254, 0.353516, 0.326416, -0.0689697, 0.353516, 0.34668, -0.0810547, -0.277588, 0.407715, -0.135254, -0.353516, 0.326416, -0.0689697, -0.353516, 0.34668, -0.0689697, 0.353516, 0.34668, -0.159058, 0.277588, 0.384033, -0.0810547, 0.277588, 0.407715, -0.0689697, -0.353516, 0.34668, -0.106262, -0.415527, 0.256592, -0.0541687, -0.415527, 0.272217, -0.0810547, 0.277588, 0.407715, -0.176758, 0.191284, 0.426758, -0.0900879, 0.191284, 0.452881, -0.0541687, -0.415527, 0.272217, -0.0731812, -0.461914, 0.176758, -0.037323, -0.461914, 0.187622, -0.0900879, 0.191284, 0.452881, -0.187622, 0.0975342, 0.452881, -0.0956421, 0.0975342, 0.480957, -0.037323, -0.461914, 0.187622, -0.037323, -0.490234, 0.0900879, -0.0190277, -0.490234, 0.0956421, -0.0956421, 0.0975342, 0.480957, -0.191284, 0, 0.461914, -0.0975342, 0, 0.490234, -0.0190277, 0.490234, 0.0956421, 0, 0.5, 0, -0.037323, 0.490234, 0.0900879, 0, -0.5, 0, -0.0190277, -0.490234, 0.0956421, -0.037323, -0.490234, 0.0900879, -0.0975342, 0, 0.490234, -0.187622, -0.0975342, 0.452881, -0.0956421, -0.0975342, 0.480957, -0.0190277, 0.490234, 0.0956421, -0.0731812, 0.461914, 0.176758, -0.037323, 0.461914, 0.187622, -0.0956421, -0.0975342, 0.480957, -0.176758, -0.191284, 0.426758, -0.0900879, -0.191284, 0.452881, -0.037323, 0.461914, 0.187622, -0.106262, 0.415527, 0.256592, -0.0541687, 0.415527, 0.272217, -0.0731812, -0.461914, 0.176758, -0.0541687, -0.490234, 0.0810547, -0.037323, -0.490234, 0.0900879, -0.187622, 0.0975342, 0.452881, -0.277588, 0, 0.415527, -0.191284, 0, 0.461914, -0.037323, 0.490234, 0.0900879, 0, 0.5, 0, -0.0541687, 0.490234, 0.0810547, 0, -0.5, 0, -0.037323, -0.490234, 0.0900879, -0.0541687, -0.490234, 0.0810547, -0.191284, 0, 0.461914, -0.272217, -0.0975342, 0.407715, -0.187622, -0.0975342, 0.452881, -0.037323, 0.490234, 0.0900879, -0.106262, 0.461914, 0.159058, -0.0731812, 0.461914, 0.176758, -0.187622, -0.0975342, 0.452881, -0.256592, -0.191284, 0.384033, -0.176758, -0.191284, 0.426758, -0.0731812, 0.461914, 0.176758, -0.154297, 0.415527, 0.230957, -0.106262, 0.415527, 0.256592, -0.176758, -0.191284, 0.426758, -0.230957, -0.277588, 0.345459, -0.159058, -0.277588, 0.384033, -0.106262, 0.415527, 0.256592, -0.196411, 0.353516, 0.293945, -0.135254, 0.353516, 0.326416, -0.159058, -0.277588, 0.384033, -0.196411, -0.353516, 0.293945, -0.135254, -0.353516, 0.326416, -0.135254, 0.353516, 0.326416, -0.230957, 0.277588, 0.345459, -0.159058, 0.277588, 0.384033, -0.135254, -0.353516, 0.326416, -0.154297, -0.415527, 0.230957, -0.106262, -0.415527, 0.256592, -0.159058, 0.277588, 0.384033, -0.256592, 0.191284, 0.384033, -0.176758, 0.191284, 0.426758, -0.106262, -0.415527, 0.256592, -0.106262, -0.461914, 0.159058, -0.0731812, -0.461914, 0.176758, -0.176758, 0.191284, 0.426758, -0.272217, 0.0975342, 0.407715, -0.187622, 0.0975342, 0.452881, -0.154297, 0.415527, 0.230957, -0.25, 0.353516, 0.25, -0.196411, 0.353516, 0.293945, -0.230957, -0.277588, 0.345459, -0.25, -0.353516, 0.25, -0.196411, -0.353516, 0.293945, -0.196411, 0.353516, 0.293945, -0.293945, 0.277588, 0.293945, -0.230957, 0.277588, 0.345459, -0.196411, -0.353516, 0.293945, -0.196411, -0.415527, 0.196411, -0.154297, -0.415527, 0.230957, -0.230957, 0.277588, 0.345459, -0.326416, 0.191284, 0.326416, -0.256592, 0.191284, 0.384033, -0.154297, -0.415527, 0.230957, -0.135254, -0.461914, 0.135254, -0.106262, -0.461914, 0.159058, -0.256592, 0.191284, 0.384033, -0.34668, 0.0975342, 0.34668, -0.272217, 0.0975342, 0.407715, -0.106262, -0.461914, 0.159058, -0.0689697, -0.490234, 0.0689697, -0.0541687, -0.490234, 0.0810547, -0.272217, 0.0975342, 0.407715, -0.353516, 0, 0.353516, -0.277588, 0, 0.415527, -0.0541687, 0.490234, 0.0810547, 0, 0.5, 0, -0.0689697, 0.490234, 0.0689697, 0, -0.5, 0, -0.0541687, -0.490234, 0.0810547, -0.0689697, -0.490234, 0.0689697, -0.277588, 0, 0.415527, -0.34668, -0.0975342, 0.34668, -0.272217, -0.0975342, 0.407715, -0.0541687, 0.490234, 0.0810547, -0.135254, 0.461914, 0.135254, -0.106262, 0.461914, 0.159058, -0.272217, -0.0975342, 0.407715, -0.326416, -0.191284, 0.326416, -0.256592, -0.191284, 0.384033, -0.106262, 0.461914, 0.159058, -0.196411, 0.415527, 0.196411, -0.154297, 0.415527, 0.230957, -0.256592, -0.191284, 0.384033, -0.293945, -0.277588, 0.293945, -0.230957, -0.277588, 0.345459, -0.34668, 0.0975342, 0.34668, -0.415527, 0, 0.277588, -0.353516, 0, 0.353516, -0.0689697, 0.490234, 0.0689697, 0, 0.5, 0, -0.0810547, 0.490234, 0.0541687, 0, -0.5, 0, -0.0689697, -0.490234, 0.0689697, -0.0810547, -0.490234, 0.0541687, -0.353516, 0, 0.353516, -0.407715, -0.0975342, 0.272217, -0.34668, -0.0975342, 0.34668, -0.0689697, 0.490234, 0.0689697, -0.159058, 0.461914, 0.106262, -0.135254, 0.461914, 0.135254, -0.34668, -0.0975342, 0.34668, -0.384033, -0.191284, 0.256592, -0.326416, -0.191284, 0.326416, -0.135254, 0.461914, 0.135254, -0.230957, 0.415527, 0.154297, -0.196411, 0.415527, 0.196411, -0.326416, -0.191284, 0.326416, -0.345459, -0.277588, 0.230957, -0.293945, -0.277588, 0.293945, -0.196411, 0.415527, 0.196411, -0.293945, 0.353516, 0.196411, -0.25, 0.353516, 0.25, -0.293945, -0.277588, 0.293945, -0.293945, -0.353516, 0.196411, -0.25, -0.353516, 0.25, -0.25, 0.353516, 0.25, -0.345459, 0.277588, 0.230957, -0.293945, 0.277588, 0.293945, -0.25, -0.353516, 0.25, -0.230957, -0.415527, 0.154297, -0.196411, -0.415527, 0.196411, -0.293945, 0.277588, 0.293945, -0.384033, 0.191284, 0.256592, -0.326416, 0.191284, 0.326416, -0.196411, -0.415527, 0.196411, -0.159058, -0.461914, 0.106262, -0.135254, -0.461914, 0.135254, -0.326416, 0.191284, 0.326416, -0.407715, 0.0975342, 0.272217, -0.34668, 0.0975342, 0.34668, -0.135254, -0.461914, 0.135254, -0.0810547, -0.490234, 0.0541687, -0.0689697, -0.490234, 0.0689697, -0.345459, -0.277588, 0.230957, -0.326416, -0.353516, 0.135254, -0.293945, -0.353516, 0.196411, -0.293945, 0.353516, 0.196411, -0.384033, 0.277588, 0.159058, -0.345459, 0.277588, 0.230957, -0.293945, -0.353516, 0.196411, -0.256592, -0.415527, 0.106262, -0.230957, -0.415527, 0.154297, -0.345459, 0.277588, 0.230957, -0.426758, 0.191284, 0.176758, -0.384033, 0.191284, 0.256592, -0.230957, -0.415527, 0.154297, -0.176758, -0.461914, 0.0731812, -0.159058, -0.461914, 0.106262, -0.384033, 0.191284, 0.256592, -0.452881, 0.0975342, 0.187622, -0.407715, 0.0975342, 0.272217, -0.159058, -0.461914, 0.106262, -0.0900879, -0.490234, 0.037323, -0.0810547, -0.490234, 0.0541687, -0.407715, 0.0975342, 0.272217, -0.461914, 0, 0.191284, -0.415527, 0, 0.277588, -0.0810547, 0.490234, 0.0541687, 0, 0.5, 0, -0.0900879, 0.490234, 0.037323, 0, -0.5, 0, -0.0810547, -0.490234, 0.0541687, -0.0900879, -0.490234, 0.037323, -0.415527, 0, 0.277588, -0.452881, -0.0975342, 0.187622, -0.407715, -0.0975342, 0.272217, -0.0810547, 0.490234, 0.0541687, -0.176758, 0.461914, 0.0731812, -0.159058, 0.461914, 0.106262, -0.407715, -0.0975342, 0.272217, -0.426758, -0.191284, 0.176758, -0.384033, -0.191284, 0.256592, -0.159058, 0.461914, 0.106262, -0.256592, 0.415527, 0.106262, -0.230957, 0.415527, 0.154297, -0.384033, -0.191284, 0.256592, -0.384033, -0.277588, 0.159058, -0.345459, -0.277588, 0.230957, -0.230957, 0.415527, 0.154297, -0.326416, 0.353516, 0.135254, -0.293945, 0.353516, 0.196411, 0, -0.5, 0, -0.0900879, -0.490234, 0.037323, -0.0956421, -0.490234, 0.0190277, -0.461914, 0, 0.191284, -0.480957, -0.0975342, 0.0956421, -0.452881, -0.0975342, 0.187622, -0.0900879, 0.490234, 0.037323, -0.187622, 0.461914, 0.037323, -0.176758, 0.461914, 0.0731812, -0.452881, -0.0975342, 0.187622, -0.452881, -0.191284, 0.0900879, -0.426758, -0.191284, 0.176758, -0.176758, 0.461914, 0.0731812, -0.272217, 0.415527, 0.0541687, -0.256592, 0.415527, 0.106262, -0.426758, -0.191284, 0.176758, -0.407715, -0.277588, 0.0810547, -0.384033, -0.277588, 0.159058, -0.256592, 0.415527, 0.106262, -0.34668, 0.353516, 0.0689697, -0.326416, 0.353516, 0.135254, -0.384033, -0.277588, 0.159058, -0.34668, -0.353516, 0.0689697, -0.326416, -0.353516, 0.135254, -0.326416, 0.353516, 0.135254, -0.407715, 0.277588, 0.0810547, -0.384033, 0.277588, 0.159058, -0.326416, -0.353516, 0.135254, -0.272217, -0.415527, 0.0541687, -0.256592, -0.415527, 0.106262, -0.384033, 0.277588, 0.159058, -0.452881, 0.191284, 0.0900879, -0.426758, 0.191284, 0.176758, -0.256592, -0.415527, 0.106262, -0.187622, -0.461914, 0.037323, -0.176758, -0.461914, 0.0731812, -0.426758, 0.191284, 0.176758, -0.480957, 0.0975342, 0.0956421, -0.452881, 0.0975342, 0.187622, -0.176758, -0.461914, 0.0731812, -0.0956421, -0.490234, 0.0190277, -0.0900879, -0.490234, 0.037323, -0.452881, 0.0975342, 0.187622, -0.490234, 0, 0.0975342, -0.461914, 0, 0.191284, -0.0900879, 0.490234, 0.037323, 0, 0.5, 0, -0.0956421, 0.490234, 0.0190277, -0.34668, -0.353516, 0.0689697, -0.277588, -0.415527, 0, -0.272217, -0.415527, 0.0541687, -0.407715, 0.277588, 0.0810547, -0.461914, 0.191284, 0, -0.452881, 0.191284, 0.0900879, -0.272217, -0.415527, 0.0541687, -0.191284, -0.461914, 0, -0.187622, -0.461914, 0.037323, -0.452881, 0.191284, 0.0900879, -0.490234, 0.0975342, 0, -0.480957, 0.0975342, 0.0956421, -0.187622, -0.461914, 0.037323, -0.0975342, -0.490234, 0, -0.0956421, -0.490234, 0.0190277, -0.480957, 0.0975342, 0.0956421, -0.5, 0, 0, -0.490234, 0, 0.0975342, -0.0956421, 0.490234, 0.0190277, 0, 0.5, 0, -0.0975342, 0.490234, 0, 0, -0.5, 0, -0.0956421, -0.490234, 0.0190277, -0.0975342, -0.490234, 0, -0.490234, 0, 0.0975342, -0.490234, -0.0975342, 0, -0.480957, -0.0975342, 0.0956421, -0.0956421, 0.490234, 0.0190277, -0.191284, 0.461914, 0, -0.187622, 0.461914, 0.037323, -0.480957, -0.0975342, 0.0956421, -0.461914, -0.191284, 0, -0.452881, -0.191284, 0.0900879, -0.187622, 0.461914, 0.037323, -0.277588, 0.415527, 0, -0.272217, 0.415527, 0.0541687, -0.452881, -0.191284, 0.0900879, -0.415527, -0.277588, 0, -0.407715, -0.277588, 0.0810547, -0.272217, 0.415527, 0.0541687, -0.353516, 0.353516, 0, -0.34668, 0.353516, 0.0689697, -0.407715, -0.277588, 0.0810547, -0.353516, -0.353516, 0, -0.34668, -0.353516, 0.0689697, -0.34668, 0.353516, 0.0689697, -0.415527, 0.277588, 0, -0.407715, 0.277588, 0.0810547, -0.0975342, 0.490234, 0, -0.187622, 0.461914, -0.037323, -0.191284, 0.461914, 0, -0.490234, -0.0975342, 0, -0.452881, -0.191284, -0.0900879, -0.461914, -0.191284, 0, -0.191284, 0.461914, 0, -0.272217, 0.415527, -0.0541687, -0.277588, 0.415527, 0, -0.461914, -0.191284, 0, -0.407715, -0.277588, -0.0810547, -0.415527, -0.277588, 0, -0.277588, 0.415527, 0, -0.34668, 0.353516, -0.0689697, -0.353516, 0.353516, 0, -0.415527, -0.277588, 0, -0.34668, -0.353516, -0.0689697, -0.353516, -0.353516, 0, -0.353516, 0.353516, 0, -0.407715, 0.277588, -0.0810547, -0.415527, 0.277588, 0, -0.353516, -0.353516, 0, -0.272217, -0.415527, -0.0541687, -0.277588, -0.415527, 0, -0.415527, 0.277588, 0, -0.452881, 0.191284, -0.0900879, -0.461914, 0.191284, 0, -0.277588, -0.415527, 0, -0.187622, -0.461914, -0.037323, -0.191284, -0.461914, 0, -0.461914, 0.191284, 0, -0.480957, 0.0975342, -0.0956421, -0.490234, 0.0975342, 0, -0.191284, -0.461914, 0, -0.0956421, -0.490234, -0.0190277, -0.0975342, -0.490234, 0, -0.490234, 0.0975342, 0, -0.490234, 0, -0.0975342, -0.5, 0, 0, -0.0975342, 0.490234, 0, 0, 0.5, 0, -0.0956421, 0.490234, -0.0190277, 0, -0.5, 0, -0.0975342, -0.490234, 0, -0.0956421, -0.490234, -0.0190277, -0.5, 0, 0, -0.480957, -0.0975342, -0.0956421, -0.490234, -0.0975342, 0, -0.407715, 0.277588, -0.0810547, -0.426758, 0.191284, -0.176758, -0.452881, 0.191284, -0.0900879, -0.272217, -0.415527, -0.0541687, -0.176758, -0.461914, -0.0731812, -0.187622, -0.461914, -0.037323, -0.452881, 0.191284, -0.0900879, -0.452881, 0.0975342, -0.187622, -0.480957, 0.0975342, -0.0956421, -0.187622, -0.461914, -0.037323, -0.0900879, -0.490234, -0.037323, -0.0956421, -0.490234, -0.0190277, -0.480957, 0.0975342, -0.0956421, -0.461914, 0, -0.191284, -0.490234, 0, -0.0975342, -0.0956421, 0.490234, -0.0190277, 0, 0.5, 0, -0.0900879, 0.490234, -0.037323, 0, -0.5, 0, -0.0956421, -0.490234, -0.0190277, -0.0900879, -0.490234, -0.037323, -0.490234, 0, -0.0975342, -0.452881, -0.0975342, -0.187622, -0.480957, -0.0975342, -0.0956421, -0.0956421, 0.490234, -0.0190277, -0.176758, 0.461914, -0.0731812, -0.187622, 0.461914, -0.037323, -0.480957, -0.0975342, -0.0956421, -0.426758, -0.191284, -0.176758, -0.452881, -0.191284, -0.0900879, -0.187622, 0.461914, -0.037323, -0.256592, 0.415527, -0.106262, -0.272217, 0.415527, -0.0541687, -0.452881, -0.191284, -0.0900879, -0.384033, -0.277588, -0.159058, -0.407715, -0.277588, -0.0810547, -0.272217, 0.415527, -0.0541687, -0.326416, 0.353516, -0.135254, -0.34668, 0.353516, -0.0689697, -0.407715, -0.277588, -0.0810547, -0.326416, -0.353516, -0.135254, -0.34668, -0.353516, -0.0689697, -0.34668, 0.353516, -0.0689697, -0.384033, 0.277588, -0.159058, -0.407715, 0.277588, -0.0810547, -0.34668, -0.353516, -0.0689697, -0.256592, -0.415527, -0.106262, -0.272217, -0.415527, -0.0541687, -0.452881, -0.0975342, -0.187622, -0.384033, -0.191284, -0.256592, -0.426758, -0.191284, -0.176758, -0.176758, 0.461914, -0.0731812, -0.230957, 0.415527, -0.154297, -0.256592, 0.415527, -0.106262, -0.426758, -0.191284, -0.176758, -0.345459, -0.277588, -0.230957, -0.384033, -0.277588, -0.159058, -0.256592, 0.415527, -0.106262, -0.293945, 0.353516, -0.196411, -0.326416, 0.353516, -0.135254, -0.384033, -0.277588, -0.159058, -0.293945, -0.353516, -0.196411, -0.326416, -0.353516, -0.135254, -0.326416, 0.353516, -0.135254, -0.345459, 0.277588, -0.230957, -0.384033, 0.277588, -0.159058, -0.326416, -0.353516, -0.135254, -0.230957, -0.415527, -0.154297, -0.256592, -0.415527, -0.106262, -0.384033, 0.277588, -0.159058, -0.384033, 0.191284, -0.256592, -0.426758, 0.191284, -0.176758, -0.256592, -0.415527, -0.106262, -0.159058, -0.461914, -0.106262, -0.176758, -0.461914, -0.0731812, -0.426758, 0.191284, -0.176758, -0.407715, 0.0975342, -0.272217, -0.452881, 0.0975342, -0.187622, -0.176758, -0.461914, -0.0731812, -0.0810547, -0.490234, -0.0541687, -0.0900879, -0.490234, -0.037323, -0.452881, 0.0975342, -0.187622, -0.415527, 0, -0.277588, -0.461914, 0, -0.191284, -0.0900879, 0.490234, -0.037323, 0, 0.5, 0, -0.0810547, 0.490234, -0.0541687, 0, -0.5, 0, -0.0900879, -0.490234, -0.037323, -0.0810547, -0.490234, -0.0541687, -0.461914, 0, -0.191284, -0.407715, -0.0975342, -0.272217, -0.452881, -0.0975342, -0.187622, -0.0900879, 0.490234, -0.037323, -0.159058, 0.461914, -0.106262, -0.176758, 0.461914, -0.0731812, -0.230957, -0.415527, -0.154297, -0.135254, -0.461914, -0.135254, -0.159058, -0.461914, -0.106262, -0.384033, 0.191284, -0.256592, -0.34668, 0.0975342, -0.34668, -0.407715, 0.0975342, -0.272217, -0.159058, -0.461914, -0.106262, -0.0689697, -0.490234, -0.0689697, -0.0810547, -0.490234, -0.0541687, -0.407715, 0.0975342, -0.272217, -0.353516, 0, -0.353516, -0.415527, 0, -0.277588, -0.0810547, 0.490234, -0.0541687, 0, 0.5, 0, -0.0689697, 0.490234, -0.0689697, 0, -0.5, 0, -0.0810547, -0.490234, -0.0541687, -0.0689697, -0.490234, -0.0689697, -0.415527, 0, -0.277588, -0.34668, -0.0975342, -0.34668, -0.407715, -0.0975342, -0.272217, -0.0810547, 0.490234, -0.0541687, -0.135254, 0.461914, -0.135254, -0.159058, 0.461914, -0.106262, -0.407715, -0.0975342, -0.272217, -0.326416, -0.191284, -0.326416, -0.384033, -0.191284, -0.256592, -0.159058, 0.461914, -0.106262, -0.196411, 0.415527, -0.196411, -0.230957, 0.415527, -0.154297, -0.384033, -0.191284, -0.256592, -0.293945, -0.277588, -0.293945, -0.345459, -0.277588, -0.230957, -0.230957, 0.415527, -0.154297, -0.25, 0.353516, -0.25, -0.293945, 0.353516, -0.196411, -0.345459, -0.277588, -0.230957, -0.25, -0.353516, -0.25, -0.293945, -0.353516, -0.196411, -0.293945, 0.353516, -0.196411, -0.293945, 0.277588, -0.293945, -0.345459, 0.277588, -0.230957, -0.293945, -0.353516, -0.196411, -0.196411, -0.415527, -0.196411, -0.230957, -0.415527, -0.154297, -0.345459, 0.277588, -0.230957, -0.326416, 0.191284, -0.326416, -0.384033, 0.191284, -0.256592, -0.135254, 0.461914, -0.135254, -0.154297, 0.415527, -0.230957, -0.196411, 0.415527, -0.196411, -0.326416, -0.191284, -0.326416, -0.230957, -0.277588, -0.345459, -0.293945, -0.277588, -0.293945, -0.196411, 0.415527, -0.196411, -0.196411, 0.353516, -0.293945, -0.25, 0.353516, -0.25, -0.293945, -0.277588, -0.293945, -0.196411, -0.353516, -0.293945, -0.25, -0.353516, -0.25, -0.25, 0.353516, -0.25, -0.230957, 0.277588, -0.345459, -0.293945, 0.277588, -0.293945, -0.25, -0.353516, -0.25, -0.154297, -0.415527, -0.230957, -0.196411, -0.415527, -0.196411, -0.293945, 0.277588, -0.293945, -0.256592, 0.191284, -0.384033, -0.326416, 0.191284, -0.326416, -0.196411, -0.415527, -0.196411, -0.106262, -0.461914, -0.159058, -0.135254, -0.461914, -0.135254, -0.326416, 0.191284, -0.326416, -0.272217, 0.0975342, -0.407715, -0.34668, 0.0975342, -0.34668, -0.135254, -0.461914, -0.135254, -0.0541687, -0.490234, -0.0810547, -0.0689697, -0.490234, -0.0689697, -0.34668, 0.0975342, -0.34668, -0.277588, 0, -0.415527, -0.353516, 0, -0.353516, -0.0689697, 0.490234, -0.0689697, 0, 0.5, 0, -0.0541687, 0.490234, -0.0810547, 0, -0.5, 0, -0.0689697, -0.490234, -0.0689697, -0.0541687, -0.490234, -0.0810547, -0.353516, 0, -0.353516, -0.272217, -0.0975342, -0.407715, -0.34668, -0.0975342, -0.34668, -0.0689697, 0.490234, -0.0689697, -0.106262, 0.461914, -0.159058, -0.135254, 0.461914, -0.135254, -0.34668, -0.0975342, -0.34668, -0.256592, -0.191284, -0.384033, -0.326416, -0.191284, -0.326416, -0.256592, 0.191284, -0.384033, -0.187622, 0.0975342, -0.452881, -0.272217, 0.0975342, -0.407715, -0.106262, -0.461914, -0.159058, -0.037323, -0.490234, -0.0900879, -0.0541687, -0.490234, -0.0810547, -0.272217, 0.0975342, -0.407715, -0.191284, 0, -0.461914, -0.277588, 0, -0.415527, -0.0541687, 0.490234, -0.0810547, 0, 0.5, 0, -0.037323, 0.490234, -0.0900879, 0, -0.5, 0, -0.0541687, -0.490234, -0.0810547, -0.037323, -0.490234, -0.0900879, -0.277588, 0, -0.415527, -0.187622, -0.0975342, -0.452881, -0.272217, -0.0975342, -0.407715, -0.0541687, 0.490234, -0.0810547, -0.0731812, 0.461914, -0.176758, -0.106262, 0.461914, -0.159058, -0.272217, -0.0975342, -0.407715, -0.176758, -0.191284, -0.426758, -0.256592, -0.191284, -0.384033, -0.106262, 0.461914, -0.159058, -0.106262, 0.415527, -0.256592, -0.154297, 0.415527, -0.230957, -0.256592, -0.191284, -0.384033, -0.159058, -0.277588, -0.384033, -0.230957, -0.277588, -0.345459, -0.154297, 0.415527, -0.230957, -0.135254, 0.353516, -0.326416, -0.196411, 0.353516, -0.293945, -0.230957, -0.277588, -0.345459, -0.135254, -0.353516, -0.326416, -0.196411, -0.353516, -0.293945, -0.196411, 0.353516, -0.293945, -0.159058, 0.277588, -0.384033, -0.230957, 0.277588, -0.345459, -0.196411, -0.353516, -0.293945, -0.106262, -0.415527, -0.256592, -0.154297, -0.415527, -0.230957, -0.230957, 0.277588, -0.345459, -0.176758, 0.191284, -0.426758, -0.256592, 0.191284, -0.384033, -0.154297, -0.415527, -0.230957, -0.0731812, -0.461914, -0.176758, -0.106262, -0.461914, -0.159058, -0.176758, -0.191284, -0.426758, -0.0810547, -0.277588, -0.407715, -0.159058, -0.277588, -0.384033, -0.106262, 0.415527, -0.256592, -0.0689697, 0.353516, -0.34668, -0.135254, 0.353516, -0.326416, -0.159058, -0.277588, -0.384033, -0.0689697, -0.353516, -0.34668, -0.135254, -0.353516, -0.326416, -0.135254, 0.353516, -0.326416, -0.0810547, 0.277588, -0.407715, -0.159058, 0.277588, -0.384033, -0.135254, -0.353516, -0.326416, -0.0541687, -0.415527, -0.272217, -0.106262, -0.415527, -0.256592, -0.159058, 0.277588, -0.384033, -0.0900879, 0.191284, -0.452881, -0.176758, 0.191284, -0.426758, -0.106262, -0.415527, -0.256592, -0.037323, -0.461914, -0.187622, -0.0731812, -0.461914, -0.176758, -0.176758, 0.191284, -0.426758, -0.0956421, 0.0975342, -0.480957, -0.187622, 0.0975342, -0.452881, -0.0731812, -0.461914, -0.176758, -0.0190277, -0.490234, -0.0956421, -0.037323, -0.490234, -0.0900879, -0.187622, 0.0975342, -0.452881, -0.0975342, 0, -0.490234, -0.191284, 0, -0.461914, -0.037323, 0.490234, -0.0900879, 0, 0.5, 0, -0.0190277, 0.490234, -0.0956421, 0, -0.5, 0, -0.037323, -0.490234, -0.0900879, -0.0190277, -0.490234, -0.0956421, -0.191284, 0, -0.461914, -0.0956421, -0.0975342, -0.480957, -0.187622, -0.0975342, -0.452881, -0.037323, 0.490234, -0.0900879, -0.037323, 0.461914, -0.187622, -0.0731812, 0.461914, -0.176758, -0.187622, -0.0975342, -0.452881, -0.0900879, -0.191284, -0.452881, -0.176758, -0.191284, -0.426758, -0.0731812, 0.461914, -0.176758, -0.0541687, 0.415527, -0.272217, -0.106262, 0.415527, -0.256592, -0.037323, -0.461914, -0.187622, 0, -0.490234, -0.0975342, -0.0190277, -0.490234, -0.0956421, -0.0956421, 0.0975342, -0.480957, 0, 0, -0.5, -0.0975342, 0, -0.490234, -0.0190277, 0.490234, -0.0956421, 0, 0.5, 0, 0, 0.490234, -0.0975342, 0, -0.5, 0, -0.0190277, -0.490234, -0.0956421, 0, -0.490234, -0.0975342, -0.0975342, 0, -0.490234, 0, -0.0975342, -0.490234, -0.0956421, -0.0975342, -0.480957, -0.0190277, 0.490234, -0.0956421, 0, 0.461914, -0.191284, -0.037323, 0.461914, -0.187622, -0.0956421, -0.0975342, -0.480957, 0, -0.191284, -0.461914, -0.0900879, -0.191284, -0.452881, -0.037323, 0.461914, -0.187622, 0, 0.415527, -0.277588, -0.0541687, 0.415527, -0.272217, -0.0900879, -0.191284, -0.452881, 0, -0.277588, -0.415527, -0.0810547, -0.277588, -0.407715, -0.0541687, 0.415527, -0.272217, 0, 0.353516, -0.353516, -0.0689697, 0.353516, -0.34668, -0.0810547, -0.277588, -0.407715, 0, -0.353516, -0.353516, -0.0689697, -0.353516, -0.34668, -0.0689697, 0.353516, -0.34668, 0, 0.277588, -0.415527, -0.0810547, 0.277588, -0.407715, -0.0689697, -0.353516, -0.34668, 0, -0.415527, -0.277588, -0.0541687, -0.415527, -0.272217, -0.0810547, 0.277588, -0.407715, 0, 0.191284, -0.461914, -0.0900879, 0.191284, -0.452881, -0.0541687, -0.415527, -0.272217, 0, -0.461914, -0.191284, -0.037323, -0.461914, -0.187622, -0.0900879, 0.191284, -0.452881, 0, 0.0975342, -0.490234, -0.0956421, 0.0975342, -0.480957, 0, -0.461914, -0.191284, 0.037323, -0.461914, -0.187622, 0.0190277, -0.490234, -0.0956421, 0, 0.0975342, -0.490234, 0.0956421, 0.0975342, -0.480957, 0.0975342, 0, -0.490234, 0, 0, -0.5, 0.0975342, 0, -0.490234, 0.0956421, -0.0975342, -0.480957, 0, 0.490234, -0.0975342, 0.0190277, 0.490234, -0.0956421, 0.037323, 0.461914, -0.187622, 0, -0.0975342, -0.490234, 0.0956421, -0.0975342, -0.480957, 0.0900879, -0.191284, -0.452881, 0, 0.461914, -0.191284, 0.037323, 0.461914, -0.187622, 0.0541687, 0.415527, -0.272217, 0, -0.191284, -0.461914, 0.0900879, -0.191284, -0.452881, 0.0810547, -0.277588, -0.407715, 0, 0.415527, -0.277588, 0.0541687, 0.415527, -0.272217, 0.0689697, 0.353516, -0.34668, 0, -0.277588, -0.415527, 0.0810547, -0.277588, -0.407715, 0.0689697, -0.353516, -0.34668, 0, 0.353516, -0.353516, 0.0689697, 0.353516, -0.34668, 0.0810547, 0.277588, -0.407715, 0, -0.353516, -0.353516, 0.0689697, -0.353516, -0.34668, 0.0541687, -0.415527, -0.272217, 0, 0.277588, -0.415527, 0.0810547, 0.277588, -0.407715, 0.0900879, 0.191284, -0.452881, 0, -0.415527, -0.277588, 0.0541687, -0.415527, -0.272217, 0.037323, -0.461914, -0.187622, 0, 0.191284, -0.461914, 0.0900879, 0.191284, -0.452881, 0.0956421, 0.0975342, -0.480957, 0.0810547, 0.277588, -0.407715, 0.159058, 0.277588, -0.384033, 0.176758, 0.191284, -0.426758, 0.0541687, -0.415527, -0.272217, 0.106262, -0.415527, -0.256592, 0.0731812, -0.461914, -0.176758, 0.0900879, 0.191284, -0.452881, 0.176758, 0.191284, -0.426758, 0.187622, 0.0975342, -0.452881, 0.037323, -0.461914, -0.187622, 0.0731812, -0.461914, -0.176758, 0.037323, -0.490234, -0.0900879, 0.0956421, 0.0975342, -0.480957, 0.187622, 0.0975342, -0.452881, 0.191284, 0, -0.461914, 0.0975342, 0, -0.490234, 0.191284, 0, -0.461914, 0.187622, -0.0975342, -0.452881, 0.0190277, 0.490234, -0.0956421, 0.037323, 0.490234, -0.0900879, 0.0731812, 0.461914, -0.176758, 0.0956421, -0.0975342, -0.480957, 0.187622, -0.0975342, -0.452881, 0.176758, -0.191284, -0.426758, 0.037323, 0.461914, -0.187622, 0.0731812, 0.461914, -0.176758, 0.106262, 0.415527, -0.256592, 0.0900879, -0.191284, -0.452881, 0.176758, -0.191284, -0.426758, 0.159058, -0.277588, -0.384033, 0.0541687, 0.415527, -0.272217, 0.106262, 0.415527, -0.256592, 0.135254, 0.353516, -0.326416, 0.0810547, -0.277588, -0.407715, 0.159058, -0.277588, -0.384033, 0.135254, -0.353516, -0.326416, 0.0689697, 0.353516, -0.34668, 0.135254, 0.353516, -0.326416, 0.159058, 0.277588, -0.384033, 0.0689697, -0.353516, -0.34668, 0.135254, -0.353516, -0.326416, 0.106262, -0.415527, -0.256592, 0.187622, -0.0975342, -0.452881, 0.272217, -0.0975342, -0.407715, 0.256592, -0.191284, -0.384033, 0.0731812, 0.461914, -0.176758, 0.106262, 0.461914, -0.159058, 0.154297, 0.415527, -0.230957, 0.176758, -0.191284, -0.426758, 0.256592, -0.191284, -0.384033, 0.230957, -0.277588, -0.345459, 0.154297, 0.415527, -0.230957, 0.159058, -0.277588, -0.384033, 0.230957, -0.277588, -0.345459, 0.196411, -0.353516, -0.293945, 0.135254, 0.353516, -0.326416, 0.196411, 0.353516, -0.293945, 0.230957, 0.277588, -0.345459, 0.135254, -0.353516, -0.326416, 0.196411, -0.353516, -0.293945, 0.154297, -0.415527, -0.230957, 0.159058, 0.277588, -0.384033, 0.230957, 0.277588, -0.345459, 0.256592, 0.191284, -0.384033, 0.106262, -0.415527, -0.256592, 0.154297, -0.415527, -0.230957, 0.106262, -0.461914, -0.159058, 0.176758, 0.191284, -0.426758, 0.256592, 0.191284, -0.384033, 0.272217, 0.0975342, -0.407715, 0.0731812, -0.461914, -0.176758, 0.106262, -0.461914, -0.159058, 0.0541687, -0.490234, -0.0810547, 0.187622, 0.0975342, -0.452881, 0.272217, 0.0975342, -0.407715, 0.277588, 0, -0.415527, 0.191284, 0, -0.461914, 0.277588, 0, -0.415527, 0.272217, -0.0975342, -0.407715, 0.037323, 0.490234, -0.0900879, 0.0541687, 0.490234, -0.0810547, 0.106262, 0.461914, -0.159058, 0.154297, -0.415527, -0.230957, 0.196411, -0.415527, -0.196411, 0.135254, -0.461914, -0.135254, 0.256592, 0.191284, -0.384033, 0.326416, 0.191284, -0.326416, 0.34668, 0.0975342, -0.34668, 0.106262, -0.461914, -0.159058, 0.135254, -0.461914, -0.135254, 0.0689697, -0.490234, -0.0689697, 0.272217, 0.0975342, -0.407715, 0.34668, 0.0975342, -0.34668, 0.353516, 0, -0.353516, 0.277588, 0, -0.415527, 0.353516, 0, -0.353516, 0.34668, -0.0975342, -0.34668, 0.0541687, 0.490234, -0.0810547, 0.0689697, 0.490234, -0.0689697, 0.135254, 0.461914, -0.135254, 0.272217, -0.0975342, -0.407715, 0.34668, -0.0975342, -0.34668, 0.326416, -0.191284, -0.326416, 0.106262, 0.461914, -0.159058, 0.135254, 0.461914, -0.135254, 0.196411, 0.415527, -0.196411, 0.256592, -0.191284, -0.384033, 0.326416, -0.191284, -0.326416, 0.293945, -0.277588, -0.293945, 0.154297, 0.415527, -0.230957, 0.196411, 0.415527, -0.196411, 0.25, 0.353516, -0.25, 0.230957, -0.277588, -0.345459, 0.293945, -0.277588, -0.293945, 0.25, -0.353516, -0.25, 0.196411, 0.353516, -0.293945, 0.25, 0.353516, -0.25, 0.293945, 0.277588, -0.293945, 0.196411, -0.353516, -0.293945, 0.25, -0.353516, -0.25, 0.196411, -0.415527, -0.196411, 0.230957, 0.277588, -0.345459, 0.293945, 0.277588, -0.293945, 0.326416, 0.191284, -0.326416, 0.326416, -0.191284, -0.326416, 0.384033, -0.191284, -0.256592, 0.345459, -0.277588, -0.230957, 0.196411, 0.415527, -0.196411, 0.230957, 0.415527, -0.154297, 0.293945, 0.353516, -0.196411, 0.293945, -0.277588, -0.293945, 0.345459, -0.277588, -0.230957, 0.293945, -0.353516, -0.196411, 0.25, 0.353516, -0.25, 0.293945, 0.353516, -0.196411, 0.345459, 0.277588, -0.230957, 0.25, -0.353516, -0.25, 0.293945, -0.353516, -0.196411, 0.230957, -0.415527, -0.154297, 0.293945, 0.277588, -0.293945, 0.345459, 0.277588, -0.230957, 0.384033, 0.191284, -0.256592, 0.196411, -0.415527, -0.196411, 0.230957, -0.415527, -0.154297, 0.159058, -0.461914, -0.106262, 0.326416, 0.191284, -0.326416, 0.384033, 0.191284, -0.256592, 0.407715, 0.0975342, -0.272217, 0.135254, -0.461914, -0.135254, 0.159058, -0.461914, -0.106262, 0.0810547, -0.490234, -0.0541687, 0.34668, 0.0975342, -0.34668, 0.407715, 0.0975342, -0.272217, 0.415527, 0, -0.277588, 0.353516, 0, -0.353516, 0.415527, 0, -0.277588, 0.407715, -0.0975342, -0.272217, 0.0689697, 0.490234, -0.0689697, 0.0810547, 0.490234, -0.0541687, 0.159058, 0.461914, -0.106262, 0.34668, -0.0975342, -0.34668, 0.407715, -0.0975342, -0.272217, 0.384033, -0.191284, -0.256592, 0.135254, 0.461914, -0.135254, 0.159058, 0.461914, -0.106262, 0.230957, 0.415527, -0.154297, 0.159058, -0.461914, -0.106262, 0.176758, -0.461914, -0.0731812, 0.0900879, -0.490234, -0.037323, 0.407715, 0.0975342, -0.272217, 0.452881, 0.0975342, -0.187622, 0.461914, 0, -0.191284, 0.415527, 0, -0.277588, 0.461914, 0, -0.191284, 0.452881, -0.0975342, -0.187622, 0.0810547, 0.490234, -0.0541687, 0.0900879, 0.490234, -0.037323, 0.176758, 0.461914, -0.0731812, 0.407715, -0.0975342, -0.272217, 0.452881, -0.0975342, -0.187622, 0.426758, -0.191284, -0.176758, 0.159058, 0.461914, -0.106262, 0.176758, 0.461914, -0.0731812, 0.256592, 0.415527, -0.106262, 0.384033, -0.191284, -0.256592, 0.426758, -0.191284, -0.176758, 0.384033, -0.277588, -0.159058, 0.230957, 0.415527, -0.154297, 0.256592, 0.415527, -0.106262, 0.326416, 0.353516, -0.135254, 0.345459, -0.277588, -0.230957, 0.384033, -0.277588, -0.159058, 0.326416, -0.353516, -0.135254, 0.293945, 0.353516, -0.196411, 0.326416, 0.353516, -0.135254, 0.384033, 0.277588, -0.159058, 0.293945, -0.353516, -0.196411, 0.326416, -0.353516, -0.135254, 0.256592, -0.415527, -0.106262, 0.345459, 0.277588, -0.230957, 0.384033, 0.277588, -0.159058, 0.426758, 0.191284, -0.176758, 0.230957, -0.415527, -0.154297, 0.256592, -0.415527, -0.106262, 0.176758, -0.461914, -0.0731812, 0.384033, 0.191284, -0.256592, 0.426758, 0.191284, -0.176758, 0.452881, 0.0975342, -0.187622, 0.256592, 0.415527, -0.106262, 0.272217, 0.415527, -0.0541687, 0.34668, 0.353516, -0.0689697, 0.384033, -0.277588, -0.159058, 0.407715, -0.277588, -0.0810547, 0.34668, -0.353516, -0.0689697, 0.326416, 0.353516, -0.135254, 0.34668, 0.353516, -0.0689697, 0.407715, 0.277588, -0.0810547, 0.326416, -0.353516, -0.135254, 0.34668, -0.353516, -0.0689697, 0.272217, -0.415527, -0.0541687, 0.384033, 0.277588, -0.159058, 0.407715, 0.277588, -0.0810547, 0.452881, 0.191284, -0.0900879, 0.256592, -0.415527, -0.106262, 0.272217, -0.415527, -0.0541687, 0.187622, -0.461914, -0.037323, 0.426758, 0.191284, -0.176758, 0.452881, 0.191284, -0.0900879, 0.480957, 0.0975342, -0.0956421, 0.176758, -0.461914, -0.0731812, 0.187622, -0.461914, -0.037323, 0.0956421, -0.490234, -0.0190277, 0.452881, 0.0975342, -0.187622, 0.480957, 0.0975342, -0.0956421, 0.490234, 0, -0.0975342, 0.461914, 0, -0.191284, 0.490234, 0, -0.0975342, 0.480957, -0.0975342, -0.0956421, 0.0900879, 0.490234, -0.037323, 0.0956421, 0.490234, -0.0190277, 0.187622, 0.461914, -0.037323, 0.452881, -0.0975342, -0.187622, 0.480957, -0.0975342, -0.0956421, 0.452881, -0.191284, -0.0900879, 0.176758, 0.461914, -0.0731812, 0.187622, 0.461914, -0.037323, 0.272217, 0.415527, -0.0541687, 0.426758, -0.191284, -0.176758, 0.452881, -0.191284, -0.0900879, 0.407715, -0.277588, -0.0810547, 0.480957, 0.0975342, -0.0956421, 0.490234, 0.0975342, 0, 0.5, 0, 0, 0.490234, 0, -0.0975342, 0.5, 0, 0, 0.490234, -0.0975342, 0, 0.0956421, 0.490234, -0.0190277, 0.0975342, 0.490234, 0, 0.191284, 0.461914, 0, 0.480957, -0.0975342, -0.0956421, 0.490234, -0.0975342, 0, 0.461914, -0.191284, 0, 0.187622, 0.461914, -0.037323, 0.191284, 0.461914, 0, 0.277588, 0.415527, 0, 0.452881, -0.191284, -0.0900879, 0.461914, -0.191284, 0, 0.415527, -0.277588, 0, 0.272217, 0.415527, -0.0541687, 0.277588, 0.415527, 0, 0.353516, 0.353516, 0, 0.407715, -0.277588, -0.0810547, 0.415527, -0.277588, 0, 0.353516, -0.353516, 0, 0.34668, 0.353516, -0.0689697, 0.353516, 0.353516, 0, 0.415527, 0.277588, 0, 0.34668, -0.353516, -0.0689697, 0.353516, -0.353516, 0, 0.277588, -0.415527, 0, 0.407715, 0.277588, -0.0810547, 0.415527, 0.277588, 0, 0.461914, 0.191284, 0, 0.272217, -0.415527, -0.0541687, 0.277588, -0.415527, 0, 0.191284, -0.461914, 0, 0.452881, 0.191284, -0.0900879, 0.461914, 0.191284, 0, 0.490234, 0.0975342, 0, 0.187622, -0.461914, -0.037323, 0.191284, -0.461914, 0, 0.0975342, -0.490234, 0, 0.415527, -0.277588, 0, 0.407715, -0.277588, 0.0810547, 0.34668, -0.353516, 0.0689697, 0.353516, 0.353516, 0, 0.34668, 0.353516, 0.0689697, 0.407715, 0.277588, 0.0810547, 0.353516, -0.353516, 0, 0.34668, -0.353516, 0.0689697, 0.272217, -0.415527, 0.0541687, 0.415527, 0.277588, 0, 0.407715, 0.277588, 0.0810547, 0.452881, 0.191284, 0.0900879, 0.277588, -0.415527, 0, 0.272217, -0.415527, 0.0541687, 0.187622, -0.461914, 0.037323, 0.461914, 0.191284, 0, 0.452881, 0.191284, 0.0900879, 0.480957, 0.0975342, 0.0956421, 0.191284, -0.461914, 0, 0.187622, -0.461914, 0.037323, 0.0956421, -0.490234, 0.0190277, 0.490234, 0.0975342, 0, 0.480957, 0.0975342, 0.0956421, 0.490234, 0, 0.0975342, 0.5, 0, 0, 0.490234, 0, 0.0975342, 0.480957, -0.0975342, 0.0956421, 0.0975342, 0.490234, 0, 0.0956421, 0.490234, 0.0190277, 0.187622, 0.461914, 0.037323, 0.490234, -0.0975342, 0, 0.480957, -0.0975342, 0.0956421, 0.452881, -0.191284, 0.0900879, 0.191284, 0.461914, 0, 0.187622, 0.461914, 0.037323, 0.272217, 0.415527, 0.0541687, 0.461914, -0.191284, 0, 0.452881, -0.191284, 0.0900879, 0.407715, -0.277588, 0.0810547, 0.277588, 0.415527, 0, 0.272217, 0.415527, 0.0541687, 0.34668, 0.353516, 0.0689697, 0.490234, 0, 0.0975342, 0.461914, 0, 0.191284, 0.452881, -0.0975342, 0.187622, 0.0956421, 0.490234, 0.0190277, 0.0900879, 0.490234, 0.037323, 0.176758, 0.461914, 0.0731812, 0.480957, -0.0975342, 0.0956421, 0.452881, -0.0975342, 0.187622, 0.426758, -0.191284, 0.176758, 0.187622, 0.461914, 0.037323, 0.176758, 0.461914, 0.0731812, 0.256592, 0.415527, 0.106262, 0.452881, -0.191284, 0.0900879, 0.426758, -0.191284, 0.176758, 0.384033, -0.277588, 0.159058, 0.272217, 0.415527, 0.0541687, 0.256592, 0.415527, 0.106262, 0.326416, 0.353516, 0.135254, 0.407715, -0.277588, 0.0810547, 0.384033, -0.277588, 0.159058, 0.326416, -0.353516, 0.135254, 0.34668, 0.353516, 0.0689697, 0.326416, 0.353516, 0.135254, 0.384033, 0.277588, 0.159058, 0.34668, -0.353516, 0.0689697, 0.326416, -0.353516, 0.135254, 0.256592, -0.415527, 0.106262, 0.407715, 0.277588, 0.0810547, 0.384033, 0.277588, 0.159058, 0.426758, 0.191284, 0.176758, 0.272217, -0.415527, 0.0541687, 0.256592, -0.415527, 0.106262, 0.176758, -0.461914, 0.0731812, 0.452881, 0.191284, 0.0900879, 0.426758, 0.191284, 0.176758, 0.452881, 0.0975342, 0.187622, 0.187622, -0.461914, 0.037323, 0.176758, -0.461914, 0.0731812, 0.0900879, -0.490234, 0.037323, 0.480957, 0.0975342, 0.0956421, 0.452881, 0.0975342, 0.187622, 0.461914, 0, 0.191284, 0.326416, 0.353516, 0.135254, 0.293945, 0.353516, 0.196411, 0.345459, 0.277588, 0.230957, 0.326416, -0.353516, 0.135254, 0.293945, -0.353516, 0.196411, 0.230957, -0.415527, 0.154297, 0.384033, 0.277588, 0.159058, 0.345459, 0.277588, 0.230957, 0.384033, 0.191284, 0.256592, 0.256592, -0.415527, 0.106262, 0.230957, -0.415527, 0.154297, 0.159058, -0.461914, 0.106262, 0.426758, 0.191284, 0.176758, 0.384033, 0.191284, 0.256592, 0.407715, 0.0975342, 0.272217, 0.176758, -0.461914, 0.0731812, 0.159058, -0.461914, 0.106262, 0.0810547, -0.490234, 0.0541687, 0.452881, 0.0975342, 0.187622, 0.407715, 0.0975342, 0.272217, 0.415527, 0, 0.277588, 0.461914, 0, 0.191284, 0.415527, 0, 0.277588, 0.407715, -0.0975342, 0.272217, 0.0900879, 0.490234, 0.037323, 0.0810547, 0.490234, 0.0541687, 0.159058, 0.461914, 0.106262, 0.452881, -0.0975342, 0.187622, 0.407715, -0.0975342, 0.272217, 0.384033, -0.191284, 0.256592, 0.176758, 0.461914, 0.0731812, 0.159058, 0.461914, 0.106262, 0.230957, 0.415527, 0.154297, 0.426758, -0.191284, 0.176758, 0.384033, -0.191284, 0.256592, 0.345459, -0.277588, 0.230957, 0.256592, 0.415527, 0.106262, 0.230957, 0.415527, 0.154297, 0.293945, 0.353516, 0.196411, 0.384033, -0.277588, 0.159058, 0.345459, -0.277588, 0.230957, 0.293945, -0.353516, 0.196411, 0.415527, 0, 0.277588, 0.353516, 0, 0.353516, 0.34668, -0.0975342, 0.34668, 0.0810547, 0.490234, 0.0541687, 0.0689697, 0.490234, 0.0689697, 0.135254, 0.461914, 0.135254, 0.407715, -0.0975342, 0.272217, 0.34668, -0.0975342, 0.34668, 0.326416, -0.191284, 0.326416, 0.159058, 0.461914, 0.106262, 0.135254, 0.461914, 0.135254, 0.196411, 0.415527, 0.196411, 0.384033, -0.191284, 0.256592, 0.326416, -0.191284, 0.326416, 0.293945, -0.277588, 0.293945, 0.230957, 0.415527, 0.154297, 0.196411, 0.415527, 0.196411, 0.25, 0.353516, 0.25, 0.345459, -0.277588, 0.230957, 0.293945, -0.277588, 0.293945, 0.25, -0.353516, 0.25, 0.293945, 0.353516, 0.196411, 0.25, 0.353516, 0.25, 0.293945, 0.277588, 0.293945, 0.293945, -0.353516, 0.196411, 0.25, -0.353516, 0.25, 0.196411, -0.415527, 0.196411, 0.345459, 0.277588, 0.230957, 0.293945, 0.277588, 0.293945, 0.326416, 0.191284, 0.326416, 0.230957, -0.415527, 0.154297, 0.196411, -0.415527, 0.196411, 0.135254, -0.461914, 0.135254, 0.384033, 0.191284, 0.256592, 0.326416, 0.191284, 0.326416, 0.34668, 0.0975342, 0.34668, 0.159058, -0.461914, 0.106262, 0.135254, -0.461914, 0.135254, 0.0689697, -0.490234, 0.0689697, 0.407715, 0.0975342, 0.272217, 0.34668, 0.0975342, 0.34668, 0.353516, 0, 0.353516, 0.25, -0.353516, 0.25, 0.196411, -0.353516, 0.293945, 0.154297, -0.415527, 0.230957, 0.293945, 0.277588, 0.293945, 0.230957, 0.277588, 0.345459, 0.256592, 0.191284, 0.384033, 0.196411, -0.415527, 0.196411, 0.154297, -0.415527, 0.230957, 0.106262, -0.461914, 0.159058, 0.326416, 0.191284, 0.326416, 0.256592, 0.191284, 0.384033, 0.272217, 0.0975342, 0.407715, 0.135254, -0.461914, 0.135254, 0.106262, -0.461914, 0.159058, 0.0541687, -0.490234, 0.0810547, 0.34668, 0.0975342, 0.34668, 0.272217, 0.0975342, 0.407715, 0.277588, 0, 0.415527, 0.353516, 0, 0.353516, 0.277588, 0, 0.415527, 0.272217, -0.0975342, 0.407715, 0.0689697, 0.490234, 0.0689697, 0.0541687, 0.490234, 0.0810547, 0.106262, 0.461914, 0.159058, 0.34668, -0.0975342, 0.34668, 0.272217, -0.0975342, 0.407715, 0.256592, -0.191284, 0.384033, 0.135254, 0.461914, 0.135254, 0.106262, 0.461914, 0.159058, 0.154297, 0.415527, 0.230957, 0.326416, -0.191284, 0.326416, 0.256592, -0.191284, 0.384033, 0.230957, -0.277588, 0.345459, 0.196411, 0.415527, 0.196411, 0.154297, 0.415527, 0.230957, 0.196411, 0.353516, 0.293945, 0.293945, -0.277588, 0.293945, 0.230957, -0.277588, 0.345459, 0.196411, -0.353516, 0.293945, 0.25, 0.353516, 0.25, 0.196411, 0.353516, 0.293945, 0.230957, 0.277588, 0.345459, 0.272217, -0.0975342, 0.407715, 0.187622, -0.0975342, 0.452881, 0.176758, -0.191284, 0.426758, 0.106262, 0.461914, 0.159058, 0.0731812, 0.461914, 0.176758, 0.106262, 0.415527, 0.256592, 0.256592, -0.191284, 0.384033, 0.176758, -0.191284, 0.426758, 0.159058, -0.277588, 0.384033, 0.154297, 0.415527, 0.230957, 0.106262, 0.415527, 0.256592, 0.135254, 0.353516, 0.326416, 0.230957, -0.277588, 0.345459, 0.159058, -0.277588, 0.384033, 0.135254, -0.353516, 0.326416, 0.196411, 0.353516, 0.293945, 0.135254, 0.353516, 0.326416, 0.159058, 0.277588, 0.384033, 0.196411, -0.353516, 0.293945, 0.135254, -0.353516, 0.326416, 0.106262, -0.415527, 0.256592, 0.230957, 0.277588, 0.345459, 0.159058, 0.277588, 0.384033, 0.176758, 0.191284, 0.426758, 0.154297, -0.415527, 0.230957, 0.106262, -0.415527, 0.256592, 0.0731812, -0.461914, 0.176758, 0.256592, 0.191284, 0.384033, 0.176758, 0.191284, 0.426758, 0.187622, 0.0975342, 0.452881, 0.106262, -0.461914, 0.159058, 0.0731812, -0.461914, 0.176758, 0.037323, -0.490234, 0.0900879, 0.272217, 0.0975342, 0.407715, 0.187622, 0.0975342, 0.452881, 0.191284, 0, 0.461914, 0.277588, 0, 0.415527, 0.191284, 0, 0.461914, 0.187622, -0.0975342, 0.452881, 0.0541687, 0.490234, 0.0810547, 0.037323, 0.490234, 0.0900879, 0.0731812, 0.461914, 0.176758, 0.106262, -0.415527, 0.256592, 0.0541687, -0.415527, 0.272217, 0.037323, -0.461914, 0.187622, 0.176758, 0.191284, 0.426758, 0.0900879, 0.191284, 0.452881, 0.0956421, 0.0975342, 0.480957, 0.0731812, -0.461914, 0.176758, 0.037323, -0.461914, 0.187622, 0.0190277, -0.490234, 0.0956421, 0.187622, 0.0975342, 0.452881, 0.0956421, 0.0975342, 0.480957, 0.0975342, 0, 0.490234, 0.191284, 0, 0.461914, 0.0975342, 0, 0.490234, 0.0956421, -0.0975342, 0.480957, 0.037323, 0.490234, 0.0900879, 0.0190277, 0.490234, 0.0956421, 0.037323, 0.461914, 0.187622, 0.187622, -0.0975342, 0.452881, 0.0956421, -0.0975342, 0.480957, 0.0900879, -0.191284, 0.452881, 0.0731812, 0.461914, 0.176758, 0.037323, 0.461914, 0.187622, 0.0541687, 0.415527, 0.272217, 0.176758, -0.191284, 0.426758, 0.0900879, -0.191284, 0.452881, 0.0810547, -0.277588, 0.407715, 0.106262, 0.415527, 0.256592, 0.0541687, 0.415527, 0.272217, 0.0689697, 0.353516, 0.34668, 0.159058, -0.277588, 0.384033, 0.0810547, -0.277588, 0.407715, 0.0689697, -0.353516, 0.34668, 0.135254, 0.353516, 0.326416, 0.0689697, 0.353516, 0.34668, 0.0810547, 0.277588, 0.407715, 0.135254, -0.353516, 0.326416, 0.0689697, -0.353516, 0.34668, 0.0541687, -0.415527, 0.272217, 0.159058, 0.277588, 0.384033, 0.0810547, 0.277588, 0.407715, 0.0900879, 0.191284, 0.452881, 0.037323, 0.461914, 0.187622, 0, 0.461914, 0.191284, 0, 0.415527, 0.277588, 0.0900879, -0.191284, 0.452881, 0, -0.191284, 0.461914, 0, -0.277588, 0.415527, 0.0541687, 0.415527, 0.272217, 0, 0.415527, 0.277588, 0, 0.353516, 0.353516, 0.0810547, -0.277588, 0.407715, 0, -0.277588, 0.415527, 0, -0.353516, 0.353516, 0.0689697, 0.353516, 0.34668, 0, 0.353516, 0.353516, 0, 0.277588, 0.415527, 0.0689697, -0.353516, 0.34668, 0, -0.353516, 0.353516, 0, -0.415527, 0.277588, 0.0810547, 0.277588, 0.407715, 0, 0.277588, 0.415527, 0, 0.191284, 0.461914, 0.0541687, -0.415527, 0.272217, 0, -0.415527, 0.277588, 0, -0.461914, 0.191284, 0.0900879, 0.191284, 0.452881, 0, 0.191284, 0.461914, 0, 0.0975342, 0.490234, 0.037323, -0.461914, 0.187622, 0, -0.461914, 0.191284, 0, -0.490234, 0.0975342, 0.0956421, 0.0975342, 0.480957, 0, 0.0975342, 0.490234, 0, 0, 0.5, 0.0975342, 0, 0.490234, 0, 0, 0.5, 0, -0.0975342, 0.490234, 0.0190277, 0.490234, 0.0956421, 0, 0.490234, 0.0975342, 0, 0.461914, 0.191284, 0.0956421, -0.0975342, 0.480957, 0, -0.0975342, 0.490234, 0, -0.191284, 0.461914, 0, 0.191284, 0.461914, -0.0900879, 0.191284, 0.452881, -0.0956421, 0.0975342, 0.480957, 0, -0.461914, 0.191284, -0.037323, -0.461914, 0.187622, -0.0190277, -0.490234, 0.0956421, 0, 0.0975342, 0.490234, -0.0956421, 0.0975342, 0.480957, -0.0975342, 0, 0.490234, 0, 0, 0.5, -0.0975342, 0, 0.490234, -0.0956421, -0.0975342, 0.480957, 0, 0.490234, 0.0975342, -0.0190277, 0.490234, 0.0956421, -0.037323, 0.461914, 0.187622, 0, -0.0975342, 0.490234, -0.0956421, -0.0975342, 0.480957, -0.0900879, -0.191284, 0.452881, 0, 0.461914, 0.191284, -0.037323, 0.461914, 0.187622, -0.0541687, 0.415527, 0.272217, 0, -0.191284, 0.461914, -0.0900879, -0.191284, 0.452881, -0.0810547, -0.277588, 0.407715, 0, 0.415527, 0.277588, -0.0541687, 0.415527, 0.272217, -0.0689697, 0.353516, 0.34668, 0, -0.277588, 0.415527, -0.0810547, -0.277588, 0.407715, -0.0689697, -0.353516, 0.34668, 0, 0.353516, 0.353516, -0.0689697, 0.353516, 0.34668, -0.0810547, 0.277588, 0.407715, 0, -0.353516, 0.353516, -0.0689697, -0.353516, 0.34668, -0.0541687, -0.415527, 0.272217, 0, 0.277588, 0.415527, -0.0810547, 0.277588, 0.407715, -0.0900879, 0.191284, 0.452881, 0, -0.415527, 0.277588, -0.0541687, -0.415527, 0.272217, -0.037323, -0.461914, 0.187622, -0.0900879, -0.191284, 0.452881, -0.176758, -0.191284, 0.426758, -0.159058, -0.277588, 0.384033, -0.0541687, 0.415527, 0.272217, -0.106262, 0.415527, 0.256592, -0.135254, 0.353516, 0.326416, -0.0810547, -0.277588, 0.407715, -0.159058, -0.277588, 0.384033, -0.135254, -0.353516, 0.326416, -0.0689697, 0.353516, 0.34668, -0.135254, 0.353516, 0.326416, -0.159058, 0.277588, 0.384033, -0.135254, -0.353516, 0.326416, -0.0810547, 0.277588, 0.407715, -0.159058, 0.277588, 0.384033, -0.176758, 0.191284, 0.426758, -0.0541687, -0.415527, 0.272217, -0.106262, -0.415527, 0.256592, -0.0731812, -0.461914, 0.176758, -0.0900879, 0.191284, 0.452881, -0.176758, 0.191284, 0.426758, -0.187622, 0.0975342, 0.452881, -0.037323, -0.461914, 0.187622, -0.0731812, -0.461914, 0.176758, -0.037323, -0.490234, 0.0900879, -0.0956421, 0.0975342, 0.480957, -0.187622, 0.0975342, 0.452881, -0.191284, 0, 0.461914, -0.0975342, 0, 0.490234, -0.191284, 0, 0.461914, -0.187622, -0.0975342, 0.452881, -0.0190277, 0.490234, 0.0956421, -0.037323, 0.490234, 0.0900879, -0.0731812, 0.461914, 0.176758, -0.0956421, -0.0975342, 0.480957, -0.187622, -0.0975342, 0.452881, -0.176758, -0.191284, 0.426758, -0.037323, 0.461914, 0.187622, -0.0731812, 0.461914, 0.176758, -0.106262, 0.415527, 0.256592, -0.0731812, -0.461914, 0.176758, -0.106262, -0.461914, 0.159058, -0.0541687, -0.490234, 0.0810547, -0.187622, 0.0975342, 0.452881, -0.272217, 0.0975342, 0.407715, -0.277588, 0, 0.415527, -0.191284, 0, 0.461914, -0.277588, 0, 0.415527, -0.272217, -0.0975342, 0.407715, -0.037323, 0.490234, 0.0900879, -0.0541687, 0.490234, 0.0810547, -0.106262, 0.461914, 0.159058, -0.187622, -0.0975342, 0.452881, -0.272217, -0.0975342, 0.407715, -0.256592, -0.191284, 0.384033, -0.0731812, 0.461914, 0.176758, -0.106262, 0.461914, 0.159058, -0.154297, 0.415527, 0.230957, -0.176758, -0.191284, 0.426758, -0.256592, -0.191284, 0.384033, -0.230957, -0.277588, 0.345459, -0.106262, 0.415527, 0.256592, -0.154297, 0.415527, 0.230957, -0.196411, 0.353516, 0.293945, -0.159058, -0.277588, 0.384033, -0.230957, -0.277588, 0.345459, -0.196411, -0.353516, 0.293945, -0.135254, 0.353516, 0.326416, -0.196411, 0.353516, 0.293945, -0.230957, 0.277588, 0.345459, -0.135254, -0.353516, 0.326416, -0.196411, -0.353516, 0.293945, -0.154297, -0.415527, 0.230957, -0.159058, 0.277588, 0.384033, -0.230957, 0.277588, 0.345459, -0.256592, 0.191284, 0.384033, -0.106262, -0.415527, 0.256592, -0.154297, -0.415527, 0.230957, -0.106262, -0.461914, 0.159058, -0.176758, 0.191284, 0.426758, -0.256592, 0.191284, 0.384033, -0.272217, 0.0975342, 0.407715, -0.154297, 0.415527, 0.230957, -0.196411, 0.415527, 0.196411, -0.25, 0.353516, 0.25, -0.230957, -0.277588, 0.345459, -0.293945, -0.277588, 0.293945, -0.25, -0.353516, 0.25, -0.196411, 0.353516, 0.293945, -0.25, 0.353516, 0.25, -0.293945, 0.277588, 0.293945, -0.196411, -0.353516, 0.293945, -0.25, -0.353516, 0.25, -0.196411, -0.415527, 0.196411, -0.230957, 0.277588, 0.345459, -0.293945, 0.277588, 0.293945, -0.326416, 0.191284, 0.326416, -0.154297, -0.415527, 0.230957, -0.196411, -0.415527, 0.196411, -0.135254, -0.461914, 0.135254, -0.256592, 0.191284, 0.384033, -0.326416, 0.191284, 0.326416, -0.34668, 0.0975342, 0.34668, -0.106262, -0.461914, 0.159058, -0.135254, -0.461914, 0.135254, -0.0689697, -0.490234, 0.0689697, -0.272217, 0.0975342, 0.407715, -0.34668, 0.0975342, 0.34668, -0.353516, 0, 0.353516, -0.277588, 0, 0.415527, -0.353516, 0, 0.353516, -0.34668, -0.0975342, 0.34668, -0.0541687, 0.490234, 0.0810547, -0.0689697, 0.490234, 0.0689697, -0.135254, 0.461914, 0.135254, -0.272217, -0.0975342, 0.407715, -0.34668, -0.0975342, 0.34668, -0.326416, -0.191284, 0.326416, -0.106262, 0.461914, 0.159058, -0.135254, 0.461914, 0.135254, -0.196411, 0.415527, 0.196411, -0.256592, -0.191284, 0.384033, -0.326416, -0.191284, 0.326416, -0.293945, -0.277588, 0.293945, -0.34668, 0.0975342, 0.34668, -0.407715, 0.0975342, 0.272217, -0.415527, 0, 0.277588, -0.353516, 0, 0.353516, -0.415527, 0, 0.277588, -0.407715, -0.0975342, 0.272217, -0.0689697, 0.490234, 0.0689697, -0.0810547, 0.490234, 0.0541687, -0.159058, 0.461914, 0.106262, -0.34668, -0.0975342, 0.34668, -0.407715, -0.0975342, 0.272217, -0.384033, -0.191284, 0.256592, -0.135254, 0.461914, 0.135254, -0.159058, 0.461914, 0.106262, -0.230957, 0.415527, 0.154297, -0.326416, -0.191284, 0.326416, -0.384033, -0.191284, 0.256592, -0.345459, -0.277588, 0.230957, -0.196411, 0.415527, 0.196411, -0.230957, 0.415527, 0.154297, -0.293945, 0.353516, 0.196411, -0.293945, -0.277588, 0.293945, -0.345459, -0.277588, 0.230957, -0.293945, -0.353516, 0.196411, -0.25, 0.353516, 0.25, -0.293945, 0.353516, 0.196411, -0.345459, 0.277588, 0.230957, -0.25, -0.353516, 0.25, -0.293945, -0.353516, 0.196411, -0.230957, -0.415527, 0.154297, -0.293945, 0.277588, 0.293945, -0.345459, 0.277588, 0.230957, -0.384033, 0.191284, 0.256592, -0.196411, -0.415527, 0.196411, -0.230957, -0.415527, 0.154297, -0.159058, -0.461914, 0.106262, -0.326416, 0.191284, 0.326416, -0.384033, 0.191284, 0.256592, -0.407715, 0.0975342, 0.272217, -0.135254, -0.461914, 0.135254, -0.159058, -0.461914, 0.106262, -0.0810547, -0.490234, 0.0541687, -0.345459, -0.277588, 0.230957, -0.384033, -0.277588, 0.159058, -0.326416, -0.353516, 0.135254, -0.293945, 0.353516, 0.196411, -0.326416, 0.353516, 0.135254, -0.384033, 0.277588, 0.159058, -0.293945, -0.353516, 0.196411, -0.326416, -0.353516, 0.135254, -0.256592, -0.415527, 0.106262, -0.345459, 0.277588, 0.230957, -0.384033, 0.277588, 0.159058, -0.426758, 0.191284, 0.176758, -0.230957, -0.415527, 0.154297, -0.256592, -0.415527, 0.106262, -0.176758, -0.461914, 0.0731812, -0.384033, 0.191284, 0.256592, -0.426758, 0.191284, 0.176758, -0.452881, 0.0975342, 0.187622, -0.159058, -0.461914, 0.106262, -0.176758, -0.461914, 0.0731812, -0.0900879, -0.490234, 0.037323, -0.407715, 0.0975342, 0.272217, -0.452881, 0.0975342, 0.187622, -0.461914, 0, 0.191284, -0.415527, 0, 0.277588, -0.461914, 0, 0.191284, -0.452881, -0.0975342, 0.187622, -0.0810547, 0.490234, 0.0541687, -0.0900879, 0.490234, 0.037323, -0.176758, 0.461914, 0.0731812, -0.407715, -0.0975342, 0.272217, -0.452881, -0.0975342, 0.187622, -0.426758, -0.191284, 0.176758, -0.159058, 0.461914, 0.106262, -0.176758, 0.461914, 0.0731812, -0.256592, 0.415527, 0.106262, -0.384033, -0.191284, 0.256592, -0.426758, -0.191284, 0.176758, -0.384033, -0.277588, 0.159058, -0.230957, 0.415527, 0.154297, -0.256592, 0.415527, 0.106262, -0.326416, 0.353516, 0.135254, -0.461914, 0, 0.191284, -0.490234, 0, 0.0975342, -0.480957, -0.0975342, 0.0956421, -0.0900879, 0.490234, 0.037323, -0.0956421, 0.490234, 0.0190277, -0.187622, 0.461914, 0.037323, -0.452881, -0.0975342, 0.187622, -0.480957, -0.0975342, 0.0956421, -0.452881, -0.191284, 0.0900879, -0.176758, 0.461914, 0.0731812, -0.187622, 0.461914, 0.037323, -0.272217, 0.415527, 0.0541687, -0.426758, -0.191284, 0.176758, -0.452881, -0.191284, 0.0900879, -0.407715, -0.277588, 0.0810547, -0.256592, 0.415527, 0.106262, -0.272217, 0.415527, 0.0541687, -0.34668, 0.353516, 0.0689697, -0.384033, -0.277588, 0.159058, -0.407715, -0.277588, 0.0810547, -0.34668, -0.353516, 0.0689697, -0.326416, 0.353516, 0.135254, -0.34668, 0.353516, 0.0689697, -0.407715, 0.277588, 0.0810547, -0.326416, -0.353516, 0.135254, -0.34668, -0.353516, 0.0689697, -0.272217, -0.415527, 0.0541687, -0.384033, 0.277588, 0.159058, -0.407715, 0.277588, 0.0810547, -0.452881, 0.191284, 0.0900879, -0.256592, -0.415527, 0.106262, -0.272217, -0.415527, 0.0541687, -0.187622, -0.461914, 0.037323, -0.426758, 0.191284, 0.176758, -0.452881, 0.191284, 0.0900879, -0.480957, 0.0975342, 0.0956421, -0.176758, -0.461914, 0.0731812, -0.187622, -0.461914, 0.037323, -0.0956421, -0.490234, 0.0190277, -0.452881, 0.0975342, 0.187622, -0.480957, 0.0975342, 0.0956421, -0.490234, 0, 0.0975342, -0.34668, -0.353516, 0.0689697, -0.353516, -0.353516, 0, -0.277588, -0.415527, 0, -0.407715, 0.277588, 0.0810547, -0.415527, 0.277588, 0, -0.461914, 0.191284, 0, -0.272217, -0.415527, 0.0541687, -0.277588, -0.415527, 0, -0.191284, -0.461914, 0, -0.452881, 0.191284, 0.0900879, -0.461914, 0.191284, 0, -0.490234, 0.0975342, 0, -0.187622, -0.461914, 0.037323, -0.191284, -0.461914, 0, -0.0975342, -0.490234, 0, -0.480957, 0.0975342, 0.0956421, -0.490234, 0.0975342, 0, -0.5, 0, 0, -0.490234, 0, 0.0975342, -0.5, 0, 0, -0.490234, -0.0975342, 0, -0.0956421, 0.490234, 0.0190277, -0.0975342, 0.490234, 0, -0.191284, 0.461914, 0, -0.480957, -0.0975342, 0.0956421, -0.490234, -0.0975342, 0, -0.461914, -0.191284, 0, -0.187622, 0.461914, 0.037323, -0.191284, 0.461914, 0, -0.277588, 0.415527, 0, -0.452881, -0.191284, 0.0900879, -0.461914, -0.191284, 0, -0.415527, -0.277588, 0, -0.272217, 0.415527, 0.0541687, -0.277588, 0.415527, 0, -0.353516, 0.353516, 0, -0.407715, -0.277588, 0.0810547, -0.415527, -0.277588, 0, -0.353516, -0.353516, 0, -0.34668, 0.353516, 0.0689697, -0.353516, 0.353516, 0, -0.415527, 0.277588, 0, -0.0975342, 0.490234, 0, -0.0956421, 0.490234, -0.0190277, -0.187622, 0.461914, -0.037323, -0.490234, -0.0975342, 0, -0.480957, -0.0975342, -0.0956421, -0.452881, -0.191284, -0.0900879, -0.191284, 0.461914, 0, -0.187622, 0.461914, -0.037323, -0.272217, 0.415527, -0.0541687, -0.461914, -0.191284, 0, -0.452881, -0.191284, -0.0900879, -0.407715, -0.277588, -0.0810547, -0.277588, 0.415527, 0, -0.272217, 0.415527, -0.0541687, -0.34668, 0.353516, -0.0689697, -0.415527, -0.277588, 0, -0.407715, -0.277588, -0.0810547, -0.34668, -0.353516, -0.0689697, -0.353516, 0.353516, 0, -0.34668, 0.353516, -0.0689697, -0.407715, 0.277588, -0.0810547, -0.353516, -0.353516, 0, -0.34668, -0.353516, -0.0689697, -0.272217, -0.415527, -0.0541687, -0.415527, 0.277588, 0, -0.407715, 0.277588, -0.0810547, -0.452881, 0.191284, -0.0900879, -0.277588, -0.415527, 0, -0.272217, -0.415527, -0.0541687, -0.187622, -0.461914, -0.037323, -0.461914, 0.191284, 0, -0.452881, 0.191284, -0.0900879, -0.480957, 0.0975342, -0.0956421, -0.191284, -0.461914, 0, -0.187622, -0.461914, -0.037323, -0.0956421, -0.490234, -0.0190277, -0.490234, 0.0975342, 0, -0.480957, 0.0975342, -0.0956421, -0.490234, 0, -0.0975342, -0.5, 0, 0, -0.490234, 0, -0.0975342, -0.480957, -0.0975342, -0.0956421, -0.407715, 0.277588, -0.0810547, -0.384033, 0.277588, -0.159058, -0.426758, 0.191284, -0.176758, -0.272217, -0.415527, -0.0541687, -0.256592, -0.415527, -0.106262, -0.176758, -0.461914, -0.0731812, -0.452881, 0.191284, -0.0900879, -0.426758, 0.191284, -0.176758, -0.452881, 0.0975342, -0.187622, -0.187622, -0.461914, -0.037323, -0.176758, -0.461914, -0.0731812, -0.0900879, -0.490234, -0.037323, -0.480957, 0.0975342, -0.0956421, -0.452881, 0.0975342, -0.187622, -0.461914, 0, -0.191284, -0.490234, 0, -0.0975342, -0.461914, 0, -0.191284, -0.452881, -0.0975342, -0.187622, -0.0956421, 0.490234, -0.0190277, -0.0900879, 0.490234, -0.037323, -0.176758, 0.461914, -0.0731812, -0.480957, -0.0975342, -0.0956421, -0.452881, -0.0975342, -0.187622, -0.426758, -0.191284, -0.176758, -0.187622, 0.461914, -0.037323, -0.176758, 0.461914, -0.0731812, -0.256592, 0.415527, -0.106262, -0.452881, -0.191284, -0.0900879, -0.426758, -0.191284, -0.176758, -0.384033, -0.277588, -0.159058, -0.272217, 0.415527, -0.0541687, -0.256592, 0.415527, -0.106262, -0.326416, 0.353516, -0.135254, -0.407715, -0.277588, -0.0810547, -0.384033, -0.277588, -0.159058, -0.326416, -0.353516, -0.135254, -0.34668, 0.353516, -0.0689697, -0.326416, 0.353516, -0.135254, -0.384033, 0.277588, -0.159058, -0.34668, -0.353516, -0.0689697, -0.326416, -0.353516, -0.135254, -0.256592, -0.415527, -0.106262, -0.452881, -0.0975342, -0.187622, -0.407715, -0.0975342, -0.272217, -0.384033, -0.191284, -0.256592, -0.176758, 0.461914, -0.0731812, -0.159058, 0.461914, -0.106262, -0.230957, 0.415527, -0.154297, -0.426758, -0.191284, -0.176758, -0.384033, -0.191284, -0.256592, -0.345459, -0.277588, -0.230957, -0.256592, 0.415527, -0.106262, -0.230957, 0.415527, -0.154297, -0.293945, 0.353516, -0.196411, -0.384033, -0.277588, -0.159058, -0.345459, -0.277588, -0.230957, -0.293945, -0.353516, -0.196411, -0.326416, 0.353516, -0.135254, -0.293945, 0.353516, -0.196411, -0.345459, 0.277588, -0.230957, -0.326416, -0.353516, -0.135254, -0.293945, -0.353516, -0.196411, -0.230957, -0.415527, -0.154297, -0.384033, 0.277588, -0.159058, -0.345459, 0.277588, -0.230957, -0.384033, 0.191284, -0.256592, -0.256592, -0.415527, -0.106262, -0.230957, -0.415527, -0.154297, -0.159058, -0.461914, -0.106262, -0.426758, 0.191284, -0.176758, -0.384033, 0.191284, -0.256592, -0.407715, 0.0975342, -0.272217, -0.176758, -0.461914, -0.0731812, -0.159058, -0.461914, -0.106262, -0.0810547, -0.490234, -0.0541687, -0.452881, 0.0975342, -0.187622, -0.407715, 0.0975342, -0.272217, -0.415527, 0, -0.277588, -0.461914, 0, -0.191284, -0.415527, 0, -0.277588, -0.407715, -0.0975342, -0.272217, -0.0900879, 0.490234, -0.037323, -0.0810547, 0.490234, -0.0541687, -0.159058, 0.461914, -0.106262, -0.230957, -0.415527, -0.154297, -0.196411, -0.415527, -0.196411, -0.135254, -0.461914, -0.135254, -0.384033, 0.191284, -0.256592, -0.326416, 0.191284, -0.326416, -0.34668, 0.0975342, -0.34668, -0.159058, -0.461914, -0.106262, -0.135254, -0.461914, -0.135254, -0.0689697, -0.490234, -0.0689697, -0.407715, 0.0975342, -0.272217, -0.34668, 0.0975342, -0.34668, -0.353516, 0, -0.353516, -0.415527, 0, -0.277588, -0.353516, 0, -0.353516, -0.34668, -0.0975342, -0.34668, -0.0810547, 0.490234, -0.0541687, -0.0689697, 0.490234, -0.0689697, -0.135254, 0.461914, -0.135254, -0.407715, -0.0975342, -0.272217, -0.34668, -0.0975342, -0.34668, -0.326416, -0.191284, -0.326416, -0.159058, 0.461914, -0.106262, -0.135254, 0.461914, -0.135254, -0.196411, 0.415527, -0.196411, -0.384033, -0.191284, -0.256592, -0.326416, -0.191284, -0.326416, -0.293945, -0.277588, -0.293945, -0.230957, 0.415527, -0.154297, -0.196411, 0.415527, -0.196411, -0.25, 0.353516, -0.25, -0.345459, -0.277588, -0.230957, -0.293945, -0.277588, -0.293945, -0.25, -0.353516, -0.25, -0.293945, 0.353516, -0.196411, -0.25, 0.353516, -0.25, -0.293945, 0.277588, -0.293945, -0.293945, -0.353516, -0.196411, -0.25, -0.353516, -0.25, -0.196411, -0.415527, -0.196411, -0.345459, 0.277588, -0.230957, -0.293945, 0.277588, -0.293945, -0.326416, 0.191284, -0.326416, -0.135254, 0.461914, -0.135254, -0.106262, 0.461914, -0.159058, -0.154297, 0.415527, -0.230957, -0.326416, -0.191284, -0.326416, -0.256592, -0.191284, -0.384033, -0.230957, -0.277588, -0.345459, -0.196411, 0.415527, -0.196411, -0.154297, 0.415527, -0.230957, -0.196411, 0.353516, -0.293945, -0.293945, -0.277588, -0.293945, -0.230957, -0.277588, -0.345459, -0.196411, -0.353516, -0.293945, -0.25, 0.353516, -0.25, -0.196411, 0.353516, -0.293945, -0.230957, 0.277588, -0.345459, -0.25, -0.353516, -0.25, -0.196411, -0.353516, -0.293945, -0.154297, -0.415527, -0.230957, -0.293945, 0.277588, -0.293945, -0.230957, 0.277588, -0.345459, -0.256592, 0.191284, -0.384033, -0.196411, -0.415527, -0.196411, -0.154297, -0.415527, -0.230957, -0.106262, -0.461914, -0.159058, -0.326416, 0.191284, -0.326416, -0.256592, 0.191284, -0.384033, -0.272217, 0.0975342, -0.407715, -0.135254, -0.461914, -0.135254, -0.106262, -0.461914, -0.159058, -0.0541687, -0.490234, -0.0810547, -0.34668, 0.0975342, -0.34668, -0.272217, 0.0975342, -0.407715, -0.277588, 0, -0.415527, -0.353516, 0, -0.353516, -0.277588, 0, -0.415527, -0.272217, -0.0975342, -0.407715, -0.0689697, 0.490234, -0.0689697, -0.0541687, 0.490234, -0.0810547, -0.106262, 0.461914, -0.159058, -0.34668, -0.0975342, -0.34668, -0.272217, -0.0975342, -0.407715, -0.256592, -0.191284, -0.384033, -0.256592, 0.191284, -0.384033, -0.176758, 0.191284, -0.426758, -0.187622, 0.0975342, -0.452881, -0.106262, -0.461914, -0.159058, -0.0731812, -0.461914, -0.176758, -0.037323, -0.490234, -0.0900879, -0.272217, 0.0975342, -0.407715, -0.187622, 0.0975342, -0.452881, -0.191284, 0, -0.461914, -0.277588, 0, -0.415527, -0.191284, 0, -0.461914, -0.187622, -0.0975342, -0.452881, -0.0541687, 0.490234, -0.0810547, -0.037323, 0.490234, -0.0900879, -0.0731812, 0.461914, -0.176758, -0.272217, -0.0975342, -0.407715, -0.187622, -0.0975342, -0.452881, -0.176758, -0.191284, -0.426758, -0.106262, 0.461914, -0.159058, -0.0731812, 0.461914, -0.176758, -0.106262, 0.415527, -0.256592, -0.256592, -0.191284, -0.384033, -0.176758, -0.191284, -0.426758, -0.159058, -0.277588, -0.384033, -0.154297, 0.415527, -0.230957, -0.106262, 0.415527, -0.256592, -0.135254, 0.353516, -0.326416, -0.230957, -0.277588, -0.345459, -0.159058, -0.277588, -0.384033, -0.135254, -0.353516, -0.326416, -0.196411, 0.353516, -0.293945, -0.135254, 0.353516, -0.326416, -0.159058, 0.277588, -0.384033, -0.196411, -0.353516, -0.293945, -0.135254, -0.353516, -0.326416, -0.106262, -0.415527, -0.256592, -0.230957, 0.277588, -0.345459, -0.159058, 0.277588, -0.384033, -0.176758, 0.191284, -0.426758, -0.154297, -0.415527, -0.230957, -0.106262, -0.415527, -0.256592, -0.0731812, -0.461914, -0.176758, -0.176758, -0.191284, -0.426758, -0.0900879, -0.191284, -0.452881, -0.0810547, -0.277588, -0.407715, -0.106262, 0.415527, -0.256592, -0.0541687, 0.415527, -0.272217, -0.0689697, 0.353516, -0.34668, -0.159058, -0.277588, -0.384033, -0.0810547, -0.277588, -0.407715, -0.0689697, -0.353516, -0.34668, -0.135254, 0.353516, -0.326416, -0.0689697, 0.353516, -0.34668, -0.0810547, 0.277588, -0.407715, -0.135254, -0.353516, -0.326416, -0.0689697, -0.353516, -0.34668, -0.0541687, -0.415527, -0.272217, -0.159058, 0.277588, -0.384033, -0.0810547, 0.277588, -0.407715, -0.0900879, 0.191284, -0.452881, -0.106262, -0.415527, -0.256592, -0.0541687, -0.415527, -0.272217, -0.037323, -0.461914, -0.187622, -0.176758, 0.191284, -0.426758, -0.0900879, 0.191284, -0.452881, -0.0956421, 0.0975342, -0.480957, -0.0731812, -0.461914, -0.176758, -0.037323, -0.461914, -0.187622, -0.0190277, -0.490234, -0.0956421, -0.187622, 0.0975342, -0.452881, -0.0956421, 0.0975342, -0.480957, -0.0975342, 0, -0.490234, -0.191284, 0, -0.461914, -0.0975342, 0, -0.490234, -0.0956421, -0.0975342, -0.480957, -0.037323, 0.490234, -0.0900879, -0.0190277, 0.490234, -0.0956421, -0.037323, 0.461914, -0.187622, -0.187622, -0.0975342, -0.452881, -0.0956421, -0.0975342, -0.480957, -0.0900879, -0.191284, -0.452881, -0.0731812, 0.461914, -0.176758, -0.037323, 0.461914, -0.187622, -0.0541687, 0.415527, -0.272217, -0.037323, -0.461914, -0.187622, 0, -0.461914, -0.191284, 0, -0.490234, -0.0975342, -0.0956421, 0.0975342, -0.480957, 0, 0.0975342, -0.490234, 0, 0, -0.5, -0.0975342, 0, -0.490234, 0, 0, -0.5, 0, -0.0975342, -0.490234, -0.0190277, 0.490234, -0.0956421, 0, 0.490234, -0.0975342, 0, 0.461914, -0.191284, -0.0956421, -0.0975342, -0.480957, 0, -0.0975342, -0.490234, 0, -0.191284, -0.461914, -0.037323, 0.461914, -0.187622, 0, 0.461914, -0.191284, 0, 0.415527, -0.277588, -0.0900879, -0.191284, -0.452881, 0, -0.191284, -0.461914, 0, -0.277588, -0.415527, -0.0541687, 0.415527, -0.272217, 0, 0.415527, -0.277588, 0, 0.353516, -0.353516, -0.0810547, -0.277588, -0.407715, 0, -0.277588, -0.415527, 0, -0.353516, -0.353516, -0.0689697, 0.353516, -0.34668, 0, 0.353516, -0.353516, 0, 0.277588, -0.415527, -0.0689697, -0.353516, -0.34668, 0, -0.353516, -0.353516, 0, -0.415527, -0.277588, -0.0810547, 0.277588, -0.407715, 0, 0.277588, -0.415527, 0, 0.191284, -0.461914, -0.0541687, -0.415527, -0.272217, 0, -0.415527, -0.277588, 0, -0.461914, -0.191284, -0.0900879, 0.191284, -0.452881, 0, 0.191284, -0.461914, 0, 0.0975342, -0.490234 ) -[sub_resource type="SpatialMaterial" id=3] +[sub_resource type="SpatialMaterial" id=5] render_priority = 0 flags_transparent = false @@ -179,7 +179,7 @@ uv2_triplanar_sharpness = 1.0 proximity_fade_enable = false distance_fade_enable = false -[sub_resource type="ArrayMesh" id=4] +[sub_resource type="ArrayMesh" id=6] blend_shape_mode = 1 custom_aabb = AABB( 0, 0, 0, 0, 0, 0 ) @@ -190,7 +190,7 @@ surfaces/0 = { "blend_shape_data": [ ], "format": 98071, "index_count": 372, -"material": SubResource( 3 ), +"material": SubResource( 5 ), "primitive": 4, "skeleton_aabb": [ ], "vertex_count": 320 @@ -220,7 +220,7 @@ params_billboard_mode = 0 params_grow = false params_use_alpha_scissor = false albedo_color = Color( 1, 1, 1, 1 ) -albedo_texture = ExtResource( 2 ) +albedo_texture = ExtResource( 1 ) metallic = 0.5 metallic_specular = 0.5 metallic_texture_channel = 0 @@ -253,19 +253,15 @@ _sections_unfolded = [ "Albedo", "Metallic" ] points = PoolVector3Array( 0, 2, -1.5, 0.195068, 0, -0.980469, 0, 0, -1, 0.206909, 1.79297, -1.4707, 0.382568, 0, -0.923828, 0.195068, 0, -0.980469, 0.405762, 1.59375, -1.38574, 0.555176, 0, -0.831055, 0.382568, 0, -0.923828, 0.588867, 1.41016, -1.24707, 0.707031, 0, -0.707031, 0.555176, 0, -0.831055, 0.75, 1.25, -1.06055, 0.831055, 0, -0.555176, 0.707031, 0, -0.707031, 0.881836, 1.11719, -0.833008, 0.923828, 0, -0.382568, 0.831055, 0, -0.555176, 0.979492, 1.01953, -0.57373, 0.980469, 0, -0.195068, 0.923828, 0, -0.382568, 1.04004, 0.959473, -0.29248, 1, 0, 0, 0.980469, 0, -0.195068, 1.06055, 0.938965, 0, 0.980469, 0, 0.195068, 1, 0, 0, 1.04004, 0.959473, 0.29248, 0.923828, 0, 0.382568, 0.980469, 0, 0.195068, 0.979492, 1.01953, 0.57373, 0.831055, 0, 0.555176, 0.923828, 0, 0.382568, 0.881836, 1.11719, 0.833008, 0.707031, 0, 0.707031, 0.831055, 0, 0.555176, 0.75, 1.25, 1.06055, 0.555176, 0, 0.831055, 0.707031, 0, 0.707031, 0.588867, 1.41016, 1.24707, 0.382568, 0, 0.923828, 0.555176, 0, 0.831055, 0.405762, 1.59375, 1.38574, 0.195068, 0, 0.980469, 0.382568, 0, 0.923828, 0.206909, 1.79297, 1.4707, 0, 0, 1, 0.195068, 0, 0.980469, 0, 2, 1.5, -0.195068, 0, 0.980469, 0, 0, 1, -0.206909, 2.20508, 1.4707, -0.382568, 0, 0.923828, -0.195068, 0, 0.980469, -0.405762, 2.4043, 1.38574, -0.555176, 0, 0.831055, -0.382568, 0, 0.923828, -0.588867, 2.58789, 1.24707, -0.707031, 0, 0.707031, -0.555176, 0, 0.831055, -0.75, 2.75, 1.06055, -0.831055, 0, 0.555176, -0.707031, 0, 0.707031, -0.881836, 2.88086, 0.833008, -0.923828, 0, 0.382568, -0.831055, 0, 0.555176, -0.979492, 2.97852, 0.57373, -0.980469, 0, 0.195068, -0.923828, 0, 0.382568, -1.04004, 3.03906, 0.29248, -1, 0, 0, -0.980469, 0, 0.195068, -1.06055, 3.06055, 0, -0.980469, 0, -0.195068, -1, 0, 0, -1.04004, 3.03906, -0.29248, -0.923828, 0, -0.382568, -0.980469, 0, -0.195068, -0.979492, 2.97852, -0.57373, -0.831055, 0, -0.555176, -0.923828, 0, -0.382568, -0.881836, 2.88086, -0.833008, -0.707031, 0, -0.707031, -0.831055, 0, -0.555176, -0.749512, 2.75, -1.06055, -0.555176, 0, -0.831055, -0.707031, 0, -0.707031, -0.588867, 2.58789, -1.24707, -0.382568, 0, -0.923828, -0.555176, 0, -0.831055, -0.405762, 2.4043, 1.38574, 0.979492, 1.01953, 0.57373, 0.405762, 1.59375, -1.38574, -0.405762, 2.4043, -1.38574, -0.195068, 0, -0.980469, -0.382568, 0, -0.923828, -0.206909, 2.20508, -1.4707, 0, 0, -1, -0.195068, 0, -0.980469, 0.980469, 0, -0.195068, 0.195068, 0, 0.980469, -0.980469, 0, 0.195068, 0, 2, -1.5, 0.206909, 1.79297, -1.4707, 0.195068, 0, -0.980469, 0.206909, 1.79297, -1.4707, 0.405762, 1.59375, -1.38574, 0.382568, 0, -0.923828, 0.405762, 1.59375, -1.38574, 0.588867, 1.41016, -1.24707, 0.555176, 0, -0.831055, 0.588867, 1.41016, -1.24707, 0.75, 1.25, -1.06055, 0.707031, 0, -0.707031, 0.75, 1.25, -1.06055, 0.881836, 1.11719, -0.833008, 0.831055, 0, -0.555176, 0.881836, 1.11719, -0.833008, 0.979492, 1.01953, -0.57373, 0.923828, 0, -0.382568, 0.979492, 1.01953, -0.57373, 1.04004, 0.959473, -0.29248, 0.980469, 0, -0.195068, 1.04004, 0.959473, -0.29248, 1.06055, 0.938965, 0, 1, 0, 0, 1.06055, 0.938965, 0, 1.04004, 0.959473, 0.29248, 0.980469, 0, 0.195068, 1.04004, 0.959473, 0.29248, 0.979492, 1.01953, 0.57373, 0.923828, 0, 0.382568, 0.979492, 1.01953, 0.57373, 0.881836, 1.11719, 0.833008, 0.831055, 0, 0.555176, 0.881836, 1.11719, 0.833008, 0.75, 1.25, 1.06055, 0.707031, 0, 0.707031, 0.75, 1.25, 1.06055, 0.588867, 1.41016, 1.24707, 0.555176, 0, 0.831055, 0.588867, 1.41016, 1.24707, 0.405762, 1.59375, 1.38574, 0.382568, 0, 0.923828, 0.405762, 1.59375, 1.38574, 0.206909, 1.79297, 1.4707, 0.195068, 0, 0.980469, 0.206909, 1.79297, 1.4707, 0, 2, 1.5, 0, 0, 1, 0, 2, 1.5, -0.206909, 2.20508, 1.4707, -0.195068, 0, 0.980469, -0.206909, 2.20508, 1.4707, -0.405762, 2.4043, 1.38574, -0.382568, 0, 0.923828, -0.405762, 2.4043, 1.38574, -0.588867, 2.58789, 1.24707, -0.555176, 0, 0.831055, -0.588867, 2.58789, 1.24707, -0.75, 2.75, 1.06055, -0.707031, 0, 0.707031, -0.75, 2.75, 1.06055, -0.881836, 2.88086, 0.833008, -0.831055, 0, 0.555176, -0.881836, 2.88086, 0.833008, -0.979492, 2.97852, 0.57373, -0.923828, 0, 0.382568, -0.979492, 2.97852, 0.57373, -1.04004, 3.03906, 0.29248, -0.980469, 0, 0.195068, -1.04004, 3.03906, 0.29248, -1.06055, 3.06055, 0, -1, 0, 0, -1.06055, 3.06055, 0, -1.04004, 3.03906, -0.29248, -0.980469, 0, -0.195068, -1.04004, 3.03906, -0.29248, -0.979492, 2.97852, -0.57373, -0.923828, 0, -0.382568, -0.979492, 2.97852, -0.57373, -0.881836, 2.88086, -0.833008, -0.831055, 0, -0.555176, -0.881836, 2.88086, -0.833008, -0.749512, 2.75, -1.06055, -0.707031, 0, -0.707031, -0.749512, 2.75, -1.06055, -0.588867, 2.58789, -1.24707, -0.555176, 0, -0.831055, -0.588867, 2.58789, -1.24707, -0.405762, 2.4043, -1.38574, -0.382568, 0, -0.923828, 0.405762, 1.59375, -1.38574, 0.206909, 1.79297, -1.4707, 0, 2, -1.5, 0, 2, -1.5, -0.206909, 2.20508, -1.4707, -0.405762, 2.4043, -1.38574, -0.405762, 2.4043, -1.38574, -0.588867, 2.58789, -1.24707, -0.979492, 2.97852, -0.57373, -0.588867, 2.58789, -1.24707, -0.749512, 2.75, -1.06055, -0.979492, 2.97852, -0.57373, -0.749512, 2.75, -1.06055, -0.881836, 2.88086, -0.833008, -0.979492, 2.97852, -0.57373, -0.979492, 2.97852, -0.57373, -1.04004, 3.03906, -0.29248, -1.06055, 3.06055, 0, -1.06055, 3.06055, 0, -1.04004, 3.03906, 0.29248, -0.979492, 2.97852, 0.57373, -0.979492, 2.97852, 0.57373, -0.881836, 2.88086, 0.833008, -0.75, 2.75, 1.06055, -0.75, 2.75, 1.06055, -0.588867, 2.58789, 1.24707, -0.979492, 2.97852, 0.57373, -0.588867, 2.58789, 1.24707, -0.405762, 2.4043, 1.38574, -0.979492, 2.97852, 0.57373, -0.405762, 2.4043, 1.38574, -0.206909, 2.20508, 1.4707, 0, 2, 1.5, 0, 2, 1.5, 0.206909, 1.79297, 1.4707, 0.405762, 1.59375, 1.38574, 0.405762, 1.59375, 1.38574, 0.588867, 1.41016, 1.24707, 0.979492, 1.01953, 0.57373, 0.588867, 1.41016, 1.24707, 0.75, 1.25, 1.06055, 0.979492, 1.01953, 0.57373, 0.75, 1.25, 1.06055, 0.881836, 1.11719, 0.833008, 0.979492, 1.01953, 0.57373, 0.979492, 1.01953, 0.57373, 1.04004, 0.959473, 0.29248, 0.979492, 1.01953, -0.57373, 1.04004, 0.959473, 0.29248, 1.06055, 0.938965, 0, 0.979492, 1.01953, -0.57373, 1.06055, 0.938965, 0, 1.04004, 0.959473, -0.29248, 0.979492, 1.01953, -0.57373, 0.979492, 1.01953, -0.57373, 0.881836, 1.11719, -0.833008, 0.75, 1.25, -1.06055, 0.75, 1.25, -1.06055, 0.588867, 1.41016, -1.24707, 0.405762, 1.59375, -1.38574, 0.405762, 1.59375, -1.38574, 0, 2, -1.5, -0.979492, 2.97852, -0.57373, 0, 2, -1.5, -0.405762, 2.4043, -1.38574, -0.979492, 2.97852, -0.57373, -0.979492, 2.97852, -0.57373, -1.06055, 3.06055, 0, -0.979492, 2.97852, 0.57373, -0.405762, 2.4043, 1.38574, 0, 2, 1.5, 0.979492, 1.01953, 0.57373, 0, 2, 1.5, 0.405762, 1.59375, 1.38574, 0.979492, 1.01953, 0.57373, 0.979492, 1.01953, -0.57373, 0.75, 1.25, -1.06055, 0.979492, 1.01953, 0.57373, 0.75, 1.25, -1.06055, 0.405762, 1.59375, -1.38574, 0.979492, 1.01953, 0.57373, -0.979492, 2.97852, -0.57373, -0.979492, 2.97852, 0.57373, 0.405762, 1.59375, -1.38574, -0.979492, 2.97852, 0.57373, -0.405762, 2.4043, 1.38574, 0.405762, 1.59375, -1.38574, -0.405762, 2.4043, -1.38574, -0.206909, 2.20508, -1.4707, -0.195068, 0, -0.980469, -0.206909, 2.20508, -1.4707, 0, 2, -1.5, 0, 0, -1, -0.195068, 0, -0.980469, 0, 0, -1, 0.195068, 0, -0.980469, 0.382568, 0, -0.923828, 0.555176, 0, -0.831055, 0.555176, 0, -0.831055, 0.707031, 0, -0.707031, 0.831055, 0, -0.555176, 0.831055, 0, -0.555176, 0.923828, 0, -0.382568, 1, 0, 0, 0.980469, 0, 0.195068, 0.923828, 0, 0.382568, 0.831055, 0, 0.555176, 0.707031, 0, 0.707031, 0.555176, 0, 0.831055, 0.382568, 0, 0.923828, 0, 0, 1, -0.195068, 0, 0.980469, -0.382568, 0, 0.923828, -0.555176, 0, 0.831055, -0.707031, 0, 0.707031, -0.831055, 0, 0.555176, -0.831055, 0, 0.555176, -0.923828, 0, 0.382568, -0.980469, 0, 0.195068, -1, 0, 0, -0.980469, 0, -0.195068, -0.923828, 0, -0.382568, -0.831055, 0, -0.555176, -0.707031, 0, -0.707031, -0.555176, 0, -0.831055, -0.555176, 0, -0.831055, -0.382568, 0, -0.923828, -0.195068, 0, -0.980469 ) -[sub_resource type="BoxShape" id=9] - -extents = Vector3( 2.62941, 1.97978, 1.99544 ) - [node name="jukebox" type="Spatial"] -script = ExtResource( 1 ) +_sections_unfolded = [ "Transform", "Visibility" ] [node name="head" type="MeshInstance" parent="." index="0"] editor/display_folded = true transform = Transform( 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 2, 0 ) -layers = 1 +layers = 2 material_override = null cast_shadow = 1 extra_cull_margin = 0.0 @@ -276,7 +272,7 @@ lod_max_distance = 0.0 lod_max_hysteresis = 0.0 mesh = SubResource( 2 ) skeleton = NodePath("..") -material/0 = SubResource( 5 ) +material/0 = SubResource( 3 ) _sections_unfolded = [ "material" ] [node name="StaticBody" type="StaticBody" parent="head" index="0"] @@ -292,13 +288,13 @@ constant_angular_velocity = Vector3( 0, 0, 0 ) [node name="CollisionShape" type="CollisionShape" parent="head/StaticBody" index="0"] -shape = SubResource( 6 ) +shape = SubResource( 4 ) disabled = false [node name="body" type="MeshInstance" parent="." index="1"] editor/display_folded = true -layers = 1 +layers = 2 material_override = null cast_shadow = 1 extra_cull_margin = 0.0 @@ -307,7 +303,7 @@ lod_min_distance = 0.0 lod_min_hysteresis = 0.0 lod_max_distance = 0.0 lod_max_hysteresis = 0.0 -mesh = SubResource( 4 ) +mesh = SubResource( 6 ) skeleton = NodePath("..") material/0 = SubResource( 7 ) _sections_unfolded = [ "material" ] @@ -328,38 +324,8 @@ constant_angular_velocity = Vector3( 0, 0, 0 ) shape = SubResource( 8 ) disabled = false -[node name="Area" type="Area" parent="." index="2"] +[node name="JukeboxPannel" parent="." index="2" instance=ExtResource( 2 )] -transform = Transform( 1, 0, 0, 0, 1, 0, 0, 0, 1, 1.58049, 0, 0 ) -input_ray_pickable = false -input_capture_on_drag = false -space_override = 0 -gravity_point = false -gravity_distance_scale = 0.0 -gravity_vec = Vector3( 0, -1, 0 ) -gravity = 9.8 -linear_damp = 0.1 -angular_damp = 1.0 -priority = 0.0 -monitoring = true -monitorable = true -collision_layer = 1 -collision_mask = 1 -audio_bus_override = false -audio_bus_name = "Master" -reverb_bus_enable = false -reverb_bus_name = "Master" -reverb_bus_amount = 0.0 -reverb_bus_uniformity = 0.0 - -[node name="CollisionShape" type="CollisionShape" parent="Area" index="0"] - -transform = Transform( 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 2.01518, 0 ) -shape = SubResource( 9 ) -disabled = false - -[connection signal="body_entered" from="Area" to="." method="_on_Area_body_entered"] - -[connection signal="body_exited" from="Area" to="." method="_on_Area_body_exited"] +transform = Transform( 0.038434, -0.172056, 0.984337, 0.00671291, 0.985087, 0.171925, -0.999239, 0, 0.0390158, 0.536377, 2.51347, 0 )